@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: #a05cb0;
  /* サブカラー */
  --sub_color1: #b73e5c;
  --sub_color2: #fce8e5;
  
  /* 文字カラー */
  --text-main_color: #333;
}


/* =========================
  Layout
========================= */
.l-shell { min-height: 100vh; }

/* SPは左右非表示 */
.l-side { display: none; }

/* SP：中央100% */
.l-center {
    width: 100%;
    display: block;
    position: relative;
    z-index: 10;
    background: #fff;
}

.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: #808080;
  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分 */
}

.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: #fff;
  font-weight: 600;
  line-height: 1.6;
  text-align: center;
}


#section6 .fv__note {
  color: #333;
}
.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;
}

#section6,#section7{
    background: #f2f2f2;
    padding: 30px 0;
}

#section7{
    padding: 10px 0;
}

.section__image{
    width: auto;
    margin: 10px auto;
}

.section__image2{
    margin: 0;
    width: 100%;
}

.about-kogao {
  position: relative;
  margin: 0 0 67px;
  padding: 21px 12px 28px;
  background: #b2385f;
}

.about-kogao::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -31px;
  height: 30px;
  background: #b2385f;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
}

.about-kogao__card {
  position: relative;
  margin-top: 17px;
  background: #fff;
  border: 1px solid #f2d7d8;
  padding: 18px 16px;
}

.about-kogao__card::before {
  content: "";
  position: absolute;
  top: 7px;
  right: 7px;
  bottom: 7px;
  left: 7px;
  border: 1px solid #f2d7d8;
  pointer-events: none;
}

.about-kogao__line1 {
  font-family: "Noto Serif JP", serif;
  font-size: 22px;
  line-height: 2.2;
  font-weight: 400;
  letter-spacing: 0.01em;
  text-align: center;
}

.about-kogao__line1 span {
  color: #b2385f;
  font-weight: 700;
}

.about-kogao__line2 {
  margin-top: 8px;
  font-size: 1rem;
  line-height: 1.65;
  font-weight: 500;
  letter-spacing: 0.03em;
}

.about-kogao__line2 span {
  color: #b2385f;
  font-weight: 700;
}

.section1-3{
  background: var(--sub_color2);
  margin: -66px auto 0;
  padding: 66px 0 10px;
}

.tokucho {
  padding: 35px 0 0;
}

.tokucho__item + .tokucho__item {
  margin-top: 20px;
}

.tokucho__head {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  background: #fff;
  border-top: 1px solid var(--sub_color1);
  border-bottom: 1px solid var(--sub_color1);
  min-height: 50px;
  text-align: center;
  position: relative;
}

.tokucho__num {
    width: 37px;
    height: 37px;
    background: var(--sub_color1);
    transform: translateY(-24px) rotate(45deg);
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
    justify-content: center;
    margin-left: 25px;
}

.tokucho__num span {
  display: inline-block;
  transform: rotate(-45deg);
  color: #fff;
  font-family: "Noto Serif JP", serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.05em;
}

.tokucho__title {
  font-family: "Noto Serif JP", serif;
  font-size: 22px;
  line-height: 1.4;
  font-weight: 600;
  letter-spacing: 0.02em;
  margin: 0;
  text-align: center;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
}

.tokucho__text {
  padding: 20px;
  font-size: 1rem;
  line-height: 1.75;
  font-weight: 500;
  letter-spacing: 0.01em;
}

.tokucho__text span {
  color: #b2385f;
}

.tokucho__media {
  margin-top: 16px;
  display: flex;
  gap: 14px;
  align-items: center;
  padding-left: 15px;
}

.tokucho__mediaImage {
  width: 43%;
  aspect-ratio: 1 / 1;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tokucho__mediaLabel {
  font-size: 14px;
  color: #888;
  letter-spacing: 0.05em;
}

.tokucho__mediaText {
  width: 57%;
  font-size: 1rem;
  line-height: 2;
  font-weight: 500;
}

.pico-about {
  background: url('../../lp_picolaser3 - Copy/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-1,#section4-1 {
  position: relative;
  padding: 30px 0;
}

#section2-1::after,#section4-1::after {
  content: none;
}

.potenza-info {
  position: relative;
  z-index: 0;
  padding: 30px 16px 0;
}

.potenza-info::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 50px;
  background: #58c5c7;
  clip-path: polygon(0 0, 100% 0, 100% 92%, 50% 100%, 0 92%);
  z-index: -1;
}

.ellisyssense-info::before {
  background: #367b8b;
  clip-path: polygon(0 0, 100% 0, 100% 80%, 50% 100%, 0 80%);
}

.potenza-info__title img{
  width: auto;
}

.potenza-info__card {
  margin-top: 16px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  padding: 18px 18px 20px;
}

.potenza-info__top {
  position: relative;
  padding-right: 170px;
}

.potenza-info__lead {
  font-size: 1rem;
  line-height: 1.75;
  font-weight: 500;
  color: #333;
}

.potenza-info__lead--accent {
  color: #c7606a;
}

.potenza-info__top .section__imageWrap {
  position: absolute;
  right: -8px;
  top: -6px;
  width: 176px;
}

.potenza-info__top .section__image {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.potenza-feature {
  margin-top: 16px;
}

.potenza-feature__head {
  background: #58c5c7;
  color: #fff;
  width: 100%;
  border: 0;
  border-radius: 999px;
  text-align: center;
  font-family: "Noto Serif JP", serif;
  font-weight: 600;
  font-size: 1.125rem;
  line-height: 1;
  padding: 12px 36px 13px 14px;
  position: relative;
  cursor: pointer;
}

.potenza-feature__head::after {
  content: "";
  position: absolute;
  right: 14px;
  top: 50%;
  width: 8px;
  height: 8px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: translateY(-65%) rotate(45deg);
}

.potenza-feature.is-open .potenza-feature__head::after {
  transform: translateY(-35%) rotate(-135deg);
}

.potenza-feature__panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height .28s ease;
}

.potenza-feature__panel[hidden] {
  display: none !important;
}

.potenza-feature__body {
  font-weight: 500;
  width: 90%;
  margin: 10px auto;
  font-size: 1rem;
}

/* =========================
  セクション2-2（動画 + イラスト）
========================= */
#section2-2,#section4-2 {
  padding: 0 16px 26px;
  background: transparent;
  position: relative;
  overflow: hidden;
}

#section2-2::before,#section4-2::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: #f2f2f2;
  z-index: 0;
}

.section2-2 {
  position: relative;
  z-index: 1;
  padding: 22px 12px 30px;
}

#section4-2 .section2-2__num {
  background: #367b8b;
}

.section2-2__title {
    position: relative;
    width: fit-content;
    font-size: 1.625rem;
    line-height: 1;
    text-align: center;
    color: #333;
    margin: 36px auto 0;
    font-family: "Noto Serif JP", serif;
    font-weight: 500;
    letter-spacing: 0.08em;
    border-bottom: 2px solid #333;
    padding: 0 10px 10px;
    z-index: 1;
}

.section2-2__title-wh{
    position: relative;
    width: fit-content;
    font-size: 1.625rem;
    line-height: 1;
    text-align: center;
    color: #fff;
    margin: 0 auto;
    font-family: "Noto Serif JP", serif;
    font-weight: 500;
    letter-spacing: 0.08em;
    border-bottom: 2px solid #fff;
    padding: 0 0 10px;
    z-index: 1;
}

.section2-2__item {
  background: #fff;
  border-radius: 20px;
  padding: 36px 20px 24px;
  position: relative;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
  margin-top: 56px;
}

.section2-2__item + .section2-2__item {
  margin-top: 56px;
}

.section2-2__num {
  position: absolute;
  top: -25px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 50px;
  border-radius: 999px;
  background: #57ceca;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 500;
  font-family: "Noto Serif JP", serif;
}

.section2-2__itemTitle {
  text-align: center;
  font-size: 1.375rem;
  line-height: 1.45;
  color: #222;
  margin-bottom: 10px;
  font-weight: 600;
  font-family: "Noto Serif JP", serif;
}

.section2-2__itemTitleAccent {
  color: var(--main_color);
}

.section2-2__text {
  font-size: 1rem;
  line-height: 1.8;
  font-weight: 500;
  color: #333;
  width: 96%;
  margin: 0 auto;
}

.section2-2__videoWrap {
  margin-top: 12px;
}

.section2-2__video {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  overflow: hidden;
  border-radius: 8px;
  background: #000;
}

.section2-2__video iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.section2-2__imageWrap {
  width: 100%;
  margin-top: 30px;
}

.section2-2__image {
  width: 100%;
  height: auto;
  object-fit: contain;
}

/* section2-2 → section3-1 境界 */
#section3-1,#section5-1 {
  position: relative;
  padding-top: 25px;
  background: var(--sub_color1);
}
.price__block {
  overflow: hidden;
  margin: 18px 0;
  border-radius: 0;
}

.price__band {
  background: #397f97;
  color: #fff;
  text-align: center;
  font-family: "Noto Serif JP", serif;
  font-weight: 600;
  letter-spacing: -.05em;
  padding: 20px 10px;
  font-size: 22px;
  line-height: 0.8;
  height: 60px;  
}

.price__band span{
  font-size: 12px;
  font-family: 'Hiragino Sans', 'Hiragino Kaku Gothic ProN', Meiryo, 'sans-serif';
}

.price__band--pink {
  background: var(--sub_color1);
}

.price__band--purple {
  background: var(--main_color);;
}

.price__band--rose {
  background: #d86a91;
}

/* テーブル */
.price__table {
    width: calc(100% - 24px);
    border-collapse: collapse;
    margin: 0 12px;
}

.price__table tr {
  border-bottom: 1px dashed #cfcfcf;
}

.price__table th,
.price__table td {
  padding: 10px;
  vertical-align: middle;
}

.price__table th {
  text-align: left;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.3;
}

.price__table td {
  text-align: right;
  white-space: nowrap;
}

/* 左カラム：項目 */
.price__area {
  display: inline-block;
}

.price__subnote {
  display: block;
  margin-top: 2px;
  font-size: 10px;
  color: #777;
  line-height: 1.25;
}

/* 右カラム：金額 */
.price__yen {
  font-family:"Hiragino Mincho ProN","Yu Mincho","Noto Serif JP",serif;
  font-size: 26px;
  letter-spacing: 0.02em;
  color: #57c7c7;
  font-feature-settings: "palt" 1, "kern" 1;
  font-kerning: normal;
  font-weight: 700;
}

.price__unit {
  font-size: 0.875rem;
  font-weight: 500;
}

.price__table--elysis .price__yen {
  color: #3a7f97;
}

.price__table--pink .price__yen {
  color: var(--sub_color1);
}

.price__table--purple .price__yen {
  color: var(--main_color);;
}

.price__table--rose .price__yen {
  color: #d86a91;
}

.price__note {
  margin: 8px 12px;
  font-size: 0.875rem;
  line-height: 1.45;
  font-weight: 600;
}

.price-option {
  margin: 14px 12px 12px;
  border: 2px solid #c85f6e;
    /* background: #f4f4f4; */
}

.price-option__head {
  background: #c85f6e;
  color: #fff;
  text-align: center;
  font-family: "Noto Serif JP", serif;
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: 0.04em;
  padding: 12px 8px 10px;
}

.price-option__headNote {
  display: block;
  font-size: 0.75rem;
  margin-top: 4px;
  font-weight: 500;
}

.price__table--option {
  width: 100%;
  margin: 0;
}

.price__table--option th,
.price__table--option td {
  padding: 12px 14px;
}

.price__table--option th {
  width: 58%;
  font-weight: 600;
}

.price__table--option .price__yen {
  color: #c85f6e;
}

.price__table--option tr:first-child {
  border-bottom: 0;
}

.price__subheadRow {
  border-bottom: 0 !important;
}

.price__subheadRow th {
  text-align: center;
  background: #feecec;
  font-size: 1rem;
  padding: 6px 8px;
  font-weight: 600;
}

.price__table--option tr:last-child {
  border-bottom: 0;
}
/* =========================
  QA
========================= */

.qa {
  background: var(--sub_color2);
  padding: 18px 0 20px;
}

.qa__inner {
  max-width: 720px;
  margin: 0 auto;
}

.qa__titleAccent {
  color: #b85a78;
}

.qa__list {
  overflow: hidden;
}

.qa-item {
  background: #fff;
  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(--sub_color1);;
    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(--sub_color1);
  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: #fff;
}

.qa-item__bodyInner {
  padding: 0 20px 12px;
  background: #fff;
}

.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;
}

/* =========================
  詳細情報テーブル
========================= */
#section11 {
  padding: 26px 12px 20px;
}

.detail-info__table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
  border: 1px solid #cecece;
  margin: 18px 0 0;
  background: #fff;
}

.detail-info__table th,
.detail-info__table td {
  border: 1px solid #cecece;
  padding: 8px 10px;
  vertical-align: middle;
}

.detail-info__table th {
  width: 28%;
  background: #b73e5c;
  color: #fff;
  text-align: center;
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.35;
  border-bottom: 1px solid #fff;
}

.detail-info__table td {
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.45;
}

.detail-info__note {
  margin-top: 8px;
  font-size: 0.75rem;
  font-weight: 500;
}

.detail-caution {
  margin-top: 40px;
}

.detail-caution__iconWrap {
  width: 48px;
  margin: 0 auto;
}

.detail-caution__icon {
  width: 100%;
  height: auto;
  display: block;
}

.detail-caution__lead {
  text-align: center;
  font-size: 1rem;
  line-height: 1.55;
  font-weight: 600;
  margin: 12px 0 14px;
}

.detail-caution__box {
  background: #feecec;
  padding: 12px 12px;
}

.detail-caution__item {
  font-size: 0.875rem;
  line-height: 1.65;
  font-weight: 500;
  padding: 10px 8px 12px;
}

.detail-caution__item + .detail-caution__item {
  border-top: 1px dashed #c7606a;
}

.detail-caution__note {
  margin-top: 10px;
  font-size: 0.625rem;
  line-height: 1.5;
  font-weight: 600;
}

#section8{
  padding-top: 30px;
}

#section10{
    padding: 40px 0 20px;
}

#section12{
  padding: 30px 0;
}

.doctor-cta {
  background: var(--sub_color2);
  padding: 0px 0 30px;
  margin: 30px 0 0;
}

.doctor-cta__photo {
  width: 100%;
  overflow: hidden;
}

.doctor-cta__photo img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.doctor-cta__card {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 0;
  margin: -40px 10px 0;
  padding: 30px 25px 22px;
  position: relative;
  z-index: 1;
}

.doctor-cta__card::before {
  content: "";
  position: absolute;
  top: 7px;
  right: 7px;
  bottom: 7px;
  left: 7px;
  border: 1px solid #ddd;
  pointer-events: none;
}

.doctor-cta__text {
  font-size: 1rem;
  line-height: 1.75;
  font-weight: 500;
  letter-spacing: 0.01em;
}

.doctor-cta__inner {
  text-align: center;
}

.doctor-cta__inner .fv__note2 {
  font-size: 14pt;
  margin: 0 auto 8px;
}

.doctor-cta__inner .cta img {
  width: 100%;
  max-width: 320px;
}

/* =========================
  5つの約束
========================= */
#promise{
  padding: 30px 0 0;
  margin: 0;
}

/* =========================
  Utility
========================= */
.u-flex {
  display: flex;
  align-items: center;
  justify-content: center;
}

.contetns-wrapper{
  background: var(--sub_color2);;
  padding: 15px;
}

#section5-1.contetns-wrapper{
  background: #367b8b;
  padding-bottom: 5px;
}

.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{
  padding: 0 16px;
}

.cta_area-inner{
    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_subarea{
  padding: 27px 15px 0; 
}
/* 画像をアニメーション */
.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 {
  padding: 0;
  padding-bottom: 20px;
}

.case-slider__wrap {
  position: relative;
  margin-top: 20px;
}

.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;
  padding: 30px 20px;
}

#section5-1 .case-card {
  margin-top: 20px;
}

/* 写真枠 */
.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(--sub_color1);
}

.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: #fff;
  color: var(--sub_color1);
  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: 12px;
    height: 12px;
    padding: 0;
    border-radius: 50%;
    border: 1px solid #fff;
    background: transparent;
    cursor: pointer;
    line-height: 1;
}

/* アクティブ */
.case-slider__dot.is-active {
  background: #fff
}


/* =========================
  お取り扱い院 アコーディオン
========================= */
.clinic-acc {
  margin-top: 0;
  padding: 20px 0;
}

#section6 .clinic-acc{
  padding: 0;
}
/* トリガー行 */
.clinic-acc__trigger {
  width: 100%;
  border: 0;
  background: transparent;
  color: #fff;
  font-weight: 500;
  letter-spacing: .04em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0;
  cursor: pointer;
  font-size: 14.5px;
}

#section6 .clinic-acc__trigger{
  color: #332;  
}

.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 #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(45deg);
  transition: transform .25s ease;
}

#section6 .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 {
  padding: 18px 14px 20px;
}

/* 白いカード */
.clinic-acc__box {
  background: #fff;
  border-radius: 18px;
  padding: 18px 18px 16px;
}

/* タイトル */
.clinic-acc__title {
  font-family: "Noto Serif JP", serif;
  text-align: center;
  font-weight: 500;
  font-size: 1.125rem;
  letter-spacing: .04em;
  color: #333;
}

.clinic-acc__titleAccent {
  color: #b85a78;
}

/* タイトル下のライン */
.clinic-acc__rule {
    height: 2px;
    background: var(--main_color);
    opacity: .55;
    margin: 6px 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 */
}
