@charset "utf-8";

body.is-loading {
  overflow: hidden;
  height: 100svh;
}

#loading-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  background: #193053;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

#loading-screen .loading-inner {
  text-align: center;
}

#loading-screen .loading-logo {
  width: 2.00rem;
  margin: 0 auto 0.2rem;
  opacity: 0;
  filter: blur(10px);
  animation: loadingLogoIn 1s ease forwards;
  animation-delay: 0.1s;
}
@media screen and (max-width: 640px) {
  #loading-screen .loading-logo {
    width: 1.50rem;
  }
}

#loading-screen .loading-logo img {
  width: 100%;
  display: block;
}

@keyframes loadingLogoIn {
  0% {
    opacity: 0;
    filter: blur(10px);
  }
  100% {
    opacity: 1;
    filter: blur(0);
  }
}

#loading-screen .loading-text {
  color: #fff;
  letter-spacing: 0.08em;
  font-size: 0.14rem;
  opacity: 0.85;
}

/*============================
コンテンツ
============================*/
* {
  margin: 0;
  padding: 0;
}

.wrap {
  position: relative;
}

.js-sticky {
  position: sticky;
  top: 0;
  overflow: hidden;
  height: 100vh;
}
@media screen and (max-width: 640px) {
  /* SP: GSAP ピン・Lenis と連動しない通常スクロール用に sticky を無効化 */
  .js-sticky {
    position: relative;
    top: auto;
    overflow: visible;
    height: auto;
    min-height: 100dvh;
  }
  .js-sticky.lower_section {
    min-height: 100dvh;
    height: auto;
    display: flex;
    flex-direction: column;
  }
}

.js-sticky .js-sticky-img {
  width: 100%;
  height: 100dvh;
  position: relative;
  z-index: 0;
}
.js-sticky .js-sticky-img img {
  width: 110%;
  height: 110%;
  object-fit: cover;
}
.js-sticky .js-sticky-img video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.js-sticky .js-sticky-img::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  /* background: rgba(0, 0, 0, 0.6); */
  z-index: 1;
}


/*============================
MV
============================*/
.mv_text_wrap {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  text-align: center;
  text-shadow: 0 0 0.2rem rgba(0, 0, 0, 0.5);
  color: #fff;
}
@media screen and (max-width: 640px) {
  .mv_text_wrap {
    top: 45%;
    box-sizing: border-box;
  }
}

.mv_text_wrap .title {
  font-size: 0.56rem;
  font-weight: 400;
  line-height: 1.5;
  margin-bottom: 0.3rem;
  letter-spacing: 0.10em;
}
@media screen and (max-width: 640px) {
  .mv_text_wrap .title {
    font-size: 0.36rem;
    text-align: center;
  }
  :lang(ja) {
    .mv_text_wrap .title {
      position: relative;
      left: 0.10rem;
    }
  }
}

.mv_text_wrap .title.js-text-animation .char {
  display: inline-block;
  opacity: 0;
  transform: translateY(30px);
}
.mv_text_wrap .text.js-subtitle-animation {
  opacity: 0;
  transform: translateY(20px);
}

.mv_sub_txt {
  font-size: 0.18rem;
  letter-spacing: 0.09em;
  position: absolute;
  writing-mode: vertical-rl;
  top: 50%;
  left: 0.40rem;
  transform: translateY(-50%);
  color: #FFF;
}
@media screen and (max-width: 640px) {
  .mv_sub_txt {
    writing-mode: horizontal-tb;
    top: 54vh;
    left: 0;
    width: 100%;
    text-align: center;
    font-size: 0.14rem;
  }
}

/* セクションテキスト */
.sec_text_wrap {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: calc((100% - 12rem) / 2);
  width: 12rem;
  color: #fff;
}
@media screen and (max-width: 640px) {
  .sec_text_wrap {
    left: 0;
    width: 100%;
    padding:0  0.15rem;
    box-sizing: border-box;
  }
}

/* スクロールダウンの位置 */
.scroll {
  position: absolute;
  right: 50%;
  bottom: 0.70rem;
  writing-mode: vertical-rl;
  color: #fff;
}
/* 線のアニメーション部分 */
.scroll::before {
  animation: scroll 2s infinite;
  background-color: #FFF;
  opacity: 0.5;
  bottom: -0.55rem;
  content: "";
  height: 0.50rem;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  width: 1px;
  z-index: 2;
}
/* 線の背景色 */
.scroll::after {
  background-color: transparent;
  bottom: -0.55rem;
  content: "";
  height: 0.50rem;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  width: 1px;
}
/* 線のアニメーション */
@keyframes scroll {
  0% {
    transform: scale(1, 0);
    transform-origin: 0 0;
  }
  50% {
    transform: scale(1, 1);
    transform-origin: 0 0;
  }
  51% {
    transform: scale(1, 1);
    transform-origin: 0 100%;
  }
  100% {
    transform: scale(1, 0);
    transform-origin: 0 100%;
  }
}

/*============================
About
============================*/
.-about {
  position: relative;
}

.-about .in {
  z-index: 1;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 640px) {
  .-about .in {
    top: 40%;
    width: 90%;
  }
}

.-about .in .txt_box {
  padding-bottom: 0.60rem;
  margin: auto;
  color: #FFF;
}
@media screen and (max-width: 640px) {
  .-about .in .txt_box {
    padding: 0;
    padding-bottom: 0;
  }
}

.-about .in .txt_box .txt {
  font-size: 0.15rem;
  font-weight: 600;
  line-height: 2;
  max-width: 5.20rem;
}
@media screen and (max-width: 640px) {
  .-about .in .txt_box .txt {
    font-size: 0.14rem;
    max-width: 100%;
    letter-spacing: 0;
  }
}

.-about .ph_wrap {
  width: 35.42vw;
  height: 41vw;
  min-width: 4.69rem;
  min-height: 5.74rem;
  max-width: 6.00rem;
  max-height: 7.00rem;
  position: absolute;
  top: 50%;
  left: calc(50% + 1rem);
  transform: translateY(-36%);
  z-index: 1;
}
@media screen and (max-width: 640px) {
  .-about .ph_wrap {
    width: calc(100% - 1.60rem);
    height: 55vw;
    top: auto;
    bottom: 3svh;
    left: auto;
    right: 0;
    min-width: auto;
    min-height: auto;
    transform: none;
  }
}

.-about .ph_wrap .ph {
  width: 49.37%;
  position: absolute;
}

.-about .ph_wrap .ph.-ph01 {
  top: 0;
  left: 0;
}
@media screen and (max-width: 640px) {
  .-about .ph_wrap .ph.-ph01 {
    height: 80%;
  }
}

.-about .ph_wrap .ph.-ph02 {
  bottom: 0;
  right: 0;
}
@media screen and (max-width: 640px) {
  .-about .ph_wrap .ph.-ph02 {
    height: 80%;
  }
}

.-about .deco {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 11.45rem;
  z-index: 2;
}
@media screen and (max-width: 640px) {
  .-about .deco {
    width: 90%;
  }
}

.-about .deco img {
  display: block;
  margin: auto;
}

.sec_text_wrap.-about {
  top: auto;
  bottom: 0;
  left: 0;
  width: 100%;
  transform: translateY(-20%);
  text-align: center;
}

@media screen and (max-width: 640px) {
  .-about .more_btn {
    margin: 0.20rem auto 0;
  }
}

/*============================
CTS / RJCC
============================*/
.-cts {
  position: relative;
}

.-cts::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  background-color: rgba(0,0,0,0.75);
  z-index: 1;
}
@media screen and (max-width: 640px) {
  .-cts::before {
    width: 100%;
    background-color: rgba(0,0,0,0.55);
  }
}

.-cts .in {
  z-index: 1;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.-cts .in .txt_box {
  padding-bottom: 0.60rem;
  padding-left: 0.50rem;
  margin: auto;
  color: #FFF;
}
@media screen and (max-width: 640px) {
  .-cts .in .txt_box {
    padding: 0.20rem 0.20rem 0;
  }
}

.-cts .in .txt_box .title_wrap {
  padding-bottom: 0.30rem;
}
@media screen and (max-width: 640px) {
  .-cts .in .txt_box .title_wrap {
    text-align: center;
  }
}

.-cts .in .txt_box .title_wrap .en {
  font-size: 0.80rem;
  font-weight: 400;
  font-family: "Tiro Bangla", serif;
}
@media screen and (max-width: 640px) {
  .-cts .in .txt_box .title_wrap .en {
    font-size: 0.40rem;
  }
}

.-cts .in .txt_box .title_wrap .en span {
  display: block;
  font-size: 0.50rem;
  padding-bottom: 0.10rem;
}
@media screen and (max-width: 640px) {
  .-cts .in .txt_box .title_wrap .en span {
    font-size: 0.30rem;
  }
}

.-cts .in .txt_box .txt {
  font-size: 0.15rem;
  font-weight: 600;
  line-height: 2;
  max-width: 4.50rem;
}
@media screen and (max-width: 640px) {
  .-cts .in .txt_box .txt {
    font-size: 0.14rem;
    max-width: 100%;
    letter-spacing: 0;
  }
  .-cts .in .txt_box .more_btn {
    margin: 0.20rem auto 0;
  }
}


/*============================
Facilities
============================*/
.-facilities {
  position: relative;
  background-color: #FFF;
}

.-facilities .sec_text_wrap {
  top: auto;
  bottom: 10vh;
  left: 50%;
  width: 10.00rem;
  transform: translate(-50% , 0);
  color: #222;
  /* mix-blend-mode: exclusion; */
}
@media screen and (max-width: 640px) {
  .-facilities .sec_text_wrap {
    width: 90%;
    left: 50%;
    bottom: 7vh;
    transform: translate(-50%, -10vh);
    text-align: center;
  }
}

.-facilities .sec_text_wrap span {
  display: inline-block;
  background-color: #FFF;
}

.-facilities .sec_text_wrap .title_wrap {
  width: 100%;
  max-width: 5.50rem;
  /* color: #222; */
}

.-facilities .sec_text_wrap .title_wrap .en {
  font-size: 0.80rem;
  line-height: 1.16;
  margin-bottom: 0.10rem;
}
@media screen and (max-width: 640px) {
  .-facilities .sec_text_wrap .title_wrap .en {
    font-size: 0.40rem;
    line-height: 1.3;
  }
}

.-facilities .sec_text_wrap .title_wrap .jp {
  font-size: 0.14rem;
  line-height: 2;
}
@media screen and (max-width: 640px) {
  .-facilities .sec_text_wrap .title_wrap .jp {
    text-align: left;
    letter-spacing: 0;
  }
}

.-facilities .more_btn {
  position: absolute;
  right: calc(50% - 5.00rem);
  bottom: 1.00rem;
  z-index: 1;
}
@media screen and (max-width: 640px) {
  .-facilities .more_btn {
    position: static;
    margin: 0.20rem auto 0;
  }
  .-facilities .more_btn span {
    background-color: transparent;
  }
}

.-facilities .more_btn.-bg_black a {
  border: 0.02rem solid #FFF;
  background-color: rgba(0,0,0,0.8);
  backdrop-filter: blur(10px);
}
@media (hover: hover) {
  .-facilities .more_btn.-bg_black a:hover {
    background-color: transparent;
    box-shadow: 0 0 0.10rem rgba(0,0,0,0.4);
  }
  .-facilities .more_btn.-bg_black a:hover::after {
    background-color: rgba(255,255,255,0.9);
  }
}

.-facilities .parts {
  top: auto;
  bottom: 0.72rem;
  left: 55%;
  width: 10.00rem;
  transform: translate(-50% , 0);
  position: absolute;
  text-align: right;
}

.-facilities .slides {
  padding-top: 0.85rem;
  height: 100%;
  box-sizing: border-box;
}
@media screen and (max-width: 640px) {
  .-facilities .slides {
    padding-top: 1.10rem;
  }
}

.slick-list {
  overflow: visible;
}

.-facilities .slick-slide {
  margin: 0 0.10rem;
  position: relative;
  width: 40vw;
}
@media screen and (max-width: 640px) {
  .-facilities .slick-slide {
    margin: 0 0.05rem;
    width: 80vw;
  }
}

.-facilities .slick-slide .slide {
  position: relative;
}

.-facilities .slick-slide .slide.-type01 {
  top: 0.25rem;
}

.-facilities .slick-slide  .slide.-type02 {
  top: 0.90rem;
}
@media screen and (max-width: 640px) {
  .-facilities .slick-slide  .slide.-type02 {
    top: 0.75rem;
  }
}

.-facilities .slick-slide  .slide.-type03 {
  top: 0.50rem;
}

/*============================
Facilities
============================*/
.-service {
  position: relative;
}

.-service::before {
  content: "";
  width: 50%;
  height: 100%;
  background-color: rgba(0,0,0,0.75);
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
}
@media screen and (max-width: 640px) {
  .-service::before {
    width: 100%;
    background-color: rgba(0,0,0,0.55);
  }
}

.-service .sec_text_wrap {
  width: 50%;
  top: 55%;
  left: 50%;
  transform: translate(0, -50%);
  z-index: 2;
  text-align: center;
}
@media screen and (max-width: 640px) {
  .-service .sec_text_wrap {
    width: 80%;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
  }
}

.-service .sec_text_wrap .en {
  font-size: 0.80rem;
  padding-bottom: 0.20rem;
}
@media screen and (max-width: 640px) {
  .-service .sec_text_wrap .en {
    font-size: 0.40rem;
  }
}

.-service .sec_text_wrap .txt {
  font-size: 0.15rem;
  line-height: 2;
  text-align: center;
  max-width: 4.50rem;
  margin: auto;
}
@media screen and (max-width: 640px) {
  .-service .sec_text_wrap .txt {
    font-size: 0.14rem;
    text-align: justify;
    letter-spacing: 0;
  }
}

/*============================
Hokkaido
============================*/
.-hokkaido {
  background-color: #FFF;
  position: relative;
}

.-hokkaido .ph {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
}

.-hokkaido .in {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}
@media screen and (max-width: 640px) {
  .-hokkaido .in {
    top: 53%;
  }
}

.-hokkaido .in .sec_text_wrap {
  color: #222;
}
@media screen and (max-width: 640px) {
  .-hokkaido .in .sec_text_wrap {
    padding: 0 0.30rem;
    box-sizing: border-box;
  }
}

.-hokkaido .in .sec_text_wrap .title_wrap {
  position: relative;
}

.-hokkaido .in .sec_text_wrap .title_wrap .en {
  font-size: 0.80rem;
}
@media screen and (max-width: 640px) {
  .-hokkaido .in .sec_text_wrap .title_wrap .en {
    font-size: 0.40rem;
    /* text-align: center; */
    padding-bottom: 0.20rem;
  }
}


.-hokkaido .in .sec_text_wrap .title_wrap .en span {
  position: relative;
}

.-hokkaido .in .sec_text_wrap .title_wrap .en span::after {
  content: "";
  width: 2.00rem;
  height: 0.86rem;
  background-image: url(../img/top/hokkaido_ttl_deco.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  right: -0.50rem;
  bottom: -0.05rem;
}
@media screen and (max-width: 640px) {
  .-hokkaido .in .sec_text_wrap .title_wrap .en span::after {
    width: 1.00rem;
    height: 0.43rem;
    right: -0.25rem;
    bottom: -0.03rem;
  }
}

.-hokkaido .in .sec_text_wrap .txt {
  font-size: 0.15rem;
  line-height: 2;
  width: 100%;
  max-width: 4.55rem;
}
@media screen and (max-width: 640px) {
  .-hokkaido .in .sec_text_wrap .txt {
    font-size: 0.14rem;
    width: 100%;
    text-align: justify;
    letter-spacing: 0;
    width: 62%;
  }
  .-hokkaido .in .sec_text_wrap .more_btn {
    max-width: 62%;
  }
}

/*============================
fAQ
============================*/
.-faq {
  position: relative;
}

.-faq .in {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}

.-faq .in .sec_text_wrap {
  text-align: center;
}

.-faq .in .sec_text_wrap .title_wrap {
  padding-bottom: 0.30rem;
}

.-faq .in .sec_text_wrap .title_wrap .en {
  font-size: 0.80rem;
  font-weight: 400;
  font-family: "Tiro Bangla", serif;
}
@media screen and (max-width: 640px) {
  .-faq .in .sec_text_wrap .title_wrap .en {
    font-size: 0.40rem;
  }
}

.-faq .in .sec_text_wrap .txt {
  font-size: 0.15rem;
  line-height: 2;
}
@media screen and (max-width: 640px) {
  .-faq .in .sec_text_wrap .txt {
    font-size: 0.14rem;
    padding: 0 0.20rem;
    text-align: justify;
    letter-spacing: 0;
  }
}
