@charset "UTF-8";
html { box-sizing:border-box} 
*, *::before, *::after { box-sizing:inherit}
/* ========================================= */
/* 共通部分 */
/* ========================================= */
html {
    font-size: 100%;
    background-color: #fff;
}
body {
    background-color: #fff;
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-weight: 400;
    line-height: 1.7;
    letter-spacing: 0.07em;
    margin: 0;
    font-size: 17px;
    overflow-x: hidden; /* 横方向のスクロールを非表示にする */
}
body.menu-open {
  overflow: hidden;/* メニュー開いてるときはスクロールしない */
}
a {
    text-decoration: none;
}
img {
    max-width: 100%;
    height: auto;
}
p {
    color: #000;
}
h2{
    color: #000;
    font-size: 3.5rem;
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: 700; 
    letter-spacing: 0.1em;
    margin-bottom:0;
}
h3{
    color: #434343;
    font-size: 1.2rem;
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-weight: 500;
    letter-spacing: 0.18em; 
}
h3 span{
    color:#bc1e1e;
}
li{
    list-style: none;
}
.bg-black{
    background: #000;
}
.bg-gray{
    background: #F9F9F9;
}
.contents{
    max-width: 1090px;
    margin: 0 auto;
}
.br_sp{
    display: none;
}
span.text-weight{
  font-weight: 600;
}


/* ========================================= */
/* ヘッダー&ハンバーガーメニュー */
/* ========================================= */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 15px 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-sizing: border-box;
  z-index: 1002;
  transition: background-color 0.3s ease;
  background-color: transparent;
}
a.logo {
    height: 50px;
  }
.logo img{
    width: 60px;
    height: auto;
}
.header-right-nav {
    display: flex;
    align-items: center;
    gap: 20px; /* ボタンとハンバーガーの間隔 */
}
/* 予約するボタン */
.header-reserve-btn {
  font-weight: 600;
    display: block; 
    padding: 6px 45px;
    border: 2px solid #fff;
    color: #fff;
    background-color: #b22222;
    font-size: 0.9rem;
    text-decoration: none;
    border-radius: 50px;
    white-space: nowrap; 
    outline: 1px solid;
    outline-color: #b22222;
    outline-offset: 0px;
    transition: .4s;
}
/* スクロール時のカラー変更 */
/* 黒テーマ */
.site-header.black-theme .header-reserve-btn {
    border: 2px solid #b22222;
}
.site-header.black-theme .hamburger-icon span {
  background: #000;
}
.site-header.black-theme .hamburger-menu.active .hamburger-icon span {
  background: #fff !important;
}
/* ハンバーガーメニュー */
.hamburger-menu {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
    position: relative;
}
/* ハンバーガーアイコン */
.hamburger-icon {
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 30px;
  height: 25px;  
  justify-content: space-between;
  z-index: 1001;
  transition: transform 0.3s ease;
}
/* ハンバーガーの線 */
.hamburger-icon span {
    display: block;
    height: 3px;
    width: 100%;
    background: #fff;
    border-radius: 2px;
    transition: all 0.3s ease;
}
/* ハンバーガーメニュー内  */
.menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 50vw;
  height: 100vh; 
  background: #000;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 40px 50px;
  gap: 15px;
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  transform: translateX(100%);
  transition: transform 0.4s ease, opacity 0.4s ease, visibility 0.4s ease;
  z-index: 999; 
  overflow-y: auto;
  box-sizing: border-box;
}
.menu a {
  transition: 0.3s;/* ホバー対応 */
}
/* メニュー表示状態（アクティブ） */
.menu.active {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}
/* メニューリストとサブリンク */
.menu-list,
.sub-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.menu-list li,
.sub-links li {
  margin: 10px 0;
}
/* TOPページリスト */
.menu-list li a {
  color: #fff;
  font-weight: 500;
  font-size: 1rem;
  text-decoration: none;
}
.menu-parent {
  display: inline-block;
  margin-bottom: 10px;
}
/* 子階層リンク（ONECAGEとはなど） */
.child-links {
  list-style: none;
  padding-left: 20px; /* 子階層のインデント */
}
.child-links li {
  margin-bottom: 8px;
}
.child-links a {
  text-decoration: none;
}
.child-links a::before {
  content: "・";
  margin-right: 5px;
  color: #B22222;
}
/* サブリンク（利用規約など） */
.sub-links{
    margin: 0 0 10px 0;
}
.sub-links a {
  font-size: 1rem;
  font-weight: 500;
  color: #fff;
  text-decoration: none;
}
/*  ボタン */
.menu-buttons {
  display: flex;
  flex-wrap: wrap;
}
.btn {
  padding: 10px 20px;
  border: none;
  font-size: 1rem;
  color: #fff;
  background: #B22222;
  text-decoration: none;
  text-align: center;
  font-weight: 600;
  width: 200px; 
}
.btn.line {
  background: #fff;
  color: #b22222;
}
/* SNSアイコン */
.sns-links {
  display: flex;
  gap: 18px;
  align-items: center;
  margin-top: 20px;
}
/* 会社情報 */
.company-info p{
  font-size: 12px;
  color: #ccc;
}
/* ハンバーガーアイコンが「×」に変形 */
.hamburger-menu.active .hamburger-icon span:nth-child(1) {
  transform: translateY(12px) rotate(45deg);
}
.hamburger-menu.active .hamburger-icon span:nth-child(2) {
  opacity: 0;
}
.hamburger-menu.active .hamburger-icon span:nth-child(3) {
  transform: translateY(-10px) rotate(-45deg);
}
/* 背景ぼかしオーバーレイ */
.overlay-blur {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  backdrop-filter: blur(8px);
  background: rgba(0, 0, 0, 0.2);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
}
/* クラスが付いたら表示 */
.overlay-blur.active {
  opacity: 1;
  visibility: visible;
}
/* ========================================= */
/* ファーストビュー */
/* ========================================= */
.fv {
    position: relative;
}
.fv-custom {
  position: relative;
  width: 100%;
  height: 100vh;
  background-color: #0d0d0d; /* 黒背景 */
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}
.fv-left-text,
.fv-right-text {
  position: absolute;
  font-size: 8.4vw;
  font-weight: 700;
  font-family: "Montserrat", sans-serif;
  writing-mode: vertical-rl;
  letter-spacing: 0.1em;
  user-select: none;
  z-index: 1;
  opacity: 0;
  transform: translateY(0); /* 初期リセット */
  
}
.fv-left-text {
  left: 0;
  top: 0;
  height: 100%;
  display: flex;
  align-items: center;
  color: rgba(255, 255, 255, 0.16);
  padding-left: 20px;
  writing-mode: vertical-lr;
  transform: rotate(180deg);
}
.fv-right-text {
  right: 0;
  top: 0;
  height: 100%;
  color: rgba(67, 67, 67, 0.16);
  display: flex;
  align-items: center;
  padding-right: 20px;
  z-index: 4;
}
.fv-center-copy {
  opacity: 0;
  transform: translateY(20px);
}
.fv-center-copy p{
    text-align: center;
    font-size: 3.4rem;
    color: #fff;
    font-weight: 700;
    font-family: "Zen Kaku Gothic New", sans-serif;
    letter-spacing: 0.18em;
    line-height: 2;
    padding: 0 20px;
}
.fv-triangle-red,
.fv-triangle-white {
  opacity: 0; /* 初期状態は非表示 */
  transform: translateY(100px); /* ← 一旦少し下（赤は後で上） */
}
.fv-triangle-white {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 100vh 60vh 0vh 0vh;
  border-color: transparent #f7f7f7 transparent transparent;
  z-index: 0;
}
.fv-triangle-red {
  position: absolute;
  top: 0;
  right: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 50vw 47vh 0;
  border-color: transparent rgba(178, 34, 34, 0.95) transparent transparent;
  z-index: 1;
}
/* スクロールダウン */
.scroll {
    position: absolute;
    right: 50%;
    bottom: 20%;
    writing-mode: vertical-rl;
}
.scroll::before {
    animation: scroll 2s infinite;
    background-color: #fff;
    bottom: -200px;
    content: "";
    height: 140px;
    left: 0;
    margin: auto;
    position: absolute;
    right: 0;
    width: 1px;
    z-index: 2;
}
.scroll::after {
    background-color: #ccc;
    bottom: -200px;
    content: "";
    height: 120px;
    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%;
    }
}
/* ========================================= */
/* ONECAGEとは */
/* ========================================= */
.overview{
    padding: 120px 0 100px 0;
}
.flex-box {
    display: flex;
    gap: 40px;
    align-items: center; 
    margin-top: 60px;
}
.catchcopy,
.details {
    width: 50%;          /* 左右を半分ずつに */
    box-sizing: border-box; /* paddingを入れても崩れないように */
}
.details{
    padding: 0 60px 0 0;
    line-height: 1.9;
}
.catchcopy{
    font-size: 2.3rem;
    font-weight: 500;
    padding: 0 0 0 60px;
    letter-spacing: 0.1em;
    color: #434343;
}

.bg-black{
    background: #000;
}
/* ========================================= */
/* ONECAGEが選ばれる理由 */
/* ========================================= */
/* 赤の3本線 */
.header-white.bg-black {
  position: relative;
}
.bg-black .section-divider {
  position: absolute;
  top: -20px; 
  right: 8%;
  display: flex;
  gap: 15px;
  z-index: 10;
}
.bg-black .section-divider span {
  display: block;
  width: 12px;
  height: 40px;
  background-color: #b22222; 
}
/* タイトル */
.reason h2,
.reason h3{
    text-align: center;
    color: #fff;
}
.reason{
    padding: 80px 0 120px 0;
}
/* カード */
.reason-cards {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 60px;
  flex-wrap: wrap;
}
.reason-card {  
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  padding: 100px 50px 30px;
  width: 318px; 
  height: 390px;
  transition: transform 0.4s ease;
}
.reason-card h4 {
  font-weight: 600;
  font-size: 1.15rem;
  margin: 20px 0 10px 0;
  text-align: center;
  letter-spacing: 0.1em;
}
.reason-card h4 span {
  color: #b22222;
}
.reason-card p {
  font-size: 0.95rem;
  line-height: 1.7;
}
/* 各カード背景画像の指定 */
.card1 {
  background-image: url("../img/card1.png");
}
.card2 {
  background-image: url("../img/card2.png");
}
.card3 {
  background-image: url("../img/card3.png");
}

/* ========================================= */
/* プラン料金*/
/* ========================================= */
.plan {
  padding: 80px 0 120px 0;
}
/* 各カードの色 */
.visitor {
  background: #fff;
  color: #000;
}
.member {
  background: #000;
  color: #fff!important;
}
.personal {
  background: #b22222;
  color: #fff;
}
/* 各カードの中身調整 */
.card-wrapper{
    padding: 0 20px;
}
.plan-card p{
    margin: 0;
}
.member p,
.personal p{
    color: #fff!important;
}
.plan-card {
    letter-spacing: 0.1em;
}
.plan-type{
    margin-bottom: 0;
}
.plan-card h4{
    font-size: 2.5rem;
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: 700; 
    margin: 0;
}
.price-line {
  display: flex;
  align-items: baseline;
  gap: 24px;
  margin-top: 10px;
}
.plan-card .price {
  font-size: 2.5rem;
  font-weight: 600;
  margin: 10px 0 0;
  letter-spacing: 0.1em;    
  padding-left: 5px;
  margin: 0;
}
.plan-card .price span {
  font-size: 1.5rem;
  margin-left: 5px;
}
.plan-card .note {
  font-size: 1.2rem;
  font-weight: 500;
}
.plan-card hr {
  border: none;
  border-top: 1px dotted #aaa;
  margin: 15px 0;
}
.plan-card .description {
    font-size: 1rem;
    text-align: center;
    font-weight: 500;
}
/* スライダー設定 */
/* Swiper本体 - 中央揃えを保持 */
/* Swiperコンテナ */
.swipercontainer {
  max-width: 100%;
  overflow: hidden;
  padding: 20px;
}
/* Swiper本体 */
.swiper {
  padding-bottom: 100px;
  margin-top: 60px;
  overflow: visible;
}
/* スライド共通 */
.swiper-slide {
  width: 470px !important;
  max-width: 90vw;
  height: 270px;
  border-radius: 20px;
  padding: 30px 40px;
  opacity: 0.4;
  transition: transform 0.4s ease, opacity 0.4s ease;
  flex-shrink: 0;
  box-shadow: 0 5px 10px rgb(0 0 0 / 55%);
}

/* 中央のスライド */
.swiper-slide-active {
  transform: translateY(40px) scale(1) !important;
  opacity: 1 !important;
  z-index: 5;
}
/* 非アクティブ調整 */
.swiper-slide-prev,
.swiper-slide-next {
  z-index: 3;
  opacity: 0.6;
}
.swiper-slide:not(.swiper-slide-active):not(.swiper-slide-prev):not(.swiper-slide-next) {
  opacity: 0 !important;
  visibility: hidden !important;
  z-index: 0 !important;
}
/* ナビゲーションスタイルをリセット/調整 */
.custom-prev,
.custom-next {
    /* 共通設定 */
    width: 100px;
    height: 100px;
    background: transparent;
    color: #b22222; 
    border-radius: 50%;
    top: 50%; 
    transform: translateY(-50%);
    z-index: 10;
    line-height: 100px; 
    text-align: center;
    cursor: pointer;
}
/* ページネーション */
.swiper-pagination-bullets.swiper-pagination-horizontal {
  bottom: -10px;
}
.swiper-pagination-bullet {
  background-color: #000;
}
/* 前へボタン（中央のカードの左隣に配置） */
.custom-prev {
  left: calc(50% - (470px / 2) - 150px);
}
.custom-prev::after {
    content: '❮'; 
    color: #b22222; 
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-size: 5rem;
}
/* 次へボタン（中央のカードの右隣に配置） */
.custom-next {
  right: calc(50% - (470px / 2) - 150px);
}
.custom-next::after {
    content: '❯'; 
    color: #b22222; 
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-size: 5rem;
}
/* ========================================= */
/* HOW TO USE */
/* ========================================= */
.use {
    position: relative;
    padding: 80px 0 120px 0;
}
.pin-area {
    width: 100%;
    height: 100vh; /* 画面いっぱいに固定するため */
    position: relative;
    overflow: hidden;
    /* Flexでヘッダーとコンテンツを配置 */
    display: flex;
    flex-direction: column;
}
.use-header {
  position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10;
    padding-top: 40px; /* お好みで調整 */
    height: 150px;
    pointer-events: none; /* カード操作の邪魔にならないように */
}
.use h2,
.use h3 {
    position: static;
    margin: 0;
}
.use h3 {
    margin-top: 10px;
}
/* ▼ 全体枠 */
.use-steps-wrapper {
    width: 100%;
    position: relative;
    flex: 1; 
}
.use-steps {
    position: relative;
    width: 100%;
    max-width: 1200px; 
    height: 100vh;  
    margin: 0 auto;
}
/* ▼ 共通設定：画面中央揃え */
.timeline,
.fixed-title,
.cards {
    position: absolute;
    top: 50% !important; /* 強制的に真ん中 */
    transform: translateY(-50%);
    margin: 0; /* 余計な隙間を削除 */
    padding: 0;
}
/* ▼ 縦線と赤丸 */
.timeline-visual {
    position: absolute;
    top: 50% !important; 
    transform: translateY(-50%);
    left: 15%; 
    z-index: 5;
    pointer-events: none; /* クリック不可に */
}
/* 点線と丸を内包するコンテナ */
.dot-line-container {
    position: relative;
    height: 200px; /* 5つの丸を収めるための高さ。添付画像より、ステップ間が約95pxとして計算 */
    width: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* 丸の均等配置に役立つ */
}
/* ステップの丸全体を配置するラッパー */
.dots-wrapper {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    height: 100%;
    width: 16px; 
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
/* 各ステップのグレーの丸 */
.step-dot {
    display: block;
    width: 12px;
    height: 12px;
    background: #ccc;
    border-radius: 50%;
    z-index: 2; /* 点線より手前に */
    margin-left: 2px; /* 中央の点線に合わせるための微調整 */
    flex-shrink: 0; /* 縮小させない */
}
/* ステップをつなぐ点線 */
.connecting-line {
    position: absolute;
    top: 6px;
    bottom: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    background-image: linear-gradient(to bottom, #ccc 50%, transparent 50%);
    background-size: 2px 6px; /* 点線の間隔調整 */
    z-index: 1;
}
/* 現在位置を示す移動する赤丸 */
.moving-dot {
    display: block;
    width: 18px;
    height: 18px;
    background: #b22222;
    border-radius: 50%;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%); 
    z-index: 3; 
    will-change: transform; 
}
/* 接続点線のハイライト（アニメーションで高さを変更） */
.connecting-line::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: #b22222; 
    z-index: 2;
    will-change: height;
}
/* タイトル*/
.fixed-title {
    left: calc(20% + 40px); /* 赤丸の位置(20%) + 余白(40px) */
    font-size: 2rem;
    font-weight: bold;
    color: #000;
    opacity: 0;
    z-index: 5;
    white-space: nowrap;
    letter-spacing: 0.1em;
    line-height: 1; /* 行間を詰めて上下のズレを防止 */
}
/* カードエリア（右側） */
.cards {
    right: 5%; 
    width: 530px;
    height: 320px;
    
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 1000px; /* 3D回転の奥行き */
    z-index: 1;
    transform-style: preserve-3d;
}
/* 個別のカード設定 */
.step-card {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); /* カードエリアの中心に配置 */
    
    width: 530px;
    will-change: transform, opacity;
}
/* カードの中身 */
.step-details {
    background-color: #fff;
    padding: 40px 30px;
    border-radius: 20px;
    border: 1px solid #eee;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    height: 320px;
    position: relative;
    z-index: 2;
}
.step-details ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.step-details li, 
.step-details a{
    font-size: 1.1rem;
    line-height: 1.8;
    font-weight: 500;
    margin-bottom: 8px;
    color: #000;
    letter-spacing: 0.03em;
}
.step-details a{
    color: #434343;
    transition: 0.3s;
}
.step-btn {
    position: absolute;
    bottom: 0;
    left: 0;
    display: block;
    width: 100%; /* 親要素幅に合わせる */
    font-size: 1.1rem;
    padding: 15px 20px;
    text-align: center;
    text-decoration: none;
    background: #000 !important;
    color: #fff !important;
    border-radius: 0 0 20px 20px;
    z-index: 5;
    margin: 0;
}
/* 注意書き */
.use-notice {
    background-color: #000;
    color: #fff;
    text-align: center;
    padding: 40px 20px;
    line-height: 1.8;
    border-radius: 75px;
    max-width: 945px;
    margin: -80px auto 80px;
}
.use-notice p {
    color: #fff;
    font-size: 1rem;
    margin: 0;
    font-weight: 500;
}
/* ----------------------------------------- */
/* FAQ */
/* ----------------------------------------- */
/* 赤の3本線 */
/* セクションの親要素に追加 */
.header-black.bg-gray {
  position: relative;
}
.bg-gray .section-divider {
  position: absolute;
  top: -20px; 
  right: 8%;
  display: flex;
  gap: 15px;
  z-index: 10;
}
.bg-gray .section-divider span {
  display: block;
  width: 12px;
  height: 40px;
  background-color: #b22222; 
}
/* タイトル */
.faq h2,
.faq h3{
    text-align: center;
}
.faq{
    padding: 80px 0 120px 0;
}
/* FAQ アコーディオン */
.faq-list {
  max-width: 1090px; 
  margin: 40px auto 0;
  padding: 0 20px; 
}
.faq-item {
  background-color: #fff;
  border-radius: 8px;
  margin-bottom: 20px;
  overflow: hidden; 
}
.faq-head {
  display: flex;
  align-items: center;
  padding: 30px 40px;
  cursor: pointer;
  position: relative;
  transition: .3s;
}
.faq-icon {
  color: #b22222;
  font-weight: bold;
  font-size: 1.2rem;
  margin-right: 15px;
}
.faq-question-text {
  margin: 0;
  font-weight: bold;
  font-size: 1rem;
  flex: 1;
}
.faq-toggle {
  position: relative;
  width: 20px;
  height: 20px;
  display: block;
}
.faq-toggle::before,
.faq-toggle::after {
  content: "";
  position: absolute;
  background-color: #b22222; /* 線の色 */
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: transform 0.3s;
}
.faq-toggle::before {
  width: 14px;
  height: 2px;
}
.faq-toggle::after {
  width: 2px;
  height: 14px;
}
.faq-item.is-open .faq-toggle::after {
  transform: translate(-50%, -50%) rotate(90deg);
  opacity: 0; 
}
.faq-body {
  height: 0;
  opacity: 0;
  overflow: hidden;
  transition: height 0.3s ease, opacity 0.3s ease;
}
.faq-body-inner {
  display: flex;
  align-items:baseline;
    padding: 30px 0;
    border-top: 1px dashed #ccc;
    margin: 0px 40px;
}
.faq-answer-text {
  margin: 0;
  font-size: 1rem;
  line-height: 1.6;
}
/* ----------------------------------------- */
/* Instagram */
/* ----------------------------------------- */
/* セクション全体の設定 */
.instagram-section {
    position: relative; /* 背景配置の基準点 */
    overflow: hidden;   /* 上下のコンテンツにはみ出さないようにする重要設定 */
    padding: 80px 0 120px 0; /* 上下の余白を確保 */
    background: #fff; /* 背景色を明示 */
}
.instagram-content {
    text-align: left; /* 見出しを左寄せ */
    position: relative;
    z-index: 2; /* 背景より手前に表示 */
}
.instagram-content h2 span{
    color: #b22222;
}
/* 背景の赤破線装飾 */
.bg-dash-circle {
    position: absolute;
    top: 50%; /* 上下中央に配置 */
    transform: translateY(-50%);
    width: 1000px; /* 円のサイズ（調整可能） */
    height: 1000px;
    border: 5px dashed #b22222; /* 線の太さと色 */
    border-radius: 50%;
    pointer-events: none; /* クリックを透過させる */
    z-index: 2; /* コンテンツより後ろに配置 */
    opacity: 0.3; /* 線の濃さ */
}
/* 左側の破線位置 */
.bg-dash-circle.left {
    left: 94%;
    right: auto;
}
/* 右側の破線位置 */
.bg-dash-circle.right {
    right: 94%; 
    left: auto;
}
/* グリッドレイアウト */
.instagram-list {
    display: grid;
    grid-template-columns: repeat(5, 1fr); /* 5列表示 */
    gap: 24px; /* 間隔 */
    margin-top: 40px; /* 見出しとの間隔 */
}
/* 各カード共通設定 */
.instagram-item {
    display: block;
    width: 100%;
    aspect-ratio: 1 / 1; /* 正方形 */
    border-radius: 20px; /* 角丸 */
    overflow: hidden;
    background-color: #F9F9F9; /* 薄いグレー背景 */
    background-size: cover;
    background-position: center;
    transition: 0.3s ease;
}

/* 1つ目の固定カード */
.instagram-item.static-card {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #F9F9F9;
    text-decoration: none;
}
.static-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}
.ig-icon-large {
    width: 60px;
    height: 60px;
    object-fit: contain;
}
.account-name {
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    color: #000;
    margin: 0;
    letter-spacing: 0.1em;
}
/* ----------------------------------------- */
/* セクション分割線 (SVG) のスタイル */
/* ----------------------------------------- */
.section-divider-curve{
  position: absolute;
  z-index: 1;
  width: 100%;
  height: auto;
  margin-top: -40px;
}
.section-divider-curve svg {
    display: block;
    width: 100%;
    height: auto;
    transform: scaleY(-1);
}
/* ----------------------------------------- */
/* ACCESS */
/* ----------------------------------------- */
.access {
    padding: 160px 0 120px 0;
}
.access h2,
.access h3,
.access p{
    color: #fff;
}
.access-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    color: #fff;
    max-width: 960px;
    margin: 40px auto;
}
.access-item:last-of-type {
    margin-bottom: 0;
}
.access-store-name {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: 0.1em;
}
.access-address,
.access-transport {
    font-size: 1rem;
    margin-bottom: 8px;
}
.access-map-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 250px; /* Adjust as needed */
    height: 50px; /* Adjust as needed */
    background-color: #fff;
    color: #000;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    border-radius: 25px;
    margin-top: 0; 
    outline: 1px solid;
    outline-color: #fff;
    outline-offset: 0px;
    transition: .3s;
}
@keyframes light {
  100% { 
    outline-color: transparent;
    outline-offset: 12px;
  }
}
.access-map-btn img {
    margin-left: 10px;
    width: 20px; /* Adjust as needed */
    height: 20px; /* Adjust as needed */
}
.access-map-btn.coming-soon {
    background-color: #555;
    color: #ccc;
    cursor: not-allowed;
}
.access-map-btn.coming-soon:hover {
    background-color: #555;
}
.access-coming-soon {
    font-size: 1rem; 
    font-weight: 500;
    margin-bottom: 8px; 
    margin-top: 0;
}

/* ----------------------------------------- */
/* 指導者募集バナー */
/* ----------------------------------------- */
.recruit-banner img{
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
  transition: 0.4s;
}

/* ----------------------------------------- */
/* footer */
/* ----------------------------------------- */
/* 上部の赤いバー (CTA) */
.footer-cta {
  background-color: #b22222; /* 画像に近い赤色 */
  display: flex;
  justify-content: center;
  align-items: center;

  position: relative;
}
.footer-cta .cta-btn {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  font-size: 1rem;
  letter-spacing: 0.1em;
  width: 50%;
  text-align: center;
  display: block;
  transition: all 0.3s ease;
  padding: 15px 0;
}
.footer-cta .separator {
  display: block;
  width: 1px;
  height: 30px; 
  background-color: #fff;
}
/* --- 固定する --- */
/* --- 
#fixed-cta-wrapper {
  position: fixed; 
  bottom: 0; 
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: transform 0.3s ease-out;

  transform: translateY(100%); 
}
#fixed-cta-wrapper.is-visible {
  transform: translateY(0); 
}
 --- */
/* 黒背景エリア */
.footer-bg {
  background-color: #000; /* 真っ黒より少し柔らかい黒 */
  color: #fff;
  padding: 45px 0 10px;
  text-align: center;
}
.footer-links {
  margin-bottom: 30px;
  display: flex;
  flex-direction: column; /* 縦並び */
  gap: 5px; /* 行間 */

}
.footer-links a {
  color: #fff;
  text-decoration: none;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  font-weight: bold;
  transition: .3s;
}
/* SNSアイコン  */
.footer-sns {
  margin-bottom: 30px;
  display: flex;
  justify-content: center;
  gap: 20px; /* アイコン同士の間隔 */

}
.footer-sns img{
  transition: .3s;
}

/* 会社情報 */
.profile p {
  color: #fff;
  text-align: center;
  margin: 0;
  letter-spacing: 0.05em;
}
.profile .company-name {
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 5px;
  letter-spacing: 0.15em;
}
.profile .address {
  font-size: 0.9rem;
  line-height: 1.8;
  letter-spacing: 0.1em;
}
.copyright{
    text-align: center;
    margin: 0;
    padding: 20px 0;
    color: #fff;
}

/* ----------------------------------------- */
/* 下層ページ共通 */
/* ----------------------------------------- */
.header-gray{
  background: #f9f9f9;
}
.top-title h2{
  margin: 0;
}
.top-title h2,
.top-title h3{
  text-align: center;
}
.top-title h3{
  margin: 0 0 80px 0;
}
.page-header {
    padding-top: 150px; /* ヘッダー固定分の余白 */
    padding-bottom: 60px;
    background-color: #f9f9f9; /* 全体の背景色（グレー） */
}
.sub-section {
    padding-bottom: 120px;
    background-color: #f9f9f9; 
}
.sub-container {
    position: relative; 
    background-color: #fff;
    padding: 80px 60px;
    max-width: 960px;
    margin: 0 auto; 
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.05); 
}
/* 赤の3本線（位置調整） */
.sub-container .section-divider {
    position: absolute;
    top: -20px; 
    right: 40px; 
    display: flex;
    gap: 15px;
}
.sub-container .section-divider span {
    display: block;
    width: 12px;
    height: 40px;
    background-color: #b22222;
}
/* 導入文 */
.terms-intro {
    text-align: center;
    line-height: 2;
    margin-bottom: 60px;
    font-size: 0.95rem;
    font-weight: 500;
}
/* 区切り線 */
.terms-hr {
    border: none;
    border-top: 1px solid #e0e0e0;
    margin: 60px 0;
}
/* 章のタイトル */
.chapter-title {
    text-align: center;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 40px;
}
/* 条のブロック */
.terms-article {
    margin-bottom: 40px;
    
}
/* 条のタイトル */
.article-title {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 15px;
}
/* 項のリスト */
.article-text,
.article-content,
.article-content li,
.article-list li{
    font-size: 0.95rem;
}
.article-content {
    padding-left: 1.5em;
    margin: 0;
}
.article-content li,
.article-list li {
    margin-bottom: 10px;
    line-height: 1.8;
    text-align: justify; 
}
.article-content li{
    list-style: decimal;
}
.article-list li{
  list-style:disc;
}
/* ----------------------------------------- */
/* 指導者募集ページ専用 */
/* ----------------------------------------- */
/* 求人情報のメインタイトル */
.recruit-main-title {
    text-align: center;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 70px;
}
/* 仕事内容のハイライト */
.job-highlight {
    font-weight: bold;
    color: #b22222; /* 赤色 */
    display: block;
}
/* おすすめポイントのセクションタイトル */
.recommend-title {
    text-align: center;
    font-size: 1.2rem;
    color: #b22222;
    margin-bottom: 40px;
}
/* おすすめポイントのリスト（親要素） */
.recommend-list {
    list-style: none; /* olの番号を消す */
        padding: 0;
}
/* おすすめポイントの各項目 */
.recommend-point {
    margin-top: 25px;
}
.recommend-point:first-child {
    margin-top: 0;
}
.recommend-point strong {
    display: block;
    margin-bottom: 5px;
    font-size: 0.95rem;
}
.recommend-point .point-detail {
    margin-top: 5px;
    font-size: 0.95rem;
    padding-left: 1.5em; /* インデントをかける */
}
/* 応募・問い合わせセクション */
.recruit-contact-section {
    text-align: center;
    margin-top: 50px;
}
/* 応募ボタンのラッパー */
.recruit-btn-wrapper {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}
/* 応募ボタンの共通スタイル */
.recruit-btn {
    display: block;
    width: 100%; 
    max-width: 360px; /* ボタンの最大幅 */
    padding: 18px 20px;
    font-size: 1rem;
    font-weight: bold; 
    border-radius: 8px;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}
/* LINEボタン（最も目立たせる） */
.recruit-btn.line {
    background-color: #00C300;
    color: white;
    border: 2px solid #00C300;
    transition: .3s;
}
/* メールボタン（サブカラー） */
.recruit-btn.mail {
    background-color: #FFFFFF;
    color: #333;
    border: 2px solid #333;
    transition: .3s;
}

/* =========================================
   プロフィールページ
========================================= */
/* タブボタン */
.profile-tabs {
    display: flex;
    gap: 8px;
    justify-content: flex-start;
    width: 100%;
    max-width: 960px;
    margin: 0 auto;
}
.tab-btn {
    background-color: #BDBDBD;
    color: #fff;
    border: none;
    padding: 15px 30px;
    font-size: 1.2rem;
    letter-spacing: 0.1rem;
    font-weight: 600;
    border-radius: 18px 18px 0 0;
    transition: background-color 0.3s;
    cursor: pointer;
}
.tab-btn.active {
    background-color: #000;
}
/* スタッフリスト切り替え */
.staff-list {
    display: none;
    animation: fadeIn 0.5s ease;
}
.staff-list.active {
    display: block;
}
/* スタッフカード */
.staff-card {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
    padding: 50px 0;
    border-bottom: 1px dashed #ccc;
}
.staff-card:last-child {
    border-bottom: none;
}
/* スタッフ画像 */
.staff-image {
    width: 200px;
    height: 200px;
    flex-shrink: 0;
}
.staff-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}
/* スタッフ情報テキスト */
.staff-info {
    text-align: left;
}
.staff-name {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 10px 0;
    letter-spacing: 0.15rem;
}
.staff-name-kana {
    font-size: 1rem;
    font-weight: 500;
    margin-left: 10px;
}
.staff-schedule p {
    font-size: 1rem;
    margin: 0 0 5px 0;
}
/* プロフィールを見るボタン */
.view-profile-btn {
    margin-top: 15px;
    background: #000;
    border: 1px solid #000;
    padding: 12px 50px;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s;
    border-radius: 30px;
    color: #fff;
    cursor: pointer;
}

/* =========================================
   モーダル用スタイル
========================================= */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    justify-content: center;
    align-items: center;
    opacity: 0;
    padding: 20px; /* 画面端との余白 */
    box-sizing: border-box;
    visibility: hidden;    /* 閉じている時は完全に隠す */
    pointer-events: none; /* 閉じている時はクリック/タッチを透過させる */
    transition: opacity 0.3s, visibility 0.3s; /* スムーズに消えるように */
    z-index: 9999;
}

.modal-overlay.open {
    display: flex;
    opacity: 1;
    visibility: visible;
    pointer-events: auto; /* 開いている時は操作できるようにする */
}

.modal-content {
    position: relative;
    max-width: 90%;
    display: flex;
    flex-direction: column; 
    align-items: center; 
}

/* --- 修正: モーダル画像の高さ制限 --- */
.modal-body img {
    max-width: 800px;
    width: auto;
    max-height: 85vh;
    height: auto;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    display: block;
}
.modal-btn-area {
    margin-top: 15px; /* 画像との間隔 */
    width: 100%;
    max-width: 300px; /* ボタンの最大幅 */
    text-align: center;
}
.modal-reserve-btn {
    display: inline-block;
    width: 100%;
    background: #b22222; /* メインカラー（オレンジなど、目立つ色） */
    border: 1px solid #b22222;
    padding: 15px 50px;
    font-size: 1.1rem;
    font-weight: 700;
    transition: all 0.3s;
    border-radius: 30px;
    color: #fff;
    text-decoration: none;
    cursor: pointer;
    letter-spacing: 0.1rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}
.modal-close-btn {
    position: absolute;
    top: 0;
    right: 0;
    color: #fff;
    font-size: 40px;
    cursor: pointer;
    line-height: 1;
    z-index: 10000;
}




/* メディアクエリ ホバー */
@media (hover:hover){

  /* 予約するボタン */
  .header-reserve-btn:hover {
    border: 2px solid #b22222;
    color: #b22222;
    background-color: #fff;
    animation: light .8s infinite;
  }
  /* ハンバーガーメニューメニューのリンク */
  .menu a:hover {
    opacity: 0.7;
  }
  /* ポイントのカード */
  .reason-card:hover {
    transform: translateY(-8px); /* 少し上に浮かせる */
  }
  /* カード内のリンク */
  .step-details a:hover{
    opacity: 0.7;
  }
  /* FAQアコーディオン */
  .faq-head:hover{
    opacity: 0.7;
  }
  /* instagramアイテム */
  .instagram-item:hover {
    transform: translateY(-5px);
    filter: brightness(0.7);
  }
  /* mapボタン */
  .access-map-btn:hover {
    animation: light .8s infinite;
  }
  /* 採用バナー */
  .recruit-banner img:hover {
    opacity: 0.7;
  }
  /* footer */
  .footer-links a:hover,
  .footer-sns img:hover {
    opacity: 0.7;
  }
  .footer-cta .cta-btn:hover {
    background-color: #fff; /* 少し深い赤 */
    color: #B22222;
  }
  /* 採用ページLINE&メールボタン */
  .recruit-btn.mail:hover {
      background-color: #F0F0F0;
  }
  .recruit-btn.line:hover {
      background-color: #00A900;
  }
  /* コーチ紹介 */
  .modal-reserve-btn:hover {
    background: #fff;
    color: #b22222
  }
  .view-profile-btn:hover {
      background: #fff;
      color: #000;
  }

}

/* メディアクエリ タッチアクティブ */
@media (hover:none){
  
  /* 予約するボタン */
  .header-reserve-btn:active,
  .header-reserve-btn:focus {
    border: 2px solid #b22222;
    color: #b22222;
    background-color: #fff;
    animation: light .8s infinite;
  }
  /* ハンバーガーメニューメニューのリンク */
  .menu a:active,
  .menu a:focus {
    opacity: 0.7;
  }
  /* ポイントのカード */
  .reason-card:active,
  .reason-card:focus {
    transform: translateY(-8px);
  }
  /* カード内のリンク */
  .step-details a:active,
  .step-details a:focus {
    opacity: 0.7;
  }
  /* FAQアコーディオン */
  .faq-head:active,
  .faq-head:focus {
    opacity: 0.7;
  }
  /* instagramアイテム */
  .instagram-item:active,
  .instagram-item:focus {
    transform: translateY(-5px);
    filter: brightness(0.7);
  }
  /* mapボタン */
  .access-map-btn:active,
  .access-map-btn:focus {
    animation: light .8s infinite;
  }
  /* 採用バナー */
  .recruit-banner img:active,
  .recruit-banner img:focus {
    opacity: 0.7;
  }
  /* footer */
  .footer-links a:active,
  .footer-links a:focus,
  .footer-sns img:active,
  .footer-sns img:focus {
    opacity: 0.7;
  }
  .footer-cta .cta-btn:active,
  .footer-cta .cta-btn:focus {
    background-color: #fff;
    color: #B22222;
  }
  /* 採用ページLINE&メールボタン */
  .recruit-btn.mail:active,
  .recruit-btn.mail:focus {
    background-color: #F0F0F0;
  }
  .recruit-btn.line:active,
  .recruit-btn.line:focus {
    background-color: #00A900;
  }
    /* コーチ紹介 */
  .modal-reserve-btn:active,
  .modal-reserve-btn:focus {
    background: #fff;
    color: #b22222
  }
  .view-profile-btn:active,
  .view-profile-btn:focus {
      background: #fff;
      color: #000;
  }

}

/* ========================================= */
/* メディアクエリ タブレット*/
/* ========================================= */
@media (min-width:768px) and (max-width: 1024px) {
    .contents {
        margin: 0px 30px;
    }
    h2 {
        font-size: 2.4rem;
    }
    /* 赤の3本線 */
    .bg-black .section-divider {
      position: absolute;
      top: -18px; 
      right: 8%;
      display: flex;
      gap: 10px;
      z-index: 10;
    }
    .bg-black .section-divider span {
      display: block;
      width: 10px;
      height: 35px;
      background-color: #b22222; 
    }
/* ========================================= */
/* ヘッダー&ハンバーガーメニュー */
/* ========================================= */
/* ハンバーガーメニュー内  */
.menu {
  width: 100%;
}
/* ========================================= */
/* ファーストビュー */
/* ========================================= */
.fv-left-text,
.fv-right-text {
  font-size: 14vw;
}
.fv-left-text {
  padding-left: 0;
}
.fv-right-text {
  padding-right: 0;
}
.fv-center-copy {
  opacity: 0;
  transform: translateY(20px);
}
.fv-triangle-white {
  border-width: 100vh 25vh 0 0;
}
.fv-triangle-red {
  border-width: 0 50vw 55vh 0;
}
.fv-center-copy p{
    font-size: 3rem;
}

/* ONECAGEとは */
.overview{
    margin-top: 110px;
}
.flex-box {
    display: block;
    margin: 60px 85px;
}
.catchcopy,
.details {
    width: 100%;
}
.details{
    padding: 0;
}
.catchcopy{
    font-size: 2rem;
    padding: 0;
    text-align: center;
}
/* ========================================= */
/* プラン料金*/
/* ========================================= */
.swiper {
    margin-top: 20px;
  }
/* ========================================= */
/* Howtouse*/
/* ========================================= */
.timeline-visual {
    left: 8%;
  }
.fixed-title {
    left: calc(10% + 40px);
  }
  .step-card {
    left: 50%;
    width: 430px;
  }
.step-details {
    background-color: #fff;
    padding: 40px 30px;
    border-radius: 20px;
    border: 1px solid #eee;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    height: 270px;
  }
  .use-header {
    padding-top: 80px; 
}
.use h3 {
    margin-top: 10px;
}

/* 現在位置を示す移動する赤丸 */
.moving-dot {
    width: 15px;
    height: 15px; 
}
/* タイトル*/
.fixed-title {
    font-size: 1.6rem;
}
/* カードエリア（右側） */
.cards {
    right: 5%; 
    width: 430px;
    height: 270px;
}
/* カードの中身 */
.step-details {
    padding: 30px 20px;
    height: 270px;
}
.step-details ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.step-details li, 
.step-details a{
    font-size: 1rem;
}
.step-btn {
    padding: 10px 20px;
}
/* 注意書き */
.use-notice {
    margin: -150px auto 50px
}
/* ----------------------------------------- */
/* Instagram */
/* ----------------------------------------- */
/* グリッドレイアウト */
.instagram-list {
    gap: 12px;
    margin-top: 40px; 
}
/* ========================================= */
  /* 下層ページ共通 */
/* ========================================= */
    .sub-container {
        padding: 70px 50px;
        max-width: 700px;
    }
    .sub-section {
    padding-bottom: 60px;
  }
  .overlay-blur {
    display: none;
  }
  /* =========================================
    プロフィールページ
  ========================================= */
  /* タブボタン */
  .profile-tabs {
      max-width: 700px;
  }
  .modal-body img {
     max-width: 560px;
  }
  .modal-btn-area {
    margin-top: 20px;
  }
  .modal-close-btn {
    top: -50px;
    right: -50px;
  }
}


/* ========================================= */
/* メディアクエリ スマホ */
/* ========================================= */

@media (max-width: 767px) {
    body {
        letter-spacing: 0.05em;
    }
    .br_sp{
        display: block;
    }
    .contents {
        margin: 0px 10px;
    }
    h2 {
        font-size: 1.85rem;
        line-height: 1.6;
    }
    h3 {
        font-size: 1.1rem;
    }
    .page-header {
    padding-top: 100px;}

/* ========================================= */
/* ヘッダー&ハンバーガーメニュー */
/* ========================================= */
  a.logo {
      height: 40px;
    }
  .logo img{
      width: 50px;
      height: auto;
  }
    .site-header {
      padding: 10px;
    }
  .header-reserve-btn {
    display: none;
    }
  .menu {
    width: 100%;
    gap: 5px;
  }
  .btn{
  width: 90%;
  }
/* ========================================= */
/* ファーストビュー */
/* ========================================= */
  .fv-left-text,
  .fv-right-text {
    font-size: 20vw;
  }
  .fv-left-text {
    padding-left: 0;
  }
  .fv-right-text {
    padding-right: 0;
  }
  .fv-center-copy {
    opacity: 0;
    transform: translateY(-20px);
  }
  .fv-triangle-white {
    border-width: 55vh 20vh 0 0;
  }
  .fv-triangle-red {
    border-width: 0 50vw 55vh 0;
  }
  .fv-center-copy p{
    font-size: 2rem;
    letter-spacing: 0.16em;
    padding: 0;
  }
/* ========================================= */
 /* ONECAGEとは */
/* ========================================= */
    .overview {
    padding: 100px 0 60px 0;
    }
    .flex-box {
        display: block;
    }
    .catchcopy,
    .details {
        width: 100%;
    }
    .details{
        padding: 0 5px;
        line-height: 1.8;
    }
    .catchcopy{
        font-size: 1.5rem;
        padding: 0;
        text-align: center;
    }
/* ========================================= */
/* 選ばれる理由 */
/* ========================================= */
  /* 赤の3本線 */
    .bg-black .section-divider{
    top: -13px;
    right: 15px;
    gap: 10px;
    }
    .bg-black .section-divider span {
    width: 10px;
    height: 30px;
    }
    .reason {
        padding: 60px 0 90px 0;
    }
    .reason-card {
    padding: 100px 35px 30px;
    }
    .reason-cards {
      margin-top: 20px;
      gap: 10px;
    }
/* ========================================= */
/* プラン&料金 */
/* ========================================= */
  .plan
  {
    padding: 50px 0 60px 0;
  }
  /* カバーフローアニメを無効化 */
  .swiper-slide-prev,
  .swiper-slide-next,
  .swiper-slide:not(.swiper-slide-active):not(.swiper-slide-prev):not(.swiper-slide-next) {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) scale(1) !important;
  }
.swiper {
    overflow: hidden;
    padding-bottom: 50px;
    margin-top: 0;
    }
  .swiper-slide {
    width: 100% !important;
    max-width: 100%;
    height: auto;
    margin: 0 auto;
    padding: 15px 10px; /* 左右に余白をつける場合はここで調整 */
    box-sizing: border-box;
    line-height: 1.5;
    opacity: 1 !important;
    transform: translateY(0) scale(1) !important;
    visibility: visible !important;
  }
  .swipercontainer {
    padding: 20px 0;
  }
  /* 前後スライドは非表示 */
  .swiper-slide-prev,
  .swiper-slide-next {
    opacity: 0;
    visibility: hidden;
  }
  .swiper-slide:not(.swiper-slide-active) {
    opacity: 0;
    visibility: hidden;
  }
  .custom-prev::after,
  .custom-next::after {
    display: none;
  }
  .custom-prev
  {
    left: 0;
  }
  .custom-next {
    right: 0;
  }
  .swiper-pagination-bullets.swiper-pagination-horizontal{
    bottom: 0;
  }
  .card-wrapper {
    padding: 0px 10px;
}
  .plan-card h4{
    font-size: 1.85rem;
  }
  .plan-card .price {
    font-size: 1.6rem;
  }
  .price-line {
    gap: 15px;
  }
  .plan-card .price span {
    font-size: 1rem;
  }
  .plan-card .note {
    font-size: 1rem;
  }
  /* ========================================= */
  /* Howtouse */
  /* ========================================= */
    .use {
        padding: 0;
    }
    .pin-area {
        height: 100vh;
        width: 100%;
        position: relative;
        overflow: hidden;
        display: block; /* Flex解除 */
    }
    .use-header {
        height: auto;
        padding-top: 80px;
        z-index: 20;
        background: transparent; /* 背景透過 */
    }
    .use-steps-wrapper {
        height: 100%;
        width: 100%;
    }
    .use-steps {
        height: 100%;
        width: 100%;
        max-width: 100%;
    }
    .fixed-title {
        position: absolute !important;
        top: 34% !important; /* 画面上部（ヘッダーの下あたり） */
        left: 50% !important;
        transform: translateX(-50%) !important;
        font-size: 1.5rem;
        margin: 0;
        width: 100%;
        text-align: center;
        z-index: 15;
    }
    .cards {
        position: absolute !important;
        top: 58% !important; /* 少し下寄り */
        left: 55% !important; /* インジケーターの分、少し右にずらす */
        transform: translate(-50%, -50%) !important;
        
        width: 85%; /* 画面幅に合わせて調整 */
        height: auto;
        right: auto;
        margin: 0;
        padding: 0;
        perspective: 1000px;
    }
    .step-card {
        width: 100%; /* 親(.cards)に合わせる */
        height: auto;
    }
    .step-details {
        padding: 20px 15px 50px 15px; /* ボタン分の下余白 */
        height: auto;
        min-height: 220px; /* 内容が少なくても高さを確保 */
        border-radius: 15px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }
    .step-details ul li, 
    .step-details ul a{
        font-size: 0.85rem; /* スマホ用に文字サイズ調整 */
        line-height: 1.5;
    }
    .step-btn {
        padding: 12px;
        font-size: 0.9rem;
        border-radius: 0 0 15px 15px;
        width: 100%;
    }
    .timeline-visual {
        position: absolute !important;
        top: 58% !important; /* カードと同じ中心高さ */
        transform: translateY(-50%) !important;
        left: 3% !important; /* 左端 */
        z-index: 10;
    }
    .dot-line-container {
        height: 160px;
        width: 16px;
    }
    .dots-wrapper {
    left: 55%;
  }
    .step-dot { width: 10px; height: 10px; }
    .moving-dot { width: 14px; height: 14px; left: 45%;}
    .connecting-line { width: 2px; }

    .use-notice {
    text-align: left;
    padding: 30px 10px;
    line-height: 1.7;
    border-radius: 0;
    margin: -120px auto 80px;
    }
    .use-notice p {
    font-size: 0.9rem;
  }
  /* ========================================= */
  /* FAQ */
  /* ========================================= */
  /* 赤の3本線 */
    .bg-gray .section-divider {
    top: -13px;
    right: 15px;
    gap: 10px;
    }
    .bg-gray .section-divider span {
    width: 10px;
    height: 30px;
    }
    .faq {
    padding: 50px 0 60px 0;
    }
    .faq-list {
    padding: 0;
    }
    .faq-head{
    padding: 20px 10px;
  }
.faq-question-text {
    font-size: 0.95rem;
  }
.faq-body-inner {
    padding: 20px 0;
    margin: 0px 10px;
  }
.faq-answer-text {
    font-size: 0.95rem;
    line-height: 1.7;
  }
  /* ========================================= */
  /* insagram */
  /* ========================================= */
  .instagram-section {
    padding: 30px 0 60px 0;
  }
  .instagram-section h2{
    text-align: center;
  }
  .instagram-list {
      grid-template-columns: repeat(2, 1fr);
      margin-top: 25px;
  }
  .bg-dash-circle {
      display: none;
  }
  .section-divider-curve {
      margin-top: -1px;
  }
  /* 4番目の要素（:nth-child(4)）を非表示にする */
  
  /* 
  .instagram-item:last-child {
        display: none;
    }
         */
  /* ========================================= */
  /* access */
  /* ========================================= */
.access {
    padding: 80px 0 90px 0;
}
.access-store-name {
    font-size: 1.2rem;
  }
.access-item {
    display: block;
    margin: 35px auto;
  }
  .access-map-btn{
    width: 90%;
    height: 45px;
    margin: 15px auto;
  }
  /* ========================================= */
  /* footer */
  /* ========================================= */
.footer-cta .cta-btn {
  font-size: 0.9rem;
}
.footer-bg {
    background-color: #000;
    color: #fff;
    padding: 35px 0 10px;
  }
    .profile p{
        margin: 0 10px;
        font-size: 0.85rem;
    }
    .footer-links {
    margin-bottom: 20px;
  }
    .footer-sns {
    margin-bottom: 20px;
  }

  /* 下層ページ共通 */
  .sub-container .section-divider {
    top: -13px;
    right: 15px;
    gap: 10px;
  }
  .sub-container .section-divider span {
    width: 10px;
    height: 30px;
  }
    .sub-container {
      padding: 60px 20px;
      max-width: 360px;
    }
    .sub-section {
    padding-bottom: 20px;
  }
  .recruit-main-title {
    font-size: 1rem;
    margin-bottom: 50px;
  }
  .article-text, .article-content, .article-content li, .article-list li, .recommend-point strong {
    font-size: 0.9rem;
  }
  .recruit-btn {
    font-size: 0.9rem;
  }
  .recommend-point .point-detail {
    font-size: 0.9rem;
    padding-left: 1em;
  }
  /* =========================================
    プロフィールページ
  ========================================= */
  /* タブボタン */
  .profile-tabs {
      max-width: 360px;
  }
  .tab-btn {
    padding: 15px 25px;
    font-size: 1.1rem;
  }
  /* スタッフカード */
  .staff-card {
      display: block;
  }
  .staff-card:last-child {
      border-bottom: none;
  }
  /* スタッフ画像 */
  .staff-image {
      margin: 0 auto;
  }
  /* スタッフ情報テキスト */
  .staff-info {
      text-align: center;
  }
  .staff-name {
      margin: 15px 0;
      line-height: 1.2;
  }
  .staff-name-kana {
      margin-left: 0;
  }

  /* =========================================
    モーダル用スタイル
  ========================================= */
  .modal-content {
      max-width: 100vw;
  }

  /* --- 修正: モーダル画像の高さ制限 --- */
  .modal-body img {
      max-width: 95vw;
  }
  .modal-btn-area {
      margin-top: 15px; /* 画像との間隔 */
      width: 100%;
      max-width: 300px; /* ボタンの最大幅 */
      text-align: center;
  }
  .modal-close-btn {
      top: -50px;
  }


}
