* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Noto Sans JP", sans-serif;
  color: #333;
}

/* header */
.header {
  background: #fff;
  border-bottom: 1px solid #eee;
}

.header__inner {
  display: flex;
  justify-content: space-between;
  padding: 12px 15px;
}

.header__logo {
  height: 32px;
}

/* FV */
.fv {
  position: relative;
}

.fv__img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.fv__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.1));
}

.fv__content {
  position: absolute;
  bottom: 30px;
  left: 20px;
  right: 20px;
  color: #fff;
}

.fv__sub {
  color: #9fe2b0;
  font-size: 12px;
  letter-spacing: 2px;
}

.fv__title {
  font-size: 26px;
  font-weight: 700;
  margin: 10px 0;
}

.fv__catch {
  font-size: 14px;
  line-height: 1.7;
}

/* ボタン */
.fv__btns {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.btn {
  flex: 1;
  padding: 14px;
  text-align: center;
  border-radius: 30px;
  font-size: 14px;
  text-decoration: none;
}

.btn-green {
  background: #00b66d;
  color: #fff;
}

.btn-white {
  border: 1px solid #fff;
  color: #fff;
}

/* メディア */
.media {
  background: #e7f4ec;
  padding: 60px 20px 0;
}

.media__box {
  background: #fff;
  border-radius: 20px;
  padding: 25px;
}

.media__title {
  color: #00b66d;
  text-align: center;
  margin-bottom: 20px;
}

.media__inner {
  display: flex;
  gap: 15px;
}

.media__inner img {
  width: 120px;
  border-radius: 10px;
}

/* 声 */
.voice {
  background: repeating-linear-gradient(
    0deg,
    #dff3e7,
    #dff3e7 4px,
    #eaf8f0 4px,
    #eaf8f0 8px
  );
  padding: 60px 20px;
}

.section-title {
  text-align: center;
  margin-bottom: 30px;
}

.voice__main {
  width: 200px;
  display: block;
  margin: 0 auto 30px;
  border-radius: 20px;
}

.voice__item {
  background: #fff;
  padding: 18px;
  border-radius: 12px;
  margin-bottom: 15px;
  font-size: 14px;
}
/* 背景パターン */
.trouble2 {
  background: repeating-linear-gradient(
    0deg,
    #dff3e7,
    #dff3e7 3px,
    #eaf8f0 3px,
    #eaf8f0 6px
  );
  padding: 60px 20px;
}

/* タブ */
.tab-btns {
  display: flex;
  gap: 10px;
  margin-bottom: 30px;
}

.tab-btn {
  flex: 1;
  border: 2px solid #00b66d;
  border-radius: 30px;
  text-align: center;
  padding: 10px;
  color: #00b66d;
  font-size: 14px;
}

.tab-btn.active {
  background: #00b66d;
  color: #fff;
}

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

/* カード */
.trouble-card {
  background: #fff;
  border-radius: 15px;
  padding: 25px 10px;
  text-align: center;
  font-size: 14px;
  border: 2px solid #ccc;
}

/* 色バリエーション */
.trouble-card.red { border-color: #ff5a5a; color: #ff5a5a; }
.trouble-card.green { border-color: #00b66d; color: #00b66d; }
.trouble-card.blue { border-color: #00a0d6; color: #00a0d6; }
.trouble-card.pink { border-color: #ff6fa5; color: #ff6fa5; }

/* 画像 */
.trouble-images {
  display: flex;
  gap: 10px;
  margin-top: 25px;
}

.trouble-images img {
  width: 50%;
  border-radius: 15px;
}

/* NEWS */
.news {
  background: #fff;
  padding: 50px 20px;
}

.news-title {
  font-size: 18px;
  margin-bottom: 20px;
}

.news-list {
  list-style: none;
  padding: 0;
}

.news-list li {
  padding: 15px 0;
  border-bottom: 1px solid #e5e5e5;
  font-size: 14px;
}

.news-list span {
  display: block;
  color: #999;
  font-size: 12px;
}

.news-btn {
  display: block;
  background: #00b66d;
  color: #fff;
  text-align: center;
  padding: 15px;
  border-radius: 30px;
  margin-top: 25px;
}
.reason2 {
  background-color: rgb(220 252 231 / var(--tw-bg-opacity, 1));
  padding: 70px 20px;
  text-align: center;
}

.reason2 .en {
  color: #1aa260;
  font-size: 12px;
  letter-spacing: 2px;
}

.reason2 .ttl {
  font-size: 22px;
  margin: 10px 0;
}

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

.reason-img {
  width: 100%;
  border-radius: 20px;
  margin: 30px 0;
}

.reason-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.reason-tags span {
  border: 1px solid #1aa260;
  color: #1aa260;
  padding: 8px 14px;
  border-radius: 30px;
  font-size: 13px;
}

.reason-list {
  margin-top: 30px;
}

.reason-item {
  background: #fff;
  padding: 18px;
  border-radius: 12px;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.reason-item span {
  color: #1aa260;
  font-weight: bold;
}
.symptoms {
  background: repeating-linear-gradient(
    0deg,
    #dff3e7,
    #dff3e7 4px,
    #eaf8f0 4px,
    #eaf8f0 8px
  );
  padding: 70px 20px;
  text-align: center;
}

.sym-img {
  width: 100%;
  border-radius: 20px;
  margin: 25px 0;
}

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

.sym-item {
  background: #fff;
  padding: 15px;
  border-radius: 12px;
}
.cta2 {
  background: #1aa260;
  padding: 40px 20px;
  text-align: center;
  border-radius: 20px;
  margin: 20px;
  color: #fff;
}

.cta2 a {
  display: inline-block;
  margin-top: 15px;
  background: #fff;
  color: #1aa260;
  padding: 15px 30px;
  border-radius: 30px;
  font-weight: bold;
}
.footer {
  background: #cfe7d8;
  padding: 40px 20px;
  text-align: center;
}
/* アクセス全体 */
.access {
  background: #cfe7d8;
  padding: 70px 20px;
  text-align: center;
}

/* 英語見出し */
.access .en {
  color: #1aa260;
  font-size: 12px;
  letter-spacing: 2px;
  margin-bottom: 8px;
}

/* タイトル */
.access .ttl {
  font-size: 22px;
  margin-bottom: 25px;
}

/* 店舗画像 */
.access .shop {
  width: 100%;
  border-radius: 20px;
  margin-bottom: 20px;
}

/* 駐車場テキスト（あれば） */
.access .parking {
  font-size: 13px;
  color: #1aa260;
  margin-bottom: 20px;
}

/* 電話ボックス（緑のやつ） */
.tel-box {
  background: #1aa260;
  border-radius: 20px;
  padding: 25px 20px;
  color: #fff;
  margin-bottom: 20px;
}

.tel-box p {
  font-size: 13px;
  margin-bottom: 5px;
}

.tel-box h3 {
  font-size: 26px;
  margin: 5px 0;
  font-weight: 700;
}

/* 住所カード */
.access-card {
  background: #fff;
  border-radius: 15px;
  padding: 20px;
  text-align: left;
  margin-bottom: 15px;
}

.access-card h4 {
  font-size: 14px;
  margin-bottom: 10px;
  color: #1aa260;
}

.access-card p {
  font-size: 13px;
  line-height: 1.7;
  margin-bottom: 5px;
}

/* 診療時間テーブル */
.hours {
  background: #fff;
  border-radius: 15px;
  padding: 20px;
}

.hours table {
  width: 100%;
  border-collapse: collapse;
  font-size: 12px;
}

.hours th,
.hours td {
  border: 1px solid #e5e5e5;
  padding: 8px;
  text-align: center;
}

.hours th {
  background: #f5f5f5;
}

.hours .holiday {
  color: #ff5a5a;
  font-weight: bold;
}
.symptoms-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

/* カード */
.sym-card {
  background: #fff;
  border-radius: 14px;
  padding: 14px 12px;
  font-size: 13px;

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

  position: relative;
}

/* アイコン */
.sym-card .icon {
  background: #dff3e7;
  color: #1aa260;
  width: 30px;
  height: 30px;
  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

/* 矢印 */
.sym-card .arrow {
  margin-left: auto;
  color: #1aa260;
  font-size: 18px;
}

/* 横長 */
.sym-card.full {
  grid-column: span 2;
}
/* 全体 */
.voice2 {
  background: #f7f7f7;
  padding: 70px 20px;
  text-align: center;
}

/* 英語 */
.voice2 .en {
  color: #1aa260;
  font-size: 12px;
  letter-spacing: 2px;
}

/* タイトル */
.voice2 .ttl {
  font-size: 22px;
  margin: 10px 0;
}

/* サブ */
.voice2 .sub {
  font-size: 14px;
  color: #666;
}

/* 緑ライン */
.voice2 .line {
  width: 40px;
  height: 3px;
  background: #1aa260;
  margin: 15px auto 30px;
  border-radius: 2px;
}

/* 壁写真 */
.voice-wall {
  width: 100%;
  border-radius: 20px;
  margin-bottom: 25px;
}

/* 動画カード */
.voice-movie {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}

/* 上の緑バー */
.voice-movie__head {
  background: #1aa260;
  color: #fff;
  padding: 12px;
  font-size: 14px;
  text-align: left;
}

/* 動画 */
.voice-movie__body {
  position: relative;
  padding: 15px;
}

.voice-movie__body img {
  width: 100%;
  border-radius: 12px;
}

/* 再生ボタン */
.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 60px;
  height: 60px;
  background: red;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.play-btn::after {
  content: "";
  position: absolute;
  left: 22px;
  top: 18px;
  border-left: 16px solid #fff;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
}
.gallery {
  padding: 70px 20px;
  background: #fff;
  text-align: center;
}

.gallery .ttl {
  font-size: 20px;
  margin-bottom: 10px;
}

.gallery .sub {
  font-size: 14px;
  color: #666;
  margin-bottom: 30px;
}

/* 縦並び */
.gallery-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

/* 画像 */
.gallery-list img {
  width: 100%;
  border-radius: 20px;
  display: block;
}
/* 全体 */
.access2 {
      background-color: rgb(240 253 244 / var(--tw-bg-opacity, 1));
  padding: 70px 20px;
  text-align: center;
}

/* 見出し */
.access2-en {
  color: #1aa260;
  font-size: 12px;
  letter-spacing: 2px;
}

.access2-ttl {
  font-size: 22px;
  margin: 10px 0;
}

.access2-line {
  width: 40px;
  height: 3px;
  background: #1aa260;
  margin: 10px auto 25px;
}

/* 画像 */
.access2-img {
  width: 100%;
  border-radius: 20px;
  margin-bottom: 15px;
}

/* 駐車場 */
.access2-parking {
  color: #1aa260;
  font-size: 13px;
  margin-bottom: 20px;
}

/* 電話 */
.access2-tel {
  background: #1aa260;
  border-radius: 20px;
  padding: 25px;
  color: #fff;
  margin-bottom: 20px;
}

.access2-tel h3 {
  font-size: 26px;
  margin: 5px 0;
}

/* カード */
.access2-card {
  background: #fff;
  border-radius: 16px;
  padding: 20px;
  text-align: left;
  margin-bottom: 15px;
}

.access2-card h4 {
  color: #1aa260;
  margin-bottom: 10px;
}

.small {
  font-size: 12px;
  color: #666;
}

.red { color: #e74c3c; }
.green { color: #1aa260; }

/* テーブル */
.access2-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 11px;
}

.access2-table th,
.access2-table td {
  border: 1px solid #ddd;
  padding: 4px;
  text-align: center;
}

.access2-table th {
  background: #f5f5f5;
}

.access2-table .holiday {
  color: #e74c3c;
  font-weight: bold;
}

.access2-table .wed {
  color: #e74c3c;
}

/* 注釈 */
.note {
  font-size: 12px;
  color: #666;
  margin-top: 10px;
}

/* MAP */
.access2-map iframe {
  width: 100%;
  height: 250px;
  border: none;
  border-radius: 15px;
  margin-top: 20px;
}
/* フッター全体 */
.footer2 {
  text-align: center;
}

/* ページトップ */
.footer2-top {
  display: block;
  padding: 20px 0;
  color: #1aa260;
  text-decoration: none;
  font-size: 14px;
}

.footer2-top .arrow {
  display: inline-block;
  border: 1px solid #1aa260;
  border-radius: 50%;
  width: 28px;
  height: 28px;
  line-height: 26px;
  margin-right: 8px;
}

/* 下部 */
.footer2-inner {
  background-color: rgb(187 247 208 / var(--tw-bg-opacity, 1));
  padding: 40px 20px;
}

/* ロゴ */
.footer2-logo {
  width: 200px;
  margin-bottom: 15px;
}

/* 住所 */
.footer2-address {
  font-size: 13px;
  margin-bottom: 10px;
  color: #2f4f4f;
}

/* 電話 */
.footer2-tel {
  font-size: 14px;
  margin-bottom: 15px;
  color: #1aa260;
  font-weight: bold;
}

/* コピー */
.footer2-copy {
  font-size: 12px;
  color: #4a6a5a;
}

/* タイトル */
.access2-title {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #1aa260;
  margin-bottom: 15px;
}

/* 行 */
.access2-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
}

/* アイコン（背景なし） */
.icon {
  font-size: 16px;
  width: 20px;
  text-align: center;
  flex-shrink: 0;
}

.icon.red {
  color: #e74c3c;
}

.icon.green {
  color: #1aa260;
}

/* テキスト */
.text {
  flex: 1;
}

/* メイン */
.main {
  font-size: 14px;
  margin-bottom: 3px;
}

/* 太字部分 */
.main strong {
  font-weight: 700;
}

/* 補足 */
.sub {
  font-size: 12px;
  color: #888;
}

/* 赤 */
.red-text {
  color: #e74c3c;
}

/* リンク */
.link {
  color: #1aa260;
  font-size: 13px;
  text-decoration: underline;
}


.icon-svg {
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.icon-svg svg {
  width: 100%;
  height: 100%;
  stroke: currentColor; /* ←重要 */
  fill: none;
}

.icon-svg.red {
  color: #e74c3c;
}

.icon-svg.green {
  color: #1aa260;
}
.icon-fa {
  width: 20px;
  height: 20px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  font-size: 16px;
  flex-shrink: 0;
}

/* 色 */
.icon-fa.green {
  color: #1aa260;
}

.icon-fa.red {
  color: #e74c3c;
}
.icon-fa {
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px; /* ←微調整 */
}
.access2-main {
  margin: 0;
}

.access2-sub {
  margin: 4px 0 0;
}
.access2-item {
  display: flex;
  align-items: flex-start; /* ←これ重要 */
}
/* タイトル行 */
.access2-card-title {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 15px;
}

/* アイコン */
.icon-fa {
  width: 20px;
  height: 20px;

  display: flex;
  align-items: center;
  justify-content: center;
}

/* FAズレ補正（重要） */
.icon-fa i {
  line-height: 1;
  position: relative;
  top: 1px; /* ←微調整 */
}

/* 文字 */
.access2-card-label {
  font-size: 16px;
  font-weight: 600;
}
/* タイトル行 */
.access2-card-title {
  display: flex;
  align-items: center; /* ←中央揃え */
  gap: 8px;
  margin-bottom: 15px;
}

/* アイコン */
.icon-fa {
  width: 20px;
  height: 20px;

  display: flex;
  align-items: center;
  justify-content: center;
}

/* FontAwesome補正（超重要） */
.icon-fa i {
  line-height: 1;
  position: relative;
  top: 1px;
}

/* ラベル */
.access2-card-label {
  font-size: 16px;
  font-weight: 600;
}
/* 区切り線 */
.access2-divider {
  border: none;
  border-top: 1px solid #e5e5e5;
  margin: 15px 0;
}

/* バス情報 */
.access2-bus {
  font-size: 13px;
  line-height: 1.6;
  color: #555;
}
/* 電話全体 */
.access2-tel {
  background: #1aa260;
  border-radius: 20px;
  padding: 25px;
  color: #fff;
  text-align: center;
}

/* 横並び */
.access2-tel-main {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 10px 0;
}

/* アイコン丸 */
.tel-icon {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.2); /* ←これ重要 */
  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 16px;
}

/* アイコン */
.tel-icon i {
  color: #fff;
  line-height: 1;
}

/* 電話番号 */
.access2-tel h3 {
  font-size: 26px;
  margin: 0;
}
/* 全体 */
.cta3 {
  background: #1aa260;
  border-radius: 20px;
  padding: 40px 20px;
  text-align: center;
  color: #fff;
  margin-top: 40px;;
}

/* 上の丸 */
.cta3-icon {
  width: 60px;
  height: 60px;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  margin: 0 auto 20px;
  font-size: 20px;
}

/* タイトル */
.cta3-title {
  font-size: 18px;
  margin-bottom: 10px;
}

/* サブ */
.cta3-sub {
  font-size: 14px;
  opacity: 0.9;
  margin-bottom: 25px;
}

/* ボタン */
.cta3-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;

  background: #fff;
  color: #1aa260;

  padding: 14px 24px;
  border-radius: 30px;
  font-weight: bold;
  font-size: 16px;

  text-decoration: none;
}

/* アイコン */
.cta3-btn i {
  font-size: 14px;
}
.sym-card {
  display: flex;
  align-items: center;
  gap: 10px;

  text-align: left; /* ←これ追加 */
}

/* テキスト部分 */
.sym-card span:not(.icon-fa):not(.arrow) {
  flex: 1;
  text-align: left;
}
.sym-card {
    gap: 6px;
}
/* 全体 */
.features2 {
  padding: 70px 20px;
  background: #cfe7d8;
}

/* タイトル */
.features2-ttl {
  text-align: center;
  font-size: 22px;
  margin-bottom: 25px;
}

/* 画像 */
.features2-image img {
  width: 100%;
  border-radius: 16px;
  margin-bottom: 20px;
}

/* カード */
.feature-item {
  margin-bottom: 12px;
}

/* ヘッダー */
.feature-head {
  width: 100%;
  background: #fff;
  border-radius: 16px;
  padding: 15px;

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

  border: none;
  cursor: pointer;
}

/* 番号 */
.feature-num {
  color: #1aa260;
  font-weight: bold;
}

/* アイコン */
.feature-icon {
  width: 36px;
  height: 36px;
  background: #dff3e7;
  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  color: #1aa260;
}

/* タイトル */
.feature-title {
  flex: 1;
  text-align: left;
}

/* 矢印 */
.feature-arrow {
  color: #1aa260;
}

/* 本文 */
.feature-body {
  display: none;
  background: #fff;
  padding: 15px;
  border-radius: 0 0 16px 16px;
  margin-top: -10px;
}
.reason-item {
  margin-bottom: 14px;
}

.reason-head {
  width: 100%;
  border: 1px solid #9ee8bd;
  background: #fff;
  border-radius: 16px;
  padding: 15px 18px;

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

  font-family: inherit;
  color: #001b33;
  cursor: pointer;
}

.reason-num {
  color: #9ee8bd;
  font-size: 22px;
  font-weight: 700;
  min-width: 34px;
  text-align: left;
}

.reason-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #d9f7e6;
  color: #19a85b;

  display: flex;
  align-items: center;
  justify-content: center;

  flex-shrink: 0;
  font-size: 15px;
}

.reason-title {
  flex: 1;
  text-align: left;
  font-size: 15px;
  font-weight: 700;
}

.reason-arrow {
  color: #19a85b;
  font-size: 13px;
  transition: transform .25s ease;
}

.reason-body {
  display: none;
  background: #fff;
  border: 1px solid #9ee8bd;
  border-top: none;
  border-radius: 0 0 16px 16px;
  margin-top: -12px;
  padding: 18px;
  text-align: left;
}

.reason-body p {
  margin: 0;
  font-size: 14px;
  line-height: 1.8;
}

.reason-item.is-open .reason-head {
  border-radius: 16px 16px 0 0;
}

.reason-item.is-open .reason-body {
  display: block;
}

.reason-item.is-open .reason-arrow {
  transform: rotate(180deg);
}
.reason-item {
  border-radius: 16px;
  overflow: hidden; /* ←これ追加 */
  border: 1px solid #9ee8bd;
  background: #fff;
}

/* ヘッダー */
.reason-head {
  border: none; /* ←消す */
  border-radius: 0; /* ←消す */
}

/* 本文 */
.reason-body {
  border: none; /* ←消す */
  margin-top: 0; /* ←消す */
  padding: 15px 18px;
}
.reason-item.is-open {
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}
/* 親は縦にする */
.reason-item {
  display: block; /* ←これにする（重要） */
  border: 1px solid #9ee8bd;
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  margin-bottom: 14px;
}

/* ヘッダーだけflex */
.reason-head {
  display: flex;
  align-items: center;
  gap: 12px;

  width: 100%;
  padding: 15px 18px;
  border: none;
  background: #fff;
}

/* 本文は下に */
.reason-body {
  display: none;
  padding: 15px 18px;
  border-top: 1px solid #eee;
}

/* 開いた時 */
.reason-item.is-open .reason-body {
  display: block;
}
.reason-item {
    padding: 10px;
}
.red {
    color: #CC0000;
}
.sym-box i {
  font-size: 22px;
  margin-bottom: 8px;
}

/* 色 */
.sym-box.red i { color: #e74c3c; }
.sym-box.green i { color: #1aa260; }
.sym-box.blue i { color: #3498db; }
.sym-box.pink i { color: #ff5fa2; }
.sym-images {
  display: flex;
  flex-direction: column; /* ←縦に */
  gap: 12px;
}

.sym-images img {
  width: 100%;
  border-radius: 16px;
  display: block;
}
/* カード */
.sym-box {
  background: #fff;
  border-radius: 16px;
  padding: 20px;

  display: flex;
  flex-direction: column; /* ←これ重要 */
  align-items: center;
  justify-content: center;

  border: 2px solid #ddd; /* ←枠復活 */
}

/* テキスト */
.sym-box p {
  margin: 8px 0 0;
  font-size: 14px;
}
.sym-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.sym-images {
  display: flex;
  flex-direction: column; /* ←縦並び */
  gap: 12px;
}
.sym-images img {
  width: 100%;
  display: block;
  border-radius: 16px;
}
.trouble-images {
  display: block; /* ←これに変更 */
}
.trouble-images img {
  width: 100%;
  display: block;
  border-radius: 16px;
  margin-bottom: 12px;
}
/* ボックス */
.media-box {
  background: #fff;
  border-radius: 16px;
  padding: 20px;
  text-align: center;
}

/* タイトル */
.media-title {
  font-size: 16px;
  color: #1aa260;
  font-weight: 700;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;

  margin-bottom: 12px;
}

/* アイコン */
.media-icon {
  color: #1aa260;
  font-size: 16px;
}

/* テキスト */
.media-text {
  font-size: 13px;
  line-height: 1.7;
  color: #333;
  margin-bottom: 15px;
}

/* 画像 */
.media-image img {
  width: 100%;
  max-width: 260px; /* ←これ重要（粗さ対策） */
  margin: 0 auto;
  display: block;
  border-radius: 8px;
}
.hero-copy {
  background: #fff;
  padding: 18px 20px;
  margin: -20px 0px 25px; /* ←上に少し被せる */

  border-radius: 14px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);

  font-size: 15px;
  line-height: 1.6;
  font-weight: 600;
  text-align: center;
}

/* 数字強調 */
.hero-copy .num {
  color: #1aa260;
  font-size: 18px;
  font-weight: 800;
}

/* メイン数字 */
.hero-copy .num.big {
  font-size: 22px;
}
.hero {
  position: relative;
}

.hero-img {
  width: 100%;
  display: block;
}

/* グラデーション削除 */
.hero::after {
  display: none;
}

/* テキスト配置 */
.hero-inner {
  position: absolute;
  bottom: 30px;
  left: 20px;
  right: 20px;
}

/* 吹き出し */
.hero-sub {
  display: inline-block;
  background: #fff;
  color: #1aa260;

  padding: 10px 14px;
  border-radius: 20px;

  font-size: 14px;
  font-weight: 700;

  margin-bottom: 10px;
  position: relative;
}

/* 吹き出しの三角 */
.hero-sub::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 20px;

  width: 12px;
  height: 12px;
  background: #fff;

  transform: rotate(45deg);
}

/* メインコピー */
.hero-main {
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;

  text-shadow: 0 2px 6px rgba(0,0,0,0.4);
}
.hero {
  position: relative;
  height: 60vh; /* ←これ追加（重要） */
  min-height: 420px; /* ←スマホ最低保証 */
  overflow: hidden;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* ←これでいい感じにトリミング */
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;

  background: linear-gradient(
    to top,
    rgba(0,0,0,0.45),
    rgba(0,0,0,0.1),
    rgba(0,0,0,0)
  );
}
.hero-main {
  color: #fff;
  font-size: 20px;
  font-weight: 700;

  text-shadow: 0 3px 8px rgba(0,0,0,0.6);
}
.hero-sub {
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}
.hero-sub {
  font-size: 16px;        /* ←大きく */
  padding: 12px 18px;     /* ←余白UP */
  font-weight: 800;       /* ←強め */

  box-shadow: 0 6px 16px rgba(0,0,0,0.2); /* ←強調 */
}
.hero-main {
  font-size: 18px; /* ←少し下げる */
  text-shadow: 0 4px 10px rgba(0,0,0,0.7); /* ←強める */
}
.hero::after {
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.55),  /* ←ちょい強く */
    rgba(0,0,0,0.2),
    rgba(0,0,0,0)
  );
}
/* セクション */
.voice {
  padding: 60px 20px;
  text-align: center;
}

/* タイトル */
.section-title {
  font-size: 18px;
  color: #1aa260;
  margin-bottom: 20px;
}

/* メイン画像 */
.voice__main {
  width: 220px;
  border-radius: 16px;
  margin: 0 auto 25px;
  display: block;
}

/* リスト */
.voice__list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* カード */
.voice__item {
  background: #fff;
  border-radius: 16px;
  padding: 16px 18px;

  text-align: left;
  position: relative;

  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

/* 引用マーク */
.voice__item::before {
  content: "“";
  position: absolute;
  top: 10px;
  left: 12px;

  color: #1aa260;
  font-size: 22px;
  font-weight: bold;
}

/* 本文 */
.voice__item {
  font-size: 14px;
  line-height: 1.6;
  font-weight: 600;
  padding-left: 28px; /* ←引用分ずらす */
}

/* 補足 */
.voice__item span {
  display: block;
  margin-top: 6px;
  font-size: 12px;
  color: #888;
  font-weight: normal;
}
/* セクション */
.video {
      padding: 10px 20px 20px;
    text-align: center;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 14px;
    margin-top: 20px;
}

/* タイトル */
.video-title {
  background: #1aa260;
  color: #fff;
  padding: 12px;
  border-radius: 12px 12px 0 0;

  font-size: 15px;
  font-weight: 700;
}

/* サブ */
.video-sub {
  font-size: 13px;
  margin: 15px 0;
  color: #666;
}

/* 動画 */
.video-wrap {
  position: relative;
  padding-top: 56.25%; /* 16:9 */
  border-radius: 16px;
  overflow: hidden;
  background: #000;
}

/* iframe */
.video-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.video-wrap {
  position: relative;
  padding-top: 56.25%;
  overflow: hidden;
  border-radius: 16px;
}

/* iframeを拡大して中央寄せ */
.video-wrap iframe {
  position: absolute;
  top: 50%;
  left: 50%;

  width: 120%;   /* ←ここポイント */
  height: 120%;

  transform: translate(-50%, -50%);
}
.video-wrap {
  position: relative;
  padding-top: 56.25%;
  overflow: hidden;
  border-radius: 16px;
}

/* ★ここ重要 */
.video-wrap iframe {
  position: absolute;
  top: 50%;
  left: 50%;

  width: 130%;   /* ←ここを増やす */
  height: 130%;

  transform: translate(-50%, -50%);
}
/* ボタンエリア */
.contact-actions {
  display: flex;
  gap: 10px;
  margin-top: 15px;
}

/* 共通 */
.contact-actions a {
  flex: 1;
  text-align: center;

  padding: 12px;
  border-radius: 10px;

  font-size: 13px;
  font-weight: 600;

  text-decoration: none;
}

/* LINE */
.btn-line {
  background: #06c755;
  color: #fff;
}

/* メール */
.btn-mail {
  background: #fff;
  color: #1aa260;
  border: 1px solid #1aa260;
}

/* アイコン */
.contact-actions i {
  margin-right: 6px;
}
/* 固定バー */
.fixed-contact {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;

  display: flex;
  z-index: 9999;
}

/* ボタン共通 */
.fixed-contact a {
  flex: 1;
  text-align: center;
  padding: 14px 10px;

  font-size: 14px;
  font-weight: 700;

  text-decoration: none;
}

/* 電話 */
.fixed-tel {
  background: #1aa260;
  color: #fff;
}

/* LINE */
.fixed-line {
  background: #06c755;
  color: #fff;
}

/* アイコン */
.fixed-contact i {
  margin-right: 6px;
}
body {
  padding-bottom: 46px;
}
/* ヘッダー固定 */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #fff;
  z-index: 9999;

  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

/* 中 */
.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;

  padding: 10px 15px;
}

/* ロゴ */
.logo img {
  height: 40px; /* ←ここでサイズ調整 */
}

/* メニュー */
.menu-btn {
  width: 30px;
  height: 22px;
  position: relative;
  border: none;
  background: none;
}

.menu-btn span {
  display: block;
  height: 2px;
  width: 100%;
  background: #333;
  margin-bottom: 6px;
}

/* ナビ */
.nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  height: 100%;

  background: #fff;
  padding: 80px 20px;

  transition: 0.3s;
}

/* 開いた状態 */
.nav.active {
  right: 0;
}

/* リスト */
.nav ul {
  list-style: none;
  padding: 0;
}

.nav li {
  border-bottom: 1px solid #eee;
}

.nav a {
  display: block;
  padding: 15px 0;
  text-decoration: none;
  color: #333;
}
body {
  padding-top: 60px; /* ヘッダー分 */
}
.logo img {
  height: 40px;
  margin-top: 6px;
}
.header {
  z-index: 10000;
}

.fixed-contact {
  z-index: 9999;
}
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10000; /* ← これが重要 */
  background: #fff;
}
body {
  padding-top: 70px; /* ヘッダー高さ分 */
}
.fixed-contact {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
}
.header {
  position: fixed;
  top: 0;
  width: 100%;
}


.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 70px;
  z-index: 10000;
  background: #fff;
}

body {
  padding-top: 70px;
}
.nav {
    z-index: 10;
}
.nav {
  position: fixed;
  top: 80px;              /* ヘッダーの下から開始 */
  right: -100%;
  width: 100%;
  height: calc(100vh - 80px);
  background: #fff;
  z-index: 9998;
  padding: 0 20px 80px;
  transition: right .3s ease;
  overflow-y: auto;
}

.nav.active {
  right: 0;
}

.nav ul {
  list-style: none;
  padding: 16px 0 0;
  margin: 0;
}

.nav li {
  border-bottom: 1px solid #e6f4ec;
}

.nav a {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 15px 4px;
  color: #183040;
  text-decoration: none;
  font-size: 14px;
}

.nav a i {
  width: 20px;
  text-align: center;
  color: #16a65b;
  font-size: 15px;
  flex-shrink: 0;
}
.voice,
.media {
  background: url('../img/uebg.jpg') repeat;
/
}
.symptoms {
  background: url('../img/uebg2.jpg') repeat;

}
.sym-box {
  text-decoration: none;
}

.sym-box p {
  text-decoration: none;
}
.news-list span {
    display: block;
    color: #111;
    font-size: 14px;
}
.news a {
  text-decoration: none;
}
#topics_date {
  font-size: 12px;
  color: #999;
}
.sym-card {
  display: flex;
  align-items: center;
  text-decoration: none;   /* ← 下線消す */
  color: #333;             /* ← 文字色統一（ここ調整OK） */
}
.sym-box {
  display: block;
  text-decoration: none;
}

/* 色制御（ここが本体） */
.sym-box.red { color: #e74c3c; }
.sym-box.green { color: #27ae60; }
.sym-box.blue { color: #40830a; }
.sym-box.pink { color: #e84393; }

/* アイコンもテキストも継承させる */
.sym-box i,
.sym-box p {
  color: inherit;
}
.sym-box {
  display: flex;
  flex-direction: column;
  align-items: center;     /* 横中央 */
  justify-content: center; /* 縦中央 */
  text-align: center;
}
.contentsmain {
  padding: 20px;
}
.dlist09 dd {
    padding-left: 4px;
    padding-top: 4px;
    padding-bottom: 4px;
    margin-left: 0px;
    margin-top: 1px;
    margin-bottom: 8px;
}.setsumei {
    font-size: 12px;
    color: #666;
    line-height: 18px;
    font-weight: normal;
}
.brown {
    color: #996600;
}
.picright {
    float: right;
    margin-left: 10px;
    margin-right: 0px;
    margin-bottom: 10px;
    background-color: #FFF;
    padding: 3px;
    border: 1px solid #CCC;
}

.selector07 {
  font-size: 22px;
  font-weight: bold;
  color: #2e7d32;
  padding: 10px 0;
  margin-bottom: 15px;
  border-bottom: 2px solid #e0e0e0;
  position: relative;
}

.selector07::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 60px;
  height: 2px;
  background: #2e7d32;
}



img {
  max-width: 100%;
}
img {
  max-width: 100%;
  height: auto;
  
}
.dlist09 dt.red {
  font-size: 16px;
  font-weight: bold;
  color: #2e7d32;
  margin: 20px 0 30px;
  padding-left: 10px;
  border-left: 4px solid #4caf50;
}
.photo03 {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  padding: 15px;
  margin-bottom: 20px;
  overflow: hidden;
}

/* 画像 */
.photo03 img {
  width: 100%;
  border-radius: 8px;
  display: block;
  margin-bottom: 10px;
}

/* タイトル */
.photo03 .text_m2 {
  display: block;
  font-weight: bold;
  color: #e91e63; /* ピンク系（そのままでもOK） */
  margin-bottom: 5px;
  font-size: 18px;
}

/* 説明 */
.photo03 p {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
}
.photo03 {
  display: flex;
  flex-direction: column;
}

/* 画像を上に */
.photo03 img {
  order: -1;
  margin-bottom: 10px;
}

/* テキストは下 */
.photo03 p {
  order: 1;
}
.dlist09 img {
  width: 100%;

}
/* OK（修正後） */
.rightblock h3 {
  position: relative;
  background: #4caf50;
  color: #fff;
  padding: 12px 16px;
  border-radius: 8px;
  margin: 20px 0;
}

.rightblock h3::after {
  content: "";
  position: absolute;
  left: 20px;
  bottom: -10px;
  border-width: 10px 10px 0 10px;
  border-style: solid;
  border-color: #4caf50 transparent transparent transparent;
}
.dlist03 {
  display: grid;
  grid-template-columns: 80px 1fr;
  border-top: 1px solid #eee;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
}

/* 左（項目） */
.dlist03 dt {
  background: #f1f8f4;
  padding: 12px 10px;
  font-weight: bold;
  color: #2e7d32;
  border-bottom: 1px solid #eee;
}

/* 右（内容） */
.dlist03 dd {
  margin: 0;
  padding: 12px 10px;
  border-bottom: 1px solid #eee;
}

/* 最後の線消す */
.dlist03 dt:last-of-type,
.dlist03 dd:last-of-type {
  border-bottom: none;
}
.info_photo ul {
  list-style: none; /* ●消す */
  padding: 0;
  margin: 0;
}

.info_photo li {
  margin-bottom: 20px;
}

/* 画像フレーム */
.info_photo img {
  width: 100%;
  display: block;
  background: #fff;
  padding: 8px;
  border-radius: 8px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.08);
}
.photo02 {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  padding: 15px;
  margin-bottom: 20px;
}

/* 画像 */
.photo02 img {
  width: 100%;
  display: block;
  border-radius: 8px;
  margin-bottom: 10px;
}

/* テキスト */
.photo02 p {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
}
.photo02 {
  display: flex;
  flex-direction: column;
}

/* 画像を上に */
.photo02 img {
  order: -1;
  margin-bottom: 10px;
}

/* テキストを下に */
.photo02 p {
  order: 1;
}

/* Q */
#QandA-2 dt {
  position: relative;
  padding: 12px 14px 12px 42px; /* ← 左に余白追加 */
}

/* Qマーク位置調整 */
#QandA-2 dt::before {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  margin-right: 0; /* ← これ消す */
}

/* A */
#QandA-2 dd {
  margin: 0 0 15px 20px; /* ← 左にズラす */
  padding: 12px 14px;
  background: #fff;
  border-left: 4px solid #4caf50;
  border-radius: 6px;
}

/* Aマーク */
#QandA-2 dd::before {
  display: inline-block;
  margin-right: 6px;
}
/* 下層ページのh4見出し */
.rightblock h4 {
  background: linear-gradient(135deg, #43a047, #66bb6a);
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  padding: 12px 14px;
  border-radius: 8px;
  margin: 20px 0 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
  position: relative;
}
.boxkiro {
  background: #f1f8f4; /* 薄いグリーン */
  padding: 14px;
  border-radius: 8px;
  margin: 15px 0;
  position: relative;
}

/* 下にちょこんと矢印 */
.boxkiro::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 20px;
  border-width: 10px 8px 0 8px;
  border-style: solid;
  border-color: #f1f8f4 transparent transparent transparent;
}
.point-box {
  background: #f4e3d6; /* ベージュ */
  padding: 16px;
  border-radius: 8px;
  margin: 15px 0;
  line-height: 1.8;
}

/* 各行 */
.point-box p {
  position: relative;
  padding-left: 20px;
  margin-bottom: 12px;
}

/* ▶マーク */
.point-box p::before {
  content: "▶";
  position: absolute;
  left: 0;
  top: 2px;
  color: #d32f2f; /* 赤 */
  font-size: 12px;
}
/* 吹き出し本体 */
.point-box {
  background: #e0ece8;
  padding: 16px;
  border-radius: 10px;
  position: relative; /* ←必須 */
}

/* 矢印（しっぽ） */
.point-box::after {
  content: "";
  position: absolute;
  bottom: -10px; /* 下に出す */
  left: 20px;    /* 位置調整 */
  border-width: 10px 8px 0 8px;
  border-style: solid;
  border-color: #e0ece8 transparent transparent transparent;
}
.picright {
    margin-bottom: 30px;
}
.boxkiro::after,
.picright::after {
  content: "";
  display: block;
  clear: both;
}
.picright {
  float: right;
  margin: 10px;
}

/* 次の要素を強制改行 */
.picright + * {
  clear: both;
}
.rightblock h4 {
  clear: both;
}
/* ===== 流れセクション（カード化） ===== */
#flowchart h6 {
  background: #4CAF50;
  color: #fff;
  padding: 10px 14px;
  border-radius: 10px 10px 0 0;
  font-size: 15px;
  margin: 20px 0 0;
}

/* カード本体 */
#flowchart p {
  background: #fff;
  padding: 12px;
  margin: 0 0 20px;
  border-radius: 0 0 12px 12px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.08);
}

/* 画像100%＋写真風 */
#flowchart img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  margin: 10px 0;
}

/* ステップ全体まとめたい場合（推奨） */
#flowchart .step {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  padding: 12px;
  margin-bottom: 20px;
}
h6.selector11 {
  background: #4CAF50;
  color: #fff;
  padding: 12px 16px;
  border-radius: 10px;
  font-size: 15px !important;
}

.flashright {
    float: right;
    margin-right: 0;
    margin-left: 20px;
    padding: 5px;
    margin-bottom: 20px;
}
#QandA-2 dd {
  background: #fff;
  padding: 12px 14px;
  border-left: 4px solid #4CAF50;
  border-radius: 8px;
  margin-bottom: 12px;
}
/* ===== まずリセット（影響切る） ===== */
.dlist09 dd {
  background: none !important;
  border: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

/* ===== FAQだけ再定義 ===== */
#QandA-2 dd {
  background: #fff;
  padding: 12px 14px;
  border-left: 4px solid #4CAF50;
  border-radius: 8px;
  margin-bottom: 12px;
}
/* ===== FAQ専用 ===== */

/* 全体 */
#QandA-2 dl {
  margin: 0 0 20px;
}

/* 質問（Q） */
#QandA-2 dl dt {
  background: #e8f5e9;
  color: #2e7d32;
  font-weight: bold;
  padding: 12px 14px;
  border-radius: 8px;
  position: relative;
  margin-bottom: 8px;
}

/* Qマーク */
#QandA-2 dl dt::before {
  content: "Q";
  display: inline-block;
  background: #4caf50;
  color: #fff;
  font-weight: bold;
  width: 22px;
  height: 22px;
  line-height: 21px;
  text-align: center;
  border-radius: 50%;
  margin-right: 8px;
}

/* 回答（A） */
#QandA-2 dl dd {
  margin: 0 0 15px;
  padding: 12px 14px;
  background: #fff;
  border-left: 4px solid #4caf50;
  border-radius: 6px;
  line-height: 1.7;
}

/* Aマーク */
#QandA-2 dl dd::before {
  content: "A";
  color: #4caf50;
  font-weight: bold;
  margin-right: 6px;
}
#QandA-2 dt::before {
  position: static;
  transform: none;
  margin-right: 8px;
}
#QandA-2 dl,
.dlist02 {
  margin: 0 0 20px;
}

/* Q */
#QandA-2 dt,
.dlist02 dt {
  background: #e8f5e9;
  color: #2e7d32;
  font-weight: bold;
  padding: 12px 14px;
  border-radius: 8px;
  display: flex;
  align-items: center;
}

/* Qマーク */
#QandA-2 dt::before,
.dlist02 dt::before {
  content: "Q";
  display: inline-block;
  background: #4caf50;
  color: #fff;
  width: 22px;
  height: 22px;
  line-height: 21px;
  text-align: center;
  border-radius: 50%;
  margin-right: 8px;
}

/* A */
#QandA-2 dd,
.dlist02 dd {
  margin: 0 0 15px;
  padding: 12px 14px;
  background: #fff;
  border-left: 4px solid #4caf50;
  border-radius: 6px;
}

/* Aマーク */
#QandA-2 dd::before,
.dlist02 dd::before {
  content: "A";
  color: #4caf50;
  font-weight: bold;
  margin-right: 6px;
}
.dlist02 dt::before,
.dlist02 dd::before {
  content: none;
}
.rightblock .bigan-list img {
  width: 100% !important;
  height: auto;
  display: block;
}
.rightblock .bigan-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.rightblock .bigan-list li {
  margin-bottom: 15px;
}

.rightblock .bigan-list img {
  width: 100% !important;
  height: auto;
  border-radius: 8px;
}
.rightblock .bigan-list img {
  width: 100% !important;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}
/* =========================
   画像（カード化）
========================= */
.rightblock .bigan-list img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  display: block;
  margin-bottom: 12px;
}

/* =========================
   見出し（緑吹き出し）
========================= */
.rightblock h3.mb {
  background: #4caf50;
  color: #fff;
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 16px;
  position: relative;
  margin: 20px 0 15px;
}

/* 吹き出しの三角 */
.rightblock h3.mb::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 20px;
  border-width: 8px 8px 0 8px;
  border-style: solid;
  border-color: #4caf50 transparent transparent transparent;
}

/* =========================
   料金テーブル
========================= */
.rightblock .bigan-tbl {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 15px;
  font-size: 14px;
}

.rightblock .bigan-tbl th {
  background: #e8f5e9;
  color: #2e7d32;
  padding: 10px;
  text-align: left;
  width: 40%;
}

.rightblock .bigan-tbl td {
  padding: 10px;
  border-bottom: 1px solid #ddd;
}

/* =========================
   タグ風リスト
========================= */
.rightblock .bigan-list2 {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 15px 0;
  padding: 0;
  list-style: none;
}

.rightblock .bigan-list2 li {
  background: #e8f5e9;
  color: #2e7d32;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
}

/* =========================
   説明文
========================= */
.rightblock p {
  line-height: 1.7;
  margin-bottom: 12px;
}

/* =========================
  患者様の声（完成版）
========================= */

.bigan-list4 {
  list-style: none;
  margin: 20px 0;
  padding: 18px;

  background: #f7fbf8;
  border-radius: 14px;
  border: 1px solid #e0f2e9;
  box-shadow: 0 6px 14px rgba(0,0,0,0.05);
}

/* 1件 */
.bigan-list4 li {
  list-style: none;
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px dashed #dfeee6;
}

/* 最後だけ線消す */
.bigan-list4 li:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

/* コメント（強調） */
.bigan-list4 li .voice-text {
  font-size: 15px;
  line-height: 1.8;
  color: #333;
  margin-bottom: 6px;
}

/* 属性（右寄せ・弱め） */
.bigan-list4 li .voice-meta {
  font-size: 12px;
  color: #888;
  text-align: right;
}

/* アイコンで少し雰囲気出す */
.bigan-list4 li .voice-text::before {
  content: "💬";
  margin-right: 6px;
}
/* =========================
  Q&A（美顔鍼など）
========================= */

.blist03 {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* Q（質問） */
.blist03 li {
  background: #e8f5e9;
  color: #2e7d32;
  font-weight: bold;
  padding: 12px 14px;
  border-radius: 8px;
  margin: 15px 0 6px;
  position: relative;
}

/* Qマーク */
.blist03 li::before {
  content: "Q";
  display: inline-block;
  background: #4caf50;
  color: #fff;
  font-size: 12px;
  width: 20px;
  height: 20px;
  line-height: 19px;
  text-align: center;
  border-radius: 50%;
  margin-right: 8px;
}

/* A（回答） */
.blist03 + p,
.blist03 + .blist03 + p,
.blist03 + .blist03 + .blist03 + p {
  display: block;
  margin: 0 0 15px;
  padding: 12px 14px;
  background: #fff;
  border-left: 4px solid #4caf50;
  border-radius: 6px;
  line-height: 1.7;
  position: relative;
}

/* Aマーク */
.blist03 + p::before,
.blist03 + .blist03 + p::before,
.blist03 + .blist03 + .blist03 + p::before {
  content: "A ";
  color: #4caf50;
  font-weight: bold;
}

.rightblock h3 {
  clear: both;
}
.access2 {
 clear: both;
}

/* =========================
  お知らせ 今風UI
========================= */

/* 全体 */
#topicsArea {
  padding: 15px;
}

/* 見出し */
#topicsArea h2 {
  font-size: 20px;
  color: #4caf50;
  border-bottom: 2px solid #e0f2e9;
  padding-bottom: 8px;
  margin-bottom: 15px;
}

/* リスト */
#topicsArea ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* 1件 */
#topicsArea li {
  border: 1px solid #e0f2e9;
  border-radius: 10px;
  margin-bottom: 10px;
  background: #fff;
  transition: 0.2s;
  overflow: hidden;
}

/* ホバー */
#topicsArea li:hover {
  background: #f7fbf8;
  transform: translateY(-2px);
}

/* ▼マーク消す */
#topicsArea li::marker {
  display: none;
}

/* リンク */
#topicsArea a {
  display: block;
  padding: 0px 14px;
  text-decoration: none;
  color: #333;
}

/* タイトル */
#topics_title {
  display: block;
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 4px;
}

/* 日付 */
#topics_date {
  display: block;
  font-size: 12px;
  color: #999;
}

/* 次ページ */
#topics_paging {
  margin-top: 15px;
  text-align: center;
}


/* タイトル */
#topics_title {
  display: block;
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 10px;
}

/* 日付 */
#topics_date {
  display: block;
  font-size: 12px;
  color: #999;
  margin-top: 0px;
  padding-left: 16px; /* ←これでちょい右 */
  margin-bottom: 10px;
}
body {
  font-family: 'Noto Sans JP', sans-serif !important;
}
/* =========================
  midashi26（番号付き見出し・グリーン版）
========================= */
.midashi26 {
  display: flex;
  align-items: center;
  font-size: 20px;
  font-weight: bold;
  color: #2e7d32;
  margin: 30px 0 15px;
}
#topics_body {
  margin-bottom: 20px;
}
/* 番号 */
.midashi26 .num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  margin-right: 10px;
  font-size: 16px;
  font-weight: bold;
  color: #fff;

  /* グリーン丸 */
  background: linear-gradient(135deg, #66bb6a, #43a047);
  border-radius: 50%;

  /* 今風影 */
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}

/* 下線アクセント */
.midashi26::after {
  content: "";
  flex: 1;
  height: 2px;
  margin-left: 10px;
  background: linear-gradient(to right, #81c784, transparent);
}
/* =========================
  写真ボックス（今風）
========================= */
.photo-box {
  margin: 12px 0 18px;
  border-radius: 12px;
  overflow: hidden;
  position: relative;

  /* 白フチ＋影 */
  background: #fff;
  padding: 6px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.12);
}

/* 画像 */
.photo-box img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}

/* ほんのりフィルター（整骨院っぽく） */
.photo-box::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 12px;
  background: linear-gradient(
    to bottom,
    rgba(76,175,80,0.05),
    rgba(0,0,0,0.05)
  );
  pointer-events: none;
}
/* =========================
  横ライン付き見出し
========================= */
.midashi-line {
  display: flex;
  align-items: center;
  font-size: 18px;
  font-weight: bold;
  color: #2e7d32;
  margin: 20px 0;
}

/* アイコン丸 */
.midashi-line .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  margin-right: 10px;

  background: #4caf50;
  color: #fff;
  border-radius: 50%;
  font-size: 16px;
}

/* 右のライン */
.midashi-line::after {
  content: "";
  flex: 1;
  height: 2px;
  margin-left: 10px;
  background: linear-gradient(to right, #81c784, transparent);
}
/* =========================
  横ライン見出し（FA版）
========================= */
.midashi-line {
  display: flex;
  align-items: center;
  font-size: 18px;
  font-weight: bold;
  color: #2e7d32;
  margin: 20px 0;
}

/* アイコン丸 */
.midashi-line .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  margin-right: 10px;

  background: #4caf50;
  color: #fff;
  border-radius: 50%;
}

/* FontAwesomeの位置ズレ対策 */
.midashi-line .icon i {
  font-size: 14px;
  line-height: 1;
}

/* 右のライン */
.midashi-line::after {
  content: "";
  flex: 1;
  height: 2px;
  margin-left: 10px;
  background: linear-gradient(to right, #81c784, transparent);
}
/* =========================
  お知らせボタン
========================= */
.btn-news {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;

  padding: 12px 20px;
  border-radius: 999px;

  background: linear-gradient(135deg, #4caf50, #2e7d32);
  color: #fff;
  font-weight: bold;
  font-size: 14px;
  text-decoration: none;

  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
  transition: 0.3s;
}

/* アイコン */
.btn-news i {
  font-size: 14px;
}

/* ホバー */
.btn-news:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(0,0,0,0.2);
  opacity: 0.95;
}
.btn-news {
  display: flex;
  justify-content: center;
  margin: 25px auto 0;
  width: fit-content;
}
/* =========================
  センター見出し＋下線（現HTML対応）
========================= */

/* 見出し */
.ttl {
  text-align: center;
  font-size: 22px;
  font-weight: bold;
  color: #1b5e20;
  margin: 30px 0 5px;
  position: relative;
}

/* サブタイトル */
.sub {
  text-align: center;
  font-size: 13px;
  color: #666;
  margin-bottom: 10px;
}

/* 下線 */
.sub::after {
  content: "";
  display: block;
  width: 40px;
  height: 3px;
  margin: 12px auto 0;
  background: #4caf50;
  border-radius: 2px;
}
.access2-note {
    font-size: 11px;
}
/* =========================
  外部リンク（分かるデザイン）
========================= */
.access2-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;

  color: #2e7d32;
  font-weight: bold;
  text-decoration: none;

  border-bottom: 1px dotted #4caf50;
  padding-bottom: 2px;
  padding-top: 10px;
}

/* アイコン追加 */
.access2-link::after {
  content: "\f35d"; /* 外部リンクアイコン */
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 12px;
}

/* ホバー */
.access2-link:hover {
  color: #1b5e20;
  border-bottom: 1px solid #2e7d32;
}
.hero-copy-wrap {
  position: relative;
}

.hero-badge {
  position: absolute;
  top: -12px;          /* ←上に浮かせる */
  left: 50%;
  transform: translateX(-50%);

  background: linear-gradient(45deg, #ff7043, #ff8a65);
  color: #fff;
  font-weight: bold;

  padding: 6px 14px;
  border-radius: 999px;
  font-size: 13px;

  z-index: 10;
}

/* 既存カード */
.hero-copy {
  position: relative;
  z-index: 1;
}
.voice, .media {
    background: url(../img/uebg.jpg) repeat;
    position: relative;
}
.hero-badge {
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);

  background: linear-gradient(45deg, #ff7043, #ff8a65);
  color: #fff;
  font-weight: bold;

  padding: 8px 18px;   /* ←少しだけUP */
  font-size: 15px;     /* ←14→15くらいがベスト */

  border-radius: 999px;
  z-index: 10;

  box-shadow: 0 6px 14px rgba(0,0,0,0.18); /* ←少し強め */
}
.hero-badge {
  padding: 8px 26px; /* ←左右だけ広げる */
}
.hero-badge {
  white-space: nowrap;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 70px;
}

[id] {
  scroll-margin-top: 70px;
}
/* ナビ内情報 */
.nav-info {
  margin-top: 20px;
  padding: 0 20px;
}

.nav-box {
  background: #f7f7f7;
  border-radius: 10px;
  padding: 10px 15px 10px;
  margin-bottom: 15px;
  font-size: 14px;
  line-height: 1.6;
}

.nav-box h3 {
  font-size: 15px;
  margin-bottom: 10px;
  color: #2e8b57; /* 緑系 */
}

.nav-box .note {
  font-size: 12px;
  color: #888;
}

/* PCでは非表示 */
@media (min-width: 768px) {
  .nav-info {
    display: none;
  }
}
#nav {
  position: fixed;
  top: 68px;
  height: calc(100vh - 80px); /* ←これに統一 */
  width: 100%;
  background: #fff;
  z-index: 9998;
  padding: 0 20px 80px;
  overflow-y: auto;
}

/* ===== プライバシーポリシー全体 ===== */
.privacy {
  max-height: 300px; /* 高さ調整 */
  overflow-y: auto;
  padding: 20px;
  border: 1px solid #ddd;
  border-radius: 8px;
  background: #fff;
  box-shadow: inset 0 0 6px rgba(0,0,0,0.05);
  line-height: 1.8;
  font-size: 14px;
}

/* スクロールバー少し整える（Chrome系） */
.privacy::-webkit-scrollbar {
  width: 8px;
}
.privacy::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 4px;
}

/* ===== タイトル ===== */
.privacy h2 {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 15px;
  padding-bottom: 8px;
  border-bottom: 2px solid #2c7be5;
}

/* ===== 各条文 ===== */
.privacy h4 {
  font-size: 16px;
  font-weight: bold;
  margin-top: 20px;
  margin-bottom: 8px;
  padding-left: 10px;
  border-left: 4px solid #2c7be5;
}

/* ===== 本文 ===== */
.privacy p {
  margin-bottom: 10px;
  color: #333;
}

/* ===== リスト ===== */
.privacy ol {
  margin-left: 20px;
  margin-bottom: 10px;
}

.privacy li {
  margin-bottom: 6px;
}

/* ===== スマホ最適化 ===== */
@media (max-width: 768px) {
  .privacy {
    max-height: 240px;
    font-size: 13px;
    padding: 15px;
  }

  .privacy h2 {
    font-size: 18px;
  }

  .privacy h4 {
    font-size: 15px;
  }
}
/* 外側ラッパーに余白 */
.textbox3 {
  padding: 0 15px; /* 左右余白 */
}

/* プライバシーボックス調整 */
.privacy {
  max-height: 300px;
  overflow-y: auto;

  padding: 20px;
  margin: 20px 0 40px; /* ← 上・下の余白追加 */

  border: 1px solid #ddd;
  border-radius: 10px;
  background: #fff;

  box-shadow: 0 4px 12px rgba(0,0,0,0.05); /* ← 外側に影 */
}
/* 外側余白 */
.textbox3 {
  padding: 0 15px;
}

/* 背景うっすらグリーン */
.form-txt {
  background: #f3faf4;
  padding: 20px 0;
}

/* メインボックス */
.privacy {
  max-height: 300px;
  overflow-y: auto;

  padding: 20px;
  margin: 20px 0 40px;

  border: 1px solid #c8e6c9;
  border-radius: 10px;
  background: #fff;

  box-shadow: 0 4px 12px rgba(76,175,80,0.15);
  line-height: 1.8;
  font-size: 14px;
}

/* スクロールバー */
.privacy::-webkit-scrollbar {
  width: 8px;
}
.privacy::-webkit-scrollbar-thumb {
  background: #a5d6a7;
  border-radius: 4px;
}

/* タイトル */
.privacy h2 {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 15px;
  padding-bottom: 8px;
  border-bottom: 2px solid #4caf50;
  color: #2e7d32;
}

/* 見出し */
.privacy h4 {
  font-size: 16px;
  font-weight: bold;
  margin-top: 20px;
  margin-bottom: 8px;
  padding-left: 10px;
  border-left: 4px solid #4caf50;
  color: #2e7d32;
}

/* 本文 */
.privacy p {
  margin-bottom: 10px;
  color: #333;
}

/* リスト */
.privacy ol {
  margin-left: 20px;
  margin-bottom: 10px;
}
.privacy li {
  margin-bottom: 6px;
}

/* スマホ */
@media (max-width: 768px) {
  .privacy {
    max-height: 240px;
    font-size: 13px;
    padding: 15px;
  }
}
.privacy {
    font-feature-settings: "palt" 1;
	font-family: "source-han-sans-japanese", sans-serif;
	box-sizing: border-box;
	height: 300px;
	overflow: auto;
	margin-right: 5px;
	margin-left: 5px;
	padding: 20px;
	margin-bottom: 20px;
	clear: both;
	background-color: #f9f9f9;
	margin-top: 30px;
}
.privacy::-webkit-scrollbar{width: 5px;}
.privacy::-webkit-scrollbar-thumb{background: #0c3152;}
.privacy::-webkit-scrollbar-track-piece:start{background: #cecece;}
.privacy::-webkit-scrollbar-track-piece:end{background: #cecece;}
.privacy h2{
    font-feature-settings: "palt" 1;
	font-family: "source-han-sans-japanese", sans-serif;
	font-size: 11pt;
	line-height: 25px;
	font-weight: 600;
	text-align: center;
	margin-bottom: 15px;
	padding-bottom: 10px;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #CCC;
}
.privacy h3{
    font-feature-settings: "palt" 1;
	font-family: "source-han-sans-japanese", sans-serif;
	font-size: 10pt;
	line-height: 22px;
	font-weight: 600;
	margin-bottom: 5px;
	padding-top: 15px;
}
.privacy p{
	font-size: 9pt;
	line-height: 19px;
	font-weight: normal;
	margin-bottom: 10px;
}
.privacy h4{
    font-feature-settings: "palt" 1;
	font-family: "source-han-sans-japanese", sans-serif;
	font-size: 10pt;
	line-height: 25px;
	font-weight: 600;
	margin-bottom: 5px;
	padding-top: 10px;
}
.privacy a { color: #0c3152;text-decoration:underline;}
.privacy a:hover { color: #333; text-decoration:none;}