@charset "UTF-8";

/*============================
	common
============================*/
.common__ttl {
  font-family: var(--font-kaisei);
  font-size: max(28px, 5rem);
  font-weight: 400;
  letter-spacing: 0.1em;
  line-height: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.common__ttl--wt {
  color: var(--white);
}

.common__ttl::before {
  content: "";
  display: block;
  background: url("../img/ttl_deco.png") no-repeat center / contain;
  width: max(65px, 11.1rem);
  height: max(56.5px, 9.6rem);
}

.common__btn {
  width: max-content;
  height: max(36px, 4.2rem);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.common__btn a {
  background-color: var(--brown);
  width: 100%;
  height: 100%;
  border-radius: 1rem;
  font-size: max(12px, 1.4rem);
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.1em;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  padding: 0 10px;
  position: relative;
}

.common__btn--wt a {
  background-color: var(--white);
  color: var(--brown);
}

.common__btn a::before,
.common__btn a::after {
  content: "";
  display: block;
  background: url("../img/btn_deco.png") no-repeat center / contain;
  width: max(18.7px, 2.5rem);
  height: max(9px, 1.2rem);
}

.common__btn--wt a::before,
.common__btn--wt a::after {
  background: url("../img/btn_deco-wt.png") no-repeat center / contain;
}

/*============================
	hero
============================*/
.hero {
  width: 100%;
  height: max(80rem, 100vh);
  margin-top: max(60px, 12rem);
  position: relative;
}

@media (max-width: 767px) {
  .hero {
    height: max(300px, 50rem);
    margin: 0;
  }
}

.hero__slider {
  mask-image: url(../img/hero_mask.png);
  -webkit-mask-image: url(../img/hero_mask.png);
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
  mask-position: center bottom;
  -webkit-mask-position: center bottom;
  mask-size: cover;
  -webkit-mask-size: cover;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

@media (max-width: 767px) {
  .hero__slider {
    mask-image: url(../img/hero_mask-sp.png);
    -webkit-mask-image: url(../img/hero_mask-sp.png);
  }
}

@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;
  column-gap: 13px;
  transform: translateY(100%) !important;
  left: auto !important;
  right: 5rem;
  bottom: -15px !important;
  z-index: 10;
}

.hero .swiper-pagination-bullet {
  background-color: transparent;
  width: 10px !important;
  height: 10px !important;
  border: solid 1px var(--white);
  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(--white);
}

/*============================
	news
============================*/
.news {
  padding: 8rem 0;
}

.CMS-NEWS-INDEX {
  width: 101.2rem;
  height: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6rem 2.6rem;
  margin: 6rem auto 7rem;
}

@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(--black);
  padding-top: 1rem;
  margin-top: 1rem;
}

.CMS-NEWS-TIME {
  font-size: max(12px, 1.4rem);
}

.CMS-NEWS-MORE-READ {
  display: none;
}

/*============================
	policy
============================*/
.policy {
  color: var(--white);
  padding: 13rem 0 11.5rem;
  position: relative;
}

@media (max-width: 767px) {
  .policy {
    padding: 4rem 0 11.5rem;
  }
}

.policy::before {
  content: "";
  background: url("../img/deco_1.png") no-repeat center / contain;
  width: 45.2rem;
  height: 21.8rem;
  position: absolute;
  right: -12.5rem;
  bottom: 11.5rem;
  pointer-events: none;
}

@media (max-width: 767px) {
  .policy::before {
    width: 32rem;
    height: 15.4rem;
    right: -8rem;
    bottom: 4rem;
  }
}

.policy__contents {
  width: 114rem;
  display: flex;
  flex-direction: row-reverse;
  gap: 4rem;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .policy__contents {
    width: 90%;
    flex-direction: column-reverse;
  }
}

.policy__txt-wrapper {
  width: 100%;
}

.policy__txt-wrapper h2 {
  font-family: var(--font-kaisei);
  font-size: max(24px, 4rem);
  font-weight: 400;
  letter-spacing: 0.05em;
}

.policy__txt-wrapper p {
  letter-spacing: 0.1em;
  line-height: 2;
  margin: 3rem 0 4rem;
}

@media (min-width: 768px) {
  .policy .common__btn {
    margin: 0;
  }
}

.policy__img {
  width: 80.8rem;
  height: 100%;
  flex-shrink: 0;
  margin: -13.5rem -0.8rem -17rem -12rem;
  position: relative;
  z-index: 1;
}

@media (max-width: 767px) {
  .policy__img {
    width: 100%;
    margin: 0;
  }
}

/*============================
	menu
============================*/
.menu {
  background: var(--bg-2);
  padding: 7rem 0 8rem;
  position: relative;
}

.menu::before,
.menu::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.menu::before {
  background: url("../img/menu_deco-1.png") no-repeat center / contain;
  width: 38rem;
  height: 26.4rem;
  top: -6rem;
  right: 8rem;
}

.menu::after {
  background: url("../img/menu_deco-2.png") no-repeat center / contain;
  width: 43.6rem;
  height: 53.4rem;
  left: 0;
  bottom: 0;
}

@media (max-width: 767px) {
  .menu::before {
    width: 28rem;
    height: 19.4rem;
    right: 1rem;
  }

  .menu::after {
    width: 35rem;
    height: 42.8rem;
  }
}

.menu__list {
  width: 110rem;
  display: flex;
  flex-direction: column;
  row-gap: 11rem;
  margin: 7.5rem auto 4rem;
  position: relative;
  z-index: 1;
}

@media (max-width: 767px) {
  .menu__list {
    width: 90%;
  }
}

.menu__list-item {
  display: flex;
  gap: 4rem 3.5rem;
}

.menu__list-item:nth-of-type(even) {
  flex-direction: row-reverse;
}

@media (max-width: 767px) {
  .menu__list-item,
  .menu__list-item:nth-of-type(even) {
    flex-direction: column-reverse;
  }
}

.menu__txt-wrapper {
  width: 100%;
  position: relative;
  z-index: 1;
}

@media (min-width: 768px) {
  .menu__txt-wrapper {
    height: max(400px, 41.5rem);
    writing-mode: vertical-rl;
    text-orientation: upright;
    padding-right: 4.5rem;
  }
}

.menu__txt-wrapper::before {
  content: "";
  background: url("../img/menu_txt-deco-1.png") no-repeat center / contain;
  width: 21.2rem;
  height: 20rem;
  position: absolute;
  top: 28.5rem;
  right: -8rem;
  pointer-events: none;
}

.menu__list-item:nth-of-type(2) .menu__txt-wrapper::before {
  background: url("../img/menu_txt-deco-2.png") no-repeat center / contain;
  width: 15.6rem;
  height: 16.6rem;
  top: 29.5rem;
  right: 0;
}

@media (max-width: 767px) {
  .menu__txt-wrapper::before {
    top: -7rem;
    right: -2rem;
  }

  .menu__list-item:nth-of-type(2) .menu__txt-wrapper::before {
    top: -5rem;
  }
}

.menu__txt-wrapper h3 {
  font-family: var(--font-kaisei);
  font-size: max(18px, 3.2rem);
  font-weight: 400;
  letter-spacing: 0.1em;
  margin-left: 3rem;
}

@media (max-width: 767px) {
  .menu__txt-wrapper h3 {
    margin: 0 0 3rem;
  }
}

.menu__txt-wrapper h3 span {
  background: url("../img/menu_txt-bg.jpg") no-repeat center / cover;
  width: max(50px, 10rem);
  height: max(132px, 26.5rem);
  color: #892f2c;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: 3rem;
}

@media (max-width: 767px) {
  .menu__txt-wrapper h3 span {
    background: url("../img/menu_txt-bg-sp.jpg") no-repeat center / cover;
    width: max(132px, 26.5rem);
    height: max(50px, 10rem);
    margin: 0 0 3rem;
  }
}

.menu__txt-wrapper p {
  letter-spacing: 0.1em;
}

.menu__img {
  width: 64rem;
  height: 100%;
  border-radius: 2rem;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}

@media (max-width: 767px) {
  .menu__img {
    width: 100%;
    margin: 0;
  }
}

/*============================
	takeout
============================*/
.takeout {
  background-color: #d6eefb;
  padding: 7rem 0 6rem;
}

.takeout__contents {
  width: 104rem;
  display: flex;
  gap: 4rem 7rem;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .takeout__contents {
    width: 90%;
    flex-direction: column-reverse;
  }
}

.takeout__txt-wrapper {
  width: 100%;
}

.takeout__txt-wrapper h2 {
  font-family: var(--font-kaisei);
  font-size: max(18px, 3.2rem);
  font-weight: 400;
  letter-spacing: 0.1em;
}

.takeout__txt-wrapper h2 span {
  display: block;
  font-size: max(24px, 4rem);
  color: #892f2c;
  padding-bottom: 1.5rem;
  margin-bottom: 2rem;
  position: relative;
}

.takeout__txt-wrapper h2 span::before {
  content: "";
  background-color: var(--black);
  width: 57rem;
  height: 1px;
  position: absolute;
  left: 0;
  bottom: 0;
  pointer-events: none;
}

@media (max-width: 767px) {
  .takeout__txt-wrapper h2 span::before {
    width: 100%;
  }
}

.takeout__txt-wrapper p {
  letter-spacing: 0.1em;
  line-height: 2;
  margin: 2rem 0 2.5rem;
}

@media (min-width: 768px) {
  .takeout .common__btn {
    margin: 0;
  }
}

.takeout__img {
  width: 60rem;
  height: 100%;
  flex-shrink: 0;
}

@media (max-width: 767px) {
  .takeout__img {
    width: 100%;
  }
}

/*============================
	gallery
============================*/
.gallery {
  padding: 12rem 0 9rem;
  position: relative;
}

.gallery::before {
  content: "";
  background: url("../img/gallery_deco.png") no-repeat center bottom / cover;
  width: 100%;
  height: 2.5rem;
  position: absolute;
  top: -1px;
  left: 0;
  pointer-events: none;
}

.gallery__slider {
  height: 25.8rem;
  margin: 5rem 0 5.5rem;
}

.gallery__slider .swiper-wrapper {
  transition-timing-function: linear;
}

.gallery__slider .swiper-slide {
  mask-image: url(../img/gallery_mask.png);
  -webkit-mask-image: url(../img/gallery_mask.png);
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
  mask-position: center;
  -webkit-mask-position: center;
  mask-size: cover;
  -webkit-mask-size: cover;
  width: 28.6rem;
  margin: 0 0.7rem;
}

/*============================
	insta
============================*/
.insta {
  background: var(--bg-2);
  padding: 12rem 0 17.5rem;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.insta::before,
.insta::after {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: -1;
}

.insta::before {
  background: url("../img/insta_deco-1.png") no-repeat center / contain;
  width: 36.2rem;
  height: 30rem;
  top: 5.5rem;
  left: 3.5rem;
}

.insta::after {
  background: url("../img/insta_deco-2.png") no-repeat center / contain;
  width: 49.6rem;
  height: 49.6rem;
  top: -8rem;
  right: -10.5rem;
}

@media screen and (max-width: 767px) {
  .insta::before {
    width: 28rem;
    height: 23.2rem;
    top: 3rem;
    left: 1rem;
  }

  .insta::after {
    width: 34rem;
    height: 34rem;
  }
}

.insta__contents {
  width: 87rem;
  margin: 5.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: 1.5rem;
}

.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: 28rem;
  height: 27rem;
  object-fit: cover;
}

@media screen and (max-width: 767px) {
  .CMS-INSTAGRAM-LIST img {
    width: 100%;
    height: auto;
  }
}

/*============================
	access
============================*/
.access {
  color: var(--white);
  padding: 7rem 0 9rem;
  position: relative;
  z-index: 1;
}

.access::before,
.access::after {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: -1;
}

.access::before {
  background: url("../img/deco_1.png") no-repeat center / contain;
  width: 45.2rem;
  height: 21.8rem;
  top: 12.5rem;
  left: 2rem;
}

.access::after {
  background: url("../img/access_deco.png") no-repeat center / contain;
  width: 30.6rem;
  height: 33.6rem;
  top: 4.5rem;
  right: 0;
}

@media (max-width: 767px) {
  .access::before {
    width: 32rem;
    height: 15.4rem;
    left: 1rem;
    top: 18rem;
  }

  .access::after {
    width: 23rem;
    height: 25.2rem;
    top: 3rem;
  }
}

.access__contents {
  width: 110rem;
  display: flex;
  gap: 2rem 8.5rem;
  margin: 7rem auto 8.5rem;
}

@media (max-width: 767px) {
  .access__contents {
    width: 90%;
    flex-direction: column;
  }
}

.access__img {
  width: 43rem;
  height: 100%;
  flex-shrink: 0;
}

@media (max-width: 767px) {
  .access__img {
    width: 100%;
  }
}

.access__list {
  display: flex;
  flex-wrap: wrap;
}

@media (min-width: 768px) {
  .access__list {
    height: 100%;
    margin-top: 1rem;
  }
}

.access__list dt,
.access__list dd {
  letter-spacing: 0.05em;
  padding: 2.7rem 1.6rem;
}

.access__list dt {
  width: max(75px, 10rem);
  font-weight: 700;
}

.access__list dd {
  width: calc(100% - max(75px, 10rem));
}

.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%;
  }

  .access__list dt {
    padding: 2rem 1.6rem 1rem;
  }

  .access__list dd {
    padding: 0 1.6rem 2rem;
  }
}

.top__map {
  height: 46rem;
}
