:root {
  --beige: #f6f2ed;
  --beige-dark: #e8e1d8;
  --white: #ffffff;
  --text: #3c3835;
  --accent: #b8a38a;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Noto Sans JP', sans-serif;
  background: var(--beige);
  color: var(--text);
  line-height: 1.9;
}
h1, h2, h3 {
  font-family: 'Playfair Display', serif;
  letter-spacing: 0.06em;
  cursor: default;
}
p, li{
  cursor: default;
}
section {
  padding: 110px 8vw;
  position: relative;
}
/* fade */
.fade {
  opacity: 0;
  transform: translateY(40px);
  transition: 1s ease;
}
.fade.show {
  opacity: 1;
  transform: translateY(0);
}
/* ===== Header ===== */
/* ロゴ */
.header-logo-img{
  width: 10rem;
  height: 10rem;
  filter: brightness(0) invert(1) drop-shadow(2px 2px 4px rgba(0,0,0,0.3));
  position: absolute;
  top: 1rem;
  left: 1.5rem;
  z-index: 100;
}
/* HERO */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  position: relative;
  z-index: 0;
}
/* ===== hero video ===== */
.hero{
  position: relative;
  background-image: url("hero.webp");
  background-size: cover;
}

/* 動画 */
.hero-video{
  display: none;
}
.hero-inner{
  position: relative;
  z-index: 1;
}
/* 少し暗くして文字を読みやすく */
.hero::after{
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.25);
}
.hero h1 {
  font-size: 3rem;
  margin-bottom: 24px;
  color: #fff;
  text-shadow:
    0 2px 6px rgba(0,0,0,0.35),
    0 8px 20px rgba(0,0,0,0.25);
}
.hero p {
  font-size: 0.95rem;
  max-width: 520px;
  color: #fff;
  text-shadow:
    0 2px 6px rgba(0,0,0,0.35),
    0 8px 20px rgba(0,0,0,0.25);
}
/* SERVICE */
.service-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
}
.card {
  background: var(--white);
  padding: 36px;
  border-radius: 28px;
}
/* PRICE */
.price {
  background: var(--white);
  text-align: center;
}
.price-note {
  font-size: 0.8rem;
  margin: 20px 0 50px;
}
.price-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
}
.price-card {
  background: var(--beige);
  padding: 40px;
  border-radius: 30px;
}
.price {
  font-size: 2rem;
}
.container-3-pilates{
  width: 100%;
  min-height: 50vh;
  padding: 5rem 10% 5rem;
  background: #fff;
  position: relative;
}
/* タイトル */
.price-title-container{
  text-align: center;
  margin-bottom: 4rem;
}
.price-title-container h2{
  font-size: 4rem;
  font-weight: normal;
  letter-spacing: 0.02em;
  color: #222;
}
/* 3つの表を grid で整列 */
.table-container{
  display: grid;
  grid-template-columns: repeat(3, minmax(260px, 1fr));
  gap: 2.4rem;
  align-items: start;
}
/* tableをカード化（ガラス寄り） */
.table-container table{
  width: 100%;
  border-collapse: collapse;
  border-radius: 2rem;
  overflow: hidden;
  background: #f9f5f0;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(0,0,0,0.08);
  box-shadow: 0 10px 26px rgba(0,0,0,0.08);
  transition: transform 0.28s ease, box-shadow 0.28s ease, background 0.28s ease;
  font-family: 'Times New Roman', Times, serif;
}
.table-container table:hover{
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.12);
}
/* 見出し行 */
.table-container thead th{
  text-align: left;
  font-size: 1.4rem;
  font-weight: normal;
  letter-spacing: 0.02em;
  color: #111;
  padding: 1rem 1.2rem;
  background: rgba(0,0,0,0.04);
  cursor: default;
}
/* セル */
.table-container td{
  font-size: 1.2rem;
  color: #444;
  line-height: 1.7;
  padding: 1.4rem 1.8rem;
  border-top: 1px solid rgba(0,0,0,0.06);
  vertical-align: top;
  cursor: pointer;
}
/* 料金列を少し強調（2列目） */
.table-container td:nth-child(2){
  color: #111;
  white-space: nowrap;
}
/* 行のホバー */
.table-container tbody tr:hover td{
  background: rgba(0,0,0,0.02);
}
/* ===== theadのバランスを揃える ===== */
.table-container thead{
  background: rgba(0,0,0,0.04);
}
.table-container .plan-title{
  text-align: center;
  font-size: 1.9rem;
  letter-spacing: 0.10em;
  padding: 1.5rem 1rem 1.1rem;
  background: rgba(0,0,0,0.04);
}
.table-container .plan-sub{
  font-size: 1.3rem;
  color: #666;
  padding: 0.9rem 1.6rem 1.2rem;
  border-top: 1px solid rgba(0,0,0,0.08);
  background: rgba(0,0,0,0.04);
}
/* ===== ガラス感（table背景を透明寄りに） ===== */
.table-container table{
  background: rgba(255,255,255,0.55);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
/* hover時も少し澄む */
.table-container table:hover{
  background: rgba(255,255,255,0.75);
}
/* 料金列を右寄せにすると整う（好みで） */
.table-container td:nth-child(2),
.table-container .plan-sub:nth-child(2){
  text-align: right;
}
/* ===== おすすめバッジ ===== */
.table-container table.recommended{
  position: relative;
  border-color: #222;
}
.table-container table.recommended::before{
  content: "Recommended";
  position: absolute;
  top: 1.2rem;
  right: -2.2rem;
  transform: rotate(12deg);
  background: #b5ada0;
  color: #fff;
  font-size: 1.1rem;
  letter-spacing: 0.1em;
  padding: 0.4rem 1.2rem;
  border-radius: 999px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.25);
}
/* hover時も少しだけ主張 */
.table-container table.recommended:hover::before{
  background: #b5ada0;
}
th p{
  font-size: 0.6rem;
}
.plan-concept{
  font-size: 0.7rem;
  text-align: center;
  padding-top: 3rem;
  cursor: default;
}
/* ===== campaign price ===== */
.price-before{
  text-decoration: line-through;
  color: #999;
  font-size: 1rem;
  margin-right: 0.6rem;
}
.price-now{
  font-size: 1.4rem;
  color: #c44536;
  font-weight: bold;
  letter-spacing: 0.05em;
}
.table-container td{
  white-space: nowrap;
}
/* PROFILE */
.profile{
  padding-bottom: 0px;
}
.profile-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 70px;
}
.profile-img {
  height: 440px;
  background: #ccc;
  border-radius: 22px;
  background-image: url("profile.webp");
  background-size: cover;
  background-position: 60% center;
}
/* 最後のメッセージ */
.profile-message{
  margin-top: 0.5rem;
  padding-top: 0.5rem;
  border-top: 1px solid rgba(60,56,53,0.12);
  font-weight: 500;
}
/* ===== Background（経歴セクション） ===== */
.background{
  background: var(--beige);
  text-align: center;
  padding-top: 0;
}
.background h2{
  margin-bottom: 60px;
}
.background-grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(220px, 1fr));
  gap: 36px;
  align-items: stretch;
}
.bg-card{
  background: var(--white);
  border-radius: 28px;
  padding: 36px 32px;
  text-align: left;
}
.bg-card h3{
  font-size: 1.2rem;
  margin-bottom: 20px;
}
.bg-card ul{
  list-style: none;
  padding: 0;
  margin: 0;
}
.bg-card li{
  font-size: 0.9rem;
  line-height: 1.8;
  padding-left: 14px;
  position: relative;
}
.bg-card li::before{
  content: "•";
  position: absolute;
  left: 0;
  color: var(--accent);
}
/* CONCEPT */
.concept {
  background: var(--white);
}
.concept-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
}
.concept-img {
  height: 360px;
  background: #ddd;
  border-radius: 18px;
}
.concept-img{
  background-image: url("concept.webp");
  background-size: cover;
}
/* TRUST */
.trust {
  background: var(--white);
}
.trust-box {
  background: var(--beige);
  padding: 60px;
  border-radius: 36px;
  max-width: 820px;
  margin: auto;
}
/* CTA */
.cta {
  text-align: center;
  background: linear-gradient(180deg, var(--beige-dark), var(--beige));
}
.cta a {
  display: inline-block;
  margin: 12px;
  padding: 16px 44px;
  border-radius: 999px;
  background: var(--accent);
  color: var(--white);
  text-decoration: none;
}
/* footer */
footer {
  text-align: center;
  padding: 40px;
  font-size: 0.75rem;
}
.font{
  position: relative;
  bottom: 0.28rem;
  font-size: 2.6rem;
}
  
/* ===== MOVIE (Section) ===== */
  .movie {
    display: block;
    background: var(--beige);
    text-align: center;
    padding-bottom: 100px;
  }
  .movie-inner h2 {
    font-size: 2.5rem;
    margin-bottom: 0rem;
  }

  .movie-sub {
    font-size: 0.9rem;
    margin-bottom: 1rem;
    color: #666;
  }

  .movie-frame {
    max-width: 900px;
    margin: auto;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
    position: relative;
    object-fit: cover;
  }

  .movie-frame video {
    width: 100%;
    height: auto;
    display: block;
  }

  /* ===== Neo Player ===== */
  .neo-player {
    max-width: 900px;
    margin: 18px auto 0;
    padding: 18px 18px 16px;
    border-radius: 26px;
    background: var(--beige);
    
  }

  .neo-row { display:flex; align-items:center; justify-content:center; }
  .neo-progress { margin-bottom: 14px; }
  .neo-transport { gap: 12px; margin-top: 30px; } 
  .neo-volume { gap: 14px; }

  .neo-player input[type="range"]{
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    max-width: 100%; /* ←ここでスマホ最適化 */
    height: 10px;
    border-radius: 999px;
    background: rgba(0,0,0,0.12);
    box-shadow:
      inset 6px 6px 12px rgba(0,0,0,0.10),
      inset -6px -6px 12px rgba(255,255,255,0.8);
    outline: none;
  }

  .neo-player input[type="range"]::-webkit-slider-thumb{
    -webkit-appearance: none;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: #f7f3ee;
    box-shadow:
      6px 6px 12px rgba(0,0,0,0.15),
      -6px -6px 12px rgba(255,255,255,0.85);
    cursor: pointer;
  }

  .neo-player input[type="range"]::-moz-range-thumb{
    width: 26px;
    height: 26px;
    border: none;
    border-radius: 50%;
    background: #f7f3ee;
    box-shadow:
      6px 6px 12px rgba(0,0,0,0.15),
      -6px -6px 12px rgba(255,255,255,0.85);
    cursor: pointer;
  }

  .neo-ico{
    width: 56px;
    height: 56px;
    border: none;
    border-radius: 50px;
    background: var(--beige);
    box-shadow:
      8px 8px 16px rgba(0,0,0,0.12),
      -8px -8px 16px rgba(255,255,255,0.78);
    display:flex;
    align-items:center;
    justify-content:center;
    cursor: pointer;
    transition: transform .15s ease, box-shadow .15s ease;
  }

  .neo-ico:active{
    transform: translateY(1px);
    box-shadow:
      inset 6px 6px 12px rgba(0,0,0,0.14),
      inset -6px -6px 12px rgba(255,255,255,0.80);
  }

  .neo-ico svg{
    width: 26px;
    height: 26px;
    filter: drop-shadow(0 1px 0 rgba(0,0,0,0.08));
  }

  .neo-ico-main{
    width: 74px;
    height: 74px;
    border-radius: 26px;
  }

  .neo-ico-main svg{ width: 30px; height: 30px; }
  .neo-ico-s{ width: 52px; height: 52px; border-radius: 18px; }

  .neo-ico-main .icon-play{ display:none; }
  .neo-ico-main.is-paused .icon-stop{ display:none; }
  .neo-ico-main.is-paused .icon-play{ display:block; }

  #muteBtn .icon-mute{ display:none; }
  #muteBtn.is-muted .icon-vol{ display:none; }
  #muteBtn.is-muted .icon-mute{ display:block; }
  .movie-frame { position: relative; } /* 既にあるならOK */

.movie-mute{
  position: absolute;
  right: 10px;
  bottom: 10px;
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 16px;
  cursor: pointer;
  background: rgba(246,242,237,0.75);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.movie-mute:active{
  transform: translateY(1px);
  box-shadow:
    inset 6px 6px 12px rgba(0,0,0,0.14),
    inset -6px -6px 12px rgba(255,255,255,0.80);
}
.movie-mute svg{
  width: 22px;
  height: 22px;
  fill: white;
}

/* mute button icons */
#muteBtn svg { fill: #fff; }           /* 白に統一（動画上で見やすい） */
#muteBtn .icon-mute { display: none; } /* 通常は音ありアイコン */
#muteBtn.is-muted .icon-vol { display: none; }
#muteBtn.is-muted .icon-mute { display: block; }

video{
  display: block;
  width: 100%;
  height: 100%;
}



@media (max-width: 768px) {
  
  .hero{
    background-image:none;
    background-size: cover;
  }
  /* ===== Layout ===== */
  .background-grid {
    grid-template-columns: 1fr;
  }

  .concept-grid,
  .profile-grid {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: 2.2rem;
  }

  .table-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.4rem;
    align-items: start;
  }

  .concept-img {
    display: none;
  }

  .concept {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }

  .trust {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }

  th p {
    font-size: 0.5rem;
  }

  /* ===== Header logo ===== */
  .header-logo-img {
    width: 5rem;
    height: 5rem;
    position: absolute;
    top: 1rem;
    left: 0.75rem;
    z-index: 10;
  }

  /* ===== Profile ===== */
  .profile-img {
    background-image: url("profile.webp");
  }

  /* ===== MOVIE (Section) ===== */
  .movie {
    display: block;
    background: var(--beige);
    text-align: center;
    padding-bottom: 100px;
  }
  .movie-inner h2 {
    font-size: 2.5rem;
    margin-bottom: 0rem;
  }

  .movie-sub {
    font-size: 0.9rem;
    margin-bottom: 1rem;
    color: #666;
  }

  .movie-frame {
    max-width: 900px;
    margin: auto;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
    position: relative;
  }

  .movie-frame video {
    width: 100%;
    height: auto;
    display: block;
  }

  /* ===== Neo Player ===== */
  .neo-player {
    max-width: 900px;
    margin: 18px auto 0;
    padding: 18px 18px 16px;
    border-radius: 26px;
    background: var(--beige);
    
  }

  .neo-row { display:flex; align-items:center; justify-content:center; }
  .neo-progress { margin-bottom: 14px; }
  .neo-transport { gap: 12px; margin-top: 30px; } 
  .neo-volume { gap: 14px; }

  .neo-player input[type="range"]{
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    max-width: 100%; /* ←ここでスマホ最適化 */
    height: 10px;
    border-radius: 999px;
    background: rgba(0,0,0,0.12);
    box-shadow:
      inset 6px 6px 12px rgba(0,0,0,0.10),
      inset -6px -6px 12px rgba(255,255,255,0.8);
    outline: none;
  }

  .neo-player input[type="range"]::-webkit-slider-thumb{
    -webkit-appearance: none;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: #f7f3ee;
    box-shadow:
      6px 6px 12px rgba(0,0,0,0.15),
      -6px -6px 12px rgba(255,255,255,0.85);
    cursor: pointer;
  }

  .neo-player input[type="range"]::-moz-range-thumb{
    width: 26px;
    height: 26px;
    border: none;
    border-radius: 50%;
    background: #f7f3ee;
    box-shadow:
      6px 6px 12px rgba(0,0,0,0.15),
      -6px -6px 12px rgba(255,255,255,0.85);
    cursor: pointer;
  }

  .neo-ico{
    width: 56px;
    height: 56px;
    border: none;
    border-radius: 50px;
    background: var(--beige);
    box-shadow:
      8px 8px 16px rgba(0,0,0,0.12),
      -8px -8px 16px rgba(255,255,255,0.78);
    display:flex;
    align-items:center;
    justify-content:center;
    cursor: pointer;
    transition: transform .15s ease, box-shadow .15s ease;
  }

  .neo-ico:active{
    transform: translateY(1px);
    box-shadow:
      inset 6px 6px 12px rgba(0,0,0,0.14),
      inset -6px -6px 12px rgba(255,255,255,0.80);
  }

  .neo-ico svg{
    width: 26px;
    height: 26px;
    filter: drop-shadow(0 1px 0 rgba(0,0,0,0.08));
  }

  .neo-ico-main{
    width: 74px;
    height: 74px;
    border-radius: 26px;
  }

  .neo-ico-main svg{ width: 30px; height: 30px; }
  .neo-ico-s{ width: 52px; height: 52px; border-radius: 18px; }

  .neo-ico-main .icon-play{ display:none; }
  .neo-ico-main.is-paused .icon-stop{ display:none; }
  .neo-ico-main.is-paused .icon-play{ display:block; }

  #muteBtn .icon-mute{ display:none; }
  #muteBtn.is-muted .icon-vol{ display:none; }
  #muteBtn.is-muted .icon-mute{ display:block; }
  .movie-frame { position: relative; } /* 既にあるならOK */

.movie-mute{
  position: absolute;
  right: 10px;
  bottom: 10px;
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 16px;
  cursor: pointer;
  background: rgba(246,242,237,0.75);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.movie-mute:active{
  transform: translateY(1px);
  box-shadow:
    inset 6px 6px 12px rgba(0,0,0,0.14),
    inset -6px -6px 12px rgba(255,255,255,0.80);
}
.movie-mute svg{
  width: 22px;
  height: 22px;
  fill: white;
}

/* mute button icons */
#muteBtn svg { fill: #fff; }           /* 白に統一（動画上で見やすい） */
#muteBtn .icon-mute { display: none; } /* 通常は音ありアイコン */
#muteBtn.is-muted .icon-vol { display: none; }
#muteBtn.is-muted .icon-mute { display: block; }

}
/* スマホの時だけ表示 */
@media (max-width: 768px){
  .hero{
    background-image: url("hero-sp.webp");
  }
  .hero-video{
    display: none;
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
  }
  .hero-inner{
    position: relative;
    z-index: 2;
  }
}
@media (max-width: 768px){
  .hero::after{
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,0.05); /* ←明るさ */
    z-index: 1;
  }
}