@charset "UTF-8";
/**
 * 根管治療LP専用ベース設定
 *
 * rem換算の除数は 16（標準）のまま。
 * 理由: root-canal-lp のモバイルデザイン基準幅は 750px。
 *       om (max-width: 767.499px) の html font-size を math.div(16, 7.5)vw に上書き。
 *       → 375px 実機: 1rem = 8px、750px: 1rem = 16px（デザイン幅でピッタリ一致）
 *       :has() の詳細度が高いため xs 範囲（≤375px）も自動的に上書きされる。
 *       rem(16) → 1rem → PC: 16px、375px 実機: 8px（750px→375px の 50%スケール）
 *
 * 使用範囲: root-canal-lp の SCSS ファイルのみ
 *           @use "../../base/base" as *; → @use "../../base/base-root-canal" as *; に差し替え
 */
/* rem換算関数 */
/* Zen Maru Gothic ローカルフォント定義 */
@font-face {
  font-family: "Zen Maru Gothic";
  src: url("../../fonts/zenmaru/zen-maru-gothic-v19-japanese_latin-300.woff2") format("woff2");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Zen Maru Gothic";
  src: url("../../fonts/zenmaru/zen-maru-gothic-v19-japanese_latin-regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Zen Maru Gothic";
  src: url("../../fonts/zenmaru/zen-maru-gothic-v19-japanese_latin-500.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Zen Maru Gothic";
  src: url("../../fonts/zenmaru/zen-maru-gothic-v19-japanese_latin-700.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Zen Maru Gothic";
  src: url("../../fonts/zenmaru/zen-maru-gothic-v19-japanese_latin-900.woff2") format("woff2");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
/* にくまるフォント ローカルフォント定義 */
@font-face {
  font-family: "Nikumaru";
  src: url("../../fonts/nikumaru/07にくまるフォント.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
/* Jost Black Italic ローカルフォント定義 */
@font-face {
  font-family: "Jost";
  src: url("../../fonts/jost/Jost-BlackItalic.woff2") format("woff2");
  font-weight: 900;
  font-style: italic;
  font-display: swap;
}
/* Jost Medium ローカルフォント定義 */
@font-face {
  font-family: "Jost";
  src: url("../../fonts/jost/Jost-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
/* Jost Bold ローカルフォント定義 */
@font-face {
  font-family: "Jost";
  src: url("../../fonts/jost/Jost-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
/* Noto Sans Condensed Black ローカルフォント定義 */
@font-face {
  font-family: "Noto Sans Condensed";
  src: url("../../fonts/notosans/NotoSansCondensed-Black.woff2") format("woff2");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
/* Noto Sans Condensed Bold ローカルフォント定義 */
@font-face {
  font-family: "Noto Sans Condensed";
  src: url("../../fonts/notosans/NotoSansCondensed-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
/* Oswald ローカルフォント定義 */
@font-face {
  font-family: "Oswald";
  src: url("../../fonts/oswald/Oswald-Light.woff2") format("woff2");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Oswald";
  src: url("../../fonts/oswald/Oswald-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Oswald";
  src: url("../../fonts/oswald/Oswald-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Oswald";
  src: url("../../fonts/oswald/Oswald-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
/* カラーテーマ変数 */
:root {
  /* メインカラー */
  --primary-color: #4a90e2;
  --secondary-color: #50e3c2;
  --text-color: #253651;
  --text-secondary: #444746;
  --text-third: #82cccf;
  --new-text: #3c3c3e;
  --new-peach: #e3727f;
  --btn-blue: #2094b8;
  --btn-orange: #faaf3b;
  --bg-peach: #f78e99;
  --bg-light-peach: #feeaeb;
  --bg-light-peach2: #fee9e5;
  /* グラデーション用の色 */
  --gradient-start: #4B9BDE;
  --gradient-end: #50D8C7;
  /* 状態色 */
  --error-color: #dc3545;
  --error-bg: #f8d7da;
  --error-border: #f5c6cb;
  --success-color: #155724;
  --success-bg: #d4edda;
  --success-border: #c3e6cb;
}

/* HTML5リセット */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

nav ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

@media only screen and (max-width: 375px) {
  html {
    font-size: 4.2666666667vw !important;
  }
}
@media only screen and (min-width: 768px) {
  html {
    font-size: 1.1111111111vw !important;
  }
}
@media only screen and (min-width: 1441px) {
  html {
    font-size: 16px !important;
  }
}
@media only screen and (min-width: 1600px) {
  html {
    font: size 16px !important;
  }
}

@media only screen and (max-width: 767.499px) {
  html:has(body.page-template-lpceramic-lp-php) {
    font-size: 2.1333333333vw !important;
  }
}

body {
  color: #3c3c3e;
  font-family: "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "Noto Sans JP", sans-serif;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
  -moz-osx-font-smoothing: grayscale;
  letter-spacing: 0;
  font-weight: 400;
  line-height: 1.6;
  background-color: var(--bg-color);
}

* {
  line-height: inherit;
}

picture {
  display: block;
}

img {
  height: auto;
  width: 100%;
  max-width: 100%;
  vertical-align: middle;
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
  text-decoration: none;
  color: inherit;
}
@media (hover: hover) {
  a.btn:hover, a.btn-reserve:hover, a.btn-tel:hover, a.btn-web:hover, a.btn-profile:hover, a.fv-reserve-btn:hover, a.common-btn:hover {
    opacity: 1 !important;
  }
}
@media (hover: none) {
  a.btn:active, a.btn-reserve:active, a.btn-tel:active, a.btn-web:active, a.btn-profile:active, a.fv-reserve-btn:active, a.common-btn:active {
    opacity: 1 !important;
  }
}

@media (hover: hover) {
  .site-header .nav-item a:hover,
  .global-nav .nav-item a:hover,
  .nav-list .nav-item a:hover {
    opacity: 1 !important;
  }
}
@media (hover: none) {
  .site-header .nav-item a:active,
  .global-nav .nav-item a:active,
  .nav-list .nav-item a:active {
    opacity: 1 !important;
  }
}

@media (hover: hover) {
  .blog-item-link:hover {
    opacity: 1 !important;
  }
}
@media (hover: none) {
  .blog-item-link:active {
    opacity: 1 !important;
  }
}

@media (hover: hover) {
  .news-thumbnail a:hover {
    opacity: 0.8 !important;
  }
}
@media (hover: none) {
  .news-thumbnail a:active {
    opacity: 0.8 !important;
  }
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: inherit;
  color: var(--text-color);
}

p {
  color: var(--text-color);
}

:where(.invisalign-lp-main) h1,
:where(.invisalign-lp-main) h2,
:where(.invisalign-lp-main) h3,
:where(.invisalign-lp-main) h4,
:where(.invisalign-lp-main) h5,
:where(.invisalign-lp-main) h6 {
  color: var(--new-text);
}
:where(.invisalign-lp-main) p {
  color: var(--new-text);
}
:where(.invisalign-lp-main) span {
  color: inherit;
}

ul,
ol {
  list-style: none;
}

span {
  color: inherit;
}

@media only screen and (min-width: 768px) {
  .only-sp {
    display: none !important;
  }
}

@media only screen and (max-width: 767.499px) {
  .only-pc {
    display: none !important;
  }
}

.nowrap {
  white-space: nowrap;
}

.en {
  font-family: "Cormorant Infant", serif;
  /* 英字用フォントを変更 */
}

.font-sofia-sans-condensed {
  font-family: "Sofia Sans Condensed", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "Noto Sans JP", sans-serif;
}

/* 管理画面用のフォント設定を維持するためのクラス */
.admin-area {
  font-family: "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "Noto Sans JP", sans-serif;
}

/* Zen Maru Gothic切り替え用設定（ローカルフォント） */
/* 通常フォント → Zen Maru Gothic への切り替え */
.section-with-zen-maru ~ *,
.section-with-zen-maru {
  font-family: "Zen Maru Gothic", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "Noto Sans JP", sans-serif;
}
.section-with-zen-maru ~ * h1,
.section-with-zen-maru ~ * h2,
.section-with-zen-maru ~ * h3,
.section-with-zen-maru ~ * h4,
.section-with-zen-maru ~ * h5,
.section-with-zen-maru ~ * h6,
.section-with-zen-maru ~ * p,
.section-with-zen-maru ~ * span,
.section-with-zen-maru ~ * div,
.section-with-zen-maru ~ * a,
.section-with-zen-maru ~ * li,
.section-with-zen-maru h1,
.section-with-zen-maru h2,
.section-with-zen-maru h3,
.section-with-zen-maru h4,
.section-with-zen-maru h5,
.section-with-zen-maru h6,
.section-with-zen-maru p,
.section-with-zen-maru span,
.section-with-zen-maru div,
.section-with-zen-maru a,
.section-with-zen-maru li {
  font-family: "Zen Maru Gothic", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "Noto Sans JP", sans-serif;
}
.section-with-zen-maru ~ * *,
.section-with-zen-maru ~ * *::before,
.section-with-zen-maru ~ * *::after,
.section-with-zen-maru *,
.section-with-zen-maru *::before,
.section-with-zen-maru *::after {
  font-family: inherit;
}

/* Zen Maru Gothic → 通常フォント への切り替え（復帰） */
.section-back-to-normal ~ *,
.section-back-to-normal {
  font-family: "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "Noto Sans JP", sans-serif;
}
.section-back-to-normal ~ * h1,
.section-back-to-normal ~ * h2,
.section-back-to-normal ~ * h3,
.section-back-to-normal ~ * h4,
.section-back-to-normal ~ * h5,
.section-back-to-normal ~ * h6,
.section-back-to-normal ~ * p,
.section-back-to-normal ~ * span,
.section-back-to-normal ~ * div,
.section-back-to-normal ~ * a,
.section-back-to-normal ~ * li,
.section-back-to-normal h1,
.section-back-to-normal h2,
.section-back-to-normal h3,
.section-back-to-normal h4,
.section-back-to-normal h5,
.section-back-to-normal h6,
.section-back-to-normal p,
.section-back-to-normal span,
.section-back-to-normal div,
.section-back-to-normal a,
.section-back-to-normal li {
  font-family: "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "Noto Sans JP", sans-serif;
}
.section-back-to-normal ~ * *,
.section-back-to-normal ~ * *::before,
.section-back-to-normal ~ * *::after,
.section-back-to-normal *,
.section-back-to-normal *::before,
.section-back-to-normal *::after {
  font-family: inherit;
}

/* マーカー要素自体は非表示 */
/*.section-with-zen-maru,
.section-back-to-normal {
  display: none;
}*/
@media only screen and (max-width: 767.499px) {
  html:has(body.page-template-lproot-canal-lp-php) {
    font-size: 2.1333333333vw !important;
  }
}

/**
 * LINE CTA セクションスタイル
 */
.line-cta {
  position: relative;
  padding-top: 4rem;
  height: 33.5rem;
  background-image: linear-gradient(to right, #87CEEB 0.0625rem, transparent 0.0625rem), linear-gradient(to bottom, #87CEEB 0.0625rem, transparent 0.0625rem);
  background-size: 3.333rem 3.333rem;
  background-color: #f8f9fa;
}
@media only screen and (max-width: 767.499px) {
  .line-cta {
    padding: 2.3rem 0 2.5rem;
    height: auto;
    background-size: 2rem 2rem;
  }
}
.line-cta__container {
  max-width: 75rem;
  margin: 0 auto;
  padding: 0 1.25rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media only screen and (max-width: 767.499px) {
  .line-cta__container {
    padding: 0 0.75rem;
  }
}
.line-cta__main-box {
  background: #c8ecf7;
  border-radius: 1.5rem;
  padding: 2.3rem;
  max-width: 65rem;
  width: 100%;
  position: relative;
  height: 25.5rem;
}
@media only screen and (max-width: 767.499px) {
  .line-cta__main-box {
    padding: 1.5rem 0.5rem 2.3rem;
    border-radius: 1rem;
    height: auto;
  }
}
.line-cta__main-box::before {
  content: "";
  position: absolute;
  top: 0.7rem;
  left: 0.7rem;
  right: 0.7rem;
  bottom: 0.7rem;
  border: 0.25rem solid var(--btn-blue);
  border-radius: 1rem;
  pointer-events: none;
}
@media only screen and (max-width: 767.499px) {
  .line-cta__main-box::before {
    top: 0.25rem;
    left: 0.25rem;
    right: 0.25rem;
    bottom: 0.25rem;
    border-radius: 0.625rem;
    border: 0.125rem solid var(--btn-blue);
  }
}
.line-cta__title-wrapper {
  text-align: center;
  margin-bottom: 3.2rem;
}
@media only screen and (max-width: 767.499px) {
  .line-cta__title-wrapper {
    margin-bottom: 1.45rem;
  }
}
.line-cta__title {
  font-size: 2.2rem;
  letter-spacing: 0.07em;
  font-weight: 700;
  color: var(--text-color);
  margin: 0;
  background: #fff;
  padding: 0.2rem 0;
  width: 29rem;
  border-radius: 2rem;
  display: inline-block;
  padding-left: 0.5rem;
  box-shadow: 0.125rem 0.125rem 0.4rem rgba(0, 0, 0, 0.3);
}
@media only screen and (max-width: 767.499px) {
  .line-cta__title {
    font-size: 1.6rem;
    padding: 0.1rem 0;
    letter-spacing: -0.01em;
    width: 100%;
    box-shadow: 0.125rem 0.125rem 0.25rem rgba(0, 0, 0, 0.3);
  }
}
.line-cta__title .small {
  font-size: 1.8rem;
}
@media only screen and (max-width: 767.499px) {
  .line-cta__title .small {
    font-size: 1.4rem;
  }
}
.line-cta__title .large {
  font-weight: 400;
  color: var(--btn-blue);
  text-shadow: 0.0625rem 0 0 var(--btn-blue), -0.0625rem 0 0 var(--btn-blue), 0 0.0625rem 0 var(--btn-blue), 0 -0.0625rem 0 var(--btn-blue), 0.0625rem 0.0625rem 0 var(--btn-blue), -0.0625rem 0.0625rem 0 var(--btn-blue), 0.0625rem -0.0625rem 0 var(--btn-blue), -0.0625rem -0.0625rem 0 var(--btn-blue);
}
@media only screen and (max-width: 767.499px) {
  .line-cta__title .large {
    font-size: 1.6rem;
    text-shadow: 0.03125rem 0 0 var(--btn-blue), -0.03125rem 0 0 var(--btn-blue), 0 0.03125rem 0 var(--btn-blue), 0 -0.03125rem 0 var(--btn-blue), 0.03125rem 0.03125rem 0 var(--btn-blue), -0.03125rem 0.03125rem 0 var(--btn-blue), 0.03125rem -0.03125rem 0 var(--btn-blue), -0.03125rem -0.03125rem 0 var(--btn-blue);
  }
}
.line-cta__buttons {
  display: flex;
  justify-content: center;
  gap: 5rem;
}
@media only screen and (max-width: 767.499px) {
  .line-cta__buttons {
    flex-direction: column;
    gap: 1rem;
    max-width: 16.5rem;
    margin: auto;
  }
}
.line-cta__line-section {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}
@media only screen and (max-width: 767.499px) {
  .line-cta__line-section {
    margin-top: 1.5rem;
    max-width: 16.5rem;
    margin: 1rem auto 0;
  }
}
.line-cta__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.875rem;
  line-height: 1.3;
  transition: all 0.3s ease;
  min-height: 3.125rem;
  border-radius: 0.25rem;
}
@media only screen and (max-width: 767.499px) {
  .line-cta__btn {
    padding: 0.375rem 0.5rem;
    font-size: 0.65rem;
    min-height: 2.5rem;
  }
}
.line-cta__btn--tel {
  background: var(--bg-peach);
  color: #fff;
  gap: 0.7rem;
  width: 26rem;
  height: 5.3rem;
  border: solid 0.1875rem #fff;
  box-sizing: border-box;
  box-shadow: 0.125rem 0.125rem 0.4rem rgba(0, 0, 0, 0.3);
}
@media only screen and (max-width: 767.499px) {
  .line-cta__btn--tel {
    width: 93%;
    margin: auto;
    height: 3.2rem;
    gap: 0.5rem;
    box-shadow: 0.125rem 0.125rem 0.25rem rgba(0, 0, 0, 0.3);
  }
}
@media (hover: hover) {
  .line-cta__btn--tel:hover {
    background: #fff;
    color: var(--bg-peach);
  }
}
@media (hover: none) {
  .line-cta__btn--tel:active {
    background: #fff;
    color: var(--bg-peach);
  }
}
.line-cta__btn--tel .line-cta__btn-label {
  font-size: 1.2rem;
  font-weight: 400;
  letter-spacing: 0.05em;
}
@media only screen and (max-width: 767.499px) {
  .line-cta__btn--tel .line-cta__btn-label {
    font-size: 0.75rem;
  }
}
.line-cta__btn--tel .line-cta__btn-number {
  font-size: 2rem;
  font-weight: 400;
  letter-spacing: 0.05em;
}
@media only screen and (max-width: 767.499px) {
  .line-cta__btn--tel .line-cta__btn-number {
    font-size: 1rem;
    padding-top: 0.05rem;
  }
}
.line-cta__btn--web {
  background: var(--btn-blue);
  color: #fff;
  width: 26rem;
  height: 5.3rem;
  border: solid 0.1875rem #fff;
  box-sizing: border-box;
  box-shadow: 0.125rem 0.125rem 0.4rem rgba(0, 0, 0, 0.3);
}
@media only screen and (max-width: 767.499px) {
  .line-cta__btn--web {
    width: 93%;
    margin: auto;
    height: 3.2rem;
    box-shadow: 0.125rem 0.125rem 0.25rem rgba(0, 0, 0, 0.3);
  }
}
@media (hover: hover) {
  .line-cta__btn--web:hover {
    background: #fff;
    color: var(--btn-blue);
  }
}
@media (hover: none) {
  .line-cta__btn--web:active {
    background: #fff;
    color: var(--btn-blue);
  }
}
.line-cta__btn--web .line-cta__btn-text {
  text-align: center;
  font-size: 1.7rem;
  font-weight: 400;
  letter-spacing: 0.04em;
}
@media only screen and (max-width: 767.499px) {
  .line-cta__btn--web .line-cta__btn-text {
    font-size: 1rem;
  }
}
.line-cta__btn--line {
  background: #fff;
  color: #10773c;
  padding-top: 0.2rem;
  gap: 1rem;
  width: 26rem;
  height: 5.3rem;
  border: solid 0.0625rem #10773c;
  box-sizing: border-box;
  box-shadow: 0.125rem 0.125rem 0.4rem rgba(0, 0, 0, 0.3);
}
@media (hover: hover) {
  .line-cta__btn--line:hover {
    background: #10773c;
    color: #fff;
  }
}
@media (hover: none) {
  .line-cta__btn--line:active {
    background: #10773c;
    color: #fff;
  }
}
@media only screen and (max-width: 767.499px) {
  .line-cta__btn--line {
    width: 93%;
    height: 3.2rem;
    box-shadow: 0.125rem 0.125rem 0.25rem rgba(0, 0, 0, 0.3);
    padding: 0;
  }
}
.line-cta__btn--line .line-cta__btn-icon {
  width: 3.55rem;
  height: auto;
}
@media only screen and (max-width: 767.499px) {
  .line-cta__btn--line .line-cta__btn-icon {
    width: 1.8rem;
  }
}
.line-cta__btn--line .line-cta__btn-text {
  text-align: center;
  font-size: 1.7rem;
  font-weight: 500;
  letter-spacing: 0.04em;
}
@media only screen and (max-width: 767.499px) {
  .line-cta__btn--line .line-cta__btn-text {
    font-size: 1rem;
  }
}

.invisalign-lp-main .line-cta {
  background-image: url("../../../../lp/assets/img/common/background-cta.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #fdf8f3;
  height: 31rem;
}
@media only screen and (max-width: 767.499px) {
  .invisalign-lp-main .line-cta {
    height: auto;
  }
}
.invisalign-lp-main .line-cta__main-box {
  background-image: url("../../../../lp/assets/img/common/bg-colmun-cta.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #fce8ea;
  border: solid 0.25rem #e89ca5;
  max-width: 63rem;
  padding: 1.5rem 2.3rem;
  height: 24rem;
}
.invisalign-lp-main .line-cta__main-box::before {
  display: none;
}
@media only screen and (max-width: 767.499px) {
  .invisalign-lp-main .line-cta__main-box {
    padding: 1.5rem 0.75rem;
    height: auto;
  }
}
.invisalign-lp-main .line-cta__title {
  color: var(--new-text);
}
.invisalign-lp-main .line-cta__title .large {
  color: #e3727f;
  text-shadow: 0.0625rem 0 0 #e3727f, -0.0625rem 0 0 #e3727f, 0 0.0625rem 0 #e3727f, 0 -0.0625rem 0 #e3727f, 0.0625rem 0.0625rem 0 #e3727f, -0.0625rem 0.0625rem 0 #e3727f, 0.0625rem -0.0625rem 0 #e3727f, -0.0625rem -0.0625rem 0 #e3727f;
}
@media only screen and (max-width: 767.499px) {
  .invisalign-lp-main .line-cta__title .large {
    text-shadow: 0.03125rem 0 0 #e3727f, -0.03125rem 0 0 #e3727f, 0 0.03125rem 0 #e3727f, 0 -0.03125rem 0 #e3727f, 0.03125rem 0.03125rem 0 #e3727f, -0.03125rem 0.03125rem 0 #e3727f, 0.03125rem -0.03125rem 0 #e3727f, -0.03125rem -0.03125rem 0 #e3727f;
  }
}
.invisalign-lp-main .line-cta__btn--tel {
  background: #e89ca5;
  border-color: #fff;
}
.invisalign-lp-main .line-cta__btn--tel .line-cta__btn-label,
.invisalign-lp-main .line-cta__btn--tel .line-cta__btn-number {
  color: #fff;
}
@media (hover: hover) {
  .invisalign-lp-main .line-cta__btn--tel:hover {
    background: #fff;
  }
  .invisalign-lp-main .line-cta__btn--tel:hover .line-cta__btn-label,
  .invisalign-lp-main .line-cta__btn--tel:hover .line-cta__btn-number {
    color: #e89ca5;
  }
}
@media (hover: none) {
  .invisalign-lp-main .line-cta__btn--tel:active {
    background: #fff;
  }
  .invisalign-lp-main .line-cta__btn--tel:active .line-cta__btn-label,
  .invisalign-lp-main .line-cta__btn--tel:active .line-cta__btn-number {
    color: #e89ca5;
  }
}
.invisalign-lp-main .line-cta__btn--web {
  background: #9d6873;
  border-color: #9d6873;
}
@media only screen and (max-width: 767.499px) {
  .invisalign-lp-main .line-cta__btn--web {
    border-color: #fff;
  }
}
@media (hover: hover) {
  .invisalign-lp-main .line-cta__btn--web:hover {
    background: #fff;
    color: #9d6873;
  }
}
@media only screen and (hover: hover) and (max-width: 767.499px) {
  .invisalign-lp-main .line-cta__btn--web:hover {
    border-color: #9d6873;
  }
}
@media (hover: none) {
  .invisalign-lp-main .line-cta__btn--web:active {
    background: #fff;
    color: #9d6873;
  }
}
@media only screen and (hover: none) and (max-width: 767.499px) {
  .invisalign-lp-main .line-cta__btn--web:active {
    border-color: #9d6873;
  }
}
@media (hover: hover) {
  .invisalign-lp-main .line-cta--line:hover {
    background: #10773c;
    color: #fff;
  }
}
@media (hover: none) {
  .invisalign-lp-main .line-cta--line:active {
    background: #10773c;
    color: #fff;
  }
}

/**
 * Root Canal CTA セクション
 * モバイルファースト: ベース = モバイル（750px デザイン基準）
 * _ceramic-cta.scss を移植。rem値はすべて ×2（ceramic 除数8 → root-canal 除数16）
 */
.root-canal-cta {
  width: 100%;
  background-color: #0B2E5F;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 50.5rem;
}
@media only screen and (min-width: 768px) {
  .root-canal-cta {
    min-height: 30.625rem;
    padding: 1rem 0;
  }
}
.root-canal-cta__container {
  width: 100%;
  padding: 0 1.3125rem;
  max-width: 44.1875rem;
}
@media only screen and (min-width: 768px) {
  .root-canal-cta__container {
    max-width: 70rem;
    padding: 0;
    margin: 0 auto;
  }
}
.root-canal-cta__main-box {
  width: 100%;
  margin: 0 auto;
  background-color: #fff;
  border-radius: 1.8125rem;
  outline: 0.25rem solid #0B2E5F;
  outline-offset: -0.25rem;
  box-shadow: 0 0 0 0.8125rem #fff;
  box-sizing: border-box;
  min-height: 38.375rem;
  padding: 0.8125rem 1rem 0;
}
@media only screen and (min-width: 768px) {
  .root-canal-cta__main-box {
    border-radius: 0.625rem;
    max-width: 100%;
    min-height: auto;
    height: 24.875rem;
    padding: 1.5625rem 7.125rem 0 6.3125rem;
  }
}
.root-canal-cta__title-wrap {
  width: 100%;
  background-color: #AE8D4F;
  box-shadow: 0 0.4375rem 0.25rem rgba(5, 79, 102, 0.19);
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 2.375rem auto 0;
  max-width: 41rem;
  height: 5.4375rem;
  border-radius: 2.71875rem;
}
@media only screen and (min-width: 768px) {
  .root-canal-cta__title-wrap {
    margin: 0.3125rem auto 0;
    max-width: 41.0625rem;
    height: 5.4375rem;
    border-radius: 3.125rem;
  }
}
.root-canal-cta__title {
  color: #fff;
  text-align: center;
  font-style: normal;
  font-weight: 700;
  font-size: 2.11125rem;
  line-height: 2.11125rem;
  letter-spacing: 0.1055625rem;
}
.root-canal-cta__title .particle {
  font-size: 1.759375rem;
  line-height: 1.759375rem;
  letter-spacing: 0.0879375rem;
}
.root-canal-cta__title .reserve {
  font-size: 2.0205625rem;
  line-height: 2.0205625rem;
  letter-spacing: 0.101rem;
}
@media only screen and (min-width: 768px) {
  .root-canal-cta__title .reserve {
    font-size: 2.3668125rem;
    line-height: 2.3668125rem;
    letter-spacing: 0.1183125rem;
  }
}
.root-canal-cta__title .ending {
  font-size: 1.6838125rem;
  line-height: 1.6838125rem;
  letter-spacing: 0.0841875rem;
}
@media only screen and (min-width: 768px) {
  .root-canal-cta__title .ending {
    font-size: 1.9723125rem;
    line-height: 1.9723125rem;
    letter-spacing: 0.098625rem;
  }
}
.root-canal-cta__buttons {
  margin-top: 2.5875rem;
  display: flex;
  flex-direction: column;
  gap: 2.58125rem;
  align-items: center;
}
@media only screen and (min-width: 768px) {
  .root-canal-cta__buttons {
    margin-top: 3.28875rem;
    flex-direction: row;
    justify-content: space-between;
    gap: 3.5rem;
  }
}
.root-canal-cta__btn {
  display: flex;
  align-items: center;
  text-decoration: none;
  box-sizing: border-box;
  border: 0.1875rem solid #fff;
  box-shadow: 0 0.4375rem 0.25rem rgba(5, 79, 102, 0.19);
  color: #fff;
  transition: all 0.3s ease;
}
.root-canal-cta__btn--tel {
  background-color: #C6ECF4;
  color: #0B2E5F;
  width: 100%;
  max-width: 29.25rem;
  height: 6.125rem;
  justify-content: space-between;
  padding-left: 0.7375rem;
}
@media only screen and (min-width: 768px) {
  .root-canal-cta__btn--tel {
    max-width: 25.8125rem;
    height: 5.4375rem;
  }
}
@media (hover: hover) {
  .root-canal-cta__btn--tel:hover {
    background-color: #fff;
    border-color: #fff;
    box-shadow: inset 0 0 0 0.0625rem #C6ECF4, 0 0.4375rem 0.25rem rgba(5, 79, 102, 0.19);
  }
}
@media (hover: none) {
  .root-canal-cta__btn--tel:active {
    background-color: #fff;
    border-color: #fff;
    box-shadow: inset 0 0 0 0.0625rem #C6ECF4, 0 0.4375rem 0.25rem rgba(5, 79, 102, 0.19);
  }
}
.root-canal-cta__btn--tel .root-canal-cta__btn-label {
  font-style: normal;
  font-weight: 500;
  font-size: 1.375rem;
  line-height: 1.213625rem;
  letter-spacing: 0.0606875rem;
}
.root-canal-cta__btn--tel .root-canal-cta__btn-number {
  font-style: normal;
  font-weight: 500;
  font-size: 2.375rem;
  line-height: 2rem;
  letter-spacing: 0.1rem;
  padding-right: 0.8125rem;
}
@media only screen and (min-width: 768px) {
  .root-canal-cta__btn--tel .root-canal-cta__btn-number {
    font-size: 1.8125rem;
    line-height: 2rem;
  }
}
.root-canal-cta__btn--web {
  background-color: #8A9AB6;
  justify-content: center;
  width: 100%;
  max-width: 29.25rem;
  height: 6.125rem;
}
@media only screen and (min-width: 768px) {
  .root-canal-cta__btn--web {
    max-width: 25.8125rem;
    height: 5.4375rem;
  }
}
@media (hover: hover) {
  .root-canal-cta__btn--web:hover {
    background-color: #fff;
    color: #8A9AB6;
    border-color: #fff;
    box-shadow: inset 0 0 0 0.0625rem #8A9AB6, 0 0.4375rem 0.25rem rgba(5, 79, 102, 0.19);
  }
}
@media (hover: none) {
  .root-canal-cta__btn--web:active {
    background-color: #fff;
    color: #8A9AB6;
    border-color: #fff;
    box-shadow: inset 0 0 0 0.0625rem #8A9AB6, 0 0.4375rem 0.25rem rgba(5, 79, 102, 0.19);
  }
}
.root-canal-cta__btn--web .root-canal-cta__btn-text {
  font-style: normal;
  font-weight: 500;
  text-align: center;
  font-size: 1.8845rem;
  line-height: 1.8845rem;
  letter-spacing: 0.09425rem;
}
@media only screen and (min-width: 768px) {
  .root-canal-cta__btn--web .root-canal-cta__btn-text {
    font-size: 1.66025rem;
    line-height: 1.66025rem;
    letter-spacing: 0.083rem;
  }
}
.root-canal-cta__btn--line {
  margin: 2.67875rem auto 0;
  background-color: #fff;
  color: #10773C;
  border: 0.0625rem solid #10773C;
  justify-content: center;
  gap: 1rem;
  width: 29rem;
  height: 5.875rem;
}
@media only screen and (min-width: 768px) {
  .root-canal-cta__btn--line {
    margin-top: 2.260625rem;
    width: 25.5625rem;
    height: 5.1875rem;
  }
}
@media (hover: hover) {
  .root-canal-cta__btn--line:hover {
    background-color: #10773C;
    color: #fff;
  }
}
@media (hover: none) {
  .root-canal-cta__btn--line:active {
    background-color: #10773C;
    color: #fff;
  }
}
.root-canal-cta__btn--line .root-canal-cta__btn-icon {
  display: block;
  width: 4rem;
  height: auto;
}
.root-canal-cta__btn--line .root-canal-cta__btn-text {
  font-style: normal;
  font-weight: 500;
  font-size: 1.8125rem;
  line-height: 2.25rem;
  letter-spacing: 0.1rem;
}
@media only screen and (min-width: 768px) {
  .root-canal-cta__btn--line .root-canal-cta__btn-text {
    font-size: 1.5625rem;
    line-height: 1.5625rem;
    letter-spacing: 0.075rem;
  }
}

/**
 * ヘッダースタイル（根管治療LP）
 * モバイルファースト: ベース = モバイル（750px デザイン基準）
 * @include media(m) で PC スタイルを上書き
 * rem() 除数: 16。ceramic-lp の rem(N) は rem(N×2) に変換済み。
 */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: #0B2E5F;
  z-index: 100;
  transition: background 0.5s ease;
}
.header.logo-hidden .header__logo-text {
  opacity: 0;
  visibility: hidden;
  width: 0;
  height: 0;
  margin: 0;
  padding: 0;
  overflow: hidden;
}
.header.logo-hidden .header__mobile-top-row {
  justify-content: center;
  gap: 0.5rem;
}
.header.logo-hidden .header__line-section-mobile,
.header.logo-hidden .header__buttons-mobile {
  flex-shrink: 0;
}
@media only screen and (min-width: 768px) {
  .header.logo-hidden .header__logo {
    opacity: 0;
    pointer-events: none;
  }
  .header.logo-hidden .header__logo img {
    width: 0;
  }
  .header.logo-hidden .header__container {
    justify-content: center;
    height: 5rem;
  }
  .header.logo-hidden .header__buttons {
    gap: 1rem;
  }
}
.header__container {
  display: flex;
  align-items: center;
  flex-direction: column;
  padding: 0.5rem 2rem;
  gap: 0.5rem;
  height: auto;
  transition: justify-content 0.5s ease, gap 0.5s ease, height 0.5s ease;
}
@media only screen and (min-width: 768px) {
  .header__container {
    max-width: 75rem;
    margin: 0 auto;
    flex-direction: row;
    justify-content: space-between;
    height: 6.4rem;
    padding: 0 1.5rem;
    gap: 2rem;
  }
}
.header__logo {
  transition: opacity 0.5s ease, visibility 0.5s ease, width 0.5s ease, margin 0.5s ease;
  flex-shrink: 0;
}
.header__logo img {
  height: auto;
  width: 17.9375rem;
  transition: width 0.5s ease;
}
.header__buttons {
  display: flex;
  align-items: center;
  gap: 1.71875rem;
  transition: gap 0.5s ease;
}
.header__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.875rem;
  line-height: 1.3;
  transition: all 0.3s ease;
  min-height: 3.125rem;
}
.header__btn--line {
  background: #fff;
  color: #10773c;
  gap: 0.5rem;
  width: 8.8125rem;
  height: 3.75rem;
  border: solid 0.0625rem #10773c;
  box-sizing: border-box;
}
@media (hover: hover) {
  .header__btn--line:hover {
    background: #10773c;
    color: #fff;
  }
}
@media (hover: none) {
  .header__btn--line:active {
    background: #10773c;
    color: #fff;
  }
}
.header__btn--line .header__btn-icon {
  width: 2.8125rem;
}
.header__btn--line .header__btn-text {
  text-align: center;
  font-size: 0.875rem;
}
.header__btn--tel {
  background: #c6ecf4;
  color: #fff;
  gap: 1rem;
  width: 18.4375rem;
  height: 3.75rem;
  border: solid 0.125rem #fff;
  box-sizing: border-box;
}
@media (hover: hover) {
  .header__btn--tel:hover {
    background: #fff;
    color: #c6ecf4;
  }
}
@media (hover: none) {
  .header__btn--tel:active {
    background: #fff;
    color: #c6ecf4;
  }
}
.header__btn--tel .header__btn-label {
  font-size: 0.875rem;
  font-weight: 400;
  color: #242424;
}
.header__btn--tel .header__btn-number {
  font-size: 1.6rem;
  font-weight: 400;
  color: #242424;
}
.header__btn--web {
  background: #8A9AB6;
  color: #fff;
  width: 11.4375rem;
  height: 3.75rem;
  border: solid 0.125rem #fff;
}
@media (hover: hover) {
  .header__btn--web:hover {
    background: #fff;
    color: #8A9AB6;
  }
}
@media (hover: none) {
  .header__btn--web:active {
    background: #fff;
    color: #8A9AB6;
  }
}
.header__btn--web .header__btn-text {
  text-align: center;
  font-size: 1.1rem;
  color: inherit;
}
.header__btn-text {
  color: #242424;
}
.header__mobile-top-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  width: 100%;
  transition: justify-content 0.5s ease;
}
.header__logo-text {
  width: 30%;
  flex-shrink: 0;
  transition: opacity 0.5s ease, visibility 0.5s ease, width 0.5s ease, height 0.5s ease;
}
.header__logo-name {
  width: 100%;
  height: auto;
}
.header__buttons-mobile {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}
.header__line-section-mobile {
  display: flex;
  flex-shrink: 0;
}
.header__line-icon {
  width: 100%;
}
.header__btn-mobile {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  padding: 0;
  min-height: auto;
}
.header__btn-mobile--tel {
  background-color: #c6ecf4;
  color: white;
  border: solid 0.375rem #fff;
  box-shadow: 0.25rem 0.25rem 0.5rem rgba(0, 0, 0, 0.3);
  flex: none;
  height: 4.375rem;
  width: 10rem;
  border-radius: 0.5rem;
}
@media (hover: hover) {
  .header__btn-mobile--tel:hover {
    background: #fff;
    color: #c6ecf4;
  }
}
@media (hover: none) {
  .header__btn-mobile--tel:active {
    background: #fff;
    color: #c6ecf4;
  }
}
.header__btn-mobile--tel .header__btn-text {
  font-size: 1.375rem;
}
.header__btn-mobile--tel .header__btn-text .kana {
  font-size: 1rem;
}
.header__btn-mobile--web {
  background: #8A9AB6;
  color: white;
  border: solid 0.375rem #fff;
  box-shadow: 0.25rem 0.25rem 0.5rem rgba(0, 0, 0, 0.3);
  flex: none;
  height: 4.375rem;
  width: 8rem;
  border-radius: 0.5rem;
}
@media (hover: hover) {
  .header__btn-mobile--web:hover {
    background: #fff;
    color: #0B2E5F;
  }
}
@media (hover: none) {
  .header__btn-mobile--web:active {
    background: #fff;
    color: #0B2E5F;
  }
}
.header__btn-mobile--web .header__btn-text {
  font-size: 1.375rem;
  color: inherit;
}
@media (hover: hover) {
  .header__btn-mobile--web .header__btn-text:hover {
    color: inherit;
  }
}
@media (hover: none) {
  .header__btn-mobile--web .header__btn-text:active {
    color: inherit;
  }
}
.header__btn-mobile--line {
  background: #fff;
  color: #10773c;
  box-shadow: 0.25rem 0.25rem 0.5rem rgba(0, 0, 0, 0.3);
  border-radius: 0.3rem;
  width: 4rem;
  height: 4.375rem;
  padding: 0.2rem;
}
@media (hover: hover) {
  .header__btn-mobile--line:hover {
    background: #10773c;
    color: #fff;
  }
}
@media (hover: none) {
  .header__btn-mobile--line:active {
    background: #10773c;
    color: #fff;
  }
}
.header__btn-mobile--line .header__btn-text {
  display: none;
}

/**
 * ハンバーガーメニュースタイル（根管治療LP）
 * モバイルファースト: ベース = モバイル（表示）、@include media(m) で PC 非表示
 * rem() 除数: 16。ceramic-lp の rem(N) は rem(N×2) に変換済み。
 */
.hamburger-btn {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  position: relative;
  width: 5rem;
  height: 5rem;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 101;
  flex-shrink: 0;
}
@media only screen and (min-width: 768px) {
  .hamburger-btn {
    display: none;
  }
}
.hamburger-btn__lines {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: center;
}
.hamburger-btn__line {
  display: block;
  width: 2.5rem;
  height: 0.25rem;
  background-color: #fff;
  transition: all 0.3s ease;
  border-radius: 0.125rem;
}
.hamburger-btn__text {
  font-size: 1rem;
  font-weight: 500;
  color: #fff;
  line-height: 1;
  transition: all 0.3s ease;
}
.hamburger-btn.is-active .hamburger-btn__lines {
  margin-bottom: 0.25rem;
}
.hamburger-btn.is-active .hamburger-btn__line {
  background-color: #81C4E3;
}
.hamburger-btn.is-active .hamburger-btn__line:nth-child(1) {
  transform: translateY(0.75rem) rotate(45deg);
}
.hamburger-btn.is-active .hamburger-btn__line:nth-child(2) {
  opacity: 0;
}
.hamburger-btn.is-active .hamburger-btn__line:nth-child(3) {
  transform: translateY(-0.75rem) rotate(-45deg);
}
.hamburger-btn.is-active .hamburger-btn__text {
  color: #81C4E3;
}

.hamburger-menu {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 100;
  visibility: hidden;
  opacity: 0;
  transition: visibility 0s 0.3s, opacity 0.3s ease;
}
@media only screen and (min-width: 768px) {
  .hamburger-menu {
    display: none;
  }
}
.hamburger-menu.is-active {
  visibility: visible;
  opacity: 1;
  transition: visibility 0s 0s, opacity 0.3s ease;
}
.hamburger-menu.is-active .hamburger-menu__content {
  transform: translateX(0);
}
.hamburger-menu__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  cursor: pointer;
}
.hamburger-menu__content {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: #eaf4fb;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  padding: 10rem 2rem 4rem;
  -webkit-overflow-scrolling: touch;
}
.hamburger-menu__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.hamburger-menu__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2rem 2.5rem;
  text-decoration: none;
  color: var(--text-color);
  background: #fff;
  transition: all 0.3s ease;
  position: relative;
  box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.1);
}
@media (hover: hover) {
  .hamburger-menu__link:hover {
    background-color: rgba(11, 46, 95, 0.05);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  }
}
@media (hover: none) {
  .hamburger-menu__link:active {
    background-color: rgba(11, 46, 95, 0.05);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  }
}
.hamburger-menu__link-text {
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.4;
  flex: 1;
}
.hamburger-menu__arrow {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0.625rem 0 0.625rem 1rem;
  border-color: transparent transparent transparent #0B2E5F;
  flex-shrink: 0;
  margin-left: 2rem;
}

/**
 * ヒーローセクションスタイル（根管治療LP）
 * モバイルファースト: ベース = モバイル（750px デザイン基準）
 * ヘッダーは position: fixed のためフロー外 → margin-top 不要
 */
.hero {
  position: relative;
  overflow: hidden;
}
.hero__pc-inner {
  display: none;
  position: relative;
  overflow: hidden;
}
@media only screen and (min-width: 768px) {
  .hero__pc-inner {
    display: block;
  }
}
.hero__bg-pc {
  display: block;
  width: 100%;
  height: auto;
}
.hero__text-img-pc {
  position: absolute;
  top: 0;
  left: 0;
  width: 47.375rem;
  height: 32.125rem;
  pointer-events: none;
}
.hero__sp-inner {
  position: relative;
  overflow: hidden;
}
@media only screen and (min-width: 768px) {
  .hero__sp-inner {
    display: none;
  }
}
.hero__bg {
  display: block;
  width: 100%;
  height: auto;
}
.hero__text-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 98%;
  height: auto;
  pointer-events: none;
}
.hero__sp-inner .hero__subtitle {
  position: absolute;
  top: 39.125rem;
  left: 3.53125rem;
  margin: 0;
  color: #fff;
  text-shadow: 0 0 0.3125rem rgb(11, 46, 95), 0 0 1.125rem rgb(11, 46, 95), 0 0 1.875rem rgb(11, 46, 95);
  font-family: "Noto Sans JP", sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 4.375rem;
  letter-spacing: 0.156px;
}
.hero__pc-inner .hero__subtitle {
  position: absolute;
  top: 37.4375rem;
  left: 5.625rem;
  margin: 0;
  color: #fff;
  text-shadow: 0 0.5rem 3rem rgb(11, 46, 95), 0 0 2rem rgb(11, 46, 95), 0 0 1.25rem rgb(11, 46, 95);
  font-family: "Noto Sans JP", sans-serif;
  font-size: 2rem;
  font-style: normal;
  font-weight: 700;
  line-height: 2rem;
  letter-spacing: 0.125px;
}

/**
 * worriesセクション（悩みセクション）スタイル（根管治療LP）
 * モバイルファースト: ベース = モバイル（750px デザイン基準）
 */
.worries {
  position: relative;
  background-image: url("../../img/page/root-canal-lp/worries/bg-sp.png");
  background-repeat: repeat-y;
  background-size: 100% auto;
  padding: 5.75rem 0 9.0625rem;
}
.worries::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 43.25rem;
  height: 89.75rem;
  background-image: url("../../img/page/root-canal-lp/worries/on-bg-sp.svg");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  pointer-events: none;
  z-index: 0;
  filter: drop-shadow(-0.5rem 0 0.75rem rgba(0, 0, 0, 0.25)) drop-shadow(0.5rem 0 0.75rem rgba(0, 0, 0, 0.25));
}
.worries__inner {
  position: relative;
  z-index: 1;
}
.worries__label {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22.1875rem;
  height: 4.125rem;
  background: #0B2E5F;
  margin: 0 auto 0.625rem;
  padding: 0;
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.875rem;
  font-weight: 600;
  line-height: 1.875rem;
  letter-spacing: -0.75px;
}
.worries__title {
  margin: 0 0 3.75rem;
  text-align: center;
}
.worries__title-sub {
  display: block;
  margin-bottom: 0.625rem;
  color: #0B2E5F;
  font-family: "Noto Serif JP", serif;
  font-size: 2.53525rem;
  font-weight: 500;
  line-height: 2.53525rem;
  letter-spacing: -1.014px;
}
.worries__title-wo {
  font-size: 2.25rem;
  letter-spacing: -0.9px;
}
.worries__title-main {
  display: block;
  color: #0B2E5F;
  font-family: "Noto Serif JP", serif;
  font-size: 3.42725rem;
  font-weight: 600;
  line-height: 3.42725rem;
  letter-spacing: -2px;
}
.worries__pic {
  display: block;
  width: 40.25rem;
  aspect-ratio: 644/905;
  margin: 0 auto;
}
.worries__pic--pc {
  display: none;
}
@media only screen and (min-width: 768px) {
  .worries {
    background-image: url("../../img/page/root-canal-lp/worries/bg-pc.png");
    background-repeat: repeat-y;
    background-size: 100% auto;
    height: 69.875rem;
  }
  .worries::before {
    width: 71.125rem;
    height: 73.5625rem;
    background-image: url("../../img/page/root-canal-lp/worries/on-bg-pc.svg");
  }
  .worries__inner {
    max-width: 62.5rem;
    margin: 0 auto;
  }
  .worries__pic--sp {
    display: none;
  }
  .worries__pic--pc {
    display: block;
    width: 61rem;
    height: auto;
    aspect-ratio: unset;
  }
}

/**
 * ドクターセクション（根管治療LP）
 * モバイルファースト: ベース = モバイル（750px デザイン基準）
 * ceramic-lp _docter.scss を移植。rem値はすべて ×2（ceramic 除数8 → root-canal 除数16）
 */
.docter__message {
  width: 100%;
  height: 13.06175rem;
  background-color: #0B2E5F;
  margin-top: 4.75rem;
}
@media only screen and (min-width: 768px) {
  .docter__message {
    margin-top: 6.6875rem;
    height: 9.2410625rem;
  }
}
.docter__message-inner {
  display: flex;
  align-items: stretch;
  justify-content: center;
  width: 100%;
  height: 11.0016875rem;
}
@media only screen and (min-width: 768px) {
  .docter__message-inner {
    height: 9.2410625rem;
  }
}
.docter__message-text {
  width: 100%;
  color: #fff;
  text-align: center;
  font-style: normal;
  font-weight: 700;
  padding-top: 1.525rem;
  font-size: 2.25rem;
  line-height: 3.9375rem;
  transform: translateY(-0.75rem);
}
@media only screen and (min-width: 768px) {
  .docter__message-text {
    padding-top: 0;
    font-size: 1.875rem;
    line-height: 3.8125rem;
    transform: translateY(0.625rem);
  }
}
.docter__body {
  position: relative;
  display: grid;
}
.docter__bg {
  grid-area: 1/1;
  display: block;
  width: 100%;
  height: auto;
}
.docter__bg--pc {
  display: none;
}
@media only screen and (min-width: 768px) {
  .docter__bg--sp {
    display: none;
  }
  .docter__bg--pc {
    display: block;
  }
}
.docter__main-column {
  grid-area: 1/1;
  justify-self: center;
  position: relative;
  z-index: 2;
  border-radius: 1.25rem;
  background-color: #fff;
  border: 0.25rem solid #0B2E5F;
  margin-top: 2.3125rem;
  margin-bottom: 2.375rem;
  width: 42.68675rem;
  height: 111.4375rem;
}
@media only screen and (min-width: 768px) {
  .docter__main-column {
    margin-top: 1.9375rem;
    margin-bottom: 0.625rem;
    width: 71.25rem;
    height: 82.8125rem;
  }
}
.docter__name-bar {
  background-color: #2A466D;
  height: 3.9375rem;
  width: 43.125rem;
  margin-left: -0.219125rem;
}
@media only screen and (min-width: 768px) {
  .docter__name-bar {
    width: 100%;
    margin-top: 5.3125rem;
    margin-left: 0;
  }
  .docter__name-bar--pc {
    width: 22.3125rem;
    height: 3.0625rem;
    margin: 1.25rem 0 0 5.0625rem;
  }
}
.docter__name {
  color: #fff;
  font-style: normal;
  font-weight: 500;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.25rem;
  line-height: 2.25rem;
  letter-spacing: 0.1125rem;
}
@media only screen and (min-width: 768px) {
  .docter__name {
    justify-content: flex-end;
    transform: translateY(-0.0625rem);
    padding-right: 9.5125rem;
    font-size: 2.5rem;
    line-height: 2.5rem;
    letter-spacing: 0.125rem;
  }
}
@media only screen and (min-width: 768px) {
  .docter__name-bar--pc .docter__name {
    justify-content: center;
    padding-right: 0;
    transform: none;
    font-size: 1.7235625rem;
    font-weight: 700;
    line-height: 1.7235625rem;
    letter-spacing: 0.0861875rem;
  }
}
.docter__intro-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.docter__photo-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.docter__photo {
  width: 17.464125rem;
  height: 18.1108125rem;
  margin: 2.375rem auto 0.75rem;
}
@media only screen and (min-width: 768px) {
  .docter__photo {
    margin: 4.4375rem 0 0 7.1875rem;
  }
}
.docter__photo img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 50%;
}
.docter__history--pc {
  width: 37.6828125rem;
  margin-top: 4.8125rem;
  margin-right: 3.75rem;
}
.docter__history--sp {
  width: 100%;
  margin-top: 1.2275rem;
  padding: 0 2.5rem;
}
.docter__history-title {
  color: #3C3C3E;
  text-align: center;
  font-style: normal;
  font-weight: 400;
  font-size: 1.875rem;
  line-height: 1.875rem;
  letter-spacing: 0.09375rem;
  margin-bottom: 1.805rem;
}
@media only screen and (min-width: 768px) {
  .docter__history-title {
    font-size: 2.25rem;
    line-height: 2.25rem;
    letter-spacing: 0.1125rem;
    margin-bottom: 1.26rem;
  }
}
.docter__history-text {
  color: #3C3C3E;
  font-style: normal;
  font-weight: 400;
  font-size: 1.375rem;
  line-height: 2.375rem;
  letter-spacing: 0.06875rem;
  white-space: pre-line;
  transform: translateY(-0.625rem);
  text-align: left;
}
.docter__counseling-title {
  color: #2A466D;
  font-style: normal;
  font-weight: 700;
  margin-top: 2.5rem;
  padding-left: 2rem;
  font-size: 1.875rem;
  line-height: 1.875rem;
  letter-spacing: 0.09375rem;
}
.docter__counseling-title--first {
  letter-spacing: -0.03125rem;
  padding-left: 1.25rem;
}
.docter__counseling-title--sp-gap {
  margin-top: 3.5625rem;
}
@media only screen and (min-width: 768px) {
  .docter__counseling-title--sp-gap {
    margin-top: 2.9525rem;
  }
}
@media only screen and (min-width: 768px) {
  .docter__counseling-title {
    margin-top: 2.9525rem;
    padding-left: 5.0625rem;
    font-size: 1.875rem;
    line-height: 2.25rem;
    letter-spacing: 0.1125rem;
  }
}
.docter__counseling-text {
  color: #3C3C3E;
  font-style: normal;
  font-weight: 400;
  font-size: 1.375rem;
  line-height: 2.375rem;
  letter-spacing: 0.06875rem;
  transform: translateY(-0.625rem);
  margin-top: 1.795rem;
  padding: 0 2.95875rem 0 2.045625rem;
}
@media only screen and (min-width: 768px) {
  .docter__counseling-text {
    margin-top: 1.75rem;
    padding: 0 4.875rem 0 5.0625rem;
  }
}
.docter__counseling-text--third {
  padding-right: 1.25rem;
}
.docter__final-box {
  position: absolute;
  background-color: #0B2E5F;
  left: 50%;
  transform: translateX(-50%);
  bottom: 4.875rem;
  width: 39.5615rem;
  height: 13.06175rem;
}
@media only screen and (min-width: 768px) {
  .docter__final-box {
    left: 0;
    bottom: 2.1875rem;
    width: 100%;
    height: 9.5619375rem;
    transform: none;
  }
}
.docter__final-text {
  color: #fff;
  font-style: normal;
  font-weight: 500;
  font-size: 1.375rem;
  letter-spacing: 0.06875rem;
  line-height: 2.25rem;
  padding: 0.948125rem 0.875rem 0.08125rem 0.87rem;
}
@media only screen and (min-width: 768px) {
  .docter__final-text {
    line-height: 2.375rem;
    padding: 1.260625rem 2.78625rem 1.75rem 1.634375rem;
  }
}

/**
 * Ideal セクション（根管治療LP）
 * モバイルファースト: ベース = モバイル（750px デザイン基準）
 * ceramic-lp _ideal.scss を参考に移植。rem値はすべて ×2（ceramic 除数8 → root-canal 除数16）
 */
.ideal {
  background-color: #fff;
}
.ideal__deco {
  display: block;
  width: 100%;
  height: auto;
  position: relative;
  z-index: 2;
}
.ideal__deco--top {
  margin-bottom: 2.5rem;
}
.ideal__deco--bottom {
  margin-top: 0.625rem;
}
.ideal__deco--pc {
  display: none;
}
@media only screen and (min-width: 768px) {
  .ideal__deco--sp {
    display: none;
  }
  .ideal__deco--pc {
    display: block;
  }
}
.ideal__header {
  text-align: center;
  padding: 0 2.375rem;
  margin-bottom: 3.75rem;
}
.ideal__title {
  color: #0B2E5F;
  font-family: "Noto Serif JP", serif;
  font-size: 3rem;
  font-weight: 700;
  line-height: 3.75rem;
  margin-bottom: 2.625rem;
}
.ideal__desc {
  color: #242424;
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.375rem;
  font-weight: 400;
  line-height: 2.375rem;
}
.ideal__list {
  width: 100%;
}
.ideal__item {
  position: relative;
}
.ideal__item::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  background-color: #EAF6F9;
  pointer-events: none;
}
.ideal__item--01 {
  height: 17.25rem;
}
.ideal__item--01::before {
  height: 13.5625rem;
  clip-path: polygon(0% 7.14%, 100% 0%, 100% 100%, 0% 100%);
}
.ideal__item--01 .ideal__number {
  top: -1.625rem;
  left: auto;
  right: 1.75rem;
}
.ideal__item--01 .ideal__subtitle {
  top: 4.875rem;
  left: auto;
  right: 1.75rem;
}
.ideal__item--02 {
  height: 18.125rem;
}
.ideal__item--02::before {
  height: 12.9375rem;
  clip-path: polygon(0% 7.49%, 100% 0%, 100% 100%, 0% 100%);
}
.ideal__item--02 .ideal__number {
  left: 3.5rem;
  right: auto;
  top: 2.125rem;
}
.ideal__item--02 .ideal__subtitle {
  left: 1.625rem;
  right: auto;
  top: 8.625rem;
  text-align: left;
}
.ideal__item--03 {
  height: 17.8125rem;
}
@media only screen and (min-width: 768px) {
  .ideal__item--03 {
    height: 20.875rem;
  }
}
.ideal__item--03::before {
  height: 10.75rem;
  clip-path: polygon(0% 9.03%, 100% 0%, 100% 100%, 0% 100%);
}
.ideal__item--03 .ideal__number {
  top: 1rem;
  left: auto;
  right: 1.25rem;
}
.ideal__item--03 .ideal__subtitle {
  top: 7.75rem;
  left: auto;
  right: 1.75rem;
}
.ideal__item--04 {
  height: 22.625rem;
  margin-bottom: -4.875rem;
}
.ideal__item--04::before {
  height: 16.8124375rem;
  clip-path: polygon(0% 5.77%, 100% 0%, 100% 100%, 0% 100%);
}
.ideal__item--04 .ideal__number {
  left: 3.5rem;
  right: auto;
  top: 2.125rem;
}
.ideal__item--04 .ideal__subtitle {
  left: 1.625rem;
  right: auto;
  top: 9rem;
  text-align: left;
}
.ideal__number {
  position: absolute;
  top: -1.625rem;
  left: auto;
  right: 1.75rem;
  font-family: "Jost", "Noto Sans JP", sans-serif;
  font-size: 12.5rem;
  line-height: 1;
  font-weight: 700;
  color: #C6ECF4;
  z-index: 1;
  pointer-events: none;
}
@media only screen and (min-width: 768px) {
  .ideal__number {
    top: -5.75rem;
    left: 2rem;
    right: auto;
    font-size: 11.6875rem;
  }
}
.ideal__subtitle {
  position: absolute;
  top: 4.875rem;
  left: auto;
  right: 1.75rem;
  text-align: right;
  font-size: 2.25rem;
  line-height: 2.25rem;
  font-weight: 700;
  letter-spacing: -0.225rem;
  color: #0B2E5F;
  z-index: 1;
}
@media only screen and (min-width: 768px) {
  .ideal__subtitle {
    top: 0.25rem;
    left: 0;
    right: auto;
    text-align: left;
  }
}
.ideal__pic {
  position: absolute;
  display: block;
  z-index: 1;
}
.ideal .ideal__item--01 .ideal__pic {
  max-width: 12.75rem;
  bottom: 0;
  left: 10.625rem;
}
.ideal .ideal__item--02 .ideal__pic {
  max-width: 11.5rem;
  bottom: 0;
  right: 11.125rem;
}
.ideal .ideal__item--03 .ideal__pic {
  max-width: 13rem;
  bottom: 0;
  left: 8.5rem;
}
.ideal .ideal__item--04 .ideal__pic {
  max-width: 12.4375rem;
  bottom: 4.25rem;
  right: 11.5625rem;
}
@media only screen and (min-width: 768px) {
  .ideal__header {
    max-width: 72.125rem;
    margin: 0 auto 5rem;
    padding: 0;
  }
  .ideal__list {
    width: 100%;
  }
  .ideal__item {
    display: block;
    padding: 0;
  }
  .ideal__item::before {
    display: block;
  }
  .ideal__number {
    position: absolute;
    top: -1.625rem;
    left: auto;
    right: 1.75rem;
    font-size: 12.5rem;
    width: auto;
  }
  .ideal__item--01 .ideal__number, .ideal__item--03 .ideal__number {
    left: 29.8125rem;
    right: auto;
  }
  .ideal__item--01 .ideal__subtitle, .ideal__item--03 .ideal__subtitle {
    left: 29.8125rem;
    right: auto;
    text-align: left;
  }
  .ideal__item--01 .ideal__pic, .ideal__item--03 .ideal__pic {
    left: 8.9375rem;
    right: auto;
    bottom: 0;
  }
  .ideal__item--02 .ideal__number, .ideal__item--04 .ideal__number {
    left: auto;
    right: 26.4375rem;
  }
  .ideal__item--02 .ideal__subtitle, .ideal__item--04 .ideal__subtitle {
    left: auto;
    right: 26.4375rem;
    text-align: right;
  }
  .ideal__item--02 .ideal__pic, .ideal__item--04 .ideal__pic {
    right: 10rem;
    left: auto;
    bottom: 0;
  }
  .ideal__subtitle {
    position: absolute;
    top: 4.875rem;
    left: auto;
    right: 1.75rem;
    font-size: 2.25rem;
    line-height: 2.25rem;
    text-align: right;
  }
  .ideal__pic {
    display: block;
  }
}

/**
 * 症例紹介セクション（根管治療LP）
 * モバイルファースト: ベース = モバイル（750px デザイン基準）
 * ceramic-lp _case.scss を参考に移植。rem値はすべて ×2（ceramic 除数8 → root-canal 除数16）
 */
.case {
  background-color: #8A9AB6;
}
.case__head {
  position: relative;
  overflow: hidden;
}
.case__bg {
  display: block;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
}
.case__bg--pc {
  display: none;
}
@media only screen and (min-width: 768px) {
  .case__bg {
    aspect-ratio: 1440/322;
  }
  .case__bg--sp {
    display: none;
  }
  .case__bg--pc {
    display: block;
  }
}
.case__head-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 5.375rem;
}
@media only screen and (min-width: 768px) {
  .case__head-content {
    padding-top: 5.1875rem;
  }
}
.case__title {
  display: flex;
  gap: 0.54rem;
}
.case__title-box {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 7.7154375rem;
  height: 7.7154375rem;
  background-color: #0B2E5F;
  color: #FFF;
  font-family: "Noto Serif JP", serif;
  font-size: 4.62925rem;
  font-weight: 700;
  line-height: 4.62925rem;
  letter-spacing: 0.2314375rem;
}
.case__lead {
  margin-top: 1.34625rem;
  color: #2E2D30;
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 2.212rem;
  font-weight: 700;
  line-height: 2.38625rem;
  letter-spacing: 0.110625rem;
}
@media only screen and (min-width: 768px) {
  .case__lead {
    margin-top: 1.658125rem;
    color: #3C3C3E;
    font-size: 2rem;
    line-height: 2rem;
    letter-spacing: 0.1rem;
  }
}
.case__body {
  display: flex;
  justify-content: center;
  padding-top: 3.73625rem;
  padding-bottom: 2.850625rem;
}
.case__panel {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  width: 43.0451875rem;
  height: 29.91275rem;
}
.case__card {
  border: 0.0625rem solid #0B2E5F;
  background-color: #FFF;
  width: 43.0451875rem;
  height: 29.91275rem;
}
.case__visual {
  position: relative;
  background-color: #E5E5E5;
  width: 41.442375rem;
  height: 12.4326875rem;
  margin-top: 0.731875rem;
  margin-left: 0.739375rem;
  margin-right: 0.86375rem;
}
.case__visual-accent {
  position: absolute;
  right: 0;
  bottom: 0;
  background-color: #0B2E5F;
  width: 18.174875rem;
  height: 4.6620625rem;
}
.case__card-label {
  color: #0B2E5F;
  text-align: center;
  font-family: "Inter", sans-serif;
  font-style: normal;
  font-weight: 400;
  padding-top: 1.21375rem;
  font-size: 1.875rem;
  line-height: 1.875rem;
  letter-spacing: 0.09375rem;
}
.case__card-divider {
  background-color: #0B2E5F;
  height: 0.1295rem;
  margin-top: 1.185rem;
  margin-left: 0.739375rem;
  margin-right: 0.86375rem;
}
.case__card-content {
  height: 12.7024375rem;
}

/**
 * 3つの特徴セクション（根管治療LP）
 * モバイルファースト: ベース = モバイル（750px デザイン基準）
 * rem() 除数: 16。code詳細.txt の px 値をそのまま rem() に渡す。
 */
.feature {
  width: 100%;
  background: linear-gradient(to right, #E8ECFF, #C5D7DD);
  padding: 4.625rem 0 3.5rem;
}
@media only screen and (min-width: 768px) {
  .feature {
    padding-bottom: 5.25rem;
  }
}
.feature__inner {
  margin: auto;
  width: 43.3125rem;
  padding: 5.625rem 0 1.25rem;
  background: #fff;
  border-radius: 1.8125rem;
  box-sizing: border-box;
}
@media only screen and (min-width: 768px) {
  .feature__inner {
    padding-bottom: 1.625rem;
  }
}
.feature__label {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
  width: 28.5625rem;
  height: 4.375rem;
  background: transparent;
  border: 0.125rem solid #0B2E5F;
  border-radius: 2.1875rem;
  color: #0B2E5F;
  font-family: "Noto Serif JP", serif;
  font-size: 3.382125rem;
  font-style: normal;
  font-weight: 700;
  line-height: 3.382125rem;
  letter-spacing: -0.3381875rem;
}
.feature__label-ga {
  font-size: 2.9311875rem;
  line-height: 2.9311875rem;
  letter-spacing: -0.293125rem;
}
.feature__title {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  margin-bottom: 2.125rem;
  transform: translateY(-1.875rem);
}
.feature__title-num {
  color: #0B2E5F;
  font-family: "Noto Serif JP", serif;
  font-size: 9.8626875rem;
  font-style: normal;
  font-weight: 700;
  line-height: 9.8626875rem;
  letter-spacing: -0.98625rem;
  transform: translateY(0.75rem);
}
.feature__title-mid {
  color: #0B2E5F;
  font-family: "Noto Serif JP", serif;
  font-size: 6.25rem;
  font-style: normal;
  font-weight: 700;
  line-height: 6.25rem;
  letter-spacing: -0.625rem;
}
.feature__title-end {
  color: #0B2E5F;
  font-family: "Noto Serif JP", serif;
  font-size: 7.23125rem;
  font-style: normal;
  font-weight: 700;
  line-height: 7.23125rem;
  letter-spacing: -0.723125rem;
}
.feature__list {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  display: flex;
  flex-direction: column;
  row-gap: 1.625rem;
  width: 38.8125rem;
}
.feature__item {
  display: flex;
  align-items: center;
  width: 38.8125rem;
  height: 3.1875rem;
  background: transparent;
  border: 0.125rem solid #0B2E5F;
  box-sizing: border-box;
  padding: 0 1.625rem 0 2.375rem;
  gap: 0.625rem;
}
.feature__item-num {
  color: #0B2E5F;
  font-family: "Roboto", sans-serif;
  font-size: 2.25rem;
  font-style: normal;
  font-weight: 400;
  line-height: 2.25rem;
  letter-spacing: -0.225rem;
  flex-shrink: 0;
}
.feature__item-text {
  color: #0B2E5F;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5rem;
  letter-spacing: -0.15rem;
  flex: 1;
}
.feature__item-link {
  display: contents;
}
.feature__item-arrow {
  color: #0B2E5F;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 2.25rem;
  font-style: normal;
  font-weight: 900;
  line-height: 2.25rem;
  letter-spacing: -0.225rem;
  flex-shrink: 0;
}
.feature__reason {
  margin-top: 5.125rem;
  padding-bottom: 1.375rem;
}
@media only screen and (min-width: 768px) {
  .feature__reason {
    margin-top: 6.5625rem;
  }
}
.feature__reason--03 {
  margin-top: 3.625rem;
}
@media only screen and (min-width: 768px) {
  .feature__reason--03 {
    margin-top: 6.625rem;
  }
}
.feature__reason-head {
  position: relative;
  overflow: visible;
  width: 38.75rem;
  height: 7rem;
  background: #8A9AB6;
  margin: 0 auto;
  display: flex;
  align-items: center;
}
.feature__reason-head::after {
  content: "";
  position: absolute;
  bottom: -1.015625rem;
  right: -0.96875rem;
  width: 38.75rem;
  height: 7.0625rem;
  background: transparent;
  border: 0.125rem solid #8A9AB6;
  pointer-events: none;
}
.feature__reason-head-title {
  padding: 0 10rem 0 1.25rem;
  color: #FFF;
  font-family: "Noto Serif JP", serif;
  font-size: 2.1696875rem;
  font-style: normal;
  font-weight: 500;
  line-height: 2.603625rem;
  letter-spacing: 0.0678125rem;
}
@media only screen and (min-width: 768px) {
  .feature__reason-head-title {
    padding-left: 3.375rem;
  }
}
.feature__reason-label {
  position: absolute;
  right: 0;
  top: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media only screen and (min-width: 768px) {
  .feature__reason-label {
    right: 4rem;
  }
}
.feature__reason-label-yuryu {
  display: inline-flex;
  align-items: center;
  height: 2.80725rem;
  color: #0B2E5F;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 2.80725rem;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.043875rem;
  background-color: #8A9AB6;
  box-shadow: 0 0.125rem 0 0 #8A9AB6, 0 -0.125rem 0 0 #8A9AB6;
  position: relative;
  z-index: 1;
  transform: translate(-3.25rem, 2.75rem);
}
.feature__reason-label-num {
  color: #0B2E5F;
  font-family: "Jost", sans-serif;
  font-size: 8.68725rem;
  font-style: normal;
  font-weight: 500;
  line-height: 8.68725rem;
  letter-spacing: -0.2715rem;
  transform: translate(0.625rem, -2.75rem);
}
.feature__reason-body {
  margin-top: 1.875rem;
}
.feature__reason-intro {
  width: 37.5rem;
  color: #3C3C3E;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 2.25rem;
  margin: 0 auto 3.875rem;
}
.feature__reason-intro.reason03 {
  margin-bottom: 3rem;
}
.feature__reason-point {
  margin-bottom: 2.5rem;
}
.feature__reason-point.second {
  margin-bottom: 3.5rem;
}
.feature__reason-point.last {
  margin-bottom: 1.125rem;
}
.feature__reason-point.reason03 {
  margin-bottom: 0;
}
.feature__reason-point-title {
  margin: 0 auto 1.25rem;
  color: #0B2E5F;
  font-family: "Noto Serif JP", serif;
  font-size: 1.875rem;
  font-style: normal;
  font-weight: 500;
  line-height: 1.875rem;
  letter-spacing: 0.014625rem;
}
@media only screen and (max-width: 767.499px) {
  .feature__reason-point-title {
    padding: 0 1.25rem;
  }
}
.feature__reason-point-title--lh36 {
  line-height: 2.25rem;
  margin-bottom: 1.5rem;
}
.feature__reason-point-title--tight {
  letter-spacing: -0.09375rem;
}
.feature__reason-point-heading {
  width: 100%;
  height: 6.6875rem;
  background: #0B2E5F;
  margin-bottom: 0.875rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #FFF;
  font-family: "Noto Serif JP", serif;
  font-size: 1.875rem;
  font-weight: 700;
  line-height: 2.5rem;
  box-sizing: border-box;
}
@media only screen and (min-width: 768px) {
  .feature__reason-point-heading {
    margin-bottom: 1.375rem;
  }
}
.feature__reason-point-img {
  display: block;
  width: 38.8125rem;
  height: auto;
  margin: 0 auto 0.625rem;
  border-radius: 0.625rem;
}
.feature__reason-point-img--pc {
  display: none;
}
.feature__reason-point-img--full {
  width: 100%;
  border-radius: 0;
  margin-bottom: 1.375rem;
}
.feature__reason-point-img--full.second {
  margin-bottom: 0;
}
.feature__reason-point-img--tall {
  width: auto;
  height: 16.8125rem;
}
.feature__reason-point-text {
  margin: auto;
  color: #3C3C3E;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 2.25rem;
}
@media only screen and (max-width: 767.499px) {
  .feature__reason-point-text {
    padding: 0 1.25rem;
    max-width: 56.25rem;
  }
}
.feature__reason-point-text + .feature__reason-point-text {
  margin-top: 2.25rem;
}
.feature__reason-bg-block {
  width: 100%;
  padding: 3.125rem 0 4.375rem;
  background-image: url("../../img/page/root-canal-lp/feature/bg-sp.png");
  background-size: cover;
  background-position: center;
}
.feature__reason-bg-title {
  text-align: center;
  color: #3C3C3E;
  font-family: "Noto Serif JP", serif;
  font-size: 2rem;
  font-weight: 500;
  line-height: 2.4rem;
  letter-spacing: 0.0625rem;
  margin: 0 auto 1.875rem;
  width: 37.5rem;
}
@media only screen and (min-width: 768px) {
  .feature__reason-bg-title {
    width: auto;
  }
}
.feature__reason-note {
  width: 37.5rem;
  margin: 0.625rem auto 2.5rem;
  color: #3C3C3E;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 2.25rem;
}
@media only screen and (min-width: 768px) {
  .feature__reason-note {
    width: auto;
    text-align: center;
    margin-top: 1.75rem;
  }
}
.feature__reason-merit-label {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 23.6875rem;
  height: 3.1875rem;
  background: #fff;
  border-radius: 624.9375rem;
  margin: 0 auto 1.875rem;
  color: #3C3C3E;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.5rem;
  letter-spacing: -0.15rem;
}
.feature__reason-merit-list {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.875rem;
  width: -moz-fit-content;
  width: fit-content;
}
.feature__reason-merit-item {
  display: flex;
  align-items: center;
  gap: 3.1875rem;
}
.feature__reason-merit-icon {
  width: 8.8125rem;
  height: auto;
  flex-shrink: 0;
}
.feature__reason-merit-text {
  width: 19.125rem;
  color: #3C3C3E;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 2.25rem;
}
@media only screen and (min-width: 768px) {
  .feature__reason-merit-text {
    width: auto;
  }
}
.feature__reason-materials {
  padding-top: 1.75rem;
}
.feature__reason-materials-label {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 23.6875rem;
  height: 3.1875rem;
  background: #E8ECFF;
  border: 0.125rem solid #0B2E5F;
  border-radius: 9999px;
  box-sizing: border-box;
  margin: 0 auto 3.25rem;
  color: #0B2E5F;
  font-family: "Noto Serif JP", serif;
  font-size: 1.875rem;
  font-weight: 500;
  line-height: 1.875rem;
  letter-spacing: -0.1875rem;
}
.feature__reason-materials-label.reason03 {
  margin-bottom: 2.125rem;
}
@media only screen and (min-width: 768px) {
  .feature__reason-materials-label.reason03 {
    margin-top: 2.875rem;
  }
}
@media only screen and (min-width: 768px) {
  .feature__inner {
    width: 90%;
    max-width: 73rem;
  }
  .feature__label {
    width: 28.5rem;
    height: 4.3125rem;
    font-size: 3.375rem;
    line-height: 3.375rem;
  }
  .feature__label-ga {
    font-size: 2.9375rem;
    line-height: 2.9375rem;
  }
  .feature__reason-head {
    width: 100%;
    max-width: 65.4375rem;
    margin-left: auto;
    margin-right: auto;
  }
  .feature__reason-head::after {
    width: 100%;
    max-width: 65.4375rem;
  }
  .feature__reason-intro {
    width: 100%;
    margin-top: 1.6875rem;
    max-width: 65.4375rem;
  }
  .feature__reason-points {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5.0625rem;
    max-width: 65.4375rem;
    margin: 0 auto;
  }
  .feature__reason-point {
    max-width: auto;
    margin-bottom: 0;
  }
  .feature__reason-point.second {
    margin-bottom: 0;
  }
  .feature__reason-point-title {
    width: auto;
    margin: 0 0 1.25rem;
    min-height: 4.5rem;
    display: flex;
    align-items: flex-start;
  }
  .feature__reason-point-text {
    width: auto;
    margin: 0;
  }
  .feature__reason-point-text.reason02 {
    text-align: center;
  }
  .feature__reason-point-img--sp {
    display: none;
  }
  .feature__reason-point-img--pc {
    display: block;
  }
  .feature__reason--01 .feature__reason-point-img {
    width: 100%;
    height: 16.8125rem;
    -o-object-fit: cover;
    object-fit: cover;
    margin: 0 0 0.625rem;
  }
  .feature__reason--02 .feature__reason-body {
    max-width: 65.4375rem;
    margin: 0 auto;
  }
  .feature__reason--02 .feature__reason-point-title {
    text-align: center;
    margin: 0 auto 1.625rem;
    display: block;
    min-height: auto;
  }
  .feature__reason--02 .feature__reason-point-img {
    margin: 0 auto 0.625rem;
  }
  .feature__reason--02 .feature__reason-point-img--full {
    width: 43.375rem;
    max-width: 100%;
  }
  .feature__reason--02 .feature__reason-point {
    margin-bottom: 4.0625rem;
  }
  .feature__reason--02 .feature__reason-materials .feature__reason-point {
    margin-bottom: 0;
  }
  .feature__reason--02 .feature__reason-materials .feature__reason-point-title {
    text-align: left;
    margin: 0 0 1.25rem;
    min-height: auto;
    display: flex;
    align-items: flex-start;
  }
  .feature__reason--02 .feature__reason-materials .feature__reason-point-img {
    width: 100%;
    height: 16.8125rem;
    -o-object-fit: cover;
    object-fit: cover;
    margin: 0 0 0.625rem;
  }
  .feature__reason--03 .feature__reason-points {
    row-gap: 5rem;
  }
  .feature__reason--03 .feature__reason-points .feature__reason-point-title {
    min-height: auto;
  }
  .feature__reason--03 .feature__reason-point-img {
    width: 100%;
    height: 16.8125rem;
    -o-object-fit: cover;
    object-fit: cover;
    margin: 0 0 0.625rem;
  }
  .feature__reason--03 .feature__reason-note {
    margin-top: 0;
    margin-left: 0;
  }
  .feature__reason--03 .feature__reason-point.reason03 {
    max-width: 65.4375rem;
    margin: auto;
  }
  .feature__reason--03 .feature__reason-point.reason03 .feature__reason-point-title {
    justify-content: center;
    min-height: auto;
  }
  .feature__reason--03 .feature__reason-point.reason03 .feature__reason-point-img {
    width: 39.1875rem;
    height: 16.8125rem;
    -o-object-fit: cover;
    object-fit: cover;
    margin: 0 auto 0.625rem;
  }
  .feature__reason--03 .feature__reason-point.reason03 .feature__reason-point-text {
    width: 100%;
    text-align: left;
  }
}

/**
 * Pricing Section（根管治療LP）
 * モバイルファースト: ベース = モバイル（750px デザイン基準）
 */
.pricing {
  padding: 5rem 0;
  background-image: url("../../img/page/root-canal-lp/pricing/bg-sp.png");
  background-size: 100% auto;
  background-position: center top;
  background-repeat: no-repeat;
}
@media only screen and (min-width: 768px) {
  .pricing {
    padding-top: 4.125rem;
    padding-bottom: 3.4375rem;
  }
}
.pricing__container {
  max-width: 44.5rem;
  margin: 0 auto;
  padding: 0;
}
.pricing__header {
  text-align: center;
  margin-bottom: 3.25rem;
}
.pricing__title {
  color: #0B2E5F;
  font-family: "Noto Serif JP", serif;
  font-size: 3.7281875rem;
  font-style: normal;
  font-weight: 500;
  line-height: 3.7281875rem;
  letter-spacing: 0.145625rem;
  margin: 0;
}
.pricing__table-group + .pricing__table-group {
  margin-top: 4rem;
}
.pricing__table-heading {
  display: flex;
  justify-content: center;
  margin-bottom: 1.25rem;
}
.pricing__table-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 35.4375rem;
  height: 3.4375rem;
  background: #fff;
  border: 1px solid #3C3C3E;
  border-radius: 9999px;
  padding: 0;
  color: #3C3C3E;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.875rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.875rem;
  letter-spacing: 0.014625rem;
}
.pricing__table-wrapper {
  border: 0.125rem solid #0B2E5F;
  border-radius: 0.125rem;
  overflow: hidden;
}
@media only screen and (min-width: 768px) {
  .pricing__table-wrapper {
    border-width: 0.3125rem;
  }
}
.pricing__table {
  width: 100%;
  border-collapse: collapse;
}
.pricing__item-header {
  height: 3.875rem;
  background: #8A9AB6;
  color: #FFF;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.0730625rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.0730625rem;
  text-align: center;
  vertical-align: middle;
  padding: 0;
  border-bottom: 1px solid #fff;
  box-sizing: border-box;
}
@media only screen and (min-width: 768px) {
  .pricing__item-header {
    font-family: "Inter", sans-serif;
    font-size: 1.875rem;
    font-weight: 500;
    line-height: 1.875rem;
  }
}
.pricing__item {
  width: 36.5%;
  height: 3.875rem;
  background: #8A9AB6;
  border-right: 0.125rem solid #0B2E5F;
  border-bottom: 1px solid #fff;
  color: #FFF;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.0730625rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.0730625rem;
  text-align: center;
  vertical-align: middle;
  padding: 0 0.5rem;
  box-sizing: border-box;
}
.pricing__price {
  height: 3.875rem;
  background: #fff;
  text-align: center;
  vertical-align: middle;
  padding: 0 0.25rem;
  border-bottom: 1px solid #0B2E5F;
  color: #3C3C3E;
  font-family: "Jost", sans-serif;
  font-size: 1.609625rem;
  font-style: normal;
  font-weight: 500;
  line-height: 1.609625rem;
  letter-spacing: -0.062875rem;
}
.pricing__price span {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.0730625rem;
  font-weight: 400;
  letter-spacing: -0.0419375rem;
}
.pricing__row:last-child .pricing__item, .pricing__row:last-child .pricing__price {
  border-bottom: none;
}
.pricing__note {
  padding-top: 1.75rem;
}
.pricing__note-text {
  color: #3C3C3E;
  text-align: justify;
  font-family: "noto sans jp", sans-serif;
  font-size: 1.375rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.875rem;
}

/**
 * Treatment Flow Section（根管治療LP）
 * モバイルファースト: ベース = モバイル（ceramic の @include media(om) 値 × 2）
 *                    @include media(m) = PC（ceramic のベース値 × 2）
 */
.treatment-flow--ceramic {
  position: relative;
  padding: 0 0 3.25rem;
  overflow-x: clip;
  margin-bottom: 3.75rem;
}
@media only screen and (min-width: 768px) {
  .treatment-flow--ceramic {
    margin-bottom: 0;
    padding-bottom: 7.5rem;
    box-shadow: 0 0.25rem 1.2rem rgba(0, 0, 0, 0.3);
  }
}
.treatment-flow--ceramic::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  width: 100%;
  max-width: 43.75rem;
  height: 36.375rem;
  background-image: url(../../img/page/root-canal-lp/flow/bg-sp.png);
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: 100% auto;
  pointer-events: none;
  z-index: 0;
}
@media only screen and (min-width: 768px) {
  .treatment-flow--ceramic::after {
    max-width: 70rem;
  }
}
.treatment-flow--ceramic .treatment-flow__container {
  position: relative;
  max-width: 43.75rem;
  margin: 0 auto;
  background-color: #fff;
  border-radius: 0 0 1rem 1rem;
  box-shadow: 0 0.25rem 0.9rem rgba(0, 0, 0, 0.1);
  overflow: hidden;
  z-index: 1;
}
@media only screen and (min-width: 768px) {
  .treatment-flow--ceramic .treatment-flow__container {
    max-width: 70rem;
    border-radius: 0;
    box-shadow: 0 0.25rem 0.9rem rgba(0, 0, 0, 0.1);
  }
}
.treatment-flow--ceramic .treatment-flow__header {
  position: relative;
  text-align: center;
  margin-bottom: 0.75rem;
}
.treatment-flow--ceramic .treatment-flow__header::before {
  content: "";
  position: absolute;
  top: -0.8125rem;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 11rem;
  background: linear-gradient(to right, #456CAD, #6AB5D4);
  border-radius: 50%/0 0 100% 100%;
  z-index: 0;
}
.treatment-flow--ceramic .treatment-flow__title {
  position: relative;
  z-index: 1;
  margin: 0;
  padding: 3.25rem 0 1.75rem;
  color: #FFF;
  font-family: "Noto Serif JP", serif;
  font-size: 3rem;
  font-style: normal;
  font-weight: 500;
  line-height: 3.0005rem;
  letter-spacing: 0.09375rem;
}
.treatment-flow--ceramic .treatment-flow__steps {
  position: relative;
  margin: 7.6875rem auto 0;
  padding: 0 0 1rem;
  width: 41.875rem;
}
@media only screen and (min-width: 768px) {
  .treatment-flow--ceramic .treatment-flow__steps {
    width: 68.5625rem;
  }
}
.treatment-flow--ceramic .treatment-flow__steps::before {
  content: "";
  position: absolute;
  left: 50%;
  top: var(--timeline-top, 0.625rem);
  width: 0.25rem;
  height: var(--timeline-height, auto);
  background: linear-gradient(to top, #456CAD, #6AB5D4);
  transform: translateX(-50%);
  border-radius: 0.125rem;
}
.treatment-flow--ceramic .treatment-flow__step {
  position: relative;
  display: flex;
  align-items: center;
  margin-bottom: 3.375rem;
}
.treatment-flow--ceramic .treatment-flow__step:last-child {
  margin-bottom: 0;
}
.treatment-flow--ceramic .treatment-flow__step-number {
  position: absolute;
  top: 20%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 4.6875rem;
  height: 4.6875rem;
  border-radius: 50%;
  background: linear-gradient(to top, #456CAD, #6AB5D4);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: Jost, sans-serif;
  font-size: 2.375rem;
  font-style: italic;
  font-weight: 900;
  line-height: 1;
  z-index: 2;
  padding-left: 0.125rem;
}
.treatment-flow--ceramic .treatment-flow__step-content {
  display: flex;
  width: 100%;
  justify-content: space-between;
}
.treatment-flow--ceramic .treatment-flow__step-image {
  position: relative;
  width: 50%;
  flex-shrink: 0;
  display: flex;
}
.treatment-flow--ceramic .treatment-flow__step-image img {
  display: block;
  width: 16.8125rem;
  height: 13.4375rem;
  border-radius: 1.5rem;
  -o-object-fit: cover;
  object-fit: cover;
}
@media only screen and (min-width: 768px) {
  .treatment-flow--ceramic .treatment-flow__step-image img {
    width: 22.9375rem;
  }
}
.treatment-flow--ceramic .treatment-flow__step-info {
  width: 50%;
  flex-shrink: 0;
}
.treatment-flow--ceramic .treatment-flow__step-title {
  margin: 0 0 1.875rem;
  color: #3C3C3E;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.875rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
}
.treatment-flow--ceramic .treatment-flow__step-text {
  margin: 0;
  color: #3C3C3E;
  text-align: justify;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.3125rem;
  font-weight: 400;
  line-height: 1.3;
}
.treatment-flow--ceramic .treatment-flow__step:nth-child(odd) .treatment-flow__step-image {
  padding: 0 2.875rem 0 0;
  justify-content: flex-start;
}
@media only screen and (min-width: 768px) {
  .treatment-flow--ceramic .treatment-flow__step:nth-child(odd) .treatment-flow__step-image {
    padding-right: 4.75rem;
    justify-content: flex-end;
  }
}
.treatment-flow--ceramic .treatment-flow__step:nth-child(odd) .treatment-flow__step-image::after {
  content: "";
  position: absolute;
  top: var(--line-top, 20%);
  right: 2.1875rem;
  width: 2.25rem;
  height: 0.39375rem;
  background: linear-gradient(to right, #456CAD, #6AB5D4);
  transform: translateY(-50%);
  z-index: 1;
}
@media only screen and (min-width: 768px) {
  .treatment-flow--ceramic .treatment-flow__step:nth-child(odd) .treatment-flow__step-image::after {
    width: 2.625rem;
  }
}
.treatment-flow--ceramic .treatment-flow__step:nth-child(odd) .treatment-flow__step-info {
  width: 19rem;
  padding-left: 1.125rem;
  padding-right: 0;
}
@media only screen and (min-width: 768px) {
  .treatment-flow--ceramic .treatment-flow__step:nth-child(odd) .treatment-flow__step-info {
    width: 32.3125rem;
  }
}
.treatment-flow--ceramic .treatment-flow__step:nth-child(even) .treatment-flow__step-image {
  order: 2;
  padding: 0 0.625rem 0 2.875rem;
  justify-content: flex-end;
}
@media only screen and (min-width: 768px) {
  .treatment-flow--ceramic .treatment-flow__step:nth-child(even) .treatment-flow__step-image {
    justify-content: flex-start;
    padding-left: 4.1875rem;
  }
}
.treatment-flow--ceramic .treatment-flow__step:nth-child(even) .treatment-flow__step-image::after {
  content: "";
  position: absolute;
  top: var(--line-top, 20%);
  left: 1.6875rem;
  width: 2.25rem;
  height: 0.39375rem;
  background: linear-gradient(to right, #456CAD, #6AB5D4);
  transform: translateY(-50%);
  z-index: 1;
}
@media only screen and (min-width: 768px) {
  .treatment-flow--ceramic .treatment-flow__step:nth-child(even) .treatment-flow__step-image::after {
    width: 2.625rem;
  }
}
.treatment-flow--ceramic .treatment-flow__step:nth-child(even) .treatment-flow__step-info {
  order: 1;
  width: 17.75rem;
  padding-left: 0;
  padding-right: 0;
}
@media only screen and (min-width: 768px) {
  .treatment-flow--ceramic .treatment-flow__step:nth-child(even) .treatment-flow__step-info {
    width: 29.875rem;
  }
}

/**
 * Treatment Flow2 Section（根管治療LP - 外科的根管治療）
 * .treatment-flow--ceramic のレイアウトを継承し、ビジュアルをオーバーライド
 * グラデーション: #553676 → #CD656C
 */
.treatment-flow--surgical {
  background-color: #E8ECFF;
  padding-top: 2.5rem;
}
.treatment-flow--surgical::after {
  display: none;
}
@media only screen and (min-width: 768px) {
  .treatment-flow--surgical {
    background-color: #fff;
    padding: 3.75rem 0 4.625rem;
  }
}
.treatment-flow--surgical .treatment-flow__container {
  background-color: transparent;
  box-shadow: none;
  border-radius: 0;
  overflow: visible;
}
@media only screen and (min-width: 768px) {
  .treatment-flow--surgical .treatment-flow__container {
    background-color: #E8ECFF;
    border-radius: 1rem;
    box-shadow: 0 0.25rem 0.9rem rgba(0, 0, 0, 0.1);
    overflow: hidden;
  }
}
.treatment-flow--surgical .treatment-flow__header {
  padding: 0 1.75rem;
  margin-bottom: 0;
  text-align: left;
}
.treatment-flow--surgical .treatment-flow__header::before {
  display: none;
}
@media only screen and (min-width: 768px) {
  .treatment-flow--surgical .treatment-flow__header {
    padding: 2.8125rem 1.75rem 0;
  }
}
.treatment-flow--surgical .treatment-flow__title {
  color: #553676;
  background: linear-gradient(to right, #CD656C, #553676);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-family: "Noto Serif JP", serif;
  font-size: 3.75rem;
  font-style: normal;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.1171875rem;
  padding: 0;
  margin: 0 0 1.75rem;
  text-align: center;
}
@media only screen and (min-width: 768px) {
  .treatment-flow--surgical .treatment-flow__title {
    font-size: 3.75rem;
    margin-bottom: 1.5rem;
  }
}
.treatment-flow--surgical .treatment-flow__description {
  margin: 0 0 2rem;
  color: #3C3C3E;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.3125rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.2;
  text-align: justify;
}
@media only screen and (min-width: 768px) {
  .treatment-flow--surgical .treatment-flow__description {
    font-size: 1.3125rem;
    line-height: 1.57525rem;
    margin-bottom: 3rem;
  }
}
.treatment-flow--surgical .treatment-flow__subtitle-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 2rem;
}
@media only screen and (min-width: 768px) {
  .treatment-flow--surgical .treatment-flow__subtitle-wrap {
    margin-bottom: 3rem;
  }
}
.treatment-flow--surgical .treatment-flow__subtitle-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 23.75rem;
  height: 4.9375rem;
  border-radius: 2.46875rem;
  border: 2px solid transparent;
  background-image: linear-gradient(#fff, #fff), linear-gradient(to top, #CD656C, #553676);
  background-origin: padding-box, border-box;
  background-clip: padding-box, border-box;
}
.treatment-flow--surgical .treatment-flow__subtitle-btn span {
  color: #553676;
  background: linear-gradient(to right, #CD656C, #553676);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 2.25rem;
  font-weight: 400;
  line-height: 1;
}
.treatment-flow--surgical .treatment-flow__steps {
  margin-top: 2rem;
}
.treatment-flow--surgical .treatment-flow__steps::before {
  background: linear-gradient(to top, #553676, #CD656C);
}
@media only screen and (min-width: 768px) {
  .treatment-flow--surgical .treatment-flow__steps {
    margin-top: 3rem;
    padding-bottom: 2.9375rem;
  }
}
.treatment-flow--surgical .treatment-flow__step-number {
  background: linear-gradient(to top, #553676, #CD656C);
}
.treatment-flow--surgical .treatment-flow__step:nth-child(odd) .treatment-flow__step-image::after {
  background: linear-gradient(to right, #553676, #CD656C);
}
.treatment-flow--surgical .treatment-flow__step:nth-child(even) .treatment-flow__step-image::after {
  background: linear-gradient(to right, #553676, #CD656C);
}

/**
 * FAQ Section（根管治療LP）
 * モバイルファースト: ベース = モバイル（ceramic の @include media(om) 値 × 2）
 *                    @include media(m) = PC（ceramic のベース値 × 2）
 */
.faq {
  position: relative;
  padding: 4.25rem 0 5rem;
  background: #e4e8ed;
}
@media only screen and (min-width: 768px) {
  .faq {
    padding: 2.6875rem 0 7.3125rem;
  }
}
.faq__container {
  max-width: 70rem;
  margin: 0 auto;
  padding: 0 1.9375rem;
}
@media only screen and (min-width: 768px) {
  .faq__container {
    padding: 0 1.5rem;
  }
}
.faq__header {
  text-align: center;
  margin-bottom: 3.0625rem;
}
@media only screen and (min-width: 768px) {
  .faq__header {
    margin-bottom: 4.6875rem;
  }
}
.faq__title {
  position: relative;
  display: inline-block;
  margin: 0;
  color: #3C3C3E;
  font-family: "Noto Serif JP", serif;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
}
@media only screen and (min-width: 768px) {
  .faq__title {
    font-size: 2.9398125rem;
    letter-spacing: 0.091875rem;
  }
}
.faq__title::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -1.5rem;
  width: 5.4375rem;
  height: 0.1875rem;
  transform: translateX(-50%);
  background-color: #3C3C3E;
}
@media only screen and (min-width: 768px) {
  .faq__title::after {
    bottom: -1.375rem;
    width: 7.625rem;
  }
}
.faq__items {
  display: flex;
  flex-direction: column;
  gap: 3.5rem;
  max-width: 43.0625rem;
  margin: 0 auto;
}
@media only screen and (min-width: 768px) {
  .faq__items {
    gap: 4rem;
    max-width: 61.1845625rem;
  }
}
.faq__item {
  position: relative;
  overflow: visible;
}
@media only screen and (min-width: 768px) {
  .faq__item {
    width: 46.6875rem;
    margin: 0 auto;
  }
}
.faq__item::before {
  content: "";
  position: absolute;
  top: 2rem;
  left: 0;
  right: 0;
  bottom: 0;
  box-shadow: 0 0.5rem 0.625rem 0.375rem rgba(110, 101, 104, 0.22);
  pointer-events: none;
  z-index: 0;
}
@media only screen and (min-width: 768px) {
  .faq__item::before {
    top: 2.25rem;
  }
}
.faq__question {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 1.125rem;
  min-height: 2.9375rem;
  padding: 1.25rem 1.5rem;
  background: #0B2E5F;
  clip-path: polygon(0 0, 96.89% 0, 100% 44.03%, 100% 100%, 0 100%);
}
@media only screen and (min-width: 768px) {
  .faq__question {
    gap: 1.5rem;
    min-height: 4.164625rem;
    padding: 0.6875rem 2.25rem 0.6875rem 1.5625rem;
    align-items: flex-start;
  }
}
.faq__question-label {
  flex-shrink: 0;
  color: #fff;
  font-family: "Jost", sans-serif;
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1;
}
@media only screen and (min-width: 768px) {
  .faq__question-label {
    font-size: 2.25rem;
  }
}
.faq__question-text {
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.4375rem;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0.0028125rem;
}
@media only screen and (min-width: 768px) {
  .faq__question-text {
    font-size: 1.5625rem;
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: 0;
  }
}
.faq__answer {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  gap: 1.125rem;
  padding: 1.0625rem 2.9375rem 1.3125rem 1.5rem;
  background-color: #CADDF7;
}
@media only screen and (min-width: 768px) {
  .faq__answer {
    gap: 1.5rem;
    padding: 1.125rem 2.375rem 2rem 1.8125rem;
  }
}
.faq__answer-label {
  flex-shrink: 0;
  color: #0B2E5F;
  font-family: "Jost", sans-serif;
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1;
}
@media only screen and (min-width: 768px) {
  .faq__answer-label {
    font-size: 2.25rem;
  }
}
.faq__answer-text {
  color: #3C3C3E;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.2;
  text-align: justify;
}
@media only screen and (min-width: 768px) {
  .faq__answer-text {
    font-size: 1.35625rem;
    font-weight: 500;
    line-height: 1.2;
  }
}

/**
 * Risk Section（根管治療LP）
 * モバイルファースト: ベース = モバイル（ceramic の @include media(om) 値 × 2）
 *                    @include media(m) = PC（ceramic のベース値 × 2）
 */
.risk {
  padding: 3.67125rem 0 3.23375rem;
  background-color: #8A9AB6;
}
.risk__container {
  max-width: 43.25rem;
  margin: 0 auto;
  padding: 0;
}
@media only screen and (min-width: 768px) {
  .risk__container {
    max-width: 83.4175rem;
    padding: 0 1rem;
  }
}
.risk__content {
  background-color: #fff;
  border: 0.09375rem solid #6281B4;
  border-radius: 0.625rem;
  box-shadow: 0.3125rem 0.375rem 1rem rgba(110, 101, 104, 0.17);
  padding: 2.25rem 1.6875rem 4.4375rem;
}
@media only screen and (min-width: 768px) {
  .risk__content {
    padding: 1.875rem 0 3.125rem;
  }
}
.risk__title {
  position: relative;
  margin: 0 0 2.9375rem;
  color: #0B2E5F;
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.1125rem;
}
@media only screen and (min-width: 768px) {
  .risk__title {
    margin-bottom: 2.6875rem;
    font-size: 3rem;
    letter-spacing: 0.15rem;
  }
}
.risk__title::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -0.89125rem;
  width: 5.259875rem;
  height: 0.125rem;
  transform: translateX(-50%);
  background-color: #0B2E5F;
}
@media only screen and (min-width: 768px) {
  .risk__title::after {
    bottom: -1.8125rem;
    width: 9.8125rem;
  }
}
.risk__intro, .risk__footer {
  margin: 0;
  color: #3C3C3E;
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
}
.risk__intro {
  margin-bottom: 3.25rem;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 2.625rem;
  letter-spacing: 0.075rem;
}
@media only screen and (min-width: 768px) {
  .risk__intro {
    margin-bottom: 3.125rem;
    font-size: 2rem;
    line-height: 3.25rem;
    letter-spacing: 0.1125rem;
  }
}
.risk__list {
  width: min(100%, 39.875rem);
  margin: 0 auto 3.4375rem;
  padding: 0;
  list-style: none;
}
@media only screen and (min-width: 768px) {
  .risk__list {
    width: 74.75rem;
    margin-bottom: 2.375rem;
  }
}
.risk__item {
  position: relative;
  margin-bottom: 0;
  padding-left: 1.875rem;
  color: #3C3C3E;
  text-align: justify;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.4375rem;
  font-weight: 500;
  line-height: 2.625rem;
  letter-spacing: 0.071875rem;
}
.risk__item:last-child {
  margin-bottom: 0;
}
.risk__item::before {
  content: "・";
  position: absolute;
  top: 0;
  left: 0;
  color: #3C3C3E;
  font-size: 1em;
  line-height: inherit;
}
@media only screen and (min-width: 768px) {
  .risk__item {
    margin-bottom: 0.5rem;
    padding-left: 2.375rem;
    font-size: 1.875rem;
    line-height: 3.25rem;
    letter-spacing: 0.09375rem;
  }
}
.risk__footer {
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 2.625rem;
  letter-spacing: 0.075rem;
}
@media only screen and (min-width: 768px) {
  .risk__footer {
    font-size: 2rem;
    line-height: 3.25rem;
    letter-spacing: 0.1125rem;
  }
}

/**
 * Access Section（根管治療LP）
 * モバイルファースト: ベース = モバイル（ceramic の @include media(om) 値 × 2）
 *                    @include media(m) = PC（ceramic のベース値 × 2）
 */
.access {
  padding: 2rem 0 5.625rem;
  background: #fff;
  position: relative;
}
@media only screen and (min-width: 768px) {
  .access {
    padding: 4.5rem 0 4.375rem;
  }
}
.access__container {
  max-width: 62.5rem;
  margin: 0 auto;
  padding: 0 2.375rem;
}
@media only screen and (min-width: 768px) {
  .access__container {
    padding: 0 0 2rem;
  }
}
.access__header {
  text-align: center;
  margin-bottom: 4rem;
}
@media only screen and (min-width: 768px) {
  .access__header {
    margin-bottom: 5rem;
  }
}
.access__title {
  font-size: 3.2rem;
  font-weight: 700;
  color: #3C3C3E;
  line-height: 1.2;
  margin: 0;
  position: relative;
}
.access__title::after {
  content: "";
  position: absolute;
  bottom: -1rem;
  left: 50%;
  transform: translateX(-50%);
  width: 7.8rem;
  height: 0.25rem;
  background-color: #3C3C3E;
}
@media only screen and (min-width: 768px) {
  .access__title::after {
    bottom: -0.8rem;
    width: 9rem;
    height: 0.1875rem;
  }
}
.access__content.only-pc {
  display: none;
}
@media only screen and (min-width: 768px) {
  .access__content.only-pc {
    display: block;
  }
}
.access__float-layout {
  position: relative;
  overflow: hidden;
}
.access__map-float {
  float: right;
  width: 59%;
  margin-left: 1rem;
  margin-bottom: 1rem;
}
.access__map-float img {
  width: 100%;
  height: auto;
  border-radius: 0.5rem;
}
.access__clear {
  clear: both;
}
.access__content.only-sp {
  display: block;
}
@media only screen and (min-width: 768px) {
  .access__content.only-sp {
    display: none;
  }
}
.access__map {
  margin-bottom: 2rem;
  padding: 0 3.125rem;
}
@media only screen and (min-width: 768px) {
  .access__map {
    margin-bottom: 2rem;
    padding: 0 2rem;
  }
}
.access__map img {
  width: 100%;
  height: auto;
  border-radius: 0.5rem;
}
.access__train-section {
  margin: 0;
}
@media only screen and (min-width: 768px) {
  .access__train-section {
    margin: 2.5rem 0;
  }
}
.access__train-title {
  font-size: 2.6rem;
  font-weight: 700;
  color: #3C3C3E;
  margin-bottom: 1.6rem;
  display: flex;
  align-items: center;
}
@media only screen and (min-width: 768px) {
  .access__train-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }
}
.access__train-title::before {
  content: "●";
  color: #3C3C3E;
  margin-right: 0.5rem;
  font-size: 2.375rem;
}
.access__train-route {
  font-size: 2rem;
  color: #3C3C3E;
  line-height: 1.5;
  margin-bottom: 2.8125rem;
  font-weight: 500;
}
@media only screen and (min-width: 768px) {
  .access__train-route {
    font-size: 1.2rem;
    line-height: 1.4;
    margin-bottom: 1.25rem;
  }
}
.access__clinic-info {
  padding-top: 1rem;
}
@media only screen and (min-width: 768px) {
  .access__clinic-info {
    padding-top: 0;
  }
}
.access__info-row {
  display: flex;
  align-items: center;
  gap: 8rem;
  margin-bottom: 3.2rem;
}
@media only screen and (min-width: 768px) {
  .access__info-row {
    gap: 0;
    margin-bottom: 1.6rem;
  }
}
.access__info-row:last-child {
  margin-bottom: 0;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}
@media only screen and (min-width: 768px) {
  .access__info-row:last-child {
    flex-direction: row;
    align-items: center;
  }
}
@media only screen and (min-width: 768px) {
  .access__info-row.table .access__info-label {
    margin-right: 2.5rem;
    margin-top: -5rem;
  }
}
.access__info-label {
  background: #3C3C3E;
  color: #fff;
  font-size: 2rem;
  font-weight: 700;
  padding: 0;
  text-align: center;
  margin-right: 0;
  min-width: 11rem;
  height: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media only screen and (min-width: 768px) {
  .access__info-label {
    font-size: 1.2rem;
    padding: 0.3rem 0;
    height: auto;
    display: block;
    margin-right: 4rem;
    min-width: 6.5rem;
  }
}
.access__info-value {
  font-size: 2rem;
  color: #3C3C3E;
  line-height: 1.4;
  flex: 1;
  font-weight: 500;
}
@media only screen and (min-width: 768px) {
  .access__info-value {
    font-size: 1.2rem;
  }
}
.access__info-value.num {
  font-family: "Jost", sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
}
.access__schedule-table {
  border-collapse: collapse;
  margin-top: 0.5rem;
  font-size: 1.6rem;
}
@media only screen and (min-width: 768px) {
  .access__schedule-table {
    font-size: 0.9rem;
  }
}
.access__schedule-table tr {
  border-bottom: 0.0625rem solid #ddd;
}
.access__schedule-table th,
.access__schedule-table td {
  border: none;
  padding: 0.6rem 0.4rem;
  text-align: center;
  border-bottom: 0.0625rem solid #ddd;
}
@media only screen and (min-width: 768px) {
  .access__schedule-table th,
  .access__schedule-table td {
    padding: 0.5rem 0;
    border-bottom: 0.0625rem solid #ddd;
  }
}
.access__schedule-table th {
  background: none;
  font-weight: 700;
  font-size: 1.5rem;
  color: #3C3C3E;
}
@media only screen and (min-width: 768px) {
  .access__schedule-table th {
    font-size: 1.3rem;
  }
}
.access__schedule-table .time {
  background: none;
  color: #3C3C3E;
  font-family: "Jost", sans-serif;
  font-size: 1.6rem;
  font-weight: 500;
  white-space: nowrap;
  text-align: left;
}
@media only screen and (min-width: 768px) {
  .access__schedule-table .time {
    font-size: 1.4rem;
  }
}
.access__schedule-table .available {
  color: #3C3C3E;
  font-weight: 600;
  width: 4.6rem;
  font-size: 1.5rem;
  background: #fff;
}
@media only screen and (min-width: 768px) {
  .access__schedule-table .available {
    font-size: 1.3rem;
  }
}
.access__schedule-table .unavailable {
  color: #999;
  font-weight: 600;
  width: 4rem;
  font-size: 2rem;
}
@media only screen and (min-width: 768px) {
  .access__schedule-table .unavailable {
    font-size: 1.4rem;
  }
}
.access__schedule-table th:first-child,
.access__schedule-table td:first-child {
  width: 10rem;
}
@media only screen and (min-width: 768px) {
  .access__schedule-table th:first-child,
  .access__schedule-table td:first-child {
    width: 8rem;
  }
}
.access__schedule-table tr:last-child th,
.access__schedule-table tr:last-child td {
  border-bottom: none;
}
.access__google-map {
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  width: 99.5vw;
  height: 31.5rem;
  border: none;
  margin-top: 3rem;
}
@media only screen and (min-width: 768px) {
  .access__google-map {
    height: 22.5rem;
    margin-top: 2rem;
  }
}

/**
 * Footer Section（根管治療LP）
 * モバイルファースト: ベース = モバイル（ceramic の @include media(om) 値 × 2）
 *                    @include media(m) = PC（ceramic のベース値 × 2）
 * ボタン色はヘッダーに合わせる: tel=#c6ecf4 / web=#8A9AB6
 */
.footer-section {
  padding: 3rem 0 5rem;
  background: #0B2E5F;
  position: relative;
}
@media only screen and (min-width: 768px) {
  .footer-section {
    padding: 1.75rem 0;
  }
}
.footer-section__container {
  max-width: 62.5rem;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: column;
  gap: 1.5rem;
  padding: 0 2rem;
}
@media only screen and (min-width: 768px) {
  .footer-section__container {
    flex-direction: row;
    gap: 2rem;
    padding: 0;
  }
}
.footer-section__logo {
  display: none;
  flex-shrink: 0;
}
@media only screen and (min-width: 768px) {
  .footer-section__logo {
    display: block;
    width: 24.5rem;
  }
}
.footer-section__logo a {
  display: block;
}
@media (hover: hover) {
  .footer-section__logo a:hover {
    transform: translateY(-0.25rem);
    filter: drop-shadow(0 0.5rem 1rem rgba(0, 0, 0, 0.2));
  }
}
@media (hover: none) {
  .footer-section__logo a:active {
    transform: translateY(-0.25rem);
    filter: drop-shadow(0 0.5rem 1rem rgba(0, 0, 0, 0.2));
  }
}
.footer-section__logo-image {
  width: 100%;
}
.footer-section__logo-text {
  text-align: left;
  margin-bottom: 0;
  flex-shrink: 0;
  width: 34%;
}
@media only screen and (min-width: 768px) {
  .footer-section__logo-text {
    display: none;
  }
}
.footer-section__logo-text a {
  display: block;
}
@media (hover: hover) {
  .footer-section__logo-text a:hover {
    transform: translateY(-0.25rem);
    filter: drop-shadow(0 0.5rem 1rem rgba(0, 0, 0, 0.2));
  }
}
@media (hover: none) {
  .footer-section__logo-text a:active {
    transform: translateY(-0.25rem);
    filter: drop-shadow(0 0.5rem 1rem rgba(0, 0, 0, 0.2));
  }
}
.footer-section__logo-name {
  width: 100%;
  height: auto;
}
.footer-section__content {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
@media only screen and (min-width: 768px) {
  .footer-section__content {
    flex: 1;
    gap: 1.75rem;
  }
}
.footer-section__mobile-top-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
@media only screen and (min-width: 768px) {
  .footer-section__mobile-top-row {
    display: none;
  }
}
.footer-section__buttons {
  display: none;
}
@media only screen and (min-width: 768px) {
  .footer-section__buttons {
    display: flex;
    gap: 1rem;
    justify-content: space-between;
  }
}
.footer-section__buttons-mobile {
  display: flex;
  flex: 1;
  gap: 1rem;
  align-items: center;
}
@media only screen and (min-width: 768px) {
  .footer-section__buttons-mobile {
    display: none;
  }
}
.footer-section__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 1rem;
  border-radius: 0.5rem;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  min-height: 5rem;
  width: 100%;
}
@media only screen and (min-width: 768px) {
  .footer-section__btn {
    padding: 0.7rem 1.5rem;
    border-radius: 0.5rem;
    min-height: 3rem;
    width: auto;
  }
}
.footer-section__btn--tel {
  background-color: #c6ecf4;
  color: #fff;
  border: solid 0.375rem #fff;
  box-sizing: border-box;
  box-shadow: 0.25rem 0.25rem 0.5rem rgba(0, 0, 0, 0.3);
}
@media only screen and (min-width: 768px) {
  .footer-section__btn--tel {
    min-width: 16.5rem;
    border: solid 0.1875rem #fff;
    box-shadow: 0.125rem 0.125rem 0.4rem rgba(0, 0, 0, 0.3);
  }
}
@media (hover: hover) {
  .footer-section__btn--tel:hover {
    background: #fff;
    color: #c6ecf4;
  }
}
@media (hover: none) {
  .footer-section__btn--tel:active {
    background: #fff;
    color: #c6ecf4;
  }
}
.footer-section__btn--tel span {
  font-size: 1.375rem;
  color: #424242;
}
.footer-section__btn--tel span .kana {
  font-size: 1rem;
}
@media only screen and (min-width: 768px) {
  .footer-section__btn--tel span {
    font-size: 1.1rem;
  }
  .footer-section__btn--tel span .kana {
    font-size: inherit;
  }
}
.footer-section__btn--web {
  background: #8A9AB6;
  color: #fff;
  border: solid 0.375rem #fff;
  box-sizing: border-box;
  box-shadow: 0.25rem 0.25rem 0.5rem rgba(0, 0, 0, 0.3);
}
@media only screen and (min-width: 768px) {
  .footer-section__btn--web {
    min-width: 16.5rem;
    border: solid 0.1875rem #fff;
    box-shadow: 0.125rem 0.125rem 0.4rem rgba(0, 0, 0, 0.3);
  }
}
@media (hover: hover) {
  .footer-section__btn--web:hover {
    background: #fff;
    color: #8A9AB6;
    border-color: #8A9AB6;
  }
}
@media (hover: none) {
  .footer-section__btn--web:active {
    background: #fff;
    color: #8A9AB6;
    border-color: #8A9AB6;
  }
}
.footer-section__btn--line {
  background: #fff;
  color: #10773c;
  gap: 0.5rem;
  padding: 0.2rem;
  width: 4rem;
  height: 4.375rem;
  box-shadow: 0.25rem 0.25rem 0.5rem rgba(0, 0, 0, 0.3);
  border-radius: 0.3rem;
  min-height: auto;
}
.footer-section__btn--line .footer-section__btn-text {
  display: none;
}
@media only screen and (min-width: 768px) {
  .footer-section__btn--line {
    width: 21.5rem;
    height: auto;
    gap: 0.5rem;
    padding: 0.75rem 0;
    border: solid 0.0625rem #10773c;
    border-radius: 0.5rem;
    box-shadow: 0.125rem 0.125rem 0.4rem rgba(0, 0, 0, 0.3);
  }
  .footer-section__btn--line .footer-section__btn-text {
    display: inline;
    font-size: 1.8rem;
  }
}
@media (hover: hover) {
  .footer-section__btn--line:hover {
    background: #10773c;
    color: #fff;
  }
}
@media (hover: none) {
  .footer-section__btn--line:active {
    background: #10773c;
    color: #fff;
  }
}
.footer-section__btn-text {
  font-size: 1.4rem;
  white-space: nowrap;
}
@media only screen and (min-width: 768px) {
  .footer-section__btn-text {
    font-size: 1rem;
  }
}
.footer-section__line-section {
  display: none;
}
@media only screen and (min-width: 768px) {
  .footer-section__line-section {
    display: flex;
    justify-content: center;
  }
}
.footer-section__line-section-mobile {
  display: flex;
  flex-shrink: 0;
}
@media only screen and (min-width: 768px) {
  .footer-section__line-section-mobile {
    display: none;
  }
}
.footer-section__line-icon {
  width: 100%;
}
@media only screen and (min-width: 768px) {
  .footer-section__line-icon {
    width: 2.75rem;
  }
}
.footer-section__clinic-name {
  text-align: center;
  order: 3;
  margin-top: 1.5rem;
  width: 100%;
}
@media only screen and (min-width: 768px) {
  .footer-section__clinic-name {
    order: unset;
    margin-top: 0;
  }
}
.footer-section__clinic-text {
  font-size: 1.8rem;
  font-weight: 600;
  color: #fff;
  margin: 0;
  text-align: center;
}
@media only screen and (min-width: 768px) {
  .footer-section__clinic-text {
    font-size: 1.25rem;
    margin: -1.2rem 0 0 1rem;
    text-align: left;
  }
}
/*# sourceMappingURL=maps/style-root-canal.css.map */
