@charset "UTF-8";
/*

*/
@import url("https://fonts.googleapis.com/css2?family=Cinzel&family=Noto+Sans+JP&family=Old+Standard+TT&display=swap");
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.shiny-image figure {
  position: relative;
  overflow: hidden;
  margin: 0;
  padding: 10px;
}
.shiny-image figure div {
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  box-sizing: border-box;
}
.shiny-image figure::before {
  position: absolute;
  top: 0;
  left: -75%;
  z-index: 2;
  display: block;
  content: "";
  width: 50%;
  height: 100%;
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%);
  transform: skewX(-25deg);
}
.shiny-image:hover > figure::before {
  animation: shine 0.75s;
}
@keyframes shine {
  100% {
    left: 125%;
  }
}
.animation-target {
  opacity: 0;
  transform: translate3d(0, 30px, 0);
}

.animation-target.is-active {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition: 1s;
}

.fadein {
  opacity: 0;
  transition: all 1s;
}

.fadein.active {
  opacity: 1;
}

/*--------------------------------------------------------------
# Basic Setting
--------------------------------------------------------------*/
h1, h2, h3, h4, h5, h6, p {
  margin: 0;
}

ul, ol {
  list-style: none;
  margin: 0;
}

a {
  color: #fdf7f1;
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

a:focus {
  outline: none;
}

a:hover, a:focus, a:active, a:visited {
  color: #fdf7f1;
}

/*

textarea {
  resize: none;
  overflow: auto;
}

*/
/*--------------------------------------------------------------
# Normalize
--------------------------------------------------------------*/
html {
  font-family: sans-serif;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  font-size: 62.5%; /* 10(base font size) / 16(Browser Default font size) = 0.625em * 100 = 62.5% */
}

body {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  position: relative;
  width: 100%;
  font-family: "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Yu Gothic", YuGothic, Verdana, Meiryo, "M+ 1p", sans-serif;
  font-weight: 500;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.5;
  color: #fdf7f1;
  background-color: #343235;
  background-image: url(./images/back.jpg?202512161840);
  background-repeat: repeat;
  background-size: contain;
  background-position: center top;
}

body#second {
  background-size: cover;
}

/*
@media only screen and (max-width: 640px){
  body#second{background-size: contain;}
}
  */
body.fixed {
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0;
}

header, footer, main {
  min-width: 1205px;
  width: 100%;
}

@media only screen and (max-width: 640px) {
  header, footer, main {
    min-width: auto;
  }
}
img {
  margin: 0;
}

em {
  font-style: normal;
}

/*PCのみ改行*/
@media only screen and (max-width: 640px) {
  br.pc {
    display: none;
  }
}
/*スマホのみ改行*/
br.sp640 {
  display: none;
}

br.sp {
  display: none;
}

br.sp2 {
  display: none;
}

@media only screen and (max-width: 640px) {
  br.sp640 {
    display: block;
  }
}
@media only screen and (max-width: 480px) {
  br.sp {
    display: block;
  }
}
@media only screen and (max-width: 400px) {
  br.sp2 {
    display: block;
  }
}
.clearfix::after {
  content: ".";
  display: block;
  clear: both;
  height: 0;
  font-size: 0.1em;
  line-height: 0;
  visibility: hidden;
  overflow: hidden;
}

span.vspace {
  margin-bottom: 0.5rem;
}

/*共通
-------------------------------------*/
#main {
  width: 100%;
  margin: 0 auto;
}

#main section .sec-inner {
  max-width: 1205px;
  width: 100%;
  box-sizing: border-box;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 50px;
}

/*
@media only screen and (min-width: 1100px) and (max-width: 1205px) {
  #main section .sec-inner {
    max-width: 1100px;
  }
}
  */
@media only screen and (max-width: 640px) {
  #main section .sec-inner {
    max-width: none;
    width: 90%;
  }
}
@media only screen and (max-width: 480px) {
  #main section .sec-inner {
    width: 96%;
  }
}
@media only screen and (max-width: 350px) {
  #main section .sec-inner {
    width: 100%;
  }
}
#footer .row, #main section .row {
  max-width: 1000px;
  width: 100%;
  box-sizing: border-box;
  margin-left: auto;
  margin-right: auto;
}

@media only screen and (max-width: 640px) {
  #footer .row, #main section .row {
    max-width: none;
  }
}
header nav, footer #footer {
  width: 92%;
  left: 0;
  right: 0;
}

@media only screen and (max-width: 1205px) {
  header nav, footer #footer {
    max-width: 1205px;
  }
}
@media only screen and (max-width: 640px) {
  header nav, footer #footer {
    max-width: none;
  }
}
/*ヘッダー
-------------------------------------*/
/* スクロールして「scroll-navクラス」がついたときのヘッダーデザイン */
header.scroll-nav {
  /* 余白を狭くする */
  padding: 3px 0;
  opacity: 0.9;
}
header.scroll-nav #header .logo a {
  margin: 10px auto;
}
header.scroll-nav #header .logo a img {
  width: 80%;
}
header.scroll-nav .mail {
  margin-top: 7px;
}
header.scroll-nav .mail a {
  width: 70px;
}

header {
  border-bottom: 3px solid #ba935c;
  /* headerを画面上部に固定する */
  position: fixed;
  /* スクロールしても他のコンテンツの下にならないようにする */
  z-index: 150;
  background-color: #343235;
  background-image: url(./images/back.jpg?202512161840);
  background-repeat: repeat;
  background-size: cover;
  background-position: center top;
  /* アニメーションの変化時間 */
  transition: 0.5s;
  padding: 20px 0 5px;
}
header #header {
  width: 100%;
  max-width: 1205px;
  left: 0;
  right: 0;
  margin: 0 auto;
  display: flex;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  justify-content: space-between;
  -ms-flex-pack: space-between;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
}
header #header .logo {
  width: 150px;
  margin-left: 30px;
}
header #header .logo a {
  display: block;
  position: relative;
  margin: 0 auto;
}
header #header .logo a img {
  width: 100%;
}
header #header #global_menu {
  width: 70%;
  margin: 10px auto 0;
}
header #header #global_menu::after {
  content: "";
  display: block;
  clear: both;
}
header #header #global_menu ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -ms-flex-pack: center;
}
header #header #global_menu ul li {
  height: 100%;
  text-align: center;
}
header #header #global_menu ul li:not(:last-child) {
  border-right: 1px solid #fdf7f1;
}
header #header #global_menu ul li a {
  display: block;
  transition: all 0.3s ease;
  font-size: 14px;
  font-size: 1.4rem;
  padding: 0 2rem;
}
header #header #global_menu ul li a small {
  display: block;
}
header #header #global_menu ul li a:hover {
  color: #da1f29;
}

@media only screen and (max-width: 1205px) {
  header #header {
    max-width: 1205px;
  }
}
@media screen and (max-width: 640px) {
  header {
    position: static;
    padding-top: 20px;
  }
  header #header {
    display: block;
    max-width: none;
  }
  header #header::after {
    content: "";
    display: block;
    clear: both;
  }
  header #header #global_menu {
    display: none;
  }
  header #header .logo {
    position: relative;
    z-index: 1;
  }
}
@media screen and (max-width: 350px) {
  header #header .logo a {
    width: 130px;
  }
}
/*フッター
-------------------------------------*/
footer {
  background: #343235;
  border-top: 3px solid #ba935c;
  padding: 40px 0 10px;
}
footer .copyright {
  text-align: center;
  margin: 30px auto 0;
}
footer .copyright small {
  font-size: 13px;
  font-size: 1.3rem;
}

@media screen and (max-width: 640px) {
  footer {
    padding-bottom: 0;
  }
}
@media screen and (max-width: 500px) {
  footer {
    padding-top: 40px;
  }
}
@media screen and (max-width: 400px) {
  footer .copyright small {
    font-size: 11px;
    font-size: 1.1rem;
  }
}
@media screen and (max-width: 320px) {
  footer .copyright small {
    font-size: 10px;
    font-size: 1rem;
  }
}
@media screen and (max-width: 350px) {
  footer {
    padding-top: 20px;
  }
}
#footer {
  max-width: 1205px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
}
#footer .footer-logo {
  width: 40%;
}
#footer .footer-logo a {
  display: block;
  position: relative;
  width: 200px;
  margin: auto;
}
#footer .footer-logo img {
  width: 100%;
}
#footer .box {
  width: 60%;
}
#footer ul.footer-menu {
  list-style-type: none;
  margin-bottom: 20px;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
}
#footer ul.footer-menu li {
  line-height: 110%;
  margin: 5px 0;
}
#footer ul.footer-menu li {
  border-left: 1px solid #fdf7f1;
}
#footer ul.footer-menu li:last-child {
  border-right: 1px solid #fdf7f1;
}
#footer ul.footer-menu li a {
  transition: all 0.3s ease;
  font-size: 15px;
  font-size: 1.5rem;
  text-decoration: none;
  padding: 0 2rem;
}
#footer ul.footer-menu li a:hover {
  opacity: 0.7;
}
#footer ul.footer-menu li a:hover {
  color: #da1f29;
}

@media screen and (max-width: 640px) {
  #footer .footer-logo {
    width: 100%;
    text-align: center;
  }
  #footer .box {
    width: 100%;
  }
  #footer ul.footer-menu {
    display: flex;
    flex-wrap: wrap;
    -moz-justify-content: flex-start;
    -ms-justify-content: flex-start;
    justify-content: flex-start;
    -ms-flex-pack: flex-start;
    width: 100%;
    margin: 0;
    text-align: center;
  }
  #footer ul.footer-menu li {
    width: 49%;
    padding: 0.2rem 0;
    margin: 10px 0;
  }
  #footer ul.footer-menu li {
    border-left: none;
  }
  #footer ul.footer-menu li:last-child {
    border-right: none;
  }
  #footer ul.footer-menu li:nth-child(odd) {
    border-right: 1px solid #fdf7f1;
  }
  #footer ul.sns-btns {
    -moz-justify-content: center;
    -ms-justify-content: center;
    justify-content: center;
    -ms-flex-pack: center;
    margin-top: 30px;
  }
}
/*SNSボタン
-------------------------------------*/
.sns-btns {
  display: flex;
  flex-wrap: wrap;
  padding: 0;
}
.sns-btns li {
  margin-left: 15px;
  margin-right: 15px;
}
.sns-btns li img {
  height: 30px;
  transition: all 0.3s ease;
}
.sns-btns li a {
  transition: all 0.3s ease;
  position: relative;
  display: block;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 30px;
  height: 30px;
}
.sns-btns li a#fb {
  background-image: url(./images/sns/fb.png?20251218);
}
.sns-btns li a#fb:hover {
  background-image: url(./images/sns/fb_o.png?20251218);
}
.sns-btns li a#insta {
  background-image: url(./images/sns/insta.png?20251218);
}
.sns-btns li a#insta:hover {
  background-image: url(./images/sns/insta_o.png?20251218);
}
.sns-btns li a#x {
  background-image: url(./images/sns/x.png?20251218);
}
.sns-btns li a#x:hover {
  background-image: url(./images/sns/x_o.png);
}
.sns-btns li a#line {
  background-image: url(./images/sns/line.png);
}
.sns-btns li a#line:hover {
  background-image: url(./images/sns/line_o.png?20251218);
}

/*ページトップへ戻るボタン
-------------------------------------*/
#pagetop {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 100;
}
#pagetop a {
  position: relative;
}
#pagetop .borderline {
  position: absolute;
  display: block;
  width: 33px;
  height: 1px;
  background: #fffeff;
  top: -9px;
  left: -4px;
}
#pagetop .uparrow {
  display: block;
  width: 24px;
  height: 24px;
  border: 1px solid;
  border-color: #fdf7f1 #fdf7f1 transparent transparent;
  transform: rotate(-45deg);
}

/*共通コンテンツ
-------------------------------------*/
h2.section-header {
  color: #fdf7f1;
  text-align: center;
  font-size: 25px;
  font-size: 2.5rem;
  line-height: 100%;
}
h2.section-header small {
  display: block;
  font-size: 15px;
  font-size: 1.5rem;
  margin-top: 0.5em;
  position: relative;
  letter-spacing: 0;
}
h2.section-header small::after {
  content: "";
  display: block;
  position: absolute;
  width: 50px;
  height: 2px;
  background-color: #fdf7f1;
  margin: auto;
  left: 0;
  right: 0;
  bottom: -7px;
}

/*トップページ
-------------------------------------*/
#front h2.section-header {
  margin-bottom: 50px;
}
#front #visual {
  width: 100%;
  max-width: 2000px;
  margin: 0 auto;
  border-bottom: 3px solid #ba935c;
  position: relative;
}
#front #visual .video-outer {
  width: 100%;
  position: relative;
}
#front #visual video {
  width: 100%;
  margin: 0 auto;
  display: block;
  vertical-align: bottom;
}
#front #visual .text {
  position: absolute;
  width: 120px;
  left: 25%;
  top: 30%;
}
#front #visual .text img {
  width: 100%;
  display: block;
}

@media only screen and (max-width: 640px) {
  #front #visual .text {
    width: 100px;
    left: 10%;
    top: 15%;
  }
}
@media only screen and (max-width: 595px) {
  #front #visual .text {
    width: 90px;
  }
}
@media only screen and (max-width: 530px) {
  #front #visual .text {
    width: 80px;
  }
}
@media only screen and (max-width: 440px) {
  #front #visual .text {
    width: 75px;
  }
}
@media only screen and (max-width: 410px) {
  #front #visual .text {
    width: 70px;
  }
}
@media only screen and (max-width: 380px) {
  #front #visual .text {
    width: 65px;
  }
}
@media only screen and (max-width: 360px) {
  #front #visual .text {
    width: 60px;
  }
}
@media only screen and (max-width: 340px) {
  #front #visual .text {
    width: 55px;
  }
}
@media only screen and (max-width: 325px) {
  #front #visual .text {
    width: 50px;
  }
}
#front #shop-data ul, #front #shop-data li {
  margin: 0;
  padding: 0;
}
#front #shop-data ul.shops {
  display: flex;
  flex-wrap: wrap;
  color: #fff;
  margin: auto;
}
#front #shop-data ul.shops > li {
  display: flex;
  flex-wrap: wrap;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  justify-content: space-between;
  -ms-flex-pack: space-between;
  width: 45%;
  margin: 0 auto 50px;
}
#front #shop-data ul.shops .shop-name {
  width: 100%;
  border-bottom: 2px solid;
  padding-bottom: 2px;
  margin-bottom: 15px;
  display: flex;
  flex-wrap: wrap;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  justify-content: space-between;
  -ms-flex-pack: space-between;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
}
#front #shop-data ul.shops .shop-name h3 {
  font-size: 25px;
  font-size: 2.5rem;
}
#front #shop-data ul.shops .shop-name .map a {
  color: #000;
  background: #fff;
  border-radius: 10px;
  text-align: center;
  font-size: 12px;
  font-size: 1.2rem;
  font-weight: bold;
  line-height: 100%;
  padding: 2px 0.8rem;
  transition: all 0.3s ease;
}
#front #shop-data ul.shops .shop-name .map a:hover {
  opacity: 0.8;
}
#front #shop-data ul.shops .shop-name .map a::before {
  font-family: "FontAwesome";
  content: "\f041";
  margin-right: 0.5rem;
  color: #006eb8;
  font-size: 14px;
  font-size: 1.4rem;
}
#front #shop-data ul.shops .shop-image {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  margin: auto;
}
#front #shop-data ul.shops .shop-image figure {
  width: 25%;
  margin: 0;
}
#front #shop-data ul.shops .shop-image figure img {
  width: 98%;
  margin: auto;
  display: block;
  vertical-align: 0;
}
#front #shop-data ul.shops .shop-info {
  display: flex;
  flex-wrap: wrap;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  justify-content: space-between;
  -ms-flex-pack: space-between;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  width: 100%;
  margin: 10px auto 10px;
}
#front #shop-data ul.shops .shop-info .shop-address {
  width: 63%;
  margin: 20px 0;
  position: relative;
}
#front #shop-data ul.shops .shop-info .shop-address .smoking {
  position: absolute;
  right: 15px;
  bottom: 3px;
  width: 55px;
}
#front #shop-data ul.shops .shop-info .shop-address .smoking img {
  width: 100%;
  display: block;
}
#front #shop-data ul.shops .shop-info .shop-address table tbody tr {
  margin: 5px 0;
}
#front #shop-data ul.shops .shop-info .shop-address table tbody th {
  width: 62px;
  font-weight: normal;
  padding-left: 0.5rem;
  background: #898989;
  font-size: 13px;
  font-size: 1.3rem;
}
#front #shop-data ul.shops .shop-info .shop-address table tbody td {
  padding: 4px 0 4px 0.5rem;
}
#front #shop-data ul.shops .shop-info .shop-address table tbody td p {
  font-size: 14px;
  font-size: 1.4rem;
}
#front #shop-data ul.shops .shop-info .shop-address table tbody td p span {
  font-size: 13px;
  font-size: 1.3rem;
}
#front #shop-data ul.shops .shop-info .shop-address table tbody td .tel tel, #front #shop-data ul.shops .shop-info .shop-address table tbody td .tel a.tel-link {
  font-size: 22px;
  font-size: 2.2rem;
  color: #ffffff;
}
#front #shop-data ul.shops .shop-info .shop-address table tbody td .tel a.tel-link:visited {
  color: #ffffff !important;
}
#front #shop-data ul.shops .shop-info .shop-address table tbody td .tel a.tel-link {
  display: none;
}
#front #shop-data ul.shops .shop-info .shop-icons {
  width: 37%;
}
#front #shop-data ul.shops .shop-info .shop-icons ul.features {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  margin: 0 auto 15px;
  padding: 0;
}
#front #shop-data ul.shops .shop-info .shop-icons ul.features li {
  width: 30%;
  margin-right: 2%;
}
#front #shop-data ul.shops .shop-info .shop-icons ul.features li img {
  width: auto;
  display: block;
  max-width: 100%;
}
#front #shop-data ul.shops .shop-info .shop-icons .seane {
  width: 100%;
}
#front #shop-data ul.shops .shop-info .shop-icons .seane p {
  font-size: 12px;
  font-size: 1.2rem;
  line-height: 180%;
}
#front #shop-data ul.shops .shop-info .shop-icons .seane ul {
  display: flex;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
}
#front #shop-data ul.shops .shop-info .shop-icons .seane ul li {
  width: 23%;
  margin-right: 2%;
}
#front #shop-data ul.shops .shop-info .shop-icons .seane ul li img {
  width: auto;
  display: block;
  max-width: 100%;
}

@media only screen and (max-width: 640px) {
  #front #shop-data ul.shops {
    width: 100%;
  }
  #front #shop-data ul.shops > li {
    width: 100%;
  }
  #front #shop-data ul.shops > li:not(:last-child) {
    margin-bottom: 40px;
  }
  #front #shop-data ul.shops > li:last-child {
    margin-bottom: 10px;
  }
  #front #shop-data ul.shops .shop-info .shop-address table tbody td .tel tel {
    display: none;
  }
  #front #shop-data ul.shops .shop-info .shop-address table tbody td .tel a.tel-link {
    display: block;
  }
  #front #shop-data ul.shops .shop-info .shop-address .smoking {
    right: 30px;
    width: 50px;
  }
}
@media only screen and (max-width: 600px) {
  #front #shop-data ul.shops .shop-info .shop-address .smoking {
    bottom: 30px;
    width: 45px;
  }
}
@media only screen and (max-width: 530px) {
  #front #shop-data ul.shops .shop-info .shop-address {
    width: 100%;
  }
  #front #shop-data ul.shops .shop-info .shop-icons {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    -moz-align-items: flex-end;
    -ms-align-items: flex-end;
    align-items: flex-end;
  }
  #front #shop-data ul.shops .shop-info .shop-icons ul.features {
    width: 50%;
    margin-bottom: 0;
  }
  #front #shop-data ul.shops .shop-info .shop-icons .seane {
    width: 50%;
  }
  #front #shop-data ul.shops .shop-info .shop-icons .seane p {
    text-align: center;
  }
}
@media only screen and (max-width: 480px) {
  #front #shop-data ul.shops {
    width: 95%;
  }
}
@media only screen and (max-width: 400px) {
  #front #shop-data ul.shops {
    width: 95%;
  }
  #front #shop-data ul.shops .shop-info .shop-icons ul.features {
    width: 100%;
    margin-bottom: 15px;
  }
  #front #shop-data ul.shops .shop-info .shop-icons ul.features li {
    width: 60px;
    margin-right: 5px;
  }
  #front #shop-data ul.shops .shop-info .shop-icons .seane {
    width: 100%;
  }
  #front #shop-data ul.shops .shop-info .shop-icons .seane p {
    text-align: left;
  }
  #front #shop-data ul.shops .shop-info .shop-icons .seane ul li {
    width: 53px;
    margin-right: 5px;
  }
}
@media only screen and (max-width: 350px) {
  #front #shop-data ul.shops {
    width: 90%;
  }
  #front #shop-data ul.shops .shop-info .shop-address .smoking {
    right: 0;
  }
}
#front #recommend .sec-inner {
  margin-top: -50px;
  position: relative;
}
#front #recommend h3 {
  color: red;
  background: #fff;
  border-radius: 20px;
  text-align: center;
  font-size: 15px;
  font-size: 1.5rem;
  line-height: 100%;
  padding: 5px 0 8px;
  width: 220px;
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  top: -50px;
}
#front #recommend .recommend-swiper {
  width: 80%;
}
#front #recommend .swiper .swiper-slide {
  opacity: 0;
  transition: opacity 0.3s linear;
}
#front #recommend .swiper-initialized .swiper-slide {
  opacity: 1;
}
#front #recommend .swiper-wrapper {
  margin-bottom: 70px;
}
#front #recommend .swiper-button {
  position: absolute;
  top: 35%;
  width: 30px;
  height: 30px;
  background: #fff;
  border-radius: 50%;
  z-index: 1;
  box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  transition: all 0.3s ease;
}
#front #recommend .swiper-button:hover {
  opacity: 0.8;
}
#front #recommend .swiper-button::after {
  content: "";
  display: block;
  position: absolute;
  width: 10px;
  height: 10px;
  border-top: 3px solid #da1f29;
  border-right: 3px solid #da1f29;
  top: calc(30px / 2 - 6px);
}
#front #recommend .swiper-button#prev {
  left: 33%;
}
#front #recommend .swiper-button#prev::after {
  transform: rotate(225deg);
  left: calc(30px / 2 - 5px);
}
#front #recommend .swiper-button#next {
  right: 33%;
}
#front #recommend .swiper-button#next::after {
  transform: rotate(45deg);
  right: calc(30px / 2 - 5px);
}
#front #recommend .swiper-slide {
  display: flex;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -ms-flex-pack: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  overflow: hidden;
  min-height: 200px;
  width: 100%;
}
#front #recommend .swiper-slide img {
  width: 100%;
  height: auto;
}
#front #recommend .swiper-pagination {
  width: 100%;
  position: absolute;
  bottom: 30px;
  left: 0;
  text-align: center;
  z-index: 1;
}
#front #recommend .swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  display: inline-block;
  border-radius: 50%;
  background: #aaa;
  margin: 0 5px;
}
#front #recommend .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #da1f29;
}

@media only screen and (max-width: 640px) {
  #front #recommend .sec-inner {
    margin-top: -30px;
  }
  #front #recommend .recommend-swiper {
    width: 98%;
  }
  #front #recommend .swiper-wrapper {
    margin-bottom: 50px;
  }
  #front #recommend .swiper-pagination {
    bottom: 10px;
  }
  #front #recommend .swiper-button#prev {
    left: 30%;
  }
  #front #recommend .swiper-button#next {
    right: 30%;
  }
}
@media only screen and (max-width: 600px) {
  #front #recommend .sec-inner {
    margin-top: -20px;
  }
  #front #recommend .recommend-swiper {
    width: 95%;
  }
  #front #recommend .swiper-button#prev {
    left: 21%;
  }
  #front #recommend .swiper-button#next {
    right: 21%;
  }
}
@media only screen and (max-width: 550px) {
  #front #recommend .sec-inner {
    margin-top: -15px;
  }
}
@media only screen and (max-width: 380px) {
  #front #recommend .sec-inner {
    margin-top: -10px;
  }
  #front #recommend .recommend-swiper {
    width: 70%;
  }
  #front #recommend .swiper-button#prev {
    left: 10%;
  }
  #front #recommend .swiper-button#next {
    right: 10%;
  }
}
#front #course-menu ul.course {
  margin: 0 0 30px;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  -moz-justify-content: space-around;
  -ms-justify-content: space-around;
  justify-content: space-around;
  -ms-flex-pack: space-around;
}
#front #course-menu ul.course > li {
  width: 30%;
  margin: 0 1% 20px;
  background: #fff;
  color: #3e3e3e;
  padding: 10px 0;
}
#front #course-menu ul.course > li .feature {
  border-bottom: 1px solid;
  font-family: "Cinzel", serif;
  text-align: center;
  font-size: 17px;
  font-size: 1.7rem;
  font-weight: bold;
  width: 90%;
  margin: auto;
  padding-bottom: 10px;
}
#front #course-menu ul.course > li .ttl {
  display: flex;
  flex-wrap: wrap;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -ms-flex-pack: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  margin-top: 10px;
}
#front #course-menu ul.course > li .ttl p {
  position: relative;
  display: inline-block;
  background: #e83328;
  color: #fff;
  border-radius: 50%;
  width: 47px;
  height: 47px;
  font-size: 10px;
  font-size: 1rem;
  text-align: center;
}
#front #course-menu ul.course > li .ttl p span {
  line-height: 100%;
  position: absolute;
  width: 47px;
  left: 0;
  right: 0;
  margin: auto;
  top: 37%;
}
#front #course-menu ul.course > li .ttl h3 {
  text-align: center;
  font-size: 45px;
  font-size: 4.5rem;
  font-family: "Old Standard TT", serif;
  font-weight: 400;
  margin-left: 5px;
}
#front #course-menu ul.course > li .ttl h3 small {
  font-size: 25px;
  font-size: 2.5rem;
}
#front #course-menu ul.course > li div.naiyou {
  text-align: center;
  font-family: "Cinzel", serif;
  margin-top: 15px;
  font-weight: bold;
}
#front #course-menu ul.course > li div.naiyou p, #front #course-menu ul.course > li div.naiyou > ul {
  display: inline-block;
  writing-mode: vertical-rl;
  text-orientation: upright;
  text-align: left;
}
#front #course-menu ul.course > li div.naiyou > ul {
  margin: 0;
  padding: 0;
}
#front #course-menu ul.course > li div.naiyou > ul li {
  text-indent: -0.5em;
}
#front #course-menu ul.course > li div.naiyou > ul li::before {
  content: "■";
  display: inline-block;
}
#front #course-menu .text {
  text-align: center;
  font-family: "Cinzel", serif;
  padding-bottom: 40px;
}
#front #course-menu .text p {
  font-size: 25px;
  font-size: 2.5rem;
  margin-bottom: 10px;
}
#front #course-menu .text span {
  display: block;
  font-size: 15px;
  font-size: 1.5rem;
  color: #3e3e3e;
  background: #fff;
  width: 260px;
  margin: auto;
  line-height: 100%;
  padding: 5px 10px;
  font-weight: bold;
}

@media screen and (max-width: 640px) {
  #front #course-menu ul.course {
    margin-bottom: 15px;
  }
  #front #course-menu ul.course li {
    width: 48%;
  }
  #front #course-menu ul.course li .feature {
    font-size: 15px;
    font-size: 1.5rem;
  }
  #front #course-menu ul.course li .ttl p {
    width: 45px;
    height: 45px;
  }
  #front #course-menu ul.course li .ttl p span {
    width: 45px;
  }
  #front #course-menu ul.course li .ttl h3 {
    font-size: 35px;
    font-size: 3.5rem;
  }
  #front #course-menu ul.course li .ttl h3 small {
    font-size: 20px;
    font-size: 2rem;
  }
  #front #course-menu ul.course li div.naiyou {
    font-size: 15px;
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 580px) {
  #front #course-menu ul.course li {
    width: 100%;
    max-width: 350px;
  }
  #front #course-menu ul.course li .feature {
    font-size: 17px;
    font-size: 1.7rem;
  }
  #front #course-menu ul.course li .ttl p {
    width: 47px;
    height: 47px;
  }
  #front #course-menu ul.course li .ttl p span {
    width: 47px;
  }
  #front #course-menu ul.course li .ttl h3 {
    font-size: 45px;
    font-size: 4.5rem;
  }
  #front #course-menu ul.course li .ttl h3 small {
    font-size: 25px;
    font-size: 2.5rem;
  }
  #front #course-menu ul.course li div.naiyou {
    font-size: 16px;
    font-size: 1.6rem;
  }
  #front #course-menu .text p {
    font-size: 23px;
    font-size: 2.3rem;
  }
}
@media screen and (max-width: 480px) {
  #front #course-menu .text {
    padding-bottom: 20px;
  }
  #front #course-menu .text p {
    font-size: 21px;
    font-size: 2.1rem;
  }
}
@media screen and (max-width: 400px) {
  #front #course-menu ul.course li {
    max-width: 320px;
  }
  #front #course-menu .text {
    padding-bottom: 10px;
  }
  #front #course-menu .text p {
    font-size: 19px;
    font-size: 1.9rem;
  }
}
@media screen and (max-width: 350px) {
  #front #course-menu ul.course li {
    max-width: 300px;
  }
  #front #course-menu ul.course li .feature {
    font-size: 16px;
    font-size: 1.6rem;
  }
  #front #course-menu ul.course li .ttl p {
    width: 45px;
    height: 45x;
  }
  #front #course-menu ul.course li .ttl p span {
    width: 45px;
  }
  #front #course-menu ul.course li .ttl h3 {
    font-size: 38px;
    font-size: 3.8rem;
  }
  #front #course-menu ul.course li .ttl h3 small {
    font-size: 23px;
    font-size: 2.3rem;
  }
  #front #course-menu .text p {
    font-size: 17px;
    font-size: 1.7rem;
  }
}
@media screen and (max-width: 320px) {
  #front #course-menu ul.course li {
    max-width: 280px;
  }
}
#front #lunch-menu figure {
  width: 90%;
  display: block;
  margin: auto;
  margin-bottom: 20px;
  max-width: 1100px;
}
#front #lunch-menu figure img {
  width: 100%;
  display: block;
  transition: all 0.3s ease;
}
#front #lunch-menu .text {
  text-align: center;
  font-family: "Cinzel", serif;
  padding-bottom: 40px;
}

@media only screen and (max-width: 640px) {
  #front #lunch-menu figure {
    margin: 0;
    padding: 0;
    width: 100%;
    position: relative;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.3s ease;
  }
  #front #lunch-menu figure:before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 2;
    background: #000;
    opacity: 0;
    transition: 0.3s;
  }
  #front #lunch-menu figure::after {
    content: "拡大する";
    display: block;
    color: #fff;
    line-height: 48px;
    width: 180px;
    border: solid 1px #fff;
    border-radius: 5px;
    text-align: center;
    position: absolute;
    top: 45%;
    left: 0;
    right: 0;
    margin-top: -1em;
    margin-left: auto;
    margin-right: auto;
    opacity: 0;
    z-index: 3;
    transition: 0.3s;
    font-weight: bold;
    letter-spacing: 0.2em;
  }
  #front #lunch-menu figure:hover:before {
    opacity: 0.7;
  }
  #front #lunch-menu figure:hover:after {
    opacity: 1;
    margin-top: -0.5em;
  }
}
@media only screen and (max-width: 480px) {
  #front #lunch-menu .text {
    padding-bottom: 20px;
  }
}
@media only screen and (max-width: 400px) {
  #front #lunch-menu .text {
    padding-bottom: 10px;
  }
}
#front #grand-menu ul.flyer {
  margin: 0 0 20px;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -ms-flex-pack: center;
}
#front #grand-menu ul.flyer > li {
  width: 40%;
  max-width: 400px;
  margin: 0 5%;
}
#front #grand-menu ul.flyer > li:not(:last-child), #front #grand-menu ul.flyer > li:not(:nth-last-child(2)) {
  margin-bottom: 50px;
}
#front #grand-menu ul.flyer > li:last-child, #front #grand-menu ul.flyer > li:nth-last-child(2) {
  margin-bottom: 0;
}
#front #grand-menu ul.flyer > li figure {
  margin: 0;
  padding: 0;
  width: 100%;
  position: relative;
  cursor: pointer;
  overflow: hidden;
  transition: all 0.3s ease;
}
#front #grand-menu ul.flyer > li figure:before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 2;
  background: #000;
  opacity: 0;
  transition: 0.3s;
}
#front #grand-menu ul.flyer > li figure::after {
  content: "拡大する";
  display: block;
  color: #fff;
  line-height: 48px;
  width: 180px;
  border: solid 1px #fff;
  border-radius: 5px;
  text-align: center;
  position: absolute;
  top: 45%;
  left: 0;
  right: 0;
  margin-top: -1em;
  margin-left: auto;
  margin-right: auto;
  opacity: 0;
  z-index: 3;
  transition: 0.3s;
  font-weight: bold;
  letter-spacing: 0.2em;
}
#front #grand-menu ul.flyer > li figure:hover:before {
  opacity: 0.7;
}
#front #grand-menu ul.flyer > li figure:hover:after {
  opacity: 1;
  margin-top: -0.5em;
}
#front #grand-menu ul.flyer > li figure img {
  width: 100%;
  display: block;
  transition: all 0.3s ease;
}
#front #grand-menu .text {
  text-align: center;
  font-family: "Cinzel", serif;
  padding-bottom: 40px;
}

@media only screen and (max-width: 640px) {
  #front #grand-menu ul.flyer {
    margin-bottom: 0;
  }
  #front #grand-menu ul.flyer > li {
    width: 46%;
    margin-right: 2%;
    margin-left: 2%;
  }
}
@media only screen and (max-width: 580px) {
  #front #grand-menu ul.flyer > li {
    width: 100%;
    max-width: 350px;
    margin-right: auto;
    margin-left: auto;
  }
  #front #grand-menu ul.flyer > li:nth-last-child(2) {
    margin-bottom: 50px;
  }
}
@media only screen and (max-width: 480px) {
  #front #grand-menu .text {
    padding-bottom: 20px;
  }
}
@media screen and (max-width: 400px) {
  #front #grand-menu ul.flyer > li {
    max-width: 320px;
  }
  #front #grand-menu .text {
    padding-bottom: 10px;
  }
}
@media screen and (max-width: 350px) {
  #front #grand-menu ul.flyer > li {
    max-width: 300px;
  }
}
@media screen and (max-width: 320px) {
  #front #grand-menu ul.flyer > li {
    max-width: 280px;
  }
}
#front #grand-menu p.price-remark, #front #lunch-menu p.price-remark, #front #course-menu p.price-remark {
  font-size: 14px;
  font-size: 1.4rem;
  padding: 2rem 0;
}

@media screen and (max-width: 640px) {
  #grand-menu p.price-remark, #lunch-menu p.price-remark, #course-menu p.price-remark {
    padding-bottom: 0;
  }
}
/* --- モーダルウィンドウ --- */
.modal {
  position: fixed;
  inset: 0;
  display: block;
  z-index: 1000;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.22s ease, visibility 0.22s;
  background: rgba(0, 0, 0, 0.5);
  overflow-y: auto; /* ここでスクロール可 */
}
.modal a.close-btn {
  position: absolute;
  display: block;
  background: #fff;
  color: #000;
  border: 0;
  border-radius: 50%;
  width: 38px;
  height: 38px;
  font-size: 20px;
  font-size: 2rem;
  line-height: 35px;
  font-weight: bold;
  text-align: center;
  margin: auto;
}
.modal a.close-btn:hover {
  color: #000;
}

.modal[aria-hidden=false] {
  visibility: visible;
  opacity: 1;
}

#modal-grand .modal-panel {
  max-width: 500px;
  display: block;
  position: relative;
  margin: auto;
}
#modal-grand .modal-imgwrap {
  width: 100%;
  height: auto;
  display: block;
  padding: 5px 0;
  margin: 25px auto 50px;
  background: #fff;
  border-radius: 5px;
}
#modal-grand .modal-img {
  width: 97%;
  display: block;
  margin: auto;
}
#modal-grand .close-top {
  top: -15px;
  right: -15px;
}
#modal-grand .close-bottom {
  right: 0;
  left: 0;
  bottom: -25px;
}

@media only screen and (max-width: 580px) {
  #modal-grand .modal-panel {
    max-width: none;
    width: 85%;
  }
}
@media only screen and (max-width: 400px) {
  #modal-grand .modal-panel {
    width: 90%;
  }
}
#modal-lunch .modal-panel {
  display: block;
  position: relative;
  margin: auto;
}
#modal-lunch .modal-imgwrap {
  background: #fff;
  border-radius: 0;
  width: auto;
  padding: 20px;
  margin: 30px 0 45px 10%;
  overflow: scroll;
}
#modal-lunch .modal-imgwrap img {
  width: 700px;
}
#modal-lunch a.close-btn {
  background: #da1f29;
  color: #fff;
  border: 3px solid #fff;
}
#modal-lunch .close-top {
  top: -17px;
  left: 40px;
}

#front #roaster .sec-inner {
  background: #fff;
  margin-bottom: 0;
  max-width: 2000px;
}
#front #roaster .banner {
  width: 100%;
  max-width: 1205px;
  margin: auto;
}
#front #roaster .banner-inner {
  display: flex;
  flex-wrap: wrap;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  margin: auto;
  padding: 30px 0;
  width: 60%;
}
#front #roaster .banner-inner figure {
  width: 30%;
  margin: 0;
  padding: 0;
  margin-right: 10px;
}
#front #roaster .banner-inner figure img {
  width: 100%;
  display: block;
}
#front #roaster .banner-inner .text {
  font-family: "Cinzel", serif;
  color: #000;
  padding-left: 10px;
  width: calc(100% - (30% + 25px + 10px));
}
#front #roaster .banner-inner .text .catch {
  font-size: 30px;
  font-size: 3rem;
  display: flex;
  flex-wrap: wrap;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  font-weight: bold;
}
#front #roaster .banner-inner .text .catch span {
  color: #fff;
  text-align: center;
  display: block;
  padding: 5px 10px 1px;
  line-height: 100%;
}
#front #roaster .banner-inner .text .catch span.stores {
  background: #e83328;
}
#front #roaster .banner-inner .text .catch span.seats {
  background: #000;
}
#front #roaster .banner-inner .text h2 {
  font-size: 32px;
  font-size: 3.2rem;
  line-height: 150%;
  margin: 10px 0 0;
}
#front #roaster .banner-inner .text p {
  font-size: 15px;
  font-size: 1.5rem;
  font-weight: bold;
}

@media screen and (max-width: 640px) {
  #front #roaster {
    background: #fff;
  }
  #front #roaster .banner-inner {
    width: 100%;
  }
  #front #roaster .banner-inner figure {
    width: 80%;
    margin: 30px auto 20px;
  }
  #front #roaster .banner-inner .text {
    width: 80%;
    padding-left: 0;
    margin: 0 auto 30px;
  }
}
@media screen and (max-width: 500px) {
  #front #roaster .banner-inner figure {
    width: 90%;
  }
  #front #roaster .banner-inner .text {
    width: 90%;
  }
}
@media screen and (max-width: 420px) {
  #front #roaster .banner-inner .text h2 {
    font-size: 30px;
    font-size: 3rem;
  }
}
@media screen and (max-width: 400px) {
  #front #roaster .banner-inner .text h2 {
    font-size: 28px;
    font-size: 2.8rem;
  }
}
@media screen and (max-width: 380px) {
  #front #roaster .banner-inner .text h2 {
    font-size: 27px;
    font-size: 2.7rem;
  }
}
@media screen and (max-width: 360px) {
  #front #roaster .banner-inner .text h2 {
    font-size: 26px;
    font-size: 2.6rem;
  }
}
@media screen and (max-width: 330px) {
  #front #roaster .banner-inner .text h2 {
    font-size: 25px;
    font-size: 2.5rem;
  }
}
#front #recruit .banner {
  display: flex;
  flex-wrap: wrap;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -ms-flex-pack: center;
  margin: 0 auto 100px;
}
#front #recruit .banner figure {
  height: 350px;
  width: 30%;
  margin: 0;
  display: inline-block;
  background-image: url(./images/staff.jpg?201512111857);
  background-position: center top;
  background-size: cover;
  background-repeat: no-repeat;
}
#front #recruit .banner .text {
  height: 350px;
  width: 37%;
  background: #fff;
  color: #000;
}
#front #recruit .banner .text .text-inner {
  margin: 20px auto 20px;
  width: 88%;
}
#front #recruit .banner .text h4 {
  text-align: center;
  font-size: 19px;
  font-size: 1.9rem;
  padding-bottom: 10px;
  border-bottom: 1px solid #818181;
  font-family: "Cinzel", serif;
  margin-bottom: 25px;
}
#front #recruit .banner .text dl {
  margin: 0 0 20px;
  padding: 0;
}
#front #recruit .banner .text dl dt {
  font-family: "Cinzel", serif;
  display: flex;
  flex-wrap: wrap;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  margin-bottom: 5px;
}
#front #recruit .banner .text dl dt h3 {
  font-size: 22px;
  font-size: 2.2rem;
  margin-right: 1rem;
}
#front #recruit .banner .text dl dt h3::before {
  content: "■";
  display: inline-block;
  color: #e60013;
  font-size: 15px;
  font-size: 1.5rem;
  vertical-align: middle;
  margin-right: 5px;
}
#front #recruit .banner .text dl dt small {
  font-size: 11px;
  font-size: 1.1rem;
  font-weight: bold;
  line-height: 150%;
}
#front #recruit .banner .text dl dd {
  margin: 0 0 15px;
  padding: 0;
}
#front #recruit .banner .text dl dd ul {
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
}
#front #recruit .banner .text dl dd ul li {
  width: 80px;
  border-radius: 3px;
  line-height: 100%;
  font-size: 11px;
  font-size: 1.1rem;
  color: #fff;
  text-align: center;
  padding: 5px 0;
  font-weight: bold;
  margin: 0 5px 5px;
}
#front #recruit .banner .text dl dd ul li.shop1 {
  background: #e60013;
}
#front #recruit .banner .text dl dd ul li.shop2 {
  background: #eb5416;
}
#front #recruit .banner .text dl dd ul li.shop3 {
  background: #8fc31f;
}
#front #recruit .banner .text dl dd ul li.shop4 {
  background: #00a29a;
}
#front #recruit .banner .text .tel p {
  font-size: 17px;
  font-size: 1.7rem;
  font-family: "Cinzel", serif;
  margin-bottom: 10px;
  font-weight: bold;
}
#front #recruit .banner .text .tel span {
  font-family: "Cinzel", serif;
  font-size: 14px;
  font-size: 1.4rem;
  font-weight: bold;
}
#front #recruit .banner .text .tel a.tel-link {
  display: none;
}
#front #recruit .banner .text .tel a.tel-link, #front #recruit .banner .text .tel tel {
  color: #000;
  font-size: 35px;
  font-size: 3.5rem;
  font-weight: bold;
}
#front #recruit .banner .text .tel a.tel-link::before, #front #recruit .banner .text .tel tel::before {
  content: "";
  display: inline-block;
  width: 40px;
  height: 40px;
  background-image: url(./images/phone.png);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
  margin-bottom: 5px;
}

@media screen and (max-width: 640px) {
  #front #recruit .banner {
    width: 80%;
    margin-bottom: 35px;
  }
  #front #recruit .banner figure {
    width: 100%;
  }
  #front #recruit .banner .text {
    width: 100%;
    height: auto;
  }
  #front #recruit .banner .text .text-inner {
    width: 80%;
  }
  #front #recruit .banner .text .tel tel {
    display: none;
  }
  #front #recruit .banner .text .tel a.tel-link {
    display: block;
  }
}
@media screen and (max-width: 580px) {
  #front #recruit .banner {
    width: 85%;
  }
  #front #recruit .banner figure {
    height: 350px;
  }
  #front #recruit .banner .text .text-inner {
    width: 90%;
  }
}
@media screen and (max-width: 520px) {
  #front #recruit .banner {
    width: 88%;
  }
  #front #recruit .banner figure {
    height: 320px;
  }
}
@media screen and (max-width: 480px) {
  #front #recruit .banner {
    width: 90%;
  }
  #front #recruit .banner figure {
    height: 300px;
  }
}
@media screen and (max-width: 440px) {
  #front #recruit .banner {
    width: 94%;
  }
  #front #recruit .banner figure {
    height: 280px;
  }
}
@media screen and (max-width: 420px) {
  #front #recruit .banner .text h4 {
    font-size: 18px;
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 400px) {
  #front #recruit .banner .text .tel p {
    font-size: 16px;
    font-size: 1.6rem;
  }
  #front #recruit .banner .text .tel span {
    display: block;
    text-align: right;
  }
}
@media screen and (max-width: 380px) {
  #front #recruit .banner .text h4 {
    font-size: 17px;
    font-size: 1.7rem;
  }
}
@media screen and (max-width: 350px) {
  #front #recruit .banner .text h4 {
    font-size: 16px;
    font-size: 1.6rem;
  }
  #front #recruit .banner .text .tel p {
    font-size: 15px;
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 330px) {
  #front #recruit .banner .text h4 {
    font-size: 15px;
    font-size: 1.5rem;
  }
}
/*お知らせ
-------------------------------------*/
#front #news {
  padding-bottom: 0;
}

/*
@media screen and (max-width: 640px){
  #front #news{
    .sec-inner{width:90%;}
  }
}

@media screen and (max-width: 350px){
  #front #news{
   .sec-inner{width:94%;}
  }
}
  */
#news .nolist {
  margin: 70px auto;
  text-align: center;
  width: 94%;
}
#news ul.news-entry {
  padding: 0;
  margin: 0 auto 50px;
  width: 80%;
  min-width: 800px;
}
#news ul.news-entry li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  padding: 1.5rem 0;
  padding-left: 1rem;
  font-size: 16px;
  font-size: 1.6rem;
  transition: all 0.3s ease;
}
#news ul.news-entry li:hover {
  background-color: rgba(218, 31, 41, 0.5);
}
#news ul.news-entry li a {
  display: block;
}
#news ul.news-entry li time {
  width: 155px;
  display: inline-block;
  vertical-align: middle;
  color: #e70014;
  padding: 1rem 0;
  margin-right: 20px;
  text-align: center;
  font-weight: bold;
}
#news ul.news-entry li p {
  width: calc(100% - (155px + 20px + 10px));
  display: inline-block;
  vertical-align: middle;
}
#news .more {
  text-align: center;
  margin-top: 40px;
  padding-bottom: 40px;
}
#news .more a {
  color: #fff;
  background: #e70014;
  font-size: 17px;
  font-size: 1.7rem;
  position: relative;
  display: inline-block;
  padding: 0 25px;
  line-height: 45px;
  height: 45px;
  transition: all 0.3s ease;
}
#news .more a:hover {
  opacity: 0.8;
}
#news .more a span {
  display: inline-block;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  text-align: center;
  line-height: 30px;
  font-size: 20px;
  font-size: 2rem;
  font-weight: bold;
  position: relative;
  color: #fff;
  border: 2px solid;
  margin-left: 1rem;
}
#news .more a span::after {
  content: "→";
}

@media screen and (max-width: 640px) {
  #news ul.news-entry {
    width: 92%;
    min-width: 0;
  }
  #news ul.news-entry li {
    padding-left: 0.5rem;
  }
  #news ul.news-entry li time {
    width: 135px;
    margin-right: 10px;
  }
  #news ul.news-entry li p {
    width: calc(100% - (135px + 10px + 10px));
  }
}
@media screen and (max-width: 450px) {
  #news ul.news-entry li {
    font-size: 15px;
    font-size: 1.5rem;
  }
  #news ul.news-entry li time {
    width: 120px;
  }
  #news ul.news-entry li p {
    width: calc(100% - (120px + 10px + 10px));
  }
}
@media screen and (max-width: 400px) {
  #news ul.news-entry li time {
    width: 120px;
  }
  #news ul.news-entry li p {
    width: calc(100% - (120px + 10px + 10px));
  }
}
@media screen and (max-width: 350px) {
  #news ul.news-entry {
    width: 94%;
  }
  #news .more {
    margin-top: 25px;
  }
}
@media screen and (max-width: 320px) {
  #news .more {
    margin-top: 20px;
  }
}
/*お知らせ一覧ページ
-------------------------------------*/
#second.news section.sec {
  margin-bottom: 100px;
}

@media screen and (max-width: 640px) {
  #second.news section.sec {
    margin-bottom: 50px;
  }
  #second.news section.sec .inner {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
}
/*
@media screen and (max-width: 350px){
  #second.news section.sec{
   .inner{width:94%;}
  }
}
  */
/*お知らせ詳細ページ
-------------------------------------*/
#second.news article {
  width: 90%;
  margin: auto;
}
#second.news .entry-header {
  text-align: center;
  padding-top: 150px;
  width: 80%;
  margin: 0 auto 50px;
  min-width: 800px;
}
#second.news .entry-header h2 {
  font-size: 27px;
  font-size: 2.7rem;
  line-height: 150%;
}
#second.news .notfound {
  text-align: center;
  margin: 0 auto 50px;
}
#second.news .post-thumbnail {
  text-align: center;
  margin-bottom: 40px;
}
#second.news .post-thumbnail img {
  max-width: 100%;
  width: auto;
  height: auto;
}
#second.news .entry-content {
  padding: 0;
  margin: 0 auto 50px;
  width: 80%;
  min-width: 800px;
}
#second.news .news-editor {
  font-size: inherit;
  padding: 1rem 0;
  line-height: 180%;
}
#second.news .news-editor p a {
  -webkit-text-decoration: underline double #da1f29;
          text-decoration: underline double #da1f29;
  transition: all 0.3s ease;
}
#second.news .news-editor p a:hover {
  opacity: 0.7;
}
#second.news .posts-navigation {
  margin: 70px auto;
}
#second.news .screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  height: 1px;
  overflow: hidden;
  position: absolute !important;
  width: 1px;
  word-wrap: normal !important;
}
#second.news .nav-links {
  width: 200px;
  margin: auto;
}
#second.news .nav-links:after {
  content: "";
  display: block;
  clear: both;
}
#second.news .nav-links .nav-previous a, #second.news .nav-links .nav-next a {
  position: relative;
  font-size: 15px;
  font-size: 1.5rem;
  transition: all 0.3s ease;
}
#second.news .nav-links .nav-previous a:hover, #second.news .nav-links .nav-next a:hover {
  opacity: 0.7;
}
#second.news .nav-links .nav-previous a::before, #second.news .nav-links .nav-next a::before {
  font-size: 20px;
  font-size: 2rem;
  color: #da1f29;
  position: absolute;
  top: -3px;
}
#second.news .nav-previous {
  float: left;
}
#second.news .nav-previous a::before {
  font-family: "FontAwesome";
  content: "\f0a8";
  left: -2rem;
}
#second.news .nav-next {
  float: right;
}
#second.news .nav-next a::before {
  font-family: "FontAwesome";
  content: "\f0a9";
  right: -2rem;
}

@media screen and (max-width: 640px) {
  #second.news .entry-header {
    padding-top: 30px;
    margin-bottom: 40px;
    width: 100%;
    min-width: 0;
  }
  #second.news .entry-content {
    width: 100%;
    min-width: 0;
  }
  #second.news .post-thumbnail {
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 350px) {
  #second.news article {
    width: 94%;
  }
}
/*サブページ共通
-------------------------------------*/
.sub-header {
  padding-top: 150px;
  margin-bottom: 50px;
}
.sub-header h1 {
  color: #fdf7f1;
  text-align: center;
  font-size: 27px;
  font-size: 2.7rem;
  line-height: 100%;
}
.sub-header h1 small {
  display: block;
  font-size: 15px;
  font-size: 1.5rem;
  margin-top: 0.5em;
  position: relative;
  letter-spacing: 0;
}
.sub-header h1 small::after {
  content: "";
  display: block;
  position: absolute;
  width: 50px;
  height: 2px;
  background-color: #fdf7f1;
  margin: auto;
  left: 0;
  right: 0;
  bottom: -7px;
}

@media screen and (max-width: 640px) {
  .sub-header {
    padding-top: 30px;
  }
}
/*
a.arrow{
  position: absolute;
  border: 1px solid #9f9fa0;
  border-radius: 50%;
  width: 28px;
  height: 28px;
  top: 0;
  right: 0;
  margin: auto;

  @include hover-transition(all,0.3s,ease);   
  &:hover{
    background:#d9d9dc ;
    opacity: 0.7;
  }  
}
.dli-arrow-right {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  color: #71717D;
  background: currentColor;
  line-height: 1;
  width: 0.8em;
  height: 0.1em;
  left: 7px;
}

.dli-arrow-right::before {
  content: '';
  width: 0.55em;
  height: 0.55em;
  border: 0.1em solid currentColor;
  border-left: 0;
  border-bottom: 0;
  transform: rotate(45deg);
  transform-origin: top right;
  position: absolute;
  top: 50%;
  right: -0.05em;
  box-sizing: border-box;
}
  */
/*404ページ
-------------------------------------*/
.error-404 {
  color: #fdf7f1;
  text-align: center;
  padding: 100px 0 150px;
}
.error-404 .txt_404 {
  line-height: 180%;
  margin: 50px auto;
}
.error-404 a {
  color: #fff;
  background: #da1f29;
  padding: 0.7rem 6rem;
  font-size: 16px;
  font-size: 1.6rem;
  transition: all 0.3s ease;
}
.error-404 a:hover {
  opacity: 0.7;
}

@media only screen and (max-width: 640px) {
  .error-404 {
    padding-top: 30px;
  }
  .error-404 .txt_404 {
    width: 90%;
  }
}
@media only screen and (max-width: 480px) {
  .error-404 .txt_404 {
    font-size: 15px;
    font-size: 1.5rem;
  }
}
@media only screen and (max-width: 320px) {
  .error-404 .txt_404 {
    font-size: 14px;
    font-size: 1.4rem;
  }
}
/*パンくずリスト
-----------------------------------*/
.breadcrumb {
  margin: 0 0 1em 0;
  padding: 0;
}

.breadcrumb li {
  list-style-type: none;
}

.breadcrumb li a {
  display: inline-block;
  color: #959fa5;
}

/*スマホ用ハンバーガーメニュー
-------------------------------------*/
.hamburger {
  position: absolute;
  right: 20px;
  top: 20px;
  cursor: pointer;
  z-index: 300;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  border: 1px solid #fdf7f1;
  display: none;
}
.hamburger:hover {
  background: rgba(218, 31, 41, 0.5);
}

.open .hamburger {
  position: fixed;
}

.hamburger-line {
  position: absolute;
  width: 50px;
  height: 3px;
  right: 0;
  transition: all 0.5s;
  width: 60%;
  height: 1px;
  background: #fdf7f1;
  transition: all 250ms ease-out;
  transform-origin: 0 0;
  position: absolute;
  left: 20%;
}
.hamburger-line:nth-child(1) {
  top: 70%;
}
.hamburger-line:nth-child(2) {
  top: 50%;
}
.hamburger-line:nth-child(3) {
  top: 30%;
}

/*ハンバーガーがクリックされたら*/
.open .hamburger-line {
  left: 29%;
}
.open .hamburger-line:nth-child(1) {
  transform: rotate(-45deg) translate(-1px, 0px);
}
.open .hamburger-line:nth-child(2) {
  opacity: 0;
}
.open .hamburger-line:nth-child(3) {
  transform: rotate(45deg) translate(0px, -1px);
}

@media screen and (max-width: 640px) {
  .hamburger {
    display: block;
  }
}
/* 
sp-nav(ナビ)
=================================== */
.sp-nav {
  position: fixed;
  top: -100%; /*ハンバーガーがクリックされる前はWindow上部に隠す*/
  left: 0;
  width: 100%; /* 出てくるスライドメニューの幅 */
  transition: all 0.5s;
  z-index: 200;
  overflow-y: auto;
  padding-top: 25px;
  padding-bottom: 20px;
  background-color: #343235;
  background-image: url(./images/back.jpg?202512161840);
  background-repeat: repeat;
  background-size: cover;
  background-position: center top;
}
.sp-nav ul {
  padding: 0;
  margin: 20px auto;
  width: 98%;
}
.sp-nav ul li {
  position: relative;
}
.sp-nav ul li::after {
  content: "";
  display: block;
  clear: both;
}
.sp-nav ul li a {
  margin: 0 10px;
  height: 100%;
  text-decoration: none;
  display: block;
  text-align: left;
  padding: 10px 1rem;
  border-bottom: 1px solid #fdf7f1;
  transition: all 0.3s ease;
}
.sp-nav ul li a:hover {
  opacity: 0.8;
  background: rgba(218, 31, 41, 0.5);
}
.sp-nav ul li a:hover:after {
  color: #fdf7f1;
}
.sp-nav ul li a:after {
  transition: all 0.3s ease;
  font-family: "FontAwesome";
  content: "\f078";
  color: #ba935c;
  margin-right: 1rem;
  position: absolute;
  right: 0;
}
.sp-nav ul li a small {
  margin-left: 1rem;
}

@media (hover: none) {
  .sp-nav ul li a:active {
    background: #da1f29;
  }
}
.nav-close {
  display: block;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  line-height: 40px;
  color: #fdf7f1;
  text-align: center;
  border: 1px solid;
  margin: 0 auto;
  font-size: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.nav-close:hover {
  background: rgba(218, 31, 41, 0.5);
}

/*ハンバーガーがクリックされたら上からスライド*/
.open .sp-nav {
  top: 0;
}

/* 
black-bg(ハンバーガーメニュー解除用bg)
=================================== */
.black-bg {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  z-index: 5;
  background-color: #000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s;
  cursor: pointer;
  z-index: 100;
}

/*ハンバーガーメニューが開いたら表示*/
.open .black-bg {
  opacity: 0.3;
  visibility: visible;
}/*# sourceMappingURL=style.css.map */