@charset "UTF-8";

/*============================
	common
============================*/
.common__ttl {
  /* font-family: var(--font-en); */
  font-family: "Shippori Mincho", serif;
  font-size: max(18px, 3.3rem);
  font-weight: 700;
  color: #562b08;
  letter-spacing: 0.05em;
  line-height: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 1rem;
}
.common__ttl--wt {
  color: var(--white);
}
.common__ttl::before {
  content: "";
  display: block;
  background: url("../img/ttl_deco.png") no-repeat center / contain;
  width: max(40px, 7.0rem);
  height: max(20.4px, 3.9rem);
}
.common__ttl span {
  font-size: max(13px, 1.9rem);
  font-weight: 400;
  font-family: "Lora", serif;
}

.common__btn {
  width: max(150px, 20.1rem);
  /* height: max(40px, 5.1rem); */
  margin: 0 auto;
}

/* .common__btn a {
  background: url("../img/btn_bg.png") no-repeat center / cover;
  width: 100%;
  height: 100%;
  border: solid 1px var(--brown);
  color: var(--white);
  letter-spacing: 0.1em;
  display: flex;
  justify-content: center;
  align-items: center;
} */

/* .common__btn--bl a {
  background: url("../img/btn_bg-bl.png") no-repeat center / cover;
  border: solid 1px #ddb56b;
  color: var(--black);
} */

/*============================
	header
============================*/
.header.top {
  height: max(90rem, 100vh);
}

@media (min-width: 768px) {
  .header.top {
    width: 38rem;
    padding-top: 12.5rem;
  }

  .header.top .header__logo {
    margin: 0 auto 15.5rem;
    position: static;
  }

  .header.top .header__contents {
    flex-direction: column;
    position: static;
    row-gap: 6.5rem;
    padding-left: 4rem;
  }

  .header.top .header__nav-list {
    flex-direction: column;
    row-gap: 3.5rem;
  }
}

@media (max-width: 767px) {
  .header.top {
    height: auto;
  }

  .header.top::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 55px;
    background: rgba(255, 255, 255, 0.7);
  }

  .header.top::after {
    content: "";
    position: absolute;
    top: 55px;
    left: 0;
    width: 100%;
    height: 20px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.7) 0%, rgba(255, 255, 255, 0) 100%);
  }

  .header.top .header__logo {
    filter: drop-shadow(2px 2px 3px rgba(255, 255, 255, 1));
  }
}

/*============================
	hero
============================*/
.hero {
  background: var(--bg-1);
  width: 100%;
  height: max(90rem, 100vh);
  padding-left: 38rem;
  position: relative;
}

@media (max-width: 767px) {
  .hero {
    height: max(300px, 44rem);
    padding: 0;
  }
}

.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 .swiper-pagination {
  width: max-content !important;
  display: flex;
  column-gap: 15px;
  transform: translateY(100%);
  left: 38rem !important;
  bottom: -2.8rem !important;
  z-index: 10;
}

@media (max-width: 767px) {
  .hero .swiper-pagination {
    transform: translateX(-50%);
    left: 50% !important;
    bottom: 3rem !important;
  }
}

.hero .swiper-pagination-bullet {
  background-color: #111;
  width: max(8px, 1rem) !important;
  height: max(8px, 1rem) !important;
  display: flex !important;
  justify-content: center;
  align-items: center;
  margin: 0 !important;
  opacity: 1 !important;
  transition: 0.3s ease-in-out;
}

.hero .swiper-pagination-bullet-active {
  background-color: #9e1c22;
}

/*============================
	news
============================*/
.news {
  background: var(--bg-1);
  padding: 12.5rem 0 13.5rem;
  position: relative;
}

.news::before,
.news::after {
  content: "";
  width: 28.2rem;
  height: 28.2rem;
  mix-blend-mode: multiply;
  position: absolute;
  pointer-events: none;
}

.news::before {
  background: url("../img/news_deco-1.png") no-repeat right top / contain;
  top: 0rem;
  right: 0rem;
  width: 42rem;
  height: 42rem;
}

.news::after {
  background: url("../img/news_deco-2.png") no-repeat left bottom / contain;
  bottom: 0rem;
  left: 0rem;
  width: 43rem;
  height: 43rem;
}

@media (max-width: 767px) {
  .news::before,
  .news::after {
    width: 31rem;
    height: 31rem;
  }

  /* .news::before {
    top: 3rem;
    left: 2rem;
  }

  .news::after {
    bottom: 5rem;
  } */
}

.CMS-NEWS-INDEX {
  width: 101.2rem;
  height: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6rem 2.6rem;
  margin: 3rem auto 8rem;
  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: 2.7rem;
}

@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-MORE-READ {
  display: none;
}

/*============================
	concept
============================*/
.concept {
  background: url("../img/concept_bg.jpg") no-repeat center / cover;
  padding: 11rem 0 11rem;
  position: relative;
  z-index: 2;
}
.concept__wrap {
  width: 76.4%;
  margin: 0 auto;
  background-color: rgba(255, 255, 255, 0.9);
  padding: 5rem 4rem 6rem;
}
.concept h2 {
  width: 10.9rem;
  margin: 0 auto;
}

/* .concept::before,
.concept::after {
  content: "";
  background: url("../img/concept_deco.png") no-repeat center / contain;
  width: 26rem;
  height: 19.2rem;
  position: absolute;
  pointer-events: none;
}

.concept::before {
  left: 11.4rem;
  bottom: 14.3rem;
}

.concept::after {
  transform: scale(-1, 1);
  top: 13.5rem;
  right: 13rem;
} */

/* @media (max-width: 767px) {
  .concept::before,
  .concept::after {
    width: 21rem;
    height: 15.5rem;
  }

  .concept::before {
    left: 2rem;
    bottom: 5rem;
  }

  .concept::after {
    top: 5rem;
    right: 3rem;
  }
} */

/* .concept .common__ttl::before {
  margin-bottom: 2rem;
} */

.concept p {
  width: 67rem;
  letter-spacing: 0.05em;
  line-height: 2.1;
  text-align: center;
  margin: 3rem auto 5.5rem;
}
@media (max-width: 767px) {
  .concept {
    padding: 7rem 0;
  }
  
  .concept__wrap {
    width: 90%;
  }
  
  .concept h2 {
    width: 14.9rem;
    margin: 0 auto;
  }
  
  .concept p {
    width: 100%;
  }
}

/*============================
	menu
============================*/
.menu {
  background: var(--bg-1);
  padding: 12rem 0 15rem;
  position: relative;
  z-index: 1;
}

.menu::before {
  content: "";
  background: url("../img/menu_deco1.png") no-repeat left top / contain;
  width: 58rem;
  height: 57.8rem;
  position: absolute;
  pointer-events: none;
  z-index: -1;
  top: -0.5rem;
  left: 0;
}
.menu::after {
  content: "";
  background: url("../img/menu_deco2.png") no-repeat right bottom / contain;
  width: 61rem;
  height: 58.8rem;
  position: absolute;
  pointer-events: none;
  z-index: -1;
  bottom: -0rem;
  right: 0;
}


@media (max-width: 767px) {
  .menu::before,
  .menu::after {
    width: 32rem;
    height: 32.7rem;
  }
}

.menu__list {
  width: 110rem;
  display: flex;
  flex-direction: column;
  row-gap: 11rem;
  margin: 10.5rem auto 12rem;
}

@media (max-width: 767px) {
  .menu__list {
    width: 90%;
    row-gap: 9rem;
  }
}

.menu__list-item {
  display: flex;
  gap: 4rem 7rem;
}

.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%;
}

@media (min-width: 768px) {
  .menu__txt-wrapper {
    height: max(390px, 39rem);
    writing-mode: vertical-rl;
  }
}

.menu__txt-wrapper h3 {
  /* background: url("../img/menu_ttl-bg.png") no-repeat center / contain; */
  width: 6.55rem;
  /* height: 24.3rem; */
  /* font-size: max(18px, 3.6rem);
  line-height: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.2rem; */
  margin-left: 4rem;
}
.menu__txt-wrapper h3 img {
  width: 100%;
  height: auto;
}

@media (max-width: 767px) {
  .menu__txt-wrapper h3 {
    /* background: url("../img/menu_ttl-bg-sp.png") no-repeat center / contain; */
    width: max(150px, 27.3rem);
    height: max(36.3px, 6.8rem);
    margin: 0 0 4rem;
  }
}

.menu__txt-wrapper h3 span {
  display: block;
  font-size: max(10px, 1.4rem);
}

.menu__txt-wrapper h4 {
  border-left: solid 1px var(--black);
  font-size: max(16px, 2.4rem);
  font-weight: 500;
  letter-spacing: 0.1em;
  padding-left: 2rem;
  margin-left: 2.5rem;
}

@media (max-width: 767px) {
  .menu__txt-wrapper h4 {
    border-left: none;
    border-bottom: solid 1px var(--black);
    padding: 0 0 2rem;
    margin: 0 0 3rem;
  }
}

.menu__txt-wrapper p {
  letter-spacing: 0.05em;
  line-height: 2.2;
}

@media (min-width: 768px) {
  .menu__txt-wrapper h4,
  .menu__txt-wrapper p {
    text-orientation: upright;
  }

  .menu__txt-wrapper p {
    letter-spacing: 0.055em;
  }
}

.menu__img {
  width: 60rem;
  height: 100%;
  flex-shrink: 0;
}

@media (max-width: 767px) {
  .menu__img {
    width: 100%;
  }
}

/*============================
	gallery
============================*/
.gallery {
  background: url("../img/gallery_bg.jpg") no-repeat center / cover;
  padding: 10rem 0 12.5rem;
}

.gallery__slider {
  margin: 6rem 0 8rem;
}

.gallery__slider .swiper-wrapper {
  transition-timing-function: linear;
}

.gallery__slider .swiper-slide {
  width: 29rem;
  margin: 0 0.7rem;
}

@media (max-width: 767px) {
  .gallery__slider .swiper-slide {
    width: 32rem;
  }
}

/*============================
	access
============================*/
.access {
  background: url(../img/back-access.jpg) no-repeat center top / cover;
  padding: 9.5rem 0 16rem;
  position: relative;
}

.access::before {
  content: "";
  background: url("../img/access_deco-2.png") no-repeat right top / contain;
  top: 0rem;
  right: 0rem;
  width: 56rem;
  height: 56rem;
  position: absolute;
}

.access::after {
  content: "";
  background: url("../img/access_deco-1.png") no-repeat left bottom / contain;
  bottom: 0rem;
  left: 0rem;
  width: 56rem;
  height: 56rem;
  position: absolute;
}

@media (max-width: 767px) {
  .access::before {
    width: 40rem;
    height: 23.4rem;
  }

  .access::after {
    width: 40rem;
    height: 17.6rem;
  }
}

.access__contents {
  width: 110rem;
  display: flex;
  align-items: flex-start;
  gap: 2rem 7rem;
  margin: 5.5rem auto 0;
}

@media (max-width: 767px) {
  .access__contents {
    width: 90%;
    flex-direction: column;
  }
}

.access__img {
  width: 48rem;
  height: 100%;
  flex-shrink: 0;
}

@media (max-width: 767px) {
  .access__img {
    width: 100%;
  }
}

.access__list {
  display: flex;
  flex-wrap: wrap;
  margin: -1rem 0 4rem;
}

@media (max-width: 767px) {
  .access__list {
    margin: 0 0 4rem;
  }
}

.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(--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%;
    margin-bottom: 1rem;
  }

  .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 {
  background: var(--bg-1);
}

/*============================
	insta
============================*/
.insta {
  background: url("../img/insta_bg.jpg") no-repeat center / cover;
  padding: 9.2rem 0 14rem;
  position: relative;
}

/* .insta::before,
.insta::after {
  content: "";
  background: url("../img/insta_deco.png") no-repeat center / contain;
  width: 46.4rem;
  height: 61rem;
  mix-blend-mode: multiply;
  position: absolute;
  pointer-events: none;
}

.insta::before {
  top: 5.2rem;
  left: -6rem;
}

.insta::after {
  transform: scale(-1, 1);
  top: 5.4rem;
  right: -6.2rem;
}

@media screen and (max-width: 767px) {
  .insta::before,
  .insta::after {
    width: 30rem;
    height: 39.4rem;
  }

  .insta::before {
    top: 5.2rem;
    left: -6rem;
  }

  .insta::after {
    top: 5.4rem;
    right: -6.2rem;
  }
} */

.insta__contents {
  width: 82rem;
  margin: 4.5rem auto 0;
  position: relative;
  z-index: 1;
}

@media screen and (max-width: 767px) {
  .insta__contents {
    width: 90%;
  }
}

.CMS-INSTAGRAM-LIST {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem;
}

.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: 26.1rem;
  height: 26.1rem;
  object-fit: cover;
}

@media screen and (max-width: 767px) {
  .CMS-INSTAGRAM-LIST img {
    width: 100%;
    height: auto;
  }
}

/*============================
	parallax
============================*/
.parallax {
  width: 100%;
  height: 40rem;
  position: relative;
}

.parallax::before {
  content: "";
  width: 100%;
  left: 0;
  z-index: -1;
}

.parallax::before {
  background: url("../img/parallax_bg.jpg") no-repeat center / cover;
  height: 100vh;
  position: fixed;
  top: 0;
}

.btn_link{
  background: var(--bg-1);
  padding: 9.5rem 0 13.5rem;
  position: relative;
}

.btn_list{
  display: flex;
  justify-content: center;
}

.btn_list li{
  padding: 0 3rem;
}

@media screen and (max-width: 767px){
  .btn_list{
    display: block;
  }
  .btn_list li{
    padding: 2rem 0;
  }
}