@charset "UTF-8";

/* 初期状態では背景色なし */
.l-header {
  background-color: transparent;
  transition: background-color 0.3s ease; /* スクロール時の色変更を滑らかにする */
}

/* ローディングの全体 */
.loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #c1a55e;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}

.loading.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

/* ロゴ画像のアニメーション */
@keyframes logoFadeIn {
  0% {
    opacity: 0;
    transform: scale(0.95);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

.loading .img {
  max-width: 200px;
  opacity: 0;
  margin: 0 auto;
  animation: logoFadeIn 1s ease-out 0.5s forwards;
}

.loading__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* 読み込みラインバー */
.loading-line {
  position: relative;
  width: 200px;
  height: 2px;
  margin-top: 50px;
  border-bottom: 1px solid #fff;
  overflow: hidden;
}

.loading-line::before {
  content: "";
  position: absolute;
  background: #fff;
  height: 100%;
  width: 100%;
  right: 0;
  bottom: 0;
  animation: shrinkWidth 5s linear infinite;
}

/* 横棒が縮んでいくアニメーション */
@keyframes shrinkWidth {
  0% {
    width: 100%;
  }
  100% {
    width: 20%;
  }
}




.p-content {
  /* padding: 0 70px 0 0; */
  position: relative;
  width: calc(100% - 84px);
}

.p-heading {
    position: relative;
    max-width: 1080px;
    margin: 0 auto;
    font-size: 4.2rem;
    padding: 20px 0 100px;
    line-height: 1;
    font-family: 'Sorts Mill Goudy', serif;
}



.p-container {
  display: flex;
  gap: 60px;
  align-items: flex-start;
  max-width: 1248px;
  margin: 0 auto;
  padding: 0 64px 0 20px;
}

/* 英語見出し */
.p-heading-en {
  position: sticky;
  top: 135px;
  writing-mode: vertical-rl;
  font-size: 1.2rem;
  white-space: pre;
  letter-spacing: 0.5em;
  border-right: solid 1px #231815;
  padding: 0 5px 0 0;
  z-index: 10;
  width: 24px;
}


.p-link {
    text-align: right;
    font-size: 1.6rem;
    line-height: 1;
}

.p-link a {
  position: relative;
  display: inline-block;
  text-decoration: none;
  padding: 0 20px 5px 0;
  background: url("../../images/top/ico_arrow.svg")no-repeat;
  background-size: 15px;
  background-position: right top 6px;
}

.p-link a::before {
  position: absolute;
  content: "";
  width: 0;
  height: 1px;
  background: #231815;
  left: 0;
  bottom: 0;
  transition: .3s;
}


.parallax_content{
  height: 600px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-image: url("../../images/top/pic_parallax_pc.jpg");
}

@media screen and (min-width: 768px){

  .p-link a:hover::before {
    width: 100%;
  }

  .l-gNav-list li a {
    color: #fff;
    transition: .3s;
  }



  .l-header.scrolled .l-gNav-list li a {
    color: #000;
  }

  .parallax_content{
    background-attachment: fixed;
  }

}

@media screen and (max-width: 767px){

  .p-container {
      padding: 0 0 0 10px;
      gap:  20px;
  }

  .p-content {
    padding: 0;
    width: calc(100% - 44px);
  }

  .p-heading {
      padding: 0 0 90px;
  }


  .p-heading-en {
    margin-top: 130px;
    top: 110px;
      font-size: 1.2rem;
  }

  .loading .img {
    max-width: 114px;
  }

  .loading-line {
    width: 100px;
  }


  .parallax_box {
    position: relative;
    overflow: hidden;
    height: 320px;
  }

  .parallax_content {
    height: 100%;
    background-image: url("../../images/top/pic_parallax_sp.jpg");
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
  }

  .l-header .menu {
    border: solid 1px #fff;
    background: transparent;
  }

  .l-header .menu.is-bk {
    border: solid 1px #000;
    background: #000;
  }

  .l-header.scrolled .menu {
    border: solid 1px #000;
    background: #000;
  }

}

/* p-fv */

.p-fv {
  overflow: hidden;
  position: relative;
  height: 100svh;
}

.p-fv_movie {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%);
  z-index: 1;
}

.vsc-controller {
  display: none !important;
}


.p-fv_movie video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.p-fv-slider {
  height: 100svh;
  margin-inline: auto;
  overflow: hidden; /* 画像がはみ出ないようにする */
  width: 100%;
}

.p-fv-slider .slick-track {
  height: 100svh;
}


.p-fv-slider__item {
    height: 100svh;
    width: 100%; /* これを追加 */
}


.p-fv-slider__pic {
  overflow: hidden;
  position: relative;
}

.p-fv-slider__img-wrap {
  width: 100%;
  height: 100%;
}

.p-fv-slider__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


.add-animation .p-fv-slider__img-wrap {
  animation: zoomUp 15s linear 0s normal both;
}

@keyframes zoomUp {
  0% {
    transform: scale(1.15);
  }
  100% {
    transform: scale(1);
  }
}

.add-animation {
  animation: zoomUp 15s linear 0s normal both;
}

.p-fv-copy {
  position: absolute;
  bottom: 40px;
  left: 80px;
  z-index: 2;
  color: #fff;
}


.p-fv-copy__item {
  position: relative;
  padding: 0 0 20px;
  font-size: 2.6rem;
  letter-spacing: 0.4em;
  line-height: 2;
}

.p-fv-copy__line {
  position: absolute;
  width: 300px;
  left: 0;
  bottom:0;
  height: 2px;
  border-bottom: solid 1px #fff;
}


.p-fv-copy__line::before {
  position: absolute;
  content: "";
  background: #fff; /* 線の色 */
  height: 100%;
  width: 100%; /* 最初は100% */
  right: 0;
  bottom: 0;
  animation: shrinkWidth 5s linear infinite; /* アニメーション */
}

@keyframes shrinkWidth {
  0% {
    width: 100%; /* 初期状態で幅100% */
  }
  100% {
    width: 20%; /* 最後は幅100%に戻る */
  }
}

.p-fv-logo {
  display: none;
}

@media screen and (min-width: 768px){
  .p-fv-slider__item {
      display: flex!important;
      justify-content: space-between;
      height: 100svh;
      width: 100%; /* これを追加 */
  }

  .p-fv-slider__pic {
    width: 50%;
  }

}


@media screen and (max-width: 767px){
  .p-fv-copy {
    bottom: 20px;
    left: 20px;
  }


  .p-fv-copy__item {
    padding: 0 0 10px;
    font-size: 1.8rem;
  }

  .p-fv-copy__line {
    width: 220px;
  }

  .p-fv-logo {
    display: block;
    width: 114px;
    position: absolute;
    z-index: 2;
    left: 50%;
    margin-left: -57px;
    top: 50%;
    transform: translateY(-50%);
  }

  .p-fv-slider__pic {
    height: 50%;
  }

}

/* p-about */


.p-about {
  position: relative;
    padding: 100px 0 310px;
    background: url("../../images/top/bg_about_pc.png")no-repeat;
    background-size: cover;
    background-position: center;
}


.p-about-inner {
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 30px;
    position: relative;
}

.p-about-inner .block {
    max-width: 485px;
    margin: 0 0 0 auto;
    position: relative;
    z-index: 5;
}

.p-about .pic02 {
    position: absolute;
    width: 400px;
    z-index: 1;
}

.p-about-inner .heading {
    font-size: 3.2rem;
    padding: 0 0 20px;
}

.p-about-inner .en {
    color: #C1A55E;
    font-size: 2.8rem;
    line-height: 1;
}

.p-about-inner .txt {
    margin: 70px 0 0;
}

.p-about-inner .txt p + p {
    padding: 30px 0 0;
}

.p-about-inner .txt p {
    line-height: 2;
}

.p-about-inner .txt .lead {
  color: #555555;
  font-size: 1.4rem;
  font-family: 'Sorts Mill Goudy', serif;
}

@media screen and (min-width: 768px){
  .p-about .pic01 {
      position: absolute;
      right: 0;
      bottom: -30px;
      width: 400px;
      z-index: 1;
  }

  .p-about .pic02 {
      left: 0;
      top: 60px;
  }

}


@media screen and (max-width: 767px){
  .p-about {
      padding: 60px 0 100px;
      background: url("../../images/top/bg_about_sp.png")no-repeat;
      background-size: cover;
      background-position: center;
  }

  .p-about .pic01 {
    max-width: 237px;
    margin: 0 auto 60px;
  }

  .p-about-inner {
    padding: 0 20px 190px;
  }

  .p-about-inner .heading {
      font-size: 2.2rem;
      padding: 0 0 10px;
  }

  .p-about-inner .en {
      font-size: 1.6rem;
  }

  .p-about-inner .txt {
      margin: 50px 0 0;
      position: relative;
      z-index: 2;
  }

  .p-about-inner .txt .lead {
    font-size: 1.2rem;
  }

  .p-about .pic02 {
      width: 208px;
      bottom: 0;
      right: 0;
  }

}


/* p-stay */

.p-stay {
    padding: 120px 0;
    background: #ECE7DB;
    background: linear-gradient(360deg, rgba(236, 231, 219, 1) 0%, rgba(255, 255, 255, 1) 100%);
}

.p-stay .p-heading {
  padding-bottom: 20px;
}

.p-stay .txt {
  font-size: 1.3rem;
}

.p-stay-inner {
    margin: 80px auto 0;
}



.p-stay .pic {
    margin: 0 0 30px;
}

.p-stay .heading {
  font-size: 2.2rem;
  font-weight: 500;
  padding: 0 0 20px;
}

.p-stay .heading small {
  font-size: 1.3rem;
  display: block;
  padding: 0 0 10px;
}

.p-stay .lead {
  font-size: 1.4rem;
  padding: 0 0 20px;
  line-height: 1.7;
}

@media screen and (min-width: 768px){
  .p-stay-inner {
      display: flex;
      justify-content: space-between;
  }

  .p-stay .block {
      width: 49%;
      max-width: 520px;
  }

}


@media screen and (max-width: 767px){

  .p-stay {
    padding: 80px 0;
  }

  .p-stay .block + .block {
    margin-top: 60px;
  }

  .p-stay .inner {
    padding: 0 20px 0 0;
  }

  .p-stay .heading small {
    font-size: 1.2rem;
  }

  .p-stay .p-heading {
      padding-bottom: 10px;
  }

  .p-stay-inner {
      margin: 60px auto 0;
  }

}


/* p-facility */

.p-facility {
    padding: 120px 0;
}

.p-facility-block + .p-facility-block {
  margin-top: 60px;
}

.p-facility-block .en {
  border-bottom: solid 1px #ccc;
  display: block;
  font-size: 2.4rem;
  padding: 0 0 20px;
  margin: 0 0 25px;
}

.p-facility-block .heading {
  font-size: 2rem;
  color: #555555;
  padding: 0 0 20px;
}

.p-facility-block .p-link {
  margin-top: 10px;
}


@media screen and (min-width: 768px){
  .p-facility-block {
      display: flex;
      justify-content: space-between;
      align-items: center;
  }

  .p-facility-slider {
      max-width: 400px;
      width: 38%;
  }

  .p-facility-block .detail {
      max-width: 600px;
      width: 56%;
  }
}


@media screen and (max-width: 767px){

  .p-facility-block .detail {
    margin: 20px 0 0;
    padding: 0 20px 0 0;
  }

  .p-facility-block .heading {
      font-size: 1.8rem;
  }

}

/* p-plan */

.p-plan {
  background: #F9F7F3;
  padding: 100px 0;
}

.p-plan-heading {
  margin: 0 auto 80px;
  padding: 0 30px;
  font-size: 4.2rem;
  text-align: center;
}

.p-plan-heading span {
  font-size: 1.3rem;
  display: block;
  padding: 10px 0 0;
}

.p-plan-inner {
  padding: 0 50px;
}

.p-plan-slider {
  max-width: 920px;
  margin: 0 auto;
}

.p-plan-slider__item {
  margin: 0 15px;
}

.p-plan-slider__item a {
  display: block;
  position: relative;
  width: 100%;           /* 親の幅に対してレスポンシブ */
  padding-top: 100%;
  background-color: #ddd; /* 背景色（任意） */
  transition: .3s;
}


.p-plan-slider .slick-prev,
.p-plan-slider .slick-next
{
  width: 60px;
  height: 60px;
  z-index: 2;
  transform: inherit;
  margin-top: -15px;
}

.p-tourist-slider .slick-prev
{
  left: -15px;
}



.p-plan-slider .slick-prev:before,
.p-plan-slider .slick-next:before
{
  display: none;
}


@media screen and (min-width: 768px){

  .p-plan-slider__item a:hover {
    opacity: .7;
  }


}

@media screen and (max-width: 767px){

  .p-plan {
    padding: 80px 0 60px;
  }

  .p-plan-heading {
    margin: 0 auto 50px;
    padding: 0 20px;
    font-size: 3.8rem;
  }

  .p-plan-heading span {
    font-size: 1.2rem;
  }

  .p-plan-inner {
    position: relative;
    padding: 0 0 0 10px;
  }

  .p-plan-slider::before {
    position: absolute;
    content: "";
    background: #F9F7F3;
    width: 30px;
    height: 100%;
    left: 0;
    top: 0;
    z-index: 1;
  }

  .p-plan-slider__item {
    margin: 0 15px 0 0;
  }


  .p-plan-slider .slick-prev,
  .p-plan-slider .slick-next {
    width: 50px;
    height: 50px;
    left: 5px;
  }

  .p-plan-slider .slick-prev {
    top: 105px;
  }

  .p-plan-slider .slick-next
  {
    right: inherit;
    top: 165px;
  }

}


/* p-news */

.p-news {
  padding: 120px 0;
}

.p-news-container {
  max-width: 820px;
  margin: 0 auto;
}

.p-news-archive {
    width: 100%;
    margin: 0 auto 60px;
}

.p-news-archive tr {
  border-bottom: solid 1px #CCCCCC;
}

.p-news-archive th {
  text-align: left;
  padding: 26px 10px;
  color: #777777;
  font-size: 1.4rem;
  width: 160px;
  vertical-align: top;
  font-family: 'Sorts Mill Goudy', serif;
}

.p-news-archive td {
  font-size: 1.6rem;
  vertical-align: top;
  padding: 25px 0;
}

.p-news-archive td a {
  text-decoration: none;
}

.p-news-more {
    font-size: 1.6rem;
    text-align: right;
    line-height: 1;
}

.p-news-more a {
    display: inline-block;
    text-decoration: none;
    padding: 0 20px 0 0;
    background: url("../../images/top/ico_arrow.svg")no-repeat;
    background-size: 15px;
    background-position: right top 2px;
}

@media screen and (min-width: 768px){

  .p-news-archive td a:hover {
    text-decoration: underline;
  }

}


@media screen and (max-width: 767px){

  .p-news {
    padding: 80px 0;
  }

  .p-news-container {
    padding: 0 20px 0 0;
  }

  .p-news-archive {
    margin: 0 auto 40px;
  }

  .p-news-archive th {
    width: 100%;
    display: block;
    font-size: 1.3rem;
    padding: 20px 0 10px;
  }

  .p-news-archive tr:first-child th {
    padding-top: 0;
  }

  .p-news-archive td {
    display: block;
    font-size: 1.4rem;
    padding: 0 0 20px;
  }

  .p-news-more {
      font-size: 1.4rem;
  }


}


/* p-access */

.p-access {
  padding: 120px 0;
}

.p-access-map {
    max-width: 1080px;
    margin: 0 auto 10px;
    height: 400px;
}

.p-access-map iframe {
  width: 100%;
  height: 100%;
}

.p-access-info {
  margin: 0 auto;
  line-height: 1.7;
}

.p-access-info tr {
  border-bottom: solid 1px #ccc;
}

.p-access-info th {
  text-align: left;
  font-size: 1.8rem;
}

.p-access-info td {
  padding: 45px 0;
  font-size: 1.6rem;
}

.p-access-info td small {
  font-size: 1.3rem;
}

@media screen and (min-width: 768px){

  .p-access-info th {
    vertical-align: middle;
    padding: 0 10px;
    width: 210px;
  }


}

@media screen and (max-width: 767px){

  .p-access {
    padding: 40px 0 80px;
  }

  .p-access-map {
    height: 300px;
  }

  .p-access-info th {
    display: block;
    width: 100%;
    padding: 30px 0 0;
  }

  .p-access-info td {
    display: block;
    padding: 15px 0 30px;
    font-size: 1.4rem;
  }
  .p-access-info td small {
    font-size: 1.2rem;
  }

  .p-access-info {
    width: calc(100% - 20px);
  }

}



/* p-tourist */

.p-tourist {
  padding: 50px 0 120px;
  background: #F9F7F3;
}

.p-tourist-slider {
  max-width: 980px;
  margin: 0 auto;
}

.p-tourist-slider .block {
  width: 280px;
  margin: 0 15px;
}

.p-tourist-slider .pic {
  width: 100%;
  aspect-ratio: 7 / 8; /* 幅7に対して高さ8 */
  margin: 0 0 20px;
}

.p-tourist-slider .ttl {
    font-size: 1.8rem;
    padding: 0 0 10px;
}

.p-tourist-slider .lead {
    font-size: 1.4rem;
}

.p-tourist-slider .slick-prev,
.p-tourist-slider .slick-next
{
  width: 60px;
  height: 60px;
  z-index: 2;
  top: 130px;
  transform: inherit;
}

.p-tourist-slider .slick-prev
{
  left: -15px;
}



.p-tourist-slider .slick-prev:before,
.p-tourist-slider .slick-next:before
{
  display: none;
}


.p-tourist-inner {
  padding: 0 50px;
}


@media screen and (min-width: 768px){


  .p-tourist-slider .slick-next
  {
    right: -15px;
  }
}

@media screen and (max-width: 767px){
  .p-tourist {
    padding: 80px 0;
  }

  .p-tourist .p-heading-en {
    margin-top: 174px;
  }

  .p-tourist-inner {
    position: relative;
    padding: 0 0 0 20px;
  }

  .p-tourist-slider {
    position: relative;
  }


  .p-tourist-slider .block {
      margin: 0 10px 0 0;
  }

  .p-tourist-slider .slick-prev,
  .p-tourist-slider .slick-next {
    width: 50px;
    height: 50px;
    left: -25px;
  }

  .p-tourist-slider .slick-prev {
    top: 105px;
  }

  .p-tourist-slider .slick-next
  {
    right: inherit;
    top: 165px;
  }
}



/* p-night */

.p-night {
  position: relative;
}

.p-night img {
  width: 100%;
}

.p-night p {
    position: absolute;
    top: 130px;
    right: 100px;
    color: #C1A55E;
    font-size: 4.2rem;
}

.p-night p small {
    font-size: 2.2rem;
}


@media screen and (max-width: 767px){

  .p-night p {
      width: 100%;
      text-align: center;
      top: 90px;
      right: 0;
      font-size: 2.2rem;
  }

  .p-night p small {
      font-size: 1.4rem;
  }

}
