@charset "UTF-8";

/*============================
	common
============================*/
.common__ttl {
  font-size: max(21px, 3rem);
  font-weight: 700;
  color: var(--brown);
  line-height: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.common__ttl::before {
  content: "";
  background-color: var(--brown);
  width: 1px;
  height: 9.5rem;
  position: absolute;
  transform: translate(-50%, -100%);
  top: -1rem;
  left: 50%;
}

.news .common__ttl::before {
  display: none;
}

.common__btn {
  width: max(160px, 22.6rem);
  height: max(40px, 5rem);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.common__btn a {
  background: linear-gradient(90deg, transparent 9%, #e8d5ba 9%, #e8d5ba 91%, transparent 91%);
  width: 100%;
  height: 100%;
  font-weight: 500;
  color: var(--black);
  letter-spacing: 0.1em;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.common__btn--wt a {
  background: linear-gradient(90deg, transparent 9%, #71624d 9%, #71624d 91%, transparent 91%);
  color: var(--white);
}

.common__btn a::after {
  content: "";
  display: block;
  background-color: var(--black);
  width: max(65px, 9.7rem);
  height: 1px;
}

.common__btn--wt a::after {
  background-color: var(--white);
}

/*============================
	header
============================*/
@media (min-width: 768px) {
  .header.top .header__contents {
    justify-content: center;
  }
}

/*============================
	hero
============================*/
.hero {
  width: 100%;
  height: max(90rem, 100vh);
  padding: 13rem 12rem 9.5rem;
  position: relative;
}

@media (max-width: 767px) {
  .hero {
    height: max(300px, 44rem);
    padding: max(60px, 0.8rem) 0 0;
  }
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: 3;
}

.hero::before {
  background: url("../img/deco_3.png") no-repeat center / contain;
  width: 38.1rem;
  height: 26.5rem;
  top: 14.3rem;
  left: -10.2rem;
}

.hero::after {
  background: url("../img/deco_4.png") no-repeat center / contain;
  width: 36.9rem;
  height: 34.6rem;
  right: -5.2rem;
  bottom: 23rem;
}

@media (max-width: 767px) {
  .hero::before {
    width: 26rem;
    height: 18rem;
    top: 12rem;
    left: -8rem;
  }

  .hero::after {
    width: 24rem;
    height: 22.5rem;
    right: -5rem;
    bottom: 3rem;
  }
}

.hero__logo {
  display: block;
  width: 12.5rem;
  position: absolute;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  z-index: 3;
}

@media (max-width: 767px) {
  .hero__logo {
    width: max(80px, 12.5rem);
    transform: translate(-50%, -50%);
    top: 55%;
  }
}

.hero__txt {
  font-size: max(18px, 3.2rem);
  font-weight: 700;
  color: var(--brown);
  letter-spacing: 0.1em;
  filter: drop-shadow(0 0 5px rgba(255, 255, 255, 1)) drop-shadow(5px 5px 10px rgba(255, 255, 255, 0.5));
  position: absolute;
  top: 21.4rem;
  right: 22.3rem;
  z-index: 2;
}

@media (max-width: 767px) {
  .hero__txt {
    font-size: max(14px, 2.4rem);
    top: auto;
    right: auto;
    left: 5%;
    bottom: 5%;
  }
}

.hero__slider {
  width: 100%;
  height: 100%;
  border-radius: 4rem;
  overflow: hidden;
}

@media (max-width: 767px) {
  .hero__slider {
    border-radius: 0;
  }
}

@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;
}

/*============================
	concept
============================*/
.concept {
  background: var(--bg-3);
  padding: 5rem 0 6.5rem;
}

.concept__contents {
  background-color: var(--white);
  width: 99.2rem;
  border-radius: 3rem;
  display: flex;
  padding: 8rem 8rem 5rem;
  filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.16));
  margin: 2.5rem auto 0;
}

@media (max-width: 767px) {
  .concept__contents {
    width: 90%;
    flex-direction: column-reverse;
    padding: 8rem 6rem 5rem;
  }
}

.concept__txt-wrapper {
  width: 100%;
  text-align: center;
}

.concept__txt-wrapper h3 {
  font-size: max(16px, 3rem);
  font-weight: 700;
  color: var(--brown);
  letter-spacing: 0.1em;
}

.concept__txt-wrapper p {
  font-weight: 500;
  letter-spacing: 0.1em;
  margin: 5rem 0 7.5rem;
}

/*============================
	menu
============================*/
.menu {
  background-color: var(--white);
  padding: 14rem 0 16rem;
  position: relative;
}

.menu::before {
  content: "";
  background: url("../img/menu_deco-1.png") no-repeat center / contain;
  width: 39.3rem;
  height: 33.7rem;
  position: absolute;
  right: 6.1rem;
  bottom: 7.7rem;
  pointer-events: none;
}

@media (max-width: 767px) {
  .menu::before {
    width: 34rem;
    height: 29.2rem;
    right: 2rem;
    bottom: 1rem;
  }
}

.menu__contents {
  width: 64rem;
  display: flex;
  flex-direction: row-reverse;
  gap: 4rem 7.2rem;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .menu__contents {
    width: 90%;
    flex-direction: column-reverse;
  }
}

.menu__txt-wrapper {
  width: 100%;
}

@media (min-width: 768px) {
  .menu__txt-wrapper {
    margin-top: -1rem;
  }
}

.menu__txt-wrapper h2 {
  font-size: max(16px, 3rem);
  font-weight: 700;
  color: var(--brown);
  letter-spacing: 0.1em;
  line-height: 1;
  white-space: nowrap;
  display: flex;
  align-items: baseline;
  gap: 4rem;
}

.menu__txt-wrapper h2 span {
  font-family: var(--font-en);
  font-size: max(60px, 10.8rem);
  color: #f2f1ef;
  letter-spacing: 0.05em;
  text-transform: capitalize;
}

.menu__txt-wrapper p {
  letter-spacing: 0.1em;
  line-height: 2;
  margin: 5.5rem 0 9rem;
}

.menu .common__btn {
  margin: 0;
}

.menu__img {
  width: 55.6rem;
  height: 100%;
  border-radius: 0 6rem 6rem 0;
  flex-shrink: 0;
  margin-left: calc(50% - 50vw);
  overflow: hidden;
}

@media (max-width: 767px) {
  .menu__img {
    width: 95vw;
  }
}

/*============================
	product
============================*/
.product {
  background: var(--bg-2);
  padding: 12rem 0;
  position: relative;
}

.product::before {
  content: "";
  background: url("../img/deco_1.png") no-repeat center / contain;
  width: 31.2rem;
  height: 29.3rem;
  position: absolute;
  top: 12rem;
  right: -8.3rem;
  pointer-events: none;
  z-index: 1;
}

@media (max-width: 767px) {
  .product::before {
    width: 24rem;
    height: 22.5rem;
    top: auto;
    right: -8rem;
    bottom: -8rem;
  }
}

.product__contents {
  width: 74rem;
  height: 28rem;
  margin: 0 auto;
  filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.16));
}

@media (max-width: 767px) {
  .product__contents {
    width: 90%;
    height: 28rem;
  }
}

.product__contents a {
  background: url("../img/product_bg.jpg") no-repeat center / cover;
  width: 100%;
  height: 100%;
  border: solid 1px var(--brown);
  border-radius: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.product__contents a::before {
  content: "";
  background-color: var(--white);
  border-radius: 2rem;
  opacity: 0.75;
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.product__contents h2 {
  width: max-content;
  font-size: max(20px, 4.3rem);
  font-weight: 700;
  color: var(--brown);
  position: relative;
  z-index: 1;
}

.product__contents h2::before {
  content: "";
  background-color: var(--white);
  width: 130%;
  height: 2.7rem;
  position: absolute;
  transform: translateX(-50%);
  left: 50%;
  bottom: 0;
  pointer-events: none;
  z-index: -1;
}

/*============================
	gallery
============================*/
.gallery {
  background: var(--bg-1);
  padding: 17rem 0 9.5rem;
  position: relative;
}

.gallery::before {
  content: "";
  background-color: var(--brown-light);
  width: 100%;
  height: 24rem;
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
}

.gallery__inner {
  padding: 12.5rem 0;
}

.gallery__slider {
  height: 32rem;
  margin: 16rem 0 6rem;
}

.gallery__slider .swiper-wrapper {
  transition-timing-function: linear;
}

.gallery__slider .swiper-slide {
  width: 32rem;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 1rem;
}

/*============================
	news
============================*/
.news {
  background-color: var(--white);
  padding: 17.5rem 0 21rem;
}

.news__inner {
  width: 111rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 6rem 7rem;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .news__inner {
    width: 90%;
    flex-direction: column;
  }
}

.news__ttl-wrapper {
  width: max-content;
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 7.5rem;
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .news__ttl-wrapper {
    margin-left: -5.5rem;
  }

  .news .common__btn {
    margin: 0;
  }

  .news .common__btn.sp {
    display: none;
  }
}

.CMS-NEWS-INDEX {
  width: 100%;
  height: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6rem 3.8rem;
}

@media (max-width: 767px) {
  .CMS-NEWS-INDEX {
    grid-template-columns: 1fr;
  }
}

.CMS-NEWS-LINK-CONTENT {
  display: block;
}

.CMS-NEWS-THUMBNAIL {
  width: 100%;
  height: 16.6rem;
  border-radius: 2rem;
  margin-bottom: 1rem;
}

@media (max-width: 767px) {
  .CMS-NEWS-THUMBNAIL {
    height: 36rem;
  }
}

.CMS-NEWS-LINK,
.CMS-NEWS-TIME {
  font-weight: 500;
}

.CMS-NEWS-TIME {
  font-size: max(12px, 1.3rem);
}

.CMS-NEWS-MORE-READ {
  display: none;
}

/*============================
	faq
============================*/
.faq {
  background: var(--bg-2);
  padding: 5rem 0 19.5rem;
  position: relative;
}

.faq::before {
  content: "";
  background: url("../img/deco_2.png") no-repeat center / contain;
  width: 29.6rem;
  height: 31.4rem;
  position: absolute;
  top: 0;
  left: -5.4rem;
  pointer-events: none;
}

@media screen and (max-width: 767px) {
  .faq::before {
    width: 24rem;
    height: 25.4rem;
    top: -5rem;
    left: -6rem;
  }
}

.faq__txt {
  width: 90%;
  letter-spacing: 0.08em;
  text-align: center;
  margin: 4rem auto 9rem;
}

.faq__list {
  width: 91rem;
  height: auto;
  display: flex;
  flex-direction: column;
  row-gap: 4.2rem;
  margin: 0 auto;
}

@media screen and (max-width: 767px) {
  .faq__list {
    width: 90%;
  }
}

.faq__ttl {
  display: block;
  border-bottom: solid 1px var(--black);
  list-style-type: none;
  font-size: max(12px, 1.8rem);
  color: var(--brown);
  letter-spacing: 0.08em;
  display: flex;
  gap: 2.8rem;
  padding-bottom: 1.2rem;
  cursor: pointer;
}

.faq__ttl::-webkit-details-marker {
  display: none;
}

.faq__ttl::before {
  content: "Q";
  display: block;
  background-color: var(--white);
  width: max(24px, 3.2rem);
  height: max(24px, 3.2rem);
  border: solid 1px var(--black);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  padding-bottom: 4px;
  margin-top: -2px;
}

.faq__wrapper {
  overflow: hidden;
}

.faq__list-txt {
  font-weight: 400;
  letter-spacing: 0.05em;
  padding-top: 1.8rem;
}

/*============================
	reserve
============================*/
.reserve {
  background-color: var(--white);
  padding: 5.5rem 0 18rem;
  position: relative;
}

.reserve::before,
.reserve::after {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: 3;
}

.reserve::before {
  background: url("../img/deco_3.png") no-repeat center / contain;
  width: 38.1rem;
  height: 26.5rem;
  left: -10.2rem;
  bottom: 18rem;
}

.reserve::after {
  background: url("../img/deco_4.png") no-repeat center / contain;
  width: 36.9rem;
  height: 34.6rem;
  right: -5.2rem;
  bottom: 16rem;
}

@media (max-width: 767px) {
  .reserve::before {
    width: 26rem;
    height: 18rem;
    left: -5rem;
    bottom: -2rem;
  }

  .reserve::after {
    width: 24rem;
    height: 22.5rem;
    right: -5rem;
    bottom: -1rem;
  }
}

.reserve__list {
  width: 91.4rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 5rem 3.2rem;
  margin: 10.5rem auto 9rem;
}

@media (max-width: 767px) {
  .reserve__list {
    width: 90%;
    grid-template-columns: 1fr;
  }
}

.reserve__list li {
  width: 100%;
  height: 16.7rem;
}

.reserve__list a {
  background: linear-gradient(0deg, #a87834, #e8d0aa);
  width: 100%;
  height: 100%;
  border: solid 1px var(--brown);
  border-radius: 1rem;
  color: var(--white);
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

.reserve__list li:nth-of-type(2) a {
  background: linear-gradient(0deg, #d9849b, #ffd9e6);
  border: solid 1px #cb9dcc;
}

.reserve__list p {
  font-size: max(14px, 2.1rem);
  font-weight: 700;
  letter-spacing: 0.08em;
}

.reserve__list p span {
  font-size: max(12px, 1.6rem);
  letter-spacing: 0.08em;
}

.reserve__hotpepper {
  width: 90%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  margin: 0 auto 8.5rem;
}

@media (max-width: 767px) {
  .reserve__hotpepper {
    flex-direction: column;
    text-align: center;
  }
}

.reserve__hotpepper figure {
  display: block;
  width: 27rem;
  flex-shrink: 0;
}

@media (max-width: 767px) {
  .reserve__hotpepper figure {
    width: max(180px, 27rem);
  }
}

.reserve__hotpepper p span {
  display: block;
  font-size: max(12px, 1.4rem);
  margin-left: -0.4rem;
}

.reserve__txt {
  width: 74.5rem;
  display: flex;
  margin: 0 auto;
    text-decoration: underline;
  text-decoration-thickness: 0.5em; 
  text-decoration-color: rgba(255, 228, 0, 0.4); 
  text-underline-offset: -0.2em; 
  text-decoration-skip-ink: none; 
}

@media (max-width: 767px) {
  .reserve__txt {
    width: 90%;
  }
}

.reserve__txt::before {
  content: "※";
  display: block;
}



/*============================
	access
============================*/
.access {
  background: var(--bg-2);
  padding: 5.5rem 0 18.5rem;
  position: relative;
}

.access::before {
  content: "";
  background: url("../img/deco_1.png") no-repeat center / contain;
  width: 31.2rem;
  height: 29.3rem;
  position: absolute;
  right: -8.3rem;
  bottom: 9rem;
  pointer-events: none;
}

@media (max-width: 767px) {
  .access::before {
    width: 24rem;
    height: 22.5rem;
    right: -8rem;
    bottom: 3rem;
  }
}

.access__map {
  height: 44.6rem;
  margin: 5.5rem 0 14rem;
}

.access__contents {
  width: 110rem;
  display: flex;
  gap: 2rem 8.5rem;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .access__contents {
    width: 90%;
    flex-direction: column;
  }
}

.access__img {
  width: 69.5rem;
  height: 100%;
  border-radius: 3.7rem;
  flex-shrink: 0;
  margin-left: calc(50% - 50vw - 5.5rem);
  overflow: hidden;
}

@media (max-width: 767px) {
  .access__img {
    width: 100%;
    margin: 0;
  }
}

.access__list {
  margin: 2rem 0 7rem;
}

.access__list dt,
.access__list dd {
  width: 100%;
  letter-spacing: 0.1em;
}

.access__list dd {
  font-weight: 400;
}

.access__list dd:not(:last-of-type) {
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .access .common__btn {
    margin: 0;
  }
}

/*============================
	insta
============================*/
.insta {
  padding: 6.5rem 0 10.5rem;
}

.insta__contents {
  width: 88.7rem;
  margin: 6.5rem auto 0;
}

@media screen and (max-width: 767px) {
  .insta__contents {
    width: 90%;
  }
}

.CMS-INSTAGRAM-LIST {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.4rem 2.9rem;
}

.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: 27.6rem;
  height: 27.6rem;
  border-radius: 2rem;
  object-fit: cover;
}

@media screen and (max-width: 767px) {
  .CMS-INSTAGRAM-LIST img {
    width: 100%;
    height: auto;
  }
}

/*============================
	contact
============================*/
.contact {
  background: var(--bg-2);
  padding: 8.5rem 0 14rem;
  position: relative;
}

.contact::before,
.contact::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.contact::before {
  background: url("../img/deco_2.png") no-repeat center / contain;
  width: 29.6rem;
  height: 31.4rem;
  top: 6.4rem;
  left: -5.4rem;
}

.contact::after {
  background: url("../img/contact_deco-1.png") no-repeat center / contain;
  width: 37.9rem;
  height: 28.9rem;
  right: -15.4rem;
  bottom: 12rem;
}

@media screen and (max-width: 767px) {
  .contact::before {
    width: 24rem;
    height: 25.4rem;
    top: 1rem;
    left: -6rem;
  }

  .contact::after {
    width: 24rem;
    height: 18.3rem;
    top: -6rem;
    right: -8rem;
  }
}

.contact__txt {
  width: 90%;
  letter-spacing: 0.08em;
  text-align: center;
  margin: 3.5rem auto 8rem;
}

@media screen and (min-width: 768px) {
  .contact__txt {
    width: 63rem;
  }
}

.contact__list {
  width: 81rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 5rem;
  margin: 0 auto;
}

@media screen and (max-width: 767px) {
  .contact__list {
    width: 90%;
    grid-template-columns: 1fr;
  }
}

.contact__list li {
  /* display: block; */
  width: 100%;
  height: 15rem;
}

@media screen and (max-width: 767px) {
  .contact__list li {
    height: max(100px, 15rem);
  }
}

.contact__list a {
  background-color: var(--white);
  width: 100%;
  height: 100%;
  border: solid 1px var(--brown);
  border-radius: 3rem;
  font-size: max(14px, 2.6rem);
  font-weight: 700;
  color: var(--brown);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.4rem;
  overflow: hidden;
}

.contact__list a::before {
  content: "";
  display: block;
  background: url("../img/tel_icon.png") no-repeat center / contain;
  width: 5.3rem;
  height: 5.3rem;
}

.contact__list li:nth-of-type(2) a::before {
  background: url("../img/reserve_icon.png") no-repeat center / contain;
}

@media screen and (max-width: 767px) {
  .contact__list a::before {
    width: max(36px, 5.3rem);
    height: max(36px, 5.3rem);
  }
}
