/* ===========================
   Base
=========================== */
body {
  margin: 0;
  font-family: "Hiragino Kaku Gothic ProN","Noto Sans JP",sans-serif;
  color: #222;
  line-height: 1.8;
  background: #ffffff;
}
.container {
  max-width: 1100px;
  margin: auto;
  padding: 30px 20px;
}
img {
  max-width: 100%;
  height: auto;
}
/* ===========================
   Headings（SBC風）
=========================== */
h1 {
  max-width: 720px;              /* パツパツ防止 */
  line-height: 1.35;             /* 行間を広げる */
  font-size: clamp(24px, 3vw, 37px);
  font-weight: 700;
  color:white;
  margin-bottom: 24px;
  letter-spacing: 0.02em;
  font-family: "Yu Mincho", "Hiragino Mincho ProN", "MS PMincho", serif;
}
.h1sub{
  font-size: 27px;
}
h2 {
  font-size: 26px;
  font-weight: 700;
  margin:-30px 0 30px 0;
  padding-left: 16px;
  text-align: center;
}
h3 {
  font-size: 20px;
  margin-top: 30px;
  font-weight: 700;
}
/* キャッチコピー */
.fv-text .catch {
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 16px;
  color: #ffffff;
}
/* サブコピー */
.fv-text .sub {
  font-size: 15px;
  line-height: 1.9;
  color: #ffffff;
}
/* ===========================
   Hero（FV）
=========================== */
.hero {
  background: linear-gradient(135deg,#eaf7ff,#ffffff);
  padding: 80px 20px;
}
.hero-inner {
  max-width: 1100px;
  margin: auto;
}
.hero p {
  font-size: 18px;
  color: #333;
}
.hero-flex {
  display: flex;
  align-items: center;
  gap: 40px;
}
.hero-image img {
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}
@media (max-width: 768px) {
  .hero-flex {
    flex-direction: column;
  }
}

/* ===========================
   Card UI（SBCの要）
=========================== */
.card {
  background: #ffffff;
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
  padding: 30px;
}
.card.soft {
    position:relative;
  background-image:url(../images/bg_what.png); 
  height:100%;
  box-shadow: none;
}

/* ===========================
   Lists
=========================== */
.problem-list {
  padding-left: 0;
}
.problem-list li {
  list-style: none;
  padding-left: 28px;
  position: relative;
  margin-bottom: 12px;
}
.problem-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #1e88c9;
  font-weight: bold;
}
.problem-flex {
  display: flex;
  gap: 30px;
  align-items: center;
}
.problem-flex img {
  max-width: 360px;
}
@media (max-width: 768px) {
  .problem-flex {
    flex-direction: column;
  }
}
/* ===========================
   Tables（SBC完全再現）
=========================== */
table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin: 30px 0;
  border-radius: 8px;
  overflow: hidden;
}
tbody{
  background:white;
}
table th {
  background: #d2c7b1;
  font-weight: 700;
}
table th, table td {
  border: 1px solid #bcac8c;
  padding: 14px;
  text-align: center;
}
.clinic-text table th {
  background: #fffdf8;
  font-weight: 700;
}
.clinic-text table th, table td {
  border: 1px solid #feeecc;
  padding: 14px;
  text-align: center;
}


/* ===========================
   FAQ（アコーディオン）
=========================== */
.faq dt {
  background: #fdf7eb;
  padding: 16px;
  cursor: pointer;
  font-weight: 700;
  border: 1px solid #bcac8c;
  margin-top: 10px;
}
.faq dd {
  padding: 16px;
  margin: 0;
  border: 1px solid #d9eefb;
  border-top: none;
  display: none;
}

/* ===========================
   CTA（SBC最重要）
=========================== */
.cta {
  background: linear-gradient(135deg,#eaf7ff,#ffffff);
  padding: 60px 20px;
  text-align: center;
  border-top: 1px solid #d9eefb;
}
.cta h2 {
  border: none;
  padding: 0;
  margin-top: 0;
}
.cta a {
  display: inline-block;
  background: #ff6b00;
  color: #ffffff;
  padding: 18px 48px;
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
  border-radius: 999px;
  box-shadow: 0 6px 16px rgba(255,107,0,0.4);
  transition: all .3s;
}
.cta a:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(255,107,0,0.5);
}

/* ===========================
   Footer
=========================== */
footer {
  background: #f7f7f7;
  padding: 30px;
  text-align: center;
  font-size: 14px;
  color: #666;
}

/* ===========================
   Responsive
=========================== */
@media (max-width: 768px) {
  h1 {
    font-size: 24px;
    color:#816738;
    line-height: 1.3;
    margin-bottom: 14px;
  }
  .h1sub{
  font-size: 18px;
}
  h2 { font-size: 22px; }
  .container { padding: 40px 16px; }
  .fv-text .catch {
  color: #1b1b1b;
}
}
.device-flex {
  display: flex;
  gap: 30px;
  align-items: center;
}
.device-flex img {
  width: 320px;
}
@media (max-width: 768px) {
  .device-flex {
    flex-direction: column;
  }
  .device-flex img {
  width: 200px;
}
}
.mechanism img {
  display: block;
  width:90%;
  max-width:600px;
  margin: 10px auto;
}
.effect-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 20px;
  text-align: center;
}
.effect-grid img {
  border-radius: 50%;
}
@media (max-width: 768px) {
  .effect-grid {
    grid-template-columns: repeat(2,1fr);
  }
}
.case {
  display: flex;
  gap: 20px;
}
.case img {
  width: 100%;
  border-radius: 8px;
}
/* ===========================
   FV（SBC完全再現）
=========================== */
.fv {
  position: relative;
  width: 100%;
  overflow: hidden;
}

/* 画像制御 */
.fv-image {
  width: 100%;
  height: auto;
  display: block;
}

/* PC：16:9 */
@media (min-width: 769px) {
  .fv {
    aspect-ratio: 16 / 9;
  }
  .fv-image {
    height: 100%;
    object-fit: cover;
  }
}

/* SP：9:16 */
@media (max-width: 768px) {
  .fv {
    aspect-ratio: 9 / 16;
  }
  .fv-image {
    height: 100%;
    object-fit: cover;
  }
}

/* ===========================
   テキストオーバーレイ
=========================== */
.fv-overlay {
  position: absolute;
  inset: 0;
  display: block;
  align-items: center;
  transform: translate(10%,50%);
}
.fv-clinic {
  margin-top: 18px;
  font-size: 16px;
  opacity: 0.9;
}

/* ===========================
   SP最適化
=========================== */
@media (max-width: 768px) {
  .fv-overlay {
    transform:translate(0, 76%);
    padding-left:4%;
  }
  .fv-text {
    max-width: 100%;
    margin-top: 10px;
  }

  .fv-text .catch {
    font-size: 14px;
    line-height: 1.6;
  }

  .fv-text .sub {
    font-size: 12px;
    line-height: 1.6;
  }
}
/* ===========================
   Campaign（FV直下）
=========================== */
.campaign {
  background: linear-gradient(90deg, #b39855 0%, #fff9e6 50%, #b39855 100%);;
}

.campaign-inner {
  max-width: 1100px;
  margin: auto;
  padding: 40px 20px;
  text-align: center;
}

.campaign-label {
  display: inline-block;
  background: #fff;
  box-shadow: 0 0 2px 1px rgba(0, 0, 0, 0.1) inset;
  color: #ba9a2a;
  font-size: 14px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 14px;
}

.campaign-title {
  font-size: 26px;
  font-weight: 700;
  margin: 0 auto;
  border: none;
  padding: 0;
}

.campaign-price {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 12px;
  display: flex;
  justify-content: center;
  align-items: baseline;
  gap: 10px;
  flex-wrap: wrap;
}

.price-before {
  color: #343434;
  text-decoration: line-through;
  font-size: 22px;
}

.price-arrow {
  font-size: 26px;
}

.price-after {
  color: #e60012;
  font-size: 36px;
}

.price-tax {
  font-size: 14px;
  margin-left: 4px;
}

.campaign-note {
  font-size: 14px;
  color: #343434;
}
/* ===========================
   Responsive
=========================== */
.sp-only {
  display: none;
}

@media (max-width: 768px) {
  .campaign-inner {
    padding: 10px 16px;
  }
  .campaign-title {
    font-size: 22px;
  }
  .campaign-price {
    font-size: 28px;
  }
  .price-after {
    font-size: 32px;
  }
  .sp-only {
    display: block;
  }
  .logosize{
  width:250px;
}
}
.logosize{
  max-width:350px;
}

/* =========================
   Problem セクション
========================= */
.problem-grid {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-top: 40px;
}

/* カード */
.problem-card {
  display: flex;
  align-items: center;
  gap: 32px;

  background: #fff;
  border-radius: 24px;
  padding: 28px 40px;

  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}

/* 画像 */
.problem-card img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

/* テキスト */
.problem-text h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 8px;
}

.problem-text p {
  font-size: 16px;
  color: #666;
  line-height: 1.7;
}

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

  .problem-card {
    padding: 20px;
    gap: 20px;
  }

  .problem-card img {
    width: 96px;
    height: 96px;
  }

  .problem-text h3 {
    font-size: 18px;
  }

  .problem-text p {
    font-size: 14px;
  }
}
/* =========================
   Problem Grid：PC 横並び
========================= */
.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 40px;
}

/* =========================
   カード本体
========================= */
.problem-card {
  display: flex;
  align-items: center;
  gap: 28px;

  background: #fff;
  border-radius: 24px;
  padding: 28px 32px;

  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

/* hoverで1px浮かせる */
.problem-card:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 36px rgba(0,0,0,0.08);
}

/* =========================
   画像
========================= */
.problem-card img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

/* =========================
   テキスト
========================= */
.problem-text h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 14px;
  position: relative;
  padding-bottom: 10px;
}

/* h3下の薄いゴールドライン */
.problem-text h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 2px;
  background: linear-gradient(
    90deg,
    #d8b65a,
    #f3e4b0
  );
  border-radius: 2px;
}

.problem-text p {
  font-size: 16px;
  color: #666;
  line-height: 1.7;
}

/* =========================
   SP対応（縦並び＋余白削減）
========================= */
@media (max-width: 768px) {

  .problem-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 28px;
  }

  .problem-card {
    padding: 20px 16px; /* ← 左右余白を詰める */
    gap: 20px;
    border-radius: 20px;
  }

  .problem-card img {
    width: 96px;
    height: 96px;
  }

  .problem-text h3 {
    font-size: 18px;
  }

  .problem-text p {
    font-size: 14px;
  }
}

/* ===========================
   Header
=========================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #ffffff;
  border-bottom: 1px solid #e6eef5;
}

.header-inner {
  max-width: 1100px;
  margin: auto;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-logo a {
  font-size: 18px;
  font-weight: 700;
  color: #1e88c9;
  text-decoration: none;
}

.header-nav ul {
  display: flex;
  gap: 24px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.header-nav a {
  text-decoration: none;
  color: #333;
  font-size: 14px;
}

.header-cta a {
  background: #ff6b00;
  color: #fff;
  padding: 10px 20px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

/* SP */
@media (max-width: 768px) {
  .header-nav {
    display: none;
  }
}
/* ===========================
   Header Base
=========================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,1);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.site-header.is-transparent {
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(6px);
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.header-inner {
  max-width: 1100px;
  margin: auto;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* ロゴ */
.header-logo a {
  font-size: 18px;
  font-weight: 700;
  color: #1e88c9;
  text-decoration: none;
}

/* PCナビ */
.header-nav ul {
  display: flex;
  gap: 24px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.header-nav a {
  font-size: 14px;
  text-decoration: none;
  color: #333;
}

/* PC CTA */
.header-cta {
  display: flex;
  gap: 10px;
}

.header-cta a {
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
}

.cta-line { background: #06c755; }
.cta-tel  { background: #007bc7; }
.cta-form { background: #ff6b00; }

/* ===========================
   Hamburger（SP）
=========================== */
.hamburger {
  width: 26px;
  height: 20px;
  padding: 0;
  background: none;
  border: none;
  display: flex!important;
  flex-direction: column;
  justify-content: space-between; /* ← 縦に並べる核心 */
}

.hamburger span {
  display: block;
  width: 100%;          /* ← 横幅を揃える */
  height: 1.5px;        /* ← 線の太さ */
  background: #333;
  border-radius: 1px;
  position: relative;  /* ← absoluteを打ち消す */
}
/* SP メニュー */
.sp-menu {
  display: none;
  background: #fff;
  border-top: 1px solid #eee;
}

.sp-menu ul {
  list-style: none;
  margin: 0;
  padding: 20px;
}

.sp-menu li {
  margin-bottom: 16px;
}

.sp-menu a {
  text-decoration: none;
  font-size: 16px;
  color: #333;
}

/* 表示制御 */
.pc-only { display: flex; }
.sp-only { display: none; }

@media (max-width: 768px) {
  .pc-only { display: none; }
  .sp-only { display: block; }
}
@media (min-width: 769px) {
  .hamburger { display: none!important; }
}
/* ===========================
   SP Floating CTA
=========================== */
.sp-floating-cta {
  display: none;
}

@media (max-width: 768px) {
  .sp-floating-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    display: grid; /* ← これ必須 */
    grid-template-columns: repeat(3, 1fr);
    z-index: 999;
  }

  .sp-floating-cta a {
    display: block;
    text-align: center;
    padding: 24px 6px;
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
  }

  .cta-line { background: linear-gradient(45deg, #38f716 15%, #0f8802 100%) }
  .cta-tel  { background: linear-gradient(45deg, #16b4f7 15%, #407cfe 100%) ; }
  .cta-form { background: linear-gradient(45deg, #f7a116 15%, #ff6f00 100%) ; }
}
/* ===========================
   SEO Section
=========================== */
.seo-section {
  max-width: 1100px;
  margin-top:80px;
  margin-bottom:0px;
  padding: 30px 20px;
  margin:0 auto;
}

.seo-section h2 {
  font-size: 24px;
  margin-bottom: 30px;
}

.seo-section h3 {
  font-size: 18px;
  margin-top: 30px;
  margin-bottom: 10px;
}

.seo-section p {
  font-size: 15px;
  line-height: 1.8;
  color: #444;
}
/* ===========================
   Price Section
=========================== */
.price-section {
  background: #f7fbff;
  margin:2rem 0px;
  padding: 1rem 20px;
  padding-bottom:3rem;
}

.price-section h2 {
  text-align: center;
  font-size: 26px;
  margin-bottom: 40px;
}

.price-table {
  max-width: 700px;
  margin: auto;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
}

.price-row {
  display: flex;
  justify-content: space-between;
  padding: 18px 20px;
  border-bottom: 1px solid #eee;
}

.price-row.head {
  background: #d2c7b1;
  font-weight: 700;
}

.price-row.head2 {
  background: #9b8f78;
  font-weight: 700;
}

.price-note {
  max-width: 700px;
  margin: 20px auto 0;
  font-size: 13px;
  color: #666;
}
/* ===========================
   Header Logo Image
=========================== */
.header-logo img {
  width: auto;
  height: 32px;
  display: block;
}

/* SP */
@media (max-width: 768px) {
  .header-logo img {
    height: 28px;
  }
}
.case-card {
  max-width: 860px;
  margin: 0 auto;
  margin-bottom:10px;
  border: 5px solid transparent; /* 透明なボーダーを設定 */
  border-image: linear-gradient(to right, #FFC754, #B67715, #FFF89B, #B67715, #FFC754); /* グラデーションを画像として適用 */
  border-image-slice: 1; /* 画像全体をボーダーとして使用 */
  padding: 10px;
  padding: 20px;
}

.case-images {
  display: flex;
  gap: 16px;
}
@media (min-width: 769px) {
.case-images {
text-align:center;
}
.case-images img {
  width: 60%!important;
}
}
.case-images figure {
  width: 50%;
  margin: 0;
}

.case-images img {
  width: 100%;
  border-radius: 6px;
}

.case-images figcaption {
  text-align: center;
  font-size: 13px;
  margin-top: 6px;
}

.case-info {
  margin-top: 16px;
  font-size: 14px;
}
.sbc-note {
  max-width: 860px;
  margin: 0 auto;
  background: #f9f9f9;
  border: 1px solid #e1e1e1;
  border-radius: 8px;
  padding: 20px;
  font-size: 14px;
}

.sbc-note ul {
  margin: 0;
  padding-left: 18px;
}
.sbc-mechanism {
  max-width: 860px;
  margin: 0 auto;
}

.sbc-mechanism .lead {
  font-size: 16px;
  margin-bottom: 28px;
}

.mechanism-block {
  position:relative;
  background: #ffffff;
  border: 3px solid #bcac8c;
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 30px;
  margin-top: 40px;
}
.mechanism-block.yellow
{
  background:rgb(251, 242, 218);
}
.mechanism-block h3 {
  font-size: 18px;
  margin-bottom: 8px;
}
.pointno{
  position:absolute;
  width:60px;
  top:-10%;
  left:50%;
  transform: translate(-50%, -0%);
}
/* ===========================
   施術フロー（画像付き）
=========================== */
.sbc-flow-image {
  max-width: 960px;
  margin: 0 auto;
}

.flow-row {
  display: flex;
  align-items: center;
  gap: 32px;
  background: #fff;
  border: 1px solid #dee7ef;
  border-radius: 8px;
  padding: 28px;
  margin-bottom: 24px;
}

.flow-text {
  width: 55%;
}

.flow-text h3 {
  font-size: 18px;
  margin: 8px 0 6px;
}

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

.flow-step {
  display: inline-block;
  background: #007bc7;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 4px;
}

.flow-image {
  width: 45%;
}

.flow-image img {
  width: 100%;
  height: auto;
  border-radius: 6px;
  display: block;
}
@media (max-width: 768px) {
.flow-row{
  flex-direction: column-reverse;
}
.flow-image{
  width:80%;
}
}
/* ===========================
   Clinic Info
=========================== */
.clinic-info {
  background: #f7fbff;
  padding: 20px 20px;
}

.clinic-info h2 {
  text-align: center;
  font-size: 20px;
  margin-bottom: 40px;
}

.clinic-info-inner {
  max-width: 1000px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.clinic-name {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 12px;
  text-align:left;
}

.clinic-address,
.clinic-tel {
  font-size: 12px;
  line-height: 1.7;
  margin-bottom: 8px;
  text-align:left;
}

.clinic-tel a {
  color: #007bc7;
  text-decoration: none;
  font-weight: 700;
}

/* Map */
.clinic-map iframe {
  border-radius: 12px;
}

/* SP */
@media (max-width: 768px) {
  .clinic-info-inner {
    grid-template-columns: 1fr;
  }

  .clinic-map iframe {
    height: 220px;
  }
}
.original-text-shadow {
  text-shadow: 0px 0px 8px rgba(0, 0, 0, 0.629);
}
.midashi{font-family: 'Alegreya Sans SC', sans-serif;
text-align:center;
font-size:3rem;
font-weight:700;
color:#76560655;
margin-top:0 auto;}
.beforetext{
  font-weight:900;
  color:rgb(101, 16, 81);
}
.aftertext{
  font-weight:900;
  color:rgb(255, 81, 81);
}
@media (max-width: 768px) {
.hikaku th{
  font-size:0.8rem;
}
}
/* ★ここがポイント: 左から2列目だけを目立たせるスタイル */
/* thとtdの両方にnth-child(2)を適用する */
.hikaku th:nth-child(2),
.hikaku td:nth-child(2) {
  background-color: #ffebcd; /* 目立つ背景色 (例: 薄いオレンジ) */
  color: #d2691e;           /* 目立つ文字色 (例: 茶色系) */
  font-weight: bold;        /* 文字を太くする */
}
@media (max-width: 768px) {
.syldark{
  position:absolute;
  width:20%;
  right:10%;
  top:5%;
}
}
.syldark{
  position:absolute;
  width:100px;
  right:10%;
  top:5%;
}
@media (max-width: 768px) {
.syldark{
  width:90px;
  right:5%;
  top:-2%;
}
}

.handpiece1{
  position:absolute;
  width:200px;
  left:15%;
  top:-1%;
  transform: rotate(-2deg)
}
.handpiece2{
  position:absolute;
  width:200px;
  right:15%;
  top:4%;
  transform: rotate(4deg)
}
@media (max-width: 768px){
.handpiece1{
  width:160px;
  left:5%;
  top:-3%;
}
.handpiece2{
  width:140px;
  right:4%;
  top:1%;
}
}
.fade-in-element {
    opacity: 0;
    transform: translateY(30px); /* 下から30pxの位置 */
    transition: opacity 1s ease-out, transform 1s ease-out; /* 1秒かけて変化 */
}
.fade-in-element.is-visible {
    opacity: 1;
    transform: translateY(0); /* 元の位置に戻る */
}
.marginsize{
  margin-top:20px;
}
.ichishitei{
  max-width:800px;
  margin:auto;
}
/* ===========================
   background
=========================== */

.worry{
  position:relative;
  background-image:url(https://www.beautis.jp/blessing/images/worryback.jpg); 
  height:100%;
}
.effectbg{
  position:relative;
  background-image:url(https://www.beautis.jp/blessing/images/bg_effect.jpg); 
  height:100%;
}
.flowbg{
  position:relative;
  background-image:url(https://www.beautis.jp/blessing/images/bg_flow.jpg); 
  height:100%;
}
.aboutbg{
  position:relative;
  background-image:url(https://www.beautis.jp/blessing/images/bg_about.jpg); 
  height:100%;
}
.chigaibg{
  position:relative;
  background-color:#f7fcff; 
  height:100%;
}
.faqspan{
  position:relative;
  background-image:url(https://www.beautis.jp/blessing/images/faqsection.jpg); 
  height:100%;
}
/* =====================
c-form
========================*/

.c-form {
  background-color: #ffffff;
}

.c-form_pico {
  background-color: #736357;
  padding-bottom: 60px;
}

.form-inner {
  background-color: #fff;
  padding: 32px 16px 20px;
}

.form-inner_pico {
  padding: 32px 16px 20px;
}

.c-form_title {
  color: #da5b80;
  font-size: 32px;
}

@media (max-width: 576px) {
  .c-form_title {
    font-size: 6vw;
  }
}

.btn-submit {
  width: 85%;
  max-width: 500px;
  background: rgb(199, 69, 115);
  background: linear-gradient(90deg, rgba(199, 69, 115, 1) 0%, rgba(194, 128, 128, 1) 100%);
  color: #fff;
  font-weight: bold;
  padding: 14px;
  margin-bottom:30px;
}
/* セクション系 */
.c-section {
  margin-bottom: 120px;
}

@media (max-width: 768px) {
  .c-section {
    margin-bottom: 60px;
  }
}

@media (max-width: 576px) {
  .c-section {
    margin-bottom: 30px;
  }
}

label {
  display: inline-block;
  margin-bottom: 0.5rem;
  font-size: 16px;
  font-weight: 500;
}

@media (max-width: 768px) {
  label {
    font-size: 14px;
  }
}

.pico_label {
  color: #fff;
}
.form-group {
  margin-bottom: 1rem;
}

.form-header {
  margin-bottom: 3rem;
}

.form-footer {
  margin-top: 3rem;
}

.form-control {
  display: block;
  width: 100%;
  padding: 4px 0px!important;
  font-size: 1rem;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  line-height: 1.5;
  background-color: #fff;
  border: none;
  border-bottom: 1px solid #ddd;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.form-control:focus {
  border-color: #88c5e6;
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(94, 176, 221, 0.25);
}

.form-control:disabled,
.form-control[readonly] {
  background-color: #f5f5f5;
  opacity: 1;
}

.form-control::-moz-placeholder {
  color: #ccc;
  opacity: 1;
}

.form-control::placeholder {
  color: #ccc;
  opacity: 1;
}

.form-control.--small {
  max-width: 80px;
}

.form-control_pico {
  display: block;
  width: 100%;
  padding: 4px 8px;
  font-size: 1rem;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  line-height: 1.5;
  border: none;
  border-bottom: 1px solid #ddd;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.form-control_pico::-moz-placeholder {
  color: #808080;
  opacity: 1;
}

.form-control_pico::placeholder {
  color: #808080;
  opacity: 1;
}

textarea.form-control {
  height: auto;
  border: 1px solid #ddd;
}

.form-group_flex {
  display: flex;
  align-items: center;
  gap: 5px;
}
 
.custom-select {
  display: inline-block;
  width: 100%;
  padding: 0.375rem 1.75rem 0.375rem 0.75rem;
  font-size: 1rem;
  line-height: 1.5;
  vertical-align: middle;
  background: #fff url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3E%3Cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3E%3C/svg%3E") no-repeat right 0.75rem center;
  background-size: 8px 10px;
  border: 1px solid #ddd;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.custom-select:focus {
  border-color: #88c5e6;
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(94, 176, 221, 0.25);
}

.badge {
  display: inline-block;
  padding: 0.25em 0.4em;
  font-size: 75%;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
  border-radius: 5px;
}

.badge-primary {
  color: #fff;
  background-color: #5eb0dd;
}

.badge-secondary {
  color: #fff;
  background-color: #262626;
}

.badge-danger {
  color: #fff;
  background-color: #e32929;
}

.badge-light {
  color: #fff;
  background-color: #cccccc;
}

.badge-green {
  color: #fff;
  background-color: #284E13;
}
/*h2内の小文字*/
.contents h2 span.hosoku {
	display: block;
	font-size: 0.7rem;		/*文字サイズを70%に*/
	letter-spacing: 0.1em;	/*文字間隔を少しだけ広く*/
	padding-bottom: 0.5rem;	/*下の見出しとの間の余白。0.5文字分。*/
  margin-top:60px;
  margin-bottom:30px;
}
span.marker {
    background: linear-gradient(transparent 50%, #ffe600 50%);
}
.marker {
  background: linear-gradient(transparent 60%, #ffe066 60%);
  font-weight: 700;
}

.problem-card h3 {
  letter-spacing: 0.08em;
}

.effectbg table td {
  font-weight: 600;
}
/* ==========================
 Blessing × サブシジョンSEO
========================== */

.subcision-seo {
  padding: 10px 0;
  background: #fafafa;
}

.subcision-seo .lead {
  max-width: 800px;
  margin: 0 auto 40px;
  line-height: 1.9;
  font-size: 16px;
}

.diff-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin: 40px 0;
}

.diff-images figure {
  text-align: center;
}

.diff-images img {
  width: 100%;
  border-radius: 12px;
  background: #fff;
}

.diff-images figcaption {
  margin-top: 10px;
  font-weight: 600;
}

.diff-table-wrap {
  overflow-x: auto;
  margin: 40px 0;
}

.diff-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
}

.diff-table th,
.diff-table td {
  border: 1px solid #bcac8c;
  padding: 14px;
  text-align: center;
  font-size: 15px;
}

.diff-table th {
  background: #d2c7b1;
  font-weight: 700;
}

.subcision-seo .summary {
  margin-top: 40px;
  font-size: 16px;
  line-height: 1.9;
  text-align: center;
}

/* SP対応 */
@media (max-width: 768px) {
  .diff-images {
    grid-template-columns: 1fr;
  }
}
/* 斜め挿入・剥離 図解エリア */
.sbc-mechanism .flex2 {
  display: flex;
  gap: 16px;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
}

/* 画像共通設定 */
.sbc-mechanism .flex2 img {
  width: 100%;
  height: auto;
  max-width: 400px;   /* PC時の上限サイズ */
  max-height: 280px;  /* 高さを揃えて図解感を出す */
  object-fit: contain;
}

/* ===== SP時：縦並び ===== */
@media screen and (max-width: 768px) {
  .sbc-mechanism .flex2 {
    flex-direction: column;
  }

  .sbc-mechanism .flex2 img {
    max-width: 100%;
    max-height: none;
  }
}
@media (min-width: 769px) {
  .mec{
  left:50%;
  transform:translate(50%);
  max-width: 400px;   /* PC時の上限サイズ */
  max-height: 280px;  /* 高さを揃えて図解感を出す */
}
}
/* =========================
   Blessing 施術イメージ動画
========================= */

.procedure-video {
  padding: 10px 0;
  text-align: center;
}

.procedure-video .video-wrap {
  display: flex;
  justify-content: center;
}

.procedure-video video {
  width: 50%;
  max-width: 640px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 12px 32px rgba(0,0,0,0.15);
  background: #000;
}

/* SP：80%幅 */
@media screen and (max-width: 768px) {
  .procedure-video video {
    width: 95%;
  }
}

.video-note {
  margin-top: 12px;
  font-size: 13px;
  color: #666;
}
.diff-table th:nth-child(3),
.diff-table td:nth-child(3) {
  background-color: #ffebcd; /* 目立つ背景色 (例: 薄いオレンジ) */
  color: #d2691e;           /* 目立つ文字色 (例: 茶色系) */
  font-weight: bold;        /* 文字を太くする */
}
.diff-images {
  margin: 60px 0;
}

.diff-block {
  margin-bottom: 80px;
}
.diff-block.new {
  background:rgb(236, 220, 191);
}
.diff-title {
  text-align: center;
  font-size: 22px;
  margin-bottom: 32px;
}

.diff-set {
  display: flex;
  gap: 24px;
  justify-content: center;
}
.diff-set figure {
  position: relative;
  text-align: center;
}

.diff-set img {
  width: 100%;
  max-width: 360px;
  height: auto;
  border-radius: 8px;
}

.diff-set figcaption {
  margin-top: 12px;
  font-size: 15px;
  font-weight: 500;
}
/* 共通矢印（PC用：横向き） */
.diff-set .arrow {
  position: absolute;
  top: 50%;
  right: -20%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
    border-top: 14px solid transparent;
    border-bottom: 14px solid transparent;
    border-left: 24px solid #fff;
}

.diff-set .arrow::before {
  content: "";
  position: absolute;
  left: -22px;
  top: -12px;
  border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
    border-left: 20px solid #ff8a00;
}
@media screen and (min-width: 769px) {
  .diff-set {
    flex-direction: row;
  }
}
@media screen and (max-width: 768px) {
  .diff-set {
    flex-direction: column;
    align-items: center;
  }

  .diff-set figure {
    margin-bottom: 40px;
  }

  .diff-set .arrow {
    margin-top:10px;
    top: auto;
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    border-left: 14px solid transparent;
    border-right: 14px solid transparent;
    border-top: 20px solid #fff;
  }

  .diff-set .arrow::before {
    left: -12px;
    top: -20px;
   border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    border-top: 20px solid #ff8a00;
  }
}
@media screen and (min-width: 769px) {
  .diff-images {
    display: flex;
    flex-direction: column;
    gap: 100px; /* 従来とBlessingの間隔 */
  }
}
.density-sagging {
  padding: 60px 0;
}

.density-sagging h2 {
  font-size: 28px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 24px;
}

.density-sagging .lead {
  max-width: 900px;
  margin: 0 auto 32px;
  font-size: 16px;
  line-height: 1.8;
}

.sagging-image {
  text-align: center;
  margin-bottom: 40px;
}

.sagging-image img {
  width: 100%;
  max-width: 600px;
  height: auto;
}

.sagging-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-bottom: 32px;
}

.sagging-list h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
  margin-top:10px;
}

.sagging-list p {
  font-size: 15px;
  line-height: 1.7;
}
/* liを基準にする */
.sagging-list li {
  position: relative;
  overflow: hidden; 
    /* ← これが最重要 */
}

/* 画像をli内に収める */
.sagging-list li img.mec {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: contain;
  transform:translate(0);
}
.note {
  font-size: 13px;
  color: #666;
  text-align: center;
}

/* SP対応 */
@media (max-width: 768px) {
  .sagging-list {
    grid-template-columns: 1fr;
  }
}

/* ===========================
   デンシティ たるみセクション 装飾
   =========================== */

.density-sagging {
  background: #f7f8fa; /* 仮：明るいグレー */
  padding: 80px 0;
}

/* H2 */
.density-sagging h2 {
  font-size: 30px;
  font-weight: 700;
  text-align: center;
  color: #1f2a44; /* 仮：ネイビー */
  margin-bottom: 32px;
  position: relative;
}

.density-sagging h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: #c8b68c; /* 仮：ゴールド */
  margin: 16px auto 0;
  border-radius: 2px;
}

/* リード文 */
.density-sagging .lead {
  max-width: 920px;
  margin: 0 auto 40px;
  padding: 24px 32px;
  background: #ffffff;
  border-radius: 12px;
  font-size: 16px;
  line-height: 1.9;
  color: #333;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
}

/* 強調 */
.density-sagging strong {
  color: #1f2a44;
  font-weight: 700;
}

/* 画像ブロック */
.sagging-image {
  text-align: center;
  margin-bottom: 48px;
}

.sagging-image img {
  width: 100%;
  max-width: 560px;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

/* たるみリスト */
.sagging-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 1100px;
  margin: 0 auto 40px;
}

/* カード */
.sagging-list li {
  background: #ffffff;
  border-radius: 16px;
  padding: 28px 32px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sagging-list li:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}

/* H3 */
.sagging-list h3 {
  font-size: 18px;
  font-weight: 700;
  color: #1f2a44;
  margin-bottom: 12px;
  position: relative;
  padding-left: 16px;
}

.sagging-list h3::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 6px;
  height: 18px;
  background: #c8b68c; /* 仮：ゴールド */
  border-radius: 3px;
}

/* テキスト */
.sagging-list p {
  font-size: 15px;
  line-height: 1.8;
  color: #444;
}

/* 注意書き */
.density-sagging .note {
  max-width: 900px;
  margin: 0 auto;
  padding-top: 24px;
  border-top: 1px solid #ddd;
  font-size: 13px;
  color: #666;
  text-align: center;
}

/* ===========================
   SP対応
   =========================== */
@media (max-width: 768px) {
  .density-sagging {
    padding: 60px 16px;
  }

  .density-sagging h2 {
    font-size: 24px;
  }

  .density-sagging .lead {
    padding: 20px;
    font-size: 15px;
  }

  .sagging-list {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .sagging-list li {
    padding: 24px;
  }
}
/* =========================
   PCは通常表示
========================= */
.table-slider-wrap {
  position: relative;
}

/* SP案内文 */
.sp-slide-note {
  display: none;
  font-size: 13px;
  color: #555;
  margin-bottom: 8px;
}

/* =========================
   SPのみ適用
========================= */
@media (max-width: 768px) {

  .sp-slide-note {
    display: block;
  }

  /* 横スクロール化 */
  .table-slider {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 12px;
  }

  .hikaku {
    min-width: 720px; /* キツキツ防止 */
  }

  /* スライド矢印 */
  .slide-arrow {
    position: absolute;
    top: 50%;
    right: 8px;
    transform: translateY(-50%);
    z-index: 5;

    background: #000;
    border: 3px solid #000;
    border-radius: 999px;
    padding: 10px 14px;

    display: flex;
    align-items: center;
    gap: 6px;

    color: #fff;
    font-size: 14px;
    font-weight: 700;

    pointer-events: none; /* 誤タップ防止 */
    opacity: 1;
    transition: opacity 0.3s ease;
  }

  .arrow-icon {
    font-size: 18px;
    line-height: 1;
  }

  /* 非表示用 */
  .slide-arrow.is-hidden {
    opacity: 0;
  }
}
.sagging-list {
  list-style: none;
  padding-left: 0;
  margin-left: 0;
}