@charset "UTF-8";

/*============================
	common
============================*/
.common__ttl {
  font-size: max(24px, 5.3rem);
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.common__ttl--br {
  color: #a99664;
}

.common__btn {
  width: max(160px, 22.5rem);
  height: max(40px, 5rem);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.common__btn a {
  background-color: #6d4d0c;
  width: 100%;
  height: 100%;
  color: var(--white);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.concept .common__btn a {
  background-color: #a99664;
}

.common__btn--bl a {
  background-color: var(--black);
}

.common__btn a::before,
.common__btn a::after {
  content: "";
  background: url("../img/btn_deco.png") no-repeat center / contain;
  width: max(21px, 2.8rem);
  height: max(21px, 2.8rem);
  position: absolute;
  pointer-events: none;
}

.common__btn a::before {
  top: max(3px, 0.5rem);
  left: max(3px, 0.5rem);
}

.common__btn a::after {
  transform: scale(-1, -1);
  right: max(3px, 0.5rem);
  bottom: max(3px, 0.5rem);
}

/*============================
	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;
}

/*============================
	concept
============================*/
.concept {
  background: var(--bg-2);
  color: var(--white);
  padding: 16.5rem 0 19rem;
}

.concept__contents {
  width: 110rem;
  display: flex;
  gap: 8rem 6.5rem;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .concept__contents {
    width: 90%;
    flex-direction: column-reverse;
  }
}

.concept__txt-wrapper {
  width: 90%;
  margin: 0 auto;
  position: relative;
}

@media (min-width: 768px) {
  .concept__txt-wrapper {
    width: 100%;
    padding-left: 8rem;
  }
}

.concept__txt-wrapper::before,
.concept__txt-wrapper::after {
  content: "";
  background: url("../img/concept_deco.png") no-repeat center / contain;
  width: 10.3rem;
  height: 10.1rem;
  position: absolute;
  pointer-events: none;
}

.concept__txt-wrapper::before {
  top: -4rem;
  left: 0;
}

.concept__txt-wrapper::after {
  transform: scale(-1, -1);
  right: -4rem;
  bottom: 0;
}

@media (max-width: 767px) {
  .concept__txt-wrapper::before {
    top: -5rem;
    left: -4rem;
  }
}

.concept__txt-wrapper h2 {
  font-size: max(16px, 2.6rem);
  font-weight: 700;
  letter-spacing: 0.05em;
}

.concept__txt-wrapper h2 span {
  display: block;
  font-size: max(24px, 5.3rem);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin: 1rem 0 2rem;
}

.concept__txt-wrapper p {
  line-height: 2;
  margin: 3rem 0 8.5rem;
}

@media (min-width: 768px) {
  .concept .common__btn {
    margin: 0;
  }
}

.concept__img {
  width: 67.5rem;
  height: 100%;
  flex-shrink: 0;
  margin-right: calc(50% - 50vw);
}

@media (max-width: 767px) {
  .concept__img {
    width: 100%;
    margin: 0;
  }
}

/*============================
	menu
============================*/
.menu {
  padding: 15rem 0 20rem;
}

.menu__contents {
  width: 110rem;
  display: flex;
  gap: 5rem 12rem;
  margin: 11rem auto 0;
}

@media (max-width: 767px) {
  .menu__contents {
    width: 90%;
    flex-direction: column-reverse;
  }
}

.menu__txt-wrapper {
  width: 100%;
}

.menu__txt-wrapper h3 {
  font-size: max(16px, 2.6rem);
  font-weight: 700;
  letter-spacing: 0.05em;
}

.menu__txt-wrapper p {
  letter-spacing: 0.05em;
  line-height: 2;
  margin: 4.5rem 0 7rem;
}

@media (min-width: 768px) {
  .menu .common__btn {
    margin: 0;
  }
}

.menu__img {
  width: 54rem;
  height: 100%;
  flex-shrink: 0;
}

@media (max-width: 767px) {
  .menu__img {
    width: 90%;
    margin-left: auto;
  }
}

.menu__img img:nth-of-type(2) {
  width: 34rem;
  margin: -16rem 0 0 -10rem;
}

@media (max-width: 767px) {
  .menu__img img:nth-of-type(2) {
    width: 55%;
    margin: -16rem 0 0 -7rem;
  }
}

/*============================
	gallery
============================*/
.gallery {
  background: url("../img/gallery_bg.jpg") no-repeat center / cover;
  padding: 13rem 0 12.5rem;
}

.gallery__slider {
  height: 40rem;
  margin: 10rem 0 13.5rem;
}

.gallery__slider .swiper-wrapper {
  align-items: center;
  transition-timing-function: linear;
}

.gallery__slider .swiper-slide {
  width: 32rem;
  margin: 0 1rem;
}

.gallery__slider .swiper-slide:nth-of-type(even) {
  height: 24rem;
}

/*============================
	news
============================*/
.news {
  padding: 13rem 0 11.5rem;
}

.CMS-NEWS-INDEX {
  width: 101.2rem;
  height: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6rem 2.6rem;
  margin: 9rem 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(--black);
  padding-top: 1rem;
  margin-top: 1rem;
}

.CMS-NEWS-TIME {
  font-size: max(12px, 1.4rem);
}

.CMS-NEWS-MORE-READ {
  display: none;
}

/*============================
	access
============================*/
.access {
  background: var(--bg-2);
  color: var(--white);
  padding: 14rem 0 13rem;
}

.access__contents {
  width: 110rem;
  display: flex;
  flex-direction: row-reverse;
  gap: 2rem 10rem;
  margin: 11rem auto 8.5rem;
}

@media (max-width: 767px) {
  .access__contents {
    width: 90%;
    flex-direction: column;
  }
}

.access__img {
  width: 55rem;
  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 {
  font-weight: 700;
  padding: 2.7rem 1.6rem;
}

.access__list dt {
  width: max(75px, 10rem);
}

.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;
  }
}

.top__access {
  height: 42rem;
}

/*============================
	parallax
============================*/
.parallax {
  width: 100%;
  height: 40rem;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
  position: relative;
}

.parallax::before {
  content: "";
  background: url("../img/parallax_bg.jpg") no-repeat center / cover;
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
}
