@charset "UTF-8";

/*============================
	common
============================*/
.common__ttl {
  font-family: var(--font-en);
  font-size: max(32px, 5.6rem);
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 1;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 1rem;
}

.common__ttl span {
  background: url("../img/ttl_deco.png") no-repeat center / contain;
  width: max(150px, 19.4rem);
  height: max(34px, 4.4rem);
  font-family: var(--font-sans);
  font-size: max(12px, 1.4rem);
  font-weight: 600;
  letter-spacing: 0.03em;
  display: flex;
  justify-content: center;
  align-items: center;
}

.insta .common__ttl {
  text-transform: capitalize;
}

.insta .common__ttl span {
  font-size: max(10px, 1.2rem);
}

.common__btn {
  width: max(160px, 21.6rem);
  height: max(40px, 5rem);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.common__btn a {
  background-color: var(--brown);
  width: 100%;
  height: 100%;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.common__btn--bl a {
  background-color: var(--black);
}

.common__btn a::before {
  content: "";
  width: 100%;
  height: 100%;
  border-right: solid 1px var(--brown);
  border-bottom: solid 1px var(--brown);
  position: absolute;
  top: max(3px, 0.5rem);
  left: max(3px, 0.4rem);
  pointer-events: none;
}

.common__btn--bl a::before {
  border-right: solid 1px var(--black);
  border-bottom: solid 1px var(--black);
}

.common__line {
  background: url("../img/common_line.jpg") no-repeat center / cover;
  width: 100%;
  height: 4rem;
}

/*============================
	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: 13rem;
  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;
}

.hero__btn {
  width: max(120px, 19.6rem);
  height: max(120px, 19.6rem);
  filter: drop-shadow(1rem 1rem 1rem rgba(0, 0, 0, 0.75));
  position: absolute;
  right: 12.5rem;
  bottom: 3rem;
  z-index: 3;
}

@media (max-width: 767px) {
  .hero__btn {
    width: max(100px, 15rem);
    height: max(100px, 15rem);
    filter: drop-shadow(0.5rem 0.5rem 0.5rem rgba(0, 0, 0, 0.75));
    right: 5%;
    bottom: 5%;
  }
}

.hero__btn a {
  background: url("../img/hero_btn.png") no-repeat center / contain;
  width: 100%;
  height: 100%;
  font-size: max(14px, 2.1rem);
  font-weight: 700;
  color: #4f2d00;
  letter-spacing: 0.1em;
  line-height: 1.2;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

@media (max-width: 767px) {
  .hero__btn a {
    font-size: max(12px, 1.8rem);
  }
}

/*============================
	news
============================*/
.news {
  padding: 11rem 0 11.5rem;
}

.CMS-NEWS-INDEX {
  width: 101.2rem;
  height: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6rem 2.6rem;
  margin: 5rem 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;
}

/*============================
	concept
============================*/
.concept {
  background: url("../img/concept_bg.jpg") no-repeat center / cover;
  padding: 9.5rem 0 7.5rem;
}

.concept__frame {
  width: 117.6rem;
  padding: 16rem 24rem 16.5rem;
  margin: 0 auto;
  position: relative;
}

@media (max-width: 767px) {
  .concept__frame {
    width: 95%;
    padding: 15rem 10%;
  }
}

.concept__frame::before,
.concept__frame::after {
  content: "";
  background: url("../img/concept_frame.png") no-repeat center top / cover;
  width: 100%;
  height: 51%;
  position: absolute;
  left: 0;
  pointer-events: none;
}

.concept__frame::before {
  top: 0;
}

.concept__frame::after {
  transform: scale(1, -1);
  bottom: 0;
}

.concept__deco {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.concept__deco::before,
.concept__deco::after {
  content: "";
  background: url("../img/concept_txt-deco-2.png") no-repeat center / contain;
  width: 2.6rem;
  height: 9.9rem;
  position: absolute;
  transform: translateY(-50%);
  top: 50%;
  pointer-events: none;
}

.concept__deco::before {
  left: 1rem;
}

.concept__deco::after {
  transform: translateY(-50%) scale(-1, 1);
  right: 1rem;
}

@media (max-width: 767px) {
  .concept__deco::before {
    left: -5px;
  }

  .concept__deco::after {
    right: -5px;
  }
}

.concept__txt-wrapper {
  text-align: center;
  position: relative;
}

.concept__txt-wrapper::before {
  content: "";
  background: url("../img/concept_txt-deco-1.png") no-repeat center / contain;
  width: 69.6rem;
  height: 69.6rem;
  position: absolute;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  pointer-events: none;
  z-index: -1;
}

.concept__txt-wrapper h2 {
  font-size: max(16px, 2.2rem);
  font-weight: 700;
  letter-spacing: 0.04em;
}

.concept__txt-wrapper h2 span {
  display: block;
  font-family: var(--font-en);
  font-size: max(36px, 7.2rem);
  font-weight: 400;
  line-height: 1;
  text-transform: uppercase;
  margin-bottom: 3.5rem;
}

.concept__txt-wrapper p {
  letter-spacing: 0.1em;
  line-height: 2;
  margin: 5.5rem 0 7.5rem;
}

.concept__img {
  width: 28rem;
  border: solid max(2px, 0.6rem) var(--white);
  border-radius: 50%;
  overflow: hidden;
  position: absolute;
  z-index: 1;
}

.concept__img-1 {
  top: -2.5rem;
  left: -4rem;
}

.concept__img-2 {
  right: -6.8rem;
  bottom: -3.5rem;
}

@media (max-width: 767px) {
  .concept__img {
    width: 20rem;
    border: solid max(2px, 0.4rem) var(--white);
  }

  .concept__img-1 {
    top: -5rem;
    left: -1rem;
  }

  .concept__img-2 {
    right: 0;
    bottom: -4rem;
  }
}

/*============================
	menu
============================*/
.menu {
  padding: 11rem 0 9.5rem;
}

.menu__list {
  width: 110rem;
  display: flex;
  flex-direction: column;
  row-gap: 10rem;
  margin: 9.5rem auto;
}

@media (max-width: 767px) {
  .menu__list {
    width: 90%;
  }
}

.menu__list-item {
  display: flex;
  gap: 4rem 9rem;
}

.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__txt-wrapper {
  width: 100%;
  position: relative;
}

@media (min-width: 768px) {
  .menu__txt-wrapper {
    margin-top: -1rem;
  }
}

.menu__txt-wrapper::before {
  content: "";
  background: url("../img/menu_txt-deco.png") no-repeat center / contain;
  width: 52.6rem;
  height: 37rem;
  position: absolute;
  top: -2rem;
  left: -3rem;
  pointer-events: none;
  z-index: -1;
}

@media (max-width: 767px) {
  .menu__txt-wrapper::before {
    width: 73rem;
    height: 51.3rem;
    top: -3rem;
  }
}

.menu__txt-wrapper h3 {
  font-size: max(14px, 2rem);
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.menu__txt-wrapper h3 span {
  display: block;
  font-family: var(--font-menu);
  font-size: max(36px, 6.4rem);
  font-weight: 400;
  color: #7da000;
  line-height: 1;
  text-transform: capitalize;
  margin-bottom: 2rem;
}

.menu__txt-wrapper p {
  line-height: 2;
}

.menu__img {
  width: 52rem;
  height: 100%;
  border-radius: 4rem;
  flex-shrink: 0;
  overflow: hidden;
}

@media (max-width: 767px) {
  .menu__img {
    width: 100%;
  }
}

/*============================
	gallery
============================*/
.gallery {
  background: url("../img/gallery_bg.jpg") no-repeat center / cover;
  padding: 8rem 0 8.5rem;
}

.gallery__slider {
  height: 20.4rem;
  margin: 6rem 0 9rem;
}

.gallery__slider .swiper-wrapper {
  transition-timing-function: linear;
}

.gallery__slider .swiper-slide {
  width: 28rem;
  margin: 0 0.5rem;
}

/*============================
	access
============================*/
.access {
  padding: 12.5rem 0 18.5rem;
  position: relative;
}

.access::before,
.access::after {
  content: "";
  width: 54rem;
  height: 32rem;
  position: absolute;
  top: 0;
  pointer-events: none;
  z-index: -1;
}

.access::before {
  background: url("../img/access_deco-1.png") no-repeat center / contain;
  left: 0;
}

.access::after {
  background: url("../img/access_deco-2.png") no-repeat center / contain;
  right: 0;
}

@media (max-width: 767px) {
  .access::before,
  .access::after {
    width: 36rem;
    height: 21.3rem;
  }
}

.access__contents {
  width: 110rem;
  display: flex;
  gap: 2rem 9rem;
  margin: 11rem auto 0;
}

@media (max-width: 767px) {
  .access__contents {
    width: 90%;
    flex-direction: column;
  }
}

.access__img {
  width: 60.5rem;
  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 8rem;
}

@media (max-width: 767px) {
  .access__list {
    margin: 0 0 8rem;
  }
}

.access__list dt,
.access__list dd {
  letter-spacing: 0.05em;
  padding: 2.3rem 1.6rem;
}

.access__list dt {
  width: max(75px, 12rem);
  font-weight: 400;
}

.access__list dd {
  width: calc(100% - max(75px, 12rem));
}

.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: 48rem;
}

/*============================
	recruit
============================*/
.recruit {
  background: url("../img/recruit_bg.jpg") no-repeat center / cover;
  padding: 8rem 0;
}

.recruit__contents {
  background-color: rgba(0, 130, 140, 0.8);
  width: 110rem;
  border: solid max(2px, 0.4rem) var(--white);
  display: flex;
  align-items: center;
  gap: 4rem 7rem;
  padding: 7.5rem 12rem 7rem 8.5rem;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .recruit__contents {
    width: 90%;
    flex-direction: column;
    padding: 7rem 10% 8rem;
  }
}

.recruit__ttl-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 4.5rem;
}

.recruit__contents p {
  font-size: max(12px, 1.8rem);
  line-height: 2;
}

/*============================
	insta
============================*/
.insta {
  padding: 12.5rem 0 17rem;
  position: relative;
  overflow: hidden;
}

.insta::before {
  content: "";
  background: url("../img/insta_deco.png") no-repeat center / contain;
  width: 130rem;
  height: 90rem;
  position: absolute;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  pointer-events: none;
}

@media screen and (max-width: 767px) {
  .insta::before {
    width: 110rem;
    height: 76.1rem;
  }
}

.insta__contents {
  width: 80.6rem;
  margin: 7rem auto 0;
}

@media screen and (max-width: 767px) {
  .insta__contents {
    width: 90%;
  }
}

.CMS-INSTAGRAM-LIST {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.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: 25.2rem;
  height: 25.2rem;
  object-fit: cover;
}

@media screen and (max-width: 767px) {
  .CMS-INSTAGRAM-LIST img {
    width: 100%;
    height: auto;
  }
}
