@charset "UTF-8";

/*============================
	common
============================*/
.common__ttl {
  display: block;
  width: max-content;
  font-family: var(--font-en);
  font-size: max(28px, 4.6rem);
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 1;
  text-transform: uppercase;
  margin: 0 auto;
}

.insta .common__ttl {
  text-transform: capitalize;
}

.common__btn {
  width: max(160px, 21.6rem);
  height: max(40px, 5rem);
  margin: 0 auto;
}

.common__btn a {
  width: 100%;
  height: 100%;
  border: solid 1px var(--white);
  font-family: var(--font-en);
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1;
  text-transform: uppercase;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.3rem 3rem 0 0;
  position: relative;
}

.common__btn a::before {
  content: "";
  background: url("../img/btn_arw.png") no-repeat center / contain;
  width: max(54.3px, 8.1rem);
  height: max(6px, 0.9rem);
  position: absolute;
  transform: translate(50%, -50%);
  top: 45%;
  right: 0;
  pointer-events: none;
}

/*============================
	hero
============================*/
.hero {
  width: 100%;
  height: 100vh;
  position: relative;
}

@media (max-width: 767px) {
  .hero {
    height: max(300px, 44rem);
  }
}

.hero::before {
  content: "";
  background-image: linear-gradient(0deg, rgba(255, 255, 255, 1), rgba(0, 0, 0, 1));
  width: 100%;
  height: 14rem;
  mix-blend-mode: multiply;
  position: absolute;
  pointer-events: none;
  z-index: 2;
}

.hero__slider {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

@keyframes zoomOut {
  0% {
    transform: scale(1.15);
  }
  100% {
    transform: scale(1);
  }
}

.hero__slider .swiper-slide-active img,
.hero__slider .swiper-slide-duplicate-active img,
.hero__slider .swiper-slide-prev img {
  animation: zoomOut 7s linear both;
}

/*============================
	news
============================*/
.news {
  padding: 14.5rem 0 13.5rem;
  background: url(../img/bg-news.jpg) no-repeat top center / cover;
}

.CMS-NEWS-INDEX {
  width: 101.2rem;
  height: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6rem 2.6rem;
  margin: 6rem auto 11.5rem;
}

@media (max-width: 767px) {
  .CMS-NEWS-INDEX {
    width: 90%;
    grid-template-columns: 1fr;
  }
}

.CMS-NEWS-LINK-CONTENT {
  display: block;
}

.CMS-NEWS-THUMBNAIL {
  width: 100%;
  height: 20rem;
  margin-bottom: 3rem;
}

@media (max-width: 767px) {
  .CMS-NEWS-THUMBNAIL {
    height: 36rem;
  }
}

.CMS-NEWS-LINK,
.CMS-NEWS-TIME {
  margin-right: 1.2rem;
}

.CMS-NEWS-LINK {
  border-top: solid 1px var(--white);
  padding-top: 1rem;
  margin-top: 1rem;
}

.CMS-NEWS-TIME {
  font-size: max(12px, 1.4rem);
}

.CMS-NEWS-MORE-READ {
  display: none;
}

/*============================
	concept
============================*/
.concept {
  background: url("../img/concept_bg.jpg") no-repeat top center / cover;
  padding: 19.5rem 0 14rem;
}

.concept__contents {
  width: 92rem;
  display: flex;
  flex-direction: column-reverse;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .concept__contents {
    width: 90%;
    flex-direction: column-reverse;
  }
}

.concept__txt-wrapper {
  width: 100%;
  display: flex;
  gap: 4rem 5.5rem;
}

@media (max-width: 767px) {
  .concept__txt-wrapper {
    flex-direction: column;
  }
}

.concept .common__ttl {
  font-size: max(28px, 4.8rem);
  margin: 0 0 7rem;
}

@media (max-width: 767px) {
  .concept .common__ttl {
    margin: 0;
  }
}

.concept__txt-wrapper p {
  letter-spacing: 0.05em;
  line-height: 2.25;
}

@media (max-width: 767px) {
  .concept__txt-wrapper p {
    font-size: max(14px, 1.8rem);
  }
}

@media (min-width: 768px) {
  .concept .common__btn {
    margin: 0;
  }
}

.concept__img {
  display: block;
  width: 90rem;
  margin-bottom: 7rem;
  position: relative;
}

@media (max-width: 767px) {
  .concept__img {
    width: 100%;
  }
}

.concept__img::before {
  content: "";
  width: 100%;
  height: 100%;
  border: solid 1px var(--white);
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  pointer-events: none;
}

/*============================
	menu
============================*/
.menu {
  background: var(--bg-2);
  padding: 15.3rem 0 16.5rem;
}

.menu__food,
.menu__drink {
  width: 110rem;
  display: flex;
  gap: 4rem 9rem;
  margin: 9rem auto 0;
}

.menu__drink {
  flex-direction: row-reverse;
  gap: 4rem 0;
  margin: 0 auto 11rem;
}

@media (max-width: 767px) {
  .menu__food,
  .menu__drink {
    width: 90%;
    flex-direction: column-reverse;
  }
  .menu__drink {
    margin-top: 3rem;
  }
}

.menu__txt-wrapper {
  width: 100%;
}

@media (min-width: 768px) {
  .menu__txt-wrapper {
    padding-top: 2rem;
  }

  .menu__drink .menu__txt-wrapper {
    padding-top: 10rem;
    margin-left: 6rem;
  }
}

.menu__txt-wrapper h3 {
  font-size: max(16px, 2.6rem);
  font-weight: 600;
  letter-spacing: 0.1em;
  margin-bottom: 2.5rem;
}

.menu__txt-wrapper h3 span {
  display: flex;
  align-items: flex-end;
  margin-bottom: 4rem;
}

.menu__drink .menu__txt-wrapper h3 span {
  align-items: center;
  gap: 2rem;
  margin: 0 0 2rem -3rem;
}

@media (max-width: 767px) {
  .menu__drink .menu__txt-wrapper h3 span {
    margin: 0 0 3rem -2rem;
  }
}

.menu__txt-wrapper h3 span img {
  width: max(91.6px, 13.2rem);
  flex-shrink: 0;
}

.menu__drink .menu__txt-wrapper h3 span img {
  width: max(116.6px, 16.8rem);
}

.menu__txt-wrapper h3 span::after {
  content: "";
  display: block;
  background-color: #8c8c8c;
  width: 100%;
  height: 1px;
}

.menu__txt-wrapper p {
  letter-spacing: 0.05em;
  line-height: 2.25;
}

@media (max-width: 767px) {
  .menu__txt-wrapper p {
    font-size: max(14px, 1.8rem);
  }
}

.menu__food .menu__img {
  width: 72rem;
  height: 100%;
  flex-shrink: 0;
  margin-right: calc(50% - 50vw);
}

.menu__drink .menu__img {
  width: 67.5rem;
  height: 100%;
  flex-shrink: 0;
  margin: 6.9rem 0 0 -14rem;
}

.menu__txt-img {
  width: 43rem;
  margin: 5rem 0 0;
}

@media (max-width: 767px) {
  .menu__food .menu__img,
  .menu__drink .menu__img {
    width: 100%;
    margin: 0;
  }
  .menu__txt-img {
    width: 100%;
  }
}

/*============================
	gallery
============================*/
.gallery {
  background: var(--bg-3);
  padding: 13.6rem 0 15.1rem;
}

.gallery__slider {
  height: 22.6rem;
  margin: 9.6rem 0 11rem;
}

.gallery__slider .swiper-wrapper {
  transition-timing-function: linear;
}

.gallery__slider .swiper-slide {
  width: 31.1rem;
}

/*============================
	access
============================*/
.access {
  background: var(--bg-2);
  padding: 22.5rem 0 20.5rem;
}

.access__contents {
  width: 110rem;
  display: flex;
  align-items: flex-start;
  gap: 2rem 7rem;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .access__contents {
    width: 90%;
    flex-direction: column-reverse;
  }
}

@media (min-width: 768px) {
  .access .common__ttl {
    margin: 0;
  }
}

.access__list {
  display: flex;
  flex-wrap: wrap;
  margin: 4.5rem 0 6.5rem;
}

.access__list dt,
.access__list dd {
  letter-spacing: 0.05em;
  padding: 2.3rem 0;
}

.access__list dt {
  width: max(75px, 13.6rem);
  font-weight: 400;
}

.access__list dd {
  width: calc(100% - max(75px, 13.6rem));
}

.access__list dd:not(:last-of-type) {
  border-bottom: solid 1px var(--white);
}

@media (min-width: 768px) {
  .access__list dt:not(:last-of-type) {
    border-bottom: solid 1px var(--white);
  }
}

@media (max-width: 767px) {
  .access__list dt,
  .access__list dd {
    width: 100%;
    font-size: max(14px, 1.8rem);
  }

  .access__list dt {
    padding: 2rem 1.6rem 1rem;
  }

  .access__list dd {
    padding: 0 1.6rem 2rem;
  }
}

.shop__underline {
  text-decoration: underline;
}

@media (min-width: 768px) {
  .access .common__btn {
    margin: 0;
  }
}

.access__img {
  width: 65rem;
  height: 100%;
  flex-shrink: 0;
  margin-right: calc(50% - 50vw);
}

@media (max-width: 767px) {
  .access__img {
    width: 100%;
    margin: 0;
  }
}

.top__map {
  height: 43rem;
}

/*============================
	insta
============================*/
.insta {
  padding: 14.5rem 0 18.5rem;
  background: var(--bg-3);
}

.insta__contents {
  width: 82rem;
  margin: 8rem auto 0;
}

@media screen and (max-width: 767px) {
  .insta__contents {
    width: 90%;
  }
}

.CMS-INSTAGRAM-LIST {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem;
}

.CMS-INSTAGRAM-LIST > *:nth-of-type(n + 7) {
  display: none;
}

@media screen and (max-width: 767px) {
  .CMS-INSTAGRAM-LIST {
    gap: 1rem;
  }
}

.CMS-INSTAGRAM-LIST img {
  width: 26.1rem;
  height: 26.1rem;
  object-fit: cover;
}

@media screen and (max-width: 767px) {
  .CMS-INSTAGRAM-LIST img {
    width: 100%;
    height: auto;
  }
}

/*============================
	RECRUIT
============================*/
.recruit {
  padding: 9.7rem 0;
  background: url(../img/bg-news.jpg) no-repeat top center / cover;
}
.recruit-wrap {
  width: 110rem;
  margin: 0 auto;
  display: flex;
  border: solid 3px #9e8e56;
  position: relative;
  padding: 7.6rem 0 4.6rem;
}
.recruit-wrap::before {
  content: "";
  width: 100%;
  height: 100%;
  background: #211603;
  opacity: 0.8;
  position: absolute;
  top: 0;
  left: 0;
}
.recruit__contents {
  position: relative;
  margin-right: 14.3rem;
}
.recruit p {
  width: 40.4rem;
  margin-bottom: 5.3rem;
  line-height: calc(41/16);
}
.recruit .common__btn {
  margin: 0 auto 0 0;
}
.recruit .common__ttl {
  width: 54.9rem;
  text-align: center;
  margin-top: 4rem;
}
@media screen and (max-width: 767px) {
  .recruit-wrap {
    width: 90%;
    margin: 0 auto;
    flex-direction: column;
  }
  .recruit p {
    width: 90%;
    font-size: max(14px, 1.8rem);
    margin: 6rem auto 6rem;
  }
  .recruit__contents {
    margin:  0 auto;
  }
  .recruit .common__btn {
    margin: 0 auto;
  }
  .recruit .common__ttl {
    margin-top: 0;
  }
}

/* ///////////////////////////////////////////////
faq
//////////////////////////////////////////////// */
.faq {
  background: #381d08;
  padding: 8.7rem 17rem;
}
.faq h2 {
    width: max-content;
    font-size: min(2.64vw,38px);
    font-weight: 900;
    letter-spacing: 0.18em;
    text-align: center;
    line-height: 1;
    margin: 0 auto;
}
.faq h2 span {
    width: max-content;
    font-size: min(1.38vw,19.87px);
    font-weight: 600;
    letter-spacing: 0.39em;
    color: #FB7A8C;
}
.faq-wrap {
    width: 100%;
    margin: 0 auto;
}
.faq-title-wrap {
    border-top: 1px solid #FFF;
    display: grid;
    grid-template-columns: 10% 1fr 10%;
    height: 9.4rem;
    position: relative;
    cursor: pointer;
    overflow: hidden;
}
.faq-title-btn {
    position: relative;
    transition: 0.3s;
}
.faq-title-btn::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);  
    -ms-transform: translate(-50%, -50%);
    background: #FFF;
    height: 14px;
    width: 2px;
    transition: 0.3s;
}
.faq-title-btn::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);  
    -ms-transform: translate(-50%, -50%);
    background: #FFF;
    height: 2px;
    width: 14px;
}
.faq-wrap.open .faq-title-btn {
    transform: rotate(-90deg);
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
}
.faq-wrap.open .faq-title-btn::after {
  display: none;
}
.faq-title-q {
    color: #4c2d18;
    font-size: 2.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    position: relative;
    background: #FFF;
    font-family: var(--font-en);
    font-weight: 600;
    width: 4.4rem;
    height: 4.4rem;
    top: 2.4rem;
    left: 2.8rem;
}
.faq-title-txt {
    letter-spacing: 0;
    line-height: 1.333;
    display: flex;
    align-items: center;
    color: #FFF;
    font-family: "Noto Sans", sans-serif;
}
.faq-title-a {
    font-size: 2.8rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    color: #4c2d18;
    font-family: var(--font-en);
    width: 4.4rem;
    height: 4.4rem;
    top: -1.1rem;
    left: 2.8rem;
    background: #FFF;
}
.faq-answer-txt {
    letter-spacing: 0;
    line-height: 1.4375;
    padding-right: min(2.3vw,39.928px);
    color: #FFF;
    font-family: "Noto Sans", sans-serif;
}
.faq-answer-txt .mini {
    font-size: min(0.9vw,13px);
}
.faq-answer {
    display: grid;
    grid-template-columns: 10% 1fr;
    align-items: flex-start;
    max-height: 0;
    overflow: hidden;   
    padding: 0;
}
.faq-wrap.open .faq-answer {
    max-height: 1000px;
    transition: max-height 0.5s ease-in;
    padding: 3.5rem 0;
}
.faq .faq-wrap:last-of-type {
  border-bottom: 1px solid #FFF;
}

@media screen and (max-width:767px) { 
    .faq {
        padding: 5rem 0 10rem;
    }
    .faq h2 {
        font-size: 8vw;
    }
    .faq h2 span {
        font-size: 4vw;
    }
    .faq-wrap {
        width: 90vw;
        margin: 10vw auto 0;
    }
    .faq-title-q {
        left: 1vw;
    }
    .faq-title-txt {
        font-size: max(14px, 1.8rem);
        line-height: 1.4;
        padding-left: 4vw;
    }
    .faq-title-wrap {
        height: initial;
        padding: 3vw 0;
        min-height: 20vw;
    }
    .faq-title-a {
        top: -1vw;
        left: 1vw;
    }
    .faq-answer-txt {
        font-size: max(14px, 1.8rem);
        padding-left: 4vw;
    }
    .faq-answer-txt .mini {
        font-size: 2vw;
        display: inline-block;
        line-height: 1.4;
    }
    .faq .faq-wrap:nth-of-type(n + 2) {
        margin-top: 7vw;
    }
    .faq-title-btn {
      right: 1vw;
    }
}