/* =========================
   BASE
========================= */

:root{
  --bg:#f7f4f1;
  --text:#1f1f1f;
  --muted:#6b6b6b;
  --accent:#b08f86;
  --max:1100px;
  --main-color:#4ea6a6;   /* MiniRefreティール */
  --accent-color:#caa66a; /* ゴールド */
  --bg-soft:#f6f5f2
}

*{
  box-sizing:border-box;
}

body{
  margin:0;
font-family:
"Noto Sans JP",
"Hiragino Kaku Gothic ProN",
sans-serif;
  background:var(--bg);
  color:var(--text);
  letter-spacing:.03em;
}

a{
  text-decoration:none;
  color:inherit;
}

/* =========================
   LAYOUT
========================= */

.container{
  max-width:var(--max);
  margin:0 auto;
  padding:0 20px;
}

.section{
  padding:120px 0;
}

.section-title{
  font-family:Inter, sans-serif;
  font-size:14px;
  letter-spacing:.2em;
  margin-bottom:30px;
  color:var(--muted);
}

/* =========================
   HEADER START
========================= */

.header{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  z-index:100;
  padding:20px 0;
  background:rgba(255,255,255,.72);
  backdrop-filter:blur(8px);
  -webkit-backdrop-filter:blur(8px);
  border-bottom:1px solid rgba(81,177,191,.10);
}

.nav{
  display:flex;
  justify-content:space-between;
  align-items:center;
  max-width:1200px;
  margin:0 auto;
  padding:0 20px;
  position:relative;
  z-index:130;
}

.logo img{
  height:42px;
  width:auto;
  display:block;
}

/* PCメニュー */
.menu{
  display:flex;
  gap:28px;
  align-items:center;
}

.menu a{
  color:#51b1bf;
  font-size:14px;
  letter-spacing:.08em;
  text-decoration:none;
  transition:color .3s ease, opacity .3s ease;
}

.menu a:hover{
  color:#3f97a3;
}

/* SPボタン */
.menu-toggle{
  display:none;
  width:44px;
  height:44px;
  position:relative;
  background:none;
  border:none;
  padding:0;
  cursor:pointer;
  z-index:140;
}

.menu-toggle span{
  position:absolute;
  left:10px;
  width:24px;
  height:2px;
  background:#222;
  transition:.3s ease;
}

.menu-toggle span:nth-child(1){
  top:14px;
}

.menu-toggle span:nth-child(2){
  top:21px;
}

.menu-toggle span:nth-child(3){
  top:28px;
}

.menu-toggle.active span:nth-child(1){
  top:21px;
  transform:rotate(45deg);
}

.menu-toggle.active span:nth-child(2){
  opacity:0;
}

.menu-toggle.active span:nth-child(3){
  top:21px;
  transform:rotate(-45deg);
}

/* =========================
   SP MENU START
========================= */

.sp-menu{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  height:100vh;
  height:100dvh;
  background:rgba(255,255,255,.97);
  display:flex;
  flex-direction:column;
  justify-content:flex-start;
  align-items:center;
  gap:20px;
  box-sizing:border-box;
  padding:
    calc(env(safe-area-inset-top, 0px) + 96px)
    24px
    calc(env(safe-area-inset-bottom, 0px) + 40px);
  overflow-y:auto;
  -webkit-overflow-scrolling:touch;
  opacity:0;
  visibility:hidden;
  pointer-events:none;
  transition:opacity .35s ease, visibility .35s ease;
  z-index:120;
}

.sp-menu.active{
  opacity:1;
  visibility:visible;
  pointer-events:auto;
}

.sp-menu a{
  display:block;
  width:100%;
  max-width:320px;
  color:#222;
  font-size:18px;
  line-height:1.6;
  text-align:center;
  text-decoration:none;
  letter-spacing:.08em;
  transition:color .3s ease;
}

.sp-menu a:hover{
  color:#4ea6a6;
}

/* =========================
   SP MENU END
========================= */

body.menu-open{
  overflow:hidden;
}

/* responsive */
@media (max-width:900px){
  .menu{
    display:none;
  }

  .menu-toggle{
    display:block;
  }

  .header{
    padding:16px 0;
  }

  .logo img{
    height:36px;
  }
}

@media (min-width:901px){
  .sp-menu{
    display:none;
  }
}

/* =========================
   HEADER END
========================= */

/* =======================
   HERO START
======================= */

.hero{
  position:relative;
  height:100vh;
  overflow:hidden;
  color:#7d7d7d;
}

/* 背景動画 */
.hero-video{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  z-index:0;
  filter:brightness(1.1) contrast(.95);
}

.hero-bg{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  z-index:0;
}

/* オーバーレイ */
.hero-overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(
    rgba(0,0,0,.0),
    rgba(0,0,0,.0)
  );
  z-index:1;
}

/* コンテンツ全体 */
.hero-content{
  position:relative;
  z-index:2;
  height:100%;
  display:flex;
  align-items:center;
}

/* 左寄せ固定 */
.hero-inner{
  width:100%;
  max-width:1200px;
  margin:0 auto;
  padding-left:3vw;
  text-align:left;
}

/* サブコピー */
.hero-sub{
  margin:0 0 14px;
  font-size:20px;
  line-height:1.8;
  letter-spacing:.14em;
  font-weight:500;
  color:#6f7f82;
}

/* メインタイトル */
.hero-title{
  margin:0 0 22px;
  font-size:clamp(38px,5vw,64px);
  line-height:1.22;
  letter-spacing:.04em;
  font-weight:500;
  color:#50b0be;
}

/* 説明文 */
.hero-desc{
  margin:0;
  font-size:16px;
  line-height:1.95;
  letter-spacing:.04em;
  color:#666;
}

/* 読みやすさ補助 */
.hero-sub,
.hero-title,
.hero-desc{
  text-shadow:0 2px 6px rgba(255,255,255,.35);
}

/* ボタン */
.hero-btn{
  display:inline-block;
  padding:14px 28px;
  background:#50b0be;
  color:#fff;
  border-radius:999px;
  margin-top:20px;
  text-decoration:none;
  transition:.35s cubic-bezier(.22,.61,.36,1);
}

.hero-btn:hover{
  transform:translateY(-3px);
  box-shadow:0 12px 28px rgba(78,166,166,.35);
}

/* スマホ */
@media (max-width:768px){

  .hero-inner{
    padding:0 20px;
  }

  .hero-sub{
    margin-bottom:10px;
    font-size:20px;
    line-height:1.7;
    letter-spacing:.12em;
  }

  .hero-title{
    margin-bottom:16px;
    font-size:32px;
    line-height:1.32;
  }

  .hero-desc{
    font-size:14px;
    line-height:1.85;
  }

  .hero-btn{

    padding:12px 22px;
    margin-top:22px;
    font-size:13px;
  }

}

/* =======================
   HERO END
======================= */

/* =======================
   CAMPAIGN CTA START
======================= */

.campaign-cta{
  padding:56px 20px;
  background:linear-gradient(180deg, #faf8f6 0%, #f6f2ef 100%);
  text-align:center;
}

.campaign-inner{
  max-width:760px;
  margin:0 auto;
  padding:34px 28px;
  background:#fff;
  border:1px solid rgba(81,177,191,.14);
  border-radius:22px;
  box-shadow:0 12px 30px rgba(0,0,0,.05);
}

.campaign-badge{
  display:inline-block;
  margin:0 0 18px;
  padding:7px 14px;
  font-size:12px;
  font-weight:700;
  letter-spacing:.18em;
  color:#fff;
  background:#50b0be;
  border-radius:999px;
}

.campaign-title{
  margin:0 0 14px;
  font-size:30px;
  line-height:1.45;
  font-weight:500;
  color:#222;
}

.campaign-desc{
  margin:0 0 6px;
  font-size:16px;
  line-height:1.8;
  color:#666;
}

.campaign-desc strong{
  color:#50b0be;
  font-weight:700;
}

.campaign-desc-under{
  margin:0 0 24px;
  font-size:20px;
  line-height:1.6;
  font-weight:700;
  color:#caa66a;
}

.campaign-button{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:260px;
  min-height:56px;
  padding:14px 28px;
  background:#50b0be;
  color:#fff;
  font-size:14px;
  font-weight:600;
  letter-spacing:.08em;
  text-decoration:none;
  border-radius:999px;
  transition:transform .25s ease, opacity .25s ease, box-shadow .25s ease;
  box-shadow:0 10px 24px rgba(80,176,190,.22);
}

.campaign-button:hover{
  transform:translateY(-2px);
  opacity:.95;
}

.sp-only{
  display:none;
}

@media (max-width:768px){

  .campaign-cta{
    padding:42px 16px;
  }

  .campaign-inner{
    padding:26px 18px;
    border-radius:18px;
  }

  .campaign-badge{
    margin-bottom:14px;
    font-size:11px;
    padding:6px 12px;
  }

  .campaign-title{
    font-size:24px;
    line-height:1.5;
    margin-bottom:12px;
  }

  .campaign-desc{
    font-size:14px;
    line-height:1.75;
  }

  .campaign-desc-under{
    font-size:17px;
    margin-bottom:20px;
  }

  .campaign-button{
    width:100%;
    min-width:0;
    min-height:52px;
    font-size:13px;
  }

  .sp-only{
    display:block;
  }

}

/* =======================
   CAMPAIGN CTA END
======================= */

/* =======================
   ABOUT START
======================= */

.about-section{
  position:relative;
  padding:140px 20px;
  background:#ffffff;
  text-align:center;
}

/* 上下に極細ライン */
.about-section::before,
.about-section::after{
  content:"";
  position:absolute;
  left:0;
  width:100%;
  height:1px;
  background:rgba(0,0,0,.05);
}

.about-section::before{ top:0; }
.about-section::after{ bottom:0; }

.about-inner{
  max-width:1100px;
  margin:0 auto;
}

.about-header{
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:20px;
  margin-bottom:40px;
}

/* タイトル上の縦ライン */
.about-line{
  width:1px;
  height:40px;
  background:rgba(0,0,0,.15);
}

.about-title{
  font-size:30px;
  font-weight:400;
  letter-spacing:.05em;
  margin:0;
}

.about-lead{
  font-size:18px;
  color:#666;
  line-height:1.9;
  margin:0 0 100px;
}

/* グリッド */
.about-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:80px 40px;
}

.about-item{
  transition:transform .5s cubic-bezier(.22,.61,.36,1);
}

.about-item:hover{
/*  transform:translateY(-8px);*/
}

/* PNGアイコン */

.about-icon{
  margin-bottom:24px;
}

.about-icon img{
  width:85px;
  height:85px;
  object-fit:contain;
  display:block;
  margin:0 auto;
}

.about-item-title{
  font-size:16px;
  line-height:1.9;
  color:#333;
  margin:0;
}

.about-accent{
  color:#50b0be;
  font-weight:600;
}

/* PC */
@media (min-width:1024px){

  .about-grid{
    grid-template-columns:repeat(4,1fr);
    gap:60px;
  }

}

@media (max-width:768px){
.about-section{
  position:relative;
  padding:60px 20px;
  background:#ffffff;
  text-align:center;
}
.about-title{
  font-size:24px;
  font-weight:400;
  letter-spacing:.05em;
  margin:0;
}
.about-lead{
  font-size:16px;
  color:#666;
  line-height:1.9;
  margin:0 0 100px;
}
.about-item-title{
  font-size:14px;
  line-height:1.9;
  color:#333;
  margin:0;
  }
}

/* =======================
   ABOUT END
======================= */

/* =======================
   PROBLEM START
======================= */

.problem-section{
  padding:160px 20px;
  text-align:center;
  background:#faf8f6;
}

.problem-inner{
  max-width:1000px;
  margin:0 auto;
}

.problem-title{
  font-size:30px;
  font-weight:400;
  margin-bottom:50px;
}

.problem-text{
  color:#666;
  line-height:2;
  margin-bottom:60px;
}

.problem-arrow{
  font-size:24px;
  color:#50b0be;
  margin:30px 0;
}

.problem-solution{
  font-size:20px;
  font-weight:400;
  margin-bottom:20px;
}

.problem-style-label{
  font-size:14px;
  letter-spacing:.2em;
  color:#7f8c8c;
  margin-bottom:80px;
}

.style-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:40px;
}

.style-card{
  background:#ffffff;
  padding:40px 30px;
  transition:.4s cubic-bezier(.22,.61,.36,1);
  display:flex;
  flex-direction:column;
}

.style-card:hover{
/*  transform:translateY(-8px);*/
}

.style-card h3{
  font-size:16px;
  margin-bottom:10px;
}

.style-card p{
  font-size:14px;
  color:#666;
  margin:0 0 20px;
}

.style-image{
  width:80px;
  height:80px;
  margin:0 auto 0;
/*  background:#e8f2f2; */
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  margin-top:auto;
}

@media (min-width:1024px){

  .style-grid{
    grid-template-columns:repeat(4,1fr);
  }

}
@media (max-width:768px){
.problem-section{
  padding:60px 20px;
  text-align:center;
  background:#faf8f6;
}
.problem-title{
  font-size:24px;
  font-weight:400;
  margin-bottom:50px;
}
.problem-text{
  font-size:16px;
}
.style-card{
  background:#ffffff;
  padding:20px 20px;
  transition:.4s cubic-bezier(.22,.61,.36,1);
  display:flex;
  flex-direction:column;
}
  .style-grid{
    grid-template-columns:1fr; /* 1列 */
  }

}

/* =======================
   PROBLEM END
======================= */

/* =======================
   MACHINE START
======================= */

.machine-section{
  position:relative;
  padding:200px 20px;
background:#ffffff;
  overflow:hidden;
}

.machine-inner{
  max-width:1200px;
  margin:0 auto;
}

.machine-title{
  text-align:center;
  font-size:32px;
  font-weight:400;
  margin-bottom:80px;
}

/* タブ */
.machine-tabs{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:16px;
}

.machine-tab{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:8px;

  border:1px solid rgba(80,176,190,.35);
  border-radius:8px;

  padding:14px 18px;
  background:#fff;

  text-decoration:none;
  color:#333;

  transition:.25s ease;
}
.machine-tab:hover{
  border-color:#50b0be;
  background:#f3f9fa;
}
.machine-tab.active{
  border-color:#50b0be;
  background:#50b0be;
  color:#fff;
}
.machine-tab::after{
  content:"";
  width:10px;
  height:10px;
  border-right:2px solid currentColor;
  border-bottom:2px solid currentColor;
  transform:rotate(45deg);
  margin-top:-2px;
}

/* パネル */
.machine-panel{
  display:block;
}

.machine-head{
  margin-bottom:30px;
}

.machine-category{
  font-size:12px;
  letter-spacing:.2em;
  color:#999;
padding-top:130px;
  margin-bottom:4px;
}

.machine-name{
  font-size:30px;
  font-weight:500;
margin-top:0;
}

/* メイン */
.machine-main{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:50px;
  align-items:start;
  margin-bottom:50px;
}

.machine-copy-box{
  background:#ffffff;
  background:#ffffff;
  padding-top:24px;
  padding-left:24px;
  padding-right:24px;
  padding-bottom:5px;
  margin-bottom:0px;
}

.machine-feature-box{
  background:#ffffff;
  padding-top:5px;
  padding-left:24px;
  padding-right:24px;
  padding-bottom:5px;
  margin-bottom:0px;
}

.machine-copy-label{
display:inline-block;
  margin-bottom:16px;
  padding:10px 16px;

  font-size:16px;
  line-height:1.4;
  font-weight:600;

  color:#50b0be;
  background:rgba(80,176,190,.10);

  border:1px solid rgba(80,176,190,.25);
  border-radius:20px;
}

.machine-copy-text,
.machine-feature-text{
  font-size:14px;
  line-height:1.9;
  color:#555;
}

.machine-feature-title{
  font-size:16px;
  font-weight:600;
  margin-bottom:16px;
text-align:left;

}

.machine-image-main{
  background:#fff;
  min-height:360px;
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
}

.machine-image-main img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.machine-sublead{
  text-align:center;
font-size:24px;
  line-height:1.6;
  font-weight:500;
  margin-bottom:40px;
}

/* 3ポイント */
.machine-points{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:30px;
  margin-bottom:70px;
}

.machine-point-image{
  width:100%;
  max-width:380px;
  margin:0 auto 20px;
  aspect-ratio:380 / 200;
  overflow:hidden;
}

.machine-point-image img{
  width:100%;
  height:100%;
  display:block;
  object-fit:cover;
}

.machine-point h4{
  font-size:14px;
  margin-bottom:10px;
}

.machine-point p{
  font-size:13px;
  line-height:1.8;
  color:#666;
}

/* オプション */
.machine-option{
  margin-top:30px;
  padding-top:10px;
}

.machine-option-heading{
  text-align:center;
  margin-bottom:25px;
}

.machine-option-heading span{
  display:block;
  font-size:20px;
  margin-bottom:8px;
}

.machine-option-heading h4{
  font-size:28px;
  font-weight:400;
}

.machine-option-box{
  display:grid;
  grid-template-columns:260px 1fr;
  gap:30px;
  align-items:center;
}

.machine-option-image{
  background:#eae7e4;
  min-height:180px;
  overflow:hidden;
}

.machine-option-image img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.machine-option-content{
  background:#fff;
  padding:24px;
  border:1px solid rgba(78,166,166,.18);
}

.machine-option-name{
  font-size:18px;
  font-weight:600;
  margin-bottom:12px;
}

.machine-option-text{
  font-size:14px;
  line-height:1.9;
  color:#666;
  margin-bottom:14px;
}

.machine-option-badge{
  text-align:right;
  font-size:14px;
  font-weight:600;
  color:#ff4fa0;
}

/* beauty circles */
.machine-circles{
  display:flex;
  justify-content:flex-start; /* 左寄せ */
  gap:20px;
  margin-bottom:40px;
  padding-left:24px; /* 左余白 */
padding-right:24px;
}

.machine-circle{
  width:160px;
  height:160px;
  border-radius:50%;
  background:rgba(80,176,190,.10);
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  font-size:13px;
  line-height:1.7;
  color:#555;
}

.machine-note-list{
display:grid;
  grid-template-columns:380px 1fr;
  gap:30px;
  align-items:start;

  max-width:800px;
  margin:0 auto;
}

.machine-note-image{
  width:100%;
  max-width:380px;
  aspect-ratio:380 / 200;
  overflow:hidden;
}

.machine-note-image img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.machine-note-points{
  margin:0;
  padding-left:20px;
}

.machine-note-points li{
  font-size:14px;
  line-height:1.9;
  color:#555;
  margin-bottom:8px;
}

/* SP */
@media (max-width:768px){

  .machine-main{
    grid-template-columns:1fr;
    gap:5px; 
    margin-bottom: 15px;
  }
  .machine-points{
    grid-template-columns:1fr;
    margin-bottom: 30px;
  }

  .machine-option-box{
    grid-template-columns:1fr;
  }
.machine-circle{
  width:145px;
  height:145px;

}
  .machine-circles{
  flex-direction:row;
    align-items:center;
margin-bottom:0px;

  }

  .machine-note-list{
    grid-template-columns:1fr;
  }


}

/* =======================
   MACHINE END
======================= */

/* =======================
   MACHINE OPTION START
======================= */

.machine-option{
  margin-top:30px;
  padding:40px 36px 20px;
  background:#f3f3f3;
}

.machine-option-heading{
  text-align:center;
  margin-bottom:34px;
}

.machine-option-heading span{
  display:block;
  font-size:30px;
  line-height:1;
  margin-bottom:6px;
  color:#50b0be;
}

.machine-option-heading h4{
  margin:0;
  font-size:28px;
  line-height:1.4;
  font-weight:400;
  color:#50b0be;
}

.machine-option-intro{
  margin-bottom:26px;
}

.machine-option-name{
  margin:0 0 10px;
  font-size:24px;
  line-height:1.5;
  font-weight:700;
  color:#111;
}

.machine-option-lead{
  margin:0;
  font-size:14px;
  line-height:1.9;
  color:#444;
}

.machine-option-lead strong{
  font-weight:700;
}

.machine-option-box{
  display:flex;
  gap:32px;
  align-items:stretch;
}

/* 左右の枠を同一ルールで管理 */
.machine-option-visual,
.machine-option-content{
  box-sizing:border-box;
  padding:28px;
  background:#ffffff;
}

/* 左：画像枠 */
.machine-option-visual{
  flex:0 0 32%;
  display:flex;
  align-items:stretch;
}

/* 画像エリアを枠いっぱいに */
.machine-option-image{
  width:100%;
  height:180px;
  background:#ffffff;
  overflow:hidden;
  display:flex;
  align-items:center;
  justify-content:center;
}

.machine-option-image img{
  width:100%;
  height:100%;
  object-fit:contain;
  display:block;
}

/* 右：テキスト枠 */
.machine-option-content{
  flex:1 1 0;
  display:flex;
  flex-direction:column;
  justify-content:flex-start;
}

.machine-option-copy{
  margin:0 0 22px;
  font-size:20px;
  line-height:1.5;
  font-weight:500;
  color:#222;
}

.machine-option-text{
  margin:0;
  font-size:14px;
  line-height:1.95;
  color:#444;
}

/* 右寄せ位置に揃える */
.machine-option-note{
  margin:18px 0 0 auto;
  max-width:580px;
  font-size:11px;
  line-height:1.8;
  color:#757575;
  padding:0;
  list-style:none;
}

.machine-option-note li{
  position:relative;
  padding-left:1.2em;
}

.machine-option-note li::before{
  content:"\203B";
  position:absolute;
  left:0;
}

/* SP */
@media (max-width:768px){
  .machine-option{
    padding:32px 20px 18px;
  }

  .machine-option-box{
    flex-direction:column;
    gap:24px;
  }

  .machine-option-visual,
  .machine-option-content{
    flex:none;
    width:100%;
    padding:22px;
  }

  .machine-option-image{
    max-width:100%;
    min-height:auto;
    aspect-ratio:4 / 3;
  }

  .machine-option-note{
    margin:16px 0 0;
    text-align:left;
  }
.machine-section{
  position:relative;
  padding:60px 20px;
background:#ffffff;
  overflow:hidden;
}
.machine-name{
  font-size:24px;
  font-weight:500;
margin-top:0;
}
.machine-category{
  font-size:12px;
  letter-spacing:.2em;
  color:#999;
padding-top:60px;
  margin-bottom:4px;
}
.machine-feature-title{
  font-size:16px;
  font-weight:600;
  margin-bottom:16px;
text-align:left;
padding-left:0px;
}
.machine-title{
  text-align:center;
  font-size:24px;
  font-weight:400;
  margin-bottom:60px;
}
.machine-copy-box{
  background:#ffffff;
  background:#ffffff;
  padding-top:5px;
  padding-left:24px;
  padding-right:24px;
  padding-bottom:5px;
  margin-bottom:0px;
}
.feature-beauty-box{
  padding-left:24px;
  padding-right:24px;
}
  .machine-option-heading h4{
    font-size:22px;
  }

  .machine-option-name{
    font-size:18px;
  }

  .machine-option-copy{
    font-size:17px;
  }

  .machine-option-text{
    font-size:13px;
  }
 .machine-tabs{
    grid-template-columns:1fr;
  }
  .machine-tab{
    position:relative;
  }

  .machine-tab::after{
    position:absolute;
    right:16px;
    top:50%;
    transform:translateY(-50%) rotate(45deg);
    margin-top:0;
  }
.machine-image-main-w{padding-right:24px;}
.machine-image-main {
    min-height: 300px;
}
}
/* =======================
   MACHINE OPTION END
======================= */

/* =======================
   DESIGN START
======================= */

.design-section{
  padding:160px 20px;
  background:#fff;
}

.design-inner{
  max-width:1100px;
  margin:0 auto;
}

.design-title{
  max-width:860px;
  margin:0 auto 80px;
  text-align:center;
  font-size:30px;
  font-weight:400;
  line-height:1.8;
  letter-spacing:.04em;
  color:#333;
}

.design-grid{
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:20px;
}

.design-item{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
  padding:22px 24px;
  background:#ffffff;
  border:1px solid rgba(81,177,191,.14);
  border-radius:18px;
  box-shadow:0 10px 24px rgba(0,0,0,.04);
  transition:transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}

/*.design-item:hover{
  transform:translateY(-3px);
  box-shadow:0 14px 32px rgba(0,0,0,.06);
  border-color:rgba(81,177,191,.28);
}
*/
.design-text{
  flex:1;
  min-width:0;
}

.design-text p{
  margin:0;
  font-size:16px;
  line-height:1.9;
  color:#444;
}

.design-icon{
  width:88px;
  height:88px;
  flex:0 0 88px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:#fff;
  border:1px solid rgba(81,177,191,.12);
  border-radius:14px;
}

.design-icon img{
  width:54px;
  height:54px;
  object-fit:contain;
  display:block;
}

/* tablet */
@media (max-width:900px){
  .design-grid{
    gap:16px;
  }

  .design-item{
    padding:20px 18px;
    gap:18px;
  }

  .design-text p{
    font-size:15px;
  }

  .design-icon{
    width:78px;
    height:78px;
    flex:0 0 78px;
  }

  .design-icon img{
    width:48px;
    height:48px;
  }
}

/* sp */
@media (max-width:768px){

  .design-section{
    padding:60px 20px;
  }

  .design-title{
    font-size:24px;
    line-height:1.7;
    margin-bottom:48px;
  }

  .design-grid{
    grid-template-columns:1fr;
    gap:14px;
  }

  .design-item{
    padding:18px 16px;
    gap:16px;
    border-radius:14px;
  }

  .design-text p{
    font-size:14px;
    line-height:1.8;
  }

  .design-icon{
    width:68px;
    height:68px;
    flex:0 0 68px;
    border-radius:12px;
  }

  .design-icon img{
    width:42px;
    height:42px;
  }

}

/* =======================
   DESIGN END
======================= */


/* =======================
   FLOW START
======================= */

.flow-section{
  padding:200px 20px;
  background:#faf8f6;
}

.flow-inner{
  max-width:1200px;
  margin:0 auto;
}

.flow-title{
  text-align:center;
  font-size:30px;
  font-weight:400;
  margin-bottom:140px;
}

/* 横ライン */
.flow-line{
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  position:relative;
}

/* 横線 */
.flow-line::before{
  content:"";
  position:absolute;
  top:32px;
  left:0;
  width:100%;
  height:1px;
  background:rgba(78,166,166,.18);
  z-index:0;
}

.flow-step{
  position:relative;
  text-align:center;
  width:20%;
  z-index:1;
}

.flow-number{
  display:inline-block;
  font-size:48px;
  font-weight:300;
  color:#4ea6a6;
  margin-bottom:12px;
}

.flow-text{
  font-size:14px;
  color:#333;
}
.flow-image{
  width:200px;
  height:200px;
  margin:18px auto 20px;
  background:#ffffff;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  box-shadow:0 8px 25px rgba(78,166,166,.15);
}

.flow-image img{
  height:auto;
  display:block;
    width:180px;
}
/* SPは横スクロール */
@media (max-width:768px){
  .flow-line{
    overflow-x:auto;
    overflow-y:hidden;
    gap:60px;
  }

  .flow-step{
    min-width:140px;
  }
  .flow-image{
    width:150px;
    height:150px;
  }

  .flow-image img{
    width:130px;
  }
}
.flow-notes{

  margin:60px auto 0;
  font-size:12px;
  line-height:1.8;
  color:#777;
  text-align:left;
}

.flow-notes p{
  margin-bottom:6px;
}


.flow-notes{
  max-width:800px;
  margin:60px auto 0;
  font-size:12px;
  line-height:1.8;
  color:#777;
  text-align:left;
}

.flow-notes p{
  margin-bottom:6px;
}

/* SP */
@media (max-width:768px){
.flow-section{
  padding:60px 20px;
  background:#faf8f6;
}

.flow-title{
  text-align:center;
  font-size:24px;
  font-weight:400;
  margin-bottom:60px;
}
.flow-desc{
  text-align:center;
  font-size:14px;

}
  .flow-notes{
    margin-top:40px;
    font-size:11px;
  }
  .flow-notes{
    margin-top:40px;
    font-size:11px;
  }

}

/* =======================
   FLOW END
======================= */

/* =======================
   PRICE START
======================= */

.price-section{
  padding:220px 20px;
  background:#fff;
}

.price-inner{
  max-width:1100px;
  margin:0 auto;
}

.price-title{
  text-align:center;
  font-size:30px;
  font-weight:400;
  margin-bottom:20px;
}

.price-note{
  text-align:center;
  font-size:14px;
  letter-spacing:.08em;
  color:#777;
  margin-bottom:120px;
}

/* カードレイアウト */

.price-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:40px;
}

/* カード */

.price-card{
  background:#fff;
  padding:36px;
  box-shadow:0 20px 40px rgba(0,0,0,.05);
}

.price-card-title{
  font-size:20px;
  margin-bottom:6px;
}

.price-card-sub{
  font-size:12px;
  letter-spacing:.1em;
  color:#4ea6a6;
  margin-bottom:24px;
}

/* 料金テーブル */

.price-table-row{
  display:flex;
  justify-content:space-between;
  padding:14px 0;
  border-bottom:1px solid rgba(0,0,0,.06);
  font-size:14px;
}

.price-table-row strong{
  font-weight:600;
}

/* 回数券強調 */

.price-table-row.highlight{
  color:#4ea6a6;
  font-weight:600;
}
.price-card-sub.empty{
  visibility:hidden;
}

/* SP */
@media (max-width:768px){
.price-section{
  padding:60px 20px;
  background:#fff;
}
.price-title{
  text-align:center;
  font-size:24px;
  font-weight:400;
  margin-bottom:20px;
}
.price-note{
  text-align:center;
  font-size:14px;
  letter-spacing:.08em;
  color:#777;
  margin-bottom:20px;
}
  .price-grid{
    grid-template-columns:1fr;
    gap:28px;
  }

}

/* =======================
   PRICE END
======================= */

/* =======================
   FAQ START
======================= */

.faq-section{
  padding:200px 20px;
  background:#fff;
}

.faq-inner{
  max-width:1200px;
  margin:0 auto;
  display:grid;
  grid-template-columns:280px 1fr;
  gap:100px;
}
.faq-title{
  font-size:42px;
  font-weight:300;
  margin-bottom:10px;
}

.faq-sub{
  font-size:14px;
  color:#666;
}

.faq-item{
  border-top:1px solid rgba(0,0,0,.15);
}

.faq-question{
  width:100%;
  background:none;
  border:none;
  padding:28px 0;
  display:flex;
  justify-content:space-between;
  align-items:center;
  font-size:16px;
  cursor:pointer;
  text-align:left;
}

.faq-icon{
  width:14px;
  height:14px;
  position:relative;
  flex:0 0 auto;
}

.faq-icon::before,
.faq-icon::after{
  content:"";
  position:absolute;
  background:#333;
  transition:.3s ease;
}

.faq-icon::before{
  width:14px;
  height:1px;
  top:50%;
  left:0;
}

.faq-icon::after{
  width:1px;
  height:14px;
  left:50%;
  top:0;
}

.faq-answer{
  height:0;
  overflow:hidden;
  transition:height .4s ease;
}

.faq-answer p{
  margin:0;
  padding:0 0 24px;
  font-size:14px;
  line-height:1.8;
  color:#555;
}

.faq-item.active .faq-icon::after{
  opacity:0;
}

/* SP */
@media (max-width:768px){
.faq-section{
  padding:60px 20px;
  background:#fff;
}
.faq-title{
  font-size:28px;
  font-weight:300;
  margin-bottom:10px;
}
.faq-question{
  font-size:15px;

}
  .faq-inner{
    grid-template-columns:1fr;
    gap:60px;
  }

}

/* =======================
   FAQ END
======================= */

/* =======================
   STORE INFO START
======================= */

.store-section{
  padding:220px 20px;
  background:#faf8f6;
}

.store-inner{
  max-width:1200px;
  margin:0 auto;
}

.store-title{
  font-size:32px;
  font-weight:400;
  margin-bottom:120px;
}

.store-title span{
  font-size:16px;
  color:#999;
}

.store-grid{
  display:grid;
  grid-template-columns:1fr 1.2fr;
  gap:120px;
  align-items:start;
}

/* 左情報 */

.store-row{
  margin-bottom:50px;
}

.store-label{
  font-size:12px;
  letter-spacing:.15em;
  color:#999;
  margin-bottom:10px;
}

.store-text{
  font-size:16px;
  line-height:1.8;
}

/* 右マップ */

.store-map{
  width:100%;
  height:420px;
  background:#f5f1ed;
  position:relative;
}

.map-placeholder{
  width:100%;
  height:100%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:20px;
  color:#bbb;
}

/* Google iframe入れる時 */

.store-map iframe{
  width:100%;
  height:100%;
  border:0;
}

/* SP */

@media (max-width:768px){
.store-section{
  padding:60px 20px;
  background:#faf8f6;
}
.store-title{
  font-size:28px;
  font-weight:400;
  margin-bottom:60px;
}
  .store-grid{
    grid-template-columns:1fr;
    gap:80px;
  }

  .store-map{
    height:300px;
  }

}

/* =======================
   STORE INFO END
======================= */

/* =======================
   FOOTER START
======================= */

.footer{
  padding:160px 20px 60px;
  background:#51b1bf;
  color:#fff;
}

.footer-inner{
  max-width:1200px;
  margin:0 auto;
}

.footer-top{
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  margin-bottom:120px;
}

/* ロゴ */

.footer-logo{
  margin-bottom:24px;
}

.footer-logo img{
  height:40px;
  width:auto;
  display:block;
}



/* キャッチ */

.footer-tagline{
  font-size:14px;
  color:rgba(255,255,255,.85);
  line-height:1.8;
}

/* ナビ */

.footer-nav{
  display:flex;
  flex-direction:column;
  gap:18px;
}

.footer-nav a{
  color:rgba(255,255,255,.85);
  text-decoration:none;
  font-size:14px;
  transition:.3s ease;
}

.footer-nav a:hover{
  color:#ffffff;
  opacity:.9;
}

/* 下部 */

.footer-bottom{
  border-top:1px solid rgba(255,255,255,.25);
  padding-top:40px;
  font-size:12px;
  color:rgba(255,255,255,.75);
}


/* SP */

@media (max-width:768px){

  .footer-logo img{
    height:34px;
  }
  .footer-top{
    flex-direction:column;
    gap:60px;
  }
}


/* =======================
   FOOTER END
======================= */

/* =======================
   CTA START
======================= */

.final-cta{
  padding:180px 20px;
  text-align:center;
  background:#f3f1ed;
}

.final-cta-inner{
  max-width:800px;
  margin:0 auto;
}

.final-cta-title{
  font-size:30px;
  font-weight:400;
  line-height:1.6;
  margin-bottom:40px;
  color:#222;
}

.final-cta-sub{
  font-size:14px;
  letter-spacing:.05em;
  color:#666;
  margin-bottom:30px;
}

.final-cta-btn{
  display:inline-block;
  padding:16px 42px;
  background:#50b0be;
  color:#fff;
  border-radius:999px;
  font-size:15px;
  text-decoration:none;
  transition:.4s cubic-bezier(.22,.61,.36,1);
}

.final-cta-btn:hover{
  transform:translateY(-4px);
  box-shadow:0 15px 30px rgba(0,0,0,.1);
}

@media (max-width:768px){
.final-cta{
  padding:60px 20px;
  text-align:center;
  background:#f3f1ed;
}
.final-cta-title{
  font-size:24px;
  font-weight:400;
  line-height:1.6;
  margin-bottom:40px;
  color:#222;
}
}

/* =======================
   CTA END
======================= */

/* =======================
   SCROLL REVEAL START
======================= */

.reveal{
  opacity:0;
  transform:translateY(40px);
  transition:
    opacity 1s cubic-bezier(.22,.61,.36,1),
    transform 1s cubic-bezier(.22,.61,.36,1);
  will-change:opacity, transform;
}

.reveal.active{
  opacity:1;
  transform:translateY(0);
}

/* =======================
   SCROLL REVEAL END