@charset "UTF-8";
/* ------------------------------------------------------------
Google Fonts（フォント名・ウェイトは _variables.scss の $font-family-* と合わせる）
------------------------------------------------------------ */
@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Noto+Sans+JP:wght@100..900&display=swap");
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html,
body,
h1,
h2,
h3,
h4,
h5,
h6,
ul,
ol,
dl,
li,
dt,
dd,
p,
div,
span,
img,
a,
table,
tr,
th,
td {
  margin: 0;
  padding: 0;
  border: 0;
  font-weight: normal;
  font-size: 100%;
  vertical-align: baseline;
}

header,
footer,
nav,
section,
article,
main,
aside,
figure,
figcaption {
  display: block;
}

ol,
ul {
  list-style: none;
}

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

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

button {
  margin: 0;
  padding: 0;
  border: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  background: transparent;
  cursor: pointer;
  font: inherit;
}

input,
select,
textarea {
  font: inherit;
  color: inherit;
  vertical-align: top;
}

/* ------------------------------------------------------------
変数
------------------------------------------------------------ */
/* ------------------------------------------------------------
remの計算式
clampの計算式
------------------------------------------------------------ */
/* ------------------------------------------------------------
メディアクエリー
------------------------------------------------------------ */
/* スクロールバー表示時もレイアウトがずれないようにスペースを確保 */
html {
  scrollbar-gutter: stable;
}

body {
  font-family: "Noto Sans JP", sans-serif;
}

/* モバイルメニュー開いた時のスクロール禁止 */
body.opened {
  overflow: hidden;
}

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

main {
  padding-top: clamp(5rem, -0.2127659574rem + 8.5106382979vw, 10rem);
}
@media screen and (max-width: 979px) {
  main {
    padding-top: 60px;
  }
}

/* ------------------------------------------------------------
ヘッダーの共通スタイル
------------------------------------------------------------ */
.header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  height: clamp(5rem, -0.2127659574rem + 8.5106382979vw, 10rem);
  width: 100%;
  background: #fffafb;
  z-index: 1000;
}
@media screen and (max-width: 979px) {
  .header {
    height: 83px; /* ヘッダーのタイトルとの差分 */
  }
}

.header__title {
  font-size: 0.8em;
  font-weight: 600;
  line-height: 1;
  color: #7f5447;
  height: 23px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  background: #e1e1e1;
  padding-left: clamp(1.5rem, -0.0638297872rem + 2.5531914894vw, 3rem);
}

.header__inner {
  margin-top: -23px; /* ヘッダーのタイトルとの差分 */
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-left: clamp(1.5rem, -0.0638297872rem + 2.5531914894vw, 3rem);
  height: clamp(5rem, -0.2127659574rem + 8.5106382979vw, 10rem);
  width: 100%;
}
@media screen and (max-width: 979px) {
  .header__inner {
    height: 60px;
    margin-top: -7px; /* ヘッダーのタイトルとの差分 */
    padding-left: 20px;
    padding-right: 18px;
  }
}

.header__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: clamp(3.25rem, -0.1382978723rem + 5.5319148936vw, 6.5rem);
  padding-top: 15px; /* ヘッダーのタイトルとの差分 */
}
@media screen and (max-width: 979px) {
  .header__content {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    width: 100%;
  }
}

.header__logo {
  width: 228px;
  height: 60px;
}
.header__logo img {
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 979px) {
  .header__logo {
    width: 120px;
    height: 32px;
    aspect-ratio: 15/4;
  }
}

@media screen and (max-width: 979px) {
  .header__nav {
    display: block;
    background: #fffafb;
    position: absolute;
    width: 100vw;
    height: 100vh;
    top: -100vh; /* 閉じているときは画面の上に完全に隠す（-100% だと親の高さ分しか動かない） */
    left: 0;
    opacity: 0;
    z-index: 1000;
    padding: 69px 50px;
    -webkit-transition: opacity 0.3s ease, top 0.3s ease;
    transition: opacity 0.3s ease, top 0.3s ease;
    pointer-events: none; /* 閉じているときはタッチ・クリックを通す */
  }
}

.header__nav.is-active {
  top: 83px; /* ヘッダーのタイトルとの差分 */
  opacity: 1;
  pointer-events: auto;
}

.header__nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: clamp(1.5625rem, -0.0664893617rem + 2.6595744681vw, 3.125rem);
}
@media screen and (max-width: 979px) {
  .header__nav ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 49px;
  }
}

.header__nav ul > li > a {
  color: #7f5447;
  font-family: "Inter", "Noto Sans JP", sans-serif;
  font-size: clamp(0.84375rem, -0.0359042553rem + 1.4361702128vw, 1.6875rem);
  font-weight: 400;
  line-height: 1;
}
@media screen and (max-width: 979px) {
  .header__nav ul > li > a {
    font-size: 27px;
  }
}

.header__nav ul > li:nth-of-type(2) {
  letter-spacing: -0.06em;
}
.header__nav ul > li:nth-of-type(5) {
  letter-spacing: -0.06em;
}

.header__icon {
  display: none;
}
@media screen and (max-width: 979px) {
  .header__icon {
    display: inline-block;
    position: relative;
    z-index: 1001; /* ナビの上に出す（クリックが届くように） */
    border-radius: 50%;
    width: 36px;
    height: 36px;
    background: rgba(227, 112, 152, 0.26);
  }
}

.header__icon--bar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 5px;
  -webkit-transition: gap 0.3s ease;
  transition: gap 0.3s ease;
}

.is-active .header__icon--bar {
  gap: 4px;
}

.header__icon--bar1,
.header__icon--bar2,
.header__icon--bar3 {
  width: 16px;
  height: 2px;
  background: #7f5447;
  -webkit-transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transition: transform 0.3s ease, opacity 0.3s ease, -webkit-transform 0.3s ease;
}

.is-active .header__icon--bar1 {
  -webkit-transform: translateY(6px) rotate(45deg);
          transform: translateY(6px) rotate(45deg);
}

.is-active .header__icon--bar2 {
  opacity: 0;
}

.is-active .header__icon--bar3 {
  -webkit-transform: translateY(-6px) rotate(-45deg);
          transform: translateY(-6px) rotate(-45deg);
}

.header__btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
}
@media screen and (max-width: 979px) {
  .header__btn {
    position: fixed;
    bottom: 5px;
    left: 0;
    right: 0;
    width: 100%;
    height: 133px;
    z-index: 9999;
    display: none;
    -webkit-animation-name: seesaw;
            animation-name: seesaw; /* アニメーション名の指定 */
    -webkit-animation-delay: 0.3s;
            animation-delay: 0.3s; /* アニメーションの開始時間指定 */
    -webkit-animation-duration: 1.2s;
            animation-duration: 1.2s; /* アニメーション動作時間の指定 */
    -webkit-animation-timing-function: ease-in-out;
            animation-timing-function: ease-in-out; /* アニメーションの動き指定（徐々に早く）*/
    -webkit-animation-iteration-count: infinite;
            animation-iteration-count: infinite;
  }
}

.header__btn.is-show {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@-webkit-keyframes seesaw {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  10% {
    -webkit-transform: rotate(3deg);
            transform: rotate(3deg); /* 左に傾く */
  }
  25% {
    -webkit-transform: rotate(-3deg);
            transform: rotate(-3deg); /* 右に傾く */
  }
  40% {
    -webkit-transform: rotate(3deg);
            transform: rotate(3deg); /* 左に傾く */
  }
  55% {
    -webkit-transform: rotate(-3deg);
            transform: rotate(-3deg); /* 右に傾く */
  }
  70% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg); /* 平行に戻る */
  }
  100% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg); /* 平行に戻る */
  }
}

@keyframes seesaw {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  10% {
    -webkit-transform: rotate(3deg);
            transform: rotate(3deg); /* 左に傾く */
  }
  25% {
    -webkit-transform: rotate(-3deg);
            transform: rotate(-3deg); /* 右に傾く */
  }
  40% {
    -webkit-transform: rotate(3deg);
            transform: rotate(3deg); /* 左に傾く */
  }
  55% {
    -webkit-transform: rotate(-3deg);
            transform: rotate(-3deg); /* 右に傾く */
  }
  70% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg); /* 平行に戻る */
  }
  100% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg); /* 平行に戻る */
  }
}
/* ------------------------------------------------------------
フッターの共通スタイル
------------------------------------------------------------ */
.footer {
  background-color: #FF7BAC;
  padding: clamp(4.6875rem, 3.6458333333rem + 4.1666666667vw, 6.25rem) 26px clamp(0.625rem, -2.5833333333rem + 12.8333333333vw, 5.4375rem);
  position: relative;
}
@media screen and (max-width: 979px) {
  .footer {
    padding: 75px 26px 10px;
    margin-bottom: 130px;
  }
}

.footer__inner {
  max-width: 1451px;
  margin-inline: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 58px;
}

.footer__totop {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  top: 6px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 10;
  color: #fff;
  font-size: 14px;
  font-weight: 400;
}

.footer__totop-link {
  display: inline-block;
  padding: 0.5em 0;
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}
.footer__totop-link:hover {
  text-decoration: underline;
}

.footer__totop-arrow {
  width: 14px;
  height: 14px;
  display: inline-block;
}
.footer__totop-arrow img {
  rotate: -90deg;
}

.footer__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 979px) {
  .footer__nav {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.footer__nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: clamp(1.25rem, -43.75rem + 75vw, 3.125rem);
}

.footer__nav ul > li > a {
  color: #fff;
  font-family: "Inter", "Noto Sans JP", sans-serif;
  font-size: clamp(0.84375rem, -0.0359042553rem + 1.4361702128vw, 1.6875rem);
  font-weight: 400;
  line-height: 1;
}

.footer__nav ul > li:nth-of-type(2) {
  letter-spacing: -0.06em;
}
.footer__nav ul > li:nth-of-type(5) {
  letter-spacing: -0.06em;
}

.footer__logo {
  width: clamp(11.4375rem, 7.7697368421rem + 14.6710526316vw, 25.375rem);
  height: clamp(3.0625rem, 2.0921052632rem + 3.8815789474vw, 6.75rem);
}
.footer__logo img {
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 979px) {
  .footer__logo {
    width: 183px;
    height: 49px;
  }
}

.footer__copyright {
  color: #fff;
  text-align: center;
  font-size: clamp(0.875rem, 0.7598684211rem + 0.4605263158vw, 1.3125rem);
  font-weight: 400;
}
@media screen and (max-width: 979px) {
  .footer__copyright {
    font-size: 14px;
  }
}

/* ------------------------------------------------------------
フロントページのお知らせ・ブログ一覧のスタイル
------------------------------------------------------------ */
.c-fp-news {
  max-width: 1607px;
  margin-inline: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: clamp(2.9375rem, 2.1315789474rem + 3.2236842105vw, 6rem);
}

.c-fp-news__item {
  border-radius: clamp(3.125rem, 0.6578947368rem + 9.8684210526vw, 12.5rem) 0;
  background: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: clamp(1.25rem, 0.5098684211rem + 2.9605263158vw, 4.0625rem);
  padding: 63px 100px;
  max-width: 1607px;
}
@media screen and (max-width: 979px) {
  .c-fp-news__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 31px 15px 28px;
  }
}

.c-fp-news__item-img {
  width: clamp(16.375rem, 12.2960526316rem + 16.3157894737vw, 31.875rem);
  height: clamp(8.875rem, 6.6546052632rem + 8.8815789474vw, 17.3125rem);
  border-radius: clamp(1.25rem, 1.0032894737rem + 0.9868421053vw, 2.1875rem);
  overflow: clip;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.c-fp-news__item-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: clamp(0.625rem, 0.4605263158rem + 0.6578947368vw, 1.25rem);
}
@media screen and (max-width: 979px) {
  .c-fp-news__item-content {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.c-fp-news__item-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: clamp(0.3125rem, -0.2631578947rem + 2.3026315789vw, 2.5rem);
}
@media screen and (max-width: 979px) {
  .c-fp-news__item-header {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 5px;
  }
}

.c-fp-news__item-date {
  color: #7f5447;
  font-size: clamp(1.1875rem, 1.0230263158rem + 0.6578947368vw, 1.8125rem);
  font-weight: 500;
}

.c-fp-news__item-category {
  padding: 4px 19px 4px 24px;
  border-radius: 7px;
  background: #F4CED4;
  color: #7f5447;
  font-size: clamp(1rem, 0.8684210526rem + 0.5263157895vw, 1.5rem);
  font-weight: 500;
}
@media screen and (max-width: 979px) {
  .c-fp-news__item-category {
    padding: 2px 10px;
  }
}

.c-fp-news__item-title {
  color: #7f5447;
  font-size: clamp(1.25rem, 0.9539473684rem + 1.1842105263vw, 2.375rem);
  font-weight: 500;
}
@media screen and (max-width: 979px) {
  .c-fp-news__item-title {
    text-align: center;
  }
}

.c-fp-news__item-text {
  color: #7f5447;
  font-size: clamp(0.6875rem, 0.3914473684rem + 1.1842105263vw, 1.8125rem);
  font-weight: 350;
}
@media screen and (max-width: 979px) {
  .c-fp-news__item-text {
    line-height: 1.5;
    text-align: left;
  }
}

/* ------------------------------------------------------------
フロントページの施術の流れのスタイル
------------------------------------------------------------ */
.c-fp-flow {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 42px;
  position: relative;
}
@media screen and (min-width: 980px) {
  .c-fp-flow::after {
    content: "";
    position: absolute;
    top: 0;
    left: 97px;
    width: 1px;
    height: 100%;
    -webkit-transform: rotate(-0.34deg);
            transform: rotate(-0.34deg);
    background: #fff;
    z-index: 1;
  }
}
@media screen and (max-width: 979px) {
  .c-fp-flow {
    gap: 87px;
  }
}

.c-fp-flow__item {
  border-radius: clamp(3.34375rem, 0.6308962264rem + 5.0471698113vw, 6.6875rem);
  background: #fff;
  padding: 17px 45px 19px 47px;
  width: clamp(50.21875rem, 9.4752358491rem + 75.8018867925vw, 100.4375rem);
  max-width: 1607px;
  margin-inline: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: clamp(1.25rem, 0.2358490566rem + 1.8867924528vw, 2.5rem);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 979px) {
  .c-fp-flow__item {
    width: 100%;
    border-radius: 11px;
    padding: 42px 10px 17px 12px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 10px;
  }
}

.c-fp-flow__step {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 979px) {
  .c-fp-flow__step {
    position: absolute;
    top: -47px;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}

.c-fp-flow__step-text {
  color: #7f5447;
  text-align: center;
  font-family: "Inter", "Noto Sans JP", sans-serif;
  font-size: clamp(1rem, 0.7861842105rem + 0.8552631579vw, 1.8125rem);
  font-weight: 600;
  line-height: 1.2;
}
@media screen and (max-width: 979px) {
  .c-fp-flow__step-text {
    font-size: 16px;
  }
}

.c-fp-flow__step-number {
  color: #FFF;
  text-align: center;
  font-family: "Inter", "Noto Sans JP", sans-serif;
  font-size: clamp(1.3125rem, 1.0164473684rem + 1.1842105263vw, 2.4375rem);
  font-style: normal;
  font-weight: 600;
  line-height: 1;
  height: clamp(3.125rem, 2.4177631579rem + 2.8289473684vw, 5.8125rem);
  width: clamp(3.125rem, 2.4177631579rem + 2.8289473684vw, 5.8125rem);
  background: linear-gradient(141deg, #FFCD9F 17.64%, #FFBBAC 85.74%);
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.c-fp-flow__img {
  width: clamp(7.25rem, 5.9342105263rem + 5.2631578947vw, 12.25rem);
  height: clamp(7.25rem, 6.2138157895rem + 4.1447368421vw, 11.1875rem);
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.c-fp-flow__content {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
@media screen and (max-width: 979px) {
  .c-fp-flow__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 10px;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

.c-fp-flow__content-title {
  color: #7f5447;
  font-family: "Inter", "Noto Sans JP", sans-serif;
  font-size: clamp(1.5rem, 1.0559210526rem + 1.7763157895vw, 3.1875rem);
  font-weight: 600;
  line-height: 1.2;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.c-fp-flow__content-description {
  width: clamp(23.25rem, 4.3867924528rem + 35.0943396226vw, 46.5rem);
  -ms-flex-negative: 1;
      flex-shrink: 1;
  color: #7f5447;
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(1.125rem, 0.7796052632rem + 1.3815789474vw, 2.4375rem);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 979px) {
  .c-fp-flow__content-description {
    width: 100%;
    font-size: 18px;
    width: 100%;
  }
}

/* ------------------------------------------------------------
フロントページの医師から推薦の声のスタイル
------------------------------------------------------------ */
.c-fp-doctor {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  max-width: 1198px;
  width: 100%;
  margin-inline: auto;
  gap: clamp(2.9375rem, 2.3618421053rem + 2.3026315789vw, 5.125rem);
}
@media screen and (max-width: 979px) {
  .c-fp-doctor {
    max-width: 500px;
    gap: 47px;
  }
}

.c-fp-doctor__item {
  border-radius: 0 clamp(5rem, 4.2105263158rem + 3.1578947368vw, 8rem);
  border: 1px solid #D27082;
  background: #FFE4E5;
  overflow: hidden;
  width: 100%;
}
.c-fp-doctor__item:nth-of-type(2) {
  border: 1px solid #FF8266;
  background: #FFE9E4;
}
.c-fp-doctor__item:nth-of-type(3) {
  border: 1px solid #FF9A3D;
  background: #FFF1E4;
}

.c-fp-doctor__item-inner {
  display: grid;
  grid-template-columns: 49% 1fr;
}
@media screen and (max-width: 979px) {
  .c-fp-doctor__item-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}

.c-fp-doctor__profile {
  padding: clamp(1.03125rem, 0.1945754717rem + 1.5566037736vw, 2.0625rem) clamp(0.625rem, 0.1179245283rem + 0.9433962264vw, 1.25rem) clamp(0.78125rem, 0.1474056604rem + 1.179245283vw, 1.5625rem) clamp(1.125rem, 0.2122641509rem + 1.6981132075vw, 2.25rem);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: clamp(0.625rem, 0.1179245283rem + 0.9433962264vw, 1.25rem);
}
@media screen and (max-width: 979px) {
  .c-fp-doctor__profile {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 34px 36px 31px 14px;
    gap: 25px;
  }
}

.c-fp-doctor__profile-name {
  color: #7f5447;
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(1.5rem, 0.7900943396rem + 1.320754717vw, 2.375rem);
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 0.02em;
}

.c-fp-doctor__profile-position {
  color: #7f5447;
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(0.9375rem, 0.7894736842rem + 0.5921052632vw, 1.5rem);
  font-style: normal;
  font-weight: 400;
  line-height: 1.7;
}
@media screen and (max-width: 979px) {
  .c-fp-doctor__profile-position {
    line-height: 1.8;
    letter-spacing: 0.1em;
  }
}
.c-fp-doctor__profile-position li {
  padding-left: clamp(0.9375rem, 0.7894736842rem + 0.5921052632vw, 1.5rem);
  position: relative;
}
.c-fp-doctor__profile-position li::before {
  content: "・";
  position: absolute;
  left: 0;
}

.c-fp-doctor__profile-note {
  color: #7f5447;
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(1rem, 0.9671052632rem + 0.1315789474vw, 1.125rem);
  font-weight: 400;
  line-height: 1.7;
  margin-top: clamp(0.1875rem, 0.0353773585rem + 0.2830188679vw, 0.375rem);
  padding-left: clamp(1rem, 0.9671052632rem + 0.1315789474vw, 1.125rem);
  position: relative;
}
.c-fp-doctor__profile-note::before {
  content: "※";
  position: absolute;
  left: 0;
  top: 0;
}
@media screen and (max-width: 979px) {
  .c-fp-doctor__profile-note {
    padding-top: 0;
    margin-top: -15px;
  }
}

.c-fp-doctor__img {
  min-height: clamp(15.625rem, 14.3092105263rem + 5.2631578947vw, 20.625rem);
  width: 100%;
}
.c-fp-doctor__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
  display: block;
}
@media screen and (max-width: 979px) {
  .c-fp-doctor__img {
    width: 100%;
    min-height: 230px;
  }
}

.c-fp-doctor__text {
  background: #fff;
  min-height: clamp(4.875rem, 0.9198113208rem + 7.358490566vw, 9.75rem);
  padding: clamp(1.0625rem, 0.2004716981rem + 1.6037735849vw, 2.125rem) clamp(1.0625rem, 0.2004716981rem + 1.6037735849vw, 2.125rem) clamp(0.84375rem, 0.1591981132rem + 1.2735849057vw, 1.6875rem) clamp(1.90625rem, 0.3596698113rem + 2.8773584906vw, 3.8125rem);
  color: #7f5447;
  font-family: "Inter", "Noto Sans JP", sans-serif;
  font-size: clamp(1.1875rem, 1.0230263158rem + 0.6578947368vw, 1.8125rem);
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 979px) {
  .c-fp-doctor__text {
    height: 162px;
    padding: 10px 20px 26px 39px;
    text-align: left;
  }
}

/* ------------------------------------------------------------
フロントページのお客様の声のスタイル
------------------------------------------------------------ */
.c-fp-voice {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: clamp(2rem, 1.3256578947rem + 2.6973684211vw, 4.5625rem);
  max-width: 1607px;
  width: 100%;
  border-radius: 0 clamp(3.125rem, 1.7434210526rem + 5.5263157895vw, 8.375rem);
  overflow: clip;
  background: #fff;
  -webkit-box-shadow: 3px 3px 21px 0 rgba(136, 48, 64, 0.16);
          box-shadow: 3px 3px 21px 0 rgba(136, 48, 64, 0.16);
  margin-inline: auto;
}
@media screen and (max-width: 979px) {
  .c-fp-voice {
    max-width: 400px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    background: #FFF;
    -webkit-box-shadow: 2px 2px 17px 0 rgba(136, 48, 64, 0.16);
            box-shadow: 2px 2px 17px 0 rgba(136, 48, 64, 0.16);
  }
}

.c-fp-voice__img {
  width: clamp(24.6875rem, -1.0505319149rem + 42.0212765957vw, 49.375rem);
  height: auto;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (max-width: 979px) {
  .c-fp-voice__img {
    width: 100%;
    height: 247px;
  }
}
.c-fp-voice__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
  display: block;
}

.c-fp-voice__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: clamp(1.125rem, 0.9276315789rem + 0.7894736842vw, 1.875rem);
  padding: clamp(2.0625rem, -0.0877659574rem + 3.5106382979vw, 4.125rem) clamp(2rem, -0.085106383rem + 3.4042553191vw, 4rem) clamp(1.46875rem, -0.0625rem + 2.5vw, 2.9375rem) 0;
}
@media screen and (max-width: 979px) {
  .c-fp-voice__content {
    padding: 0 9px 60px 20px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 18px;
  }
}

.c-fp-voice__content-name {
  color: #7f5447;
  font-family: "Inter", "Noto Sans JP", sans-serif;
  font-size: clamp(1.5rem, -0.0638297872rem + 2.5531914894vw, 3rem);
  font-weight: 600;
  line-height: 1.2;
}
@media screen and (max-width: 979px) {
  .c-fp-voice__content-name {
    font-size: 24px;
  }
}

.c-fp-voice__content-position {
  border-radius: 7px;
  background: #E88872;
  color: #FFF;
  display: inline-block;
  padding: 7px 42px;
  text-align: center;
  font-family: "Inter", "Noto Sans JP", sans-serif;
  font-size: clamp(1rem, -0.0425531915rem + 1.7021276596vw, 2rem);
  font-weight: 600;
  line-height: 1;
  letter-spacing: 1.6px;
}
@media screen and (max-width: 979px) {
  .c-fp-voice__content-position {
    font-size: 16px;
    border-radius: 3.5px;
    padding: 6px 16px;
  }
}

.c-fp-voice__content-text {
  min-height: 200px;
  padding-right: 8px;
  overflow-y: scroll;
  position: relative;
  line-height: 1.8;
  color: #7f5447;
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(1.125rem, 0.4082446809rem + 1.170212766vw, 1.8125rem);
  font-weight: 400;
  line-height: 1.7;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 979px) {
  .c-fp-voice__content-text {
    padding-right: 0;
    margin-right: 10px;
    min-height: 155px;
    font-size: 18px;
    padding-top: 12px;
  }
}

.c-fp-voice__more {
  display: inline-block;
  margin-inline: auto 9px;
  padding: 8px 35px;
  border: 1px solid #7f5447;
  border-radius: 10px;
  color: #7f5447;
  text-align: right;
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(1.25rem, 1.1842105263rem + 0.2631578947vw, 1.5rem);
  font-weight: 700;
  line-height: 1.7;
  letter-spacing: 1.2px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.c-fp-voice__more:hover {
  background: #7f5447;
  color: #fff;
}
@media screen and (max-width: 979px) {
  .c-fp-voice__more {
    padding: 4px 24px;
    margin-top: 38px;
    margin-inline: auto;
    border-radius: 5px;
  }
}

/* 背景のオーバーレイ */
.modal__content {
  max-width: clamp(50rem, -2.1276595745rem + 85.1063829787vw, 100rem);
  margin: auto 40px;
  margin-inline: auto;
  padding: clamp(1.25rem, -0.0657894737rem + 5.2631578947vw, 6.25rem);
  max-height: 90vh;
  border: 2px solid #7f5447;
}
@media screen and (max-width: 979px) {
  .modal__content {
    margin: auto 20px;
  }
}

/* アニメーションの設定 */
.modal__content[open] {
  -webkit-animation: unfold 0.6s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
          animation: unfold 0.6s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

@-webkit-keyframes unfold {
  0% {
    -webkit-transform: scaleY(0.005) scaleX(0);
            transform: scaleY(0.005) scaleX(0);
  }
  50% {
    -webkit-transform: scaleY(1) scaleX(0.005);
            transform: scaleY(1) scaleX(0.005);
  }
  100% {
    -webkit-transform: scaleY(1) scaleX(1);
            transform: scaleY(1) scaleX(1);
  }
}

@keyframes unfold {
  0% {
    -webkit-transform: scaleY(0.005) scaleX(0);
            transform: scaleY(0.005) scaleX(0);
  }
  50% {
    -webkit-transform: scaleY(1) scaleX(0.005);
            transform: scaleY(1) scaleX(0.005);
  }
  100% {
    -webkit-transform: scaleY(1) scaleX(1);
            transform: scaleY(1) scaleX(1);
  }
}
.modal__close-btn {
  position: absolute;
  top: 0;
  right: 0;
  color: #E88872;
  border: clamp(0.0625rem, 0.0460526316rem + 0.0657894737vw, 0.125rem) solid #E88872;
  width: clamp(1.96875rem, 1.4506578947rem + 2.0723684211vw, 3.9375rem);
  height: clamp(1.96875rem, 1.4506578947rem + 2.0723684211vw, 3.9375rem);
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: clamp(1.25rem, 0.9210526316rem + 1.3157894737vw, 2.5rem);
  line-height: 1;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  cursor: pointer;
  z-index: 10;
}

.modal__inner {
  position: relative;
  z-index: 1;
}

.modal__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: clamp(0.84375rem, 0.6217105263rem + 0.8881578947vw, 1.6875rem);
  padding-bottom: clamp(1.25rem, 0.2631578947rem + 3.9473684211vw, 5rem);
  border-bottom: 1px solid #7f5447;
  margin-bottom: clamp(1.25rem, 0.2631578947rem + 3.9473684211vw, 5rem);
}

.modal__body {
  color: #7f5447;
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(0.9375rem, 0.7072368421rem + 0.9210526316vw, 1.8125rem);
  font-weight: 400;
  line-height: 1.7;
  letter-spacing: 0.02em;
  max-height: 50vh;
  overflow-y: scroll;
  padding-right: 8px;
  /* スクロールバー全体の横幅・高さ */
}
.modal__body::-webkit-scrollbar {
  width: 8px;
  /* 縦スクロールバーの幅 */
  display: block;
  /* 常に表示領域を確保 */
}
.modal__body {
  /* スクロールバーの背景（レール） */
}
.modal__body::-webkit-scrollbar-track {
  background: #fff;
  border: 1px solid #7f5447;
}
.modal__body {
  /* 動くパーツ（つまみ） */
}
.modal__body::-webkit-scrollbar-thumb {
  background: #7f5447;
}
.modal__body {
  /* ホバー時に色を変える（アクセシビリティ向上） */
}
.modal__body::-webkit-scrollbar-thumb:hover {
  background: #7f5447;
}

/* ------------------------------------------------------------
フロントページの理由のスタイル
------------------------------------------------------------ */
.c-fp-reason {
  position: relative;
  margin-bottom: 182px;
}
@media screen and (max-width: 979px) {
  .c-fp-reason {
    margin-bottom: 205px;
  }
}

.c-fp-reason__inner {
  position: relative;
  border-radius: 0 clamp(0.625rem, 0.3453947368rem + 1.1184210526vw, 1.6875rem) clamp(0.625rem, 0.3453947368rem + 1.1184210526vw, 1.6875rem) 0;
  border: 2px solid #EBAC72;
  border-left: none;
  background: #FFF;
  width: clamp(23.625rem, 0.7960526316rem + 91.3157894737vw, 110.375rem);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: clamp(1.5625rem, 1.3157894737rem + 0.9868421053vw, 2.5rem);
  padding: 60px 0 36px;
}
@media screen and (max-width: 979px) {
  .c-fp-reason__inner {
    padding: 19px 0 78px;
  }
}

.c-fp-reason--2 {
  margin-bottom: 163px;
}
@media screen and (max-width: 979px) {
  .c-fp-reason--2 {
    margin-bottom: 208px;
  }
}
.c-fp-reason--2 .c-fp-reason__inner {
  border-radius: clamp(0.625rem, 0.3453947368rem + 1.1184210526vw, 1.6875rem) 0 0 clamp(0.625rem, 0.3453947368rem + 1.1184210526vw, 1.6875rem);
  border-right: none;
  border-left: 2px solid #E88872;
  padding: clamp(1.75rem, -0.0744680851rem + 2.9787234043vw, 3.5rem) 0 clamp(1.40625rem, -0.1901595745rem + 2.6063829787vw, 2.9375rem) clamp(25rem, -1.0638297872rem + 42.5531914894vw, 50rem);
  margin-left: auto;
}
@media screen and (max-width: 979px) {
  .c-fp-reason--2 .c-fp-reason__inner {
    padding: 20px 0 68px;
    gap: 23px;
  }
}

.c-fp-reason--3 {
  margin-bottom: 171px;
}
@media screen and (max-width: 979px) {
  .c-fp-reason--3 {
    margin-bottom: 212px;
  }
}
.c-fp-reason--3 .c-fp-reason__inner {
  border: 2px solid #EBAC72;
  border-left: none;
  padding: 53px 0 124px;
}
@media screen and (max-width: 979px) {
  .c-fp-reason--3 .c-fp-reason__inner {
    padding: 22px 0 66px;
    gap: 30px;
  }
}

.c-fp-reason--4 {
  margin-bottom: 130px;
}
@media screen and (max-width: 979px) {
  .c-fp-reason--4 {
    margin-bottom: 200px;
  }
}
.c-fp-reason--4 .c-fp-reason__inner {
  border-radius: clamp(0.625rem, 0.3453947368rem + 1.1184210526vw, 1.6875rem) 0 0 clamp(0.625rem, 0.3453947368rem + 1.1184210526vw, 1.6875rem);
  border-right: none;
  border-left: 2px solid #E88872;
  padding: clamp(1.5625rem, -0.0664893617rem + 2.6595744681vw, 3.125rem) 0 clamp(1.03125rem, -0.1742021277rem + 1.9680851064vw, 2.1875rem) clamp(25rem, -1.0638297872rem + 42.5531914894vw, 50rem);
  margin-left: auto;
}
@media screen and (max-width: 979px) {
  .c-fp-reason--4 .c-fp-reason__inner {
    padding: 23px 0 74px;
  }
}

.c-fp-reason__header {
  background: #FFF1E4;
  height: clamp(5.375rem, 3.5657894737rem + 7.2368421053vw, 12.25rem);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0;
  padding-left: clamp(1.25rem, 0.3947368421rem + 3.4210526316vw, 4.5rem);
}

.c-fp-reason--2 .c-fp-reason__header-number,
.c-fp-reason--4 .c-fp-reason__header-number {
  color: #FFE9E4;
}

.c-fp-reason__header-number {
  color: #EBAC72;
  font-family: "Inter", "Noto Sans JP", sans-serif;
  font-size: clamp(4rem, 2.4046052632rem + 6.3815789474vw, 10.0625rem);
  font-weight: 600;
  line-height: 1;
  padding-right: clamp(1.125rem, 0.9111842105rem + 0.8552631579vw, 1.9375rem);
  letter-spacing: 0.05em;
}

.c-fp-reason--2 .c-fp-reason__header-number,
.c-fp-reason--4 .c-fp-reason__header-number {
  color: rgba(209, 39, 0, 0.5);
  padding-right: clamp(0.8125rem, 0.0394736842rem + 3.0921052632vw, 3.75rem);
}

.c-fp-reason--3 .c-fp-reason__header-number {
  padding-right: clamp(0.8125rem, 0.1875rem + 2.5vw, 3.1875rem);
}

.c-fp-reason__header-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 5px;
  color: #333;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.4;
}
@media screen and (max-width: 979px) {
  .c-fp-reason__header-title {
    gap: 0;
  }
}

.c-fp-reason__header-maintitle {
  font-size: clamp(1.375rem, 0.8486842105rem + 2.1052631579vw, 3.375rem);
  font-weight: 700;
  letter-spacing: 0.01em;
}
@media screen and (max-width: 979px) {
  .c-fp-reason__header-maintitle {
    letter-spacing: 0.01em;
  }
}

.c-fp-reason__header-subtitle {
  font-size: clamp(1.125rem, -0.5039893617rem + 2.6595744681vw, 2.6875rem);
  font-weight: 700;
  letter-spacing: 0.03em;
}
.c-fp-reason__content {
  color: #7f5447;
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(1.125rem, 0.9440789474rem + 0.7236842105vw, 1.8125rem);
  font-weight: 400;
  line-height: 1.74;
  letter-spacing: 0.01em;
  width: clamp(25.25rem, -3.289893617rem + 46.5957446809vw, 52.625rem);
  margin-left: clamp(2.875rem, 0.6595744681rem + 3.6170212766vw, 5rem);
}
@media screen and (max-width: 979px) {
  .c-fp-reason__content {
    width: clamp(21.375rem, 5.9439655172rem + 61.724137931vw, 43.75rem);
    margin-left: clamp(1.5625rem, 0.4849137931rem + 4.3103448276vw, 3.125rem);
  }
}

.c-fp-reason--2 .c-fp-reason__content {
  width: clamp(22.5625rem, -7.4760638298rem + 49.0425531915vw, 51.375rem);
}
@media screen and (max-width: 979px) {
  .c-fp-reason--2 .c-fp-reason__content {
    width: clamp(20.75rem, 5.3189655172rem + 61.724137931vw, 43.125rem);
  }
}

.c-fp-reason--3 .c-fp-reason__content {
  width: clamp(24.125rem, -1.0917553191rem + 41.170212766vw, 48.3125rem);
}
@media screen and (max-width: 979px) {
  .c-fp-reason--3 .c-fp-reason__content {
    width: clamp(21.375rem, 6.6336206897rem + 58.9655172414vw, 42.75rem);
    margin-left: clamp(1.5625rem, 0.4849137931rem + 4.3103448276vw, 3.125rem);
  }
}

.c-fp-reason--4 .c-fp-reason__content {
  width: clamp(25.25rem, -1.1396276596rem + 43.085106383vw, 50.5625rem);
}
@media screen and (max-width: 979px) {
  .c-fp-reason--4 .c-fp-reason__content {
    width: clamp(20.4375rem, 5.2219827586rem + 60.8620689655vw, 42.5rem);
  }
}

.c-fp-reason__img {
  width: clamp(29.4375rem, 0rem + 49.0625vw, 58.875rem);
  height: clamp(18.625rem, -0.0625rem + 31.1458333333vw, 37.3125rem);
  position: absolute;
  top: -62px;
  right: -5px;
  z-index: 5;
}
.c-fp-reason__img img {
  border-radius: clamp(0.625rem, 0.3453947368rem + 1.1184210526vw, 1.6875rem);
  border: 2px solid #EBAC72;
}
.c-fp-reason__img::before {
  content: "";
  position: absolute;
  top: 25px;
  left: -24px;
  width: 100%;
  height: 100%;
  border-radius: clamp(0.625rem, 0.3453947368rem + 1.1184210526vw, 1.6875rem);
  background: #FFCEA1;
  z-index: -1;
}
@media screen and (max-width: 979px) {
  .c-fp-reason__img {
    width: 337px;
    height: 214px;
    top: auto;
    bottom: -156px;
    left: auto;
    right: 0;
  }
  .c-fp-reason__img img {
    border: 1px solid #EBAC72;
  }
  .c-fp-reason__img::before {
    top: 9px;
    left: -8px;
    width: 100%;
    border-radius: 10px;
  }
}

.c-fp-reason--2 .c-fp-reason__img {
  width: clamp(29.4375rem, 0rem + 49.0625vw, 58.875rem);
  height: clamp(18.625rem, -0.0625rem + 31.1458333333vw, 37.3125rem);
  top: -62px;
  left: 0;
}
.c-fp-reason--2 .c-fp-reason__img img {
  border-radius: clamp(0.625rem, 0.3453947368rem + 1.1184210526vw, 1.6875rem);
  border: 1px solid #E88872;
}
.c-fp-reason--2 .c-fp-reason__img::before {
  top: 20px;
  left: 22px;
  background: #FFAF9C;
}
@media screen and (max-width: 979px) {
  .c-fp-reason--2 .c-fp-reason__img {
    width: 341px;
    height: 216px;
    top: auto;
    bottom: -161px;
  }
  .c-fp-reason--2 .c-fp-reason__img img {
    border: 1px solid #E88872;
  }
  .c-fp-reason--2 .c-fp-reason__img::before {
    top: 7px;
    left: 8px;
    width: 100%;
  }
}

.c-fp-reason--4 .c-fp-reason__img {
  width: clamp(29.4375rem, 0rem + 49.0625vw, 58.875rem);
  height: clamp(18rem, -0.0625rem + 30.1041666667vw, 36.0625rem);
  top: -60px;
  left: 0;
}
.c-fp-reason--4 .c-fp-reason__img img {
  border-radius: clamp(0.625rem, 0.3453947368rem + 1.1184210526vw, 1.6875rem);
  border: 1px solid #E88872;
}
.c-fp-reason--4 .c-fp-reason__img::before {
  top: 24px;
  left: 22px;
  background: #FFAF9C;
}
@media screen and (max-width: 979px) {
  .c-fp-reason--4 .c-fp-reason__img {
    width: 349px;
    height: 214px;
    top: auto;
    bottom: -167px;
  }
  .c-fp-reason--4 .c-fp-reason__img img {
    border: 1px solid #E88872;
  }
  .c-fp-reason--4 .c-fp-reason__img::before {
    top: 7px;
    left: 8px;
    width: 100%;
  }
}

.c-fp-reason__illust {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  margin-inline: auto;
}
@media screen and (max-width: 979px) {
  .c-fp-reason__illust {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding-top: 15px;
    padding-bottom: 30px;
  }
}

.c-fp-reason__illust-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 35px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 979px) {
  .c-fp-reason__illust-item {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 0;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

.c-fp-reason__illust-item--red {
  color: #DA6E7C;
}

.c-fp-reason__illust-item--blue {
  color: #6EBBDA;
  margin-left: clamp(-3.0625rem, 0.0651595745rem + -2.6063829787vw, -1.53125rem);
}
@media screen and (max-width: 979px) {
  .c-fp-reason__illust-item--blue {
    margin-left: 0;
    margin-top: -25px;
  }
}

.c-fp-reason__illust-item--green {
  color: #ADDA6E;
  margin-left: clamp(-3.0625rem, 0.0651595745rem + -2.6063829787vw, -1.53125rem);
}
@media screen and (max-width: 979px) {
  .c-fp-reason__illust-item--green {
    margin-left: 0;
    margin-top: -25px;
  }
}

.c-fp-reason__circle {
  width: clamp(15.125rem, -0.7087765957rem + 25.8510638298vw, 30.3125rem);
  height: clamp(15.125rem, -0.7087765957rem + 25.8510638298vw, 30.3125rem);
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-top: clamp(3.75rem, -0.1595744681rem + 6.3829787234vw, 7.5rem);
  border-width: clamp(0.25rem, -0.0106382979rem + 0.4255319149vw, 0.5rem);
  border-style: solid;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (max-width: 979px) {
  .c-fp-reason__circle {
    width: 160px;
    height: 160px;
    padding-top: 40px;
    border-width: 3px;
  }
}

.c-fp-reason__circle--red {
  border-color: #DA6E7C;
  background: rgba(255, 240, 242, 0.7);
}

.c-fp-reason__circle--blue {
  border-color: #6EBBDA;
  background: rgba(244, 252, 255, 0.7);
}

.c-fp-reason__circle--green {
  border-color: #ADDA6E;
  background: rgba(251, 255, 246, 0.7);
}

.c-fp-reason__circle-img {
  width: clamp(2.5rem, -0.1063829787rem + 4.2553191489vw, 5rem);
  height: clamp(2.5rem, -0.1063829787rem + 4.2553191489vw, 5rem);
  aspect-ratio: 1/1;
  margin-bottom: clamp(1rem, -0.0425531915rem + 1.7021276596vw, 2rem);
}
@media screen and (max-width: 979px) {
  .c-fp-reason__circle-img {
    width: 26px;
    height: 26px;
    aspect-ratio: 1/1;
    margin-bottom: 10px;
  }
}

.c-fp-reason__circle-text {
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(1.6875rem, -0.0718085106rem + 2.8723404255vw, 3.375rem);
  font-weight: 500;
  line-height: 1.2;
}
@media screen and (max-width: 979px) {
  .c-fp-reason__circle-text {
    font-size: 16px;
  }
}

.c-fp-reason__circle-subtext {
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(1.1875rem, -0.0505319149rem + 2.0212765957vw, 2.375rem);
  font-weight: 400;
  line-height: 1.7;
}
@media screen and (max-width: 979px) {
  .c-fp-reason__circle-subtext {
    font-size: 12px;
  }
}

.c-fp-reason__discription {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: clamp(1.09375rem, -0.0465425532rem + 1.8617021277vw, 2.1875rem);
}
@media screen and (max-width: 979px) {
  .c-fp-reason__discription {
    padding-top: 17px;
    gap: 15px;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

.c-fp-reason__discription-top {
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(1rem, -0.0425531915rem + 1.7021276596vw, 2rem);
  font-weight: 700;
  line-height: 1.7;
}
@media screen and (max-width: 979px) {
  .c-fp-reason__discription-top {
    font-size: 16px;
  }
}

@media screen and (max-width: 979px) {
  .c-fp-reason__discription-list {
    padding-left: 10px;
  }
}

.c-fp-reason__discription-item {
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(1rem, -0.0425531915rem + 1.7021276596vw, 2rem);
  font-weight: 400;
  line-height: 1.7;
  letter-spacing: 0.964px;
  position: relative;
  padding-left: clamp(1.03125rem, -0.0438829787rem + 1.7553191489vw, 2.0625rem);
}
.c-fp-reason__discription-item::before {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
  width: clamp(0.6875rem, -0.0292553191rem + 1.170212766vw, 1.375rem);
  height: clamp(0.625rem, -0.0265957447rem + 1.0638297872vw, 1.25rem);
  -webkit-mask-image: url(../img/common/icon-check.svg);
          mask-image: url(../img/common/icon-check.svg);
  -webkit-mask-size: contain;
          mask-size: contain;
}
@media screen and (max-width: 979px) {
  .c-fp-reason__discription-item {
    font-size: 14px;
    padding-left: 15px;
  }
  .c-fp-reason__discription-item::before {
    width: 10px;
    height: 9px;
  }
}

.c-fp-reason__discription-list--red li {
  color: #9B0015;
}
.c-fp-reason__discription-list--red li::before {
  background-color: #9B0015;
}

.c-fp-reason__discription-list--blue li {
  color: #006187;
}
.c-fp-reason__discription-list--blue li::before {
  background-color: #006187;
}

.c-fp-reason__discription-list--green li {
  color: #559200;
}
.c-fp-reason__discription-list--green li::before {
  background-color: #559200;
}

/* ------------------------------------------------------------
各種ボタンの共通スタイル
------------------------------------------------------------ */
.c-btn__arrow {
  border-radius: 48px;
  border: 3px solid #EE8296;
  background: #FFF;
  color: #EE8296;
  font-size: clamp(1.25rem, 1.0526315789rem + 0.7894736842vw, 2rem);
  font-weight: 500;
  line-height: 1;
  display: inline-block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-top: clamp(1.09375rem, 0.9046052632rem + 0.7565789474vw, 1.8125rem);
  padding-bottom: clamp(1.125rem, 0.9440789474rem + 0.7236842105vw, 1.8125rem);
  padding-left: clamp(1.875rem, 0.8388157895rem + 4.1447368421vw, 5.8125rem);
  padding-right: clamp(3.75rem, 2.7138157895rem + 4.1447368421vw, 7.6875rem);
  position: relative;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.c-btn__arrow::after {
  content: "";
  position: absolute;
  top: 50%;
  right: clamp(1.25rem, 1.0032894737rem + 0.9868421053vw, 2.1875rem);
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: clamp(1.25rem, 1.0855263158rem + 0.6578947368vw, 1.875rem);
  height: clamp(1.25rem, 1.0855263158rem + 0.6578947368vw, 1.875rem);
  border-radius: 50%;
  background: url("../img/common/icon-arrow.svg") no-repeat center center;
  background-size: contain;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media screen and (max-width: 979px) {
  .c-btn__arrow {
    font-size: 20px;
    border-width: 2px;
  }
  .c-btn__arrow::after {
    right: 20px;
    width: 20px;
    height: 20px;
  }
}
.c-btn__arrow:hover {
  border-color: #FFF;
  background: #EE8296;
  color: #FFF;
}
.c-btn__arrow:hover::after {
  background: url("../img/common/icon-arrow--hover.svg") no-repeat center center;
}

.c-btn__contact {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  height: 100%;
  width: clamp(5.0625rem, -0.2154255319rem + 8.6170212766vw, 10.125rem);
  padding-bottom: clamp(0.75rem, -0.2925531915rem + 1.7021276596vw, 1.75rem);
}
@media screen and (max-width: 979px) {
  .c-btn__contact {
    width: 33.33%;
    padding-bottom: 20px;
  }
}

.c-btn__line {
  background: #00DC1A;
}
.c-btn__line .c-btn__contact-icon {
  width: clamp(2.875rem, -0.1223404255rem + 4.8936170213vw, 5.75rem);
  height: clamp(3.40625rem, -0.1449468085rem + 5.7978723404vw, 6.8125rem);
}
@media screen and (max-width: 979px) {
  .c-btn__line .c-btn__contact-icon {
    width: 79px;
    height: 94px;
  }
}

.c-btn__tel {
  background: #00D1DC;
}
.c-btn__tel .c-btn__contact-icon {
  width: clamp(2.625rem, -0.1117021277rem + 4.4680851064vw, 5.25rem);
  height: clamp(3.65625rem, -0.1555851064rem + 6.2234042553vw, 7.3125rem);
}
@media screen and (max-width: 979px) {
  .c-btn__tel .c-btn__contact-icon {
    width: 76px;
    height: 103px;
  }
}

.c-btn__bookmark {
  background: #E3719B;
  letter-spacing: -1.8px;
}
.c-btn__bookmark .c-btn__contact-icon {
  width: clamp(4.1875rem, -0.1781914894rem + 7.1276595745vw, 8.375rem);
  height: clamp(3.59375rem, -0.1529255319rem + 6.1170212766vw, 7.1875rem);
}
@media screen and (max-width: 979px) {
  .c-btn__bookmark .c-btn__contact-icon {
    width: 113px;
    height: 94px;
  }
}

/* ------------------------------------------------------------
フロントページのタイトルの共通スタイル
------------------------------------------------------------ */
.c-title {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0 25px;
}

.c-title__main {
  color: #D27082;
  text-align: center;
  font-family: "Inter", "Noto Sans JP", sans-serif;
  font-size: 64px;
  font-size: clamp(2rem, -0.085106383rem + 3.4042553191vw, 4rem);
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}
@media screen and (max-width: 979px) {
  .c-title__main {
    font-size: 32px;
    top: 40px;
  }
}

.c-title__sub {
  color: rgba(204, 109, 127, 0.05);
  text-align: center;
  font-family: "Inter", "Noto Sans JP", sans-serif;
  font-size: clamp(8.375rem, -0.3563829787rem + 14.2553191489vw, 16.75rem);
  font-weight: 500;
  line-height: 1;
  position: absolute;
  top: clamp(-9.25rem, 0.1968085106rem + -7.8723404255vw, -4.625rem);
}
@media screen and (max-width: 979px) {
  .c-title__sub {
    font-size: 80px;
    top: -42px;
  }
}

.c-title__discription {
  color: #D27082;
  font-family: "Noto Sans JP", sans-serif;
  text-align: center;
  font-size: clamp(1rem, -0.0425531915rem + 1.7021276596vw, 2rem);
  font-style: normal;
  font-weight: 350;
  line-height: normal;
  padding-top: clamp(1.5625rem, -0.0664893617rem + 2.6595744681vw, 3.125rem);
}
@media screen and (max-width: 979px) {
  .c-title__discription {
    font-size: 20px;
    padding-top: 26px;
  }
}

.c-title__logo {
  display: inline-block;
  width: clamp(13.8125rem, -0.5877659574rem + 23.5106382979vw, 27.625rem);
  height: clamp(3.6875rem, -0.1569148936rem + 6.2765957447vw, 7.375rem);
  margin-bottom: clamp(0.375rem, -0.0159574468rem + 0.6382978723vw, 0.75rem);
  margin-right: clamp(0.25rem, -0.0106382979rem + 0.4255319149vw, 0.5rem);
}
@media screen and (max-width: 979px) {
  .c-title__logo {
    width: 205px;
    height: 55px;
    margin-bottom: 7px;
    margin-right: 0;
  }
}

.c-title--black {
  margin: 0;
}
.c-title--black .c-title__main {
  color: #000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  font-family: "Noto Sans JP", sans-serif;
}
.c-title--black .c-title__main-sub {
  color: #000;
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(2rem, -0.085106383rem + 3.4042553191vw, 4rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.03em;
  position: absolute;
  top: 100%;
}
@media screen and (max-width: 979px) {
  .c-title--black .c-title__main-sub {
    font-size: 32px;
    top: 120%;
  }
}
.c-title--black .c-title__main-number {
  font-size: clamp(3.34375rem, -0.142287234rem + 5.6914893617vw, 6.6875rem);
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.3;
}
@media screen and (max-width: 979px) {
  .c-title--black .c-title__main-number {
    font-size: 41px;
    line-height: 0.8;
    letter-spacing: -0.02em;
  }
}
.c-title--black .c-title__sub {
  color: rgba(210, 112, 130, 0.05);
  top: -127px;
}
@media screen and (max-width: 979px) {
  .c-title--black .c-title__sub {
    top: -42px;
  }
}
.c-title--black .c-title__discription {
  color: #000;
}

.c-title--white .c-title__main {
  color: #fff;
}
.c-title--white .c-title__sub {
  color: rgba(255, 255, 255, 0.2);
  top: clamp(-9.5rem, 0.2021276596rem + -8.085106383vw, -4.75rem);
  letter-spacing: 0.04em;
}
@media screen and (max-width: 979px) {
  .c-title--white .c-title__sub {
    top: -38px;
  }
}
.c-title--white .c-title__discription {
  color: #fff;
  padding-top: clamp(1.5625rem, -0.0664893617rem + 2.6595744681vw, 3.125rem);
}
@media screen and (max-width: 979px) {
  .c-title--white .c-title__discription {
    padding-top: 38px;
  }
}

@media screen and (max-width: 979px) {
  .c-title--white-2 .c-title__discription {
    margin-top: -13px;
  }
}

.c-title--small {
  margin: 0;
}
.c-title--small .c-title__main {
  top: clamp(1.875rem, -0.079787234rem + 3.1914893617vw, 3.75rem);
}
@media screen and (max-width: 979px) {
  .c-title--small .c-title__main {
    top: 40px;
  }
}
.c-title--small .c-title__sub {
  font-size: clamp(4.4375rem, -0.1888297872rem + 7.5531914894vw, 8.875rem);
  top: clamp(-4.25rem, 0.0904255319rem + -3.6170212766vw, -2.125rem);
}
@media screen and (max-width: 979px) {
  .c-title--small .c-title__sub {
    top: -24px;
    font-size: 42px;
  }
}
.c-title--small .c-title__discription {
  padding-top: clamp(1.28125rem, -0.0545212766rem + 2.1808510638vw, 2.5625rem);
}
@media screen and (max-width: 979px) {
  .c-title--small .c-title__discription {
    padding-top: 33px;
    line-height: 1.3;
  }
}

/* ------------------------------------------------------------
フロントページ(front-page.php)のスタイル
------------------------------------------------------------ */
.front-page {
  background-color: #fffafb;
}

.fp-mv {
  width: 100vw;
  display: grid;
  grid-template-columns: clamp(5rem, -0.2127659574rem + 8.5106382979vw, 10rem) 1fr;
}
@media screen and (max-width: 979px) {
  .fp-mv {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    gap: 0;
  }
}

.fp-mv__access {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  padding-bottom: clamp(4.78125rem, -0.2034574468rem + 8.1382978723vw, 9.5625rem);
}
@media screen and (max-width: 979px) {
  .fp-mv__access {
    border: 1px solid #7f5447;
    background: #fffafb;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 9px 0 0;
  }
}

.fp-mv__access-img {
  width: clamp(2.09375rem, -0.0890957447rem + 3.5638297872vw, 4.1875rem);
}
@media screen and (max-width: 979px) {
  .fp-mv__access-img {
    width: 236px;
  }
}

.fp-mv__img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.fp-doctor__inner {
  padding: clamp(5.25rem, -0.2234042553rem + 8.9361702128vw, 10.5rem) clamp(2.5rem, -0.1063829787rem + 4.2553191489vw, 5rem) clamp(3.15625rem, -0.1343085106rem + 5.3723404255vw, 6.3125rem);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: clamp(6.875rem, -0.2925531915rem + 11.7021276596vw, 13.75rem);
}
@media screen and (max-width: 979px) {
  .fp-doctor__inner {
    border-radius: 0 0 0 160px;
    padding: 69px 25px 27px 27px;
    gap: 62px;
  }
}

.fp-about {
  padding: clamp(7.8125rem, -0.3324468085rem + 13.2978723404vw, 15.625rem) clamp(2.25rem, -0.0957446809rem + 3.829787234vw, 4.5rem) clamp(1.9375rem, -0.0824468085rem + 3.2978723404vw, 3.875rem) 0;
}
@media screen and (max-width: 979px) {
  .fp-about {
    padding: 64px 0 18px;
  }
}

.fp-about__inner {
  position: relative;
  border-radius: 0 clamp(11rem, -0.4680851064rem + 18.7234042553vw, 22rem) clamp(11rem, -0.4680851064rem + 18.7234042553vw, 22rem) 0;
  background: #EEA8C2;
  height: clamp(22rem, -0.9361702128rem + 37.4468085106vw, 44rem);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-right: clamp(5.5625rem, -0.2367021277rem + 9.4680851064vw, 11.125rem);
}
@media screen and (max-width: 979px) {
  .fp-about__inner {
    border-radius: 0 0 80px 0;
    width: 100%;
    height: 617px;
    padding: clamp(15.3125rem, 8.6314655172rem + 26.724137931vw, 25rem) 27px 0 27px;
  }
}

.fp-about__img {
  width: clamp(30.5625rem, -1.3005319149rem + 52.0212765957vw, 61.125rem);
  height: clamp(23.1875rem, -0.9867021277rem + 39.4680851064vw, 46.375rem);
  position: absolute;
  bottom: clamp(3.5rem, -0.1489361702rem + 5.9574468085vw, 7rem);
  left: clamp(-2.375rem, 0.0505319149rem + -2.0212765957vw, -1.1875rem);
}
@media screen and (max-width: 979px) {
  .fp-about__img {
    width: clamp(27.0625rem, 16.588362069rem + 41.8965517241vw, 42.25rem);
    height: clamp(20rem, 12.2413793103rem + 31.0344827586vw, 31.25rem);
    bottom: auto;
    top: clamp(-5rem, -2.0431034483rem + -4.8275862069vw, -3.25rem);
    left: -55px;
  }
}

.fp-about__contents {
  width: clamp(20.3125rem, -0.8643617021rem + 34.5744680851vw, 40.625rem);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: clamp(1.5625rem, -0.0664893617rem + 2.6595744681vw, 3.125rem);
}
@media screen and (max-width: 979px) {
  .fp-about__contents {
    width: clamp(20.3125rem, -4.4719827586rem + 99.1379310345vw, 56.25rem);
    gap: 23px;
  }
}

.fp-about__title {
  color: #fff;
  text-shadow: 0 0 6px #E26E99;
  font-family: "Inter", "Noto Sans JP", sans-serif;
  font-size: clamp(2rem, -0.085106383rem + 3.4042553191vw, 4rem);
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.28em;
}
@media screen and (max-width: 979px) {
  .fp-about__title {
    text-shadow: 0 0 1.747px #E3719B;
    font-size: 40px;
    letter-spacing: 2.8px;
    text-align: center;
  }
}

.fp-about__text {
  color: #fff;
  font-family: "Inter", "Noto Sans JP", sans-serif;
  font-size: clamp(1rem, -0.0425531915rem + 1.7021276596vw, 2rem);
  font-weight: 500;
  line-height: 1.7;
}
@media screen and (max-width: 979px) {
  .fp-about__text {
    font-size: 18px;
  }
}

.fp-access-map {
  padding: 107px 24px 100px;
}
@media screen and (max-width: 979px) {
  .fp-access-map {
    padding: 58px 24px 79px;
  }
}

.fp-access-map__inner {
  width: clamp(37.5rem, -1.5957446809rem + 63.829787234vw, 75rem);
  margin-inline: auto;
  background: #fff;
  border-radius: 30px;
  overflow: clip;
}
@media screen and (max-width: 979px) {
  .fp-access-map__inner {
    max-width: 702px;
    width: 100%;
    border-radius: 24px;
  }
}

.fp-access-map__header {
  border-radius: 30px 30px 0 0;
  background: #EEA8C2;
  padding: 41px clamp(2.59375rem, -0.1103723404rem + 4.414893617vw, 5.1875rem) 38px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 18px;
  color: #FFF;
  font-family: "Noto Sans JP", sans-serif;
}
@media screen and (max-width: 979px) {
  .fp-access-map__header {
    border-radius: 24px 24px 0 0;
    padding: 14px 20px;
    gap: 0;
  }
}

.fp-access-map__header-title {
  font-family: "Noto Sans JP", sans-serif;
}

.fp-access-map__header-title-01 {
  font-size: clamp(1.5rem, -0.0638297872rem + 2.5531914894vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
}
@media screen and (max-width: 979px) {
  .fp-access-map__header-title-01 {
    font-size: clamp(1.125rem, 0.375rem + 3vw, 1.875rem);
    line-height: 1.5;
  }
}

.fp-access-map__header-title-02 {
  font-size: clamp(2rem, -0.085106383rem + 3.4042553191vw, 4rem);
  font-weight: 700;
  line-height: 1.2;
  padding-right: 40px;
}
@media screen and (max-width: 979px) {
  .fp-access-map__header-title-02 {
    font-size: clamp(1.125rem, 0.1875rem + 3.75vw, 2.0625rem);
    line-height: 1.5;
    padding-right: 18px;
  }
}

.fp-access-map__header-address {
  font-size: clamp(1.5rem, -0.0638297872rem + 2.5531914894vw, 3rem);
  font-weight: 500;
  line-height: 1.4;
}
@media screen and (max-width: 979px) {
  .fp-access-map__header-address {
    font-size: clamp(1.125rem, 0.1875rem + 3.75vw, 2.0625rem);
    line-height: 1.5;
  }
}

.fp-access-map__map {
  padding: 0;
}

.fp-pr {
  width: 100%;
}

.fp-pr__text {
  color: #7f5447;
  font-family: "Noto Sans JP", sans-serif;
  text-align: center;
  font-size: clamp(1.25rem, 0.9539473684rem + 1.1842105263vw, 2.375rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.03em;
  padding: 73px 44px 106px 0;
}
@media screen and (max-width: 979px) {
  .fp-pr__text {
    padding: 43px 10px 45px;
    line-height: 1.7;
    letter-spacing: -0.02em;
  }
}

.fp-access {
  padding: 100px 24px;
}
@media screen and (max-width: 979px) {
  .fp-access {
    padding: 86px 24px 60px;
  }
}

.fp-access__inner {
  max-width: 1600px;
  border-radius: 30px;
  border: 1px solid #7f5447;
  background: #fff;
  margin-inline: auto;
  display: grid;
  grid-template-columns: clamp(31.25rem, 14.6994680851rem + 27.0212765957vw, 47.125rem) 1fr;
  overflow: clip;
}
@media screen and (max-width: 979px) {
  .fp-access__inner {
    grid-template-columns: 1fr;
    max-width: 400px;
    width: 100%;
  }
}

.fp-access__header {
  width: 100%;
  height: -webkit-fill-available;
  height: -moz-available;
  height: stretch;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 53px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: -webkit-gradient(linear, left top, right top, color-stop(90%, rgba(255, 255, 255, 0)), to(#FFF)), url(../img/frontpage/bg-access-pc.webp) no-repeat center center/cover;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 90%, #FFF 100%), url(../img/frontpage/bg-access-pc.webp) no-repeat center center/cover;
}
@media screen and (max-width: 979px) {
  .fp-access__header {
    width: 100%;
    background: -webkit-gradient(linear, left top, left bottom, color-stop(90%, rgba(255, 255, 255, 0)), to(#FFF)), url(../img/frontpage/bg-access-sp.webp) no-repeat center center/cover;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 90%, #FFF 100%), url(../img/frontpage/bg-access-sp.webp) no-repeat center center/cover;
    gap: 40px;
    padding: 80px 0;
  }
}

.fp-access__header-title {
  color: #7f5447;
  font-family: "Noto Sans JP", sans-serif;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 13px;
}

.fp-access__header-title-01 {
  font-size: clamp(1.03125rem, -0.0438829787rem + 1.7553191489vw, 2.0625rem);
  font-weight: 700;
  line-height: 1;
}
@media screen and (max-width: 979px) {
  .fp-access__header-title-01 {
    font-size: 18px;
  }
}

.fp-access__header-title-02 {
  font-size: clamp(2.15625rem, -0.0917553191rem + 3.670212766vw, 4.3125rem);
  font-weight: 700;
  line-height: 1;
}
@media screen and (max-width: 979px) {
  .fp-access__header-title-02 {
    font-size: 40px;
  }
}

.fp-access__header-title-03 {
  font-size: clamp(1.125rem, -0.0478723404rem + 1.914893617vw, 2.25rem);
  font-weight: 700;
  line-height: 1;
  position: relative;
}
@media screen and (max-width: 979px) {
  .fp-access__header-title-03 {
    font-size: 20px;
  }
}
.fp-access__header-title-03::before, .fp-access__header-title-03::after {
  content: "";
  position: absolute;
  width: clamp(1.09375rem, -0.0465425532rem + 1.8617021277vw, 2.1875rem);
  height: 1.5px;
  background: #7f5447;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.fp-access__header-title-03::before {
  left: clamp(-3.125rem, 0.0664893617rem + -2.6595744681vw, -1.5625rem);
}
.fp-access__header-title-03::after {
  right: clamp(-3.125rem, 0.0664893617rem + -2.6595744681vw, -1.5625rem);
}
@media screen and (max-width: 979px) {
  .fp-access__header-title-03::before, .fp-access__header-title-03::after {
    width: 20px;
  }
  .fp-access__header-title-03::before {
    left: -25px;
  }
  .fp-access__header-title-03::after {
    right: -25px;
  }
}

.fp-access__header-accent {
  border-radius: 0 clamp(1.96875rem, -0.0837765957rem + 3.3510638298vw, 3.9375rem);
  background: #EEA8C2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(1.34375rem, 0.6595744681rem + 1.1170212766vw, 2rem);
  font-weight: 700;
  line-height: 1.7;
  letter-spacing: 0.02em;
  padding-top: clamp(1rem, -0.0425531915rem + 1.7021276596vw, 2rem);
  padding-bottom: clamp(0.9375rem, -0.039893617rem + 1.5957446809vw, 1.875rem);
  padding-left: clamp(2.5rem, -0.1063829787rem + 4.2553191489vw, 5rem);
  padding-right: clamp(2.5rem, -0.1063829787rem + 4.2553191489vw, 5rem);
  text-align: center;
}
@media screen and (max-width: 979px) {
  .fp-access__header-accent {
    height: auto;
    border-radius: clamp(1.5rem, 0rem + 6vw, 3rem) 0;
    padding: clamp(0.9375rem, 0rem + 3.75vw, 1.875rem) clamp(1.6875rem, 0rem + 6.75vw, 3.375rem);
    text-align: center;
    font-size: 16px;
    line-height: 1.5;
  }
}

.fp-access__info {
  padding: clamp(2.1875rem, -0.0930851064rem + 3.7234042553vw, 4.375rem) clamp(1.96875rem, -0.0837765957rem + 3.3510638298vw, 3.9375rem) clamp(2.125rem, -0.0904255319rem + 3.6170212766vw, 4.25rem) 10px;
  display: grid;
  grid-template-columns: clamp(6.03125rem, -0.2566489362rem + 10.2659574468vw, 12.0625rem) 1fr;
}
@media screen and (max-width: 979px) {
  .fp-access__info {
    padding: 42px 9px 29px;
    grid-template-columns: 1fr;
    width: 100%;
  }
}

.fp-access__info-title {
  color: #7f5447;
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(1rem, -0.0425531915rem + 1.7021276596vw, 2rem);
  font-weight: 700;
  line-height: 1.2;
  padding-top: clamp(0.625rem, -0.0265957447rem + 1.0638297872vw, 1.25rem);
  border-bottom: 1px solid rgba(0, 0, 0, 0.21);
}
@media screen and (max-width: 979px) {
  .fp-access__info-title {
    border-bottom: none;
    font-size: 20px;
    padding: 18px 10px 0;
  }
}

.fp-access__info-content {
  padding: clamp(0.4375rem, -0.0186170213rem + 0.7446808511vw, 0.875rem) 0;
  color: #7f5447;
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(1rem, -0.0425531915rem + 1.7021276596vw, 2rem);
  font-weight: 400;
  line-height: 1.7;
  border-bottom: 1px solid rgba(0, 0, 0, 0.21);
}
@media screen and (max-width: 979px) {
  .fp-access__info-content {
    font-size: 18px;
    padding: 10px;
  }
}

.fp-access__info-table th {
  text-align: right;
}

.fp-access__info-content-note {
  font-size: clamp(0.75rem, -0.0319148936rem + 1.2765957447vw, 1.5rem);
}
@media screen and (max-width: 979px) {
  .fp-access__info-content-note {
    font-size: 16px;
    padding-left: 10px;
  }
}

.fp-reason {
  padding: clamp(6.09375rem, -0.2593085106rem + 10.3723404255vw, 12.1875rem) 0 clamp(3.1875rem, -0.1356382979rem + 5.4255319149vw, 6.375rem);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: clamp(8.84375rem, -0.3763297872rem + 15.0531914894vw, 17.6875rem);
}
@media screen and (max-width: 979px) {
  .fp-reason {
    padding: 86px 0 11px;
    gap: 95px;
  }
}

.fp-reason__inner {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.fp-voice {
  background: #EEA8C2;
  padding-top: clamp(6.5625rem, -0.2792553191rem + 11.170212766vw, 13.125rem);
}
@media screen and (max-width: 979px) {
  .fp-voice {
    padding-top: 85px;
  }
}

.fp-voice__inner {
  margin-top: clamp(3.125rem, -0.1329787234rem + 5.3191489362vw, 6.25rem);
  border-radius: 0 clamp(8.75rem, -0.3723404255rem + 14.8936170213vw, 17.5rem) 0 0;
  background: #fffafb;
  padding: 135px 130px 111px 161px;
}
@media screen and (max-width: 979px) {
  .fp-voice__inner {
    border-radius: 0 160px 0 0;
    padding: 116px 10px 48px 24px;
    margin-top: 42px;
  }
}

.fp-voice__swiper-container,
.fp-voice__swiper,
.fp-voice__swiper-wrapper,
.fp-voice__swiper-slide {
  position: relative;
}

.fp-voice__swiper-container {
  max-width: 1620px;
  margin-inline: auto;
}

.fp-voice__swiper-slide {
  max-width: 1607px;
  padding-right: 22px;
  padding-bottom: 22px;
  margin-inline: auto;
}
@media screen and (max-width: 979px) {
  .fp-voice__swiper-slide {
    padding-bottom: 18px;
  }
}

.swiper-button-prev,
.swiper-button-next,
.swiper-pagination-bullets.swiper-pagination-horizontal {
  top: unset;
  bottom: unset;
  left: unset;
  right: unset;
  margin: 0;
  padding: 0;
}

.swiper-button-prev::after,
.swiper-button-next::after {
  content: "";
}

.swiper-button-prev,
.swiper-button-next {
  position: absolute;
  top: 54%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 72px;
  height: 72px;
}
@media screen and (max-width: 979px) {
  .swiper-button-prev,
  .swiper-button-next {
    display: none;
  }
}

.swiper-button-prev {
  left: -36px;
}
.swiper-button-prev img {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.swiper-button-next {
  right: -18px;
}

.swiper-pagination-bullets.swiper-pagination-horizontal {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
  position: absolute;
  bottom: -81px;
  height: 32px;
}
@media screen and (max-width: 979px) {
  .swiper-pagination-bullets.swiper-pagination-horizontal {
    top: -60px;
    gap: 30px;
    height: 16px;
  }
}

.swiper-pagination-bullets.swiper-pagination-horizontal .swiper-pagination-bullet {
  opacity: 0.7;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #E88872;
}
@media screen and (max-width: 979px) {
  .swiper-pagination-bullets.swiper-pagination-horizontal .swiper-pagination-bullet {
    width: 16px;
    height: 16px;
  }
}

.swiper-pagination-bullets.swiper-pagination-horizontal .swiper-pagination-bullet-active {
  opacity: 1;
}

.fp-voice__btn {
  margin-top: 140px;
  text-align: center;
}
@media screen and (max-width: 979px) {
  .fp-voice__btn {
    margin-top: 0;
  }
}

.fp-flow {
  border-radius: clamp(8.75rem, -0.3723404255rem + 14.8936170213vw, 17.5rem) 0;
  background: #EEA8C2;
  padding: clamp(6.875rem, -0.2925531915rem + 11.7021276596vw, 13.75rem) clamp(4.84375rem, -0.2061170213rem + 8.2446808511vw, 9.6875rem) clamp(3.125rem, -0.1329787234rem + 5.3191489362vw, 6.25rem) clamp(5.09375rem, -0.2167553191rem + 8.670212766vw, 10.1875rem);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: clamp(3.125rem, -0.1329787234rem + 5.3191489362vw, 6.25rem);
}
@media screen and (max-width: 979px) {
  .fp-flow {
    border-radius: 160px 0;
    padding: 83px 25px 118px;
    gap: 72px;
  }
}

.fp-news {
  text-align: center;
  padding-top: clamp(6.5625rem, -0.2792553191rem + 11.170212766vw, 13.125rem);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: clamp(2.9375rem, -0.125rem + 5vw, 5.875rem);
}
@media screen and (max-width: 979px) {
  .fp-news {
    padding-top: 91px;
    gap: 22px;
  }
}

.fp-news__inner {
  width: 100%;
  border-radius: clamp(8.75rem, -0.3723404255rem + 14.8936170213vw, 17.5rem) clamp(8.75rem, -0.3723404255rem + 14.8936170213vw, 17.5rem) 0 0;
  background: linear-gradient(134deg, #EEA8C2 6.29%, #FFFAFB 100.01%);
  padding: clamp(4.6875rem, -0.1994680851rem + 7.9787234043vw, 9.375rem) clamp(1.5625rem, -0.0664893617rem + 2.6595744681vw, 3.125rem) clamp(3.0625rem, -0.1303191489rem + 5.2127659574vw, 6.125rem);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: clamp(3.34375rem, -0.142287234rem + 5.6914893617vw, 6.6875rem);
}
@media screen and (max-width: 979px) {
  .fp-news__inner {
    border-radius: 140px 140px 0 0;
    padding: 136px 26px 42px 24px;
    gap: 44px;
  }
}

/* ------------------------------------------------------------
キャンペーン(parts/campaign.php)のスタイル
------------------------------------------------------------ */
.p-campaign {
  padding: 76px 24px;
}
@media screen and (max-width: 979px) {
  .p-campaign {
    padding: 43px 24px 40px;
  }
}

.p-campaign__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: clamp(2.09375rem, -0.0890957447rem + 3.5638297872vw, 4.1875rem);
}
@media screen and (max-width: 979px) {
  .p-campaign__inner {
    gap: clamp(3.8125rem, 0rem + 15.25vw, 7.625rem);
  }
}

.p-campaign__title {
  color: #7F5447;
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(2.34375rem, -0.0997340426rem + 3.9893617021vw, 4.6875rem);
  font-weight: 700;
  line-height: 1.4;
}
@media screen and (max-width: 979px) {
  .p-campaign__title {
    font-size: clamp(2rem, 0rem + 8vw, 4rem);
  }
}

.p-campaign__box {
  background: url("../img/campaign/bg-campaign-pc.svg") no-repeat center center/cover;
  max-width: clamp(50rem, -2.1276595745rem + 85.1063829787vw, 100rem);
  width: 100%;
  border-radius: clamp(0.84375rem, -0.0359042553rem + 1.4361702128vw, 1.6875rem);
  border: 2px solid #FFC5DA;
  position: relative;
}
@media screen and (max-width: 979px) {
  .p-campaign__box {
    border-radius: clamp(0.625rem, 0rem + 2.5vw, 1.25rem);
  }
}

.p-campaign__box-header {
  background: #FFC5DA;
  border-radius: clamp(0.84375rem, -0.0359042553rem + 1.4361702128vw, 1.6875rem) clamp(0.84375rem, -0.0359042553rem + 1.4361702128vw, 1.6875rem) 0 0;
  color: #CF193D;
  text-shadow: 0 0 3px #FFECEC;
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(1.34375rem, -0.0571808511rem + 2.2872340426vw, 2.6875rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0.02em;
  padding: clamp(1.03125rem, -0.0438829787rem + 1.7553191489vw, 2.0625rem) clamp(1.5625rem, -0.0664893617rem + 2.6595744681vw, 3.125rem) clamp(1.15625rem, -0.0492021277rem + 1.9680851064vw, 2.3125rem);
}
@media screen and (max-width: 979px) {
  .p-campaign__box-header {
    text-align: center;
    border-radius: 10px 10px 0 0;
    font-size: clamp(1.25rem, 0rem + 5vw, 2.5rem);
    line-height: 2;
    letter-spacing: 1px;
    padding: 30px 0 10px;
  }
}

.p-campaign__box-header-pr {
  font-size: clamp(1.6875rem, -0.0718085106rem + 2.8723404255vw, 3.375rem);
  font-weight: 700;
  line-height: 1.5;
  display: inline-block;
  background: #FFF;
}
@media screen and (max-width: 979px) {
  .p-campaign__box-header-pr {
    font-size: clamp(1.25rem, 0rem + 5vw, 2.5rem);
    line-height: 1.7;
  }
}

.p-campaign__box-circle {
  position: absolute;
  top: clamp(-8.875rem, 0.1888297872rem + -7.5531914894vw, -4.4375rem);
  right: clamp(-1.75rem, 0.0372340426rem + -1.4893617021vw, -0.875rem);
  width: clamp(9.125rem, -0.3882978723rem + 15.5319148936vw, 18.25rem);
  height: clamp(9.125rem, -0.3882978723rem + 15.5319148936vw, 18.25rem);
  border-radius: 50%;
  background: #CF193D;
  color: #FFF;
  text-align: center;
  padding-top: clamp(1.875rem, -0.079787234rem + 3.1914893617vw, 3.75rem);
  font-family: "Inter", "Noto Sans JP", sans-serif;
}
@media screen and (max-width: 979px) {
  .p-campaign__box-circle {
    width: clamp(5.1875rem, 0rem + 20.75vw, 10.375rem);
    height: clamp(5.1875rem, 0rem + 20.75vw, 10.375rem);
    padding-top: clamp(1.0625rem, 0rem + 4.25vw, 2.125rem);
    top: clamp(-6.875rem, 0rem + -13.75vw, -3.4375rem);
    right: clamp(-2.75rem, 0rem + -5.5vw, -1.375rem);
  }
}

.p-campaign__box-circle-month {
  font-size: clamp(1.6875rem, -0.0718085106rem + 2.8723404255vw, 3.375rem);
  font-weight: 600;
  line-height: 1.1;
}
@media screen and (max-width: 979px) {
  .p-campaign__box-circle-month {
    font-size: clamp(0.9375rem, 0rem + 3.75vw, 1.875rem);
  }
}

.p-campaign__box-circle-number {
  color: #FFF;
  font-size: clamp(3rem, -0.1276595745rem + 5.1063829787vw, 6rem);
  font-weight: 600;
  line-height: 1.1;
}
@media screen and (max-width: 979px) {
  .p-campaign__box-circle-number {
    font-size: clamp(1.5rem, 0rem + 6vw, 3rem);
  }
}

.p-campaign__box-circle-limit {
  font-size: clamp(2rem, -0.085106383rem + 3.4042553191vw, 4rem);
  font-weight: 600;
  line-height: 1.1;
}
@media screen and (max-width: 979px) {
  .p-campaign__box-circle-limit {
    font-size: clamp(1.125rem, 0rem + 4.5vw, 2.25rem);
  }
}

.p-campaign__box-content {
  border-radius: 0 0 clamp(0.84375rem, -0.0359042553rem + 1.4361702128vw, 1.6875rem) clamp(0.84375rem, -0.0359042553rem + 1.4361702128vw, 1.6875rem);
  padding: clamp(2.1875rem, -0.0930851064rem + 3.7234042553vw, 4.375rem) clamp(2.5rem, -0.1063829787rem + 4.2553191489vw, 5rem) clamp(1.125rem, -0.0478723404rem + 1.914893617vw, 2.25rem);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: clamp(1.71875rem, -0.0731382979rem + 2.9255319149vw, 3.4375rem);
}
@media screen and (max-width: 979px) {
  .p-campaign__box-content {
    padding: 30px 0 13px;
    gap: 20px;
  }
}

.p-campaign__box-img {
  width: clamp(40.46875rem, -1.7220744681rem + 68.8829787234vw, 80.9375rem);
  height: auto;
  margin-right: clamp(1.875rem, -0.079787234rem + 3.1914893617vw, 3.75rem);
}
@media screen and (max-width: 979px) {
  .p-campaign__box-img {
    width: 324px;
    margin-right: 0;
  }
}

.p-campaign__box-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: clamp(0.625rem, -0.0265957447rem + 1.0638297872vw, 1.25rem);
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 134px;
  margin-right: clamp(0rem, -1.8244680851rem + 2.9787234043vw, 1.75rem);
}
@media screen and (max-width: 979px) {
  .p-campaign__box-btn {
    width: 100%;
    height: 110px;
    margin-top: 20px;
    margin-right: 0;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 9px;
  }
}

.p-campaign__btn {
  width: clamp(15rem, 10.6994680851rem + 7.0212765957vw, 19.125rem);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  padding-bottom: 23px;
  position: relative;
}
.p-campaign__btn::after {
  content: "";
  display: block;
  width: 36px;
  height: 36px;
  background: transparent;
  clip-path: polygon(100% 100%, 0% 100%, 100% 0%);
  background-color: #008E11;
  position: absolute;
  bottom: 0;
  right: 0;
}
@media screen and (max-width: 979px) {
  .p-campaign__btn {
    width: 33%;
    padding: 12px 0;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    line-height: 1.1;
  }
  .p-campaign__btn::after {
    width: 14px;
    height: 12px;
  }
}

.p-campaign__btn-icon {
  display: inline-block;
  /* span は inline のため width/height が効くようにする */
}

.p-campaign__btn-line {
  background: #00DC1D;
}
.p-campaign__btn-line::after {
  background-color: #008E11;
}
.p-campaign__btn-line .p-campaign__btn-icon {
  width: clamp(10.25rem, 7.1875rem + 5vw, 13.1875rem);
  height: clamp(4.625rem, 3.3218085106rem + 2.1276595745vw, 5.875rem);
}
@media screen and (max-width: 979px) {
  .p-campaign__btn-line .p-campaign__btn-icon {
    width: 72px;
    height: 68px;
  }
}

.p-campaign__btn-tel {
  background: #00D1DC;
}
.p-campaign__btn-tel::after {
  background-color: #007E8E;
}
.p-campaign__btn-tel .p-campaign__btn-icon {
  width: clamp(9.75rem, 6.8829787234rem + 4.6808510638vw, 12.5rem);
  height: clamp(5rem, 3.5664893617rem + 2.3404255319vw, 6.375rem);
}
@media screen and (max-width: 979px) {
  .p-campaign__btn-tel .p-campaign__btn-icon {
    width: 67px;
    height: 72px;
  }
}

.p-campaign__btn-bookmark {
  background: #E3719B;
}
@media screen and (max-width: 979px) {
  .p-campaign__btn-bookmark {
    padding: 11px 0;
  }
}
.p-campaign__btn-bookmark::after {
  background-color: #8E0037;
}
.p-campaign__btn-bookmark .p-campaign__btn-icon {
  width: clamp(13.625rem, 9.585106383rem + 6.5957446809vw, 17.5rem);
  height: clamp(4.375rem, 3.0718085106rem + 2.1276595745vw, 5.625rem);
}
@media screen and (max-width: 979px) {
  .p-campaign__btn-bookmark .p-campaign__btn-icon {
    width: 110px;
    height: 68px;
  }
}

.p-campaign__box-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: clamp(0.1875rem, -0.0079787234rem + 0.3191489362vw, 0.375rem);
  padding-top: clamp(0.25rem, -0.0106382979rem + 0.4255319149vw, 0.5rem);
  margin-right: clamp(0.875rem, -0.0372340426rem + 1.4893617021vw, 1.75rem);
}
.p-campaign__box-text li {
  color: #333;
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(1rem, 0.2180851064rem + 1.2765957447vw, 1.75rem);
  font-weight: 400;
  line-height: 1;
  position: relative;
  padding-left: clamp(1.125rem, 0.3430851064rem + 1.2765957447vw, 1.875rem);
}
.p-campaign__box-text li::before {
  content: "※";
  position: absolute;
  left: 0;
}
@media screen and (max-width: 979px) {
  .p-campaign__box-text {
    gap: 0;
    padding: 0 24px;
    padding: 0 3px;
    margin-right: 0;
  }
  .p-campaign__box-text p {
    font-size: 16px;
    line-height: 1.7;
  }
}

.u-sp {
  display: none;
}
@media screen and (max-width: 979px) {
  .u-sp {
    display: inline-block;
  }
}

.u-pc {
  display: inline-block;
}
@media screen and (max-width: 979px) {
  .u-pc {
    display: none;
  }
}