@charset "UTF-8";

/*============================
	common
============================*/
.common__ttl {
  font-family: var(--font-en);
  font-size: max(36px, 7.4rem);
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
  filter: drop-shadow(0 0 1rem rgba(255, 255, 255, 0.3)) drop-shadow(0 0 1rem rgba(255, 255, 255, 0.5));
}

.common__btn {
  width: max(160px, 21.6rem);
  height: max(40px, 5rem);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.common__btn a {
  width: 100%;
  height: 100%;
  border: solid 1px var(--white);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

/*============================
	hero
============================*/
.hero {
  width: 100%;
  height: max(80rem, 100vh);
  position: relative;
}

@media (max-width: 767px) {
  .hero {
    height: max(300px, 44rem);
  }
}

.hero::before {
  content: "";
  background: linear-gradient(0deg, rgba(255, 255, 255, 1), rgba(0, 0, 0, 1));
  width: 100%;
  height: 14rem;
  mix-blend-mode: multiply;
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 2;
}

.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-2);
  padding: 12.5rem 0 13.5rem;
}

.CMS-NEWS-INDEX {
  width: 101.2rem;
  height: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6rem 2.6rem;
  margin: 6rem auto 8rem;
}

@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;
}

/*============================
	concept
============================*/
.concept {
  background: url("../img/concept_bg.jpg") no-repeat center / cover;
  padding: 8rem 0;
}

.concept__txt-wrapper {
  width: 90rem;
  text-align: center;
  padding: 7rem 6rem 9.5rem;
  margin: 0 auto;
  position: relative;
}

@media (max-width: 767px) {
  .concept__txt-wrapper {
    width: 90%;
  }
}

.concept__txt-wrapper::before {
  content: "";
  width: 100%;
  height: 100%;
  border: solid 2px var(--white);
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  filter: drop-shadow(0 0 1rem rgba(0, 140, 214, 1)) drop-shadow(0 0 1rem rgba(0, 140, 214, 1));
}

.concept .common__ttl {
  color: transparent;
  -webkit-text-stroke: 1px var(--white);
  text-stroke: 1px var(--white);
  filter: drop-shadow(0 0 1rem rgba(0, 140, 214, 1)) drop-shadow(0 0 1rem rgba(0, 140, 214, 1)) drop-shadow(0 0 1rem rgba(0, 140, 214, 0.3));
}

.concept__txt-wrapper h3 {
  font-size: max(16px, 2.4rem);
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-top: 5rem;
}

.concept__txt-wrapper p {
  letter-spacing: 0.1em;
  line-height: 2;
  margin: 2.5rem 0 6rem;
}

/*============================
	menu
============================*/
.menu {
  padding: 11rem 0 14rem;
}

.menu__list {
  width: 110rem;
  display: flex;
  flex-direction: column;
  row-gap: 10rem;
  margin: 12rem auto 13.5rem;
}

@media (max-width: 767px) {
  .menu__list {
    width: 90%;
  }
}

.menu__list-item {
  display: flex;
  gap: 4rem 11rem;
}

.menu__list-item:nth-of-type(even) {
  flex-direction: row-reverse;
  gap: 4rem 0;
}

@media (max-width: 767px) {
  .menu__list-item,
  .menu__list-item:nth-of-type(even) {
    flex-direction: column-reverse;
  }
}

.system__list {
  width: 100%;
}

.system__list dt {
  display: block;
  background-color: rgba(0, 140, 214, 0.5);
  font-size: max(12px, 1.8rem);
  letter-spacing: 0.1em;
  padding: max(4px, 0.6rem) max(5px, 0.8rem);
  margin-bottom: 1rem;
}

@media (max-width: 767px) {
  .system__list dt {
    padding: 2rem;
    margin-bottom: 0;
  }
}

.system__list dd {
  display: block;
  letter-spacing: 0.05em;
}

.system__list dd:not(:last-of-type) {
  margin-bottom: 3rem;
}

@media (max-width: 767px) {
  .system__list dd,
  .system__list dd:not(:last-of-type) {
    padding: 2rem 0;
  }
}

.menu__txt-wrapper {
  width: 100%;
  padding: 8rem 5rem;
  position: relative;
  z-index: 1;
}

@media (min-width: 768px) {
  .menu__txt-wrapper {
    height: 100%;
    padding: 8rem 2rem 8rem 4.5rem;
    margin: 4.5rem 0 0 -17rem;
  }
}

.menu__txt-wrapper::before {
  content: "";
  background-color: var(--blue);
  width: 100vw;
  height: 100%;
  opacity: 0.8;
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: -1;
}

@media (max-width: 767px) {
  .menu__txt-wrapper::before {
    width: 100%;
  }
}

.menu__txt-wrapper h3 {
  font-size: max(16px, 2.4rem);
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-bottom: 2.5rem;
}

.menu__txt-wrapper p {
  letter-spacing: 0.1em;
  line-height: 2;
}

.menu__img {
  width: 78rem;
  height: 100%;
  flex-shrink: 0;
  position: relative;
}

.menu__list-item:nth-of-type(1) .menu__img {
  margin-right: calc(50% - 50vw);
}

@media (max-width: 767px) {
  .menu__img,
  .menu__list-item:nth-of-type(1) .menu__img {
    width: 100%;
    margin: 0;
  }
}

.menu__img::before {
  content: "";
  background: linear-gradient(-90deg, rgba(255, 255, 255, 1), rgba(35, 24, 21, 1));
  width: 40.5rem;
  height: 100%;
  mix-blend-mode: multiply;
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
}

.menu__img figcaption {
  font-family: var(--font-en);
  font-size: 15rem;
  font-weight: 700;
  color: transparent;
  -webkit-text-stroke: 2px var(--white);
  text-stroke: 2px var(--white);
  letter-spacing: 0.05em;
  line-height: 1;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  opacity: 0.3;
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
}

@media (max-width: 767px) {
  .menu__img figcaption {
    font-size: 13rem;
  }
}

/*============================
	gallery
============================*/
.gallery {
  background: var(--bg-3);
  padding: 11rem 0 10rem;
}

.gallery__slider {
  height: 22rem;
  margin: 9.5rem 0 7rem;
}

.gallery__slider .swiper-wrapper {
  transition-timing-function: linear;
}

.gallery__slider .swiper-slide {
  width: 30rem;
}

/*============================
	access
============================*/
.access {
  background: var(--bg-2);
  padding: 11.5rem 0 14.5rem;
}

.access__contents {
  width: 110rem;
  display: flex;
  flex-direction: row-reverse;
  gap: 2rem 6.5rem;
  margin: 11rem auto 0;
}

@media (max-width: 767px) {
  .access__contents {
    width: 90%;
    flex-direction: column;
  }
}

.access__img {
  width: 49rem;
  height: 100%;
  flex-shrink: 0;
}

@media (max-width: 767px) {
  .access__img {
    width: 100%;
  }
}

.access__list {
  display: flex;
  flex-wrap: wrap;
  margin: -2.5rem 0 5.5rem;
}

@media (max-width: 767px) {
  .access__list {
    margin: 0 0 5.5rem;
  }
}

.access__list dt,
.access__list dd {
  letter-spacing: 0.05em;
  padding: 2.5rem 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(--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;
  }
}

.top__map {
  height: 45rem;
}

/*============================
	recruit
============================*/
.recruit {
  background: url("../img/recruit_bg.jpg") no-repeat center right 40% / cover;
  padding: 9.5rem 0 8.5rem;
  position: relative;
}

.recruit::before {
  content: "";
  background: linear-gradient(-90deg, rgba(255, 255, 255, 1), rgba(0, 0, 0, 1));
  width: 100%;
  height: 100%;
  mix-blend-mode: multiply;
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
}

.recruit__txt-wrapper {
  width: 110rem;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .recruit__txt-wrapper {
    width: 90%;
  }
}

.recruit__txt-wrapper .common__ttl {
  display: block;
}

.recruit__txt-wrapper p {
  letter-spacing: 0.1em;
  line-height: 2;
  margin: 6rem 0 4.5rem;
}

@media (max-width: 767px) {
  .recruit__txt-wrapper p {
    width: 75%;
  }
}

.recruit .common__btn {
  margin: 0;
}

/*============================
	insta
============================*/
.insta {
  background: var(--bg-3);
  padding: 13rem 0 13.5rem;
}

.insta__contents {
  width: 88.7rem;
  margin: 10rem auto 6.5rem;
}

@media screen and (max-width: 767px) {
  .insta__contents {
    width: 90%;
  }
}

.CMS-INSTAGRAM-LIST {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.4rem 2.9rem;
}

.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: 27.6rem;
  height: 27.6rem;
  object-fit: cover;
}

@media screen and (max-width: 767px) {
  .CMS-INSTAGRAM-LIST img {
    width: 100%;
    height: auto;
  }
}

.line__contents {
  width: 64rem;
  margin: 0 auto;
}

@media screen and (max-width: 767px) {
  .line__contents {
    width: 90%;
  }
}

.line__contents a {
  background-color: var(--black);
  width: 100%;
  border: solid max(3px, 0.6rem) #06c755;
  border-radius: 1rem;
  font-size: max(16px, 2.4rem);
  font-weight: 700;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3.5rem;
  padding: 2rem;
}

@media screen and (max-width: 767px) {
  .line__contents a {
    padding: 4rem 2rem;
  }
}

.line__contents a::before {
  content: "";
  display: block;
  background: url("../img/line.png") no-repeat center / contain;
  width: max(32px, 6.3rem);
  height: max(32px, 6.3rem);
}
