@charset "UTF-8";

/* =========================
  Reset / Base（既存系）
========================= */
*,
*::before,
*::after {
  box-sizing: border-box;
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
figure,
blockquote,
dl,
dd,
ul {
  margin: 0;
}

ul,
ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

html:focus-within {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;

  font-size: 29px;
  font-weight: 500;
  letter-spacing: 0.05em;
  font-family: "Noto Sans JP", "メイリオ", Meiryo, "Hiragino Kaku Gothic Pro",
    "ヒラギノ角ゴ Pro W3", "ＭＳ Ｐゴシック", Arial, Verdana, sans-serif;
  color: #333;
  background: #faf4ff;
}

a { text-decoration: none; color: inherit; }

img,
picture {
  max-width: 100%;
  display: block;
}

/* 既存CSSの強い指定（FVだけ後で上書き） */
img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  margin: auto;
}

/* === アニメーション設定：常時ゆらゆら === */
@keyframes cta-sway {
  0%   { transform: translateX(0); }
  25%  { transform: translateX(-6px); }
  50%  { transform: translateX(0); }
  75%  { transform: translateX(6px); }
  100% { transform: translateX(0); }
}

/* =========================================================
   Color Variables（NEWS / CATEGORY）
   ========================================================= */
:root {

  /* メインカラー */
  --main_color: #c7606a;
  /* サブカラー */
  --sub_color1: #933a5e;
  --sub_color2: #feecec;
  
  /* 文字カラー */
  --text-main_color: #333;
}


/* =========================
  Layout
========================= */
.l-shell { min-height: 100vh; }

/* SPは左右非表示 */
.l-side { display: none; }

/* SP：中央100% */
.l-center {
  width: 100%;
  display: block;
}

.site {
  width: 100%;
  background: #fff;
  min-height: 100vh;
  box-shadow: 0 8px 28px rgba(0,0,0,.10);
  position: relative;
  z-index: 10;
}

/* =========================
  Header（高さ50pxに変更）
========================= */
#header {
  position: fixed;
  top: 0;
  height: 50px; 
  background: #fff;
  box-shadow: 0 8px 8px -6px rgba(0,0,0,.15);
  z-index: 1000;
  width: 100%;
}

#header .body {
  position: relative;
  width: 100%;
  height: 100%;
  margin-inline: auto;
}

#header .inner {
  height: 100%;
  padding-left: 12px;
  padding-right: 0;
}

#header .box {
  height: 100%;
  justify-content: space-between;
}

#header .logo {
  max-width: 200px;
}

#header .btns {
  margin-right: 50px; /* drawer分 */
}

#header .btn {
  max-width: 70px;
}

#header .btn img {
  height: 50px;              /* ★50px */
  object-fit: contain;
}

/* drawer：右上の紫ボタン（50pxに合わせる） */
.drawer .icon {
  position: absolute;
  top: 0;
  right: 0;
  background: var(--main_color);
  cursor: pointer;
  z-index: 1000;
}

.drawer .icon__bars {
  width: 50px;               /* ★50px */
  height: 50px;              /* ★50px */
  transition: 0.3s ease-in-out;
}

.drawer .icon__bar1,
.drawer .icon__bar2,
.drawer .icon__bar3 {
  position: absolute;
  width: 28px;
  height: 2px;
  left: 11px;
  background: #fff;
  transition: ease 0.5s;
}

.drawer .icon__bar1 { top: 12px; }
.drawer .icon__bar2 { top: 20px; }
.drawer .icon__bar3 { top: 28px; }

.drawer .icon.is-active .icon__bar1 {
    top: calc(50% - 5px);
    left: 50%;
    -webkit-transform: translate(-50%, -50%) rotate(-45deg);
    transform: translate(-50%, -50%) rotate(-45deg);
}
.drawer .icon.is-active .icon__bar2 {
    display: none;
}
.drawer .icon.is-active .icon__bar3 {
    top: calc(50% - 5px);
    left: 50%;
    -webkit-transform: translate(-50%, -50%) rotate(45deg);
    transform: translate(-50%, -50%) rotate(45deg);
}


.icon__text {
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%);
  font-family: "Noto Serif JP", serif;
  font-size: 10px;
  font-weight: 500;
  color: #fff;
}

/* ドロワー内容（既存踏襲） */
.drawer .content {
  position: absolute;
  width: 100%;
  height: 100vh;
  top: 0;
  right: 0;
  background: #fff;
  padding: 58px 28px;
  transition: all 0.5s;
  opacity: 0;
  visibility: hidden;
  display: none;
  overflow-y: scroll;
  z-index: 250;
}

.drawer .content.is-active {
  display: block;
  opacity: 1;
  visibility: visible;
}

.drawer .content__logo {
  max-width: 51.28vw;
  margin-inline: auto;
}

.drawer .content__items {
    margin-top: 35px;
}
.drawer .content__item a {
    width: 100%;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    text-align: left;
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
    font-size: 16px;
    border-bottom: 1px solid #ccc;
    padding: 5.13vw 2.56vw;
}

.drawer .content__item-text {
position: relative;
    display: inline-block;
    font-family: "Noto Serif JP", serif;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0.05em;
    font-size: 4.62vw;
    padding-left: 4.36vw;
}

.drawer .content__item-text::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    background: var(--main_color);
    border-radius: 50%;
    width: 1.79vw;
    height: 1.79vw;
}

.drawer .content__item-arrow {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    width: 15px;
    height: 15px;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    -webkit-transform-origin: center center;
    transform-origin: center center;
    border-right: 2px solid var(--main_color);
    border-bottom: 2px solid var(--main_color);
}

/* =========================
  FV（画像 + 下部テキスト + CTA）
========================= */
.fv {
  padding-top: 50px; /* ★fixed header分 */
  background: #fdecec;
}

.fv__imageWrap { width: 100%; }

/* ★ここが重要：FVだけは正しく表示 */
.fv__image {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.fv__bottom {
  padding: 12px 12px 16px;
  text-align: center;
}

.fv__note {
  margin: 4px 0 0;
  font-size: 11px;
  color: rgba(0,0,0,.6);
  font-weight: 600;
  line-height: 1.6;
  text-align: center;
}

.fv__note2 {
    font-family: "Noto Serif JP", serif;
    font-size: 16pt;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-align: center;
    margin: 22px 0 0;
    line-height: 1.4;
    position: relative;
    display: inline-block;
    padding: 0 15px;
    max-width: 320px;
}
.fv__note2 span{
  color: var(--main_color);
}
.fv__note2::before,
.fv__note2::after {
  content: "＼";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-weight: 700;
  color: var(--main_color);
}

.fv__note2::after {
  content: "／";
}

.fv__note2::before {
  left: -15px;
  rotate: 10deg;
}

.fv__note2::after {
  right: -15px;
  rotate: -10deg;
}

.section__imageWrap { width: 100%; }

.section__imageWrap__image {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.pico-about {
  background: url('../images/section1-2_back.webp');
  padding: 28px 16px 26px;
  background-size: cover;
}

.pico-about__inner {
  width: 100%;
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.pico-about__title {
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  font-size: 34px;
  line-height: 1.2;
}

.pico-about__lead {
  margin-bottom: 18px;
  margin-top: 12px;
}

/* 白いカード */
.pico-about__card {
    background: #fff;
    border-radius: 8px;
    padding: 21px;
    box-shadow: 2px 2px 3px #d6abab;
}

/* video枠 */
.pico-about__video {
  overflow: hidden;
  background: #eee;
}

.pico-about__video video {
  width: 100%;
  height: auto;
  display: block;
}

.pico-case__title{
  font-size: 26px;
  font-family: "Noto Serif JP", serif;
  line-height: 1.2;
  text-align: center;
  margin: 10px auto  20px;
  font-weight: 500;
}
.section2-btns {
  background: #fdecec;
  position: relative;
  margin-top: -11px;
}

.section2-btns__inner {
  margin: 0 auto;
  background: #fff;
  border-radius: 14px;
  padding: 20px;
  box-shadow: 2px 2px 3px #d6abab;
}

.section2-btns__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  align-items: stretch;
}

/* ボタン（リンク） */
.section2-btns__item {
  display: block;
  overflow: hidden;
  transition: transform .25s ease, opacity .25s ease;
}

.section2-btns__item img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}

/* hover */
@media (hover:hover) {
  .section2-btns__item:hover {
    transform: scale(1.02);
    opacity: .95;
  }
}

.price__title {
  text-align: center;
  font-family: "Noto Serif JP", serif;
  font-weight: 600;
  font-size: 20px;
  letter-spacing: .12em;
  color: rgba(0,0,0,.7);
  margin-bottom: 12px;
}

.price__block {
  border-radius: 0;
  overflow: hidden;
  padding-bottom: 30px;
}

.price__band {
  background: var(--main_color);
  color: #fff;
  text-align: center;
  font-weight: normal;
  letter-spacing: -.05em;
  padding: 10px 12px;
  font-size: 20px;
}

/* テーブル */
.price__table {
    width: calc(100% - 30px);
    border-collapse: collapse;
    margin: 0 15px;
}

.price__table tr {
  border-bottom: 1px solid rgba(0,0,0,.18);
}

.price__table th,
.price__table td {
  padding: 6px 8px;
  vertical-align: middle;
}

.price__table th {
  text-align: left;
  font-size: 16px;
  font-weight: normal;
}

.price__table td {
  text-align: right;
  white-space: nowrap;
}

/* 左カラム：項目 */
.price__area {
  display: inline-block;
}

.price__tag {
  display: inline-block;
  margin-left: 10px;
}

.price__tag--pink {
  color: var(--main_color); /* 初回だけピンク */
}

/* 右カラム：金額 */
.price__yen {
  font-family:"Hiragino Mincho ProN","Yu Mincho","Noto Serif JP",serif;
  font-size: 26px;
  letter-spacing: 0.02em;
  color: var(--main_color);
  font-feature-settings: "palt" 1, "kern" 1;
  font-kerning: normal;
  font-weight: 600;
}

.price__unit {
  font-size: 16px;
  font-weight: normal;
}

.qa {
  padding: 18px 15px 20px;
}

.qa__inner {
  max-width: 720px;
  margin: 0 auto;
}

.qa__titleAccent {
  color: #b85a78;
}

.qa__list {
  overflow: hidden;
}

.qa-item {
  background: #f2f2f2;
  margin: 10px 0 0;
}

.qa-item:first-child {
  border-top: none;
}

.qa-item__head {
  width: 100%;
  border: 0;
  background: transparent;
  padding: 12px 12px;
  cursor: pointer;
  display: grid;
  grid-template-columns: 18px 1fr 20px;
  align-items: center;
  gap: 10px;
  text-align: left;
}

.qa-item__q {
    color: var(--main_color);
    font-size: 20px;
    font-family: "Hiragino Mincho ProN", "Yu Mincho", "Noto Serif JP", serif;
}

.qa-item__question {
    font-size: 16px;
    font-weight: normal;
}

.qa-item__icon {
  width: 20px;
  height: 20px;
  position: relative;
}

.qa-item__icon::before,
.qa-item__icon::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 14px;
  height: 2px;
  background: var(--main_color);
  transform: translate(-50%, -50%);
}

.qa-item__icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

/* open: minus */
.qa-item.is-open .qa-item__icon::after {
  transform: translate(-50%, -50%) rotate(0deg);
  opacity: 0;
}

/* body */
.qa-item__body {
  overflow: hidden;
  background: rgba(255,255,255,.9);
}

.qa-item__bodyInner {
  padding: 0 20px 12px;
  background: #f2f2f2;
}

.qa-item__answer {
  font-size: 16px;
  line-height: 1.75;
  font-weight: normal;
}

/* アニメ用（JSでmax-height制御） */
.qa-item__body {
  max-height: 0;
  transition: max-height .28s ease;
}

/* hiddenが壊れても消える保険 */
.qa-item__body[hidden] {
  display: none !important;
}


/* =========================
  Utility
========================= */
.u-flex {
  display: flex;
  align-items: center;
  justify-content: center;
}

.contetns-wrapper{
  background: #fdecec;
  padding: 15px;
}

.contetns-wrapper2{
  background: #fff;
  padding: 15px 0;
}
.text-normal{
  font-size: 16px;
  font-weight: normal;
  line-height: 1.6;
}

.text-small{
  font-size: 19px;
}
.text-red{
  color: var(--main_color);
}
/* CTA 共通 */
.cta_area{
  background-color: var(--sub_color1);
  padding: 16px;
}

.cta_area-inner{
    background-color: #fff;
    padding: 13px 10px 8px;
    text-align: center;
    border-radius: 15px;
}

.cta_area-inner .fv__note2{
    margin-top: 0;
}

.cta {
  display: block;
  text-align: center;
  margin: 0 auto;
}

/* 画像をアニメーション */
.cta img {
  width: 100%;
  height: auto;
  object-fit: contain;

  /* 常時：横ゆらゆら */
  animation: cta-sway 2.8s ease-in-out infinite;

  transition: transform 0.3s ease;
  will-change: transform;
}

/* ホバー時（PCのみ） */
@media (hover: hover) {
  .cta:hover img {
    animation-play-state: paused; /* 揺れ停止 */
    transform: scale(2.5);       /* ★拡大のみ */
  }
}

/* =========================
  症例スライダー
========================= */
.case-slider {
  background: var(--sub_color2);
  padding: 0;
  padding-bottom: 20px;
}

.case-slider__wrap {
  position: relative;
}

.case-slider__viewport {
  overflow: hidden;
}

.case-slider__track {
  display: flex;
  transition: transform .35s ease;
  will-change: transform;
}

.case-slide {
  flex: 0 0 100%;
}

/* カード */
.case-card {
  background: #fff;
  border-radius: 14px;
  border: 3px solid var(--main_color);
  padding: 12px;
  box-shadow: 2px 2px 3px #d6abab;
}

/* 写真枠 */
.case-card__photo {
  position: relative;
  overflow: hidden;
}

/* ★既存 img{height:100%} をここだけ無害化 */
.case-card__photo img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

/* Before/After ラベル */
.case-card__labels {
  position: absolute;
  left: 50%;
  bottom: 10px;
  transform: translateX(-50%);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  width: min(240px, 85%);
}

.case-card__label {
  display: grid;
  place-items: center;
  height: 28px;
  border-radius: 999px;
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .06em;
}

.case-card__label--before {
  background: var(--main_color);
  color: #fff;
}

.case-card__label--after {
  background: var(--main_color);
  color: #fff;
}

/* テキスト */
.case-card__body {
  padding-top: 10px;
}

.case-card__desc {
  font-size: 16px;
  line-height: 1.6;
  color: var(--main_color);
}

.case-card__dl {
  margin-top: 8px;
  font-size: 13px;
  line-height: 1.7;
  color: rgba(0,0,0,.70);
}

.case-card__row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 8px;
}

.case-card__row dt {
  white-space: nowrap;
  font-weight: 800;
  color: rgba(0,0,0,.70);
}

.case-card__row dd {
  margin: 0;
}

.case-card__footnote {
  margin-top: 6px;
  font-size: 11px;
  color: rgba(0,0,0,.55);
}

/* ナビゲーション */
.case-slider__nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
}

.case-slider__arrow {
  position: relative;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: none;
  background: var(--main_color);
  color: #fff;
  font-size: 18px;
  line-height: 32px;
  text-align: center;
  cursor: pointer;
  padding: 0;
}

.case-slider__arrow--prev {
  margin-right: 10px;
}

.case-slider__arrow--next {
  margin-left: 10px;
}

/* ドット */
.case-slider__dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

/* 通常ドット */
.case-slider__dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border-radius: 50%; 
  border: none;
  background: rgba(255,255,255,.7);
  cursor: pointer;
  line-height: 1;
}

/* アクティブ */
.case-slider__dot.is-active {
  background: var(--main_color);
}


/* =========================
  お取り扱い院 アコーディオン
========================= */
.clinic-acc {
  margin-top: 0;
}

/* トリガー行 */
.clinic-acc__trigger {
  width: 100%;
  border: 0;
  background: #fdecec;
  color: var(--main_color);
  font-weight: 500;
  letter-spacing: .04em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 12px 0;
  cursor: pointer;
  font-size: 14.5px;
}

.clinic-acc__trigger2{
  background: #fff;
      margin: 40px auto 0;
}

.clinic-acc__label {
  line-height: 1;
    font-family: "Noto Sans JP", "メイリオ", Meiryo, "Hiragino Kaku Gothic Pro",
    "ヒラギノ角ゴ Pro W3", "ＭＳ Ｐゴシック", Arial, Verdana, sans-serif;
}

/* 右の矢印 */
.clinic-acc__chev {
  width: 8px;
  height: 8px;
  border-right: 2px solid #333;
  border-bottom: 2px solid #333;
  transform: rotate(45deg);
  transition: transform .25s ease;
}

/* 展開エリア */
.clinic-acc__panel {
  background: #fdecec;
  padding: 18px 14px 20px;
  margin-top: 20px;
}

/* 白いカード */
.clinic-acc__box {
  background: #fff;
  border-radius: 18px;
  padding: 30px 18px 16px;
}

/* タイトル */
.clinic-acc__title {
  font-family: "Noto Serif JP", serif;
  text-align: center;
  font-weight: 800;
  font-size: 18px;
  letter-spacing: .04em;
  color: #333;
}

.clinic-acc__titleAccent {
  color: #b85a78;
}

/* タイトル下のライン */
.clinic-acc__rule {
  height: 2px;
  background: #b85a78;
  opacity: .55;
  margin: 12px 0 14px;
}

/* 本文 */
.clinic-acc__body {
  display: grid;
  gap: 14px;
}

.clinic-acc__text {
  font-size: 14px;
  line-height: 1.9;
  color: #333;
}

/* 開いた時：矢印を上向きに */
.clinic-acc.is-open .clinic-acc__chev {
  transform: rotate(-135deg);
}

/* アニメーション用（JSでmax-height制御） */
.clinic-acc__panel {
  overflow: hidden;
}

.clinic-acc__panel[hidden] {
  display: none !important;
}

#footer {
  position: relative;
  color: #fff;
  background: var(--main_color);
  padding: 12px 0 8px;
  text-align: center;
}

#footer .copyright {
  display: block;
  font-size: 10px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.05em;
}

#footer .text {
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.05em;
  font-size: 10px;
  margin-top: 7px;
}
#clinic{
  background: #f2f2f2;
  padding: 30px 0;  
}

.clinic-title{
  width:90%;
  max-width: 610px;
  margin: 0 auto;
  padding-top: 25px;
}
#clinic .media {
    width: 100%;
    margin-inline: auto;
    max-width: 84.62vw;
    gap: 2.56vw;
    margin-top: 7.69vw;
}
#clinic .media__image {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 29.23vw;
    flex: 0 0 29.23vw;
}
#clinic .media__text {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    font-size: 3.33vw;
    font-weight: 500;
    letter-spacing: 0.05em;
    line-height: 1.77;
}
/* =========================
  PC：3カラム + 左右FIX
  中央：30.02vw / min-width 400px
========================= */
@media (min-width: 1080px) {
  :root {
    --centerW: 30.02vw;
    --centerMin: 400px;
  }

  .l-shell {
    display: grid;
    grid-template-columns: 1fr var(--centerW) 1fr;
    background: #faf4ff;
  }

  .l-side {
    display: block;
    background: #faf4ff;
  }

  .site {
    width: 100%;
    overflow: hidden;
  }
  
  #header {
    width: var(--centerW);
    transform: none;
  } 

  #header .inner {
    padding-left: 20px;
  } 

  #header .body {
    max-width: 100%;
  }

  /* 左右を固定表示 */
  .l-side__inner {f
    position: fixed;
    top: 0;
    height: 100vh;
    padding: 28px 22px;
    overflow: auto;
    background: #faf4ff;
    position: fixed;
  }

  .l-side--left .l-side__inner {
    left: 0;
    width: calc((100vw - max(var(--centerMin), var(--centerW))) / 2);
  }
  
  .l-side--left .l-side__inner .pc-logo{
    width: 250px;
    height: 250px;
    object-fit: contain;
    margin-top: calc(50vh - 125px);
  }

  .l-side--right .l-side__inner {
    right: 0;
    width: calc((100vw - max(var(--centerMin), var(--centerW))) / 2);
  }

  /* 仮メニュー見やすく */
  .pc-menu {
    margin: calc(50vh - 320px) 20px 0;
  }

  #header .btns {
    margin-right: 0;
  }
  #header .drawer{
    display: none;
  }
  .drawer .content__logo {
    width: 100%;
    max-width: 385px;
    margin-inline: auto;
  }
  .drawer .content__items {
      margin-top: 35px;
  }
  .drawer .content__item a {
    padding: 20px;
  }
  .drawer .content__item-text {
    font-size: 20px;
    font-weight: 500;
    padding-left: 30px;
  }
  .drawer .content__item-text::before {
    width: 13px;
    height: 13px;
  }
  
  /* フッター */
  #clinic .media {
    width: 92%;
    max-width: 405px;
    margin-inline: auto;
    gap: 18px;
    margin: 20px auto 0;
  }
  #clinic .media__image {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 220px;
    flex: 0 0 220px;
    max-width: 130px;
  }
  #clinic .media__text {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.05em;
    line-height: 1.77;
  }
}

/* =========================
  Header Logo Firefox Fix
========================= */
#header .logo {
  height: 50px; /* ヘッダー高さと一致 */
}

#header .logo a {
  height: 100%;
  display: flex;
  align-items: center;
}

#header .logo img {
  width: auto;           /* ★ここ重要 */
  height: 100%;
  max-height: 50px;
  object-fit: contain;   /* coverはNG */
}
