/* =======================================　お知らせ =======================================　*/
.news {
  background-color: #fefdfb;
  padding: 40px 80px;
  max-width: 1440px;
  margin: 0 auto;
}

.news__inner {
  display: flex;
  gap: 48px;
  align-items: flex-start;
}

.news__header-row {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex-shrink: 0;
}

.news__header {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.news__label {
  font-family: "Lato", sans-serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1.12px;
  color: #b2a581;
  margin: 0;
}

.news__title {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-size: 32px;
  letter-spacing: 2.56px;
  color: #42220f;
  margin: 0;
}

.news__body {
  flex: 1;
  display: flex;
  gap: 40px;
  align-items: center;
  min-width: 0;
}

.news__item {
  flex: 1;
  display: flex;
  align-items: flex-start;
  gap: 0;
  padding: 24px 16px;
  border-top: 1px solid #e9e9e2;
  border-bottom: 1px solid #e9e9e2;
  text-decoration: none;
  color: inherit;
  transition: opacity 0.25s ease;
}

.news__item:hover {
  opacity: 0.8;
}

.news__date {
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 0.64px;
  line-height: 1.7;
  color: #b2a581;
  width: 120px;
  flex-shrink: 0;
  display: block;
}

.news__text {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0.64px;
  line-height: 1.7;
  color: #42220f;
  flex: 1;
  min-width: 0;
}

.news__more {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 0;
  border-bottom: 1px solid #b2a581;
  text-decoration: none;
  color: #42220f;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0.64px;
  white-space: nowrap;
  flex-shrink: 0;
  transition: opacity 0.25s ease;
}

.news__more:hover {
  opacity: 0.8;
}

.news__more img {
  display: block;
  object-fit: contain;
}

.news__more--sp {
  display: none;
}

.news__more--pc {
  display: flex;
}

/* SP（1250px以下: KVバッジ・六角形重なり回避のため padding-top 増量） */
@media (max-width: 768px) {
  .news {
    padding: 118px 24px 24px; /* 70px + 32px + 16px（六角形との余白） */
  }

  .news__inner {
    flex-direction: column;
    gap: 20px;
  }

  .news__header-row {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    width: 100%;
  }

  .news__label {
    font-size: 15px;
    letter-spacing: 1.04px;
  }

  .news__title {
    font-size: 18px;
    letter-spacing: 1.28px;
  }

  .news__more--sp {
    display: flex;
    font-size: 16px;
    letter-spacing: 0.56px;
  }

  .news__more--sp img {
    width: 5px;
    height: 8px;
  }

  .news__more--pc {
    display: none;
  }

  .news__body {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }

  .news__item {
    flex-direction: column;
    gap: 4px;
    padding: 20px 0;
  }

  .news__date {
    font-size: 14px;
    letter-spacing: 0.48px;
    width: auto;
  }

  .news__text {
    font-size: 16px;
    letter-spacing: 0.56px;
  }
}

/* =======================================　サービス紹介 =======================================　*/
.service-introduction,
.service-introduction * {
  font-family: "Zen Kaku Gothic New";
}

.service-introduction {
  position: relative;
  background-color: #ffffff;
  padding-top: 129px;
  z-index: 1;
}

.service-introduction::before {
  content: "";
  position: absolute;
  bottom: calc(100vw / 1440 * 100 * -1 + 1px);
  left: 0;
  width: 100%;
  height: auto;
  background-image: url("../img/renewal/aboutus-service-introduction-background-bottom-pc-large.png");
  background-size: cover;
  background-repeat: no-repeat;
  aspect-ratio: 1440/100;
  z-index: 2;
}

.service-introduction-inner {
  position: relative;
  max-width: 1176px;
  width: 100%;
  height: 476px;
  margin: 0 auto;
  padding-left: 18px;
}

.service-introduction-content {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.service-introduction-heading {
  font-size: 32px;
  font-weight: 700;
  line-height: 180%;
  color: #333333;
  opacity: 0;
}

.title-animation02__wrapper.is-ScrollActive .service-introduction-heading {
  animation: fadeInUp 1s ease forwards;
}

.service-introduction-text {
  font-size: 18px;
  font-weight: 500;
  line-height: 200%;
  color: #333333;
  opacity: 0;
}

.title-animation02__wrapper.is-ScrollActive .service-introduction-text {
  animation: fadeInUp 1s ease forwards 0.5s;
}

.service-introduction-doctor-image-pc {
  position: absolute;
  top: -17px;
  right: 18px;
  width: 541.13px;
  height: 458px;
}

.service-introduction-doctor-image-pc img {
  width: 100%;
}

.service-introduction-doctor-image-mobile {
  display: none;
}

@media (max-width: 768px) {
  .service-introduction::before {
    bottom: -11%;
  }
}

@media (max-width: 768px) {
  .service-introduction {
    padding-top: 72px;
    padding-bottom: 32px;
  }

  .service-introduction::before {
    content: "";
    position: absolute;
    bottom: -2.5%;
    left: 0;
    width: 100%;
    height: auto;
    background-image: url("../img/renewal/aboutus-service-introduction-background-bottom-pc.png");
    background-size: cover;
    background-repeat: no-repeat;
    aspect-ratio: 750/52.08;
    z-index: 2;
  }

  .service-introduction-inner {
    display: block;
    max-width: 541.13px;
    height: 879px;
    padding-left: 0;
  }

  .service-introduction-content {
    display: flex;
    flex-direction: column;
    gap: 32px;
  }

  .service-introduction-text {
    font-weight: 400;
    margin-bottom: 46px;
  }

  .service-introduction-doctor-image-pc {
    top: 420px;
    right: 0;
  }
}

@media (max-width: 768px) {
  .service-introduction {
    padding-top: 64px;
    padding-bottom: 0;
  }

  .service-introduction::before {
    display: none;
  }

  .service-introduction-inner {
    max-width: 375px;
    height: 601px;
    padding-left: 0;
  }

  .service-introduction-content {
    display: flex;
    flex-direction: column;
    max-width: 327px;
    margin: 0 24px;
    gap: 32px;
  }

  .service-introduction-heading {
    font-size: 26px;
  }

  .service-introduction-text {
    font-size: 17px;
    font-weight: 500;
    line-height: 173%;
    color: #555555;
  }

  .service-introduction-doctor-image-pc {
    display: none;
  }

  .service-introduction-doctor-image-mobile {
    position: absolute;
    display: block;
    bottom: 48px;
    right: 24px;
    max-width: 327px;
    height: 100px;
  }

  .service-introduction-doctor-image-mobile img {
    width: 100%;
  }
}

/* ======================================= 更年期症状のお悩み ======================================= */
.about-worries,
.about-worries * {
  font-family: "Zen Kaku Gothic New";
}

.about-worries {
  position: relative;
  padding: 101px 2px 0 0;
  margin-top: calc(100vw / 1440 * 100 - 110px);
  display: flex;
  justify-content: center;
  opacity: 0;
}

.about-worries.is-ScrollActive {
  animation: fadeInUp 1.2s ease forwards;
}

/* 黒いオーバーレイを追加 */
.about-worries::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.2);
  z-index: 1;
}

.about-worries-background-image-pc {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../img/renewal/aboutus-worries-background-pc.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  filter: blur(2px);
  z-index: 0;
}

.about-worries-background-image-mobile {
  display: none;
}

.about-worries-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-width: 840.43px;
  width: 100%;
  margin-left: 2.75px;
  padding-bottom: 40px;
  gap: 24px;
  z-index: 2;
}

.about-worries-heading {
  font-size: 32px;
  font-weight: 700;
  line-height: 180%;
  text-align: center;
  display: inline-block;
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  background-image: linear-gradient(90deg, #ffffff 50%, transparent 50%);
  background-size: 200%;
  background-position: 100% 0;
  opacity: 0;
}

.title-animation03__wrapper.is-ScrollActive .about-worries-heading {
  animation: textAnimation 0.65s cubic-bezier(0.45, 0.05, 0.55, 0.95) forwards 0.8s;
}

.about-worries-image {
  position: relative;
  display: block;
  width: 732px; /* 左右間隔拡張のため50px拡大 */
  height: 280px; /* 下段152px + 吹き出し高さ98px + 余白30px = 280px */
}

.about-worries-bubble1,
.about-worries-bubble2,
.about-worries-bubble3,
.about-worries-bubble4 {
  position: absolute;
  background-color: #ffffff;
  border-radius: 8px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
}

.about-worries-bubble1 {
  width: 320px;
  height: 98.29px;
  top: 0px;
  left: 0px;
}

.about-worries-bubble2 {
  width: 318.73px;
  height: 97.9px;
  top: 0px;
  left: 412px; /* 左右間隔拡張のため50px右移動 */
}

.about-worries-bubble3 {
  width: 318.73px;
  height: 97.9px;
  top: 152px; /* 上下行間を32px拡張 */
  left: 60px;
}

.about-worries-bubble4 {
  width: 318.73px;
  height: 97.9px;
  top: 152px; /* 上下行間を32px拡張 */
  left: 470px; /* 左右間隔拡張のため50px右移動 */
}

.about-worries-bubble1::before,
.about-worries-bubble2::before,
.about-worries-bubble3::before,
.about-worries-bubble4::before {
  content: "";
  position: absolute;
  border-width: 19px 9px 0;
  border-style: solid;
  border-color: #ffffff transparent transparent transparent;
  display: block;
  width: 0;
}

.about-worries-bubble1::before {
  bottom: -11px;
  right: 28px;
  transform: rotate(-38deg);
}

.about-worries-bubble2::before {
  bottom: -11px;
  left: 30px;
  transform: rotate(37deg);
}

.about-worries-bubble3::before {
  bottom: -11px;
  right: 30px;
  transform: rotate(-37deg);
}

.about-worries-bubble4::before {
  bottom: -11px;
  left: 30px;
  transform: rotate(37deg);
}

/* 旧実装: 画像ベースのダブルクォーテーション装飾 */
/*
.about-worries-bubble-decoration {
  position: absolute;
  width: 31.37px;
  height: 22px;
  background-image: url("../img/renewal/aboutus-worries-decoration.png");
  background-repeat: no-repeat;
  background-size: contain;
}
*/

/*
.about-worries-bubble1 .about-worries-bubble-decoration {
  top: -6px;
  left: 12px;
}
*/

/*
.about-worries-bubble2 .about-worries-bubble-decoration {
  top: -6px;
  right: 12px;
  transform: rotate(-180deg);
}
*/

/*
.about-worries-bubble3 .about-worries-bubble-decoration {
  top: -6px;
  left: 12px;
}
*/

/*
.about-worries-bubble4 .about-worries-bubble-decoration {
  top: -6px;
  right: 12px;
  transform: rotate(-180deg);
}
*/

/* 新実装: 画像ベースダブルクォーテーション統一配置 */
.about-worries-bubble-decoration-start,
.about-worries-bubble-decoration-end {
  position: absolute;
  width: 31.37px;
  height: 22px;
  background-image: url("../img/renewal/aboutus-worries-decoration.png");
  background-repeat: no-repeat;
  background-size: contain;
  z-index: 2;
}

/* 左上の開始クォート（そのまま） */
.about-worries-bubble-decoration-start {
  top: -6px;
  left: 12px;
}

/* 右下の終了クォート（180度回転） */
.about-worries-bubble-decoration-end {
  bottom: -6px;
  right: 12px;
  transform: rotate(-180deg);
}

.about-worries-bubble1-text,
.about-worries-bubble2-text,
.about-worries-bubble3-text {
  width: 100%;
  font-size: 18px;
  font-weight: 700;
  line-height: 160%;
  color: #333333;
  text-align: left;
}

.about-worries-bubble1-text {
  padding-left: 25px;
}

.about-worries-bubble2-text {
  padding-left: 25px;
}

.about-worries-bubble3-text {
  padding-left: 69px;
}

.about-worries-bubble4-text {
  width: 100%;
  font-size: 18px;
  font-weight: 700;
  line-height: 160%;
  color: #333333;
  text-align: left;
  padding-left: 25px;
}

.about-worries-text {
  position: relative;
  max-width: 700px;
  width: 100%;
  height: auto;
  margin-left: 0;
}

.about-worries-symptoms-heading {
  position: absolute;
  top: -3px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 18px;
  font-weight: 500;
  line-height: 200%;
  text-align: center;
  color: #ffffff;
  padding: 0 10px;
  z-index: 2;
  width: auto;
}

.symptoms-list {
  position: relative;
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #ffffff;
  padding: 17px 28px 16px 47px;
  margin-top: 16px;
}

/* 左側の線 */
.symptoms-list::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: calc(50% - 140px);
  height: 1px;
  background-color: #ffffff;
}

/* 右側の線 */
.symptoms-list::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: calc(50% - 140px);
  height: 1px;
  background-color: #ffffff;
}

.symptoms-items-left {
  max-width: 450px;
  width: 100%;
  height: auto;
}

.symptoms-items-right {
  max-width: 450px;
  width: 100%;
  height: auto;
}

.symptoms-item {
  display: flex;
  align-items: center;
  gap: 5px;
  height: auto;
}

.symptoms-item-pc-only {
  display: flex;
  align-items: center;
  gap: 5px;
  height: auto;
}

.symptom-item-text {
  font-size: 13px;
  font-weight: 500;
  line-height: 160%;
  color: #ffffff;
}

.symptom-item-check {
  display: inline-block;
  min-width: 12px;
  height: 6.5px;
  border-left: 2px solid #ffffff;
  border-bottom: 2px solid #ffffff;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  margin-top: -2px;
}
@media (max-width: 768px) {
  .about-worries {
    position: relative;
    padding: 101px 2px 0 0;
    margin: 0;
    display: flex;
    justify-content: center;
    opacity: 0;
  }
}

@media (max-width: 768px) {
  .about-worries {
    padding: 103px 2px 0 0;
  }

  .about-worries-background-image-pc {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("../img/renewal/aboutus-worries-background-pc.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 53% center;
    filter: blur(2px);
    z-index: 0;
  }
}

@media (max-width: 768px) {
  .about-worries {
    padding: 40px 24px 0 24px;
    opacity: 1;
    animation: none;
  }

  .about-worries.is-ScrollActive {
    animation: none;
  }

  /* 黒いオーバーレイを追加 */
  .about-worries::before {
    background-color: rgba(0, 0, 0, 0.15);
  }

  .about-worries-background-image-pc {
    display: none;
  }

  .about-worries-background-image-mobile {
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("../img/renewal/aboutus-worries-background-mobile.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    z-index: 0;
  }

  .about-worries-content {
    max-width: 540px;
    margin-left: 0;
    padding-bottom: 51px;
    gap: 31px;
  }

  .about-worries-heading {
    font-size: 26px;
    opacity: 1;
    animation: none;
  }

  .about-worries-image {
    width: 400px;
    height: 416px; /* 4つの吹き出しに合わせて高さを拡張 */
    opacity: 0;
  }

  .title-animation02__wrapper.is-ScrollActive .about-worries-image {
    animation: fadeInUp 1s ease forwards;
  }

  .about-worries-bubble1,
  .about-worries-bubble2,
  .about-worries-bubble3,
  .about-worries-bubble4 {
    width: 280px;
    height: 86px;
  }

  /* 共通化された配置ルール */
  .about-worries-bubble1,
  .about-worries-bubble2,
  .about-worries-bubble3,
  .about-worries-bubble4 {
    /* 縦方向: 104px間隔で等間隔配置 */
  }

  .about-worries-bubble1 {
    top: 0px !important;
  }

  .about-worries-bubble2 {
    top: 104px !important;
  }

  .about-worries-bubble3 {
    top: 208px !important;
  }

  .about-worries-bubble4 {
    top: 312px !important;
  }

  /* 左右配置の規則化: 奇数=左、偶数=右 */
  .about-worries-bubble1,
  .about-worries-bubble3 {
    left: 0px !important; /* 奇数番目は左配置 */
  }

  .about-worries-bubble2,
  .about-worries-bubble4 {
    left: 60px !important; /* 偶数番目は右インデント */
  }

  .about-worries-bubble1::before {
    right: 25px;
  }

  .about-worries-bubble2::before {
    left: 25px;
  }

  .about-worries-bubble3::before {
    right: 24px;
  }

  .about-worries-bubble4::before {
    left: 25px;
  }

  /* SP版旧実装もコメントアウト */
  /*
  .about-worries-bubble-decoration {
    width: 28.52px;
    height: 20px;
  }
  */

  /* SP版新実装: 画像ベースクォーテーションサイズ調整 */
  .about-worries-bubble-decoration-start,
  .about-worries-bubble-decoration-end {
    width: 28.52px;
    height: 20px;
  }

  .about-worries-bubble-decoration-start {
    top: -6px;
    left: 10px;
  }

  .about-worries-bubble-decoration-end {
    bottom: -6px;
    right: 10px;
  }

  .about-worries-bubble1-text,
  .about-worries-bubble2-text,
  .about-worries-bubble3-text,
  .about-worries-bubble4-text {
    font-size: 17px;
    color: #555555;
    text-align: center;
    padding-left: 0;
  }

  .about-worries-bubble1-text {
    padding-top: 4px;
  }

  .about-worries-text {
    max-width: 400px;
    margin-left: 0;
  }

  .about-worries-symptoms-heading {
    top: -11px;
    width: 208px;
    font-size: 17px;
    line-height: 170%;
    padding: 0;
  }

  .symptoms-list {
    padding: 16px 36.3px 15px 24px;
    margin: 2px auto;
  }

  .symptoms-list::before,
  .symptoms-list::after {
    width: calc(50% - 130px);
  }

  .symptoms-items-left {
    max-width: 136px;
  }

  .symptoms-items-right {
    max-width: 196px;
  }

  .symptoms-item {
    gap: 4px;
  }

  .symptoms-item-pc-only {
    display: none;
  }

  .symptom-item-text {
    font-size: 14px;
    line-height: 170%;
  }
}

@media (max-width: 768px) {
  .about-worries-background-image-mobile {
    background-position: 45% center;
  }

  .about-worries-content {
    max-width: 375px;
    padding-bottom: 51px;
  }

  .about-worries-image {
    width: 327px;
  }

  .about-worries-bubble2 {
    left: 47px;
  }

  .about-worries-text {
    max-width: 339.7px;
    margin-left: 0;
  }

  .symptoms-list {
    padding: 16px 0 15px 0;
    margin: 2px auto;
  }

  .symptoms-list::before,
  .symptoms-list::after {
    width: calc(50% - 110px);
  }
}

/* ======================================= Guide（診療の流れ） ======================================= */
.guide {
  padding: 80px 24px;
  background-color: #fffbf3;
}

.guide__inner {
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 56px;
}

.guide__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
}

.guide__label {
  font-family: "Lato", sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: #b2a581;
  margin: 0;
}

.guide__title {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 32px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: #42220f;
  margin: 0;
}

.guide__desc {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: 0.04em;
  color: #42220f;
  margin: 0;
  max-width: 600px;
}

.guide__cards {
  display: flex;
  align-items: stretch;
  gap: 32px;
  width: 100%;
}

.guide__card {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.guide__card-number {
  display: flex;
  align-items: flex-end;
  margin-bottom: 20px;
}

.guide__card-number img {
  display: block;
  height: 54px;
  width: auto;
}

.guide__card-text {
  flex: 1;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: 0.04em;
  color: #42220f;
  margin: 0;
}

.guide__card-img {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 12px;
}

/* 全カード画像を 280x200 で統一（参考: MYLILY _ 更年期専門オンラインクリニック.html） */
.guide__card-img,
.guide__card-img--step1,
.guide__card-img--step2,
.guide__card-img--step3,
.guide__card-img--step4 {
  aspect-ratio: 280 / 200;
}

.guide__card-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.guide__card-img-overlay {
  object-position: 65% 50%;
}

/* Guide SP（768px以下） */
@media (max-width: 768px) {
  .guide {
    padding: 48px 16px;
  }

  .guide__inner {
    gap: 32px;
  }

  .guide__header {
    width: 100%;
    gap: 16px;
    align-items: flex-start;
    text-align: left;
  }

  .guide__label {
    font-size: 15px;
    letter-spacing: 0.08em;
  }

  .guide__title {
    font-size: 26px;
    letter-spacing: 0.08em;
  }

  .guide__desc {
    font-size: 16px;
    letter-spacing: 0.04em;
    max-width: 342px;
  }

  .guide__cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, auto);
    align-items: stretch;
    gap: 32px 20px;
  }

  .guide__card-number {
    margin-bottom: 16px;
  }

  .guide__card-number img {
    height: 27px;
  }

  .guide__card-text {
    font-size: 14px;
  }
}

/* ======================================= Hours（診療時間） ======================================= */
.hours {
  padding: 80px 160px;
  background-color: #fffbf3;
}

.hours__inner {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 56px;
}

.hours__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
}

.hours__label {
  font-family: "Lato", sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: #b2a581;
  margin: 0;
}

.hours__title {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 32px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: #42220f;
  margin: 0;
}

.hours__body {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
  width: 100%;
}

.hours__table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid #9c8c62;
}

.hours__table thead th {
  background-color: #9c8c62;
  color: #fefdfb;
  font-family: "Noto Sans JP", "Zen Kaku Gothic New", sans-serif;
  font-size: 16px;
  font-weight: 500;
  text-align: center;
  vertical-align: middle;
  padding: 0;
  height: 32px;
  border-right: 1px solid #fefdfb;
}

.hours__table thead th:last-child {
  border-right: none;
}

.hours__th-time {
  width: 200px;
}

.hours__table tbody td {
  border: 1px solid #e9e9e2;
  border-top: none;
  text-align: center;
  vertical-align: middle;
  padding: 0;
  height: 56px;
  border-right: 1px solid #e9e9e2;
}

.hours__table tbody td:last-child {
  border-right: 1px solid #e9e9e2;
}

.hours__td-time {
  font-family: "Lato", sans-serif;
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 0.02em;
  color: #42220f;
  width: 200px;
  border-right: 1px solid #e9e9e2;
}

.hours__mark {
  display: inline-block;
  width: 18px;
  height: 18px;
  border: 2px solid #9c8c62;
  border-radius: 50%;
  background: transparent;
}

.hours__info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-align: center;
}

.hours__text {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: 0.08em;
  color: #42220f;
  margin: 0;
}

.hours__highlight {
  background: linear-gradient(#f2dedc, #f2dedc) bottom/100% 10px no-repeat;
}

.hours__note {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: 0.04em;
  color: #b2a581;
  margin: 0;
}

.hours__cta {
  align-self: center;
  margin-left: auto;
  margin-right: auto;
  min-height: 64px;
}

/* Hours SP（768px以下） */
@media (max-width: 768px) {
  .hours {
    padding: 48px 24px;
  }

  .hours__inner {
    gap: 32px;
  }

  .hours__header {
    align-self: flex-start;
    align-items: flex-start;
    text-align: left;
  }

  .hours__label {
    font-size: 15px;
    letter-spacing: 0.08em;
  }

  .hours__title {
    font-size: 26px;
    letter-spacing: 0.08em;
  }

  .hours__body {
    gap: 32px;
  }

  .hours__cta {
    width: 100%;
    align-self: stretch;
    box-sizing: border-box;
  }

  .hours__th-time,
  .hours__td-time {
    width: 112px;
  }

  .hours__table thead th {
    font-size: 16px;
    letter-spacing: 0.04em;
  }

  .hours__td-time {
    font-size: 18px;
    letter-spacing: 0.02em;
  }

  .hours__mark {
    width: 14px;
    height: 14px;
    border-width: 2px;
  }

  .hours__info {
    align-self: flex-start;
    align-items: flex-start;
    text-align: left;
    gap: 4px;
  }

  .hours__text {
    font-size: 18px;
    line-height: 1.7;
    letter-spacing: 0.04em;
  }

  .hours__note {
    font-size: 14px;
    line-height: 1.5;
    letter-spacing: 0.04em;
  }
}

/* ======================================= Our Doctors ======================================= */
.doctors {
  background-color: #fefdfb;
  padding: 80px 80px;
  opacity: 0;
}

.doctors.is-ScrollActive {
  animation: fadeInUp 1.2s ease forwards;
}

.doctors__inner {
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 56px;
}

.doctors__header {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.doctors__label {
  font-family: "Lato", sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: #b2a581;
  margin: 0;
}

.doctors__title {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 32px;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.08em;
  color: #42220f;
  margin: 0;
}

.doctors__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 64px 64px;
}

.doctors__card {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

.doctors__card-image {
  flex-shrink: 0;
  width: 260px;
  height: 325px;
  overflow: hidden;
}

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

.doctors__card-info {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.doctors__card-position {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: #b2a581;
  margin: 0;
}

.doctors__card-name {
  display: flex;
  gap: 12px;
  align-items: flex-end;
}

.doctors__card-name-ja {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 24px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: #42220f;
}

.doctors__card-name-en {
  font-family: "Lato", sans-serif;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: #42220f;
}

.doctors__card-credentials {
  border-left: 1px solid #42220f;
  padding-left: 20px;
}

.doctors__card-credentials p {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: 0.04em;
  color: #42220f;
  margin: 0 0 0.25em 0;
}

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

.doctors__card-profile p {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: 0.04em;
  color: #42220f;
  margin: 0 0 6px 0;
}

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

.doctors__more {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 8px 0 12px 0;
  border-bottom: 1px solid #b2a581;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 28px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: #42220f;
  text-decoration: none;
  width: fit-content;
  transition: color 0.25s ease;
}

.doctors__more:hover {
  color: #8a6d45;
}

.doctors__more img {
  flex-shrink: 0;
}

/* Tablet: 1列で左写真・右プロフィール */
@media (max-width: 1250px) and (min-width: 769px) {
  .doctors {
    padding: 80px 40px;
  }

  .doctors__grid {
    grid-template-columns: 1fr;
    gap: 56px;
  }

  .doctors__card {
    max-width: 640px;
  }

  .doctors__card-image {
    width: 220px;
    height: 275px;
  }
}

@media (max-width: 768px) {
  .doctors__grid {
    grid-template-columns: 1fr;
    gap: 80px;
  }
}

@media (max-width: 768px) {
  .doctors {
    padding: 48px 24px;
  }

  .doctors__inner {
    gap: 40px;
  }

  .doctors__label {
    font-size: 15px;
  }

  .doctors__title {
    font-size: 26px;
  }

  .doctors__card {
    flex-direction: column;
    gap: 24px;
  }

  .doctors__card-image {
    width: 100%;
    max-width: 260px;
    height: 325px;
  }

  .doctors__more {
    font-size: 22px;
    align-self: center;
  }
}

@media (max-width: 768px) {
  .doctors__card-image {
    height: 280px;
  }

  .doctors__card-name-ja {
    font-size: 22px;
  }

  .doctors__more {
    font-size: 20px;
    align-self: center;
  }
}

/* ======================================= MyLilyの特徴 ======================================= */
.mylily-features,
.mylily-features * {
  font-family: "Zen Kaku Gothic New";
}

.mylily-features {
  position: relative;
  background-color: #fdf4ee;
}

.mylily-features::before {
  content: "";
  position: absolute;
  top: calc(100vw / 1440 * 100 * -1 - 46px);
  left: 0;
  width: 100%;
  height: auto;
  background-image: url("../img/renewal/aboutus-feature-background-top-pc.png");
  background-size: cover;
  background-repeat: no-repeat;
  aspect-ratio: 1440/160;
  z-index: 0;
}

.mylily-features::after {
  content: "";
  position: absolute;
  bottom: calc(100vw / 1440 * 100 * -1 - 46px);
  left: 0;
  width: 100%;
  height: auto;
  background-image: url("../img/renewal/aboutus-feature-background-bottom-pc.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-color: #ffffff;
  aspect-ratio: 1440/160;
  z-index: 0;
}

.mylily-features-content {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 78px;
  padding-bottom: 50px;
  gap: 37px;
  z-index: 1;
}

.mylily-features-heading {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 32px;
  font-weight: 700;
  line-height: 160%;
  letter-spacing: 0.03em;
  text-align: center;
  color: #333333;
  opacity: 0;
}

.mylily-features-heading-nomal-text {
  padding-top: 6px;
}

.title-animation02__wrapper.is-ScrollActive .mylily-features-heading {
  animation: fadeInUp 1s ease forwards;
}

.mylily-features-list-pc {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  justify-content: center;
  width: 1000px;
  height: fit-content;
  gap: 32px;
}

.mylily-features-list-mobile {
  display: none;
}

.mylily-features-list-pc > article:nth-child(-n + 3) {
  opacity: 0;
}

.mylily-features-list-pc > article:nth-child(n + 4):nth-child(-n + 6) {
  opacity: 0;
}

.title-animation02__wrapper.is-ScrollActive .mylily-features-list-pc > article:nth-child(-n + 3) {
  animation: fadeInUp 1s ease forwards 0.5s;
}

.title-animation02__wrapper.is-ScrollActive
  .mylily-features-list-pc
  > article:nth-child(n + 4):nth-child(-n + 6) {
  animation: fadeInUp 1s ease forwards 1s;
}

.mylily-features-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 312px;
  height: fit-content;
  background-color: #ffffff;
  border-radius: 8px;
  padding-top: 8px;
  padding-bottom: 16px;
  gap: 8px;
}

.mylily-features-card-number {
  font-size: 18px;
  font-weight: 500;
  line-height: 160%;
  font-family: "Roboto" !important;
  color: #888888;
  border-bottom: 1px solid #888888;
  padding: 0 5px;
}

.mylily-features-card-title {
  font-size: 22px;
  font-weight: 700;
  line-height: 150%;
  text-align: center;
  color: #333333;
  margin-bottom: 8px;
}

.mylily-features-card-image1,
.mylily-features-card-image2,
.mylily-features-card-image3,
.mylily-features-card-image4,
.mylily-features-card-image5,
.mylily-features-card-image6 {
  width: 84px;
  height: 76px;
  background-repeat: no-repeat;
  background-size: contain;
  margin-bottom: 8px;
}

.mylily-features-card-image1 {
  background-image: url("../img/renewal/aboutus-feature-image1.png");
}

.mylily-features-card-image2 {
  background-image: url("../img/renewal/aboutus-feature-image2.png");
}

.mylily-features-card-image3 {
  background-image: url("../img/renewal/aboutus-feature-image3.png");
}

.mylily-features-card-image4 {
  background-image: url("../img/renewal/aboutus-feature-image4.png");
}

.mylily-features-card-image5 {
  background-image: url("../img/renewal/aboutus-feature-image5.png");
}

.mylily-features-card-image6 {
  background-image: url("../img/renewal/aboutus-feature-image6.png");
}

.mylily-features-card-text {
  font-size: 15px;
  font-weight: 400;
  line-height: 170%;
  width: fit-content;
  height: fit-content;
  color: #333333;
  text-align: center;
}

@media (max-width: 768px) {
  .mylily-features::before {
    top: -14.5%;
  }

  .mylily-features::after {
    bottom: -17%;
  }
}

@media (max-width: 768px) {
  .mylily-features::before {
    top: -5.8%;
    aspect-ratio: 750/83.33;
  }

  .mylily-features::after {
    bottom: -8.7%;
    aspect-ratio: 750/83.33;
  }

  .mylily-features-content {
    padding-top: 37px;
    padding-bottom: 32px;
  }

  .mylily-features-list-pc {
    grid-template-columns: repeat(2, 1fr);
    width: 655px;
    gap: 31px;
  }

  .mylily-features-list-pc > article:nth-child(-n + 2) {
    opacity: 0;
  }

  .mylily-features-list-pc > article:nth-child(n + 3):nth-child(-n + 4) {
    opacity: 0;
  }

  .mylily-features-list-pc > article:nth-child(n + 5):nth-child(-n + 6) {
    opacity: 0;
  }

  .title-animation02__wrapper.is-ScrollActive .mylily-features-list-pc > article:nth-child(-n + 2) {
    animation: fadeInUp 1s ease forwards 0.5s;
  }

  .title-animation02__wrapper.is-ScrollActive
    .mylily-features-list-pc
    > article:nth-child(n + 3):nth-child(-n + 4) {
    animation: fadeInUp 1s ease forwards 1s;
  }

  .title-animation02__wrapper.is-ScrollActive
    .mylily-features-list-pc
    > article:nth-child(n + 5):nth-child(-n + 6) {
    animation: fadeInUp 1s ease forwards 1.5s;
  }

  .mylily-features-card-number {
    display: none;
  }

  .mylily-features-card-image1,
  .mylily-features-card-image2,
  .mylily-features-card-image3,
  .mylily-features-card-image4,
  .mylily-features-card-image5,
  .mylily-features-card-image6 {
    min-width: 64px;
    width: 64px;
    height: 58px;
    margin-bottom: 10px;
  }
}

@media (max-width: 768px) {
  .mylily-features::before {
    top: -11%;
    background-image: url("../img/renewal/aboutus-feature-background-top-mobile.png");
    aspect-ratio: 540/115;
  }

  .mylily-features::after {
    bottom: -8%;
    background-image: url("../img/renewal/aboutus-feature-background-bottom-mobile.png");
    aspect-ratio: 540/115;
  }

  .mylily-features-content {
    padding-top: 4px;
    padding-left: 24px;
    padding-right: 24px;
    gap: 12px;
  }

  .mylily-features-heading {
    font-size: 26px;
  }

  .mylily-features-heading-nomal-text {
    padding-top: 11px;
  }

  .mylily-features-list-pc {
    display: none;
  }

  .mylily-features-list-mobile {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    grid-template-rows: auto auto;
    justify-content: center;
    max-width: 400px;
    width: 100%;
    height: fit-content;
    gap: 16px;
  }

  .mylily-features-card {
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding-top: 16px;
    padding-left: 12px;
    padding-right: 12px;
    gap: 4px;
  }

  .mylily-features-card-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    max-width: 308px;
    width: 100%;
    gap: 4px;
  }

  .mylily-features-card-title {
    font-size: 20px;
    text-align: left;
    height: 54px;
    margin-bottom: 0;
    align-items: center;
  }

  .mylily-features-card-title-one-line {
    font-size: 20px;
    text-align: left;
    height: 54px;
    padding-top: 17px;
    align-items: center;
  }

  .mylily-features-card-image1,
  .mylily-features-card-image2,
  .mylily-features-card-image3,
  .mylily-features-card-image4,
  .mylily-features-card-image5,
  .mylily-features-card-image6 {
    display: block;
    margin-bottom: 0;
  }

  .mylily-features-card-text {
    font-size: 15px;
    text-align: left;
  }
}

@media (max-width: 768px) {
  .mylily-features::before {
    top: -7.3%;
    aspect-ratio: 375/80;
  }

  .mylily-features::after {
    bottom: -4.5%;
    aspect-ratio: 375/80;
  }
}

@media (max-width: 768px) {
  .mylily-features::before {
    top: -5%;
    aspect-ratio: 320/60;
  }
}

/* ======================================= 治療プラン ======================================= */
.treatment-plan,
.treatment-plan * {
  font-family: "Zen Kaku Gothic New";
}

.treatment-plan {
  display: flex;
  justify-content: center;
  background-color: #ffffff;
  padding-left: 13px;
}

.treatment-plan-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 1000px;
  width: 100%;
  height: fit-content;
  padding-top: calc(100vw / 1440 * 100 + 40px);
  padding-bottom: calc(100vw / 1440 * 100 + 40px);
}

.treatment-plan-heading-pc {
  display: flex;
  align-items: center;
  margin-bottom: 53px;
  opacity: 0;
  padding-left: 2px;
}

.title-animation02__wrapper.is-ScrollActive .treatment-plan-heading-pc {
  animation: fadeInUp 1s ease forwards;
}

.treatment-plan-heading-mobile {
  display: none;
}

.treatment-plan-heading-normal {
  font-size: 32px;
  font-weight: 700;
  line-height: 160%;
  letter-spacing: 0.03em;
  color: #333333;
  padding-top: 5px;
}

.treatment-plan-image-container {
  position: relative;
  display: flex;
  max-width: 1000px;
  width: 100%;
  height: fit-content;
  gap: 0;
}

.treatment-plan-card-left,
.treatment-plan-card-right {
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 500px;
  width: 100%;
  height: fit-content;
}

.treatment-plan-card-image-left,
.treatment-plan-card-image-right {
  position: relative;
  background-size: cover;
  background-position: center 146px;
  max-width: 500px;
  width: 100%;
  height: 140px;
}

.treatment-plan-card-image-left {
  background-image: url("../img/renewal/aboutus-treatment-plan-image-pc-left.png");
  background-color: rgba(230, 109, 84, 0.2);
}

.treatment-plan-card-image-right {
  background-image: url("../img/renewal/aboutus-treatment-plan-image-pc-right.png");
  background-color: rgba(81, 118, 125, 0.2);
}

.treatment-plan-card-overlay-left,
.treatment-plan-card-overlay-right {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 32px 2px 0 0;
  color: #ffffff;
  text-align: center;
  gap: 1px;
}

.treatment-plan-card-subtitle {
  font-size: 18px;
  font-weight: 500;
  line-height: 170%;
}

.treatment-plan-card-title {
  font-size: 32px;
  font-weight: 700;
  line-height: 140%;
  letter-spacing: 0.03em;
  padding-left: 3px;
}

.treatment-plan-card-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  height: auto;
  border: 1px solid #e0e0e0;
  padding: 15px 1px 22px 0;
  gap: 15px;
}

.treatment-plan-card-pros-left,
.treatment-plan-card-pros-right {
  font-size: 18px;
  font-weight: 500;
  line-height: 180%;
}

.treatment-plan-card-pros-point {
  position: absolute;
  top: 159px;
  left: 460px;
  display: flex;
  flex-direction: column;
  gap: 21px;
  padding: 0 8px;
}

.treatment-plan-card-pros-features,
.treatment-plan-card-pros-benefits {
  font-size: 15px;
  font-weight: 500;
  line-height: 170%;
  color: #e66d54;
  text-align: center;
  height: 27px;
  background-color: #ffffff;
  border: 1px solid #e66d54;
  border-radius: 4px;
  padding: 0px 16px;
}

.treatment-plan-other {
  position: relative;
  display: flex;
  align-items: center;
  width: fit-content;
  height: fit-content;
}

.treatment-plan-other-message {
  display: flex;
  text-align: center;
  align-items: center;
  justify-content: center;
  width: 468px;
  height: 86px;
  margin: 42.5px 172px 41.5px 0;
  padding: 16px 7px 16px 30px;
  background-color: #f7eeea;
  border-radius: 8px;
}

.treatment-plan-other-message::before {
  content: "";
  position: absolute;
  top: 68px;
  right: 158px;
  width: 17px;
  height: 25px;
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
  background-color: #f7eeea;
  transform: rotate(87deg);
}

.treatment-plan-other-icon {
  position: absolute;
  display: block;
  background-image: url("../img/renewal/aboutus-treatment-plan-mascot-image.png");
  background-size: contain;
  background-repeat: no-repeat;
  width: 173px;
  height: 173px;
  top: 0;
  right: 1px;
  opacity: 1;
  animation: laggy 2000ms steps(1, end) infinite;
  animation-delay: 2s;
}

.treatment-plan-other-message p {
  font-size: 15px;
  font-weight: 700;
  line-height: 180%;
  color: #333333;
}

@media (max-width: 768px) {
  .treatment-plan-content {
    padding-top: 149px;
    padding-bottom: 135px;
  }
}

@media (max-width: 768px) {
  .treatment-plan {
    padding-left: 0;
    margin: 0 40px;
  }

  .treatment-plan-content {
    max-width: 670px;
    width: 100%;
    padding-top: 140px;
  }

  .treatment-plan-heading-pc {
    margin-bottom: 55px;
    padding-left: 4px;
  }

  .treatment-plan-heading-normal {
    padding-top: 9px;
  }

  .treatment-plan-image-container {
    max-width: 670px;
    gap: 0;
  }

  .treatment-plan-card-left,
  .treatment-plan-card-right {
    max-width: 335px;
  }

  .treatment-plan-card-image-left,
  .treatment-plan-card-image-right {
    max-width: 335px;
    background-position: center 140px;
  }

  .treatment-plan-card-image-left {
    background-image: url("../img/renewal/aboutus-treatment-plan-image-pc-small-left.png");
  }

  .treatment-plan-card-image-right {
    background-image: url("../img/renewal/aboutus-treatment-plan-image-pc-small-right.png");
  }

  .treatment-plan-card-overlay-left,
  .treatment-plan-card-overlay-right {
    padding: 32px 0px 0 0;
    gap: 0px;
  }

  .treatment-plan-card-title {
    padding-left: 0;
  }

  .treatment-plan-card-content {
    padding: 15px 0px 24px 0;
    gap: 16px;
  }

  .treatment-plan-card-pros-left,
  .treatment-plan-card-pros-right {
    line-height: 160%;
    text-align: center;
  }

  .treatment-plan-card-pros-point {
    top: 171px;
    left: 295px;
    gap: 47px;
  }

  .treatment-plan-other img {
    right: 0;
  }
}

@media (max-width: 768px) {
  .treatment-plan {
    margin: 0 16px;
  }

  .treatment-plan-content {
    max-width: 400px;
    padding-top: 95px;
    padding-bottom: 166px;
  }
  .treatment-plan-heading-pc {
    display: none;
  }

  .treatment-plan-heading-mobile {
    display: flex;
    flex-direction: column;
    font-size: 26px;
    font-weight: 700;
    line-height: 160%;
    letter-spacing: 0.03em;
    text-align: center;
    margin-bottom: 23px;
    padding-left: 0;
    opacity: 0;
  }

  .title-animation02__wrapper.is-ScrollActive .treatment-plan-heading-mobile {
    animation: fadeInUp 1s ease forwards;
  }

  .treatment-plan-heading-mobile-bottom {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-right: 1px;
    gap: 2px;
  }

  .treatment-plan-heading-normal {
    font-size: 26px;
    padding-top: 0;
  }

  .treatment-plan-image-container {
    max-width: 400px;
    margin-bottom: 24px;
  }

  .treatment-plan-card-left,
  .treatment-plan-card-right {
    max-width: 200px;
  }

  .treatment-plan-card-image-left,
  .treatment-plan-card-image-right {
    max-width: 200px;
    height: 192px;
    background-size: cover;
    background-position: center 0px;
  }

  .treatment-plan-card-image-left {
    background-image: url("../img/renewal/aboutus-treatment-plan-image-sp-left.png");
  }

  .treatment-plan-card-image-right {
    background-image: url("../img/renewal/aboutus-treatment-plan-image-sp-right.png");
  }

  .treatment-plan-card-overlay-left {
    padding: 56px 0 0 0;
  }

  .treatment-plan-card-overlay-right {
    padding: 56px 0 0 1px;
    gap: 12px;
  }

  .treatment-plan-card-subtitle {
    font-size: 17px;
  }

  .treatment-plan-card-title {
    font-size: 26px;
    line-height: 140%;
    padding-left: 3px;
  }

  .treatment-plan-card-content {
    padding: 8px 0;
  }

  .treatment-plan-card-pros-left {
    font-size: 15px;
    padding: 0 16px 0 4px;
  }

  .treatment-plan-card-pros-right {
    font-size: 15px;
    padding: 0 4px 0 16px;
  }

  .treatment-plan-card-pros-point {
    top: 67.8%;
    left: 42.3%;
    gap: 33px;
    padding: 0 8px;
  }

  .treatment-plan-card-pros-features,
  .treatment-plan-card-pros-benefits {
    font-size: 15px;
    line-height: 160%;
    width: 38px;
    height: 25px;
    padding: 0 5px;
  }

  .treatment-plan-other {
    position: relative;
    display: flex;
    justify-content: flex-start;
    max-width: 343px;
    width: 100%;
    height: fit-content;
  }

  .treatment-plan-other-message {
    width: 311px;
    height: 68px;
    margin: 0 30px 0 0;
    padding: 14px 6px 16px 7px;
  }

  .treatment-plan-other-message::before {
    display: none;
  }

  .treatment-plan-other-icon {
    position: absolute;
    display: block;
    background-image: url("../img/renewal/aboutus-treatment-plan-mascot-image.png");
    background-size: contain;
    width: 133px;
    height: 134.46px;
    top: 0;
    right: -19px;
  }

  .treatment-plan-other-message p {
    font-size: 15px;
    line-height: 160%;
    letter-spacing: 0.03em;
  }
}

@media (max-width: 768px) {
  .treatment-plan-card-image-left,
  .treatment-plan-card-image-right {
    background-size: cover;
  }

  .treatment-plan-card-right .treatment-plan-card-content {
    gap: 37px;
  }

  .treatment-plan-card-pros-left {
    padding: 0 20px 0 4px;
  }

  .treatment-plan-card-pros-right {
    width: 100%;
    padding: 0 4px 0 20px;
  }

  .treatment-plan-card-pros-point {
    top: 61.8%;
    left: 43%;
    gap: 50px;
    padding: 0 0;
  }

  .treatment-plan-card-pros-features,
  .treatment-plan-card-pros-benefits {
    width: 40px;
    padding: 1px 5px 0 5px;
  }

  .treatment-plan-other-message {
    margin: 0;
    padding: 15px 6px 15px 6px;
  }

  .treatment-plan-other-icon {
    top: 1px;
  }
}

/* ======================================= 料金プラン ======================================= */
.price-plan,
.price-plan * {
  font-family: "Zen Kaku Gothic New";
}

.price-plan {
  position: relative;
  background-color: #f7eeea;
  z-index: 1;
}

.price-plan::before {
  content: "";
  position: absolute;
  top: calc(100vw / 1440 * 100 * -1 + 10px);
  left: 0;
  width: 100%;
  height: auto;
  background-image: url("../img/renewal/aboutus-price-plan-background-top-pc.png");
  background-size: cover;
  background-repeat: no-repeat;
  aspect-ratio: 1440/160;
  z-index: -1;
}

.price-plan::after {
  content: "";
  position: absolute;
  bottom: calc(100vw / 1440 * 100 * -1 + 10px);
  left: 0;
  width: 100%;
  height: auto;
  background-image: url("../img/renewal/aboutus-price-plan-background-bottom-pc.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-color: #ffffff;
  aspect-ratio: 1440/160;
  z-index: -1;
}

.price-plan-content {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  padding: 28px 0;
  gap: 6px;
}

.price-plan-heading {
  font-size: 32px;
  font-weight: 700;
  line-height: 180%;
  text-align: center;
  color: #333333;
  z-index: 1;
}

.price-plan-text {
  font-size: 18px;
  font-weight: 500;
  line-height: 180%;
  text-align: center;
  color: #333333;
  margin-bottom: 16px;
}


.price-plan-list {
  padding-left: 15.278vw;
  margin-bottom: 24px;
}

.pc-price-plan {
  display: block;
  /* width: 100%; */
  width: 1688px;
  margin-bottom: 70px;
}

.pc-price-plan .swiper-slide {
  margin-right: 32px;
}

/* Swiperの重なり防止（料金プラン） */
.pc-price-plan {
  position: relative;
  z-index: 0;
}
.pc-price-plan .swiper-wrapper { z-index: 0; }
.pc-price-plan .swiper-slide { z-index: 0; }
.price-plan .swiper-pagination { position: static; margin-top: 12px; }

.pc-price-plan .swiper-slide.swiper-slide-active {
  opacity: 1;
}

/* 料金プラン説明画像（レスポンシブ対応） */
.price-plan-explanation-image {
  margin: 48px 88px 40px 88px;
  text-align: center;
}

.pc-explanation-image {
  display: block;
}

.sp-explanation-image {
  display: none;
}

.price-plan-explanation-image img {
  max-width: 800px;
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.price-plan-card-type2.swiper-slide:last-child {
  margin-right: 314px;
}

.price-plan-card-type1,
.price-plan-card-type2 {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 312px;
  height: 640px;
  background-color: #ffffff;
  border-radius: 4px;
  gap: 16px;
}

.price-plan-card-type1 {
  padding: 28px 13px 0 13px;
}

.price-plan-card-type2 {
  padding: 28px 16px 0 16px;
}

.price-plan-card-heading {
  position: relative;
  width: 100%;
}

.title-number {
  position: absolute;
  top: -16px;
  left: 42%;
  font-size: 12px;
  font-weight: 400;
  line-height: 170%;
  text-align: center;
  color: #e66d54;
}

.price-plan-card-title {
  font-size: 16px;
  font-weight: 700;
  line-height: 120%;
  text-align: center;
  color: #e66d54;
  margin-top: 12px;
}

.price-plan-card-subtitle {
  font-size: 14px;
  font-weight: 500;
  color: #e66d54;
  display: block;
  text-align: center;
  margin-top: 4px;
  margin-bottom: 12px;
  width: 100%;
  min-height: 20px;
}

.price-plan-description {
  font-size: 14px;
  font-weight: 400;
  line-height: 180%;
  text-align: left;
  color: #333333;
  padding: 0 13px;
  margin: 0;
}

.price-plan-prescription-section {
  width: 100%;
}

.price-plan-card-type1-note {
  font-size: 10px;
  font-weight: 400;
  color: #000000;
  line-height: 1.5;
  margin: 16px 0 0 0;
  padding: 0;
  text-align: left;
}

.prescription-section-title {
  font-size: 13px;
  font-weight: 700;
  line-height: 170%;
  color: #333333;
  margin: 0 0 8px 0;
  display: block;
}


.price-plan-list-card-image-container-type1,
.price-plan-list-card-image-container-type2 {
  position: relative;
  display: block;
  min-height: 90px;
  height: 90px;
}

.price-plan-list-card-image-container-type1 {
  width: 272px;
}

.price-plan-list-card-image-container-type2 {
  width: 280px;
}

.price-plan-list-card-image1,
.price-plan-list-card-image2,
.price-plan-list-card-image3,
.price-plan-list-card-image4,
.price-plan-list-card-image5,
.price-plan-list-card-image6 {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  height: 90px;
  background-repeat: no-repeat;
}

.price-plan-list-card-image1 {
  width: 272px;
  background-image: url("../img/renewal/aboutus-price-plan-imege1-pc.png");
  background-size: 100% 100%;
}

.price-plan-list-card-image2 {
  width: 280px;
  background-image: url("../img/renewal/aboutus-price-plan-imege2.png");
  background-size: 100% 100%;
}

.price-plan-list-card-image3 {
  width: 280px;
  background-image: url("../img/renewal/aboutus-price-plan-imege3.png");
  background-size: 100% 100%;
}

.price-plan-list-card-image4 {
  width: 280px;
  background-image: url("../img/renewal/aboutus-price-plan-imege4.png");
  background-size: 97% 100%;
}

.price-plan-list-card-image5 {
  width: 280px;
  background-image: url("../img/renewal/aboutus-price-plan-imege5.png");
  background-size: 97% 100%;
}

.price-plan-list-card-image6 {
  width: 280px;
  background-image: url("../img/renewal/aboutus-price-plan-imege6.png");
  background-size: 97% 100%;
}

.prescription-heading-type1,
.prescription-heading-type2 {
  position: relative;
  width: 100%;
  font-size: 15px;
  font-weight: 700;
  line-height: 180%;
  text-align: left;
  color: #888888;
}

.prescription-heading-type1::before,
.prescription-heading-type2::before {
  content: "";
  position: absolute;
  top: 50%;
  width: 223px;
  height: 0;
  border: 0.5px solid #c4c4c4;
}

.prescription-heading-type1::before {
  right: 6px;
}

.prescription-heading-type2::before {
  right: 0;
}

.price-plan-list-card-prescription {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 31.5px;
}

.prescription-list {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
}

.prescription-list::before {
  content: "";
  position: absolute;
  bottom: -16px;
  left: 3px;
  width: 280px;
  height: 0;
  border: 0.5px dashed #c4c4c4;
}

.prescription-list-end {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
}

.prescription-list-item,
.prescription-list-item-note {
  font-size: 12px;
  font-weight: 400;
  line-height: 160%;
  color: #333333;
}


.price-plan-regular-delivery {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.price-plan-regular-delivery-title {
  position: absolute;
  top: -35px;
  left: 67px;
  padding: 0 11px 5px 12px;
  font-size: 24px;
  font-weight: 700;
  line-height: 160%;
  letter-spacing: 0.03em;
  text-align: center;
  color: #333333;
  background-color: #f7eeea;
}

.price-plan-regular-delivery-title::before,
.price-plan-regular-delivery-title::after {
  content: "";
  position: absolute;
  top: 31px;
  width: 26.4px; /* 斜線の長さ */
  height: 1px; /* 斜線の太さ */
  background-color: #c4c4c4;
}

.price-plan-regular-delivery-title::before {
  left: -5px;
  transform: rotate(52.7deg); /* 左側の斜線の角度 */
}

.price-plan-regular-delivery-title::after {
  right: -5px;
  transform: rotate(-52.7deg); /* 右側の斜線の角度 */
}

.price-plan-regular-delivery-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 700px;
  height: 180px;
  border-width: 1px 0px 1px 0px;
  border-style: solid;
  border-color: #c4c4c4;
  padding: 10.74px 54px 0.26px 54px;
  gap: 36.5px;
}

.price-plan-regular-delivery-content-image {
  position: relative;
  width: 200px;
  height: 147px;
}

.price-plan-regular-delivery-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 200px;
  height: 147px;
  background-image: url("../img/renewal/aboutus-price-plan-delivery-image-pc.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  overflow: hidden;
}

.price-plan-regular-delivery-content-list {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 352px;
  height: fit-content;
}

.regular-delivery-item {
  display: flex;
  align-items: flex-start;
  font-size: 18px;
  font-weight: 500;
  line-height: 200%;
  color: #333333;
  gap: 0;
}

.regular-delivery-item-check {
  position: relative;
  padding-left: 24px;
}

.regular-delivery-item-check:after {
  content: "";
  display: block;
  position: absolute;
  border-left: 2px solid #888888;
  border-bottom: 2px solid #888888;
  width: 12.5px;
  height: 7.5px;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  top: 12.5px;
  left: 0;
}

@media (max-width: 768px) {
  .pc-price-plan {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .price-plan::before {
    top: -8.5%;
  }

  .price-plan::after {
    bottom: -8.5%;
  }
}

@media (max-width: 768px) {
  .price-plan::before {
    top: -6.5%;
    aspect-ratio: 750/83.33;
  }

  .price-plan::after {
    bottom: -6.5%;
    aspect-ratio: 750/83.33;
  }

  .price-plan-list {
    padding-left: 80px;
    /* margin: 0 0 94px 80px; */
  }

  .price-plan-card-type2.swiper-slide:last-child {
    margin-right: 44px;
  }
}

@media (max-width: 768px) {
  .price-plan::before {
    top: -3.5%;
    aspect-ratio: 750/83.33;
  }

  .price-plan::after {
    bottom: -3.5%;
    aspect-ratio: 750/83.33;
  }
}

@media (max-width: 768px) {
  .price-plan::before {
    top: -5.8%;
    background-image: url("../img/renewal/aboutus-price-plan-background-top-mobile.png");
    aspect-ratio: 375/80;
  }

  .price-plan::after {
    bottom: -5.8%;
    background-image: url("../img/renewal/aboutus-price-plan-background-bottom-mobile.png");
    aspect-ratio: 375/80;
  }

  .price-plan-content {
    padding: 24px 0;
    gap: 32px;
  }

  .price-plan-heading {
    font-size: 26px;
    margin-bottom: 1px;
  }

  .price-plan-text {
    font-size: 17px;
    line-height: 170%;
    color: #555555;
    text-align: center;
    width: 327px;
    margin-bottom: 0;
  }

  .price-plan-list {
    padding-left: 24px;
    margin-bottom: 70px;
  }

  .pc-price-plan .swiper-slide {
    margin-right: 16px;
  }

  .price-plan-card-type1,
  .price-plan-card-type2 {
    width: 280px;
    /* height: 441px; */
    padding: 32px 16px 0 16px;
    gap: 6px;
  }

  .price-plan-card-type2.swiper-slide:last-child {
    /* margin-right: 24px; */
  }

  .price-plan .swiper-pagination {
    position: absolute;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 340px;
    height: fit-content;
    gap: 8px;
    z-index: 10;
  }

  .price-plan .swiper-pagination-bullet {
    height: 30px;
    padding: 4px 11px;
    background: #ffffff;
    border: 1px solid #888888;
    border-radius: 28px;
    font-family: Zen Kaku Gothic New;
    font-size: 15px;
    font-weight: 500;
    line-height: 170%;
    color: #888888;
    text-align: center;
    margin: 0;
    opacity: 1;
  }

  .price-plan .swiper-pagination-bullet:nth-child(1) {
    width: 141px;
    margin: 0;
  }

  .price-plan .swiper-pagination-bullet:nth-child(2),
  .price-plan .swiper-pagination-bullet:nth-child(4) {
    width: 89px;
    margin: 0;
  }

  .price-plan .swiper-pagination-bullet:nth-child(3) {
    width: 102px;
    margin: 0;
  }

  .price-plan .swiper-pagination-bullet:nth-child(5) {
    width: 130px;
    margin: 0;
  }

  .price-plan .swiper-pagination-bullet:nth-child(6) {
    width: 120px;
    margin: 0;
  }

  .price-plan .swiper-pagination-bullet:nth-child(1)::after {
    content: "更年期障害";
  }

  .price-plan .swiper-pagination-bullet:nth-child(2)::after {
    content: "プレ更年期";
  }

  .price-plan .swiper-pagination-bullet:nth-child(3)::after {
    content: "生理トラブル";
  }

  .price-plan .swiper-pagination-bullet:nth-child(4)::after {
    content: "セクシャルケア";
  }

  .price-plan .swiper-pagination-bullet:nth-child(5)::after {
    content: "体重管理";
  }

  .price-plan .swiper-pagination-bullet:nth-child(6)::after {
    content: "エイジングケア";
  }

  .price-plan .swiper-pagination-bullet-active {
    background: #e66d54;
    border: none;
    color: #ffffff;
  }

  .title-number {
    position: absolute;
    top: -15px;
    left: 44%;
    font-size: 12px;
  }

  .price-plan-card-title {
    font-size: 20px;
    line-height: 160%;
  }

  .price-plan-card-subtitle {
    font-size: 14px;
    display: block;
    text-align: center;
    margin-top: 4px;
    margin-bottom: 12px;
    width: 100%;
  }

  .price-plan-description {
    font-size: 15px;
    line-height: 170%;
    padding: 0 10px;
  }


  .prescription-section-title {
    font-size: 14px;
  }


  .price-plan-list-card-image-container-type1,
  .price-plan-list-card-image-container-type2 {
    min-height: 75px;
    height: 75px;
    margin-bottom: 8px;
  }

  .price-plan-list-card-image-container-type1 {
    width: 248px;
  }

  .price-plan-list-card-image-container-type2 {
    width: 218px;
  }

  .price-plan-list-card-image1,
  .price-plan-list-card-image2,
  .price-plan-list-card-image3,
  .price-plan-list-card-image4,
  .price-plan-list-card-image5 {
    height: 75px;
  }

  .price-plan-list-card-image1 {
    width: 248px;
    background-image: url("../img/renewal/aboutus-price-plan-imege1-mobile.png");
    background-size: 100% 100%;
  }

  .price-plan-list-card-image2 {
    width: 218px;
    background-image: url("../img/renewal/aboutus-price-plan-imege2.png");
    background-size: 100% 100%;
  }

  .price-plan-list-card-image3 {
    width: 218px;
    background-image: url("../img/renewal/aboutus-price-plan-imege3.png");
    background-size: 100% 100%;
  }

  .price-plan-list-card-image4 {
    width: 218px;
    background-image: url("../img/renewal/aboutus-price-plan-imege4.png");
    background-size: 97% 100%;
  }

  .price-plan-list-card-image5 {
    width: 218px;
    background-image: url("../img/renewal/aboutus-price-plan-imege5.png");
    background-size: 97% 100%;
  }

  .price-plan-list-card-image6 {
    width: 218px;
    background-image: url("../img/renewal/aboutus-price-plan-imege6.png");
    background-size: 97% 100%;
  }

  .prescription-heading-type1,
  .prescription-heading-type2 {
    font-size: 15px;
    line-height: 170%;
    padding-top: 1px;
    margin-bottom: 7px;
  }

  .prescription-heading-type1::before,
  .prescription-heading-type2::before {
    width: 197px;
    right: 0;
  }

  .price-plan-list-card-prescription {
    gap: 23.5px;
  }

  .prescription-list::before {
    bottom: -12px;
    left: 0;
    width: 248px;
    height: 0;
    border: 0.5px dashed #c4c4c4;
  }

  .prescription-list-item,
  .prescription-list-item-note {
    font-size: 12px;
    line-height: 170%;
  }


  .price-plan-regular-delivery-title {
    top: -33px;
    left: 17px;
    font-size: 20px;
    padding: 0 18px 5px 18px;
  }

  .price-plan-regular-delivery-title::before,
  .price-plan-regular-delivery-title::after {
    top: 24px;
  }

  .price-plan-regular-delivery-title::before {
    left: -4px;
  }

  .price-plan-regular-delivery-title::after {
    right: -4px;
  }

  .price-plan-regular-delivery-content {
    justify-content: center;
    width: 327px;
    height: 160px;
    padding: 16px 0 0.26px 3px;
    margin: 0 auto;
    gap: 10px;
  }

  .price-plan-regular-delivery-content-image {
    display: block;
    width: 100px;
    height: 100px;
  }

  .price-plan-regular-delivery-image {
    top: 0;
    left: 0;
    width: 100px;
    height: 100px;
    background-image: url("../img/renewal/aboutus-price-plan-delivery-image-mobile.png");
  }

  .price-plan-regular-delivery-content-list {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 180px;
    height: fit-content;
    padding-top: 2px;
    gap: 8px;
  }

  .regular-delivery-item {
    font-size: 15px;
    line-height: 170%;
    gap: 0;
  }

  .regular-delivery-item-check {
    position: relative;
    padding-left: 20px;
  }

  .regular-delivery-item-check:after {
    content: "";
    display: block;
    position: absolute;
    border-left: 2px solid #888888;
    border-bottom: 2px solid #888888;
    width: 10.5px;
    height: 6.5px;
    transform: rotate(-45deg);
    top: 30%;
    left: 0;
  }
}

@media (max-width: 768px) {
  .price-plan::before {
    top: -3.5%;
    background-image: url("../img/renewal/aboutus-price-plan-background-top-mobile.png");
    aspect-ratio: 375/80;
  }

  .price-plan::after {
    bottom: -3.5%;
    background-image: url("../img/renewal/aboutus-price-plan-background-bottom-mobile.png");
    aspect-ratio: 375/80;
  }
}

@media (max-width: 768px) {
  .price-plan::before {
    top: -2.5%;
    background-image: url("../img/renewal/aboutus-price-plan-background-top-mobile.png");
    aspect-ratio: 320/72;
  }

  .price-plan::after {
    bottom: -2.5%;
    background-image: url("../img/renewal/aboutus-price-plan-background-bottom-mobile.png");
    aspect-ratio: 320/72;
  }
}

/* ======================================= サポート ======================================= */
.support,
.support * {
  font-family: "Zen Kaku Gothic New";
}

.support {
  background-color: #ffffff;
}

.support-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  padding: 166px 0 64px 0;
  /* padding: calc(100vw / 1440 * 100 + 50px) 0 64px 0; */
}

.support-content-heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 396px;
  height: 106px;
  margin-bottom: 15px;
}

.support-title__wrapper {
  padding: 0 24px;
}

.support-content-title {
  position: relative;
  font-size: 32px;
  font-weight: 700;
  line-height: 180%;
  color: #333333;
  padding-left: 16px;
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  background-image: linear-gradient(90deg, #333333 50%, transparent 50%);
  background-size: 200%;
  background-position: 100% 0;
  opacity: 0;
}

.highlight-support {
  position: relative;
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  background-image: linear-gradient(90deg, #e66d54 50%, transparent 50%);
  background-size: 200%;
  background-position: 100% 0;
  opacity: 0;
}

.title-animation03__wrapper.is-ScrollActive .support-content-title {
  animation: textAnimation 0.65s cubic-bezier(0.45, 0.05, 0.55, 0.95) forwards;
}

.title-animation03__wrapper.is-ScrollActive .highlight-support {
  animation: textAnimation 0.65s cubic-bezier(0.45, 0.05, 0.55, 0.95) forwards 0.2s;
}

.support-content-title::after {
  content: "";
  position: absolute;
  background-image: url("../img/renewal/aboutus-text-emphasis.png");
  background-repeat: no-repeat;
  background-size: contain;
  top: -8px;
  right: 24px;
  width: 33px;
  height: 15px;
  opacity: 0;
}

.title-animation03__wrapper.is-ScrollActive .support-content-title::after {
  animation: fadeIn 0.8s ease forwards 0.3s;
}

.support-content-subtitle {
  font-size: 18px;
  font-weight: 500;
  line-height: 180%;
  color: #333333;
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  background-image: linear-gradient(90deg, #333333 50%, transparent 50%);
  background-size: 200%;
  background-position: 100% 0;
  opacity: 0;
}

.title-animation03__wrapper.is-ScrollActive .support-content-subtitle {
  animation: textAnimation 0.65s cubic-bezier(0.45, 0.05, 0.55, 0.95) forwards;
}

.support-content-list {
  display: flex;
  gap: 32px;
}

.support-content-list-card1-pc,
.support-content-list-card2-pc,
.support-content-list-card3-pc {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 312px;
  height: 312px;
  background-color: #f7eeea;
  border-radius: 8px;
  padding-top: 20px;
  opacity: 0;
}

.title-animation02__wrapper.is-ScrollActive .support-content-list-card1-pc {
  animation: fadeInUp 1s ease forwards 0.8s;
}

.title-animation02__wrapper.is-ScrollActive .support-content-list-card2-pc {
  animation: fadeInUp 1s ease forwards 1.2s;
}

.title-animation02__wrapper.is-ScrollActive .support-content-list-card3-pc {
  animation: fadeInUp 1s ease forwards 1.6s;
}

.support-content-list-card1-pc {
  gap: 5px;
}

.support-content-list-card2-pc,
.support-content-list-card3-pc {
  gap: 9px;
}

.support-content-list-card1-mobile,
.support-content-list-card2-mobile,
.support-content-list-card3-mobile {
  display: none;
}

.support-content-list-card-title {
  font-size: 24px;
  font-weight: 700;
  line-height: 150%;
  letter-spacing: 0.03em;
  text-align: center;
  color: #333333;
}

.support-content-list-card-text-type1,
.support-content-list-card-text-type2 {
  font-size: 13px;
  font-weight: 400;
  text-align: center;
  color: #333333;
}

.support-content-list-card-text-type1 {
  line-height: 180%;
}

.support-content-list-card-text-type2 {
  line-height: 150%;
}

.support-content-list-card-image1-container,
.support-content-list-card-image2-container,
.support-content-list-card-image3-container {
  background-size: contain;
  background-repeat: no-repeat;
  width: 312px;
  height: 200px;
  overflow: hidden;
}

.support-content-list-card-image1-container {
  background-image: url("../img/renewal/aboutus-support-image1-pc-large.png");
}

.support-content-list-card-image2-container {
  background-image: url("../img/renewal/aboutus-support-image2-pc-large.png");
}

.support-content-list-card-image3-container {
  background-image: url("../img/renewal/aboutus-support-image3-pc-large.png");
}

@media (max-width: 768px) {
  .support-content-title {
    padding-left: 0;
    margin-bottom: -1px;
  }

  .support-content-title::after {
    top: -9px;
    right: 16px;
  }

  .support-content-heading {
    height: 98px;
    margin-bottom: 14px;
  }

  .support-content-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 670px;
    width: 100%;
    gap: 32px;
  }

  .support-content-list-card1-pc,
  .support-content-list-card2-pc,
  .support-content-list-card3-pc {
    height: 232px;
  }

  .support-content-list-card3-pc {
    flex: 0 0 100%;
    max-width: 312px;
  }

  .support-content-list-card-title {
    font-weight: 500;
  }

  .support-content-list-card-image1-container,
  .support-content-list-card-image2-container,
  .support-content-list-card-image3-container {
    background-size: contain;
    background-repeat: no-repeat;
    width: 187px;
    height: 120px;
    overflow: hidden;
  }

  .support-content-list-card-image1-container {
    margin-left: 3px;
  }

  .support-content-list-card-image3-container {
    background-image: url("../img/renewal/aboutus-support-image3-pc-medium.png");
  }
}

@media (max-width: 768px) {
  .support-content {
    padding: 109px 0 48px 0;
  }

  .support-content-heading {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: fit-content;
    height: fit-content;
    margin-bottom: 24px;
  }

  .support-content-title {
    font-size: 26px;
    margin-bottom: 0px;
  }

  .support-content-title::after {
    top: -3px;
    right: 18px;
    width: 18px;
    height: 10px;
  }

  .support-content-subtitle {
    font-size: 17px;
    line-height: 170%;
    color: #555555;
  }

  .support-content-list {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    justify-content: center;
    max-width: 400px;
    width: calc(100% - 48px);
    height: fit-content;
    gap: 24px;
  }

  .support-content-list-card1-pc,
  .support-content-list-card2-pc,
  .support-content-list-card3-pc {
    display: none;
    animation: none !important;
    opacity: 0 !important;
  }

  .title-animation02__wrapper.is-ScrollActive .support-content-list-card1-pc,
  .title-animation02__wrapper.is-ScrollActive .support-content-list-card2-pc,
  .title-animation02__wrapper.is-ScrollActive .support-content-list-card3-pc {
    animation: none !important;
  }

  .support-content-list-card1-mobile,
  .support-content-list-card2-mobile,
  .support-content-list-card3-mobile {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: fit-content;
    background-color: #f7eeea;
    border-radius: 8px;
    margin: 0 auto;
    gap: 8px;
    opacity: 0;
  }

  .title-animation02__wrapper.is-ScrollActive .support-content-list-card1-mobile {
    animation: fadeInUp 1s ease forwards 0.8s;
  }

  .title-animation02__wrapper.is-ScrollActive .support-content-list-card2-mobile {
    animation: fadeInUp 1s ease forwards 1.3s;
  }

  .title-animation02__wrapper.is-ScrollActive .support-content-list-card3-mobile {
    animation: fadeInUp 1s ease forwards 1.8s;
  }

  .support-content-list-card-image1-container,
  .support-content-list-card-image2-container,
  .support-content-list-card-image3-container {
    width: 90px;
    height: 112px;
    margin-left: 0;
  }

  .support-content-list-card-image1-container {
    background-image: url("../img/renewal/aboutus-support-image1-mobile.png");
  }

  .support-content-list-card-image2-container {
    background-image: url("../img/renewal/aboutus-support-image2-mobile.png");
  }

  .support-content-list-card-image3-container {
    background-size: cover;
    background-image: url("../img/renewal/aboutus-support-image3-mobile.png");
  }

  .support-content-list-card-content {
    display: flex;
    flex-direction: column;
    max-width: 213px;
    height: fit-content;
    gap: 6px;
  }

  .support-content-list-card-title {
    font-size: 20px;
    font-weight: 500;
    padding-bottom: 2px;
    text-align: left;
  }

  .support-content-list-card-text-type1,
  .support-content-list-card-text-type2 {
    font-size: 14px;
    line-height: 150%;
    text-align: left;
  }
}

/* ======================================= お客様の声 ======================================= */
.user-voice,
.user-voice * {
  font-family: "Zen Kaku Gothic New";
}

.user-voice {
  background-color: #fdf4ee;
}

.user-voice-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 1048px;
  margin: 0 auto;
  padding: 56px 0 56px 0;
  gap: 16px;
}

.user-voice-heading {
  font-size: 32px;
  font-weight: 700;
  line-height: 180%;
  color: #333333;
  opacity: 0;
}

.user-voice-list .swiper-slide:last-child {
  margin-right: 0px;
}

.title-animation02__wrapper.is-ScrollActive .user-voice-heading {
  animation: fadeInUp 1s ease forwards;
}

.user-voice-content {
  position: relative;
  display: flex;
  justify-content: flex-start;
  width: 1048px;
  /* height: 347px; */
  padding: 22px 24px 0 24px;
}

.user-voice-list {
  display: flex;
  justify-content: center;
  max-width: 1000px;
  width: 100%;
  /* height: 280px; */
  padding: 46px 55px 38px 55px;
  gap: 64px;
  background-color: #ffffff;
  border-radius: 8px;
  filter: drop-shadow(6px 6px 0px rgba(173, 173, 173, 0.2));
  z-index: 3;
}

.sp-user-voice {
  display: none;
}

.user-voice-bubble-left {
  position: absolute;
  background-image: url("../img/renewal/aboutus-user-voice-bubble-left.png");
  background-size: cover;
  background-repeat: no-repeat;
  top: 0;
  left: 0;
  width: 176px;
  height: 101.01px;
  z-index: 2;
}

.user-voice-bubble-right {
  position: absolute;
  background-image: url("../img/renewal/aboutus-user-voice-bubble-right.png");
  background-size: cover;
  background-repeat: no-repeat;
  top: 232px;
  right: 0;
  width: 252px;
  height: 116px;
  z-index: 2;
}

.voice-card {
  position: relative;
  text-decoration: none;
  color: inherit;
  display: block;
  transition: transform 0.3s ease;
}

.voice-card::before {
  content: "";
  position: absolute;
  top: -13px;
  right: -32px;
  width: 0;
  height: 217px;
  border: 0.8px solid #e0e0e0;
}

.voice-card:last-child::before {
  display: none;
}

.voice-card:hover {
  color: #e66d54; /* ホバー時の文字色を変更 */
}

.voice-card:hover .voice-content h3 {
  color: #e66d54; /* ホバー時に見出しの色だけ変更 */
}

.voice-item {
  display: flex;
  flex-direction: column;
  width: 254px;
  /* height: 196px; */
  gap: 10px;
}

.voice-header {
  display: flex;
  width: 100%;
  height: 100px;
  gap: 11px;
}

.voice-image {
  position: relative;
  width: 100px;
  height: 100px;
}

.voice-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 96px;
  height: 96px;
}

.voice-image::before {
  content: "";
  position: absolute;
  top: 4px;
  left: 4px;
  background-color: #e66d54;
  width: 96px;
  height: 96px;
}

.voice-info {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding-top: 25px;
}

.voice-number {
  font-family: Roboto !important;
  font-size: 15px;
  font-weight: 500;
  line-height: 180%;
  color: #e66d54;
}

.voice-profile {
  display: flex;
  font-size: 15px;
  font-weight: 400;
  line-height: 180%;
  color: #888888;
  gap: 6px;
}

.voice-content {
  width: 100%;
  height: fit-content;
}

.voice-content h3 {
  font-size: 18px;
  font-weight: 500;
  line-height: 170%;
  color: #555555;
}

.user-voice .swiper-pagination {
  display: none;
}

.user-voice-button {
  display: flex;
  justify-content: center;
  width: 311px;
  height: fit-content;
  background-color: #ffffff;
  border: 1px solid #888888;
  border-radius: 28px;
  padding: 9px 16px;
}

.user-voice-button-text {
  font-size: 15px;
  font-weight: 700;
  line-height: 180%;
  color: #888888;
}

.user-voice-button:hover .user-voice-button-text {
  color: #e66d54;
}

@media (max-width: 768px) {
  .user-voice-inner {
    width: 100%;
  }

  .user-voice-content {
    max-width: 1066px;
    width: 100%;
    /* height: 347px; */
    margin: 0 40px 0 40px;
  }

  .user-voice-list {
    justify-content: flex-start;
    max-width: 1066px;
    padding: 46px 55px 38px 55px;
    gap: 0;
  }

  .pc-user-voice {
    display: none;
  }

  .sp-user-voice {
    display: block;
    width: 100%;
  }

  .sp-user-voice .swiper-slide {
    width: 286px !important;
    flex-shrink: 0;
  }

  .voice-card::before {
    top: -14px;
    right: 0;
  }
}

@media (max-width: 768px) {
  .user-voice-content {
    width: 100%;
    /* height: 347px; */
    margin: 0 0 0 80px;
  }

  .user-voice-bubble-right {
    right: 80px;
  }
}

@media (max-width: 768px) {
  .user-voice-inner {
    padding: 56px 0 47px 0;
    gap: 24px;
  }

  .user-voice-heading {
    font-size: 26px;
  }

  .user-voice-list .swiper-slide:last-child {
    margin-right: 24px;
  }

  .user-voice-content {
    height: 300px;
    padding: 16px 16px 0 16px;
    margin: 0 0 0 32px;
  }

  .user-voice-list {
    height: 100%;
    padding: 0;
    background-color: inherit;
    border-radius: 0;
    filter: none;
  }

  .user-voice-bubble-right {
    top: 170px;
    right: 32px;
  }

  .voice-card {
    height: 235px;
    background-color: #ffffff;
    border-radius: 8px;
    filter: drop-shadow(6px 6px 0px rgba(173, 173, 173, 0.2));
    padding: 24px 16px;
  }

  .voice-card::before {
    display: none;
  }

  .voice-item {
    /* height: 187px; */
  }

  .voice-header {
    gap: 16px;
  }

  .voice-info {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding-top: 25px;
  }

  .voice-number {
    font-family: Zen Kaku Gothic New !important;
    font-size: 15px;
    font-weight: 700;
    line-height: 170%;
  }

  .voice-profile {
    font-size: 15px;
    line-height: 170%;
    padding-top: 4px;
    gap: 9px;
  }

  .voice-content h3 {
    font-size: 17px;
  }

  .user-voice .swiper-pagination {
    position: absolute;
    width: 100%;
    display: flex;
    justify-content: center;
    bottom: 0.5px;
    left: -4.5%;
    z-index: 10;
  }

  .user-voice .swiper-pagination-bullet {
    width: 6px;
    height: 6px;
    background-color: inherit;
    opacity: 1;
    margin: 0 4px !important;
    border: 0.5px solid #888888;
  }

  .user-voice .swiper-pagination-bullet-active {
    background-color: #888888;
  }

  .user-voice-button {
    padding: 8px 16px 6px 16px;
    margin-top: 0;
  }

  .user-voice-button-text {
    font-size: 15px;
    line-height: 170%;
  }
}

/* ======================================= Column + CTA Banner ======================================= */
.column-cta-wrap {
  position: relative;
  overflow: hidden;
}

.column-cta-wrap__bg {
  position: absolute;
  inset: 0;
  background-image: url("../img/renewal/column/column-bg.png");
  background-position: left bottom;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: 0;
}

@media (min-width: 1025px) {
  .column-cta-wrap {
    min-height: 1723px;
  }

  .column-cta-wrap__bg {
    background-position: left bottom;
  }
}

@media (max-width: 768px) {
  .column-cta-wrap {
    min-height: 1420px;
  }

  .column-cta-wrap__bg {
    background-position: left bottom;
  }
}

.column-cta-wrap__bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 180px;
  background: linear-gradient(to bottom, #FEFDFB, #F5F5F5);
  z-index: 1;
}

.column-cta-wrap__bg::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 35%;
  background: linear-gradient(to bottom, transparent, rgba(78, 63, 28, 0.5));
  mix-blend-mode: multiply;
  z-index: 1;
}

.column-cta-wrap .column,
.column-cta-wrap .cta-banner {
  position: relative;
  z-index: 2;
}

.column,
.column * {
  font-family: "Zen Kaku Gothic New", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
}

.column__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 80px 24px 32px;
}

.column__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-bottom: 56px;
}

.column__label {
  font-family: Lato, sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: #B2A581;
}

.column__title {
  font-size: 32px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: #42220F;
}

.column__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 32px;
}

.column__card {
  display: flex;
  flex-direction: column;
  gap: 24px;
  text-decoration: none;
  color: inherit;
}

.column__card-thumb {
  position: relative;
  width: 100%;
  aspect-ratio: 1.91 / 1;
  overflow: hidden;
  border-radius: 8px;
}

.column__card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.column__card-thumb-placeholder {
  width: 100%;
  height: 100%;
  background: #F5F0E8;
}

.column__card-body {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.column__card-category {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 8px;
  border: 1px solid #B2A581;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: #42220F;
  width: fit-content;
}

.column__card-title {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: 0.04em;
  color: #42220F;
}

.column__card-date {
  font-family: Lato, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
  letter-spacing: 0.04em;
  color: #B2A581;
}

.column__more-wrap {
  display: flex;
  justify-content: center;
}

.column__more {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 8px 0;
  border-bottom: 1px solid #B2A581;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: #42220F;
  text-decoration: none;
}

.column__more:hover {
  opacity: 0.8;
}

.column__more__arrow {
  display: inline-block;
  width: 6px;
  height: 10px;
  flex-shrink: 0;
}

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

.cta-banner {
  position: relative;
  padding: 800px 24px 56px;
  min-height: 380px;
}

.cta-banner__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.cta-banner__content {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 32px;
}

/* Figma 7649-14249: PCは flex row, justify-between, ボタンは右下 245×64px */
@media (min-width: 1025px) {
  .cta-banner__content {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    gap: 0;
  }

  .cta-banner__content .cta-banner__btn {
    width: 245px;
    height: 64px;
    flex-shrink: 0;
    align-self: flex-end;
    padding: 24px;
    box-sizing: border-box;
  }
}

/* message__cta の padding を上書き（詳細度を上げて後続の .message__cta に勝つ） */
.cta-banner__content .cta-banner__btn {
  padding: 24px;
  height: 64px;
  box-sizing: border-box;
}

.cta-banner__text-wrap {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  min-width: 0;
}

.cta-banner__text {
  margin-top: -2px;
  font-family: "Zen Old Mincho", serif;
  font-size: 30px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.08em;
  color: #FEFDFB;
  text-shadow: 0 0 24px rgba(0, 0, 0, 0.2);
}

/* PC: sp-br は非表示（改行なし） */
.cta-banner__text .sp-br {
  display: none;
}

.cta-banner__subtext {
  width: 100%;
  min-width: 0;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: 0.04em;
  color: #FEFDFB;
  text-shadow: 0 0 24px rgba(0, 0, 0, 0.2);
}

/* Figma: サブテキスト間は13px（text-wrap gap 20px との差を負marginで調整） */
.cta-banner__subtext + .cta-banner__subtext {
  margin-top: -7px;
}

.cta-banner__btn {
  flex-shrink: 0;
  background: #fff;
  color: #546342;
  padding: 24px;
  font-size: 16px;
  letter-spacing: 0.8px;
}

.cta-banner__btn .message__cta-bg {
  background-color: #fff;
}

/* PC: 以前の表示のまま（テクスチャ非表示・白ボタン） */
.cta-banner__btn .message__cta-texture {
  right: 0;
  bottom: 0;
  opacity: 0;
}

.cta-banner__btn .message__cta-content {
  color: #546342;
  gap: 20px;
}

.cta-banner__btn:hover {
  color: #546342;
  filter: brightness(0.97);
}

/* SP: 4番目カード表示、2x2グリッド */
@media (max-width: 768px) {
  .column__cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .column__card--sp-only {
    display: flex;
  }
}

@media (max-width: 768px) {
  .column__inner {
    padding: 56px 24px 32px;
  }

  .column__header {
    margin-bottom: 32px;
    align-items: flex-start;
  }

  .column__label {
    font-size: 15px;
    letter-spacing: 0.08em;
  }

  .column__title {
    font-size: 26px;
    letter-spacing: 0.08em;
  }

  .column__cards {
    gap: 16px;
    margin-bottom: 32px;
  }

  .column__card {
    gap: 12px;
  }

  .column__card-category {
    padding: 8px 6px;
    font-size: 14px;
    letter-spacing: 0.04em;
  }

  .column__card-title {
    font-size: 16px;
    letter-spacing: 0.04em;
  }

  .column__card-date {
    font-size: 14px;
    letter-spacing: 0.04em;
  }

  .column__more {
    font-size: 16px;
    letter-spacing: 0.04em;
  }

  .cta-banner {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    margin-top: 320px;
    padding: 0 24px 56px;
    min-height: 476px;
  }

  .cta-banner__content {
    left: 0;
    top: 0;
    width: 100%;
    height: 394px;
    flex-direction: column;
    align-items: stretch;
    gap: 32px;
  }

  /* SP: ボタンは幅いっぱい・高さ64px（Figma SP準拠） */
  .cta-banner__content .cta-banner__btn {
    align-self: stretch;
    width: 100%;
    height: 64px;
    box-sizing: border-box;
  }

  .cta-banner__text {
    font-size: 28px;
    letter-spacing: 0.08em;
  }

  /* SP: 「更年期の過ごし方は、」で改行 */
  .cta-banner__text .sp-br {
    display: block;
  }

  .cta-banner__subtext {
    font-size: 18px;
    letter-spacing: 0.04em;
  }

  /* Figma SP: サブテキスト間は12px */
  .cta-banner__subtext + .cta-banner__subtext {
    margin-top: -8px;
  }
}

/* PC: 4番目カード非表示 */
@media (min-width: 1025px) {
  .column__card--sp-only {
    display: none;
  }
}

/* 余白用のダミースライド */
.price-plan-dummy-slide {
  width: 32px;
  height: 540px;
  opacity: 0;
  pointer-events: none;
}

/* Safari専用のスタイル - -webkit-backdrop-filterはSafariが対応している特有のプロパティ */
@supports (-webkit-backdrop-filter: none) and (not (backdrop-filter: none)) {
  .price-plan-dummy-slide {
    width: 32px !important;
    height: 540px !important;
    opacity: 0 !important;
    pointer-events: none !important;
    margin-right: 0 !important;
    flex-shrink: 0 !important;
  }
}

.price-plan-list-card-image-container-type1,
.price-plan-list-card-image-container-type2 {
  position: relative;
  display: block;
  min-height: 90px;
  height: 90px;
}

.price-plan-list-card-image-container-type1 {
  width: 272px;
}

.price-plan-list-card-image-container-type2 {
  width: 280px;
}

.price-plan-list-card-image1,
.price-plan-list-card-image2,
.price-plan-list-card-image3,
.price-plan-list-card-image4,
.price-plan-list-card-image5,
.price-plan-list-card-image6 {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  height: 90px;
  background-repeat: no-repeat;
}

.price-plan-list-card-image1 {
  width: 272px;
  background-image: url("../img/renewal/aboutus-price-plan-imege1-pc.png");
  background-size: 100% 100%;
}

.price-plan-list-card-image2 {
  width: 280px;
  background-image: url("../img/renewal/aboutus-price-plan-imege2.png");
  background-size: 100% 100%;
}

.price-plan-list-card-image3 {
  width: 280px;
  background-image: url("../img/renewal/aboutus-price-plan-imege3.png");
  background-size: 100% 100%;
}

.price-plan-list-card-image4 {
  width: 280px;
  background-image: url("../img/renewal/aboutus-price-plan-imege4.png");
  background-size: 97% 100%;
}

.price-plan-list-card-image5 {
  width: 280px;
  background-image: url("../img/renewal/aboutus-price-plan-imege5.png");
  background-size: 97% 100%;
}

.price-plan-list-card-image6 {
  width: 280px;
  background-image: url("../img/renewal/aboutus-price-plan-imege6.png");
  background-size: 97% 100%;
}

.prescription-heading-type1,
.prescription-heading-type2 {
  position: relative;
  width: 100%;
  font-size: 15px;
  font-weight: 700;
  line-height: 180%;
  text-align: left;
  color: #888888;
}

.prescription-heading-type1::before,
.prescription-heading-type2::before {
  content: "";
  position: absolute;
  top: 50%;
  width: 223px;
  height: 0;
  border: 0.5px solid #c4c4c4;
}

.prescription-heading-type1::before {
  right: 6px;
}

.prescription-heading-type2::before {
  right: 0;
}

.price-plan-list-card-prescription {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 31.5px;
}

.prescription-list {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
}

.prescription-list::before {
  content: "";
  position: absolute;
  bottom: -16px;
  left: 3px;
  width: 280px;
  height: 0;
  border: 0.5px dashed #c4c4c4;
}

.prescription-list-end {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
}

.prescription-list-item,
.prescription-list-item-note {
  font-size: 12px;
  font-weight: 400;
  line-height: 160%;
  color: #333333;
}


.price-plan-regular-delivery {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.price-plan-regular-delivery-title {
  position: absolute;
  top: -35px;
  left: 67px;
  padding: 0 11px 5px 12px;
  font-size: 24px;
  font-weight: 700;
  line-height: 160%;
  letter-spacing: 0.03em;
  text-align: center;
  color: #333333;
  background-color: #f7eeea;
}

.price-plan-regular-delivery-title::before,
.price-plan-regular-delivery-title::after {
  content: "";
  position: absolute;
  top: 31px;
  width: 26.4px; /* 斜線の長さ */
  height: 1px; /* 斜線の太さ */
  background-color: #c4c4c4;
}

.price-plan-regular-delivery-title::before {
  left: -5px;
  transform: rotate(52.7deg); /* 左側の斜線の角度 */
}

.price-plan-regular-delivery-title::after {
  right: -5px;
  transform: rotate(-52.7deg); /* 右側の斜線の角度 */
}

.price-plan-regular-delivery-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 700px;
  height: 180px;
  border-width: 1px 0px 1px 0px;
  border-style: solid;
  border-color: #c4c4c4;
  padding: 10.74px 54px 0.26px 54px;
  gap: 36.5px;
}

.price-plan-regular-delivery-content-image {
  position: relative;
  width: 200px;
  height: 147px;
}

.price-plan-regular-delivery-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 200px;
  height: 147px;
  background-image: url("../img/renewal/aboutus-price-plan-delivery-image-pc.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  overflow: hidden;
}

.price-plan-regular-delivery-content-list {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 352px;
  height: fit-content;
}

.regular-delivery-item {
  display: flex;
  align-items: flex-start;
  font-size: 18px;
  font-weight: 500;
  line-height: 200%;
  color: #333333;
  gap: 0;
}

.regular-delivery-item-check {
  position: relative;
  padding-left: 24px;
}

.regular-delivery-item-check:after {
  content: "";
  display: block;
  position: absolute;
  border-left: 2px solid #888888;
  border-bottom: 2px solid #888888;
  width: 12.5px;
  height: 7.5px;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  top: 12.5px;
  left: 0;
}

@media (max-width: 768px) {
  .pc-price-plan {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .price-plan::before {
    top: -8.5%;
  }

  .price-plan::after {
    bottom: -8.5%;
  }
}

@media (max-width: 768px) {
  .price-plan::before {
    top: -6.5%;
    aspect-ratio: 750/83.33;
  }

  .price-plan::after {
    bottom: -6.5%;
    aspect-ratio: 750/83.33;
  }

  .price-plan-list {
    padding-left: 80px;
    /* margin: 0 0 94px 80px; */
  }

  .price-plan-card-type2.swiper-slide:last-child {
    margin-right: 44px;
  }
}

@media (max-width: 768px) {
  .price-plan::before {
    top: -3.5%;
    aspect-ratio: 750/83.33;
  }

  .price-plan::after {
    bottom: -3.5%;
    aspect-ratio: 750/83.33;
  }
}

@media (max-width: 768px) {
  .price-plan::before {
    top: -5.8%;
    background-image: url("../img/renewal/aboutus-price-plan-background-top-mobile.png");
    aspect-ratio: 375/80;
  }

  .price-plan::after {
    bottom: -5.8%;
    background-image: url("../img/renewal/aboutus-price-plan-background-bottom-mobile.png");
    aspect-ratio: 375/80;
  }

  .price-plan-content {
    padding: 24px 0;
    gap: 32px;
  }

  .price-plan-heading {
    font-size: 26px;
    margin-bottom: 1px;
  }

  .price-plan-text {
    font-size: 17px;
    line-height: 170%;
    color: #555555;
    text-align: center;
    width: 327px;
    margin-bottom: 0;
  }

  .price-plan-list {
    padding-left: 24px;
    margin-bottom: 70px;
  }

  .pc-price-plan .swiper-slide {
    margin-right: 16px;
  }

  .price-plan-card-type1,
  .price-plan-card-type2 {
    width: 280px;
    /* height: 441px; */
    padding: 32px 16px 0 16px;
    gap: 6px;
  }

  .price-plan-card-type2.swiper-slide:last-child {
    /* margin-right: 24px; */
  }

  .price-plan .swiper-pagination {
    position: absolute;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 340px;
    height: fit-content;
    gap: 8px;
    z-index: 10;
  }

  .price-plan .swiper-pagination-bullet {
    height: 30px;
    padding: 4px 11px;
    background: #ffffff;
    border: 1px solid #888888;
    border-radius: 28px;
    font-family: Zen Kaku Gothic New;
    font-size: 15px;
    font-weight: 500;
    line-height: 170%;
    color: #888888;
    text-align: center;
    margin: 0;
    opacity: 1;
  }

  .price-plan .swiper-pagination-bullet:nth-child(1) {
    width: 141px;
    margin: 0;
  }

  .price-plan .swiper-pagination-bullet:nth-child(2),
  .price-plan .swiper-pagination-bullet:nth-child(4) {
    width: 89px;
    margin: 0;
  }

  .price-plan .swiper-pagination-bullet:nth-child(3) {
    width: 102px;
    margin: 0;
  }

  .price-plan .swiper-pagination-bullet:nth-child(5) {
    width: 130px;
    margin: 0;
  }

  .price-plan .swiper-pagination-bullet:nth-child(6) {
    width: 120px;
    margin: 0;
  }

  .price-plan .swiper-pagination-bullet:nth-child(1)::after {
    content: "更年期障害";
  }

  .price-plan .swiper-pagination-bullet:nth-child(2)::after {
    content: "プレ更年期";
  }

  .price-plan .swiper-pagination-bullet:nth-child(3)::after {
    content: "生理トラブル";
  }

  .price-plan .swiper-pagination-bullet:nth-child(4)::after {
    content: "セクシャルケア";
  }

  .price-plan .swiper-pagination-bullet:nth-child(5)::after {
    content: "体重管理";
  }

  .price-plan .swiper-pagination-bullet:nth-child(6)::after {
    content: "エイジングケア";
  }

  .price-plan .swiper-pagination-bullet-active {
    background: #e66d54;
    border: none;
    color: #ffffff;
  }

  .title-number {
    position: absolute;
    top: -15px;
    left: 44%;
    font-size: 12px;
  }

  .price-plan-card-title {
    font-size: 20px;
    line-height: 160%;
  }

  .price-plan-card-subtitle {
    font-size: 14px;
    display: block;
    text-align: center;
    margin-top: 4px;
    margin-bottom: 12px;
    width: 100%;
  }

  .price-plan-description {
    font-size: 15px;
    line-height: 170%;
    padding: 0 10px;
  }


  .prescription-section-title {
    font-size: 14px;
  }


  .price-plan-list-card-image-container-type1,
  .price-plan-list-card-image-container-type2 {
    min-height: 75px;
    height: 75px;
    margin-bottom: 8px;
  }

  .price-plan-list-card-image-container-type1 {
    width: 248px;
  }

  .price-plan-list-card-image-container-type2 {
    width: 218px;
  }

  .price-plan-list-card-image1,
  .price-plan-list-card-image2,
  .price-plan-list-card-image3,
  .price-plan-list-card-image4,
  .price-plan-list-card-image5 {
    height: 75px;
  }

  .price-plan-list-card-image1 {
    width: 248px;
    background-image: url("../img/renewal/aboutus-price-plan-imege1-mobile.png");
    background-size: 100% 100%;
  }

  .price-plan-list-card-image2 {
    width: 218px;
    background-image: url("../img/renewal/aboutus-price-plan-imege2.png");
    background-size: 100% 100%;
  }

  .price-plan-list-card-image3 {
    width: 218px;
    background-image: url("../img/renewal/aboutus-price-plan-imege3.png");
    background-size: 100% 100%;
  }

  .price-plan-list-card-image4 {
    width: 218px;
    background-image: url("../img/renewal/aboutus-price-plan-imege4.png");
    background-size: 97% 100%;
  }

  .price-plan-list-card-image5 {
    width: 218px;
    background-image: url("../img/renewal/aboutus-price-plan-imege5.png");
    background-size: 97% 100%;
  }

  .price-plan-list-card-image6 {
    width: 218px;
    background-image: url("../img/renewal/aboutus-price-plan-imege6.png");
    background-size: 97% 100%;
  }

  .prescription-heading-type1,
  .prescription-heading-type2 {
    font-size: 15px;
    line-height: 170%;
    padding-top: 1px;
    margin-bottom: 7px;
  }

  .prescription-heading-type1::before,
  .prescription-heading-type2::before {
    width: 197px;
    right: 0;
  }

  .price-plan-list-card-prescription {
    gap: 23.5px;
  }

  .prescription-list::before {
    bottom: -12px;
    left: 0;
    width: 248px;
    height: 0;
    border: 0.5px dashed #c4c4c4;
  }

  .prescription-list-item,
  .prescription-list-item-note {
    font-size: 12px;
    line-height: 170%;
  }


  .price-plan-regular-delivery-title {
    top: -33px;
    left: 17px;
    font-size: 20px;
    padding: 0 18px 5px 18px;
  }

  .price-plan-regular-delivery-title::before,
  .price-plan-regular-delivery-title::after {
    top: 24px;
  }

  .price-plan-regular-delivery-title::before {
    left: -4px;
  }

  .price-plan-regular-delivery-title::after {
    right: -4px;
  }

  .price-plan-regular-delivery-content {
    justify-content: center;
    width: 327px;
    height: 160px;
    padding: 16px 0 0.26px 3px;
    margin: 0 auto;
    gap: 10px;
  }

  .price-plan-regular-delivery-content-image {
    display: block;
    width: 100px;
    height: 100px;
  }

  .price-plan-regular-delivery-image {
    top: 0;
    left: 0;
    width: 100px;
    height: 100px;
    background-image: url("../img/renewal/aboutus-price-plan-delivery-image-mobile.png");
  }

  .price-plan-regular-delivery-content-list {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 180px;
    height: fit-content;
    padding-top: 2px;
    gap: 8px;
  }

  .regular-delivery-item {
    font-size: 15px;
    line-height: 170%;
    gap: 0;
  }

  .regular-delivery-item-check {
    position: relative;
    padding-left: 20px;
  }

  .regular-delivery-item-check:after {
    content: "";
    display: block;
    position: absolute;
    border-left: 2px solid #888888;
    border-bottom: 2px solid #888888;
    width: 10.5px;
    height: 6.5px;
    transform: rotate(-45deg);
    top: 30%;
    left: 0;
  }
}

@media (max-width: 768px) {
  .price-plan::before {
    top: -3.5%;
    background-image: url("../img/renewal/aboutus-price-plan-background-top-mobile.png");
    aspect-ratio: 375/80;
  }

  .price-plan::after {
    bottom: -3.5%;
    background-image: url("../img/renewal/aboutus-price-plan-background-bottom-mobile.png");
    aspect-ratio: 375/80;
  }
}

@media (max-width: 768px) {
  .price-plan::before {
    top: -2.5%;
    background-image: url("../img/renewal/aboutus-price-plan-background-top-mobile.png");
    aspect-ratio: 320/72;
  }

  .price-plan::after {
    bottom: -2.5%;
    background-image: url("../img/renewal/aboutus-price-plan-background-bottom-mobile.png");
    aspect-ratio: 320/72;
  }
}

/* ======================================= サポート ======================================= */
.support,
.support * {
  font-family: "Zen Kaku Gothic New";
}

.support {
  background-color: #ffffff;
}

.support-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  padding: 166px 0 64px 0;
  /* padding: calc(100vw / 1440 * 100 + 50px) 0 64px 0; */
}

.support-content-heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 396px;
  height: 106px;
  margin-bottom: 15px;
}

.support-title__wrapper {
  padding: 0 24px;
}

.support-content-title {
  position: relative;
  font-size: 32px;
  font-weight: 700;
  line-height: 180%;
  color: #333333;
  padding-left: 16px;
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  background-image: linear-gradient(90deg, #333333 50%, transparent 50%);
  background-size: 200%;
  background-position: 100% 0;
  opacity: 0;
}

.highlight-support {
  position: relative;
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  background-image: linear-gradient(90deg, #e66d54 50%, transparent 50%);
  background-size: 200%;
  background-position: 100% 0;
  opacity: 0;
}

.title-animation03__wrapper.is-ScrollActive .support-content-title {
  animation: textAnimation 0.65s cubic-bezier(0.45, 0.05, 0.55, 0.95) forwards;
}

.title-animation03__wrapper.is-ScrollActive .highlight-support {
  animation: textAnimation 0.65s cubic-bezier(0.45, 0.05, 0.55, 0.95) forwards 0.2s;
}

.support-content-title::after {
  content: "";
  position: absolute;
  background-image: url("../img/renewal/aboutus-text-emphasis.png");
  background-repeat: no-repeat;
  background-size: contain;
  top: -8px;
  right: 24px;
  width: 33px;
  height: 15px;
  opacity: 0;
}

.title-animation03__wrapper.is-ScrollActive .support-content-title::after {
  animation: fadeIn 0.8s ease forwards 0.3s;
}

.support-content-subtitle {
  font-size: 18px;
  font-weight: 500;
  line-height: 180%;
  color: #333333;
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  background-image: linear-gradient(90deg, #333333 50%, transparent 50%);
  background-size: 200%;
  background-position: 100% 0;
  opacity: 0;
}

.title-animation03__wrapper.is-ScrollActive .support-content-subtitle {
  animation: textAnimation 0.65s cubic-bezier(0.45, 0.05, 0.55, 0.95) forwards;
}

.support-content-list {
  display: flex;
  gap: 32px;
}

.support-content-list-card1-pc,
.support-content-list-card2-pc,
.support-content-list-card3-pc {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 312px;
  height: 312px;
  background-color: #f7eeea;
  border-radius: 8px;
  padding-top: 20px;
  opacity: 0;
}

.title-animation02__wrapper.is-ScrollActive .support-content-list-card1-pc {
  animation: fadeInUp 1s ease forwards 0.8s;
}

.title-animation02__wrapper.is-ScrollActive .support-content-list-card2-pc {
  animation: fadeInUp 1s ease forwards 1.2s;
}

.title-animation02__wrapper.is-ScrollActive .support-content-list-card3-pc {
  animation: fadeInUp 1s ease forwards 1.6s;
}

.support-content-list-card1-pc {
  gap: 5px;
}

.support-content-list-card2-pc,
.support-content-list-card3-pc {
  gap: 9px;
}

.support-content-list-card1-mobile,
.support-content-list-card2-mobile,
.support-content-list-card3-mobile {
  display: none;
}

.support-content-list-card-title {
  font-size: 24px;
  font-weight: 700;
  line-height: 150%;
  letter-spacing: 0.03em;
  text-align: center;
  color: #333333;
}

.support-content-list-card-text-type1,
.support-content-list-card-text-type2 {
  font-size: 13px;
  font-weight: 400;
  text-align: center;
  color: #333333;
}

.support-content-list-card-text-type1 {
  line-height: 180%;
}

.support-content-list-card-text-type2 {
  line-height: 150%;
}

.support-content-list-card-image1-container,
.support-content-list-card-image2-container,
.support-content-list-card-image3-container {
  background-size: contain;
  background-repeat: no-repeat;
  width: 312px;
  height: 200px;
  overflow: hidden;
}

.support-content-list-card-image1-container {
  background-image: url("../img/renewal/aboutus-support-image1-pc-large.png");
}

.support-content-list-card-image2-container {
  background-image: url("../img/renewal/aboutus-support-image2-pc-large.png");
}

.support-content-list-card-image3-container {
  background-image: url("../img/renewal/aboutus-support-image3-pc-large.png");
}

@media (max-width: 768px) {
  .support-content-title {
    padding-left: 0;
    margin-bottom: -1px;
  }

  .support-content-title::after {
    top: -9px;
    right: 16px;
  }

  .support-content-heading {
    height: 98px;
    margin-bottom: 14px;
  }

  .support-content-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 670px;
    width: 100%;
    gap: 32px;
  }

  .support-content-list-card1-pc,
  .support-content-list-card2-pc,
  .support-content-list-card3-pc {
    height: 232px;
  }

  .support-content-list-card3-pc {
    flex: 0 0 100%;
    max-width: 312px;
  }

  .support-content-list-card-title {
    font-weight: 500;
  }

  .support-content-list-card-image1-container,
  .support-content-list-card-image2-container,
  .support-content-list-card-image3-container {
    background-size: contain;
    background-repeat: no-repeat;
    width: 187px;
    height: 120px;
    overflow: hidden;
  }

  .support-content-list-card-image1-container {
    margin-left: 3px;
  }

  .support-content-list-card-image3-container {
    background-image: url("../img/renewal/aboutus-support-image3-pc-medium.png");
  }
}

@media (max-width: 768px) {
  .support-content {
    padding: 109px 0 48px 0;
  }

  .support-content-heading {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: fit-content;
    height: fit-content;
    margin-bottom: 24px;
  }

  .support-content-title {
    font-size: 26px;
    margin-bottom: 0px;
  }

  .support-content-title::after {
    top: -3px;
    right: 18px;
    width: 18px;
    height: 10px;
  }

  .support-content-subtitle {
    font-size: 17px;
    line-height: 170%;
    color: #555555;
  }

  .support-content-list {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    justify-content: center;
    max-width: 400px;
    width: calc(100% - 48px);
    height: fit-content;
    gap: 24px;
  }

  .support-content-list-card1-pc,
  .support-content-list-card2-pc,
  .support-content-list-card3-pc {
    display: none;
    animation: none !important;
    opacity: 0 !important;
  }

  .title-animation02__wrapper.is-ScrollActive .support-content-list-card1-pc,
  .title-animation02__wrapper.is-ScrollActive .support-content-list-card2-pc,
  .title-animation02__wrapper.is-ScrollActive .support-content-list-card3-pc {
    animation: none !important;
  }

  .support-content-list-card1-mobile,
  .support-content-list-card2-mobile,
  .support-content-list-card3-mobile {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: fit-content;
    background-color: #f7eeea;
    border-radius: 8px;
    margin: 0 auto;
    gap: 8px;
    opacity: 0;
  }

  .title-animation02__wrapper.is-ScrollActive .support-content-list-card1-mobile {
    animation: fadeInUp 1s ease forwards 0.8s;
  }

  .title-animation02__wrapper.is-ScrollActive .support-content-list-card2-mobile {
    animation: fadeInUp 1s ease forwards 1.3s;
  }

  .title-animation02__wrapper.is-ScrollActive .support-content-list-card3-mobile {
    animation: fadeInUp 1s ease forwards 1.8s;
  }

  .support-content-list-card-image1-container,
  .support-content-list-card-image2-container,
  .support-content-list-card-image3-container {
    width: 90px;
    height: 112px;
    margin-left: 0;
  }

  .support-content-list-card-image1-container {
    background-image: url("../img/renewal/aboutus-support-image1-mobile.png");
  }

  .support-content-list-card-image2-container {
    background-image: url("../img/renewal/aboutus-support-image2-mobile.png");
  }

  .support-content-list-card-image3-container {
    background-size: cover;
    background-image: url("../img/renewal/aboutus-support-image3-mobile.png");
  }

  .support-content-list-card-content {
    display: flex;
    flex-direction: column;
    max-width: 213px;
    height: fit-content;
    gap: 6px;
  }

  .support-content-list-card-title {
    font-size: 20px;
    font-weight: 500;
    padding-bottom: 2px;
    text-align: left;
  }

  .support-content-list-card-text-type1,
  .support-content-list-card-text-type2 {
    font-size: 14px;
    line-height: 150%;
    text-align: left;
  }
}

/* ======================================= お客様の声 ======================================= */
.user-voice,
.user-voice * {
  font-family: "Zen Kaku Gothic New";
}

.user-voice {
  background-color: #fdf4ee;
}

.user-voice-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 1048px;
  margin: 0 auto;
  padding: 56px 0 56px 0;
  gap: 16px;
}

.user-voice-heading {
  font-size: 32px;
  font-weight: 700;
  line-height: 180%;
  color: #333333;
  opacity: 0;
}

.user-voice-list .swiper-slide:last-child {
  margin-right: 0px;
}

.title-animation02__wrapper.is-ScrollActive .user-voice-heading {
  animation: fadeInUp 1s ease forwards;
}

.user-voice-content {
  position: relative;
  display: flex;
  justify-content: flex-start;
  width: 1048px;
  /* height: 347px; */
  padding: 22px 24px 0 24px;
}

.user-voice-list {
  display: flex;
  justify-content: center;
  max-width: 1000px;
  width: 100%;
  /* height: 280px; */
  padding: 46px 55px 38px 55px;
  gap: 64px;
  background-color: #ffffff;
  border-radius: 8px;
  filter: drop-shadow(6px 6px 0px rgba(173, 173, 173, 0.2));
  z-index: 3;
}

.sp-user-voice {
  display: none;
}

.user-voice-bubble-left {
  position: absolute;
  background-image: url("../img/renewal/aboutus-user-voice-bubble-left.png");
  background-size: cover;
  background-repeat: no-repeat;
  top: 0;
  left: 0;
  width: 176px;
  height: 101.01px;
  z-index: 2;
}

.user-voice-bubble-right {
  position: absolute;
  background-image: url("../img/renewal/aboutus-user-voice-bubble-right.png");
  background-size: cover;
  background-repeat: no-repeat;
  top: 232px;
  right: 0;
  width: 252px;
  height: 116px;
  z-index: 2;
}

.voice-card {
  position: relative;
  text-decoration: none;
  color: inherit;
  display: block;
  transition: transform 0.3s ease;
}

.voice-card::before {
  content: "";
  position: absolute;
  top: -13px;
  right: -32px;
  width: 0;
  height: 217px;
  border: 0.8px solid #e0e0e0;
}

.voice-card:last-child::before {
  display: none;
}

.voice-card:hover {
  color: #e66d54; /* ホバー時の文字色を変更 */
}

.voice-card:hover .voice-content h3 {
  color: #e66d54; /* ホバー時に見出しの色だけ変更 */
}

.voice-item {
  display: flex;
  flex-direction: column;
  width: 254px;
  /* height: 196px; */
  gap: 10px;
}

.voice-header {
  display: flex;
  width: 100%;
  height: 100px;
  gap: 11px;
}

.voice-image {
  position: relative;
  width: 100px;
  height: 100px;
}

.voice-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 96px;
  height: 96px;
}

.voice-image::before {
  content: "";
  position: absolute;
  top: 4px;
  left: 4px;
  background-color: #e66d54;
  width: 96px;
  height: 96px;
}

.voice-info {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding-top: 25px;
}

.voice-number {
  font-family: Roboto !important;
  font-size: 15px;
  font-weight: 500;
  line-height: 180%;
  color: #e66d54;
}

.voice-profile {
  display: flex;
  font-size: 15px;
  font-weight: 400;
  line-height: 180%;
  color: #888888;
  gap: 6px;
}

.voice-content {
  width: 100%;
  height: fit-content;
}

.voice-content h3 {
  font-size: 18px;
  font-weight: 500;
  line-height: 170%;
  color: #555555;
}

.user-voice .swiper-pagination {
  display: none;
}

.user-voice-button {
  display: flex;
  justify-content: center;
  width: 311px;
  height: fit-content;
  background-color: #ffffff;
  border: 1px solid #888888;
  border-radius: 28px;
  padding: 9px 16px;
}

.user-voice-button-text {
  font-size: 15px;
  font-weight: 700;
  line-height: 180%;
  color: #888888;
}

.user-voice-button:hover .user-voice-button-text {
  color: #e66d54;
}

@media (max-width: 768px) {
  .user-voice-inner {
    width: 100%;
  }

  .user-voice-content {
    max-width: 1066px;
    width: 100%;
    /* height: 347px; */
    margin: 0 40px 0 40px;
  }

  .user-voice-list {
    justify-content: flex-start;
    max-width: 1066px;
    padding: 46px 55px 38px 55px;
    gap: 0;
  }

  .pc-user-voice {
    display: none;
  }

  .sp-user-voice {
    display: block;
    width: 100%;
  }

  .sp-user-voice .swiper-slide {
    width: 286px !important;
    flex-shrink: 0;
  }

  .voice-card::before {
    top: -14px;
    right: 0;
  }
}

@media (max-width: 768px) {
  .user-voice-content {
    width: 100%;
    /* height: 347px; */
    margin: 0 0 0 80px;
  }

  .user-voice-bubble-right {
    right: 80px;
  }
}

@media (max-width: 768px) {
  .user-voice-inner {
    padding: 56px 0 47px 0;
    gap: 24px;
  }

  .user-voice-heading {
    font-size: 26px;
  }

  .user-voice-list .swiper-slide:last-child {
    margin-right: 24px;
  }

  .user-voice-content {
    height: 300px;
    padding: 16px 16px 0 16px;
    margin: 0 0 0 32px;
  }

  .user-voice-list {
    height: 100%;
    padding: 0;
    background-color: inherit;
    border-radius: 0;
    filter: none;
  }

  .user-voice-bubble-right {
    top: 170px;
    right: 32px;
  }

  .voice-card {
    height: 235px;
    background-color: #ffffff;
    border-radius: 8px;
    filter: drop-shadow(6px 6px 0px rgba(173, 173, 173, 0.2));
    padding: 24px 16px;
  }

  .voice-card::before {
    display: none;
  }

  .voice-item {
    /* height: 187px; */
  }

  .voice-header {
    gap: 16px;
  }

  .voice-info {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding-top: 25px;
  }

  .voice-number {
    font-family: Zen Kaku Gothic New !important;
    font-size: 15px;
    font-weight: 700;
    line-height: 170%;
  }

  .voice-profile {
    font-size: 15px;
    line-height: 170%;
    padding-top: 4px;
    gap: 9px;
  }

  .voice-content h3 {
    font-size: 17px;
  }

  .user-voice .swiper-pagination {
    position: absolute;
    width: 100%;
    display: flex;
    justify-content: center;
    bottom: 0.5px;
    left: -4.5%;
    z-index: 10;
  }

  .user-voice .swiper-pagination-bullet {
    width: 6px;
    height: 6px;
    background-color: inherit;
    opacity: 1;
    margin: 0 4px !important;
    border: 0.5px solid #888888;
  }

  .user-voice .swiper-pagination-bullet-active {
    background-color: #888888;
  }

  .user-voice-button {
    padding: 8px 16px 6px 16px;
    margin-top: 0;
  }

  .user-voice-button-text {
    font-size: 15px;
    line-height: 170%;
  }
}

/* ======================================= 医師監修コラム ======================================= */
.medically-reviewed-article,
.medically-reviewed-article * {
  font-family: "Zen Kaku Gothic New";
}

.medically-reviewed-article {
  background-color: #f7eeea;
}

.medically-reviewed-article-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 66px 0;
  gap: 20px;
}

.medically-reviewed-article-heading {
  font-size: 32px;
  font-weight: 700;
  line-height: 180%;
  color: #333333;
  margin-bottom: 22px;
  opacity: 0;
}

.title-animation02__wrapper.is-ScrollActive .medically-reviewed-article-heading {
  animation: fadeInUp 1s ease forwards;
}

.medically-reviewed-article-list {
  max-width: 1000px;
  width: 100%;
  height: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 27px;
  row-gap: 20px;
  margin-bottom: 7px;
}

.article-card {
  display: flex;
  flex-direction: column;
  width: 312px;
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s ease;
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  margin: 6px 0 6px 6px;
  padding-bottom: 12px;
  gap: 12px;
  transition: box-shadow 0.2s ease;
}

.article-card:hover {
  box-shadow: 6px 6px 0 rgba(173, 173, 173, 0.2);
}

.article-card:hover .article-title h3 {
  color: #e66d54;
}

.article-image {
  position: relative;
  display: block;
  width: 100%;
  height: 175px;
  overflow: hidden;
}

.article-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
}

.article-content {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: auto;
  padding: 0 12px 0 10px;
  gap: 8px;
}

.article-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: fit-content;
}

.article-date {
  font-size: 13px;
  font-weight: 500;
  line-height: 180%;
  color: #888888;
}

.article-category {
  padding: 0 7px;
  border: 1px solid #51767d;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 500;
  line-height: 160%;
  color: #51767d;
}

.article-title {
  width: 100%;
}

.article-title h3 {
  font-size: 15px;
  font-weight: 500;
  line-height: 160%;
  color: #333333;
}

.medically-reviewed-article-button {
  display: flex;
  justify-content: center;
  width: 311px;
  height: 47px;
  background-color: #ffffff;
  border: 1px solid #888888;
  border-radius: 28px;
  padding: 10px 16px;
}

.medically-reviewed-article-button-text {
  font-size: 15px;
  font-weight: 700;
  line-height: 180%;
  color: #888888;
}

.medically-reviewed-article-button:hover .medically-reviewed-article-button-text {
  color: #e66d54;
}

@media (max-width: 768px) {
  .medically-reviewed-article-list {
    max-width: 680px;
    grid-template-columns: repeat(2, 1fr);
  }

  .tablet-hide {
    display: none !important;
  }
}

@media (max-width: 768px) {
  .medically-reviewed-article-inner {
    padding: 48px 0;
    gap: 24px;
  }

  .medically-reviewed-article-heading {
    font-size: 26px;
    margin-bottom: 0;
  }

  .medically-reviewed-article-list {
    max-width: 320px;
    grid-template-columns: 1fr;
    margin-bottom: 0;
  }

  .article-card {
    margin: 0 auto;
    gap: 10px;
  }

  .article-content {
    padding: 0 11px;
    gap: 8px;
  }

  .article-info {
    margin-bottom: 3px;
  }

  .article-date {
    font-size: 14px;
    line-height: 170%;
  }

  .article-category {
    padding: 0 7px;
    font-size: 14px;
    line-height: 170%;
    height: 20px;
  }

  .article-title h3 {
    font-size: 15px;
  }

  .medically-reviewed-article-button {
    height: 38px;
    padding: 0;
    align-items: center;
  }

  .medically-reviewed-article-button-text {
    font-size: 15px;
    line-height: 170%;
  }

  .mobile-hide {
    display: none !important;
  }
}

/* ======================================= 利用ガイド ======================================= */
.usage-guide,
.usage-guide * {
  font-family: "Zen Kaku Gothic New";
}

.usage-guide {
  background-color: #ffffff;
}

.usage-guide-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 55px 0;
  gap: 24px;
}

.usage-heading {
  font-size: 32px;
  font-weight: 700;
  line-height: 180%;
  color: #333333;
  opacity: 0;
}

.title-animation02__wrapper.is-ScrollActive .usage-heading {
  animation: fadeInUp 1s ease forwards;
}

.usage-video {
  max-width: 580px;
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
}

.usage-guide-annotation {
  margin-top: 12px;
  text-align: center;
}

.usage-guide-annotation p {
  font-size: 12px;
  color: #888888;
  line-height: 1.5;
  margin: 4px 0;
}

@media (max-width: 768px) {
  .usage-guide-content {
    padding: 47px 0;
    gap: 24px;
  }

  .usage-heading {
    font-size: 26px;
    line-height: 150%;
    text-align: center;
  }

  .usage-video {
    max-width: 327px;
    width: 100%;
    height: auto;
    aspect-ratio: 16/9;
  }
}

/* 余白用のダミースライド */
.price-plan-dummy-slide {
  width: 32px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

/* Safari専用のスタイル - -webkit-backdrop-filterはSafariが対応している特有のプロパティ */
@supports (-webkit-backdrop-filter: none) and (not (backdrop-filter: none)) {
  .price-plan-dummy-slide {
    width: 32px !important;
    height: 500px !important;
    opacity: 0 !important;
    pointer-events: none !important;
    margin-right: 0 !important;
    flex-shrink: 0 !important;
  }
}

.price-plan-list-card-image-container-type1,
.price-plan-list-card-image-container-type2 {
  position: relative;
  display: block;
  min-height: 90px;
  height: 90px;
}

.price-plan-list-card-image-container-type1 {
  width: 272px;
}

.price-plan-list-card-image-container-type2 {
  width: 280px;
}

.price-plan-list-card-image1,
.price-plan-list-card-image2,
.price-plan-list-card-image3,
.price-plan-list-card-image4,
.price-plan-list-card-image5,
.price-plan-list-card-image6 {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  height: 90px;
  background-repeat: no-repeat;
}

.price-plan-list-card-image1 {
  width: 272px;
  background-image: url("../img/renewal/aboutus-price-plan-imege1-pc.png");
  background-size: 100% 100%;
}

.price-plan-list-card-image2 {
  width: 280px;
  background-image: url("../img/renewal/aboutus-price-plan-imege2.png");
  background-size: 100% 100%;
}

.price-plan-list-card-image3 {
  width: 280px;
  background-image: url("../img/renewal/aboutus-price-plan-imege3.png");
  background-size: 100% 100%;
}

.price-plan-list-card-image4 {
  width: 280px;
  background-image: url("../img/renewal/aboutus-price-plan-imege4.png");
  background-size: 97% 100%;
}

.price-plan-list-card-image5 {
  width: 280px;
  background-image: url("../img/renewal/aboutus-price-plan-imege5.png");
  background-size: 97% 100%;
}

.price-plan-list-card-image6 {
  width: 280px;
  background-image: url("../img/renewal/aboutus-price-plan-imege6.png");
  background-size: 97% 100%;
}

.prescription-heading-type1,
.prescription-heading-type2 {
  position: relative;
  width: 100%;
  font-size: 15px;
  font-weight: 700;
  line-height: 180%;
  text-align: left;
  color: #888888;
}

.prescription-heading-type1::before,
.prescription-heading-type2::before {
  content: "";
  position: absolute;
  top: 50%;
  width: 223px;
  height: 0;
  border: 0.5px solid #c4c4c4;
}

.prescription-heading-type1::before {
  right: 6px;
}

.prescription-heading-type2::before {
  right: 0;
}

.price-plan-list-card-prescription {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 31.5px;
}

.prescription-list {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
}

.prescription-list::before {
  content: "";
  position: absolute;
  bottom: -16px;
  left: 3px;
  width: 280px;
  height: 0;
  border: 0.5px dashed #c4c4c4;
}

.prescription-list-end {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
}

.prescription-list-item,
.prescription-list-item-note {
  font-size: 12px;
  font-weight: 400;
  line-height: 160%;
  color: #333333;
}



.price-plan-regular-delivery {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.price-plan-regular-delivery-title {
  position: absolute;
  top: -35px;
  left: 67px;
  padding: 0 11px 5px 12px;
  font-size: 24px;
  font-weight: 700;
  line-height: 160%;
  letter-spacing: 0.03em;
  text-align: center;
  color: #333333;
  background-color: #f7eeea;
}

.price-plan-regular-delivery-title::before,
.price-plan-regular-delivery-title::after {
  content: "";
  position: absolute;
  top: 31px;
  width: 26.4px; /* 斜線の長さ */
  height: 1px; /* 斜線の太さ */
  background-color: #c4c4c4;
}

.price-plan-regular-delivery-title::before {
  left: -5px;
  transform: rotate(52.7deg); /* 左側の斜線の角度 */
}

.price-plan-regular-delivery-title::after {
  right: -5px;
  transform: rotate(-52.7deg); /* 右側の斜線の角度 */
}

.price-plan-regular-delivery-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 700px;
  height: 180px;
  border-width: 1px 0px 1px 0px;
  border-style: solid;
  border-color: #c4c4c4;
  padding: 10.74px 54px 0.26px 54px;
  gap: 36.5px;
}

.price-plan-regular-delivery-content-image {
  position: relative;
  width: 200px;
  height: 147px;
}

.price-plan-regular-delivery-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 200px;
  height: 147px;
  background-image: url("../img/renewal/aboutus-price-plan-delivery-image-pc.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  overflow: hidden;
}

.price-plan-regular-delivery-content-list {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 352px;
  height: fit-content;
}

.regular-delivery-item {
  display: flex;
  align-items: flex-start;
  font-size: 18px;
  font-weight: 500;
  line-height: 200%;
  color: #333333;
  gap: 0;
}

.regular-delivery-item-check {
  position: relative;
  padding-left: 24px;
}

.regular-delivery-item-check:after {
  content: "";
  display: block;
  position: absolute;
  border-left: 2px solid #888888;
  border-bottom: 2px solid #888888;
  width: 12.5px;
  height: 7.5px;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  top: 12.5px;
  left: 0;
}

@media (max-width: 768px) {
  .pc-price-plan {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .price-plan::before {
    top: -8.5%;
  }

  .price-plan::after {
    bottom: -8.5%;
  }
}

@media (max-width: 768px) {
  .price-plan::before {
    top: -6.5%;
    aspect-ratio: 750/83.33;
  }

  .price-plan::after {
    bottom: -6.5%;
    aspect-ratio: 750/83.33;
  }

  .price-plan-list {
    padding-left: 80px;
    /* margin: 0 0 94px 80px; */
  }

  .price-plan-card-type2.swiper-slide:last-child {
    margin-right: 44px;
  }
}

@media (max-width: 768px) {
  .price-plan::before {
    top: -3.5%;
    aspect-ratio: 750/83.33;
  }

  .price-plan::after {
    bottom: -3.5%;
    aspect-ratio: 750/83.33;
  }
}

@media (max-width: 768px) {
  .price-plan::before {
    top: -5.8%;
    background-image: url("../img/renewal/aboutus-price-plan-background-top-mobile.png");
    aspect-ratio: 375/80;
  }

  .price-plan::after {
    bottom: -5.8%;
    background-image: url("../img/renewal/aboutus-price-plan-background-bottom-mobile.png");
    aspect-ratio: 375/80;
  }

  .price-plan-content {
    padding: 24px 0;
    gap: 32px;
  }

  .price-plan-heading {
    font-size: 26px;
    margin-bottom: 1px;
  }

  .price-plan-text {
    font-size: 17px;
    line-height: 170%;
    color: #555555;
    text-align: center;
    width: 327px;
    margin-bottom: 0;
  }

  .price-plan-list {
    padding-left: 24px;
    margin-bottom: 70px;
  }

  .pc-price-plan .swiper-slide {
    margin-right: 16px;
  }

  .price-plan-card-type1,
  .price-plan-card-type2 {
    width: 280px;
    /* height: 441px; */
    padding: 32px 16px 0 16px;
    gap: 6px;
  }

  .price-plan-card-type2.swiper-slide:last-child {
    /* margin-right: 24px; */
  }

  .price-plan .swiper-pagination {
    position: absolute;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 340px;
    height: fit-content;
    gap: 8px;
    z-index: 10;
  }

  .price-plan .swiper-pagination-bullet {
    height: 30px;
    padding: 4px 11px;
    background: #ffffff;
    border: 1px solid #888888;
    border-radius: 28px;
    font-family: Zen Kaku Gothic New;
    font-size: 15px;
    font-weight: 500;
    line-height: 170%;
    color: #888888;
    text-align: center;
    margin: 0;
    opacity: 1;
  }

  .price-plan .swiper-pagination-bullet:nth-child(1) {
    width: 141px;
    margin: 0;
  }

  .price-plan .swiper-pagination-bullet:nth-child(2),
  .price-plan .swiper-pagination-bullet:nth-child(4) {
    width: 89px;
    margin: 0;
  }

  .price-plan .swiper-pagination-bullet:nth-child(3) {
    width: 102px;
    margin: 0;
  }

  .price-plan .swiper-pagination-bullet:nth-child(5) {
    width: 130px;
    margin: 0;
  }

  .price-plan .swiper-pagination-bullet:nth-child(6) {
    width: 120px;
    margin: 0;
  }

  .price-plan .swiper-pagination-bullet:nth-child(1)::after {
    content: "更年期障害";
  }

  .price-plan .swiper-pagination-bullet:nth-child(2)::after {
    content: "プレ更年期";
  }

  .price-plan .swiper-pagination-bullet:nth-child(3)::after {
    content: "生理トラブル";
  }

  .price-plan .swiper-pagination-bullet:nth-child(4)::after {
    content: "セクシャルケア";
  }

  .price-plan .swiper-pagination-bullet:nth-child(5)::after {
    content: "体重管理";
  }

  .price-plan .swiper-pagination-bullet:nth-child(6)::after {
    content: "エイジングケア";
  }

  .price-plan .swiper-pagination-bullet-active {
    background: #e66d54;
    border: none;
    color: #ffffff;
  }

  .title-number {
    position: absolute;
    top: -15px;
    left: 44%;
    font-size: 12px;
  }

  .price-plan-card-title {
    font-size: 20px;
    line-height: 160%;
  }

  .price-plan-card-subtitle {
    font-size: 14px;
    display: block;
    text-align: center;
    margin-top: 4px;
    margin-bottom: 12px;
    width: 100%;
  }

  .price-plan-description {
    font-size: 15px;
    line-height: 170%;
    padding: 0 10px;
  }


  .prescription-section-title {
    font-size: 14px;
  }


  .price-plan-list-card-image-container-type1,
  .price-plan-list-card-image-container-type2 {
    min-height: 75px;
    height: 75px;
    margin-bottom: 8px;
  }

  .price-plan-list-card-image-container-type1 {
    width: 248px;
  }

  .price-plan-list-card-image-container-type2 {
    width: 218px;
  }

  .price-plan-list-card-image1,
  .price-plan-list-card-image2,
  .price-plan-list-card-image3,
  .price-plan-list-card-image4,
  .price-plan-list-card-image5 {
    height: 75px;
  }

  .price-plan-list-card-image1 {
    width: 248px;
    background-image: url("../img/renewal/aboutus-price-plan-imege1-mobile.png");
    background-size: 100% 100%;
  }

  .price-plan-list-card-image2 {
    width: 218px;
    background-image: url("../img/renewal/aboutus-price-plan-imege2.png");
    background-size: 100% 100%;
  }

  .price-plan-list-card-image3 {
    width: 218px;
    background-image: url("../img/renewal/aboutus-price-plan-imege3.png");
    background-size: 100% 100%;
  }

  .price-plan-list-card-image4 {
    width: 218px;
    background-image: url("../img/renewal/aboutus-price-plan-imege4.png");
    background-size: 97% 100%;
  }

  .price-plan-list-card-image5 {
    width: 218px;
    background-image: url("../img/renewal/aboutus-price-plan-imege5.png");
    background-size: 97% 100%;
  }

  .price-plan-list-card-image6 {
    width: 218px;
    background-image: url("../img/renewal/aboutus-price-plan-imege6.png");
    background-size: 97% 100%;
  }

  .prescription-heading-type1,
  .prescription-heading-type2 {
    font-size: 15px;
    line-height: 170%;
    padding-top: 1px;
    margin-bottom: 7px;
  }

  .prescription-heading-type1::before,
  .prescription-heading-type2::before {
    width: 197px;
    right: 0;
  }

  .price-plan-list-card-prescription {
    gap: 23.5px;
  }

  .prescription-list::before {
    bottom: -12px;
    left: 0;
    width: 248px;
    height: 0;
    border: 0.5px dashed #c4c4c4;
  }

  .prescription-list-item,
  .prescription-list-item-note {
    font-size: 12px;
    line-height: 170%;
  }


  .price-plan-regular-delivery-title {
    top: -33px;
    left: 17px;
    font-size: 20px;
    padding: 0 18px 5px 18px;
  }

  .price-plan-regular-delivery-title::before,
  .price-plan-regular-delivery-title::after {
    top: 24px;
  }

  .price-plan-regular-delivery-title::before {
    left: -4px;
  }

  .price-plan-regular-delivery-title::after {
    right: -4px;
  }

  .price-plan-regular-delivery-content {
    justify-content: center;
    width: 327px;
    height: 160px;
    padding: 16px 0 0.26px 3px;
    margin: 0 auto;
    gap: 10px;
  }

  .price-plan-regular-delivery-content-image {
    display: block;
    width: 100px;
    height: 100px;
  }

  .price-plan-regular-delivery-image {
    top: 0;
    left: 0;
    width: 100px;
    height: 100px;
    background-image: url("../img/renewal/aboutus-price-plan-delivery-image-mobile.png");
  }

  .price-plan-regular-delivery-content-list {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 180px;
    height: fit-content;
    padding-top: 2px;
    gap: 8px;
  }

  .regular-delivery-item {
    font-size: 15px;
    line-height: 170%;
    gap: 0;
  }

  .regular-delivery-item-check {
    position: relative;
    padding-left: 20px;
  }

  .regular-delivery-item-check:after {
    content: "";
    display: block;
    position: absolute;
    border-left: 2px solid #888888;
    border-bottom: 2px solid #888888;
    width: 10.5px;
    height: 6.5px;
    transform: rotate(-45deg);
    top: 30%;
    left: 0;
  }
}

@media (max-width: 768px) {
  .price-plan::before {
    top: -3.5%;
    background-image: url("../img/renewal/aboutus-price-plan-background-top-mobile.png");
    aspect-ratio: 375/80;
  }

  .price-plan::after {
    bottom: -3.5%;
    background-image: url("../img/renewal/aboutus-price-plan-background-bottom-mobile.png");
    aspect-ratio: 375/80;
  }
}

@media (max-width: 768px) {
  .price-plan::before {
    top: -2.5%;
    background-image: url("../img/renewal/aboutus-price-plan-background-top-mobile.png");
    aspect-ratio: 320/72;
  }

  .price-plan::after {
    bottom: -2.5%;
    background-image: url("../img/renewal/aboutus-price-plan-background-bottom-mobile.png");
    aspect-ratio: 320/72;
  }
}

/* ======================================= サポート ======================================= */
.support,
.support * {
  font-family: "Zen Kaku Gothic New";
}

.support {
  background-color: #ffffff;
}

.support-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  padding: 166px 0 64px 0;
  /* padding: calc(100vw / 1440 * 100 + 50px) 0 64px 0; */
}

.support-content-heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 396px;
  height: 106px;
  margin-bottom: 15px;
}

.support-title__wrapper {
  padding: 0 24px;
}

.support-content-title {
  position: relative;
  font-size: 32px;
  font-weight: 700;
  line-height: 180%;
  color: #333333;
  padding-left: 16px;
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  background-image: linear-gradient(90deg, #333333 50%, transparent 50%);
  background-size: 200%;
  background-position: 100% 0;
  opacity: 0;
}

.highlight-support {
  position: relative;
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  background-image: linear-gradient(90deg, #e66d54 50%, transparent 50%);
  background-size: 200%;
  background-position: 100% 0;
  opacity: 0;
}

.title-animation03__wrapper.is-ScrollActive .support-content-title {
  animation: textAnimation 0.65s cubic-bezier(0.45, 0.05, 0.55, 0.95) forwards;
}

.title-animation03__wrapper.is-ScrollActive .highlight-support {
  animation: textAnimation 0.65s cubic-bezier(0.45, 0.05, 0.55, 0.95) forwards 0.2s;
}

.support-content-title::after {
  content: "";
  position: absolute;
  background-image: url("../img/renewal/aboutus-text-emphasis.png");
  background-repeat: no-repeat;
  background-size: contain;
  top: -8px;
  right: 24px;
  width: 33px;
  height: 15px;
  opacity: 0;
}

.title-animation03__wrapper.is-ScrollActive .support-content-title::after {
  animation: fadeIn 0.8s ease forwards 0.3s;
}

.support-content-subtitle {
  font-size: 18px;
  font-weight: 500;
  line-height: 180%;
  color: #333333;
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  background-image: linear-gradient(90deg, #333333 50%, transparent 50%);
  background-size: 200%;
  background-position: 100% 0;
  opacity: 0;
}

.title-animation03__wrapper.is-ScrollActive .support-content-subtitle {
  animation: textAnimation 0.65s cubic-bezier(0.45, 0.05, 0.55, 0.95) forwards;
}

.support-content-list {
  display: flex;
  gap: 32px;
}

.support-content-list-card1-pc,
.support-content-list-card2-pc,
.support-content-list-card3-pc {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 312px;
  height: 312px;
  background-color: #f7eeea;
  border-radius: 8px;
  padding-top: 20px;
  opacity: 0;
}

.title-animation02__wrapper.is-ScrollActive .support-content-list-card1-pc {
  animation: fadeInUp 1s ease forwards 0.8s;
}

.title-animation02__wrapper.is-ScrollActive .support-content-list-card2-pc {
  animation: fadeInUp 1s ease forwards 1.2s;
}

.title-animation02__wrapper.is-ScrollActive .support-content-list-card3-pc {
  animation: fadeInUp 1s ease forwards 1.6s;
}

.support-content-list-card1-pc {
  gap: 5px;
}

.support-content-list-card2-pc,
.support-content-list-card3-pc {
  gap: 9px;
}

.support-content-list-card1-mobile,
.support-content-list-card2-mobile,
.support-content-list-card3-mobile {
  display: none;
}

.support-content-list-card-title {
  font-size: 24px;
  font-weight: 700;
  line-height: 150%;
  letter-spacing: 0.03em;
  text-align: center;
  color: #333333;
}

.support-content-list-card-text-type1,
.support-content-list-card-text-type2 {
  font-size: 13px;
  font-weight: 400;
  text-align: center;
  color: #333333;
}

.support-content-list-card-text-type1 {
  line-height: 180%;
}

.support-content-list-card-text-type2 {
  line-height: 150%;
}

.support-content-list-card-image1-container,
.support-content-list-card-image2-container,
.support-content-list-card-image3-container {
  background-size: contain;
  background-repeat: no-repeat;
  width: 312px;
  height: 200px;
  overflow: hidden;
}

.support-content-list-card-image1-container {
  background-image: url("../img/renewal/aboutus-support-image1-pc-large.png");
}

.support-content-list-card-image2-container {
  background-image: url("../img/renewal/aboutus-support-image2-pc-large.png");
}

.support-content-list-card-image3-container {
  background-image: url("../img/renewal/aboutus-support-image3-pc-large.png");
}

@media (max-width: 768px) {
  .support-content-title {
    padding-left: 0;
    margin-bottom: -1px;
  }

  .support-content-title::after {
    top: -9px;
    right: 16px;
  }

  .support-content-heading {
    height: 98px;
    margin-bottom: 14px;
  }

  .support-content-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 670px;
    width: 100%;
    gap: 32px;
  }

  .support-content-list-card1-pc,
  .support-content-list-card2-pc,
  .support-content-list-card3-pc {
    height: 232px;
  }

  .support-content-list-card3-pc {
    flex: 0 0 100%;
    max-width: 312px;
  }

  .support-content-list-card-title {
    font-weight: 500;
  }

  .support-content-list-card-image1-container,
  .support-content-list-card-image2-container,
  .support-content-list-card-image3-container {
    background-size: contain;
    background-repeat: no-repeat;
    width: 187px;
    height: 120px;
    overflow: hidden;
  }

  .support-content-list-card-image1-container {
    margin-left: 3px;
  }

  .support-content-list-card-image3-container {
    background-image: url("../img/renewal/aboutus-support-image3-pc-medium.png");
  }
}

@media (max-width: 768px) {
  .support-content {
    padding: 109px 0 48px 0;
  }

  .support-content-heading {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: fit-content;
    height: fit-content;
    margin-bottom: 24px;
  }

  .support-content-title {
    font-size: 26px;
    margin-bottom: 0px;
  }

  .support-content-title::after {
    top: -3px;
    right: 18px;
    width: 18px;
    height: 10px;
  }

  .support-content-subtitle {
    font-size: 17px;
    line-height: 170%;
    color: #555555;
  }

  .support-content-list {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    justify-content: center;
    max-width: 400px;
    width: calc(100% - 48px);
    height: fit-content;
    gap: 24px;
  }

  .support-content-list-card1-pc,
  .support-content-list-card2-pc,
  .support-content-list-card3-pc {
    display: none;
    animation: none !important;
    opacity: 0 !important;
  }

  .title-animation02__wrapper.is-ScrollActive .support-content-list-card1-pc,
  .title-animation02__wrapper.is-ScrollActive .support-content-list-card2-pc,
  .title-animation02__wrapper.is-ScrollActive .support-content-list-card3-pc {
    animation: none !important;
  }

  .support-content-list-card1-mobile,
  .support-content-list-card2-mobile,
  .support-content-list-card3-mobile {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: fit-content;
    background-color: #f7eeea;
    border-radius: 8px;
    margin: 0 auto;
    gap: 8px;
    opacity: 0;
  }

  .title-animation02__wrapper.is-ScrollActive .support-content-list-card1-mobile {
    animation: fadeInUp 1s ease forwards 0.8s;
  }

  .title-animation02__wrapper.is-ScrollActive .support-content-list-card2-mobile {
    animation: fadeInUp 1s ease forwards 1.3s;
  }

  .title-animation02__wrapper.is-ScrollActive .support-content-list-card3-mobile {
    animation: fadeInUp 1s ease forwards 1.8s;
  }

  .support-content-list-card-image1-container,
  .support-content-list-card-image2-container,
  .support-content-list-card-image3-container {
    width: 90px;
    height: 112px;
    margin-left: 0;
  }

  .support-content-list-card-image1-container {
    background-image: url("../img/renewal/aboutus-support-image1-mobile.png");
  }

  .support-content-list-card-image2-container {
    background-image: url("../img/renewal/aboutus-support-image2-mobile.png");
  }

  .support-content-list-card-image3-container {
    background-size: cover;
    background-image: url("../img/renewal/aboutus-support-image3-mobile.png");
  }

  .support-content-list-card-content {
    display: flex;
    flex-direction: column;
    max-width: 213px;
    height: fit-content;
    gap: 6px;
  }

  .support-content-list-card-title {
    font-size: 20px;
    font-weight: 500;
    padding-bottom: 2px;
    text-align: left;
  }

  .support-content-list-card-text-type1,
  .support-content-list-card-text-type2 {
    font-size: 14px;
    line-height: 150%;
    text-align: left;
  }
}

/* ======================================= お客様の声 ======================================= */
.user-voice,
.user-voice * {
  font-family: "Zen Kaku Gothic New";
}

.user-voice {
  background-color: #fdf4ee;
}

.user-voice-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 1048px;
  margin: 0 auto;
  padding: 56px 0 56px 0;
  gap: 16px;
}

.user-voice-heading {
  font-size: 32px;
  font-weight: 700;
  line-height: 180%;
  color: #333333;
  opacity: 0;
}

.user-voice-list .swiper-slide:last-child {
  margin-right: 0px;
}

.title-animation02__wrapper.is-ScrollActive .user-voice-heading {
  animation: fadeInUp 1s ease forwards;
}

.user-voice-content {
  position: relative;
  display: flex;
  justify-content: flex-start;
  width: 1048px;
  /* height: 347px; */
  padding: 22px 24px 0 24px;
}

.user-voice-list {
  display: flex;
  justify-content: center;
  max-width: 1000px;
  width: 100%;
  /* height: 280px; */
  padding: 46px 55px 38px 55px;
  gap: 64px;
  background-color: #ffffff;
  border-radius: 8px;
  filter: drop-shadow(6px 6px 0px rgba(173, 173, 173, 0.2));
  z-index: 3;
}

.sp-user-voice {
  display: none;
}

.user-voice-bubble-left {
  position: absolute;
  background-image: url("../img/renewal/aboutus-user-voice-bubble-left.png");
  background-size: cover;
  background-repeat: no-repeat;
  top: 0;
  left: 0;
  width: 176px;
  height: 101.01px;
  z-index: 2;
}

.user-voice-bubble-right {
  position: absolute;
  background-image: url("../img/renewal/aboutus-user-voice-bubble-right.png");
  background-size: cover;
  background-repeat: no-repeat;
  top: 232px;
  right: 0;
  width: 252px;
  height: 116px;
  z-index: 2;
}

.voice-card {
  position: relative;
  text-decoration: none;
  color: inherit;
  display: block;
  transition: transform 0.3s ease;
}

.voice-card::before {
  content: "";
  position: absolute;
  top: -13px;
  right: -32px;
  width: 0;
  height: 217px;
  border: 0.8px solid #e0e0e0;
}

.voice-card:last-child::before {
  display: none;
}

.voice-card:hover {
  color: #e66d54; /* ホバー時の文字色を変更 */
}

.voice-card:hover .voice-content h3 {
  color: #e66d54; /* ホバー時に見出しの色だけ変更 */
}

.voice-item {
  display: flex;
  flex-direction: column;
  width: 254px;
  /* height: 196px; */
  gap: 10px;
}

.voice-header {
  display: flex;
  width: 100%;
  height: 100px;
  gap: 11px;
}

.voice-image {
  position: relative;
  width: 100px;
  height: 100px;
}

.voice-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 96px;
  height: 96px;
}

.voice-image::before {
  content: "";
  position: absolute;
  top: 4px;
  left: 4px;
  background-color: #e66d54;
  width: 96px;
  height: 96px;
}

.voice-info {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding-top: 25px;
}

.voice-number {
  font-family: Roboto !important;
  font-size: 15px;
  font-weight: 500;
  line-height: 180%;
  color: #e66d54;
}

.voice-profile {
  display: flex;
  font-size: 15px;
  font-weight: 400;
  line-height: 180%;
  color: #888888;
  gap: 6px;
}

.voice-content {
  width: 100%;
  height: fit-content;
}

.voice-content h3 {
  font-size: 18px;
  font-weight: 500;
  line-height: 170%;
  color: #555555;
}

.user-voice .swiper-pagination {
  display: none;
}

.user-voice-button {
  display: flex;
  justify-content: center;
  width: 311px;
  height: fit-content;
  background-color: #ffffff;
  border: 1px solid #888888;
  border-radius: 28px;
  padding: 9px 16px;
}

.user-voice-button-text {
  font-size: 15px;
  font-weight: 700;
  line-height: 180%;
  color: #888888;
}

.user-voice-button:hover .user-voice-button-text {
  color: #e66d54;
}

@media (max-width: 768px) {
  .user-voice-inner {
    width: 100%;
  }

  .user-voice-content {
    max-width: 1066px;
    width: 100%;
    /* height: 347px; */
    margin: 0 40px 0 40px;
  }

  .user-voice-list {
    justify-content: flex-start;
    max-width: 1066px;
    padding: 46px 55px 38px 55px;
    gap: 0;
  }

  .pc-user-voice {
    display: none;
  }

  .sp-user-voice {
    display: block;
    width: 100%;
  }

  .sp-user-voice .swiper-slide {
    width: 286px !important;
    flex-shrink: 0;
  }

  .voice-card::before {
    top: -14px;
    right: 0;
  }
}

@media (max-width: 768px) {
  .user-voice-content {
    width: 100%;
    /* height: 347px; */
    margin: 0 0 0 80px;
  }

  .user-voice-bubble-right {
    right: 80px;
  }
}

@media (max-width: 768px) {
  .user-voice-inner {
    padding: 56px 0 47px 0;
    gap: 24px;
  }

  .user-voice-heading {
    font-size: 26px;
  }

  .user-voice-list .swiper-slide:last-child {
    margin-right: 24px;
  }

  .user-voice-content {
    height: 300px;
    padding: 16px 16px 0 16px;
    margin: 0 0 0 32px;
  }

  .user-voice-list {
    height: 100%;
    padding: 0;
    background-color: inherit;
    border-radius: 0;
    filter: none;
  }

  .user-voice-bubble-right {
    top: 170px;
    right: 32px;
  }

  .voice-card {
    height: 235px;
    background-color: #ffffff;
    border-radius: 8px;
    filter: drop-shadow(6px 6px 0px rgba(173, 173, 173, 0.2));
    padding: 24px 16px;
  }

  .voice-card::before {
    display: none;
  }

  .voice-item {
    /* height: 187px; */
  }

  .voice-header {
    gap: 16px;
  }

  .voice-info {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding-top: 25px;
  }

  .voice-number {
    font-family: Zen Kaku Gothic New !important;
    font-size: 15px;
    font-weight: 700;
    line-height: 170%;
  }

  .voice-profile {
    font-size: 15px;
    line-height: 170%;
    padding-top: 4px;
    gap: 9px;
  }

  .voice-content h3 {
    font-size: 17px;
  }

  .user-voice .swiper-pagination {
    position: absolute;
    width: 100%;
    display: flex;
    justify-content: center;
    bottom: 0.5px;
    left: -4.5%;
    z-index: 10;
  }

  .user-voice .swiper-pagination-bullet {
    width: 6px;
    height: 6px;
    background-color: inherit;
    opacity: 1;
    margin: 0 4px !important;
    border: 0.5px solid #888888;
  }

  .user-voice .swiper-pagination-bullet-active {
    background-color: #888888;
  }

  .user-voice-button {
    padding: 8px 16px 6px 16px;
    margin-top: 0;
  }

  .user-voice-button-text {
    font-size: 15px;
    line-height: 170%;
  }
}

/* ======================================= 医師監修コラム ======================================= */
.medically-reviewed-article,
.medically-reviewed-article * {
  font-family: "Zen Kaku Gothic New";
}

.medically-reviewed-article {
  background-color: #f7eeea;
}

.medically-reviewed-article-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 66px 0;
  gap: 20px;
}

.medically-reviewed-article-heading {
  font-size: 32px;
  font-weight: 700;
  line-height: 180%;
  color: #333333;
  margin-bottom: 22px;
  opacity: 0;
}

.title-animation02__wrapper.is-ScrollActive .medically-reviewed-article-heading {
  animation: fadeInUp 1s ease forwards;
}

.medically-reviewed-article-list {
  max-width: 1000px;
  width: 100%;
  height: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 27px;
  row-gap: 20px;
  margin-bottom: 7px;
}

.article-card {
  display: flex;
  flex-direction: column;
  width: 312px;
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s ease;
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  margin: 6px 0 6px 6px;
  padding-bottom: 12px;
  gap: 12px;
  transition: box-shadow 0.2s ease;
}

.article-card:hover {
  box-shadow: 6px 6px 0 rgba(173, 173, 173, 0.2);
}

.article-card:hover .article-title h3 {
  color: #e66d54;
}

.article-image {
  position: relative;
  display: block;
  width: 100%;
  height: 175px;
  overflow: hidden;
}

.article-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
}

.article-content {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: auto;
  padding: 0 12px 0 10px;
  gap: 8px;
}

.article-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: fit-content;
}

.article-date {
  font-size: 13px;
  font-weight: 500;
  line-height: 180%;
  color: #888888;
}

.article-category {
  padding: 0 7px;
  border: 1px solid #51767d;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 500;
  line-height: 160%;
  color: #51767d;
}

.article-title {
  width: 100%;
}

.article-title h3 {
  font-size: 15px;
  font-weight: 500;
  line-height: 160%;
  color: #333333;
}

.medically-reviewed-article-button {
  display: flex;
  justify-content: center;
  width: 311px;
  height: 47px;
  background-color: #ffffff;
  border: 1px solid #888888;
  border-radius: 28px;
  padding: 10px 16px;
}

.medically-reviewed-article-button-text {
  font-size: 15px;
  font-weight: 700;
  line-height: 180%;
  color: #888888;
}

.medically-reviewed-article-button:hover .medically-reviewed-article-button-text {
  color: #e66d54;
}

@media (max-width: 768px) {
  .medically-reviewed-article-list {
    max-width: 680px;
    grid-template-columns: repeat(2, 1fr);
  }

  .tablet-hide {
    display: none !important;
  }
}

@media (max-width: 768px) {
  .medically-reviewed-article-inner {
    padding: 48px 0;
    gap: 24px;
  }

  .medically-reviewed-article-heading {
    font-size: 26px;
    margin-bottom: 0;
  }

  .medically-reviewed-article-list {
    max-width: 320px;
    grid-template-columns: 1fr;
    margin-bottom: 0;
  }

  .article-card {
    margin: 0 auto;
    gap: 10px;
  }

  .article-content {
    padding: 0 11px;
    gap: 8px;
  }

  .article-info {
    margin-bottom: 3px;
  }

  .article-date {
    font-size: 14px;
    line-height: 170%;
  }

  .article-category {
    padding: 0 7px;
    font-size: 14px;
    line-height: 170%;
    height: 20px;
  }

  .article-title h3 {
    font-size: 15px;
  }

  .medically-reviewed-article-button {
    height: 38px;
    padding: 0;
    align-items: center;
  }

  .medically-reviewed-article-button-text {
    font-size: 15px;
    line-height: 170%;
  }

  .mobile-hide {
    display: none !important;
  }
}

/* ======================================= 利用ガイド ======================================= */
.usage-guide,
.usage-guide * {
  font-family: "Zen Kaku Gothic New";
}

.usage-guide {
  background-color: #ffffff;
}

.usage-guide-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 55px 0;
  gap: 24px;
}

.usage-heading {
  font-size: 32px;
  font-weight: 700;
  line-height: 180%;
  color: #333333;
  opacity: 0;
}

.title-animation02__wrapper.is-ScrollActive .usage-heading {
  animation: fadeInUp 1s ease forwards;
}

.usage-video {
  max-width: 580px;
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
}

.usage-guide-annotation {
  margin-top: 12px;
  text-align: center;
}

.usage-guide-annotation p {
  font-size: 12px;
  color: #888888;
  line-height: 1.5;
  margin: 4px 0;
}

@media (max-width: 768px) {
  .usage-guide-content {
    padding: 47px 0;
    gap: 24px;
  }

  .usage-heading {
    font-size: 26px;
    line-height: 150%;
    text-align: center;
  }

  .usage-video {
    max-width: 327px;
    width: 100%;
    height: auto;
    aspect-ratio: 16/9;
  }
}

/* 余白用のダミースライド */
.price-plan-dummy-slide {
  width: 32px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

/* Safari専用のスタイル - -webkit-backdrop-filterはSafariが対応している特有のプロパティ */
@supports (-webkit-backdrop-filter: none) and (not (backdrop-filter: none)) {
  .price-plan-dummy-slide {
    width: 32px !important;
    height: 481px !important;
    opacity: 0 !important;
    pointer-events: none !important;
    margin-right: 0 !important;
    flex-shrink: 0 !important;
  }
}

.price-plan-list-card-image-container-type1,
.price-plan-list-card-image-container-type2 {
  position: relative;
  display: block;
  min-height: 90px;
  height: 90px;
}

.price-plan-list-card-image-container-type1 {
  width: 272px;
}

.price-plan-list-card-image-container-type2 {
  width: 280px;
}

.price-plan-list-card-image1,
.price-plan-list-card-image2,
.price-plan-list-card-image3,
.price-plan-list-card-image4,
.price-plan-list-card-image5,
.price-plan-list-card-image6 {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  height: 90px;
  background-repeat: no-repeat;
}

.price-plan-list-card-image1 {
  width: 272px;
  background-image: url("../img/renewal/aboutus-price-plan-imege1-pc.png");
  background-size: 100% 100%;
}

.price-plan-list-card-image2 {
  width: 280px;
  background-image: url("../img/renewal/aboutus-price-plan-imege2.png");
  background-size: 100% 100%;
}

.price-plan-list-card-image3 {
  width: 280px;
  background-image: url("../img/renewal/aboutus-price-plan-imege3.png");
  background-size: 100% 100%;
}

.price-plan-list-card-image4 {
  width: 280px;
  background-image: url("../img/renewal/aboutus-price-plan-imege4.png");
  background-size: 97% 100%;
}

.price-plan-list-card-image5 {
  width: 280px;
  background-image: url("../img/renewal/aboutus-price-plan-imege5.png");
  background-size: 97% 100%;
}

.price-plan-list-card-image6 {
  width: 280px;
  background-image: url("../img/renewal/aboutus-price-plan-imege6.png");
  background-size: 97% 100%;
}

.prescription-heading-type1,
.prescription-heading-type2 {
  position: relative;
  width: 100%;
  font-size: 15px;
  font-weight: 700;
  line-height: 180%;
  text-align: left;
  color: #888888;
}

.prescription-heading-type1::before,
.prescription-heading-type2::before {
  content: "";
  position: absolute;
  top: 50%;
  width: 223px;
  height: 0;
  border: 0.5px solid #c4c4c4;
}

.prescription-heading-type1::before {
  right: 6px;
}

.prescription-heading-type2::before {
  right: 0;
}

.price-plan-list-card-prescription {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 31.5px;
}

.prescription-list {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
}

.prescription-list::before {
  content: "";
  position: absolute;
  bottom: -16px;
  left: 3px;
  width: 280px;
  height: 0;
  border: 0.5px dashed #c4c4c4;
}

.prescription-list-end {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
}

.prescription-list-item,
.prescription-list-item-note {
  font-size: 12px;
  font-weight: 400;
  line-height: 160%;
  color: #333333;
}



.price-plan-regular-delivery {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.price-plan-regular-delivery-title {
  position: absolute;
  top: -35px;
  left: 67px;
  padding: 0 11px 5px 12px;
  font-size: 24px;
  font-weight: 700;
  line-height: 160%;
  letter-spacing: 0.03em;
  text-align: center;
  color: #333333;
  background-color: #f7eeea;
}

.price-plan-regular-delivery-title::before,
.price-plan-regular-delivery-title::after {
  content: "";
  position: absolute;
  top: 31px;
  width: 26.4px; /* 斜線の長さ */
  height: 1px; /* 斜線の太さ */
  background-color: #c4c4c4;
}

.price-plan-regular-delivery-title::before {
  left: -5px;
  transform: rotate(52.7deg); /* 左側の斜線の角度 */
}

.price-plan-regular-delivery-title::after {
  right: -5px;
  transform: rotate(-52.7deg); /* 右側の斜線の角度 */
}

.price-plan-regular-delivery-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 700px;
  height: 180px;
  border-width: 1px 0px 1px 0px;
  border-style: solid;
  border-color: #c4c4c4;
  padding: 10.74px 54px 0.26px 54px;
  gap: 36.5px;
}

.price-plan-regular-delivery-content-image {
  position: relative;
  width: 200px;
  height: 147px;
}

.price-plan-regular-delivery-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 200px;
  height: 147px;
  background-image: url("../img/renewal/aboutus-price-plan-delivery-image-pc.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  overflow: hidden;
}

.price-plan-regular-delivery-content-list {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 352px;
  height: fit-content;
}

.regular-delivery-item {
  display: flex;
  align-items: flex-start;
  font-size: 18px;
  font-weight: 500;
  line-height: 200%;
  color: #333333;
  gap: 0;
}

.regular-delivery-item-check {
  position: relative;
  padding-left: 24px;
}

.regular-delivery-item-check:after {
  content: "";
  display: block;
  position: absolute;
  border-left: 2px solid #888888;
  border-bottom: 2px solid #888888;
  width: 12.5px;
  height: 7.5px;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  top: 12.5px;
  left: 0;
}

@media (max-width: 768px) {
  .pc-price-plan {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .price-plan::before {
    top: -8.5%;
  }

  .price-plan::after {
    bottom: -8.5%;
  }
}

@media (max-width: 768px) {
  .price-plan::before {
    top: -6.5%;
    aspect-ratio: 750/83.33;
  }

  .price-plan::after {
    bottom: -6.5%;
    aspect-ratio: 750/83.33;
  }

  .price-plan-list {
    padding-left: 80px;
    /* margin: 0 0 94px 80px; */
  }

  .price-plan-card-type2.swiper-slide:last-child {
    margin-right: 44px;
  }
}

@media (max-width: 768px) {
  .price-plan::before {
    top: -3.5%;
    aspect-ratio: 750/83.33;
  }

  .price-plan::after {
    bottom: -3.5%;
    aspect-ratio: 750/83.33;
  }
}

@media (max-width: 768px) {
  .price-plan::before {
    top: -5.8%;
    background-image: url("../img/renewal/aboutus-price-plan-background-top-mobile.png");
    aspect-ratio: 375/80;
  }

  .price-plan::after {
    bottom: -5.8%;
    background-image: url("../img/renewal/aboutus-price-plan-background-bottom-mobile.png");
    aspect-ratio: 375/80;
  }

  .price-plan-content {
    padding: 24px 0;
    gap: 32px;
  }

  .price-plan-heading {
    font-size: 26px;
    margin-bottom: 1px;
  }

  .price-plan-text {
    font-size: 17px;
    line-height: 170%;
    color: #555555;
    text-align: center;
    width: 327px;
    margin-bottom: 0;
  }

  .price-plan-list {
    padding-left: 24px;
    margin-bottom: 70px;
  }

  .pc-price-plan .swiper-slide {
    margin-right: 16px;
  }

  .price-plan-card-type1,
  .price-plan-card-type2 {
    width: 280px;
    /* height: 441px; */
    padding: 32px 16px 0 16px;
    gap: 6px;
  }

  .price-plan-card-type2.swiper-slide:last-child {
    /* margin-right: 24px; */
  }

  .price-plan .swiper-pagination {
    position: absolute;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 340px;
    height: fit-content;
    gap: 8px;
    z-index: 10;
  }

  .price-plan .swiper-pagination-bullet {
    height: 30px;
    padding: 4px 11px;
    background: #ffffff;
    border: 1px solid #888888;
    border-radius: 28px;
    font-family: Zen Kaku Gothic New;
    font-size: 15px;
    font-weight: 500;
    line-height: 170%;
    color: #888888;
    text-align: center;
    margin: 0;
    opacity: 1;
  }

  .price-plan .swiper-pagination-bullet:nth-child(1) {
    width: 141px;
    margin: 0;
  }

  .price-plan .swiper-pagination-bullet:nth-child(2),
  .price-plan .swiper-pagination-bullet:nth-child(4) {
    width: 89px;
    margin: 0;
  }

  .price-plan .swiper-pagination-bullet:nth-child(3) {
    width: 102px;
    margin: 0;
  }

  .price-plan .swiper-pagination-bullet:nth-child(5) {
    width: 130px;
    margin: 0;
  }

  .price-plan .swiper-pagination-bullet:nth-child(6) {
    width: 120px;
    margin: 0;
  }

  .price-plan .swiper-pagination-bullet:nth-child(1)::after {
    content: "更年期障害";
  }

  .price-plan .swiper-pagination-bullet:nth-child(2)::after {
    content: "プレ更年期";
  }

  .price-plan .swiper-pagination-bullet:nth-child(3)::after {
    content: "生理トラブル";
  }

  .price-plan .swiper-pagination-bullet:nth-child(4)::after {
    content: "セクシャルケア";
  }

  .price-plan .swiper-pagination-bullet:nth-child(5)::after {
    content: "体重管理";
  }

  .price-plan .swiper-pagination-bullet:nth-child(6)::after {
    content: "エイジングケア";
  }

  .price-plan .swiper-pagination-bullet-active {
    background: #e66d54;
    border: none;
    color: #ffffff;
  }

  .title-number {
    position: absolute;
    top: -15px;
    left: 44%;
    font-size: 12px;
  }

  .price-plan-card-title {
    font-size: 20px;
    line-height: 160%;
  }

  .price-plan-card-subtitle {
    font-size: 14px;
    display: block;
    text-align: center;
    margin-top: 4px;
    margin-bottom: 12px;
    width: 100%;
  }

  .price-plan-description {
    font-size: 15px;
    line-height: 170%;
    padding: 0 10px;
  }


  .prescription-section-title {
    font-size: 14px;
  }


  .price-plan-list-card-image-container-type1,
  .price-plan-list-card-image-container-type2 {
    min-height: 75px;
    height: 75px;
    margin-bottom: 8px;
  }

  .price-plan-list-card-image-container-type1 {
    width: 248px;
  }

  .price-plan-list-card-image-container-type2 {
    width: 218px;
  }

  .price-plan-list-card-image1,
  .price-plan-list-card-image2,
  .price-plan-list-card-image3,
  .price-plan-list-card-image4,
  .price-plan-list-card-image5 {
    height: 75px;
  }

  .price-plan-list-card-image1 {
    width: 248px;
    background-image: url("../img/renewal/aboutus-price-plan-imege1-mobile.png");
    background-size: 100% 100%;
  }

  .price-plan-list-card-image2 {
    width: 218px;
    background-image: url("../img/renewal/aboutus-price-plan-imege2.png");
    background-size: 100% 100%;
  }

  .price-plan-list-card-image3 {
    width: 218px;
    background-image: url("../img/renewal/aboutus-price-plan-imege3.png");
    background-size: 100% 100%;
  }

  .price-plan-list-card-image4 {
    width: 218px;
    background-image: url("../img/renewal/aboutus-price-plan-imege4.png");
    background-size: 97% 100%;
  }

  .price-plan-list-card-image5 {
    width: 218px;
    background-image: url("../img/renewal/aboutus-price-plan-imege5.png");
    background-size: 97% 100%;
  }

  .price-plan-list-card-image6 {
    width: 218px;
    background-image: url("../img/renewal/aboutus-price-plan-imege6.png");
    background-size: 97% 100%;
  }

  .prescription-heading-type1,
  .prescription-heading-type2 {
    font-size: 15px;
    line-height: 170%;
    padding-top: 1px;
    margin-bottom: 7px;
  }

  .prescription-heading-type1::before,
  .prescription-heading-type2::before {
    width: 197px;
    right: 0;
  }

  .price-plan-list-card-prescription {
    gap: 23.5px;
  }

  .prescription-list::before {
    bottom: -12px;
    left: 0;
    width: 248px;
    height: 0;
    border: 0.5px dashed #c4c4c4;
  }

  .prescription-list-item,
  .prescription-list-item-note {
    font-size: 12px;
    line-height: 170%;
  }


  .price-plan-regular-delivery-title {
    top: -33px;
    left: 17px;
    font-size: 20px;
    padding: 0 18px 5px 18px;
  }

  .price-plan-regular-delivery-title::before,
  .price-plan-regular-delivery-title::after {
    top: 24px;
  }

  .price-plan-regular-delivery-title::before {
    left: -4px;
  }

  .price-plan-regular-delivery-title::after {
    right: -4px;
  }

  .price-plan-regular-delivery-content {
    justify-content: center;
    width: 327px;
    height: 160px;
    padding: 16px 0 0.26px 3px;
    margin: 0 auto;
    gap: 10px;
  }

  .price-plan-regular-delivery-content-image {
    display: block;
    width: 100px;
    height: 100px;
  }

  .price-plan-regular-delivery-image {
    top: 0;
    left: 0;
    width: 100px;
    height: 100px;
    background-image: url("../img/renewal/aboutus-price-plan-delivery-image-mobile.png");
  }

  .price-plan-regular-delivery-content-list {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 180px;
    height: fit-content;
    padding-top: 2px;
    gap: 8px;
  }

  .regular-delivery-item {
    font-size: 15px;
    line-height: 170%;
    gap: 0;
  }

  .regular-delivery-item-check {
    position: relative;
    padding-left: 20px;
  }

  .regular-delivery-item-check:after {
    content: "";
    display: block;
    position: absolute;
    border-left: 2px solid #888888;
    border-bottom: 2px solid #888888;
    width: 10.5px;
    height: 6.5px;
    transform: rotate(-45deg);
    top: 30%;
    left: 0;
  }
}

@media (max-width: 768px) {
  .price-plan::before {
    top: -3.5%;
    background-image: url("../img/renewal/aboutus-price-plan-background-top-mobile.png");
    aspect-ratio: 375/80;
  }

  .price-plan::after {
    bottom: -3.5%;
    background-image: url("../img/renewal/aboutus-price-plan-background-bottom-mobile.png");
    aspect-ratio: 375/80;
  }
}

@media (max-width: 768px) {
  .price-plan::before {
    top: -2.5%;
    background-image: url("../img/renewal/aboutus-price-plan-background-top-mobile.png");
    aspect-ratio: 320/72;
  }

  .price-plan::after {
    bottom: -2.5%;
    background-image: url("../img/renewal/aboutus-price-plan-background-bottom-mobile.png");
    aspect-ratio: 320/72;
  }
}

/* ======================================= サポート ======================================= */
.support,
.support * {
  font-family: "Zen Kaku Gothic New";
}

.support {
  background-color: #ffffff;
}

.support-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  padding: 166px 0 64px 0;
  /* padding: calc(100vw / 1440 * 100 + 50px) 0 64px 0; */
}

.support-content-heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 396px;
  height: 106px;
  margin-bottom: 15px;
}

.support-title__wrapper {
  padding: 0 24px;
}

.support-content-title {
  position: relative;
  font-size: 32px;
  font-weight: 700;
  line-height: 180%;
  color: #333333;
  padding-left: 16px;
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  background-image: linear-gradient(90deg, #333333 50%, transparent 50%);
  background-size: 200%;
  background-position: 100% 0;
  opacity: 0;
}

.highlight-support {
  position: relative;
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  background-image: linear-gradient(90deg, #e66d54 50%, transparent 50%);
  background-size: 200%;
  background-position: 100% 0;
  opacity: 0;
}

.title-animation03__wrapper.is-ScrollActive .support-content-title {
  animation: textAnimation 0.65s cubic-bezier(0.45, 0.05, 0.55, 0.95) forwards;
}

.title-animation03__wrapper.is-ScrollActive .highlight-support {
  animation: textAnimation 0.65s cubic-bezier(0.45, 0.05, 0.55, 0.95) forwards 0.2s;
}

.support-content-title::after {
  content: "";
  position: absolute;
  background-image: url("../img/renewal/aboutus-text-emphasis.png");
  background-repeat: no-repeat;
  background-size: contain;
  top: -8px;
  right: 24px;
  width: 33px;
  height: 15px;
  opacity: 0;
}

.title-animation03__wrapper.is-ScrollActive .support-content-title::after {
  animation: fadeIn 0.8s ease forwards 0.3s;
}

.support-content-subtitle {
  font-size: 18px;
  font-weight: 500;
  line-height: 180%;
  color: #333333;
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  background-image: linear-gradient(90deg, #333333 50%, transparent 50%);
  background-size: 200%;
  background-position: 100% 0;
  opacity: 0;
}

.title-animation03__wrapper.is-ScrollActive .support-content-subtitle {
  animation: textAnimation 0.65s cubic-bezier(0.45, 0.05, 0.55, 0.95) forwards;
}

.support-content-list {
  display: flex;
  gap: 32px;
}

.support-content-list-card1-pc,
.support-content-list-card2-pc,
.support-content-list-card3-pc {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 312px;
  height: 312px;
  background-color: #f7eeea;
  border-radius: 8px;
  padding-top: 20px;
  opacity: 0;
}

.title-animation02__wrapper.is-ScrollActive .support-content-list-card1-pc {
  animation: fadeInUp 1s ease forwards 0.8s;
}

.title-animation02__wrapper.is-ScrollActive .support-content-list-card2-pc {
  animation: fadeInUp 1s ease forwards 1.2s;
}

.title-animation02__wrapper.is-ScrollActive .support-content-list-card3-pc {
  animation: fadeInUp 1s ease forwards 1.6s;
}

.support-content-list-card1-pc {
  gap: 5px;
}

.support-content-list-card2-pc,
.support-content-list-card3-pc {
  gap: 9px;
}

.support-content-list-card1-mobile,
.support-content-list-card2-mobile,
.support-content-list-card3-mobile {
  display: none;
}

.support-content-list-card-title {
  font-size: 24px;
  font-weight: 700;
  line-height: 150%;
  letter-spacing: 0.03em;
  text-align: center;
  color: #333333;
}

.support-content-list-card-text-type1,
.support-content-list-card-text-type2 {
  font-size: 13px;
  font-weight: 400;
  text-align: center;
  color: #333333;
}

.support-content-list-card-text-type1 {
  line-height: 180%;
}

.support-content-list-card-text-type2 {
  line-height: 150%;
}

.support-content-list-card-image1-container,
.support-content-list-card-image2-container,
.support-content-list-card-image3-container {
  background-size: contain;
  background-repeat: no-repeat;
  width: 312px;
  height: 200px;
  overflow: hidden;
}

.support-content-list-card-image1-container {
  background-image: url("../img/renewal/aboutus-support-image1-pc-large.png");
}

.support-content-list-card-image2-container {
  background-image: url("../img/renewal/aboutus-support-image2-pc-large.png");
}

.support-content-list-card-image3-container {
  background-image: url("../img/renewal/aboutus-support-image3-pc-large.png");
}

@media (max-width: 768px) {
  .support-content-title {
    padding-left: 0;
    margin-bottom: -1px;
  }

  .support-content-title::after {
    top: -9px;
    right: 16px;
  }

  .support-content-heading {
    height: 98px;
    margin-bottom: 14px;
  }

  .support-content-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 670px;
    width: 100%;
    gap: 32px;
  }

  .support-content-list-card1-pc,
  .support-content-list-card2-pc,
  .support-content-list-card3-pc {
    height: 232px;
  }

  .support-content-list-card3-pc {
    flex: 0 0 100%;
    max-width: 312px;
  }

  .support-content-list-card-title {
    font-weight: 500;
  }

  .support-content-list-card-image1-container,
  .support-content-list-card-image2-container,
  .support-content-list-card-image3-container {
    background-size: contain;
    background-repeat: no-repeat;
    width: 187px;
    height: 120px;
    overflow: hidden;
  }

  .support-content-list-card-image1-container {
    margin-left: 3px;
  }

  .support-content-list-card-image3-container {
    background-image: url("../img/renewal/aboutus-support-image3-pc-medium.png");
  }
}

@media (max-width: 768px) {
  .support-content {
    padding: 109px 0 48px 0;
  }

  .support-content-heading {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: fit-content;
    height: fit-content;
    margin-bottom: 24px;
  }

  .support-content-title {
    font-size: 26px;
    margin-bottom: 0px;
  }

  .support-content-title::after {
    top: -3px;
    right: 18px;
    width: 18px;
    height: 10px;
  }

  .support-content-subtitle {
    font-size: 17px;
    line-height: 170%;
    color: #555555;
  }

  .support-content-list {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    justify-content: center;
    max-width: 400px;
    width: calc(100% - 48px);
    height: fit-content;
    gap: 24px;
  }

  .support-content-list-card1-pc,
  .support-content-list-card2-pc,
  .support-content-list-card3-pc {
    display: none;
    animation: none !important;
    opacity: 0 !important;
  }

  .title-animation02__wrapper.is-ScrollActive .support-content-list-card1-pc,
  .title-animation02__wrapper.is-ScrollActive .support-content-list-card2-pc,
  .title-animation02__wrapper.is-ScrollActive .support-content-list-card3-pc {
    animation: none !important;
  }

  .support-content-list-card1-mobile,
  .support-content-list-card2-mobile,
  .support-content-list-card3-mobile {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: fit-content;
    background-color: #f7eeea;
    border-radius: 8px;
    margin: 0 auto;
    gap: 8px;
    opacity: 0;
  }

  .title-animation02__wrapper.is-ScrollActive .support-content-list-card1-mobile {
    animation: fadeInUp 1s ease forwards 0.8s;
  }

  .title-animation02__wrapper.is-ScrollActive .support-content-list-card2-mobile {
    animation: fadeInUp 1s ease forwards 1.3s;
  }

  .title-animation02__wrapper.is-ScrollActive .support-content-list-card3-mobile {
    animation: fadeInUp 1s ease forwards 1.8s;
  }

  .support-content-list-card-image1-container,
  .support-content-list-card-image2-container,
  .support-content-list-card-image3-container {
    width: 90px;
    height: 112px;
    margin-left: 0;
  }

  .support-content-list-card-image1-container {
    background-image: url("../img/renewal/aboutus-support-image1-mobile.png");
  }

  .support-content-list-card-image2-container {
    background-image: url("../img/renewal/aboutus-support-image2-mobile.png");
  }

  .support-content-list-card-image3-container {
    background-size: cover;
    background-image: url("../img/renewal/aboutus-support-image3-mobile.png");
  }

  .support-content-list-card-content {
    display: flex;
    flex-direction: column;
    max-width: 213px;
    height: fit-content;
    gap: 6px;
  }

  .support-content-list-card-title {
    font-size: 20px;
    font-weight: 500;
    padding-bottom: 2px;
    text-align: left;
  }

  .support-content-list-card-text-type1,
  .support-content-list-card-text-type2 {
    font-size: 14px;
    line-height: 150%;
    text-align: left;
  }
}

/* ======================================= お客様の声 ======================================= */
.user-voice,
.user-voice * {
  font-family: "Zen Kaku Gothic New";
}

.user-voice {
  background-color: #fdf4ee;
}

.user-voice-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 1048px;
  margin: 0 auto;
  padding: 56px 0 56px 0;
  gap: 16px;
}

.user-voice-heading {
  font-size: 32px;
  font-weight: 700;
  line-height: 180%;
  color: #333333;
  opacity: 0;
}

.user-voice-list .swiper-slide:last-child {
  margin-right: 0px;
}

.title-animation02__wrapper.is-ScrollActive .user-voice-heading {
  animation: fadeInUp 1s ease forwards;
}

.user-voice-content {
  position: relative;
  display: flex;
  justify-content: flex-start;
  width: 1048px;
  /* height: 347px; */
  padding: 22px 24px 0 24px;
}

.user-voice-list {
  display: flex;
  justify-content: center;
  max-width: 1000px;
  width: 100%;
  /* height: 280px; */
  padding: 46px 55px 38px 55px;
  gap: 64px;
  background-color: #ffffff;
  border-radius: 8px;
  filter: drop-shadow(6px 6px 0px rgba(173, 173, 173, 0.2));
  z-index: 3;
}

.sp-user-voice {
  display: none;
}

.user-voice-bubble-left {
  position: absolute;
  background-image: url("../img/renewal/aboutus-user-voice-bubble-left.png");
  background-size: cover;
  background-repeat: no-repeat;
  top: 0;
  left: 0;
  width: 176px;
  height: 101.01px;
  z-index: 2;
}

.user-voice-bubble-right {
  position: absolute;
  background-image: url("../img/renewal/aboutus-user-voice-bubble-right.png");
  background-size: cover;
  background-repeat: no-repeat;
  top: 232px;
  right: 0;
  width: 252px;
  height: 116px;
  z-index: 2;
}

.voice-card {
  position: relative;
  text-decoration: none;
  color: inherit;
  display: block;
  transition: transform 0.3s ease;
}

.voice-card::before {
  content: "";
  position: absolute;
  top: -13px;
  right: -32px;
  width: 0;
  height: 217px;
  border: 0.8px solid #e0e0e0;
}

.voice-card:last-child::before {
  display: none;
}

.voice-card:hover {
  color: #e66d54; /* ホバー時の文字色を変更 */
}

.voice-card:hover .voice-content h3 {
  color: #e66d54; /* ホバー時に見出しの色だけ変更 */
}

.voice-item {
  display: flex;
  flex-direction: column;
  width: 254px;
  /* height: 196px; */
  gap: 10px;
}

.voice-header {
  display: flex;
  width: 100%;
  height: 100px;
  gap: 11px;
}

.voice-image {
  position: relative;
  width: 100px;
  height: 100px;
}

.voice-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 96px;
  height: 96px;
}

.voice-image::before {
  content: "";
  position: absolute;
  top: 4px;
  left: 4px;
  background-color: #e66d54;
  width: 96px;
  height: 96px;
}

.voice-info {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding-top: 25px;
}

.voice-number {
  font-family: Roboto !important;
  font-size: 15px;
  font-weight: 500;
  line-height: 180%;
  color: #e66d54;
}

.voice-profile {
  display: flex;
  font-size: 15px;
  font-weight: 400;
  line-height: 180%;
  color: #888888;
  gap: 6px;
}

.voice-content {
  width: 100%;
  height: fit-content;
}

.voice-content h3 {
  font-size: 18px;
  font-weight: 500;
  line-height: 170%;
  color: #555555;
}

.user-voice .swiper-pagination {
  display: none;
}

.user-voice-button {
  display: flex;
  justify-content: center;
  width: 311px;
  height: fit-content;
  background-color: #ffffff;
  border: 1px solid #888888;
  border-radius: 28px;
  padding: 9px 16px;
}

.user-voice-button-text {
  font-size: 15px;
  font-weight: 700;
  line-height: 180%;
  color: #888888;
}

.user-voice-button:hover .user-voice-button-text {
  color: #e66d54;
}

@media (max-width: 768px) {
  .user-voice-inner {
    width: 100%;
  }

  .user-voice-content {
    max-width: 1066px;
    width: 100%;
    /* height: 347px; */
    margin: 0 40px 0 40px;
  }

  .user-voice-list {
    justify-content: flex-start;
    max-width: 1066px;
    padding: 46px 55px 38px 55px;
    gap: 0;
  }

  .pc-user-voice {
    display: none;
  }

  .sp-user-voice {
    display: block;
    width: 100%;
  }

  .sp-user-voice .swiper-slide {
    width: 286px !important;
    flex-shrink: 0;
  }

  .voice-card::before {
    top: -14px;
    right: 0;
  }
}

@media (max-width: 768px) {
  .user-voice-content {
    width: 100%;
    /* height: 347px; */
    margin: 0 0 0 80px;
  }

  .user-voice-bubble-right {
    right: 80px;
  }
}

@media (max-width: 768px) {
  .user-voice-inner {
    padding: 56px 0 47px 0;
    gap: 24px;
  }

  .user-voice-heading {
    font-size: 26px;
  }

  .user-voice-list .swiper-slide:last-child {
    margin-right: 24px;
  }

  .user-voice-content {
    height: 300px;
    padding: 16px 16px 0 16px;
    margin: 0 0 0 32px;
  }

  .user-voice-list {
    height: 100%;
    padding: 0;
    background-color: inherit;
    border-radius: 0;
    filter: none;
  }

  .user-voice-bubble-right {
    top: 170px;
    right: 32px;
  }

  .voice-card {
    height: 235px;
    background-color: #ffffff;
    border-radius: 8px;
    filter: drop-shadow(6px 6px 0px rgba(173, 173, 173, 0.2));
    padding: 24px 16px;
  }

  .voice-card::before {
    display: none;
  }

  .voice-item {
    /* height: 187px; */
  }

  .voice-header {
    gap: 16px;
  }

  .voice-info {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding-top: 25px;
  }

  .voice-number {
    font-family: Zen Kaku Gothic New !important;
    font-size: 15px;
    font-weight: 700;
    line-height: 170%;
  }

  .voice-profile {
    font-size: 15px;
    line-height: 170%;
    padding-top: 4px;
    gap: 9px;
  }

  .voice-content h3 {
    font-size: 17px;
  }

  .user-voice .swiper-pagination {
    position: absolute;
    width: 100%;
    display: flex;
    justify-content: center;
    bottom: 0.5px;
    left: -4.5%;
    z-index: 10;
  }

  .user-voice .swiper-pagination-bullet {
    width: 6px;
    height: 6px;
    background-color: inherit;
    opacity: 1;
    margin: 0 4px !important;
    border: 0.5px solid #888888;
  }

  .user-voice .swiper-pagination-bullet-active {
    background-color: #888888;
  }

  .user-voice-button {
    padding: 8px 16px 6px 16px;
    margin-top: 0;
  }

  .user-voice-button-text {
    font-size: 15px;
    line-height: 170%;
  }
}

/* ======================================= 医師監修コラム ======================================= */
.medically-reviewed-article,
.medically-reviewed-article * {
  font-family: "Zen Kaku Gothic New";
}

.medically-reviewed-article {
  background-color: #f7eeea;
}

.medically-reviewed-article-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 66px 0;
  gap: 20px;
}

.medically-reviewed-article-heading {
  font-size: 32px;
  font-weight: 700;
  line-height: 180%;
  color: #333333;
  margin-bottom: 22px;
  opacity: 0;
}

.title-animation02__wrapper.is-ScrollActive .medically-reviewed-article-heading {
  animation: fadeInUp 1s ease forwards;
}

.medically-reviewed-article-list {
  max-width: 1000px;
  width: 100%;
  height: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 27px;
  row-gap: 20px;
  margin-bottom: 7px;
}

.article-card {
  display: flex;
  flex-direction: column;
  width: 312px;
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s ease;
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  margin: 6px 0 6px 6px;
  gap: 12px;
  transition: box-shadow 0.2s ease;
}

.article-card:hover {
  box-shadow: 6px 6px 0 rgba(173, 173, 173, 0.2);
}

.article-card:hover .article-title h3 {
  color: #e66d54;
}

.article-image {
  position: relative;
  display: block;
  width: 100%;
  height: 175px;
  overflow: hidden;
}

.article-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
}

.article-content {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: auto;
  padding: 0 12px 0 10px;
  gap: 8px;
}

.article-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: fit-content;
}

.article-date {
  font-size: 13px;
  font-weight: 500;
  line-height: 180%;
  color: #888888;
}

.article-category {
  padding: 0 7px;
  border: 1px solid #51767d;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 500;
  line-height: 160%;
  color: #51767d;
}

.article-title h3 {
  font-size: 15px;
  font-weight: 500;
  line-height: 160%;
  color: #333333;
}

.medically-reviewed-article-button {
  display: flex;
  justify-content: center;
  width: 311px;
  height: 47px;
  background-color: #ffffff;
  border: 1px solid #888888;
  border-radius: 28px;
  padding: 10px 16px;
}

.medically-reviewed-article-button-text {
  font-size: 15px;
  font-weight: 700;
  line-height: 180%;
  color: #888888;
}

.medically-reviewed-article-button:hover .medically-reviewed-article-button-text {
  color: #e66d54;
}

@media (max-width: 768px) {
  .medically-reviewed-article-list {
    max-width: 680px;
    grid-template-columns: repeat(2, 1fr);
  }

  .tablet-hide {
    display: none !important;
  }
}

@media (max-width: 768px) {
  .medically-reviewed-article-inner {
    padding: 48px 0;
    gap: 24px;
  }

  .medically-reviewed-article-heading {
    font-size: 26px;
    margin-bottom: 0;
  }

  .medically-reviewed-article-list {
    max-width: 320px;
    grid-template-columns: 1fr;
    margin-bottom: 0;
  }

  .article-card {
    margin: 0 auto;
    gap: 10px;
  }

  .article-content {
    padding: 0 11px;
    gap: 8px;
  }

  .article-info {
    margin-bottom: 3px;
  }

  .article-date {
    font-size: 14px;
    line-height: 170%;
  }

  .article-category {
    padding: 0 7px;
    font-size: 14px;
    line-height: 170%;
    height: 20px;
  }

  .article-title h3 {
    font-size: 15px;
  }

  .medically-reviewed-article-button {
    height: 38px;
    padding: 0;
    align-items: center;
  }

  .medically-reviewed-article-button-text {
    font-size: 15px;
    line-height: 170%;
  }

  .mobile-hide {
    display: none !important;
  }
}

/* ======================================= 利用ガイド ======================================= */
.usage-guide,
.usage-guide * {
  font-family: "Zen Kaku Gothic New";
}

.usage-guide {
  background-color: #ffffff;
}

.usage-guide-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 55px 0;
  gap: 24px;
}

.usage-heading {
  font-size: 32px;
  font-weight: 700;
  line-height: 180%;
  color: #333333;
  opacity: 0;
}

.title-animation02__wrapper.is-ScrollActive .usage-heading {
  animation: fadeInUp 1s ease forwards;
}

.usage-video {
  max-width: 580px;
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
}

.usage-guide-annotation {
  margin-top: 12px;
  text-align: center;
}

.usage-guide-annotation p {
  font-size: 12px;
  color: #888888;
  line-height: 1.5;
  margin: 4px 0;
}

@media (max-width: 768px) {
  .usage-guide-content {
    padding: 47px 0;
    gap: 24px;
  }

  .usage-heading {
    font-size: 26px;
    line-height: 150%;
    text-align: center;
  }

  .usage-video {
    max-width: 327px;
    width: 100%;
    height: auto;
    aspect-ratio: 16/9;
  }
}

/* 余白用のダミースライド */
.price-plan-dummy-slide {
  width: 32px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.price-plan-annotation {
  font-size: 14px;
  text-align:center;
  color: #888 !important;
  line-height: 1.2;
  margin-bottom: 2px;
  margin-bottom: 41px;
}

@media (max-width: 768px) {
  .price-plan-annotation {
    font-size: 14px;
  }
}



.mylily-features-annotation {
  font-size: 14px;
  color: #888 !important;
  line-height: 1.2;
  text-align: center;
  margin-bottom: 0;
  min-height: 17px;
}

@media (max-width: 768px) {
  .mylily-features-annotation {
    font-size: 14px;
  }
}

.user-voice-annotation {
  font-size: 14px;
  color: #888 !important;
  line-height: 1.5;
  text-align: center;
  margin: 30px 0 0 0;
}

@media (max-width: 768px) {
  .user-voice-annotation {
    font-size: 14px;
    margin: 20px 0 15px 0;
  }
}

@media (max-width: 768px) {
  /* 料金プラン説明画像（SP版表示切り替え） */
  .pc-explanation-image {
    display: none;
  }

  .sp-explanation-image {
    display: block;
  }

  .price-plan-explanation-image {
    margin: 24px auto;
    max-width: 327px;
  }
}

/* ======================================= 注釈スタイル ======================================= */
/* 95%の後ろのインライン注釈のスタイル */
.inline-footnote {
    font-size: 0.75em;
    color: #000000; /* 黒文字 */
    margin-left: 1px;
    font-weight: normal;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .inline-footnote {
        font-size: 0.85em;
    }
}

/* ======================================= Message セクション ======================================= */
.message {
  background-color: #FEFDFB;
  font-family: "Zen Kaku Gothic New", "Hiragino Kaku Gothic ProN", sans-serif;
}

.message__inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 0 48px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.message__image {
  order: 3;
}

/* SP: タイトル「更年期の過ごし方は変えられる」の直後に画像を表示（DOM順を維持） */
.message__image-sp {
  order: 0;
}

.message__image-pc {
  display: none;
}

.message__image-mask img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  max-width: 800px;
}

.message__content {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.message__stats {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.message__stat-img {
  height: 54px;
  width: auto;
  object-fit: contain;
}

.message__title {
  font-size: 28px;
  font-weight: 600;
  color: #42220F;
  line-height: 1.4;
  margin: 0;
}

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

.message__title-line1,
.message__title-line2 {
  display: block;
}

.message__text {
  font-size: 14px;
  line-height: 1.7;
  letter-spacing: 0.56px;
  color: #42220F;
}

.message__text p {
  margin: 0 0 8px;
}

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

.message__cta {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 24px;
  min-height: 64px;
  background-color: transparent;
  color: #fefdfb;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.6px;
  text-decoration: none;
  transition: filter 0.3s ease;
  align-self: flex-start;
}

.message__cta:hover {
  color: #fefdfb;
  filter: brightness(0.9);
}

.message__cta-bg {
  position: absolute;
  inset: 0;
  background-color: #73885a;
  z-index: 0;
}

.message__cta-texture {
  position: absolute;
  inset: 0;
  background-image: url("../img/renewal/cta-texture.jpg");
  background-size: cover;
  background-position: center;
  mix-blend-mode: multiply;
  opacity: 0.6;
  z-index: 1;
}

.message__cta-content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 8px;
}

.message__cta-arrow {
  flex-shrink: 0;
  width: 6px;
  height: 10px;
  object-fit: contain;
}

/* 769px以上で2ペイン表示 */
@media (min-width: 769px) {
  .message__inner {
    flex-direction: row;
    align-items: stretch;
    gap: 40px;
    padding: 0 0 40px;
  }

  .message__image-pc {
    display: block;
    order: 0;
    flex: 0 0 45%;
    max-width: 45%;
    min-height: 0;
  }

  .message__image-pc .message__image-mask {
    height: 100%;
    overflow: hidden;
  }

  .message__image-pc .message__image-mask img {
    height: 100%;
    width: 100%;
    object-fit: cover;
  }

  .message__image-sp {
    display: none;
  }

  .message__content {
    flex: 1 1 55%;
    gap: 40px;
    padding: 20px 80px 20px 0;
  }

  .message__title {
    font-size: 36px;
    margin-top: -8px;
  }

  .message__text {
    font-size: 16px;
    letter-spacing: 0.64px;
  }
}

/* Message SP: CTAボタン幅を hours セクションと同じにする（左右24px余白） */
@media (max-width: 768px) {
  .message__inner {
    padding-left: 24px;
    padding-right: 24px;
  }

  .message__content .message__cta {
    width: 100%;
    align-self: stretch;
    box-sizing: border-box;
  }
}

/* ======================================= MYLILY Care（参照HTML準拠） ======================================= */
.mylily-care .section-label {
  font-family: "Lato", sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: #b2a581;
  margin: 0;
}

.btn--primary {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 24px 40px;
  background-color: transparent;
  color: #fefdfb;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-decoration: none;
  border: none;
  border-radius: 0;
  cursor: pointer;
  transition: filter 0.2s;
  white-space: nowrap;
  flex-shrink: 0;
}

.btn--primary:hover {
  color: #fefdfb;
  filter: brightness(0.9);
}

.btn--primary__bg {
  position: absolute;
  inset: 0;
  background-color: #73885a;
  z-index: 0;
}

.btn--primary__texture {
  position: absolute;
  inset: 0;
  background-image: url("../img/renewal/cta-texture.jpg");
  background-size: cover;
  background-position: center;
  mix-blend-mode: multiply;
  opacity: 0.6;
  z-index: 1;
}

.btn--primary__content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 8px;
}

.btn--primary__arrow {
  flex-shrink: 0;
  width: 6px;
  height: 10px;
  object-fit: contain;
}

/* MYLILY Care スライダーがセクションを横にはみ出すため */
#container {
  overflow-x: visible;
}

.mylily-care {
  padding: 80px 80px;
  background-color: #fffbf3;
  overflow-x: visible;
}

.mylily-care__inner {
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.mylily-care__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
}

.mylily-care__header-left {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mylily-care__title {
  font-family: "Zen Old Mincho", "Zen Kaku Gothic New", serif;
  font-size: 32px;
  font-weight: 400;
  line-height: 1.7;
  letter-spacing: 0.08em;
  color: #42220f;
  margin: 0;
}

.mylily-care__lead {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: 0.04em;
  color: #42220f;
  margin: 0;
}

.mylily-care__sp-label {
  display: none;
}

.mylily-care__cards-viewport {
  width: 100vw;
  min-width: 0;
  overflow: visible;
  margin-left: calc(50% - 50vw);
  /* 最初のカードの左端を mylily-care__inner の左端に揃える */
  padding-left: max(80px, calc(80px + (100vw - 1600px) / 2));
  padding-right: 0;
  box-sizing: border-box;
}

.mylily-care__cards {
  overflow: visible;
  width: 100%;
}

.mylily-care__cards .swiper-wrapper {
  align-items: stretch;
}

.mylily-care__card {
  flex-shrink: 0;
  width: 360px;
  min-height: 505px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 56px 40px 40px;
  gap: 28px;
  overflow: hidden;
}

.mylily-care__card {
  background-image: url("../img/renewal/care/care-gradient.png");
  background-size: cover;
  background-position: center;
}

.mylily-care__card-num {
  position: absolute;
  left: 24px;
  top: 24px;
  font-family: "Lato", sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: #fefdfb;
}

.mylily-care__card-illust-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 200px;
  flex-shrink: 0;
}

.mylily-care__card-illust {
  max-height: 200px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  object-position: center;
}

.mylily-care__card-title {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: 0.08em;
  color: #fefdfb;
  text-align: center;
  margin: 0;
  min-height: 2.6em;
}

/* PC: タイトルは1行表示、SP: ・のところで改行 */
@media (min-width: 1025px) {
  .mylily-care__card-title br {
    display: none;
  }
}

.mylily-care__card-desc {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: 0.04em;
  color: #fefdfb;
  text-align: center;
  margin: 0;
}

.mylily-care__nav {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  padding-right: 80px;
}

.mylily-care__nav .nav-arrow {
  width: 40px;
  height: 40px;
  padding: 0;
  border: 1px solid #42220f;
  border-radius: 50%;
  background: transparent;
  color: #42220f;
  font-size: 16px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s, color 0.2s;
}

.mylily-care__nav .nav-arrow:hover {
  background-color: #42220f;
  color: #fffbf3;
}

/* 無効時は非表示ではなく disabled 表示 */
.mylily-care__nav .nav-arrow.swiper-button-disabled {
  opacity: 0.4 !important;
  cursor: not-allowed;
  pointer-events: none;
}
.mylily-care__nav .nav-arrow.swiper-button-disabled:hover {
  background-color: transparent;
  color: #42220f;
}

/* SP用CTA：PCでは非表示 */
.mylily-care__cta-sp {
  display: none;
}

/* MYLILY Care SP */
@media (max-width: 768px) {
  .mylily-care {
    padding: 48px 24px;
  }

  .mylily-care__inner {
    gap: 32px;
  }

  .mylily-care__header {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  /* PC用CTA：SPでは非表示 */
  .mylily-care__cta-pc {
    display: none;
  }

  /* SP用CTA：カード・矢印の下に表示 */
  .mylily-care__cta-sp {
    display: flex;
    width: 100%;
    box-sizing: border-box;
  }

  .mylily-care__sp-label {
    display: flex;
    flex-direction: column;
    gap: 4px;
  }

  .mylily-care__sp-label-en {
    font-family: "Lato", sans-serif;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.08em;
    color: #b2a581;
    margin: 0;
  }

  .mylily-care__sp-label-ja {
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #42220f;
    margin: 0;
  }

  .mylily-care .section-label {
    font-size: 15px;
    letter-spacing: 0.08em;
  }

  .mylily-care__title {
    font-size: 26px;
    line-height: 1.51;
    letter-spacing: 0.08em;
  }

  .mylily-care__lead {
    font-size: 16px;
    letter-spacing: 0.04em;
  }

  .mylily-care__cards-viewport {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    padding-left: 24px;
    padding-right: 0;
  }

  .mylily-care__card {
    width: 293px;
    min-height: 413px;
    padding: 48px 32px 32px;
    gap: 20px;
  }

  .mylily-care__card-illust-wrap {
    height: 160px;
  }

  .mylily-care__card-illust {
    max-height: 160px;
  }

  .mylily-care__card-title {
    font-size: 24px;
    letter-spacing: 0.04em;
  }

  .mylily-care__card-desc {
    font-size: 16px;
    letter-spacing: 0.04em;
  }

  .mylily-care__nav {
    padding-right: 24px;
  }
}

/* ======================================= Medicine（参照HTML準拠） ======================================= */
.medicine {
  padding: 80px 80px;
  background-color: #fffbf3;
  overflow-x: visible;
}

.medicine__inner {
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.medicine__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
}

.medicine__header-left {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.medicine__label {
  font-family: "Lato", sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: #b2a581;
  margin: 0;
}

.medicine__title {
  font-family: "Zen Old Mincho", "Zen Kaku Gothic New", serif;
  font-size: 32px;
  font-weight: 400;
  line-height: 1.7;
  letter-spacing: 0.08em;
  color: #42220f;
  margin: 0;
}

.medicine__title-br {
  display: none;
}

.medicine__lead {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: 0.04em;
  color: #42220f;
  margin: 0;
}

.medicine__cta-sp {
  display: none;
}

.medicine__cards-viewport {
  width: 100vw;
  min-width: 0;
  overflow: visible;
  margin-left: calc(50% - 50vw);
  padding-left: max(80px, calc(80px + (100vw - 1600px) / 2));
  padding-right: 0;
  padding-bottom: 4px;
  box-sizing: border-box;
}

.medicine__cards {
  overflow: visible;
  width: 100%;
}

.medicine__cards .swiper-wrapper {
  align-items: stretch;
}

.medicine__card {
  flex-shrink: 0;
  width: 360px;
  display: flex;
  flex-direction: column;
  padding: 32px;
  gap: 24px;
  background-color: #fefdfb;
  border: 1px solid #e9e9e2;
}

.medicine__card-image {
  width: 100%;
  background-color: #fefdfb;
  flex-shrink: 0;
  overflow: hidden;
}

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

.medicine__card-body {
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex: 1;
}

.medicine__card-title {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: 0.08em;
  color: #42220f;
  margin: 0;
}

.medicine__card-subtitle {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: 0.04em;
  color: #b2a581;
  margin: 0;
}

.medicine__card-text {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: 0.04em;
  color: #42220f;
  margin: 0;
}

.medicine__card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: #42220f;
  text-decoration: none;
  border: none;
  border-bottom: 1px solid #b2a581;
  padding: 0 0 8px;
  background: none;
  cursor: pointer;
  align-self: flex-start;
  transition: opacity 0.2s;
}

.medicine__card-link:hover {
  opacity: 0.8;
}

.medicine__card-link-plus {
  flex-shrink: 0;
  font-size: 1em;
  line-height: 1;
}

.medicine__nav {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  padding-right: 80px;
}

.medicine__nav .nav-arrow {
  width: 40px;
  height: 40px;
  padding: 0;
  border: 1px solid #42220f;
  border-radius: 50%;
  background: transparent;
  color: #42220f;
  font-size: 16px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s, color 0.2s;
}

.medicine__nav .nav-arrow:hover {
  background-color: #42220f;
  color: #fffbf3;
}

.medicine__nav .nav-arrow.swiper-button-disabled {
  opacity: 0.4 !important;
  cursor: not-allowed;
  pointer-events: none;
}

.medicine__nav .nav-arrow.swiper-button-disabled:hover {
  background-color: transparent;
  color: #42220f;
}

/* Medicine Modal（ヘッダーも黒幕で覆うため #container の z-index を上げる） */
/* モーダル表示中は背景スクロールを無効化（overflow のみでスクロール位置は維持） */
html.medicine-modal-open {
  overflow: hidden;
}

body.medicine-modal-open {
  overflow: hidden;
}

body.medicine-modal-open #container {
  z-index: 10001;
}

.medicine-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 99999;
  align-items: center;
  justify-content: center;
  padding: 100px 240px;
  box-sizing: border-box;
}

.medicine-modal.is-active {
  display: flex;
}

.medicine-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(66, 34, 15, 0.9);
  cursor: pointer;
}

.medicine-modal__close {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 100002;
  width: 78px;
  height: 78px;
  padding: 0;
  border: none;
  background: transparent;
  color: #fefdfb;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.2s;
}

.medicine-modal__close:hover {
  opacity: 0.8;
}

.medicine-modal__content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 960px;
  max-height: calc(100vh - 200px);
  overflow-y: auto;
  background: #fefdfb;
  padding: 60px;
  box-sizing: border-box;
}

.medicine-modal__header {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 37px;
}

.medicine-modal__title {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: 0.08em;
  color: #42220f;
  margin: 0;
}

.medicine-modal__subtitle {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: 0.04em;
  color: #b2a581;
  margin: 0;
}

.medicine-modal__desc {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: 0.04em;
  color: #42220f;
  margin: 0;
}

.medicine-modal__body {
  display: flex;
  gap: 56px;
  align-items: flex-start;
}

.medicine-modal__images {
  flex-shrink: 0;
  width: 240px;
}

.medicine-modal__images img {
  width: 100%;
  height: auto;
  display: block;
}

.medicine-modal__details {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.medicine-modal__category {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.medicine-modal__category-title {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.04em;
  color: #42220f;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* テーマの h4 { font-weight: 600 } を上書き（先頭のみ太く見える問題を解消） */
.medicine-modal__category .medicine-modal__category-title {
  font-weight: 500;
}

.medicine-modal__category-title::before {
  content: "";
  flex-shrink: 0;
  width: 6px;
  height: 2px;
  background: #42220f;
}

.medicine-modal__list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.medicine-modal__list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: 0.04em;
  color: #42220f;
  padding: 4px 0;
}

.medicine-modal__list li::before {
  content: "";
  flex-shrink: 0;
  width: 3px;
  height: 3px;
  margin-top: calc(0.85em - 1.5px);
  border-radius: 9999px;
  background: #42220f;
}

.medicine-modal__list-content {
  flex: 1;
  min-width: 0;
}

.medicine-modal__list-content strong {
  display: block;
  margin-bottom: 2px;
}

/* Medicine Modal SP */
@media (max-width: 768px) {
  .medicine-modal {
    padding: 60px 24px 24px;
    align-items: center;
  }

  .medicine-modal__content {
    max-height: calc(100vh - 108px);
    padding: 24px;
  }

  .medicine-modal__header {
    gap: 12px;
    margin-bottom: 24px;
  }

  .medicine-modal__title {
    font-size: 18px;
    letter-spacing: 0.04em;
  }

  .medicine-modal__subtitle {
    font-size: 14px;
    letter-spacing: 0.04em;
  }

  .medicine-modal__desc {
    font-size: 16px;
    letter-spacing: 0.04em;
  }

  .medicine-modal__body {
    flex-direction: column;
    gap: 24px;
  }

  .medicine-modal__images {
    width: 100%;
    max-width: 294px;
  }

  .medicine-modal__category-title {
    font-size: 18px;
    letter-spacing: 0.04em;
  }

  .medicine-modal__list li {
    font-size: 16px;
    letter-spacing: 0.04em;
  }

  .medicine-modal__close {
    top: 0;
    right: 0;
    width: 60px;
    height: 60px;
  }
}

/* Medicine SP */
@media (max-width: 768px) {
  .medicine {
    padding: 56px 24px;
  }

  .medicine__inner {
    gap: 40px;
  }

  .medicine__header {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .medicine__cta-pc {
    display: none !important;
  }

  .medicine__cta-sp {
    display: flex;
    width: 100%;
    box-sizing: border-box;
  }

  .medicine__cta-sp .btn {
    width: 100%;
    align-self: stretch;
    box-sizing: border-box;
  }

  .medicine__label {
    font-size: 15px;
    letter-spacing: 0.08em;
  }

  .medicine__title {
    font-size: 26px;
    line-height: 1.7;
    letter-spacing: 0.08em;
  }

  .medicine__title-br {
    display: block;
  }

  .medicine__lead {
    font-size: 16px;
    letter-spacing: 0.04em;
  }

  .medicine__cards-viewport {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    padding-left: 24px;
    padding-right: 0;
  }

  .medicine__card {
    width: 293px;
    padding: 20px;
    gap: 20px;
  }

  .medicine__card-body {
    gap: 16px;
  }

  .medicine__card-title {
    font-size: 18px;
    letter-spacing: 0.08em;
  }

  .medicine__card-subtitle {
    font-size: 14px;
    letter-spacing: 0.04em;
  }

  .medicine__card-text {
    font-size: 16px;
    letter-spacing: 0.04em;
  }

  .medicine__card-link {
    font-size: 16px;
    letter-spacing: 0.04em;
  }

  .medicine__nav {
    padding-right: 24px;
  }
}

/* ======================================= CONSULTATION FEES（料金プラン） ======================================= */
.pricing {
  padding: 80px 160px;
  background-color: #fefdfb;
}

.pricing__inner {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

@media (min-width: 1025px) {
  .pricing__inner {
    gap: 56px;
  }
}

.pricing__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
}

.pricing__label {
  font-family: "Lato", sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: #b2a581;
  margin: 0;
}

.pricing__title {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 32px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.08em;
  color: #42220f;
  margin: 0;
}

.pricing__description {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: 0.04em;
  color: #42220f;
  text-align: center;
  margin: 0;
}

.pricing__cards {
  display: flex;
  gap: 16px;
  width: 100%;
}

.pricing__card {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding-top: 2px;
  background-color: #fefdfb;
  border: 1px solid #e9e9e2;
}

.pricing__card-head {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 56px;
  background-color: #9c8c62;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: 0.08em;
  color: #fefdfb;
}

.pricing__card-body {
  display: grid;
  grid-template-rows: auto auto 1fr;
  grid-template-columns: 1fr;
  align-items: center;
  justify-items: center;
  flex: 1;
  padding: 32px 40px;
  text-align: center;
  color: #42220f;
}

.pricing__card-body > .pricing__card-row:last-of-type,
.pricing__card-body > .pricing__card-price {
  align-self: center;
}

.pricing__card-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding-bottom: 24px;
}

.pricing__card-divider {
  width: 100%;
  margin: 0;
  border: none;
  border-top: 1px solid #e9e9e2;
}

.pricing__card-row:last-of-type {
  padding-bottom: 0;
  padding-top: 24px;
}

.pricing__card-label {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1;
  display: inline-flex;
  align-items: center;
}

.pricing__card-value {
  display: flex;
  align-items: center;
  gap: 2px;
}

.pricing__card-number {
  font-family: "Source Serif 4", serif;
  font-size: 32px;
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 1;
  display: inline-flex;
  align-items: center;
}

.pricing__card-unit {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1;
  display: inline-flex;
  align-items: center;
}

.pricing__card-unit sup {
  vertical-align: middle;
  font-size: inherit;
}

.pricing__card-price {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  box-sizing: border-box;
  padding: 24px;
  margin-top: 0;
  border: none;
  border-top: 1px solid #e9e9e2;
  text-align: center;
}

.pricing__card-monthly {
  display: flex;
  align-items: center;
  gap: 4px;
}

.pricing__card-monthly-label {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1;
  display: inline-flex;
  align-items: center;
}

.pricing__card-actual {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: #75612c;
  display: inline-flex;
  align-items: center;
  line-height: 1;
}

.pricing__card-actual .pricing__card-number {
  font-family: "Source Serif 4", serif;
  font-size: 24px;
  letter-spacing: 0.02em;
}

.pricing__note {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 10px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.04em;
  color: #b2a581;
  text-align: right;
  margin: 0;
  width: 100%;
}

@media (min-width: 1025px) {
  .pricing__note {
    margin-top: -40px; /* 56px gap - 40px = 16px from pricing__cards */
  }
}

.pricing__services-title {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: 0.08em;
  color: #42220f;
  margin: 0;
  align-self: center;
  text-align: center;
}

.pricing__services {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  width: 100%;
}

.pricing__service-card {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 24px;
  background-color: rgba(233, 233, 226, 0.4);
}

.pricing__service-card img {
  width: 80px;
  height: 80px;
  object-fit: contain;
}

.pricing__service-name {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: 0.04em;
  color: #42220f;
}

.pricing__notes {
  display: flex;
  gap: 16px;
  width: 100%;
  padding: 0 20px;
}

.pricing__notes-column {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.pricing__notes-heading {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: #b2a581;
  margin: 0;
}

.pricing__notes-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.pricing__notes-list li {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  padding-left: 4px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.04em;
  color: #b2a581;
}

.pricing__notes-list li::before {
  content: "";
  flex-shrink: 0;
  width: 4px;
  height: 11px;
  background-image: url("../img/renewal/pricing/pricing-bullet.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

/* Pricing SP */
@media (max-width: 768px) {
  .pricing {
    padding: 48px 24px;
  }

  .pricing__inner {
    gap: 16px;
    align-items: stretch;
  }

  .pricing__header {
    align-items: center;
  }

  .pricing__label {
    font-size: 15px;
    letter-spacing: 0.08em;
  }

  .pricing__title {
    font-size: 26px;
    letter-spacing: 0.08em;
  }

  .pricing__description {
    font-size: 16px;
    text-align: left;
  }

  .pricing__cards {
    flex-direction: column;
    gap: 16px;
  }

  .pricing__card-head {
    height: auto;
    padding: 12px;
    font-size: 20px;
    letter-spacing: 0.08em;
  }

  .pricing__card-body {
    padding: 20px;
  }

  .pricing__card-row {
    padding-bottom: 20px;
  }

  .pricing__card-row:last-of-type {
    padding-top: 20px;
  }

  .pricing__card-label {
    font-size: 16px;
  }

  .pricing__card-number {
    font-size: 28px;
  }

  .pricing__card-unit {
    font-size: 16px;
  }

  .pricing__card-price {
    border: none;
    border-top: 1px solid #e9e9e2;
    padding: 24px 0 20px;
  }

  .pricing__card-monthly-label {
    font-size: 16px;
  }

  .pricing__card-actual {
    font-size: 14px;
  }

  .pricing__card-actual .pricing__card-number {
    font-size: 20px;
  }

  .pricing__services-title {
    font-size: 22px;
    letter-spacing: 0.08em;
    align-self: center;
    text-align: center;
  }

  .pricing__services {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }

  .pricing__service-card {
    padding: 20px;
  }

  .pricing__service-card img {
    width: 70px;
    height: 70px;
  }

  .pricing__service-name {
    font-size: 18px;
  }

  .pricing__note {
    text-align: left;
  }

  .pricing__notes {
    flex-direction: column;
    gap: 16px;
    padding: 0;
  }
}

/* ======================================= Wheat Banner（麦畑バナー） ======================================= */
/* Figma: PC 1440×540 / SP 120px。object-fit: cover で画像をクリッピング表示 */
.wheat-banner {
  overflow: hidden;
}

.wheat-banner__image {
  width: 100%;
  height: 540px;
}

.wheat-banner__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}

@media (max-width: 768px) {
  .wheat-banner__image {
    height: 120px;
  }
}

/* ======================================= Report（MYLILYレポート） ======================================= */
.report {
  background-color: #fffbf3;
  padding: 80px 160px;
  height: 716px;
  box-sizing: border-box;
}

.report__inner {
  max-width: 1120px;
  margin: 0 auto;
  height: 100%;
}

.report__main {
  display: flex;
  gap: 80px;
  align-items: center;
  height: 100%;
}

.report__left {
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: center;
  flex-shrink: 0;
}

.report__stat {
  position: relative;
  width: 484px;
  height: 484px;
}

.report__stat[hidden] {
  display: none !important;
}

.report__slide-content[hidden],
.report__note[hidden] {
  visibility: hidden !important;
  pointer-events: none;
}

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

.report__nav {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
}

.report__nav-arrow {
  width: 40px;
  height: 40px;
  padding: 0;
  border: 1px solid #42220f;
  border-radius: 50%;
  background: transparent;
  color: #42220f;
  font-size: 16px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s, color 0.2s;
}

.report__nav-arrow:hover {
  background-color: #42220f;
  color: #fffbf3;
}

.report__nav-arrow:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  pointer-events: none;
}

.report__right-col {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
  max-width: 560px;
}

.report__right {
  display: flex;
  flex-direction: column;
  gap: 48px;
  align-items: flex-start;
  width: 100%;
}

.report__slide-area,
.report__note-area {
  display: grid;
  width: 100%;
}

.report__slide-area > *,
.report__note-area > * {
  grid-area: 1 / 1;
}

.report__slide-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}

.report__header {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.report__label {
  font-family: "Lato", sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: #b2a581;
  margin: 0;
}

.report__heading {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 32px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: #42220f;
  margin: 0;
}

.report__subheading-wrap {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  width: 100%;
}

.report__subheading-num {
  font-family: "Source Serif 4", "Lato", serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: #b2a581;
  flex-shrink: 0;
  padding-top: 4px;
  margin: 0;
}

.report__subheading {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.08em;
  color: #42220f;
  margin: 0;
  flex: 1;
  min-width: 0;
}

.report__text {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
}

.report__text p {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: 0.04em;
  color: #42220f;
  margin: 0;
}

.report__note {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 100%;
}

.report__note p {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.04em;
  color: #b2a581;
  margin: 0;
}

.report__more-link {
  margin-top: auto;
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 8px 0;
  border-bottom: 1px solid #b2a581;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: #42220f;
  text-decoration: none;
  transition: opacity 0.2s;
}

.report__more-link:hover {
  opacity: 0.8;
}

.report__more-arrow {
  font-size: 10px;
}

/* Report Tablet: paddingとstatサイズを縮小してPCレイアウト維持 */
@media (max-width: 1250px) and (min-width: 769px) {
  .report {
    padding: 60px 40px;
  }

  .report__main {
    gap: 40px;
  }

  .report__stat {
    width: 340px;
    height: 340px;
  }

  .report__right-col {
    max-width: none;
  }

  .report__heading {
    font-size: 26px;
  }

  .report__subheading {
    font-size: 20px;
  }
}

/* Report SP */
@media (max-width: 768px) {
  .report {
    padding: 48px 24px;
    height: auto;
  }

  .report__main {
    flex-direction: column;
    gap: 40px;
    align-items: stretch;
    min-height: auto;
  }

  .report__right-col {
    display: contents;
  }

  .report__right {
    order: 1;
    min-height: auto;
  }

  .report__left {
    order: 2;
  }

  .report__note-area {
    order: 3;
  }

  .report__more-link {
    order: 4;
  }

  .report__stat {
    width: 342px;
    height: 342px;
    margin: 0 24px;
  }

  .report__nav {
    justify-content: center;
  }

  .report__header {
    gap: 12px;
  }

  .report__label {
    font-size: 15px;
    letter-spacing: 0.08em;
  }

  .report__heading {
    font-size: 26px;
    letter-spacing: 0.08em;
  }

  .report__subheading-wrap {
    gap: 8px;
  }

  .report__subheading {
    font-size: 24px;
    letter-spacing: 0.08em;
  }

  .report__text p {
    font-size: 16px;
    letter-spacing: 0.04em;
  }
}

/* ======================================= MY STORY（患者体験談） ======================================= */
.story {
  background-color: #fefdfb;
  padding: 48px 0 40px;
  overflow: hidden;
}

.story__viewport {
  width: 100vw;
  min-width: 0;
  overflow: visible;
  margin-left: calc(50% - 50vw);
  padding-left: max(80px, calc(80px + (100vw - 1600px) / 2));
  padding-right: 0;
  box-sizing: border-box;
}

.story__inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 80px;
}

.story__slides {
  width: 100%;
  overflow: visible;
}

.story__slides .swiper-wrapper {
  align-items: stretch;
}

.story__slide {
  flex-shrink: 0;
  width: 1152px;
  height: 922px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.story__slide-bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}

.story__slide-img {
  display: none;
}

.story__slide-header {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 40px 0 0 40px;
}

.story__slide-header--light .story__slide-label,
.story__slide-header--light .story__slide-name {
  color: #fefdfb;
}

.story__slide-header--dark .story__slide-label {
  color: #75612c;
}

.story__slide-header--dark .story__slide-name {
  color: #42220f;
}

.story__slide-label {
  font-family: "Lato", sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1.12px;
  margin: 0;
}

.story__slide-name {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 32px;
  font-weight: 500;
  letter-spacing: 2.56px;
  margin: 0;
}

.story__slide-card {
  position: relative;
  z-index: 1;
  align-self: flex-end;
  width: 528px;
  min-height: 430px;
  background-color: #948357;
  background-image: url("../img/renewal/story/story-gradient.png");
  background-size: cover;
  background-position: center;
  padding: 48px 40px 40px;
}

.story__slide-card-inner {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.story__slide-quote-mark {
  width: 39px;
  height: 32px;
  object-fit: contain;
}

.story__slide-heading {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 22px;
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: 0.88px;
  color: #fefdfb;
  margin: 0;
}

.story__slide-body-wrap {
  border-top: 1px solid #e9e9e2;
  padding-top: 24px;
}

.story__slide-body {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: 0.64px;
  color: #fefdfb;
  margin: 0;
}

.story__nav {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  padding: 40px 0 0;
}

.story__nav .nav-arrow {
  width: 40px;
  height: 40px;
  padding: 0;
  border: 1px solid #42220f;
  border-radius: 50%;
  background: transparent;
  color: #42220f;
  font-size: 16px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s, color 0.2s;
}

.story__nav .nav-arrow:hover {
  background-color: #42220f;
  color: #fffbf3;
}

.story__nav .nav-arrow.swiper-button-disabled {
  opacity: 0.4 !important;
  cursor: not-allowed;
  pointer-events: none;
}

.story__nav .nav-arrow.swiper-button-disabled:hover {
  background-color: transparent;
  color: #42220f;
}

/* Story SP */
@media (max-width: 768px) {
  .story {
    padding: 48px 0 40px;
  }

  .story__slide {
    width: 293px;
    height: auto;
    min-height: 600px;
    flex-direction: column;
    gap: 140px;
    background-color: #fefdfb;
  }

  .story__slide-bg {
    display: none;
  }

  .story__slide-img {
    display: block;
    position: absolute;
    left: 98px;
    top: 79px;
    width: 206px;
    height: 172px;
    object-fit: cover;
    object-position: center;
    z-index: 2;
  }

  .story__slide-header {
    padding: 0 24px;
    order: 1;
    text-align: left;
  }

  .story__slide-header--light .story__slide-label {
    color: #75612c;
  }

  .story__slide-header--light .story__slide-name {
    color: #42220f;
  }

  .story__slide-label {
    color: #75612c;
    font-size: 15px;
    letter-spacing: 1.04px;
  }

  .story__slide-name {
    color: #42220f;
    font-size: 26px;
    letter-spacing: 1.92px;
  }

  .story__slide-card {
    width: 100%;
    height: 531px;
    overflow: hidden;
    padding: 48px 24px 24px;
    order: 2;
    z-index: 1;
    border: none;
  }

  .story__slide-card-inner {
    gap: 12px;
  }

  .story__slide-quote-mark {
    width: 30px;
    height: 24px;
  }

  .story__slide-heading {
    font-size: 18px;
    letter-spacing: 0.64px;
  }

  .story__slide-body-wrap {
    padding-top: 16px;
    border-top: 1px solid #e9e9e2;
  }

  .story__slide-body {
    font-size: 16px;
    letter-spacing: 0.56px;
  }

  .story__viewport {
    padding-left: 24px;
  }

  .story__inner {
    padding: 0 24px;
  }

  .story__nav {
    padding: 40px 0 0;
  }
}

/* ======================================= FAQ（よくある質問） ======================================= */
.faq,
.faq * {
  font-family: "Zen Kaku Gothic New", sans-serif;
}

.faq {
  background-color: #ffffff;
  padding: 80px 240px;
  max-width: 1440px;
  margin: 0 auto;
}

.faq__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 56px;
}

.faq__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
}

.faq__label {
  font-family: "Lato", sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1.12px;
  color: #b2a581;
  margin: 0;
}

.faq__title {
  font-size: 32px;
  font-weight: 500;
  letter-spacing: 2.56px;
  color: #42220f;
  margin: 0;
}

.faq__list {
  width: 100%;
  border-top: 1px solid #e9e9e2;
  display: flex;
  flex-direction: column;
}

.faq__item {
  display: flex;
  gap: 12px;
  align-items: baseline;
  padding: 24px 16px;
  border-bottom: 1px solid #e9e9e2;
}

.faq__q-mark {
  font-family: "Lato", sans-serif;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.72px;
  color: #b2a581;
  margin: 0;
  flex-shrink: 0;
}

.faq__text {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq__question {
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.72px;
  line-height: 1.7;
  color: #42220f;
  margin: 0;
}

.faq__answer {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.64px;
  line-height: 1.7;
  color: #42220f;
}

.faq__answer p {
  margin: 0 0 0.5em 0;
}

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

.faq__more-wrap {
  display: flex;
  justify-content: center;
  width: 100%;
}

.faq__more {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 8px 0;
  border-bottom: 1px solid #b2a581;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.64px;
  color: #42220f;
  text-decoration: none;
  transition: color 0.25s ease;
}

.faq__more:hover {
  color: #8a6d45;
}

.faq__more img {
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .faq {
    padding: 80px 40px;
  }
}

@media (max-width: 768px) {
  .faq {
    background-color: #fefdfb;
    padding: 48px 24px;
  }

  .faq__inner {
    gap: 32px;
    align-items: flex-start;
  }

  .faq__header {
    align-items: flex-start;
    text-align: left;
  }

  .faq__label {
    font-size: 15px;
    letter-spacing: 1.04px;
  }

  .faq__title {
    font-size: 26px;
    letter-spacing: 1.92px;
  }

  .faq__item {
    padding: 24px 8px;
  }

  .faq__q-mark {
    font-size: 18px;
    letter-spacing: 0.64px;
  }

  .faq__text {
    gap: 12px;
  }

  .faq__question {
    font-size: 18px;
    letter-spacing: 0.64px;
  }

  .faq__answer {
    font-size: 16px;
    letter-spacing: 0.56px;
  }

  .faq__more {
    font-size: 18px;
  }
}

