/**
 * Link Japan - メインスタイル
 * SP: 横幅最大 / PC: 1200px 中央寄せ
 *
 * 命名規則:
 * - ページ全体: page-wrapper, page-main
 * - セクション: section-01, section-02, section-03 …
 * - 子要素: section-[内容]__* (BEM)
 * - 各 <section> には id と aria-label を付与（SEO・アクセシビリティ）
 * - font-size は 8 の倍数（8, 16, 24, 32, 40, 48px …）
 */

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0 0 0 0;
  padding: 0 0 0 0;
  font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
}

.page-wrapper {
  max-width: 100%;
  margin: 0 auto 0 auto;
  min-height: 100vh;
}

/* SP: 横幅いっぱい */
.page-main {
  width: 100%;
  max-width: none;
  margin: 0 0 0 0;
  padding: 0 0 0 0;
}

/* PC: 800px 中央寄せ */
@media (min-width: 768px) {
  .page-main {
    max-width: 800px;
    margin: 0 auto 0 auto;
    padding: 0 20px 0 20px;
  }
}

/* セクション01: ヒーロー（ファーストビュー）・背景黒 */
.section-01 {
  width: 100%;
  min-height: 80vh;
  background-color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px 40px 20px;
}

.section-01__content {
  position: relative;
  z-index: 1;
  width: 100%;
  text-align: center;
}

.section-01__img {
  max-width: 100%;
  height: auto;
  vertical-align: top;
  display: block;
  margin: 0 auto 0 auto;
}

/* セクション02: ED紹介 */
.section-02 {
  position: relative;
  min-height: 80vh;
  background-image: url("../images/section-02/section-ed-intro.png");
  background-size: cover;
  background-position: 0% 50%;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px 40px 20px;
}

.section-02::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  pointer-events: none;
}

.section-02__content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto 0 auto;
  text-align: center;
  color: #CACACA;
  font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
}

.section-02__content p {
  margin: 0 0 32px 0;
  line-height: 1.8;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 1.4s ease, transform 1.4s ease;
}

@media (max-width: 767px) {
  .section-02__content p {
    font-size: 12px;
  }
}

@media (min-width: 768px) {
  .section-02__content p {
    font-size: 18px;
  }
}

.section-02__content p:last-child {
  margin: 0 0 0 0;
}

/* スクロールでトリガー：各 p が画面に入ったら下からフェードイン */
.section-02__content p.is-inview {
  opacity: 1;
  transform: translateY(0);
}

/* セクション03: ED改善・お悩み（テクスチャー背景） */
.section-03 {
  position: relative;
  min-height: 100vh;
  background-image: url("../images/section-03/section-texture.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 20px 40px 20px;
}

.section-03::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 40%;
  background: linear-gradient(to top, #474747 0%, transparent 100%);
  z-index: 1;
  pointer-events: none;
}

.section-03::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: url("../images/section-03/section-03-overlay.png");
  background-size: cover;
  background-position: center 174px;
  background-repeat: no-repeat;
  pointer-events: none;
}

.section-03__content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto 0 auto;
  text-align: center;
  color: #fff;
  font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
}

.section-03__heading {
  margin: 0 0 40px 0;
  font-size: 48px;
  font-weight: bold;
  line-height: 1.4;
  font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
}

.section-03__highlight {
  color: #e53935;
}

.section-03__lead {
  margin: 0 0 40px 0;
  line-height: 1.8;
  color: #dadada;
}

@media (max-width: 767px) {
  .section-03__lead {
    font-size: 20px;
  }
}

@media (min-width: 768px) {
  .section-03__lead {
    font-size: 24px;
  }
}

.section-03__lead-line {
  display: block;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 1.4s ease, transform 1.4s ease;
}

.section-03__lead.is-inview .section-03__lead-line:nth-child(1) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0s;
}
.section-03__lead.is-inview .section-03__lead-line:nth-child(2) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.15s;
}
.section-03__lead.is-inview .section-03__lead-line:nth-child(3) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.3s;
}

.section-03__intro {
  margin: 0 0 40px 0;
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
}

.section-03__intro::before,
.section-03__intro::after {
  content: "";
  flex: 1;
  max-width: 200px;
  height: 1px;
  background: #999;
}

.section-03__question {
  margin: 0 0 40px 0;
  font-size: 32px;
  font-weight: bold;
}

.section-03__concern-list {
  list-style: none;
  margin: 0 0 40px 0;
  padding: 0 0 0 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  justify-items: center;
}

.section-03__concern-item {
  position: relative;
  width: 240px;
  height: 240px;
  margin: 0 0 0 0;
  padding: 24px 12px 24px 12px;
  background: rgb(255 255 255 / 70%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  line-height: 1.6;
  color: #000;
  box-sizing: border-box;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 1.4s ease, transform 1.4s ease;
  box-shadow: 6px 6px 10px rgb(0 0 0 / 0.08), 12px 14px 24px rgb(0 0 0 / 0.97);
}

.section-03__concern-item-text {
  display: block;
  text-align: center;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  font-size: 24px;
  font-weight: bold;
}

.section-03__concern-list.is-inview .section-03__concern-item:nth-child(1) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0s;
}
.section-03__concern-list.is-inview .section-03__concern-item:nth-child(2) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.12s;
}
.section-03__concern-list.is-inview .section-03__concern-item:nth-child(3) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.24s;
}
.section-03__concern-list.is-inview .section-03__concern-item:nth-child(4) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.36s;
}
.section-03__concern-list.is-inview .section-03__concern-item:nth-child(5) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.48s;
}

.section-03__concern-item:nth-child(5) {
  grid-column: 1 / -1;
  justify-self: center;
}

.section-03__check {
  position: absolute;
  top: 32px;
  right: 24px;
  width: 28px;
  height: 28px;
  background: transparent;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 64px;
  color: #fff;
  font-weight: bold;
}

.section-03__solution {
  margin: 0 0 16px 0;
  font-size: 32px;
  font-weight: bold;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 1.4s ease, transform 1.4s ease;
}

.section-03__solution.is-inview {
  opacity: 1;
  transform: translateY(0);
}

.section-03__conclusion {
  margin: 0 0 0 0;
  font-size: 24px;
  line-height: 1.6;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 1.4s ease 0.2s, transform 1.4s ease 0.2s;
}

.section-03__conclusion.is-inview {
  opacity: 1;
  transform: translateY(0);
}

.section-03__conclusion-br {
  display: none;
}

@media (max-width: 767px) {
  .section-03__heading {
    font-size: 32px;
  }
  .section-03__content {
    width: 100%;
    box-sizing: border-box;
  }
  .section-03__concern-list {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    max-width: 100%;
    width: 100%;
    min-width: 0;
    box-sizing: border-box;
  }
  .section-03__concern-item,
  .section-03__concern-item:nth-child(5) {
    width: 100%;
    max-width: 100%;
    height: auto;
    aspect-ratio: 1;
    min-width: 0;
    min-height: 0;
    justify-self: center;
    padding: 12px 8px 12px 8px;
    font-size: 12px;
    box-sizing: border-box;
  }
  .section-03__concern-item:nth-child(5) {
    grid-column: 1 / -1;
    max-width: 200px;
    justify-self: center;
  }
  .section-03__check {
    width: 20px;
    height: 20px;
    top: 16px;
    right: 12px;
    font-size: 64px;
  }
  .section-03__concern-item-text {
    font-size: 18px;
    font-weight: bold;
  }
  .section-03__conclusion-br {
    display: block;
  }
}

/* セクション04: EDセルフチェックシート（白黒グレーベース） */
.section-04 {
  padding: 80px 20px 40px 20px;
  background: linear-gradient(180deg, #474747 0%, #5a5a5a 18%, #777 40%, #aaa 65%, #DDDDDD 100%);
}

.section-04__card {
  max-width: 800px;
  margin: 0 auto 0 auto;
  padding: 32px 24px 32px 24px;
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 16px;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
}

.section-04__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  margin: 0 0 32px 0;
  padding: 0 0 24px 0;
  border-bottom: 1px solid #717171;
}

.section-04__header-left {
  margin: 0 0 0 0;
  padding: 0 0 0 0;
}

.section-04__title-main {
  margin: 0 0 4px 0;
  font-size: 16px;
  color: #666;
  line-height: 1.4;
}

.section-04__title-step {
  margin: 0 0 0 0;
  font-size: 18px;
  font-weight: bold;
  color: #333;
}

.section-04__progress {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}

.section-04__dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #eee;
  border: 1px solid #ddd;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.section-04__dot.is-answered {
  background: #333;
  border-color: #000;
}

.section-04__dot.is-current {
  transform: scale(1.2);
}

.section-04__content {
  margin: 0 0 0 0;
  padding: 0 0 0 0;
}

.section-04__slides {
  overflow: hidden;
  margin: 0 0 24px 0;
}

.section-04__slides-inner {
  display: flex;
  width: 700%;
  transition: transform 0.4s ease;
}

.section-04__slide {
  flex: 0 0 14.2857%;
  min-width: 14.2857%;
  padding: 0 8px 0 8px;
  box-sizing: border-box;
}

.section-04__slide--intro {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 48px 16px 48px 16px;
}

.section-04__slide--result {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 48px 16px 48px 16px;
}

.section-04__intro-title {
  margin: 0 0 32px 0;
  font-size: 24px;
  font-weight: bold;
  line-height: 1.5;
  color: #333;
  text-align: center;
}

.section-04__btn--start {
  margin: 0 0 0 0;
}

.section-04__question {
  margin: 0 0 24px 0;
  font-size: 20px;
  font-weight: bold;
  line-height: 1.6;
  color: #333;
}

.section-04__options {
  list-style: none;
  margin: 0 0 0 0;
  padding: 0 0 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.section-04__options li {
  margin: 0 0 0 0;
  flex: 1 1 160px;
  min-width: 0;
}

.section-04__option {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 12px 16px 12px;
  font-size: 16px;
  line-height: 1.4;
  text-align: center;
  border-radius: 12px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.15s ease;
  min-height: 56px;
  box-sizing: border-box;
}

.section-04__option:hover {
  transform: translateY(-2px);
}

.section-04__option input[type="radio"] {
  position: absolute;
  width: 0;
  height: 0;
  opacity: 0;
  pointer-events: none;
}

.section-04__option {
  background: #f0f0f0;
  border-color: #d8d8d8;
  color: #333;
}

.section-04__option:has(input:checked) {
  font-weight: bold;
  background: #333;
  border-color: #000;
  color: #fff;
  box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.15);
}

.section-04__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin: 0 0 24px 0;
  padding: 0 0 0 0;
}

.section-04__btn {
  display: inline-block;
  margin: 0 0 0 0;
  padding: 16px 40px 16px 40px;
  font-size: 20px;
  font-weight: bold;
  color: #333;
  background: #f0f0f0;
  border: 1px solid #ccc;
  border-radius: 32px;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.section-04__btn:hover {
  background: #e0e0e0;
  border-color: #999;
}

.section-04__btn--calc {
  color: #333;
}

.section-04__score-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin: 0 0 32px 0;
}

.section-04__score-label {
  font-size: 16px;
  color: #333;
}

.section-04__score-value {
  display: inline-block;
  min-width: 80px;
  padding: 8px 16px 8px 16px;
  font-size: 24px;
  font-weight: bold;
  text-align: center;
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  color: #333;
}

.section-04__score-unit {
  font-size: 16px;
  color: #333;
}

@media (max-width: 767px) {
  .section-04 {
    padding: 40px 16px 32px 16px;
  }
  .section-04__card {
    padding: 20px 16px 20px 16px;
  }
  .section-04__header {
    margin: 0 0 16px 0;
    padding: 0 0 16px 0;
  }
  .section-04__title-main {
    font-size: 14px;
  }
  .section-04__title-step {
    font-size: 16px;
  }
  .section-04__dot {
    width: 10px;
    height: 10px;
  }
  .section-04__slides {
    margin: 0 0 16px 0;
  }
  .section-04__slide--intro,
  .section-04__slide--result {
    padding: 24px 8px 24px 8px;
  }
  .section-04__intro-title {
    margin: 0 0 20px 0;
    font-size: 20px;
  }
  .section-04__question {
    margin: 0 0 16px 0;
    font-size: 16px;
  }
  .section-04__options {
    gap: 8px;
  }
  .section-04__options li {
    flex: 1 1 100%;
  }
  .section-04__option {
    padding: 12px 10px 12px 10px;
    font-size: 14px;
    min-height: 44px;
  }
  .section-04__nav {
    margin: 0 0 16px 0;
    gap: 12px;
  }
  .section-04__btn {
    padding: 12px 32px 12px 32px;
    font-size: 16px;
  }
  .section-04__score-row {
    margin: 0 0 24px 0;
    gap: 12px;
  }
  .section-04__score-label {
    font-size: 14px;
  }
  .section-04__score-value {
    min-width: 56px;
    padding: 6px 12px 6px 12px;
    font-size: 20px;
  }
  .section-04__score-unit {
    font-size: 14px;
  }
}

/* セクション05: ペーパーテクスチャ背景 */
.section-05 {
  min-height: 100vh;
  background-image: url("../images/section-05/section-05-bg.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 20px 80px 20px;
}

.section-05__content {
  width: 100%;
  max-width: 800px;
  margin: 0 auto 0 auto;
  text-align: center;
}

.section-05__heading {
  margin: 0 0 80px 0;
  font-size: 48px;
  font-weight: bold;
  line-height: 1.4;
  color: #000;
  font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
}

.section-05__question-single {
  margin: 0 0 40px 0;
  font-size: 32px;
  font-weight: bold;
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
}

.section-05__question-single::before,
.section-05__question-single::after {
  content: "";
  flex: 1;
  max-width: 100px;
  height: 6px;
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
  background: transparent;
}

.section-05__img-wrapper {
  margin: 40px auto 0 auto;
  max-width: 100%;
}

.section-05__img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto 0 auto;
}

.section-05__concern-list {
  list-style: none;
  margin: 40px auto 0 auto;
  padding: 0 0 0 0;
  display: inline-block; /* Center the list block */
  text-align: left; /* Keep text left-aligned */
  vertical-align: top;
}

.section-05__concern-item {
  position: relative;
  margin: 0 0 8px 0;
  padding: 0 0 0 40px;
  font-size: 20px;
  font-weight: bold;
  line-height: 1.6;
  color: #000;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 1.4s ease, transform 1.4s ease;
}

.section-05__concern-item::before {
  content: "\F26E"; /* Bootstrap Icons bi-check-lg */
  font-family: "bootstrap-icons";
  position: absolute;
  left: 0;
  top: 0;
  font-size: 24px;
  color: #e53935;
}

/* Scroll animation triggers */
.section-05__concern-list.is-inview .section-05__concern-item:nth-child(1) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0s;
}
.section-05__concern-list.is-inview .section-05__concern-item:nth-child(2) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.2s;
}
.section-05__concern-list.is-inview .section-05__concern-item:nth-child(3) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.4s;
}
.section-05__concern-list.is-inview .section-05__concern-item:nth-child(4) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.6s;
}
.section-05__sub-heading {
  margin: 80px auto 0 auto;
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
}

.section-05__sub-heading-text {
  text-align: center;
}

.section-05__sub-heading-line {
  margin: 0;
  font-size: 32px;
  font-weight: bold;
  line-height: 1.4;
}

.section-05__sub-heading::before,
.section-05__sub-heading::after {
  content: "";
  flex: 1;
  max-width: 100px;
  height: 8px;
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
  background: transparent;
}

.section-05__therapy-img-wrapper {
  margin: 48px auto 0 auto;
  max-width: 100%;
}

.section-05__therapy-img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto 0 auto;
}

.section-05__therapy-block {
  margin: 40px auto 0 auto;
  text-align: center;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 1.4s ease, transform 1.4s ease;
}

.section-05__therapy-block.is-inview {
  opacity: 1;
  transform: translateY(0);
}

.section-05__therapy-text,
.section-05__therapy-highlight {
  margin: 0;
  font-size: 20px;
  font-weight: bold;
  line-height: 1.6;
  display: inline-block;
}

.section-05__therapy-text {
  color: #000;
}

.section-05__therapy-highlight {
  color: #e53935;
}

.section-05__therapy-br {
  display: none;
}

@media (max-width: 767px) {
  .section-05 {
    padding: 40px 16px 40px 16px;
  }
  .section-05__content {
    max-width: 100%;
    padding: 0 0 0 0;
  }
  .section-05__heading {
    margin: 0 0 40px 0;
    font-size: 31px;
  }
  .section-05__question-single {
    margin: 0 0 24px 0;
    font-size: 19px;
    gap: 16px;
  }
  .section-05__question-single::before,
  .section-05__question-single::after {
    max-width: 60px;
  }
  .section-05__img-wrapper {
    margin: 24px auto 0 auto;
  }
  .section-05__concern-list {
    margin: 24px auto 0 auto;
  }
  .section-05__concern-item {
    margin: 0 0 6px 0;
    padding: 0 0 0 32px;
    font-size: 15px;
  }
  .section-05__concern-item::before {
    font-size: 20px;
  }
  .section-05__sub-heading {
    margin: 48px auto 0 auto;
    gap: 16px;
  }
  .section-05__sub-heading-line {
    font-size: 21px;
  }
  .section-05__sub-heading::before,
  .section-05__sub-heading::after {
    max-width: 60px;
  }
  .section-05__therapy-img-wrapper {
    margin: 32px auto 0 auto;
  }
  .section-05__therapy-block {
    margin: 24px auto 0 auto;
  }
  .section-05__therapy-text,
  .section-05__therapy-highlight {
    font-size: 13px;
    line-height: 24px;
  }
  .section-05__therapy-br {
    display: block;
  }
}

/* セクション06: リジェマックス体験モニタリング（グラフ用背景レイアウト） */
.section-06 {
  position: relative;
  min-height: 60vh;
  background: #fff;
  padding: 80px 20px 60px 20px;
  overflow: hidden;
}

.section-06__deco {
  position: absolute;
  width: auto;
  height: auto;
  max-width: 50%;
  max-height: 50%;
  object-fit: contain;
  pointer-events: none;
}

.section-06__deco--tl {
  top: 0;
  left: 0;
}

.section-06__deco--br {
  bottom: 0;
  right: 0;
}

.section-06__content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto 0 auto;
  text-align: center;
}

.section-06__title-bar {
  background: #00A89F;
  padding: 16px 24px 16px 24px;
  margin: 0 0 24px 0;
  display: inline-block;
}

.section-06__heading {
  margin: 0 0 0 0;
  font-size: 32px;
  font-weight: bold;
  line-height: 1.4;
  color: #FFFFFF;
}

.section-06__lead {
  margin: 0 0 40px 0;
  font-size: 16px;
  line-height: 1.6;
  color: #000;
}

.section-06__graph-area {
  margin: 0 auto 0 auto;
}

.section-06__chart-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  margin: 0 0 24px 0;
}

.section-06__nav-btn {
  width: 48px;
  height: 48px;
  padding: 0 0 0 0;
  border: none;
  background: transparent;
  cursor: pointer;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.2s ease;
}

.section-06__nav-btn:hover {
  opacity: 0.7;
}

.section-06__nav-btn .bi {
  font-size: 48px;
  color: #797777;
}

.section-06__chart-inner {
  position: relative;
  width: 100%;
  max-width: 320px;
  aspect-ratio: 1 / 1;
}

.section-06__chart-inner .section-06__pie-svg {
  width: 100%;
  height: 100%;
  display: block;
}

.section-06__legend {
  list-style: none;
  margin: 0 0 32px 0;
  padding: 0 0 0 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px 24px;
}

.section-06__legend-item {
  margin: 0 0 0 0;
  padding: 0 0 0 0;
  font-size: 14px;
  color: #000;
  display: flex;
  align-items: center;
  gap: 8px;
}

.section-06__legend-dot {
  width: 12px;
  height: 12px;
  border-radius: 2px;
  flex-shrink: 0;
}

.section-06__graph-note {
  margin: 0 0 0 0;
  padding: 8px 16px 8px 16px;
  font-size: 16px;
  color: #FFFFFF;
  background: #00A89F;
  display: inline-block;
}

@media (max-width: 767px) {
  .section-06 {
    padding: 40px 16px 40px 16px;
    min-height: 50vh;
  }
  .section-06__deco {
    max-width: 40%;
    max-height: 40%;
  }
  .section-06__content {
    max-width: 100%;
  }
  .section-06__title-bar {
    padding: 12px 16px 12px 16px;
    margin: 0 0 24px 0;
  }
  .section-06__heading {
    font-size: 21px;
  }
  .section-06__lead {
    margin: 0 0 24px 0;
    font-size: 14px;
  }
  .section-06__chart-wrap {
    gap: 16px;
    margin: 0 0 16px 0;
  }
  .section-06__nav-btn {
    width: 40px;
    height: 40px;
  }
  .section-06__nav-btn .bi {
    font-size: 40px;
  }
  .section-06__chart-inner {
    max-width: 240px;
  }
  .section-06__legend {
    margin: 0 0 24px 0;
    gap: 12px 16px;
  }
  .section-06__legend-item {
    font-size: 12px;
    gap: 6px;
  }
  .section-06__legend-dot {
    width: 10px;
    height: 10px;
  }
  .section-06__graph-note {
    padding: 6px 12px 6px 12px;
    font-size: 14px;
  }
}

/* セクション07: ノイズテクスチャ背景
   濃さの調整方法（いずれか使用）:
   - opacity: 0〜1
   - filter: brightness(1.5);  ※1より大で明るく（薄く）、小で暗く（濃く）
   - mix-blend-mode: multiply | overlay | soft-light;  ※白背景との合成の仕方を変更 */
.section-07 {
  position: relative;
  min-height: 40vh;
  background-color: #fff;
  padding: 80px 20px 80px 20px;
}

.section-07::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../images/section-07/section-07-bg.png");
  background-size: cover;
  background-position: center;
  background-repeat: repeat;
  opacity: 0.15;
  pointer-events: none;
}

.section-07__content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto 0 auto;
  text-align: center;
}

.section-07__sub--stat,
.section-07__sub--note,
.section-07__catch,
.section-07__body {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 1.4s ease, transform 1.4s ease;
}

.section-07__sub--stat.is-inview,
.section-07__sub--note.is-inview,
.section-07__catch.is-inview,
.section-07__body.is-inview {
  opacity: 1;
  transform: translateY(0);
}

.section-07__text {
  margin: 0 0 32px 0;
  font-size: 28px;
  font-weight: bold;
  line-height: 1.6;
  color: #333;
}

.section-07__sub--stat {
  margin: 0 0 0 0;
  font-size: 27px;
  line-height: 1.6;
  font-weight: bold;
  background: linear-gradient(90deg, #29AEBB 0%, #2771B5 100%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

.section-07__sub--note {
  margin: 0 0 16px 0;
  font-size: 21px;
  line-height: 1.6;
  font-weight: bold;
  background: linear-gradient(90deg, #29AEBB 0%, #2771B5 100%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

.section-07__source {
  margin: 0 0 24px 0;
  padding: 0 0 0 0;
  font-size: 14px;
  line-height: 1.6;
  color: #666;
  text-align: right;
}

.section-07__banner {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 0 0 80px 0;
  padding: 0 0 0 0;
}

.section-07__catch {
  margin: 0 0 48px 0;
  padding: 0 0 0 0;
  font-size: 48px;
  font-weight: bold;
  line-height: 1.4;
  font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  background: linear-gradient(90deg, #29AEBB 0%, #2771B5 100%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

.section-07__mechanism {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 0 0 24px 0;
  padding: 0 0 0 0;
}

.section-07__body {
  margin: 0 0 0 0;
  padding: 24px 24px 24px 24px;
  font-size: 16px;
  line-height: 1.8;
  color: #c00;
  background-color: #FFFACB;
  text-align: left;
}

.section-07__br {
  display: none;
}

@media (max-width: 767px) {
  .section-07 {
    padding: 40px 16px 40px 16px;
    min-height: auto;
  }
  .section-07__content {
    max-width: 100%;
  }
  .section-07__text {
    margin: 0 0 24px 0;
    font-size: 24px;
  }
  .section-07__sub--stat {
    font-size: 21px;
  }
  .section-07__sub--note {
    margin: 0 0 12px 0;
    font-size: 16px;
  }
  .section-07__source {
    margin: 0 0 16px 0;
    font-size: 12px;
  }
  .section-07__banner {
    margin: 0 0 40px 0;
  }
  .section-07__catch {
    margin: 0 0 32px 0;
    font-size: 30px;
  }
  .section-07__mechanism {
    margin: 0 0 16px 0;
  }
  .section-07__body {
    padding: 16px 16px 16px 16px;
    font-size: 14px;
  }
  .section-07__br {
    display: block;
  }
}

/* セクション08: 白→黒グラデーション・リンクジャパン紹介 */
.section-08 {
  position: relative;
  background: linear-gradient(180deg, #FFFFFF 0%, #000000 100%);
  padding: 160px 20px 80px 20px;
}

.section-08__content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto 0 auto;
  text-align: center;
}

.section-08__text--1 {
  margin: 0 0 4px 0;
  font-size: 19px;
  line-height: 1.8;
  color: #000;
}

.section-08__text--2 {
  margin: 0 0 4px 0;
  font-size: 19px;
  line-height: 1.8;
  color: #000;
}

.section-08__text--3 {
  margin: 0 0 4px 0;
  font-size: 19px;
  line-height: 1.8;
  color: #000;
}

.section-08__text--4 {
  margin: 0 0 16px 0;
  font-size: 19px;
  line-height: 1.8;
  color: #000;
}

.section-08__text--highlight {
  margin: 0 0 4px 0;
  font-size: 19px;
  line-height: 1.8;
  color: #e53935;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 1.4s ease, transform 1.4s ease;
}

.section-08__text--highlight.is-inview {
  opacity: 1;
  transform: translateY(0);
}

.section-08__text--closing {
  margin: 0 0 4px 0;
  font-size: 19px;
  line-height: 1.8;
  color: #e53935;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 1.4s ease, transform 1.4s ease;
}

.section-08__text--closing.is-inview {
  opacity: 1;
  transform: translateY(0);
}

.section-08__text--brand {
  margin: 0 0 32px 0;
  font-size: 32px;
  font-weight: bold;
  color: #e53935;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 1.4s ease, transform 1.4s ease;
}

.section-08__text--brand.is-inview {
  opacity: 1;
  transform: translateY(0);
}

.section-08__table-img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 0 auto 0 auto;
}

@media (max-width: 767px) {
  .section-08 {
    padding: 60px 16px 40px 16px;
  }
  .section-08__content {
    max-width: 100%;
  }
  .section-08__text--1,
  .section-08__text--2,
  .section-08__text--3,
  .section-08__text--4 {
    font-size: 15px;
  }
  .section-08__text--1 {
    display: inline;
    margin: 0 0 0 0;
  }
  .section-08__text--2 {
    display: inline;
    margin: 0 0 0 0;
  }
  .section-08__text--2::after {
    content: "";
    display: block;
    margin-bottom: 0;
  }
  .section-08__text--3 {
    margin: 0px 0 24px 0;
  }
  .section-08__text--4 {
    margin: 0 0 12px 0;
  }
  .section-08__text--highlight,
  .section-08__text--closing {
    font-size: 16px;
  }
  .section-08__text--brand {
    margin: 0 0 24px 0;
    font-size: 24px;
  }
}

/* セクション09: 黒背景・リジェマックス特徴・効果（絶対配置） */
.section-09 {
  position: relative;
  min-height: 1000px;
  background-color: #000000;
  padding: 80px 20px 500px 20px;
}

.section-09__visual {
  position: absolute;
  left: 50%;
  top: 47%;
  transform: translate(-50%, -50%);
  z-index: 0;
  display: block;
  max-width: 354px;
  width: 100%;
  height: auto;
  margin: 0 0 0 0;
  pointer-events: none;
}

.section-09__content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  min-height: 480px;
  margin: 0 auto 0 auto;
}

.section-09__upper {
  position: relative;
  min-height: 0;
}

.section-09__left {
  position: absolute;
  left: 52px;
  top: 0;
  width: 260px;
}

.section-09__center {
  display: none;
}

.section-09__right {
  position: absolute;
  right: 4px;
  top: 217px;
  width: 260px;
}

.section-09__heading {
  margin: 0 0 16px 0;
  padding: 0 0 8px 0;
  font-size: 24px;
  font-weight: bold;
  line-height: 1.4;
  color: #FFD700;
  border-bottom: 1px solid #ffe6614f;
}

.section-09__list {
  margin: 0 0 24px 0;
  padding: 0 0 0 0;
  list-style: none;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 1.4s ease, transform 1.4s ease;
}

.section-09__list.is-inview {
  opacity: 1;
  transform: translateY(0);
}

.section-09__list-block {
  position: absolute;
  top: 304px;
  left: 52px;
  width: 260px;
  margin: 0 0 0 0;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 1.4s ease, transform 1.4s ease;
}

.section-09__list-block.is-inview {
  opacity: 1;
  transform: translateY(0);
}

.section-09__list--sub {
  margin: 0 0 0 0;
}

.section-09__list li {
  margin: 0 0 8px 0;
  padding: 0 0 0 0;
  font-size: 16px;
  line-height: 1.6;
  color: #fff;
}

.section-09__effect {
  margin: 0 0 0 0;
  font-size: 16px;
  line-height: 1.8;
  color: #fff;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 1.4s ease, transform 1.4s ease;
}

.section-09__effect.is-inview {
  opacity: 1;
  transform: translateY(0);
}

.section-09__lower {
  position: absolute;
  bottom: -350px;
  left: 0;
  right: 0;
  text-align: center;
  margin: 0 0 0 0;
}

.section-09__title {
  margin: 0 0 8px 0;
  font-size: 24px;
  font-weight: bold;
  line-height: 1.4;
  color: #FFD700;
  padding: 0 0 8px 0;
  border-bottom: 1px solid #ffe6614f;
  display: inline-block;
}

.section-09__lead--price {
  margin: 0 0 8px 0;
  font-size: 20px;
  line-height: 1.8;
  color: #FFD700;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 1.4s ease, transform 1.4s ease;
}

.section-09__lead--price.is-inview {
  opacity: 1;
  transform: translateY(0);
}

.section-09__lead--experience {
  margin: 0 0 0 0;
  font-size: 16px;
  line-height: 1.8;
  color: #fff;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 1.4s ease, transform 1.4s ease;
}

.section-09__lead--experience.is-inview {
  opacity: 1;
  transform: translateY(0);
}

.section-09__lead-br {
  display: none;
}

@media (max-width: 767px) {
  .section-09 {
    padding: 40px 16px 120px 16px;
    min-height: auto;
  }
  .section-09__visual {
    max-width: 240px;
  }
  .section-09__content {
    min-height: 0;
    max-width: 100%;
  }
  .section-09__left,
  .section-09__right {
    position: static;
    width: 100%;
    max-width: 100%;
    margin: 0 0 32px 0;
  }
  .section-09__heading {
    font-size: 20px;
  }
  .section-09__list li {
    font-size: 14px;
  }
  .section-09__list-block {
    position: static;
    width: 100%;
    transform: none;
    margin: 32px 0 0 0;
  }
  .section-09__center {
    display: none;
  }
  .section-09__effect {
    font-size: 14px;
  }
  .section-09__lower {
    position: static;
    margin: 40px 0 0 0;
  }
  .section-09__title {
    font-size: 20px;
  }
  .section-09__lead--price {
    font-size: 14px;
  }
  .section-09__lead--experience {
    font-size: 14px;
  }
  .section-09__lead-br {
    display: block;
  }
}

/* セクション10 */
/* セクション10: テクスチャ背景・画像は全幅、追加コンテンツは .section-10__content で幅統一 */
.section-10 {
  position: relative;
  padding: 0 0 80px 0;
  background-color: #fff;
}

.section-10::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: url("../images/section-10/section-10-texture.png");
  background-repeat: repeat;
  background-position: 0 0;
  opacity: 0.5;
}

.section-10__img-wrap {
  position: relative;
  z-index: 1;
  transform: translateZ(0);
}

/* 画像：セクション幅いっぱい（横・縦最大・レイヤー固定でキャプションのフェード時に動かない） */
.section-10__img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  margin: 0 0 80px 0;
  vertical-align: top;
  transform: translateZ(0);
}

/* 画像の上に重ねて表示（タイトル・サブのみフェードイン・背景は動かさない） */
.section-10__caption {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  margin: 0 0 0 0;
  pointer-events: none;
  opacity: 1;
  isolation: isolate;
}

.section-10__caption-title {
  margin: 0 0 16px 0;
  font-size: 48px;
  font-weight: bold;
  line-height: 1.4;
  color: #fff;
  opacity: 0;
  transition: opacity 0.8s ease;
  will-change: opacity;
  transform: translateZ(0);
}

.section-10__caption.is-inview .section-10__caption-title {
  opacity: 1;
}

.section-10__caption-title--red {
  color: #e53935;
}

.section-10__caption-sub {
  margin: 0 0 0 0;
  font-size: 24px;
  line-height: 1.4;
  color: #fff;
  opacity: 0;
  transition: opacity 0.8s ease 0.15s;
  will-change: opacity;
  transform: translateZ(0);
}

.section-10__caption.is-inview .section-10__caption-sub {
  opacity: 1;
}

/* 追加するテキスト等はここ。他セクションと同じ max-width で幅を揃える */
.section-10__content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto 0 auto;
  padding: 0 20px 0 20px;
}

/* stepブロック：画像と同じレイアウトをコーディング（暗い背景・step1・電源立ち上げ・写真） */
.section-10__step-block {
  margin: 0 0 24px 0;
  padding: 24px 24px 32px 24px;
  background-color: #000;
  border-radius: 8px;
  text-align: center;
}

.section-10__step-label {
  margin: 0 0 8px 0;
  font-size: 24px;
  font-weight: bold;
  line-height: 1.4;
  color: #464646;
}

.section-10__step-title {
  margin: 0 0 24px 0;
  font-size: 24px;
  font-weight: bold;
  line-height: 1.4;
  color: #616161;
}

.section-10__step-img-wrap {
  text-align: center;
}

.section-10__step-img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 0 auto 0 auto;
  vertical-align: top;
  opacity: 0;
  transition: opacity 0.8s ease;
}

.section-10__step-img.is-inview {
  opacity: 1;
}

/* 各stepの間の区切り（下向き三角） */
.section-10__step-divider {
  margin: 0 0 24px 0;
  text-align: center;
}

.section-10__step-divider-img {
  display: inline-block;
  max-width: 100px;
  width: 100%;
  height: auto;
  vertical-align: top;
}

/* スタート画面 */
.section-10__start-screen {
  margin: 0 0 32px 0;
  padding: 24px 24px 32px 24px;
  background-color: #000;
  border-radius: 8px;
  text-align: center;
}

.section-10__start-screen-img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 0 auto 0 auto;
  vertical-align: top;
  opacity: 0;
  transition: opacity 0.8s ease;
}

.section-10__start-screen-img.is-inview {
  opacity: 1;
}

.section-10__start-screen-note {
  margin: 16px 0 0 0;
  font-size: 16px;
  font-weight: bold;
  line-height: 1.5;
  color: #e53935;
}

/* 操作パネル */
.section-10__panel {
  margin: 0 0 32px 0;
  padding: 24px 24px 32px 24px;
  background-color: #000;
  border-radius: 8px;
  text-align: center;
}

.section-10__panel-img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 0 auto 0 auto;
  vertical-align: top;
  opacity: 0;
  transition: opacity 0.8s ease;
}

.section-10__panel-img.is-inview {
  opacity: 1;
}

.section-10__panel-note {
  margin: 16px 0 0 0;
  font-size: 16px;
  font-weight: bold;
  line-height: 1.5;
  color: #e53935;
}

/* 照射方法・場所 */
.section-10__irradiation {
  margin: 0 0 64px 0;
  padding: 24px 24px 32px 24px;
  background-color: #000;
  border-radius: 8px;
  text-align: center;
}

.section-10__irradiation-img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 0 auto 0 auto;
  vertical-align: top;
  opacity: 0;
  transition: opacity 0.8s ease;
}

.section-10__irradiation-img.is-inview {
  opacity: 1;
}

/* section-10 ポイントバー（section-06__title-bar と同じ見た目） */
.section-10__title-bar {
  background: #00A89F;
  padding: 16px 24px 16px 24px;
  margin: 0 0 24px 0;
  display: inline-block;
}

.section-10__title-bar-heading {
  margin: 0 0 0 0;
  font-size: 20px;
  font-weight: bold;
  line-height: 1.4;
  color: #FFFFFF;
}

.section-10__title-bar-br {
  display: none;
}

/* 黒背景ブロック内の step ラベル・タイトル（視認性のため明るい色・step1 と同様左寄せ） */
.section-10__step-block .section-10__step-label,
.section-10__start-screen .section-10__step-label,
.section-10__panel .section-10__step-label,
.section-10__irradiation .section-10__step-label {
  color: #9e9e9e;
  text-align: left;
}

.section-10__step-block .section-10__step-title,
.section-10__start-screen .section-10__step-title,
.section-10__panel .section-10__step-title,
.section-10__irradiation .section-10__step-title {
  color: #e0e0e0;
  text-align: left;
}

@media (max-width: 767px) {
  .section-10 {
    padding: 0 0 40px 0;
  }
  .section-10__img {
    margin: 0 0 40px 0;
  }
  .section-10__content {
    max-width: 100%;
    padding: 0 16px 0 16px;
  }
  .section-10__caption-title {
    font-size: 28px;
  }
  .section-10__caption-sub {
    font-size: 18px;
  }
  .section-10__step-block {
    margin: 0 0 16px 0;
    padding: 16px 16px 24px 16px;
  }
  .section-10__step-label {
    font-size: 18px;
  }
  .section-10__step-title {
    margin: 0 0 16px 0;
    font-size: 18px;
  }
  .section-10__step-divider {
    margin: 0 0 16px 0;
  }
  .section-10__start-screen {
    margin: 0 0 24px 0;
    padding: 16px 16px 24px 16px;
  }
  .section-10__start-screen-note {
    font-size: 14px;
  }
  .section-10__panel {
    margin: 0 0 24px 0;
    padding: 16px 16px 24px 16px;
  }
  .section-10__panel-note {
    font-size: 14px;
  }
  .section-10__irradiation {
    margin: 0 0 40px 0;
    padding: 16px 16px 24px 16px;
  }
  .section-10__title-bar {
    padding: 12px 26px 12px 26px;
    margin: 0 0 16px 0;
  }
  .section-10__title-bar-heading {
    font-size: 18px;
  }
  .section-10__title-bar-br {
    display: block;
  }
}

/* ========================================
   section-11（お客様よりコメント・section-06 と同じ構成）
   ======================================== */
.section-11 {
  position: relative;
  padding: 80px 20px 60px 20px;
  overflow: hidden;
}

.section-11::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: url("../images/section-11/section-11-texture.png");
  background-repeat: repeat;
  background-position: 0 0;
  opacity: 0.5;
}

.section-11__inner {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto 0 auto;
  text-align: center;
}

/* タイトルバー（section-06__title-bar と同じ） */
.section-11__title-bar {
  background: #B3B3B3;
  padding: 10px 80px 10px 80px;
  margin: 0 0 48px 0;
  display: inline-block;
}

.section-11__heading {
  margin: 0 0 0 0;
  font-size: 32px;
  font-weight: bold;
  line-height: 1.4;
  color: #404040;
}

/* スライダー外枠（左右ボタン＋スライド領域） */
.section-11__slider-outer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin: 0 0 0 0;
}

/* スライドを横並びでスライドさせる領域 */
.section-11__slides-wrap {
  overflow: hidden;
  flex: 1 1 auto;
  min-width: 0;
  max-width: 640px;
}

.section-11__slides {
  display: flex;
  flex-direction: row;
  width: 300%;
  transition: transform 0.4s ease;
  will-change: transform;
}

.section-11__slides .section-11__testimonial-block {
  flex: 0 0 33.333%;
  min-width: 33.333%;
  width: 33.333%;
  box-sizing: border-box;
}

/* 各スライド内（画像・本文・年齢バー） */
.section-11__testimonial-block {
  margin: 0 0 0 0;
  padding: 0 0 0 0;
}

.section-11__nav-btn {
  position: relative;
  z-index: 10;
  width: 48px;
  height: 48px;
  padding: 0 0 0 0;
  border: none;
  background: transparent;
  cursor: pointer;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.2s ease;
  align-self: flex-start;
  margin-top: 136px;
  pointer-events: auto;
}

.section-11__nav-btn:hover {
  opacity: 0.7;
}

.section-11__nav-btn--prev {
  margin-right: -32px;
}

.section-11__nav-btn--next {
  margin-left: -32px;
}

.section-11__nav-btn .bi {
  font-size: 48px;
  color: #797777;
}

.section-11__img-wrap {
  position: relative;
  width: 100%;
  max-width: 320px;
  margin: 0 auto 24px auto;
  flex-shrink: 0;
}

.section-11__testimonial-img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  margin: 0 auto 0 auto;
  vertical-align: top;
}

/* コメント本文（中央寄せ・スライド内でははみ出さない） */
.section-11__testimonial-body {
  margin: 0 auto 24px auto;
  text-align: center;
  max-width: 100%;
  box-sizing: border-box;
}

.section-11__testimonial-text {
  margin: 0 0 8px 0;
  font-size: 16px;
  line-height: 1.6;
  color: #000;
}

.section-11__testimonial-text:last-child {
  margin: 0 0 0 0;
}

/* 属性バー（section-06__title-bar と同じ見た目） */
.section-11__demographic-bar {
  background: #B3B3B3;
  padding: 16px 24px 16px 24px;
  margin: 0 0 0 0;
  display: inline-block;
  max-width: 100%;
  box-sizing: border-box;
}

.section-11__demographic {
  margin: 0 0 0 0;
  font-size: 24px;
  font-weight: bold;
  line-height: 1.4;
  color: #404040;
}

@media (max-width: 767px) {
  .section-11 {
    padding: 40px 16px 40px 16px;
  }
  .section-11__inner {
    max-width: 100%;
  }
  .section-11__title-bar {
    padding: 8px 16px 8px 16px;
    margin: 0 0 24px 0;
  }
  .section-11__heading {
    font-size: 24px;
  }
  .section-11__slides-wrap {
    max-width: 320px;
  }
  .section-11__testimonial-body {
    margin: 0 auto 16px auto;
    max-width: 100%;
  }
  .section-11__nav-btn {
    width: 40px;
    height: 40px;
    margin-top: 80px;
  }
  .section-11__nav-btn--prev {
    margin-right: -16px;
  }
  .section-11__nav-btn--next {
    margin-left: -16px;
  }
  .section-11__nav-btn .bi {
    font-size: 40px;
  }
  .section-11__img-wrap {
    max-width: 200px;
    margin: 0 auto 16px auto;
  }
  .section-11__testimonial-text {
    font-size: 13px;
    margin: 0 0 6px 0;
  }
  .section-11__demographic-bar {
    padding: 12px 16px 12px 16px;
  }
  .section-11__demographic {
    font-size: 18px;
  }
}

/* SP時のみ改行（section-11 コメントなど） */
.sp-br {
  display: none;
}
@media (max-width: 767px) {
  .sp-br {
    display: block;
  }
}

/* セクション12: section-12-bg.png を背景 */
.section-12 {
  position: relative;
  padding: 80px 20px 80px 20px;
  background-image: url("../images/section-12/section-12-bg.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.section-12__inner {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto 0 auto;
  text-align: center;
}

.section-12__heading {
  margin: 0 0 48px 0;
  padding: 0 0 0 0;
  font-size: 32px;
  font-weight: bold;
  line-height: 1.4;
  color: #fff;
}

.section-12__heading-line {
  display: block;
  margin: 0 0 0 0;
}

.section-12__phone-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin: 0 0 24px 0;
}

.section-12__badge {
  display: inline-block;
  padding: 8px 16px 8px 16px;
  background-color: #e53935;
  font-size: 16px;
  font-weight: bold;
  line-height: 1.4;
  color: #fff;
}

.section-12__phone-label {
  margin: 0 0 0 0;
  font-size: 16px;
  line-height: 1.4;
  color: #fff;
}

.section-12__tel-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 16px 32px 16px 32px;
  margin: 0 0 48px 0;
  background-color: #fff;
  border: 1px solid #bdbdbd;
  border-radius: 8px;
  text-decoration: none;
  color: #000;
  font-size: 24px;
  font-weight: bold;
  line-height: 1.4;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.section-12__tel-link:hover {
  background-color: #f5f5f5;
  border-color: #9e9e9e;
}

.section-12__tel-link .bi-telephone-outbound-fill {
  font-size: 24px;
  color: #000;
}

.section-12__tel-text {
  margin: 0 0 0 0;
}

.section-12__tel-num {
  margin: 0 0 0 0;
}

.section-12__hours {
  margin: 0 0 48px 0;
  padding: 0 0 0 0;
}

.section-12__hours-line {
  margin: 0 0 8px 0;
  font-size: 16px;
  line-height: 1.4;
  color: #fff;
}

.section-12__hours-line:last-child {
  margin: 0 0 0 0;
}

.section-12__form-heading {
  margin: 0 0 32px 0;
  font-size: 24px;
  line-height: 1.4;
  color: #fff;
}

.section-12__form-buttons {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: center;
  gap: 24px;
  margin: 0 0 0 0;
}

.section-12__form-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex: 1 1 280px;
  max-width: 320px;
  min-width: 240px;
  padding: 24px 24px 24px 24px;
  background-color: transparent;
  border: 1px solid #fff;
  border-radius: 8px;
  text-decoration: none;
  color: #fff;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.section-12__form-btn:hover {
  background-color: rgba(255, 255, 255, 0.08);
  border-color: #e0e0e0;
}

.section-12__form-btn-caption {
  display: block;
  margin: 0 0 0 0;
  font-size: 14px;
  line-height: 1.4;
  color: #d5d5d5;
}

.section-12__form-btn-label {
  display: block;
  margin: 0 0 0 0;
  font-size: 24px;
  font-weight: bold;
  line-height: 1.4;
}

.section-12__form-btn-text {
  display: block;
  margin: 0 0 0 0;
  font-size: 16px;
  line-height: 1.4;
  color: #d5d5d5;
}

@media (max-width: 767px) {
  .section-12 {
    min-height: 100vh;
    padding: 24px 16px 24px 16px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-sizing: border-box;
  }
  .section-12__inner {
    max-width: 100%;
  }
  .section-12__heading {
    margin: 0 0 24px 0;
    font-size: 24px;
  }
  .section-12__phone-row {
    gap: 8px;
    margin: 0 0 24px 0;
  }
  .section-12__badge {
    padding: 6px 12px 6px 12px;
    font-size: 14px;
  }
  .section-12__phone-label {
    font-size: 14px;
  }
  .section-12__tel-link {
    padding: 12px 24px 12px 24px;
    margin: 0 0 24px 0;
    font-size: 20px;
    gap: 12px;
  }
  .section-12__tel-link .bi-telephone-outbound-fill {
    font-size: 20px;
  }
  .section-12__hours {
    margin: 0 0 24px 0;
  }
  .section-12__hours-line {
    margin: 0 0 4px 0;
    font-size: 14px;
  }
  .section-12__form-heading {
    margin: 0 0 24px 0;
    font-size: 18px;
  }
  .section-12__form-buttons {
    gap: 16px;
  }
  .section-12__form-btn {
    padding: 16px 16px 16px 16px;
    min-width: 0;
    max-width: 100%;
  }
  .section-12__form-btn-caption {
    font-size: 12px;
  }
  .section-12__form-btn-label {
    font-size: 18px;
  }
  .section-12__form-btn-text {
    font-size: 14px;
  }
}
