@charset "UTF-8";


/*============================
	common
============================*/
/* ttl */
.common__ttl {
  font-family: var(--font-yuji);
  font-size: max(24px, 4rem);
  font-weight: 500;
  color: #562b08;
  letter-spacing: 0.1em;
  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(45px, 8.1rem);
  height: max(24.4px, 4.4rem);
}
.common__ttl span {
  font-size: max(12px, 1.8rem);
}
.common__ttl--wt::before {
  background: url("../img/ttl_deco_wt.png") no-repeat center / contain;
}

/* btn */
.common__btn {
  width: max(174px, 22.2rem);
  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);
}
.common__btn.red a {
  background: url("../img/btn_bg_red.png") no-repeat center / cover;
  border: solid 1px #be463c;
}


/*============================
	header
============================*/
@media (min-width: 768px) {
  .header.top .header__nav-list li {
    writing-mode: vertical-lr;
    text-orientation: upright;
  } 
  .header.top .header__nav-list li a {
    color: #fff;
  }   
}
@media (max-width: 767px) {
  .header.top .header__nav-list li {
    writing-mode: unset;
  } 
}


/*============================
	hero
============================*/
.hero {
  background: var(--bg-1);
  width: 100%;
  height: 93vh;
  position: relative;
}
.hero::before {
  content: "";
  width: 100%;
  height: 50%;
  background: linear-gradient(to bottom,#000,transparent);
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0.6;
  z-index: 10;
}
@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: auto !important;
  right: 10rem !important;
  bottom: -2rem !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: #a99054;
  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: 9.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 center / contain;
  top: 4.7rem;
  left: 6.5rem;
}
.news::after {
  background: url("../img/news_deco-2.png") no-repeat right -5rem bottom -6rem  / contain;
  right: 0;
  bottom: 0;
}
@media (max-width: 767px) {
  .news::before,
  .news::after {
    width: 21rem;
    height: 21rem;
  }
}
.CMS-NEWS-INDEX {
  width: 101.2rem;
  height: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6rem 2.6rem;
  margin: 4.5rem 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;
  color: var(--white);
  padding: 10rem 0 16.5rem;
  position: relative;
}
@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 {
  letter-spacing: 0.05em;
  line-height: 2;
  text-align: center;
  margin: 5rem auto 8rem;

}
@media (max-width: 767px) {
  .concept p {
    text-align: left;
    padding: 0 3rem;
  }
}


/*============================
	menu
============================*/
.menu {
  background: 
    url(../img/menu_deco_1.png) no-repeat left 2rem top 2rem,
    url(../img/menu_deco_2.png) no-repeat right 2rem top 4rem,
    url(../img/menu_deco_3.png) no-repeat left 5rem bottom -6rem,
    url(../img/menu_deco_1.png) no-repeat right -2rem bottom 4rem,
    url(../img/texture-1.jpg) center top;
  background-size:
    20rem auto,
    30rem auto,
    30rem auto,
    20rem auto,
    88rem auto;
  padding: 7.5rem 0 15.5rem;
  position: relative;
  z-index: 1;
}
.menu__list {
  width: 110rem;
  display: flex;
  flex-direction: column;
  row-gap: 11rem;
  margin: 7.5rem auto 11rem;
}
@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(420px, 42rem);
    writing-mode: vertical-rl;
  }
}
.menu__txt-wrapper h3 {
  background: url("../img/menu_ttl-bg.png") no-repeat center / contain;
  width: 6.8rem;
  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;
}
@media (max-width: 767px) {
  .menu__txt-wrapper h3 {
    background: url("../img/menu_ttl-bg-sp.png") no-repeat center / contain;
    width: max(130px, 24.3rem);
    height: max(36.3px, 6.8rem);
    margin: 0 0 2.5rem;
  }
}
.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;
}
@media (min-width: 768px) {
  .menu__txt-wrapper h4,
  .menu__txt-wrapper p {
    text-orientation: upright;
  }
  .menu__txt-wrapper p {
    letter-spacing: 0;
  }
}
.menu__img {
  width: 60rem;
  height: 100%;
  flex-shrink: 0;
}
@media (max-width: 767px) {
  .menu__img {
    width: 100%;
  }
}
/* wrap */
.menu .wrap {
  width: 110rem;
  margin: 0 auto 8rem auto;
  display: flex;
  justify-content: space-between;
}
.menu .wrap > * {
  width: 48%;
  background: #fff;
  padding: 3.5rem;
}
.menu .wrap > * div {
  display: flex;
  flex-direction: row-reverse;
  margin-top: 2.5rem;
}
.menu .wrap h3 {
  background: url("../img/menu_ttl-bg.png") no-repeat center;
  background-size: 100% auto;
  width: 4.8rem;
  height: 17.2rem;
  font-size: 2.4rem;
  line-height: 1;
  margin-left: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 0.7rem;

}
.menu .wrap h3,
.menu .wrap h4,
.menu .wrap p {
  writing-mode: vertical-rl;
}
.menu .wrap h4 {
  font-size: 2rem;
}
.menu .wrap p {
  height: 30rem;
  margin-right: 2.5rem;
  padding-right: 3rem;
  border-right: solid 1px #000;
  text-orientation: upright;
}
@media (max-width: 767px) {
  .menu .wrap {
    width: auto;
    padding: 0 4rem;
    display: block;
  }
  .menu .wrap > * {
    width: 100%;
    background: #fff;
    padding: 3.5rem;
  }
  .menu .wrap > *:nth-of-type(1) {
    margin-bottom: 4rem;
  }  
  .menu .wrap > * div {
    display: flex;
    flex-direction: column;
  }
  .menu .wrap h3 {
    background: url("../img/menu_ttl-bg-sp.png") no-repeat center / contain;
    width: max(130px, 24.3rem);
    height: max(36.3px, 6.8rem);
    margin: 0 0 2.5rem;
    padding-bottom: 0;
    font-size: 4rem;
  }
  .menu .wrap h3,
  .menu .wrap h4,
  .menu .wrap p {
    writing-mode:horizontal-tb;
  }
  .menu .wrap h4 {
    font-size: 3.2rem;
  }
  .menu .wrap p {
    height: auto;
    margin-right: 0;
    padding-right: 0;
    padding-top: 2.5rem;
    margin-top: 2.5rem;
    border-right: none;
    border-top: solid 1px #000;
  }

}



/*============================
	gallery
============================*/
.gallery {
  background: url("../img/texture-2.jpg") center / 100% auto;
  padding: 8rem 0 11rem;
}
.gallery__slider {
  margin: 6rem 0 8rem;
  background: #000;
  padding: 2rem 0;
}
.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/access_bg.png) no-repeat right top -10rem,
    url(../img/menu_deco_1.png) no-repeat left 2rem top 2rem,
    url(../img/menu_deco_3.png) no-repeat right 5rem bottom -12rem,
    url(../img/texture-1.jpg) center top;
  background-size:
    50% auto,
    20rem auto,
    30rem auto,
    88rem auto;
  padding: 7.7rem 0 16rem;
  position: relative;
}
@media (max-width: 767px) {
  .access {
    background: 
      url(../img/access_bg.png) no-repeat right top -10rem,
      url(../img/menu_deco_1.png) no-repeat left 2rem top 2rem,
      url(../img/menu_deco_3.png) no-repeat right 5rem bottom -12rem,
      url(../img/texture-1.jpg) center top;
    background-size:
      80% auto,
      20rem auto,
      30rem auto,
      88rem auto;
  }
}
.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%;
  }
  .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);
}


/*============================
	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;
  }
}