@charset "UTF-8";
/*
 * 関数定義用ファイル
 */
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap");
/*! destyle.css v4.0.1 | MIT License | https://github.com/nicolas-cusan/destyle.min.css */
*,
::before,
::after {
  box-sizing: border-box;
  border-style: solid;
  border-width: 0;
  min-width: 0;
}

html {
  line-height: 1.5;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
}

body {
  margin: 0;
}

main {
  display: block;
}

p,
table,
blockquote,
address,
pre,
iframe,
form,
figure,
dl {
  margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
  margin: 0;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

dt {
  font-weight: 700;
}

dd {
  margin-left: 0;
}

hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
  border-top-width: 1px;
  margin: 0;
  clear: both;
  color: inherit;
}

pre {
  font-family: monospace, monospace;
  font-size: inherit;
}

address {
  font-style: inherit;
}

a {
  background-color: transparent;
  text-decoration: none;
  color: inherit;
}

abbr[title] {
  -webkit-text-decoration: underline dotted;
  text-decoration: underline dotted;
}

code,
kbd,
samp {
  font-family: monospace, monospace;
  font-size: inherit;
}

small {
  font-size: 80%;
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

svg,
img,
embed,
object,
iframe {
  vertical-align: bottom;
}

button,
input,
optgroup,
select,
textarea {
  vertical-align: middle;
  color: inherit;
  font: inherit;
  background: transparent;
  padding: 0;
  margin: 0;
  border-radius: 0;
  text-align: inherit;
  text-transform: inherit;
}

button,
[type="button"],
[type="reset"],
[type="submit"] {
  cursor: pointer;
}

button:disabled,
[type="button"]:disabled,
[type="reset"]:disabled,
[type="submit"]:disabled {
  cursor: default;
}

:-moz-focusring {
  outline: auto;
}

select:disabled {
  opacity: inherit;
}

option {
  padding: 0;
}

fieldset {
  margin: 0;
  padding: 0;
  min-width: 0;
}

legend {
  padding: 0;
}

progress {
  vertical-align: baseline;
}

textarea {
  overflow: auto;
}

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

[type="search"] {
  outline-offset: -2px;
}

[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}

[type="number"] {
  -moz-appearance: textfield;
}

label[for] {
  cursor: pointer;
}

details {
  display: block;
}

summary {
  display: list-item;
}

[contenteditable]:focus {
  outline: auto;
}

table {
  border-color: inherit;
  border-collapse: collapse;
}

caption {
  text-align: left;
}

td,
th {
  vertical-align: top;
  padding: 0;
}

b,
strong,
th {
  font-weight: 400;
}

summary {
  display: block;
  list-style: none;
}

/* 一部ブラウザで消えなかった場合は以下も追記 */
summary::-webkit-details-marker {
  display: none;
}

@font-face {
  font-family: "ADAM.CG PRO";
  font-weight: 400;
  font-style: normal;
  src: url("../fonts/ADAM.CG PRO.otf") format("opentype");
}
:root {
  --color-black: #333;
  --color-gray1: #7a6a56;
  --color-gray2: #6d5747;
  --color-gray3: #796a55;
  --color-gray4: #6f6d6d;
  --color-orange: #fe9c3a;
  --color-orange2: #f4b15a;
  --color-orange3: #ed723f;
  --color-brown: #957d6c;
  --color-pink: #fdaea2;
  --color-pink2: #fff0f0;
  --color-pink3: #f2c5c9;
  --color-pink4: #fa9aa4;
  --color-pink5: #ff7584;
  --color-beige: #fcfaf6;
  --color-yellow: #f2d32d;
  --color-light-blue: #84ccde;
  --color-light-blue2: #80ceff;
  --font-family-common: fot-tsukuardgothic-std, sans-serif;
  --font-family-noto: "Noto Sans JP", serif;
  --font-family-adam: "ADAM.CG PRO", serif;
  --duration: 0.3s;
  --nav-duration: 0.5s;
  --vw: 1vw;
  --leading-trim: calc((1em - 1lh) / 2);
}

/*
 * 流体タイポ計算用 関数
 *
 * @use parts/_fonts.scssファイルを参照
 */
/*
 * 逆流体タイポ計算用 関数
 * PCでは小さく、スマホでは大きく表示する場合に使用
 */
.font-16-24 {
  font-size: fluid-text(16px, 24px);
}

.font-24-48 {
  font-size: fluid-text(24px, 48px);
}

/*
 * メディアクエリ用mixin
 */
html {
  opacity: 0;
  transition: opacity 1s ease-out;
}
html.font-active {
  opacity: 1;
}

body {
  background-color: #fff;
  font-family: var(--font-family-common);
  color: var(--color-black);
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 400;
  letter-spacing: -0.03em;
}

img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
}

a {
  display: inline-block;
  transition: opacity var(--duration);
}
@media (768px <= width) {
  a:hover {
    opacity: 0.7;
  }
}

button {
  transition: opacity var(--duration);
}
@media (768px <= width) {
  button:hover {
    opacity: 0.7;
  }
}

.c-relative {
  position: relative;
}

/* ===============================================
#テキスト
=============================================== */
.c-text__gradation-blue {
  background: var(--gradation-blue);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.c-lead {
  color: var(--color-gray3);
  text-align: center;
  font-size: clamp(1.125rem, 0.8839779006vw + 0.9178176796rem, 1.625rem);
  font-weight: 700;
  line-height: 1.53;
}
.c-lead b {
  color: var(--color-pink4);
  font-weight: 700;
}
.c-lead.text-left {
  text-align: left;
}

.c-text {
  font-size: clamp(0.875rem, 0.2209944751vw + 0.8232044199rem, 1rem);
  display: flex;
  flex-direction: column;
  gap: 1.5em;
}
.c-text b {
  color: var(--color-blue);
  font-weight: 700;
}
.c-text.line-height-180 {
  line-height: 1.8;
  gap: 1.8em;
}
.c-text.line-height-170 {
  line-height: 1.7;
  gap: 1.7em;
}
.c-text.text-center {
  text-align: center;
}
@media (768px <= width) {
  .c-text.text-center-pc {
    text-align: center;
  }
}

.c-text__color-white {
  color: #fff;
}

.c-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
}
@media (768px <= width) {
  .c-grid.col-2 {
    grid-template-columns: repeat(2, 1fr);
  }
}
.c-grid.gap-28 {
  gap: 1.75rem;
}
.c-grid.gap-48-28 {
  gap: clamp(2rem, 1.7679558011vw + 1.5856353591rem, 3rem) 1.75rem;
}

.f-family-noto {
  font-family: var(--font-family-noto);
}

/* ===============================================
#見出し
=============================================== */
.c-heading__h2 {
  position: relative;
  padding-top: clamp(1.5rem, 5.0828729282vw + 0.3087016575rem, 4.375rem);
  text-align: center;
  font-size: clamp(1.8125rem, 2.7624309392vw + 1.1650552486rem, 3.375rem);
  font-weight: 700;
  color: var(--color-gray3);
}
.c-heading__h2::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  display: block;
  width: clamp(1.25rem, 4.1988950276vw + 0.2658839779rem, 3.625rem);
  height: clamp(1.25rem, 4.1988950276vw + 0.2658839779rem, 3.625rem);
  background: transparent url(./../image/heading-object.avif) no-repeat center center/contain;
}

/* ===============================================
#inner
=============================================== */
.c-inner {
  width: 92%;
  margin-inline: auto;
}
.c-inner.max-1260 {
  max-width: 1260px;
}
.c-inner.max-1180 {
  max-width: 1180px;
}
.c-inner.max-1120 {
  max-width: 1120px;
}
.c-inner.max-1000 {
  max-width: 1000px;
}
.c-inner.max-900 {
  max-width: 900px;
}
.c-inner.max-880 {
  max-width: 880px;
}
.c-inner.max-850 {
  max-width: 850px;
}
.c-inner.max-820 {
  max-width: 820px;
}
.c-inner.max-800 {
  max-width: 800px;
}
.c-inner.max-780 {
  max-width: 780px;
}
.c-inner.max-640 {
  max-width: 640px;
}
.c-inner.max-600 {
  max-width: 600px;
}

.max-720 {
  max-width: 720px;
  margin-inline: auto;
}

.max-580 {
  max-width: 580px;
  margin-inline: auto;
}

.max-430 {
  max-width: 430px;
  margin-inline: auto;
}

/* ===============================================
#余白
=============================================== */
.c-sec-pd {
  padding-block: clamp(2.5rem, 4.4198895028vw + 1.4640883978rem, 5rem);
}
.c-sec-pd:has(+ .p-cta__section) {
  padding-bottom: clamp(3.625rem, 17.3480662983vw + -0.4409530387rem, 13.4375rem);
}

.c-pt-40-80 {
  padding-top: clamp(2.5rem, 4.4198895028vw + 1.4640883978rem, 5rem);
}

.c-flex-col {
  display: flex;
  flex-direction: column;
}
.c-flex-col.gap-40-130 {
  gap: clamp(2.5rem, 9.9447513812vw + 0.169198895rem, 8.125rem);
}
.c-flex-col.gap-40-110 {
  gap: clamp(2.5rem, 7.7348066298vw + 0.6871546961rem, 6.875rem);
}
.c-flex-col.gap-40-100 {
  gap: clamp(2.5rem, 6.6298342541vw + 0.9461325967rem, 6.25rem);
}
.c-flex-col.gap-40-80 {
  gap: clamp(2.5rem, 4.4198895028vw + 1.4640883978rem, 5rem);
}
.c-flex-col.gap-40-70 {
  gap: clamp(2.5rem, 3.3149171271vw + 1.7230662983rem, 4.375rem);
}
.c-flex-col.gap-20-70 {
  gap: clamp(1.25rem, 5.5248618785vw + -0.0448895028rem, 4.375rem);
}
.c-flex-col.gap-40-60 {
  gap: clamp(2.5rem, 2.2099447514vw + 1.9820441989rem, 3.75rem);
}
.c-flex-col.gap-30-60 {
  gap: clamp(1.875rem, 3.3149171271vw + 1.0980662983rem, 3.75rem);
}
.c-flex-col.gap-60-50 {
  gap: clamp(50px, -1.1049723757vw + 64.1436464088px, 60px);
}
.c-flex-col.gap-30-50 {
  gap: clamp(1.875rem, 2.2099447514vw + 1.3570441989rem, 3.125rem);
}
.c-flex-col.gap-20-50 {
  gap: clamp(1.25rem, 3.3149171271vw + 0.4730662983rem, 3.125rem);
}
.c-flex-col.gap-10-50 {
  gap: clamp(0.625rem, 4.4198895028vw + -0.4109116022rem, 3.125rem);
}
.c-flex-col.gap-30-40 {
  gap: clamp(1.875rem, 1.1049723757vw + 1.6160220994rem, 2.5rem);
}
.c-flex-col.gap-20-40 {
  gap: clamp(1.25rem, 2.2099447514vw + 0.7320441989rem, 2.5rem);
}
.c-flex-col.gap-20-30 {
  gap: clamp(1.25rem, 1.1049723757vw + 0.9910220994rem, 1.875rem);
}
.c-flex-col.gap-10-20 {
  gap: clamp(0.625rem, 1.1049723757vw + 0.3660220994rem, 1.25rem);
}
.c-flex-col.gap-20 {
  gap: 20px;
}
.c-flex-col.gap-30 {
  gap: 30px;
}
.c-flex-col.gap-40 {
  gap: 40px;
}
.c-flex-col.gap-em {
  gap: 1em;
}

@media (width <= 767px) {
  .c-pb-130-sp {
    padding-bottom: 130px;
  }
}

/* ===============================================
#デバイス非表示
=============================================== */
@media (768px <= width) {
  .c-sp {
    display: none !important;
  }
}

@media (1024px <= width) {
  .c-tb_sp {
    display: none !important;
  }
}

@media (width <= 767px) {
  .c-pc_tb {
    display: none !important;
  }
}

@media (width <= 1023px) {
  .c-pc {
    display: none !important;
  }
}

/* ===============================================
#共通ボタン
=============================================== */
.c-btn__simple {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  border-radius: 50vw;
  font-weight: 700;
  position: relative;
  line-height: 1.2;
  min-width: 170px;
  width: -moz-fit-content;
  width: fit-content;
  height: clamp(67px, -0.4419889503vw + 72.6574585635px, 71px);
  padding-inline: 1em;
}
@media (width <= 767px) {
  .c-btn__simple {
    max-width: 180px;
    width: 100%;
  }
}
.c-btn__simple::before {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  width: 100%;
  height: 100%;
  border-radius: 50vw;
}
.c-btn__simple.web {
  font-size: clamp(1.25rem, -0.1104972376vw + 1.2758977901rem, 1.1875rem);
  background-color: var(--color-orange);
}
.c-btn__simple.web::before {
  border: 0.0625rem solid #d1700e;
}
.c-btn__simple.tel {
  font-size: clamp(13px, -0.1104972376vw + 14.4143646409px, 14px);
  background-color: var(--color-brown);
  flex-direction: column;
}
.c-btn__simple.tel::before {
  border: 1px solid #6d5747;
}
.c-btn__simple.tel span {
  font-size: clamp(18px, -0.1104972376vw + 19.4143646409px, 19px);
}
.c-btn__simple.center {
  margin-inline: auto;
}

.c-btn__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1.125rem, 0.3314917127vw + 1.0473066298rem, 1.3125rem);
  color: #fff;
  border-radius: 50vw;
  font-weight: 700;
  font-size: clamp(1.625rem, 1.1049723757vw + 1.3660220994rem, 2.25rem);
  line-height: 1.2;
  letter-spacing: 0.023em;
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  background-color: var(--color-orange);
  padding: clamp(1.25rem, 0.9944751381vw + 1.0169198895rem, 1.8125rem)
    clamp(2.125rem, 1.7679558011vw + 1.7106353591rem, 3.125rem);
  font-style: normal;
  font-weight: 700;
}
.c-btn__arrow::before {
  content: "";
  position: absolute;
  top: -0.25rem;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50vw;
  border: 0.0625rem solid #d1700e;
}
.c-btn__arrow .c-btn__arrow-icon {
  width: clamp(1.5625rem, 1.1049723757vw + 1.3035220994rem, 2.1875rem);
  height: clamp(1.5625rem, 1.1049723757vw + 1.3035220994rem, 2.1875rem);
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}
.c-btn__arrow .c-btn__arrow-icon::before {
  content: "";
  width: clamp(0.5rem, 0.2209944751vw + 0.4482044199rem, 0.625rem);
  height: clamp(0.625rem, 0.2209944751vw + 0.5732044199rem, 0.75rem);
  background-color: var(--color-orange);
  clip-path: polygon(0 0, 0% 100%, 100% 50%);
  display: block;
  margin-left: clamp(0.125rem, 0.1104972376vw + 0.0991022099rem, 0.1875rem);
}

/* ===============================================
#共通背景
=============================================== */
.c-bg__square {
  background-image: linear-gradient(0deg, transparent 19px, #d9d9d9 20px),
    linear-gradient(90deg, transparent 19px, #d9d9d9 20px);
  background-color: #fff;
  background-size: 20px 20px;
}

.c-bg__wave {
  background-color: #faf5f1;
}
@media (768px <= width) {
  .c-bg__wave {
    background: transparent url(./../image/bg-wave.avif) no-repeat top left/cover;
  }
}

.c-bg__wave-2 {
  background: transparent url(./../image/sp/bg-wave_2.avif) no-repeat top left/cover;
}
@media (768px <= width) {
  .c-bg__wave-2 {
    background: transparent url(./../image/bg-wave_2.avif) no-repeat top left/cover;
  }
}

.c-bg__ellipse {
  background-color: #fffaf0;
  position: relative;
}
.c-bg__ellipse::before {
  content: "";
  position: absolute;
  bottom: calc(100% - 1px);
  left: 0;
  display: block;
  width: 100%;
  height: clamp(1.125rem, 12.9281767956vw + -1.9050414365rem, 8.4375rem);
  background: transparent url(./../image/bg-ellipse.avif) no-repeat center center/100% 100%;
}

@media (768px <= width) {
  .c-bg__polka-dots {
    background: transparent url(./../image/bg-polka-dots.avif) no-repeat center center/cover;
  }
}

.c-bg__gradation {
  background: transparent url(./../image/bg-gradation_1.avif) no-repeat center center/cover;
}

.c-bg__gradation-2 {
  background: transparent url(./../image/bg-gradation_2.avif) no-repeat center center/cover;
}

.c-bg__gradation-3 {
  background: transparent url(./../image/bg-gradation_3.avif) no-repeat center center/cover;
}

.c-bg-beige {
  background-color: #fffaf0;
}

/* ===============================================
#ヘッダー
=============================================== */
.header {
  padding-block: clamp(0.3125rem, 0.6629834254vw + 0.1571132597rem, 0.6875rem);
  background-color: #fff;
}
@media (width <= 1023px) {
  .header {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
  }
}
@media (1024px <= width) {
  .header {
    background-color: var(--color-beige);
  }
}

.header__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.625rem;
}

.header__left {
  display: flex;
  align-items: center;
  gap: 1.9375rem;
}

.header__logo {
  max-width: clamp(9.75rem, 9.2817679558vw + 7.5745856354rem, 15rem);
}

.header__address {
  display: none;
  color: #7a6a56;
  font-size: 15px;
  line-height: 1.3;
  font-weight: 700;
}
.header__address b {
  font-size: 20px;
  line-height: 0.8;
  font-weight: 700;
}
@media (1024px <= width) {
  .header__address {
    display: block;
  }
}

.header__right {
  display: none;
}
@media (1024px <= width) {
  .header__right {
    display: flex;
    align-items: center;
    gap: 11px;
  }
}

.header__hamburger {
  display: block;
  width: 3.125rem;
  height: 3.125rem;
  padding: 0.9375rem 0.75rem;
  background-color: var(--color-brown);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.header__hamburger span {
  width: 100%;
  height: 0.0625rem;
  background-color: #fff;
}
@media (1024px <= width) {
  .header__hamburger {
    display: none;
  }
}

/* ===============================================
#ヘッダーナビゲーション
=============================================== */
.nav {
  padding: 0px 0.625rem;
  background: #fff;
  z-index: 101;
  transition: all var(--duration);
  will-change: height;
}
@media (64rem <= width <= 71.25rem) {
  .nav {
    zoom: 0.9;
  }
}
@media (width <= 1023px) {
  .nav {
    opacity: 0;
    visibility: hidden;
    position: fixed;
    width: 100vw;
    height: 100vh;
    top: 0;
    left: 0;
    overflow-y: scroll;
    padding: 5.625rem 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
  }
  .nav.active {
    opacity: 1;
    visibility: visible;
  }
  .nav.top {
    display: none;
  }
}
@media (1024px <= width) {
  .nav.top {
    background: linear-gradient(
      180deg,
      rgba(0, 0, 0, 0) 0,
      rgba(0, 0, 0, 0) 67px,
      var(--color-pink2) 67px,
      var(--color-pink2) 100%
    );
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2.125rem;
    margin-top: -67px;
    z-index: 3;
    position: relative;
  }
  .nav.top .nav__list:last-child {
    display: none;
  }
  .nav.main {
    padding-block: 7px;
  }
  .nav.visible {
    position: fixed;
    top: -50%;
    transition: top var(--nav-duration);
    width: 100%;
  }
  .nav.visible.is-show {
    top: 0;
    padding: 0.625rem;
  }
  .nav.visible.is-show .nav__list-img {
    transition: all var(--nav-duration);
    zoom: 0.6;
  }
}

.nav__lists {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 3.125rem;
}
@media (width <= 1023px) {
  .nav__lists {
    flex-direction: column;
    gap: 0;
  }
}

.nav__list {
  position: relative;
}
.nav__list > a,
.nav__list > .nav__accordion {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.375rem;
  color: var(--color-gray3);
}
@media (width <= 1023px) {
  .nav__list {
    width: 100%;
  }
  .nav__list > a,
  .nav__list > .nav__accordion {
    padding-top: 1.375rem;
    padding-bottom: 1.375rem;
    border-top: 0.0625rem solid var(--color-gray1);
    width: 100%;
    flex-direction: row;
    align-items: center;
    gap: 1.25rem;
  }
  .nav__list:last-child {
    display: none;
  }
}
@media (1024px <= width) {
  .nav__list:nth-child(1) .nav__list-img {
    width: 5.25rem;
  }
  .nav__list:nth-child(2) .nav__list-img {
    width: 5.5625rem;
  }
  .nav__list:nth-child(3) .nav__list-img {
    width: 5.8125rem;
  }
  .nav__list:nth-child(4) .nav__list-img {
    width: 4.8125rem;
  }
  .nav__list:nth-child(5) .nav__list-img {
    width: 6.0625rem;
  }
  .nav__list:nth-child(6) .nav__list-img {
    width: 83px;
  }
  .nav__list:nth-child(7) .nav__list-img {
    width: 5.1875rem;
  }
  .nav__list:nth-child(8) .nav__list-img {
    width: 60px;
  }
  .nav__list:last-child .nav__list-text {
    color: var(--color-orange);
  }
}

.nav__list-img {
  transition: width var(--nav-duration);
}
@media (width <= 1023px) {
  .nav__list-img {
    width: 3.8125rem;
  }
}

.nav__list-text {
  color: var(--color-gray3);
  white-space: nowrap;
}
@media (1024px <= width) {
  .nav__list-text {
    text-align: center;
  }
}

.nav__ja {
  font-size: clamp(0.875rem, 0.6629834254vw + 0.7196132597rem, 1.25rem);
  font-weight: 700;
  display: block;
  line-height: 1.2;
}

.nav__en {
  font-size: clamp(0.6875rem, 0.2209944751vw + 0.6357044199rem, 0.8125rem);
  display: block;
}

.nav__contact {
  border-radius: 50vw;
  background-color: var(--color-pink2);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  text-align: center;
}
.nav__contact .nav__list-img {
  width: 3.125rem;
}
.nav__contact .nav__ja {
  font-size: clamp(0.875rem, 1.4364640884vw + 0.5383287293rem, 1.6875rem);
}
.nav__contact .nav__en {
  font-size: clamp(0.6875rem, 0.8839779006vw + 0.4803176796rem, 1.1875rem);
}
@media (width <= 1023px) {
  .nav__contact {
    padding: 0.625rem;
  }
}
@media (1024px <= width) {
  .nav__contact {
    width: 220px;
    height: 220px;
    border-radius: 50%;
    gap: 0.625rem;
    flex-direction: column;
  }
  .nav__contact .nav__list-img {
    width: 50px;
  }
}

@media (1024px <= width) {
  .nav__sub-menu {
    opacity: 0;
    visibility: hidden;
    position: absolute;
    width: 570px;
    left: 50%;
    top: 100%;
    background: #fff;
    transition:
      opacity 0.3s ease,
      transform 0.3s ease,
      visibility 0s 0.3s;
    transform: translate(-50%, -10px);
    z-index: 90;
  }
  .nav__sub-menu.show {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, 0);
    transition:
      opacity 0.3s ease,
      transform 0.3s ease,
      visibility 0s;
  }
}

.nav__sub-menu-title {
  padding: 1px 8px;
  text-align: center;
  font-weight: 700;
  font-size: clamp(1rem, 0.8839779006vw + 0.7928176796rem, 1.5rem);
  color: #fff;
}
.nav__sub-menu-title.blue {
  background-color: #80ceff;
}
.nav__sub-menu-title.pink {
  background-color: var(--color-pink4);
}

.nav__sub-menu__items {
  display: grid;
  grid-template-columns: repeat(2, auto);
  padding: clamp(0.625rem, 0vw + 0.625rem, 0.625rem) clamp(0.625rem, 2.6519337017vw + 0.0034530387rem, 2.125rem);
}
@media (768px <= width) {
  .nav__sub-menu__items {
    grid-template-columns: repeat(2, 1fr);
  }
}

.nav__sub-menu-item {
  border-bottom: 1px solid #e5e5e5;
}
.nav__sub-menu-item > a {
  width: 100%;
  display: flex;
  align-items: center;
  gap: clamp(0.625rem, 0.5524861878vw + 0.4955110497rem, 0.9375rem);
  height: 100%;
  text-align: left;
  padding-block: clamp(0.5rem, 0.6629834254vw + 0.3446132597rem, 0.875rem);
  font-size: clamp(1rem, 0.2209944751vw + 0.9482044199rem, 1.125rem);
  font-weight: 700;
}
.nav__sub-menu-item > a::after {
  content: "";
  width: 8px;
  height: 10px;
  background-color: var(--color-black);
  clip-path: polygon(0 0, 0% 100%, 100% 50%);
}
.nav__sub-menu-item:last-child {
  border-bottom: none;
}
.nav__sub-menu-item:nth-last-child(2):nth-child(odd) {
  border-bottom: none;
}

.nav__hamburger-close {
  display: none;
}
@media (width <= 1023px) {
  .nav__hamburger-close {
    display: block;
    position: absolute;
    background-color: var(--color-brown);
    top: clamp(0.3125rem, 0.6629834254vw + 0.1571132597rem, 0.6875rem);
    right: clamp(0.9375rem, 1.6574585635vw + 0.5490331492rem, 1.875rem);
    width: 3.125rem;
    height: 3rem;
  }
  .nav__hamburger-close span {
    width: 2rem;
    height: 0.0625rem;
    background-color: #fff;
    top: 50%;
    left: 50%;
    translate: -50% -50%;
    display: block;
    position: absolute;
  }
  .nav__hamburger-close span:nth-child(1) {
    rotate: 45deg;
  }
  .nav__hamburger-close span:nth-child(2) {
    rotate: -45deg;
  }
}

/* ===============================================
#フッター
=============================================== */
.footer {
  padding-block: clamp(1.875rem, 3.3149171271vw + 1.0980662983rem, 3.75rem);
}
@media (width <= 767px) {
  .footer {
    padding-bottom: 151px;
  }
}

.footer__inner {
  max-width: 800px;
}
@media (1280px <= width) {
  .footer__inner {
    max-width: 1260px;
  }
}

.footer__container {
  display: flex;
}
@media (width <= 767px) {
  .footer__container {
    flex-direction: column;
    gap: 35px;
  }
}

.footer__container-left {
  width: -moz-fit-content;
  width: fit-content;
}
@media (768px <= width) {
  .footer__container-left {
    padding-right: 48px;
  }
}

.footer__menu {
  display: grid;
  grid-template-columns: repeat(1, auto);
  gap: clamp(1.4375rem, 2.7624309392vw + 0.7900552486rem, 3rem) clamp(1rem, 5.9668508287vw + -0.398480663rem, 4.375rem);
}
.footer__menu.col-1 {
  grid-template-columns: repeat(1, auto);
}
@media (width <= 767px) {
  .footer__menu {
    grid-template-columns: repeat(2, auto);
  }
}
@media (1280px <= width) {
  .footer__menu {
    grid-template-columns: repeat(2, auto);
  }
}

.footer__menu-link {
  position: relative;
  padding-left: 18px;
  font-size: 18px;
  font-family: var(--font-family-noto);
}
.footer__menu-link::before {
  content: "";
  position: absolute;
  top: calc(1lh - 1em);
  left: 0;
  width: 8px;
  height: 10px;
  background-color: var(--color-black);
  clip-path: polygon(0 0, 0% 100%, 100% 50%);
}

.footer__container-right {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  gap: 30px;
  flex: 1;
}
@media (768px <= width) {
  .footer__container-right {
    flex-direction: row;
    padding-left: 48px;
    border-left: 1px solid #d2cece;
  }
}

.footer__wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: clamp(1.375rem, 2.5414364641vw + 0.7793508287rem, 2.8125rem);
}

.footer__wrapper-title {
  padding: 1px 8px;
  color: #fff;
  font-weight: 500;
  font-family: var(--font-family-noto);
  font-size: 23px;
}
.footer__wrapper-title.blue {
  background-color: #94d2ff;
}
.footer__wrapper-title.pink {
  background-color: var(--color-pink4);
}

/* ===============================================
#ファーストビュー
=============================================== */
.top-mv {
  position: relative;
  background: transparent url(./../image/top-mv.avif) no-repeat center center/cover;
  padding-block: clamp(0.875rem, 5.0828729282vw + -0.3162983425rem, 3.75rem);
}
@media (width <= 1023px) {
  .top-mv {
    background: transparent url(./../image/sp/top-mv.avif) no-repeat center center/cover;
    height: calc(var(--vw) * 147);
  }
}

.top-mv__text {
  margin-inline: auto;
}
@media (width <= 1023px) {
  .top-mv__text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
  }
}
@media (1024px <= width) {
  .top-mv__text {
    margin-left: auto;
    margin-right: 0;
  }
}

.top-mv__inner {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: flex-end;
  gap: clamp(1.25rem, 5.5248618785vw + -0.0448895028rem, 4.375rem);
}
@media (1024px <= width) {
  .top-mv__inner {
    justify-content: center;
    gap: 60px;
  }
}

.top-mv__btn-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: clamp(2.5rem, 2.2099447514vw + 1.9820441989rem, 3.75rem);
}
@media (1024px <= width) {
  .top-mv__btn-box {
    flex-direction: row;
    gap: clamp(0.625rem, 0.773480663vw + 0.4437154696rem, 1.0625rem);
  }
}

.top-mv__left-btn {
  position: relative;
  background-color: #fdde6c;
  padding: clamp(0.5rem, 0.6629834254vw + 0.3446132597rem, 0.875rem)
    clamp(0.9375rem, 1.4364640884vw + 0.6008287293rem, 1.75rem);
  display: flex;
  align-items: center;
  gap: clamp(1rem, 0.9944751381vw + 0.7669198895rem, 1.5625rem);
}
@media (1024px <= width) {
  .top-mv__left-btn {
    border-radius: clamp(0.5rem, 0.1104972376vw + 0.4741022099rem, 0.5625rem);
    padding: clamp(0.5rem, 0.6629834254vw + 0.3446132597rem, 0.875rem)
      clamp(0.9375rem, 1.4364640884vw + 0.6008287293rem, 1.75rem)
      clamp(0.5rem, 0.6629834254vw + 0.3446132597rem, 0.875rem)
      clamp(0.75rem, 5.0828729282vw + -0.4412983425rem, 3.625rem);
    margin-left: 93px;
    width: calc(61.3% - 93px);
  }
}

.top-mv__left-btn-text-box {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}

.top-mv__left-btn-top-text {
  color: var(--color-gray3);
  font-size: clamp(1rem, 1.1049723757vw + 0.7410220994rem, 1.625rem);
  font-weight: 700;
}
@media (1024px <= width) {
  .top-mv__left-btn-top-text {
    text-align: center;
  }
}

.top-mv__dot {
  width: 80%;
}
@media (1024px <= width) {
  .top-mv__dot {
    width: 70%;
    margin-inline: auto;
  }
}

.top-mv__left-btn-bottom-text {
  color: var(--color-gray3);
  font-family: var(--font-family-noto);
  font-size: clamp(0.875rem, 0.4419889503vw + 0.7714088398rem, 1.125rem);
  font-weight: 500;
  line-height: 1.4;
}

.top-mv__btn-left-img {
  width: clamp(5.75rem, 6.7403314917vw + 4.1702348066rem, 9.5625rem);
}
@media (1024px <= width) {
  .top-mv__btn-left-img {
    position: absolute;
    left: calc(clamp(3.125rem, 4.7513812155vw + 2.0113950276rem, 5.8125rem) * -1);
    top: -56px;
    z-index: 2;
  }
}

.top-mv__right-btn {
  position: relative;
  z-index: 1;
  background-color: var(--color-pink);
  padding: clamp(1.5rem, 0.3314917127vw + 1.4223066298rem, 1.6875rem)
    clamp(1.5625rem, 0.5524861878vw + 1.4330110497rem, 1.875rem)
    clamp(1.5rem, 0.3314917127vw + 1.4223066298rem, 1.6875rem)
    clamp(5.375rem, 1.7679558011vw + 4.9606353591rem, 6.375rem);
  display: flex;
  align-items: center;
  gap: clamp(1rem, 0.4419889503vw + 0.8964088398rem, 1.25rem);
  border-radius: clamp(0.5rem, 0.2209944751vw + 0.4482044199rem, 0.625rem);
}
@media (1024px <= width) {
  .top-mv__right-btn {
    width: calc(38.7% - clamp(0.625rem, 0.773480663vw + 0.4437154696rem, 1.0625rem));
  }
}

.top-mv__right-btn-object {
  position: absolute;
  width: clamp(5rem, 3.3149171271vw + 4.2230662983rem, 6.875rem);
  top: calc(clamp(1.875rem, 2.4309392265vw + 1.3052486188rem, 3.25rem) * -1);
  right: calc(clamp(0.625rem, 1.546961326vw + 0.2624309392rem, 1.5rem) * -1);
  z-index: 2;
  display: none;
}
@media (1024px <= width) {
  .top-mv__right-btn-object {
    display: block;
  }
}

.top-mv__btn-img {
  position: absolute;
  bottom: 0;
  left: clamp(0.625rem, 0.2209944751vw + 0.5732044199rem, 0.75rem);
  width: clamp(4.25rem, 1.4364640884vw + 3.9133287293rem, 5.0625rem);
  z-index: 2;
}

.top-mv__btn-text {
  flex: 1;
  color: #fff;
  font-size: clamp(1.0625rem, 0.4419889503vw + 0.9589088398rem, 1.3125rem);
  font-weight: 700;
  line-height: 1.54;
}

.top-mv__arrow {
  width: clamp(1.4375rem, 0.5524861878vw + 1.3080110497rem, 1.75rem);
  height: clamp(1.4375rem, 0.5524861878vw + 1.3080110497rem, 1.75rem);
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}
.top-mv__arrow::before {
  content: "";
  width: clamp(0.5rem, 0.2209944751vw + 0.4482044199rem, 0.625rem);
  height: clamp(0.625rem, 0.2209944751vw + 0.5732044199rem, 0.75rem);
  background-color: var(--color-pink);
  clip-path: polygon(0 0, 0% 100%, 100% 50%);
  display: block;
  margin-left: 2px;
}
.top-mv__arrow.left {
  width: clamp(1rem, 1.3259668508vw + 0.6892265193rem, 1.75rem);
  height: clamp(1rem, 1.3259668508vw + 0.6892265193rem, 1.75rem);
}
.top-mv__arrow.left::before {
  background-color: #fdde6c;
  width: clamp(0.375rem, 0.4419889503vw + 0.2714088398rem, 0.625rem);
  height: clamp(0.5rem, 0.4419889503vw + 0.3964088398rem, 0.75rem);
}

/* ===============================================
#セクション ピックアップ
=============================================== */
.top-pickup {
  background: transparent url(./../image/pickup-bg.avif) no-repeat center center/cover;
}

.top-pickup__cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(0.625rem, 0.9944751381vw + 0.3919198895rem, 1.1875rem);
}
@media (width <= 767px) {
  .top-pickup__cards {
    width: 78%;
    margin-inline: auto;
  }
}

.top-pickup__card {
  color: #fff;
  text-align: center;
  font-size: clamp(1.125rem, 1.3259668508vw + 0.8142265193rem, 1.875rem);
  font-weight: 700;
  line-height: 1.25;
  height: clamp(4.875rem, 9.5027624309vw + 2.6477900552rem, 10.25rem);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: clamp(0.25rem, 0.6629834254vw + 0.0946132597rem, 0.625rem);
  width: calc(50% - clamp(0.625rem, 0.9944751381vw + 0.3919198895rem, 1.1875rem) * 1 / 2);
}
.top-pickup__card:nth-of-type(1) {
  background-color: var(--color-pink3);
}
@media (width <= 767px) {
  .top-pickup__card:nth-of-type(1) {
    margin-inline: 10px;
  }
}
.top-pickup__card:nth-of-type(2) {
  background-color: var(--color-yellow);
}
.top-pickup__card:nth-of-type(3) {
  background-color: var(--color-light-blue);
}
@media (768px <= width) {
  .top-pickup__card {
    width: clamp(7.375rem, 17.9005524862vw + 3.179558011rem, 17.5rem);
  }
}

/* ===============================================
#セクション 予約
=============================================== */
.top-reservation {
  background-color: var(--color-beige);
  overflow-x: clip;
}

.top-reservation__container {
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
}

.top-reservation__object-left {
  display: none;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: -15.125rem;
  width: 11.0625rem;
}
@media (1024px <= width) {
  .top-reservation__object-left {
    display: block;
  }
}

.top-reservation__object-right {
  display: none;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: -15.125rem;
  width: 11.0625rem;
}
@media (1024px <= width) {
  .top-reservation__object-right {
    display: block;
  }
}

.top-reservation__day {
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  background-color: var(--color-pink4);
  padding: 0.0625rem clamp(0.625rem, 0.5524861878vw + 0.4955110497rem, 0.9375rem);
  color: #fff;
  text-align: center;
  font-size: clamp(1.375rem, 1.1049723757vw + 1.1160220994rem, 2rem);
  font-weight: 700;
}

.top-reservation__lists {
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  background-color: #f4f0cb;
  padding: clamp(1.125rem, 0.9944751381vw + 0.8919198895rem, 1.6875rem)
    clamp(2.25rem, 1.8784530387vw + 1.8097375691rem, 3.3125rem);
  border-radius: clamp(0.25rem, 0.2209944751vw + 0.1982044199rem, 0.375rem);
  display: flex;
  flex-direction: column;
  gap: clamp(0.75rem, 0.6629834254vw + 0.5946132597rem, 1.125rem);
  margin-bottom: clamp(1.125rem, 0.2209944751vw + 1.0732044199rem, 1.25rem);
}
.top-reservation__lists::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background-color: #f4f0cb;
  width: clamp(2.75rem, 2.320441989vw + 2.2061464088rem, 4.0625rem);
  height: clamp(1.125rem, 0.2209944751vw + 1.0732044199rem, 1.25rem);
  display: block;
  clip-path: polygon(50% 100%, 0 0, 100% 0);
}

.top-reservation__list {
  position: relative;
  color: var(--color-gray4);
  font-size: clamp(1.1875rem, 1.1049723757vw + 0.9285220994rem, 1.8125rem);
  line-height: 1.26;
  padding-left: clamp(1.875rem, 1.546961326vw + 1.5124309392rem, 2.75rem);
}
.top-reservation__list::before {
  content: "";
  width: clamp(1.0625rem, 0.8839779006vw + 0.8553176796rem, 1.5625rem);
  height: clamp(0.9375rem, 0.773480663vw + 0.7562154696rem, 1.375rem);
  background: transparent url(./../image/icon-check-box.svg) no-repeat center center/contain;
  display: block;
  position: absolute;
  top: clamp(0.3125rem, 0.1104972376vw + 0.2866022099rem, 0.375rem);
  left: 0;
}

.top-reservation__underline-text {
  color: var(--color-pink4);
  font-size: clamp(1.75rem, 1.4364640884vw + 1.4133287293rem, 2.5625rem);
  padding: 0 clamp(0.3125rem, 0.3314917127vw + 0.2348066298rem, 0.5rem)
    clamp(0.375rem, 0.3314917127vw + 0.2973066298rem, 0.5625rem);
  font-weight: 700;
  line-height: 1.26;
  border-bottom: 0.25rem dashed var(--color-pink);
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
}

/* ===============================================
#セクション 当院について
=============================================== */
.top-about {
  position: relative;
  background: transparent url(./../image/top-about-bg_1.avif) no-repeat center center/cover;
}

.top-about__object-left,
.top-about__object-right {
  position: absolute;
  top: 0;
  width: clamp(7.5rem, 43.0939226519vw + -2.6001381215rem, 31.875rem);
}

.top-about__object-left {
  left: 0;
}

.top-about__object-right {
  right: 0;
}

.top-about__card {
  display: flex;
  flex-direction: column;
  gap: 30px;
  position: relative;
  background-color: #fff;
}
@media (768px <= width) {
  .top-about__card {
    gap: 0;
    flex-direction: row-reverse;
    margin-top: 2.3125rem;
  }
}
@media (768px <= width) {
  .top-about__card:nth-of-type(1) .top-about__card-title {
    width: -moz-fit-content;
    width: fit-content;
    border: 0.0625rem solid var(--color-pink4);
  }
}
.top-about__card:nth-of-type(1) .top-about__card-title-head {
  color: var(--color-pink4);
}
.top-about__card:nth-of-type(1) .top-about__list::before {
  background: transparent url(./../image/icon-check-pink.svg) no-repeat center center/contain;
}
.top-about__card:nth-of-type(1) .top-about__btn,
.top-about__card:nth-of-type(1) .top-about__card-title-bottom {
  background-color: var(--color-pink4);
}
@media (1024px <= width) {
  .top-about__card:nth-of-type(1)::before {
    content: "";
    position: absolute;
    left: -6.875rem;
    bottom: -5.625rem;
    background: transparent url(./../image/top-about-img_4.avif) no-repeat center center/contain;
    border-radius: 50%;
    width: 13.875rem;
    height: 13.875rem;
  }
  .top-about__card:nth-of-type(1) .top-about__btn {
    margin-top: 1.875rem;
    margin-right: 0;
  }
}
@media (768px <= width) {
  .top-about__card:nth-of-type(2) .top-about__card-title {
    border: 0.0625rem solid var(--color-orange2);
  }
}
.top-about__card:nth-of-type(2) .top-about__card-title-head {
  color: var(--color-orange2);
}
.top-about__card:nth-of-type(2) .top-about__list::before {
  background: transparent url(./../image/icon-check-orange.svg) no-repeat center center/contain;
}
.top-about__card:nth-of-type(2) .top-about__btn,
.top-about__card:nth-of-type(2) .top-about__card-title-bottom {
  background-color: var(--color-orange2);
}
@media (768px <= width) {
  .top-about__card:nth-of-type(3) .top-about__card-title {
    border: 0.0625rem solid var(--color-light-blue);
  }
}
.top-about__card:nth-of-type(3) .top-about__card-title-head {
  color: var(--color-light-blue);
}
.top-about__card:nth-of-type(3) .top-about__list::before {
  background: transparent url(./../image/icon-check-blue.svg) no-repeat center center/contain;
}
.top-about__card:nth-of-type(3) .top-about__btn,
.top-about__card:nth-of-type(3) .top-about__card-title-bottom {
  background-color: var(--color-light-blue);
}

.top-about__card-title {
  text-align: center;
}
@media (768px <= width) {
  .top-about__card-title {
    width: -moz-fit-content;
    width: fit-content;
    white-space: nowrap;
    border-radius: clamp(0.3125rem, 0.3314917127vw + 0.2348066298rem, 0.5rem);
    overflow: hidden;
    min-width: 400px;
    position: absolute;
    top: -2.3125rem;
    left: 28.9%;
    transform: translateX(-50%);
  }
}

.top-about__card-title-head {
  display: block;
  padding: 23px 5px 13px;
  background-color: #fff;
  font-size: clamp(21px, -0.2209944751vw + 23.8287292818px, 23px);
  font-weight: 700;
  line-height: 1.26;
}
@media (768px <= width) {
  .top-about__card-title-head {
    padding: 5px 20px;
  }
}

.top-about__card-title-bottom {
  display: block;
  color: #fff;
  font-size: 25px;
  font-weight: 700;
  line-height: 1.26;
  padding: clamp(0.125rem, 0.8839779006vw + -0.0821823204rem, 0.625rem)
    clamp(0.3125rem, 0.5524861878vw + 0.1830110497rem, 0.625rem);
}
@media (width <= 767px) {
  .top-about__card-title-bottom {
    width: calc(var(--vw) * 100);
    margin-inline: calc((var(--vw) * 100 - var(--vw) * 92) / -2);
  }
}

@media (width <= 767px) {
  .top-about__img {
    max-width: 280px;
    margin-inline: auto;
  }
}
@media (768px <= width) {
  .top-about__img {
    width: 42.2%;
  }
  .top-about__img img {
    height: 100%;
  }
}

.top-about__text-box {
  background-color: #fff;
  padding: 0 1.875rem 1.5625rem;
  font-family: var(--font-family-noto);
  font-size: clamp(1.125rem, 0.2209944751vw + 1.0732044199rem, 1.25rem);
}
@media (768px <= width) {
  .top-about__text-box {
    padding: 5rem 2.1875rem 1.25rem;
    width: 57.8%;
  }
}

.top-about__text {
  line-height: 1.8;
}

.top-about__lists {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 1.1049723757vw + 0.7410220994rem, 1.625rem);
}

.top-about__list {
  position: relative;
  padding-left: clamp(1.3125rem, 1.546961326vw + 0.9499309392rem, 2.1875rem);
  line-height: 1.26;
}
.top-about__list::before {
  content: "";
  position: absolute;
  top: clamp(5px, -0.3314917127vw + 9.2430939227px, 8px);
  left: 0;
  display: block;
  width: clamp(0.6875rem, 0.5524861878vw + 0.5580110497rem, 1rem);
  height: clamp(0.625rem, 0.5524861878vw + 0.4955110497rem, 0.9375rem);
}

.top-about__btn {
  padding: 11px clamp(1.5rem, 2.4309392265vw + 0.9302486188rem, 2.875rem);
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(1.0625rem, 0.5524861878vw + 0.9330110497rem, 1.375rem);
  border-radius: 50vw;
  border: 1px solid #fff4e7;
  box-shadow: 0px clamp(0.0625rem, 0.1104972376vw + 0.0366022099rem, 0.125rem)
    clamp(0.125rem, 0.3314917127vw + 0.0473066298rem, 0.3125rem) 0px rgba(86, 36, 41, 0.28);
  color: #fff;
  font-size: 25px;
  font-family: var(--font-family-common);
  font-weight: 700;
  line-height: 1.26;
  margin-inline: auto;
}
@media (width <= 767px) {
  .top-about__btn {
    width: 100%;
    max-width: 320px;
  }
}

.top-about__btn-arrow {
  border: 0.0625rem solid #fff;
  border-radius: 50%;
  width: clamp(24px, -0.4419889503vw + 29.6574585635px, 28px);
  height: clamp(24px, -0.4419889503vw + 29.6574585635px, 28px);
  display: flex;
  align-items: center;
  justify-content: center;
}
.top-about__btn-arrow::before {
  content: "";
  width: clamp(6px, -0.2209944751vw + 8.8287292818px, 8px);
  height: clamp(8px, -0.2209944751vw + 10.8287292818px, 10px);
  clip-path: polygon(0 0, 0% 100%, 100% 50%);
  display: block;
  margin-left: clamp(0.0625rem, 0.1104972376vw + 0.0366022099rem, 0.125rem);
  background-color: #fff;
}

/* ===============================================
#セクション 痛みの少ない治療
=============================================== */
.top-medical {
  overflow-x: clip;
  background: transparent url(./../image/bg-pattern_1.avif) repeat center center/contain;
}

.top-medical__container {
  position: relative;
}

.top-medical__object-left {
  position: absolute;
  width: 4.0625rem;
  bottom: -2.25rem;
  left: -0.3125rem;
  z-index: 2;
}
@media (768px <= width) {
  .top-medical__object-left {
    bottom: -3.125rem;
    left: -2.8125rem;
  }
}
@media (1024px <= width) {
  .top-medical__object-left {
    width: 11.625rem;
    bottom: -5rem;
    left: -11.625rem;
  }
}

.top-medical__object-right {
  position: absolute;
  width: 5.6875rem;
  top: -1.125rem;
  right: 0rem;
  z-index: 2;
}
@media (1024px <= width) {
  .top-medical__object-right {
    width: 14.125rem;
    top: 8.875rem;
    right: -11.75rem;
  }
}

.top-medical__lead {
  color: var(--color-gray3);
  text-align: center;
  font-size: clamp(1rem, 1.1049723757vw + 0.7410220994rem, 1.625rem);
  line-height: 1.76;
}

.top-medical__cards {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  align-items: stretch;
  gap: 2.375rem 1.0625rem;
}
@media (width <= 767px) {
  .top-medical__cards {
    width: 76.7%;
    margin-inline: auto;
  }
}
@media (768px <= width) {
  .top-medical__cards {
    grid-template-columns: repeat(3, 1fr);
  }
}

.top-medical__card {
  display: flex;
  flex-direction: column;
}
.top-medical__card:nth-of-type(1) .top-medical__card-title {
  color: var(--color-pink4);
}
.top-medical__card:nth-of-type(2) .top-medical__card-title {
  color: var(--color-orange2);
}
.top-medical__card:nth-of-type(3) .top-medical__card-title {
  color: var(--color-light-blue);
}

.top-medical__img {
  border-radius: 10px 10px 0px 0px;
}

.top-medical__card-body {
  background-color: #fff;
  padding: 1rem 1.375rem 1.75rem;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  gap: 0.4375rem;
  flex: 1;
}

.top-medical__card-title {
  text-align: center;
  font-size: 1.625rem;
  font-weight: 700;
}

.top-medical__card-text {
  color: var(--color-gray3);
  font-family: var(--font-family-noto);
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.76;
}

/* ===============================================
#セクション 診療項目
=============================================== */
.top-menu-list {
  background-color: rgba(253, 193, 194, 0.2);
  background-image: radial-gradient(circle, #ffffff 6px, transparent 6px),
    radial-gradient(circle, #ffffff 6px, transparent 6px);
  background-position:
    0 0,
    28px 27px;
  background-size: 56px 54px;
}

.top-menu-list__contents:nth-of-type(1) .top-menu-list__contents-title {
  background-color: var(--color-pink4);
}
.top-menu-list__contents:nth-of-type(1) .top-menu-list__link {
  background-color: #fed5d6;
}
.top-menu-list__contents:nth-of-type(1) .top-menu-list__link-arrow::after {
  background-color: #fed5d6;
}
.top-menu-list__contents:nth-of-type(2) .top-menu-list__contents-title {
  background-color: var(--color-light-blue2);
}
.top-menu-list__contents:nth-of-type(2) .top-menu-list__link {
  background-color: #ceecff;
}
.top-menu-list__contents:nth-of-type(2) .top-menu-list__link-arrow::after {
  background-color: #ceecff;
}

.top-menu-list__contents-title {
  text-align: center;
  color: #fff;
  font-size: clamp(1.5rem, 2.2099447514vw + 0.9820441989rem, 2.75rem);
  font-weight: 700;
  line-height: 1.26;
  padding: 0.0625rem 0.625rem;
}

.top-menu-list__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(0.75rem, 2.9834254144vw + 0.0507596685rem, 2.4375rem)
    clamp(0.75rem, 2.0994475138vw + 0.257941989rem, 1.9375rem);
  max-width: 726px;
  margin-inline: auto;
  width: 95%;
}
@media (768px <= width) {
  .top-menu-list__links {
    width: 89.2%;
  }
}

.top-menu-list__link {
  width: calc(50% - clamp(0.75rem, 2.0994475138vw + 0.257941989rem, 1.9375rem) * 1 / 2);
  min-height: clamp(5.5rem, 2.6519337017vw + 4.8784530387rem, 7rem);
  border: clamp(0.1875rem, 0.1104972376vw + 0.1616022099rem, 0.25rem) solid #fff;
  border-radius: clamp(0.5rem, 0.2209944751vw + 0.4482044199rem, 0.625rem);
  box-shadow: 4.266px 4.266px 3.199px 0px rgba(74, 19, 21, 0.1);
  padding: clamp(0.6875rem, 1.546961326vw + 0.3249309392rem, 1.5625rem)
    clamp(0.5625rem, 0.3314917127vw + 0.4848066298rem, 0.75rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.1875rem;
  color: var(--color-gray3);
  font-size: clamp(1.125rem, 0.8839779006vw + 0.9178176796rem, 1.625rem);
  font-weight: 700;
  line-height: 1.26;
}
@media (768px <= width) {
  .top-menu-list__link {
    width: calc(33.3333333333% - clamp(0.75rem, 2.0994475138vw + 0.257941989rem, 1.9375rem) * 2 / 3);
  }
}

.top-menu-list__link-text {
  flex: 1;
}
.top-menu-list__link-text.small {
  font-size: clamp(0.9375rem, 0.4419889503vw + 0.8339088398rem, 1.1875rem);
}

.top-menu-list__link-arrow {
  background-color: #fff;
  width: clamp(1.375rem, 0.6629834254vw + 1.2196132597rem, 1.75rem);
  height: clamp(1.375rem, 0.6629834254vw + 1.2196132597rem, 1.75rem);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}
.top-menu-list__link-arrow::after {
  content: "";
  width: clamp(0.5rem, 0.2209944751vw + 0.4482044199rem, 0.625rem);
  height: clamp(0.5rem, 0.3314917127vw + 0.4223066298rem, 0.6875rem);
  clip-path: polygon(0 0, 0% 100%, 100% 50%);
}

/* ===============================================
#セクション ドクター紹介
=============================================== */
.top-doctor {
  background: transparent url(./../image/sp/top-doctor-bg.avif) no-repeat center center/cover;
  overflow-x: clip;
}
@media (768px <= width) {
  .top-doctor {
    background: transparent url(./../image/top-doctor-bg.avif) no-repeat center center/cover;
  }
}

.top-doctor__container {
  position: relative;
}
@media (width <= 767px) {
  .top-doctor__container {
    width: 92%;
    margin-inline: auto;
  }
}

.top-doctor__object-left {
  position: absolute;
  width: 3.25rem;
  top: 3.5rem;
  left: -0.5rem;
}
@media (768px <= width) {
  .top-doctor__object-left {
    width: 10.75rem;
    top: 9.125rem;
    left: -7.1875rem;
  }
}

.top-doctor__object-right-top {
  position: absolute;
  width: 3.75rem;
  top: 5.625rem;
  right: -1.25rem;
}
@media (768px <= width) {
  .top-doctor__object-right-top {
    width: 9.625rem;
    top: 6.25rem;
    right: -1.875rem;
  }
}

.top-doctor__object-right-bottom {
  position: absolute;
  width: 2.5rem;
  top: 13.5625rem;
  right: 0.625rem;
}
@media (768px <= width) {
  .top-doctor__object-right-bottom {
    width: 9.5625rem;
    top: 33.125rem;
    right: -5rem;
  }
}

.top-doctor__img {
  max-width: 11.875rem;
  margin-inline: auto;
  display: block;
}
@media (768px <= width) {
  .top-doctor__img {
    max-width: 37.5rem;
  }
}

.top-doctor__text {
  color: var(--color-gray3);
  text-align: justify;
  font-size: clamp(1.125rem, 0.6629834254vw + 0.9696132597rem, 1.5rem);
  line-height: 1.86;
  display: flex;
  flex-direction: column;
  gap: 1lh;
}

.top-doctor__flex {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.8125rem 3.5625rem;
}
@media (width <= 767px) {
  .top-doctor__flex {
    grid-template-columns: repeat(1, 1fr);
  }
}

.top-doctor__flex-item {
  background: #fff;
  padding: clamp(1rem, 1.546961326vw + 0.6374309392rem, 1.875rem);
  box-shadow: 0px clamp(0.125rem, 0.2209944751vw + 0.0732044199rem, 0.25rem)
    clamp(0.6875rem, 0.9944751381vw + 0.4544198895rem, 1.25rem) 0px rgba(111, 78, 111, 0.37);
}

.top-doctor__flex-title {
  width: -moz-fit-content;
  width: fit-content;
  background-color: var(--color-gray3);
  color: #fff;
  font-size: clamp(1.0625rem, 1.4364640884vw + 0.7258287293rem, 1.875rem);
  font-weight: 700;
  padding: 0 clamp(0.625rem, 1.2154696133vw + 0.3401243094rem, 1.3125rem);
  margin-inline: auto;
}

.top-doctor__flex-text {
  color: var(--color-gray3);
  font-size: clamp(1.125rem, 0.2209944751vw + 1.0732044199rem, 1.25rem);
  font-weight: 700;
  line-height: 1.86;
}
.top-doctor__flex-text b {
  display: block;
  text-align: center;
  font-size: clamp(1.125rem, 0.6629834254vw + 0.9696132597rem, 1.5rem);
  font-weight: 700;
}
.top-doctor__flex-text span {
  display: block;
  font-weight: 400;
}
@media (width <= 767px) {
  .top-doctor__flex-text span {
    text-align: center;
  }
}

.top-doctor__flex-img {
  max-width: 15.625rem;
  margin-inline: auto;
}
@media (768px <= width) {
  .top-doctor__flex-img {
    max-width: 25rem;
  }
}

/* ===============================================
#セクション アクセス
=============================================== */
.top-access {
  background: transparent url(./../image/bg-pattern_1.avif) repeat center center/contain;
}

.top-access__heading {
  color: var(--color-pink4);
  font-size: clamp(1.875rem, 3.3149171271vw + 1.0980662983rem, 3.75rem);
  font-weight: 700;
  text-align: center;
}

.top-access__address {
  text-align: center;
  color: var(--color-gray1);
  font-size: clamp(0.9375rem, 1.2154696133vw + 0.6526243094rem, 1.625rem);
}

.top-access__flex {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.125rem 2.0625rem;
}
@media (width <= 767px) {
  .top-access__flex {
    flex-direction: column-reverse;
  }
}

.top-access__text-box {
  width: -moz-fit-content;
  width: fit-content;
  color: var(--color-gray3);
  font-size: clamp(0.9375rem, 0.5524861878vw + 0.8080110497rem, 1.25rem);
  line-height: 1.66;
}

.top-access__map {
  width: 100%;
  max-width: clamp(15.1875rem, 22.8729281768vw + 9.8266574586rem, 28.125rem);
  height: clamp(8.9375rem, 16.2430939227vw + 5.1305248619rem, 18.125rem);
}
.top-access__map iframe {
  width: 100%;
  height: 100%;
}

.top-access__bottom-container {
  display: flex;
  justify-content: center;
  gap: 3.375rem;
}
@media (width <= 1023px) {
  .top-access__bottom-container {
    flex-direction: column-reverse;
    align-items: center;
  }
}
@media (64rem <= width <= 84.375rem) {
  .top-access__bottom-container {
    zoom: 0.8;
  }
}

.top-access__left-box {
  width: -moz-fit-content;
  width: fit-content;
}
@media (width <= 1023px) {
  .top-access__left-box {
    width: 100%;
    align-items: center;
  }
}

.top-access__logo-box {
  display: flex;
  align-items: center;
  gap: clamp(0.625rem, 1.8784530387vw + 0.1847375691rem, 1.6875rem);
}

.top-access__logo {
  max-width: clamp(3.125rem, 8.9502762431vw + 1.0272790055rem, 8.1875rem);
  flex: 1;
}

.top-access__logo-text {
  color: var(--color-gray3);
  font-size: clamp(1.25rem, 3.5359116022vw + 0.4212707182rem, 3.25rem);
  font-weight: 700;
  line-height: 1.06;
  white-space: nowrap;
}

.top-access__btn-box {
  display: none;
  justify-content: center;
  gap: clamp(0.6875rem, 0.4419889503vw + 0.5839088398rem, 0.9375rem);
  width: 100%;
}
.top-access__btn-box .c-btn__simple {
  width: calc(50% - clamp(0.6875rem, 0.4419889503vw + 0.5839088398rem, 0.9375rem) * 1 / 2);
  height: clamp(4.4375rem, 4.5303867403vw + 3.3756906077rem, 7rem);
}
.top-access__btn-box .c-btn__simple.web {
  font-size: clamp(1.1875rem, 1.4364640884vw + 0.8508287293rem, 2rem);
}
.top-access__btn-box .c-btn__simple.tel {
  font-size: clamp(0.8125rem, 0.9944751381vw + 0.5794198895rem, 1.375rem);
}
.top-access__btn-box .c-btn__simple.tel span {
  font-size: clamp(1.1875rem, 1.2154696133vw + 0.9026243094rem, 1.875rem);
}
@media (768px <= width) {
  .top-access__btn-box {
    display: flex;
  }
}

.top-access__schedule-box {
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
}
@media (width <= 1023px) {
  .top-access__schedule-box::after {
    content: "";
    position: absolute;
    bottom: -1.6875rem;
    left: 50%;
    transform: translateX(-50%);
    width: 110%;
    height: 0.0625rem;
    background-color: rgba(171, 167, 167, 0.3);
  }
}

.top-access__table th,
.top-access__table td {
  vertical-align: middle;
  text-align: center;
  font-size: clamp(0.8125rem, 2.0994475138vw + 0.320441989rem, 2rem);
  font-family: var(--font-family-noto);
  line-height: 1.2;
  padding-block: clamp(0.5rem, 1.3259668508vw + 0.1892265193rem, 1.25rem);
}
.top-access__table th {
  padding-inline: clamp(0.5rem, 0.773480663vw + 0.3187154696rem, 0.9375rem);
  white-space: nowrap;
}
.top-access__table thead th,
.top-access__table thead td {
  padding-top: 0;
  border-bottom: 0.0625rem solid rgba(121, 106, 85, 0.3);
}
.top-access__table tbody td {
  padding-inline: clamp(0.5rem, 0.773480663vw + 0.3187154696rem, 0.9375rem);
}
.top-access__table tbody tr:last-child th,
.top-access__table tbody tr:last-child td {
  padding-block: 0;
}
.top-access__table .maru {
  width: clamp(0.5625rem, 1.546961326vw + 0.1999309392rem, 1.4375rem);
  height: clamp(0.5625rem, 1.546961326vw + 0.1999309392rem, 1.4375rem);
  background-color: var(--color-pink4);
  display: inline-block;
  border-radius: 50%;
}
.top-access__table .oblique {
  display: inline-block;
  width: clamp(0.75rem, 1.7679558011vw + 0.3356353591rem, 1.75rem);
  height: clamp(0.0625rem, 0.2209944751vw + 0.0107044199rem, 0.1875rem);
  background-color: var(--color-gray3);
  rotate: -45deg;
  margin-bottom: clamp(0.25rem, 0.773480663vw + 0.0687154696rem, 0.6875rem);
}

.top-access__schedule-notice {
  background-color: var(--color-pink4);
  padding: clamp(0.1875rem, 0.5524861878vw + 0.0580110497rem, 0.5rem) 0.625rem;
  color: #fff;
  text-align: center;
  font-family: var(--font-family-noto);
  font-size: clamp(0.5625rem, 1.4364640884vw + 0.2258287293rem, 1.375rem);
  font-weight: 500;
  line-height: 1.37;
}

/* ===============================================
#下層ページ ファーストビュー
=============================================== */
.p-sub-mv {
  position: relative;
  padding-top: clamp(1.0625rem, 3.3149171271vw + 0.2855662983rem, 2.9375rem);
}
@media (768px <= width) {
  .p-sub-mv {
    height: 620px;
  }
}

@media (width <= 767px) {
  .p-sub-mv__inner {
    width: 100%;
  }
}

@media (768px <= width) {
  .p-sub-mv__img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
  }
}
.p-sub-mv__img img {
  height: 100%;
  -o-object-position: right;
  object-position: right;
}

.p-sub-mv__title {
  font-size: clamp(1.5rem, 2.7624309392vw + 0.8525552486rem, 3.0625rem);
  color: #fff;
  font-weight: 700;
  background-color: var(--color-pink);
  padding: 4px;
  text-align: center;
}
@media (768px <= width) {
  .p-sub-mv__title {
    width: -moz-fit-content;
    width: fit-content;
    border-radius: 8px;
    padding: 12px 25px;
    position: relative;
    z-index: 2;
  }
  .p-sub-mv__title::before {
    content: "";
    position: absolute;
    top: -2px;
    left: -6px;
    border-radius: 8px;
    width: 100%;
    height: 100%;
    border: 1px solid #d27668;
  }
}

.p-sub-mv__title-box {
  background-color: #fcfaf6;
  padding: clamp(0.25rem, 1.7679558011vw + -0.1643646409rem, 1.25rem)
    clamp(0.625rem, 1.1049723757vw + 0.3660220994rem, 1.25rem)
    clamp(0.75rem, 2.320441989vw + 0.2061464088rem, 2.0625rem);
  position: relative;
  z-index: 2;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
@media (768px <= width) {
  .p-sub-mv__title-box {
    width: -moz-fit-content;
    width: fit-content;
    background-color: rgba(255, 255, 255, 0.8);
    box-shadow: -3.363px 3.363px 11.771px rgba(92, 70, 39, 0.38);
    border-radius: 8px;
    min-width: 500px;
  }
}

.p-sub-mv__title-2 {
  color: var(--color-gray3);
  font-size: clamp(1.5rem, 3.2044198895vw + 0.7489640884rem, 3.3125rem);
  font-weight: 700;
  padding-bottom: clamp(6px, -0.4419889503vw + 11.6574585635px, 10px);
  position: relative;
}
.p-sub-mv__title-2::before {
  content: "";
  position: absolute;
  display: block;
  bottom: 0px;
  left: 50%;
  transform: translateX(-50%);
  width: clamp(16.375rem, 8.0662983425vw + 14.484461326rem, 20.9375rem);
  height: clamp(0.3125rem, 0.1104972376vw + 0.2866022099rem, 0.375rem);
  background: transparent url(./../image/object-dot.avif) no-repeat center center/contain;
}

.p-sub-mv__title-sub {
  color: var(--color-gray3);
  font-family: var(--font-family-noto);
  font-size: clamp(1rem, 1.2154696133vw + 0.7151243094rem, 1.6875rem);
  font-weight: 500;
}

.p-sub-mv__btn-area {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 90;
  padding: 10px 15px;
  background-color: #fcfaf6;
}
@media (768px <= width) {
  .p-sub-mv__btn-area {
    display: none;
  }
}

.p-sub-mv__btn-box {
  display: flex;
  justify-content: center;
  gap: 7px;
}

/* ===============================================
#下層ページ メインビジュアル見出しのみ
=============================================== */
.p-heading-mv {
  padding-block: clamp(18px, -0.3314917127vw + 22.2430939227px, 21px);
  background-color: var(--color-pink2);
}

.p-heading-mv__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (width <= 767px) {
  .p-heading-mv__inner {
    justify-content: center;
  }
}

@media (width <= 767px) {
  .p-heading-mv__object-right,
  .p-heading-mv__object-left {
    display: none;
  }
}

.p-heading-mv__object-right {
  width: 84px;
}

.p-heading-mv__object-left {
  width: 107px;
}

.p-heading-mv__heading {
  text-align: center;
  color: var(--color-gray3);
  font-size: clamp(1.75rem, 2.7624309392vw + 1.1025552486rem, 3.3125rem);
  font-weight: 700;
}

/* ===============================================
#小児の呼吸不全 リード
=============================================== */
.p-r-lead__container {
  background-color: var(--color-pink2);
  padding-block: clamp(0.9375rem, 1.6574585635vw + 0.5490331492rem, 1.875rem);
}

.p-r-lead__text {
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  color: var(--color-gray3);
  text-align: center;
  font-size: clamp(1.25rem, 2.2099447514vw + 0.7320441989rem, 2.5rem);
  font-weight: 700;
  line-height: 1.42;
}

.p-r-lead__object-right {
  position: absolute;
  top: -26px;
  right: -22px;
  width: 22px;
}
@media (768px <= width) {
  .p-r-lead__object-right {
    width: 70px;
    top: 50%;
    transform: translateY(-50%);
    right: -80px;
  }
}

.p-r-lead__object-left {
  position: absolute;
  width: 37px;
  bottom: -24px;
  left: -34px;
}
@media (768px <= width) {
  .p-r-lead__object-left {
    width: 107px;
    top: 50%;
    transform: translateY(-50%);
    left: -127px;
  }
}

/* ===============================================
#小児の呼吸不全 お悩み
=============================================== */
.p-r-problem__header {
  background-color: var(--color-gray3);
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  padding: 10px 30px;
  margin-bottom: 14px;
  position: relative;
}
.p-r-problem__header::after {
  content: "";
  position: absolute;
  top: calc(100% - 1px);
  left: 50%;
  transform: translateX(-50%);
  display: block;
  width: 32px;
  height: 15px;
  background-color: var(--color-gray3);
  clip-path: polygon(50% 100%, 0 0, 100% 0);
}
@media (768px <= width) {
  .p-r-problem__header {
    margin-bottom: 23px;
    padding: 10px 14px;
  }
  .p-r-problem__header::after {
    width: 42px;
    height: 24px;
  }
}

.p-r-problem__title {
  text-align: center;
  color: #fff;
  font-size: clamp(1.25rem, 2.320441989vw + 0.7061464088rem, 2.5625rem);
  font-weight: 700;
}

.p-r-problem__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 23px 27px;
}
@media (768px <= width) {
  .p-r-problem__content {
    flex-direction: row;
    align-items: flex-start;
  }
}

.p-r-problem__image {
  max-width: 254px;
}
@media (768px <= width) {
  .p-r-problem__image {
    max-width: 354px;
  }
}

.p-r-problem__list {
  font-size: clamp(1.25rem, 0.5524861878vw + 1.1205110497rem, 1.5625rem);
  line-height: 1.48;
}
.p-r-problem__list li::before {
  content: "・";
}

.p-r-problem__text {
  font-family: var(--font-family-noto);
  margin-inline: auto;
  font-size: 18px;
  line-height: 1.8;
  width: 89%;
}
@media (768px <= width) {
  .p-r-problem__text {
    width: -moz-fit-content;
    width: fit-content;
  }
}

/* ===============================================
#小児の呼吸不全 関係
=============================================== */
.p-r-relation__object-left,
.p-r-relation__object-right {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 18%;
  z-index: 1;
  display: none;
}
@media (768px <= width) {
  .p-r-relation__object-left,
  .p-r-relation__object-right {
    display: block;
  }
}

.p-r-relation__object-left {
  left: 0;
}

.p-r-relation__object-right {
  right: 0;
}

.p-r-relation__title {
  background-color: var(--color-pink3);
  border-radius: 50vw;
  padding: clamp(0.625rem, 0.773480663vw + 0.4437154696rem, 1.0625rem)
    clamp(2.5625rem, 2.5414364641vw + 1.9668508287rem, 4rem);
  color: #fff;
  font-size: clamp(1.5rem, 1.7679558011vw + 1.0856353591rem, 2.5rem);
  font-weight: 700;
  text-align: center;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
}

.p-r-relation__content {
  display: flex;
  flex-direction: column;
  gap: 25px 50px;
  position: relative;
  z-index: 2;
  padding-inline: 29px;
}
@media (768px <= width) {
  .p-r-relation__content {
    flex-direction: row;
    padding-inline: 0px;
  }
}

@media (768px <= width) {
  .p-r-relation__img {
    width: calc(48% - 50px);
  }
}

.p-r-relation__text {
  font-family: var(--font-family-noto);
  font-size: 18px;
  line-height: 1.7;
  padding-inline: 6px;
}
@media (768px <= width) {
  .p-r-relation__text {
    width: 52%;
  }
}

/* ===============================================
#小児の呼吸不全 問題
=============================================== */
@media (768px <= width) {
  .p-r-problem2__container {
    padding-top: 80px;
  }
}

.p-r-problem2__title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.p-r-problem2__title-en {
  color: var(--color-gray3);
  font-size: clamp(0.8125rem, 0.9944751381vw + 0.5794198895rem, 1.375rem);
  font-weight: 700;
}

.p-r-problem2__title-icon {
  width: clamp(1.875rem, 1.9889502762vw + 1.408839779rem, 3rem);
}

.p-r-problem2__title-ja {
  color: var(--color-gray3);
  font-size: clamp(1.5rem, 2.2099447514vw + 0.9820441989rem, 2.75rem);
  font-weight: 700;
  margin-block: var(--leading-trim);
}
.p-r-problem2__title-ja b {
  color: var(--color-orange3);
  font-size: clamp(2.25rem, 3.3149171271vw + 1.4730662983rem, 4.125rem);
  font-weight: 700;
}

.p-r-problem2__grid {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.8125rem, 4.0883977901vw + 0.854281768rem, 4.125rem) 20px;
}

.p-r-problem2__item {
  margin-top: clamp(5rem, 2.7624309392vw + 4.3525552486rem, 6.5625rem);
  display: flex;
  flex-direction: column;
  gap: clamp(1.125rem, 0.6629834254vw + 0.9696132597rem, 1.5rem);
  border-radius: clamp(0.375rem, 0.2209944751vw + 0.3232044199rem, 0.5rem);
  padding: 0 clamp(17px, -0.5524861878vw + 24.0718232044px, 22px)
    clamp(1.875rem, 3.0939226519vw + 1.1498618785rem, 3.625rem);
}
.p-r-problem2__item:nth-of-type(3n + 1) {
  background-color: #fdc1c2;
}
.p-r-problem2__item:nth-of-type(3n + 1) .p-r-problem2__item-title {
  color: #ef6271;
}
.p-r-problem2__item:nth-of-type(3n + 2) {
  background-color: #ffdcae;
}
.p-r-problem2__item:nth-of-type(3n + 2) .p-r-problem2__item-title {
  color: #ed723f;
}
.p-r-problem2__item:nth-of-type(3n + 3) {
  background-color: #bde0e8;
}
.p-r-problem2__item:nth-of-type(3n + 3) .p-r-problem2__item-title {
  color: #5195aa;
}
@media (768px <= width) {
  .p-r-problem2__item {
    width: calc(50% - 10px);
  }
}
@media (1024px <= width) {
  .p-r-problem2__item {
    width: calc(33.3333333333% - 13.3333333333px);
  }
}

.p-r-problem2__img {
  width: clamp(11.875rem, 6.7403314917vw + 10.2952348066rem, 15.6875rem);
  margin-inline: auto;
  margin-top: calc(clamp(5rem, 2.7624309392vw + 4.3525552486rem, 6.5625rem) * -1);
}

.p-r-problem2__item-title {
  font-size: clamp(1.375rem, 0.8839779006vw + 1.1678176796rem, 1.875rem);
  font-weight: 700;
  text-align: center;
}

.p-r-problem2__item-text {
  font-family: var(--font-family-noto);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.8;
}

/* ===============================================
#小児の呼吸不全 特徴
=============================================== */
.p-r-feature__section {
  padding-top: 0;
  padding-bottom: clamp(2.5rem, 4.4198895028vw + 1.4640883978rem, 5rem);
}
@media (768px <= width) {
  .p-r-feature__section {
    padding-block: clamp(2.5rem, 4.4198895028vw + 1.4640883978rem, 5rem);
  }
}

.p-r-feature__heading {
  background-color: var(--color-light-blue);
  padding: clamp(17px, -0.773480663vw + 26.9005524862px, 24px) clamp(0.625rem, 5.9668508287vw + -0.773480663rem, 4rem);
  color: #fff;
  font-size: clamp(1.75rem, 1.3259668508vw + 1.4392265193rem, 2.5rem);
  font-weight: 700;
  text-align: center;
  margin-inline: auto;
  width: calc(var(--vw) * 100);
}
@media (768px <= width) {
  .p-r-feature__heading {
    width: -moz-fit-content;
    width: fit-content;
    border-radius: 50vw;
  }
}

/* ===============================================
#特徴パーツ
=============================================== */
.p-feature__section {
  background-color: #fcfaf6;
}

.p-feature__lead {
  color: var(--color-gray3);
  font-size: clamp(1.125rem, 0.8839779006vw + 0.9178176796rem, 1.625rem);
  font-weight: 700;
  line-height: 1.6;
}
.p-feature__lead b {
  font-weight: 700;
  color: var(--color-pink4);
}
@media (768px <= width) {
  .p-feature__lead {
    text-align: center;
  }
}
.p-feature__lead.text-left {
  text-align: left;
}

.p-feature__blocks {
  display: flex;
  flex-direction: column;
  gap: clamp(3rem, 9.3922651934vw + 0.7986878453rem, 8.3125rem);
}
@media (768px <= width) {
  .p-feature__blocks.w-70-30 .p-feature__block-img {
    width: 30%;
  }
  .p-feature__blocks.w-70-30 .p-feature__text-box {
    width: 70%;
  }
}

.p-feature__block {
  position: relative;
}
@media (768px <= width) {
  .p-feature__block:nth-of-type(odd) .p-feature__block-inner {
    flex-direction: row-reverse;
  }
  .p-feature__block:nth-of-type(odd) .p-feature__block-bg {
    right: calc((var(--vw) * 100 - 100%) / -2);
  }
  .p-feature__block:nth-of-type(even) .p-feature__block-inner {
    flex-direction: row;
  }
  .p-feature__block:nth-of-type(even) .p-feature__block-bg {
    left: calc((var(--vw) * 100 - 100%) / -2);
  }
}

.p-feature__block-bg {
  position: absolute;
  height: 100%;
  width: calc((var(--vw) * 100 - 100%) / 2 + 100% + 30px);
  bottom: -30px;
  z-index: 1;
  display: none;
}
@media (768px <= width) {
  .p-feature__block-bg {
    display: block;
  }
}

.p-feature__block-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
}
@media (768px <= width) {
  .p-feature__block-inner {
    background-color: #fff;
    box-shadow: 4px 4px 4px 0px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
  }
}

.p-feature__block-img {
  display: none;
}
@media (768px <= width) {
  .p-feature__block-img {
    display: block;
    width: 50%;
  }
}

.p-feature__text-box {
  display: flex;
  flex-direction: column;
  gap: clamp(17px, -0.773480663vw + 26.9005524862px, 24px);
}
@media (768px <= width) {
  .p-feature__text-box {
    padding: 0px 17px;
    width: 50%;
    padding: 40px 22px 56px;
  }
}

.p-feature__block-title {
  padding: 6px 6px;
  background-color: #4dacc4;
  border-radius: 8px;
  color: #fff;
  font-size: clamp(1.625rem, 0.8839779006vw + 1.4178176796rem, 2.125rem);
  text-align: center;
  font-weight: 700;
  position: relative;
}
@media (768px <= width) {
  .p-feature__block-title::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    border: 1px solid #4dacc4;
    border-radius: 8px;
    top: -5px;
    left: -5px;
  }
}

.p-feature__block-img-sp {
  display: block;
  max-width: 270px;
  margin-inline: auto;
}
@media (768px <= width) {
  .p-feature__block-img-sp {
    display: none;
  }
}

.p-feature__block-text {
  font-family: var(--font-family-noto);
  font-size: 18px;
  line-height: 1.8;
  padding-inline: clamp(1rem, 1.7679558011vw + 0.5856353591rem, 2rem);
}

/* ===============================================
#BB装置について
=============================================== */
.p-r-bb__title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(0.625rem, 1.1049723757vw + 0.3660220994rem, 1.25rem);
}

.p-r-bb__title-en {
  color: var(--color-pink4);
  font-size: clamp(1.1875rem, 0.9944751381vw + 0.9544198895rem, 1.75rem);
}

.p-r-bb__title-icon {
  width: clamp(1.5rem, 1.2154696133vw + 1.2151243094rem, 2.1875rem);
}

.p-r-bb__title-ja {
  color: var(--color-pink4);
  font-size: clamp(1.875rem, 1.546961326vw + 1.5124309392rem, 2.75rem);
  font-weight: 700;
}

.p-r-bb__img {
  max-width: clamp(15.9375rem, 25.1933701657vw + 10.0328038674rem, 30.1875rem);
  margin-inline: auto;
}

.p-r-bb__top-lead {
  font-family: var(--font-family-noto);
  text-align: center;
  font-size: clamp(1.125rem, 0.4419889503vw + 1.0214088398rem, 1.375rem);
}

.p-r-bb__container {
  display: flex;
  flex-direction: column;
  gap: clamp(2.5rem, 2.2099447514vw + 1.9820441989rem, 3.75rem);
  overflow: hidden;
}

.p-r-bb__label {
  background-color: #fdc1c2;
  padding-block: 19px;
  text-align: center;
}
.p-r-bb__label .c-inner {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: clamp(0.25rem, 0.3314917127vw + 0.1723066298rem, 0.4375rem);
}

.p-r-bb__label-title {
  color: #fff;
  font-size: clamp(1.625rem, 0.773480663vw + 1.4437154696rem, 2.0625rem);
  font-weight: 700;
}

.p-r-bb__label-lead {
  font-family: var(--font-family-noto);
  font-size: 18px;
}

.p-r-bb__white-box {
  background-color: #fff;
  padding: clamp(1.875rem, 1.1049723757vw + 1.6160220994rem, 2.5rem);
  display: flex;
  flex-direction: column;
  gap: clamp(1.875rem, 1.1049723757vw + 1.6160220994rem, 2.5rem);
}

.p-r-bb__white-box-head {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 30px 10px;
}
@media (768px <= width) {
  .p-r-bb__white-box-head {
    flex-direction: row;
  }
}

.p-r-bb__white-box-head-left {
  background-color: var(--color-gray3);
  color: #fff;
  font-size: 25px;
  font-weight: 700;
  padding: 2px 8px;
}

.p-r-bb__white-box-head-right {
  flex: 1;
  font-family: var(--font-family-noto);
  font-size: 18px;
  line-height: 1.6;
}

.p-r-bb__white-box-lists {
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: clamp(0.875rem, 0.6629834254vw + 0.7196132597rem, 1.25rem);
}

.p-r-bb__white-box-list {
  display: flex;
  flex-direction: column;
  gap: clamp(0px, -0.4419889503vw + 5.6574585635px, 4px);
}

.p-r-bb__white-box-list-title {
  padding-left: 25px;
  position: relative;
  color: var(--color-pink4);
  font-size: 23px;
  font-weight: 700;
}
.p-r-bb__white-box-list-title::before {
  content: "";
  position: absolute;
  top: calc(0.95lh - 1em);
  left: 0;
  background: transparent url(./../image/icon-list-check.svg) no-repeat center center/contain;
  width: 15px;
  height: 15px;
}

.p-r-bb__white-box-list-text {
  padding-left: 25px;
  font-family: var(--font-family-noto);
  font-size: 18px;
  line-height: 1.77;
}

.p-r-bb__object-left,
.p-r-bb__object-right {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.p-r-bb__object-left {
  width: 101px;
  left: -282px;
}

.p-r-bb__object-right {
  width: 105px;
  right: -272px;
}

.p-r-bb__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px clamp(1.3125rem, 1.2154696133vw + 1.0276243094rem, 2rem);
}
@media (width <= 767px) {
  .p-r-bb__grid {
    padding-inline: 25px;
  }
}
@media (768px <= width) {
  .p-r-bb__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.p-r-bb__grid-item {
  background-color: var(--color-light-blue2);
  border-radius: clamp(0.375rem, 0.2209944751vw + 0.3232044199rem, 0.5rem);
  min-height: clamp(5.3125rem, 2.5414364641vw + 4.7168508287rem, 6.75rem);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  font-weight: 600;
  line-height: 1.43;
  font-size: clamp(1.125rem, 0.5524861878vw + 0.9955110497rem, 1.4375rem);
}

.p-r-bb__flex {
  display: flex;
  gap: 24px 44px;
}
@media (width <= 767px) {
  .p-r-bb__flex {
    padding-inline: 25px;
    flex-direction: column;
    align-items: center;
  }
}
@media (768px <= width) {
  .p-r-bb__flex {
    align-items: flex-start;
  }
}

.p-r-bb__flex-img {
  max-width: clamp(14.0625rem, 8.3977900552vw + 12.0942679558rem, 18.8125rem);
}

.p-r-bb__flex-text {
  flex: 1;
  font-family: var(--font-family-noto);
  font-size: 18px;
  line-height: 1.8;
}

/* ===============================================
#パーツ 流れ
=============================================== */
.p-flow__object-left,
.p-flow__object-right {
  position: absolute;
  top: 0;
}

.p-flow__object-left {
  left: 0;
  width: clamp(7.75rem, 30.4972375691vw + 0.6022099448rem, 25rem);
}

.p-flow__object-right {
  right: 0;
  width: clamp(7.875rem, 29.1712707182vw + 1.0379834254rem, 24.375rem);
}

.p-flow__heading {
  color: var(--color-gray3);
  font-size: clamp(1.625rem, 1.1049723757vw + 1.3660220994rem, 2.25rem);
  padding: clamp(0.625rem, 0.5524861878vw + 0.4955110497rem, 0.9375rem)
    clamp(0.3125rem, 0.5524861878vw + 0.1830110497rem, 0.625rem);
  font-weight: 700;
  text-align: center;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  background-image: linear-gradient(
    to right,
    rgba(121, 106, 85, 0.4),
    rgba(121, 106, 85, 0.4) 8px,
    transparent 8px,
    transparent 12px
  );
  background-size: 12px 3px;
  background-position: left bottom;
  background-repeat: repeat-x;
}

.p-flow__lists {
  display: flex;
  flex-direction: column;
  gap: clamp(26px, -0.9944751381vw + 38.729281768px, 35px);
  counter-reset: number 0;
}
@media (width <= 767px) {
  .p-flow__lists {
    padding-inline: 12px;
  }
}

.p-flow__list {
  display: flex;
  align-items: flex-start;
  gap: 44px;
  counter-increment: number 1;
}
.p-flow__list:nth-of-type(3n + 1) {
  color: var(--color-pink4);
}
.p-flow__list:nth-of-type(3n + 1) .p-flow__list-text-box::before {
  background-color: var(--color-pink4);
}
.p-flow__list:nth-of-type(3n + 2) {
  color: var(--color-light-blue);
}
.p-flow__list:nth-of-type(3n + 2) .p-flow__list-text-box::before {
  background-color: var(--color-light-blue);
}
.p-flow__list:nth-of-type(3n + 3) {
  color: var(--color-orange2);
}
.p-flow__list:nth-of-type(3n + 3) .p-flow__list-text-box::before {
  background-color: var(--color-orange2);
}
.p-flow__list:nth-of-type(n + 2) .p-flow__list-text-box::after {
  content: "";
  position: absolute;
  bottom: calc(100% + clamp(21px, -0.5524861878vw + 28.0718232044px, 26px));
  left: 50%;
  transform: translateX(-50%);
  width: clamp(1.8125rem, 0.5524861878vw + 1.6830110497rem, 2.125rem);
  height: clamp(0.8125rem, 0.5524861878vw + 0.6830110497rem, 1.125rem);
  background-color: rgba(121, 106, 85, 0.5);
  clip-path: polygon(50% 100%, 0 0, 100% 0);
}

@media (768px <= width) {
  .p-flow__list-img {
    width: calc(41.4% - 44px);
    margin-top: 31px;
  }
}

.p-flow__list-text-box {
  padding: clamp(0.875rem, 0.4419889503vw + 0.7714088398rem, 1.125rem)
    clamp(1.25rem, 1.3259668508vw + 0.9392265193rem, 2rem) clamp(1.25rem, 0.2209944751vw + 1.1982044199rem, 1.375rem);
  border-radius: 8px;
  border: 2px solid currentColor;
  display: flex;
  flex-direction: column;
  gap: clamp(4px, -1.1049723757vw + 18.1436464088px, 14px);
  position: relative;
  margin-top: 31px;
}
@media (768px <= width) {
  .p-flow__list-text-box {
    width: 59.6%;
  }
}
.p-flow__list-text-box::before {
  content: "0" counter(number);
  position: absolute;
  bottom: 100%;
  left: 8px;
  width: 65px;
  height: 31px;
  font-family: var(--font-family-adam);
  color: #fff;
  font-size: 24px;
  padding: 9px 2px 0 0;
  border-radius: 50%/100% 100% 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.p-flow__list-title {
  font-size: 28px;
  font-weight: 700;
}
@media (width <= 767px) {
  .p-flow__list-title {
    text-align: center;
  }
}

.p-flow__list-text {
  color: var(--color-black);
  font-family: var(--font-family-noto);
  font-size: 18px;
}
@media (width <= 767px) {
  .p-flow__list-text {
    padding-inline: 10px;
  }
}

/* ===============================================
#当院にお越しください
=============================================== */
.p-cta__section {
  padding-bottom: clamp(2.5rem, 4.4198895028vw + 1.4640883978rem, 5rem);
}
@media (width <= 767px) {
  .p-cta__section {
    padding-top: 36px;
  }
}
.p-cta__section.c-bg__wave-2 {
  padding-top: clamp(5rem, 11.0497237569vw + 2.4102209945rem, 11.25rem);
}

.p-cta__title {
  color: var(--color-gray3);
  font-size: clamp(1.75rem, 1.1049723757vw + 1.4910220994rem, 2.375rem);
  font-weight: 700;
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
}

.p-cta__object-right {
  position: absolute;
  display: block;
  width: clamp(1.875rem, 1.9889502762vw + 1.408839779rem, 3rem);
  top: 60%;
  transform: translateY(-50%);
  right: calc(clamp(2.125rem, 3.4254143646vw + 1.3221685083rem, 4.0625rem) * -1);
}

.p-cta__object-left {
  position: absolute;
  width: clamp(2.875rem, 2.6519337017vw + 2.2534530387rem, 4.375rem);
  top: 30%;
  transform: translateY(-50%);
  left: calc(clamp(3.25rem, 4.1988950276vw + 2.2658839779rem, 5.625rem) * -1);
}
@media (768px <= width) {
  .p-cta__object-left {
    top: 50%;
  }
}

.p-cta__text {
  font-family: var(--font-family-noto);
  font-size: clamp(1.125rem, 0.5524861878vw + 0.9955110497rem, 1.4375rem);
  line-height: 1.73;
}
@media (768px <= width) {
  .p-cta__text {
    text-align: center;
  }
}

.p-cta__container {
  max-width: 725px;
  margin-inline: auto;
  width: 100%;
}
.p-cta__container.w-100 {
  max-width: 100%;
}

.p-cta__container-head {
  background-color: var(--color-pink4);
  padding: 16px;
  border-radius: clamp(0.25rem, 0.6629834254vw + 0.0946132597rem, 0.625rem)
    clamp(0.25rem, 0.6629834254vw + 0.0946132597rem, 0.625rem) 0 0;
  color: #fff;
  text-align: center;
  font-size: clamp(1.5625rem, 1.4364640884vw + 1.2258287293rem, 2.375rem);
  font-weight: 700;
}

.p-cta__container-body {
  background-color: #fff;
  border-radius: 0 0 clamp(0.25rem, 0.6629834254vw + 0.0946132597rem, 0.625rem)
    clamp(0.25rem, 0.6629834254vw + 0.0946132597rem, 0.625rem);
  padding: clamp(1.25rem, 2.5414364641vw + 0.6543508287rem, 2.6875rem);
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.p-cta__container-text {
  text-align: center;
  font-size: clamp(1.125rem, 0.5524861878vw + 0.9955110497rem, 1.4375rem);
  font-family: var(--font-family-noto);
  display: flex;
  flex-direction: column;
  gap: 1em;
}
@media (width <= 767px) {
  .p-cta__container-text {
    gap: 1lh;
  }
  .p-cta__container-text b {
    font-weight: 700;
  }
}
.p-cta__container-text a {
  text-decoration: underline;
}
.p-cta__container-text.block {
  display: block;
}

.p-cta__btn-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 26px 42px;
}
@media (768px <= width) {
  .p-cta__btn-box {
    flex-direction: row;
  }
}
.p-cta__btn-box .c-btn__simple {
  min-height: clamp(5.25rem, 2.5414364641vw + 4.6543508287rem, 6.6875rem);
  min-width: clamp(13.1875rem, 6.5193370166vw + 11.6595303867rem, 16.875rem);
}
.p-cta__btn-box .c-btn__simple.web {
  font-size: clamp(1.4375rem, 0.773480663vw + 1.2562154696rem, 1.875rem);
}
.p-cta__btn-box .c-btn__simple.tel {
  font-size: clamp(1rem, 0.5524861878vw + 0.8705110497rem, 1.3125rem);
}
.p-cta__btn-box .c-btn__simple.tel span {
  font-size: clamp(1.4375rem, 0.6629834254vw + 1.2821132597rem, 1.8125rem);
}

/* ===============================================
#パーツ リード
=============================================== */
.p-lead__container {
  background-color: var(--color-pink2);
  overflow: hidden;
}

.p-lead__inner {
  width: 80%;
}

.p-lead__object-right,
.p-lead__object-left {
  display: none;
}
@media (1024px <= width) {
  .p-lead__object-right,
  .p-lead__object-left {
    display: block;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
  }
}

.p-lead__object-right {
  width: 114px;
  right: -170px;
}

.p-lead__object-left {
  width: 140px;
  left: -190px;
}

.p-lead__object-sp {
  width: 32px;
  margin-inline: auto;
}
@media (1024px <= width) {
  .p-lead__object-sp {
    display: none;
  }
}

.p-lead__text {
  font-family: var(--font-family-noto);
  font-size: clamp(1.125rem, 0.2209944751vw + 1.0732044199rem, 1.25rem);
  line-height: 1.77;
  display: flex;
  flex-direction: column;
  gap: 1lh;
}
.p-lead__text b {
  color: var(--color-pink5);
  font-weight: 700;
}

/* ===============================================
#小児の予防歯科 4つの特徴
=============================================== */
.p-p-feature__cards {
  display: flex;
  flex-direction: column;
  gap: clamp(3.125rem, 5.5248618785vw + 1.8301104972rem, 6.25rem);
}

.p-p-feature__card {
  counter-increment: number 1;
}
@media (1024px <= width) {
  .p-p-feature__card {
    display: flex;
    align-items: center;
    gap: 30px;
    justify-content: flex-end;
  }
  .p-p-feature__card:nth-of-type(odd) {
    flex-direction: row;
  }
  .p-p-feature__card:nth-of-type(even) {
    flex-direction: row-reverse;
  }
}

.p-p-feature__card-text-box {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (1024px <= width) {
  .p-p-feature__card-text-box {
    width: -moz-fit-content;
    width: fit-content;
  }
}

.p-p-feature__card-title {
  display: flex;
  flex-direction: column;
  gap: 20px;
  color: #fff;
  font-size: clamp(1.125rem, 0.9944751381vw + 0.8919198895rem, 1.6875rem);
  font-weight: 700;
  padding: clamp(0.9375rem, 0.773480663vw + 0.7562154696rem, 1.375rem)
    clamp(0.9375rem, 0.773480663vw + 0.7562154696rem, 1.375rem)
    clamp(0.9375rem, 0.773480663vw + 0.7562154696rem, 1.375rem)
    clamp(4.875rem, 3.5359116022vw + 4.0462707182rem, 6.875rem);
  background-color: var(--color-pink4);
  position: relative;
  border-radius: 50vw;
  margin-block: clamp(0.4375rem, 0.4419889503vw + 0.3339088398rem, 0.6875rem);
  text-align: center;
}
.p-p-feature__card-title::before {
  content: "0" counter(number);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: clamp(4.375rem, 3.3149171271vw + 3.5980662983rem, 6.25rem);
  height: clamp(4.375rem, 3.3149171271vw + 3.5980662983rem, 6.25rem);
  background-color: #fff;
  font-family: var(--font-family-noto);
  color: var(--color-pink4);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(2.125rem, 1.6574585635vw + 1.7365331492rem, 3.0625rem);
  border: 2px solid currentColor;
  border-radius: 50%;
}

.p-p-feature__card-img {
  width: 65%;
  margin-inline: auto;
}
@media (1024px <= width) {
  .p-p-feature__card-img {
    max-width: 440px;
    flex: 1;
  }
}

.p-p-feature__card-text {
  font-size: 18px;
  line-height: 1.77;
  font-family: var(--font-family-noto);
  display: flex;
  flex-direction: column;
  gap: 1lh;
  margin-inline: 25px;
}
@media (1024px <= width) {
  .p-p-feature__card-text {
    max-width: 480px;
    margin-left: 30px;
    margin-right: 0;
  }
}

/* ===============================================
#ミラクルデンチャー メリット
=============================================== */
.p-miracle-merit__section {
  background-color: #fcfaf6;
}

.p-miracle-merit__cards {
  display: flex;
  flex-direction: column;
  gap: clamp(32px, -2.0994475138vw + 58.8729281768px, 51px);
}

.p-miracle-merit__card {
  box-shadow: 3px 3px 3px 0px rgba(0, 0, 0, 0.1);
  border-radius: 7px;
  overflow: hidden;
}
.p-miracle-merit__card:nth-of-type(3n + 1) .p-miracle-merit__card-title {
  background-color: var(--color-light-blue);
}
.p-miracle-merit__card:nth-of-type(3n + 2) .p-miracle-merit__card-title {
  background-color: var(--color-orange2);
}
.p-miracle-merit__card:nth-of-type(3n + 3) .p-miracle-merit__card-title {
  background-color: var(--color-pink4);
}

.p-miracle-merit__card-title {
  text-align: center;
  padding: clamp(0.25rem, 0.3314917127vw + 0.1723066298rem, 0.4375rem);
  box-shadow: 3px 3px 3px 0px rgba(0, 0, 0, 0.1);
}
.p-miracle-merit__card-title span {
  width: -moz-fit-content;
  width: fit-content;
  color: #fff;
  font-size: clamp(1.4375rem, 2.0994475138vw + 0.945441989rem, 2.625rem);
  font-weight: 700;
  position: relative;
}
.p-miracle-merit__card-title span::before,
.p-miracle-merit__card-title span::after {
  content: "";
  display: block;
  width: 11px;
  height: 11px;
  background-color: #fff;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 50%;
}
.p-miracle-merit__card-title span::before {
  left: calc(clamp(30px, -1.1049723757vw + 44.1436464088px, 40px) * -1);
}
.p-miracle-merit__card-title span::after {
  right: calc(clamp(30px, -1.1049723757vw + 44.1436464088px, 40px) * -1);
}

.p-miracle-merit__card-body {
  background-color: #fff;
  padding: clamp(1.375rem, 0.8839779006vw + 1.1678176796rem, 1.875rem)
    clamp(2.125rem, 3.7569060773vw + 1.2444751381rem, 4.25rem);
  font-size: 18px;
  font-family: var(--font-family-noto);
  line-height: 2;
}

/* ===============================================
#ミラクルデンチャー 種類
=============================================== */
.p-miracle-type__lists {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media (768px <= width) {
  .p-miracle-type__lists {
    gap: 6px;
  }
}

@media (768px <= width) {
  .p-miracle-type__list {
    display: flex;
    gap: 6px;
  }
}
.p-miracle-type__list:nth-of-type(4n + 1) .p-miracle-type__list-title {
  background-color: #9dd6e5;
}
.p-miracle-type__list:nth-of-type(4n + 2) .p-miracle-type__list-title {
  background-color: #81d2e7;
}
.p-miracle-type__list:nth-of-type(4n + 3) .p-miracle-type__list-title {
  background-color: #47c6e6;
}
.p-miracle-type__list:nth-of-type(4n + 4) .p-miracle-type__list-title {
  background-color: #14bbe7;
}

.p-miracle-type__list-title {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: var(--font-family-noto);
  font-size: clamp(1.25rem, 0.5524861878vw + 1.1205110497rem, 1.5625rem);
  font-weight: 700;
  padding: 3px;
}
@media (768px <= width) {
  .p-miracle-type__list-title {
    width: 380px;
  }
}

.p-miracle-type__list-body {
  background-color: #fff;
  padding: clamp(13px, -0.2209944751vw + 15.8287292818px, 15px) clamp(10px, -0.5524861878vw + 17.0718232044px, 15px)
    clamp(13px, -0.2209944751vw + 15.8287292818px, 15px) clamp(0.9375rem, 0.4419889503vw + 0.8339088398rem, 1.1875rem);
  font-family: var(--font-family-noto);
  font-size: clamp(1.125rem, 0.4419889503vw + 1.0214088398rem, 1.375rem);
  font-weight: 500;
  line-height: 1.6;
}
@media (768px <= width) {
  .p-miracle-type__list-body {
    flex: 1;
  }
}

/* ===============================================
#ミラクルデンチャー 修理
=============================================== */
.p-miracle-servicing__section {
  background-color: #fcfaf6;
}

.p-miracle-servicing__heading {
  background-color: var(--color-pink4);
  color: #fff;
  font-size: clamp(1.75rem, 1.9889502762vw + 1.283839779rem, 2.875rem);
  font-weight: 700;
  max-width: 880px;
  width: 100%;
  margin-inline: auto;
  text-align: center;
  padding: 2px;
}

.p-miracle-servicing__img-box {
  position: relative;
}

.p-miracle-servicing__object-right,
.p-miracle-servicing__object-left {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: none;
  width: 150px;
}
@media (1024px <= width) {
  .p-miracle-servicing__object-right,
  .p-miracle-servicing__object-left {
    display: block;
  }
}

.p-miracle-servicing__object-left {
  left: -41px;
}

.p-miracle-servicing__object-right {
  right: -49px;
}

.p-miracle-servicing__img {
  max-width: 506px;
  margin-inline: auto;
  display: block;
}

.p-miracle-servicing__text {
  font-size: clamp(1.125rem, 0.2209944751vw + 1.0732044199rem, 1.25rem);
  font-family: var(--font-family-noto);
  line-height: 1.8;
}

/* ===============================================
#ミラクルデンチャー Q&A
=============================================== */
.p-miracle-qa__section {
  background: transparent url(./../image/qa-bg.avif) no-repeat center center/cover;
}

.p-miracle-qa__en {
  color: var(--color-gray3);
  font-size: clamp(1.1875rem, 1.1049723757vw + 0.9285220994rem, 1.8125rem);
  font-weight: 700;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  display: flex;
  align-items: center;
  gap: clamp(0.375rem, 0.3314917127vw + 0.2973066298rem, 0.5625rem);
}
.p-miracle-qa__en::before,
.p-miracle-qa__en::after {
  content: "";
  display: block;
  width: clamp(3.6875rem, 3.4254143646vw + 2.8846685083rem, 5.625rem);
  height: clamp(0.25rem, 0.2209944751vw + 0.1982044199rem, 0.375rem);
  background: transparent url(./../image/qa-object.avif) no-repeat center center/contain;
}

.p-miracle-qa__lists {
  display: flex;
  flex-direction: column;
  gap: clamp(2.0625rem, 1.2154696133vw + 1.7776243094rem, 2.75rem);
}

.p-miracle-qa__list {
  border-radius: 10px;
  box-shadow: 2px 3px 20px 0px rgba(119, 82, 52, 0.15);
  overflow: hidden;
}

.p-miracle-qa__list-title {
  background-color: #e2f2f7;
  display: flex;
  gap: clamp(1.25rem, 1.1049723757vw + 0.9910220994rem, 1.875rem);
  padding: clamp(0.75rem, 0.8839779006vw + 0.5428176796rem, 1.25rem)
    clamp(0.9375rem, 0.5524861878vw + 0.8080110497rem, 1.25rem)
    clamp(0.75rem, 0.8839779006vw + 0.5428176796rem, 1.25rem)
    clamp(1.1875rem, 4.5303867403vw + 0.1256906077rem, 3.75rem);
  color: #5195aa;
}

.p-miracle-qa__q-mark {
  font-size: clamp(1.5625rem, 2.2099447514vw + 1.0445441989rem, 2.8125rem);
  font-weight: 700;
}

.p-miracle-qa__list-title-text {
  font-size: clamp(1.25rem, 0.8839779006vw + 1.0428176796rem, 1.75rem);
  margin-top: clamp(0.3125rem, 0.9944751381vw + 0.0794198895rem, 0.875rem);
  flex: 1;
}

.p-miracle-qa__list-body {
  background-color: #fff;
  display: flex;
  gap: clamp(1.25rem, 2.5414364641vw + 0.6543508287rem, 2.6875rem);
  padding: clamp(0.75rem, 0.8839779006vw + 0.5428176796rem, 1.25rem)
    clamp(0.9375rem, 4.5303867403vw + -0.1243093923rem, 3.5rem)
    clamp(1.125rem, 0.6629834254vw + 0.9696132597rem, 1.5rem) clamp(1.25rem, 4.6408839779vw + 0.1622928177rem, 3.875rem);
  color: var(--color-gray3);
}

.p-miracle-qa__a-mark {
  font-size: clamp(1.5625rem, 2.2099447514vw + 1.0445441989rem, 2.8125rem);
  font-weight: 700;
}

.p-miracle-qa__list-text {
  flex: 1;
  font-family: var(--font-family-noto);
  font-size: clamp(1.125rem, 0.4419889503vw + 1.0214088398rem, 1.375rem);
  line-height: 1.7;
  margin-top: clamp(0.3125rem, 0.3314917127vw + 0.2348066298rem, 0.5rem);
}

/* ===============================================
#ミラクルデンチャー 当院
=============================================== */
.p-miracle-clinic__section {
  background-color: #fff3f3;
}

.p-miracle-clinic__heading {
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  color: var(--color-gray3);
  font-size: clamp(1.75rem, 1.8784530387vw + 1.3097375691rem, 2.8125rem);
  font-weight: 700;
  padding: 0 clamp(0rem, 5.5248618785vw + -1.2948895028rem, 3.125rem) clamp(0.3125rem, 0vw + 0.3125rem, 0.3125rem);
  position: relative;
}
.p-miracle-clinic__heading::before {
  content: "";
  display: block;
  width: 100%;
  height: clamp(0.1875rem, 0.3314917127vw + 0.1098066298rem, 0.375rem);
  position: absolute;
  bottom: 0;
  left: 0;
  background: transparent url(./../image/miracle-clinic-object.avif) no-repeat center center/100%;
  z-index: 1;
}

.p-miracle-clinic__heading-object-center {
  width: 27px;
  margin-inline: auto;
}

.p-miracle-clinic__heading-object-left,
.p-miracle-clinic__heading-object-right {
  position: absolute;
  z-index: 2;
  display: none;
}
@media (768px <= width) {
  .p-miracle-clinic__heading-object-left,
  .p-miracle-clinic__heading-object-right {
    display: block;
  }
}

.p-miracle-clinic__heading-object-left {
  width: clamp(3.125rem, 5.1933701657vw + 1.9078038674rem, 6.0625rem);
  top: -8px;
  left: -61px;
}

.p-miracle-clinic__heading-object-right {
  width: clamp(1.875rem, 4.0883977901vw + 0.916781768rem, 4.1875rem);
  top: 12px;
  right: -13px;
}

.p-miracle-clinic__img {
  max-width: 700px;
  margin-inline: auto;
}

.p-miracle-clinic__container {
  background-color: #fff;
  padding: clamp(30px, -0.2209944751vw + 32.8287292818px, 32px)
    clamp(1.375rem, 3.6464088398vw + 0.5203729282rem, 3.4375rem);
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: clamp(1.25rem, 2.2099447514vw + 0.7320441989rem, 2.5rem);
}

.p-miracle-clinic__text {
  font-family: var(--font-family-noto);
  font-size: clamp(1.125rem, 0.2209944751vw + 1.0732044199rem, 1.25rem);
  font-style: normal;
  line-height: 1.8;
}

.p-miracle-clinic__under-text {
  color: var(--color-pink4);
  font-size: clamp(1.5625rem, 0.1104972376vw + 1.5366022099rem, 1.625rem);
  font-weight: 700;
}
.p-miracle-clinic__under-text span {
  background: linear-gradient(transparent 60%, #f0f7b3 60%);
}

/* ===============================================
#虫歯治療 進行段階
=============================================== */
.p-cavity-stage__section {
  overflow: hidden;
}

.p-cavity-stage__object {
  position: absolute;
  bottom: -59px;
  left: -123px;
  width: 149px;
  z-index: 2;
  display: none;
}
@media (1024px <= width) {
  .p-cavity-stage__object {
    display: block;
  }
}

.p-cavity-stage__lists {
  display: flex;
  flex-direction: column;
  gap: clamp(1.875rem, 2.2099447514vw + 1.3570441989rem, 3.125rem);
}
.p-cavity-stage__lists.center .p-cavity-stage__list-title-text {
  text-align: center;
}

.p-cavity-stage__list {
  position: relative;
}
.p-cavity-stage__list:nth-of-type(1) {
  color: #9dd6e5;
}
.p-cavity-stage__list:nth-of-type(2) {
  color: #81d2e7;
}
.p-cavity-stage__list:nth-of-type(3) {
  color: #47c6e6;
}
.p-cavity-stage__list:nth-of-type(4) {
  color: #14bbe7;
}
.p-cavity-stage__list:nth-of-type(5) {
  color: #00a9d6;
}
.p-cavity-stage__list:nth-of-type(n + 2)::before {
  content: "";
  position: absolute;
  bottom: calc(100% + clamp(0.625rem, 0.4419889503vw + 0.5214088398rem, 0.875rem));
  left: 50%;
  transform: translateX(-50%);
  width: clamp(1.25rem, 2.2099447514vw + 0.7320441989rem, 2.5rem);
  height: clamp(0.625rem, 1.1049723757vw + 0.3660220994rem, 1.25rem);
  background-color: var(--color-gray3);
  clip-path: polygon(53% 100%, 0 0, 100% 0);
}
@media (768px <= width) {
  .p-cavity-stage__list {
    display: flex;
    gap: 6px;
  }
}

.p-cavity-stage__list-title {
  display: flex;
  align-items: center;
  gap: clamp(18px, -0.773480663vw + 27.9005524862px, 25px);
  padding: clamp(0.4375rem, 1.2154696133vw + 0.1526243094rem, 1.125rem)
    clamp(1.4375rem, 0.3314917127vw + 1.3598066298rem, 1.625rem);
  background-color: currentColor;
}
@media (768px <= width) {
  .p-cavity-stage__list-title {
    width: clamp(18.125rem, 15.8011049724vw + 14.4216160221rem, 27.0625rem);
  }
}

.p-cavity-stage__stage {
  background-color: #fff;
  width: clamp(2.5rem, 2.9834254144vw + 1.8007596685rem, 4.1875rem);
  height: clamp(2.5rem, 2.9834254144vw + 1.8007596685rem, 4.1875rem);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(1.375rem, 1.6574585635vw + 0.9865331492rem, 2.3125rem);
  border-radius: clamp(0.375rem, 0.4419889503vw + 0.2714088398rem, 0.625rem);
  font-family: var(--font-family-noto);
  font-weight: 500;
}

.p-cavity-stage__list-title-text {
  color: #fff;
  font-family: var(--font-family-noto);
  font-size: clamp(1.4375rem, 1.546961326vw + 1.0749309392rem, 2.3125rem);
  font-weight: 500;
  flex: 1;
}

.p-cavity-stage__list-body {
  background-color: #fff;
  color: var(--color-black);
  padding: clamp(18px, -0.2209944751vw + 20.8287292818px, 20px) clamp(1.25rem, 0vw + 1.25rem, 1.25rem);
  font-weight: 500;
  font-size: clamp(1.125rem, 0.5524861878vw + 0.9955110497rem, 1.4375rem);
  font-family: var(--font-family-noto);
}
@media (768px <= width) {
  .p-cavity-stage__list-body {
    flex: 1;
  }
}

/* ===============================================
#パーツ 特徴
=============================================== */
.p-feature2__section {
  background-color: #fcfaf6;
}

.p-feature2__flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(1.625rem, 1.9889502762vw + 1.158839779rem, 2.75rem) 33px;
}

.p-feature2__item {
  margin-top: clamp(3.8125rem, 7.4033149171vw + 2.0773480663rem, 8rem);
  display: flex;
  flex-direction: column;
  gap: clamp(0.8125rem, 0.3314917127vw + 0.7348066298rem, 1rem);
  border-radius: clamp(0.375rem, 0.2209944751vw + 0.3232044199rem, 0.5rem);
  padding: 0 clamp(37px, 0.773480663vw + 27.0994475138px, 30px)
    clamp(1.375rem, 0.4419889503vw + 1.2714088398rem, 1.625rem);
}
@media (width <= 767px) {
  .p-feature2__item:nth-of-type(even) {
    color: #ed723f;
    background-color: #ffe9cc;
  }
  .p-feature2__item:nth-of-type(odd) {
    color: #ff6d7c;
    background-color: #ffdede;
  }
}
@media (768px <= width) {
  .p-feature2__item {
    width: calc(50% - 22px);
  }
  .p-feature2__item:nth-of-type(4n + 2),
  .p-feature2__item:nth-of-type(4n + 3) {
    color: #ed723f;
    background-color: #ffe9cc;
  }
  .p-feature2__item:nth-of-type(4n + 1),
  .p-feature2__item:nth-of-type(4n) {
    color: #ff6d7c;
    background-color: #ffdede;
  }
}

.p-feature2__img {
  width: clamp(10.625rem, 11.9337016575vw + 7.828038674rem, 17.375rem);
  margin-inline: auto;
  margin-top: calc(clamp(3.8125rem, 7.4033149171vw + 2.0773480663rem, 8rem) * -1);
}

.p-feature2__item-title {
  font-size: clamp(1.4375rem, 1.3259668508vw + 1.1267265193rem, 2.1875rem);
  font-weight: 700;
  text-align: center;
}

.p-feature2__dots {
  width: 100%;
}

.p-feature2__item-text {
  color: var(--color-black);
  font-family: var(--font-family-noto);
  font-size: 18px;
  line-height: 1.7;
}

.p-feature2__box {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 750px;
  margin-inline: auto;
}

.p-feature2__box-title {
  border-left: 5px solid rgba(250, 154, 164, 0.5);
  padding-left: 12px;
  color: var(--color-pink4);
  font-size: clamp(1.6875rem, 1.546961326vw + 1.3249309392rem, 2.5625rem);
  font-weight: 700;
}

.p-feature2__box-text {
  font-family: var(--font-family-noto);
  font-size: clamp(1.125rem, 0.2209944751vw + 1.0732044199rem, 1.25rem);
  font-style: normal;
  font-weight: 400;
  line-height: 1.65;
}

/* ===============================================
#パーツ 横並び画像テキスト
=============================================== */
.p-image-text__flex {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 35px;
}
@media (768px <= width) {
  .p-image-text__flex {
    flex-direction: row;
  }
  .p-image-text__flex:has(.p-image-text__text-box) {
    align-items: flex-start;
  }
}

.p-image-text__img {
  box-shadow: clamp(0.125rem, 0.2209944751vw + 0.0732044199rem, 0.25rem)
    clamp(0.125rem, 0.2209944751vw + 0.0732044199rem, 0.25rem)
    clamp(0.375rem, 0.4419889503vw + 0.2714088398rem, 0.625rem) rgba(72, 29, 29, 0.15);
  max-width: 293px;
  margin-inline: auto;
}
@media (768px <= width) {
  .p-image-text__img {
    max-width: 100%;
    width: calc(52% - 35px);
  }
}

@media (768px <= width) {
  .p-image-text__text-box {
    width: 48%;
  }
}

.p-image-text__text {
  font-family: var(--font-family-noto);
  font-size: clamp(1.125rem, 0.2209944751vw + 1.0732044199rem, 1.25rem);
  line-height: 2;
}

.p-image-text__lists {
  display: flex;
  flex-direction: column;
  gap: clamp(1.25rem, 1.1049723757vw + 0.9910220994rem, 1.875rem);
}
.p-image-text__lists.pink-check .p-image-text__list::before {
  background: transparent url(./../image/icon-list-check.svg) no-repeat center center/contain;
}

.p-image-text__list {
  padding-left: clamp(1.5rem, 0.8839779006vw + 1.2928176796rem, 2rem);
  position: relative;
  font-family: var(--font-family-noto);
  font-size: clamp(1.125rem, 0.5524861878vw + 0.9955110497rem, 1.4375rem);
  font-weight: 500;
}
.p-image-text__list::before {
  content: "";
  position: absolute;
  top: calc(0.9lh - 1em);
  left: 0;
  background: transparent url(./../image/icon-list-check-brown.svg) no-repeat center center/contain;
  width: clamp(1rem, 0.5524861878vw + 0.8705110497rem, 1.3125rem);
  height: clamp(1rem, 0.5524861878vw + 0.8705110497rem, 1.3125rem);
}

.p-image-text__cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(1rem, 0.773480663vw + 0.8187154696rem, 1.4375rem)
    clamp(0.75rem, 2.320441989vw + 0.2061464088rem, 2.0625rem);
  max-width: 640px;
  width: 100%;
  margin-inline: auto;
}
@media (768px <= width) {
  .p-image-text__cards {
    grid-template-columns: repeat(3, 1fr);
  }
}

.p-image-text__card {
  color: #5195aa;
  background-color: #fff;
  border: clamp(0.125rem, 0.1104972376vw + 0.0991022099rem, 0.1875rem) solid currentColor;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(1.125rem, 0.5524861878vw + 0.9955110497rem, 1.4375rem);
  font-family: var(--font-family-noto);
  font-weight: 600;
  border-radius: clamp(0.3125rem, 0.3314917127vw + 0.2348066298rem, 0.5rem);
  height: clamp(4.875rem, 3.3149171271vw + 4.0980662983rem, 6.75rem);
}

/* ===============================================
#インプラント 特徴
=============================================== */
.p-implant__flex {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: clamp(22px, -4.1988950276vw + 75.7458563536px, 60px) clamp(1.25rem, 2.2099447514vw + 0.7320441989rem, 2.5rem);
  max-width: 820px;
  margin-inline: auto;
}
@media (768px <= width) {
  .p-implant__flex {
    grid-template-columns: repeat(2, 1fr);
  }
}

.p-implant__item {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (width <= 767px) {
  .p-implant__item:nth-of-type(even) {
    color: #ed723f;
  }
  .p-implant__item:nth-of-type(odd) {
    color: #ff6d7c;
  }
}
@media (768px <= width) {
  .p-implant__item:nth-of-type(4n + 2),
  .p-implant__item:nth-of-type(4n + 3) {
    color: #ed723f;
  }
  .p-implant__item:nth-of-type(4n + 1),
  .p-implant__item:nth-of-type(4n) {
    color: #ff6d7c;
  }
}

.p-implant__item-title {
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  position: relative;
  font-size: clamp(1.75rem, 0.773480663vw + 1.5687154696rem, 2.1875rem);
  font-weight: 700;
  line-height: 1.3;
  text-align: center;
  display: flex;
  align-items: flex-end;
}
.p-implant__item-title::before {
  content: "";
  position: absolute;
  top: 60%;
  transform: translateY(-50%);
  left: -50px;
  width: clamp(1.8125rem, 0.3314917127vw + 1.7348066298rem, 2rem);
  height: clamp(3.5rem, 0.773480663vw + 3.3187154696rem, 3.9375rem);
  background: transparent url(./../image/implant-object_1.avif) no-repeat center center/contain;
}
@media (768px <= width) {
  .p-implant__item-title {
    min-height: 91px;
  }
}

.p-implant__dots {
  padding-inline: clamp(1.25rem, 0.3314917127vw + 1.1723066298rem, 1.4375rem);
}

.p-implant__img {
  margin-top: 8px;
  border-radius: clamp(0.4375rem, 0.1104972376vw + 0.4116022099rem, 0.5rem);
}

.p-implant__item-text {
  color: #000;
  font-family: var(--font-family-noto);
  font-size: 18px;
  line-height: 1.8;
  padding-inline: clamp(1.0625rem, 0.3314917127vw + 0.9848066298rem, 1.25rem);
}

/* ===============================================
#小児歯科 特徴
=============================================== */
.p-d-feature__heading {
  color: var(--color-pink4);
  font-size: clamp(1.625rem, 1.546961326vw + 1.2624309392rem, 2.5rem);
  font-weight: 700;
  line-height: 1.25;
  text-align: center;
}
@media (width <= 767px) {
  .p-d-feature__heading {
    color: #fff;
    background-color: var(--color-pink4);
    padding: 13px 0px;
  }
}
.p-d-feature__heading.blue {
  color: #94d2ff;
}
@media (width <= 767px) {
  .p-d-feature__heading.blue {
    color: #fff;
    background-color: #94d2ff;
  }
}

.p-d-feature__lists {
  display: flex;
  flex-direction: column;
  gap: clamp(2.5rem, 0.5524861878vw + 2.3705110497rem, 2.8125rem);
}
.p-d-feature__lists.blue .p-d-feature__list-title::before {
  background: transparent url(./../image/icon-list-check-blue.svg) no-repeat center center/cover;
}

.p-d-feature__list {
  display: flex;
  flex-direction: column;
  gap: clamp(13px, -0.2209944751vw + 15.8287292818px, 15px);
}

.p-d-feature__list-title {
  position: relative;
  padding-left: clamp(2.125rem, 1.1049723757vw + 1.8660220994rem, 2.75rem);
  font-size: clamp(1.625rem, 0.3314917127vw + 1.5473066298rem, 1.8125rem);
  font-weight: 700;
}
.p-d-feature__list-title::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 0;
  width: clamp(1.375rem, 0.3314917127vw + 1.2973066298rem, 1.5625rem);
  height: clamp(1.375rem, 0.3314917127vw + 1.2973066298rem, 1.5625rem);
  background: transparent url(./../image/icon-list-check.svg) no-repeat center center/contain;
}

.p-d-feature__list-text {
  font-family: var(--font-family-noto);
  font-size: clamp(1.125rem, 0.2209944751vw + 1.0732044199rem, 1.25rem);
  line-height: 1.7;
}
@media (768px <= width) {
  .p-d-feature__list-text {
    padding-left: clamp(2.125rem, 1.1049723757vw + 1.8660220994rem, 2.75rem);
  }
}

/* ===============================================
#下層ページ 医院紹介
=============================================== */
.p-clinic__section {
  background-color: #fff9f9;
}

.p-clinic__box {
  background-color: #fff;
  padding: clamp(1.25rem, 1.2154696133vw + 0.9651243094rem, 1.9375rem)
    clamp(18px, -0.773480663vw + 27.9005524862px, 25px) clamp(2.5rem, 1.1049723757vw + 2.2410220994rem, 3.125rem);
  display: flex;
  flex-direction: column;
  gap: clamp(1.875rem, 1.1049723757vw + 1.6160220994rem, 2.5rem);
}

.p-clinic__heading {
  color: var(--color-gray3);
  font-size: clamp(1.5625rem, 1.4364640884vw + 1.2258287293rem, 2.375rem);
  font-weight: 700;
  text-align: center;
  padding-bottom: clamp(0.625rem, 1.1049723757vw + 0.3660220994rem, 1.25rem);
  position: relative;
}
.p-clinic__heading::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: clamp(17.5rem, 5.9668508287vw + 16.101519337rem, 20.875rem);
  height: clamp(0.375rem, 0.1104972376vw + 0.3491022099rem, 0.4375rem);
  background: transparent url(./../image/clinic-dot.avif) no-repeat center center/contain;
}

.p-clinic__img-box {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: clamp(1.25rem, 3.8674033149vw + 0.3435773481rem, 3.4375rem) 16px;
}

@media (768px <= width) {
  .p-clinic__img {
    width: calc(50% - 8px);
  }
}

.p-clinic__text {
  color: var(--color-black);
  font-family: var(--font-family-noto);
  font-size: clamp(1.125rem, 0.2209944751vw + 1.0732044199rem, 1.25rem);
  font-weight: 500;
  line-height: 1.8;
}
@media (768px <= width) {
  .p-clinic__text {
    padding-inline: 20px;
  }
}

/* ===============================================
#院長紹介
=============================================== */
.p-director__section {
  background-color: #fff9f9;
}

.p-director__flex {
  display: flex;
  align-items: flex-start;
  gap: 24px 60px;
}
@media (width <= 767px) {
  .p-director__flex {
    flex-direction: column-reverse;
  }
}

.p-director__flex-text {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
@media (768px <= width) {
  .p-director__flex-text {
    width: calc(65.8% - 60px);
  }
}

.p-director__flex-img {
  width: 59%;
  margin-inline: auto;
}
@media (768px <= width) {
  .p-director__flex-img {
    width: 34.2%;
  }
}

.p-director__name-box {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px 10px;
  color: var(--color-gray3);
  font-weight: 700;
}
@media (768px <= width) {
  .p-director__name-box {
    align-items: flex-start;
    flex-direction: column;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(121, 106, 85, 0.2);
  }
}

.p-director__director {
  font-size: clamp(1.125rem, 0.9944751381vw + 0.8919198895rem, 1.6875rem);
}

.p-director__name {
  font-size: clamp(1.4375rem, 1.2154696133vw + 1.1526243094rem, 2.125rem);
}
.p-director__name small {
  font-size: clamp(1.1875rem, 1.1049723757vw + 0.9285220994rem, 1.8125rem);
}

.p-director__flex-text-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(10px, -1.1049723757vw + 24.1436464088px, 20px);
}
@media (768px <= width) {
  .p-director__flex-text-body {
    align-items: flex-start;
  }
}

.p-director__flex-text-title {
  color: #fff;
  font-size: clamp(1.375rem, 0.8839779006vw + 1.1678176796rem, 1.875rem);
  font-weight: 700;
  padding: 0 clamp(0.75rem, 0.4419889503vw + 0.6464088398rem, 1rem);
  background-color: var(--color-gray3);
  display: inline-block;
}

.p-director__flex-lists {
  list-style: disc;
  padding-left: 1em;
}

.p-director__flex-list {
  font-size: clamp(1.125rem, 0.2209944751vw + 1.0732044199rem, 1.25rem);
  color: #000;
  font-family: var(--font-family-noto);
}

.p-director__message-title {
  color: var(--color-gray3);
  font-size: clamp(1.75rem, 0.6629834254vw + 1.5946132597rem, 2.125rem);
  font-weight: 700;
  padding-bottom: clamp(0.625rem, 0.6629834254vw + 0.4696132597rem, 1rem);
  border-bottom: 1px solid rgba(121, 106, 85, 0.2);
  text-align: center;
  width: 100%;
}
@media (768px <= width) {
  .p-director__message-title {
    text-align: left;
    width: -moz-fit-content;
    width: fit-content;
    min-width: 518px;
  }
}

.p-director__message {
  color: #000;
  font-family: var(--font-family-noto);
  font-size: clamp(1.125rem, 0.2209944751vw + 1.0732044199rem, 1.25rem);
  line-height: 1.7;
  display: flex;
  flex-direction: column;
  gap: 1lh;
}

/* ===============================================
#歯周病ページ
=============================================== */
.p-periodontal__section {
  background-color: #fff6f6;
}
.p-periodontal__section .p-miracle-servicing__heading {
  max-width: 100%;
}

/* ===============================================
#アクセスページ
=============================================== */
.p-access__heading {
  color: var(--color-gray3);
  font-size: clamp(1.5625rem, 2.2099447514vw + 1.0445441989rem, 2.8125rem);
  font-weight: 700;
  text-align: center;
  padding-bottom: clamp(0.625rem, 1.1049723757vw + 0.3660220994rem, 1.25rem);
  position: relative;
}
.p-access__heading::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: clamp(13.3125rem, 19.5580110497vw + 8.7285911602rem, 24.375rem);
  height: clamp(0.25rem, 0.3314917127vw + 0.1723066298rem, 0.4375rem);
  background: transparent url(./../image/clinic-dot.avif) no-repeat center center/contain;
}

.p-access__table th,
.p-access__table td {
  font-size: clamp(1.125rem, 1.4364640884vw + 0.7883287293rem, 1.9375rem);
}
.p-access__table .maru {
  width: clamp(0.8125rem, 1.1049723757vw + 0.5535220994rem, 1.4375rem);
  height: clamp(0.8125rem, 1.1049723757vw + 0.5535220994rem, 1.4375rem);
}
.p-access__table .oblique {
  width: clamp(0.9375rem, 1.4364640884vw + 0.6008287293rem, 1.75rem);
  margin-bottom: clamp(0.375rem, 0.5524861878vw + 0.2455110497rem, 0.6875rem);
}

.p-access__pink-box {
  background-color: var(--color-pink4);
  padding: clamp(0.75rem, 0.5524861878vw + 0.6205110497rem, 1.0625rem)
    clamp(1.1875rem, 1.546961326vw + 0.8249309392rem, 2.0625rem);
  color: #fff;
  text-align: center;
  font-family: var(--font-family-noto);
  font-size: clamp(0.875rem, 1.2154696133vw + 0.5901243094rem, 1.5625rem);
  font-weight: 500;
  line-height: 1.6;
}

.p-access__form-text {
  font-family: var(--font-family-noto);
  font-size: clamp(1.125rem, 1.1049723757vw + 0.8660220994rem, 1.75rem);
  line-height: 1.7;
}
@media (768px <= width) {
  .p-access__form-text {
    text-align: center;
  }
}

.p-access__form-btn {
  font-size: clamp(1.3125rem, 1.9889502762vw + 0.846339779rem, 2.4375rem);
}

.p-access__bg {
  background: transparent url(./../image/access-bg_1.avif) no-repeat center center/cover;
}

.p-access__sub-heading {
  color: var(--color-gray3);
  font-size: clamp(1.5rem, 0.4419889503vw + 1.3964088398rem, 1.75rem);
  font-weight: 700;
  padding-left: clamp(2.5rem, 0.773480663vw + 2.3187154696rem, 2.9375rem);
  position: relative;
  border-bottom: 1px solid #e3e3e3;
  padding-bottom: clamp(0.75rem, 0.773480663vw + 0.5687154696rem, 1.1875rem);
}
.p-access__sub-heading::before {
  content: "";
  position: absolute;
  top: 2px;
  left: 0;
  width: 35px;
  height: 35px;
  background: transparent url(./../image/heading-object.avif) no-repeat center center/contain;
}

.p-access__lists {
  display: flex;
  flex-direction: column;
  gap: 1em;
}

.p-access__list {
  font-family: var(--font-family-noto);
  font-size: clamp(1.125rem, 0.5524861878vw + 0.9955110497rem, 1.4375rem);
  line-height: 1.8;
  padding-left: clamp(1.125rem, 1.8784530387vw + 0.6847375691rem, 2.1875rem);
  position: relative;
}
.p-access__list::before {
  content: "";
  position: absolute;
  top: calc(1lh - 1em);
  left: 0;
  width: 8px;
  height: 8px;
  background-color: #fcbeb8;
  border-radius: 50%;
}

.p-access__text {
  padding-left: clamp(0.875rem, 3.9779005525vw + -0.057320442rem, 3.125rem);
  font-family: var(--font-family-noto);
  font-size: clamp(1.125rem, 0.5524861878vw + 0.9955110497rem, 1.4375rem);
  line-height: 1.7;
}

.p-access__tel {
  padding-left: clamp(0.875rem, 3.5359116022vw + 0.0462707182rem, 2.875rem);
  display: flex;
  align-items: center;
  gap: clamp(0.625rem, 0.2209944751vw + 0.5732044199rem, 0.75rem);
  color: var(--color-pink4);
  font-size: clamp(1.5625rem, 1.1049723757vw + 1.3035220994rem, 2.1875rem);
  font-weight: 700;
}
.p-access__tel::before {
  content: "";
  width: clamp(1.25rem, 2.320441989vw + 0.7061464088rem, 2.5625rem);
  height: clamp(1.25rem, 2.320441989vw + 0.7061464088rem, 2.5625rem);
  background: transparent url(./../image/icon-tel.svg) no-repeat center center/contain;
}
.p-access__tel span {
  flex: 1;
}

/* ===============================================
#料金表
=============================================== */
.p-price__lead {
  color: var(--color-gray3);
  font-size: clamp(1.25rem, 1.1049723757vw + 0.9910220994rem, 1.875rem);
  font-weight: 700;
  line-height: 1.36;
  text-align: center;
}

.p-price__blocks {
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.p-price__block:nth-of-type(1) {
  color: var(--color-pink4);
}
.p-price__block:nth-of-type(1) .p-price__block-heading {
  background-color: var(--color-pink4);
}
.p-price__block:nth-of-type(2) {
  color: var(--color-light-blue);
}
.p-price__block:nth-of-type(2) .p-price__block-heading {
  background-color: var(--color-light-blue);
}
.p-price__block:nth-of-type(3) {
  color: var(--color-orange2);
}
.p-price__block:nth-of-type(3) .p-price__block-heading {
  background-color: var(--color-orange2);
}

.p-price__block-heading {
  background-color: var(--color-gray3);
  padding: clamp(0.3125rem, 0.5524861878vw + 0.1830110497rem, 0.625rem)
    clamp(0.3125rem, 0.5524861878vw + 0.1830110497rem, 0.625rem)
    clamp(0.4375rem, 0.5524861878vw + 0.3080110497rem, 0.75rem);
  text-align: center;
  color: #fff;
  font-size: clamp(1.5rem, 1.2154696133vw + 1.2151243094rem, 2.1875rem);
  font-weight: 500;
  font-family: var(--font-family-noto);
}

.p-price__block-body {
  background-color: #fff;
  padding: clamp(1.875rem, 1.9889502762vw + 1.408839779rem, 3rem)
    clamp(0.9375rem, 3.6464088398vw + 0.0828729282rem, 3rem);
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.p-price__list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 1em;
  font-family: var(--font-family-noto);
  font-size: clamp(1.125rem, 1.1049723757vw + 0.8660220994rem, 1.75rem);
  font-weight: 500;
  line-height: 1.5;
  padding: clamp(20px, -1.1049723757vw + 34.1436464088px, 30px)
    clamp(0rem, 1.4364640884vw + -0.3366712707rem, 0.8125rem);
  border-bottom: 1px solid #e3e3e3;
}
.p-price__list:first-child {
  padding-top: 0;
}
.p-price__list:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

.p-price__dt {
  flex: 1;
  font-weight: 500;
  width: 100%;
  text-align: center;
}
@media (768px <= width) {
  .p-price__dt {
    text-align: left;
    width: calc(100% - 1em - clamp(15.625rem, 9.9447513812vw + 13.294198895rem, 21.25rem));
  }
}

.p-price__dd {
  width: 100%;
  text-align: center;
  color: var(--color-black);
}
@media (768px <= width) {
  .p-price__dd {
    text-align: left;
    width: clamp(15.625rem, 9.9447513812vw + 13.294198895rem, 21.25rem);
  }
}
.p-price__dd small {
  font-size: clamp(0.875rem, 0.9944751381vw + 0.6419198895rem, 1.4375rem);
}

.p-price__notice {
  color: var(--color-black);
  font-family: var(--font-family-noto);
  font-size: clamp(1rem, 0.4419889503vw + 0.8964088398rem, 1.25rem);
  font-weight: 400;
  line-height: 1.6;
  width: 100%;
  display: block;
  text-align: left;
}
@media (768px <= width) {
  .p-price__notice {
    text-align: right;
  }
}

.p-price__block-inner {
  border-radius: clamp(0.25rem, 0.6629834254vw + 0.0946132597rem, 0.625rem);
  border: clamp(0.0625rem, 0.1104972376vw + 0.0366022099rem, 0.125rem) solid var(--color-gray3);
  padding: clamp(2.4375rem, 0.3314917127vw + 2.3598066298rem, 2.625rem)
    clamp(2.125rem, 4.3093922652vw + 1.1149861878rem, 4.5625rem);
  position: relative;
}

.p-price__block-inner-heading {
  border-radius: 50vw;
  background-color: var(--color-gray3);
  padding: 3px 18px 5px;
  color: #fff;
  font-family: var(--font-family-noto);
  font-size: clamp(1.125rem, 1.1049723757vw + 0.8660220994rem, 1.75rem);
  width: -moz-fit-content;
  width: fit-content;
  font-weight: 500;
  position: absolute;
  left: 50%;
  transform: translate(-50%, -50%);
  top: 0;
}

.p-price__block-inner-list {
  font-family: var(--font-family-noto);
  font-size: clamp(1.125rem, 0.773480663vw + 0.9437154696rem, 1.5625rem);
  font-weight: 500;
  line-height: 1.5;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 8px 0;
  gap: 0 1em;
}
@media (width <= 767px) {
  .p-price__block-inner-list {
    border-bottom: 1px solid #e6e6e6;
  }
  .p-price__block-inner-list:last-child {
    border-bottom: none;
  }
}
@media (768px <= width) {
  .p-price__block-inner-list {
    flex-direction: row;
  }
}
.p-price__block-inner-list:first-child {
  padding-top: 0;
}
.p-price__block-inner-list:last-child {
  padding-bottom: 0;
}

.p-price__block-inner-dt {
  font-weight: 500;
  width: 100%;
  text-align: center;
}
@media (768px <= width) {
  .p-price__block-inner-dt {
    text-align: left;
    width: clamp(12.5rem, 6.6298342541vw + 10.9461325967rem, 16.25rem);
  }
}

.p-price__block-inner-dd {
  color: var(--color-black);
  width: 100%;
  text-align: center;
}
@media (768px <= width) {
  .p-price__block-inner-dd {
    text-align: left;
    width: calc(100% - 1em - clamp(12.5rem, 6.6298342541vw + 10.9461325967rem, 16.25rem));
  }
}

.p-price__center-text {
  color: var(--color-gray3);
  font-size: clamp(1.4375rem, 0.773480663vw + 1.2562154696rem, 1.875rem);
  font-weight: 700;
  text-align: center;
  padding-bottom: clamp(1.25rem, 2.2099447514vw + 0.7320441989rem, 2.5rem);
  position: relative;
}
.p-price__center-text::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: clamp(18.75rem, 9.9447513812vw + 16.419198895rem, 24.375rem);
  height: clamp(0.3125rem, 0.2209944751vw + 0.2607044199rem, 0.4375rem);
  background: transparent url(./../image/clinic-dot.avif) no-repeat center center/contain;
}

/* ===============================================
#施設基準届出項目等
=============================================== */
.p-report__lead {
  font-family: var(--font-family-noto);
  font-size: clamp(1.25rem, 0.2209944751vw + 1.1982044199rem, 1.375rem);
  font-weight: 500;
  line-height: 1.5;
}

.p-report__list {
  color: #333;
  font-family: var(--font-family-noto);
  line-height: 1.45;
}

.p-report__dt {
  position: relative;
  padding-left: clamp(2.6875rem, 1.2154696133vw + 2.4026243094rem, 3.375rem);
  font-size: 22px;
  font-weight: 500;
  padding-bottom: 18px;
  border-bottom: 1px solid #e6e6e6;
}
.p-report__dt::before {
  content: "";
  position: absolute;
  top: calc(1lh - 1em);
  left: clamp(0.9375rem, 0.4419889503vw + 0.8339088398rem, 1.1875rem);
  width: 15px;
  height: 15px;
  background-color: var(--color-pink4);
  border-radius: 50%;
}

.p-report__dd {
  padding-top: 18px;
  padding-left: clamp(2.6875rem, 1.2154696133vw + 2.4026243094rem, 3.375rem);
  font-size: 18px;
}

@media (768px <= width) {
  .p-report__text-blocks {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 7px;
  }
}

.p-report__text-block {
  background-color: #ececec;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  font-family: var(--font-family-noto);
  font-size: 22px;
  font-weight: 400;
  line-height: 1.45;
}
@media (width <= 767px) {
  .p-report__text-block {
    padding: 20px 10px;
  }
  .p-report__text-block:first-child {
    padding-bottom: 10px;
    text-align: center;
  }
  .p-report__text-block:last-child {
    padding-top: 10px;
  }
}
@media (768px <= width) {
  .p-report__text-block {
    text-align: center;
    height: 128px;
  }
}

.p-report__desc-1 {
  display: flex;
  flex-direction: column;
  gap: clamp(0.625rem, 0.4419889503vw + 0.5214088398rem, 0.875rem);
  color: #000;
  font-family: var(--font-family-noto);
  font-size: clamp(1.375rem, 0.2209944751vw + 1.3232044199rem, 1.5rem);
  line-height: 1.45;
  padding-left: clamp(2.8125rem, 0.6629834254vw + 2.6571132597rem, 3.1875rem);
  position: relative;
}
.p-report__desc-1::before {
  content: "";
  position: absolute;
  top: 17px;
  left: 0;
  width: clamp(1.25rem, 1.546961326vw + 0.8874309392rem, 2.125rem);
  height: 4px;
  background-color: var(--color-pink4);
}
.p-report__desc-1 small {
  font-size: 18px;
}

.p-report__desc-2 {
  display: flex;
  flex-direction: column;
  gap: clamp(0.4375rem, 0.2209944751vw + 0.3857044199rem, 0.5625rem);
  padding-left: clamp(2.8125rem, 0.6629834254vw + 2.6571132597rem, 3.1875rem);
  color: #000;
  font-family: var(--font-family-noto);
  font-size: 18px;
  line-height: 1.45;
  position: relative;
}
.p-report__desc-2::before {
  content: "";
  position: absolute;
  top: 6px;
  left: 6px;
  width: clamp(0.875rem, 0.1104972376vw + 0.8491022099rem, 0.9375rem);
  height: clamp(0.875rem, 0.1104972376vw + 0.8491022099rem, 0.9375rem);
  background-color: var(--color-pink4);
  border-radius: 50%;
}
@media (768px <= width) {
  .p-report__desc-2::before {
    left: 19px;
  }
}

.p-report__bottom-text {
  color: #000;
  font-family: var(--font-family-noto);
  font-size: clamp(1.375rem, 0.8839779006vw + 1.1678176796rem, 1.875rem);
  text-align: center;
}

/* ===============================================
#ご予約ページ
=============================================== */
.p-reserve__text {
  display: flex;
  flex-direction: column;
  gap: 1lh;
  font-family: var(--font-family-noto);
  font-size: clamp(1.125rem, 0.2209944751vw + 1.0732044199rem, 1.25rem);
  font-weight: 500;
  line-height: 2;
}

.p-reserve__tel {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(0.4375rem, 0.4419889503vw + 0.3339088398rem, 0.6875rem);
  color: var(--color-pink4);
  font-size: clamp(2.5rem, 2.5414364641vw + 1.9043508287rem, 3.9375rem);
  font-family: var(--font-family-noto);
  font-weight: 500;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
}
.p-reserve__tel::before {
  content: "";
  width: clamp(2.5rem, 3.2044198895vw + 1.7489640884rem, 4.3125rem);
  height: clamp(2.5rem, 3.2044198895vw + 1.7489640884rem, 4.3125rem);
  background: transparent url(./../image/icon-tel.svg) no-repeat center center/contain;
}
.p-reserve__tel span {
  flex: 1;
}

.p-reserve__tel-text {
  font-family: var(--font-family-noto);
  font-size: clamp(1.125rem, 0.5524861878vw + 0.9955110497rem, 1.4375rem);
  line-height: 1.6;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
}

.p-reserve__form-container {
  display: flex;
}

.p-reserve__table {
  width: 100%;

  .wpcf7-list-item {
    margin: 0;
  }
}
.p-reserve__table th,
.p-reserve__table td {
  font-family: var(--font-family-noto);
  font-size: 20px;
  font-weight: 500;
  line-height: 1.5;
  vertical-align: middle;
  text-align: left;
}
@media (768px <= width) {
  .p-reserve__table th,
  .p-reserve__table td {
    border: 1px solid #000;
    padding: 20px 15px;
  }
}
.p-reserve__table th {
  background-color: #fde8e8;
  width: 43%;
}
.p-reserve__table th.required::after {
  content: "必須";
  padding: 0px 5px;
  background-color: var(--color-pink4);
  color: #fff;
  font-family: var(--font-family-common);
  font-weight: 700;
  margin-left: 5px;
  display: inline-block;
}
@media (width <= 767px) {
  .p-reserve__table th {
    width: 100%;
    display: block;
    padding: 10px 11px;
  }
}
.p-reserve__table td {
  width: 57%;
}
.p-reserve__table td > span {
  font-size: clamp(1rem, 0.2209944751vw + 0.9482044199rem, 1.125rem);
}
@media (width <= 767px) {
  .p-reserve__table td {
    width: 100%;
    display: block;
    padding: 16px 11px;
  }
}
.p-reserve__table input[type="text"],
.p-reserve__table input[type="email"],
.p-reserve__table textarea {
  background-color: #fff;
  border: 1px solid #e0dede;
  resize: none;
  width: 100%;
  font-size: 16px;
  padding: 0.5em;
}
.p-reserve__table textarea {
  height: 10em;
}
.p-reserve__table input[type="radio"] {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
.p-reserve__table input[type="radio"] + span {
  cursor: pointer;
  display: inline-block;
  padding-left: 29px;
  position: relative;
}
.p-reserve__table input[type="radio"] + span::before {
  content: "";
  background: #fff;
  border: 1px solid #000;
  border-radius: 50%;
  display: block;
  width: 19px;
  height: 19px;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.p-reserve__table input[type="radio"] + span::after {
  content: "";
  background: #000;
  border: 1px solid transparent;
  border-radius: 50%;
  width: 11px;
  height: 11px;
  position: absolute;
  top: 50%;
  left: 4px;
  translate: 0 -50%;
  opacity: 0;
  transition: all 0.3s ease 0s;
}
.p-reserve__table input[type="radio"]:checked + span::after {
  opacity: 1;
}
.p-reserve__table input[type="radio"]:focus + span::before,
.p-reserve__table input[type="radio"]:focus + span::before {
  border: 1px solid;
  outline: 1px solid;
}
.p-reserve__table input[type="checkbox"] {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
.p-reserve__table input[type="checkbox"] + span {
  cursor: pointer;
  display: inline-block;
  padding-left: 28px;
  position: relative;
}
.p-reserve__table input[type="checkbox"] + span::before {
  background: #fff;
  border: 1px solid #333;
  content: "";
  display: block;
  height: 17px;
  width: 17px;
  left: 0;
  position: absolute;
  top: 7px;
}
.p-reserve__table input[type="checkbox"] + span::after {
  border-bottom: 2px solid #000;
  border-left: 2px solid #000;
  content: "";
  display: block;
  width: 11px;
  height: 6px;
  position: absolute;
  top: 11px;
  left: 3px;
  opacity: 0;
  transform: rotate(-45deg);
  transition: all 0.3s ease 0s;
}
.p-reserve__table input[type="checkbox"]:checked + span::after {
  opacity: 1;
}
.p-reserve__table input[type="checkbox"]:focus + span::before,
.p-reserve__table input[type="checkbox"]:focus + span::before {
  border: 1px solid;
  outline: 1px solid;
}
.p-reserve__table .flex {
  display: flex;
  flex-wrap: wrap;
  gap: 5px 1em;
}

.p-reserve__btn-box {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;

  .wpcf7-spinner {
    display: none;
  }
}

.p-reserve__btn {
  transition: opacity var(--duration);
}
@media (768px <= width) {
  .p-reserve__btn:hover {
    opacity: 0.7;
  }
}
.p-reserve__btn.tel {
  font-size: clamp(1.25rem, -0.1104972376vw + 1.2758977901rem, 1.1875rem);
}
.p-reserve__radio .wpcf7-radio {
  display: flex;
  flex-wrap: wrap;
  gap: 5px 1em;
}

.p-reserve__checkbox .wpcf7-checkbox {
  display: flex;
  flex-direction: column;
  gap: 1em;
}

/* ===============================================
#ブログ
=============================================== */
.p-article_container {
  display: flex;
  gap: 40px;
  flex-direction: column;

  @media (1024px <= width) {
    flex-direction: row;
    gap: 60px;
  }
}

.p-article_content {
  display: flex;
  flex-direction: column;
  gap: 60px;

  @media (1024px <= width) {
    width: calc(100% - 273px - 60px);
  }
}

.p-article_lists {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 24px;

  @media (768px <= width) {
    grid-template-columns: repeat(3, 1fr);
    gap: 32px 25px;
  }
}

.p-article_link {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 2;
  gap: 0px;
}

.p-article_img {
  position: relative;

  img {
    border-radius: 8px 8px 0 0;
    aspect-ratio: 29/17;
  }
}

.p-article_img-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

.p-article_img-tag {
  position: absolute;
  top: 8px;
  right: 8px;
  background-color: var(--color-pink4);
  color: #fff;
  font-size: 10px;
  font-weight: 400;
  padding: 2px 10px;
  border-radius: 50vw;
}

.p-article_body {
  background-color: #fff;
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  letter-spacing: 0.04em;
}

.p-article_title {
  font-size: 20px;
  font-weight: 700;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  color: #796a55;
}

.p-article_date {
  display: flex;
  align-items: center;
  gap: 3px;
  font-size: 12px;
  font-family: var(--font-family-noto);

  @media (768px <= width) {
    font-size: 13px;
  }

  img {
    width: 13px;
  }

  span {
    flex: 1;
  }
}

.p-article_text {
  font-family: var(--font-family-noto);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.p-article_pagination {
}

/* ===============================================
#サイドバー
=============================================== */
.p-sidebar {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 32px;

  @media (1024px <= width) {
    gap: 60px;
    width: 273px;
  }
}

.p-sidebar_heading {
  color: #796a55;
  padding-block: 15px;
  border-bottom: 1px solid currentColor;
  font-weight: 700;
}

.p-sidebar_list {
  display: flex;
  flex-direction: column;
}

.p-sidebar_link {
  padding: 13px 0;
  border-bottom: 1px solid #e0e0e0;
  color: var(--color-pink4);
  display: block;
}

.p-sidebar_article {
  display: flex;
  flex-direction: column;
  gap: 13px;

  @media (width <= 1023px) {
    padding-inline: 20px;
  }
}

.p-sidebar_article-list {
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.p-sidebar_article-link {
  display: flex;
  align-items: center;
  gap: 12px;
}

.p-sidebar_thumbnail {
  width: 116px;
}

.p-sidebar_article-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.p-sidebar_article-title {
  font-weight: 700;
  font-size: 14px;
  line-height: 1.6;
  letter-spacing: 0.04em;
  color: #796a55;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.p-sidebar_article-category {
  font-family: var(--font-family-noto);
  font-weight: 400;
  font-size: 10px;
  line-height: 1.6;
  color: var(--color-pink4);
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

/* ===============================================
#ページネーション
=============================================== */
.c-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;

  .prev {
    img {
      scale: -1;
    }
  }

  .prev {
    margin-right: 24px;
  }

  .next {
    margin-left: 24px;
  }

  a {
    width: 40px;
    height: 40px;
    text-decoration: none;
  }

  .pager {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid currentColor;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 400;
    color: #796a55;

    &.current {
      background-color: #796a55;
      color: #fff;
    }
  }
}

/* ===============================================
#シングルページ
=============================================== */
.p-single_content {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding-inline: 20px;

  @media (1024px <= width) {
    padding-inline: 0px;
    gap: 37px;
    width: calc(100% - 273px - 60px);
  }
}

.p-single_head {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.p-single_head-top {
  display: flex;
  align-items: center;
}

.p-single_day-box {
  width: fit-content;
  margin-right: 15px;
  line-height: 1.2;
  font-weight: 700;
  text-align: center;
}

.p-single_year {
  font-size: 12px;
}

.p-single_day {
  font-size: 24px;
}

.p-single_title {
  padding-left: 15px;
  border-left: 1px solid #bdbdbd;
  color: #796a55;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.04em;
  flex: 1;

  @media (1024px <= width) {
    font-size: 24px;
  }
}

.p-single_head-bottom {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 5px;
}

.p-single_head-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

.p-single_head-tag {
  background-color: var(--color-pink4);
  color: #fff;
  font-size: 10px;
  font-weight: 400;
  padding: 2px 10px;
  border-radius: 50vw;
}

.p-single_body {
  display: flex;
  flex-direction: column;
  gap: 24px;

  @media (1024px <= width) {
    gap: 37px;
  }

  p {
    font-size: 14px;
    font-family: var(--font-family-noto);
    letter-spacing: 0.04em;
    line-height: 1.8;

    @media (768px <= width) {
      font-size: 16px;
    }

    strong {
      font-weight: 900;
      background-image: linear-gradient(
        180deg,
        rgba(255, 231, 141, 0) 0%,
        rgba(255, 231, 141, 0) 70%,
        #ffe78d 70%,
        #ffe78d 100%
      );
    }

    a {
      color: #e18700;
    }
  }

  h1 {
    font-size: 24px;
    font-weight: 700;
    line-height: 1.6;
    letter-spacing: 0.04em;
    padding: 8px 16px;
    border-left: 5px solid var(--color-pink4);
    background-color: #fff5f6;
    color: var(--color-pink4);

    @media (768px <= width) {
      font-size: 31px;
      padding: 11px 24px;
    }
  }

  h2 {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.6;
    letter-spacing: 0.04em;
    padding: 8px 16px;
    border-left: 5px solid var(--color-pink4);
    background-color: #fff5f6;
    color: var(--color-pink4);

    @media (768px <= width) {
      font-size: 24px;
      padding: 11px 24px;
    }
  }

  h3 {
    font-size: 18px;
    color: #796a55;
    border-bottom: 1px solid currentColor;
    border-left: 5px solid currentColor;
    padding: 4px 16px;
    line-height: 1.6;
    letter-spacing: 0.04em;
    font-weight: 700;

    @media (768px <= width) {
      font-size: 20px;
      padding: 7px 23px;
    }
  }

  blockquote {
    padding: 16px;
    border-radius: 8px;
    border: 1px solid #796a55;
    color: #796a55;

    @media (768px <= width) {
      padding: 23px;
    }

    &:has(ul, ol) {
      background-color: #fff;
      border: none;
      border-radius: 0px;
    }
  }

  ul {
    display: flex;
    flex-direction: column;
    gap: 8px;

    li {
      padding-left: 1em;

      &::before {
        content: "";
        position: absolute;
        top: 0.4lh;
        left: 0;
        width: 5px;
        height: 5px;
        background-color: #333;
        border-radius: 50%;

        @media (768px <= width) {
          width: 7px;
          height: 7px;
        }
      }
    }
  }
  li {
    color: #333;
    position: relative;
    line-height: 1.6;
    letter-spacing: 0.04em;
    font-size: 14px;

    @media (768px <= width) {
      font-size: 16px;
    }
  }

  ol {
    padding-left: 1.5em;
    display: flex;
    flex-direction: column;
    gap: 8px;

    li {
      list-style: decimal;
    }
  }
}

.p-single_pagination {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;

  @media (1024px <= width) {
    padding-inline: 30px;
  }

  .prev-post,
  .next-post {
    width: calc(50% - 15px);
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-family-noto);
    font-weight: 400;
    font-size: 14px;
    line-height: 1.6;
    letter-spacing: 0.04em;

    span {
      flex: 1;
    }
  }

  .prev-post {
    &:before {
      content: "";
      width: 32px;
      height: 32px;
      background: transparent url(./../image/icon-single-arrow.svg) no-repeat center center / contain;
      scale: -1;

      @media (768px <= width) {
        width: 40px;
        height: 40px;
      }
    }
  }

  .next-post {
    margin-left: auto;
    text-align: right;

    &:after {
      content: "";
      width: 32px;
      height: 32px;
      background: transparent url(./../image/icon-single-arrow.svg) no-repeat center center / contain;

      @media (768px <= width) {
        width: 40px;
        height: 40px;
      }
    }
  }
}

.p-single_connection {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.p-single_connection-title {
  padding-left: 12px;
  border-left: 3px solid var(--color-pink4);
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.04em;
  color: #796a55;

  @media (1024px <= width) {
    font-size: 20px;
  }
}

.p-single_connection-lists {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px 15px;

  @media (1024px <= width) {
    gap: 23px 20px;
    grid-template-columns: repeat(4, 1fr);
  }
}

.p-single_connection-link {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.p-single_connection-img {
  img {
    aspect-ratio: 166/107;
  }
}

.p-single_connection-content {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.p-single_connection-content-title {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.6;
  letter-spacing: 0.04em;
  font-size: 14px;
  color: #796a55;
  font-weight: 700;
}

/* ===============================================
#トップページ お知らせ
=============================================== */
.top-news_sec {
  background-color: #fcfaf6;
}

.top-news_container {
  display: flex;
  align-items: flex-start;
  gap: 7px;
  width: 100%;
  position: relative;
  margin-inline: auto;

  @media (width <= 767px) {
    flex-direction: column;
    padding-inline: 26px;
  }

  @media (768px <= width) {
    gap: 13px;
    padding-bottom: 22px;
    padding-right: 48px;
  }
}

.top-news_object {
  width: 76px;
  position: absolute;
  bottom: 0;
  right: 0;

  @media (width <= 767px) {
    width: 42px;
    bottom: -23px;
    right: 18px;
  }
}

.top-news_heading {
  display: flex;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.04em;

  @media (width <= 767px) {
    margin-left: 3px;
  }

  @media (768px <= width) {
    flex-direction: column;
  }

  span {
    background-color: var(--color-pink4);
    color: #fff;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 21px;
    font-weight: 700;

    @media (width <= 767px) {
      margin-inline: -3px;
    }

    @media (768px <= width) {
      font-size: 31px;
      margin-block: -4px;
      width: 48px;
      height: 48px;
    }
  }
}

.top-news_inner {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;

  @media (width <= 767px) {
    width: 100%;
  }
}

.top-news_en-title {
  color: var(--color-pink4);
  font-size: 12px;
  font-weight: 700;
  margin-left: 4px;

  @media (768px <= width) {
    font-size: 18px;
    margin-left: 14px;
  }
}

.top-news_lists {
  @media (width <= 767px) {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 12px;
  }
}

.top-news_list {
  border-bottom: 1px solid #796a55;

  a {
    display: flex;
    align-items: flex-start;
    gap: 26px;
    padding: 4px 14px;

    @media (width <= 767px) {
      flex-direction: column;
      gap: 0px;
      padding: 9px 5px;
    }
  }
}

.top-news_date {
  width: 100px;
  color: #796a55;
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;

  @media (768px <= width) {
    font-size: 18px;
  }
}

.top-news_title {
  color: var(--color-pink4);
  font-size: 16px;
  font-weight: 700;

  @media (768px <= width) {
    font-size: 21px;
  }
}
