@charset "UTF-8";

/*============================
	common
============================*/
.common__ttl {
  font-family: var(--font-adobe);
  font-size: max(24px, 4rem);
  font-weight: 400;
  line-height: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.common__ttl::after {
  content: "";
  display: block;
  background: url("../img/ttl_deco.png") no-repeat center / contain;
  width: max(96px, 15.6rem);
  height: max(24px, 3.9rem);
}

.common__btn {
  width: max(133px, 18rem);
  height: max(40px, 5.4rem);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.common__btn a {
  background: url("../img/btn_bg.png") no-repeat center / cover;
  width: 100%;
  height: 100%;
  letter-spacing: 0.1em;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-bottom: 0.5rem;
  position: relative;
}

.common__btn--y a {
  background: url("../img/btn_bg-yellow.png") no-repeat center / cover;
}

/*============================
	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 {
  background: var(--bg-1);
  padding: 12rem 0 10rem;
}

.CMS-NEWS-INDEX {
  width: 101.2rem;
  height: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6rem 2.6rem;
  margin: 6rem auto 7.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(--white);
  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") repeat center top / 100% auto;
  padding: 12rem 0 15rem;
  position: relative;
}

.policy::before {
  content: "";
  background: url("../img/policy_deco.png") no-repeat center / contain;
  width: 66.8rem;
  height: 54rem;
  position: absolute;
  left: 0;
  bottom: 0;
  pointer-events: none;
}

@media (max-width: 767px) {
  .policy::before {
    width: 50rem;
    height: 40.4rem;
  }
}

.policy__contents {
  width: 110rem;
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  gap: 5rem 8rem;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .policy__contents {
    width: 90%;
    flex-direction: column-reverse;
  }
}

.policy__txt-wrapper {
  width: 100%;
  margin-bottom: 6rem;
}

@media (min-width: 768px) {
  .policy__txt-wrapper {
    height: max(450px, 45rem);
    writing-mode: vertical-rl;
    text-orientation: upright;
  }
}

.policy__txt-wrapper h2 {
  font-size: max(16px, 2.4rem);
  font-weight: 700;
  line-height: 2;
  margin-left: 3.5rem;
}

@media (max-width: 767px) {
  .policy__txt-wrapper h2 {
    margin: 0 0 3rem;
  }
}

.policy__txt-wrapper p {
  line-height: 2;
}

@media (min-width: 768px) {
  .policy .common__btn {
    margin: 0 0 0 auto;
  }
}

.policy__img {
  width: 64rem;
  height: 100%;
  flex-shrink: 0;
}

@media (max-width: 767px) {
  .policy__img {
    width: 90%;
  }
}

.policy__img img:nth-of-type(2) {
  width: 42rem;
  margin: -7rem -8rem 0 auto;
}

@media (max-width: 767px) {
  .policy__img img:nth-of-type(2) {
    width: 60%;
    margin: -7rem -7rem 0 auto;
  }
}

/*============================
	menu
============================*/
.menu {
  background: var(--bg-1);
  padding: 9.5rem 0 12rem;
  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: 47.9rem;
  height: 34.1rem;
  top: -12.5rem;
  right: 7rem;
}

.menu::after {
  background: url("../img/menu_deco-2.png") no-repeat center / contain;
  width: 23.5rem;
  height: 39.1rem;
  left: 9rem;
  bottom: -14.5rem;
}

@media (max-width: 767px) {
  .menu::before {
    width: 36rem;
    height: 25.6rem;
    top: -12rem;
    right: -4rem;
  }

  .menu::after {
    width: 20rem;
    height: 33.2rem;
    left: 1rem;
    bottom: -12rem;
  }
}

.menu__list {
  width: 110rem;
  display: flex;
  flex-direction: column;
  row-gap: 10.5rem;
  margin: 10rem auto 13rem;
}

@media (max-width: 767px) {
  .menu__list {
    width: 90%;
  }
}

.menu__list-item {
  display: flex;
  gap: 4rem 5.5rem;
}

.menu__list-item:nth-of-type(odd) {
  flex-direction: row-reverse;
}

@media (max-width: 767px) {
  .menu__list-item,
  .menu__list-item:nth-of-type(odd) {
    flex-direction: column-reverse;
  }
}

.menu__list-inner {
  display: flex;
  flex-direction: column;
  gap: 4.5rem;
}

@media (max-width: 767px) {
  .menu__list-inner {
    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(16px, 2.2rem);
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 2.5rem;
}

.menu__txt-wrapper p {
  line-height: 2;
}

.menu__txt-img {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.8rem;
}

.menu__img {
  width: 58rem;
  height: 100%;
  flex-shrink: 0;
  position: relative;
}

@media (max-width: 767px) {
  .menu__img {
    width: 100%;
  }
}

.menu__img figcaption {
  background: url("../img/menu_txt-deco.png") no-repeat center / contain;
  width: max(90px, 14.5rem);
  height: max(88px, 14.2rem);
  font-family: var(--font-adobe);
  font-size: max(20px, 3.6rem);
  font-weight: 400;
  writing-mode: vertical-rl;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-right: 1rem;
  position: absolute;
  top: -4rem;
  left: -3.5rem;
}

.menu__list-item:nth-of-type(even) .menu__img figcaption {
  left: auto;
  right: -3.5rem;
}

/*============================
	access
============================*/
.access {
  background: url("../img/access_bg.jpg") repeat center / 100% auto;
  padding: 10rem 0 18rem;
}

.access__contents {
  width: 110rem;
  display: flex;
  gap: 2rem 11.5rem;
  margin: 7rem auto 0;
}

@media (max-width: 767px) {
  .access__contents {
    width: 90%;
    flex-direction: column;
  }
}

.access__img {
  width: 50rem;
  height: 100%;
  flex-shrink: 0;
}

@media (max-width: 767px) {
  .access__img {
    width: 90%;
  }
}

.access__img img:nth-of-type(2) {
  width: 32rem;
  margin: -7rem -4.5rem 0 auto;
}

@media (max-width: 767px) {
  .access__img img:nth-of-type(2) {
    width: 50%;
    margin: -7rem -7rem 0 auto;
  }
}

.access__list {
  display: flex;
  flex-wrap: wrap;
  margin: -0.7rem 0 4rem;
}

@media (max-width: 767px) {
  .access__list {
    margin: 0 0 4rem;
  }
}

.access__list dt,
.access__list dd {
  letter-spacing: 0.05em;
  padding: 2.7rem 0;
}

.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;
  }
}

@media (min-width: 768px) {
  .access .common__btn {
    margin: 0;
  }
}

/*============================
	insta
============================*/
.insta {
  background: url("../img/insta_bg.jpg") repeat center / 100% auto;
  color: var(--black);
  padding: 11rem 0 16rem;
  position: relative;
}

.insta::before,
.insta::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.insta::before {
  background: url("../img/insta_deco-1.png") no-repeat center / contain;
  width: 32.6rem;
  height: 28.2rem;
  top: 6.5rem;
  right: 2.5rem;
}

.insta::after {
  background: url("../img/insta_deco-2.png") no-repeat center / contain;
  width: 43rem;
  height: 41rem;
  left: 0;
  bottom: 5.5rem;
}

@media screen and (max-width: 767px) {
  .insta::before {
    width: 25rem;
    height: 21.6rem;
    top: 3rem;
    right: 2rem;
  }

  .insta::after {
    width: 30rem;
    height: 28.6rem;
    bottom: 1rem;
  }
}

.insta__contents {
  width: 87rem;
  margin: 6rem 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: 28rem;
  height: 27rem;
  object-fit: cover;
}

@media screen and (max-width: 767px) {
  .CMS-INSTAGRAM-LIST img {
    width: 100%;
    height: auto;
  }
}

/*============================
	recruit
============================*/
.recruit {
  background: url("../img/recruit_bg.jpg") no-repeat center / cover;
  padding: 6.5rem 0 9rem;
}

.recruit__txt-wrapper {
  width: 90%;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 auto;
}

.recruit__txt-wrapper p {
  margin: 3rem 0 5.5rem;
}
