@charset "UTF-8";
/*
    Template: swell
    Theme Name: SWELL CHILD
    Theme URI: https://swell-theme.com/
    Description: SWELLの子テーマ
    Version: 1.0.0
    Author: LOOS WEB STUDIO
    Author URI: https://loos-web-studio.com/

    License: GNU General Public License
    License URI: http://www.gnu.org/licenses/gpl.html
*/

body {
  overscroll-behavior-y: none;
}

/* ------------------------------------------------------
 * トップページ　背景グラデーション
 * ------------------------------------------------------ */


.gradation01 {
background-image: linear-gradient(
to top,
rgba(5, 8, 20, 0) 0%,
rgba(5, 8, 20, 0.4) 15%,
rgba(5, 8, 20, 0.4) 85%,
rgba(5, 8, 20, 0) 100%
);
}


.l-header {
  background: rgba(255,255,255,0);
  box-shadow: none;
}
.l-header__logo img{
	margin-top:15px;
	
}

/* ------------------------------------------------------
 * トップページ　H2デザイン
 * ------------------------------------------------------ */
.section-base {
position: relative;
}

.section-title {
position: absolute;
top:-20px;
}

.section-title__sub {
font-size: 2em;
letter-spacing: 0em;
line-height: 0;
font-weight: Bold;

}

.stay-bg {
  position: relative;
}

.stay-bg::before {
content: "";
position: absolute;
left: 0%;
top: -50%;
width: 200%;
height: 100%;
background: url("https://jp-resort.jp/wp-content/uploads/2026/03/stay_bg.png") 50% top / contain no-repeat;
}

.wave-title {
position: relative;
display: inline-block;
padding: 0 45px;
}
.wave-title:before, .wave-title:after {
content: '';
position: absolute;
top: 50%;
display: inline-block;
width: 44px;
height: 2px;
background-color: var(--color_main);
-webkit-transform: rotate(-60deg);
transform: rotate(-60deg);
}
.wave-title:before {
left:0;
}
.wave-title:after {
right: 0;
}

.table-border_none td{
	padding-top:3pt;
	padding-bottom:3pt;
	border: none;
}


h3 .floor-title {
color:var(--color_main);
  position: relative;
  display: inline-block;
  padding: 8pt 20px; /* 文字と線の間の余白 */
}

h3 .floor-title::before,
h3 .floor-title::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 200%; /* 線の長さ */
  height: 1px; /* 線の太さ */
background: var(--color_main);
}

h3 .floor-title::before {
  right: 130%;
}

h3 .floor-title::after {
  left: 130%;
}

/* ======================================================
 * ヘッダー共通設定
 * ====================================================== */

/* PC：ヘッダー固定 & 透明 */
@media (min-width: 960px) {
  .l-header {
    position: fixed !important;
    background: transparent;
  }

  .p-breadcrumb {
    margin-top: calc(var(--logo_size_pc) + 32px);
  }
}

/* ヘッダー幅を常にフル */
.l-header .l-container {
  max-width: 100% !important;
}

/* グローバルナビ非表示 */
nav#gnav {
  display: none;
}


/* ======================================================
 * PCでもハンバーガーメニューを表示
 * ====================================================== */

.l-header__menuBtn.sp_ {
  display: block !important;
}

.-series .l-header__inner {
  align-items: center;
}

.p-spMenu {
  display: block;
}


/* ======================================================
 * フルスクリーン開閉メニュー（基本構造）
 * ====================================================== */

.p-spMenu__inner {
  --color_menu_text: var(--color_text);
  --color_menu_bg: var(--color_bg);

  width: 100%;
  height: 100%;
  transform: translateX(0) !important;
  opacity: 0;
  transition: opacity .5s ease-out !important;
}

/* 右スライド設定（SWELL対策） */
.-right .p-spMenu__inner {
  transform: translateX(0);
  opacity: 0;
  transition: opacity .45s;
}

/* メニューオープン時 */
[data-spmenu="opened"] .p-spMenu__inner {
  opacity: 1;
}

/* 背景（ぼかし） */
.p-spMenu__inner::before {
  background: var(--color_menu_bg);
  opacity: 1;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

/* オーバーレイ透明 */
.p-spMenu__overlay {
  background: transparent;
}


/* ======================================================
 * フルスクリーンメニュー内部
 * ====================================================== */

.p-spMenu__body {
overflow-y: auto;
  color: var(--color_menu_text);
  opacity: 0;
  transform: translateY(20px);
}

/* スマホ時フォントサイズ    font-size: 5vw; */
@media (max-width: 599px) {
  .p-spMenu__body {

  }
}

/* メニュー表示アニメーション */
[data-spmenu="opened"] .p-spMenu__body {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 1s ease-in, transform .7s ease-out;
}


/* ======================================================
 * メニュー内リンク
 * ====================================================== */

.p-spMenu__inner a {
  padding: 1em 0;
  text-align: center;
  border-bottom: none;
  transition: transform .5s;
}

.p-spMenu__inner a:hover {
  background-color: inherit;
  transform: scale(1.1);
}

/* リスト装飾削除 */
.c-gnav .sub-menu a::before,
.c-listMenu a::before {
  content: none;
}


/* ======================================================
 * 不要ウィジェット削除
 * ====================================================== */

.c-widget__title.-spmenu,
.p-spMenu__nav {
  display: none;
}


/* ======================================================
 * 閉じるボタン
 * ====================================================== */

.c-iconBtn {
  color: var(--color_menu_text);
}

@media (min-width: 960px) {
  .-right .p-spMenu__closeBtn {
    right: var(--swl-pad_container, 0);
    height: calc(var(--logo_size_pc) + 32px);
  }
}


/* ======================================================
 * ハンバーガーアイコン
 * ====================================================== */

.-menuBtn .c-iconBtn__icon {
  width: 30px;
  height: 2px;
  background-color: var(--color_text);
  display: grid;
  place-items: center;
  transition: transform .3s;
}

.-menuBtn .c-iconBtn__icon::before,
.-menuBtn .c-iconBtn__icon::after {
  content: '';
  grid-area: 1 / 1;
width:30px;
  height: 2px;
  background-color: var(--color_text);
  transition: transform .3s;
}
.-menuBtn .c-iconBtn__icon::before {
  transform: translateY(-10px);
}

.-menuBtn .c-iconBtn__icon::after {
  transform: translateY(10px);
}

/* オープン時 */
[data-spmenu="opened"] .-menuBtn .c-iconBtn__icon {
  background-color: transparent;
}

[data-spmenu="opened"] .-menuBtn .c-iconBtn__icon::before {
  transform: rotate(45deg);
}

[data-spmenu="opened"] .-menuBtn .c-iconBtn__icon::after {
  transform: rotate(-45deg);
}


/* ======================================================
 * ボタンラベル
 * ====================================================== */

.l-header__menuBtn .c-iconBtn::after,
.p-spMenu__closeBtn .c-iconBtn::after {
  font-size: 10px;
  line-height: 10px;
  transform: translateY(12px);
}

.l-header {
    z-index: 99999;
}

/* ======================================================
 * メインビジュアル
 * ====================================================== */

.mv{
position: relative;
height: 100vh;
overflow: hidden;}

/* キャッチコピー */
.mv-copy{position: absolute;
top: 42%;
left: 50%;
transform: translate(-50%, -50%);
text-shadow: none;
writing-mode: vertical-rl;
text-orientation: upright;
backdrop-filter: blur(0px);

font-size:1.1em;
letter-spacing: 0.2em;
color: white;
}

@media (max-width: 768px){
  .mv-copy{
    font-size: 1em;
    letter-spacing: 0.15em;
  }
}

/* キャッチコピー */
.mv-copy2{

text-orientation: upright;
	
letter-spacing: 0.2em;
color: white;
}

@media (max-width: 768px){
  .mv-copy2{
    font-size: 1em;
    letter-spacing: 0.15em;
  }
}

/* ======================================================
 * 固定バナーPC
 * ====================================================== */

.follow-banner {
  position: fixed;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
z-index: 20;
}

.follow-banner a {
  display: flex;
  align-items: center;
  gap: 0.5em;
  writing-mode: vertical-rl;
  color: #fff;
  background-color: var(--color_main);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 1.5em 1em;
  border-radius: 10px 0 0 10px;
  transition: opacity 0.25s;
}

.follow-banner a:hover {
  opacity: 0.7;
}

.follow-banner .swl-inline-icon::after {
  left: 50%;
  transform: translateX(-50%);
}

/* スマホでは非表示に */
@media screen and (max-width: 599px) {
  .follow-banner {
    display: none;
  }
}

/* ======================================================
 * TOP_コンテンツ
 * ====================================================== */

.top_contents-bg {
  background-color: var(--color_bg);
}

/* ======================================================
 * TOP_SCROLL
 * ====================================================== */

.p-mainVisual__scroll {
position: absolute;
top: 80vh;
left: 50vw;
transform: translate(-50%, -50%);
}


/* ===============================
矢印非表示
=============================== */

.p-mainVisual__scrollArrow {
display: none;
}


/* ===============================
SCROLL文字（縦）
=============================== */

.p-mainVisual__scrollLabel {
writing-mode: vertical-rl;
letter-spacing: 6px;
font-size: 9px;
opacity: 1;
position: relative;
padding-left: 18px; /* 線との距離 */
}


/* ===============================
縦ライン（中央基準に調整）
=============================== */

.p-mainVisual__scrollLabel::before {
content: "";
position: absolute;
left: -0.5px;
top: 51%;
transform: translateY(-50%);
width: 1.1px;
height: 170px;
background: rgba(255,255,255,1);
}


/* ===============================
動く丸（中央基準に調整）
=============================== */

.p-mainVisual__scrollLabel::after {
content: "";
position: absolute;
left: 0;
top: 50%;
width: 7px;
height: 7px;
background: rgba(255,255,255,1);
border-radius: 50%;
transform: translate(-50%, -60px);
animation: scrollDotMove 3.2s cubic-bezier(.4,.0,.2,1) infinite;

}


/* ===============================
丸アニメーション（下で少し停止）
=============================== */

@keyframes scrollDotMove {

  0% {
    transform: translate(-50%, -60px);
    opacity: 0;
  }

  25% {
    opacity: 1;
  }

  70% {
    transform: translate(-50%, 60px);
    opacity: 1;
  }

  100% {
    transform: translate(-50%, 66px);
    opacity: 1;
  }

  100% {
    transform: translate(-50%, 66px);
    opacity: 0;
  }

}
