@charset "UTF-8";

/* p- */

/* ローディングの全体 */
.loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #80070C;
  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: 99px;
  opacity: 0;
  margin: 0 auto;
  animation: logoFadeIn 1s ease-out 0.5s forwards;
}

.loading p {
  position: absolute;
  bottom: 100px;
  width: 100%;
  left: 0;
  text-align: center;
  color: #fff;
  font-size: 1.4rem;
}

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


.p-headintg {
    text-align: center;
    margin: 0 0 80px;
    font-family: "EB Garamond", serif;
    font-weight: 400;
    font-style: normal;
    font-size: 3.2rem;
}

.p-headintg .logo {
    display: block;
    width: 93px;
    margin: 20px auto 0;
}

.p-more {
  font-family: "proxima-nova", sans-serif;
  font-weight: 400;
  text-align: right;
}

.p-more a {
  text-decoration: none;
  color: #000;
  font-size: 1.6rem;
  display: inline-block;
  padding: 0 40px 0 0;
  position: relative;
}

.p-more a::before {
  position: absolute;
  content: "";
  right: 0;
  top: -4px;
  width: 30px;
  height: 30px;
  background: url("../../images/top/ico_more_bk.svg")no-repeat;
  background-size: 30px;
  background-position: center;
  transition: .3s;
}
@media screen and (min-width: 768px){

  .p-more a:hover::before {
    right: -5px;
    background: url("../../images/top/ico_more_bk_on.svg")no-repeat;
    background-size: 30px;
    background-position: center;
  }


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


}


/* p-fv */

.p-fv {
    background: #F7F5F5;
}

.p-fv-content {
    width: calc(100% - 180px);
    margin: 0 0 0 auto;
    padding: 40px 40px 0 0;
    position: relative;
}

.p-fv-content::before {
  position: absolute;
  content: "";
  background: url("../../images/top/bg_sec01_pc.png")no-repeat;
  background-size: cover;
  width: 100%;
  height: 100%;
  bottom: 0;
  left: 0;
}

.p-fv-slider {
  position: relative;
  width: 100%;
  height: calc(100svh - 40px);
  overflow: hidden;
}

.p-fv-slider .slick-track {
  height: calc(100svh - 40px);
}


.slick-slide {
  height: 100% !important;
  display: flex;
  align-items: stretch;
}

.slick-slide > div {
  height: 100%;
  width: 100%;
}

.slick-list {
  height: 100% !important;
}


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

.p-fv-img p {
  font-size: 2.4rem;
  font-weight: bold;
  right: 40px;
  bottom: 60px;
  line-height: 2;
  z-index: 10;
  text-align: right;
  pointer-events: none;
  color: #fff;
  position: absolute;
}

.p-fv-img-inner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.p-fv-img picture,
.p-fv-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.zoom-animate {
  animation: zoomIn 10s ease-in-out forwards;
}

@keyframes zoomIn {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.1);
  }
}

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

  .p-fv-content {
    padding: 20px 20px 0;
    width: 100%;
  }

  .p-fv-content::before {
    height: 80px;
    bottom: 0;
    background: url("../../images/top/bg_sec01_sp.png")no-repeat;
    background-size: cover;
  }

  .p-fv-logo {
    position: absolute;
    width: 119px;
    z-index: 3;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
  }

  .p-fv-img {
    height: calc(100vh - 20px);
  }

  .p-fv-img p {
    font-size: 1.8rem;
    right: 10px;
    bottom: 30px;
    line-height: 1.7;
  }


}

/* p-concept */

.p-concept {
  padding: 120px 0 0 80px;
  background: url("../../images/top/bg_sec01_pc.png")no-repeat;
  background-size: cover;
  overflow: hidden;
}

.p-concept-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  background: #fff;
}


.p-concept-content {
    position: relative;
    z-index: 2;
    padding: 80px 100px 100px;
}

.p-concept-ttl {
    color: #B21920;
}

.p-concept-lead {
    color: #555555;
    font-size: 2.2rem;
    padding: 0 0 80px;
    line-height: 2.2;
}


.p-concept-block .m-lead {
  padding: 0 0 20px;
}

.p-concept-block {
    max-width: 800px;
}

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

  .p-concept-ttl {
      max-width: 345px;
      padding-bottom: 20px;
  }

  .p-concept-pic {
      position: absolute;
      right: 0;
      top: 40px;
      max-width: 640px;
  }

  .p-concept-container::before {
    position: absolute;
    content: "";
    background: #fff;
    width: 100vw;
    height: 100%;
    left: 0;
    top: 0;
    pointer-events: none;
    z-index: 1;
  }




}


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

  .p-concept {
    padding: 80px 20px;
    background: url("../../images/top/bg_sec01_sp.png")repeat;
    background-size: 375px;
  }

  .p-concept-content {
      padding: 60px 10px;
  }

  .p-concept-lead {
    text-align: center;
    font-size: 1.8rem;
    padding: 0 0 30px;
  }

  .p-concept-block {
    margin: 0 auto;
  }

  .p-concept-block .m-lead {
      padding: 0 10px 40px;
  }

  .p-concept-pic {
      text-align: center;
      margin: 0 auto 30px;
  }


}


/* p-activity */

.p-activity {
  background: url("../../images/top/bg_ptn01.png")repeat, #568541;
  background-size: 200px;
  padding: 0 0 200px 80px;
  overflow: hidden;
}

.p-activity-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 80px 0;
}

.p-activity-container::before {
  position: absolute;
  content: "";
  background: #fff;
  width: 100vw;
  height: 667px;
  left: 0;
  top: 0;
  pointer-events: none;
  z-index: 1;
}

.p-activity-content {
    position: relative;
    max-width: 600px;
    margin: 0 0 0 auto;
    z-index: 2;
    padding: 0 0 80px;
}

.p-activity-pic {
  position: absolute;
  z-index: 2;
  max-width: 446px;
  width: 38%;
  left: -40px;
  top: 40px;
}

.p-activity-lead {
    color: #555555;
    font-size: 2.2rem;
    padding: 0 0 20px;
    line-height: 2.2;
}

.p-activity-slider {
  position: relative;
  z-index: 1;
  width: calc(50% + 120px);
  margin: 0 0 0 auto;
}

.p-activity-slider__item {
  width: 320px;
  margin: 0 5px;
}

.p-activity-button {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 30px 40px;
}

.p-activity-button .p-more a {
  color: #fff;
}

.p-activity-button .p-more a::before {
  background: url('../../images/top/ico_more_wt.svg') no-repeat;
  background-size: 30px;
  background-position: center;
}

@media screen and (min-width: 768px){
  .p-activity-button .p-more a:hover::before {
    background: url('../../images/top/ico_more_wt_on.svg') no-repeat;
    background-size: 30px;
    background-position: center;
  }
}

@media screen and (min-width: 1160px){
  .p-activity-button .p-more {
      text-align: left;
  }


}


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

  .p-activity {
    padding: 80px 20px;
  }

  .p-activity-pic {
    display: none;
  }

  .p-activity-container {
    width: 100%;
    margin: 0 auto;
    padding: 60px 20px 0;
  }

  .p-activity-container::before {
    min-height: 678px;
    width: 100%;
  }

  .p-activity-lead {
    text-align: center;
    font-size: 1.8rem;
    padding: 0 0 30px;
  }

  .p-activity-content {
    margin: 0 auto;
    padding: 0 0 40px;
  }

  .p-activity-slider {
      width: calc(100% + 40px);
      margin-left: -20px;
  }

  .p-activity-slider__item {
    width: 280px;
  }

  .p-activity-button {
      margin: 30px auto 0;
      padding: 0;
  }




}


/* p-location */

.p-location {
  padding: 80px 0 0;
  position: relative;
  background: #9E2227;
background: linear-gradient(180deg, rgba(158, 34, 39, 1) 39%, rgba(255, 255, 255, 1) 90%);
}

.p-location .p-headintg {
  color: #fff;
}

.p-location::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  z-index: 1;
  background: url("../../images/top/bg_ptn02.png")repeat;
  background-size: 200px;
  pointer-events: none;
  top: 0;
  left: 0;
}

.p-location-content {
    position: relative;
    z-index: 1;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 30px;
}

.p-location .m-archive {
    padding-bottom: 0;
    position: relative;
    z-index: 1;
}


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

  .p-location-content .p-more {
    margin-top: 40px;
  }


}

/* p-bottom */

.p-bottom {
  position: relative;
  overflow: hidden;
  padding: 200px 0 0;
  z-index: 2;
}

.p-bottom__track {
  display: flex;
  width: max-content;
  animation: marquee 40s linear infinite; /* ←速度調整 */
}

.slide-inner {
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.p-bottom img {
  height: auto;
  max-height: 100%;
  width: auto;
  display: block;
  object-fit: cover;
}

/* 右から左へ一定速度で流れる */
@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}


/* .p-bottom {
  position: relative;
  height: auto;
  overflow: hidden;
  z-index: 2;
  padding: 200px 0 0;
}

.p-bottom .slick-slide {
  display: flex !important;
  align-items: flex-end;
  justify-content: center;
}

.p-bottom .slide-inner {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  height: 100%;
}

.p-bottom img {
  height: auto;
  max-height: 100%;
  width: auto;
  object-fit: cover;
  display: block;
} */

#tripla-searching-app {
    /* border: solid 1px #000000; */
    max-width: 605px;
    margin: 0 auto;
}

.p-book {
    padding: 150px 30px;
}



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

  .p-bottom {
    padding: 160px 0 0;
  }

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

}
