@charset "UTF-8";

/*============================
	common
============================*/
.common__ttl {
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-transform: uppercase;
}

.common__ttl span {
  font-family: var(--font-en);
  font-size: max(28px, 4.8rem);
  font-weight: 400;
  text-transform: capitalize;
  margin: 2rem 0 1rem;
}

.common__ttl::before {
  content: "";
  display: block;
  background: url("../img/ttl_deco.png") no-repeat center / contain;
  width: 26.3rem;
  height: 7.4rem;
}

.common__btn {
  width: max(220px, 34.4rem);
  height: max(45px, 6.2rem);
  margin: 0 auto;
}

.common__btn a {
  display: block;
  width: 100%;
  height: 100%;
  padding-right: 2.8rem;
  position: relative;
}

.common__btn a::before {
  content: "";
  background-color: var(--black);
  width: 5.3rem;
  height: 1px;
  position: absolute;
  transform: translateY(-50%);
  top: 50%;
  right: 0;
}

.common__btn a span {
  width: 100%;
  height: 100%;
  border: solid 1px var(--black);
  font-family: var(--font-en);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  display: flex;
  justify-content: center;
  align-items: center;
}

.common__line {
  background: var(--grad);
  width: 100%;
  height: 2px;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 0.6rem 0.8rem #030000);
}

/*============================
	hero
============================*/
.hero {
  width: 100%;
  height: max(85rem, 100vh);
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

@media (max-width: 767px) {
  .hero {
    height: max(300px, 44rem);
  }
}

.hero__logo {
  display: block;
  width: 90rem;
}

@media (max-width: 767px) {
  .hero__logo {
    width: max(200px, 40rem);
  }
}

/*============================
	concept
============================*/
.concept {
  background: url("../img/concept_bg.jpg") no-repeat center / cover;
  padding: 16.5rem 0 13rem;
}

.concept__txt-wrapper {
  width: 90%;
  text-align: center;
  margin: 0 auto;
}

.concept__txt-wrapper h2 {
  font-size: max(18px, 3rem);
  font-weight: 700;
  letter-spacing: 0.1em;
}

.concept__txt-wrapper p {
  letter-spacing: 0.1em;
  line-height: 2.5;
  margin-top: 4rem;
}

/*============================
	menu
============================*/
.menu {
  padding: 15rem 0 16.5rem;
}

.menu__list {
  width: 110rem;
  display: flex;
  flex-direction: column;
  row-gap: 23rem;
  margin: 0 auto 12.5rem;
  position: relative;
  z-index: 1;
}

@media (max-width: 767px) {
  .menu__list {
    width: 90%;
    row-gap: 16rem;
  }
}

.menu__list-item {
  display: flex;
  column-gap: 6rem;
}

.menu__list-item:nth-of-type(even) {
  flex-direction: row-reverse;
}

@media (max-width: 767px) {
  .menu__list-item {
    column-gap: 4rem;
  }
}

.menu__ttl {
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1;
  writing-mode: vertical-rl;
  display: flex;
  align-items: center;
  gap: 4rem;
}

.menu__ttl span {
  display: block;
  font-family: var(--font-en);
  font-size: max(24px, 4rem);
  font-weight: 400;
  color: transparent;
  background: url("../img/menu_ttl-bg.jpg") repeat center / auto 100%;
  background-clip: text;
  -webkit-background-clip: text;
}

.menu__inner {
  width: 100%;
  display: flex;
  gap: 6rem 4rem;
}

.menu__list-item:nth-of-type(even) .menu__inner {
  flex-direction: row-reverse;
}

@media (max-width: 767px) {
  .menu__inner,
  .menu__list-item:nth-of-type(even) .menu__inner {
    flex-direction: column-reverse;
  }
}

.menu__system {
  width: 100%;
}

@media (min-width: 768px) {
  .menu__system {
    padding-top: 2.5rem;
  }
}

.menu__system h4 {
  font-size: max(18px, 3rem);
  font-weight: 500;
  letter-spacing: 0.1em;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding-left: 5.5rem;
  margin-bottom: 2rem;
}

.menu__system h4 span {
  display: block;
  font-size: max(16px, 2.6rem);
  letter-spacing: 0.1em;
  margin-right: -1rem;
}

.menu__system-list {
  border-top: solid 1px var(--black);
}

.menu__system-item {
  border-bottom: solid 1px var(--black);
  display: flex;
}

.menu__system-item div {
  font-size: max(14px, 2.6rem);
  letter-spacing: 0.1em;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 8.5rem 0;
}

.system-time {
  width: 30rem;
  flex-shrink: 0;
  position: relative;
}

.system-time::before {
  content: "";
  background-color: var(--black);
  width: 1px;
  height: calc(100% - 3rem);
  position: absolute;
  transform: translateY(-50%);
  top: 50%;
  right: 0;
  pointer-events: none;
}

.system-cost {
  width: 100%;
}

.menu__txt-wrapper {
  width: 100%;
}

@media (min-width: 768px) {
  .menu__txt-wrapper {
    padding-top: 6.5rem;
  }
}

.menu__txt-wrapper h4 {
  font-size: max(18px, 3rem);
  font-weight: 500;
  letter-spacing: 0.1em;
  margin-bottom: 6rem;
}

.menu__txt-wrapper p {
  line-height: 3;
}

.menu__img {
  width: 43rem;
  height: 100%;
  flex-shrink: 0;
}

@media (max-width: 767px) {
  .menu__img {
    width: 100%;
    height: auto;
  }
}

/*============================
	gallery
============================*/
.gallery {
  background: var(--bg-3);
  padding: 8.5rem 0 10.5rem;
}

.gallery__slider {
  height: 30rem;
  margin: 6.5rem 0 9rem;
}

.gallery__slider .swiper-wrapper {
  transition-timing-function: linear;
}

.gallery__slider .swiper-slide {
  width: 38.4rem;
}

/*============================
	news
============================*/
.news {
  background: var(--bg-2);
  padding: 5.5rem 0 7rem;
}

.CMS-NEWS-INDEX {
  width: 101.2rem;
  height: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6rem 2.6rem;
  margin: 4rem auto 6.5rem;
}

@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: 1.5rem;
}

@media (max-width: 767px) {
  .CMS-NEWS-THUMBNAIL {
    height: 36rem;
  }
}

.CMS-NEWS-MORE-READ {
  display: none;
}

/*============================
	access
============================*/
.access {
  padding: 9.5rem 0 18.5rem;
  position: relative;
}

.access__map {
  height: 50rem;
  margin: 7rem 0 6rem;
}

.access__contents {
  width: 110rem;
  display: flex;
  flex-direction: row-reverse;
  gap: 2rem 7rem;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

@media (max-width: 767px) {
  .access__contents {
    width: 90%;
    flex-direction: column;
  }
}

.access__img {
  width: 55rem;
  height: 100%;
  flex-shrink: 0;
}

@media (max-width: 767px) {
  .access__img {
    width: 100%;
  }
}

.access__list {
  border-top: solid 1px var(--black);
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 5.5rem;
}

.access__list dt,
.access__list dd {
  letter-spacing: 0.05em;
  padding: 2.4rem 1.6rem;
}

.access__list dt {
  width: max(85px, 13rem);
  font-weight: 500;
  text-align: center;
}

.access__list dd {
  width: calc(100% - max(85px, 13rem));
  border-bottom: solid 1px var(--black);
}

@media (min-width: 768px) {
  .access__list dt {
    border-bottom: solid 1px var(--black);
  }
}

@media (max-width: 767px) {
  .access__list dt,
  .access__list dd {
    width: 100%;
    text-align: left;
  }

  .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-3);
  padding: 8rem 0 15rem;
}

.insta__contents {
  width: 82.7rem;
  margin: 6rem auto 0;
}

@media screen and (max-width: 767px) {
  .insta__contents {
    width: 90%;
  }
}

.CMS-INSTAGRAM-LIST {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 5.4rem 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: 24rem;
  height: 24rem;
  object-fit: cover;
}

@media screen and (max-width: 767px) {
  .CMS-INSTAGRAM-LIST img {
    width: 100%;
    height: auto;
  }
}

/*============================
	recruit
============================*/
.recruit {
  background: var(--bg-2);
  padding: 8.5rem 0 11rem;
}

.recruit__txt-wrapper {
  width: 90%;
  margin: 0 auto;
}

.recruit__txt-wrapper p {
  letter-spacing: 0.2em;
  line-height: 2.5;
  text-align: center;
  margin: 6rem 0 9rem;
}

/*============================
	sister
============================*/
.sister {
  padding: 10rem 0 14rem;
}

.sister__list {
  width: 110rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 5.6rem;
  margin: 8rem auto 0;
}

@media screen and (max-width: 767px) {
  .sister__list {
    width: 90%;
    grid-template-columns: 1fr;
  }
}

.sister__list a {
  width: 100%;
  height: 100%;
  border: solid 2px #e47d96;
  display: flex;
  justify-content: center;
  align-items: center;
  filter: drop-shadow(5px 5px 5px rgba(0, 0, 0, 0.3));
}
