@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: 16px !important;
  }
}
@media only screen and (min-width: 1600px) {
  html {
    font: size 16px !important;
  }
}

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

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

* {
  line-height: inherit;
}

picture {
  display: block;
}

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

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

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

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

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

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

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

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

ul,
ol {
  list-style: none;
}

span {
  color: inherit;
}

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

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

.nowrap {
  white-space: nowrap;
}

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

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

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

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

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

/* マーカー要素自体は非表示 */
/*.section-with-zen-maru,
.section-back-to-normal {
  display: none;
}*/
/**
 * 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;
  }
}

/**
 * Ceramic CTA セクション
 */
/**
 * セラミックLP専用ベース設定
 *
 * rem換算の除数を 16 → 8 に変更。
 * 理由: ceramic-lp のモバイルデザイン基準幅は 750px。
 *       html font-size = 16/7.5 vw のため、375px 実機では 1rem = 8px になる。
 *       除数 16 だと rem(80) = 5rem × 8px = 40px（半分）になってしまう。
 *       除数 8  だと rem(80) = 10rem × 8px = 80px ✓（Figma値がそのまま出る）
 *
 * 使用範囲: ceramic-lp の SCSS ファイルのみ
 *           @use "../../base/base" as *; → @use "../../base/base-ceramic" as *; に差し替え
 * 注意: PC 専用の寸法指定には rem() を使わず、直接 rem 値（例: 5rem）で書くこと。
 */
.ceramic-cta {
  width: 100%;
  background-color: #DAF2F0;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media only screen and (max-width: 767.499px) {
  .ceramic-cta {
    min-height: 48.6875rem;
  }
}
@media only screen and (min-width: 768px) {
  .ceramic-cta {
    min-height: 33.1875rem;
    padding: 1rem 0;
  }
}
.ceramic-cta__container {
  width: 100%;
  max-width: 64.25rem;
  margin: 0 auto;
}
@media only screen and (max-width: 767.499px) {
  .ceramic-cta__container {
    max-width: 45rem;
    padding: 0 0.625rem;
  }
}
.ceramic-cta__main-box {
  width: 100%;
  background-color: #FFF;
  border: 0.8125rem solid #81E3D9;
  border-radius: 1.4375rem;
  box-sizing: border-box;
}
@media only screen and (max-width: 767.499px) {
  .ceramic-cta__main-box {
    min-height: 39.1875rem;
    padding: 0 1rem 2.5rem;
  }
}
@media only screen and (min-width: 768px) {
  .ceramic-cta__main-box {
    min-height: 25.1875rem;
    padding: 1.5625rem 3.07625rem 0 2.963125rem;
  }
}
.ceramic-cta__title-wrap {
  width: 100%;
  background-color: #81E3D9;
  box-shadow: 0 0.4375rem 0.25rem rgba(5, 79, 102, 0.19);
  display: flex;
  justify-content: center;
  align-items: center;
}
@media only screen and (max-width: 767.499px) {
  .ceramic-cta__title-wrap {
    margin: 2.383125rem auto 0;
    max-width: 41rem;
    height: 5.4375rem;
    border-radius: 2.71875rem;
  }
}
@media only screen and (min-width: 768px) {
  .ceramic-cta__title-wrap {
    margin: 0.3125rem auto 0;
    max-width: 56.1875rem;
    height: 3.875rem;
    border-radius: 1.9375rem;
  }
}
.ceramic-cta__title {
  color: #FFF;
  text-align: center;
  font-style: normal;
  font-weight: 700;
  font-size: 2.11125rem;
  line-height: 2.11125rem;
  letter-spacing: 0.1055625rem;
}
.ceramic-cta__title .particle {
  font-size: 1.759375rem;
  line-height: 1.759375rem;
  letter-spacing: 0.0879375rem;
}
@media only screen and (max-width: 767.499px) {
  .ceramic-cta__title .reserve {
    font-size: 2.0205625rem;
    line-height: 2.0205625rem;
    letter-spacing: 0.101rem;
  }
}
@media only screen and (min-width: 768px) {
  .ceramic-cta__title .reserve {
    font-size: 2.3668125rem;
    line-height: 2.3668125rem;
    letter-spacing: 0.1183125rem;
  }
}
@media only screen and (max-width: 767.499px) {
  .ceramic-cta__title .ending {
    font-size: 1.6838125rem;
    line-height: 1.6838125rem;
    letter-spacing: 0.0841875rem;
  }
}
@media only screen and (min-width: 768px) {
  .ceramic-cta__title .ending {
    font-size: 1.9723125rem;
    line-height: 1.9723125rem;
    letter-spacing: 0.098625rem;
  }
}
@media only screen and (max-width: 767.499px) {
  .ceramic-cta__buttons {
    margin-top: 2.5875rem;
    display: flex;
    flex-direction: column;
    gap: 2.58125rem;
    align-items: center;
  }
}
@media only screen and (min-width: 768px) {
  .ceramic-cta__buttons {
    margin-top: 3.28875rem;
    display: flex;
    justify-content: space-between;
    gap: 3.5rem;
  }
}
.ceramic-cta__btn {
  display: flex;
  align-items: center;
  text-decoration: none;
  box-sizing: border-box;
  border: 0.1875rem solid #FFF;
  box-shadow: 0 0.4375rem 0.25rem rgba(5, 79, 102, 0.19);
  color: #FFF;
  transition: all 0.3s ease;
}
.ceramic-cta__btn--tel {
  background-color: #81C4E3;
}
@media only screen and (max-width: 767.499px) {
  .ceramic-cta__btn--tel {
    width: 100%;
    max-width: 29.25rem;
    height: 6.125rem;
    justify-content: space-between;
    padding-left: 0.7375rem;
  }
}
@media only screen and (min-width: 768px) {
  .ceramic-cta__btn--tel {
    width: 100%;
    max-width: 25.8125rem;
    height: 5.4375rem;
    justify-content: space-between;
    padding-left: 0.7375rem;
  }
}
@media (hover: hover) {
  .ceramic-cta__btn--tel:hover {
    background-color: #FFF;
    color: #81C4E3;
    border-color: #FFF;
    box-shadow: inset 0 0 0 0.0625rem #81C4E3, 0 0.4375rem 0.25rem rgba(5, 79, 102, 0.19);
  }
}
@media (hover: none) {
  .ceramic-cta__btn--tel:active {
    background-color: #FFF;
    color: #81C4E3;
    border-color: #FFF;
    box-shadow: inset 0 0 0 0.0625rem #81C4E3, 0 0.4375rem 0.25rem rgba(5, 79, 102, 0.19);
  }
}
.ceramic-cta__btn--tel .ceramic-cta__btn-label {
  font-style: normal;
  letter-spacing: 0.0606875rem;
}
@media only screen and (max-width: 767.499px) {
  .ceramic-cta__btn--tel .ceramic-cta__btn-label {
    font-size: 1.375rem;
    line-height: 1.213625rem;
    font-weight: 500;
  }
}
@media only screen and (min-width: 768px) {
  .ceramic-cta__btn--tel .ceramic-cta__btn-label {
    font-size: 1.213625rem;
    line-height: 1.213625rem;
    font-weight: 500;
  }
}
.ceramic-cta__btn--tel .ceramic-cta__btn-number {
  font-style: normal;
  font-weight: 500;
  letter-spacing: 0.1rem;
}
@media only screen and (max-width: 767.499px) {
  .ceramic-cta__btn--tel .ceramic-cta__btn-number {
    font-size: 2.125rem;
    line-height: 2rem;
    padding-right: 0.8125rem;
  }
}
@media only screen and (min-width: 768px) {
  .ceramic-cta__btn--tel .ceramic-cta__btn-number {
    font-size: 1.8125rem;
    line-height: 2rem;
    padding-right: 0.8125rem;
  }
}
.ceramic-cta__btn--web {
  background-color: #6281B4;
  justify-content: center;
}
@media only screen and (max-width: 767.499px) {
  .ceramic-cta__btn--web {
    width: 100%;
    max-width: 29.25rem;
    height: 6.125rem;
  }
}
@media only screen and (min-width: 768px) {
  .ceramic-cta__btn--web {
    width: 100%;
    max-width: 25.8125rem;
    height: 5.4375rem;
    justify-content: center;
  }
}
@media (hover: hover) {
  .ceramic-cta__btn--web:hover {
    background-color: #FFF;
    color: #6281B4;
    border-color: #FFF;
    box-shadow: inset 0 0 0 0.0625rem #6281B4, 0 0.4375rem 0.25rem rgba(5, 79, 102, 0.19);
  }
}
@media (hover: none) {
  .ceramic-cta__btn--web:active {
    background-color: #FFF;
    color: #6281B4;
    border-color: #FFF;
    box-shadow: inset 0 0 0 0.0625rem #6281B4, 0 0.4375rem 0.25rem rgba(5, 79, 102, 0.19);
  }
}
.ceramic-cta__btn--web .ceramic-cta__btn-text {
  font-style: normal;
  font-weight: 500;
  text-align: center;
}
@media only screen and (max-width: 767.499px) {
  .ceramic-cta__btn--web .ceramic-cta__btn-text {
    font-size: 1.8845rem;
    line-height: 1.8845rem;
    letter-spacing: 0.09425rem;
  }
}
@media only screen and (min-width: 768px) {
  .ceramic-cta__btn--web .ceramic-cta__btn-text {
    font-size: 1.66025rem;
    line-height: 1.66025rem;
    letter-spacing: 0.083rem;
  }
}
.ceramic-cta__btn--line {
  margin: 0 auto;
  background-color: #FFF;
  color: #10773C;
  border: 0.0625rem solid #10773C;
  justify-content: center;
  gap: 1rem;
}
@media only screen and (max-width: 767.499px) {
  .ceramic-cta__btn--line {
    margin-top: 2.67875rem;
    width: 29.01525rem;
    height: 5.8881875rem;
  }
}
@media only screen and (min-width: 768px) {
  .ceramic-cta__btn--line {
    margin-top: 2.260625rem;
    width: 25.5625rem;
    height: 5.1875rem;
  }
}
@media (hover: hover) {
  .ceramic-cta__btn--line:hover {
    background-color: #10773C;
    color: #FFF;
  }
}
@media (hover: none) {
  .ceramic-cta__btn--line:active {
    background-color: #10773C;
    color: #FFF;
  }
}
.ceramic-cta__btn--line .ceramic-cta__btn-icon {
  display: block;
  width: 4rem;
  height: auto;
}
.ceramic-cta__btn--line .ceramic-cta__btn-text {
  font-style: normal;
  font-weight: 500;
}
@media only screen and (max-width: 767.499px) {
  .ceramic-cta__btn--line .ceramic-cta__btn-text {
    font-size: 1.8125rem;
    line-height: 2.25rem;
    letter-spacing: 0.1rem;
  }
}
@media only screen and (min-width: 768px) {
  .ceramic-cta__btn--line .ceramic-cta__btn-text {
    font-size: 1.5625rem;
    line-height: 1.5625rem;
    letter-spacing: 0.075rem;
  }
}

/**
 * ヘッダースタイル（セラミックLP）
 * モバイルデザイン基準幅: 750px（rem スケール: 16/7.5 vw）
 * モバイルのフォントサイズは invisalign-lp の倍の値を指定
 */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: #81E3D9;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
  border-bottom: none;
  z-index: 100;
  transition: background 0.5s ease;
}
.header.logo-hidden .header__logo {
  opacity: 0;
  pointer-events: none;
}
.header.logo-hidden .header__logo img {
  width: 0;
}
.header.logo-hidden .header__container {
  justify-content: center;
  height: 5rem;
}
.header.logo-hidden .header__buttons {
  gap: 1rem;
}
@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;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 6.4rem;
  gap: 2rem;
  transition: justify-content 0.5s ease, gap 0.5s ease, height 0.5s ease;
}
@media only screen and (max-width: 767.499px) {
  .header__container {
    gap: 0.5rem;
    height: auto;
    flex-direction: column;
    padding: 0.5rem 2rem;
  }
}
.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: 1.5rem;
    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: 1.2rem;
  }
}
.header__btn--tel {
  background: #81C4E3;
  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: #81C4E3;
  }
}
@media (hover: none) {
  .header__btn--tel:active {
    background: #fff;
    color: #81C4E3;
  }
}
.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: 1.25rem;
  }
}
.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: 1.75rem;
  }
}
.header__btn--web {
  background: #6281B4;
  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: #6281B4;
  }
}
@media (hover: none) {
  .header__btn--web:active {
    background: #fff;
    color: #6281B4;
  }
}
.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: 1.2rem;
  }
}
@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: #81C4E3;
  color: white;
  border: solid 0.375rem #fff;
  box-shadow: 0.25rem 0.25rem 0.5rem rgba(0, 0, 0, 0.3);
  flex: none;
  height: 4.375rem;
  width: 10rem;
  border-radius: 0.5rem;
}
@media (hover: hover) {
  .header__btn-mobile--tel:hover {
    background: #fff;
    color: #81C4E3;
  }
}
@media (hover: none) {
  .header__btn-mobile--tel:active {
    background: #fff;
    color: #81C4E3;
  }
}
.header__btn-mobile--tel .header__btn-text {
  font-size: 1.375rem;
}
.header__btn-mobile--tel .header__btn-text .kana {
  font-size: 1rem;
}
.header__btn-mobile--web {
  background: #6281B4;
  color: white;
  border: solid 0.375rem #fff;
  box-shadow: 0.25rem 0.25rem 0.5rem rgba(0, 0, 0, 0.3);
  flex: none;
  height: 4.375rem;
  width: 8rem;
  border-radius: 0.5rem;
}
@media (hover: hover) {
  .header__btn-mobile--web:hover {
    background: #fff;
    color: #6281B4;
  }
}
@media (hover: none) {
  .header__btn-mobile--web:active {
    background: #fff;
    color: #6281B4;
  }
}
.header__btn-mobile--web .header__btn-text {
  font-size: 1.375rem;
}
.header__btn-mobile--line {
  background: #fff;
  color: #10773c;
  box-shadow: 0.25rem 0.25rem 0.5rem rgba(0, 0, 0, 0.3);
  border-radius: 0.3rem;
  width: 4rem;
  height: 4.375rem;
  padding: 0.2rem;
}
@media (hover: hover) {
  .header__btn-mobile--line:hover {
    background: #10773c;
    color: #fff;
  }
}
@media (hover: none) {
  .header__btn-mobile--line:active {
    background: #10773c;
    color: #fff;
  }
}
.header__btn-mobile--line .header__btn-text {
  display: none;
}

/**
 * ハンバーガーメニュースタイル（セラミックLP）
 * rem() は base-ceramic（divisor:8）を使用
 * Xrem → rem(X×16) に変換済み
 */
.hamburger-btn {
  display: none;
  position: relative;
  width: 5rem;
  height: 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.5rem;
  }
}
.hamburger-btn__lines {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: center;
}
.hamburger-btn__line {
  display: block;
  width: 2.5rem;
  height: 0.25rem;
  background-color: #fff;
  transition: all 0.3s ease;
  border-radius: 0.125rem;
}
.hamburger-btn__text {
  font-size: 1rem;
  font-weight: 500;
  color: #fff;
  line-height: 1;
  transition: all 0.3s ease;
}
.hamburger-btn.is-active .hamburger-btn__lines {
  margin-bottom: 0.25rem;
}
.hamburger-btn.is-active .hamburger-btn__line {
  background-color: #81C4E3;
}
.hamburger-btn.is-active .hamburger-btn__line:nth-child(1) {
  transform: translateY(0.75rem) rotate(45deg);
}
.hamburger-btn.is-active .hamburger-btn__line:nth-child(2) {
  opacity: 0;
}
.hamburger-btn.is-active .hamburger-btn__line:nth-child(3) {
  transform: translateY(-0.75rem) rotate(-45deg);
}
.hamburger-btn.is-active .hamburger-btn__text {
  color: #81C4E3;
}

.hamburger-menu {
  display: 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: #eafaf9;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  padding: 10rem 2rem 4rem;
  -webkit-overflow-scrolling: touch;
}
.hamburger-menu__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.hamburger-menu__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2rem 2.5rem;
  text-decoration: none;
  color: var(--text-color);
  background: #fff;
  transition: all 0.3s ease;
  position: relative;
  box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.1);
}
@media (hover: hover) {
  .hamburger-menu__link:hover {
    background-color: rgba(129, 195, 227, 0.05);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  }
}
@media (hover: none) {
  .hamburger-menu__link:active {
    background-color: rgba(129, 195, 227, 0.05);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  }
}
.hamburger-menu__link-text {
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.4;
  flex: 1;
}
.hamburger-menu__arrow {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0.625rem 0 0.625rem 1rem;
  border-color: transparent transparent transparent #81C4E3;
  flex-shrink: 0;
  margin-left: 2rem;
}

/**
 * ヒーローセクションスタイル（セラミックLP）
 */
.hero {
  position: relative;
  overflow: hidden;
}
.hero__img {
  display: block;
  width: 100%;
  height: auto;
}
.hero__text {
  position: absolute;
  top: 61%;
  left: 5%;
}
@media only screen and (min-width: 768px) {
  .hero__text {
    top: 35%;
    left: auto;
    right: 7%;
  }
}
.hero__text-row1 {
  display: flex;
  align-items: center;
  gap: 0.28125rem;
  margin-bottom: 1rem;
}
@media only screen and (max-width: 767.499px) {
  .hero__text-row1 {
    padding-left: 0.6875rem;
  }
}
.hero__text-row2 {
  display: flex;
  align-items: baseline;
  margin-top: 1rem;
}
@media only screen and (min-width: 768px) {
  .hero__text-row2 {
    margin-top: 0.5rem;
    transform: translateX(-1.25rem);
  }
}
.hero__label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #FF8E9E;
  color: #FFF;
  font-weight: 500;
  line-height: 1;
  width: 11.6875rem;
  height: 4.1875rem;
  font-size: 2.637125rem;
  letter-spacing: 0.131875rem;
}
@media only screen and (min-width: 768px) {
  .hero__label {
    width: 11.6875rem;
    height: 4.1875rem;
    font-size: 2.637rem;
    letter-spacing: 0.132rem;
  }
}
.hero__particle {
  color: #3C3C3E;
  font-weight: 500;
  line-height: 1;
  transform: translateY(0.4375rem);
  font-size: 2.239875rem;
  letter-spacing: 0.112rem;
}
@media only screen and (min-width: 768px) {
  .hero__particle {
    font-size: 2.24rem;
    letter-spacing: 0.112rem;
  }
}
.hero__verb {
  color: #3C3C3E;
  font-weight: 500;
  line-height: 1;
  transform: translateY(0.3125rem);
  margin-left: -0.28125rem;
  font-size: 2.637125rem;
  letter-spacing: 0.131875rem;
}
@media only screen and (min-width: 768px) {
  .hero__verb {
    font-size: 2.637rem;
    letter-spacing: 0.132rem;
  }
}
.hero__main {
  color: #2E2D30;
  font-weight: 500;
  line-height: 1;
  font-size: 4.269125rem;
  letter-spacing: 0.2135rem;
}
@media only screen and (max-width: 767.499px) {
  .hero__main {
    color: #FFF;
  }
}
@media only screen and (min-width: 768px) {
  .hero__main {
    font-size: 4.269rem;
    letter-spacing: 0.213rem;
  }
}
.hero__figures {
  position: absolute;
  display: flex;
  top: 74%;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 41.75rem;
  /* 元のサイズを維持 */
  gap: 1.25rem;
}
@media only screen and (min-width: 768px) {
  .hero__figures {
    top: 59%;
    left: 42%;
    transform: none;
    gap: 0.875rem;
  }
}
.hero__figure {
  display: block;
  flex: 1;
  min-width: 0;
  height: auto;
}
@media only screen and (max-width: 767.499px) {
  .hero__figure {
    max-width: 20.875rem;
  }
}
.hero__kana {
  color: #2E2D30;
  font-weight: 500;
  line-height: 1;
  font-size: 3.626125rem;
  letter-spacing: 0.181375rem;
}
@media only screen and (max-width: 767.499px) {
  .hero__kana {
    color: #FFF;
  }
}
@media only screen and (min-width: 768px) {
  .hero__kana {
    font-size: 3.626rem;
    letter-spacing: 0.181rem;
  }
}
.hero__note {
  position: absolute;
  right: 1.5%;
  text-align: right;
  font-weight: 500;
  line-height: 1;
  bottom: 0.125rem;
  color: #FFF;
  font-size: 1.125rem;
  letter-spacing: 0.006625rem;
}
@media only screen and (min-width: 768px) {
  .hero__note {
    bottom: 2%;
    right: 8%;
    color: #2E2D30;
    font-size: 1.25rem;
    letter-spacing: 0.007375rem;
  }
}

/**
 * お悩みセクションスタイル（セラミックLP）
 */
.worries {
  position: relative;
}
.worries__bg {
  display: block;
  width: 100%;
  height: auto;
}
@media only screen and (min-width: 768px) {
  .worries__bg {
    aspect-ratio: 1440/1106;
    max-height: 69.125rem;
  }
}
.worries__image {
  position: absolute;
  z-index: 3;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  height: auto;
  width: 46.875rem;
}
@media only screen and (max-width: 767.499px) {
  .worries__image {
    top: -0.625rem;
  }
}
@media only screen and (min-width: 768px) {
  .worries__image {
    width: 76.125rem;
  }
}
.worries__illust {
  position: absolute;
  z-index: 3;
  height: auto;
  width: 10.8125rem;
  left: 3.5rem;
  bottom: 0;
}
@media only screen and (min-width: 768px) {
  .worries__illust {
    width: 12.6875rem;
    left: calc(50% - 31.1875rem);
  }
}
.worries__band {
  position: absolute;
  z-index: 3;
  left: 50%;
  transform: translateX(-50%);
  background-color: #434343;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  top: 4.875rem;
  height: 9.6875rem;
}
@media only screen and (min-width: 768px) {
  .worries__band {
    width: 79rem;
    top: 4.5625rem;
  }
}
.worries__band-text {
  color: #FFF;
  text-align: center;
  font-weight: 700;
  font-size: 2.8975rem;
  line-height: 3.4375rem;
  letter-spacing: 0.144875rem;
}
.worries__caption {
  position: absolute;
  z-index: 3;
  color: #3C3C3E;
  text-align: center;
  font-weight: 400;
  font-size: 2.229375rem;
  line-height: 2.6875rem;
  letter-spacing: 0.1114375rem;
  left: 15.75rem;
  bottom: 7.75rem;
}
@media only screen and (max-width: 767.499px) {
  .worries__caption {
    white-space: nowrap;
  }
}
@media only screen and (min-width: 768px) {
  .worries__caption {
    left: 30.7%;
    right: 21.9%;
    bottom: 8.0625rem;
    font-size: 3.06375rem;
    line-height: 3.693625rem;
    letter-spacing: 0.15325rem;
  }
}
.worries__band-deco {
  position: absolute;
  bottom: 0;
  transform: translateY(100%);
  width: 2.0625rem;
  height: 1.6875rem;
}
.worries__band-deco--left {
  left: 0;
  background: url("../../img/page/ceramic-lp/worries/band-corner-left.svg") lightgray 50%/contain no-repeat;
}
.worries__band-deco--right {
  right: 0;
  background: url("../../img/page/ceramic-lp/worries/band-corner-right.svg") lightgray 50%/contain no-repeat;
}

/**
 * 症例紹介セクション（セラミックLP）
 */
@media only screen and (max-width: 767.499px) {
  .case {
    background-color: #DAF2F0;
  }
}
@media only screen and (min-width: 768px) {
  .case {
    background-color: #FFF;
  }
}
.case__head {
  position: relative;
  overflow: hidden;
}
.case__bg {
  display: block;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
}
@media only screen and (min-width: 768px) {
  .case__bg {
    aspect-ratio: 1440/287;
  }
}
@media only screen and (max-width: 767.499px) {
  .case__bg {
    aspect-ratio: 750/260;
  }
}
.case__head-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 1.375rem;
}
@media only screen and (min-width: 768px) {
  .case__head-content {
    padding-top: 5.1875rem;
  }
}
.case__title {
  display: flex;
  gap: 0.54rem;
}
.case__title-box {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 7.7154375rem;
  height: 7.7154375rem;
  background-color: #81E3D9;
  color: #FFF;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 4.62925rem;
  font-weight: 700;
  line-height: 4.62925rem;
  letter-spacing: 0.2314375rem;
}
.case__lead {
  margin-top: 1.34625rem;
  color: #2E2D30;
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 2.212rem;
  font-weight: 700;
  line-height: 2.38625rem;
  letter-spacing: 0.110625rem;
}
@media only screen and (min-width: 768px) {
  .case__lead {
    margin-top: 1.658125rem;
    color: #3C3C3E;
    font-size: 2rem;
    line-height: 2rem;
    letter-spacing: 0.1rem;
  }
}
.case__body {
  display: flex;
  justify-content: center;
}
@media only screen and (max-width: 767.499px) {
  .case__body {
    padding-top: 3.73625rem;
    padding-bottom: 2.850625rem;
  }
}
@media only screen and (min-width: 768px) {
  .case__body {
    padding-top: 6.1875rem;
    padding-bottom: 5.5rem;
  }
}
.case__panel {
  display: flex;
  justify-content: center;
  align-items: flex-start;
}
@media only screen and (max-width: 767.499px) {
  .case__panel {
    width: 43.0451875rem;
    height: 29.91275rem;
  }
}
@media only screen and (min-width: 768px) {
  .case__panel {
    width: 65.0475625rem;
    height: 41.0075rem;
    padding-top: 3.125rem;
    background-color: #DAF2F0;
  }
}
.case__card {
  border: 0.125rem solid #81E3D9;
  background-color: #FFF;
}
@media only screen and (max-width: 767.499px) {
  .case__card {
    width: 43.0451875rem;
    height: 29.91275rem;
  }
}
@media only screen and (min-width: 768px) {
  .case__card {
    width: 58.879375rem;
    height: 33.6119375rem;
  }
}
.case__visual {
  position: relative;
  background-color: #E5E5E5;
}
@media only screen and (max-width: 767.499px) {
  .case__visual {
    width: 41.442375rem;
    height: 12.4326875rem;
    margin-top: 0.731875rem;
    margin-left: 0.739375rem;
    margin-right: 0.86375rem;
  }
}
@media only screen and (min-width: 768px) {
  .case__visual {
    width: 56.687rem;
    height: 13.9701875rem;
    margin-top: 0.8225rem;
    margin-left: 1.01125rem;
    margin-right: 1.18125rem;
  }
}
.case__visual-accent {
  position: absolute;
  right: 0;
  bottom: 0;
  background-color: #81E3D9;
}
@media only screen and (max-width: 767.499px) {
  .case__visual-accent {
    width: 18.174875rem;
    height: 4.6620625rem;
  }
}
@media only screen and (min-width: 768px) {
  .case__visual-accent {
    width: 24.8605625rem;
    height: 5.238625rem;
  }
}
.case__card-label {
  color: #81E3D9;
  text-align: center;
  font-family: "Inter", sans-serif;
  font-style: normal;
  font-weight: 400;
}
@media only screen and (max-width: 767.499px) {
  .case__card-label {
    padding-top: 1.21375rem;
    font-size: 1.875rem;
    line-height: 1.875rem;
    letter-spacing: 0.09375rem;
  }
}
@media only screen and (min-width: 768px) {
  .case__card-label {
    padding-top: 1.3725rem;
    font-size: 2.1066875rem;
    line-height: 2.1066875rem;
    letter-spacing: 0.1053125rem;
  }
}
.case__card-divider {
  background-color: #81E3D9;
}
@media only screen and (max-width: 767.499px) {
  .case__card-divider {
    height: 0.1295rem;
    margin-top: 1.185rem;
    margin-left: 0.739375rem;
    margin-right: 0.86375rem;
  }
}
@media only screen and (min-width: 768px) {
  .case__card-divider {
    height: 0.1455rem;
    margin-top: 1.305rem;
    margin-left: 1.01125rem;
    margin-right: 1.18125rem;
  }
}
@media only screen and (max-width: 767.499px) {
  .case__card-content {
    height: 12.7024375rem;
  }
}
@media only screen and (min-width: 768px) {
  .case__card-content {
    height: 18.81875rem;
  }
}

/**
 * ドクターセクション
 */
.docter__message {
  width: 100%;
  height: 13.06175rem;
  background-color: #6281B4;
}
@media only screen and (max-width: 767.499px) {
  .docter__message {
    margin-top: 2.25rem;
  }
}
.docter__message-inner {
  display: flex;
  align-items: stretch;
  justify-content: center;
  width: 100%;
}
@media only screen and (max-width: 767.499px) {
  .docter__message-inner {
    height: 11.0016875rem;
  }
}
@media only screen and (min-width: 768px) {
  .docter__message-inner {
    height: 9.2410625rem;
  }
}
.docter__message-text {
  width: 100%;
  color: #FFF;
  text-align: center;
  font-style: normal;
  font-weight: 700;
}
@media only screen and (max-width: 767.499px) {
  .docter__message-text {
    padding-top: 1.525rem;
    font-size: 2.25rem;
    line-height: 3.9375rem;
    transform: translateY(-0.75rem);
  }
}
@media only screen and (min-width: 768px) {
  .docter__message-text {
    padding-top: 2.25rem;
    font-size: 2.625rem;
    line-height: 4.375rem;
    transform: translateY(-0.3125rem);
  }
}
.docter__body {
  position: relative;
  display: grid;
}
.docter__bg {
  grid-area: 1/1;
  display: block;
  width: 100%;
  height: auto;
}
@media only screen and (min-width: 768px) {
  .docter__bg {
    aspect-ratio: 1440/1232;
  }
}
@media only screen and (max-width: 767.499px) {
  .docter__bg {
    aspect-ratio: 750/1710;
  }
}
.docter__main-column {
  grid-area: 1/1;
  position: relative;
  justify-self: center;
  z-index: 2;
  border-radius: 1.25rem;
  background-color: #FFF;
  border: 0.25rem solid #81E3D9;
}
@media only screen and (max-width: 767.499px) {
  .docter__main-column {
    margin-top: 2.3125rem;
    margin-bottom: 2.375rem;
    width: 42.68675rem;
    height: 116.8125rem;
  }
}
@media only screen and (min-width: 768px) {
  .docter__main-column {
    margin-top: 2.5rem;
    margin-bottom: 3.875rem;
    width: 65.1255rem;
    height: 89.563125rem;
  }
}
.docter__name-bar {
  background-color: #81E3D9;
  height: 3.9375rem;
}
@media only screen and (max-width: 767.499px) {
  .docter__name-bar {
    width: 43.125rem;
    margin-left: -0.219125rem;
  }
}
@media only screen and (min-width: 768px) {
  .docter__name-bar {
    width: 100%;
    margin-top: 5.3125rem;
  }
}
.docter__name {
  color: #FFF;
  font-style: normal;
  font-weight: 500;
}
@media only screen and (max-width: 767.499px) {
  .docter__name {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.25rem;
    line-height: 2.25rem;
    letter-spacing: 0.1125rem;
  }
}
@media only screen and (min-width: 768px) {
  .docter__name {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    transform: translateY(-0.0625rem);
    padding-right: 9.5125rem;
    font-size: 2.5rem;
    line-height: 2.5rem;
    letter-spacing: 0.125rem;
  }
}
.docter__intro-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
@media only screen and (max-width: 767.499px) {
  .docter__photo {
    width: 17.464125rem;
    height: 18.1108125rem;
    margin: 2.375rem auto 0.75rem;
  }
}
@media only screen and (min-width: 768px) {
  .docter__photo {
    width: 17.464125rem;
    height: 18.1108125rem;
    margin: 1.6875rem 0 0 0.9375rem;
  }
}
.docter__photo img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 50%;
}
.docter__history--pc {
  width: 37.6828125rem;
  margin-top: 2.21125rem;
  margin-right: 1.46rem;
}
.docter__history--sp {
  width: 100%;
  margin-top: 1.2275rem;
  padding: 0 2.5rem;
}
.docter__history-title {
  color: #3C3C3E;
  text-align: center;
  font-style: normal;
  font-weight: 400;
}
@media only screen and (max-width: 767.499px) {
  .docter__history-title {
    font-size: 1.875rem;
    line-height: 1.875rem;
    letter-spacing: 0.09375rem;
    margin-bottom: 1.805rem;
  }
}
@media only screen and (min-width: 768px) {
  .docter__history-title {
    font-size: 2.25rem;
    line-height: 2.25rem;
    letter-spacing: 0.1125rem;
    margin-bottom: 1.26rem;
  }
}
.docter__history-text {
  color: #3C3C3E;
  font-style: normal;
  font-weight: 400;
  font-size: 1.375rem;
  line-height: 2.375rem;
  letter-spacing: 0.06875rem;
  white-space: pre-line;
  transform: translateY(-0.625rem);
}
@media only screen and (max-width: 767.499px) {
  .docter__history-text {
    text-align: left;
  }
}
@media only screen and (min-width: 768px) {
  .docter__history-text {
    text-align: left;
  }
}
.docter__counseling-title {
  color: #81E3D9;
  font-style: normal;
  font-weight: 700;
}
@media only screen and (max-width: 767.499px) {
  .docter__counseling-title {
    margin-top: 2.5rem;
    padding-left: 2rem;
    font-size: 1.875rem;
    line-height: 1.875rem;
    letter-spacing: 0.09375rem;
  }
}
@media only screen and (min-width: 768px) {
  .docter__counseling-title {
    margin-top: 2.9525rem;
    padding-left: 1.75rem;
    font-size: 2.25rem;
    line-height: 2.25rem;
    letter-spacing: 0.1125rem;
  }
}
@media only screen and (max-width: 767.499px) {
  .docter__counseling-title--sp-gap {
    margin-top: 3.5625rem;
  }
}
.docter__counseling-text {
  color: #3C3C3E;
  font-style: normal;
  font-weight: 400;
  font-size: 1.375rem;
  line-height: 2.375rem;
  letter-spacing: 0.06875rem;
  transform: translateY(-0.625rem);
}
@media only screen and (max-width: 767.499px) {
  .docter__counseling-text {
    margin-top: 1.795rem;
    padding: 0 2.95875rem 0 2.045625rem;
  }
}
@media only screen and (min-width: 768px) {
  .docter__counseling-text {
    margin-top: 1.75rem;
    padding: 0 2.375rem 0 1.75rem;
  }
}
.docter__counseling-text--third {
  padding-right: 1.25rem;
}
.docter__final-box {
  position: absolute;
  background-color: #DAF2F0;
}
@media only screen and (max-width: 767.499px) {
  .docter__final-box {
    left: 50%;
    transform: translateX(-50%);
    bottom: 2.233125rem;
    width: 39.5615rem;
    height: 13.06175rem;
  }
}
@media only screen and (min-width: 768px) {
  .docter__final-box {
    left: 0;
    bottom: 2.1875rem;
    width: 100%;
    height: 9.5619375rem;
  }
}
.docter__final-text {
  color: #3C3C3E;
  font-style: normal;
  font-weight: 500;
  font-size: 1.375rem;
  letter-spacing: 0.06875rem;
}
@media only screen and (max-width: 767.499px) {
  .docter__final-text {
    line-height: 2.25rem;
    padding: 0.948125rem 0.875rem 0.08125rem 0.87rem;
  }
}
@media only screen and (min-width: 768px) {
  .docter__final-text {
    line-height: 2.375rem;
    padding: 1.260625rem 2.78625rem 1.75rem 1.634375rem;
  }
}

/**
 * About セクション
 */
.about {
  background-color: #FFF;
}
.about__top {
  width: 100%;
  display: flex;
  justify-content: center;
  background-position: top center;
  background-repeat: no-repeat;
  background-size: cover;
}
@media only screen and (max-width: 767.499px) {
  .about__top {
    aspect-ratio: 750/343;
    background-image: url("../../../../lp/assets/img/page/ceramic-lp/about/bg1-sp.png");
  }
}
@media only screen and (min-width: 768px) {
  .about__top {
    aspect-ratio: 1440/463;
    background-image: url("../../../../lp/assets/img/page/ceramic-lp/about/bg1-pc.png");
  }
}
.about__title {
  text-align: center;
  color: #63BAA6;
  font-style: normal;
  font-weight: 700;
  font-size: 4.545875rem;
  line-height: 4.545875rem;
}
@media only screen and (max-width: 767.499px) {
  .about__title {
    margin-top: 15.0625rem;
    line-height: 3.5625rem;
  }
}
@media only screen and (min-width: 768px) {
  .about__title {
    margin-top: 24.1875rem;
  }
}
.about__title span {
  color: #3C3C3E;
  font-style: normal;
  font-weight: 500;
  font-size: 2.5rem;
  line-height: 2.5rem;
}
@media only screen and (max-width: 767.499px) {
  .about__title span {
    letter-spacing: 0.0390625rem;
  }
}
@media only screen and (min-width: 768px) {
  .about__title span {
    letter-spacing: -0.0976875rem;
  }
}
.about__teeth-block {
  position: relative;
  width: 100%;
}
@media only screen and (max-width: 767.499px) {
  .about__teeth-block {
    margin-top: 2.625rem;
  }
}
@media only screen and (min-width: 768px) {
  .about__teeth-block {
    margin-top: 3.61375rem;
  }
}
.about__teeth-block::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  z-index: 1;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
@media only screen and (max-width: 767.499px) {
  .about__teeth-block::after {
    aspect-ratio: 750/300;
    background-image: url("../../../../lp/assets/img/page/ceramic-lp/about/bg2-sp.png");
  }
}
@media only screen and (min-width: 768px) {
  .about__teeth-block::after {
    aspect-ratio: 1440/300;
    background-image: url("../../../../lp/assets/img/page/ceramic-lp/about/bg2-pc.png");
  }
}
.about__teeth-inner {
  position: relative;
  z-index: 2;
  margin: 0 auto;
}
@media only screen and (max-width: 767.499px) {
  .about__teeth-inner {
    width: 100%;
    max-width: 37.625rem;
    aspect-ratio: 602/475;
  }
}
@media only screen and (min-width: 768px) {
  .about__teeth-inner {
    width: 100%;
    max-width: 65.125rem;
    aspect-ratio: 1042/478;
  }
}
.about__teeth-inner img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
@media only screen and (max-width: 767.499px) {
  .about__text-area {
    width: 100%;
    padding: 3.375rem 1.79265625rem;
  }
}
@media only screen and (min-width: 768px) {
  .about__text-area {
    width: 75.5375rem;
    margin: 3.3125rem auto;
  }
}
.about__text {
  color: #3C3C3E;
  font-style: normal;
  font-size: 1.5rem;
  line-height: 2.625rem;
  letter-spacing: 0.075rem;
}
@media only screen and (max-width: 767.499px) {
  .about__text {
    font-weight: 350;
    letter-spacing: 0.04375rem;
  }
}
@media only screen and (min-width: 768px) {
  .about__text {
    font-weight: 500;
  }
}

/**
 * Difference セクション
 */
.difference {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.difference__title {
  width: 100%;
  text-align: center;
  color: #FFF;
  font-style: normal;
  font-weight: 700;
  background: linear-gradient(to top, #81E3D9, #63BAA6);
  border-radius: 1rem 0 1rem 0;
  margin-top: 4.5rem;
}
@media only screen and (max-width: 767.499px) {
  .difference__title {
    max-width: 43.75rem;
    height: 4.625rem;
    font-size: 2.4145625rem;
    line-height: 2.4145625rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 0.25rem;
  }
}
@media only screen and (min-width: 768px) {
  .difference__title {
    max-width: 52.75rem;
    height: 5.5625rem;
    font-size: 3.2514375rem;
    line-height: 3.2514375rem;
    letter-spacing: 0.006375rem;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .difference__title.second {
    font-size: 2.787125rem;
    margin-top: 2.3125rem;
  }
}
.difference__visual {
  width: 100%;
}
@media only screen and (max-width: 767.499px) {
  .difference__visual--ceramic {
    margin-top: 4.25rem;
  }
}
@media only screen and (min-width: 768px) {
  .difference__visual--ceramic {
    margin-top: 3rem;
  }
}
.difference__visual--ceramic .only-pc {
  width: 100%;
  aspect-ratio: 1440/419;
}
.difference__visual--ceramic .only-sp {
  width: 100%;
  aspect-ratio: 750/434;
}
.difference__visual--silver {
  margin-top: 3.125rem;
}
.difference__visual--silver.second {
  margin-top: 2.6875rem;
}
.difference__visual--silver img {
  width: 100%;
  aspect-ratio: 750/434;
}
.difference__visual img {
  display: block;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
}
.difference__table {
  width: 100%;
  max-width: 74.0333125rem;
  margin: 3.3125rem auto;
  display: flex;
  flex-direction: column;
  gap: 1.3125rem;
}
@media only screen and (min-width: 768px) {
  .difference__table.second {
    margin-bottom: 7.125rem;
  }
}
.difference__row {
  display: flex;
  gap: 1.316875rem;
}
.difference__cell {
  font-size: 1.5rem;
  line-height: 3rem;
  color: #3C3C3E;
  font-weight: 500;
}
.difference__cell--label {
  width: 9.6875rem;
  min-width: 9.6875rem;
  height: 9.6875rem;
  padding: 0;
  background-color: #E4E4E4;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 1.5rem;
  line-height: 1.5rem;
  letter-spacing: 0.0234375rem;
  box-shadow: 0 0.8125rem 1.125rem rgba(109, 100, 103, 0.15);
}
.difference__cell--content {
  width: 31.375rem;
  min-width: 31.375rem;
  height: 9.6875rem;
  display: flex;
  align-items: center;
  background-color: #FFF;
  padding: 0 1.75rem;
  box-shadow: 0 0.8125rem 1.125rem rgba(109, 100, 103, 0.15);
}
.difference__cell--ceramic, .difference__cell--silver {
  width: 31.5289375rem;
  min-width: 31.5289375rem;
  height: 4.688875rem;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.25rem;
  line-height: 2.25rem;
  font-weight: 700;
  background-color: #E3F6F0;
  color: #2E2D30;
}
.difference__row--header .difference__cell--label {
  background-color: transparent;
  box-shadow: none;
  height: auto;
}
.difference__list {
  list-style: disc;
  list-style-position: outside;
  padding-left: 1em;
  margin-left: 0;
}
.difference__list li {
  margin-bottom: 0;
}
.difference__list li:last-child {
  margin-bottom: 0;
}
@media only screen and (min-width: 768px) {
  .difference__cell--content--compact .difference__list li {
    line-height: 2.5rem;
  }
}
.difference__mobile-block {
  width: 100%;
}
.difference__mobile-title {
  width: 31.5289375rem;
  height: 4.688875rem;
  margin: 1.8125rem auto 1.875rem;
  background-color: #E3F6F0;
  color: #2E2D30;
  text-align: center;
  font-size: 2.25rem;
  line-height: 2.25rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 3.375rem;
}
.difference__mobile-item {
  display: flex;
  gap: 1.75rem;
  align-items: stretch;
  padding: 0 0.875rem;
  margin-bottom: 1.8125rem;
}
.difference__mobile-item:last-child {
  margin-bottom: 3.5625rem;
}
.difference__mobile-item.second {
  margin-bottom: 4.8125rem;
}
.difference__mobile-item-label {
  width: 9.6875rem;
  min-width: 9.6875rem;
  height: 11.3304375rem;
  background-color: #E4E4E4;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 1.5rem;
  line-height: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.0234375rem;
  box-shadow: 0 0.8125rem 1.125rem rgba(109, 100, 103, 0.15);
}
.difference__mobile-item-content {
  width: 31.375rem;
  min-width: 31.375rem;
  height: 11.3304375rem;
  background-color: #FFF;
  font-size: 1.5rem;
  line-height: 2.625rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  padding: 0 1.75rem;
  box-shadow: 0 0.8125rem 1.125rem rgba(109, 100, 103, 0.15);
}
.difference__mobile-list {
  list-style: disc;
  list-style-position: outside;
  margin-left: 0;
  padding-left: 1em;
}
.difference__mobile-list li {
  font-size: 1.5rem;
  font-weight: 500;
}

.difference2 .difference__title {
  background: linear-gradient(0deg, #81C4E3 0%, #6281B4 99.88%);
}
.difference2 .difference__cell--ceramic,
.difference2 .difference__cell--silver,
.difference2 .difference__mobile-title {
  background-color: #CAE7ED;
}
.difference2 .difference__cell--content,
.difference2 .difference__mobile-item-content {
  line-height: 3rem;
}
.difference2 .difference__list li,
.difference2 .difference__mobile-list li {
  line-height: 3rem;
}

/**
 * Ideal セクション
 */
.ideal {
  background-color: #FFF;
  overflow: hidden;
}
.ideal__deco {
  display: block;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
}
.ideal__deco--top {
  margin-bottom: 2.125rem;
}
.ideal__deco--top.only-pc {
  aspect-ratio: 1440/112;
}
.ideal__deco--top.only-sp {
  aspect-ratio: 749/112;
}
.ideal__deco--bottom {
  margin-top: 0.125rem;
  position: relative;
  z-index: 2;
}
.ideal__deco--bottom.only-pc {
  aspect-ratio: 1440/112;
}
.ideal__deco--bottom.only-sp {
  aspect-ratio: 749/112;
}
.ideal__header {
  text-align: center;
  margin-bottom: 3rem;
}
@media only screen and (max-width: 767.499px) {
  .ideal__header {
    margin-bottom: 8.1875rem;
  }
}
.ideal__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28.8125rem;
  height: 3.3125rem;
  border: 0.0625rem solid #3C3C3E;
  border-radius: 1249.875rem;
  color: #3C3C3E;
  font-size: 1.875rem;
  font-weight: 500;
  line-height: 1.875rem;
  letter-spacing: 0.09375rem;
}
@media only screen and (max-width: 767.499px) {
  .ideal__badge {
    font-weight: 400;
  }
}
.ideal__title {
  margin-top: 0.8125rem;
  font-size: 0;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0;
  color: #3C3C3E;
}
.ideal__title-accent {
  color: #FF8E9E;
  font-size: 4.123625rem;
  line-height: 4.123625rem;
  font-weight: 700;
  letter-spacing: -0.412375rem;
}
.ideal__title-no {
  font-size: 3.0284375rem;
  color: #3C3C3E;
  font-weight: 500;
  line-height: 3.0284375rem;
  letter-spacing: -0.1514375rem;
  display: inline-block;
  transform: translateX(0.1875rem);
}
@media only screen and (max-width: 767.499px) {
  .ideal__title-no {
    font-weight: 700;
  }
}
.ideal__list {
  width: 100%;
}
.ideal__item {
  width: 100%;
  background-color: transparent;
  margin-bottom: 7.5rem;
  padding: 5.5rem 0 5rem;
  position: relative;
  overflow: hidden;
}
@media only screen and (max-width: 767.499px) {
  .ideal__item {
    overflow: visible;
  }
}
.ideal__item::before, .ideal__item::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  background-color: #FEF4F8;
  z-index: 0;
  pointer-events: none;
}
.ideal__item::before {
  top: 4.75rem;
  height: 19.51%;
  clip-path: polygon(0% 100%, 0% 36.67%, 100% 0%, 100% 100%);
}
.ideal__item::after {
  top: calc(17.94% + 4.75rem);
  bottom: 0;
}
@media only screen and (max-width: 767.499px) {
  .ideal__item {
    padding: 4.25rem 0 3rem;
    margin-bottom: 11.0625rem;
  }
  .ideal__item::before {
    top: -0.5625rem;
    height: 19.51%;
    clip-path: polygon(0% 100%, 0% 36.63%, 100% 0%, 100% 100%);
  }
  .ideal__item::after {
    top: calc(17.94% - 0.5625rem);
    height: auto;
  }
}
.ideal__item:last-child {
  margin-bottom: 0;
}
@media only screen and (max-width: 767.499px) {
  .ideal__item:last-child {
    padding-bottom: 2.3125rem;
  }
}
.ideal__item--02 {
  margin-bottom: 5.5625rem;
}
@media only screen and (max-width: 767.499px) {
  .ideal__item--02 {
    margin-bottom: 8.8125rem;
  }
}
.ideal__item--03 {
  margin-bottom: 3.9375rem;
}
@media only screen and (max-width: 767.499px) {
  .ideal__item--03 {
    margin-bottom: 11.5rem;
  }
}
.ideal__item--04 {
  overflow: visible;
}
.ideal__item--04::after {
  bottom: -2.1875rem;
}
.ideal__item-inner {
  max-width: 74.25rem;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.ideal__number {
  position: absolute;
  top: -5.75rem;
  left: 2rem;
  font-size: 11.6875rem;
  line-height: 1;
  font-weight: 700;
  color: #FAC5CD;
  font-family: "Jost", "Noto Sans JP", sans-serif;
}
@media only screen and (max-width: 767.499px) {
  .ideal__number {
    top: -9.9375rem;
    left: auto;
    right: 2.6875rem;
    font-size: 11.4375rem;
  }
}
.ideal__item--even .ideal__number {
  left: auto;
  right: 0;
}
@media only screen and (max-width: 767.499px) {
  .ideal__item--even .ideal__number {
    right: auto;
    left: 3.25rem;
  }
}
.ideal__item--03 .ideal__number {
  left: 6.375rem;
}
@media only screen and (max-width: 767.499px) {
  .ideal__item--03 .ideal__number {
    left: auto;
    right: 2.5rem;
  }
}
.ideal__item--04 .ideal__number {
  right: 2.5rem;
}
@media only screen and (max-width: 767.499px) {
  .ideal__item--04 .ideal__number {
    right: auto;
    left: 3.1875rem;
  }
}
.ideal__subtitle {
  position: absolute;
  top: 0.25rem;
  left: 0;
  font-size: 2.25rem;
  line-height: 2.25rem;
  font-weight: 700;
  letter-spacing: -0.225rem;
  color: #FB5E75;
}
@media only screen and (max-width: 767.499px) {
  .ideal__subtitle {
    left: auto;
    right: 1.75rem;
    text-align: right;
    top: -3.5625rem;
  }
}
.ideal__item--even .ideal__subtitle {
  left: auto;
  right: 3.1875rem;
  text-align: right;
}
@media only screen and (max-width: 767.499px) {
  .ideal__item--even .ideal__subtitle {
    right: auto;
    left: 1.9375rem;
    text-align: left;
  }
}
.ideal__item--04 .ideal__subtitle {
  right: -0.25rem;
}
@media only screen and (max-width: 767.499px) {
  .ideal__item--04 .ideal__subtitle {
    right: auto;
  }
}
.ideal__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 7.125rem;
  width: 74.25rem;
  margin: auto;
}
@media only screen and (max-width: 767.499px) {
  .ideal__content {
    flex-direction: column;
    align-items: stretch;
    justify-content: normal;
    gap: 2rem;
    padding-top: 3rem;
    width: auto;
  }
}
.ideal__item--even .ideal__content {
  flex-direction: row-reverse;
}
@media only screen and (max-width: 767.499px) {
  .ideal__item--even .ideal__content {
    flex-direction: column;
  }
}
.ideal__image-wrap {
  width: 32rem;
  flex-shrink: 0;
}
@media only screen and (max-width: 767.499px) {
  .ideal__image-wrap {
    margin: auto;
  }
}
.ideal__image-wrap img {
  display: block;
  width: 100%;
  height: auto;
}
.ideal__text {
  color: #3C3C3E;
  font-size: 1.5rem;
  line-height: 2.625rem;
  font-weight: 400;
  width: 36.75rem;
}
@media only screen and (max-width: 767.499px) {
  .ideal__text {
    margin: auto;
    font-weight: 350;
  }
}

/**
 * Kinds セクション（治療の種類）
 */
.kinds {
  background-color: #fff;
  padding: 6.25rem 0 7.5rem;
}
@media only screen and (max-width: 767.499px) {
  .kinds {
    padding: 4rem 0;
  }
}
.kinds__container {
  max-width: 76.875rem;
  width: 100%;
  margin: 0 auto;
}
@media only screen and (max-width: 767.499px) {
  .kinds__container {
    padding: 0 2rem;
  }
}
.kinds__header {
  text-align: center;
  margin-bottom: 7.125rem;
}
@media only screen and (max-width: 767.499px) {
  .kinds__header {
    margin-bottom: 2.5rem;
  }
}
.kinds__title-img {
  display: block;
  width: 19rem;
  aspect-ratio: 304/80;
  height: auto;
  margin: 0 auto;
}
@media only screen and (max-width: 767.499px) {
  .kinds__title-img {
    width: 20.8125rem;
  }
}
.kinds__list {
  width: 100%;
}
.kinds__heading {
  display: flex;
  align-items: center;
  gap: 1.48125rem;
  margin-left: 1.3125rem;
  margin-bottom: 2.19625rem;
}
@media only screen and (max-width: 767.499px) {
  .kinds__heading {
    margin-top: 6rem;
    margin-left: 0;
    margin-bottom: 2.25rem;
    gap: 1.5rem;
  }
}
.kinds__item:first-child .kinds__heading {
  margin-top: 2.5rem;
}
@media only screen and (max-width: 767.499px) {
  .kinds__item:first-child .kinds__heading {
    margin-top: 3rem;
  }
}
.kinds__badge {
  position: relative;
  width: 4.05375rem;
  height: 4.05375rem;
  background-color: #81e3d9;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
@media only screen and (max-width: 767.499px) {
  .kinds__badge {
    width: 4.125rem;
    height: 4.125rem;
  }
}
.kinds__num {
  color: #fff;
  font-family: "Sofia Sans Condensed", sans-serif;
  font-size: 2.92625rem;
  font-style: normal;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.2195rem;
}
@media only screen and (max-width: 767.499px) {
  .kinds__num {
    font-size: 2.90625rem;
    letter-spacing: -0.20625rem;
  }
}
.kinds__name {
  color: #81e3d9;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 2.25rem;
  font-style: normal;
  font-weight: 700;
  line-height: 1;
}
@media only screen and (max-width: 767.499px) {
  .kinds__name {
    font-size: 2.4375rem;
  }
}
.kinds__body {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  margin-bottom: 4.96875rem;
}
@media only screen and (max-width: 767.499px) {
  .kinds__body {
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 3.5rem;
  }
}
.kinds__item:last-child .kinds__body {
  margin-bottom: 0;
}
.kinds__image-wrap {
  width: 41.25rem;
  flex-shrink: 0;
}
@media only screen and (max-width: 767.499px) {
  .kinds__image-wrap {
    width: 100%;
  }
}
.kinds__image-wrap img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 660/299;
}
.kinds__text {
  width: 33.7625rem;
  color: #3c3c3e;
  text-align: justify;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.875rem;
  font-style: normal;
  font-weight: 500;
  line-height: 3.1875rem;
  margin-top: -0.65625rem;
  margin-bottom: -0.65625rem;
}
@media only screen and (max-width: 767.499px) {
  .kinds__text {
    width: 100%;
    font-size: 1.8125rem;
    line-height: 3.125rem;
  }
}

/**
 * 理由セクション（Ceramic LP）
 * 構造は invisalign-lp/_reasons.scss に準拠
 */
.reasons {
  padding: 7.75rem 0 5.4375rem;
  position: relative;
  background: #6281b4;
}
@media only screen and (max-width: 767.499px) {
  .reasons {
    padding: 5rem 0 4rem;
  }
}
.reasons__container {
  max-width: 66.625rem;
  margin: 0 auto;
  padding: 0 1.25rem;
}
@media only screen and (max-width: 767.499px) {
  .reasons__container {
    padding: 0 2rem;
  }
}
.reasons__item {
  background: #fff;
  padding: 2.5rem 2.5rem 6rem;
  border-radius: 2rem;
  border: 0.125rem solid #b3c4df;
  position: relative;
}
.reasons__item::before {
  content: "";
  position: absolute;
  top: 0.7rem;
  left: 0.7rem;
  right: 0.7rem;
  bottom: 0.7rem;
  border: 0.25rem solid #6281b4;
  border-radius: 1rem;
  pointer-events: none;
}
@media only screen and (max-width: 767.499px) {
  .reasons__item::before {
    top: 0.5rem;
    left: 0.5rem;
    right: 0.5rem;
    bottom: 0.5rem;
    border-radius: 1.25rem;
    border: 0.25rem solid #6281b4;
  }
}
@media only screen and (max-width: 767.499px) {
  .reasons__item {
    padding: 1rem;
    border-radius: 1.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: -0.75rem;
    padding-top: 3.5rem;
  }
}
.reasons__subtitle {
  font-size: 2.75rem;
  font-weight: bold;
  color: #6281b4;
  padding-bottom: 0.5rem;
}
@media only screen and (max-width: 767.499px) {
  .reasons__subtitle {
    font-size: 2.8rem;
    padding-bottom: 0.5rem;
  }
}
.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.3rem;
  }
}
.reasons__title-text {
  width: 6.2rem;
  height: 6.2rem;
  background-color: #6281b4;
  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: 6rem;
    height: 6rem;
    font-size: 4rem;
    line-height: 6rem;
    font-weight: 700;
  }
}
.reasons__title-text.yellow {
  color: #fbf0bc;
}
.reasons__content-block.second {
  padding-top: 10.25rem;
}
@media only screen and (max-width: 767.499px) {
  .reasons__content-block.second {
    padding-top: 0;
    position: relative;
  }
}
.reasons__content-block.third {
  padding-top: 7.6875rem;
}
@media only screen and (max-width: 767.499px) {
  .reasons__content-block.third {
    padding-top: 0;
  }
}
.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: 0;
}
.reasons__item-top--reverse {
  gap: 2.875rem;
  flex-direction: row-reverse;
}
@media only screen and (max-width: 767.499px) {
  .reasons__item-top--reverse {
    flex-direction: row;
  }
}
@media only screen and (max-width: 767.499px) {
  .reasons__item-top.third {
    margin-bottom: 0;
  }
}
@media only screen and (max-width: 767.499px) {
  .reasons__item-top {
    gap: 0;
    position: relative;
  }
}
.reasons__item-title {
  flex: 1;
  background-color: #81e3d9;
  color: #fff;
  padding: 0 1.875rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 2.17rem;
  line-height: 1;
  min-height: 4.58375rem;
  margin-bottom: 1.5rem;
  letter-spacing: 0.02em;
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
}
.reasons__item-title.second {
  font-size: 1.5rem;
  margin-bottom: 1.625rem;
}
@media only screen and (max-width: 767.499px) {
  .reasons__item-title.second {
    margin-bottom: 1.3125rem;
  }
}
.reasons__item-title.third {
  font-size: 1.625rem;
  margin-bottom: 2rem;
}
@media only screen and (max-width: 767.499px) {
  .reasons__item-title.third {
    margin-bottom: 1.3125rem;
  }
}
.reasons__item-title::after {
  content: "";
  position: absolute;
  top: 0.625rem;
  left: 0.8125rem;
  width: 100%;
  height: 100%;
  border: 0.135rem solid #81e3d9;
  z-index: -1;
}
@media only screen and (max-width: 767.499px) {
  .reasons__item-title {
    font-size: 2.2rem;
    padding: 1rem 0 1rem 1rem;
    display: flex;
    flex: none;
    width: 94%;
    align-self: flex-start;
    margin: 10.75rem 0 3rem;
  }
  .reasons__item-title.second, .reasons__item-title.third {
    font-size: 2rem;
  }
  .reasons__item-title::after {
    top: 1rem;
    left: 1.25rem;
    width: 100%;
  }
}
.reasons__item-text {
  width: 100%;
  color: #3c3c3e;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.5;
  text-align: justify;
  margin-top: 2.5rem;
  margin-bottom: 4.875rem;
  padding: 0 1.5rem;
}
.reasons__item-text.second {
  margin-top: 1.75rem;
  margin-bottom: 3.25rem;
}
.reasons__item-text.third {
  margin-top: 0.5625rem;
  margin-bottom: 5.8125rem;
}
@media only screen and (max-width: 767.499px) {
  .reasons__item-text {
    font-size: 1.5rem;
    line-height: 1.45;
    text-align: left;
    padding: 0 2rem;
    margin-top: 0;
    margin-bottom: 3.125rem;
  }
}
.reasons__item-number {
  position: relative;
  width: 11.875rem;
  height: 5rem;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.reasons__item-number.second {
  margin-top: -2rem;
  width: 11.25rem;
}
@media only screen and (max-width: 767.499px) {
  .reasons__item-number.second {
    margin-top: 0;
    width: 15rem;
    position: absolute;
    right: 2rem;
    top: 2rem;
    left: auto;
  }
}
@media only screen and (max-width: 767.499px) {
  .reasons__item-number.third {
    right: 2rem;
  }
}
@media only screen and (max-width: 767.499px) {
  .reasons__item-number {
    justify-content: flex-start;
    width: 15rem;
    height: 8.75rem;
    position: absolute;
    right: 0;
    top: 2.75rem;
    z-index: 2;
  }
}
.reasons__item-number-text {
  font-family: "Inter", sans-serif;
  font-size: 2.8125rem;
  font-weight: 400;
  color: #81c4e3;
  letter-spacing: 0.175rem;
  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: 3.6rem;
    position: static;
  }
}
.reasons__item-number-num {
  font-size: 8.25rem;
  letter-spacing: -0.5rem;
  color: rgba(129, 196, 227, 0.25);
  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 {
  right: -7rem;
}
@media only screen and (max-width: 767.499px) {
  .reasons__item-number-num.second {
    right: -7rem;
  }
}
@media only screen and (max-width: 767.499px) {
  .reasons__item-number-num {
    font-size: 9.75rem;
    right: -4rem;
  }
}
.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;
    row-gap: 3.25rem;
    justify-content: center;
  }
  .reasons__item-images.second {
    row-gap: 2rem;
  }
  .reasons__item-images.third {
    padding-bottom: 1.375rem;
  }
}
.reasons__image-group {
  width: 17.875rem;
}
@media only screen and (max-width: 767.499px) {
  .reasons__image-group {
    flex: 0 0 calc(50% - 2rem);
    min-width: 0;
  }
}
@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% - 2rem);
    min-width: 0;
  }
}
@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;
  aspect-ratio: 286/248;
  border-radius: 0.5rem;
  margin-bottom: 0.375rem;
}
@media only screen and (max-width: 767.499px) {
  .reasons__image-group img {
    width: 17.875rem;
    border-radius: 0.75rem;
    margin-bottom: 1.25rem;
  }
}
.reasons__image-caption {
  color: #3c3c3e;
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 500;
  line-height: 1.8rem;
  letter-spacing: 0.01175rem;
  white-space: nowrap;
}
@media only screen and (max-width: 767.499px) {
  .reasons__image-caption {
    font-size: 1.5rem;
    line-height: 1.4;
  }
}

/**
 * Pricing Section (ceramic-lp)
 * 構造は invisalign-lp/_pricing.scss に準拠
 */
.pricing {
  padding: 4.4375rem 0 3.3125rem;
  position: relative;
  background-image: url(../../img/page/ceramic-lp/price/bg.png);
  background-position: center top;
  background-repeat: no-repeat;
}
@media only screen and (max-width: 767.499px) {
  .pricing {
    padding: 7.5rem 0 5rem;
    background-size: 100% auto;
    background-position: center top;
  }
}
.pricing__container {
  max-width: 45.3125rem;
  margin: 0 auto;
  padding: 0;
}
@media only screen and (max-width: 767.499px) {
  .pricing__container {
    padding: 0 2rem;
  }
}
.pricing__header {
  text-align: center;
  margin-bottom: 1.875rem;
}
@media only screen and (max-width: 767.499px) {
  .pricing__header {
    margin-bottom: 2.5rem;
  }
}
.pricing__title {
  color: #6281B4;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 2.625rem;
  font-style: normal;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.1125rem;
  margin: 0 0 2.75rem;
}
@media only screen and (max-width: 767.499px) {
  .pricing__title {
    font-size: 2.625rem;
    letter-spacing: 0.225rem;
    margin-bottom: 3rem;
  }
}
.pricing__table-group {
  margin-bottom: 0;
}
.pricing__table-group + .pricing__table-group {
  margin-top: 3rem;
}
@media only screen and (max-width: 767.499px) {
  .pricing__table-group + .pricing__table-group {
    margin-top: 3rem;
  }
}
.pricing__table-heading {
  display: flex;
  justify-content: center;
  margin-bottom: 2.5rem;
}
@media only screen and (max-width: 767.499px) {
  .pricing__table-heading {
    margin-bottom: 2rem;
  }
}
.pricing__table-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 35.5rem;
  height: 3.5rem;
  background-color: #ffffff;
  border: 1px solid #3C3C3E;
  border-radius: 1.75rem;
  color: #3C3C3E;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.875rem;
  font-style: normal;
  font-weight: 500;
  line-height: 1;
}
@media only screen and (max-width: 767.499px) {
  .pricing__table-badge {
    width: 70%;
    height: 4rem;
    border-radius: 3rem;
    font-size: 1.9375rem;
  }
}
.pricing__table-wrapper {
  border: 0.4375rem solid #6281B4;
  border-radius: 0.25rem;
  overflow: hidden;
}
@media only screen and (max-width: 767.499px) {
  .pricing__table-wrapper {
    border: 0.25rem solid #6281B4;
  }
}
.pricing__table {
  width: 100%;
  border-collapse: collapse;
}
.pricing__item {
  width: 16.25rem;
  height: 4rem;
  background-color: #CAE7ED;
  border-right: 0.4375rem solid #6281B4;
  border-bottom: 0.25rem solid #ffffff;
  color: #6281B4;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.008875rem;
  text-align: center;
  vertical-align: middle;
  padding: 0;
  box-sizing: border-box;
}
.pricing__item--tall {
  height: 5.90625rem;
}
.pricing__item--small {
  font-size: 1rem;
}
.pricing__item--set {
  height: 5.625rem;
  font-size: 1.125rem;
  line-height: 1.2;
  letter-spacing: 0;
}
.pricing__item--set-small {
  font-size: 1.125rem;
}
@media only screen and (max-width: 767.499px) {
  .pricing__item {
    width: 41%;
    height: 4.5rem;
    font-size: 1.125rem;
    letter-spacing: 0.017625rem;
    padding: 0;
    border-right: 0.25rem solid #6281B4;
    border-bottom: 0.125rem solid #ffffff;
  }
  .pricing__item--tall {
    height: 11.8125rem;
  }
}
@media only screen and (max-width: 767.499px) and (max-width: 767.499px) {
  .pricing__item--tall {
    height: 6.25rem;
  }
}
@media only screen and (max-width: 767.499px) {
  .pricing__item--small {
    font-size: 0.875rem;
  }
  .pricing__item--set {
    height: 6.5rem;
    font-size: 0.9375rem;
    line-height: 1.25;
  }
  .pricing__item--set-small {
    font-size: 0.8125rem;
  }
}
@media only screen and (max-width: 767.499px) and (max-width: 767.499px) {
  .pricing__item--set-small {
    font-size: 1.125rem;
  }
}
.pricing__price {
  background-color: #ffffff;
  text-align: center;
  vertical-align: middle;
  padding: 0.75rem 0.5rem;
  border-bottom: 0.25rem solid #6281B4;
  color: #3C3C3E;
  font-family: "Jost", sans-serif;
  font-size: 1.6125rem;
  font-style: normal;
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.05625rem;
}
.pricing__price span {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.075rem;
  font-weight: 500;
  letter-spacing: -0.0375rem;
}
@media only screen and (max-width: 767.499px) {
  .pricing__price {
    padding: 1.75rem 1rem;
    font-size: 1.875rem;
    letter-spacing: -0.113125rem;
    border-bottom: 0.125rem solid #6281B4;
  }
  .pricing__price span {
    font-size: 1.125rem;
    letter-spacing: -0.0755rem;
  }
}
.pricing__row:last-child .pricing__item, .pricing__row:last-child .pricing__price {
  border-bottom: none;
}
.pricing__note {
  max-width: 75rem;
  margin: 0 auto;
  padding: 1.875rem 0 0;
}
@media only screen and (max-width: 767.499px) {
  .pricing__note {
    padding-top: 2.5rem;
    max-width: none;
    padding: 2.5rem 2rem 0;
  }
}
.pricing__note-text {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 1.375rem;
  line-height: 1.875rem;
  color: #3C3C3E;
}
@media only screen and (max-width: 767.499px) {
  .pricing__note-text {
    font-size: 1.3125rem;
    line-height: 1.8;
  }
}

.treatment-flow--ceramic {
  position: relative;
  padding: 0 0 3.125rem;
  overflow-x: clip;
}
.treatment-flow--ceramic::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  aspect-ratio: 1440/2343;
  background-image: url(../../img/page/ceramic-lp/flow/bg.png);
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: 100% auto;
  pointer-events: none;
  z-index: 0;
}
@media only screen and (max-width: 767.499px) {
  .treatment-flow--ceramic {
    padding-bottom: 3.25rem;
  }
  .treatment-flow--ceramic::after {
    height: 15rem;
  }
}
.treatment-flow--ceramic .treatment-flow__container {
  position: relative;
  max-width: 56.375rem;
  margin: 0 auto;
  background-color: #fff;
  border-radius: 0.75rem;
  box-shadow: 0 0.25rem 0.9rem rgba(0, 0, 0, 0.1);
  overflow: hidden;
  z-index: 1;
}
@media only screen and (max-width: 767.499px) {
  .treatment-flow--ceramic .treatment-flow__container {
    max-width: none;
    margin: 0 1.75rem;
    border-radius: 0 0 1rem 1rem;
  }
}
.treatment-flow--ceramic .treatment-flow__header {
  position: relative;
  text-align: center;
  margin-bottom: 0.75rem;
}
.treatment-flow--ceramic .treatment-flow__header::before {
  content: "";
  position: absolute;
  top: -3.125rem;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 17rem;
  background: linear-gradient(0deg, #81E3D9 0%, #63BAA6 100%);
  border-radius: 50%/0 0 100% 100%;
  z-index: 0;
}
@media only screen and (max-width: 767.499px) {
  .treatment-flow--ceramic .treatment-flow__header::before {
    top: -0.8125rem;
    height: 11rem;
  }
}
.treatment-flow--ceramic .treatment-flow__title {
  position: relative;
  z-index: 1;
  margin: 0;
  padding: 5.375rem 0 2.5rem;
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 2.6875rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
}
@media only screen and (max-width: 767.499px) {
  .treatment-flow--ceramic .treatment-flow__title {
    padding: 3.25rem 0 1.75rem;
    font-size: 2.1rem;
    font-weight: 700;
  }
}
.treatment-flow--ceramic .treatment-flow__steps {
  position: relative;
  margin: 9.5rem auto 0;
  padding: 0 0 2.1875rem;
  width: 55.3125rem;
}
.treatment-flow--ceramic .treatment-flow__steps::before {
  content: "";
  position: absolute;
  left: 50%;
  top: var(--timeline-top, 1.25rem);
  width: 0.4rem;
  height: var(--timeline-height, auto);
  background: linear-gradient(0deg, #81E3D9 0%, #63BAA6 100%);
  transform: translateX(-50%);
}
@media only screen and (max-width: 767.499px) {
  .treatment-flow--ceramic .treatment-flow__steps {
    margin-top: 7.6875rem;
    padding-bottom: 1rem;
    width: 43.875rem;
  }
  .treatment-flow--ceramic .treatment-flow__steps::before {
    width: 0.25rem;
  }
}
.treatment-flow--ceramic .treatment-flow__step {
  position: relative;
  display: flex;
  align-items: center;
  margin-bottom: 4.1875rem;
}
.treatment-flow--ceramic .treatment-flow__step:last-child {
  margin-bottom: 0;
}
.treatment-flow--ceramic .treatment-flow__step-number {
  position: absolute;
  top: 20%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 6.5rem;
  height: 6.5rem;
  border-radius: 50%;
  background: linear-gradient(0deg, #81E3D9 0%, #63BAA6 100%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: Jost, sans-serif;
  font-size: 3.25rem;
  font-style: italic;
  font-weight: 900;
  line-height: 1;
  z-index: 2;
  padding-left: 0.125rem;
}
@media only screen and (max-width: 767.499px) {
  .treatment-flow--ceramic .treatment-flow__step-number {
    width: 4.6374375rem;
    height: 4.636625rem;
    font-size: 2.375rem;
    font-weight: 700;
    padding-left: 0;
  }
}
.treatment-flow--ceramic .treatment-flow__step-content {
  display: flex;
  width: 100%;
  justify-content: space-between;
}
.treatment-flow--ceramic .treatment-flow__step-image {
  position: relative;
  width: 50%;
  flex-shrink: 0;
  display: flex;
}
.treatment-flow--ceramic .treatment-flow__step-image img {
  display: block;
  width: 21.5625rem;
  height: 17.1875rem;
  border-radius: 1.5rem;
  -o-object-fit: cover;
  object-fit: cover;
}
.treatment-flow--ceramic .treatment-flow__step-info {
  width: 50%;
  flex-shrink: 0;
}
.treatment-flow--ceramic .treatment-flow__step-title {
  margin: 0 0 1rem;
  color: #3C3C3E;
  font-family: "Inter", "Noto Sans JP", sans-serif;
  font-size: 2.4086875rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.07525rem;
  white-space: nowrap;
}
@media only screen and (max-width: 767.499px) {
  .treatment-flow--ceramic .treatment-flow__step-title {
    margin-bottom: 0.5rem;
    font-size: 1.8753125rem;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 0;
    transform: translateY(-2rem);
  }
}
.treatment-flow--ceramic .treatment-flow__step-text {
  margin: 0;
  color: #3C3C3E;
  text-align: justify;
  font-family: "Inter", "Noto Sans JP", sans-serif;
  font-size: 1.686125rem;
  font-weight: 400;
  line-height: 1.2;
}
@media only screen and (max-width: 767.499px) {
  .treatment-flow--ceramic .treatment-flow__step-text {
    font-size: 1.31275rem;
    font-weight: 400;
    line-height: 1.2;
  }
}
.treatment-flow--ceramic .treatment-flow__notes {
  padding: 2.25rem 0.75rem 3rem;
}
@media only screen and (max-width: 767.499px) {
  .treatment-flow--ceramic .treatment-flow__notes {
    padding: 1.75rem 0.75rem 2.5rem;
  }
}
.treatment-flow--ceramic .treatment-flow__note {
  margin: 0;
  color: #3C3C3E;
  text-align: justify;
  font-family: "Inter", "Noto Sans JP", sans-serif;
  font-size: 1.7660625rem;
  font-weight: 400;
  line-height: 1.36364;
}
.treatment-flow--ceramic .treatment-flow__note + .treatment-flow__note {
  margin-top: 1.5rem;
}
@media only screen and (max-width: 767.499px) {
  .treatment-flow--ceramic .treatment-flow__note {
    font-size: 1.375rem;
    font-weight: 400;
    line-height: 1.36364;
  }
}
.treatment-flow--ceramic .treatment-flow__step:nth-child(odd) .treatment-flow__step-image {
  padding: 0 3.75rem 0 0;
  justify-content: flex-start;
}
.treatment-flow--ceramic .treatment-flow__step:nth-child(odd) .treatment-flow__step-image::after {
  content: "";
  position: absolute;
  top: var(--line-top, 20%);
  right: 2.5rem;
  width: 3.70875rem;
  height: 0.5056875rem;
  background: linear-gradient(0deg, #81E3D9 0%, #63BAA6 100%);
  transform: translateY(-50%);
  z-index: 1;
}
.treatment-flow--ceramic .treatment-flow__step:nth-child(even) .treatment-flow__step-image {
  order: 2;
  padding: 0 0 0 3.625rem;
  justify-content: flex-end;
}
.treatment-flow--ceramic .treatment-flow__step:nth-child(even) .treatment-flow__step-image::after {
  content: "";
  position: absolute;
  top: var(--line-top, 20%);
  left: 2.5rem;
  width: 3.70875rem;
  height: 0.5056875rem;
  background: linear-gradient(0deg, #81E3D9 0%, #63BAA6 100%);
  transform: translateY(-50%);
  z-index: 1;
}
.treatment-flow--ceramic .treatment-flow__step:nth-child(odd) .treatment-flow__step-info {
  width: 26.25rem;
  padding-left: 3.7rem;
  padding-right: 0.625rem;
}
.treatment-flow--ceramic .treatment-flow__step:nth-child(even) .treatment-flow__step-info {
  order: 1;
  width: 25.8125rem;
  padding-right: 2.5625rem;
  padding-left: 0.625rem;
}
@media only screen and (max-width: 767.499px) {
  .treatment-flow--ceramic .treatment-flow__step-image {
    width: 50%;
  }
  .treatment-flow--ceramic .treatment-flow__step-image img {
    width: 16.8125rem;
    height: 13.4375rem;
    border-radius: 1.5rem;
  }
  .treatment-flow--ceramic .treatment-flow__step:nth-child(odd) .treatment-flow__step-image {
    padding: 0 2.875rem 0 0;
    justify-content: flex-start;
  }
  .treatment-flow--ceramic .treatment-flow__step:nth-child(odd) .treatment-flow__step-image::after {
    right: 2.1875rem;
    width: 2.8875rem;
    height: 0.3936875rem;
  }
  .treatment-flow--ceramic .treatment-flow__step:nth-child(even) .treatment-flow__step-image {
    padding: 0 0.625rem 0 2.875rem;
    justify-content: flex-end;
  }
  .treatment-flow--ceramic .treatment-flow__step:nth-child(even) .treatment-flow__step-image::after {
    left: 1.6875rem;
    width: 2.8875rem;
    height: 0.3936875rem;
  }
  .treatment-flow--ceramic .treatment-flow__step-info {
    width: 50%;
  }
  .treatment-flow--ceramic .treatment-flow__step:nth-child(odd) .treatment-flow__step-info {
    width: 19rem;
    padding-left: 0;
  }
  .treatment-flow--ceramic .treatment-flow__step:nth-child(even) .treatment-flow__step-info {
    width: 18.4375rem;
    padding-right: 0;
  }
}

.faq {
  position: relative;
  padding: 5.25rem 0 7.3125rem;
  background: rgba(129, 227, 217, 0.1098);
}
@media only screen and (max-width: 767.499px) {
  .faq {
    padding: 4.25rem 0 5rem;
  }
}
.faq__container {
  max-width: 70rem;
  margin: 0 auto;
  padding: 0 1.5rem;
}
@media only screen and (max-width: 767.499px) {
  .faq__container {
    padding: 0 1.9375rem;
  }
}
.faq__header {
  text-align: center;
  margin-bottom: 4.6875rem;
}
@media only screen and (max-width: 767.499px) {
  .faq__header {
    margin-bottom: 3.0625rem;
  }
}
.faq__title {
  position: relative;
  display: inline-block;
  margin: 0;
  color: #3C3C3E;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 2.9398125rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.091875rem;
}
@media only screen and (max-width: 767.499px) {
  .faq__title {
    font-size: 2.0694375rem;
    letter-spacing: 0;
  }
}
.faq__title::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -1.375rem;
  width: 7.625rem;
  height: 0.1875rem;
  transform: translateX(-50%);
  background-color: #3C3C3E;
}
@media only screen and (max-width: 767.499px) {
  .faq__title::after {
    bottom: -0.875rem;
    width: 5.4375rem;
    height: 0.1875rem;
  }
}
.faq__items {
  display: flex;
  flex-direction: column;
  gap: 5rem;
  max-width: 61.1845625rem;
  margin: 0 auto;
}
@media only screen and (max-width: 767.499px) {
  .faq__items {
    gap: 3.5rem;
    max-width: 43.0625rem;
  }
}
.faq__item {
  position: relative;
  overflow: visible;
}
.faq__item::before {
  content: "";
  position: absolute;
  top: 2.25rem;
  left: 0;
  right: 0;
  bottom: 0;
  box-shadow: 0 0.5rem 0.625rem 0.375rem rgba(110, 101, 104, 0.22);
  pointer-events: none;
  z-index: 0;
}
@media only screen and (max-width: 767.499px) {
  .faq__item::before {
    top: 2rem;
  }
}
.faq__question {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  min-height: 4.164625rem;
  padding: 0 2.25rem;
  background: linear-gradient(0deg, #81E3D9 0%, #81E3D9 100%), #81E3D9;
  clip-path: polygon(0 0, 96.89% 0, 100% 44.03%, 100% 100%, 0 100%);
}
@media only screen and (max-width: 767.499px) {
  .faq__question {
    gap: 1.125rem;
    min-height: 2.9375rem;
    padding: 0 1.5rem;
  }
}
.faq__question-label {
  flex-shrink: 0;
  color: #fff;
  font-family: "Jost", sans-serif;
  font-size: 2.75rem;
  font-weight: 700;
  line-height: 1;
}
@media only screen and (max-width: 767.499px) {
  .faq__question-label {
    font-size: 2.25rem;
  }
}
.faq__question-text {
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 2.0420625rem;
  font-weight: 500;
  line-height: 1;
}
@media only screen and (max-width: 767.499px) {
  .faq__question-text {
    font-family: "Inter", "Noto Sans JP", sans-serif;
    font-size: 1.4375rem;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 0.0028125rem;
  }
}
.faq__answer {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 1.4375rem 4.8125rem 2rem 2.25rem;
  background-color: #E6F9F7;
}
@media only screen and (max-width: 767.499px) {
  .faq__answer {
    gap: 1.125rem;
    padding: 1.0625rem 2.9375rem 1.3125rem 1.5rem;
  }
}
.faq__answer-label {
  flex-shrink: 0;
  color: #81E3D9;
  font-family: "Jost", sans-serif;
  font-size: 2.75rem;
  font-weight: 700;
  line-height: 1;
}
@media only screen and (max-width: 767.499px) {
  .faq__answer-label {
    font-size: 2.25rem;
  }
}
.faq__answer-text {
  color: #3C3C3E;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.7756875rem;
  font-weight: 500;
  line-height: 1.2;
  text-align: justify;
}
@media only screen and (max-width: 767.499px) {
  .faq__answer-text {
    font-family: "Inter", "Noto Sans JP", sans-serif;
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 1.2;
  }
}

.risk {
  padding: 3.67125rem 0 3.23375rem;
  background-color: #81C4E3;
}
.risk__container {
  max-width: 83.4175rem;
  margin: 0 auto;
  padding: 0 1rem;
}
@media only screen and (max-width: 767.499px) {
  .risk__container {
    max-width: 43.25rem;
    padding: 0;
  }
}
.risk__content {
  background-color: #fff;
  border: 0.09375rem solid #6281B4;
  border-radius: 0.625rem;
  box-shadow: 0.3125rem 0.375rem 1rem rgba(110, 101, 104, 0.17);
  padding: 4.143125rem 0 3.125rem;
}
@media only screen and (max-width: 767.499px) {
  .risk__content {
    padding: 2.25rem 1.6875rem 4.4375rem;
  }
}
.risk__title {
  position: relative;
  margin: 0 0 7.1875rem;
  color: #3C3C3E;
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.15rem;
}
@media only screen and (max-width: 767.499px) {
  .risk__title {
    margin-bottom: 2.9375rem;
    font-size: 2.25rem;
    letter-spacing: 0.1125rem;
  }
}
.risk__title::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -1.8125rem;
  width: 9.8125rem;
  height: 0.125rem;
  transform: translateX(-50%);
  background-color: #3C3C3E;
}
@media only screen and (max-width: 767.499px) {
  .risk__title::after {
    bottom: -0.89125rem;
    width: 5.259875rem;
  }
}
.risk__intro, .risk__footer {
  margin: 0;
  color: #3C3C3E;
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
}
.risk__intro {
  margin-bottom: 3.125rem;
  font-size: 2.25rem;
  font-weight: 500;
  line-height: 3.25rem;
  letter-spacing: 0.1125rem;
}
@media only screen and (max-width: 767.499px) {
  .risk__intro {
    margin-bottom: 3.25rem;
    font-size: 1.5rem;
    line-height: 2.625rem;
    letter-spacing: 0.075rem;
  }
}
.risk__list {
  width: 74.75rem;
  margin: 0 auto 2.375rem;
  padding: 0;
  list-style: none;
}
@media only screen and (max-width: 767.499px) {
  .risk__list {
    width: min(100%, 39.875rem);
    margin-bottom: 3.4375rem;
  }
}
.risk__item {
  position: relative;
  margin-bottom: 0.5rem;
  padding-left: 2.375rem;
  color: #3C3C3E;
  text-align: justify;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.875rem;
  font-weight: 500;
  line-height: 3.25rem;
  letter-spacing: 0.09375rem;
}
@media only screen and (max-width: 767.499px) {
  .risk__item {
    margin-bottom: 0;
    padding-left: 1.875rem;
    font-size: 1.4375rem;
    line-height: 2.625rem;
    letter-spacing: 0.071875rem;
  }
}
.risk__item:last-child {
  margin-bottom: 0;
}
.risk__item::before {
  content: "・";
  position: absolute;
  top: 0;
  left: 0;
  color: #3C3C3E;
  font-size: 1em;
  line-height: inherit;
}
.risk__footer {
  font-size: 2.25rem;
  font-weight: 500;
  line-height: 3.25rem;
  letter-spacing: 0.1125rem;
}
@media only screen and (max-width: 767.499px) {
  .risk__footer {
    font-size: 1.5rem;
    font-weight: 500;
    line-height: 2.625rem;
    letter-spacing: 0.075rem;
  }
}

.access {
  padding: 4.5rem 0 4.375rem;
  background: #fff;
  position: relative;
}
@media only screen and (max-width: 767.499px) {
  .access {
    padding: 2rem 0 5.625rem;
  }
}
.access__container {
  max-width: 62.5rem;
  margin: 0 auto;
  padding: 0 0 2rem;
}
@media only screen and (max-width: 767.499px) {
  .access__container {
    padding: 0 2.375rem;
  }
}
.access__header {
  text-align: center;
  margin-bottom: 5rem;
}
@media only screen and (max-width: 767.499px) {
  .access__header {
    margin-bottom: 4rem;
  }
}
.access__title {
  font-size: 3.2rem;
  font-weight: 700;
  color: #3C3C3E;
  line-height: 1.2;
  margin: 0;
  position: relative;
}
@media only screen and (max-width: 767.499px) {
  .access__title {
    font-size: 3.2rem;
  }
}
.access__title::after {
  content: "";
  position: absolute;
  bottom: -0.8rem;
  left: 50%;
  transform: translateX(-50%);
  width: 9rem;
  height: 0.1875rem;
  background-color: #3C3C3E;
}
@media only screen and (max-width: 767.499px) {
  .access__title::after {
    bottom: -1rem;
    width: 7.8rem;
    height: 0.25rem;
  }
}
.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 {
    padding: 0 3.125rem;
  }
}
.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: #3C3C3E;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 767.499px) {
  .access__train-title {
    font-size: 2.6rem;
    margin-bottom: 1.6rem;
  }
}
.access__train-title::before {
  content: "●";
  color: #3C3C3E;
  margin-right: 0.5rem;
  font-size: 2.375rem;
}
.access__train-route {
  font-size: 1.2rem;
  color: #3C3C3E;
  line-height: 1.4;
  margin-bottom: 1.25rem;
  font-weight: 500;
}
@media only screen and (max-width: 767.499px) {
  .access__train-route {
    font-size: 2rem;
    line-height: 1.5;
    margin-bottom: 2.8125rem;
  }
}
@media only screen and (max-width: 767.499px) {
  .access__clinic-info {
    padding-top: 1rem;
  }
}
.access__info-row {
  display: flex;
  align-items: center;
  margin-bottom: 1.6rem;
}
@media only screen and (max-width: 767.499px) {
  .access__info-row {
    gap: 8rem;
    margin-bottom: 3.2rem;
  }
}
.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: #3C3C3E;
  color: #fff;
  font-size: 1.2rem;
  font-weight: 700;
  padding: 0.3rem 0;
  text-align: center;
  margin-right: 4rem;
  min-width: 6.5rem;
}
@media only screen and (max-width: 767.499px) {
  .access__info-label {
    font-size: 2rem;
    margin-right: 0;
    min-width: 11rem;
    height: 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
.access__info-value {
  font-size: 1.2rem;
  color: #3C3C3E;
  line-height: 1.4;
  flex: 1;
  font-weight: 500;
}
@media only screen and (max-width: 767.499px) {
  .access__info-value {
    font-size: 2rem;
  }
}
.access__info-value.num {
  font-family: "Jost", sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
}
.access__schedule-table {
  border-collapse: collapse;
  margin-top: 0.5rem;
  font-size: 0.9rem;
}
@media only screen and (max-width: 767.499px) {
  .access__schedule-table {
    font-size: 1.6rem;
  }
}
.access__schedule-table tr {
  border-bottom: 0.0625rem solid #ddd;
}
.access__schedule-table th,
.access__schedule-table td {
  border: none;
  padding: 0.5rem 0;
  text-align: center;
  border-bottom: 0.0625rem solid #ddd;
}
@media only screen and (max-width: 767.499px) {
  .access__schedule-table th,
  .access__schedule-table td {
    padding: 0.6rem 0.4rem;
  }
}
.access__schedule-table th {
  background: none;
  font-weight: 700;
  font-size: 1.3rem;
  color: #3C3C3E;
}
@media only screen and (max-width: 767.499px) {
  .access__schedule-table th {
    font-size: 1.5rem;
  }
}
.access__schedule-table .time {
  background: none;
  color: #3C3C3E;
  font-family: "Jost", sans-serif;
  font-size: 1.4rem;
  font-weight: 500;
  white-space: nowrap;
  text-align: left;
}
@media only screen and (max-width: 767.499px) {
  .access__schedule-table .time {
    font-size: 1.6rem;
  }
}
.access__schedule-table .available {
  color: #3C3C3E;
  font-weight: 600;
  width: 4.6rem;
  font-size: 1.3rem;
  background: #fff;
}
@media only screen and (max-width: 767.499px) {
  .access__schedule-table .available {
    font-size: 1.5rem;
  }
}
.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: 2rem;
  }
}
.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: 10rem;
  }
}
.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: 31.5rem;
    margin-top: 3rem;
  }
}

.footer-section {
  padding: 1.75rem 0;
  background: #81E3D9;
  position: relative;
}
@media only screen and (max-width: 767.499px) {
  .footer-section {
    padding: 3rem 0 5rem;
  }
}
.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 2rem;
    flex-direction: column;
    gap: 1.5rem;
  }
}
.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;
}
@media (hover: hover) {
  .footer-section__logo a:hover {
    transform: translateY(-0.25rem);
    filter: drop-shadow(0 0.5rem 1rem rgba(0, 0, 0, 0.2));
  }
}
@media (hover: none) {
  .footer-section__logo a:active {
    transform: translateY(-0.25rem);
    filter: drop-shadow(0 0.5rem 1rem rgba(0, 0, 0, 0.2));
  }
}
.footer-section__logo-image {
  width: 100%;
}
.footer-section__logo-text {
  text-align: left;
  margin-bottom: 0;
  flex-shrink: 0;
  width: 34%;
}
@media only screen and (min-width: 768px) {
  .footer-section__logo-text {
    display: none;
  }
}
.footer-section__logo-text a {
  display: block;
}
@media (hover: hover) {
  .footer-section__logo-text a:hover {
    transform: translateY(-0.25rem);
    filter: drop-shadow(0 0.5rem 1rem rgba(0, 0, 0, 0.2));
  }
}
@media (hover: none) {
  .footer-section__logo-text a:active {
    transform: translateY(-0.25rem);
    filter: drop-shadow(0 0.5rem 1rem rgba(0, 0, 0, 0.2));
  }
}
.footer-section__logo-name {
  width: 100%;
  height: auto;
}
.footer-section__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}
@media only screen and (max-width: 767.499px) {
  .footer-section__content {
    width: 100%;
    gap: 1.5rem;
    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: 1rem;
    margin-top: 0;
  }
}
.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: 1rem;
    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: 1rem 1rem;
    min-height: 5rem;
    width: 100%;
  }
}
.footer-section__btn--tel {
  background-color: #81C4E3;
  color: #fff;
  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.25rem 0.25rem 0.5rem rgba(0, 0, 0, 0.3);
    flex: 1;
    padding: 0;
    min-height: auto;
    height: 4.375rem;
    width: 10rem;
    border: solid 0.375rem #fff;
    border-radius: 0.5rem;
  }
}
@media (hover: hover) {
  .footer-section__btn--tel:hover {
    background: #fff;
    color: #81C4E3;
  }
}
@media (hover: none) {
  .footer-section__btn--tel:active {
    background: #fff;
    color: #81C4E3;
  }
}
.footer-section__btn--tel span {
  font-size: 1.1rem;
}
@media only screen and (max-width: 767.499px) {
  .footer-section__btn--tel span {
    font-size: 1.375rem;
  }
  .footer-section__btn--tel span .kana {
    font-size: 1rem;
  }
}
.footer-section__btn--web {
  background: #6281B4;
  color: #fff;
  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.25rem 0.25rem 0.5rem rgba(0, 0, 0, 0.3);
    flex: 1;
    padding: 0;
    min-height: auto;
    height: 4.375rem;
    width: 8rem;
    border: solid 0.375rem #fff;
    border-radius: 0.5rem;
  }
}
@media (hover: hover) {
  .footer-section__btn--web:hover {
    background: #fff;
    color: #6281B4;
    border: solid 0.1875rem #6281B4;
  }
}
@media (hover: none) {
  .footer-section__btn--web:active {
    background: #fff;
    color: #6281B4;
    border: solid 0.1875rem #6281B4;
  }
}
.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.2rem;
    width: 4rem;
    height: 4.375rem;
    box-shadow: 0.25rem 0.25rem 0.5rem rgba(0, 0, 0, 0.3);
    border-radius: 0.3rem;
    min-height: auto;
  }
  .footer-section__btn--line .footer-section__btn-text {
    display: none;
  }
}
@media (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: 1.4rem;
  }
}
.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: 1.5rem;
    text-align: center;
    width: 100%;
  }
}
.footer-section__clinic-text {
  font-size: 1.25rem;
  font-weight: 600;
  color: #3C3C3E;
  margin: -1.2rem 0 0 1rem;
  text-align: left;
}
@media only screen and (max-width: 767.499px) {
  .footer-section__clinic-text {
    font-size: 1.8rem;
    margin: 0;
    text-align: center;
  }
}
/*# sourceMappingURL=maps/style-ceramic.css.map */
