@charset "UTF-8";

/*============================
	common
============================*/
.common__ttl {
  font-family: var(--font-mincho);
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 1rem;
}

.common__ttl span {
  font-size: max(20px, 2.8rem);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 1rem;
}

.insta .common__ttl span {
  text-transform: capitalize;
}

.common__ttl span::after {
  content: "";
  display: block;
  background: url("../img/ttl_deco.png") no-repeat center / contain;
  width: max(75px, 12.5rem);
  height: max(6px, 1rem);
}

.common__ttl--bl span::after {
  background: url("../img/ttl_deco-bl.png") no-repeat center / contain;
}

.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%;
  font-weight: 700;
  letter-spacing: 0.1em;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.common__btn--bl a {
  background: url("../img/btn_bg-bl.jpg") no-repeat center / cover;
  color: var(--white);
}

/*============================
	hero
============================*/
.hero {
  width: 100%;
  height: max(90rem, 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;
}

.hero .swiper-pagination {
  width: max-content !important;
  display: flex;
  column-gap: max(12px, 2rem);
  transform: translate(-50%, 100%) !important;
  left: 50% !important;
  bottom: -20px !important;
  z-index: 10;
}

.hero .swiper-pagination-bullet {
  background-color: #a0a0a0;
  width: 8px !important;
  height: 8px !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(--yellow);
}

/*============================
	news
============================*/
.news {
  padding-top: 15rem;
}

.CMS-NEWS-INDEX {
  width: 101.2rem;
  height: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6rem 2.6rem;
  margin: 6.5rem auto 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 {
  padding-top: 8.5rem;
  position: relative;
}

@media (max-width: 767px) {
  .policy {
    padding-top: 40rem;
  }
}

.policy::before {
  content: "";
  background: url("../img/policy_deco-1.png") no-repeat center / contain;
  width: 92rem;
  height: 92.8rem;
  position: absolute;
  top: -14.5rem;
  left: 0;
  pointer-events: none;
  z-index: -1;
}

@media (max-width: 767px) {
  .policy::before {
    width: 70rem;
    height: 70.6rem;
    top: -8rem;
  }
}

.policy__contents {
  width: 110rem;
  display: flex;
  flex-direction: row-reverse;
  align-items: flex-end;
  gap: 5rem 4rem;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .policy__contents {
    width: 90%;
    flex-direction: column-reverse;
    align-items: flex-start;
  }
}

.policy__txt-wrapper {
  width: 100%;
  margin-bottom: 8rem;
}

@media (min-width: 768px) {
  .policy__txt-wrapper {
    height: max(450px, 53.5rem);
    writing-mode: vertical-rl;
    text-orientation: upright;
    padding-right: 4rem;
  }
}

.policy__txt-wrapper h2 {
  font-family: var(--font-mincho);
  font-size: max(16px, 2.6rem);
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 2;
  margin-left: 4rem;
}

@media (max-width: 767px) {
  .policy__txt-wrapper h2 {
    margin: 0 0 3rem;
  }
}

.policy__txt-wrapper p {
  letter-spacing: 0.1em;
  line-height: 2.5;
}

@media (min-width: 768px) {
  .policy .common__btn {
    margin: 0 0 0 auto;
  }
}

.policy__img {
  width: 56rem;
  height: 100%;
  flex-shrink: 0;
  position: relative;
}

@media (max-width: 767px) {
  .policy__img {
    width: 100%;
  }
}

.policy__img::before {
  content: "";
  background: url("../img/policy_deco-2.png") no-repeat center / contain;
  width: 35.4rem;
  height: 29.3rem;
  position: absolute;
  right: -17rem;
  bottom: -14rem;
  pointer-events: none;
}

@media (max-width: 767px) {
  .policy__img::before {
    width: 30rem;
    height: 24.8rem;
    right: -3rem;
    bottom: -6rem;
  }
}

/*============================
	menu
============================*/
.menu {
  padding: 18rem 0 17rem;
  position: relative;
}

.menu::before,
.menu::after {
  content: "";
  background: url("../img/deco_1.png") no-repeat center / contain;
  width: 26.2rem;
  height: 7.4rem;
  position: absolute;
  pointer-events: none;
  z-index: -1;
}

.menu::before {
  top: 3rem;
  right: 3rem;
}

.menu::after {
  left: 10rem;
  bottom: 5rem;
}

@media (max-width: 767px) {
  .menu::before {
    top: 8rem;
    right: 1rem;
  }

  .menu::after {
    left: 2rem;
    bottom: 4rem;
  }
}

.menu__inner {
  width: 110rem;
  display: flex;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .menu__inner {
    width: 90%;
    flex-direction: column;
  }
}

.menu__ttl-wrapper {
  width: max-content;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .menu__ttl-wrapper {
    display: contents;
  }

  .menu .common__ttl {
    order: 2;
  }
}

.menu__ttl-wrapper p {
  width: max(85px, 12.6rem);
  font-family: var(--font-mincho);
  font-size: max(14px, 2.1rem);
  font-weight: 700;
  letter-spacing: 0.05em;
  writing-mode: vertical-rl;
  text-orientation: upright;
  margin: 7.5rem auto 9rem;
}

@media (max-width: 767px) {
  .menu__ttl-wrapper p {
    margin: 6rem auto;
    order: 3;
  }

  .menu .common__btn {
    order: 5;
  }
}

.menu__img-wrapper {
  width: 64rem;
  flex-shrink: 0;
}

@media (max-width: 767px) {
  .menu__img-wrapper {
    display: contents;
  }
}

.menu__img {
  width: 100%;
}

@media (max-width: 767px) {
  .menu__img {
    margin-bottom: 6rem;
    order: 1;
  }
}

.menu__img-wrapper p {
  letter-spacing: 0.05em;
  line-height: 2;
  margin-top: 2.5rem;
}

@media (max-width: 767px) {
  .menu__img-wrapper p {
    margin-bottom: 5rem;
    order: 4;
  }
}

/*============================
	gallery
============================*/
.gallery {
  background: var(--bg-1);
  padding: 10rem 0 9.5rem;
}

.gallery__slider {
  height: 22.6rem;
  margin: 6rem 0 9.5rem;
}

.gallery__slider .swiper-wrapper {
  transition-timing-function: linear;
}

.gallery__slider .swiper-slide {
  width: 31.1rem;
  margin: 0 0.5rem;
}

/*============================
	access
============================*/
.access {
  padding: 14rem 0 17.5rem;
  position: relative;
}

.access::before,
.access::after {
  content: "";
  background: url("../img/deco_1.png") no-repeat center / contain;
  width: 26.2rem;
  height: 7.4rem;
  position: absolute;
  pointer-events: none;
  z-index: -1;
}

.access::before {
  top: 14.5rem;
  left: 19rem;
}

.access::after {
  right: 9rem;
  bottom: 12.5rem;
}

@media (max-width: 767px) {
  .access::before {
    top: 8rem;
    left: 1rem;
  }

  .access::after {
    right: 2rem;
    bottom: 4rem;
  }
}

.access__contents {
  width: 110rem;
  display: flex;
  gap: 2rem 10rem;
  margin: 13rem auto 0;
}

@media (max-width: 767px) {
  .access__contents {
    width: 90%;
    flex-direction: column;
  }
}

.access__img {
  width: 58rem;
  height: 100%;
  flex-shrink: 0;
  margin-left: calc(50% - 50vw);
}

@media (max-width: 767px) {
  .access__img {
    width: 100%;
    margin: 0;
  }
}

.access__list {
  display: flex;
  flex-wrap: wrap;
  margin: -2.5rem 0 5rem;
}

@media (max-width: 767px) {
  .access__list {
    margin: 0 0 5rem;
  }
}

.access__list dt,
.access__list dd {
  letter-spacing: 0.05em;
  padding: 2.7rem 1.6rem;
}

.access__list dt {
  width: max(75px, 13rem);
  font-weight: 700;
}

.access__list dd {
  width: calc(100% - max(75px, 13rem));
}

.access__list dd:not(:last-of-type) {
  border-bottom: solid 1px var(--black);
}
.access__list dd a{
  text-decoration: underline;
}


@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;
  }
}

@media (min-width: 768px) {
  .access .common__btn {
    margin: 0 0 0 1rem;
  }
}

/*============================
	recruit
============================*/
.recruit {
  background: url("../img/recruit_bg.jpg") no-repeat center / cover;
}

.recruit__txt-wrapper {
  background-color: rgba(255, 255, 255, 0.9);
  width: 56rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 11rem 4rem 8.5rem;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .recruit__txt-wrapper {
    width: 80%;
    padding: 8rem 5% 9rem;
  }
}

.recruit__txt-wrapper p {
  text-align: center;
  margin: 5rem 0 8rem;
}

/*============================
	insta
============================*/
.insta {
  background: var(--bg-1);
  padding: 11rem 0 16.5rem;
}

.insta__contents {
  width: 87rem;
  margin: 8.5rem auto 0;
}

@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;
  }
}
