@charset "UTF-8";

/*============================
	common
============================*/
.common__ttl {
  text-align: center;
  position: relative;
}
.common__ttl img {
  height: max(80px, 11rem);
  width: auto;
}

/* .news .common__ttl {
  width: 20.7rem;
  height: 5.4rem;
  margin: 0;
}

.policy .common__ttl {
  width: 38.8rem;
  height: 11.6rem;
  margin: 0 5.2rem 0 0;
}

@media (max-width: 767px) {
  .policy .common__ttl {
    margin: 0;
  }
}

.menu .common__ttl {
  width: 20.5rem;
  height: 6.1rem;
}

.gallery .common__ttl {
  width: 28rem;
  height: 6.3rem;
  margin: 0;
}

.access .common__ttl {
  width: 20.9rem;
  height: 5.7rem;
}

.insta .common__ttl {
  width: 34.7rem;
  height: 5.9rem;
}

.common__ttl::before {
  content: "";
  background: url("../img/ttl_deco.png") no-repeat center / contain;
  width: 18rem;
  height: 18rem;
  position: absolute;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  z-index: -1;
}

.news .common__ttl::before,
.gallery .common__ttl::before {
  width: 12.3rem;
  height: 12.3rem;
}

.policy .common__ttl::before {
  width: 27.9rem;
  height: 27.9rem;
}

.gallery .common__ttl::before {
  transform: translate(-35%, -50%);
  top: 50%;
  left: 0;
}

@media (max-width: 767px) {
  .gallery .common__ttl::before {
    transform: translate(-25%, -50%);
  }
} */

.common__btn {
  text-align: center;
  position: relative;
  z-index: 5;
}
.common__btn.left {
  text-align: left;
}

.common__btn a {
  display: inline-block;
  width: max(160px, 21.6rem);
  
}
@media (max-width: 767px) {
  .common__btn.left {
    text-align: center;
  }
  .common__btn a {
    width: max(180px, 21.6rem);
    
  }
}

/* .common__btn a::before {
  content: "";
  background: url("../img/btn_deco.png") no-repeat center / contain;
  width: max(150px, 33.2rem);
  height: max(40px, 8.8rem);
  position: absolute;
  top: 0.4rem;
  left: 1.4rem;
}

.common__btn span {
  background-color: var(--color-brown);
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  position: relative;
}

.common__btn span::before,
.common__btn span::after {
  content: "";
  position: absolute;
}

.common__btn span::before {
  background: url("../img/ttl_deco.png") no-repeat center / contain;
  width: 10.5rem;
  height: 10.5rem;
  top: -4.3rem;
  left: -1.8rem;
}

.common__btn span::after {
  background: url("../img/btn_arw.png") no-repeat center / contain;
  width: 1.8rem;
  height: 2.4rem;
  transform: translateY(-50%);
  top: 50%;
  right: 4.3rem;
} */

/*============================
	hero
============================*/
.hero {
  background: var(--bg-1);
  width: 100%;
  height: max(85rem, 100vh);
  color: var(--text-color);
  padding-bottom: 4rem;
  position: relative;
}

@media (max-width: 850px) {
  .hero {
    height: max(90rem, 100vh);
  }
}

@media (max-width: 767px) {
  .hero {
    height: max(350px, 50rem);
    padding: 0;
  }
  .hero::after {
      content: "";
      width: 100%;
      height: 17rem;
      /* aspect-ratio: 293/95; */
      position: absolute;
      top: 0;
      left: 0;
      background: linear-gradient(
          to bottom,
          rgba(255,255,255,0.6) 0%,
          rgba(255,255,255,0.6) 40%,
          rgba(255,255,255,0.4) 70%,
          rgba(255,255,255,0) 100%
      );
      z-index: 1;
  }
}

/* .hero::before {
  content: "";
  background-color: #e0d9c9;
  width: 100%;
  height: 68%;
  clip-path: polygon(0 0, 100% 0, 100% 80%, 0% 100%);
  opacity: 0.4;
  mix-blend-mode: multiply;
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
} */

.hero__slider {
  width: calc(100% - 34rem);
  height: 100%;
  overflow: hidden;
  margin-left: auto;
}

@media (max-width: 767px) {
  .hero__slider {
    width: 100%;
  }
}

@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;
}

.swiper-pagination {
  width: max-content !important;
  display: flex;
  transform: translateX(-50%) !important;
  right: 6% !important;
  left: inherit !important;
  bottom: 0 !important;
  z-index: 10;
}

@media (max-width: 767px) {
  .swiper-pagination {
    bottom: 2rem !important;
  }
}

.swiper-pagination-bullet {
  background-color: #d6a54b;
  background-color: transparent;
  border: 0.1rem solid #000;
  border-radius: 50% !important;
  width: max(8px, 1.1rem) !important;
  height: max(8px, 1.1rem) !important;
  display: flex !important;
  justify-content: center;
  align-items: center;
  margin: 0 0.8rem !important;
  opacity: 1 !important;
  transition: 0.3s ease-in-out;
}

.swiper-pagination-bullet-active {
  background-color: var(--color-red);
  background-color: #000;
}

/*============================
	news
============================*/
.news {
  background: var(--bg-1);
  /* display: flex;
  justify-content: center;
  align-items: center;
  gap: 8rem 7.8rem; */
  padding: 6rem 0 25rem;
  position: relative;
}
.news > div {
  padding: 0 11rem;
}
@media (max-width: 767px) {
  .news {
    /* flex-direction: column; */
    padding: 11rem 0 19rem;
  }
  .news > div {
    padding: 0 0;
  }
}

/*  ----------------------------------------------------------

news

----------------------------------------------------------  */
.news .CMS-NEWS-INDEX {
    padding-bottom: 3rem;
    margin-top: 4.5rem;
    margin-bottom: 5rem;
    padding: 0 5.5%;
}
.CMS-NEWS-INDEX {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    padding-bottom: 8rem;
    position: relative;
    margin-bottom: 8rem;
    position: relative;
}
.news .CMS-NEWS-INDEX::after {
    content: "";
    width: 31.5%;
    margin-bottom: 1rem;
}
.CMS-NEWS-INDEX::after {
    content: "";
    width: 31.5%;
    margin-bottom: 4rem;
}


.CMS-NEWS-INDEX > * {
    width: 31.5%;
    margin-bottom: 5rem;
}
.news .CMS-NEWS-INDEX > * {
    margin-bottom: 0;
}
.CMS-NEWS-INDEX > *:nth-of-type(3n) {
    margin-right: 0;    
}
.CMS-NEWS-ITEM a {
    transition: all .3s;
    display: block;
}
.CMS-NEWS-ITEM a:hover {
    opacity: 0.6;
}
.CMS-NEWS-TIME {
    font-size: max(11px, 1.25rem);
    margin: 2rem 0 0.6rem 0;
    line-height: 1;
	color: #000;
    border-bottom: 0.1rem solid #000;
    padding-bottom: 1rem;
}
.CMS-NEWS-LINK {
    font-size: max(13px, 1.5rem);
    line-height: 1.6;
	color: #000;
}
.CMS-NEWS-INDEX > * img {
    height: 24rem;
    width: 100%;
    object-fit: cover;  
}

/* read more */
.CMS-NEWS-MORE-READ {
    background: #b40000;
    border:none;
    border-radius: 0.2rem;
    text-align: center;
    padding: 1.8rem 0;
    font-size: 1.5rem;
    font-weight: bold;
	/* font-weight: bold; */
    color: #fff;
    text-align: center;
    /* margin: 4rem auto 0 auto; */
    width: 22rem;
    display: block;
    transition: all .3s;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 0);
    -webkit-transform: translate(-50%, 0);
}
.CMS-NEWS-MORE-READ:hover {
    cursor: pointer;
    opacity: 0.6;
}
.news .CMS-NEWS-MORE-READ {
    display: none;
}

/* detail */
.CMS-NEWS-TITLE {
    border-bottom: solid 1px rgba(0,0,0,0.2);
    font-size: 2.4rem;
    line-height: 1.6;
    margin-bottom: 3rem;
    padding: 1rem 0 1.5rem 0;
    position: relative;
    font-weight: bold;
}
.CMS-NEWS-TITLE:after {
    border-bottom: solid 3px var(--red);
    bottom: -3px;
    content: " ";
    display: block;
    position: absolute;
    width: 25%;
}
.CMS-NEWS-CONTENT img {
    width: 80%;
    height: auto;
    display: block;
    margin: 0 auto 2rem auto;
}

@media screen and (max-width: 767px) {
    .news .CMS-NEWS-INDEX {
        margin-top: 6.5rem;
        margin-bottom: 7rem;
    }    
    .CMS-NEWS-INDEX {
        display: block;
        margin-bottom: -4rem;
        padding-bottom: 12rem;
    }
    .CMS-NEWS-INDEX > * {
        width: 100%;
        margin-right: 0;
        margin-bottom: 6rem;        
    }
    .news .CMS-NEWS-INDEX > * {
        margin-bottom: 6rem;
    }    
    .CMS-NEWS-CONTENT img {
        width: 100%;
    }
    .CMS-NEWS-INDEX > * img {
        height: auto;
    }
}


/* .news::before {
  content: "";
  background: url("../img/access_deco.png") no-repeat center / contain;
  width: 102.6rem;
  height: 102.6rem;
  position: absolute;
  left: -42rem;
  bottom: 3.7rem;
  pointer-events: none;
} */

/* .news__btn a {
  display: block;
  width: 20.4rem;
  border-bottom: solid 1px #000;
  font-size: max(12px, 1.8rem);
  font-weight: 900;
  letter-spacing: 0.3em;
  padding: 1.5rem;
  margin-top: 9rem;
  position: relative;
}

@media (max-width: 767px) {
  .news__btn a {
    width: max(130px, 20.4rem);
    margin-top: 0;
  }
}

.news__btn a::before {
  content: "";
  background: url("../img/news_btn-arw.png") no-repeat center / contain;
  width: 1.8rem;
  height: 2.4rem;
  position: absolute;
  transform: translateY(-50%);
  top: 50%;
  right: 0.3rem;
}

.CMS-NEWS-INDEX {
  width: 84.9rem;
  height: auto;
  display: flex;
  gap: 6rem 3.9rem;
}

@media (max-width: 767px) {
  .CMS-NEWS-INDEX {
    width: 90%;
    flex-direction: column;
  }
}

.CMS-NEWS-THUMBNAIL {
  width: 25.7rem;
  height: 16rem;
  margin-bottom: 1.8rem;
}

@media (max-width: 767px) {
  .CMS-NEWS-THUMBNAIL {
    width: 100%;
    height: 36rem;
  }
}

.CMS-NEWS-LINK,
.CMS-NEWS-TIME {
  letter-spacing: 0.1em;
}

.CMS-NEWS-LINK {
  font-weight: 500;
}

.CMS-NEWS-TIME {
  font-weight: 900;
}

.CMS-NEWS-MORE-READ {
  display: none;
} */

/*============================
	policy
============================*/
.policy {
  /* color: var(--color-white); */
  margin-top: -33rem;
  position: relative;
  background: url(../img/back-policy.png) no-repeat center top / cover;
  padding: 30rem 0 27rem;
  z-index: 2;
}
		.policy::before {
			content: "";
			background: url(../img/deco-policy.png) no-repeat center top / contain;
			width: 68rem;
			height: 37rem;
			/* aspect-ratio: 293/95; */
			position: absolute;
			top: 78rem;
			left: 11rem;
		}
		.policy::after {
			content: "";
			background: url(../img/deco-menu1.png) no-repeat right top / contain;
			width: 63rem;
			height: 39.5rem;
			/* aspect-ratio: 293/95; */
			position: absolute;
			bottom: -20rem;
			right: 0;
		}
@media (max-width: 1000px) {
		.policy::before {
			content: "";
			background: url(../img/deco-policy.png) no-repeat center top / contain;
			width: 68rem;
			height: 37rem;
			/* aspect-ratio: 293/95; */
			position: absolute;
			top: 70rem;
			left: 5rem;
		}
}
@media (max-width: 767px) {
  .policy {
    margin-top: -50rem;
    background: url(../img/back-policy.png) no-repeat left -50rem top / cover;
    padding: 65rem 0 60rem;
  }
		.policy::before {
			width: 68rem;
			height: 37rem;
			/* aspect-ratio: 293/95; */
      top: inherit;
			bottom: 15rem;
			left: 5rem;
		}
		.policy::after {
			width: 37rem;
			height: 30.5rem;
			bottom: -17rem;
			right: 0;
		}
}



.policy__inner {
  padding: 0 13rem;
  width: 100%;
  text-align: right;
}

@media (max-width: 767px) {
  .policy__inner {
    width: 90%;
    padding: 0;
    margin: 0 auto;
  }
}


.policy__txt-wrapper {
      display: inline-flex;          /* Safariでも幅が安定しやすい */
    width: max-content;            /* 内容に必要な幅まで広げる */
    max-width: 100%;               /* 画面からはみ出すのは防ぐ */
    flex-direction: column;  
    
  /* display: inline-block;  */
  position: relative;
  z-index: 1;
  background: url(../img/back-policy2.jpg) no-repeat center top / cover;
  padding: 6.5rem 2rem;
}

.policy__txt-wrapper::before {
    content: "";
    position: absolute;
    inset: 2.2% 2.7%;
    background: url(../img/waku-policy.png) no-repeat center / 100% 100%; /* 枠の縦横比を親に合わせる */
    pointer-events: none;
}

@media (max-width: 767px) {
  .policy__txt-wrapper {
    display: block;
    padding: 9rem 2rem 12rem;
  }
}

.policy__txt-wrapper > div:nth-of-type(1) {
  /* width: 47rem; */
  /* display: flex;
  flex-direction: row-reverse;     */
    writing-mode: vertical-rl; 
  text-orientation: upright; 
  padding: 0.5rem 4.5rem 5rem;
  text-align: left;
}
.policy__txt-wrapper h3 {
  font-size: max(20px, 2.5rem);
  font-weight: 800;
  font-family: "Kaisei Tokumin", serif;
  margin-left: 2rem;
  letter-spacing: 0.3rem;
}
.policy__txt-wrapper p {
    /* writing-mode: vertical-rl; 
  text-orientation: upright;  */
  font-size: max(15px, 1.8rem);
  font-weight: 500;
  letter-spacing: 0.2em;
  line-height: 1.8;
}

@media (max-width: 767px) {
  .policy__txt-wrapper > div:nth-of-type(1) {
    writing-mode: horizontal-tb;
    text-orientation: mixed;
    padding: 0.5rem 4.5rem 5rem;
  }
  .policy__txt-wrapper h3 {
    font-size: max(20px, 2.5rem);
    font-weight: 800;
    font-family: "Kaisei Tokumin", serif;
    margin-left: 0;
    letter-spacing: 0.3rem;
  }
  .policy__txt-wrapper p {
    width: auto;
    margin: 5rem 0 3rem;
  }
}


/*============================
	menu
============================*/
.menu {
  margin-top: -17.5rem;
  background: url(../img/texture-1.jpg) no-repeat center top / cover;
  position: relative;
  z-index: 1;
}


.menu__inner {
  padding: 24rem 0 8.6rem;
  position: relative;
}

.menu__contents {
  width: 120rem;
  display: flex;
  flex-direction: row-reverse;
  gap: 10rem 6.5rem;
  margin: 8rem 0 14rem 7rem;
}

@media (max-width: 767px) {
  .menu__inner {
    padding: 30rem 0 14rem;
    position: relative;
  }
  .menu__contents {
    width: 90%;
    margin: 7rem auto 7rem;
    flex-direction: column-reverse;
  }
}

.menu__txt-wrapper {
  flex-basis: 36%;
  position: relative;
  z-index: 1;
}

		.menu__txt-wrapper::before {
			content: "";
			background: url(../img/deco-menu3.png) no-repeat center top / contain;
			width: 137%;
			height: 137%;
			/* aspect-ratio: 293/95; */
			position: absolute;
			top: -20%;
			left: -11%;
		}

@media (max-width: 1050px) {
  .menu__txt-wrapper {
    flex-basis: inherit;
    width: max(300px,29.2rem);
  }
}
@media (max-width: 767px) {
  .menu__txt-wrapper {
    width: 100%;
  }
}

.menu__txt-wrapper h3 {
  font-size: max(18px, 2.4rem);
  font-weight: 700;
  /* letter-spacing: 0.1rem; */
  display: flex;
  flex-direction: column;
  row-gap: 2.7rem;
  margin: 1rem 0 2rem;
  line-height: 1.7;
}

@media (max-width: 767px) {
  .menu__txt-wrapper h3 {
    margin: 0 0 4rem;
  }
}


.menu__txt-wrapper p {
  font-weight: 500;
  letter-spacing: 0em;
  line-height: 2;
  margin-bottom: 6.5rem;
}

.menu__img {
  flex-basis: 64%;
  /* width: 66.3rem;
  height: 57.2rem; */
  /* flex-shrink: 0; */
  /* margin-left: calc(50% - 50vw); */
}
		.menu__img::before {
			content: "";
			background: url(../img/deco-menu2.png) no-repeat center top / contain;
			width: 35.9rem;
			height: 27.6rem;
			/* aspect-ratio: 293/95; */
			position: absolute;
			top: -19.5rem;
			left: -4rem;
      z-index: -1;
		}

.menu__img img {
  width: 100%;
  height: auto;
  object-fit: inherit;
}

@media (max-width: 1050px) {
  .menu__img {
    flex: 1;
  }
}
@media (max-width: 767px) {
  .menu__img {
    width: 110%;
    margin: 2rem 0 0 -10%;
  }
		.menu__img::before {
			width: 25.9rem;
			height: 17.6rem;
			top: -9.5rem;
			left: -7rem;
		}
  .menu__txt-wrapper p {
    margin-bottom: 10rem;
  }
}

.menu__side {
  background: url("../img/sidemenu_bg.jpg") repeat-y center / 100% auto;
  width: 110rem;
  padding: 4.9rem 4.8rem 6.4rem 0;
  margin: 0 auto 11.5rem;
  box-shadow: 0.7rem 0.7rem 5px 0 rgba(58, 48, 20, 0.2);
  position: relative;
}

@media (max-width: 767px) {
  .menu__side {
    width: 90%;
    padding: 0 5rem 5rem;
  }
}

.menu__side::before,
.menu__side::after {
  content: "";
  position: absolute;
  z-index: -1;
}

.menu__side::before {
  background: url("../img/menu_side.png") no-repeat center / contain;
  width: 56.6rem;
  height: 51.7rem;
  top: -6.9rem;
  left: -7.5rem;
}

.menu__side::after {
  background: url("../img/ttl_deco.png") no-repeat center / contain;
  width: 32.8rem;
  height: 32.8rem;
  top: -5.8rem;
  right: -2.8rem;
}

@media (max-width: 767px) {
  .menu__side::before {
    position: static;
    display: block;
    margin: 0 auto;
  }

  .menu__side::after {
    width: 26rem;
    height: 26rem;
    top: 42rem;
  }
}

.menu__side-txt-wrapper {
  width: 55.3rem;
  margin-left: auto;
}

@media (max-width: 767px) {
  .menu__side-txt-wrapper {
    width: 100%;
  }
}

.menu__side h3 {
  width: 38.7rem;
  height: 10.5rem;
}

.menu__side p {
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 2.5;
  margin-top: 2.5rem;
}

/*============================
	parallax
============================*/
.parallax {
  width: 100%;
  height: 45rem;
}

@media (max-width: 767px) {
  .parallax {
    height: 30rem;
  }
}

/* .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;
}
 */




/*============================
	gallery
============================*/
.gallery {
  position: relative;
  z-index: 2;
  margin-top: -9rem;
  padding: 10.3rem 0 12rem;
  background: url(../img/back-gallery.png) no-repeat center top / cover;
}

.gallery__slider {
  margin: 5rem 0 8rem;
}

.gallery__slider .swiper-wrapper {
  transition-timing-function: linear;
}

.gallery__slider .swiper-slide {
  width: 31.1rem;
}
.gallery__slider .swiper-slide img {
  padding: 0 0.5rem;
}
@media (max-width: 767px) {
  .gallery {
    padding: 15.3rem 0 17rem;
  }
  .gallery__slider {
    margin: 8rem 0 11rem;
  }
  .gallery__slider .swiper-slide {
    width: 40rem;
  }
}

.gallery .common__btn {
  margin: 0;
}

/*============================
	access
============================*/
.access {
  background: url(../img/back-access.jpg) no-repeat center top / cover;
  padding: 12.4rem 0 12rem;
  position: relative;
  z-index: 1;
  overflow: hidden;
}


.access__contents {
  width: 108rem;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 2rem 8rem;
  margin: 8.5rem auto 8rem;
}

@media (max-width: 767px) {
  .access__contents {
    width: 90%;
    flex-direction: column;
  }
}

.access__img {
  flex: 1;
}
.access__img img{
  width: 100%;
  height: auto;
}
@media (max-width: 767px) {
  .access__img {
    width: 100%;
    margin: 0;
  }
}

.access__list {
  display: flex;
  flex-wrap: wrap;
  color: #fff;
  width: max(300px, 51.4rem);
  margin: -2rem auto 0;
}
@media (max-width: 767px) {
  .access__list {
    width: 100%;
    margin: 3rem auto 0;
  }
}

.access__list dt,
.access__list dd {
  letter-spacing: 0.05em;
}

.access__list dt {
  width: max(75px, 13rem);
  font-weight: 700;
  padding: 2.8rem 1.6rem;
}

.access__list dd {
  width: calc(100% - max(75px, 13rem));
  padding: 3.2rem 0;
}

.access__list dd:not(:last-of-type) {
  border-bottom: solid 1px #fff;
}

@media (min-width: 768px) {
  .access__list dt:not(:last-of-type) {
    border-bottom: solid 1px #fff;
  }
}

@media (max-width: 767px) {
  .access__list dt,
  .access__list dd {
    width: 100%;
  }

  .access__list dt {
    padding: 3rem 1.6rem 2rem;
  }

  .access__list dd {
    padding: 0 1.6rem 3rem;
  }
}

.top__map {
  height: 42rem;
}
@media screen and (max-width: 767px) {
  .top__map {
    height: 65rem;
  }
}

/*============================
	insta
============================*/
.insta {
  background: url(../img/back-insta.jpg) no-repeat center top / cover;
  padding: 12.5rem 0 13.5rem;
}

.insta .common__ttl img {
  height: max(85px, 12rem);
}

.insta__contents {
  width: 88.7rem;
  margin: 6rem 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 2.9rem;
}

.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: 27.6rem;
  height: 27.6rem;
  object-fit: cover;
}

@media screen and (max-width: 767px) {
  .CMS-INSTAGRAM-LIST img {
    width: 100%;
    height: auto;
  }
}
