@charset "UTF-8";

/*============================
	common
============================*/
.common__ttl {
  font-weight: 500;
  color: var(--brown);
  letter-spacing: 0.05em;
  line-height: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem 2rem;
}

.common__ttl--wt {
  color: var(--white);
}

.common__ttl--row {
  flex-direction: row;
  align-items: baseline;
}

.insta .common__ttl {
  row-gap: 2rem;
}

.common__ttl span {
  display: block;
  font-size: max(32px, 5.4rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.insta .common__ttl span {
  text-transform: capitalize;
}

.common__btn {
  width: max(160px, 22.1rem);
  height: max(40px, 5.5rem);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.common__btn a {
  background: url("../img/btn_bg.png") no-repeat center / contain;
  width: 100%;
  height: 100%;
  font-weight: 900;
  color: var(--brown);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 0.5rem 0.5rem 0;
  position: relative;
}

.common__btn--wt a {
  background: url("../img/btn_bg-wt.png") no-repeat center / contain;
  color: var(--white);
}

/*============================
	hero
============================*/
.hero {
  width: 100%;
  height: max(90rem, 100vh);
  position: relative;
}

@media (max-width: 767px) {
  .hero {
    height: max(300px, 44rem);
  }
}

.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: 15rem 0 13rem;
}

.CMS-NEWS-INDEX {
  width: 101.2rem;
  height: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6rem 2.6rem;
  margin: 5rem 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;
}

/*============================
	concept
============================*/
.concept {
  background: var(--bg-2);
  color: var(--white);
  padding: 8rem 0;
  position: relative;
  z-index: 1;
}

.concept::after {
  content: "";
  background: url("../img/concept_deco-1.png") no-repeat center / contain;
  width: 39.1rem;
  height: 33.9rem;
  position: absolute;
  right: 10.5rem;
  bottom: -16.5rem;
  pointer-events: none;
}

@media (max-width: 767px) {
  .concept::after {
    right: 2rem;
    bottom: -12rem;
  }
}

.concept__contents {
  width: 128rem;
  border: solid max(3px, 0.6rem) var(--white);
  border-radius: 6rem;
  display: flex;
  flex-direction: row-reverse;
  gap: 5rem 7.5rem;
  padding: 6rem 19rem;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .concept__contents {
    width: 95%;
    border-radius: 4rem;
    flex-direction: column-reverse;
    padding: 5% 5% 8rem;
  }
}

.concept__txt-wrapper {
  width: 100%;
}

@media (min-width: 768px) {
  .concept__txt-wrapper {
    padding-top: 7.5rem;
  }
}

.concept__txt-wrapper h2 {
  border-bottom: solid 2px var(--white);
  font-size: max(16px, 2.6rem);
  font-weight: 900;
  letter-spacing: 0.1em;
  padding-bottom: 4rem;
}

.concept__txt-wrapper h2 span {
  display: block;
  font-size: max(18px, 3.6rem);
  letter-spacing: 0.1em;
  line-height: 1;
  margin-bottom: 3rem;
}

.concept__txt-wrapper p {
  font-size: max(12px, 1.8rem);
  letter-spacing: 0.1em;
  line-height: 2;
  margin: 4rem 0 7rem;
}

.concept .common__btn {
  margin: 0;
}

.concept__img-wrapper {
  width: 62.5rem;
  height: 100%;
  flex-shrink: 0;
  margin-left: calc(50% - 50vw);
}

@media (max-width: 767px) {
  .concept__img-wrapper {
    width: 100%;
    margin: 0;
  }
}

.concept__img-wrapper img {
  border-radius: 4rem;
}

.concept__img-1 {
  width: 100%;
}

.concept__img-2 {
  width: 49rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
  margin: 5rem 0 0 auto;
}

@media (max-width: 767px) {
  .concept__img-2 {
    width: 100%;
    margin: 3rem auto 0;
  }
}

/*============================
	menu
============================*/
.menu {
  padding: 12rem 0 13.5rem;
}

.menu__list {
  width: 110rem;
  display: flex;
  flex-direction: column;
  row-gap: 10rem;
  margin: 8.5rem auto 7rem;
}

@media (max-width: 767px) {
  .menu__list {
    width: 90%;
  }
}

.menu__list-item {
  display: flex;
  gap: 4rem 3rem;
  position: relative;
}

.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__list-item::before,
.menu__list-item::after {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: -1;
}

.menu__list-item:nth-of-type(1)::before {
  background: url("../img/menu_deco-1.png") no-repeat center / contain;
  width: 30.6rem;
  height: 26rem;
  top: -11rem;
  left: 5rem;
}

.menu__list-item:nth-of-type(1)::after {
  background: url("../img/menu_deco-2.png") no-repeat center / contain;
  width: 32.8rem;
  height: 21.6rem;
  bottom: -21.5rem;
  left: -14rem;
}

.menu__list-item:nth-of-type(2)::before {
  background: url("../img/menu_deco-3.png") no-repeat center / contain;
  width: 26.8rem;
  height: 30.2rem;
  top: -7.5rem;
  right: -10rem;
}

.menu__list-item:nth-of-type(2)::after {
  background: url("../img/menu_deco-4.png") no-repeat center / contain;
  width: 23.2rem;
  height: 23rem;
  bottom: -13rem;
  right: 12rem;
}

@media (max-width: 767px) {
  .menu__list-item:nth-of-type(1)::before {
    width: 25rem;
    height: 21.2rem;
    top: -15rem;
    left: -1rem;
  }

  .menu__list-item:nth-of-type(1)::after {
    width: 26rem;
    height: 17.1rem;
    bottom: -15rem;
    left: -2rem;
  }

  .menu__list-item:nth-of-type(2)::before {
    width: 20rem;
    height: 22.5rem;
    top: -12rem;
    right: -2rem;
  }

  .menu__list-item:nth-of-type(2)::after {
    width: 18rem;
    height: 17.8rem;
    bottom: -13rem;
    right: -2rem;
  }
}

.menu__txt-wrapper {
  width: 100%;
  position: relative;
  z-index: 1;
}

@media (min-width: 768px) {
  .menu__txt-wrapper {
    padding-top: 3.5rem;
  }
}

.menu__txt-wrapper h3 {
  font-size: max(18px, 3.2rem);
  font-weight: 900;
  color: var(--brown);
  letter-spacing: 0.1em;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 1.5rem;
  padding-left: 9rem;
  position: relative;
}

.menu__list-item:nth-of-type(2) .menu__txt-wrapper h3 {
  padding-left: 8rem;
}

.menu__txt-wrapper h3 span {
  display: block;
  font-size: max(14px, 2rem);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.menu__txt-wrapper h3::before {
  content: "";
  position: absolute;
  transform: translateY(-50%);
  top: 50%;
  left: 0;
  pointer-events: none;
}

.menu__list-item:nth-of-type(1) .menu__txt-wrapper h3::before {
  background: url("../img/menu_txt-deco-1.png") no-repeat center / contain;
  width: 6.1rem;
  height: 6.9rem;
}

.menu__list-item:nth-of-type(2) .menu__txt-wrapper h3::before {
  background: url("../img/menu_txt-deco-2.png") no-repeat center / contain;
  width: 5.6rem;
  height: 5.9rem;
}

.menu__list-item:nth-of-type(3) .menu__txt-wrapper h3::before {
  background: url("../img/menu_txt-deco-3.png") no-repeat center / contain;
  width: 7.6rem;
  height: 7.5rem;
}

.menu__txt-bg {
  background-color: #f0b900;
  color: var(--white);
  padding: 4rem 4rem 5.5rem;
  margin-top: 3rem;
}

.menu__list-item:nth-of-type(2) .menu__txt-bg {
  background-color: #af8cb4;
}

.menu__list-item:nth-of-type(3) .menu__txt-bg {
  background-color: #bb9342;
}

@media (min-width: 768px) {
  .menu__txt-bg {
    margin-right: -9rem;
  }

  .menu__list-item:nth-of-type(even) .menu__txt-bg {
    margin: 3rem 0 0 -9rem;
  }
}

.menu__txt-wrapper h4 {
  font-size: max(16px, 2.4rem);
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-bottom: 3rem;
}

.menu__txt-wrapper p {
  font-size: max(12px, 1.8rem);
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 2;
}

.menu__img {
  width: 70rem;
  height: 100%;
  border-radius: 4rem;
  flex-shrink: 0;
  overflow: hidden;
}

@media (max-width: 767px) {
  .menu__img {
    width: 100%;
  }
}

.menu__delivery {
  width: 110rem;
  border: solid max(2px, 0.3rem) var(--brown);
  padding: 0 3.5rem 3.5rem;
  margin: 11rem auto 0;
}

@media (max-width: 767px) {
  .menu__delivery {
    width: 90%;
  }
}

.menu__delivery h3 {
  background: url("../img/texture-1.jpg") repeat center / 100% auto;
  width: max-content;
  font-size: max(28px, 4.8rem);
  font-weight: 900;
  color: var(--brown);
  letter-spacing: 0.05em;
  line-height: 1;
  text-transform: uppercase;
  padding: 0 3rem;
  margin: -3rem auto 3rem;
}

.menu__delivery-list {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3rem;
}

@media (max-width: 767px) {
  .menu__delivery-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

.menu__delivery-list li a {
  display: block;
  border: solid 1px #e73f34;
  border-radius: 2rem;
  overflow: hidden;
}

.menu__delivery-list li:nth-of-type(2) a {
  border: solid 1px #00479f;
}

.menu__delivery-list li:nth-of-type(3) a {
  border: solid 1px #e83434;
}

.menu__delivery-list li:nth-of-type(4) a {
  border: solid 1px #06c167;
}

.menu__delivery-list span {
  height: 16rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.menu__delivery-list span img {
  width: max(52px, 9.8rem);
  height: auto;
}

.menu__delivery-list li:nth-of-type(2) span img {
  width: max(96px, 18rem);
}

.menu__delivery-list li:nth-of-type(3) span img {
  width: max(45px, 8.4rem);
}

.menu__delivery-list li:nth-of-type(4) span img {
  width: max(55px, 10.2rem);
}

.menu__delivery-list p {
  background-color: #e73f34;
  width: 100%;
  height: max(40px, 5.5rem);
  font-family: var(--font-sans);
  font-size: max(10px, 1.6rem);
  font-weight: 800;
  color: var(--white);
  letter-spacing: 0.05em;
  display: flex;
  justify-content: center;
  align-items: center;
}

.menu__delivery-list li:nth-of-type(2) p {
  background-color: #00479f;
}

.menu__delivery-list li:nth-of-type(3) p {
  background-color: #e83434;
}

.menu__delivery-list li:nth-of-type(4) p {
  background-color: #06c167;
}

@media (max-width: 767px) {
  .menu__delivery-list p {
    font-size: max(12px, 1.6rem);
  }
}

/*============================
	gallery
============================*/
.gallery {
  background: var(--bg-2);
  padding: 10.5rem 0 10rem;
}

.gallery__slider {
  height: 22.6rem;
  margin: 6.5rem 0 8.5rem;
}

.gallery__slider .swiper-wrapper {
  transition-timing-function: linear;
}

.gallery__slider .swiper-slide {
  width: 31.1rem;
}

/*============================
	access
============================*/
.access {
  padding: 19rem 0;
}

@media (max-width: 767px) {
  .access {
    padding: 15rem 0;
  }
}

.access__contents {
  width: 110rem;
  display: flex;
  flex-direction: row-reverse;
  gap: 5rem 8rem;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .access__contents {
    width: 90%;
    flex-direction: column-reverse;
  }
}

.access__img {
  width: 64rem;
  height: 100%;
  flex-shrink: 0;
  margin-left: calc(50% - 50vw);
}

@media (max-width: 767px) {
  .access__img {
    width: 100%;
    margin: 0;
  }
}

.access__list {
  display: flex;
  flex-wrap: wrap;
  margin: 3.5rem 0 4.5rem;
}

.access__list dt,
.access__list dd {
  letter-spacing: 0.05em;
  padding: 2.3rem 1.6rem;
}

.access__list dt {
  width: max(75px, 10rem);
  font-weight: 400;
}

.access__list dd {
  width: calc(100% - max(75px, 10rem));
}

.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 0 0 1.5rem;
  }
}

/*============================
	insta
============================*/
.insta {
  background: var(--bg-2);
  padding: 11rem 0 11.5rem;
}

.insta__contents {
  width: 82rem;
  margin: 7rem auto;
}

@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;
  }
}

.insta__line {
  width: max-content;
  margin: 0 auto;
}

.insta__line a {
  background-color: var(--white);
  width: 100%;
  height: 100%;
  border: solid max(2px, 0.4rem) #06c755;
  font-size: max(14px, 2.2rem);
  font-weight: 900;
  color: #06c755;
  letter-spacing: 0.1em;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  padding: 2rem 3rem;
}

.insta__line a::before {
  content: "";
  display: block;
  background: url("../img/line_icon.png") no-repeat center / contain;
  width: max(32px, 5.4rem);
  height: max(32px, 5.4rem);
}

/*============================
  parallax
============================*/
.parallax {
  width: 100%;
  height: 40rem;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
  position: relative;
}

.parallax::before {
  content: "";
  background: url("../img/parallax_bg.jpg") no-repeat center / cover;
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
}
