@charset "UTF-8";
/* ===============================

レスポンシブ

=============================== */
@media screen and (max-width: 1080px) {
  .pc-off {
    display: none !important;
  }
}

.pc-on {
  display: none !important;
}
@media screen and (max-width: 1080px) {
  .pc-on {
    display: flex !important;
  }
}

.tab-on {
  display: none;
}
@media screen and (max-width: 880px) {
  .tab-on {
    display: grid;
  }
}

@media screen and (max-width: 880px) {
  .tab-off {
    display: none !important;
  }
}

.sp-on {
  display: none;
}
@media screen and (max-width: 500px) {
  .sp-on {
    display: inline;
  }
}

@media screen and (max-width: 500px) {
  .sp-off {
    display: none;
  }
}

/* ===============================

色

=============================== */
/* ===============================

共通の設定

=============================== */
html {
  overflow-x: hidden;
  width: 100vw;
  position: relative;
}

body {
  font-family: "Shippori Mincho", "游明朝", YuMincho, "Yu Mincho", "Hiragino Mincho Pro", serif;
  line-height: 1.8;
  letter-spacing: 0.085em;
  color: #333;
  font-size: 16px;
  position: relative;
  width: 100%;
  overflow-x: hidden;
}
@media screen and (max-width: 500px) {
  body {
    font-size: 14px;
    letter-spacing: 0.01em;
  }
}

.contents {
  max-width: 1020px;
  margin: 0 auto;
}
@media screen and (max-width: 1080px) {
  .contents {
    width: 90%;
  }
}

a {
  text-decoration: none;
}

li {
  list-style-type: none;
}

img {
  max-width: 100%;
}

/* ===============================

スクロールで要素がフェードイン

=============================== */
.fade-up {
  transition: 0.8s ease-in-out;
  transform: translateY(30px);
  opacity: 0;
}

.fade-up.on {
  transform: translateY(0);
  opacity: 1;
}

.fade-left {
  transition: 0.8s ease-in-out;
  transform: translateX(-30px);
  opacity: 0;
  filter: alpha(opacity=0);
  -moz-opacity: 0;
}

.fade-left.on {
  opacity: 1;
  filter: alpha(opacity=100);
  -moz-opacity: 1;
  transform: translateX(0);
}

.fade-right {
  transition: 0.8s ease-in-out;
  transform: translateX(30px);
  opacity: 0;
  filter: alpha(opacity=0);
  -moz-opacity: 0;
}

.fade-right.on {
  opacity: 1;
  filter: alpha(opacity=100);
  -moz-opacity: 1;
  transform: translateX(0);
}

#header {
  padding-top: 62px;
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  z-index: 6666;
}
@media (max-width: 1380px) {
  #header {
    justify-content: start;
    padding-left: 40px;
  }
}
@media screen and (max-width: 1080px) {
  #header {
    justify-content: center;
    padding-left: 0;
  }
}
@media screen and (max-width: 880px) {
  #header {
    display: none;
  }
}
#header nav ul {
  display: flex;
  gap: 28px;
}
#header nav ul li a {
  color: #fff;
  font-weight: bold;
  position: relative;
  font-size: 14px;
  transition: all 0.3s;
}
#header nav ul li a::after {
  width: 1px;
  height: 12px;
  background-color: #fff;
  content: "";
  position: absolute;
  transform: rotate(30deg);
  top: 8px;
  right: -15px;
}
#header nav ul li a:hover {
  opacity: 0.6;
}
#header nav ul li:last-child a::after {
  display: none;
}
#header .reserveBtn {
  color: #fff;
  font-weight: bold;
  border: 1px solid #fff;
  padding: 7px 45px 10px 35px;
  position: absolute;
  right: 30px;
}
@media screen and (max-width: 1080px) {
  #header .reserveBtn {
    display: none;
  }
}
#header .reserveBtn::after {
  content: url(../img/sankaku.svg);
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translate(0, -50%);
  transition: all 0.3s;
}
#header .reserveBtn:hover::after {
  right: 14px;
}

/*　ハンバーガーボタン　*/
.hamburger {
  display: none;
  position: fixed;
  z-index: 6667;
  right: 20px;
  top: 12px;
  width: 42px;
  height: 42px;
  cursor: pointer;
  text-align: center;
}
@media screen and (max-width: 880px) {
  .hamburger {
    display: block;
  }
}

.hamburger span {
  display: block;
  position: absolute;
  width: 30px;
  height: 1px;
  background: #fff;
  transition: 0.3s ease-in-out;
  right: 0;
}

.hamburger .ham_span.change-color {
  background-color: #8ca09c;
}

.hamburger span:nth-child(1) {
  top: 10px;
}

.hamburger span:nth-child(2) {
  top: 17px;
}

.hamburger span:nth-child(3) {
  top: 24px;
}

/* ナビ開いてる時のボタン */
.hamburger.active span:nth-child(1) {
  top: 16px;
  transform: rotate(-28deg);
  top: 20px;
  background-color: #fff;
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  top: 20px;
  transform: rotate(28deg);
  background-color: #fff;
}

nav.globalMenuSp {
  position: fixed;
  z-index: 6666;
  top: 0;
  left: 0;
  background: #8ca09c;
  text-align: center;
  transform: translateX(100%);
  transition: all 0.6s;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 20px;
}
nav.globalMenuSp .hum-logo {
  width: 200px;
}

nav.globalMenuSp ul {
  margin: 0 auto;
  padding: 0;
  width: 100%;
}

nav.globalMenuSp ul li {
  list-style-type: none;
  padding: 0;
  width: 100%;
}

nav.globalMenuSp ul li:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

nav.globalMenuSp ul li a {
  display: block;
  color: #fff;
  padding: 8px 0;
  text-decoration: none;
}

/* このクラスを、jQueryで付与・削除する */
nav.globalMenuSp.active {
  transform: translateX(0%);
}

footer {
  background-color: #8ca09c;
  padding: 60px 0;
}
footer h1 {
  text-align: center;
}
footer .f-linkArea {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  gap: 40px;
}
footer .f-linkArea a {
  color: #fff;
  border: 1px solid #fff;
  width: 250px;
  padding: 18px 0;
  text-align: center;
  display: block;
  position: relative;
  transition: all 0.3s;
}
footer .f-linkArea a:hover {
  opacity: 0.6;
}
footer .f-linkArea a::after {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 5px;
  border: 1px solid #fff;
  left: 5px;
  content: "";
}
@media screen and (max-width: 880px) {
  footer .f-linkArea {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
}
footer p {
  text-align: center;
  margin-top: 60px;
}
footer p small {
  color: #fff;
}

.circle {
  position: fixed;
  bottom: 50px;
  right: 25px;
  z-index: 777;
  height: 150px;
  width: 150px;
}
@media screen and (max-width: 500px) {
  .circle {
    bottom: 0px;
    right: 20px;
    width: 100px;
  }
}
.circle img:first-child {
  position: absolute;
  top: 35px;
  left: 65px;
  transform: translate(-50%);
}
@media screen and (max-width: 500px) {
  .circle img:first-child {
    width: 35px;
    left: 48px;
    top: 25px;
  }
}
.circle img:nth-child(2) {
  -webkit-animation: 18s linear infinite circle;
          animation: 18s linear infinite circle;
}
@-webkit-keyframes circle {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes circle {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}

.mv {
  min-height: 100vh;
  position: relative;
  width: 100vw;
}
@media screen and (max-width: 500px) {
  .mv {
    min-height: 70vh;
  }
}
.mv .enjoy {
  position: absolute;
  top: 15%;
  left: 6%;
  width: 500px;
  z-index: 5555;
}
@media screen and (max-width: 1080px) {
  .mv .enjoy {
    width: 400px;
  }
}
@media screen and (max-width: 880px) {
  .mv .enjoy {
    width: 60%;
    top: 9%;
  }
}
.mv h1 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 5556;
  width: 280px;
}
@media screen and (max-width: 1080px) {
  .mv h1 {
    width: 240px;
  }
}
@media screen and (max-width: 880px) {
  .mv h1 {
    width: 180px;
  }
}

.mv01 {
  width: 100vw;
  overflow: hidden;
  display: block;
}

.swiper {
  overflow: hidden;
  width: 100vw;
}

.swiper-wrapper {
  width: 100%;
  overflow: hidden;
}

.swiper-slide {
  width: 100%;
  overflow: hidden;
}

.swiper-slide img {
  width: 100%;
  overflow: hidden;
  -o-object-fit: cover;
     object-fit: cover;
}

.slide {
  width: 100%;
  overflow: hidden;
}

.slide-media,
.thumb-media {
  position: relative;
  overflow: hidden;
  width: 100%;
}

.slide-media img,
.thumb-media img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.swiper-button-disabled {
  pointer-events: none;
  opacity: 0;
}

.mv01 .swiper-fade .swiper-slide {
  transition-property: opacity, transform !important;
  pointer-events: none;
}

.mv01 .swiper-fade .swiper-slide-active {
  pointer-events: auto;
}

.mv01 .swiper-pagination {
  position: absolute;
  z-index: 1;
  top: 0;
  bottom: 0;
  right: 45px;
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
  margin: auto;
}
@media screen and (max-width: 500px) {
  .mv01 .swiper-pagination {
    display: flex;
    gap: 16px;
    right: auto;
    left: 50%;
    top: auto;
    bottom: 25px;
    transform: translate(-50%, 0);
  }
}

.mv01 .swiper-pagination-bullet {
  display: block;
  cursor: pointer;
  transition: var(--transition);
  border: 1px solid #fff;
  width: 8px;
  height: 8px;
  transform: rotate(45deg);
}

.mv01 .swiper-pagination-bullet:not(:first-child) {
  margin-top: 0.8rem;
}
@media screen and (max-width: 500px) {
  .mv01 .swiper-pagination-bullet:not(:first-child) {
    margin-top: 0;
  }
}

.mv01 .swiper-pagination-bullet-active {
  background-color: #fff;
}

.mv01 .slide-media {
  min-height: 100vh;
  overflow: hidden;
  width: 100%;
}
@media screen and (max-width: 500px) {
  .mv01 .slide-media {
    min-height: 70vh;
  }
}

.mv01 .slide-media img {
  transition: 7s 1s ease-out;
  width: 100%;
}

.mv01 .swiper-slide[class*=-active] .slide-media img {
  transition-delay: 0s;
  transform: scale(1.05);
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}

.mv01 .swiper-slide[class*=-active] .slide-title {
  -webkit-animation: mv01-fadeIn 2s 0.5s var(--easing) both;
  animation: mv01-fadeIn 2s 0.5s var(--easing) both;
}

@-webkit-keyframes mv01-fadeIn {
  0% {
    transform: scale(0.5);
    opacity: 0;
    filter: blur(300px);
  }
  100% {
    transform: scale(1);
    opacity: 1;
    filter: blur(0);
  }
}

@keyframes mv01-fadeIn {
  0% {
    transform: scale(0.5);
    opacity: 0;
    filter: blur(300px);
  }
  100% {
    transform: scale(1);
    opacity: 1;
    filter: blur(0);
  }
}
#concept {
  margin-bottom: 120px;
}
@media screen and (max-width: 500px) {
  #concept {
    margin-bottom: 60px;
  }
}
#concept .message {
  padding: 120px 0;
}
@media screen and (max-width: 500px) {
  #concept .message {
    padding: 30px 0 80px;
  }
}
#concept .message h2 {
  font-weight: 500;
  text-align: center;
  margin-bottom: 30px;
}
#concept .message p {
  font-size: 18px;
  text-align: center;
  line-height: 2.25;
}
@media screen and (max-width: 500px) {
  #concept .message p {
    font-size: 16px;
  }
}
#concept .feature ul {
  background-image: url(../img/concept-line.svg);
  background-position: 48%;
}
@media screen and (max-width: 1080px) {
  #concept .feature ul {
    background-position: 237px;
  }
}
@media screen and (max-width: 880px) {
  #concept .feature ul {
    background-position: 0px;
  }
}
#concept .feature ul li {
  display: flex;
  gap: 60px;
  margin-bottom: 20px;
  align-items: center;
}
#concept .feature ul li .feature_left {
  width: 40%;
}
@media screen and (max-width: 1080px) {
  #concept .feature ul li .feature_left {
    width: 200px;
  }
}
@media screen and (max-width: 1080px) {
  #concept .feature ul li {
    gap: 30px;
    margin-bottom: 50px;
  }
}
@media screen and (max-width: 880px) {
  #concept .feature ul li {
    flex-direction: column;
  }
}
@media screen and (max-width: 880px) {
  #concept .feature ul li .feature_right {
    width: 100%;
  }
}
#concept .feature ul li .feature_right h3 {
  color: #8ca09c;
  font-weight: 600;
  font-size: 30px;
  margin: 0 0 10px;
  padding-left: 50px;
}
@media screen and (max-width: 500px) {
  #concept .feature ul li .feature_right h3 {
    font-size: 24px;
  }
}
#concept .feature ul li .feature_right p {
  padding-left: 50px;
  font-size: 14px;
  line-height: 2;
}
#concept .feature ul li .feature_right a {
  color: #333;
  padding-left: 50px;
  margin-top: 15px;
  display: inline-block;
  text-decoration: underline;
}
@media screen and (max-width: 500px) {
  #concept .feature ul li .feature_right .feature_ttl {
    height: 45px;
  }
}
#concept .feature ul li .concept-attention {
  margin-top: 15px;
  padding-left: 15px;
  border-left: 1px solid #c2c2c2;
}
@media screen and (max-width: 1080px) {
  #concept .feature ul li .concept-attention {
    margin-left: 50px;
  }
}
#concept .feature ul li .concept-attention p {
  padding-left: 0 !important;
  font-size: 13px;
  line-height: 1.7;
}
@media screen and (max-width: 500px) {
  #concept .feature ul li .concept-attention p {
    font-size: 12px;
  }
}
#concept .feature ul .feature02 {
  gap: 95px;
}
@media screen and (max-width: 1080px) {
  #concept .feature ul .feature02 {
    flex-direction: row-reverse;
  }
}
#concept .feature ul .feature02 .feature_right {
  text-align: right;
}
#concept .feature ul .feature02 .feature_right h3 {
  padding-left: 0;
  padding-right: 50px;
}
#concept .feature ul .feature02 .feature_right img {
  display: inline-block;
}
#concept .feature ul .feature02 .feature_right p {
  text-align: left;
  padding-right: 50px;
  padding-left: 0;
}
#concept .feature ul .feature02 .feature_right .concept-attention {
  margin-top: 15px;
  padding-left: 15px;
  border-left: 1px solid #c2c2c2;
}
@media screen and (max-width: 1080px) {
  #concept .feature ul .feature02 .feature_right .concept-attention {
    margin-left: 50px;
  }
}
#concept .feature ul .feature02 .feature_right .concept-attention p {
  padding-left: 0 !important;
  font-size: 13px;
  line-height: 1.7;
}

#gallery {
  padding: 120px 0;
}
@media screen and (max-width: 500px) {
  #gallery {
    padding: 60px 0;
  }
}
#gallery h2 {
  text-align: center;
  font-size: 16px;
  color: #8ca09c;
  font-weight: 400;
  margin-bottom: 40px;
  line-height: 2.75;
}
@media screen and (max-width: 500px) {
  #gallery h2 {
    line-height: 2.25;
  }
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.5fr 0.5fr 1fr 0.6fr 1.4fr 0.5fr 1.5fr 1fr 1fr;
  grid-template-rows: 1.2fr 0.5fr 1.1fr 1.1fr 0.4fr 0.4fr;
  gap: 15px;
  grid-template-areas: "g1 g1 g2 g2 g3 g3 g4 g4 g4" "g5 g5 g2 g2 g7 g8 g8 g9 g9" "g5 g5 g6 g6 g7 g8 g8 g9 g9" "g10 g11 g11 g11 g12 g12 g13 g9 g9" ". g11 g11 g11 . . g13 . ." ". g11 g11 g11 . . . . .";
  height: 50vw;
}
.gallery-grid .g2 {
  grid-area: g2;
  background-color: #775050;
}
.gallery-grid .g5 {
  grid-area: g5;
  background-color: rgb(120, 25, 25);
}
.gallery-grid .g6 {
  grid-area: g6;
  background-color: rgb(63, 158, 98);
}
.gallery-grid .g3 {
  grid-area: g3;
  background-color: rgb(80, 144, 155);
}
.gallery-grid .g7 {
  grid-area: g7;
  background-color: rgb(140, 43, 108);
}
.gallery-grid .g4 {
  grid-area: g4;
  background-color: rgb(212, 146, 177);
}
.gallery-grid .g8 {
  grid-area: g8;
  background-color: rgb(182, 204, 76);
}
.gallery-grid .g10 {
  grid-area: g10;
  background-color: rgb(37, 18, 18);
}
.gallery-grid .g12 {
  grid-area: g12;
  background-color: rgb(114, 75, 199);
}
.gallery-grid .g13 {
  grid-area: g13;
  background-color: rgb(146, 201, 155);
}
.gallery-grid .g9 {
  grid-area: g9;
  background-color: aqua;
}
.gallery-grid .g11 {
  grid-area: g11;
  background-color: rgb(208, 136, 49);
}
.gallery-grid .g1 {
  grid-area: g1;
  background-color: rgb(137, 120, 94);
}

.gallery-grid02 {
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-template-rows: 0.5fr 0.7fr 0.6fr 0.6fr 0.7fr;
  gap: 0px 0px;
  grid-auto-flow: row;
  grid-template-areas: "g1 g2 g3 g3" "g1 g2 g3 g3" "g4 g2 g6 g7" "g4 g5 g6 g7" ". g5 g6 .";
  height: 80vh;
  gap: 15px;
}
@media screen and (max-width: 500px) {
  .gallery-grid02 {
    height: 60vw;
    gap: 10px;
  }
}
.gallery-grid02 .g1 {
  grid-area: g1;
  background-color: aqua;
}
.gallery-grid02 .g3 {
  grid-area: g3;
  background-color: rgb(208, 136, 49);
}
.gallery-grid02 .g4 {
  grid-area: g4;
  background-color: rgb(137, 120, 94);
}
.gallery-grid02 .g6 {
  grid-area: g6;
  background-color: rgb(114, 75, 199);
}
.gallery-grid02 .g5 {
  grid-area: g5;
  background-color: rgb(37, 18, 18);
}
.gallery-grid02 .g2 {
  grid-area: g2;
  background-color: rgb(182, 204, 76);
}
.gallery-grid02 .g7 {
  grid-area: g7;
  background-color: rgb(120, 25, 25);
}

#menu {
  padding: 120px 0;
  background-color: #fafaf8;
}
@media screen and (max-width: 500px) {
  #menu {
    padding: 60px 0;
  }
}
#menu h2 {
  text-align: center;
  font-size: 16px;
  color: #8ca09c;
  font-weight: 400;
  margin-bottom: 40px;
  line-height: 2.75;
}
@media screen and (max-width: 500px) {
  #menu h2 {
    margin-bottom: 20px;
    line-height: 2.25;
  }
}
#menu .menu-txt {
  text-align: center;
  line-height: 2.5;
  margin-bottom: 70px;
}
@media screen and (max-width: 500px) {
  #menu .menu-txt {
    margin-bottom: 40px;
  }
}
#menu .lunch {
  display: flex;
  gap: 50px;
}
@media screen and (max-width: 880px) {
  #menu .lunch {
    flex-direction: column;
    gap: 10px;
  }
}
#menu .lunch h3 {
  font-size: 32px;
  font-weight: 500;
}
@media screen and (max-width: 500px) {
  #menu .lunch h3 {
    font-size: 20px;
  }
}
#menu .lunch__left {
  width: 40%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 880px) {
  #menu .lunch__left {
    width: 100%;
  }
}
@media screen and (max-width: 500px) {
  #menu .lunch_txt p br {
    display: none;
  }
}
#menu .kids {
  margin-top: 90px;
}
@media screen and (max-width: 500px) {
  #menu .kids {
    margin-top: 40px;
  }
}
#menu .kids .kids-price {
  font-size: 18px;
  margin-bottom: 10px;
}
#menu .kids .kids-price span {
  font-size: 22px;
}
#menu .menu-attention {
  text-indent: -1.5em;
  padding-left: 1.5em;
}
#menu .menu-attention:first-of-type {
  margin-top: 50px;
}
@media screen and (max-width: 500px) {
  #menu .menu-attention:first-of-type {
    margin-top: 20px;
  }
}
#menu .lunch-content ul {
  margin-top: 30px;
}
#menu .lunch-content ul li {
  display: flex;
  background-color: #dde3e2;
  align-items: center;
  padding: 50px;
  justify-content: flex-end;
  margin-bottom: 30px;
}
@media screen and (max-width: 1080px) {
  #menu .lunch-content ul li {
    flex-direction: column;
    gap: 30px;
  }
}
@media screen and (max-width: 1080px) {
  #menu .lunch-content ul li {
    padding: 30px;
  }
}
#menu .lunch-content ul li:nth-child(2) {
  background-color: #e8ead6;
}
#menu .lunch-content ul li .deli-txt {
  margin-right: auto;
}
#menu .lunch-content ul li .deli-txt h4 {
  font-size: 24px;
  font-weight: 400;
}
#menu .lunch-content ul li .deli-txt p {
  font-size: 18px;
}
#menu .lunch-content ul li .deli-txt p span {
  font-size: 22px;
}
#menu .lunch-content ul li .main-menu {
  text-align: center;
  font-size: 18px;
  position: relative;
  margin-right: 80px;
}
#menu .lunch-content ul li .main-menu img {
  width: 190px;
}
@media (max-width: 700px) {
  #menu .lunch-content ul li .main-menu {
    margin-right: 0;
  }
}
#menu .lunch-content ul li .m-d-s {
  display: flex;
  align-items: center;
}
@media (max-width: 700px) {
  #menu .lunch-content ul li .m-d-s {
    flex-direction: column;
    gap: 50px;
  }
}
#menu .lunch-content ul li .deli-menu {
  text-align: center;
  font-size: 18px;
  position: relative;
  margin-right: 100px;
}
#menu .lunch-content ul li .deli-menu img {
  width: 200px;
}
@media (max-width: 700px) {
  #menu .lunch-content ul li .deli-menu {
    margin-right: 0;
  }
}
#menu .lunch-content ul li .deli-menu::after,
#menu .lunch-content ul li .main-menu::after {
  content: url(../img/plus.svg);
  position: absolute;
  top: 30%;
  right: -70px;
}
@media screen and (max-width: 1080px) {
  #menu .lunch-content ul li .deli-menu::after,
#menu .lunch-content ul li .main-menu::after {
    right: -60px;
  }
}
@media (max-width: 700px) {
  #menu .lunch-content ul li .deli-menu::after,
#menu .lunch-content ul li .main-menu::after {
    top: auto;
    bottom: -50px;
    right: auto;
    left: 50%;
    transform: translate(-50%, 0);
  }
}
@media screen and (max-width: 1080px) {
  #menu .lunch-content ul li .deli-menu::after,
#menu .lunch-content ul li .main-menu::after {
    content: url(../img/plus02.svg);
  }
}
#menu .lunch-content ul li .soup-bread {
  text-align: center;
  font-size: 18px;
  white-space: nowrap;
}
#menu a.menuLink {
  display: block;
  width: 100%;
  border: 1px solid #333;
  color: #333;
  padding: 50px 50px;
  margin-top: 50px;
  text-align: center;
  position: relative;
}
@media screen and (max-width: 1080px) {
  #menu a.menuLink {
    width: 90%;
  }
}
@media screen and (max-width: 500px) {
  #menu a.menuLink {
    margin-top: 30px;
    padding: 30px;
  }
}
#menu a.menuLink::after {
  content: url(../img/menu-arrow.svg);
  position: absolute;
  top: 45px;
  right: 40px;
  transition: all 0.3s;
  display: block;
}
@media screen and (max-width: 880px) {
  #menu a.menuLink::after {
    top: 22px;
    right: 22px;
  }
}
@media screen and (max-width: 500px) {
  #menu a.menuLink::after {
    transform: scale(0.8);
    top: 15px;
    right: 15px;
  }
}
#menu a.menuLink:hover::after {
  transform: scale(0.8);
}

#access {
  padding: 0 0 120px;
  background-color: #fafaf8;
}
@media screen and (max-width: 500px) {
  #access {
    padding-bottom: 60px;
  }
}
#access h2 {
  text-align: center;
  font-size: 16px;
  color: #8ca09c;
  font-weight: 400;
  padding-bottom: 40px;
  line-height: 2.75;
  background-color: #fff;
}
@media screen and (max-width: 500px) {
  #access h2 {
    line-height: 2.25;
  }
}
#access .p-mapArea {
  background: linear-gradient(180deg, #fff 0%, #fff 50%, #fafaf8 50%, #fafaf8 100%);
}
#access .p-mapArea .google-map {
  max-width: 1020px;
  margin: 0 auto;
  height: 420px;
}
@media screen and (max-width: 1080px) {
  #access .p-mapArea .google-map {
    width: 90%;
  }
}
@media screen and (max-width: 880px) {
  #access .p-mapArea .google-map {
    height: 60vw;
  }
}
#access .p-mapArea iframe {
  width: 100%;
  display: block;
  height: 100%;
}
#access .p-mapArea .map-txt {
  margin-top: 10px;
}
#access .access-content {
  background-color: #fafaf8;
}
#access .access-content ul {
  margin-top: 90px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media screen and (max-width: 500px) {
  #access .access-content ul {
    margin-top: 80px;
  }
}
#access .access-content ul li {
  position: relative;
  width: 48%;
  background-image: url(../img/access-line01.svg);
  background-position: center 10px;
  margin-bottom: 60px;
}
#access .access-content ul li .access-indent {
  padding-left: 1em;
  text-indent: -1em;
}
#access .access-content ul li h3 {
  text-align: center;
  position: relative;
  background-color: #fafaf8;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 18px;
  z-index: 1;
  padding: 0 50px;
}
@media screen and (max-width: 500px) {
  #access .access-content ul li {
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 1080px) {
  #access .access-content ul {
    flex-direction: column;
    align-items: center;
  }
  #access .access-content ul li {
    width: 488px;
  }
}
@media screen and (max-width: 1080px) and (max-width: 500px) {
  #access .access-content ul li {
    width: 100%;
    background-size: 100%;
  }
  #access .access-content ul li h3 {
    padding: 0 15px;
  }
}
#access .access-content table {
  width: 100%;
}
#access .access-content table tbody {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
#access .access-content table tbody tr {
  padding: 20px 0;
  background-image: url(../img/access-line02.svg);
  width: 48%;
  align-items: start;
  display: flex;
}
#access .access-content table tbody tr th {
  text-align: left;
  width: 120px;
  flex-shrink: 0;
}
@media screen and (max-width: 500px) {
  #access .access-content table tbody tr th {
    width: 80px;
  }
}
#access .access-content table tbody tr td a {
  text-decoration: underline;
  color: #333;
  transition: all 0.3s;
}
#access .access-content table tbody tr td a:hover {
  opacity: 0.6;
}
@media screen and (max-width: 880px) {
  #access .access-content table tbody {
    flex-direction: column;
    align-items: center;
    width: 100%;
  }
  #access .access-content table tbody tr {
    width: 488px;
  }
}
@media screen and (max-width: 880px) and (max-width: 500px) {
  #access .access-content table tbody tr {
    width: 100%;
  }
}
#access .access-content .p-map {
  margin-top: 25px;
}
#access .schedule {
  display: flex;
  justify-content: space-between;
  margin-top: 50px;
}
#access .schedule img {
  width: 48%;
}
@media screen and (max-width: 500px) {
  #access .schedule {
    flex-direction: column;
    gap: 20px;
  }
  #access .schedule img {
    width: 100%;
  }
}

#about {
  padding: 120px 0;
}
@media screen and (max-width: 500px) {
  #about {
    padding: 60px 0;
  }
}
#about h2 {
  text-align: center;
  font-size: 16px;
  color: #8ca09c;
  font-weight: 400;
  margin-bottom: 40px;
  line-height: 2.75;
}
@media screen and (max-width: 500px) {
  #about h2 {
    line-height: 2.25;
  }
}
#about .about-txt {
  text-align: center;
  line-height: 2.5;
  margin-bottom: 40px;
}
@media screen and (max-width: 500px) {
  #about .about-txt {
    line-height: 2;
    margin-bottom: 20px;
  }
}
#about .infoImg {
  width: 100%;
}
#about ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 60px;
}
#about ul::after {
  display: block;
  content: "";
  width: 31%;
}
@media screen and (max-width: 880px) {
  #about ul::after {
    width: 45%;
  }
}
@media screen and (max-width: 500px) {
  #about ul::after {
    width: 100%;
  }
}
#about ul li {
  width: 31%;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 50px;
}
@media screen and (max-width: 880px) {
  #about ul li {
    width: 45%;
  }
}
@media screen and (max-width: 500px) {
  #about ul li {
    width: 100%;
  }
}
#about ul li img {
  width: 90%;
}
@media screen and (max-width: 500px) {
  #about ul li img {
    width: 80%;
  }
}
#about ul li h3 {
  font-size: 22px;
  background: url(../img/about-line.svg);
  background-repeat: no-repeat;
  background-position: center bottom;
  width: 100%;
  background-size: 100%;
  text-align: center;
  margin: 15px 0;
  padding-bottom: 10px;
}
@media screen and (max-width: 880px) {
  #about ul li h3 {
    font-size: 18px;
  }
}

#instagram {
  padding: 120px 0 0;
}
@media screen and (max-width: 500px) {
  #instagram {
    padding: 60px 0;
  }
}
#instagram h2 {
  height: 100px;
  text-align: center;
  background-image: url(../img/instagram_top.svg);
  background-position: center 20px;
  background-size: contain;
  margin-bottom: 28px;
}
@media screen and (max-width: 1080px) {
  #instagram h2 {
    width: 90%;
    margin: 0 auto 20px;
  }
}
@media screen and (max-width: 500px) {
  #instagram h2 {
    height: 55px;
  }
}
#instagram .instagram_bottom {
  height: 100px;
  background-image: url(../img/instagram_bottom.svg);
  background-size: contain;
  background-position: center;
  margin-top: 28px;
  display: flex;
}
@media screen and (max-width: 1080px) {
  #instagram .instagram_bottom {
    width: 90%;
    margin: 0 auto;
  }
}
@media screen and (max-width: 500px) {
  #instagram .instagram_bottom {
    margin-top: 0;
    height: 55px;
  }
}
#instagram .instagram_bottom p {
  text-align: center;
  background-color: #fff;
  width: 50%;
  margin: 0 auto;
  margin-top: 50px;
}
@media screen and (max-width: 1080px) {
  #instagram .instagram_bottom p {
    width: 70%;
  }
}
@media screen and (max-width: 500px) {
  #instagram .instagram_bottom p {
    width: 80%;
    padding: 0;
    margin-top: 16px;
  }
}
#instagram .instagram_bottom p a {
  display: inline-block;
  border: 1px solid #333;
  padding: 20px 80px;
  color: #333;
  white-space: nowrap;
  position: relative;
}
#instagram .instagram_bottom p a::after {
  content: url(../img/sankaku-bg.svg);
  top: 50%;
  right: 24px;
  transform: translate(0, -50%);
  position: absolute;
  transition: all 0.3s;
}
@media screen and (max-width: 500px) {
  #instagram .instagram_bottom p a {
    padding: 15px 0;
    width: 90%;
  }
}
#instagram .instagram_bottom p a:hover::after {
  right: 18px;
}
#instagram .instagram2 {
  height: 90vw;
}

.f-r {
  padding: 120px 0;
  display: flex;
}
@media screen and (max-width: 1080px) {
  .f-r {
    flex-direction: column;
    gap: 120px;
  }
}
@media screen and (max-width: 500px) {
  .f-r {
    width: 90%;
    margin: 0 auto;
    padding: 60px 0;
    gap: 60px;
  }
}
.f-r #faq {
  flex: 1;
  padding: 0 40px;
}
@media screen and (max-width: 500px) {
  .f-r #faq {
    padding: 0;
  }
}
.f-r #faq h2 {
  text-align: center;
  font-size: 16px;
  color: #8ca09c;
  font-weight: 400;
  padding-bottom: 40px;
  line-height: 2.75;
  background-color: #fff;
}
@media screen and (max-width: 500px) {
  .f-r #faq h2 {
    line-height: 2.25;
  }
}
.f-r #faq .include-accordion {
  width: 100%;
}
.f-r #faq .include-accordion .accordionBtn {
  background-image: url(../img/q.svg);
  background-position: 0 4px;
  padding: 0px 0 30px 38px;
  cursor: pointer;
  text-align: left;
}
@media screen and (max-width: 880px) {
  .f-r #faq .include-accordion .accordionBtn {
    padding: 0px 38px 30px 38px;
  }
}
@media screen and (max-width: 500px) {
  .f-r #faq .include-accordion .accordionBtn {
    padding: 0px 38px 20px 38px;
  }
}
.f-r #faq .include-accordion ul li {
  background-image: url(../img/a.svg);
  background-position: 0 4px;
  padding: 0 0 30px 38px;
}
@media screen and (max-width: 500px) {
  .f-r #faq .include-accordion ul li {
    padding: 0 0 20px 38px;
  }
}
.f-r #faq li {
  list-style: none;
}
.f-r #faq .faqList {
  margin-bottom: 30px;
}
@media screen and (max-width: 500px) {
  .f-r #faq .faqList {
    margin-bottom: 20px;
  }
}
.f-r #faq .faqList ul li {
  color: #333;
}
.f-r #faq ul ul {
  height: 0;
  overflow: hidden;
  transition: 0.5s;
  border-bottom: 1px solid #bebebe;
  margin: 0;
}
.f-r #faq button {
  position: relative;
  border: none;
  width: 100%;
  color: #333;
}
.f-r #faq button::before,
.f-r #faq button::after {
  content: "";
  position: absolute;
  top: 15px;
  width: 30px;
  height: 1px;
  transition: 0.5s;
  background-color: #bebebe;
}
@media screen and (max-width: 500px) {
  .f-r #faq button::before,
.f-r #faq button::after {
    top: 18px;
  }
}
.f-r #faq button::before {
  right: 25px;
}
@media screen and (max-width: 880px) {
  .f-r #faq button::before {
    right: 0;
  }
}
.f-r #faq button::after {
  transform: rotate(90deg);
  right: 25px;
}
@media screen and (max-width: 880px) {
  .f-r #faq button::after {
    right: 0;
  }
}
.f-r #faq li.active button::after {
  transform: rotate(0);
  transition: 0.5s;
  opacity: 0;
}
.f-r #faq ul.active {
  overflow-y: auto;
}
.f-r #reserve {
  flex: 1;
  padding: 0 40px;
}
@media screen and (max-width: 500px) {
  .f-r #reserve {
    padding: 0;
  }
}
.f-r #reserve a {
  color: #333;
  border: 1px solid #333;
  padding: 32px 0 28px;
  text-align: center;
  width: 85%;
  display: block;
  margin: 0 auto;
  position: relative;
  font-size: 18px;
}
@media screen and (max-width: 500px) {
  .f-r #reserve a {
    width: 100%;
  }
}
.f-r #reserve a img {
  margin-left: 4px;
}
.f-r #reserve a:first-of-type {
  margin-bottom: 20px;
}
.f-r #reserve a:nth-of-type(2) {
  position: relative;
}
.f-r #reserve a:nth-of-type(2)::before {
  content: url(../img/sankaku-bg.svg);
  position: absolute;
  top: 50%;
  right: 40px;
  transform: translate(0, -50%);
  transition: all 0.3s;
}
.f-r #reserve a:nth-of-type(2):hover::before {
  right: 30px;
}
.f-r #reserve a::after {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  border: 1px solid #333;
  top: 6px;
  left: 6px;
}
.f-r #reserve h2 {
  text-align: center;
  padding: 0 80px;
  text-align: center;
  font-size: 16px;
  color: #8ca09c;
  font-weight: 400;
  padding-bottom: 40px;
  line-height: 2.75;
  background-color: #fff;
}
.f-r #reserve .naname {
  content: "";
  width: 1px;
  height: 50px;
  background-color: #333;
  transform: rotate(26deg);
  margin: 18px auto;
}
.f-r #reserve .reserve-txt {
  text-align: center;
  margin-bottom: 60px;
}
@media screen and (max-width: 500px) {
  .f-r #reserve .reserve-txt {
    margin-bottom: 30px;
  }
}/*# sourceMappingURL=style.css.map */