@charset "UTF-8";
html, body {
  /*font-family: 'Noto Sans JP', sans-serif, "Helvetica Neue", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo;*/
  font-family: "Noto Serif JP", '游明朝', 'Yu Mincho', YuMincho, 'Hiragino Mincho Pro', serif;
  font-weight: 300;
  letter-spacing: 0.05rem;
  color: #1a1a1a;
  position: relative;
  overflow-x: hidden;
}
html, h1, h2, h3, h4, h5, h6 {
  font-size: 10px;
}
body {
  font-size: 1.5rem;
  line-height: 1.6;
}
/* Header
----------------------------*/
.top header {
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0));
}
header {
  display: flex;
  justify-content: space-between;
  height: 60px;
}
.logo {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0;
  padding: 0 0 0 1.5rem;
}
.logo a {
  font-size: 2rem;
}
.top header .logo a {
  color: #fff;
  text-shadow: 0px 0px 8px rgba(0, 0, 0, 0.6);
}
.page header .logo a {
  color: #1a1a1a;
}
header.transform {
  background: rgba(255, 255, 255, 0.8);
  transition: all 0.5s 0s ease;
}
header.transform .logo a {
  text-shadow: none;
  color: #1a1a1a;
}
/* Nav
----------------------------*/
.hamburger {
  display: block;
  position: fixed;
  z-index: 99999;
  right: 0;
  top: 0;
  width: 60px;
  height: 60px;
  cursor: pointer;
  text-align: center;
  background: #38332c;
}
.hamburger:hover {
  opacity: 0.8;
}
.hamburger span {
  display: block;
  position: absolute;
  width: 26px;
  height: 1px;
  left: 18px;
  background: #fff;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.hamburger span:nth-child(1) {
  top: 13px;
}
.hamburger span:nth-child(2) {
  top: 22px;
}
.hamburger span:nth-child(3) {
  top: 31px;
}
.hamburger.active span:nth-child(1) {
  top: 22px;
  left: 18px;
  background: #fff;
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.hamburger.active span:nth-child(2), .hamburger.active span:nth-child(3) {
  top: 22px;
  background: #fff;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  transform: rotate(45deg);
}
.hamburger p {
  color: #fff;
  position: absolute;
  font-size: 1.2rem;
  bottom: 5px;
  left: 2px;
  right: 0;
  margin: 0;
}
.slide-menu {
  position: fixed;
  z-index: 3;
  top: 0;
  right: 0;
  color: #fff;
  background: rgb(255 255 255 / 100%);
  text-align: center;
  opacity: 0;
  transition: opacity .6s ease, visibility .6s ease;
  padding: 6rem 0 0;
  height: 100vh;
  visibility: hidden;
}
.slide-menu .sp-logo {
  transition: all 0.5s 0s ease;
  position: absolute;
  top: 1.75rem;
  left: 0;
}
.slide-menu .sp-logo img {
  height: 35px;
  margin: 1.3rem 1.5rem 0;
}
.slide-menu.active {
  opacity: 100;
  z-index: 9999;
  visibility: visible;
  width: 100%;
}
.slide-menu > ul {
  margin: 0 auto;
  width: 100%;
  display: flex;
  font-size: 1.5rem;
  flex-wrap: wrap;
  padding: 0;
  border-bottom: solid 1px #d1d1d1;
}
.slide-menu > ul li {
  list-style-type: none;
  padding: 0;
  width: 100%;
  transition: .4s all;
  position: relative;
  z-index: 99999;
  border-top: solid 1px #d1d1d1;
}
.slide-menu > ul li a {
  display: block;
  color: #1b2400;
  padding: 2.25rem 1.5rem;
  text-decoration: none;
  position: relative;
  text-align: center;
  font-size: 1.6rem;
}
.slide-menu > ul li a:hover {
  background-color: #554F48;
  color: #fff;
}
.slide-menu > ul li:last-of-type {
  background: #38332c;
}
.slide-menu > ul li:last-of-type a {
  color: #fff;
}
/* MV
----------------------------*/
.mv {
  position: relative;
}
.swiper-mv .swiper-slide img {
  width: 100%;
  display: block;
  height: 45vh;
  object-fit: cover;
  object-position: bottom;
}
.swiper-mv .swiper-slide:first-of-type img {
  object-position: 50% 70%;
}
.mvtext {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  z-index: 1;
  color: #fff;
  font-size: 2.4rem;
  letter-spacing: 0.25rem;
  display: inline-block;
  margin-bottom: 1rem;
  text-shadow: 0px 0px 8px rgba(0, 0, 0, 0.6);
}
.mvtext li:first-of-type:before {
  content: '';
  position: absolute;
  bottom: -15px;
  display: inline-block;
  width: 50px;
  height: 1px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  background-color: #fff;
  text-shadow: 0px 0px 7.92px rgba(0, 0, 0, 0.6);
}
.mvtext li:last-of-type {
  font-size: 2rem;
  text-align: center;
  margin-top: 3rem;
}
.mvtext span {
  opacity: 0;
}
.mvtext.appeartext span {
  animation: text_anime_on 5s ease-out forwards;
}
@keyframes text_anime_on {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.mv-info {
    position: absolute;
    font-weight: 600;
    background: #fff;
    bottom: -0.1rem;
    z-index: 1;
    padding: 1.5rem;
    width: 87vw;
    left: 100%;
    transform: translateX(-100%);
}

/* Main
----------------------------*/
section {
  width: 100%;
  height: 100%;
  padding: 5rem 0;
  position: relative;
}
h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: 4rem;
  margin-bottom: 4rem;
  text-align: center;
}
h2 span {
  font-family: "Noto Serif JP", serif;
  font-weight: 400;
  color: #282828;
  display: block;
  font-size: 1.8rem;
  margin-top: 0.5rem;
}
.top h3 {
  font-size: 3rem;
  margin-bottom: 2rem;
  font-weight: 400;
}
.page h3 {
  font-size: 2rem;
  margin: 6rem 0 1.5rem;
  font-weight: 500;
  padding: 0 1.5rem 0.2rem;
  border-left: 2px solid #4b4b4b;
}
h4 {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.6rem;
  margin: 0 auto 1.5rem;
  text-align: center;
}
h5 {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  font-weight: 400;
}
main section.sct-leadtext p, main section.sct-spot p {
  text-align: center;
  margin-bottom: 2.5rem;
  line-height: 2.25;
  font-weight: 400;
}
.sct-leadtext [class^="col"] {
  background: url("../images/bg-cocept.png") no-repeat;
  background-position: center;
  background-size: 65%;
}
.sct-leadtext p:last-of-type {
  margin-bottom: 0;
}
.sct-lg-img .row {
  margin-bottom: 9rem;
}
.sct-lg-img .row [class^="col"]:last-of-type {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem 3rem 0;
}
.animation-img-wrap img {
  object-fit: cover;
  height: 350px;
  width: 100%;
}
.gallery-wrap {
  margin-top: 6rem;
}
.gallery-wrap img {
  object-fit: cover;
  height: 250px;
  width: 100%;
}
.sct-facilities .row-max-img {
  margin-top: 4rem;
  margin-bottom: 4rem;
}
main .sct-facilities h5 + p {
  font-size: 1.4rem;
  margin-bottom: 2.5rem;
}
.max-img-wrap img {
  object-fit: cover;
  height: 320px;
  width: 100%;
  overflow: overlay;
}
.max-img-wrap div {
  position: relative;
  background: #fff;
  padding: 4rem 1.5rem 3rem;
  width: 100%;
}
.max-img-wrap div p {
  line-height: 1.85;
}
.bg-beige-wrap {
  background: #f9f6ed;
  margin: 2rem 0;
  padding: 2.5rem;
}
.bg-beige-wrap dt {
  margin-bottom: 0.5rem;
  font-weight: 500;
}
.bg-beige-wrap dd {
  font-size: 1.4rem;
  margin: 0 0 1.75rem;
}
.sct-access {
  padding: 0 0 5rem;
}
.sct-access dt {
  font-weight: 500;
}
.sct-access dd {
  margin: 1rem 0 3rem;
  padding: 0 0 3rem 1.4rem;
  border-bottom: 1px solid #ebebeb;
  line-height: 2;
  font-size: 1.4rem;
}
.sct-access .address {
  font-size: 1.8rem;
  margin-bottom: 3rem;
}
.sct-access dd:last-of-type {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}
.sct-spot {
  background: url("../images/bg-spot.jpg") no-repeat;
  background-size: 100%;
  background-position: bottom;
}
.sct-spot ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(5, 1fr);
  gap: 5px;
  margin: 1rem auto;
  padding: 0;
  background: #fff;
}
.sct-spot ul li {
  margin: 0;
}
.sct-spot ul li img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.sct-cta [class^="col"] {
  padding: 5rem 2rem;
  margin-bottom: 0rem;
}
.sct-cta [class^="col"]:first-of-type {
  background: url("../images/cta01.jpg") no-repeat;
  background-size: 100%;
}
.sct-cta [class^="col"]:last-of-type {
  background: url("../images/cta02.jpg") no-repeat;
  background-size: 100%;
}
.sct-cta [class^="col"] a {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 1;
}
.sct-cta [class^="col"] a:hover {
  background: #fff;
  opacity: 0.3;
}
.sct-cta h2 {
  margin-bottom: 0;
  color: #fff;
}
.sct-cta h2 span {
  color: #fff;
}
.page main {
  padding-top: 10rem;
}
/* Footer
----------------------------*/
footer .row:first-of-type {
  padding: 3rem 0;
  background: #38332c;
  color: #fff;
  text-align: center;
}
footer .row:last-of-type {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.3rem;
  padding: 3rem 0;
}
.footer-menu {
  padding: 0 3rem;
  font-size: 1.4rem;
}
.footer-menu li {
  display: block;
  margin: 1.5rem auto;
  transition: all 0.5s 0s ease;
  text-align: center;
}
.footer-menu li:first-of-type {
  margin-top: 0;
}
.copy {
  text-align: center;
  padding: 1rem 3rem 0;
  font-size: 1.3rem;
}
/* Media Query
-----------------------------------*/
/* Small devices (landscape phones, 576px and over, .col-sm-*)*/
@media (min-width: 576px) {
  body {
    font-size: 1.6rem;
    line-height: 1.7;
  }
	

	
  .sct-leadtext [class^="col"] {
    background-size: 55%;
  }
  .sct-spot ul {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(3, 1fr);
  }
}
/* Medium devices (tablets, 767px and under)*/
@media (max-width: 767px) {
  .text-center-lg br {
    display: none;
  }
}
/* Medium devices (tablets, 768px and over, .col-md-*)*/
@media (min-width: 768px) {
  .swiper-mv .swiper-slide img {
    height: 60vh;
  }
	
	.mv-info {
    padding: 1.75rem 4rem 1rem;
    width: max-content;
}

	
  .sct-leadtext p:last-of-type {
    font-size: 3rem;
  }
  .gallery-wrap img {
    height: 300px;
  }
}
/* Large devices (desktops, 992px and over, .col-lg-*)*/
@media (min-width: 992px) {
  header {
    transition: all 0.5s 0s ease;
    height: 83px;
  }
  .logo a {
    font-size: 2.25rem;
  }
  nav ul {
    padding: 0;
  }
  .pc-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
  }
  .pc-nav .global-menu li {
    display: inline;
    margin-left: 1.25rem;
    transition: all 0.5s 0s ease;
  }
  .pc-nav .global-menu li a {
    position: relative;
    padding: 0.5rem 1rem;
  }
  .top .pc-nav .global-menu li a {
    color: #fff;
    text-shadow: 0px 0px 8px rgba(0, 0, 0, 0.6);
  }
  .page .pc-nav .global-menu li a {
    color: #1a1a1a;
  }
  .pc-nav .global-menu li:last-of-type a {
    background: #38332c;
    color: #fff !important;
    padding: 3rem;
  }
  .pc-nav .global-menu li:last-of-type a:hover {
    background: #554F48;
  }
  .pc-nav .global-menu li:last-of-type a:hover::after {
    content: none;
  }
  .top .transform .pc-logo a, .top .transform .pc-nav .global-menu li a {
    color: #1a1a1a;
    text-shadow: none;
  }
  .pc-nav .global-menu li a:hover {
    text-decoration: none;
  }
  .pc-nav .global-menu li a::after {
    position: absolute;
    left: 0;
    content: '';
    width: 100%;
    height: 1px;
    background: #fff;
    bottom: -1px;
    transform: scale(0, 1);
    transform-origin: left top;
    transition: transform 0.3s;
    opacity: 0.7;
  }
  .transform .pc-nav .global-menu li a::after, .page .pc-nav .global-menu li a::after {
    background: #525252;
  }
  .pc-nav .global-menu li a:hover::after {
    transform: scale(1, 1); /*ホバー後、x軸方向に1伸長*/
  }
  .swiper-mv .swiper-slide img {
    height: 90vh;
  }
  .mvtext {
    font-size: 5.2rem;
  }
  .mvtext li:last-of-type {
    font-size: 2.6rem;
  }
	
	

	
	
  h2 {
    font-size: 7.2rem;
    margin-bottom: 8rem;
  }
  .top h3 {
    font-size: 5rem;
  }
  h5 {
    font-size: 2rem;
    margin-bottom: 2rem;
  }
  section {
    padding: 10rem 0;
  }
  .sct-leadtext {
    padding: 15rem 0;
  }
  .sct-leadtext [class^="col"] {
    background-size: contain;
  }
  .animation-img-wrap img {
    height: 600px;
  }
  .sct-lg-img .row {
    margin-bottom: 13rem;
  }
  .sct-lg-img .row [class^="col"]:last-of-type {
    padding: 0 4vw 5rem;
  }
  .sct-lg-img p {
    font-size: 1.8rem;
  }
  .sct-facilities {
    padding: 5rem 0 10rem;
  }
  .gallery-wrap img {
    height: 365px;
  }
  .sct-facilities .row-max-img {
    margin: 8rem 0 5rem;
  }
  .max-img-wrap img {
    height: 620px;
  }
  .max-img-wrap div {
    position: absolute;
    bottom: 0;
    right: 3rem;
    padding: 8rem 4rem 3rem;
    width: 40vw;
  }
  .bg-beige-wrap {
    margin: 2rem 0 0;
    padding: 3.5rem 4rem;
  }
  .sct-access {
    padding: 3rem 0 10rem;
  }
  .sct-access .address {
    font-size: 2rem;
  }
  .sct-spot {
    padding: 9rem 0 12rem;
  }
  .sct-spot ul {
    grid-template-columns: repeat(5, 1fr);
    grid-template-rows: repeat(2, 1fr);
    margin: 5rem auto;
  }
  .sct-cta [class^="col"] {
    padding: 15rem 2rem;
    margin-bottom: 5rem;
  }
  footer .row:first-of-type {
    padding: 6.5rem 0;
  }
  .footer-menu li {
    display: inline;
    margin: 0 2.5rem 0 0;
    text-align: left;
  }
  .copy {
    text-align: right;
    padding: 0 3rem;
  }
}
/* Extra large devices (large desktops, 1200px and over, .col-xl-*)*/
@media (min-width: 1200px) {
  .pc-nav .global-menu li {
    margin-left: 1.75rem;
  }
}
/* Extra extra large devices (extra large desktops, 1400px and over, .col-xxl-*)*/
@media (min-width: 1400px) {
  .swiper-mv .swiper-slide img {
    height: 95vh;
  }
  .max-img-wrap div {
    padding: 8rem 5rem 3rem;
    width: 30vw;
  }
  .sct-spot ul {
    margin: 5rem 11rem;
  }
}