@charset "UTF-8";
/* 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: 0.9696969697vw !important;
  }
}
@media only screen and (min-width: 1600px) {
  html {
    font: size 16px !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;
  /* 英字用フォントを変更 */
}

/* 管理画面用のフォント設定を維持するためのクラス */
.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;
}*/
/**
 * 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;
  }
}

/**
 * ランディングページ専用スタイル
 * Elementorのヘッダー・フッターを非表示にする
 */
body.landing-page {
  margin: 0 !important;
  padding: 0 !important;
  min-height: 100vh;
}
body.landing-page [data-elementor-type=header] {
  display: none !important;
}
body.landing-page [data-elementor-type=footer] {
  display: none;
}
body.landing-page .elementor-location-header {
  display: none !important;
}
body.landing-page .elementor-location-footer {
  display: none !important;
}
body.landing-page #main {
  margin-top: 0 !important;
  padding-top: 0 !important;
}
body.landing-page #main {
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
}
body.landing-page .landing-page-main {
  width: 100%;
  margin: 0;
  padding: 0;
  min-height: 100vh;
}
body.landing-page .landing-page-main .container {
  max-width: 100%;
  margin: 0;
  padding: 0;
}
body.landing-page .landing-page-main .landing-page-content {
  width: 100%;
  margin: 0;
  padding: 0;
}

/**
 * ヘッダースタイル
 */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: transparent;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
  border-bottom: none;
  z-index: 100;
  transition: background 0.5s ease;
}
@media only screen and (max-width: 767.499px) {
  .header {
    background: #fff;
  }
}
.header.scrolled {
  background: rgba(255, 255, 255, 0.9);
}
@media only screen and (max-width: 767.499px) {
  .header.scrolled {
    background: #fff;
  }
}
.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;
}
@media only screen and (max-width: 767.499px) {
  .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;
  }
}
.header__logo {
  transition: opacity 0.5s ease, visibility 0.5s ease, width 0.5s ease, margin 0.5s ease;
  flex-shrink: 0;
}
@media only screen and (max-width: 767.499px) {
  .header__logo {
    padding-top: 0.5rem;
  }
}
.header__container {
  max-width: 75rem;
  margin: 0 auto;
  padding: 0 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 5rem;
  gap: 2rem;
  transition: justify-content 0.5s ease, gap 0.5s ease;
}
@media only screen and (max-width: 767.499px) {
  .header__container {
    gap: 0.5rem;
    height: auto;
    flex-direction: column;
    padding: 0.5rem 1rem;
  }
}
.header__logo img {
  height: auto;
  width: 17.9375rem;
  transition: width 0.5s ease;
}
@media only screen and (max-width: 767.499px) {
  .header__logo img {
    width: 20rem;
  }
}
.header__buttons {
  display: flex;
  align-items: center;
  gap: 1.71875rem;
  transition: gap 0.5s ease;
}
@media only screen and (max-width: 767.499px) {
  .header__buttons {
    display: none;
  }
}
.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;
}
@media only screen and (max-width: 767.499px) {
  .header__btn {
    padding: 0.375rem 0.2rem;
    font-size: 0.75rem;
    min-height: 2.5rem;
    min-width: 6rem;
  }
}
.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;
  }
}
@media only screen and (max-width: 767.499px) {
  .header__btn--line {
    display: none;
  }
}
.header__btn--line .header__btn-icon {
  width: 2.8125rem;
}
@media only screen and (max-width: 767.499px) {
  .header__btn--line .header__btn-icon {
    width: 1.25rem;
    height: 1.25rem;
  }
}
.header__btn--line .header__btn-text {
  text-align: center;
  font-size: 0.875rem;
}
@media only screen and (max-width: 767.499px) {
  .header__btn--line .header__btn-text {
    font-size: 0.6rem;
  }
}
.header__btn--tel {
  background: #f78e99;
  color: #fff;
  /* flex-direction: column; */
  gap: 1rem;
  width: 18.4375rem;
  height: 3.75rem;
  border: solid 0.125rem #fff;
  box-sizing: border-box;
}
@media only screen and (max-width: 767.499px) {
  .header__btn--tel {
    display: none;
  }
}
@media (hover: hover) {
  .header__btn--tel:hover {
    background: #fff;
    color: #f78e99;
  }
}
@media (hover: none) {
  .header__btn--tel:active {
    background: #fff;
    color: #f78e99;
  }
}
.header__btn--tel .header__btn-label {
  font-size: 0.875rem;
  font-weight: 400;
}
@media only screen and (max-width: 767.499px) {
  .header__btn--tel .header__btn-label {
    font-size: 0.625rem;
  }
}
.header__btn--tel .header__btn-number {
  font-size: 1.6rem;
  font-weight: 400;
}
@media only screen and (max-width: 767.499px) {
  .header__btn--tel .header__btn-number {
    font-size: 0.875rem;
  }
}
.header__btn--web {
  background: #2094b8;
  color: #fff;
  width: 11.4375rem;
  height: 3.75rem;
  border: solid 0.125rem #fff;
}
@media only screen and (max-width: 767.499px) {
  .header__btn--web {
    display: none;
  }
}
@media (hover: hover) {
  .header__btn--web:hover {
    background: #fff;
    color: #2094b8;
  }
}
@media (hover: none) {
  .header__btn--web:active {
    background: #fff;
    color: #2094b8;
  }
}
.header__btn--web .header__btn-text {
  text-align: center;
  font-size: 1.1rem;
}
@media only screen and (max-width: 767.499px) {
  .header__btn--web .header__btn-text {
    font-size: 0.6rem;
  }
}
@media only screen and (max-width: 767.499px) {
  .header__mobile-top-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    margin-top: 0;
    transition: justify-content 0.5s ease;
  }
}
.header__logo-text {
  width: 34%;
  flex-shrink: 0;
  transition: opacity 0.5s ease, visibility 0.5s ease, width 0.5s ease, height 0.5s ease;
}
@media only screen and (max-width: 767.499px) {
  .header__logo-text {
    width: 30%;
  }
}
.header__logo-name {
  width: 100%;
  height: auto;
}
@media only screen and (max-width: 767.499px) {
  .header__logo-name {
    font-size: 0.9em;
  }
}
@media only screen and (max-width: 767.499px) {
  .header__buttons-mobile {
    display: flex;
    gap: 0.5rem;
    align-items: center;
  }
}
@media only screen and (max-width: 767.499px) {
  .header__line-section-mobile {
    display: flex;
    flex-shrink: 0;
  }
}
@media only screen and (max-width: 767.499px) {
  .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: var(--bg-peach);
  color: white;
  border: solid 0.1875rem #fff;
  box-shadow: 0.125rem 0.125rem 0.25rem rgba(0, 0, 0, 0.3);
  flex: none;
  height: 2.2rem;
  width: 5rem;
  border-radius: 0.25rem;
}
@media (hover: hover) {
  .header__btn-mobile--tel:hover {
    background: #fff;
    color: var(--bg-peach);
  }
}
@media (hover: none) {
  .header__btn-mobile--tel:active {
    background: #fff;
    color: var(--bg-peach);
  }
}
.header__btn-mobile--tel .header__btn-text {
  font-size: 0.575rem;
}
.header__btn-mobile--tel .header__btn-text .kana {
  font-size: 0.5rem;
}
.header__btn-mobile--web {
  background: var(--btn-blue);
  color: white;
  border: solid 0.1875rem #fff;
  box-shadow: 0.125rem 0.125rem 0.25rem rgba(0, 0, 0, 0.3);
  flex: none;
  height: 2.2rem;
  width: 4rem;
  border-radius: 0.25rem;
}
@media (hover: hover) {
  .header__btn-mobile--web:hover {
    background: #fff;
    color: var(--btn-blue);
  }
}
@media (hover: none) {
  .header__btn-mobile--web:active {
    background: #fff;
    color: var(--btn-blue);
  }
}
.header__btn-mobile--web .header__btn-text {
  font-size: 0.575rem;
}
.header__btn-mobile--line {
  background: #fff;
  color: #10773c;
  box-shadow: 0.125rem 0.125rem 0.25rem rgba(0, 0, 0, 0.3);
  border-radius: 0.15rem;
  width: 2rem;
  height: 2.2rem;
  padding: 0.1rem;
}
@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;
}

/**
 * ハンバーガーメニュースタイル
 */
.hamburger-btn {
  display: none;
  position: relative;
  width: 2.5rem;
  height: 2.5rem;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 101;
  flex-shrink: 0;
}
@media only screen and (max-width: 767.499px) {
  .hamburger-btn {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0.25rem;
  }
}
.hamburger-btn__lines {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  align-items: center;
}
.hamburger-btn__line {
  display: block;
  width: 1.25rem;
  height: 0.125rem;
  background-color: var(--bg-peach);
  transition: all 0.3s ease;
  border-radius: 0.0625rem;
}
.hamburger-btn__text {
  font-size: 0.5rem;
  font-weight: 500;
  color: var(--bg-peach);
  line-height: 1;
  transition: all 0.3s ease;
}
.hamburger-btn.is-active .hamburger-btn__lines {
  margin-bottom: 0.125rem;
}
.hamburger-btn.is-active .hamburger-btn__line:nth-child(1) {
  transform: translateY(0.375rem) 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.375rem) rotate(-45deg);
}

.hamburger-menu {
  display: none;
  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 (max-width: 767.499px) {
  .hamburger-menu {
    display: block;
  }
}
.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: var(--bg-light-peach);
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  padding: 5rem 1rem 2rem;
  -webkit-overflow-scrolling: touch;
}
.hamburger-menu__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.hamburger-menu__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  text-decoration: none;
  color: var(--text-color);
  background: #fff;
  transition: all 0.3s ease;
  position: relative;
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.1);
}
@media (hover: hover) {
  .hamburger-menu__link:hover {
    background-color: rgba(247, 142, 153, 0.05);
    box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.15);
  }
}
@media (hover: none) {
  .hamburger-menu__link:active {
    background-color: rgba(247, 142, 153, 0.05);
    box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.15);
  }
}
.hamburger-menu__link-text {
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.4;
  flex: 1;
}
.hamburger-menu__arrow {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0.3125rem 0 0.3125rem 0.5rem;
  border-color: transparent transparent transparent var(--bg-peach);
  flex-shrink: 0;
  margin-left: 1rem;
}

/**
 * ヒーローセクションスタイル
 */
.hero {
  position: relative;
  height: 56.125rem;
  display: flex;
  align-items: stretch;
}
@media only screen and (max-width: 767.499px) {
  .hero {
    height: 45rem;
  }
}
.hero__container {
  position: relative;
  z-index: 10;
  margin: 0 auto;
  width: 100%;
}
@media only screen and (max-width: 767.499px) {
  .hero__container {
    padding: 6.25rem 0 2.5rem;
  }
}
.hero__background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 56.125rem;
  z-index: 1;
}
@media only screen and (max-width: 767.499px) {
  .hero__background {
    height: 45rem;
  }
}
.hero__background .hero__bg-image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}
.hero__catchphrases {
  padding-top: 8rem;
  max-width: 63rem;
  margin: auto;
}
@media only screen and (max-width: 767.499px) {
  .hero__catchphrases {
    padding-top: 0;
    padding-left: 0.9375rem;
    margin-top: -1.4rem;
  }
}
.hero__catchphrase {
  margin-bottom: 1.7rem;
}
@media only screen and (max-width: 767.499px) {
  .hero__catchphrase {
    margin-bottom: 0.5rem;
  }
}
.hero__catchphrase-text {
  display: inline-block;
  background: #fff;
  color: var(--text-color);
  border: 0.1875rem solid #f78d99;
  box-sizing: border-box;
  font-size: 2.6rem;
  font-weight: 600;
  white-space: nowrap;
  padding: 0 3.5rem;
  text-shadow: 0.125rem 0.125rem 0.25rem rgba(0, 0, 0, 0.2);
  box-shadow: 0.125rem 0.125rem 0.25rem rgba(0, 0, 0, 0.3);
}
.hero__catchphrase-text span {
  color: #f78d99;
}
@media only screen and (max-width: 767.499px) {
  .hero__catchphrase-text {
    font-size: 1.8rem;
    padding: 0 2rem;
    text-shadow: 0.0625rem 0.0625rem 0.125rem rgba(0, 0, 0, 0.3);
    width: 16rem;
    text-align: center;
    height: 3rem;
    line-height: 2.5rem;
  }
}
.hero__catchphrase-text.second {
  font-size: 2.4rem;
  padding: 0 2.5rem;
}
@media only screen and (max-width: 767.499px) {
  .hero__catchphrase-text.second {
    font-size: 1.6rem;
    padding: 0 !important;
    text-shadow: 0.0625rem 0.0625rem 0.125rem rgba(0, 0, 0, 0.3);
  }
}
.hero__catchphrase-text.second span {
  font-size: 2.6rem;
}
@media only screen and (max-width: 767.499px) {
  .hero__catchphrase-text.second span {
    font-size: 1.8rem;
  }
}
.hero__content {
  padding-top: 12rem;
}
@media only screen and (max-width: 767.499px) {
  .hero__content {
    padding-top: 20rem;
  }
}
@media only screen and (min-width: 768px) {
  .hero__wrap {
    max-width: 58rem;
    margin: auto;
  }
}
.hero__main-message {
  position: relative;
  z-index: 15;
  background: rgba(255, 192, 203, 0.2);
  -webkit-backdrop-filter: blur(0.125rem);
  backdrop-filter: blur(0.125rem);
  padding: 2rem 1.5rem 3.5rem;
  box-shadow: 0 0.1rem 0.02rem rgba(255, 182, 193, 0.2), 0 0.25rem 0.75rem rgba(255, 140, 153, 0.1), 0 0.5rem 1rem rgba(139, 69, 19, 0.1);
}
@media only screen and (max-width: 767.499px) {
  .hero__main-message {
    padding: 0 1rem;
    height: 9rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}
.hero__main-message::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(253, 237, 236, 0.64);
  z-index: -1;
}
.hero__title {
  position: relative;
  font-size: 4.3125rem;
  font-weight: bold;
  color: var(--text-color);
  line-height: 1.3;
  margin-top: 1.5rem;
  margin-bottom: 0;
  text-shadow: 0 0 0.25rem rgb(255, 255, 255), 0 0 0.5rem rgb(255, 255, 255), 0 0 1rem rgb(255, 255, 255), 0 0 1.5rem rgb(255, 255, 255), 0 0 2rem rgb(255, 255, 255);
  display: inline-block;
}
.hero__title span {
  font-size: 4rem;
}
@media only screen and (max-width: 767.499px) {
  .hero__title span {
    font-size: 1.8rem;
  }
}
@media only screen and (max-width: 767.499px) {
  .hero__title {
    font-size: 2.1rem;
    gap: 0.9375rem;
    margin-top: 1rem;
    margin-bottom: 0.5rem;
  }
}
.hero__teeth-icon {
  position: absolute;
  bottom: -4rem;
  right: -3rem;
  width: 9.75rem;
  z-index: -1;
}
@media only screen and (max-width: 767.499px) {
  .hero__teeth-icon {
    width: 4.5rem;
    bottom: -2rem;
    right: -1rem;
  }
}
.hero__subtitle {
  font-size: 2.7rem;
  font-weight: bold;
  color: var(--text-color);
  line-height: 1.4;
  letter-spacing: 0.02em;
  text-shadow: 0 0 0.25rem rgb(255, 255, 255), 0 0 0.5rem rgb(255, 255, 255), 0 0 1rem rgb(255, 255, 255), 0 0 1.5rem rgb(255, 255, 255), 0 0 2rem rgb(255, 255, 255);
}
.hero__subtitle span {
  font-size: 2.3rem;
}
@media only screen and (max-width: 767.499px) {
  .hero__subtitle span {
    font-size: 0.9rem;
  }
}
@media only screen and (max-width: 767.499px) {
  .hero__subtitle {
    font-size: 1.3rem;
  }
}

/**
 * 口腔健康チェックセクションスタイル
 */
.health-check {
  position: relative;
  padding: 0;
  background: var(--bg-color);
}
@media only screen and (max-width: 767.499px) {
  .health-check {
    padding: 0;
  }
}
.health-check__container {
  max-width: 65.4375rem;
  margin: 0 auto;
  padding: 0 1.25rem;
  filter: drop-shadow(0 0.5rem 2rem rgba(0, 0, 0, 0.25));
  position: relative;
  z-index: 1;
}
@media only screen and (max-width: 767.499px) {
  .health-check__container {
    padding: 0 1rem;
    filter: drop-shadow(0 0.25rem 1rem rgba(0, 0, 0, 0.2));
  }
}
.health-check__header {
  position: absolute;
  top: 4.8rem;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  z-index: 10;
  width: 100%;
}
@media only screen and (max-width: 767.499px) {
  .health-check__header {
    top: 2.5rem;
  }
}
.health-check__title {
  position: relative;
  display: inline-block;
  margin: 0 auto 1.5rem;
}
@media only screen and (max-width: 767.499px) {
  .health-check__title {
    margin-bottom: 3rem;
    margin-top: -1rem;
    width: 100%;
  }
}
.health-check__title-text {
  position: absolute;
  display: block;
  width: 67.4375rem;
  padding: 2.2rem 4rem;
  background: var(--bg-peach);
  color: #fff;
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.15);
  z-index: 15;
  letter-spacing: -0.01em;
  line-height: 0.9;
  right: -33.5rem;
  /* left: 1rem; */
}
.health-check__title-text span.first {
  font-size: 2.3rem;
}
@media only screen and (max-width: 767.499px) {
  .health-check__title-text span.first {
    font-size: 1rem;
  }
}
.health-check__title-text span.second {
  font-size: 1.8rem;
  font-weight: 400;
}
@media only screen and (max-width: 767.499px) {
  .health-check__title-text span.second {
    font-size: 0.875rem;
  }
}
@media only screen and (max-width: 767.499px) {
  .health-check__title-text {
    padding: 0.875rem 2.9rem;
    font-size: 1.25rem;
    right: 0.5%;
    /* min-width: 23rem; */
    width: 99%;
    top: 0;
  }
}
.health-check__title-text::before, .health-check__title-text::after {
  content: "";
  position: absolute;
  top: 100%;
  width: 0;
  height: 0;
  border-style: solid;
  z-index: 15;
}
.health-check__title-text::before {
  left: 0;
  border-width: 0 2rem 2rem 0;
  border-color: transparent #b46060;
}
@media only screen and (max-width: 767.499px) {
  .health-check__title-text::before {
    border-width: 0 1rem 1rem 0;
  }
}
.health-check__title-text::after {
  right: 0;
  border-width: 0 0 2rem 2rem;
  border-color: transparent #b46060;
}
@media only screen and (max-width: 767.499px) {
  .health-check__title-text::after {
    border-width: 0 0 1rem 1rem;
  }
}
.health-check__title::before {
  left: -2rem;
}
@media only screen and (max-width: 767.499px) {
  .health-check__title::before {
    left: -1.5rem;
  }
}
.health-check__title::after {
  right: -2rem;
}
@media only screen and (max-width: 767.499px) {
  .health-check__title::after {
    right: -1.5rem;
  }
}
.health-check__content {
  background: #fff;
  padding: 17rem 2.5rem 11rem 2.5rem;
  margin-top: 0;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 8rem), 50% 100%, 0 calc(100% - 8rem));
}
@media only screen and (max-width: 767.499px) {
  .health-check__content {
    padding: 7rem 1.25rem 5rem 1.25rem;
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 3rem), 50% 100%, 0 calc(100% - 3rem));
  }
}
.health-check__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 3rem;
}
@media only screen and (max-width: 767.499px) {
  .health-check__list {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}
.health-check__column {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
@media only screen and (max-width: 767.499px) {
  .health-check__column {
    gap: 1rem;
  }
}
.health-check__item {
  position: relative;
  display: flex;
  align-items: flex-start;
}
@media only screen and (max-width: 767.499px) {
  .health-check__item {
    padding-left: 0;
  }
}
.health-check__label {
  position: relative;
  padding-left: 2.25rem;
  display: inline-block;
  font-size: 1.2rem;
  line-height: 2.1;
  color: var(--text-color);
}
@media only screen and (max-width: 767.499px) {
  .health-check__label {
    padding-left: 2rem;
    font-size: 0.875rem;
    line-height: 1.5;
  }
}
.health-check__label::before {
  content: "";
  position: absolute;
  left: -0.2rem;
  top: 0.125rem;
  width: 2.375rem;
  height: 2.375rem;
  background-image: url("../../../../lp/assets/img/page/health-check/check.png");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
@media only screen and (max-width: 767.499px) {
  .health-check__label::before {
    width: 1.25rem;
    height: 1.25rem;
    top: 0.0625rem;
  }
}
.health-check__result-text {
  text-align: center;
  font-size: 1.25rem;
  font-weight: bold;
  color: #FF8FA3;
  margin: 0;
}
@media only screen and (max-width: 767.499px) {
  .health-check__result-text {
    font-size: 1.125rem;
  }
}

/**
 * チェック結果診断セクションスタイル
 */
.age-program {
  position: relative;
  padding: 9.5rem 0 10rem;
  margin-top: -8rem;
  background-image: url("../../../../lp/assets/img/page/age/background.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
@media only screen and (max-width: 767.499px) {
  .age-program {
    padding: 4rem 0 3.2rem;
    margin-top: -3rem;
  }
}
.age-program__container {
  max-width: 75rem;
  margin: 0 auto;
  padding: 0 1.25rem;
}
@media only screen and (max-width: 767.499px) {
  .age-program__container {
    padding: 0 0.5rem;
  }
}
.age-program__title {
  text-align: center;
  font-size: 2.6rem;
  font-weight: bold;
  color: var(--text-color);
  margin-bottom: 4rem;
  letter-spacing: 0.05em;
}
@media only screen and (max-width: 767.499px) {
  .age-program__title {
    font-size: 1.2rem;
    margin-bottom: 1.8rem;
  }
}
.age-program__cards {
  display: flex;
  justify-content: center;
  gap: 4rem;
  flex-wrap: wrap;
}
@media only screen and (max-width: 767.499px) {
  .age-program__cards {
    gap: 0.3rem;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: stretch;
    justify-content: space-between;
  }
  .age-program__cards .age-program__card {
    width: calc(33.333% - 0.2rem);
    margin-bottom: 0;
  }
}
.age-program__card {
  background: var(--bg-peach);
  border-radius: 0.7rem;
  min-width: 18rem;
  max-width: 20rem;
  position: relative;
  overflow: hidden;
}
@media only screen and (max-width: 767.499px) {
  .age-program__card {
    min-width: auto;
    max-width: none;
    box-shadow: 0 0.5rem 1.5rem rgba(255, 105, 135, 0.25);
  }
}
.age-program__card--warning {
  background: var(--bg-peach);
}
.age-program__card--danger {
  background: var(--bg-peach);
}
.age-program__card-header {
  position: relative;
  padding: 1.5rem 1.5rem 0.5rem;
}
.age-program__card-header.first {
  padding-bottom: 4.4rem;
}
@media only screen and (max-width: 767.499px) {
  .age-program__card-header.first {
    padding-bottom: 1.7rem;
  }
}
@media only screen and (max-width: 767.499px) {
  .age-program__card-header {
    padding: 0.8rem 0.5rem 0.4rem;
  }
}
.age-program__number {
  display: inline-block;
  color: #FFFFFF;
  font-size: 9.5rem;
  font-weight: bold;
  line-height: 1;
  text-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.1);
  position: relative;
}
@media only screen and (max-width: 767.499px) {
  .age-program__number {
    font-size: 3rem;
    padding-left: 0;
    text-align: center;
    width: 100%;
  }
}
.age-program__unit {
  font-size: 4.5rem;
  font-weight: bold;
  margin-left: -1.3rem;
  margin-top: -0.5rem;
}
@media only screen and (max-width: 767.499px) {
  .age-program__unit {
    font-size: 1.7rem;
    margin-left: -0.3rem;
    margin-top: -0.3rem;
  }
}
.age-program__sublabel {
  display: block;
  color: #fff;
  font-size: 3rem;
  margin-top: -0.9rem;
  font-weight: bold;
  text-align: center;
}
@media only screen and (max-width: 767.499px) {
  .age-program__sublabel {
    font-size: 1.1rem;
    margin-top: -0.5rem;
  }
}
.age-program__card-content {
  padding: 2rem 0;
  background: #fff;
}
@media only screen and (max-width: 767.499px) {
  .age-program__card-content {
    padding: 1rem 0.5rem;
  }
}
.age-program__result-text {
  color: var(--bg-peach);
  font-size: 1.7rem;
  line-height: 1.2;
  font-weight: 700;
  margin: 0;
  text-align: center;
}
@media only screen and (max-width: 767.499px) {
  .age-program__result-text {
    font-size: 0.65rem;
    line-height: 1.3;
  }
}

/**
 * 予防フロー図セクションスタイル
 */
.prevention-flow {
  position: relative;
  padding: 4rem 0 7rem;
  background: #fff;
  z-index: 1;
}
@media only screen and (max-width: 767.499px) {
  .prevention-flow {
    padding: 1.8rem 0 3rem;
  }
}
.prevention-flow__container {
  max-width: 75rem;
  margin: 0 auto;
  padding: 0 1.25rem;
}
@media only screen and (max-width: 767.499px) {
  .prevention-flow__container {
    padding: 0 1rem;
  }
}
.prevention-flow__image {
  text-align: center;
}
.prevention-flow__img {
  width: 42.5625rem;
  height: auto;
  max-width: 100%;
}
@media only screen and (max-width: 767.499px) {
  .prevention-flow__img {
    width: 100%;
  }
}

/**
 * ドクターメッセージセクションスタイル
 */
.doctor {
  position: relative;
  padding: 2.7rem 0 5.2rem;
  background: var(--btn-blue);
}
@media only screen and (max-width: 767.499px) {
  .doctor {
    padding: 1.5rem 0 3rem;
  }
}
.doctor::before {
  content: "";
  position: absolute;
  top: -4.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: 25rem;
  height: 24rem;
  background: var(--btn-blue);
  border-radius: 50%;
  z-index: 1;
}
@media only screen and (max-width: 767.499px) {
  .doctor::before {
    top: -2rem;
    width: 12rem;
    height: 10rem;
  }
}
.doctor__container {
  max-width: 75rem;
  margin: 0 auto;
  padding: 0 1.25rem;
  position: relative;
  z-index: 2;
}
@media only screen and (max-width: 767.499px) {
  .doctor__container {
    padding: 0 0.5rem;
  }
}
.doctor__message-box {
  background: #FFFFFF;
  border-radius: 1.5rem;
  padding: 3rem;
  padding-bottom: 4.5rem;
  box-shadow: 0 0.5rem 2rem rgba(0, 0, 0, 0.15);
  max-width: 65rem;
  width: 100%;
  margin: auto;
  position: relative;
}
@media only screen and (max-width: 767.499px) {
  .doctor__message-box {
    padding: 2.5rem 1rem 3rem;
    border-radius: 0.5rem;
  }
}
.doctor__message-box::before {
  content: "";
  position: absolute;
  top: 0.8rem;
  left: 0.8rem;
  right: 0.8rem;
  bottom: 0.8rem;
  border: 0.25rem solid var(--btn-blue);
  border-radius: 1rem;
  pointer-events: none;
}
@media only screen and (max-width: 767.499px) {
  .doctor__message-box::before {
    top: 0.25rem;
    left: 0.25rem;
    right: 0.25rem;
    bottom: 0.25rem;
    border-radius: 0.5rem;
    border: 0.125rem solid var(--btn-blue);
  }
}
.doctor__header {
  text-align: center;
  margin-bottom: 3rem;
}
@media only screen and (max-width: 767.499px) {
  .doctor__header {
    margin-bottom: 1.3rem;
  }
}
.doctor__title {
  font-size: 2.5rem;
  font-weight: bold;
  color: #fff;
  line-height: 1.2;
  letter-spacing: 0.07em;
  margin: 0;
}
.doctor__title span {
  font-size: 2.3rem;
  color: #fff;
}
@media only screen and (max-width: 767.499px) {
  .doctor__title {
    font-size: 1.25rem;
    line-height: 1.3;
  }
  .doctor__title span {
    font-size: 1.1rem;
    color: #fff;
  }
}
.doctor__message-content {
  padding: 0 1rem;
}
@media only screen and (max-width: 767.499px) {
  .doctor__message-content {
    padding: 0;
  }
}
.doctor__question {
  text-align: center;
  padding-top: 2rem;
  font-size: 2.2rem;
  font-weight: 500;
  margin-bottom: 2rem;
  line-height: 1.35;
  letter-spacing: 0.07em;
}
.doctor__question span {
  font-size: 1.9rem;
}
@media only screen and (max-width: 767.499px) {
  .doctor__question {
    font-size: 1.15rem;
    margin-bottom: 0.75rem;
    line-height: 1.4;
    letter-spacing: -0.01rem;
    padding-top: 0;
    white-space: nowrap;
  }
  .doctor__question span {
    font-size: 1.25rem;
  }
}
@media only screen and (max-width: 767.499px) and (max-width: 767.499px) {
  .doctor__question span {
    font-size: 1rem;
  }
}
.doctor__profile {
  display: flex;
  gap: 4.5rem;
  align-items: flex-start;
}
@media only screen and (max-width: 767.499px) {
  .doctor__profile {
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
  }
}
.doctor__image {
  flex-shrink: 0;
  width: 24rem;
  padding-left: 4rem;
  padding-top: 0.5rem;
}
@media only screen and (max-width: 767.499px) {
  .doctor__image {
    width: 12rem;
    padding-left: 0;
  }
}
.doctor__image img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  -o-object-fit: cover;
  object-fit: cover;
  box-shadow: 0 0.25rem 1rem rgba(0, 0, 0, 0.1);
}
.doctor__info {
  flex: 1;
}
@media only screen and (max-width: 767.499px) {
  .doctor__info {
    text-align: center;
  }
}
.doctor__name {
  font-size: 1.6rem;
  font-weight: 700;
  padding-top: 2rem;
  text-align: center;
}
@media only screen and (max-width: 767.499px) {
  .doctor__name {
    font-size: 1.125rem;
    padding-top: 0.5rem;
  }
}
.doctor__messages {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
@media only screen and (max-width: 767.499px) {
  .doctor__messages {
    gap: 1.9rem;
  }
}
.doctor__message {
  font-size: 1.15rem;
  font-weight: 500;
  line-height: 1.45;
  text-align: justify;
  margin: 0;
  padding-right: 1.5rem;
  letter-spacing: 0.06em;
}
@media only screen and (max-width: 767.499px) {
  .doctor__message {
    font-size: 0.9rem;
    line-height: 1.78;
    text-align: left;
    padding-right: 0;
  }
}

/**
 * 3つのポイントセクション
 */
.three-points {
  background-color: var(--bg-peach);
  height: 14.2rem;
  position: relative;
  overflow: visible;
}
@media only screen and (max-width: 767.499px) {
  .three-points {
    padding: 0 0 1.5rem;
    height: auto;
    margin-bottom: -1rem;
  }
}
.three-points__container {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 75rem;
  margin: 0 auto;
  padding: 0 1.25rem;
  position: relative;
}
@media only screen and (max-width: 767.499px) {
  .three-points__container {
    flex-direction: column;
    gap: 2rem;
    padding: 0 0.9375rem;
  }
}
.three-points__icon {
  position: absolute;
  bottom: -3rem;
  z-index: 10;
}
.three-points__icon--left {
  left: 16%;
  top: 10%;
}
@media only screen and (max-width: 767.499px) {
  .three-points__icon--left {
    left: 1%;
    top: 28%;
  }
}
.three-points__icon--right {
  right: 15.5%;
  top: 10%;
}
@media only screen and (max-width: 767.499px) {
  .three-points__icon--right {
    right: 1%;
    top: 28%;
  }
}
.three-points__icon img {
  width: 10.3rem;
  height: auto;
}
@media only screen and (max-width: 767.499px) {
  .three-points__icon img {
    width: 4.6rem;
  }
}
.three-points__title {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin: 0 auto;
}
@media only screen and (max-width: 767.499px) {
  .three-points__title {
    gap: 0.25rem;
  }
}
.three-points__subtitle {
  font-size: 2.8rem;
  font-weight: 700;
  color: #fff;
  text-align: center;
  line-height: 1.4;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-top: 1rem;
}
@media only screen and (max-width: 767.499px) {
  .three-points__subtitle {
    font-size: 1.3rem;
    padding-top: 0.5rem;
  }
}
.three-points__subtitle-em {
  font-size: 2.3rem;
}
@media only screen and (max-width: 767.499px) {
  .three-points__subtitle-em {
    font-size: 1.2rem;
  }
}
.three-points__number {
  font-size: 3.5rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0.25rem;
  margin-bottom: -0.2rem;
}
@media only screen and (max-width: 767.499px) {
  .three-points__number {
    font-size: 1.6rem;
    margin-bottom: -0.15rem;
  }
}
.three-points__main-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
}
.three-points__point-char {
  display: inline-block;
  width: 6.2rem;
  height: 6.2rem;
  background-color: #fffbbd;
  display: flex;
  color: #054f66;
  font-size: 3.7rem;
  font-weight: 700;
  text-align: center;
  line-height: 5rem;
  margin: 0 0.125rem;
  text-shadow: 0.0625rem 0 0 #054f66, -0.0625rem 0 0 #054f66, 0 0.0625rem 0 #054f66, 0 -0.0625rem 0 #054f66, 0.0625rem 0.0625rem 0 #054f66, -0.0625rem -0.0625rem 0 #054f66, 0.0625rem -0.0625rem 0 #054f66, -0.0625rem 0.0625rem 0 #054f66;
  align-items: center;
  justify-content: center;
}
@media only screen and (max-width: 767.499px) {
  .three-points__point-char {
    width: 3rem;
    height: 3rem;
    font-size: 1.7rem;
    font-weight: 900;
    line-height: 3rem;
    font-family: "Noto Sans Condensed";
    text-shadow: none;
  }
}

/**
 * 理由セクション
 */
.reasons {
  padding: 4.5rem 0 6rem;
  position: relative;
  background-image: url("../../../../lp/assets/img/page/reasons/bg-reason.png");
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
}
@media only screen and (max-width: 767.499px) {
  .reasons {
    padding: 2rem 0 3rem;
    background-size: cover;
    background-position: center top;
    background-image: url("../../../../lp/assets/img/page/reasons/bg-reason-sp.png");
  }
}
.reasons__container {
  max-width: 67rem;
  margin: 0 auto;
  padding: 0 1.25rem;
}
@media only screen and (max-width: 767.499px) {
  .reasons__container {
    padding: 0 0.5rem;
  }
}
.reasons__item {
  background: #fff;
  padding: 2.5rem 2.5rem 6rem;
  border-radius: 2rem;
  border: 0.125rem solid #FADAE0;
  position: relative;
}
.reasons__item::before {
  content: "";
  position: absolute;
  top: 0.7rem;
  left: 0.7rem;
  right: 0.7rem;
  bottom: 0.7rem;
  border: 0.25rem solid var(--bg-peach);
  border-radius: 1rem;
  pointer-events: none;
}
@media only screen and (max-width: 767.499px) {
  .reasons__item::before {
    top: 0.25rem;
    left: 0.25rem;
    right: 0.25rem;
    bottom: 0.25rem;
    border-radius: 0.375rem;
    border: 0.125rem solid var(--bg-peach);
  }
}
@media only screen and (max-width: 767.499px) {
  .reasons__item {
    padding: 0.5rem;
    border-radius: 0.25rem;
  }
}
.reasons__header {
  text-align: center;
  padding-top: 2rem;
  margin-bottom: 3.75rem;
}
@media only screen and (max-width: 767.499px) {
  .reasons__header {
    margin-bottom: 2.1875rem;
    padding-top: 0;
  }
}
.reasons__subtitle {
  font-size: 2.75rem;
  font-weight: bold;
  color: var(--bg-peach);
  padding-bottom: 0.5rem;
}
@media only screen and (max-width: 767.499px) {
  .reasons__subtitle {
    font-size: 1.4rem;
    padding-bottom: 0.25rem;
  }
}
.reasons__title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 0;
}
@media only screen and (max-width: 767.499px) {
  .reasons__title {
    flex-wrap: wrap;
    gap: 0.15rem;
  }
}
.reasons__title-text {
  display: inline-block;
  width: 6.2rem;
  height: 6.2rem;
  background-color: var(--bg-peach);
  display: flex;
  color: #fff;
  font-size: 3.7rem;
  font-weight: 700;
  text-align: center;
  line-height: 5rem;
  margin: 0 0.125rem;
  align-items: center;
  justify-content: center;
}
@media only screen and (max-width: 767.499px) {
  .reasons__title-text {
    width: 3rem;
    height: 3rem;
    font-size: 2rem;
    line-height: 3rem;
    font-weight: 700;
  }
}
.reasons__title-text.yellow {
  color: #fbf0bc;
}
.reasons__content-block {
  padding-top: 1.5rem;
}
.reasons__content-block.second {
  padding-top: 3rem;
}
@media only screen and (max-width: 767.499px) {
  .reasons__content-block.second {
    padding-top: 1rem;
    position: relative;
  }
}
.reasons__content-block.third {
  padding-top: 3rem;
}
@media only screen and (max-width: 767.499px) {
  .reasons__content-block.third {
    padding-top: 1rem;
  }
}
.reasons__content-block:first-of-type {
  margin-top: 0;
  padding-top: 0;
}
@media only screen and (max-width: 767.499px) {
  .reasons__content-block {
    padding-top: 0;
    margin-top: 0;
  }
  .reasons__content-block:first-of-type {
    border-top: none;
  }
}
.reasons__item-top {
  display: flex;
  align-items: center;
  gap: 1.875rem;
  margin-bottom: 1.6rem;
}
.reasons__item-top--reverse {
  flex-direction: row-reverse;
}
@media only screen and (max-width: 767.499px) {
  .reasons__item-top--reverse {
    flex-direction: column;
  }
}
@media only screen and (max-width: 767.499px) {
  .reasons__item-top {
    flex-direction: column;
    gap: 1.25rem;
    margin-bottom: 0.8rem;
    position: relative;
  }
}
.reasons__item-prose {
  flex: 1;
}
@media only screen and (max-width: 767.499px) {
  .reasons__item-prose {
    width: 100%;
    order: 2;
    padding-top: 4.3rem;
  }
}
.reasons__item-title {
  background-color: #f0ad4e;
  color: #fff;
  padding: 0 1.875rem;
  display: block;
  font-weight: 700;
  font-size: 2.3rem;
  margin-bottom: 1.5rem;
  letter-spacing: 0.02em;
  position: relative;
  z-index: 1;
}
.reasons__item-title span {
  font-size: 1.8rem;
}
@media only screen and (max-width: 767.499px) {
  .reasons__item-title span {
    font-size: 0.9rem;
  }
}
.reasons__item-title.second {
  margin-bottom: 2rem;
}
@media only screen and (max-width: 767.499px) {
  .reasons__item-title.second {
    margin-bottom: 1rem;
  }
}
.reasons__item-title.third {
  margin-bottom: 2rem;
}
.reasons__item-title::after {
  content: "";
  position: absolute;
  top: 0.625rem;
  left: 0.8125rem;
  width: 100%;
  height: 100%;
  border: 0.135rem solid #f0ad4e;
  z-index: -1;
}
@media only screen and (max-width: 767.499px) {
  .reasons__item-title {
    font-size: 1.1rem;
    padding: 0 1.25rem;
    margin-bottom: 0.9375rem;
    display: block;
    width: 90%;
    margin: 0 auto 1rem;
  }
  .reasons__item-title::after {
    top: 0.5rem;
    left: 0.625rem;
  }
}
.reasons__item-text {
  font-size: 1.125rem;
  line-height: 1.2;
  text-align: justify;
  font-weight: 700;
}
@media only screen and (max-width: 767.499px) {
  .reasons__item-text {
    font-size: 0.75rem;
    line-height: 1.29;
    text-align: left;
    padding: 0 0.2rem;
  }
}
.reasons__item-number {
  position: relative;
  width: 17rem;
  height: 5rem;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.reasons__item-number.second {
  margin-top: -6rem;
  width: 16rem;
}
@media only screen and (max-width: 767.499px) {
  .reasons__item-number.second {
    margin-top: 0;
    width: 7.5rem;
    position: absolute;
    left: 0;
  }
}
@media only screen and (max-width: 767.499px) {
  .reasons__item-number {
    justify-content: flex-start;
    width: 7.5rem;
    height: 4.375rem;
    order: 1;
    position: absolute;
    right: 1.2rem;
    top: -0.5rem;
  }
}
.reasons__item-number-text {
  font-size: 3.75rem;
  font-weight: 900;
  color: #fadae0;
  background-color: #fff;
  line-height: 1.2;
  z-index: 1;
  position: absolute;
  left: 0;
}
@media only screen and (max-width: 767.499px) {
  .reasons__item-number-text {
    font-size: 1.8rem;
    position: static;
  }
}
.reasons__item-number-num {
  font-size: 11.5rem;
  letter-spacing: -0.5rem;
  color: #fdeff2;
  line-height: 1;
  position: absolute;
  top: 50%;
  font-family: Jost !important;
  font-weight: 600;
  right: -5rem;
  transform: translate(-50%, -50%);
  z-index: 0;
}
.reasons__item-number-num.second, .reasons__item-number-num.third {
  right: -7rem;
}
@media only screen and (max-width: 767.499px) {
  .reasons__item-number-num.second, .reasons__item-number-num.third {
    right: -3.5rem;
  }
}
@media only screen and (max-width: 767.499px) {
  .reasons__item-number-num {
    font-size: 5.5rem;
    right: -2rem;
  }
}
.reasons__item-images {
  display: flex;
  justify-content: space-between;
  gap: 1.5625rem;
  text-align: center;
}
@media only screen and (max-width: 767.499px) {
  .reasons__item-images {
    flex-wrap: wrap;
    gap: 0;
    justify-content: center;
  }
  .reasons__item-images.second {
    row-gap: 1rem;
  }
  .reasons__item-images.third {
    padding-bottom: 1rem;
  }
}
.reasons__image-group {
  width: 17.5rem;
}
@media only screen and (max-width: 767.499px) {
  .reasons__image-group {
    flex: 0 0 calc(50% - 1rem);
  }
}
@media only screen and (max-width: 767.499px) {
  .reasons__image-group:first-child, .reasons__image-group:nth-child(2) {
    order: 0;
    flex: 0 0 calc(50% - 1rem);
  }
}
@media only screen and (max-width: 767.499px) {
  .reasons__image-group:nth-child(3) {
    order: 1;
    flex: 0 0 100%;
    margin-top: 0;
  }
}
.reasons__image-group img {
  width: 100%;
  height: auto;
  border-radius: 0.5rem;
  margin-bottom: 0.9375rem;
}
@media only screen and (max-width: 767.499px) {
  .reasons__image-group img {
    width: 8rem;
    border-radius: 0.375rem;
    margin-bottom: 0.625rem;
  }
}
.reasons__image-caption {
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.4;
}
@media only screen and (max-width: 767.499px) {
  .reasons__image-caption {
    font-size: 0.75rem;
    line-height: 1.4;
  }
  .reasons__image-caption.sub {
    line-height: 1.2;
    white-space: nowrap;
  }
}

/**
 * 治療説明セクション
 */
.treatment-info {
  background-color: var(--bg-light-peach);
  padding: 0 0 3.8rem;
}
@media only screen and (max-width: 767.499px) {
  .treatment-info {
    padding: 1rem 0 1.5rem;
  }
}
.treatment-info__container {
  max-width: 65rem;
  margin: 0 auto;
  padding: 0 1.25rem;
}
@media only screen and (max-width: 767.499px) {
  .treatment-info__container {
    padding: 0 0.9375rem;
  }
}
.treatment-info__category {
  background-color: #fff;
  padding: 3.5rem 0.75rem 4rem;
}
@media only screen and (max-width: 767.499px) {
  .treatment-info__category {
    padding: 0 0.75rem 1rem;
  }
}
.treatment-info__category-title {
  display: inline-block;
  background-color: var(--btn-orange);
  color: #fff;
  font-size: 1.9rem;
  letter-spacing: 0.07em;
  font-weight: 700;
  padding: 0rem 3.5rem;
  text-align: center;
  margin: 0 auto 2rem;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
}
.treatment-info__category-title span {
  font-size: 1.6rem;
}
@media only screen and (max-width: 767.499px) {
  .treatment-info__category-title span {
    font-size: 0.7rem;
  }
}
@media only screen and (max-width: 767.499px) {
  .treatment-info__category-title {
    font-size: 0.9rem;
    padding: 0.2rem 2rem;
    margin-bottom: 1rem;
    margin-top: 1rem;
  }
  .treatment-info__category-title.sub {
    margin-top: 1.3rem;
  }
}
.treatment-info__intro {
  font-size: 1.125rem;
  line-height: 1.4;
  margin-bottom: 4.5rem;
  padding: 0 2.5rem 0 3rem;
  font-weight: 700;
}
@media only screen and (max-width: 767.499px) {
  .treatment-info__intro {
    font-size: 0.8rem;
    margin-bottom: 0;
    padding: 0 0.5rem;
    font-weight: 400;
    line-height: 1.6;
  }
}
.treatment-info__block {
  display: flex;
  align-items: flex-start;
  gap: 2.3rem;
  margin-bottom: 5rem;
  padding: 0 1rem;
}
@media only screen and (max-width: 767.499px) {
  .treatment-info__block {
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 0.75rem;
    padding: 0 0.5rem;
  }
}
.treatment-info__block:last-child {
  margin-bottom: 0;
}
.treatment-info__block.sub {
  margin-bottom: 1rem;
}
.treatment-info__image {
  flex-shrink: 0;
  width: 27.5rem;
}
.treatment-info__image.sub img {
  width: 45%;
  margin: auto;
  display: block;
}
@media only screen and (max-width: 767.499px) {
  .treatment-info__image {
    width: 100%;
  }
}
.treatment-info__image img {
  width: 100%;
  height: auto;
}
@media only screen and (max-width: 767.499px) {
  .treatment-info__image.only-sp {
    width: calc(100vw - 1.875rem);
    margin-left: -1.25rem;
  }
}
.treatment-info__content {
  flex: 1;
}
.treatment-info__title {
  font-size: 1.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 0.5rem;
  margin-top: -1rem;
}
@media only screen and (max-width: 767.499px) {
  .treatment-info__title {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    padding-top: 0.75rem;
    width: 100%;
  }
  .treatment-info__title.sub {
    padding-top: 0;
  }
}
.treatment-info__text {
  font-size: 1.125rem;
  line-height: 1.47;
  font-weight: bold;
  letter-spacing: 0.07em;
}
@media only screen and (max-width: 767.499px) {
  .treatment-info__text {
    font-size: 0.77rem;
    font-weight: 400;
    line-height: 1.7;
    letter-spacing: 0;
  }
}

/**
 * 小児歯科セクションスタイル
 */
.pediatric-hero {
  position: relative;
  height: 34.5rem;
  padding: 9.5rem 0 0;
  background-image: url("../../../../lp/assets/img/page/pediatric/background1.jpg");
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
}
@media only screen and (max-width: 767.499px) {
  .pediatric-hero {
    padding: 3rem 0 0;
    background-repeat: no-repeat;
    background-position: center top;
    background-size: contain;
    background-image: url("../../../../lp/assets/img/page/pediatric/background1-sp.png");
    height: auto;
  }
}
.pediatric-hero__container {
  max-width: 75rem;
  margin: 0 auto;
  padding: 0 1.25rem;
}
@media only screen and (max-width: 767.499px) {
  .pediatric-hero__container {
    padding: 0 1rem;
  }
}
.pediatric-hero__header {
  text-align: center;
  padding-bottom: 3rem;
}
@media only screen and (max-width: 767.499px) {
  .pediatric-hero__header {
    padding-bottom: 0;
  }
}
.pediatric-hero__title {
  font-size: 3.4rem;
  font-weight: bold;
  color: var(--text-secondary);
  margin-bottom: 0.8rem;
}
@media only screen and (max-width: 767.499px) {
  .pediatric-hero__title {
    font-size: 1.45rem;
    margin-bottom: 0;
    letter-spacing: -0.08em;
  }
}
.pediatric-hero__title-accent {
  color: #FF6B8A;
  font-size: 4.7rem;
  font-weight: bold;
}
@media only screen and (max-width: 767.499px) {
  .pediatric-hero__title-accent {
    font-size: 2rem;
  }
}
.pediatric-hero__subtitle {
  font-size: 2.4rem;
  color: var(--text-secondary);
  margin: 0;
  letter-spacing: 0.1em;
  font-weight: bold;
}
@media only screen and (max-width: 767.499px) {
  .pediatric-hero__subtitle {
    font-size: 1rem;
  }
}
.pediatric-hero__points-title {
  text-align: center;
  padding: 0 0 3rem;
  position: relative;
}
@media only screen and (max-width: 767.499px) {
  .pediatric-hero__points-title {
    padding-top: 1.2rem;
    padding-bottom: 1rem;
  }
}
.pediatric-hero__points-heading {
  --point-color: #82cccf;
  --point-color-rgb: 130, 204, 207;
  --outline-white: #fff;
  display: inline-block;
  font-size: 3.5rem;
  font-weight: 900;
  font-family: "Nikumaru", "Hiragino Kaku Gothic ProN", "Noto Sans JP", sans-serif !important;
  color: var(--point-color);
  position: relative;
  letter-spacing: 0.15em;
  padding: 1rem;
  margin-left: 4.3rem;
  -webkit-text-stroke: 0.09375rem var(--outline-white);
  text-shadow: 0 0 0.0625rem var(--outline-white), 0 0 0.0625rem var(--outline-white), 0 0 0.0625rem var(--outline-white), 0 0 2.125rem var(--point-color), 0.125rem 0.125rem 0 var(--point-color), -0.125rem -0.125rem 0 var(--point-color), 0.125rem -0.125rem 0 var(--point-color), -0.125rem 0.125rem 0 var(--point-color), 0.1875rem 0.1875rem 0 var(--point-color), -0.1875rem -0.1875rem 0 var(--point-color), 0.1875rem -0.1875rem 0 var(--point-color), -0.1875rem 0.1875rem 0 var(--point-color), 0.25rem 0.25rem 0 var(--point-color), -0.25rem -0.25rem 0 var(--point-color), 0.25rem -0.25rem 0 var(--point-color), -0.25rem 0.25rem 0 var(--point-color), 0 0 1.25rem rgba(var(--point-color-rgb), 0.3), 0 0 1.875rem rgba(var(--point-color-rgb), 0.2), 0 0 2.5rem rgba(var(--point-color-rgb), 0.1);
}
@supports (filter: drop-shadow(0 0 0 black)) {
  .pediatric-hero__points-heading {
    filter: drop-shadow(0 0 0.625rem rgba(var(--point-color-rgb), 0.2));
  }
}
@media only screen and (max-width: 767.499px) {
  .pediatric-hero__points-heading {
    font-size: 1.4rem;
    padding: 0.3rem 0.8rem;
    -webkit-text-stroke: 0.09375rem var(--outline-white);
    letter-spacing: 0;
    margin-left: 1rem;
    text-shadow: 0 0 0.09375rem var(--outline-white), 0 0 0.09375rem var(--outline-white), 0 0 0.1875rem var(--point-color), 0.125rem 0.125rem 0 var(--point-color), -0.125rem -0.125rem 0 var(--point-color), 0.125rem -0.125rem 0 var(--point-color), -0.125rem 0.125rem 0 var(--point-color), 0 0 0.9375rem rgba(var(--point-color-rgb), 0.25), 0 0 1.5625rem rgba(var(--point-color-rgb), 0.15);
  }
}
.pediatric-hero__points-number {
  color: inherit;
  font-size: 5.5rem;
  font-weight: 900;
  vertical-align: middle;
  position: absolute;
  left: -4rem;
  bottom: 2%;
}
@media only screen and (max-width: 767.499px) {
  .pediatric-hero__points-number {
    font-size: 2.3rem;
    left: -1.3rem;
    bottom: 0;
  }
}

.pediatric-points {
  position: relative;
  padding: 0 0 3rem;
  background-image: url("../../../../lp/assets/img/page/pediatric/background2.jpg");
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
  margin-top: -0.0625rem;
}
@media only screen and (max-width: 767.499px) {
  .pediatric-points {
    padding: 0 0 2.5rem;
  }
}
.pediatric-points__container {
  max-width: 75rem;
  margin: 0 auto;
  padding: 0 1.25rem;
}
@media only screen and (max-width: 767.499px) {
  .pediatric-points__container {
    padding: 0 1rem;
  }
}
.pediatric-points__cards {
  display: flex;
  gap: 2.5rem;
  padding-top: 2.5rem;
  flex-direction: column;
  align-items: center;
}
@media only screen and (max-width: 767.499px) {
  .pediatric-points__cards {
    flex-direction: column;
    gap: 1.5rem;
    padding-top: 2rem;
    align-items: center;
  }
}
.pediatric-points__card {
  background: var(--bg-light-peach2);
  border: 0.25rem solid #e37487;
  border-radius: 1.5rem;
  overflow: hidden;
  max-width: 62rem;
  min-height: 22.5rem;
  height: auto;
  width: 100%;
  display: flex;
  flex-direction: column;
}
@media only screen and (max-width: 767.499px) {
  .pediatric-points__card {
    max-width: none;
    min-height: auto;
    border: 0.125rem solid #e37487;
    border-radius: 0.625rem;
  }
}
.pediatric-points__card-body {
  display: flex;
  width: 100%;
}
@media only screen and (max-width: 767.499px) {
  .pediatric-points__card-body {
    flex-direction: column;
  }
}
.pediatric-points__card-image {
  width: 18.5rem;
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
  display: flex;
  align-items: center;
}
.pediatric-points__card-image img {
  width: 80%;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
  margin-left: 3rem;
}
@media only screen and (max-width: 767.499px) {
  .pediatric-points__card-image img {
    width: 38%;
    height: auto;
    margin: auto;
  }
}
@media only screen and (max-width: 767.499px) {
  .pediatric-points__card-image {
    width: 100%;
    height: auto;
    padding-top: 0.5rem;
  }
}
.pediatric-points__card-content {
  padding: 1rem 1.3rem 1rem 4.1rem;
  flex: 1;
  display: flex;
}
@media only screen and (max-width: 767.499px) {
  .pediatric-points__card-content {
    padding: 0.3rem 1.3rem 1rem;
  }
}
.pediatric-points__card-title {
  font-size: 2.35rem;
  font-weight: 700;
  color: var(--text-secondary);
  padding: 1.7rem 1rem 1rem;
  text-align: center;
  background: var(--bg-light-peach2);
  margin: 0;
  line-height: 1.5;
  letter-spacing: 0.02em;
}
@media only screen and (max-width: 767.499px) {
  .pediatric-points__card-title {
    font-size: 1.1rem;
    padding: 0.7rem 0 0;
  }
}
.pediatric-points__card-text {
  font-family: "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "Noto Sans JP", sans-serif !important;
  font-size: 1.5rem;
  color: var(--text-secondary);
  line-height: 1.65;
  text-align: left;
  letter-spacing: 0.03em;
  margin-bottom: 1.3rem;
}
@media only screen and (min-width: 768px) {
  .pediatric-points__card-text.second {
    margin-top: -0.5rem;
  }
}
@media only screen and (max-width: 767.499px) {
  .pediatric-points__card-text br {
    display: none;
  }
}
@media only screen and (max-width: 767.499px) {
  .pediatric-points__card-text {
    font-size: 0.75rem;
    line-height: 1.8;
    letter-spacing: 0.1rem;
    margin-bottom: 0;
  }
}

/**
 * 治療技術セクションスタイル
 */
.treatment-tech {
  padding: 5rem 0 1.5rem;
  background: var(--bg-white);
}
@media only screen and (max-width: 767.499px) {
  .treatment-tech {
    padding: 1.2rem 0 0;
  }
}
.treatment-tech__container {
  max-width: 75rem;
  margin: 0 auto;
  padding: 0 1.25rem;
}
@media only screen and (max-width: 767.499px) {
  .treatment-tech__container {
    padding: 0 0.9rem;
  }
}
.treatment-tech__header {
  text-align: center;
  margin-bottom: 4rem;
}
@media only screen and (max-width: 767.499px) {
  .treatment-tech__header {
    margin-bottom: 1.5rem;
  }
}
.treatment-tech__title {
  --title-color: #82cccf;
  --title-color-rgb: 130, 204, 207;
  --outline-white: #fff;
  display: inline-block;
  font-size: 3.5rem;
  font-weight: 900;
  font-family: "Nikumaru", "Noto Sans JP", sans-serif !important;
  color: var(--title-color);
  position: relative;
  letter-spacing: 0.15em;
  padding: 1rem 0 4rem;
  -webkit-text-stroke: 0.09375rem var(--outline-white);
  text-shadow: 0 0 0.0625rem var(--outline-white), 0 0 0.0625rem var(--outline-white), 0 0 0.0625rem var(--outline-white), 0 0 2.125rem var(--title-color), 0.125rem 0.125rem 0 var(--title-color), -0.125rem -0.125rem 0 var(--title-color), 0.125rem -0.125rem 0 var(--title-color), -0.125rem 0.125rem 0 var(--title-color), 0.1875rem 0.1875rem 0 var(--title-color), -0.1875rem -0.1875rem 0 var(--title-color), 0.1875rem -0.1875rem 0 var(--title-color), -0.1875rem 0.1875rem 0 var(--title-color), 0.25rem 0.25rem 0 var(--title-color), -0.25rem -0.25rem 0 var(--title-color), 0.25rem -0.25rem 0 var(--title-color), -0.25rem 0.25rem 0 var(--title-color), 0 0 1.25rem rgba(var(--title-color-rgb), 0.3), 0 0 1.875rem rgba(var(--title-color-rgb), 0.2), 0 0 2.5rem rgba(var(--title-color-rgb), 0.1);
}
@supports (filter: drop-shadow(0 0 0 black)) {
  .treatment-tech__title {
    filter: drop-shadow(0 0 0.625rem rgba(var(--title-color-rgb), 0.2));
  }
}
@media only screen and (max-width: 767.499px) {
  .treatment-tech__title {
    font-size: 1.75rem;
    padding: 0.5rem 1rem;
    letter-spacing: 0.15em;
    -webkit-text-stroke: 0.05375rem var(--outline-white);
    letter-spacing: 0.1em;
    text-shadow: 0 0 0.06375rem var(--outline-white), 0 0 0.06375rem var(--outline-white), 0 0 0.1875rem var(--title-color), 0.125rem 0.125rem 0 var(--title-color), -0.125rem -0.125rem 0 var(--title-color), 0.125rem -0.125rem 0 var(--title-color), -0.125rem 0.125rem 0 var(--title-color), 0 0 0.9375rem rgba(var(--title-color-rgb), 0.25), 0 0 1.5625rem rgba(var(--title-color-rgb), 0.15);
  }
}
.treatment-tech__content {
  max-width: 59rem;
  margin: 0 auto;
}
.treatment-tech__content.second {
  max-width: 61rem;
}
.treatment-tech__block {
  margin-bottom: 6rem;
  position: relative;
}
@media only screen and (max-width: 767.499px) {
  .treatment-tech__block {
    margin-bottom: 3rem;
  }
}
.treatment-tech__block.second {
  margin-bottom: 0;
}
@media only screen and (max-width: 767.499px) {
  .treatment-tech__block.second {
    margin-bottom: 1rem;
  }
}
.treatment-tech__block-header {
  display: flex;
  align-items: center;
  position: relative;
  gap: 1.5rem;
  padding-bottom: 1rem;
  margin-bottom: 1rem;
  margin: auto;
  position: absolute;
  top: -3.5rem;
  left: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
  /* テキストが改行されないようにする */
}
@media only screen and (max-width: 767.499px) {
  .treatment-tech__block-header {
    gap: 0.75rem;
    margin-bottom: -1rem;
    position: relative;
    white-space: wrap;
    top: 0;
  }
}
.treatment-tech__block-header:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 0.625rem;
  background: repeating-linear-gradient(-45deg, #9f9f9f, #9f9f9f 0.125rem, #fff 0.1875rem, #fff 0.5rem);
}
@media only screen and (max-width: 767.499px) {
  .treatment-tech__block-header:after {
    height: 0.3rem;
    width: 100%;
    bottom: 0.3rem;
  }
}
.treatment-tech__block-header.second {
  flex-direction: row-reverse;
  justify-content: flex-end;
  margin-bottom: 2.5rem;
}
@media only screen and (max-width: 767.499px) {
  .treatment-tech__block-header.second:after {
    height: 0.3rem;
    width: 100%;
    bottom: 0.5rem;
  }
}
@media only screen and (max-width: 767.499px) {
  .treatment-tech__block-header.second {
    padding-bottom: 1.2rem;
    margin-bottom: -1rem;
    flex-direction: row;
  }
}
@media (min-width: 769px) {
  .treatment-tech__block-header.second .treatment-tech__block-title {
    text-align: right;
    flex: 0 1 auto;
  }
}
.treatment-tech__number {
  font-size: 4rem;
  font-weight: 900;
  color: #e37487;
  line-height: 1;
  flex-shrink: 0;
  margin-top: -1rem;
}
@media only screen and (max-width: 767.499px) {
  .treatment-tech__number {
    font-size: 1.85rem;
    margin-bottom: 0;
  }
}
.treatment-tech__block-title {
  font-size: 2.25rem;
  font-weight: bold;
  color: #e37487;
  line-height: 1.4;
  flex: 1;
}
@media only screen and (max-width: 767.499px) {
  .treatment-tech__block-title {
    font-size: 1rem;
    line-height: 1.5;
  }
}
.treatment-tech__block-content {
  display: flex;
  gap: 2.8rem;
  align-items: flex-start;
  padding: 0.5rem 0 4rem;
}
@media only screen and (max-width: 767.499px) {
  .treatment-tech__block-content {
    flex-direction: column;
    gap: 0.5rem;
    padding-top: 0;
    padding-bottom: 0;
  }
}
.treatment-tech__block-content--reverse {
  align-items: center;
  padding-top: 1rem;
}
@media only screen and (max-width: 767.499px) {
  .treatment-tech__block-content--reverse {
    flex-direction: column-reverse;
    padding-bottom: 0;
    padding-top: 0;
  }
}
.treatment-tech__block-image {
  width: 27rem;
  height: auto;
  flex-shrink: 0;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 0.25rem 0.75rem rgba(0, 0, 0, 0.1);
}
.treatment-tech__block-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  display: block;
}
@media only screen and (max-width: 767.499px) {
  .treatment-tech__block-image {
    width: 100%;
    max-width: 10rem;
    margin: -0.5rem auto 0;
  }
}
.treatment-tech__block-text {
  flex: 1;
  padding-top: 1.75rem;
}
@media only screen and (max-width: 767.499px) {
  .treatment-tech__block-text {
    padding-top: 0;
  }
}
.treatment-tech__block-text p {
  font-size: 1.35rem;
  line-height: 1.9;
  color: var(--text-secondary);
  letter-spacing: 0.05em;
  margin: 0;
  font-family: "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "Noto Sans JP", sans-serif !important;
}
@media only screen and (max-width: 767.499px) {
  .treatment-tech__block-text p {
    font-size: 0.75rem;
    line-height: 1.8;
  }
}
.treatment-tech__care {
  text-align: center;
  padding: 0 0 2rem;
  max-width: 65rem;
  margin: auto;
}
@media only screen and (max-width: 767.499px) {
  .treatment-tech__care {
    padding: 0 0 0.5rem;
  }
}
.treatment-tech__care-title {
  --care-color: #82cccf;
  --care-color-rgb: 130, 204, 207;
  --outline-white: #fff;
  display: inline-block;
  font-size: 3.5rem;
  font-weight: 900;
  font-family: "Nikumaru", "Hiragino Kaku Gothic ProN", "Noto Sans JP", sans-serif !important;
  color: var(--text-third);
  position: relative;
  letter-spacing: 0.15em;
  padding: 0.8rem 2rem;
  margin-bottom: 2rem;
  -webkit-text-stroke: 0.09375rem var(--outline-white);
  text-shadow: 0 0 0.0625rem var(--outline-white), 0 0 0.0625rem var(--outline-white), 0 0 0.0625rem var(--outline-white), 0 0 2rem var(--care-color), 0.125rem 0.125rem 0 var(--care-color), -0.125rem -0.125rem 0 var(--care-color), 0.125rem -0.125rem 0 var(--care-color), -0.125rem 0.125rem 0 var(--care-color), 0.1875rem 0.1875rem 0 var(--care-color), -0.1875rem -0.1875rem 0 var(--care-color), 0.1875rem -0.1875rem 0 var(--care-color), -0.1875rem 0.1875rem 0 var(--care-color), 0 0 1rem rgba(var(--care-color-rgb), 0.3), 0 0 1.5rem rgba(var(--care-color-rgb), 0.2), 0 0 2rem rgba(var(--care-color-rgb), 0.1);
}
@supports (filter: drop-shadow(0 0 0 black)) {
  .treatment-tech__care-title {
    filter: drop-shadow(0 0 0.5rem rgba(var(--care-color-rgb), 0.2));
  }
}
@media only screen and (max-width: 767.499px) {
  .treatment-tech__care-title {
    font-size: 1.6rem;
    padding: 0.5rem 1.5rem;
    letter-spacing: 0.15em;
    margin-bottom: 0;
    -webkit-text-stroke: 0.06375rem var(--outline-white);
    letter-spacing: 0.1em;
    text-shadow: 0 0 0.09375rem var(--outline-white), 0 0 0.09375rem var(--outline-white), 0 0 0.1875rem var(--care-color), 0.125rem 0.125rem 0 var(--care-color), -0.125rem -0.125rem 0 var(--care-color), 0.125rem -0.125rem 0 var(--care-color), -0.125rem 0.125rem 0 var(--care-color), 0 0 0.9375rem rgba(var(--care-color-rgb), 0.25);
  }
}
.treatment-tech__care-items {
  display: flex;
  justify-content: space-between;
  padding: 0 0.5rem;
}
@media only screen and (max-width: 767.499px) {
  .treatment-tech__care-items {
    flex-wrap: nowrap;
    gap: 0rem;
    padding: 0;
    justify-content: center;
  }
}
.treatment-tech__care-item {
  text-align: center;
}
@media only screen and (max-width: 767.499px) {
  .treatment-tech__care-item {
    flex: 0 0 calc(33.333% - 0.33rem);
  }
}
.treatment-tech__care-icon {
  width: 16rem;
  margin: 1rem auto 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.treatment-tech__care-icon img {
  width: 100%;
}
@media only screen and (max-width: 767.499px) {
  .treatment-tech__care-icon {
    width: 7.3rem;
    margin-bottom: 0.8rem;
  }
}
.treatment-tech__care-text {
  font-size: 2.1rem;
  font-weight: bold;
  color: var(--text-third);
  letter-spacing: 0.02em;
  margin: 0;
}
@media only screen and (max-width: 767.499px) {
  .treatment-tech__care-text {
    font-size: 0.9rem;
  }
}

/**
 * ホワイトニングセクションスタイル
 */
.whitening {
  padding: 4rem 0 0;
  background-color: #FDF6F7;
  background-image: url("../../../../lp/assets/img/page/whitening/w-background.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  /* 見出し＋番号の横並び */
  /* タイトルの余白は heading に任せる */
}
@media only screen and (max-width: 767.499px) {
  .whitening {
    padding: 2rem 0 0;
    background-size: cover;
    background-position: center top;
  }
}
.whitening__type-heading {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  position: relative;
}
@media only screen and (max-width: 767.499px) {
  .whitening__type-heading {
    gap: 0.4rem;
    margin-bottom: 0.75rem;
    order: 1;
    padding: 0 0.9375rem;
  }
}
@media only screen and (max-width: 767.499px) {
  .whitening__type-heading.only-sp {
    display: none;
  }
}
.whitening__type-title {
  margin: 0;
}
.whitening__container {
  margin: 0 auto;
}
@media only screen and (max-width: 767.499px) {
  .whitening__container {
    padding: 0;
  }
}
.whitening__header {
  text-align: center;
  margin-bottom: 5rem;
}
@media only screen and (max-width: 767.499px) {
  .whitening__header {
    margin-bottom: 1.8rem;
  }
}
.whitening__subtitle {
  display: inline-block;
  margin-inline: auto;
  margin-bottom: 1.5rem;
  font-size: 2.1rem;
  letter-spacing: 0.05em;
  padding: 0.4rem 3rem 0.4rem 4rem;
  background: #f88fa0;
  color: #fff;
  font-weight: 700;
  line-height: 1;
  /* letter-spacing: .04em; */
  border-radius: 62.5rem;
  position: relative;
  text-align: center;
  /* 吹き出しの "しっぽ" - 外側の境界線 */
  /* 吹き出しの "しっぽ" - 内側の背景色 */
  /* &::after {
      content: "";
      position: absolute;
      bottom: -.5rem;
      left: 72%;
      border-style: solid;
      border-width: 1.125rem 1.125rem 0 0;
      border-color: #f88fa0 transparent transparent;
      translate: calc(-50% - 0.025rem) 100%;
      transform: skew(-25deg);
      transform-origin: top;
  }*/
}
.whitening__subtitle::before {
  content: "";
  position: absolute;
  bottom: 0.3rem;
  left: 55%;
  border-style: solid;
  border-width: 1.25rem 1.25rem 0 0;
  border-color: rgba(248, 143, 160, 0.8) transparent transparent;
  translate: -50% 100%;
  transform: skew(-25deg);
  transform-origin: top;
}
@media only screen and (max-width: 767.499px) {
  .whitening__subtitle {
    white-space: normal;
    padding: 0.3rem 1.7rem;
    font-size: 1rem;
    margin-bottom: 1rem;
  }
}
.whitening__title {
  font-size: 2.7rem;
  font-weight: 500;
  color: var(--text-color);
  line-height: 1.4;
  font-weight: 400;
  color: var(--text-color);
  text-shadow: 0.0625rem 0 0 var(--text-color), -0.0625rem 0 0 var(--text-color), 0 0.0625rem 0 var(--text-color), 0 -0.0625rem 0 var(--text-color), 0.0625rem 0.0625rem 0 var(--text-color), -0.0625rem 0.0625rem 0 var(--text-color), 0.0625rem -0.0625rem 0 var(--text-color), -0.0625rem -0.0625rem 0 var(--text-color);
}
@media only screen and (max-width: 767.499px) {
  .whitening__title {
    font-size: 1.35rem;
    line-height: 1;
    text-shadow: 0.0425rem 0 0 var(--text-color), -0.0425rem 0 0 var(--text-color), 0 0.0425rem 0 var(--text-color), 0 -0.0425rem 0 var(--text-color), 0.0425rem 0.0425rem 0 var(--text-color), -0.0425rem 0.0425rem 0 var(--text-color), 0.0425rem -0.0425rem 0 var(--text-color), -0.0425rem -0.0425rem 0 var(--text-color);
  }
}
.whitening__type {
  margin-bottom: 7rem;
  position: relative;
}
@media only screen and (max-width: 767.499px) {
  .whitening__type {
    margin-bottom: 0.5rem;
  }
}
.whitening__type:last-child {
  margin-bottom: 0;
}
.whitening__type-number {
  display: inline-block;
  font-size: 9rem;
  position: absolute;
  right: 0;
  bottom: -2rem;
  font-family: Jost, "Noto Sans JP", sans-serif !important;
  font-weight: 900;
  font-style: italic;
  opacity: 0.3;
  line-height: 1;
  margin-bottom: 1.5rem;
  padding-left: 0.5rem;
}
@media only screen and (max-width: 767.499px) {
  .whitening__type-number {
    font-size: 4.3rem;
    bottom: -0.7rem;
    margin-bottom: 0;
    z-index: 1;
  }
  .whitening__type-number.even {
    right: 5rem;
  }
}
.whitening__type-content {
  display: flex;
  gap: 2.5rem;
  align-items: flex-start;
  padding-bottom: 0;
}
@media only screen and (max-width: 767.499px) {
  .whitening__type-content {
    flex-direction: column;
    gap: 0;
  }
}
.whitening__type-content--reverse {
  flex-direction: row-reverse;
}
@media only screen and (max-width: 767.499px) {
  .whitening__type-content--reverse {
    flex-direction: column;
  }
}
@media only screen and (max-width: 767.499px) {
  .whitening__type-info {
    order: 2;
    padding: 1rem 0.9375rem 0;
  }
}
.whitening__type-title {
  font-size: 1.875rem;
  font-weight: 100;
  color: var(--text-color);
  text-shadow: 0.0625rem 0 0 var(--text-color), -0.0625rem 0 0 var(--text-color), 0 0.0625rem 0 var(--text-color), 0 -0.0625rem 0 var(--text-color), 0.0625rem 0.0625rem 0 var(--text-color), -0.0625rem 0.0625rem 0 var(--text-color), 0.0625rem -0.0625rem 0 var(--text-color), -0.0625rem -0.0625rem 0 var(--text-color);
  margin-bottom: 1.25rem;
  line-height: 1.2;
  letter-spacing: 0.02em;
}
.whitening__type-title span {
  font-size: 1.2rem;
  text-shadow: none;
  font-weight: bold;
}
@media only screen and (max-width: 767.499px) {
  .whitening__type-title span {
    font-size: 0.65rem;
    padding-bottom: 1rem;
  }
}
.whitening__type-title.last {
  width: 23rem;
}
@media only screen and (max-width: 767.499px) {
  .whitening__type-title.last {
    width: 100%;
    margin-right: 5rem;
    text-align: right;
    position: relative;
  }
}
.whitening__type-title.last span {
  white-space: nowrap;
}
@media only screen and (max-width: 767.499px) {
  .whitening__type-title.last span {
    position: absolute;
    right: -6rem;
  }
}
@media only screen and (max-width: 767.499px) {
  .whitening__type-title {
    font-size: 1rem;
    margin-bottom: 0;
    padding-top: 1.2rem;
    margin-left: auto;
    margin-right: 4.5rem;
    text-shadow: 0.0425rem 0 0 var(--text-color), -0.0425rem 0 0 var(--text-color), 0 0.0425rem 0 var(--text-color), 0 -0.0425rem 0 var(--text-color), 0.0425rem 0.0425rem 0 var(--text-color), -0.0425rem 0.0425rem 0 var(--text-color), 0.0425rem -0.0425rem 0 var(--text-color), -0.0425rem -0.0425rem 0 var(--text-color);
  }
  .whitening__type-title.even {
    margin-right: auto;
    margin-left: -1rem;
  }
}
.whitening__type-text {
  font-size: 1.125rem;
  line-height: 1.2;
  letter-spacing: 0.02em;
  max-width: 34rem;
  font-weight: bold;
}
@media only screen and (max-width: 767.499px) {
  .whitening__type-text.second {
    padding: 0;
    font-size: 0.9rem;
    line-height: 1.7;
  }
}
@media only screen and (max-width: 767.499px) {
  .whitening__type-text br {
    display: none;
  }
}
@media only screen and (max-width: 767.499px) {
  .whitening__type-text {
    padding: 0;
    font-size: 0.9rem;
    line-height: 1.7;
  }
}
.whitening__type-image {
  width: 40.5rem;
  height: auto;
  flex-shrink: 0;
  overflow: hidden;
  position: relative;
}
.whitening__type-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  display: block;
}
@media only screen and (max-width: 767.499px) {
  .whitening__type-image {
    width: 88vw;
    max-width: none;
    margin: 0;
    order: 1;
  }
  .whitening__type-image.odd {
    margin-left: 0;
    margin-right: auto;
  }
  .whitening__type-image.even {
    margin-left: auto;
    margin-right: 0;
  }
}

/**
 * Pricing Section
 */
.pricing {
  padding: 1.25rem 0 1.5rem;
  position: relative;
  background-image: url(../../img/page/pricing/background.png);
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
}
@media only screen and (max-width: 767.499px) {
  .pricing {
    padding: 0.8rem 0 3rem;
  }
}
.pricing__container {
  max-width: 67rem;
  margin: 0 auto;
  padding: 0 1.25rem;
}
@media only screen and (max-width: 767.499px) {
  .pricing__container {
    padding: 0 0.9375rem;
  }
}
.pricing__header {
  text-align: center;
  margin-bottom: 1rem;
}
@media only screen and (max-width: 767.499px) {
  .pricing__header {
    margin-bottom: 1rem;
  }
}
.pricing__title {
  font-size: 3rem;
  font-weight: 500;
  color: #253651;
  letter-spacing: 0.05em;
  text-shadow: -0.0425rem -0.0425rem 0 rgb(37, 54, 81), 0.0425rem -0.0425rem 0 rgb(37, 54, 81), -0.0425rem 0.0425rem 0 rgb(37, 54, 81), 0.0425rem 0.0425rem 0 rgb(37, 54, 81);
  margin: 0;
}
@media only screen and (max-width: 767.499px) {
  .pricing__title {
    font-size: 1.45rem;
    text-shadow: -0.0425rem -0.0425rem 0 rgb(37, 54, 81), 0.0425rem -0.0425rem 0 rgb(37, 54, 81), -0.0425rem 0.0425rem 0 rgb(37, 54, 81), 0.0425rem 0.0425rem 0 rgb(37, 54, 81);
  }
}
.pricing__table-wrapper {
  background: #fff;
  padding: 0;
  margin: 0 1rem 0.75rem;
  border: 0.2rem solid #2094b8;
  overflow: hidden;
}
@media only screen and (max-width: 767.499px) {
  .pricing__table-wrapper {
    padding: 0;
    margin: 0;
  }
}
.pricing__table {
  width: 100%;
  border-collapse: collapse;
}
.pricing__row:last-child {
  border-bottom: none;
}
.pricing__item, .pricing__price {
  padding: 1.3rem 0;
  text-align: left;
  font-size: 1.125rem;
  vertical-align: middle;
}
@media only screen and (max-width: 767.499px) {
  .pricing__item, .pricing__price {
    font-size: 1rem;
    padding: 1rem 0;
  }
}
.pricing__item {
  font-weight: 700;
  width: 37%;
  background: #2094b8;
  font-size: 1.5rem;
  color: #fff;
  border-bottom: #fff solid 0.15rem;
  text-align: center;
}
.pricing__item.last {
  border-bottom: none;
}
@media only screen and (max-width: 767.499px) {
  .pricing__item {
    font-size: 0.75rem;
    width: 37%;
    padding: 0.1875rem 0;
  }
}
.pricing__price {
  font-weight: 500;
  border-bottom: #2094b8 0.15rem solid;
  font-size: 1.75rem;
  text-align: center;
  font-weight: 500;
  text-shadow: -0.0225rem -0.0225rem 0 rgb(37, 54, 81), 0.0225rem -0.0225rem 0 rgb(37, 54, 81), -0.0225rem 0.0225rem 0 rgb(37, 54, 81), 0.0225rem 0.0225rem 0 rgb(37, 54, 81);
}
@media only screen and (max-width: 767.499px) {
  .pricing__price {
    font-size: 1.2rem;
  }
}
.pricing__price.last {
  border-bottom: none;
}
.pricing__price span {
  font-size: 1.45rem;
  font-weight: 500;
  text-shadow: none;
}
@media only screen and (max-width: 767.499px) {
  .pricing__price span {
    font-size: 0.9rem;
  }
}
@media only screen and (max-width: 767.499px) {
  .pricing__price {
    padding: 0;
    font-size: 1rem;
  }
}
.pricing__note {
  padding-left: 1rem;
}
@media only screen and (max-width: 767.499px) {
  .pricing__note {
    padding-left: 0;
  }
}
.pricing__note-title {
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.pricing__note-text {
  font-size: 1.15rem;
  line-height: 1.2;
  font-weight: 500;
}
@media only screen and (max-width: 767.499px) {
  .pricing__note-text {
    font-size: 0.75rem;
  }
}

/**
 * Treatment Flow Section
 */
.treatment-flow {
  padding: 0;
  position: relative;
  background-image: url(../../img/page/treatment-flow/background.png);
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  padding-bottom: 1.5rem;
}
@media only screen and (max-width: 767.499px) {
  .treatment-flow {
    padding: 0;
  }
}
.treatment-flow__container {
  max-width: 64rem;
  margin: 0 auto;
  padding: 0;
  background-color: #fff;
  position: relative;
  border-radius: 0.625rem;
  overflow: hidden;
  box-shadow: 0 0.25rem 0.9rem rgba(0, 0, 0, 0.1);
}
@media only screen and (max-width: 767.499px) {
  .treatment-flow__container {
    padding: 0 0.5rem;
  }
}
.treatment-flow__header {
  text-align: center;
  margin-bottom: 4rem;
}
@media only screen and (max-width: 767.499px) {
  .treatment-flow__header {
    margin-bottom: 2.5rem;
  }
}
.treatment-flow__header::before {
  content: "";
  position: absolute;
  top: -2rem;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 17rem;
  background-color: #253651;
  border-radius: 50%/0 0 100% 100%;
  z-index: 0;
}
@media only screen and (max-width: 767.499px) {
  .treatment-flow__header::before {
    height: 8rem;
  }
}
.treatment-flow__title {
  font-size: 3.1rem;
  font-weight: 900;
  color: #fff;
  margin: 0;
  position: relative;
  z-index: 1;
  padding: 5rem 0 1.5rem;
}
@media only screen and (max-width: 767.499px) {
  .treatment-flow__title {
    font-size: 1.15rem;
    padding: 1.75rem 0 1rem;
  }
}
.treatment-flow__steps {
  position: relative;
  margin: 9.5rem auto 0;
}
@media only screen and (max-width: 767.499px) {
  .treatment-flow__steps {
    margin: 3.5rem auto 0;
  }
}
.treatment-flow__steps::before {
  content: "";
  position: absolute;
  top: 0.5rem;
  bottom: 12.5rem;
  left: 50%;
  width: 0.4rem;
  background-color: #253651;
  transform: translateX(-50%);
}
@media only screen and (max-width: 767.499px) {
  .treatment-flow__steps::before {
    left: 50%;
    bottom: 8rem;
    width: 0.2rem;
    transform: translateX(-50%);
  }
}
.treatment-flow__step {
  display: flex;
  position: relative;
  margin-bottom: 3.5rem;
  align-items: center;
}
.treatment-flow__step:last-child {
  margin-bottom: 2rem;
}
@media only screen and (max-width: 767.499px) {
  .treatment-flow__step {
    margin-bottom: 2.5rem;
    flex-direction: row;
    align-items: center;
  }
}
.treatment-flow__step-number {
  position: absolute;
  top: 18%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 6.5rem;
  height: 6.5rem;
  border-radius: 50%;
  background-color: #253651;
  color: #fff;
  font-size: 3.25rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  padding-left: 0.5rem;
  z-index: 1;
  font-family: Jost;
  font-style: italic;
  text-shadow: -0.0335rem -0.0335rem 0 rgb(255, 255, 255), 0.0335rem -0.0335rem 0 rgb(255, 255, 255), -0.0335rem 0.0335rem 0 rgb(255, 255, 255), 0.0335rem 0.0335rem 0 rgb(255, 255, 255);
}
@media only screen and (max-width: 767.499px) {
  .treatment-flow__step-number {
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    width: 2.5rem;
    height: 2.5rem;
    font-size: 1.2rem;
    padding-left: 0;
    justify-content: center;
  }
}
.treatment-flow__step-content {
  display: flex;
  width: 100%;
  gap: 0;
}
@media only screen and (max-width: 767.499px) {
  .treatment-flow__step-content {
    flex-direction: row;
    align-items: center;
    width: 100%;
    gap: 0;
  }
}
@media only screen and (max-width: 767.499px) {
  .treatment-flow__step-content.rev {
    flex-direction: reverse;
  }
}
.treatment-flow__step-image {
  flex-shrink: 0;
  width: 50%;
  display: flex;
  position: relative;
}
.treatment-flow__step:nth-child(odd) .treatment-flow__step-image {
  padding: 0 2.5rem 0 0.5rem;
}
.treatment-flow__step:nth-child(odd) .treatment-flow__step-image::after {
  content: "";
  position: absolute;
  top: 20%;
  right: 0.625rem;
  width: 6.95rem;
  height: 0.5rem;
  background-color: #253651;
  transform: translateY(-50%);
}
.treatment-flow__step:nth-child(even) .treatment-flow__step-image {
  justify-content: flex-start;
  padding-left: 7rem;
  order: 2;
}
.treatment-flow__step:nth-child(even) .treatment-flow__step-image::after {
  content: "";
  position: absolute;
  top: 21%;
  left: 0.625rem;
  width: 6.5rem;
  height: 0.5rem;
  background-color: #253651;
  transform: translateY(-50%);
}
.treatment-flow__step:nth-child(even) .treatment-flow__step-image.last::after {
  top: 13%;
}
.treatment-flow__step-image img {
  width: 24rem;
  border-radius: 0.625rem;
  -o-object-fit: cover;
  object-fit: cover;
}
@media only screen and (max-width: 767.499px) {
  .treatment-flow__step-image img {
    width: 9rem;
  }
}
@media only screen and (max-width: 767.499px) {
  .treatment-flow__step-image {
    width: 50%;
    margin-bottom: 0;
  }
  .treatment-flow__step:nth-child(odd) .treatment-flow__step-image {
    order: 0;
    padding: 0 1rem 0 0;
  }
  .treatment-flow__step:nth-child(odd) .treatment-flow__step-image::after {
    content: "";
    position: absolute;
    top: 19%;
    right: 0;
    width: 2.25rem;
    height: 0.15rem;
    background-color: #253651;
    transform: translateY(-50%);
  }
  .treatment-flow__step:nth-child(even) .treatment-flow__step-image {
    order: 2;
    justify-content: flex-end;
    padding: 0 0 0 1rem;
  }
  .treatment-flow__step:nth-child(even) .treatment-flow__step-image::after {
    content: "";
    position: absolute;
    top: 19%;
    left: 0;
    width: 2.25rem;
    height: 0.15rem;
    background-color: #253651;
    transform: translateY(-50%);
  }
}
.treatment-flow__step-info {
  flex-shrink: 0;
  width: 50%;
}
.treatment-flow__step:nth-child(odd) .treatment-flow__step-info {
  padding-left: 4.5rem;
  text-align: left;
}
.treatment-flow__step:nth-child(even) .treatment-flow__step-info {
  padding-left: 2.5rem;
  order: 1;
}
@media only screen and (max-width: 767.499px) {
  .treatment-flow__step-info {
    width: 50%;
    flex-grow: 0;
  }
  .treatment-flow__step:nth-child(odd) .treatment-flow__step-info {
    order: 2;
    text-align: left;
    padding-left: 1.5rem;
  }
  .treatment-flow__step:nth-child(even) .treatment-flow__step-info {
    order: 0;
    text-align: left;
    padding-right: 1rem;
    padding-left: 0.5rem;
  }
}
.treatment-flow__step-title {
  font-size: 1.9rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
@media only screen and (max-width: 767.499px) {
  .treatment-flow__step-title {
    font-size: 0.8rem;
    margin-bottom: 0.5rem;
    line-height: 1.1;
  }
}
.treatment-flow__step-text {
  font-size: 1.55rem;
  line-height: 1.2;
  font-weight: 700;
}
.treatment-flow__step-text.left {
  padding-right: 3.5rem;
}
@media only screen and (max-width: 767.499px) {
  .treatment-flow__step-text.left {
    padding-right: 0.5rem;
  }
}
@media only screen and (max-width: 767.499px) {
  .treatment-flow__step-text {
    font-size: 0.7rem;
    line-height: 1.2;
  }
}

/**
 * コメント紹介セクション
 */
.comment {
  background-color: #2094b8;
  padding: 1.75rem 0 0;
  position: relative;
}
@media only screen and (max-width: 767.499px) {
  .comment {
    padding: 0.1rem 0 0;
  }
}
.comment__container {
  max-width: 75rem;
  margin: 0 auto;
  padding: 0 1.25rem;
  position: relative;
}
@media only screen and (max-width: 767.499px) {
  .comment__container {
    padding: 0 0.9375rem;
    overflow: hidden;
  }
}
.comment__header {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  margin: 0 0 3rem 5rem;
  position: relative;
}
@media only screen and (max-width: 767.499px) {
  .comment__header {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 0.5rem;
    margin-left: 0;
  }
}
.comment__header-icon {
  width: 13rem;
  position: relative;
}
@media only screen and (max-width: 767.499px) {
  .comment__header-icon {
    width: 5rem;
    flex-shrink: 0;
    min-width: 5rem;
  }
}
.comment__header-image {
  width: 100%;
  position: absolute;
  right: 0;
  top: -1rem;
  height: auto;
}
@media only screen and (max-width: 767.499px) {
  .comment__header-image {
    top: 0;
    right: 2rem;
  }
}
.comment__title {
  text-align: center;
  color: #fff;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.4;
}
@media only screen and (max-width: 767.499px) {
  .comment__title {
    font-size: 1rem;
  }
}
.comment__title-highlight {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  margin-top: 0.5rem;
}
@media only screen and (max-width: 767.499px) {
  .comment__title-highlight {
    gap: 0.0625rem;
    margin-top: 0.25rem;
  }
}
.comment__title-char {
  display: inline-block;
  width: 6.4rem;
  height: 6rem;
  background-color: #fffbbd;
  color: #253651;
  font-size: 4rem;
  font-weight: 700;
  text-align: center;
  line-height: 4rem;
  margin: 0 0.125rem;
  text-shadow: 0.0325rem 0 0 #253651, -0.0325rem 0 0 #253651, 0 0.0325rem 0 #253651, 0 -0.0325rem 0 #253651, 0.0325rem 0.0325rem 0 #253651, -0.0325rem -0.0325rem 0 #253651, 0.0325rem -0.0325rem 0 #253651, -0.0325rem 0.0325rem 0 #253651;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media only screen and (max-width: 767.499px) {
  .comment__title-char {
    width: 2.5rem;
    height: 2.5rem;
    font-size: 1.5rem;
    line-height: 2.5rem;
    font-family: "Noto Sans Condensed" !important;
    font-weight: 900;
    text-shadow: none;
  }
}
.comment__title-highlight-text {
  color: #fff;
  font-size: 2rem;
  font-weight: 700;
  margin-left: 0.5rem;
}
@media only screen and (max-width: 767.499px) {
  .comment__title-highlight-text {
    font-size: 1.5rem;
    margin-left: 0.25rem;
  }
}
.comment__under {
  margin: 0;
  padding: 0;
  background: #fff;
}
.comment__content {
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 20px;
  padding: 2.5rem 2.5rem 2rem;
  margin: 0 auto;
  max-width: 67rem;
}
@media only screen and (max-width: 767.499px) {
  .comment__content {
    padding: 1rem;
  }
}
.comment__testimonial {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
}
@media only screen and (max-width: 767.499px) {
  .comment__testimonial {
    gap: 1.5rem;
  }
}
.comment__person {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 12rem;
}
@media only screen and (max-width: 767.499px) {
  .comment__person {
    flex-direction: row;
    align-items: flex-start;
    gap: 1rem;
    min-width: auto;
    width: 100%;
  }
}
.comment__person-image {
  width: 18rem;
  overflow: hidden;
  position: relative;
  margin: 0 -4rem 1rem 0;
}
@media only screen and (max-width: 767.499px) {
  .comment__person-image {
    width: 6rem;
    height: 6rem;
    margin-bottom: 0;
    flex-shrink: 0;
  }
}
.comment__person-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.comment__person-info {
  display: flex;
  padding-bottom: 1rem;
  position: relative;
  gap: 3rem;
  align-items: center;
}
@media only screen and (max-width: 767.499px) {
  .comment__person-info {
    text-align: left;
    gap: 0.5rem;
  }
}
.comment__person-info::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 0.125rem;
  background-image: repeating-linear-gradient(to right, #253651, #253651 0.1875rem, transparent 0.25rem, transparent 0.75rem);
}
.comment__person-name {
  font-size: 1.85rem;
  font-weight: 700;
}
@media only screen and (max-width: 767.499px) {
  .comment__person-name {
    font-size: 0.75rem;
  }
}
.comment__person-title {
  font-size: 1.2rem !important;
  font-weight: 700;
  border: #253651 1px solid;
  box-sizing: border-box;
  padding: 0.25rem 0.75rem;
  border-radius: 2rem;
  display: inline-block;
  margin-top: 0 !important;
}
@media only screen and (max-width: 767.499px) {
  .comment__person-title {
    font-size: 0.75rem !important;
    padding: 0.1rem 0.5rem;
  }
}
.comment__text {
  background-color: #ebf5f9;
  padding: 2rem 2rem 2rem 7rem;
  border-radius: 4rem;
  margin-left: -4.5rem;
  height: 18rem;
}
@media only screen and (max-width: 767.499px) {
  .comment__text {
    height: auto;
    padding: 1rem;
    padding-left: 2rem;
    margin-left: -1.5rem;
    border-radius: 2rem;
  }
}
.comment__text p {
  font-size: 1.1rem;
  line-height: 1.4;
  text-align: left;
  font-weight: 700;
  margin-top: 1rem;
}
@media only screen and (max-width: 767.499px) {
  .comment__text p {
    font-size: 0.6rem;
    line-height: 1.4;
  }
}

/**
 * よくあるご質問セクション
 */
.faq {
  padding: 4rem 0 6.25rem;
  background-color: #fffbfb;
  position: relative;
}
@media only screen and (max-width: 767.499px) {
  .faq {
    padding: 1rem 0 2rem;
  }
}
.faq__container {
  max-width: 75rem;
  margin: 0 auto;
  padding: 0 1.25rem;
}
@media only screen and (max-width: 767.499px) {
  .faq__container {
    padding: 0 0.9375rem;
  }
}
.faq__header {
  text-align: center;
  margin-bottom: 4rem;
}
@media only screen and (max-width: 767.499px) {
  .faq__header {
    margin-bottom: 1.5rem;
  }
}
.faq__title {
  font-size: 3.1rem;
  font-weight: 500;
  color: #253651;
  line-height: 1.4;
  position: relative;
  display: inline-block;
  text-shadow: 0.0225rem 0 0 #253651, -0.0225rem 0 0 #253651, 0 0.0225rem 0 #253651, 0 -0.0225rem 0 #253651, 0.0225rem 0.0225rem 0 #253651, -0.0225rem -0.0225rem 0 #253651, 0.0225rem -0.0225rem 0 #253651, -0.0225rem 0.0225rem 0 #253651;
}
@media only screen and (max-width: 767.499px) {
  .faq__title {
    font-size: 1.5rem;
    text-shadow: 0.0225rem 0 0 #253651, -0.0225rem 0 0 #253651, 0 0.0225rem 0 #253651, 0 -0.0225rem 0 #253651, 0.0225rem 0.0225rem 0 #253651, -0.0225rem -0.0225rem 0 #253651, 0.0225rem -0.0225rem 0 #253651, -0.0225rem 0.0225rem 0 #253651;
  }
}
.faq__title::after {
  content: "";
  position: absolute;
  bottom: -0.6rem;
  left: 50%;
  transform: translateX(-50%);
  width: 9rem;
  height: 0.1875rem;
  background-color: var(--text-color);
}
@media only screen and (max-width: 767.499px) {
  .faq__title::after {
    bottom: -0.3rem;
    width: 4rem;
    height: 0.0625rem;
  }
}
.faq__items {
  display: flex;
  flex-direction: column;
  gap: 3.2rem;
  max-width: 62rem;
  margin: 0 auto;
}
@media only screen and (max-width: 767.499px) {
  .faq__items {
    gap: 1.4rem;
  }
}
.faq__item {
  background-color: #fffbfb;
  border-radius: 1rem 0 1rem 1rem;
  overflow: visible;
  position: relative;
}
.faq__item::before {
  content: "";
  position: absolute;
  top: 2rem;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 1rem 0 1rem 1rem;
  box-shadow: 0.25rem 0.5rem 1rem -0.25rem rgba(0, 0, 0, 0.1), -0.25rem 0.5rem 1rem -0.25rem rgba(0, 0, 0, 0.1), 0 0.75rem 1rem -0.25rem rgba(0, 0, 0, 0.1);
  /* 下側 */
}
@media only screen and (max-width: 767.499px) {
  .faq__item::before {
    right: 1rem;
  }
}
.faq__item::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 2rem 2rem 0;
  border-color: transparent #fffbfb transparent transparent;
  z-index: 2;
}
@media only screen and (max-width: 767.499px) {
  .faq__item::after {
    border-width: 0 1rem 1rem 0;
  }
}
.faq__question {
  background-color: var(--bg-peach);
  padding: 0.6rem 1.5rem 0.6rem 2rem;
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
}
@media only screen and (max-width: 767.499px) {
  .faq__question {
    padding: 1rem;
    gap: 0.5rem;
    padding: 0.2rem 0 0.2rem 0.5rem;
  }
}
.faq__question-label {
  font-size: 3rem;
  font-family: "Jost" !important;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
  min-width: 2.5rem;
  line-height: 1;
}
@media only screen and (max-width: 767.499px) {
  .faq__question-label {
    font-size: 1rem;
    min-width: 1rem;
  }
}
.faq__question-text {
  font-size: 1.95rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.4;
}
@media only screen and (max-width: 767.499px) {
  .faq__question-text {
    font-size: 0.75rem;
  }
}
.faq__answer {
  background-color: var(--bg-light-peach);
  padding: 1.6rem 1.5rem 2rem 2rem;
  display: flex;
  align-items: flex-start;
  gap: 2.25rem;
  position: relative;
}
@media only screen and (max-width: 767.499px) {
  .faq__answer {
    padding: 1rem;
    gap: 0.5rem;
    padding: 0.6rem 0.5rem 0.6rem 0.5rem;
  }
}
.faq__answer-label {
  font-size: 3rem;
  font-family: "Jost" !important;
  font-weight: 700;
  color: var(--bg-peach);
  flex-shrink: 0;
  min-width: 2.5rem;
  line-height: 1;
}
@media only screen and (max-width: 767.499px) {
  .faq__answer-label {
    font-size: 1rem;
    min-width: 1rem;
  }
}
.faq__answer-text {
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.3;
}
@media only screen and (max-width: 767.499px) {
  .faq__answer-text {
    font-size: 0.75rem;
    line-height: 1.2;
  }
}

/**
 * メールフォームセクション
 */
.contact-form {
  padding: 2.75rem 0 4.5rem;
  background: linear-gradient(135deg, #f78e99 0%, #ff9ba5 100%);
  position: relative;
}
@media only screen and (max-width: 767.499px) {
  .contact-form {
    padding: 1rem 0 2rem;
  }
}
.contact-form__container {
  max-width: 62rem;
  margin: 0 auto;
  padding: 0;
}
@media only screen and (max-width: 767.499px) {
  .contact-form__container {
    padding: 0 0.5rem;
  }
}
.contact-form__header {
  text-align: center;
  margin-bottom: 2.5rem;
}
@media only screen and (max-width: 767.499px) {
  .contact-form__header {
    margin-bottom: 1rem;
  }
}
.contact-form__title {
  font-size: 3.2rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  margin: 0;
  position: relative;
  text-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.2);
}
@media only screen and (max-width: 767.499px) {
  .contact-form__title {
    font-size: 1.4rem;
  }
}
.contact-form__title::after {
  content: "";
  position: absolute;
  bottom: -0.6rem;
  left: 50%;
  transform: translateX(-50%);
  width: 9rem;
  height: 0.1875rem;
  background-color: #fff;
}
@media only screen and (max-width: 767.499px) {
  .contact-form__title::after {
    bottom: -0.3rem;
    width: 3.5rem;
    height: 0.0625rem;
  }
}
.contact-form__content {
  margin: 0 auto;
  background: #fff;
  border-radius: 1rem;
  padding-top: 3rem;
  box-shadow: 0 0.5rem 2rem rgba(0, 0, 0, 0.15);
}
@media only screen and (max-width: 767.499px) {
  .contact-form__content {
    padding-top: 1rem;
    border-radius: 0.75rem;
  }
}
.contact-form__intro {
  max-width: 46rem;
  margin: 0 auto 2.9rem;
}
@media only screen and (max-width: 767.499px) {
  .contact-form__intro {
    margin-bottom: 0.75rem;
  }
}
.contact-form__intro-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text-color);
  line-height: 2;
  margin: 0 0 1rem 0;
  border-bottom: 0.125rem solid var(--text-color);
  border-top: 0.125rem solid var(--text-color);
  display: inline-block;
  padding: 1rem 0;
  white-space: nowrap;
  letter-spacing: 0.08em;
  text-shadow: 0.0225rem 0 0 #253651, -0.0225rem 0 0 #253651, 0 0.0225rem 0 #253651, 0 -0.0225rem 0 #253651, 0.0225rem 0.0225rem 0 #253651, -0.0225rem -0.0225rem 0 #253651, 0.0225rem -0.0225rem 0 #253651, -0.0225rem 0.0225rem 0 #253651;
}
@media only screen and (max-width: 767.499px) {
  .contact-form__intro-title {
    font-size: 0.8rem;
    padding: 0.4rem 0.75rem;
    margin: 0 0 0.75rem;
    white-space: normal;
    word-break: break-word;
    box-sizing: border-box;
    text-align: center;
    border: none;
    background: linear-gradient(var(--text-color), var(--text-color)) center top/95% 0.125rem no-repeat, linear-gradient(var(--text-color), var(--text-color)) center bottom/95% 0.125rem no-repeat;
  }
}
.contact-form__intro-text {
  font-size: 1.1rem;
  color: var(--text-color);
  line-height: 1.6;
  margin: 0;
  padding: 0.5rem 0 0.5rem 0.5rem;
  white-space: nowrap;
  font-weight: bold;
}
@media only screen and (max-width: 767.499px) {
  .contact-form__intro-text {
    font-size: 0.625rem;
    white-space: wrap;
  }
}
.contact-form__form {
  max-width: 49rem;
  margin: auto;
}
.contact-form__form .wpcf7 .wpcf7-form {
  display: flex;
  flex-direction: column;
}
.contact-form__form .wpcf7 .form.sent .wpcf7-response-output {
  display: none;
}
.contact-form__form .wpcf7 .form-buttons {
  margin-bottom: 1rem;
}
@media only screen and (max-width: 767.499px) {
  .contact-form__form .wpcf7 .form-buttons {
    margin-bottom: 0;
    height: 4.5rem;
    padding-bottom: -3.5rem;
  }
}
.contact-form__form .wpcf7 .form-group {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding-bottom: 1.1rem;
  border-bottom: 1px solid #e0e0e0;
  margin-bottom: 0.8rem;
}
@media only screen and (max-width: 767.499px) {
  .contact-form__form .wpcf7 .form-group {
    align-items: center;
    gap: 0.5rem;
    padding-bottom: 0.2rem;
    margin-bottom: 0.2rem;
  }
}
.contact-form__form .wpcf7 .form-group:last-of-type {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}
.contact-form__form .wpcf7 .form-label {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-color);
  min-width: 17.5rem;
  padding-top: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-left: 1.5rem;
}
@media only screen and (max-width: 767.499px) {
  .contact-form__form .wpcf7 .form-label {
    font-size: 0.625rem;
    min-width: 8rem;
    padding: 0 0 0 0.75rem;
  }
}
.contact-form__form .wpcf7 .required {
  background: #dc3545;
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  display: block;
  line-height: 1;
  width: 3.5rem;
  text-align: center;
  height: 1.7rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media only screen and (max-width: 767.499px) {
  .contact-form__form .wpcf7 .required {
    font-size: 0.5rem;
    font-weight: 400;
    width: 1.8rem;
    height: 0.8rem;
  }
}
.contact-form__form .wpcf7 .form-input {
  flex: 1;
  display: flex;
  gap: 0.25rem;
}
.contact-form__form .wpcf7 .wpcf7-form-control-wrap {
  width: 18.5rem;
}
@media only screen and (max-width: 767.499px) {
  .contact-form__form .wpcf7 .wpcf7-form-control-wrap {
    width: 8.25rem;
  }
}
.contact-form__form .wpcf7 input[type=text],
.contact-form__form .wpcf7 input[type=email],
.contact-form__form .wpcf7 textarea {
  width: 100%;
  padding: 0.4rem 1rem;
  font-size: 1rem;
  border: 0.125rem solid #ddd;
  background: #fff;
  color: var(--text-color);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
@media only screen and (max-width: 767.499px) {
  .contact-form__form .wpcf7 input[type=text],
  .contact-form__form .wpcf7 input[type=email],
  .contact-form__form .wpcf7 textarea {
    padding: 0.1rem 0.25rem;
    font-size: 0.6rem;
  }
}
.contact-form__form .wpcf7 input[type=text]:focus,
.contact-form__form .wpcf7 input[type=email]:focus,
.contact-form__form .wpcf7 textarea:focus {
  outline: none;
  border-color: var(--bg-peach);
  box-shadow: 0 0 0 0.1875rem rgba(247, 142, 153, 0.2);
}
.contact-form__form .wpcf7 input[type=text]::-moz-placeholder, .contact-form__form .wpcf7 input[type=email]::-moz-placeholder, .contact-form__form .wpcf7 textarea::-moz-placeholder {
  color: #999;
  font-size: 0.9rem;
}
.contact-form__form .wpcf7 input[type=text]::placeholder,
.contact-form__form .wpcf7 input[type=email]::placeholder,
.contact-form__form .wpcf7 textarea::placeholder {
  color: #999;
  font-size: 0.9rem;
}
@media only screen and (max-width: 767.499px) {
  .contact-form__form .wpcf7 input[type=text]::-moz-placeholder, .contact-form__form .wpcf7 input[type=email]::-moz-placeholder, .contact-form__form .wpcf7 textarea::-moz-placeholder {
    font-size: 0.8rem;
  }
  .contact-form__form .wpcf7 input[type=text]::placeholder,
  .contact-form__form .wpcf7 input[type=email]::placeholder,
  .contact-form__form .wpcf7 textarea::placeholder {
    font-size: 0.8rem;
  }
}
.contact-form__form .wpcf7 textarea {
  min-height: 19rem;
  min-width: 31rem;
  resize: vertical;
}
@media only screen and (max-width: 767.499px) {
  .contact-form__form .wpcf7 textarea {
    height: 8.25rem;
    min-height: auto;
    min-width: 13rem;
  }
}
.contact-form__form .wpcf7 .form-example {
  font-size: 1.2rem;
  margin-top: 0.25rem;
  display: flex;
  align-items: center;
  padding-left: 1.75rem;
  white-space: nowrap;
}
@media only screen and (max-width: 767.499px) {
  .contact-form__form .wpcf7 .form-example {
    margin-top: 0;
    padding-left: 0.1rem;
    font-size: 0.48rem;
    white-space: wrap;
  }
}
.contact-form__form .wpcf7 .wpcf7-submit,
.contact-form__form .wpcf7 .confirm-button {
  background: #c93545;
  color: #fff;
  font-size: 1.25rem;
  font-weight: 700;
  padding: 1rem 3rem;
  border: none;
  border-radius: 2rem;
  cursor: pointer;
  margin: 2rem auto 0;
  display: block;
  min-width: 20rem;
  transition: all 0.3s ease;
  box-shadow: 0 0.25rem 0.5rem rgba(201, 53, 69, 0.3);
}
@media only screen and (max-width: 767.499px) {
  .contact-form__form .wpcf7 .wpcf7-submit,
  .contact-form__form .wpcf7 .confirm-button {
    font-size: 1rem;
    padding: 0.875rem 2rem;
    min-width: 16rem;
    margin-top: 1.5rem;
  }
}
.contact-form__form .wpcf7 .wpcf7-submit:hover,
.contact-form__form .wpcf7 .confirm-button:hover {
  background: #b02a37;
  transform: translateY(-0.125rem);
  box-shadow: 0 0.375rem 0.75rem rgba(201, 53, 69, 0.4);
}
.contact-form__form .wpcf7 .wpcf7-submit:active,
.contact-form__form .wpcf7 .confirm-button:active {
  transform: translateY(0);
}
.contact-form__form .wpcf7 .wpcf7-submit::after,
.contact-form__form .wpcf7 .confirm-button::after {
  content: "▶";
  margin-left: 0.5rem;
  font-size: 0.9em;
}
.contact-form__form .wpcf7 .confirm-button {
  min-width: 37rem;
  height: 5.1rem;
  font-size: 1.75rem;
  border-radius: 1.5rem;
}
@media only screen and (max-width: 767.499px) {
  .contact-form__form .wpcf7 .confirm-button {
    min-width: auto;
    height: 2.25rem;
    font-size: 1rem;
    border-radius: 0.75rem;
    width: 16.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 1.25rem;
  }
}
.contact-form__form .wpcf7 .confirm-button.disable {
  background: #ccc !important;
  color: #666 !important;
  cursor: not-allowed;
  pointer-events: none;
  box-shadow: none !important;
  transform: none !important;
}
.contact-form__form .wpcf7 .confirm-button.disable::after {
  display: none;
}
.contact-form__form .wpcf7 .wpcf7-not-valid-tip {
  color: #dc3545;
  font-size: 0.875rem;
  margin-top: 0.25rem;
  display: block;
}
@media only screen and (max-width: 767.499px) {
  .contact-form__form .wpcf7 .wpcf7-not-valid-tip {
    font-size: 0.75rem;
  }
}
.contact-form__form .wpcf7 .wpcf7-validation-errors {
  background: #f8d7da;
  color: #721c24;
  border: 0.0625rem solid #f5c6cb;
  border-radius: 0.5rem;
  padding: 1rem;
  margin-top: 1rem;
  font-size: 0.875rem;
}
.contact-form__form .wpcf7 .wpcf7-mail-sent-ok {
  background: #d4edda;
  color: #155724;
  border: 0.0625rem solid #c3e6cb;
  border-radius: 0.5rem;
  padding: 1rem;
  margin-top: 1rem;
  font-size: 0.875rem;
}
.contact-form__form .wpcf7 .wpcf7-spinner {
  margin-left: 1rem;
  vertical-align: middle;
}
.contact-form__form .confirmation-screen .confirmation-header {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 0.125rem solid #eee;
}
.contact-form__form .confirmation-screen .confirmation-header h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-color);
  margin: 0 0 0.5rem 0;
}
@media only screen and (max-width: 767.499px) {
  .contact-form__form .confirmation-screen .confirmation-header h3 {
    font-size: 1.25rem;
  }
}
.contact-form__form .confirmation-screen .confirmation-header p {
  font-size: 1rem;
  color: #666;
  margin: 0;
}
@media only screen and (max-width: 767.499px) {
  .contact-form__form .confirmation-screen .confirmation-header p {
    font-size: 0.875rem;
  }
}
.contact-form__form .confirmation-screen .confirmation-content {
  margin-bottom: 2rem;
}
.contact-form__form .confirmation-screen .confirmation-content .confirmation-item {
  display: flex;
  margin-bottom: 1.5rem;
}
@media only screen and (max-width: 767.499px) {
  .contact-form__form .confirmation-screen .confirmation-content .confirmation-item {
    flex-direction: column;
    margin-bottom: 1.25rem;
  }
}
.contact-form__form .confirmation-screen .confirmation-content .confirmation-item dt {
  font-weight: 700;
  color: var(--text-color);
  min-width: 8rem;
  padding-right: 1rem;
  font-size: 1rem;
}
@media only screen and (max-width: 767.499px) {
  .contact-form__form .confirmation-screen .confirmation-content .confirmation-item dt {
    min-width: auto;
    padding-right: 0;
    margin-bottom: 0.25rem;
    font-size: 0.9rem;
  }
}
.contact-form__form .confirmation-screen .confirmation-content .confirmation-item dd {
  flex: 1;
  color: var(--text-color);
  margin: 0;
  background: #f8f9fa;
  padding: 0.75rem;
  border-radius: 0.5rem;
  line-height: 1.6;
}
@media only screen and (max-width: 767.499px) {
  .contact-form__form .confirmation-screen .confirmation-content .confirmation-item dd {
    padding: 0.5rem;
    font-size: 0.875rem;
  }
}
.contact-form__form .confirmation-screen .confirmation-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}
@media only screen and (max-width: 767.499px) {
  .contact-form__form .confirmation-screen .confirmation-actions {
    flex-direction: column;
    gap: 0.75rem;
  }
}
.contact-form__form .confirmation-screen .confirmation-actions .btn-back,
.contact-form__form .confirmation-screen .confirmation-actions .btn-submit {
  padding: 0.875rem 2rem;
  border-radius: 2rem;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 0.125rem solid;
}
@media only screen and (max-width: 767.499px) {
  .contact-form__form .confirmation-screen .confirmation-actions .btn-back,
  .contact-form__form .confirmation-screen .confirmation-actions .btn-submit {
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
  }
}
.contact-form__form .confirmation-screen .confirmation-actions .btn-back {
  background: #fff;
  color: var(--text-color);
  border-color: var(--text-color);
}
.contact-form__form .confirmation-screen .confirmation-actions .btn-back:hover {
  background: var(--text-color);
  color: #fff;
}
.contact-form__form .confirmation-screen .confirmation-actions .btn-submit {
  background: #c93545;
  color: #fff;
  border-color: #c93545;
}
.contact-form__form .confirmation-screen .confirmation-actions .btn-submit:hover {
  background: #b02a37;
  border-color: #b02a37;
  transform: translateY(-0.125rem);
  box-shadow: 0 0.375rem 0.75rem rgba(201, 53, 69, 0.4);
}
.contact-form__form .sending-message {
  text-align: center;
  padding: 3rem 1rem;
}
.contact-form__form .sending-message .spinner {
  width: 2rem;
  height: 2rem;
  border: 0.25rem solid #f3f3f3;
  border-top: 0.25rem solid var(--bg-peach);
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 0 auto 1rem;
}
.contact-form__form .sending-message p {
  font-size: 1.1rem;
  color: var(--text-color);
  margin: 0;
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.contact-form__form .submission-result {
  text-align: center;
  padding: 2rem 1rem;
}
.contact-form__form .submission-result h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 0 1rem 0;
}
@media only screen and (max-width: 767.499px) {
  .contact-form__form .submission-result h3 {
    font-size: 1.25rem;
  }
}
.contact-form__form .submission-result p {
  font-size: 1rem;
  margin: 0 0 2rem 0;
  line-height: 1.6;
}
@media only screen and (max-width: 767.499px) {
  .contact-form__form .submission-result p {
    font-size: 0.875rem;
  }
}
.contact-form__form .submission-result.success h3 {
  color: #155724;
}
.contact-form__form .submission-result.success p {
  color: #155724;
}
.contact-form__form .submission-result.error h3 {
  color: #721c24;
}
.contact-form__form .submission-result.error p {
  color: #721c24;
}
.contact-form__form .submission-result .result-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
}
@media only screen and (max-width: 767.499px) {
  .contact-form__form .submission-result .result-actions {
    flex-direction: column;
    gap: 0.75rem;
  }
}
.contact-form__form .submission-result .result-actions .btn-reload,
.contact-form__form .submission-result .result-actions .btn-home,
.contact-form__form .submission-result .result-actions .btn-retry {
  padding: 0.875rem 2rem;
  border-radius: 2rem;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 0.125rem solid;
}
@media only screen and (max-width: 767.499px) {
  .contact-form__form .submission-result .result-actions .btn-reload,
  .contact-form__form .submission-result .result-actions .btn-home,
  .contact-form__form .submission-result .result-actions .btn-retry {
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
  }
}
.contact-form__form .submission-result .result-actions .btn-home {
  background: var(--bg-peach);
  color: #fff;
  border-color: var(--bg-peach);
}
.contact-form__form .submission-result .result-actions .btn-home:hover {
  background: #f67e8a;
  border-color: #f67e8a;
}
.contact-form__form .submission-result .result-actions .btn-reload,
.contact-form__form .submission-result .result-actions .btn-retry {
  background: #fff;
  color: var(--text-color);
  border-color: var(--text-color);
}
.contact-form__form .submission-result .result-actions .btn-reload:hover,
.contact-form__form .submission-result .result-actions .btn-retry:hover {
  background: var(--text-color);
  color: #fff;
}

/**
 * アクセスセクション
 */
.access {
  padding: 3rem 0 3.5rem;
  background: #fff;
  position: relative;
}
@media only screen and (max-width: 767.499px) {
  .access {
    padding: 0.7rem 0 2rem;
  }
}
.access__container {
  max-width: 62.5rem;
  margin: 0 auto;
  padding: 0 0 2rem 0;
}
@media only screen and (max-width: 767.499px) {
  .access__container {
    padding: 0 0.75rem;
  }
}
.access__header {
  text-align: center;
  margin-bottom: 5rem;
}
@media only screen and (max-width: 767.499px) {
  .access__header {
    margin-bottom: 2rem;
  }
}
.access__title {
  font-size: 3.2rem;
  font-weight: 700;
  color: var(--text-color);
  line-height: 1.2;
  margin: 0;
  position: relative;
}
@media only screen and (max-width: 767.499px) {
  .access__title {
    font-size: 1.6rem;
  }
}
.access__title::after {
  content: "";
  position: absolute;
  bottom: -0.8rem;
  left: 50%;
  transform: translateX(-50%);
  width: 9rem;
  height: 0.1875rem;
  background-color: var(--text-color);
}
@media only screen and (max-width: 767.499px) {
  .access__title::after {
    bottom: -0.5rem;
    width: 3.9rem;
    height: 0.125rem;
  }
}
.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;
}
.access__map {
  margin-bottom: 2rem;
  padding: 0 2rem;
}
@media only screen and (max-width: 767.499px) {
  .access__map {
    margin-bottom: 1rem;
  }
}
.access__map img {
  width: 100%;
  height: auto;
  border-radius: 0.5rem;
}
.access__train-section {
  margin: 2.5rem 0;
}
@media only screen and (max-width: 767.499px) {
  .access__train-section {
    margin: 0;
  }
}
.access__train-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-color);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 767.499px) {
  .access__train-title {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
  }
}
.access__train-title::before {
  content: "●";
  color: var(--text-color);
  margin-right: 0.5rem;
  font-size: 1.2em;
}
.access__train-route {
  font-size: 1.2rem;
  color: var(--text-color);
  line-height: 1.4;
  margin-bottom: 1.25rem;
  font-weight: 500;
}
@media only screen and (max-width: 767.499px) {
  .access__train-route {
    font-size: 1rem;
    line-height: 1.5;
  }
}
@media only screen and (max-width: 767.499px) {
  .access__clinic-info {
    padding-top: 0.5rem;
  }
}
.access__info-row {
  display: flex;
  align-items: center;
  margin-bottom: 1.6rem;
}
@media only screen and (max-width: 767.499px) {
  .access__info-row {
    gap: 4rem;
    margin-bottom: 1.6rem;
  }
}
.access__info-row:last-child {
  margin-bottom: 0;
}
@media only screen and (max-width: 767.499px) {
  .access__info-row:last-child {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
  }
}
.access__info-row.table .access__info-label {
  margin-right: 2.5rem;
  margin-top: -5rem;
}
.access__info-label {
  background: var(--text-color);
  color: #fff;
  font-size: 1.2rem;
  font-weight: 700;
  padding: 0.3rem 0;
  text-align: center;
  min-width: 5rem;
  text-align: center;
  margin-right: 4rem;
  min-width: 6.5rem;
}
@media only screen and (max-width: 767.499px) {
  .access__info-label {
    font-size: 1rem;
    margin-right: 0;
    min-width: 5.5rem;
    height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
.access__info-value {
  font-size: 1.2rem;
  color: var(--text-color);
  line-height: 1.4;
  flex: 1;
  font-weight: 500;
}
@media only screen and (max-width: 767.499px) {
  .access__info-value {
    font-size: 1rem;
  }
}
.access__info-value.num {
  font-family: "Jost";
  font-weight: bold;
  font-size: 1.4rem;
}
.access__schedule-table {
  border-collapse: collapse;
  margin-top: 0.5rem;
  font-size: 0.9rem;
}
@media only screen and (max-width: 767.499px) {
  .access__schedule-table {
    font-size: 0.8rem;
  }
}
.access__schedule-table tr {
  border-bottom: 1px solid #ddd;
}
.access__schedule-table th,
.access__schedule-table td {
  border: none;
  padding: 0.5rem 0;
  text-align: center;
  border-bottom: 1px solid #ddd;
}
@media only screen and (max-width: 767.499px) {
  .access__schedule-table th,
  .access__schedule-table td {
    padding: 0.3rem 0.2rem;
  }
}
.access__schedule-table th {
  background: none;
  font-weight: 700;
  font-size: 1.3rem;
}
@media only screen and (max-width: 767.499px) {
  .access__schedule-table th {
    font-size: 0.75rem;
  }
}
.access__schedule-table .time {
  font-weight: 600;
  background: none;
  font-size: 1.4rem;
  white-space: nowrap;
  text-align: left;
  font-family: "Jost";
  font-weight: 500;
}
@media only screen and (max-width: 767.499px) {
  .access__schedule-table .time {
    font-size: 0.8rem;
  }
}
.access__schedule-table .available {
  color: var(--text-color);
  font-weight: 600;
  width: 4.6rem;
  font-size: 1.3rem;
}
@media only screen and (max-width: 767.499px) {
  .access__schedule-table .available {
    font-size: 0.75rem;
  }
}
.access__schedule-table .unavailable {
  color: #999;
  font-weight: 600;
  width: 4rem;
  font-size: 1.4rem;
}
@media only screen and (max-width: 767.499px) {
  .access__schedule-table .unavailable {
    font-size: 1rem;
  }
}
.access__schedule-table th:first-child,
.access__schedule-table td:first-child {
  width: 8rem;
}
@media only screen and (max-width: 767.499px) {
  .access__schedule-table th:first-child,
  .access__schedule-table td:first-child {
    width: 5rem;
  }
}
.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: 22.5rem;
  border: none;
  margin-top: 2rem;
}
@media only screen and (max-width: 767.499px) {
  .access__google-map {
    height: 15.75rem;
    margin-top: 1.5rem;
  }
}

/**
 * フッターセクション
 */
.footer-section {
  padding: 1.75rem 0;
  background: var(--bg-light-peach);
  position: relative;
}
@media only screen and (max-width: 767.499px) {
  .footer-section {
    padding: 1.5rem 0 2rem;
  }
}
.footer-section__container {
  max-width: 62.5rem;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
@media only screen and (max-width: 767.499px) {
  .footer-section__container {
    padding: 0 1rem;
    flex-direction: column;
    gap: 0.75rem;
  }
}
.footer-section__logo {
  flex-shrink: 0;
  width: 24.5rem;
}
@media only screen and (max-width: 767.499px) {
  .footer-section__logo {
    display: none;
  }
}
.footer-section__logo a {
  display: block;
  transition: all 0.3s ease;
}
@media (hover: hover) {
  .footer-section__logo a:hover {
    transform: translateY(-2px);
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
  }
}
@media (hover: none) {
  .footer-section__logo a:active {
    transform: translateY(-2px);
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
  }
}
.footer-section__logo-image {
  width: 100%;
}
@media only screen and (max-width: 767.499px) {
  .footer-section__logo-image {
    height: 2rem;
  }
}
.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;
  transition: all 0.3s ease;
}
@media (hover: hover) {
  .footer-section__logo-text a:hover {
    transform: translateY(-2px);
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
  }
}
@media (hover: none) {
  .footer-section__logo-text a:active {
    transform: translateY(-2px);
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
  }
}
.footer-section__logo-name {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-color);
  margin: 0;
  white-space: nowrap;
}
@media only screen and (max-width: 767.499px) {
  .footer-section__logo-name {
    width: 100%;
  }
}
.footer-section__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}
@media only screen and (max-width: 767.499px) {
  .footer-section__content {
    width: 100%;
    gap: 0.75rem;
    flex-direction: column;
    align-items: stretch;
  }
}
.footer-section__mobile-top-row {
  display: none;
}
@media only screen and (max-width: 767.499px) {
  .footer-section__mobile-top-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    margin-top: 1rem;
  }
}
.footer-section__buttons {
  display: flex;
  gap: 1rem;
  justify-content: space-between;
}
@media only screen and (max-width: 767.499px) {
  .footer-section__buttons {
    display: none;
  }
}
.footer-section__buttons-mobile {
  display: none;
}
@media only screen and (max-width: 767.499px) {
  .footer-section__buttons-mobile {
    display: flex;
    flex: 1;
    gap: 0.5rem;
    align-items: center;
  }
}
.footer-section__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.5rem;
  border-radius: 0.5rem;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  min-height: 3rem;
}
@media only screen and (max-width: 767.499px) {
  .footer-section__btn {
    padding: 0.5rem 0.5rem;
    min-height: 2.5rem;
    width: 100%;
  }
}
.footer-section__btn--tel {
  background-color: var(--bg-peach);
  color: white;
  min-width: 16.5rem;
  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) {
  .footer-section__btn--tel {
    min-width: auto;
    box-shadow: 0.125rem 0.125rem 0.25rem rgba(0, 0, 0, 0.3);
    flex: 1;
    padding: 0;
    min-height: auto;
    height: 2.2rem;
    width: 3.7rem;
  }
}
@media (hover: hover) {
  .footer-section__btn--tel:hover {
    background: #fff;
    color: var(--bg-peach);
  }
}
@media (hover: none) {
  .footer-section__btn--tel:active {
    background: #fff;
    color: var(--bg-peach);
  }
}
.footer-section__btn--tel span {
  font-size: 1.1rem;
}
@media only screen and (max-width: 767.499px) {
  .footer-section__btn--tel span {
    font-size: 0.625rem;
  }
  .footer-section__btn--tel span .kana {
    font-size: 0.55rem;
  }
}
.footer-section__btn--web {
  background: var(--btn-blue);
  color: white;
  min-width: 16.5rem;
  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) {
  .footer-section__btn--web {
    min-width: auto;
    box-shadow: 0.125rem 0.125rem 0.25rem rgba(0, 0, 0, 0.3);
    flex: 1;
    padding: 0;
    min-height: auto;
    height: 2.2rem;
    width: 3.7rem;
  }
}
@media (hover: hover) {
  .footer-section__btn--web:hover {
    background: #fff;
    color: var(--btn-blue);
  }
}
@media (hover: none) {
  .footer-section__btn--web:active {
    background: #fff;
    color: var(--btn-blue);
  }
}
.footer-section__btn--line {
  background: #fff;
  color: #10773c;
  width: 21.5rem;
  gap: 0.5rem;
  padding: 0.75rem 0;
  border: solid 0.0625rem #10773c;
  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) {
  .footer-section__btn--line {
    padding: 0.1rem;
    width: 2rem;
    height: 2.2rem;
    box-shadow: 0.125rem 0.125rem 0.25rem rgba(0, 0, 0, 0.3);
    border-radius: 0.25rem;
    min-height: auto;
  }
  .footer-section__btn--line .footer-section__btn-text {
    display: none;
  }
}
@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--line span {
  font-size: 1.8rem;
}
.footer-section__btn-text {
  font-size: 1rem;
  white-space: nowrap;
}
@media only screen and (max-width: 767.499px) {
  .footer-section__btn-text {
    font-size: 0.7rem;
  }
}
.footer-section__line-section {
  display: flex;
  justify-content: center;
}
@media only screen and (max-width: 767.499px) {
  .footer-section__line-section {
    display: none;
  }
}
.footer-section__line-section-mobile {
  display: none;
}
@media only screen and (max-width: 767.499px) {
  .footer-section__line-section-mobile {
    display: flex;
    flex-shrink: 0;
  }
}
.footer-section__line-icon {
  width: 2.75rem;
}
@media only screen and (max-width: 767.499px) {
  .footer-section__line-icon {
    width: 100%;
  }
}
.footer-section__clinic-name {
  text-align: center;
}
@media only screen and (max-width: 767.499px) {
  .footer-section__clinic-name {
    order: 3;
    margin-top: 0.75rem;
    text-align: center;
    width: 100%;
  }
}
.footer-section__clinic-text {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-color);
  margin: -1.2rem 0 0 1rem;
  text-align: left;
}
@media only screen and (max-width: 767.499px) {
  .footer-section__clinic-text {
    font-size: 0.9rem;
    margin: 0;
    text-align: center;
  }
}

/**
 * フォーム送信完了ページ
 */
.form-completion-main {
  background: linear-gradient(135deg, #f0f8ff 0%, #e8f4f8 100%);
  min-height: 100vh;
  padding: 2rem 0;
}
@media only screen and (max-width: 767.499px) {
  .form-completion-main {
    padding: 1rem 0;
  }
}

.form-completion__container {
  max-width: 62rem;
  margin: 0 auto;
  padding: 0;
}
@media only screen and (max-width: 767.499px) {
  .form-completion__container {
    padding: 0 0.9375rem;
  }
}
.form-completion__content {
  background: #fff;
  border-radius: 1.5rem;
  padding: 3rem;
  text-align: center;
  box-shadow: 0 0.5rem 2rem rgba(0, 0, 0, 0.1);
  margin-bottom: 3rem;
}
@media only screen and (max-width: 767.499px) {
  .form-completion__content {
    padding: 2rem 1.5rem;
    border-radius: 1rem;
    margin-bottom: 2rem;
  }
}
.form-completion__icon {
  margin: 0 auto 2rem;
  display: flex;
  justify-content: center;
}
@media only screen and (max-width: 767.499px) {
  .form-completion__icon {
    margin-bottom: 1.5rem;
  }
}
.form-completion__icon svg {
  width: 5rem;
  height: 5rem;
}
@media only screen and (max-width: 767.499px) {
  .form-completion__icon svg {
    width: 4rem;
    height: 4rem;
  }
}
.form-completion__title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-color);
  margin: 0 0 2rem 0;
  line-height: 1.4;
}
@media only screen and (max-width: 767.499px) {
  .form-completion__title {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
  }
}
.form-completion__message {
  margin-bottom: 3rem;
}
@media only screen and (max-width: 767.499px) {
  .form-completion__message {
    margin-bottom: 2rem;
  }
}
.form-completion__text {
  font-size: 1.1rem;
  color: var(--text-color);
  line-height: 1.6;
  margin: 0 0 2rem 0;
}
@media only screen and (max-width: 767.499px) {
  .form-completion__text {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }
}
.form-completion__info {
  display: grid;
  gap: 1.5rem;
  text-align: left;
  max-width: 40rem;
  margin: 0 auto;
}
@media only screen and (max-width: 767.499px) {
  .form-completion__info {
    gap: 1.25rem;
  }
}
.form-completion__info-item {
  background: #f8f9fa;
  padding: 1.5rem;
  border-radius: 0.75rem;
  border-left: 0.25rem solid var(--secondary-color);
}
@media only screen and (max-width: 767.499px) {
  .form-completion__info-item {
    padding: 1rem;
  }
}
.form-completion__info-item h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-color);
  margin: 0 0 0.75rem 0;
}
@media only screen and (max-width: 767.499px) {
  .form-completion__info-item h3 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
  }
}
.form-completion__info-item p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.5;
  margin: 0;
}
@media only screen and (max-width: 767.499px) {
  .form-completion__info-item p {
    font-size: 0.875rem;
  }
}
.form-completion__contact {
  margin-bottom: 3rem;
}
@media only screen and (max-width: 767.499px) {
  .form-completion__contact {
    margin-bottom: 2rem;
  }
}
.form-completion__contact h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-color);
  margin: 0 0 1.5rem 0;
}
@media only screen and (max-width: 767.499px) {
  .form-completion__contact h3 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
  }
}
.form-completion__contact-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}
@media only screen and (max-width: 767.499px) {
  .form-completion__contact-buttons {
    flex-direction: column;
    gap: 0.75rem;
  }
}
.form-completion__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;
  border-radius: 0.5rem;
  padding: 0.75rem 1.5rem;
}
@media only screen and (max-width: 767.499px) {
  .form-completion__btn {
    padding: 0.625rem 1rem;
    font-size: 0.75rem;
  }
}
.form-completion__btn--tel {
  background: var(--bg-peach);
  color: #fff;
  gap: 0.5rem;
  flex-direction: column;
}
@media only screen and (max-width: 767.499px) {
  .form-completion__btn--tel {
    flex-direction: row;
    gap: 0.75rem;
  }
}
.form-completion__btn--tel:hover {
  background: #f67e8a;
  transform: translateY(-0.125rem);
}
.form-completion__btn--line {
  background: #06c755;
  color: #fff;
  gap: 0.5rem;
}
.form-completion__btn--line:hover {
  background: #05b04d;
  transform: translateY(-0.125rem);
}
.form-completion__btn--web {
  background: var(--btn-blue);
  color: #fff;
}
.form-completion__btn--web:hover {
  background: #1a7ba0;
  transform: translateY(-0.125rem);
}
.form-completion__btn-label {
  font-size: 0.75rem;
  font-weight: 400;
}
@media only screen and (max-width: 767.499px) {
  .form-completion__btn-label {
    font-size: 0.625rem;
  }
}
.form-completion__btn-number {
  font-size: 1rem;
  font-weight: 700;
}
@media only screen and (max-width: 767.499px) {
  .form-completion__btn-number {
    font-size: 0.875rem;
  }
}
.form-completion__btn-icon {
  width: 1.5rem;
  height: auto;
}
@media only screen and (max-width: 767.499px) {
  .form-completion__btn-icon {
    width: 1rem;
  }
}
.form-completion__btn-text {
  font-size: 0.875rem;
  font-weight: 500;
}
@media only screen and (max-width: 767.499px) {
  .form-completion__btn-text {
    font-size: 0.75rem;
  }
}
.form-completion__actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
}
@media only screen and (max-width: 767.499px) {
  .form-completion__actions {
    flex-direction: column;
    gap: 0.75rem;
  }
}
.form-completion__back-btn, .form-completion__home-btn {
  padding: 0.875rem 2rem;
  border-radius: 2rem;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 0.125rem solid;
}
@media only screen and (max-width: 767.499px) {
  .form-completion__back-btn, .form-completion__home-btn {
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
  }
}
.form-completion__back-btn {
  background: #fff;
  color: var(--text-color);
  border-color: var(--text-color);
}
.form-completion__back-btn:hover {
  background: var(--text-color);
  color: #fff;
}
.form-completion__home-btn {
  background: var(--bg-peach);
  color: #fff;
  border-color: var(--bg-peach);
}
.form-completion__home-btn:hover {
  background: #f67e8a;
  border-color: #f67e8a;
}
.form-completion__clinic-info {
  background: #fff;
  border-radius: 1rem;
  padding: 2rem;
  margin-top: 3rem;
  box-shadow: 0 0.25rem 1rem rgba(0, 0, 0, 0.05);
}
@media only screen and (max-width: 767.499px) {
  .form-completion__clinic-info {
    padding: 1.5rem;
    margin-top: 2rem;
  }
}
.form-completion__clinic-info h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-color);
  text-align: center;
  margin: 0 0 2rem 0;
}
@media only screen and (max-width: 767.499px) {
  .form-completion__clinic-info h3 {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
  }
}
.form-completion__clinic-container {
  max-width: 40rem;
  margin: 0 auto;
}
.form-completion__clinic-details {
  display: grid;
  gap: 1rem;
}
.form-completion__clinic-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
@media only screen and (max-width: 767.499px) {
  .form-completion__clinic-item {
    flex-direction: column;
    gap: 0.25rem;
  }
}
.form-completion__clinic-label {
  font-weight: 700;
  color: var(--text-color);
  min-width: 5rem;
  font-size: 0.95rem;
}
@media only screen and (max-width: 767.499px) {
  .form-completion__clinic-label {
    min-width: auto;
    font-size: 0.875rem;
  }
}
.form-completion__clinic-value {
  color: var(--text-secondary);
  line-height: 1.5;
  font-size: 0.95rem;
}
@media only screen and (max-width: 767.499px) {
  .form-completion__clinic-value {
    font-size: 0.875rem;
  }
}
/*# sourceMappingURL=maps/style.css.map */
