@charset "UTF-8";

/*============================
	common
============================*/
.common__ttl {
  font-size: max(12px, 1.8rem);
  font-weight: 500;
  letter-spacing: 0.03em;
  line-height: 1;
  display: flex;
  flex-direction: column;
  gap: 1rem 3.5rem;
}

.common__ttl--row {
  flex-direction: row;
  align-items: center;
}

.common__ttl--center {
  align-items: center;
}

.common__ttl em {
  font-family: var(--font-en);
  font-size: max(28px, 5rem);
  font-weight: 700;
  font-style: normal;
  text-transform: capitalize;
}

.common__ttl--l em {
  font-size: max(36px, 6.5rem);
  text-transform: uppercase;
}

.common__ttl span:first-of-type,
.common__ttl span:last-of-type {
  color: var(--green);
}

.common__ttl--l span:nth-of-type(odd) {
  color: var(--green);
}

.common__btn {
  width: max-content;
  position: relative;
  z-index: 1;
}

@media (max-width: 767px) {
  .common__btn {
    margin: 0 auto;
  }
}

.common__btn a {
  width: 100%;
  height: 100%;
  font-family: var(--font-en);
  font-size: max(12px, 1.9rem);
  text-transform: uppercase;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.6rem;
  position: relative;
}

.common__btn a::after {
  content: "";
  display: block;
  background: url("../img/btn_arw.png") no-repeat center / contain;
  width: max(34px, 5.5rem);
  height: max(34.6px, 5.6rem);
}

/*============================
	hero
============================*/
.hero {
  background: var(--bg-2);
  width: 100%;
  height: max(87rem, 100vh);
  padding: max(80px, 12rem) 5rem 0;
  position: relative;
}

@media (max-width: 767px) {
  .hero {
    height: max(300px, 48rem);
    padding: max(60px, 8rem) 5% 0;
  }
}

.hero::before {
  content: "";
  background-color: #fdfc8f;
  width: 100%;
  height: 50.5rem;
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
}

@media (max-width: 767px) {
  .hero::before {
    height: 60%;
  }
}

.hero__slider {
  width: 100%;
  height: 100%;
  border-radius: 10rem;
  overflow: hidden;
}

@media (max-width: 767px) {
  .hero__slider {
    border-radius: 4rem;
  }
}

@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;
}

.hero .swiper-pagination {
  width: max-content !important;
  display: flex;
  align-items: center;
  column-gap: 3rem;
  transform: translate(-50%, 100%) !important;
  left: 50% !important;
  bottom: -3.5rem !important;
  z-index: 10;
}

.hero .swiper-pagination-bullet {
  background-color: var(--white);
  width: 8px !important;
  height: 8px !important;
  display: flex !important;
  justify-content: center;
  align-items: center;
  margin: 0 !important;
  opacity: 1 !important;
  transition: 0.3s ease-in-out;
}

.hero .swiper-pagination-bullet-active {
  background-color: var(--green);
  width: max(12px, 1.5rem) !important;
  height: max(12px, 1.5rem) !important;
}

/*============================
	news
============================*/
.news {
  padding-top: 11rem;
  position: relative;
}

.news::before {
  content: "";
  background: var(--bg-2);
  width: 100%;
  height: calc(100% - 11rem);
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: -1;
}

@media (max-width: 767px) {
  .news::before {
    height: calc(50% + 11rem);
  }
}

.news__inner {
  background-color: var(--white);
  width: 110rem;
  border-radius: 4rem;
  display: flex;
  align-items: center;
  gap: 6rem 7rem;
  padding: 4rem 7rem 2.5rem 6rem;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .news__inner {
    width: 90%;
    flex-direction: column;
    padding: 4rem 6rem 6rem;
  }
}

.news__ttl-wrapper {
  display: flex;
  align-items: center;
  gap: 1.5rem 3rem;
}

@media (max-width: 767px) {
  .news__ttl-wrapper {
    flex-direction: column;
  }
}

.news__deco {
  display: block;
  width: 8.6rem;
}

.news__contents {
  width: 100%;
}

.CMS-NEWS-INDEX {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  row-gap: 2.5rem;
  margin-bottom: 3.5rem;
}

.CMS-NEWS-LINK-CONTENT {
  display: flex;
}

@media (max-width: 767px) {
  .CMS-NEWS-LINK-CONTENT {
    display: block;
  }
}

.CMS-NEWS-LINK {
  width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.CMS-NEWS-TIME {
  width: max(100px, 14rem);
  flex-shrink: 0;
}

.CMS-NEWS-MORE-READ {
  display: none;
}

@media (min-width: 768px) {
  .news .common__btn {
    margin: 0 0 0 8rem;
  }
}

/*============================
	policy
============================*/
.policy {
  padding: 12.5rem 0 20rem;
  position: relative;
}

@media (max-width: 767px) {
  .policy {
    padding: 12rem 0;
  }
}

.policy__contents {
  width: 110rem;
  display: flex;
  gap: 12rem 19.5rem;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .policy__contents {
    width: 90%;
    flex-direction: column-reverse;
  }
}

.policy__txt-wrapper {
  width: 100%;
}

.policy__txt-wrapper h3 {
  font-size: max(16px, 3.5rem);
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-top: 5rem;
}

.policy__txt-wrapper h3 strong {
  font-size: max(20px, 4.7rem);
  font-weight: 700;
  letter-spacing: 0.05em;
}

.policy__txt-wrapper p {
  letter-spacing: 0.1em;
  line-height: 2;
  margin: 4rem 0 3rem;
}

.policy .common__btn {
  margin: 0 0 0 auto;
}

.policy__img-1 {
  width: 57rem;
  height: 100%;
  flex-shrink: 0;
  margin-right: calc(50% - 50vw);
  position: relative;
}

@media (max-width: 767px) {
  .policy__img-1 {
    width: 90vw;
    margin-left: auto;
  }
}

.policy__img-1::before {
  content: "";
  background-color: #fdfc8f;
  width: 100%;
  height: 100%;
  border-radius: 10rem 0 0 10rem;
  position: absolute;
  left: -9rem;
  bottom: -10rem;
  pointer-events: none;
  z-index: -1;
}

@media (max-width: 767px) {
  .policy__img-1::before {
    border-radius: 4rem 0 0 4rem;
    left: -5rem;
    bottom: -7rem;
  }
}

.policy__img-1 img:nth-of-type(1) {
  border-radius: 10rem 0 0 10rem;
}

.policy__img-1 img:nth-of-type(2) {
  width: 32.6rem;
  height: auto;
  position: absolute;
  top: -5rem;
  left: -19rem;
}

.policy__img-1 img:nth-of-type(3) {
  width: 19.7rem;
  height: auto;
  position: absolute;
  right: 8rem;
  bottom: -12rem;
}

@media (max-width: 767px) {
  .policy__img-1 img:nth-of-type(1) {
    border-radius: 4rem 0 0 4rem;
  }

  .policy__img-1 img:nth-of-type(2) {
    width: 28rem;
    top: -9rem;
    left: -5rem;
  }

  .policy__img-1 img:nth-of-type(3) {
    right: 2rem;
  }
}

.policy__img-2 {
  display: block;
  width: 33rem;
  border-radius: 0 10rem 10rem 0;
  position: absolute;
  left: -10.5rem;
  bottom: 9rem;
  overflow: hidden;
  z-index: -1;
}

@media (max-width: 767px) {
  .policy__img-2 {
    width: 60%;
    border-radius: 0 4rem 4rem 0;
    margin-top: 4rem;
    position: static;
  }
}

/*============================
	menu
============================*/
.menu__ttl-wrapper {
  background: url("../img/menu_ttl-bg.jpg") no-repeat center / cover;
  width: 100%;
  height: 40rem;
  margin-bottom: 14.5rem;
  position: relative;
}

.menu__ttl {
  display: block;
  width: 52.8rem;
  position: absolute;
  right: 13.5rem;
  bottom: -7rem;
}

@media (max-width: 767px) {
  .menu__ttl {
    width: 48rem;
    right: 5%;
    bottom: -6rem;
  }
}

.menu__txt-wrapper {
  background: url("../img/menu_txt-bg.jpg") no-repeat center / 100% auto;
  width: 100%;
  border: solid max(3px, 0.7rem) #e8c534;
  border-radius: 5rem;
  padding: 8rem 5rem;
  filter: drop-shadow(1rem 1rem 1rem rgba(0, 0, 0, 0.1));
  position: relative;
}

@media (min-width: 768px) {
  .menu__txt-wrapper {
    width: 77.5rem;
    padding: 8rem 7rem 6.5rem;
  }

  .menu__food .menu__txt-wrapper {
    margin-right: -8rem;
  }

  .menu__goods .menu__txt-wrapper {
    margin-left: 9rem;
  }
}

.menu__txt-wrapper::before {
  content: "";
  background: url("../img/policy_3.png") no-repeat center / contain;
  width: 16.1rem;
  height: 17.7rem;
  position: absolute;
  top: -6.5rem;
  right: 15rem;
  pointer-events: none;
}

@media (max-width: 767px) {
  .menu__txt-wrapper::before {
    right: 2rem;
  }
}

.menu__txt-wrapper h3 {
  font-size: max(16px, 2.4rem);
  font-weight: 700;
  letter-spacing: 0.1em;
}

.menu__txt-wrapper p {
  letter-spacing: 0.1em;
  line-height: 2;
  margin-top: 3rem;
}

@media (min-width: 768px) {
  .menu__txt-wrapper p {
    width: 43.6rem;
  }

  .menu__txt-wrapper p.menu-txt{
    width: 55rem;
  }
}

.menu .common__btn {
  margin: 3rem 0 0;
}

.menu__food {
  background: url("../img/menu_food-bg.jpg") no-repeat center / cover;
  display: flex;
  justify-content: flex-end;
  padding: 7.5rem 0;
  position: relative;
}

@media (max-width: 767px) {
  .menu__food {
    flex-direction: column-reverse;
    padding: 0 5% 8rem;
  }
}

.food__img {
  display: block;
  width: 72.2rem;
  position: absolute;
  top: -6.5rem;
  left: -6rem;
}

@media (max-width: 767px) {
  .food__img {
    width: 100%;
    margin: -6rem 0 4rem;
    position: static;
  }
}

.menu__goods {
  background: var(--bg-2);
  padding: 8rem 0;
  position: relative;
}

@media (max-width: 767px) {
  .menu__goods {
    padding: 8rem 5% 24rem;
  }
}

.menu__goods .common__ttl em {
  text-transform: uppercase;
}

.goods__img-1 {
  width: 117rem;
  display: flex;
  gap: 5rem;
  margin-left: 15rem;
  margin-bottom: -11rem;
}

@media (max-width: 767px) {
  .goods__img-1 {
    width: 100%;
    gap: 4rem;
    margin: 0 auto;
  }
}

.goods__img-1 img:nth-of-type(1) {
  width: 45.8rem;
}

.goods__img-1 img:nth-of-type(2) {
  width: 66rem;
}

@media (max-width: 767px) {
  .goods__img-1 img:nth-of-type(1) {
    width: 40%;
  }

  .goods__img-1 img:nth-of-type(2) {
    width: 60%;
  }
}

.goods__img-2 {
  display: block;
  width: 25.5rem;
  border-radius: 10rem 0 0 10rem;
  overflow: hidden;
  position: absolute;
  right: 0;
  bottom: 11rem;
  z-index: 1;
}

@media (max-width: 767px) {
  .goods__img-2 {
    border-radius: 4rem 0 0 4rem;
    bottom: 6rem;
  }
}

/*============================
	gallery
============================*/
.gallery {
  padding: 9.5rem 0 10.5rem;
  position: relative;
}

.gallery::before {
  content: "";
  background: url("../img/gallery_deco-1.png") no-repeat center / contain;
  width: 57rem;
  height: 64.2rem;
  position: absolute;
  top: -22.5rem;
  right: 13rem;
  pointer-events: none;
}

@media (max-width: 767px) {
  .gallery::before {
    width: 40rem;
    height: 45rem;
    top: -15rem;
    right: 1rem;
  }
}

.gallery__slider {
  height: 27.8rem;
  margin: 5.5rem 0 4.5rem;
}

.gallery__slider .swiper-wrapper {
  transition-timing-function: linear;
}

.gallery__slider .swiper-slide {
  width: 38.2rem;
}

.gallery .common__btn {
  margin: 0 auto;
}

/*============================
	access
============================*/
.access {
  padding: 11rem 0;
  position: relative;
}

.access::before {
  content: "";
  background-color: #fdfc8f;
  width: calc(100% - 10rem);
  height: 100%;
  border-radius: 0 10rem 0 0;
  mix-blend-mode: multiply;
  position: absolute;
  left: 0;
  bottom: 0;
  pointer-events: none;
  z-index: -1;
}

@media (max-width: 767px) {
  .access::before {
    width: 95%;
    border-radius: 0 4rem 0 0;
  }
}

.access__contents {
  width: 110rem;
  display: flex;
  gap: 10rem 4rem;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .access__contents {
    width: 90%;
    flex-direction: column-reverse;
    padding-right: 5%;
  }
}

.access__list {
  display: flex;
  flex-wrap: wrap;
  margin: 2.5rem 0 5rem;
}

.access__list dt,
.access__list dd {
  letter-spacing: 0.05em;
  padding: 2.6rem 0;
}

.access__list dt {
  width: max(75px, 11.5rem);
  font-family: var(--font-sans);
  font-size: max(12px, 1.8rem);
  font-weight: 400;
}

.access__list dd {
  width: calc(100% - max(75px, 11.5rem));
}

.access__list dd:not(:last-of-type) {
  border-bottom: solid 1px var(--black);
}

@media (min-width: 768px) {
  .access__list dt:not(:last-of-type) {
    border-bottom: solid 1px var(--black);
  }
}

@media (max-width: 767px) {
  .access__list dt,
  .access__list dd {
    width: 100%;
  }

  .access__list dt {
    padding: 2rem 1.6rem 1rem;
  }

  .access__list dd {
    padding: 0 1.6rem 2rem;
  }
}

@media (min-width: 768px) {
  .access .common__btn {
    margin: 0;
  }
}

.access__img-wrapper {
  width: 71.5rem;
  height: 100%;
  flex-shrink: 0;
  margin-right: calc(50% - 50vw);
}

@media (max-width: 767px) {
  .access__img-wrapper {
    width: 100vw;
    margin-left: auto;
  }
}

.access__img {
  width: 100%;
  position: relative;
}

.access__img img:nth-of-type(1) {
  border-radius: 10rem 0 0 10rem;
}

.access__img img:nth-of-type(2) {
  width: 13.8rem;
  height: auto;
  position: absolute;
  top: -3rem;
  left: -3rem;
}

@media (max-width: 767px) {
  .access__img img:nth-of-type(1) {
    border-radius: 4rem 0 0 4rem;
  }

  .access__img img:nth-of-type(2) {
    top: -5rem;
    left: -4rem;
  }
}

.access__img-wrapper p {
  background: url("../img/access_txt-bg.png") no-repeat center / contain;
  width: max(210px, 35.6rem);
  height: max(71px, 12.1rem);
  font-size: max(14px, 2.6rem);
  font-weight: 500;
  letter-spacing: 0.05em;
  align-self: 1.3;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: max(10px, 2rem);
  margin: 3rem auto 2rem;
}

@media (max-width: 767px) {
  .access__img-wrapper p {
    margin: 3rem 0 2rem 10rem;
  }
}

.access__tel {
  width: max-content;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .access__tel {
    margin: 0 0 0 10rem;
  }
}

.access__tel a {
  display: block;
  width: 100%;
  font-family: var(--font-tel);
  font-size: max(30px, 5.6rem);
  line-height: 1;
  position: relative;
}

@media (max-width: 767px) {
  .access__tel a {
    text-decoration: none;
  }
}

.access__tel a::before {
  content: "";
  background-color: var(--green);
  width: 100%;
  height: max(2px, 0.4rem);
  position: absolute;
  left: 0;
  bottom: -1.5rem;
  pointer-events: none;
}

.top__map {
  height: 53rem;
}

/*============================
	insta
============================*/
.insta {
  padding: 10rem 0 9.5rem;
}

.insta__contents {
  width: 92.1rem;
  margin: 0 auto;
}

@media screen and (max-width: 767px) {
  .insta__contents {
    width: 90%;
  }
}

.CMS-INSTAGRAM-LIST {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3.2rem;
}

.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: 28.8rem;
  height: 28.8rem;
  object-fit: cover;
}

@media screen and (max-width: 767px) {
  .CMS-INSTAGRAM-LIST img {
    width: 100%;
    height: auto;
  }
}
