@charset "UTF-8";

/*============================
	common
============================*/
.common__ttl {
  font-family: var(--font-kaisei);
  font-size: max(21px, 3.2rem);
  font-weight: 800;
  letter-spacing: 0.1em;
  line-height: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 1rem;
}

.common__ttl--wt {
  color: var(--white);
}

.common__ttl span {
  font-size: max(12px, 1.8rem);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.common__btn {
  width: max(163px, 22rem);
  height: max(40px, 5.4rem);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.common__btn a {
  background: url("../img/btn_bg.jpg") no-repeat center / cover;
  width: 100%;
  height: 100%;
  color: var(--white);
  letter-spacing: 0.1em;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.common__btn--wt a {
  background: transparent;
  border: solid 1px var(--white);
}

.common__line {
  background: var(--bg-2);
  width: 100%;
  height: 10rem;
}

/*============================
	hero
============================*/
.hero {
  width: 100%;
  height: 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: 11.5rem 0 10rem;
}

.CMS-NEWS-INDEX {
  width: 101.2rem;
  height: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6rem 2.6rem;
  margin: 4.5rem auto 5.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: 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 {
  background: url("../img/policy_bg.jpg") no-repeat center / cover;
  color: var(--white);
  padding: 13rem 0 11rem;
}

@media (max-width: 767px) {
  .policy {
    padding: 10rem 0 15rem;
  }
}

.policy__contents {
  width: 110rem;
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  gap: 6rem 4rem;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .policy__contents {
    width: 90%;
    flex-direction: column-reverse;
  }
}

.policy__txt-wrapper {
  width: 100%;
  margin-bottom: 7rem;
}

@media (min-width: 768px) {
  .policy__txt-wrapper {
    height: max(310px, 41rem);
    writing-mode: vertical-rl;
    text-orientation: upright;
  }
}

.policy__txt-wrapper h2 {
  font-size: max(16px, 2.6rem);
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 2;
  margin-left: 3rem;
}

@media (max-width: 767px) {
  .policy__txt-wrapper h2 {
    margin: 0 0 3rem;
  }
}

.policy__txt-wrapper p {
  letter-spacing: 0.05em;
  line-height: 2.5;
}

@media (min-width: 768px) {
  .policy .common__btn {
    margin: 0 0 0 auto;
  }
}

.policy__img-list {
  width: 64rem;
  height: 100%;
  flex-shrink: 0;
}

@media (max-width: 767px) {
  .policy__img-list {
    width: 100%;
  }
}

.policy__img-list ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4rem;
  margin-top: 4rem;
}

/*============================
	menu
============================*/
.menu {
  padding: 14rem 0 11rem;
  position: relative;
}

.menu::before {
  content: "";
  background: url("../img/menu_deco.png") no-repeat center / contain;
  width: 49rem;
  height: 35.8rem;
  position: absolute;
  top: -20rem;
  right: 10rem;
  pointer-events: none;
}

@media (max-width: 767px) {
  .menu::before {
    width: 40rem;
    height: 29.2rem;
    top: -13rem;
    right: 1rem;
  }
}

.menu__list {
  width: 110rem;
  display: flex;
  flex-direction: column;
  row-gap: 10rem;
  margin: 9rem auto;
}

@media (max-width: 767px) {
  .menu__list {
    width: 90%;
  }
}

.menu__list-item {
  display: flex;
  gap: 4rem 4.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%;
}

@media (min-width: 768px) {
  .menu__txt-wrapper {
    height: max(410px, 41rem);
    writing-mode: vertical-rl;
    text-orientation: upright;
  }
}

.menu__txt-wrapper h3 {
  font-size: max(16px, 2.4rem);
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-left: 2rem;
}

@media (max-width: 767px) {
  .menu__txt-wrapper h3 {
    margin: 0 0 3rem;
  }
}

.menu__txt-wrapper h3 span {
  background: url("../img/menu_ttl-bg.png") no-repeat center / cover;
  width: max(45px, 6.8rem);
  height: max(135.6px, 20.5rem);
  font-size: max(16px, 2.8rem);
  font-weight: 500;
  color: var(--white);
  letter-spacing: 0.1em;
  display: flex;
  align-items: center;
  padding-top: max(30px, 4.5rem);
  margin-left: 3rem;
}

@media (max-width: 767px) {
  .menu__txt-wrapper h3 span {
    background: url("../img/menu_ttl-bg-sp.png") no-repeat center / cover;
    width: max(135.6px, 20.5rem);
    height: max(45px, 6.8rem);
    padding: 0 0 0 max(30px, 4.5rem);
    margin: 0 0 3rem;
  }
}

.menu__txt-wrapper p {
  letter-spacing: 0.1em;
  line-height: 2;
}

.menu__img {
  width: 64rem;
  height: 100%;
  flex-shrink: 0;
  position: relative;
}

@media (max-width: 767px) {
  .menu__img {
    width: 100%;
  }
}

.menu__img::before {
  content: "";
  background: url("../img/menu_img-deco-2.png") no-repeat center / contain;
  width: 30rem;
  height: 30rem;
  position: absolute;
  top: -8.5rem;
  right: -9.5rem;
  pointer-events: none;
  z-index: -1;
}

.menu__list-item:nth-of-type(2) .menu__img::before {
  background: url("../img/menu_img-deco-3.png") no-repeat center / contain;
  top: -8rem;
  right: auto;
  left: -10.5rem;
}

.menu__list-item:nth-of-type(3) .menu__img::before {
  background: url("../img/menu_img-deco-4.png") no-repeat center / contain;
  top: -9rem;
  right: -8.5rem;
}

.menu__list-item:nth-of-type(1) .menu__img::after {
  content: "";
  background: url("../img/menu_img-deco-1.png") no-repeat center / contain;
  width: 36.2rem;
  height: 17.6rem;
  position: absolute;
  bottom: -5.5rem;
  left: -11rem;
  pointer-events: none;
}

@media (max-width: 767px) {
  .menu__list-item:nth-of-type(1) .menu__img::after {
    width: 28rem;
    height: 13.6rem;
    left: auto;
    right: -2rem;
  }
}

/*============================
	gallery
============================*/
.gallery {
  background: var(--bg-4);
  padding: 11rem 0 12rem;
}

.gallery__slider {
  height: 20rem;
  margin: 7.5rem 0 11rem;
}

.gallery__slider .swiper-wrapper {
  transition-timing-function: linear;
}

.gallery__slider .swiper-slide {
  width: 28rem;
  margin: 0 0.6rem;
}

/*============================
	access
============================*/
.access {
  padding: 14rem 0 14.5rem;
  position: relative;
}

.access::before {
  content: "";
  background: url("../img/access_deco.png") no-repeat center / contain;
  width: 26.6rem;
  height: 29.2rem;
  position: absolute;
  right: 6.5rem;
  bottom: 3.5rem;
  pointer-events: none;
}

@media (max-width: 767px) {
  .access::before {
    width: 20rem;
    height: 21.9rem;
    right: 1rem;
    bottom: 3rem;
  }
}

.access__contents {
  width: 110rem;
  display: flex;
  gap: 2rem 7.5rem;
  margin: 8.5rem auto 5rem;
}

@media (max-width: 767px) {
  .access__contents {
    width: 90%;
    flex-direction: column;
  }
}

.access__img {
  width: 47rem;
  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: -2.5rem;
  }
}

.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(--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;
  }
}

.top__map {
  height: 37.2rem;
}

/*============================
	recruit
============================*/
.recruit {
  background: url("../img/recruit_bg.jpg") no-repeat center / cover;
  color: var(--white);
  padding: 11rem 0 8rem;
}

.recruit__txt-wrapper {
  width: 90%;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 auto;
}

.recruit__txt-wrapper p {
  font-size: max(12px, 1.8rem);
  letter-spacing: 0.1em;
  margin: 5rem 0 2rem;
}

.recruit__tel {
  font-size: max(18px, 2.6rem);
  font-weight: 700;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  gap: 8px;
}

@media (max-width: 767px) {
  .recruit__tel {
    flex-direction: column;
  }
}

.recruit__tel span {
  display: block;
  border-top: solid 1px var(--white);
  border-bottom: solid 1px var(--white);
  font-size: max(12px, 1.4rem);
  letter-spacing: 0.1em;
  padding: 5px;
}

/*============================
	insta
============================*/
.insta {
  background: var(--bg-4);
  padding: 10rem 0 17.5rem;
  position: relative;
}

.insta::before,
.insta::after {
  content: "";
  background: url("../img/insta_deco.png") no-repeat center / contain;
  width: 30.2rem;
  height: 22.2rem;
  position: absolute;
  top: 8.5rem;
  right: 10.5rem;
  pointer-events: none;
}

.insta::after {
  top: auto;
  right: auto;
  left: 6rem;
  bottom: 11rem;
}

@media screen and (max-width: 767px) {
  .insta::before,
  .insta::after {
    width: 21rem;
    height: 15.4rem;
    top: 10rem;
    right: 3rem;
  }

  .insta::after {
    top: auto;
    right: auto;
    left: 2rem;
    bottom: 6rem;
  }
}

.insta__contents {
  width: 90rem;
  margin: 8rem auto 0;
  position: relative;
  z-index: 1;
}

@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: 29rem;
  height: 28rem;
  object-fit: cover;
}

@media screen and (max-width: 767px) {
  .CMS-INSTAGRAM-LIST img {
    width: 100%;
    height: auto;
  }
}

/*============================
	sister
============================*/
.sister {
  padding: 11.5rem 0 14rem;
}

.sister__list {
  width: 50rem;
  color: var(--white);
  display: grid;
  grid-template-columns: repeat(0, 1fr);
  gap: 5rem;
  margin: 7.5rem auto 0;
}

@media screen and (max-width: 767px) {
  .sister__list {
    width: 90%;
    grid-template-columns: 1fr;
  }
}

.sister__list li {
  background: url("../img/sister_bg-1.jpg") no-repeat center / cover;
  display: flex;
  align-items: center;
  gap: 3.5rem;
  padding: 3.5rem 4rem;
}

.sister__list li:nth-of-type(2) {
  background: url("../img/sister_bg-2.jpg") no-repeat center / cover;
}

.sister__logo {
  display: block;
  width: 15.4rem;
  flex-shrink: 0;
}

.sister__list li:nth-of-type(2) .sister__logo {
  width: 16rem;
}

@media screen and (max-width: 767px) {
  .sister__logo,
  .sister__list li:nth-of-type(2) .sister__logo {
    width: max(110px, 18rem);
  }
}

.sister__txt-wrapper {
  width: 100%;
}

.sister__txt-wrapper h3 {
  font-size: max(16px, 2.4rem);
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-bottom: 1.5rem;
}

.sister__tel {
  font-size: max(14px, 2rem);
  font-weight: 700;
  letter-spacing: 0.05em;
}

.sister__site {
  width: max(130px, 18rem);
  height: max(32px, 4rem);
  margin-top: 2rem;
}

.sister__site a {
  background: transparent;
  width: 100%;
  height: 100%;
  border: solid 1px var(--white);
  font-size: max(10px, 1.4rem);
  color: var(--white);
  letter-spacing: 0.1em;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.sister__link-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1.5rem;
}

.sister__link-wrapper p {
  font-weight: 500;
  letter-spacing: 0.05em;
}

.sister__btn {
  width: max(80px, 11rem);
  height: max(32px, 4rem);
}

.sister__btn a {
  background: transparent;
  width: 100%;
  height: 100%;
  border: solid 1px var(--white);
  font-size: max(10px, 1.4rem);
  color: var(--white);
  letter-spacing: 0.1em;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.sister__insta {
  display: block;
  width: 4.5rem;
}


.movie {
  width: 100%;
  height: 100%;
}