@charset "UTF-8";

/*============================
	common
============================*/
.common__ttl {
  font-size: max(24px, 3.2rem);
  font-weight: 800;
  letter-spacing: 0.03em;
  line-height: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 1rem;
}

.common__ttl span {
  font-size: max(12px, 1.5rem);
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.common__ttl::before {
  content: "";
  display: block;
  background: url("../img/ttl_deco.png") no-repeat center / contain;
  width: max(40px, 5.5rem);
  height: max(26px, 3.6rem);
}

.concept .common__ttl::before {
  display: none;
}

.common__btn {
  background: url("../img/btn_bg.png") no-repeat center / contain;
  width: max(154px, 20.8rem);
  height: max(40px, 5.4rem);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.common__btn--y {
  background: url("../img/btn_bg-y.png") no-repeat center / contain;
}

.common__btn a {
  width: 100%;
  height: 100%;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 0.1em;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.common__btn--y a {
  color: var(--red);
}

/*============================
  header
============================*/
@media (min-width: 768px) {
  .header.top {
    width: 36rem;
    height: max(80rem, 100vh);
    padding-top: 12rem;
    padding-left: 2rem;
  }

  .header.top .header__logo {
    margin: 0 auto 8rem;
    position: static;
  }

  .header.top .header__contents {
    flex-direction: column;
    padding-left: 4rem;
    position: static;
  }

  .header.top .header__nav-list {
    flex-direction: column;
  }
}

/*============================
	hero
============================*/
.hero {
  width: 100%;
  height: max(80rem, 100vh);
  padding-left: 36rem;
  position: relative;
}

@media (max-width: 767px) {
  .hero {
    height: max(300px, 44rem);
    padding: 0;
  }
}

.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;
}

.hero .swiper-pagination {
  width: max-content !important;
  display: flex;
  flex-direction: column;
  gap: 13px;
  left: 31.5rem !important;
  bottom: 0 !important;
  z-index: 10;
}

@media (max-width: 767px) {
  .hero .swiper-pagination {
    left: 5% !important;
    bottom: 3rem !important;
  }
}

.hero .swiper-pagination-bullet {
  background-color: var(--black);
  width: 9px !important;
  height: 9px !important;
  display: flex !important;
  justify-content: center;
  align-items: center;
  margin: 0 !important;
  opacity: 1 !important;
  transition: 0.3s ease-in-out;
}

.hero .swiper-pagination-bullet-active {
  background-color: var(--red);
}

/*============================
	news
============================*/
.news {
  padding: 12rem 0 13rem;
}

.CMS-NEWS-INDEX {
  width: 101.2rem;
  height: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6rem 2.6rem;
  margin: 3.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 {
  font-family: var(--font-sans);
  font-weight: 400;
  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;
}

/*============================
	concept
============================*/
.concept {
  background: var(--red);
  color: var(--white);
  padding: 19rem 0;
  position: relative;
}

@media (max-width: 767px) {
  .concept {
    padding: 28rem 0 38rem;
  }
}

.concept::before,
.concept::after {
  content: "";
  background: url("../img/deco_1.png") repeat center / cover;
  width: 144rem;
  height: 3rem;
  position: absolute;
  top: 7.5rem;
  left: 0;
  pointer-events: none;
  z-index: 1;
}

.concept::after {
  top: auto;
  bottom: 6.5rem;
}

.concept__txt-wrapper {
  width: 90%;
  text-align: center;
  margin: 0 auto;
  position: relative;
}

@media (min-width: 768px) {
  .concept__txt-wrapper {
    width: 69rem;
  }
}

.concept__txt-wrapper::before {
  content: "";
  background: url("../img/concept_txt-deco.png") no-repeat center / contain;
  width: 76rem;
  height: 74.8rem;
  position: absolute;
  transform: translateX(-50%);
  top: -8rem;
  left: 50%;
  pointer-events: none;
  z-index: -1;
}

.concept__txt-wrapper h3 {
  font-size: max(16px, 2.6rem);
  font-weight: 800;
  letter-spacing: 0.05em;
  margin-top: 3.5rem;
}

.concept__txt-wrapper p {
  line-height: 2;
  margin: 3rem 0 7rem;
}

.concept__img {
  display: block;
  position: absolute;
}

.concept__img-1 {
  width: 49.4rem;
  top: -4rem;
  left: 3rem;
  z-index: 1;
}

.concept__img-2 {
  width: 57.2rem;
  right: -2rem;
  bottom: -6rem;
  z-index: 2;
}

.concept__img-3 {
  width: 32rem;
  left: 0;
  bottom: 17.5rem;
}

.concept__img-4 {
  width: 32rem;
  top: 18rem;
  right: 0;
}

@media (max-width: 767px) {
  .concept__img-1 {
    width: 42rem;
    left: 1rem;
  }

  .concept__img-2 {
    width: 53rem;
    bottom: -4rem;
  }

  .concept__img-3 {
    width: 22rem;
    bottom: 14rem;
    z-index: 2;
  }

  .concept__img-4 {
    width: 22rem;
    top: 14rem;
    z-index: 1;
  }
}

/*============================
	menu
============================*/
.menu {
  padding: 10.5rem 0 13rem;
}

.menu__list {
  width: 110rem;
  display: flex;
  flex-direction: column;
  row-gap: 7.5rem;
  margin: 9rem auto 12.5rem;
}

@media (max-width: 767px) {
  .menu__list {
    width: 90%;
  }
}

.menu__list-item {
  display: flex;
  column-gap: 7rem;
}

.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 {
  background-color: var(--red);
  width: 100%;
  color: var(--white);
  padding: 7rem 7rem 8rem;
  position: relative;
}

@media (min-width: 768px) {
  .menu__txt-wrapper {
    padding: 7rem 53rem 7rem 7rem;
    margin: 4rem -53rem 0 0;
  }

  .menu__list-item:nth-of-type(even) .menu__txt-wrapper {
    padding: 7rem 7rem 7rem 53rem;
    margin: 4rem 0 0 -53rem;
  }
}

.menu__txt-wrapper::before,
.menu__txt-wrapper::after {
  content: "";
  background: url("../img/menu_frame.png") no-repeat center top / cover;
  width: 48.4rem;
  height: calc(50% - 2.7rem);
  position: absolute;
  left: 2.4rem;
  pointer-events: none;
}

.menu__txt-wrapper::before {
  top: 2.5rem;
}

.menu__txt-wrapper::after {
  transform: scale(1, -1);
  bottom: 3rem;
}

@media (min-width: 768px) {
  .menu__list-item:nth-of-type(even) .menu__txt-wrapper::before,
  .menu__list-item:nth-of-type(even) .menu__txt-wrapper::after {
    left: auto;
    right: 2.4rem;
  }
}

@media (max-width: 767px) {
  .menu__txt-wrapper::before,
  .menu__txt-wrapper::after {
    width: 95%;
    height: calc(50% - 2.7rem);
    transform: translateX(-50%);
    left: 50%;
  }

  .menu__txt-wrapper::after {
    transform: translateX(-50%) scale(1, -1);
  }
}

.menu__txt-wrapper h3 {
  font-size: max(16px, 2.2rem);
  font-weight: 800;
  letter-spacing: 0.05em;
  margin-bottom: 2rem;
}

.menu__txt-wrapper h3 span {
  display: block;
  font-size: max(18px, 3rem);
  color: var(--yellow);
  margin-bottom: 1rem;
}

.menu__txt-wrapper p {
  line-height: 2;
}

.menu__img {
  width: 56rem;
  height: 100%;
  flex-shrink: 0;
  position: relative;
}

@media (max-width: 767px) {
  .menu__img {
    width: 100%;
  }
}

/*============================
	gallery
============================*/
.gallery {
  background: var(--bg-2);
  padding: 17rem 0 18.5rem;
  position: relative;
  z-index: 1;
}

.gallery::before,
.gallery::after {
  content: "";
  background: url("../img/deco_2.png") repeat center / cover;
  width: 144rem;
  height: 3rem;
  position: absolute;
  top: 5rem;
  left: 0;
  pointer-events: none;
}

.gallery::after {
  top: auto;
  bottom: 5.5rem;
}

.gallery__slider {
  height: 22.1rem;
  margin: 6rem 0 8.5rem;
}

.gallery__slider .swiper-wrapper {
  transition-timing-function: linear;
}

.gallery__slider .swiper-slide {
  width: 28.3rem;
}

.gallery__deco {
  display: flex;
  justify-content: center;
  gap: 22rem;
  position: absolute;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  z-index: -1;
}

.gallery__deco::before,
.gallery__deco::after {
  content: "";
  display: block;
  background: url("../img/gallery_deco.png") no-repeat center / contain;
  width: 56.6rem;
  height: 71.6rem;
}

.gallery__deco::after {
  transform: scale(-1, 1);
}

/*============================
	access
============================*/
.access {
  padding: 13.5rem 0 15rem;
}

.access__contents {
  width: 110rem;
  display: flex;
  gap: 2rem 5rem;
  margin: 9rem auto 8.5rem;
}

@media (max-width: 767px) {
  .access__contents {
    width: 90%;
    flex-direction: column;
  }
}

.access__img {
  width: 52rem;
  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;
}

.access__list dt {
  width: max(75px, 12rem);
  font-size: max(12px, 1.4rem);
  font-weight: 500;
  color: var(--red);
  text-align: center;
  padding: 2.4rem 0;
}

.access__list dd {
  width: calc(100% - max(75px, 12rem));
  padding: 2.4rem 5rem;
}

.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 {
    text-align: left;
    padding: 2rem 1.6rem 1rem;
  }

  .access__list dd {
    padding: 0 1.6rem 2rem;
  }
}

.top__map {
  height: 42rem;
}

/*============================
	recruit
============================*/
.recruit {
  background: url("../img/recruit_bg.jpg") no-repeat center / cover;
  padding: 6rem 0;
}

.recruit__inner {
  width: 110rem;
  display: flex;
  justify-content: flex-end;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .recruit__inner {
    width: 90%;
  }
}

.recruit__txt-wrapper {
  background-color: rgba(255, 215, 0, 0.95);
  width: max(300px, 48rem);
  padding: 3.5rem 6rem 6rem;
  position: relative;
}

@media (max-width: 767px) {
  .recruit__txt-wrapper {
    width: 100%;
  }
}

.recruit__txt-wrapper::before,
.recruit__txt-wrapper::after {
  content: "";
  background: url("../img/recruit_deco.png") repeat center / 100% auto;
  width: max(7px, 1.4rem);
  height: 100%;
  position: absolute;
  top: 0;
  left: 3rem;
  pointer-events: none;
}

.recruit__txt-wrapper::after {
  left: auto;
  right: 3rem;
}

.recruit__txt-wrapper p {
  text-align: center;
  margin: 4rem 0 5.5rem;
}
