@charset "UTF-8";

/*============================
	common
============================*/
.common__ttl {
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.common__ttl span {
  display: block;
  font-family: var(--font-jose);
  font-size: max(24px, 4rem);
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.concept .common__ttl span {
  font-size: max(28px, 4.8rem);
}

.common__btn {
  width: max(160px, 22.8rem);
  height: max(40px, 5.4rem);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.common__btn a {
  background-color: var(--yellow);
  width: 100%;
  height: 100%;
  border-radius: 2rem;
  font-family: var(--font-jose);
  font-weight: 700;
  color: var(--black);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  padding-top: 0.5rem;
  position: relative;
}

.common__btn--bl a {
  background-color: transparent;
  border: solid 1px var(--black);
}

.common__btn a::before,
.common__btn a::after {
  content: "";
  display: block;
  background: url("../img/btn_deco.png") no-repeat center / contain;
  width: max(15px, 2.1rem);
  height: max(14.3px, 2rem);
  margin-bottom: 0.5rem;
}

.common__btn a::after {
  transform: scale(-1, 1);
}

/*============================
	hero
============================*/
.hero {
  width: 100%;
  height: max(90rem, 100vh);
  padding: max(60px, 10rem) 0 0 20rem;
  position: relative;
}

@media (max-width: 767px) {
  .hero {
    height: max(300px, 50rem);
    padding: max(60px, 8rem) 0 0 5%;
  }
}

.hero::before {
  content: "";
  background: var(--bg-2);
  width: 86%;
  height: calc(100% - max(60px, 10rem));
  border-radius: 0 4rem 4rem 0;
  position: absolute;
  left: 0;
  bottom: -6.5rem;
  pointer-events: none;
}

@media (max-width: 767px) {
  .hero::before {
    height: calc(100% - max(60px, 8rem));
    bottom: -10%;
  }
}

.hero__slider {
  width: 100%;
  height: 100%;
  border-radius: 4rem 0 0 4rem;
  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;
}

@keyframes scroll {
  0% {
    transform: scale(1, 0);
    transform-origin: 0 0;
  }

  50% {
    transform: scale(1, 1);
    transform-origin: 0 0;
  }

  50.1% {
    transform: scale(1, 1);
    transform-origin: 0 100%;
  }

  100% {
    transform: scale(1, 0);
    transform-origin: 0 100%;
  }
}

.hero__scroll {
  font-family: var(--font-jose);
  font-size: max(14px, 2rem);
  letter-spacing: 0.05em;
  line-height: 1;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: absolute;
  left: 4.5rem;
  bottom: 3rem;
  z-index: 10;
}

@media (max-width: 767px) {
  .hero__scroll {
    display: none;
  }
}

.hero__scroll p {
  margin-top: 0.5rem;
}

.hero__scroll::after {
  content: "";
  display: block;
  background-color: var(--black);
  width: 1px;
  height: max(40px, 7.6rem);
  animation: scroll 2.5s infinite;
}

/*============================
	news
============================*/
.news {
  padding: 19rem 0 15rem;
}

.news__inner {
  width: 110rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 6rem 13rem;
  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: 8rem;
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .news .common__btn {
    margin: 0;
  }

  .news .common__btn.sp {
    display: none;
  }
}

.CMS-NEWS-INDEX {
  width: 100%;
  height: auto;
}

.CMS-NEWS-ITEM:not(:last-of-type) {
  border-bottom: solid 1px var(--black);
}

.CMS-NEWS-LINK-CONTENT {
  display: flex;
  align-items: center;
  padding: 2.8rem 13rem 2.8rem 0;
  position: relative;
}

@media (max-width: 767px) {
  .CMS-NEWS-LINK-CONTENT {
    display: block;
    padding: 2.8rem 8rem 2.8rem 0;
  }
}

.CMS-NEWS-LINK-CONTENT::before {
  content: "";
  background: url("../img/news_arw.png") no-repeat center / contain;
  width: max(16px, 2.4rem);
  height: max(16px, 2.4rem);
  position: absolute;
  transform: translateY(-50%);
  top: 50%;
  right: 3px;
  pointer-events: none;
  transition: 0.3s ease-in-out;
}

@media (min-width: 768px) {
  .CMS-NEWS-LINK-CONTENT:hover::before {
    right: -3px;
  }
  .CMS-NEWS-LINK-CONTENT:hover {
    opacity: 1;
  }
}

.CMS-NEWS-LINK,
.CMS-NEWS-TIME {
  font-weight: 500;
}

.CMS-NEWS-LINK {
  font-size: max(12px, 1.4rem);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media (min-width: 768px) {
  .CMS-NEWS-LINK {
    max-width: 50rem;
  }
}

.CMS-NEWS-TIME {
  width: max(90px, 11rem);
  font-size: max(10px, 1.2rem);
  flex-shrink: 0;
}

@media (max-width: 767px) {
  .CMS-NEWS-TIME {
    margin-bottom: 0.5rem;
  }
}

.CMS-NEWS-MORE-READ {
  display: none;
}

/*============================
	concept
============================*/
.concept {
  background: var(--bg-2);
  padding: 14rem 0 13rem;
  position: relative;
}

.concept::before {
  content: "";
  background: url("../img/deco_1.png") no-repeat center / contain;
  width: 23.5rem;
  height: 41.1rem;
  position: absolute;
  left: 16rem;
  bottom: 5.5rem;
  pointer-events: none;
}

@media screen and (max-width: 767px) {
  .concept::before {
    width: 18rem;
    height: 31.5rem;
    left: 2rem;
    bottom: 4rem;
  }
}

.concept__list {
  width: 110rem;
  display: flex;
  flex-direction: column;
  row-gap: 9.5rem;
  margin: 10.5rem auto 11rem;
}

@media (max-width: 767px) {
  .concept__list {
    width: 90%;
    margin: 10.5rem auto 20rem;
  }
}

.concept__list-item {
  display: flex;
  align-items: center;
  position: relative;
}

.concept__list-item:nth-of-type(even) {
  flex-direction: row-reverse;
}

@media (max-width: 767px) {
  .concept__list-item,
  .concept__list-item:nth-of-type(even) {
    flex-direction: column-reverse;
  }
}

.concept__list-item::before {
  content: "";
  background: url("../img/deco_1.png") no-repeat center / contain;
  width: 23.5rem;
  height: 41.1rem;
  position: absolute;
  top: -18rem;
  left: -6.5rem;
  pointer-events: none;
  z-index: 0;
}

.concept__list-item:nth-of-type(2)::before {
  top: -21rem;
  left: auto;
  right: -13rem;
}

@media screen and (max-width: 767px) {
  .concept__list-item::before {
    width: 18rem;
    height: 31.5rem;
    left: -2rem;
  }

  .concept__list-item:nth-of-type(2)::before {
    left: auto;
    right: -1rem;
  }
}

.concept__txt-wrapper {
  background: var(--bg-3);
  width: 100%;
  border-radius: 2rem;
  padding: 5.5rem 4rem;
  position: relative;
  z-index: 2;
}

@media (min-width: 768px) {
  .concept__txt-wrapper {
    margin-right: -15rem;
  }

  .concept__list-item:nth-of-type(even) .concept__txt-wrapper {
    margin: 0 0 4rem -15rem;
  }
}

.concept__txt-wrapper h3 {
  font-size: max(14px, 2rem);
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-bottom: 2rem;
}

.concept__txt-wrapper h3 span {
  display: block;
  font-family: var(--font-jose);
  font-size: max(24px, 4.4rem);
  font-weight: 700;
  color: var(--yellow);
  letter-spacing: 0;
  line-height: 1;
  text-transform: capitalize;
  margin-bottom: 2rem;
}

.concept__txt-wrapper p {
  letter-spacing: 0.15em;
  line-height: 2;
}

.concept__img {
  width: 71rem;
  height: 100%;
  border-radius: 4rem;
  flex-shrink: 0;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

@media (max-width: 767px) {
  .concept__img {
    width: 100%;
  }
}

.concept__hogo {
  background: var(--bg-3);
  width: 110rem;
  display: flex;
  margin: 0 auto 10.5rem;
  position: relative;
}

@media (max-width: 767px) {
  .concept__hogo {
    width: 90%;
    flex-direction: column-reverse;
  }
}

.concept__hogo-txt-wrapper {
  width: 100%;
  padding: 6rem 5rem 6rem 8rem;
}

@media (max-width: 767px) {
  .concept__hogo-txt-wrapper {
    padding: 5rem 5rem 6rem;
  }
}

.concept__hogo-txt-wrapper h3 {
  font-size: max(14px, 2rem);
  font-weight: 700;
  color: var(--orange);
  letter-spacing: 0.1em;
  line-height: 1.8;
  margin-bottom: 2.5rem;
}

.concept__hogo-txt-wrapper p {
  letter-spacing: 0.1em;
  line-height: 2;
}

.concept__deco-1,
.concept__deco-2 {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.concept__deco-1::before,
.concept__deco-1::after {
  content: "";
  background: url("../img/concept_txt-deco-1.png") repeat-x center / contain;
  position: absolute;
  width: 100%;
  height: 4px;
  left: 0;
}

.concept__deco-1::before {
  transform: translateY(-50%);
  top: 0;
}

.concept__deco-1::after {
  transform: translateY(50%);
  bottom: 0;
}

.concept__deco-2::before,
.concept__deco-2::after {
  content: "";
  background: url("../img/concept_txt-deco-2.png") repeat-y center / contain;
  position: absolute;
  width: 4px;
  height: 100%;
  top: 0;
}

.concept__deco-2::before {
  transform: translateX(-50%);
  left: 0;
}

.concept__deco-2::after {
  transform: translateX(50%);
  right: 0;
}

.concept__hogo-img {
  display: block;
  width: 36.7rem;
  height: 100%;
  flex-shrink: 0;
  margin: -6.5rem -1rem 0 0;
  position: relative;
}

@media (max-width: 767px) {
  .concept__hogo-img {
    width: 90%;
    height: auto;
    margin: -10rem auto 0;
  }
}

.concept__hogo-img figcaption {
  background: url("../img/concept_hukidashi.png") no-repeat center / contain;
  width: max(105px, 19.4rem);
  height: max(61px, 11.3rem);
  font-size: max(12px, 1.8rem);
  letter-spacing: 0.1em;
  line-height: 1.8;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-bottom: 1.6rem;
  position: absolute;
  top: -6.5rem;
  right: 1.6rem;
}

@media (max-width: 767px) {
  .concept__hogo-img figcaption {
    top: -5rem;
    right: 4rem;
  }
}

/*============================
	menu
============================*/
.menu {
  padding: 14.5rem 0 16rem;
  position: relative;
}

.menu::before {
  content: "";
  background: url("../img/menu_deco.png") no-repeat center / contain;
  width: 50.7rem;
  height: 29.1rem;
  position: absolute;
  top: -3.5rem;
  right: 3rem;
  pointer-events: none;
}

@media (max-width: 767px) {
  .menu::before {
    width: 40rem;
    height: 22.9rem;
    top: -9rem;
    right: 1rem;
  }
}

.menu__list {
  width: 104rem;
  display: flex;
  flex-direction: column;
  row-gap: 11rem;
  margin: 10.5rem auto 12.5rem;
}

@media (max-width: 767px) {
  .menu__list {
    width: 90%;
  }
}

.menu__list-item {
  position: relative;
}

.menu__slider {
  width: 100%;
}

.menu__slider .swiper-slide {
  display: flex;
  gap: 4rem 5rem;
}

.menu__list-item:nth-of-type(odd) .menu__slider .swiper-slide {
  flex-direction: row-reverse;
}

@media (max-width: 767px) {
  .menu__slider .swiper-slide,
  .menu__list-item:nth-of-type(odd) .menu__slider .swiper-slide {
    flex-direction: column-reverse;
  }
}

.menu__txt-wrapper {
  width: 100%;
}

@media (min-width: 768px) {
  .menu__txt-wrapper {
    padding-top: 1rem;
  }
}

.menu__txt-wrapper h3 {
  font-size: max(14px, 2rem);
  font-weight: 700;
  letter-spacing: 0.1em;
}

.menu__txt-wrapper p {
  letter-spacing: 0.15em;
  margin: 2rem 0 2.5rem;
}

.menu__thum-list {
  width: max-content;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3.2rem;
  margin: 0 auto;
}

.menu__thum-list li {
  background: url("../img/menu_thum.png") no-repeat center / cover;
  width: max(80px, 13.6rem);
  height: max(80px, 13.6rem);
  border-radius: 50%;
  cursor: pointer;
  padding: max(5px, 0.8rem);
  transition: 0.3s ease-in-out;
}

@media (min-width: 768px) {
  .menu__thum-list li:hover {
    opacity: 0.6;
  }
}

@media (max-width: 767px) {
  .menu__thum-list li {
    width: max(100px, 16rem);
    height: max(100px, 16rem);
  }
}

.menu__thum-list li img {
  border-radius: 50%;
}

.menu__img {
  width: 63rem;
  height: 100%;
  flex-shrink: 0;
  position: relative;
}

@media (max-width: 767px) {
  .menu__img {
    width: 100%;
    margin: 0;
  }
}

.menu__img::before {
  content: "";
  background: url("../img/menu_img-deco.png") no-repeat center / contain;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 1rem;
  left: 1rem;
  pointer-events: none;
}

.menu__img img {
  border-radius: 2rem;
}

.menu .next-btn,
.menu .prev-btn {
  background: url("../img/menu_arw.png") no-repeat center / contain;
  width: max(40px, 7.2rem);
  height: max(40px, 7.2rem);
  position: absolute;
  top: 50%;
  z-index: 2;
  cursor: pointer;
  transition: 0.3s ease-in-out;
}

.menu .next-btn {
  transform: translate(100%, -50%);
  right: -2.5rem;
}

.menu .prev-btn {
  transform: translate(-100%, -50%) scale(-1, 1);
  left: -2.5rem;
}

@media (min-width: 768px) {
  .menu .next-btn:hover,
  .menu .prev-btn:hover {
    opacity: 0.6;
  }
}

@media (max-width: 767px) {
  .menu .next-btn,
  .menu .prev-btn {
    top: 40rem;
  }

  .menu .next-btn {
    transform: translateY(-50%);
    right: -2rem;
  }

  .menu .prev-btn {
    transform: translateY(-50%) scale(-1, 1);
    left: -2rem;
  }
}

/*============================
	service
============================*/
.service {
  background: var(--bg-2);
  padding: 8.5rem 0;
}

.service__list {
  width: 110rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 6rem 5.4rem;
  margin: 6rem auto 0;
}

@media (max-width: 767px) {
  .service__list {
    width: 90%;
    grid-template-columns: 1fr;
  }
}

.service__list-item {
  background: var(--bg-3);
  border-radius: 2rem;
  display: flex;
  align-items: center;
  gap: 3.5rem;
  padding: 4rem 6rem 3rem;
}

@media (max-width: 767px) {
  .service__list-item {
    flex-direction: column;
    padding: 4rem 4rem 5rem;
  }
}

.service__txt-wrapper {
  width: 100%;
}

.service__txt-wrapper p {
  font-size: max(14px, 2rem);
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-bottom: 2.5rem;
}

@media (max-width: 767px) {
  .service__txt-wrapper p {
    text-align: center;
  }
}

@media (min-width: 768px) {
  .service .common__btn {
    margin: 0;
  }
}

.service__img {
  display: block;
  width: 9.2rem;
  flex-shrink: 0;
}

@media (max-width: 767px) {
  .service__img {
    width: max(65px, 9.2rem);
  }
}

/*============================
	gallery
============================*/
.gallery {
  background: #f5eddb;
  padding: 9rem 0 10.5rem;
}

.gallery__slider {
  height: 25.6rem;
  margin: 6.5rem 0 8rem;
}

.gallery__slider .swiper-wrapper {
  transition-timing-function: linear;
}

.gallery__slider .swiper-slide {
  width: 31.1rem;
  margin: 0 0.6rem;
}

/*============================
	access
============================*/
.access {
  padding: 13.5rem 0 16rem;
  position: relative;
}

.access::before {
  content: "";
  background: url("../img/access_deco.png") no-repeat center / contain;
  width: 19.6rem;
  height: 32.3rem;
  position: absolute;
  top: -12.4rem;
  right: 19rem;
  pointer-events: none;
}

@media (max-width: 767px) {
  .access::before {
    width: 14rem;
    height: 23rem;
    right: 3rem;
  }
}

.access__contents {
  width: 110rem;
  display: flex;
  gap: 2rem 6.5rem;
  margin: 9rem auto 0;
}

@media (max-width: 767px) {
  .access__contents {
    width: 90%;
    flex-direction: column;
  }
}

.access__img {
  width: 66rem;
  height: 100%;
  border-radius: 0 4rem 4rem 0;
  flex-shrink: 0;
  margin-left: calc(50% - 50vw);
  overflow: hidden;
}

@media (max-width: 767px) {
  .access__img {
    width: 105%;
  }
}

.access__list {
  display: flex;
  flex-wrap: wrap;
  margin: -1.6rem 0 6rem;
}

@media (max-width: 767px) {
  .access__list {
    margin: 0 0 6rem;
  }
}

.access__list dt,
.access__list dd {
  letter-spacing: 0.05em;
  padding: 2.3rem 1.6rem;
}

.access__list dt {
  width: max(75px, 12rem);
  font-weight: 700;
}

.access__list dd {
  width: calc(100% - max(75px, 12rem));
}

.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;
  }
}

/*============================
	insta
============================*/
.insta {
  background: var(--bg-2);
  padding: 12.5rem 0 17.5rem;
  position: relative;
  z-index: 1;
}

.insta::before,
.insta::after {
  content: "";
  background: url("../img/deco_1.png") no-repeat center / contain;
  width: 23.5rem;
  height: 41.1rem;
  position: absolute;
  pointer-events: none;
  z-index: -1;
}

.insta::before {
  top: 11rem;
  left: 10.5rem;
}

.insta::after {
  right: 8rem;
  bottom: 9rem;
}

@media screen and (max-width: 767px) {
  .insta::before,
  .insta::after {
    width: 18rem;
    height: 31.5rem;
  }

  .insta::before {
    top: 4rem;
    left: 1rem;
  }

  .insta::after {
    right: 1rem;
    bottom: 2rem;
  }
}

.insta__contents {
  width: 82rem;
  margin: 10rem 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;
  }
}
