@charset "UTF-8";

/*============================
	common
============================*/
.common__ttl {
  height: max-content;
  border-right: solid 1px var(--black);
  font-family: var(--font-mincho-b);
  font-size: max(18px, 3.6rem);
  font-weight: 600;
  letter-spacing: 0.1em;
  line-height: 1;
  writing-mode: vertical-rl;
  display: flex;
  align-items: center;
  gap: 7.5rem;
  flex-shrink: 0;
  padding-right: 2rem;
}

.gallery .common__ttl {
  gap: 3.5rem;
}

.access .common__ttl {
  gap: 6.5rem;
}

.insta .common__ttl {
  gap: 3rem;
}

.common__ttl span {
  font-family: var(--font-en);
  font-size: max(12px, 1.6rem);
  font-weight: 400;
  letter-spacing: 0.05em;
  text-transform: capitalize;
}

.common__btn {
  width: max(220px, 37rem);
  height: max(45px, 6rem);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.common__btn a {
  display: block;
  width: 100%;
  height: 100%;
  padding-right: 5rem;
  position: relative;
}

.common__btn a::after {
  content: "";
  background-color: var(--black);
  width: 11rem;
  height: 1px;
  position: absolute;
  transform: translateY(-50%);
  top: 50%;
  right: 0;
  pointer-events: none;
}

.common__btn a span {
  width: 100%;
  height: 100%;
  border: solid 1px var(--black);
  font-size: max(14px, 2.2rem);
  color: var(--black);
  letter-spacing: 0.1em;
  display: flex;
  align-items: center;
  padding-left: 5rem;
}

/*============================
	hero
============================*/
.hero {
  width: 100%;
  height: max(90rem, 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: 15rem;
  opacity: 0.5;
  mix-blend-mode: multiply;
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 3;
}

.hero__logo {
  display: block;
  width: 23.6rem;
  filter: drop-shadow(0 0 3rem rgba(255, 255, 255, 1));
  position: absolute;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  z-index: 3;
}

@media (max-width: 767px) {
  .hero__logo {
    width: max(100px, 15rem);
  }
}

.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;
}

@keyframes scroll {
  0% {
    transform: scale(1, 0);
    transform-origin: 0 0;
  }

  50% {
    transform: scale(1, 1);
    transform-origin: 0 0;
  }

  50.1% {
    transform: scale(1, 1);
    transform-origin: 0 100%;
  }

  100% {
    transform: scale(1, 0);
    transform-origin: 0 100%;
  }
}

.hero__scroll {
  font-family: var(--font-en);
  color: var(--white);
  letter-spacing: 0.05em;
  line-height: 1;
  writing-mode: vertical-rl;
  display: flex;
  align-items: center;
  gap: 1rem;
  position: absolute;
  left: 7rem;
  bottom: 0;
  z-index: 10;
}

@media (max-width: 767px) {
  .hero__scroll {
    display: none;
  }
}

.hero__scroll::after {
  content: "";
  display: block;
  background-color: var(--white);
  width: 1px;
  height: max(60px, 11rem);
  animation: scroll 2.5s infinite;
}

/*============================
	news
============================*/
.news {
  background-color: var(--white);
  padding: 18rem 0 12rem;
}

@media (max-width: 767px) {
  .news {
    padding: 10rem 0 8rem;
  }
}

.news__inner {
  width: 128rem;
  display: flex;
  justify-content: space-between;
  padding-right: 9rem;
  margin: 0 auto 9rem;
}

@media (max-width: 767px) {
  .news__inner {
    width: 90%;
    padding: 0;
    margin: 0 auto 6rem;
  }
}

.CMS-NEWS-INDEX {
  width: 110rem;
  height: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6rem 2.5rem;
}

@media (max-width: 767px) {
  .CMS-NEWS-INDEX {
    width: 85%;
    grid-template-columns: 1fr;
  }
}

.CMS-NEWS-LINK-CONTENT {
  display: block;
}

.CMS-NEWS-THUMBNAIL {
  width: 100%;
  height: 26rem;
  margin-bottom: 3rem;
}

@media (max-width: 767px) {
  .CMS-NEWS-THUMBNAIL {
    height: 36rem;
  }
}

.CMS-NEWS-TIME {
  font-size: max(12px, 1.8rem);
  font-weight: 900;
  margin-bottom: 0.5rem;
}

.CMS-NEWS-LINK {
  font-weight: 500;
}

.CMS-NEWS-MORE-READ {
  display: none;
}

/*============================
	policy
============================*/
.policy {
  padding-top: 21rem;
  position: relative;
}

@media (max-width: 767px) {
  .policy {
    padding-top: 12rem;
  }
}

.policy::before {
  content: "";
  background-color: var(--white);
  width: 100%;
  height: 49rem;
  position: absolute;
  left: 0;
  bottom: 6rem;
  pointer-events: none;
  z-index: -1;
}

.policy__txt-wrapper {
  width: 110rem;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

@media (min-width: 768px) {
  .policy__txt-wrapper {
    height: max(500px, 60rem);
    writing-mode: vertical-rl;
    text-orientation: upright;
  }
}

@media (max-width: 767px) {
  .policy__txt-wrapper {
    width: 90%;
  }
}

.policy__txt-wrapper h2 {
  font-family: var(--font-mincho-b);
  font-size: max(21px, 3.6rem);
  font-weight: 600;
  color: var(--brown);
  letter-spacing: 0.05em;
  margin-left: 7.5rem;
}

@media (max-width: 767px) {
  .policy__txt-wrapper h2 {
    margin: 0 0 3rem;
  }
}

.policy__txt-wrapper h2 span {
  display: block;
  font-family: var(--font-en);
  font-size: max(12px, 1.6rem);
  font-weight: 400;
  color: var(--black);
  letter-spacing: 0.05em;
  text-transform: capitalize;
  text-orientation: sideways;
}

.policy__txt-wrapper p {
  letter-spacing: 0.1em;
  line-height: 3.6;
}

@media (max-width: 767px) {
  .policy__txt-wrapper p {
    line-height: 2;
  }
}

.policy__img-1 {
  width: 69.4rem;
  margin: -8.5rem 11rem 0 auto;
}

.policy__img-2 {
  width: 104.5rem;
  margin: -15.5rem 0 0;
}

.policy__img-3 {
  width: 51rem;
  margin: -13.5rem 0 0 auto;
}

@media (max-width: 767px) {
  .policy__img-1 {
    width: 50%;
    margin: -5rem 5% 0 auto;
  }

  .policy__img-2 {
    width: 80%;
    margin: -2rem 0 0;
  }

  .policy__img-3 {
    width: 40%;
    margin: -4rem 0 0 auto;
  }
}

/*============================
	menu
============================*/
.menu {
  padding: 13.5rem 0 18rem;
}

@media (max-width: 767px) {
  .menu {
    padding: 12rem 0;
  }
}

.menu__list {
  width: 110rem;
  display: flex;
  flex-direction: column;
  row-gap: 13.5rem;
  margin: 0 auto 10rem;
}

@media (max-width: 767px) {
  .menu__list {
    width: 90%;
    row-gap: 10rem;
  }
}

.menu__list-item:nth-of-type(1) {
  margin-bottom: -4rem;
}

.menu__list-item:nth-of-type(4) {
  display: flex;
  flex-direction: row-reverse;
}

.menu__list-item:nth-of-type(5) {
  display: flex;
  gap: 4rem 10rem;
}

@media (max-width: 767px) {
  .menu__list-item:nth-of-type(1) {
    margin: 0;
  }

  .menu__list-item:nth-of-type(4),
  .menu__list-item:nth-of-type(5) {
    flex-direction: column;
  }
}

.menu__txt-wrapper {
  width: 100%;
  position: relative;
  z-index: 1;
}

.menu__list-item:nth-of-type(4) .menu__txt-wrapper {
  background-color: var(--white);
  padding: 7rem 5rem 7.5rem;
}

@media (min-width: 768px) {
  .menu__list-item:nth-of-type(1) .menu__txt-wrapper,
  .menu__list-item:nth-of-type(2) .menu__txt-wrapper {
    width: 77rem;
    margin-top: -5rem;
  }

  .menu__list-item:nth-of-type(2) .menu__txt-wrapper {
    margin-left: auto;
    margin-right: -9rem;
  }

  .menu__list-item:nth-of-type(4) .menu__txt-wrapper {
    padding: 7.5rem 4rem 9rem 5rem;
    margin: 11.5rem -11.5rem 0 -5rem;
  }

  .menu__list-item:nth-of-type(5) .menu__txt-wrapper {
    padding-top: 6.5rem;
  }
}

.menu__txt-wrapper h3 {
  font-family: var(--font-mincho-b);
  font-size: max(21px, 3.6rem);
  font-weight: 600;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.menu__list-item:nth-of-type(4) .menu__txt-wrapper h3,
.menu__list-item:nth-of-type(5) .menu__txt-wrapper h3 {
  margin-bottom: 2rem;
}

.menu__txt-wrapper h3 span {
  display: block;
  font-family: var(--font-en);
  font-size: max(12px, 1.6rem);
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: capitalize;
  margin-bottom: 1rem;
}

.menu__txt-wrapper p {
  font-family: var(--font-mincho);
  letter-spacing: 0.1em;
  line-height: 2;
}

.menu__img-wrapper {
  width: 100%;
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
}

.menu__list-item:nth-of-type(1) .menu__img-wrapper {
  padding-right: 4rem;
}

@media (max-width: 767px) {
  .menu__img-wrapper {
    gap: 4rem;
  }

  .menu__list-item:nth-of-type(1) .menu__img-wrapper {
    padding-right: 0;
  }
}

.menu__img-1 {
  width: 90rem;
  flex-shrink: 0;
}

.menu__list-item:nth-of-type(4) .menu__img-1 {
  margin-right: -15.5rem;
}

@media (max-width: 767px) {
  .menu__img-1 {
    width: 100%;
    margin-bottom: 4rem;
  }

  .menu__list-item:nth-of-type(1) .menu__img-1 {
    width: 90%;
    margin-left: calc(50% - 50vw);
  }

  .menu__list-item:nth-of-type(4) .menu__img-1 {
    margin: 0;
  }
}

.menu__img-1 img {
  display: block;
  width: 100%;
  aspect-ratio: 1800 / 980;
  object-fit: cover;
  height: auto;
}

.menu__img-1 img:nth-of-type(2) {
  width: 35.5rem;
  margin: -14rem -20rem 0 auto;
}

.menu__list-item:nth-of-type(2) .menu__img-1 img:nth-of-type(2) {
  margin: -14rem 0 0 -20rem;
}

@media (max-width: 767px) {
  .menu__img-1 img:nth-of-type(2) {
    width: 100%;
    margin: 2rem 0 0 auto;
  }

  .menu__list-item:nth-of-type(2) .menu__img-1 img:nth-of-type(2) {
    margin: 2rem 0 0;
  }
}

.menu__img-2 {
  width: 58rem;
  height: 100%;
  flex-shrink: 0;
}

@media (max-width: 767px) {
  .menu__img-2 {
    width: 100%;
  }
}

/*============================
	video
============================*/
.video {
  background-color: var(--white);
  padding: 20.5rem 0 21rem;
}

@media (max-width: 767px) {
  .video {
    padding: 10rem 0 12rem;
  }
}

.video__wrapper {
  width: 93rem;
  margin: 0 auto;
}

.video__wrapper video{
  width: 100%;
    height: 100%;
}

@media (max-width: 767px) {
  .video__wrapper {
    width: 90%;
  }
}

.video__wrapper iframe {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/*============================
	gallery
============================*/
.gallery {
  background: url("../img/gallery_bg.jpg") no-repeat center / cover;
  padding: 16rem 0 9rem;
}

@media (max-width: 767px) {
  .gallery {
    padding: 10rem 0 12rem;
  }
}

.gallery__inner {
  width: 110rem;
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  padding-right: 6rem;
  margin: 0 auto 6rem;
}

@media (max-width: 767px) {
  .gallery__inner {
    width: 90%;
    padding: 0;
    margin: 0 auto 8rem;
  }
}

.gallery__slider-wrapper {
  width: 93rem;
  height: 58rem;
}

@media (max-width: 767px) {
  .gallery__slider-wrapper {
    width: 85%;
    height: 52.1rem;
  }
}

.gallery__slider-thum {
  width: 100%;
  margin-top: 1.5rem;
}

.gallery__slider-thum .swiper-wrapper {
  display: flex;
  justify-content: space-between;
}

.gallery__slider-thum .swiper-slide {
  cursor: pointer;
  position: relative;
}

.gallery__slider-thum .swiper-slide::before {
  content: "";
  background-color: #f3f2f0;
  opacity: 0.76;
  position: absolute;
  inset: 0;
  pointer-events: none;
  transition: 0.3s ease-in-out;
}

.gallery__slider-thum .swiper-slide-thumb-active::before {
  opacity: 0;
}

@media (min-width: 768px) {
  .gallery__slider-thum .swiper-slide:hover::before {
    opacity: 0.5;
  }
}

/*============================
	access
============================*/
.access {
  padding: 20.5rem 0 13.5rem;
}

@media (max-width: 767px) {
  .access {
    padding: 10rem 0 12rem;
  }
}

.access__inner {
  width: 128rem;
  display: flex;
  justify-content: space-between;
  padding-right: 9rem;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .access__inner {
    width: 90%;
    padding-right: 0;
  }
}

.access__contents {
  width: 110rem;
  display: flex;
  gap: 2rem 4rem;
}

@media (max-width: 767px) {
  .access__contents {
    width: 85%;
    flex-direction: column;
  }
}

.access__img-wrapper {
  width: 45rem;
  height: 100%;
  flex-shrink: 0;
}

@media (max-width: 767px) {
  .access__img-wrapper {
    width: 100%;
    height: auto;
  }
}

.access__img {
  width: 100%;
}

@media (min-width: 768px) {
  .access__img {
    margin-bottom: 4rem;
  }
}

.access__list {
  display: flex;
  flex-wrap: wrap;
}

.access__list dt,
.access__list dd {
  letter-spacing: 0.05em;
}

.access__list dt {
  background-color: rgba(255, 255, 255, 0.7);
  width: max(75px, 12rem);
  font-weight: 400;
  display: flex;
  justify-content: center;
  padding: 2.6rem 0;
}

.access__list dd {
  width: calc(100% - max(75px, 12rem));
  border-bottom: solid 1px var(--black);
  padding: 2.6rem 2rem;
}

@media (min-width: 768px) {
  .access__list dt {
    border-bottom: solid 1px var(--black);
  }
  .access__list dt:first-of-type,
  .access__list dd:first-of-type {
    border-top: solid 1px var(--black);
  }
}

@media (max-width: 767px) {
  .access__list dt,
  .access__list dd {
    display: block;
    width: 100%;
    padding: 2rem;
  }
}

.access .common__btn {
  margin: 6rem auto 0;
}

@media (min-width: 768px) {
  .access .common__btn {
    margin: 0;
  }
}

.top__map {
  height: 52.5rem;
}

/*============================
	recruit
============================*/
.recruit {
  background: none;
  background-color: var(--white);
  padding: 14rem 0 14rem;
}

@media (max-width: 767px) {
  .recruit {
    padding: 10rem 0;
  }
}

.recruit__contents {
  background: url("../img/recruit_bg-2.jpg") no-repeat center / cover;
  width: 110rem;
  height: 38rem;
  border: solid 1px #cdcbb0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 7.5rem;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .recruit__contents {
    width: 90%;
  }
}

.recruit__ttl {
  font-family: var(--font-mincho);
  font-size: max(24px, 4.8rem);
  color: #3a1e16;
  letter-spacing: 0.05em;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.recruit__ttl::after {
  content: "";
  display: block;
  background-color: #b36339;
  width: 6.5rem;
  height: 2px;
}

.recruit__btn {
  display: block;
  width: max(200px, 29.4rem);
  height: max(45px, 6.9rem);
}

.recruit__btn a {
  background-color: var(--white);
  width: 100%;
  height: 100%;
  border: solid 2px #c19876;
  font-family: var(--font-mincho);
  font-size: max(12px, 1.8rem);
  letter-spacing: 0.1em;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3.6rem;
}

.recruit__btn a::after {
  content: "";
  display: block;
  background: url("../img/btn_arw.png") no-repeat center / contain;
  width: max(35px, 4.2rem);
  height: max(5px, 0.6rem);
}

/*============================
	insta
============================*/
.insta {
  background: var(--white);
  padding: 14rem 0 10rem;
  margin-bottom: 0;
}

@media (max-width: 767px) {
  .insta {
    padding: 10rem 0 8rem;
  }
}

.insta__inner {
  width: 110rem;
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  padding: 0 4rem 0 13.5rem;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .insta__inner {
    width: 90%;
    padding: 0;
  }
}

.insta__contents {
  width: 82.7rem;
}

@media screen and (max-width: 767px) {
  .insta__contents {
    width: 85%;
  }
}

.CMS-INSTAGRAM-LIST {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 5rem 5.4rem;
}

.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: 24rem;
  height: 24rem;
  object-fit: cover;
}

@media screen and (max-width: 767px) {
  .CMS-INSTAGRAM-LIST img {
    width: 100%;
    height: auto;
  }
}
