@charset "UTF-8";

/*============================
	common
============================*/
.common__ttl {
  font-size: max(23px, 3.4rem);
  font-weight: 800;
  color: #7d4b00;
  letter-spacing: 0.1em;
  line-height: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 1.1rem;
}

.common__ttl--wt {
  color: var(--white);
}

.common__ttl span {
  font-size: max(11px, 1.5rem);
  font-weight: 600;
}

.common__btn {
}

.common__btn a {
  display: block;
  width: max(160px, 22.2rem);
  margin: 0 auto;
}


/*============================
	hero
============================*/
.hero {
  width: 100%;
  height: 100vh;
  position: relative;
}
.hero::after {
    content: "";
    width: 100%;
    height: 11rem;
    /* aspect-ratio: 293/95; */
    position: absolute;
    top: 0;
    left: 0;
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.8) 0%,
        rgba(0,0,0,0.6) 40%,
        rgba(0,0,0,0.4) 70%,
        rgba(0,0,0,0) 100%
    );
    z-index: 1;
}

@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_catch{
  position: absolute;
  z-index: 10;
  top: 50%;
  left: 50%;
  transform:translate(-50%,-50%);
  width: 40%;
  
}
@media (max-width: 767px) {
  .hero_catch{
    width: 55%;
  }
}

/*============================
	policy
============================*/
.policy {
  background: url(../img/back-policy.jpg) no-repeat center top / cover;
  color: var(--white);
  padding: 15rem 0 15.5rem;
  position: relative;
}
@media (max-width: 767px) {
  .policy {
    padding: 22rem 0 20rem;
  background: url(../img/back-policy_sp.jpg) no-repeat center top / cover;
  }
}

		.policy::before {
			content: "";
			background: url(../img/deco-policy1.png) no-repeat center top / contain;
			width: 65.7rem;
			height: 61.2rem;
			/* aspect-ratio: 293/95; */
			position: absolute;
			top: -10rem;
			left: -8rem;
      pointer-events: none;
		}
		.policy::after {
			content: "";
			background: url(../img/deco-policy2.png) no-repeat center top / contain;
			width: 55.3rem;
			height: 58.6rem;
			/* aspect-ratio: 293/95; */
			position: absolute;
			bottom: -20rem;
			right: 0rem;
      z-index: 1;
      pointer-events: none;
		}
@media (max-width: 1200px) {
		.policy::before {
			width: 55.7rem;
			height: 51.2rem;
			top: -8rem;
			left: -9rem;
		}
		.policy::after {
			width: 45.3rem;
			height: 48.6rem;
			bottom: -16rem;
		}
}
@media (max-width: 767px) {
		.policy::before {
			width: 40rem;
			height: 36rem;
			top: -10rem;
      left: -8rem;
		}
		.policy::after {
			width: 30.3rem;
			height: 33.6rem;
			bottom: -13rem;
		}
}

.policy__contents {
  width: 110rem;
  display: flex;
  flex-direction: row-reverse;
  /* justify-content: space-between; */
  justify-content: center;
  gap: 4rem;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .policy__contents {
    width: 90%;
    flex-direction: column-reverse;
    margin: 0 auto;
  }
}

.policy__txt-wrapper {
  padding-top: 4rem;
  margin-bottom: 9rem;
  position: relative;
}

@media (min-width: 768px) {
  .policy__txt-wrapper {
    writing-mode: vertical-rl;
    text-orientation: upright;
  }
}

@media (max-width: 767px) {
  .policy__txt-wrapper {
    padding-top: 0;
    margin-bottom: 6rem;
  }
}


.policy__txt-wrapper h2 {
  height: max-content;
  font-size: max(18px, 2.6rem);
  font-weight: 700;
  line-height: 1.93;
  letter-spacing: 0.54rem;
  border: solid 1px var(--white);
  border-top: none;
  border-bottom: none;
  padding: 0 2.5rem;
  margin-left: 4rem;
  height: max(310px, 40.5rem);
}

@media (max-width: 767px) {
  .policy__txt-wrapper h2 {
    width: 100%;
    text-align: center;
    height: auto;
    border: solid 1px var(--white);
    border-left: none;
    border-right: none;
    padding: 2.5rem 0;
    height: inherit;
    margin: 0 auto 5rem;
  }
}


.policy__txt-wrapper p {
  height: max(310px, 40.5rem);
  font-size: max(12px, 1.6rem);
  letter-spacing: 0.32rem;
  line-height: 2.5;
}

@media (max-width: 767px) {
  .policy__txt-wrapper p {
    height: inherit;
  }
}


.policy__img {
  width: 51.8rem;
  height: 100%;
  flex-shrink: 0;
}

@media (max-width: 767px) {
  .policy__img {
    width: 100%;
  }
}

/*============================
	menu
============================*/
.menu {
  background: url(../img/back-menu.jpg) no-repeat center top / cover;
  overflow: hidden;
  position: relative;
  padding: 16.3rem 0 14.9rem;
}
@media (max-width: 767px) {
  .menu {
    padding: 13.3rem 0 11.9rem;
  }
}

.menu::before {
  top: 5.7rem;
  right: 19.4rem;
}

.menu::after {
  left: 5.9rem;
  bottom: 2.9rem;
}

@media (max-width: 767px) {
  .menu::before,
  .menu::after {
    width: 24rem;
    height: 9.8rem;
  }

  .menu::before {
    top: 8rem;
    right: 2rem;
  }

  .menu::after {
    left: 1rem;
    bottom: 2rem;
  }
}

.menu__inner {
  padding: 12rem 0 16rem;
  position: relative;
}

@media (max-width: 767px) {
  .menu__inner {
    padding: 10rem 0 10rem;
  }
}

.menu__contents {
  width: 110rem;
  display: flex;
  margin: 0 auto;
  flex-direction: row-reverse;    
}
.menu__contents:not(:last-of-type) {
  margin-bottom: 9rem;
}
.menu__contents:nth-of-type(2) {
  flex-direction: row;    
}
@media (max-width: 1200px) {
  .menu__contents {
    width: 130rem;
  }
}
@media (max-width: 767px) {
  .menu__contents {
    width: 90%;
    flex-direction: column-reverse;
    row-gap: 4rem;
  }
  .menu__contents:nth-of-type(2) {
    flex-direction: column-reverse;
  }
}

.menu__txt-wrapper {
  width: 100%;
  position: relative;
  z-index: 1;
  background-color: rgba(255,255,255,0.8);
  padding: 4rem 4.5rem 3rem 39.5rem;
  margin-top: 4rem;
  margin-bottom: -4rem;
  margin-left: -30rem;
}
.menu__contents:nth-of-type(2) .menu__txt-wrapper {
  padding: 4rem 39.5rem 3rem 4.5rem;
  margin-top: 4rem;
  margin-bottom: -4rem;
  margin-right: -12rem;
  margin-left: 0rem;
}
@media (max-width: 1200px) {
  .menu__txt-wrapper {
    padding: 4rem 4.5rem 3rem 39.5rem;
  }
  .menu__contents:nth-of-type(2) .menu__txt-wrapper {
    padding: 4rem 28rem 3rem 4.5rem;
  }
}
@media (max-width: 767px) {
  .menu__txt-wrapper {
    padding: 5rem 4rem 5rem 4rem;
    margin: 0;
  }
  .menu__contents:nth-of-type(2) .menu__txt-wrapper {
    padding: 5rem 4rem 5rem 4rem;
    margin: 0;
  }
}

		.menu__txt-wrapper::before {
			content: "";
			background: url(../img/deco-menu1.png) no-repeat center top / contain;
			width: 23.6rem;
			height: 10.5rem;
			position: absolute;
			top: -9rem;
			right: -11rem;
		}
    .menu__contents:nth-of-type(2) .menu__txt-wrapper::before {
			background: url(../img/deco-menu2.png) no-repeat center top / contain;
			width: 25.4rem;
			height: 10.5rem;
			top: -8rem;
      left: -10rem;
			right: inherit;
		}
    .menu__contents:nth-of-type(3) .menu__txt-wrapper::before {
			background: url(../img/deco-menu3.png) no-repeat center top / contain;
			top: -5.5rem;
			right: -11rem;
		}
@media (max-width: 767px) {
  .menu__txt-wrapper::before {
    content: none;
  }
}

.menu__txt-wrapper h3 {
  line-height: 1.72;
  letter-spacing: 0.3rem;
  font-size: max(16px, 2.2rem);
  font-weight: 700;
  margin-bottom: 2rem;
}

.menu__txt-wrapper p {
  font-size: max(12px, 1.6rem);
  letter-spacing: 0.1em;
  line-height: 2.56;
}

@media (max-width: 767px) {
  .menu__txt-wrapper p {
  }
}

@media (min-width: 768px) {
  .menu .common__btn {
    margin: 0;
  }
}

.menu__img {
  width: 68rem;
  height: 100%;
  flex-shrink: 0;
  margin-left: calc(50% - 50vw);
		position: relative;
    z-index: 1;
}
.menu__contents:nth-of-type(2) .menu__img {
  margin-right: calc(50% - 50vw);
}
@media (max-width: 1200px) {
  .menu__img {
    width: 65rem;
  }
}
@media (max-width: 767px) {
  .menu__img {
    width: 100%;
    margin: 0;
  }
}

		.menu__img::before {
			content: "";
			background: url(../img/title-menu1.png) no-repeat center top / contain;
			width: 7.8rem;
			height: 25.2rem;
			/* aspect-ratio: 293/95; */
			position: absolute;
			top: -2.5rem;
			right: -3.5rem;
		}

    .menu__contents:nth-of-type(2) .menu__img::before {
			background: url(../img/title-menu2.png) no-repeat center top / contain;
      left: -3.5rem;
			right: inherit;
		}
    .menu__contents:nth-of-type(3) .menu__img::before {
			background: url(../img/title-menu3.png) no-repeat center top / contain;
		}
@media (max-width: 767px) {
		.menu__img::before {
			right: -2rem;
		}
    .menu__contents:nth-of-type(2) .menu__img::before {
      left: -2rem;
		}
    .menu__contents:nth-of-type(3) .menu__img::before {
			right: -2rem;
		}
}




/*============================
	news
============================*/
.news {
  background: url(../img/back-news.jpg) no-repeat center top / cover;
  padding: 17.2rem 0 14.4rem;
  position: relative;
}


.CMS-NEWS-INDEX {
  width: 101.2rem;
  height: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6rem 2.6rem;
  margin: 6rem auto 6rem;
  position: relative;
  z-index: 1;
}

@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: 42rem;
  }
}

.CMS-NEWS-LINK,
.CMS-NEWS-TIME {
  margin-right: 1.2rem;
}

.CMS-NEWS-LINK {
  border-top: solid 1px #666;
  padding-top: 1rem;
  margin-top: 1rem;
}

.CMS-NEWS-TIME {
  font-size: max(12px, 1.4rem);
}

.CMS-NEWS-MORE-READ {
  display: none;
}

/*============================
	gallery
============================*/
.gallery {
  background: url(../img/back-gallery.jpg) no-repeat center top / cover;
  padding: 12.5rem 0 12rem;
}

.gallery__slider {
  margin: 6.5rem 0 7rem;
}

.gallery__slider .swiper-wrapper {
  transition-timing-function: linear;
}

.gallery__slider .swiper-slide {
  width: 28.7rem;
}

@media (max-width: 767px) {
  .gallery__slider .swiper-slide {
    width: 32rem;
  }
}


.gallery__slider .swiper-slide img {
  padding: 0 0.5rem;
}

/*============================
	access
============================*/
.access {
  background: url(../img/back-access.jpg) no-repeat center top / cover;
  padding: 14rem 0 16rem;
  position: relative;
}
@media (max-width: 767px) {
  .access {
    padding: 14rem 0 14rem;
  }
}

.access__map {
  width: 100%;
  height: 40rem;
  margin: 0rem auto 0;
}


.access__wrap {
  display: flex;
  justify-content: space-between;
  gap: 7.8rem;
  padding-left: 19rem;
  margin: 9rem 0;
}
@media (max-width: 1200px) {
  .access__wrap {
    padding-left: 10rem;
    margin: 9rem 0;
  }
}
@media (max-width: 767px) {
  .access__wrap {
    flex-direction: column-reverse;            
    gap: 5rem;
    padding-left: 0;
    margin: 9rem 0 7rem;
  }
}

.access__img {
  flex:1;
}

@media (max-width: 767px) {
  .access__img {
    width: 90%;
    margin: 0 auto;
  }
}

.access__list {
  /* width: 110rem; */
  flex-basis: 44%;
  display: flex;
  flex-wrap: wrap;
  margin: 1rem auto 0rem;
}

@media (max-width: 767px) {
  .access__list {
    width: 90%;
  }
}

.access__list dt,
.access__list dd {
  letter-spacing: 0.05em;
  padding: 2.7rem 1rem;
}

.access__list dt {
  width: max(75px, 11rem);
  font-weight: 700;
}

.access__list dd {
  width: calc(100% - max(75px, 11rem));
}

.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 {
    padding: 2rem 1.6rem 1rem;
  }

  .access__list dd {
    padding: 0 1.6rem 2rem;
  }
}

/*============================
	insta
============================*/
.insta {
  background: url(../img/back-insta.jpg) no-repeat center top / cover;
  padding: 13rem 0 13rem;
  position: relative;
}

.insta__contents {
  width: 87rem;
  margin: 9rem 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;
  }
}
