:root {
  /* Brand Blue 系 */
  --color-brand-blue:        #1E7ED0; /* メインの青（見出し・リンク） */
  --color-brand-blue-light:  #50AED5; /* 明るめの青（ボタン上部・ライン） */
  --color-brand-blue-pale:   #8ABADD; /* 薄めの青（図版・パーツ背景） */

  /* Blue グラデ背景（上＝濃い / 下＝薄い） */
  --color-bg-blue-top:       #C7DEE8;
  --color-bg-blue-bottom:    #EBF3F4;

  /* Pink 系（背景） */
  --color-bg-pink:           #D4BBBB;
  --color-bg-pink-light:     #E9DFE3;

  /* Yellow 系（背景・帯） */
  --color-bg-yellow:         #EBF0D8;

  /* Accent（ボタン・強調） */
  --color-accent-pink:       #FFA1C9; /* CTAボタンのベース */
  --color-accent-pink-deep:  #EA9CB6; /* CTAボタンの濃い側グラデ */
  --color-accent-yellow:     #F4CC53; /* 丸アイコンやポイント用 */

  /* テキスト / 枠線 / ベース */
  --color-text-main:         #383335; /* メインテキスト */
  --color-text-muted:        #8A8E93; /* 補足・ラベル */
  --color-border:            #C9CFD1; /* 罫線・ボックス境界 */
  --color-bg-base:           #FFFFFF; /* ページのベース */
  --color-bg-section:        #FBFCFC; /* セクションの白寄り背景 */
}

/* ベース：モバイルファースト（MFI対策） */
html {
  box-sizing: border-box;
  /* 10px基準でremを使用 */
  font-size: 10px;
}

*,
*::before,
*::after {
  box-sizing: inherit;
}

body {
  margin: 0;
  font-family: "Noto Sans JP", sans-serif;
  font-style: normal;
  font-size: 1rem; /* 10px (htmlの基準値) */
  line-height: 1.6;
  color: var(--color-text-main);
  background-color: var(--color-bg-base);
}

/* ユーティリティ */
.u-inline-block {
  display: inline-block;
}

/* レイアウト */
.l-footer__inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.l-footer__nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.l-footer__nav a {
  font-size: 0.875rem;
  text-decoration: none;
  color: var(--color-text-main);
  transition: color 0.2s ease;
}

.l-footer__nav a:hover {
  color: var(--color-brand-blue);
  text-decoration: none;
}

.l-main {
  max-width: 100%;
  margin: 0;
  padding: 0;
}

.l-footer {
  border-top: 1px solid var(--color-border);
  background-color: var(--color-bg-section);
  padding: 2rem 0;
  margin-top: 4rem;
}

.l-footer__copy {
  margin: 1.5rem 0 0;
  text-align: center;
  color: var(--color-text-muted);
  font-size: 0.75rem;
}


/* ボタン */
.c-btn {
  display: inline-block;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  text-decoration: none;
}

.c-btn--primary {
  background-image: linear-gradient(
    to bottom,
    var(--color-accent-pink),
    var(--color-accent-pink-deep)
  );
  color: #fff;
}
.c-btn--primary:hover {
  filter: brightness(1.05);
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
  transition: all 0.2s ease;
}

.c-btn {
  transition: all 0.2s ease;
}


/* パンくず */
.c-breadcrumb {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0.75rem 1rem 0;
  font-size: 0.75rem;
}

.c-breadcrumb__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  column-gap: 0.5rem;
  row-gap: 0.25rem;
}

.c-breadcrumb__item + .c-breadcrumb__item::before {
  content: ">";
  margin: 0 0.25rem 0 0;
}

/* 記事 */
.p-article__title {
  font-size: 1.5rem;
  margin: 0 0 0.5rem;
}

.p-article__lead {
  margin: 0 0 1.5rem;
  font-size: 1rem;
  line-height: 1.8;
  color: var(--color-text-main);
}

/* ヒーロー：背景画像＋テキスト（画像内文字はなるべく禁止） */
.p-hero {
  position: relative;
  margin-bottom: 2rem;
  overflow: hidden;
  border-radius: 0.75rem;
  min-height: 180px;
}

.p-hero__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--color-brand-blue) 0%, var(--color-brand-blue-light) 100%);
  background-size: cover;
  background-position: center;
  filter: brightness(0.65);
}

.p-hero__content {
  position: relative;
  padding: 1.75rem 1.5rem;
  color: #fff;
}

.p-hero__heading {
  font-size: 1.375rem;
  margin: 0 0 0.5rem;
  font-weight: 700;
  line-height: 1.4;
}

.p-hero__text {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.6;
  opacity: 0.95;
}

/* セクション */
.p-section {
  margin-bottom: 2.5rem;
}

.p-section--blue,
.p-section--pink,
.p-section--yellow {
  padding: 2rem 1.5rem;
  border-radius: 0.75rem;
  margin-bottom: 2.5rem;
}

@media (min-width: 521px) {
  .p-section--blue,
  .p-section--pink,
  .p-section--yellow {
    padding: 2.5rem 2rem;
  }
}

@media (min-width: 769px) {
  .p-section--blue,
  .p-section--pink,
  .p-section--yellow {
    padding: 3rem 3rem;
  }
}

.p-section__title {
  font-size: 1.25rem;
  margin: 0 0 0.75rem;
}

.p-section__subtitle {
  font-size: 1.05rem;
  margin: 1.5rem 0 0.5rem;
}

/* 青グラデ背景のセクション（アクア感のある帯） */
.p-section--blue {
  background-image: linear-gradient(
    to bottom,
    var(--color-bg-blue-top),
    var(--color-bg-blue-bottom)
  );
}

/* ピンク背景の帯 */
.p-section--pink {
  background-color: var(--color-bg-pink-light);
}

/* うす黄色背景（メリット列挙の帯など） */
.p-section--yellow {
  background-color: var(--color-bg-yellow);
}

/* サムネやカードのボーダー */
.c-card {
  border: 1px solid var(--color-border);
  background-color: var(--color-bg-section);
}

/* リスト */
.p-list {
  padding-left: 1.25rem;
}

/* テーブル */
.p-table {
  overflow-x: auto;
}

.p-table table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
}

.p-table th,
.p-table td {
  padding: 0.5rem 0.75rem;
  border: 1px solid #ddd;
}

.p-table th {
  background-color: var(--color-bg-section);
  font-weight: 600;
  color: var(--color-text-main);
}

.p-table th,
.p-table td {
  border-color: var(--color-border);
}

/* 画像 */
.p-image {
  margin: 0;
}

.p-image img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* FAQ */
.p-faq {
  margin: 0;
  padding: 0;
}

.p-faq__item {
  border-top: 1px solid var(--color-border);
  padding: 1rem 0;
}

.p-faq__item:last-child {
  border-bottom: 1px solid var(--color-border);
}

.p-faq__q {
  color: var(--color-brand-blue);
}

.p-faq__q {
  font-weight: 600;
  margin: 0 0 0.25rem;
}

.p-faq__a {
  margin: 0;
  font-size: 0.9rem;
}

/* レスポンシブ：タブレット（521px - 768px） */
@media (min-width: 521px) and (max-width: 768px) {
  .l-footer__inner {
    padding: 1rem 1.5rem;
  }

  .l-main {
    padding: 0;
  }

  .p-article__title {
    font-size: 1.625rem;
  }

  .p-hero {
    min-height: 220px;
  }

  .p-hero__content {
    padding: 2rem 2rem;
  }

  .p-hero__heading {
    font-size: 1.5rem;
  }

  .p-section__title {
    font-size: 1.375rem;
  }

  .p-fv__title-zero {
    font-size: 3.5rem;
  }

  .p-fv__title-main {
    font-size: 3rem;
  }

  .p-fv__title-sub {
    font-size: 1.75rem;
  }

  .p-fv__points {
    gap: 2rem;
  }

  .p-campaign__content {
    flex-direction: row;
    gap: 10px;
  }

  .p-feature__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .p-doctor__comments {
    grid-template-columns: repeat(2, 1fr);
  }

  .p-points__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .p-support__items {
    grid-template-columns: repeat(3, 1fr);
  }

}

/* スマホ向け：ハンバーガーメニュー */
@media (max-width: 520px) {

  .p-fv__title {
    font-size: 1.5rem;
  }

  .p-fv__title-zero {
    font-size: 2.5rem;
  }

  .p-fv__title-main {
    font-size: 2rem;
  }

  .p-fv__title-sub {
    font-size: 1.25rem;
  }

  .p-fv__points {
    flex-direction: row;
    gap: 1rem;
    justify-content: space-around;
  }

  .p-fv__point-icon {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }

  .p-fv__point-text {
    font-size: 0.75rem;
  }

  .p-doctor__comment {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .p-doctor__comment-img {
    width: 90px;
    height: 96px;
  }

  .p-points__item-icon {
    width: 60px;
    height: 60px;
    margin: 1rem auto 0;
  }

  .p-support__items {
    grid-template-columns: 1fr;
  }

  .p-water__grid {
    grid-template-columns: 1fr;
  }
}


/* バナー */
.p-banner {
  background-color: var(--color-bg-pink-light);
  padding: 1rem 0;
  text-align: center;
}

.p-banner--campaign {
  background: linear-gradient(to right, #003B94 0%, #006DBD 63%, #008AD5 100%);
  color: #fff;
}

.p-banner--campaign .p-banner__label,
.p-banner--campaign .p-banner__title,
.p-banner--campaign .p-banner__title-small,
.p-banner--campaign .p-banner__title-large {
  color: #fff;
}

.p-banner--campaign .p-banner__link {
  color: #fff;
}

.p-banner__inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.p-banner__text {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  margin: 0;
}

.p-banner__label {
  font-size: 1.8rem;
  font-weight: 600;
  letter-spacing: 0.2rem;
}

.p-banner__title {
  font-size: 1.8rem;
  font-weight: 700;
}

.p-banner__title-small {
  font-size: 1.6rem;
  letter-spacing: 0.01rem;
  display: inline-block;
  margin-right: -6px;
}

.p-banner__title-large {
  font-size: 2.4rem;
  letter-spacing: 0.01rem;
}

.p-banner__title-ga {
  font-size: 1.8rem;
}

.p-banner__link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-text-main);
  text-decoration: none;
  font-size: 1.8rem;
  font-weight: 600;
  border: 1px solid #fff;
  border-radius: 9999px;
  padding: 0.5rem 1rem;
  transition: opacity 0.2s ease;
}

.p-banner__link:hover {
  opacity: 0.7;
}

/* スマホ向け：ハンバーガーメニュー */
@media (max-width: 520px) {
  .p-banner__inner {
    padding: 0 20px;
  }
  .p-banner__text {
    align-items: center;
  }
  .p-banner__label {
    font-size: 1rem;
  }
  .p-banner__title {
    font-size: 1.2rem;
  }
  .p-banner__title-small, .p-banner__title-ga {
    font-size: 1rem;
  }
  .p-banner__title-large {
    font-size: 1.2rem;
  }
  .p-banner__link {
    font-size: 1.2rem;
    padding: 0.5rem 2rem;
  }
}

/* ファーストビュー */
.p-fv {
  position: relative;
  /* min-height: 400px; */
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0;
  line-height: 1;
  /* margin-bottom: 2rem; */
}

.p-fv__image {
  width: 100%;
  display: block;
}

.p-fv__image img {
  width: 100%;
  height: auto;
  display: block;
}

.p-fv__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
}

.p-fv__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.p-fv__content {
  position: relative;
  z-index: 1;
  max-width: 1120px;
  width: 100%;
  padding: 2rem 1rem;
  text-align: center;
  color: #fff;
}

.p-fv__ribbon {
  margin-bottom: 1.5rem;
}

.p-fv__ribbon-text {
  display: inline-block;
  padding: 0.5rem 1.5rem;
  background-color: var(--color-accent-yellow);
  color: var(--color-text-main);
  font-weight: 700;
  border-radius: 9999px;
  font-size: 0.875rem;
}

.p-fv__title {
  margin: 0 0 2rem;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.4;
}

.p-fv__title-zero {
  display: block;
  font-size: 3rem;
  margin-bottom: 0.5rem;
}

.p-fv__title-main {
  display: block;
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.p-fv__title-sub {
  display: block;
  font-size: 1.5rem;
}

.p-fv__points {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.p-fv__point {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.p-fv__point-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
}

.p-fv__point-text {
  font-size: 0.875rem;
  margin: 0;
  line-height: 1.4;
}

/* レスポンシブ：PC（769px以上） */
@media (min-width: 769px) {
  .l-footer__inner {
    padding: 1rem 2rem;
  }

  .l-main {
    padding: 0;
  }

  .p-article__title {
    font-size: 1.75rem;
  }

  .p-hero {
    min-height: 300px;
  }

  .p-hero__content {
    padding: 3rem 3rem;
  }

  .p-hero__heading {
    font-size: 1.875rem;
  }

  .p-section__title {
    font-size: 1.5rem;
  }

  .p-section__subtitle {
    font-size: 1.125rem;
  }

  .l-footer__nav-list {
    gap: 1.5rem;
  }

  .l-footer__nav a {
    font-size: 1rem;
  }

  .p-fv__title-zero {
    font-size: 4rem;
  }

  .p-fv__title-main {
    font-size: 3.5rem;
  }

  .p-fv__title-sub {
    font-size: 2rem;
  }

  .p-fv__points {
    gap: 3rem;
  }

  .p-campaign__content {
    flex-direction: row;
    gap: 10px;
  }

  .p-feature__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
  }

  .p-doctor__comments {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
  }

  .p-points__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
  }

  .p-support__items {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }

  .p-water__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
  }

}

/* アニメーション用の初期状態 */
.p-campaign,
.p-utilize,
.p-feature,
.p-doctor,
.p-points,
.p-price-guide,
.p-support,
.p-product,
.p-water,
.p-campaign-detail {
  will-change: opacity, transform;
}

/* キャンペーン */
.p-campaign {
  margin-bottom: 0;
  position: relative;
  background-color: #EEE1CE;
  overflow: hidden;
}

/* パララックス用背景レイヤー（スクロールでゆっくり動く） */
.p-campaign__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 120%;
  z-index: 0;
  pointer-events: none;
  background-image: url('../img/25th_bg.png');
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
}

.p-campaign__inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 60px 40px 90px;
  position: relative;
  text-align: center;
  z-index: 1;
}

.p-campaign picture {
  display: block;
}

.p-campaign img {
  max-width: 100%;
  height: auto;
  display: block;
}

.p-campaign img {
  width: 100%;
  height: auto;
  display: block;
}

/* 画像ラッパー（ボタンリンクオーバーレイ用） */
.p-campaign__image-wrapper {
  position: relative;
  display: block;
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
}

/* ボタン部分のリンクオーバーレイ */
.p-campaign__image-wrapper .p-campaign__button-link {
  position: absolute;
  bottom: 1%;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 9%;
  cursor: pointer;
  z-index: 10;
  /* デバッグ用： */
  /* border: 2px solid red; */
}

.p-campaign__image-wrapper .p-campaign__button-link:hover {
  opacity: 0.8;
}

/* タブレット用：.p-campaign */
@media (min-width: 521px) and (max-width: 768px) {
  .p-campaign__image-wrapper .p-campaign__button-link {
    bottom: 2.5%;
    height: 7%;
  }
}
/* スマホ向け：.p-campaign */
@media (max-width: 520px) {
  .p-campaign__inner {
    padding: 30px 20px 60px;
  }
  .p-campaign__bg {
    background-image: url('../img/25th_bg_sp.png');
  }
  .p-campaign__image-wrapper .p-campaign__button-link {
    bottom: 1%;
    width: 80%;
    height: 6.4%;
  }
}

/* 活用シーン */
.p-utilize {
  position: relative;
  margin-bottom: 0;
  padding: 80px 40px;
  background-image: url('../img/utilize_bg@2x.jpg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.p-utilize::before   {
  content: '';
  display: block;
  width: 100%;
  height: 30px;
  position: absolute;
  top: -30px;
  left: 0;
  right: 0;
  background: url('../img/utilize_upper.png') no-repeat center center;
  background-size: cover;
}
.p-utilize::after {
  content: '';
  display: block;
  width: 100%;
  height: 30px;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('../img/utilize_lower.png') no-repeat center center;
  background-size: cover;
}
/* タブレット用：.p-utilize */
@media (min-width: 521px) and (max-width: 768px) {
  .p-utilize {
    padding: 60px 40px;
  }
}
/* スマホ向け：.p-utilize */
@media (max-width: 520px) {
  .p-utilize {
    padding: 40px 20px;
  }
}

.p-utilize__inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0;
}

.p-utilize__title {
  margin: 0 0 40px;
  text-align: center;
}

.p-utilize__title img {
  max-width: 100%;
  height: auto;
  display: block;
}

.p-utilize__carousel {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  padding: 30px 0;
  overflow: hidden;
}

.p-utilize__carousel.swiper {
  width: 100vw;
  margin-left: -50vw;
  margin-right: -50vw;
  padding: 0;
  overflow: hidden;
}

.p-utilize__carousel .swiper-wrapper {
  align-items: center;
  display: flex;
  transform: translate3d(0, 0, 0);
}

.p-utilize__carousel .swiper-slide {
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  --carousel-item-width: calc((100vw - 340px) * 1.5);
  --carousel-max-width: calc(800px * 1.5);
  /* JavaScriptで動的に設定される */
  box-sizing: border-box;
}

.p-utilize__carousel .swiper-slide img {
  width: 100%;
  height: auto;
  display: block;
}

.p-utilize__carousel .swiper-pagination {
  position: relative;
  margin-top:  30px;
  bottom: auto;
  gap: 11px;
  display: flex;
  justify-content: center;
}

.p-utilize__carousel .swiper-pagination-bullet {
  width: 18px;
  height: 18px;
  background-color: #ffffff;
  border: 2px solid #009844;
  opacity: 1;
  transition: all 0.3s ease;
  margin: 0 7.5px;
}

.p-utilize__carousel .swiper-pagination-bullet-active {
  background-color: #009844;
  border-color: #009844;
}

.p-utilize__pr-note {
  font-weight: 500;
  font-size: 1.4rem;
  line-height: 140%;
  text-align: right;
  color: #D34D97;
  display: block;
  /* margin-bottom: 80px; */
}

/* タブレット用：.p-utilize__pr-note */
@media (min-width: 521px) and (max-width: 768px) {
  .p-utilize__pr-note {
    width: 85%;
    margin: 0 auto;
  }
}

/* スマホ用：.p-utilize__pr-note */
@media (max-width: 520px) {
  .p-utilize__pr-note {
    margin-right: 0;
  }
  .p-utilize__carousel .swiper-slide img {
    max-width: 340px;
  }
}

/* バナー：モード */
.p-banner-modo {
  width: 100%;
  margin: 0 auto;
  padding: 60px 40px;
  background-color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* タブレット用：.p-utilize__pr-note */
@media (min-width: 521px) and (max-width: 768px) {
  .p-banner-modo {
    padding: 60px 40px;
  }
}

/* ユーティリティクラス：スマホ専用表示 */
.sp-only {
  display: none;
}

@media (max-width: 520px) {
  .sp-only {
    display: block;
  }
}

/* スマホ用：.p-utilize__pr-note */
@media (max-width: 520px) {
  .p-banner-modo {
    padding: 20px;
  }
}

.p-banner-modo picture {
  display: block;
  width: 100%;
  max-width: 1020px;
  margin: 0 auto;
}

.p-banner-modo img {
  width: 100%;
  max-width: 1020px;
  height: auto;
  display: block;
  margin: 0 auto;
}

/* アクアクララの特長 */
.p-feature {
  margin-bottom: 0;
}

.p-feature__inner {
  max-width: 1120px;
  margin: 0 auto;
  /* padding: 80px 0; */
}
/* タブレット用：.p-utilize__pr-note */
@media (min-width: 521px) and (max-width: 768px) {
  .p-feature__inner {
    padding: 60px 40px 80px;
  }
}

/* スマホ用：.p-feature--water */
@media (max-width: 520px) {
  .p-feature__inner {
    padding: 40px 20px;
  }
}

.p-feature__header {
  text-align: center;
  margin-bottom: 30px;
}

.p-feature__label {
  font-weight: 500;
  font-size: 3.0rem;
  line-height: 120%;
  align-items: center;
  text-align: center;
  letter-spacing: 6px;
  color: #FFFFFF;
  text-shadow: 0px 0px 10px #5897B3;
  margin: 0 0 32px;
}

.p-feature__title {
  font-weight: 350;
  font-size: 5.2rem;
  line-height: 120%;
  align-items: center;
  text-align: center;
  letter-spacing: 2px;
  color: #FFFFFF;
}

.p-feature__title-no {
  font-size: 3.6rem; /* 36px相当 */
  margin: 0;
}

.p-feature-wrapper {
  background: linear-gradient(to bottom, #006BC9 0%, #B4EDFE 100%);
  width: 100%;
  padding-bottom: 80px;
}

.p-feature--water {
  padding: 80px 40px;
  margin: 0;
}
/* タブレット用：.p-feature--water */
@media (min-width: 521px) and (max-width: 768px) {
  .p-feature--water {
    padding: 0;
  }
}

/* スマホ用：.p-feature--water */
@media (max-width: 520px) {
  .p-feature-wrapper {
    padding-bottom: 0;
  }
  .p-feature--water {
    padding: 0;
  }
  .p-feature__label {
    font-size: 1.6rem;
    margin: 0 0 24px;
    letter-spacing: 3px;
  }
  
  .p-feature__title {
    font-size: 3.2rem;
    margin: 0 0 30px;
  }
  
}

.p-feature__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0;
  width: 1020px;
  max-width: 100%;
  margin: 0 auto;
}

.p-feature__water {
  width: 1020px;
  max-width: 100%;
  /* height: 230px; */
  margin-bottom: 0;
  position: relative;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.p-feature__water img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.p-feature__description {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 160px 80px;
  gap: 50px;
  width: 1020px;
  max-width: 100%;
  background: #FFFFFF;
  border-radius: 0px 0px 12px 12px;
  margin: 0 auto;
}

.p-feature__large-text {
  position: relative;
  margin: 0;
}

.p-feature__number {
  font-weight: 350;
  font-size: 4.5rem;
  line-height: 45px;
  letter-spacing: -2px;
  color: #05448F;
  text-shadow: 1px 1px 1px #FFFFFF, 1px -1px 1px #FFFFFF, -1px 1px 1px #FFFFFF, -1px -1px 1px #FFFFFF, 0px 0px 22px #FFFFFF;
  margin: 0;
}

.p-feature__number:last-of-type {
  letter-spacing: 1px;
}

.p-feature__unit {
  font-weight: 350;
  font-size: 2.8rem;
  line-height: 45px;
  letter-spacing: 1px;
  color: #05448F;
  text-shadow: 1px 1px 1px #FFFFFF, 1px -1px 1px #FFFFFF, -1px 1px 1px #FFFFFF, -1px -1px 1px #FFFFFF, 0px 0px 22px #FFFFFF;
  margin: 0;
}


.p-feature__emphasis {
  font-weight: 300;
  font-size: 4.2rem;
  line-height: 45px;
  color: #05448F;
  text-shadow: 1px 1px 1px #FFFFFF, 1px -1px 1px #FFFFFF, -1px 1px 1px #FFFFFF, -1px -1px 1px #FFFFFF, 0px 0px 22px #FFFFFF;
  margin: 0;
}

.p-feature__text {
  width: 700px;
  max-width: 100%;
  height: auto;
  margin: 0;
  font-weight: 350;
  font-size: 1.6rem;
  line-height: 170%;
  letter-spacing: 1px;
  color: #222222;
}

.p-feature__text p {
  margin: 0 0 4px 0;
}

.p-feature__text p:last-child {
  margin-bottom: 0;
}

.p-feature__ro {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0;
  gap: 30px;
  width: 700px;
  max-width: 100%;
  height: auto;
}

.p-feature__ro-title {
  max-width: 100%;
  font-weight: 700;
  font-size: 2.4rem;
  line-height: 140%;
  text-align: center;
  letter-spacing: 1px;
  color: #05448F;
  margin: 0;
}

.p-feature__ro img {
  width: 700px;
  max-width: 100%;
  height: 450px;
  object-fit: contain;
  background: #FFFFFF;
  display: block;
  margin: 0;
}

.p-feature__ro-text {
  width: 700px;
  max-width: 100%;
  height: 56px;
  margin: 0;


  font-weight: 500;
  font-size: 2.0rem;
  line-height: 140%;
  display: flex;
  align-items: center;
  text-align: center;
  letter-spacing: 1px;
  color: #222222;
}

/* 中間サイズ（1024px以下）用：.p-feature */
@media (max-width: 1024px) {
  .p-feature__content {
    width: 100%;
  }
  
  .p-feature__water {
    width: 100%;
  }
  
  .p-feature__description {
    width: 100%;
    padding: 0 2rem 80px;
  }
  
  .p-feature__text,
  .p-feature__ro,
  .p-feature__ro-title,
  .p-feature__ro img,
  .p-feature__ro-text {
    width: 100%;
  }
  
  .p-feature--safety {
    width: 100%;
  }
  
  .p-feature__grid {
    width: 100%;
  }
  
  .p-feature__item {
    width: 100%;
  }
}

/* タブレット用：.p-feature */
@media (min-width: 521px) and (max-width: 768px) {
  .p-feature__content {
    width: 100%;
  }
  
  .p-feature__water {
    width: 100%;
    height: auto;
    /* min-height: 230px; */
  }
  

  
  .p-feature__text,
  .p-feature__ro,
  .p-feature__ro-title,
  .p-feature__ro img,
  .p-feature__ro-text {
    width: 100%;
    max-width: 700px;
  }
  
  .p-feature__description {
    padding: 0 30px 80px;
    gap: 50px;
  }
  
  .p-feature__large-text {
    width: 100%;
    max-width: 590px;
    position: static;
    height: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
  }
  
  .p-feature__number,
  .p-feature__unit,
  .p-feature__emphasis {
    position: static;
    width: auto;
    height: auto;
    left: auto;
    top: auto;
  }
 .p-feature__ro-text-br {
    display: none;
  }
}

/* スマホ用：.p-feature */
@media (max-width: 520px) {
  .p-feature__content {
    width: 100%;
  }
  
  .p-feature__water {
    width: 100%;
    height: auto;
  }
  
  .p-feature__description {
    width: 100%;
    padding: 40px 20px;
    gap: 30px;
  }
  
  .p-feature__large-text {
    width: 100%;
    height: auto;
    position: static;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
  }
  
  .p-feature__text,
  .p-feature__ro,
  .p-feature__ro-title,
  .p-feature__ro img,
  .p-feature__ro-text {
    width: 100%;
    max-width: 700px;
    height: auto;
  }
  
  .p-feature__number,
  .p-feature__unit,
  .p-feature__emphasis {
    position: static;
    width: auto;
    height: auto;
    left: auto;
    top: auto;
  }
  .p-feature__number {
    font-size: 3.2rem;
  }
  .p-feature__unit {
    font-size: 2.2rem;
  }
  .p-feature__emphasis {
    font-size: 3.2rem;
  }
  .p-feature__ro-title {
    font-size: 2.0rem;
  }
  .p-feature__ro-text {
    font-size: 1.6rem;
  }
}

.p-feature--safety {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 40px;
  gap: 40px;
  width: 1020px;
  max-width: 100%;
  margin: 0 auto;
}

.p-feature--safety .p-feature__inner {
  width: 100%;
  max-width: 1020px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  padding: 0;
}

.p-feature--safety .p-feature__title {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 0;
  gap: 16px;
  max-width: 100%;
  height: auto;
  margin: 0;
}

.p-feature__title-text {
  font-weight: 500;
  font-size: 2.4rem;
  line-height: 140%;
  text-align: center;
  color: #005BAC;
  max-width: 100%;
}

.p-feature__title-slash {
  width: 26px;
  height: 71px;
  display: block;
  object-fit: contain;
}

.p-feature__title-slash--left {
  order: 0;
}

.p-feature__title-slash--right {
  order: 2;
}

.p-feature__grid {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: stretch;
  padding: 0;
  gap: 40px;
  width: 1020px;
  max-width: 100%;
  height: auto;
}

.p-feature__item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0 0 30px;
  gap: 30px;
  width: 490px;
  max-width: 100%;
  background: #FFFFFF;
  border-radius: 12px;
  flex: 1;
}

.p-feature__item img {
  width: 490px;
  max-width: 100%;
  height: 330px;
  object-fit: cover;
  margin: 0;
  border-radius: 12px 12px 0px 0px;
  display: block;
}

.p-feature__item-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0 30px;
  gap: 16px;
  width: 100%;
  height: auto;
  flex: 1;
}

.p-feature__item-title {
  width: 100%;
  max-width: 430px;
  height: auto;
  font-weight: 700;
  font-size: 2.2rem;
  line-height: 140%;
  color: #005BAC;
  margin: 0;
}

.p-feature__item-text {
  width: 100%;
  max-width: 430px;
  height: auto;
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 170%;
  color: #333333;
  margin: 0;
}

.p-feature__item-warning {
  font-size: 1.4rem; /* 14px */
  color: #666666;
}

/* タブレット用：.p-feature */
@media (min-width: 521px) and (max-width: 768px) {
  .p-feature--safety {
    width: 100%;
    padding: 0 40px;
  }
  
  .p-feature__grid {
    width: 100%;
    gap: 20px;
    /* flex-direction: column;
    align-items: center; */
  }
  
  .p-feature__item {
    width: 100%;
    max-width: 490px;
  }
  
  .p-feature__item img {
    width: 100%;
    height: auto;
    /* min-height: 330px; */
  }
  
  .p-feature--safety .p-feature__title {
    width: 100%;
    /* max-width: 464.74px; */
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .p-feature--safety .p-feature__title::before,
  .p-feature--safety .p-feature__title::after {
    display: none;
  }
  
  .p-feature__item-content {
    padding: 0 1.5rem;
  }
}

/* スマホ用：.p-feature */
@media (max-width: 520px) {
  .p-feature--safety {
    width: 100%;
    padding: 0;
  }
  
  .p-feature__grid {
    width: 100%;
    flex-direction: column;
    align-items: center;
  }
  
  .p-feature__item {
    width: 100%;
    max-width: 490px;
  }
  
  .p-feature__item img {
    width: 100%;
    height: auto;
  }
  
  .p-feature--safety .p-feature__title {
    width: 100%;
    flex-wrap: nowrap;
    gap: 12px;
    justify-content: center;
  }
  
  .p-feature--safety .p-feature__title::before,
  .p-feature--safety .p-feature__title::after {
    display: none;
  }
  
  .p-feature__item-content {
    padding: 0 30px;
  }
  .p-feature--safety .p-feature__inner {
    padding: 40px 20px;
  }
}

/* 波の装飾 */
/* 波のアニメーション */
#waveWrap {
  width: 100%;
  overflow: hidden;
  position: relative;
  height: 25px;
}

#wave {
  width: 200%;
  background-image: url('../img/water_wave.jpg');
  background-repeat: repeat-x;
  background-position: 0 0;
  background-size: auto 25px;
  will-change: transform;
  height: 25px;
}

/* 波のアニメーション（PC/タブレットのみ、SPでは動かさない） */
@media (min-width: 521px) {
  #wave {
    animation: wave-move 20s linear infinite;
  }
}

@media (min-width: 521px) and (max-width: 768px) {
  #waveWrap {
    height: 13px;
  }
  #wave {
    height: 13px;
    background-image: url('../img/water_wave_tb.jpg');
    background-size: auto 15px;
  }
}

@media (max-width: 520px) {
  #waveWrap {
    height: 10px;
  }
  #wave {
    width: 100%;
    height: 10px;
    background-image: url('../img/water_wave_sp.png');
    animation: none;
    background-repeat: no-repeat;
    background-position: 0 0;
    background-size: auto 10px;
  }
}

@keyframes wave-move {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.p-wave {
  width: 100%;
  margin: 0;
  overflow: hidden;
  position: relative;
}

.p-wave img {
  width: 100%;
  height: auto;
  display: block;
}

/* 医師からの推奨コメント */
.p-doctor {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 80px 40px;
  gap: 40px;
  width: 100%;
  margin: 0 auto;
  margin-bottom: 0;
  background-color: var(--color-bg-base);
}

.p-doctor__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0;
  gap: 40px;
  width: 1020px;
  max-width: 100%;
  margin: 0 auto;
}

.p-doctor__banner-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0;
  gap: 10px;
  width: 100%;
  max-width: 1020px;
  height: auto;
  flex: none;
  order: 0;
  flex-grow: 0;
}

.p-doctor__banner {
  display: block;
  width: 100%;
  max-width: 1020px;
  height: auto;
  margin: 0;
  text-align: center;
  flex: none;
  order: 0;
  flex-grow: 0;
}

.p-doctor__banner picture {
  display: block;
  width: 100%;
  height: 100%;
}

.p-doctor__banner img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.p-doctor__source {
  width: 100%;
  max-width: 1020px;
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 150%;
  text-align: right;
  color: #999999;
  margin: 0;
}

.p-doctor__title {
  width: 100%;
  max-width: 1020px;
  height: auto;
  min-height: 34px;
  font-weight: 700;
  font-size: 2.4rem;
  line-height: 140%;
  text-align: center;
  color: #333333;
  margin: 0;
}

.p-doctor__comments {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  flex-wrap: wrap;
  padding: 0;
  gap: 40px;
  width: 100%;
  max-width: 1020px;
  height: auto;
  margin: 0;
}

.p-doctor__comment {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  padding: 0;
  gap: 30px;
  width: calc((100% - 40px) / 2);
  min-width: 300px;
  /* max-width: 490px; */
  height: auto;
  flex: 1 1 auto;
}

.p-doctor__comment-img {
  width: 150px;
  height: 160px;
  object-fit: cover;
  border-radius: 0;
  flex-shrink: 0;
  display: block;
}

.p-doctor__comment-text {
  width: auto;
  max-width: 100%;
  flex: 1;
  min-width: 0;
  height: auto;
  margin: 0;
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 170%;
  color: #333333;
}

.p-doctor__comment-signature {
  font-weight: 700;
  margin-top: 0.6rem; /* 6px */
  display: block;
}

.p-doctor__note {
  width: 100%;
  max-width: 1020px;
  height: auto;
  margin: 0;
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 150%;
  text-align: right;
  color: #999999;
}

/* 中間サイズ（1455px以下）用：.p-doctor */
@media (max-width: 1455px) {
  .p-doctor {
    padding: 80px 40px;
  }
}

/* 中間サイズ（1024px以下）用：.p-doctor */
@media (max-width: 1024px) {
  .p-doctor__inner {
    width: 100%;
  }
  
  .p-doctor__banner-wrapper {
    width: 100%;
    height: auto;
  }
  
  .p-doctor__banner {
    width: 100%;
    height: auto;
  }
  
  .p-doctor__source {
    text-align: right;
  }
  
  .p-doctor__title {
    width: 100%;
    height: auto;
  }
  
  .p-doctor__comments {
    width: 100%;
    gap: 30px;
  }
  
  .p-doctor__comment {
    width: calc((100% - 30px) / 2);
    min-width: 280px;
  }
  
  .p-doctor__note {
    width: 100%;
    /* text-align: center; */
  }
}

/* タブレット用：.p-doctor */
@media (min-width: 521px) and (max-width: 768px) {
  .p-doctor {
    padding: 60px 40px;
  }
  
  .p-doctor__inner {
    width: 100%;
    gap: 30px;
  }
  
  .p-doctor__banner-wrapper {
    width: 100%;
    height: auto;
  }
  
  .p-doctor__banner {
    width: 100%;
    height: auto;
  }
  
  .p-doctor__source {
    text-align: right;
  }
  
  .p-doctor__title {
    width: 100%;
    height: auto;
  }
  
  .p-doctor__comments {
    /* width: 100%; */
    /* flex-direction: column; */
    /* align-items: center; */
    gap: 30px;
  }
  
  .p-doctor__comment {
    width: 100%;
    /* max-width: 490px; */
    /* min-width: auto;
    flex-direction: column;
    align-items: center;
    text-align: center; */
  }
  
  .p-doctor__comment-img {
    width: 120px;
    height: 128px;
  }
  
  .p-doctor__comment-text {
    width: 100%;
    /* flex: none; */
  }
  
  .p-doctor__note {
    width: 100%;
    /* text-align: center; */
  }
}

/* スマホ用：.p-doctor */
@media (max-width: 520px) {
  .p-doctor {
    padding: 40px 20px;
  }
  
  .p-doctor__inner {
    width: 100%;
    gap: 30px;
  }
  
  .p-doctor__banner-wrapper {
    width: 100%;
    height: auto;
  }
  
  .p-doctor__banner {
    width: 100%;
    height: auto;
  }
  
  .p-doctor__source {
    width: 100%;
    height: auto;
    text-align: center;
    font-size: 1.4rem;
  }
  
  .p-doctor__title {
    width: 100%;
    height: auto;
    font-size: 2.4rem;
  }
  
  .p-doctor__comments {
    width: 100%;
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }
  
  .p-doctor__comment {
    width: 100%;
    max-width: 490px;
    min-width: auto;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
    text-align: left;
    gap: 16px;
  }
  
  .p-doctor__comment-img {
    width: 90px;
    height: 96px;
  }
  
  .p-doctor__comment-text {
    width: 100%;
    font-size: 1.4rem;
  }
  
  .p-doctor__note {
  }
}

/* 嬉しいポイント */
.p-points {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 80px 40px;
  gap: 60px;
  width: 100%;
  /* max-width: 1440px; */
  margin: 0 auto;
  margin-bottom: 0;
  background: #FFFFE3;
}

.p-points__inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0;
  gap: 50px;
  width: 1020px;
  max-width: 100%;
  margin: 0 auto;
}

.p-points__title {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: baseline;
  padding: 0;
  width: 1020px;
  max-width: 100%;
  height: 71.14px;
  margin: 0;
  text-align: center;
}

.p-points__title picture {
  display: block;
  /* width: 655px; */
  max-width: 655px;
  /* height: 71px; */
}

.p-points__title img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.p-points__grid {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0;
  gap: 50px;
  width: 1020px;
  max-width: 100%;
  height: auto;
}

.p-points__grid-row {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  flex-wrap: wrap;
  padding: 0;
  gap: 60px;
  width: 1020px;
  max-width: 100%;
  height: auto;
}

.p-points__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0;
  gap: 16px;
  width: calc((100% - 60px) / 2);
  min-width: 300px;
  max-width: 480px;
  height: auto;
  background: transparent;
  border: none;
  border-radius: 0;
  position: relative;
  flex: 1 1 auto;
}

.p-points__item-header {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 0;
  gap: 16px;
  width: 100%;
  max-width: 480px;
  height: auto;
  min-height: 82.85px;
}

.p-points__number-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0;
  gap: 5px;
  width: 47px;
  height: 83px;
  flex-shrink: 0;
}

.p-points__number {
  width: 47px;
  height: 83px;
  display: block;
  object-fit: contain;
}

.p-points__item-title {
  width: 416.92px;
  max-width: 100%;
  height: 34px;


  font-weight: 700;
  font-size: 2.4rem;
  line-height: 140%;
  color: #B34784;
  margin: 0;
  flex: 1;
}

.p-points__item-content {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
  padding: 0;
  gap: 20px;
  width: 100%;
  max-width: 480px;
  height: auto;
}

.p-points__item-text {
  width: auto;
  max-width: 100%;
  flex: 1;
  min-width: 0;
  height: auto;


  font-weight: 400;
  font-size: 1.6rem;
  line-height: 170%;
  color: #333333;
  margin: 0;
  flex: 1;
}

.p-points__item-note {
  font-size: 14px;
  color: #666;
  display: block;
  margin-top: 4px;
}

.p-points__item-icon {
  width: 170px;
  height: 170px;
  max-width: 100%;
  object-fit: contain;
  border-radius: 9.47368px;
  flex-shrink: 0;
  display: block;
  margin: 0;
}

/* 中間サイズ（1024px以下）用：.p-points */
@media (max-width: 1024px) {
  .p-points__inner {
    width: 100%;
  }
  
  .p-points__title {
    width: 100%;
    height: auto;
  }
  
  .p-points__title picture {
    width: 100%;
    height: auto;
  }
  
  .p-points__grid {
    width: 100%;
  }
  
  .p-points__grid-row {
    width: 100%;
    gap: 40px;
  }
  
  .p-points__item {
    width: calc((100% - 40px) / 2);
    min-width: 280px;
  }
  
  .p-points__item-header {
    width: 100%;
  }
  
  .p-points__item-content {
    width: 100%;
  }
  
  .p-points__item-text {
    width: auto;
    flex: 1;
  }
}

/* タブレット用：.p-points */
@media (min-width: 521px) and (max-width: 768px) {
  .p-points {
    padding: 60px 40px;
  }
  
  .p-points__inner {
    width: 100%;
    gap: 40px;
  }
  
  .p-points__title {
    width: 100%;
    height: auto;
  }
  
  .p-points__title picture {
    width: 100%;
    max-width: 655px;
    height: auto;
  }
  
  .p-points__grid {
    width: 100%;
    gap: 30px;
  }
  
  .p-points__grid-row {
    width: 100%;
    flex-direction: row;
    align-items: center;
    gap: 30px;
  }
  
  .p-points__item {
    width: 100%;
    max-width: 100%;
    min-width: auto;
  }
  
  .p-points__item-header {
    width: 100%;
    max-width: 100%;
  }
  
  .p-points__item-content {
    width: 100%;
    max-width: 100%;
    flex-direction: row;
    align-items: center;
    gap: 12px;
  }
  
  .p-points__item-icon {
    width: 90px;
    height: 90px;
    max-width: 170px;
  }
}

/* スマホ用：.p-points */
@media (max-width: 520px) {
  .p-points {
    padding: 40px 20px;
  }
  
  .p-points__inner {
    width: 100%;
    gap: 40px;
  }
  
  .p-points__title {
    width: 100%;
    height: auto;
  }
  
  .p-points__title picture {
    width: 100%;
    max-width: 655.3px;
    height: auto;
  }
  
  .p-points__grid {
    width: 100%;
    gap: 2rem;
  }
  
  .p-points__grid-row {
    width: 100%;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
  }
  
  .p-points__item {
    width: 100%;
    max-width: 480px;
    min-width: auto;
  }
  
  .p-points__item-header {
    width: 100%;
  }
  
  .p-points__item-content {
    width: 100%;
    flex-direction: row;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 12px;
  }
  
  .p-points__item-text {
    width: 100%;
    font-size: 1.4rem;
  }
  
  .p-points__item-icon {
    width: 60px;
    height: 60px;
  }
}

/* 料金体系ガイド（PC版は完成のため、デフォルトおよび min-width 系のスタイルは変更しない。SPは max-width: 520px 内でのみ調整する） */
.p-price-guide {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 80px 40px;
  gap: 40px;
  width: 100%;
  margin: 0 auto;
  box-sizing: border-box;
  background-color: #F6FFE5;
}

.p-price-guide__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0;
  gap: 40px;
  width: 1020px;
  max-width: 100%;
  margin: 0 auto;
}

.p-price-guide__header {
  text-align: center;
  margin: 0;
}

.p-price-guide__label {
  font-size: 2.4rem;
  font-weight: 700;
  margin: 0 0 8px 0;
  display: block;
  letter-spacing: -0.01em;
  background: linear-gradient(90deg, #178E99 23.53%, #458F24 76.86%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.p-price-guide__title {
  font-size: 3.2rem;
  font-weight: 700;
  margin: 0 0 60px 0;
  line-height: 1.4;
  text-align: center;
  letter-spacing: -0.01em;
  display: block;
  background: linear-gradient(90deg, #178E99 23.53%, #458F24 76.86%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.p-price-guide__lead {
  font-weight: 700;
  font-size: 26px;
  line-height: 140%;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(90deg, #178E99 23.53%, #458F24 76.86%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.p-price-guide__formula {
  width: 100%;
  max-width: 100%;
}

.p-price-guide__formula picture,
.p-price-guide__formula img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.p-price-guide__steps-heading {
  font-size: 2.6rem;
  font-weight: 700;
  margin: 40px 0 0 0;
  text-align: center;
  line-height: 140%;
  display: block;
  background: linear-gradient(90deg, #178E99 23.53%, #458F24 76.86%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

/* PC・タブレット: 1スライド＝矢印±Step画像を横並び、3スライドが .p-price-guide__steps の列 */
.p-price-guide__steps-outer {
  width: 100%;
  min-width: 0;
  position: relative;
  overflow: hidden;
  margin-right: -32px;
  box-sizing: border-box;
}

.p-price-guide__steps-slide {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex: 1 1 auto;
  min-width: 0;
}

.p-price-guide__steps-arrow {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: auto;
  min-width: 44px;
  min-height: 44px;
  margin: 0;
  padding: 0;
  border: none;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  color: inherit;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.p-price-guide__steps-arrow:focus-visible {
  outline: 2px solid #178e99;
  outline-offset: 2px;
}

.p-price-guide__steps-arrow-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
}

/* 論理サイズ（2倍書き出し画像は下記で縮小） */
.p-price-guide__steps-arrow-img {
  display: block;
  width: auto;
  height: auto;
  max-width: 18px;
  max-height: 50px;
  object-fit: contain;
  pointer-events: none;
}

/* PC（769px以上）: Figma node 99-139 どおり、ステップ間の進行矢印のみ。戻り矢印は表示しない */
@media (min-width: 769px) {
  .p-price-guide__steps-arrow--prev {
    display: none;
  }

  .p-price-guide__steps-wrap {
    width: 100%;
    min-width: 0;
  }

  /* ステップ列どうし 10px。1 1 0 + min-width:0 で狭い幅でも均等縮小 */
  .p-price-guide__steps {
    gap: 10px;
    min-width: 0;
  }

  .p-price-guide__steps-slide {
    flex: 1 1 0;
    min-width: 0;
  }

  /* 列幅いっぱいにStep画像が伸びるよう、固定max-widthを解除 */
  .p-price-guide__step,
  .p-price-guide__step--3 {
    flex: 1 1 auto;
    min-width: 0;
    max-width: none;
  }

  /* Step3 吹き出し位置はベースで画像比率（640×1182）に同步。ここでは列内ボタン幅のみ均等分割 */
  .p-price-guide__step3-hotspot {
    flex: 1 1 0;
    min-width: 0;
    width: auto;
    max-width: none;
  }

  /* 装飾矢印は画像幅程度に（44pxターゲットは不要）。Step〜次Stepまでのレイアウト用 */
  .p-price-guide__steps-arrow {
    pointer-events: none;
    cursor: default;
    flex-shrink: 0;
    min-width: 0;
    width: auto;
  }

  .p-price-guide__steps-arrow:focus-visible {
    outline: none;
  }

  /*
   * Step3のスライドには「次へ」矢印が無いため、Step単体が列幅いっぱいに広がり画像だけ大きく見える。
   * 1・2列目と同じく「Step + gap10 + 矢印幅」相当を引いた幅に揃える（矢印画像 max-width 18px 前提）。
   */
  .p-price-guide__steps-slide:last-child {
    justify-content: flex-start;
  }

  .p-price-guide__steps-slide:last-child .p-price-guide__step--3 {
    flex: 1 1 auto;
    min-width: 0;
    width: calc(100% - 28px);
    max-width: calc(100% - 28px);
  }
}

.p-price-guide__steps {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  justify-content: center;
  flex-wrap: nowrap;
  gap: 10px;
  width: 100%;
}

.p-price-guide__step {
  flex: 1 1 auto;
  max-width: 320px;
  padding: 0;
  background: transparent;
  border: none;
  border-radius: 0;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.p-price-guide__step--3 {
  flex: 1 1 auto;
  max-width: 320px;
}

.p-price-guide__step-header {
  margin: 0;
}

.p-price-guide__step-badge {
  display: inline-block;
  font-size: 1.2rem;
  font-weight: 700;
  color: #009b91;
  margin-bottom: 4px;
}

.p-price-guide__step-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #009b91;
  margin: 0;
  line-height: 1.3;
}

.p-price-guide__step-body {
  flex: 1;
  min-height: 0;
}

.p-price-guide__step-body img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

.p-price-guide__step-footer {
  font-size: 1.4rem;
  color: #333;
  margin: 0;
  line-height: 1.5;
}

.p-price-guide__step-note {
  font-size: 1.2rem;
  color: #666;
  margin: 0;
}

.p-price-guide__step > picture,
.p-price-guide__step > picture img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.p-price-guide__step3-img-wrap {
  position: relative;
  width: 100%;
}

.p-price-guide__step3-img-wrap picture,
.p-price-guide__step3-img-wrap img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  vertical-align: top;
  position: relative;
  z-index: 0;
}

/* 画像上の吹き出し部分に重なるクリック領域（デザイン基準高さ563に対する比率で追従） */
.p-price-guide__step3-hotspots {
  position: absolute;
  left: 0;
  top: calc(100% * 110 / 563);
  width: 100%;
  height: calc(100% * 65 / 563);
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: stretch;
  gap: calc(100% * 10 / 640);
  padding: 0 calc(100% * 35 / 640);
  pointer-events: none;
  z-index: 2;
  box-sizing: border-box;
}

.p-price-guide__step3-hotspot {
  flex: 1 1 0;
  width: auto;
  min-width: 0;
  height: 100%;
  pointer-events: auto;
  cursor: pointer;
  background: transparent;
  border: none;
  padding: 0;
  margin: 0;
  font-size: 0;
  text-indent: -9999px;
  overflow: hidden;
  display: block;
  position: relative;
  z-index: 1;
}

@media (max-width: 1024px) {
  .p-price-guide__inner {
    width: 100%;
  }
}

@media (max-width: 768px) {
  /* 768px以下はSP同等: Stepsは横スクロールカルーセル（521〜768でも縦積みにしない） */
  /* SP: Figma node 81-1070 およびSPデザイン画像に合わせた調整 */
  .p-price-guide {
    padding: 32px 16px 40px;
    gap: 0;
  }

  .p-price-guide__inner {
    gap: 0;
    width: 100%;
    max-width: 100%;
    min-width: 0; /* 子の横スクロールが効くよう幅を親で抑える */
    overflow: visible;
  }

  .p-price-guide__header {
    margin-bottom: 24px;
  }

  .p-price-guide__label {
    font-weight: 700;
    font-size: 16px;
    line-height: 140%;
    margin-bottom: 4px;
  }

  .p-price-guide__title {
    font-weight: 700;
    font-size: 26px;
    line-height: 140%;
    margin-bottom: 40px;
  }

  .p-price-guide__lead {
    font-size: 26px;
    font-weight: 700;
    line-height: 140%;
    margin: 0;
  }

  .p-price-guide__formula {
    margin-bottom: 40px;
  }

  .p-price-guide__steps-heading {
    font-weight: 700;
    font-size: 20px;
    line-height: 140%;
    margin: 0 0 30px 0;
  }  

  /* SP: カルーセルだけセクション横padding(16px)を相殺し広げ、画面端からexactに35pxガター（矢印エリア） */
  /* カルーセル幅拡張時にページ横スクロールが出ないよう抑止 */
  .p-price-guide {
    overflow-x: hidden;
  }

  .p-price-guide__steps-outer {
    width: calc(100% + 32px);
    max-width: none;
    margin-left: -16px;
    margin-right: -16px;
    min-width: 0;
    box-sizing: border-box;
    overflow: hidden;
  }

  .p-price-guide__steps-slide {
    display: grid;
    grid-template-columns: 35px 1fr 35px;
    grid-template-rows: auto;
    align-items: center;
    justify-items: stretch;
    column-gap: 0;
    flex: 0 0 33.333%;
    width: 33.333%;
    min-width: 33.333%;
    max-width: 33.333%;
    box-sizing: border-box;
    scroll-snap-align: start;
    scroll-snap-stop: always;
  }

  .p-price-guide__steps-wrap .p-price-guide__steps-arrow--prev {
    grid-column: 1;
    grid-row: 1;
    justify-self: center;
  }

  .p-price-guide__steps-wrap .p-price-guide__steps-arrow--next {
    grid-column: 3;
    grid-row: 1;
    justify-self: center;
  }

  .p-price-guide__steps-wrap .p-price-guide__steps-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 35px;
    min-width: 0;
    height: auto;
    min-height: 44px;
    margin: 0;
    padding: 0;
    border: none;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    color: inherit;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
  }

  .p-price-guide__steps-wrap {
    width: 100%;
    min-width: 0;
    overflow-x: auto;
    overflow-y: visible;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    touch-action: pan-x pan-y;
    overscroll-behavior-x: contain;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
  }

  .p-price-guide__steps-wrap::-webkit-scrollbar {
    display: none;
  }

  .p-price-guide__steps-wrap .p-price-guide__steps {
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 0;
    width: 300%;
    min-width: 0;
    overflow: visible;
  }

  .p-price-guide__steps-wrap .p-price-guide__steps-slide .p-price-guide__step {
    grid-column: 2;
    grid-row: 1;
    justify-self: center;
    width: 100%;
    min-width: 0;
    min-height: 200px;
    padding: 0;
    border: none;
    border-radius: 0;
    box-sizing: border-box;
  }

  .p-price-guide__steps-wrap .p-price-guide__steps-slide .p-price-guide__step > picture,
  .p-price-guide__steps-wrap .p-price-guide__steps-slide .p-price-guide__step > picture img {
    width: 100%;
    min-height: 200px;
    object-fit: contain;
    vertical-align: top;
  }

  .p-price-guide__steps-wrap .p-price-guide__steps-slide .p-price-guide__step3-img-wrap picture,
  .p-price-guide__steps-wrap .p-price-guide__steps-slide .p-price-guide__step3-img-wrap img {
    width: 100%;
    min-height: 200px;
    object-fit: contain;
    vertical-align: top;
  }

  /* SPも基準高さ563で追従（PCと同系の割合指定） */
  .p-price-guide__step3-hotspots {
    top: calc(100% * 110 / 563);
    height: calc(100% * 60 / 563);
    padding: 0 calc(100% * 16 / 640);
    gap: calc(100% * 4 / 640);
    align-items: stretch;
  }

  /* gap 2つ分（SPは 4px相当を幅比）を引いて3等分 */
  .p-price-guide__step3-hotspot {
    flex: 0 0 calc((100% - (100% * 8 / 640)) / 3);
    width: calc((100% - (100% * 8 / 640)) / 3);
    min-width: 0;
    max-width: none;
    height: 100%;
  }
}

/* 安心サポート */
.p-support {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 80px 40px;
  gap: 40px;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  margin-bottom: 0;
  box-sizing: border-box;
}

.p-support__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0;
  gap: 40px; /* 40px */
  width: 1020px;
  max-width: 100%;
  margin: 0 auto;
}

/* ヒーロー部分 */
.p-support__hero {
  width: 1020px;
  max-width: 100%;
  /* height: 690px; */
  margin: 0;
  position: relative;
  box-sizing: border-box;
}

.p-support__hero-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

/* カード部分 */
.p-support__cards {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  padding: 0;
  gap: 40px;
  width: 1020px;
  max-width: 100%;
  height: auto;
}

.p-support__card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0;
  gap: 16px;
  width: 313px;
  max-width: 100%;
  height: auto;
  flex: 1;
}

.p-support__card-header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0;
  gap: 10px;
  width: 313px;
  max-width: 100%;
  height: auto;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
}

@media (min-width: 521px) {
  .p-support__card-header {
    cursor: default;
  }
}

.p-support__card-title {
  /* width: 313px; */
  max-width: 100%;
  height: auto;
  display: block;
}

.p-support__card-title-img {
  width: 100%;
  height: auto;
  display: block;
}

.p-support__card-arrow {
  box-sizing: border-box;
  width: 15px;
  height: 12px;
  border: 13px solid #199AA6;
  margin-left: 60px;
  display: none; /* デフォルトでは非表示 */
}

.p-support__card-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0;
  gap: 1.6rem; /* 16px */
  width: 100%;
}

.p-support__card-img {
  width: 313.33px;
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 6px 6px 0px #C2EFF2;
  display: block;
}

.p-support__card-text {
  width: 313.33px;
  max-width: 100%;
  height: auto;
  font-weight: 400;
  font-size: 1.6rem; /* 16px */
  line-height: 170%;
  color: #333333;
  margin: 0;
}

/* 中間サイズ（1024px以下）用：.p-support */
@media (max-width: 1024px) {
  .p-support__inner {
    width: 100%;
  }
  
  .p-support__hero {
    width: 100%;
  }
  
  .p-support__cards {
    width: 100%;
  }
  
  .p-support__card {
    width: 100%;
  }
  
  .p-support__card-header {
    width: 100%;
  }
  
  .p-support__card-title {
    width: 100%;
  }
  
  .p-support__card-img {
    width: 100%;
  }
  
  .p-support__card-text {
    width: 100%;
  }
}

/* タブレット用：.p-support */
@media (min-width: 521px) and (max-width: 768px) {
  .p-support {
    padding: 60px 40px;
  }
  
  .p-support__inner {
    width: 100%;
  }
  
  .p-support__hero {
    width: 100%;
    height: auto;
  }
  
  .p-support__hero-img {
    width: 100%;
    height: auto;
  }
  
  .p-support__cards {
    width: 100%;
    flex-direction: column;
    align-items: center;
  }
  .p-support__card-title {
    width: 100%;
    max-width: 334px;
  }
  .p-support__card-content {
    width: 100%;
    flex-direction: row;
    gap: 24px;
  }
  .p-support__card-img {
    width: 100%;
    max-width: 334px;
  }
  .p-support__item {
    width: 100%;
    max-width: 313px;
  }
  .p-support__item-title {
    width: 100%;
  }
  
  .p-support__item-img {
    width: 100%;
  }
  
  .p-support__item-text {
    width: 100%;
  }
}

/* スマホ用：.p-support */
@media (max-width: 520px) {
  .p-support {
    padding: 40px 20px;
  }
  
  .p-support__inner {
    width: 100%;
    gap: 30px;
  }
  
  .p-support__hero {
    width: 100%;
    height: auto;
  }
  
  .p-support__hero-img {
    width: 100%;
    height: auto;
  }
  
  .p-support__cards {
    width: 100%;
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
  
  .p-support__item {
    width: 100%;
    max-width: 313.33px;
  }
  
  .p-support__item-title {
    width: 100%;
  }
  
  .p-support__item-img {
    width: 100%;
  }
  
  .p-support__item-text {
    width: 100%;
  }
  
  .p-support__hero {
    min-height: auto;
  }
  
  .p-support__card {
    width: 100%;
    gap: 0;
  }
  
  .p-support__card-header {
    width: 100%;
  }
  
  .p-support__card-title {
    width: 100%;
  }
  
  .p-support__card-content {
    display: none;
    padding-top: 1rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.6rem;
    width: 100%;
    padding-bottom: 40px;
    animation: slideDown 0.3s ease;
  }
  
  .p-support__card-header[aria-expanded="true"] .p-support__card-arrow {
    transform: rotate(180deg);
  }

  .p-support__card-header[aria-expanded="true"] + .p-support__card-content {
    display: flex;
  }
  
  @keyframes slideDown {
    from {
      opacity: 0;
      transform: translateY(-10px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
}

/* 製品紹介 */
.p-product {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 80px 40px;
  gap: 60px;
  width: 100%;
  margin: 0 auto;
  background: #EDFAFF;
  box-sizing: border-box;
}

.p-product__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0px;
  gap: 60px;
  width: 1020px;
  max-width: 100%;
  margin: 0 auto;
}

.p-product__header {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 0px;
  gap: 16px;
  /* width: 651px; */
  max-width: 100%;
  height: 116px;
}

.p-product__icon {
  width: 120px;
  height: 116px;
  flex-shrink: 0;
}

.p-product__title {
  max-width: 100%;
  font-weight: 700;
  font-size: 2.4rem;
  line-height: 140%;
  text-align: center;
  letter-spacing: -0.01em;
  background: linear-gradient(90deg, #0096E6 3.3%, #005BAC 97.86%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  margin: 0;
}

.p-product__title-large {
  font-size: 4rem;
  display: inline-block;
  margin-top: 16px;
}

.p-product__content {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 60px 40px;
  gap: 40px;
  isolation: isolate;
  width: 1020px;
  max-width: 100%;
  background: #FFFFFF;
  border: 1px solid #E6E6E6;
  border-radius: 12px;
}

.p-product__image {
  width: 801px;
  max-width: 100%;
  height: auto;
  display: block;
  z-index: 0;
}

.p-product__detail {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  padding: 0px;
  gap: 40px;
  width: 940px;
  max-width: 100%;
  z-index: 1;
}

.p-product__gallery {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0px;
  gap: 16px;
  width: 600px;
  max-width: 100%;
}

.p-product__gallery-main {
  width: 600px;
  max-width: 100%;
  height: 464.67px;
  position: relative;
}

.p-product__gallery-main-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 1px solid #E6E6E6;
  border-radius: 0;
}

.p-product__gallery-thumbs {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 0px;
  gap: 9px;
  width: 600px;
  max-width: 100%;
  height: 60.22px;
}

.p-product__gallery-thumb {
  box-sizing: border-box;
  width: 78.14px;
  height: 60.22px;
  background: #333333;
  border: 1px solid #EEEEEE;
  padding: 0;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.p-product__gallery-thumb--active {
  border: 1px solid #FF5353;
}

.p-product__gallery-thumb img {
  position: absolute;
  height: 58.22px;
  left: 1px;
  right: 1px;
  top: 1px;
  width: calc(100% - 2px);
  height: calc(100% - 2px);
  object-fit: cover;
}

.p-product__server {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px; /* 60px */
  width: 100%;
  max-width: 1440px;
  height: auto;
  background: #EDFAFF;
  box-sizing: border-box;
}

.p-product__server .tab_wrap {
  width: 100%;
  max-width: 1020px;
  padding: 60px 40px;
  border: 1px solid #E6E6E6;
  border-radius: 10px;
  background: #FFFFFF;
}

.p-product__description-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0px;
  gap: 30px;
  width: 300px;
  max-width: 100%;
}

.p-product__desc {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0px;
  gap: 3rem; /* 30px */
  width: 300px;
  max-width: 100%;
  height: auto;
  flex: 1;
}

.p-product__desc-award {
  width: 171px;
  height: 52.96px;
  position: relative;
}

.p-product__desc-award-img {
  width: auto;
  height: 31.95px;
  display: block;
}

.p-product__desc-award-text {
  position: absolute;
  width: 156.74px;
  height: 16px;
  left: 0px;
  top: 36.96px;
  font-weight: 350;
  font-size: 1.1rem; /* 11px */
  line-height: 16px;
  display: flex;
  align-items: center;
  color: #555555;
  margin: 0;
}

.p-product__desc-title {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 0px;
  gap: 1rem; /* 10px */
  width: 234.84px;
  max-width: 100%;
  height: 45px;
}

.p-product__desc-title-badge {
  width: 40px;
  height: 40px;
  background: #FF5353;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  flex-shrink: 0;
}

.p-product__desc-title-badge-text {
  position: absolute;
  width: 27.84px;
  height: 28px;
  left: calc(50% - 27.84px/2 + 0.09px);
  top: 6px;
  font-weight: 350;
  font-size: 1.1rem; /* 11px */
  line-height: 12px;
  display: flex;
  align-items: center;
  text-align: center;
  letter-spacing: 1px;
  color: #FFFFFF;
}

.p-product__desc-title-text {
  width: 184.84px;
  height: 45px;
  font-weight: 500;
  font-size: 3rem; /* 30px */
  line-height: 45px;
  display: flex;
  align-items: center;
  letter-spacing: 1px;
  color: #333333;
  margin: 0;
}

.p-product__desc-badges {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 0px;
  gap: 0.5rem; /* 5px */
  width: 228.89px;
  max-width: 100%;
  height: 21px;
}

.p-product__desc-badge {
  height: 21px;
  padding: 2px 5px;
  font-weight: 350;
  font-size: 1.1rem; /* 11px */
  line-height: 15px;
  display: flex;
  align-items: center;
  letter-spacing: 1px;
  color: #222222;
}

.p-product__desc-badge--blue {
  width: 58px;
  background: #CCE5FF;
}

.p-product__desc-badge--pink {
  width: 165.89px;
  background: #F8DCEA;
}

.p-product__desc-text {
  width: 300px;
  max-width: 100%;
  height: auto;
  font-weight: 350;
  font-size: 1.6rem; /* 16px */
  line-height: 30px;
  display: flex;
  align-items: center;
  letter-spacing: 1px;
  color: #222222;
  margin: 0;
}

.p-product__info {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  padding: 0px;
  gap: 4rem; /* 40px */
  width: 940px;
  max-width: 100%;
  height: auto;
  z-index: 2;
}

.p-product__info-support {
  width: 380px;
  max-width: 100%;
  height: 303px;
  position: relative;
}

.p-product__info-support-header {
  position: relative;
  margin-bottom: 1rem;
}

.p-product__info-support-header::before {
  content: '';
  position: absolute;
  height: 219px;
  left: 0px;
  right: 560px;
  top: 0px;
  border-top: 1px solid #5CC0CF;
}

.p-product__info-support-title {
  position: absolute;
  width: 135.3px;
  height: 20px;
  left: 10px;
  top: 3px;
  background: #5CC0CF;
  padding: 3px 10px;
  font-weight: 350;
  font-size: 1.4rem; /* 14px */
  line-height: 20px;
  display: flex;
  align-items: center;
  letter-spacing: 1px;
  color: #FFFFFF;
  margin: 0;
}

.p-product__info-support-price {
  position: absolute;
  width: 250.18px;
  height: 40px;
  left: 10px;
  top: 24px;
  font-weight: 350;
  font-size: 1.4rem; /* 14px */
  line-height: 20px;
  display: flex;
  align-items: center;
  letter-spacing: 1px;
  color: #222222;
  margin: 0;
}

.p-product__info-support-note {
  position: absolute;
  width: 233.49px;
  height: 15px;
  left: 10px;
  top: 74px;
  font-weight: 350;
  font-size: 1rem; /* 10px */
  line-height: 15px;
  display: flex;
  align-items: center;
  letter-spacing: 1px;
  color: #555555;
  margin: 0;
}

.p-product__info-support-desc {
  box-sizing: border-box;
  position: absolute;
  height: 90px;
  left: 10px;
  right: 10px;
  top: 129px;
  border: 1px solid #A0A0A0;
  border-radius: 5px;
  padding: 17px 11px;
}

.p-product__info-support-desc-title {
  position: absolute;
  width: 180.34px;
  height: 20px;
  left: 0px;
  top: -9px;
  background: #FFFFFF;
  padding: 0 5px;
  font-weight: 350;
  font-size: 1.4rem; /* 14px */
  line-height: 20px;
  display: flex;
  align-items: center;
  letter-spacing: 1px;
  color: #5CC0CF;
  margin: 0;
}

.p-product__info-support-desc-text {
  position: absolute;
  width: 335.68px;
  height: 61px;
  left: 11px;
  top: 17px;
  font-weight: 350;
  font-size: 1.3rem; /* 13px */
  line-height: 21px;
  display: flex;
  align-items: center;
  letter-spacing: 1px;
  color: #222222;
  margin: 0;
}

.p-product__info-color {
  width: 380px;
  max-width: 100%;
  height: 44px;
  position: relative;
}

.p-product__info-color-header {
  position: relative;
}

.p-product__info-color-header::before {
  content: '';
  position: absolute;
  height: 44px;
  left: 0px;
  right: 560px;
  top: 259px;
  border-top: 1px solid #5CC0CF;
}

.p-product__info-color-title {
  position: absolute;
  width: 88.25px;
  height: 20px;
  left: 10px;
  top: 3px;
  background: #5CC0CF;
  padding: 3px 10px;
  font-weight: 350;
  font-size: 1.4rem; /* 14px */
  line-height: 20px;
  display: flex;
  align-items: center;
  letter-spacing: 1px;
  color: #FFFFFF;
  margin: 0;
}

.p-product__info-color-text {
  position: absolute;
  width: 135.07px;
  height: 20px;
  left: 10px;
  top: 24px;
  font-weight: 350;
  font-size: 1.4rem; /* 14px */
  line-height: 20px;
  display: flex;
  align-items: center;
  letter-spacing: 1px;
  color: #222222;
  margin: 0;
}

.p-product__info-spec {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0px;
  gap: 1rem; /* 10px */
  width: 520px;
  max-width: 100%;
  height: 262px;
  flex: 1;
}

.p-product__info-spec-header {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 3px 220px;
  gap: 1rem; /* 10px */
  width: 520px;
  height: 26px;
  background: #505152;
  font-weight: 350;
  font-size: 1.4rem; /* 14px */
  line-height: 20px;
  display: flex;
  align-items: center;
  text-align: center;
  letter-spacing: 1px;
  color: #FFFFFF;
}

.p-product__info-spec-table {
  width: 520px;
  max-width: 100%;
  height: 226px;
  border-collapse: collapse;
  border: 1px solid #EEEEEE;
}

.p-product__info-spec-table tr {
  display: flex;
  flex-direction: row;
  border-bottom: 1px solid #EEEEEE;
}

.p-product__info-spec-table th {
  box-sizing: border-box;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 7px 19px;
  gap: 1rem; /* 10px */
  width: 89px;
  min-width: 89px;
  height: 45.2px;
  background: #EEEEEE;
  font-weight: 350;
  font-size: 1.2rem; /* 12px */
  line-height: 12px;
  text-align: center;
  letter-spacing: 1px;
  color: #222222;
  border: none;
  margin: 0;
}

.p-product__info-spec-table td {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 10px;
  gap: 1rem; /* 10px */
  width: 430px;
  flex: 1;
  height: auto;
  min-height: 35px;
  font-weight: 350;
  font-size: 1.2rem; /* 12px */
  line-height: 15px;
  letter-spacing: 1px;
  color: #222222;
  border: none;
  margin: 0;
}

.p-product__arrows {
  position: relative;
  width: 940px;
  max-width: 100%;
  height: 40px;
  z-index: 3;
}

.p-product__arrow {
  position: absolute;
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
}

.p-product__arrow--prev {
  left: 42px;
  top: 445.46px;
}

.p-product__arrow--next {
  left: 589px;
  top: 445.46px;
}

.p-product__arrow img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.p-product__award {
  width: 171px;
  height: 52.96px;
  position: relative;
}

.p-product__award-img {
  position: absolute;
  height: 31.95px;
  left: 0px;
  right: 129px;
  top: 0px;
  width: auto;
  height: 31.95px;
}

.p-product__note {
  position: absolute;
  width: 156.74px;
  height: 16px;
  left: 0px;
  top: 36.96px;


  font-weight: 350;
  font-size: 1.1rem;
  line-height: 16px;
  display: flex;
  align-items: center;
  color: #555555;
  margin: 0;
}

.p-product__name {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0px;
  gap: 20px;
  width: 234.84px;
  max-width: 100%;
}

.p-product__name-badge {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 0px;
  gap: 10px;
  width: 234.84px;
  max-width: 100%;
  height: 45px;
  position: relative;
}

.p-product__name-badge::before {
  content: '';
  width: 40px;
  height: 40px;
  background: #FF5353;
  border-radius: 20px;
  flex-shrink: 0;
}

.p-product__name-badge-text {
  position: absolute;
  width: 27.84px;
  height: 28px;
  left: calc(50% - 27.84px/2 + 0.09px);
  top: 6px;


  font-weight: 350;
  font-size: 1.1rem;
  line-height: 12px;
  display: flex;
  align-items: center;
  text-align: center;
  letter-spacing: 1px;
  color: #FFFFFF;
}

.p-product__name-title {
  width: 184.84px;
  height: 45px;


  font-weight: 500;
  font-size: 3.0rem;
  line-height: 45px;
  display: flex;
  align-items: center;
  letter-spacing: 1px;
  color: #333333;
  margin: 0;
}

.p-product__name-tags {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 0px;
  gap: 5px;
  width: 228.89px;
  max-width: 100%;
  height: 21px;
}

.p-product__name-tag {
  position: relative;
  width: 58px;
  height: 21px;
  background: #CCE5FF;
  flex-shrink: 0;
}

.p-product__name-tag--pink {
  width: 165.89px;
  background: #F8DCEA;
}

.p-product__name-tag::after {
  content: attr(data-label);
  position: absolute;
  width: 48.35px;
  height: 16px;
  left: 5px;
  top: 2px;


  font-weight: 350;
  font-size: 1.1rem;
  line-height: 15px;
  display: flex;
  align-items: center;
  letter-spacing: 1px;
  color: #222222;
}

.p-product__name-tag--pink::after {
  width: 156.21px;
}

.p-product__description {
  width: 300px;
  max-width: 100%;


  font-weight: 350;
  font-size: 1.6rem;
  line-height: 30px;
  display: flex;
  align-items: center;
  letter-spacing: 1px;
  color: #222222;
  margin: 0;
}

.p-product__info {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  padding: 0px;
  gap: 40px;
  width: 940px;
  max-width: 100%;
  z-index: 2;
}

.p-product__price {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0px;
  gap: 0px;
  width: 380px;
  max-width: 100%;
  height: 303px;
  position: relative;
}

.p-product__price-section {
  position: relative;
  width: 100%;
  height: 219px;
  border-top: 1px solid #5CC0CF;
  padding-top: 24px;
}

.p-product__price-header {
  position: absolute;
  width: 155px;
  height: 26px;
  left: 10px;
  top: -10px;
  background: #5CC0CF;
}

.p-product__price-label {
  position: absolute;
  width: 135.3px;
  height: 20px;
  left: 10px;
  top: 3px;


  font-weight: 350;
  font-size: 1.4rem;
  line-height: 20px;
  display: flex;
  align-items: center;
  letter-spacing: 1px;
  color: #FFFFFF;
}

.p-product__price-text {
  position: absolute;
  width: 250.18px;
  height: 40px;
  left: 10px;
  top: 24px;


  font-weight: 350;
  font-size: 1.4rem;
  line-height: 20px;
  display: flex;
  align-items: center;
  letter-spacing: 1px;
  color: #222222;
  margin: 0;
}

.p-product__price-note {
  position: absolute;
  width: 233.49px;
  height: 15px;
  left: 10px;
  top: 74px;


  font-weight: 350;
  font-size: 1.0rem;
  line-height: 15px;
  display: flex;
  align-items: center;
  letter-spacing: 1px;
  color: #555555;
  margin: 0;
}

.p-product__price-detail {
  box-sizing: border-box;
  position: absolute;
  height: 90px;
  left: 10px;
  right: 10px;
  top: 129px;
  border: 1px solid #A0A0A0;
  border-radius: 5px;
  padding: 17px 11px;
}

.p-product__price-detail-title {
  position: absolute;
  width: 180px;
  height: 20px;
  left: 11px;
  top: -9px;
  background: #FFFFFF;


  font-weight: 350;
  font-size: 1.4rem;
  line-height: 20px;
  display: flex;
  align-items: center;
  letter-spacing: 1px;
  color: #5CC0CF;
  margin: 0;
  padding: 0 5px;
}

.p-product__price-detail-text {
  position: absolute;
  width: 335.68px;
  height: 61px;
  left: 11px;
  top: 17px;


  font-weight: 350;
  font-size: 1.3rem;
  line-height: 21px;
  display: flex;
  align-items: center;
  letter-spacing: 1px;
  color: #222222;
  margin: 0;
}

.p-product__color-section {
  position: relative;
  width: 100%;
  height: 44px;
  border-top: 1px solid #5CC0CF;
  padding-top: 24px;
  margin-top: 40px;
}

.p-product__color-header {
  position: absolute;
  width: 107.91px;
  height: 26px;
  left: 10px;
  top: -10px;
  background: #5CC0CF;
}

.p-product__color-label {
  position: absolute;
  width: 88.25px;
  height: 20px;
  left: 10px;
  top: 3px;


  font-weight: 350;
  font-size: 1.4rem;
  line-height: 20px;
  display: flex;
  align-items: center;
  letter-spacing: 1px;
  color: #FFFFFF;
}

.p-product__color-text {
  position: absolute;
  width: 135.07px;
  height: 20px;
  left: 10px;
  top: 24px;


  font-weight: 350;
  font-size: 1.4rem;
  line-height: 20px;
  display: flex;
  align-items: center;
  letter-spacing: 1px;
  color: #222222;
  margin: 0;
}

.p-product__spec {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0px;
  gap: 0px;
  width: 520px;
  max-width: 100%;
  height: 262px;
}

.p-product__spec-header {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 3px 220px;
  gap: 10px;
  width: 520px;
  max-width: 100%;
  height: 26px;
  background: #505152;
}

.p-product__spec-title {
  width: 59.41px;
  height: 20px;


  font-weight: 350;
  font-size: 1.4rem;
  line-height: 20px;
  display: flex;
  align-items: center;
  text-align: center;
  letter-spacing: 1px;
  color: #FFFFFF;
  margin: 0;
}

.p-product__spec-content {
  width: 520px;
  max-width: 100%;
  height: 226px;
  border: 1px solid #EEEEEE;
  position: relative;
}

.p-product__spec-list {
  margin: 0;
  padding: 0;
  list-style: none;
  width: 100%;
  height: 100%;
}

.p-product__spec-list dt {
  box-sizing: border-box;
  position: absolute;
  width: 89px;
  height: 45.2px;
  left: 0px;
  background: #EEEEEE;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 7px 19px;
  gap: 10px;


  font-weight: 350;
  font-size: 1.2rem;
  line-height: 12px;
  text-align: center;
  letter-spacing: 1px;
  color: #222222;
  margin: 0;
}

.p-product__spec-list dt:nth-of-type(1) {
  top: 0px;
  padding: 7px 19px;
}

.p-product__spec-list dt:nth-of-type(2) {
  top: 45.2px;
  padding: 7px 32px;
}

.p-product__spec-list dt:nth-of-type(3) {
  top: 90.4px;
  padding: 7px 32px;
}

.p-product__spec-list dt:nth-of-type(4) {
  top: 135.6px;
  padding: 7px 19px;
}

.p-product__spec-list dt:nth-of-type(5) {
  top: 180.8px;
  padding: 7px 2px;
  width: 90px;
}

.p-product__spec-list dd {
  position: absolute;
  width: 430px;
  left: 90px;
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 10px;
  gap: 10px;
  font-weight: 350;
  font-size: 1.2rem;
  line-height: 15px;
  letter-spacing: 1px;
  color: #222222;
  margin: 0;
}

.p-product__spec-list dd:nth-of-type(1) {
  height: 50px;
  top: 0px;
  width: 269px;
}

.p-product__spec-list dd:nth-of-type(2) {
  height: 65px;
  top: 45.2px;
  width: 410px;
}

.p-product__spec-list dd:nth-of-type(3) {
  height: 35px;
  top: 90.4px;
  width: 130px;
}

.p-product__spec-list dd:nth-of-type(4) {
  height: 35px;
  top: 135.6px;
  width: 164px;
}

.p-product__spec-list dd:nth-of-type(5) {
  height: 35px;
  top: 180.8px;
  width: 201px;
}

/* 中間サイズ（1024px以下）用：.p-product */
@media (max-width: 1024px) {
  .p-product__inner {
    width: 100%;
    /* padding: 0 2rem; */
  }
  
  .p-product__content {
    width: 100%;
  }
  
  .p-product__image {
    width: 100%;
  }
  
  .p-product__detail {
    width: 100%;
  }
  
  .p-product__gallery {
    width: 100%;
  }
  
  .p-product__gallery-main {
    width: 100%;
  }
  
  .p-product__gallery-thumbs {
    width: 100%;
  }
  
  .p-product__description-wrapper {
    width: 100%;
  }
  
  .p-product__server {
    width: 100%;
  }
  
  .p-product__server .tab_wrap {
    width: 100%;
  }
  
  .p-product__info {
    width: 100%;
  }
  
  .p-product__info-support {
    width: 100%;
  }
  
  .p-product__info-color {
    width: 100%;
  }
  
  .p-product__info-spec {
    width: 100%;
  }
  
  .p-product__info-spec-table {
    width: 100%;
  }
  
  .p-product__price {
    width: 100%;
  }
  
  .p-product__spec {
    width: 100%;
  }
  
  .p-product__spec-content {
    width: 100%;
  }
}

/* タブレット用：.p-product */
@media (min-width: 521px) and (max-width: 768px) {
  .p-product {
    padding: 60px 40px;
  }
  
  .p-product__inner {
    width: 100%;
  }
  
  .p-product__content {
    width: 100%;
  }
  
  .p-product__image {
    width: 100%;
    max-width: 801px;
  }
  
  .p-product__detail {
    width: 100%;
    flex-direction: column;
  }
  
  .p-product__gallery {
    width: 100%;
  }
  
  .p-product__gallery-main {
    width: 100%;
    height: auto;
  }
  
  .p-product__gallery-thumbs {
    width: 100%;
    flex-wrap: wrap;
  }
  
  .p-product__description-wrapper {
    width: 100%;
  }
  
  .p-product__server {
    width: 100%;
  }
  
  .p-product__server .tab_wrap {
    max-width: 100%;
  }
  
  .p-product__info {
    width: 100%;
    flex-direction: column;
    gap: 2rem;
  }
  
  .p-product__info-support {
    width: 100%;
    height: auto;
    position: static;
  }
  
  .p-product__info-support-header::before {
    display: none;
  }
  
  .p-product__info-support-title,
  .p-product__info-support-price,
  .p-product__info-support-note,
  .p-product__info-support-desc {
    position: static;
    width: 100%;
    margin-bottom: 1rem;
  }
  
  .p-product__info-color {
    width: 100%;
    height: auto;
    position: static;
  }
  
  .p-product__info-color-header::before {
    display: none;
  }
  
  .p-product__info-color-title,
  .p-product__info-color-text {
    position: static;
    width: 100%;
    margin-bottom: 1rem;
  }
  
  .p-product__info-spec {
    width: 100%;
    height: auto;
  }
  
  .p-product__info-spec-table {
    width: 100%;
    height: auto;
  }
  
  .p-product__info-spec-table tr {
    flex-direction: column;
  }
  
  .p-product__info-spec-table th {
    width: 100%;
    min-width: auto;
  }
  
  .p-product__info-spec-table td {
    width: 100%;
  }
  
  .p-product__arrows {
    width: 100%;
    position: relative;
  }
  
  .p-product__arrow--prev {
    left: 0;
    top: 0;
  }
  
  .p-product__arrow--next {
    left: auto;
    right: 0;
    top: 0;
  }
  
  .p-product__price {
    width: 100%;
    height: auto;
  }
  
  .p-product__spec {
    width: 100%;
    height: auto;
  }
  
  .p-product__spec-content {
    width: 100%;
    height: auto;
    position: static;
  }
  
  .p-product__spec-list dt,
  .p-product__spec-list dd {
    position: static;
    width: 100%;
    height: auto;
    padding: 7px 10px;
  }
  
  .p-product__spec-list dt {
    background: #EEEEEE;
    margin: 0;
  }
  
  .p-product__spec-list dd {
    margin: 0 0 10px;
  }
  
  .p-product__header {
    width: 100%;
    height: auto;
    flex-direction: row;
  }
  
  .p-product__title {
    width: 100%;
    height: auto;
  }
  
  .p-product__content {
    padding: 2rem 1rem;
    gap: 2rem;
  }
  
  .p-product__gallery-main {
    height: auto;
  }
  
  .p-product__gallery-thumbs {
    height: auto;
  }
}

/* スマホ用：.p-product */
@media (max-width: 520px) {
  .p-product {
    padding: 40px 20px;
  }
  
  .p-product__inner {
    width: 100%;
    padding: 0;
  }
  
  .p-product__header {
    width: 100%;
    height: auto;
    flex-direction: column;
    gap: 1rem;
  }
  
  .p-product__icon {
    width: 80px;
    height: auto;
  }
  
  .p-product__title {
    width: 100%;
    height: auto;
    font-size: 1.6rem;
  }
  
  .p-product__content {
    width: 100%;
    padding: 1.5rem 1rem;
    gap: 2rem;
  }

  .p-product__title-large {
    font-size: 2.6rem;
  }
  
  .p-product__image {
    width: 100%;
    max-width: 801px;
  }
  
  .p-product__detail {
    width: 100%;
    flex-direction: column;
  }
  
  .p-product__gallery {
    width: 100%;
  }
  
  .p-product__gallery-main {
    width: 100%;
    height: auto;
  }
  
  .p-product__gallery-thumbs {
    width: 100%;
    height: auto;
    flex-wrap: wrap;
  }
  
  .p-product__gallery-thumb {
    width: 60px;
    height: 45px;
  }
  
  .p-product__name-title {
    font-size: 2.4rem;
  }
  
  .p-product__description-wrapper {
    width: 100%;
  }
  
  .p-product__server {
    width: 100%;
    padding: 0;
    gap: 30px;
  }
  
  .p-product__server .tab_wrap {
    max-width: 100%;
  }
  
  .p-product__info {
    width: 100%;
    flex-direction: column;
    gap: 2rem;
  }
  
  .p-product__info-support {
    width: 100%;
    height: auto;
    position: static;
  }
  
  .p-product__info-support-header::before {
    display: none;
  }
  
  .p-product__info-support-title,
  .p-product__info-support-price,
  .p-product__info-support-note,
  .p-product__info-support-desc {
    position: static;
    width: 100%;
    margin-bottom: 1rem;
  }
  
  .p-product__info-color {
    width: 100%;
    height: auto;
    position: static;
  }
  
  .p-product__info-color-header::before {
    display: none;
  }
  
  .p-product__info-color-title,
  .p-product__info-color-text {
    position: static;
    width: 100%;
    margin-bottom: 1rem;
  }
  
  .p-product__info-spec {
    width: 100%;
    height: auto;
  }
  
  .p-product__info-spec-table {
    width: 100%;
    height: auto;
  }
  
  .p-product__info-spec-table tr {
    flex-direction: column;
  }
  
  .p-product__info-spec-table th {
    width: 100%;
    min-width: auto;
  }
  
  .p-product__info-spec-table td {
    width: 100%;
  }
  
  .p-product__arrows {
    width: 100%;
    position: relative;
  }
  
  .p-product__arrow--prev {
    left: 0;
    top: 0;
  }
  
  .p-product__arrow--next {
    left: auto;
    right: 0;
    top: 0;
  }
  
  .p-product__price {
    width: 100%;
    height: auto;
  }
  
  .p-product__spec {
    width: 100%;
    height: auto;
  }
  
  .p-product__spec-content {
    width: 100%;
    height: auto;
    position: static;
  }
  
  .p-product__spec-list dt,
  .p-product__spec-list dd {
    position: static;
    width: 100%;
    height: auto;
    padding: 7px 10px;
  }
  
  .p-product__spec-list dt {
    background: #EEEEEE;
    margin: 0;
  }
  
  .p-product__spec-list dd {
    margin: 0 0 10px;
  }
}


/* ウォーターボトル */
.p-water {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0px;
  gap: 40px;
  width: 1020px;
  max-width: 100%;
  height: 897px;
  margin: 0;
}

.p-water__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0px;
  gap: 40px;
  width: 100%;
  height: 100%;
}

.p-water__header {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 0px;
  gap: 16px;
}

.p-water__icon {
  width: 120px;
  height: 116px;
  flex-shrink: 0;
}

.p-water__title {
  font-weight: 700;
  font-size: 2.4rem;
  line-height: 1;
  text-align: center;
  background: linear-gradient(90deg, #0096E6 3.3%, #005BAC 97.86%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  margin: 0;
}

.p-water__title-large {
  font-size: 4rem;
  display: inline-block;
  margin-top: -2px;
  white-space: nowrap;
  line-height: 1.5;
}

.p-water__title-number {
  font-size: 5.2rem;
}

.p-water__grid {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  padding: 0px;
  gap: 30px;
  width: 1020px;
  max-width: 100%;
  /* height: 741px; */
}

.p-water__item {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 60px 30px;
  gap: 20px;
  width: 495px;
  max-width: 100%;
  background: #FFFFFF;
  border: 1px solid #E6E6E6;
  border-radius: 12px;
  flex: 1;
}

.p-water__item-label {
  max-width: 100%;
  font-weight: 700;
  font-size: 1.6rem;
  line-height: 120%;
  text-align: center;
  letter-spacing: 3px;
  color: #008CD6;
  margin: 0 0 20px;
}

.p-water__item-img {
  width: 300px;
  max-width: 100%;
  height: 320px;
  object-fit: contain;
  display: block;
  margin: 0 0 20px;
}

.p-water__item-title-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0px;
  gap: 20px;
  width: 281px;
  max-width: 100%;
}

.p-water__item-title-sub {
  /* width: 223px; */
  max-width: 100%;
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 120%;
  display: flex;
  align-items: center;
  text-align: center;
  justify-content: center;
  color: #666666;
  margin: 0;
}

.p-water__item-title {
  /* width: 281px; */
  max-width: 100%;
  font-weight: 700;
  font-size: 3.2rem;
  line-height: 140%;
text-align: center;
  color: #005BAC;
  margin: 0;
}

.p-water__item:nth-child(2) .p-water__item-title-wrapper {
  width: 227px;
}

.p-water__item:nth-child(2) .p-water__item-title {
  width: 198px;
}



.p-water__item-price {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0px;
  gap: 10px;
}

.p-water__item-price-row {
  display: flex;
  flex-direction: row;
  align-items: baseline;
  padding: 0px;
  gap: 4px;
  width: 227px;
  max-width: 100%;
  height: 31px;
}

.p-water__item-price-plan {
  width: 112px;
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 120%;
  text-align: right;
  color: #222222;
  margin: 0;
}

.p-water__item-price-wrapper {
  display: flex;
  flex-direction: row;
  align-items: baseline;
  padding: 0px;
  gap: 4px;
  /*width: 111px;
  height: 31px;*/
}

.p-water__item-price-amount {
  /* width: 68px;
  height: 31px; */


  font-weight: 500;
  font-size: 2.6rem;
  line-height: 120%;
  display: flex;
  align-items: center;
  text-align: center;
  color: #005BAC;
}

.p-water__item-price-unit {
  /* width: 39px;
  height: 19px; */
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 120%;
  display: flex;
  align-items: center;
  text-align: center;
  color: #222222;
}

.p-water__item-price-note {
  max-width: 100%;
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 120%;
  text-align: center;
  color: #666666;
  margin: 0 auto;
}

/* 中間サイズ（1024px以下）用：.p-water */
@media (max-width: 1024px) {
  .p-water {
    width: 100%;
    padding: 0 2rem;
  }
  
  .p-water__inner {
    width: 100%;
  }
  
  .p-water__header {
    width: 100%;
  }
  
  .p-water__grid {
    width: 100%;
  }
  
  .p-water__item {
    width: 100%;
  }
  
  .p-water__item-img {
    width: 100%;
  }
  
  .p-water__item-title-wrapper {
    width: 100%;
  }
  
  .p-water__item-title-sub {
    width: 100%;
  }
  
  .p-water__item-title {
    width: 100%;
  }
  
  .p-water__item:nth-child(2) .p-water__item-title-wrapper {
    width: 100%;
  }
  
  .p-water__item:nth-child(2) .p-water__item-title {
    width: 100%;
  }
  
  .p-water__item-price {
    width: 100%;
  }
}

/* タブレット用：.p-water */
@media (min-width: 521px) and (max-width: 768px) {
  .p-product__inner {
    width: 100%;
    padding: 0;
  }
  
  .p-water {
    width: 100%;
    padding: 0;
  }
  
  .p-water__inner {
    width: 100%;
    padding: 0;
  }
  
  .p-water__grid {
    width: 100%;
    flex-direction: row;
    gap: 20px;
    padding: 0;
  }
  
  .p-water__item {
    width: calc(50% - 10px);
    padding: 40px 20px;
    flex: none;
  }
  
  .p-water__item-img {
    width: 100%;
    max-width: 300px;
    height: auto;
  }
  
  .p-water__item-title-wrapper {
    width: 100%;
  }
  
  .p-water__item-title-sub {
    width: 100%;
  }
  
  .p-water__item-title {
    width: 100%;
  }
  
  .p-water__item:nth-child(2) .p-water__item-title-wrapper {
    width: 100%;
  }
  
  .p-water__item:nth-child(2) .p-water__item-title {
    width: 100%;
  }
  
  .p-water__item-price {
    width: 100%;
  }
  .p-water__title-large {
    padding: 0 20px;
    white-space: normal;
  }
}

/* スマホ用：.p-water */
@media (max-width: 520px) {
  .p-water {
    width: 100%;
    padding: 0;
    height: auto;
  }
  
  .p-water__inner {
    width: 100%;
    padding: 0;
    height: auto;
    gap: 30px;
  }
  
  .p-water__header {
    width: 100%;
    height: auto;
    flex-direction: column;
  }
  
  .p-water__icon {
    width: 80px;
    height: auto;
  }

  .p-water__title {
    font-size: 1.6rem;
  }

  .p-water__title-large, .p-water__title-number {
    font-size: 2.6rem;
  }

  .p-water__grid {
    gap: 5px;
    padding: 0;
  }
  
  .p-water__item {
    width: 100%;
    height: auto;
    padding: 30px 5px;
  }
  
  .p-water__item-img {
    width: 100%;
    height: auto;
  }
  
  .p-water__item-title-wrapper {
    width: 100%;
    gap: 12px;
  }
  
  .p-water__item-title-sub {
    width: 100%;
    font-size: 1.4rem;
  }
  
  .p-water__item-title {
    width: 100%;
    font-size: 1.7rem;
  }
  
  .p-water__item:nth-child(2) .p-water__item-title-wrapper {
    width: 100%;
  }
  
  .p-water__item:nth-child(2) .p-water__item-title {
    width: 100%;
  }
  
  .p-water__item-price {
    width: 100%;
  }

  .p-water__item-price-row {
    gap: 4px;
    width: auto;
    height: auto;
    flex-direction: column;
  }
  
  .p-water__item-price-plan {
    text-align: left;
    width: auto;
    height: auto;
    font-size: 1.4rem;
  }

  .p-water__item-label {
    letter-spacing: 0;
  }
}

/* キャンペーン詳細 */
.p-campaign-detail {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 80px 40px;
  /* gap: 60px; */
  /* width: 1440px; */
  max-width: 100%;
  background: #FCF8F0;
  order: 12;
}

.p-campaign-detail--banner {
  background: #FCF8F0;
}

.p-campaign-detail--info {
  background: #fff;
}

.p-campaign-detail__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0px;
  gap: 20px;
  width: 100%;
  max-width: 1020px;
  margin: 0 auto;
}

.p-campaign-detail__banner {
  width: 100%;
  max-width: 1020px;
  height: auto;
  display: block;
}

.p-campaign-detail__button {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0px;
  gap: 16px;
  width: 1020px;
  max-width: 100%;
  height: 91px;
  flex: none;
  order: 2;
  align-self: center;
  flex-grow: 0;
  margin: 0 auto;
}

.c-btn--large {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 30px;
  gap: 26px;
  width: 600px;
  max-width: 600px;
  background: #D54680;
  border-radius: 80px;
  text-decoration: none;
  flex: none;
  order: 0;
  align-self: center;
  flex-grow: 0;
  color: #FFFFFF;
  font-weight: 500;
  font-size: 2.6rem;
  line-height: 120%;
  letter-spacing: 3px;
  white-space: nowrap;
  transition: opacity 0.3s;
  border: none;
}
/* タブレット用：.p-campaign */
@media (min-width: 521px) and (max-width: 768px) {
  .p-campaign-detail {
    padding: 60px 40px;
  }
  .p-campaign-detail__inner {
    /* gap: 60px; */
  }
  .p-campaign-detail__banner {
    width: 100%;
    max-width: 100%;
  }
  .c-btn--large {
    width: 100%;
  }
}

.c-btn--large:hover {
  opacity: 0.9;
}

.c-btn--primary.c-btn--large {
  background: #D54680;
  background-image: none;
  color: #FFFFFF;
}

.c-btn--large span {
  width: 287px;
  height: 31px;


  font-weight: 500;
  font-size: 2.6rem;
  line-height: 120%;
  display: flex;
  align-items: center;
  text-align: center;
  letter-spacing: 3px;
  color: #FFFFFF;
  flex: none;
  order: 0;
  flex-grow: 0;
  white-space: nowrap;
}

.c-btn--large svg {
  width: 32px;
  height: 8px;
  flex: none;
  order: 1;
  flex-grow: 0;
}

/* スマホ用：.c-btn--large */
@media (max-width: 520px) {
  .p-campaign-detail {
    padding: 40px 20px;
  }
  .p-campaign-detail__inner {
    gap: 30px;
  }
  .p-campaign-detail__banner {
    width: 100%;
    max-width: 100%;
  }
  .c-btn--large {
    width: 100%;
    max-width: 100%;
    padding: 20px 16px;
    font-size: 2.0rem;
    letter-spacing: 2px;
    height: auto;
    min-height: 60px;
    white-space: normal;
    word-break: keep-all;
    box-sizing: border-box;
  }
  .p-campaign-detail__button {
    width: 100%;
    height: auto;
  }
  
  .p-campaign__button {
    padding: 0 1rem;
    box-sizing: border-box;
  }
  
  .p-campaign__button-link {
    width: 100%;
    max-width: 100%;
    font-size: 2.0rem;
    letter-spacing: 2px;
    padding: 20px 16px;
    box-sizing: border-box;
    justify-content: center;
  }
  .c-btn--large span {
    width: auto;
    height: auto;
    font-size: 1.6rem;
  }
  
  .p-campaign__button-arrow {
    width: 24px;
    height: auto;
    flex-shrink: 0;
  }
}

/* 月額料金と配達エリアシミュレーション */
.p-simulation {
  position: relative;
  display: block;
  padding: 80px 40px;
  background-image: url(../img/delivery_bg@2x.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.p-simulation::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(183, 227, 176, 0.2);
  z-index: -1;
  pointer-events: none;
}

.p-simulation__inner {
  position: relative;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
}

/* タイトル部分 (delivery_h) */
.p-simulation__header {
margin: 0 auto;
text-align: center;
}

.p-simulation__header img {
  width: 100%;
  max-width: 1018px;
}

/* カード画像 */
.p-simulation__cards {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 0px;
  gap: 22px;
  width: 1018px;
  max-width: 100%;
  height: 349px;
  position: relative;
  z-index: 1;
  flex: none;
  order: 1;
  flex-grow: 0;
}

.p-simulation__card {
  position: relative;
  width: 444px;
  height: 349px;
}

.p-simulation__card--price {
  left: 0.5%;
  right: 48.83%;
  top: 26.7%;
  bottom: 0.66%;
}

.p-simulation__card--delivery {
  left: 47.52%;
  right: 1.8%;
  top: 14.47%;
  bottom: 12.89%;
}

.p-simulation__card-pin {
  position: absolute;
  background: #9E8900;
  box-shadow: 4px 4px 6px rgba(0, 0, 0, 0.15);
  width: 100%;
  height: 100%;
  border-radius: 24px;
}

.p-simulation__card--delivery .p-simulation__card-pin {
  background: #E14444;
  box-shadow: 4px 8px 20px rgba(0, 0, 0, 0.15);
}

.p-simulation__card-image {
  position: absolute;
  height: 212px;
  left: 1.89%;
  right: 50.36%;
  top: calc(50% - 212px/2 + 31.5px);
  border-radius: 24px;
  overflow: hidden;
}

.p-simulation__card--delivery .p-simulation__card-image {
  left: 49.06%;
  right: 3.19%;
  top: calc(50% - 212px/2 - 11.19px);
  transform: matrix(-1, 0, 0, 1, 0, 0);
}

.p-simulation__card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.p-simulation__card-label {
  position: absolute;
  font-weight: 500;
  font-size: 2.0rem;
  line-height: 150%;
  color: #E14444;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 10px;
  box-sizing: border-box;
}

.p-simulation__card--price .p-simulation__card-label {
  width: 255.5px;
  height: 79.34px;
  left: -41.5px;
  top: 61px;
  background: #9E8900;
}

.p-simulation__card--delivery .p-simulation__card-label {
  width: 272.87px;
  height: 79.34px;
  left: 195.5px;
  top: 19px;
  background: #E14444;
}

/* シミュレーション本体のラッパー */
.p-simulation__inner .txt_center.maB32.bg_white {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px 8px 8px;
  gap: 20px;
  /* width: 850px; */
  max-width: 100%;
  background: #20C2D1;
  border-radius: 12px;
  position: relative;
  z-index: 2;
  margin: 0 auto;
  text-align: center;
  flex: none;
  order: 2;
  flex-grow: 0;
}

/* シミュレーション説明文 */
.p-simulation__inner .txt_center.maB32.bg_white .jitan_txt {
  width: 701.29px;
  max-width: 100%;
  height: 41px;


  font-weight: 500;
  font-size: 1.5rem;
  line-height: 20px;
  display: flex;
  align-items: center;
  text-align: center;
  letter-spacing: 1px;
  color: #FFFFFF;
  margin: 0;
}

/* シミュレーション */
.p-simulation__simulator {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px 8px 8px;
  gap: 20px;
  width: 850px;
  max-width: 100%;
  min-height: 667px;
  background: #20C2D1;
  border-radius: 12px;
  position: relative;
  z-index: 2;
}

.p-simulation__simulator-note {
  width: 701.29px;
  max-width: 100%;
  height: 41px;


  font-weight: 500;
  font-size: 1.5rem;
  line-height: 20px;
  display: flex;
  align-items: center;
  text-align: center;
  letter-spacing: 1px;
  color: #FFFFFF;
  margin: 0;
}

.p-simulation__simulator-content {
  width: 834px;
  max-width: 100%;
  height: 578px;
  position: relative;
}

.p-simulation__simulator-header {
  position: absolute;
  height: 137px;
  left: 1px;
  right: 1px;
  top: 1px;
  background: #20C2D1;
}

.p-simulation__simulator-tabs {
  position: absolute;
  height: 32px;
  left: 10px;
  right: 419px;
  top: 10px;
  display: flex;
}

.p-simulation__simulator-tab {
  flex: 1;


  font-weight: 350;
  font-size: 1.4rem;
  line-height: 21px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  letter-spacing: 1px;
  color: #FFFFFF;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
}

.p-simulation__simulator-tab--active {
  position: absolute;
  height: 43px;
  left: 50%;
  right: 0%;
  top: 0px;
  background: #007E8A;
  border: 1px solid #20C2D1;
  box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.p-simulation__simulator-body {
  position: absolute;
  /* height: 578px; */
  left: 8px;
  right: 8px;
  top: 81px;
  background: #E6F8FD;
  border: 1px solid #FFFFFF;
  box-sizing: border-box;
  padding: 20px;
}

.p-simulation__simulator-people {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 20px;
}

.p-simulation__simulator-row {
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
}

.p-simulation__simulator-label {


  font-weight: 350;
  font-size: 2.0rem;
  line-height: 30px;
  display: flex;
  align-items: center;
  text-align: center;
  letter-spacing: 1px;
  color: #FFFFFF;
}

.p-simulation__simulator-label-small {


  font-weight: 350;
  font-size: 1.2rem;
  line-height: 18px;
  display: flex;
  align-items: center;
  letter-spacing: 1px;
  color: #FFFFFF;
}

.p-simulation__simulator-unit {


  font-weight: 350;
  font-size: 2.0rem;
  line-height: 30px;
  display: flex;
  align-items: center;
  text-align: center;
  letter-spacing: 1px;
  color: #FFFFFF;
}

.p-simulation__simulator-select {
  width: 68px;
  height: 44px;
  background: #FFFFFF;
  box-shadow: inset 1px 1px 3px rgba(0, 102, 111, 0.45);
  position: relative;
}

.p-simulation__simulator-select-input {
  width: 100%;
  height: 100%;
  border: none;
  background: transparent;
  font-family: 'Arial', sans-serif;

  font-weight: 400;
  font-size: 3.6rem;
  line-height: 41px;
  color: #007E8A;
  text-align: center;
  padding: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
}

.p-simulation__simulator-select::after {
  content: '';
  position: absolute;
  width: 12px;
  height: 5px;
  right: 8px;
  bottom: 12px;
  border: 6px solid #0694A1;
  border-top: none;
  border-left: transparent;
  border-right: transparent;
  pointer-events: none;
}

.p-simulation__simulator-results {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
  position: relative;
  height: 309px;
}

.p-simulation__simulator-result {
  position: relative;
  height: 287px;
  flex: 1;
  background: #FFFFFF;
  padding: 5px;
}

.p-simulation__simulator-result-image {
  position: absolute;
  width: 82px;
  height: 273px;
  left: calc(50% - 82px/2 - 134.69px);
  top: 7px;
}

.p-simulation__simulator-result-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.p-simulation__simulator-result-content {
  position: absolute;
  left: 99.63px;
  right: 15px;
  top: 18px;
}

.p-simulation__simulator-result-title {


  font-weight: 350;
  font-size: 2.0rem;
  line-height: 26px;
  display: flex;
  align-items: center;
  letter-spacing: 1px;
  color: #01535B;
  margin: 0 0 15px 0;
}

.p-simulation__simulator-result-label {


  font-weight: 350;
  font-size: 1.8rem;
  line-height: 27px;
  display: flex;
  align-items: center;
  letter-spacing: 1px;
  color: #222222;
  margin: 0 0 5px 0;
}

.p-simulation__simulator-result-price {
  display: flex;
  align-items: baseline;
  gap: 5px;
  margin: 0 0 20px 0;
}

.p-simulation__simulator-result-amount {


  font-weight: 500;
  font-size: 3.4rem;
  line-height: 51px;
  display: flex;
  align-items: center;
  letter-spacing: 1px;
  color: #CA0707;
}

.p-simulation__simulator-result-unit {


  font-weight: 500;
  font-size: 1.6rem;
  line-height: 24px;
  display: flex;
  align-items: center;
  letter-spacing: 1px;
  color: #CA0707;
}

.p-simulation__simulator-result-details {
  box-sizing: border-box;
  position: relative;
  height: 102px;
  border-top: 3px dashed #A2EBF2;
  padding-top: 20px;
}

.p-simulation__simulator-result-details-label {
  box-sizing: border-box;
  position: absolute;
  width: 66px;
  height: 24px;
  left: 0px;
  top: -10px;
  background: #72DCE6;
  border: 3px solid #72DCE6;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;


  font-weight: 350;
  font-size: 1.2rem;
  line-height: 18px;
  text-align: center;
  letter-spacing: 1px;
  color: #FFFFFF;
}

.p-simulation__simulator-result-details-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.p-simulation__simulator-result-details-list p {


  font-weight: 350;
  font-size: 1.2rem;
  line-height: 18px;
  display: flex;
  align-items: center;
  letter-spacing: 1px;
  color: #222222;
  margin: 0;
}

.p-simulation__simulator-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.p-simulation__simulator-nav-prev,
.p-simulation__simulator-nav-next {
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
}

.p-simulation__simulator-nav-prev img,
.p-simulation__simulator-nav-next img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.p-simulation__simulator-disclaimer {


  font-weight: 350;
  font-size: 1.0rem;
  line-height: 15px;
  display: flex;
  align-items: center;
  letter-spacing: 1px;
  color: #323232;
  margin: 0;
  width: 790.26px;
  max-width: 100%;
}

/* 配送 */
.p-simulation__delivery {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0px;
  gap: 55px;
  max-width: 850px;
  position: relative;
  z-index: 3;
  flex: none;
  order: 3;
  align-self: center;
  flex-grow: 0;
  margin: 0 auto;
}

.p-simulation__delivery-input {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  /* padding: 50px 40px; */
  gap: 20px;
  width: 100%;
  max-width: 100%;
  min-height: 416px;
  background: linear-gradient(0deg, #E6F8FD, #E6F8FD), #FFFFFF;
  border: 8px solid #20C2D1;
  border-radius: 12px;
  flex: none;
  order: 0;
  align-self: stretch;
  flex-grow: 0;
  /* margin: -23px 0px; */
  position: relative;
}

.p-simulation__delivery-input::after {
  content: "";
  position: absolute;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 35px solid transparent;
  border-right: 35px solid transparent;
  border-top: 40px solid #20C2D1;
  flex: none;
  order: 1;
  flex-grow: 0;
  z-index: 1;
}

.p-simulation__delivery-input::before {
  content: "";
  position: absolute;
  bottom: -32px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 27px solid transparent;
  border-right: 27px solid transparent;
  border-top: 32px solid #E6F8FD;
  flex: none;
  order: 1;
  flex-grow: 0;
  z-index: 2;
}

.p-simulation__delivery-header {
  box-sizing: border-box;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 0px;
  gap: 30px;
  width: 100%;
  max-width: 663px;
  height: auto;
  flex: none;
  order: 0;
  flex-grow: 0;
}

.p-simulation__delivery-header-image {
  width: 100%;
  max-width: 663px;
  height: auto;
  object-fit: contain;
  flex: none;
  order: 0;
  flex-grow: 0;
}

.p-simulation__delivery-title-group {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 30px;
  width: 100%;
  max-width: 663px;
  height: auto;
}

.p-simulation__delivery-car {
  width: 144.37px;
  height: 95px;
  position: relative;
}

.p-simulation__delivery-car img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.p-simulation__delivery-title-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 24px;
  width: 488px;
  max-width: 100%;
  height: 85px;
}

.p-simulation__delivery-title {
  width: 100%;
  height: 24px;

  font-weight: 600;
  font-size: 3.0rem;
  line-height: 15px;
  display: flex;
  align-items: center;
  background: linear-gradient(90deg, #20C2D1 1.4%, #60C732 83.25%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 0;
}

.p-simulation__delivery-subtitle-group {
  width: 452px;
  max-width: 100%;
  height: 37px;
  position: relative;
  display: flex;
  align-items: center;
  gap: 5px;
}

.p-simulation__delivery-zip-label {
  box-sizing: border-box;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 10px;
  gap: 10px;
  width: 126px;
  height: 37px;
  background: #FFFFFF;
  border: 2px solid #D54680;

  font-weight: 600;
  font-size: 2.1rem;
  line-height: 120%;
  display: flex;
  align-items: center;
  letter-spacing: 1px;
  color: #D54680;
}

.p-simulation__delivery-subtitle {
  width: 320px;
  height: 15px;


  font-weight: 400;
  font-size: 2.0rem;
  line-height: 120%;
  display: flex;
  align-items: center;
  color: #333333;
}

.p-simulation__delivery-form {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0px;
  gap: 14px;
  width: 450px;
  max-width: 100%;
  height: 87px;
  flex: none;
  order: 1;
  flex-grow: 0;
}

.p-simulation__delivery-note {
  width: 450px;
  max-width: 100%;
  height: 27px;


  font-weight: 350;
  font-size: 1.6rem;
  line-height: 27px;
  display: flex;
  align-items: center;
  text-align: center;
  letter-spacing: 1px;
  color: #222222;
  margin: 0;
  flex: none;
  order: 0;
  flex-grow: 0;
}

.p-simulation__delivery-input-group {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 0px;
  gap: 3px;
  width: 433px;
  max-width: 100%;
  height: 46px;
  flex: none;
  order: 1;
  align-self: stretch;
  flex-grow: 0;
}

.p-simulation__delivery-zip {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 12px 16px;
  gap: 10px;
  width: 353px;
  height: 46px;
  background: #FFFFFF;
  border: 1px solid #999999;
  box-shadow: inset 0px 0px 5px 2px #CCCCCC;
  font-family: 'Arial', sans-serif;

  font-weight: 400;
  font-size: 2.0rem;
  line-height: 23px;
  letter-spacing: 1px;
  color: #757575;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  flex: none;
  order: 0;
  flex-grow: 1;
}

.p-simulation__delivery-zip:focus {
  outline: none;
  border-color: #20C2D1;
}

.p-simulation__delivery-button {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 12px 18px;
  gap: 10px;
  width: 80px;
  height: 46px;
  background: linear-gradient(0deg, #D54680, #D54680), #FFFFFF;
  border: none;
  border-radius: 0;


  font-weight: 700;
  font-size: 2.0rem;
  line-height: 110%;
  display: flex;
  align-items: center;
  text-align: center;
  letter-spacing: 1px;
  color: #FFFFFF;
  cursor: pointer;
  flex: none;
  order: 1;
  flex-grow: 0;
}

.p-simulation__delivery-result {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 0px;
  gap: 5px;
  width: 450px;
  max-width: 100%;
  height: 37px;
  flex: none;
  flex-grow: 0;
}

.p-simulation__delivery-result--yes {
  order: 2;
}

.p-simulation__delivery-result--no {
  order: 3;
}

.p-simulation__delivery-result-zip-label {
  box-sizing: border-box;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 6px 8px 8px 12px;
  gap: 4px;
  width: 155px;
  height: 37px;
  background: #FFFFFF;
  border: 2px solid #D54680;

  font-weight: 600;
  font-size: 2.1rem;
  line-height: 120%;
  display: flex;
  align-items: center;
  letter-spacing: 1px;
  color: #D54680;
}

.p-simulation__delivery-result-text {
  width: 285px;
  height: 27px;
  font-weight: 600;
  font-size: 2.4rem;
  line-height: 27px;
  display: flex;
  align-items: center;
  text-align: center;
  letter-spacing: 1px;
  color: #D54680;
}

.p-simulation__delivery-button-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0px;
  gap: 16px;
  width: 850px;
  max-width: 100%;
  height: 134px;
  flex: none;
  order: 1;
  align-self: center;
  flex-grow: 0;
  margin: 0 auto;
}

.p-simulation__delivery-button-note {
  width: 850px;
  max-width: 100%;
  height: 27px;


  font-weight: 700;
  font-size: 1.6rem;
  line-height: 27px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  letter-spacing: 1px;
  color: #D54680;
  margin: 0 auto;
  flex: none;
  order: 0;
  align-self: center;
  flex-grow: 0;
}

.p-simulation__delivery-apply-button {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 30px;
  gap: 26px;
  width: 600px;
  max-width: 600px;
  height: 91px;
  background: #D54680;
  border-radius: 80px;
  text-decoration: none;
  transition: opacity 0.3s;
  flex: none;
  order: 1;
  align-self: center;
  flex-grow: 0;
  white-space: nowrap;
}

.p-simulation__delivery-apply-button:hover {
  opacity: 0.9;
}

.p-simulation__delivery-apply-button span:first-child {
  width: 287px;
  height: 31px;
  font-weight: 500;
  font-size: 2.6rem;
  line-height: 120%;
  display: flex;
  align-items: center;
  text-align: center;
  letter-spacing: 3px;
  color: #FFFFFF;
  flex: none;
  order: 0;
  flex-grow: 0;
  white-space: nowrap;
}

.p-simulation__delivery-apply-arrow {
  width: 32px;
  height: 8px;
  object-fit: contain;
  display: block;
  flex: none;
  order: 1;
  flex-grow: 0;
}

/* レスポンシブ */
@media screen and (max-width: 1020px) {
  .p-simulation {
    /* padding: 60px 20px; */
  }

  .p-simulation__header,
  .p-simulation__cards,
  .p-simulation__simulator,
  .p-simulation__delivery {
    width: 100%;
  }

  .p-simulation__title-group {
    width: 100%;
    max-width: 552px;
  }

  .p-simulation__title-text {
    font-size: 2.8rem;
  }

  .p-simulation__title-sub {
    font-size: 3.2rem;
  }

  .p-simulation__title-sub-small,
  .p-simulation__title-sub-end {
    font-size: 2.8rem;
  }
}

@media screen and (max-width: 768px) {
  .p-simulation {
    padding: 60px 40px;
    gap: 60px;
  }
  .p-simulation__inner {
    gap: 60px;
    display: flex;
    flex-direction: column;
  }

  .p-simulation__cards {
    flex-direction: column;
    height: auto;
    gap: 30px;
  }

  .p-simulation__card {
    width: 100%;
    max-width: 444px;
    height: auto;
    min-height: 349px;
  }

  .p-simulation__simulator {
    width: 100%;
    padding: 15px;
  }

  .p-simulation__simulator-results {
    flex-direction: column;
    height: auto;
  }

  .p-simulation__simulator-result {
    width: 100%;
    height: auto;
    min-height: 287px;
  }
}

@media screen and (max-width: 520px) {
  .p-simulation {
    padding: 40px 20px;
  }

  .p-simulation__inner {
    gap: 30px;
  }

  .p-simulation__title-text {
    font-size: 2.4rem;
  }

  .p-simulation__title-sub {
    font-size: 2.8rem;
  }

  .p-simulation__title-sub-small,
  .p-simulation__title-sub-end {
    font-size: 2.4rem;
  }

  .p-simulation__delivery-title-group {
    flex-direction: column;
    gap: 15px;
  }
  .p-simulation__delivery-input {
    padding: 30px 25px;
    min-height: auto;
    gap: 0;
  }

  .p-simulation__delivery-input-group {
    flex-direction: row;
    gap: 3px;
    width: auto;
    height: auto;
  }
  .p-simulation__delivery-header {
    width: 100%;
    height: auto;
    gap: 15px;
    margin-bottom: 20px;
  }
  .p-simulation__delivery-header-image {
    width: 100%;
    height: auto;
  }
  .p-simulation__delivery-form {
    width: 100%;
    height: auto;
    gap: 10px;
  }
  .p-simulation__delivery-note {
    width: auto;
    height: auto;
    font-size: 1.4rem;
    line-height: 1.7;
    text-align: left;
  }

  .p-simulation__delivery-button {
    width: auto;
    flex: none;
    height: 49px;
  }
  .p-simulation__delivery-zip {
    width: 60%;
    height: auto;
  }
  .p-simulation__delivery-apply-button {
    width: 100%;
    height: auto;
    padding: 20px;
  }
  .p-simulation__delivery-button-note {
    width: 100%;
    height: auto;
  }

  .p-simulation__delivery-apply-button span:first-child {
    width: auto;
    height: auto;
    font-size: 1.6rem;
  }

  .p-simulation__delivery-result {
    width: 100%;
    max-width: 100%;
    height: auto;
    margin-top: 16px;
    gap: 2px;
  }
  .p-simulation__delivery-result-zip-label {
    width: auto;
    max-width: 100%;
    height: auto;
    padding: 4px 4px 4px 6px;
    font-size: 1.6rem;
  }
  .p-simulation__delivery-result-text {
    width: 100%;
    max-width: 100%;
    height: auto;
    text-align: left;
    font-size: 1.6rem;
  }
}

/* 25周年キャンペーンアコーディオン */
.p-campaign-accordion {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0;
  gap: 20px;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  box-sizing: border-box;
}


.p-campaign-accordion__header {
  box-sizing: border-box;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 16px 10px;
  gap: 10px;
  width: 1020px;
  max-width: 100%;
  height: 56px;
  background: #FFFFFF;
  border: 1px solid #999999;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  flex: none;
  order: 0;
  align-self: stretch;
  flex-grow: 0;
}

.p-campaign-accordion__title {
  margin-right: 10px;
}

.p-campaign-accordion__header:hover {
  background: #F5F5F5;
}

.p-campaign-accordion__header[aria-expanded="true"] {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  border-bottom: none;
}

.p-campaign-accordion__title {
  font-weight: 400;
  font-size: 2.0rem;
  line-height: 120%;
  display: flex;
  align-items: center;
  text-align: center;
  letter-spacing: 1px;
  color: #000000;
  flex: none;
  order: 0;
  flex-grow: 0;
}

.p-campaign-accordion__icon {
  width: 23px;
  height: 13px;
  position: relative;
  flex: none;
  order: 1;
  flex-grow: 0;
  transition: transform 0.3s ease;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
}

.p-campaign-accordion__icon svg {
  width: 100%;
  height: 100%;
  transition: transform 0.3s ease;
}

.p-campaign-accordion__header[aria-expanded="true"] .p-campaign-accordion__icon svg {
  transform: rotate(180deg);
}

.p-campaign-accordion__content {
  max-width: 1020px;
  width: 100%;
  background: #FFFFFF;
  border: none;
  border-top: none;
  border-radius: 0 0 4px 4px;
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.3s ease, padding 0.3s ease;
  box-sizing: border-box;
}

.p-campaign-accordion__header[aria-expanded="true"] + .p-campaign-accordion__content {
  max-height: 5000px;
  padding: 20px;
  border: 1px solid #999999;
  border-top: none;
}

.p-campaign-accordion__info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.p-campaign-accordion__info-row {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.p-campaign-accordion__info-label {


  font-weight: 400;
  font-size: 1.4rem;
  line-height: 1.5;
  color: #000000;
}

.p-campaign-accordion__info-value {


  font-weight: 350;
  font-size: 1.1rem;
  line-height: 16px;
  color: #555555;
}

.p-campaign-accordion__info-value ul {
  margin: 0;
  padding-left: 20px;
  list-style-type: disc;
}

.p-campaign-accordion__info-value li {
  margin-bottom: 10px;
}

/* 元のサイトの構造に合わせたスタイル */
.info-cont {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.info-txt {
  display: flex;
  flex-direction: row;
  border-bottom: 1px solid #999;
}

.info-txt > div:first-child {
  padding: 15px;
  font-weight: 700;
  font-size: 1.4rem;
  line-height: 1.5;
  color: #222;
  background-color: #eee;
  flex-basis: 20%;
  border-right: 1px solid #999;
}

.info-txt > div:last-child {
  padding: 15px;
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 1.5;
  flex-basis: 80%;
  color: #222;
}

.info-txt > div:last-child ul {
  margin: 0;
  padding-left: 20px;
  list-style-type: disc;
}

.info-txt > div:last-child li {
  margin-bottom: 10px;
}

/* 元のサイトの構造に合わせたスタイル */
.info.tv-info {
  width: 100%;
  max-width: 1020px;
  margin: 0 auto;
  padding: 0;
  box-sizing: border-box;
}

.info-ttl.-key {
  box-sizing: border-box;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 16px 10px;
  gap: 10px;
  width: 100%;
  max-width: 1020px;
  height: auto;
  margin-bottom: 10px;
  background: #FFFFFF;
  border: 1px solid #999999;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.info-ttl.-key:hover {
  background: #F5F5F5;
}

.info-ttl.-key span {
  font-weight: 400;
  font-size: 2.0rem;
  line-height: 120%;
  display: flex;
  align-items: center;
  text-align: center;
  letter-spacing: 1px;
  color: #000000;
  margin-right: 10px;
}

.info-ttl.-key svg {
  width: 23px;
  height: 13px;
  flex: none;
  order: 1;
  flex-grow: 0;
  transition: transform 0.3s ease;
}

.info-ttl.-key.active svg {
  transform: rotate(180deg);
}

.info-cont {
  max-width: 1020px;
  width: 100%;
  background: #FFFFFF;
  border: 1px solid #999999;
  border-radius: 0 0 4px 4px;
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  padding: 0;
  transition: max-height 0.4s ease, opacity 0.4s ease, padding 0.4s ease;
  box-sizing: border-box;
  margin-top: 0;
}

.info-ttl.-key.active + .info-cont {
  max-height: 5000px;
  opacity: 1;
  gap: 0;
  /* padding: 20px;
  margin-top: 10px; */
}

/* 注意書きスタイル（Figmaデザインに基づく） */
.note_bottom_withmodel_js {
  width: 100%;
  margin: 0 auto;
  box-sizing: border-box;
  text-align: left;
}

.note_bottom_withmodel_js .note {
  font-weight: 350;
  font-size: 1.1rem;
  line-height: 16px;
  color: #222;
  margin: 0 0 10px 0;
}

.note_bottom_withmodel_js .note:last-child {
  margin-bottom: 0;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
  .p-campaign-accordion {
    padding: 30px 20px;
    gap: 15px;
  }

  .p-campaign-accordion__header {
    padding: 12px 10px;
    height: auto;
    min-height: 56px;
  }

  .p-campaign-accordion__title {
    width: auto;
    font-size: 1.8rem;
    text-align: left;
    flex: 1;
  }

  .p-campaign-accordion__icon {
    width: 16px;
    height: 8px;
  }

  .p-campaign-accordion__header[aria-expanded="true"] + .p-campaign-accordion__content {
    padding: 15px;
  }
}

@media (max-width: 520px) {
  .p-campaign-accordion {
    padding: 20px 15px;
    gap: 10px;
  }

  .p-campaign-accordion__header {
    padding: 10px;
    min-height: 48px;
  }

  .p-campaign-accordion__title {
    font-size: 1.6rem;
  }
  .info-ttl.-key span {
    font-size: 1.6rem;
  }

  .p-campaign-accordion__header[aria-expanded="true"] + .p-campaign-accordion__content {
    padding: 12px;
  }
  .note_bottom_withmodel_js .note {
    margin-bottom: 0;
  }
}

/* フッター（参照サイトと同じスタイル） */
footer {
  background: linear-gradient(to bottom, #EFEFEF, #FAFAFA);
  background: -moz-linear-gradient(top, #EFEFEF, #FAFAFA);
  width: 100%;
  padding-top: 20px;
  padding-bottom: 100px;
}

footer .foot-logo {
  text-align: center;
  width: 320px;
  margin: 0 auto;
}

footer .foot-logo img {
  width: 100%;
  height: auto;
}

footer .Content {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 15px 10px 10px;
}

footer .Content .footerNavi {
  margin-bottom: 10px;
  text-align: center;
  list-style: none;
  padding: 0;
  margin: 0 0 10px 0;
}

footer .Content .footerNavi a {
  color: #333 !important;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

footer .Content .footerNavi a:hover {
  opacity: 0.7;
}

footer .Content .footerNavi li {
  border: 0;
  font-size: 1rem;
  line-height: 1.2rem;
  margin: 0 0 5px 0;
  padding: 0;
}

footer .Content .footerNavi .headLi {
  border-left: none;
}

footer .Content .Copyright {
  color: #333;
  text-align: center;
  font-size: 1.2rem;
  margin: 0;
  padding: 0;
}

@media screen and (min-width: 520px) {
  footer .Content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  footer .Content .footerNavi {
    display: flex;
    margin: 0;
  }

  footer .Content .footerNavi li {
    margin: 0 10px 0 0;
    padding-left: 10px;
    border-left: 1px solid #d0d8dc;
    font-size: 1rem;
    line-height: 1rem;
  }

  footer .Content .footerNavi .headLi {
    padding-left: 0;
    border-left: none;
  }

  footer .Content .Copyright {
    font-size: 1.2rem;
    text-align: right;
  }
}

/* 固定フッターボタン */
.p-fixed-footer {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(10px);
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.p-fixed-footer.is-visible {
  transform: translateY(0);
}

.p-fixed-footer__button {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 30px;
  gap: 26px;
  width: 100%;
  max-width: 600px;
  height: 91px;
  background: #D54680;
  border-radius: 80px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-sizing: border-box;
  white-space: nowrap;
}

.p-fixed-footer__button:hover {
  background: #C03D6F;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(213, 70, 128, 0.4);
}

.p-fixed-footer__text {
  width: 287px;
  height: 31px;


  font-weight: 500;
  font-size: 2.6rem;
  line-height: 120%;
  display: flex;
  align-items: center;
  text-align: center;
  letter-spacing: 3px;
  color: #FFFFFF;
  flex: none;
  order: 0;
  flex-grow: 0;
  white-space: nowrap;
}

.p-fixed-footer__arrow {
  width: 32px;
  height: 8px;
  flex: none;
  order: 1;
  flex-grow: 0;
  display: block;
  object-fit: contain;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
  .p-fixed-footer {
    padding: 15px;
  }

  .p-fixed-footer__button {
    padding: 20px;
    gap: 20px;
    height: auto;
    min-height: 70px;
  }

  .p-fixed-footer__text {
    width: auto;
    font-size: 2.0rem;
    letter-spacing: 2px;
    white-space: nowrap;
  }

  .p-fixed-footer__arrow {
    width: 24px;
    height: 6px;
  }
}

@media (max-width: 520px) {
  .p-fixed-footer {
    padding: 10px;
  }

  .p-fixed-footer__button {
    padding: 15px 20px;
    gap: 15px;
    min-height: 60px;
    border-radius: 60px;
  }

  .p-fixed-footer__text {
    font-size: 1.6rem;
    letter-spacing: 1px;
    white-space: nowrap;
    width: auto;
    height: auto;
  }

  .p-fixed-footer__arrow {
    width: 24px;
    height: auto;
    flex-shrink: 0;
  }
}

/* PriceCheck セクション用のスタイル（元サイトから） */
.PriceCheck {
  background: #20c2d1;
  padding: 15px;
  margin-bottom: 20px;
  box-sizing: border-box;
}

.PriceCheck .jitan_txt {
  text-align: center;
  font-size: 1.2rem;
  line-height: 1.8rem;
  color: #fff;
  margin-bottom: 0;
}

.bg_white {
  background-color: #ffffff;
}

@media screen and (min-width: 960px) {
  .PriceCheck {
    width: 100%;
    max-width: 850px;
    box-shadow: 0px 0px 6px 3px #ffffff;
    border-radius: 10px;
    margin: 0 auto;
    margin-bottom: 60px;
  }
  
  .PriceCheck .jitan_txt {
    font-size: 1.5rem;
    line-height: 2rem;
  }
}
@media (max-width: 520px) {
  .PriceCheck {
    margin: 0 -20px;
    padding: 10px;
  }
  .p-simulation__inner .txt_center.maB32.bg_white {
    padding: 20px 0;
  }
}