@charset "UTF-8";

/* ===================================
   フォントファミリー変数定義
=================================== */
:root {
  /* 基本フォント */
  --font-base: "Noto Sans JP", sans-serif;

  /* 日本語フォント */
  --font-jp-sans: "Noto Sans JP", sans-serif;
  --font-jp-mincho: "Zen Old Mincho", serif;

  /* 英語フォント */
  --font-en: "Inter", sans-serif;

  /* フォールバック */
  --font-fallback: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

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

* {
  font-size: 1rem;
  font-family: var(--font-base);
  font-weight: 400;
}

body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
code,
form,
fieldset,
legend,
input,
textarea,
button,
p,
blockquote,
th,
td {
  margin: 0;
  padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 400;
}

body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  font-family: var(--font-base);
  font-weight: 400;
}

ul,
ol {
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
}

caption,
th {
  text-align: left;
}

address,
caption,
cite,
code,
dfn,
em,
strong,
th,
var {
  font-style: normal;
  font-weight: normal;
}

abbr,
acronym {
  border: 0;
  font-variant: normal;
}

input,
textarea,
select,
button {
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
}

sup {
  vertical-align: text-top;
}

a:not([class]) {
  transition: 0.3s;
  color: inherit;
  text-decoration: none;
  -webkit-text-decoration-skip: ink;
  text-decoration-skip-ink: auto;
}

img,
picture {
  max-width: 100%;
  vertical-align: top;
}

input,
button,
textarea,
select {
  font: inherit;
}

span {
  color: inherit;
  font-size: inherit;
}

button {
  cursor: pointer;
  border: none;
  outline: none;
  background: transparent;
  box-shadow: none;
}

a {
  display: inline-block;
  text-decoration: none;
  color: inherit;
  font-size: inherit;
  cursor: pointer;
  vertical-align: top;
}

:focus:not(:focus-visible) {
  outline: 0;
  /* キーボード操作"以外"でフォーカスされた際はoutlineを消す */
}

@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/*****************************************
 * 数値から単位を取り除く
 * 参考
 * https: //css-tricks.com/snippets/sass/
******************************************/
/*****************************************
 * px→remの計算
 * 参考
 * https: //webdou.net/sass-rem/
 * Sassではmath.div関数の使用が推奨のため、スラッシュ(/)演算子から変更
******************************************/
/*****************************************
 * vwの計算
 * 参考
 * https://webdou.net/sass-vw/
 * Sassではmath.div関数の使用が推奨のため、スラッシュ(/)演算子から変更
******************************************/
@media (min-width: 621px) {
  html {
    font-size: calc(16px * 620 / 375);
  }
}

@media (min-width: 376px) and (max-width: 620px) {
  html {
    font-size: calc(100vw * 16 / 375);
  }
}

@media (max-width: 375px) {
  html {
    font-size: calc(100vw * 16 / 375);
  }
}

body {
  position: relative;
  color: #000000;
}

.scroll-hint-icon-wrap {
  position: absolute;
  top: 42%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  display: flex !important;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.scroll-hint-text {
  display: block;
  font-size: 0.625rem;
  /* 必要に応じて調整 */
  text-align: center;
  margin-inline: auto;
}

.js-fadeIn {
  opacity: 0;
  transition-duration: 1s;
  transition-property: opacity, transform;
  transform: translateY(50px);
}

.js-fadeIn.is-scrollIn {
  transform: translateY(0);
  opacity: 1;
}



/*　スクロールバーのツマミ部分の色を変えたい時　*/
.simplebar-scrollbar::before {
  background: #d61b2d;
}

.simplebar-scrollbar.simplebar-visible:before {
  opacity: 1;
  transition-duration: 0.2s;
}

/*　スクロールバー太さを変えたい時　*/
.simplebar-track.simplebar-vertical {
  height: 0.3125rem;
}

.l-inner {
  margin-inline: auto;
  padding-right: 1.4375rem;
  padding-left: 1.4375rem;
}

.l-wrapper {
  position: relative;
  width: 100%;
  max-width: 38.75rem;
  background: #FBF9F5;
  box-shadow: 0 5px 5px 2px rgba(211, 211, 211, 0.6);
  z-index: 100;
  z-index: 99999;
}

@media (max-width: 1430px) {
  .l-wrapper {
    margin-inline: auto;
  }
}

@media (min-width: 620px) {
  .l-wrapper {
    width: 620px;
  }
}

.l-container {
  margin-inline: auto;
  display: flex;
  justify-content: center;
  gap: 1.875rem;
  padding-inline: 0.5rem;
}

@media (max-width: 1500px) {
  .l-container {
    gap: 1.25rem;
  }
}

@media (max-width: 1450px) {
  .l-container {
    gap: 0.625rem;
  }
}

@media (max-width: 1430px) {
  .l-container {
    display: contents;
  }
}

.c-button {
  width: 100%;
}


a.c-button {
  display: flex;
  margin-top: 1.25rem;
}

.c-button span {
  position: relative;
  display: inline-block;
  width: 100%;
  padding-top: 1rem;
  padding-bottom: 1.25rem;
  overflow: hidden;
  background: linear-gradient(0deg, #3ECA00 0%, #C4E500 100%);
  box-shadow: 0 0.1875rem 0 0 #008F00;
  border-radius: 100vh;
  color: #ffffff;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.09em;
  text-align: center;
  transition: ease-in-out, 0.3s;
  will-change: transform, box-shadow;
  font-size: 1.25rem;
}

.c-button span .small-text {
  font-size: 0.875rem;
  background: transparent;
  padding: 0;
  box-shadow: none;
  width: initial;
  position: inherit;
}

.c-button span:hover {
  transform: translateY(0.3rem);
  box-shadow: none;
}

.c-button span::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 1.0625rem;
  transform: translateY(-50%) rotate(45deg);
  width: 0.75rem;
  height: 0.75rem;
  border-top: solid 2px #ffffff;
  border-right: solid 2px #ffffff;
  transition: transform 0.3s ease-in-out;
  will-change: transform;
}

/* 光のアニメーション */
.c-button span::after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 0;
  left: -150%;
  width: 200%;
  height: 500%;
  background: linear-gradient(310deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.1) 5%, rgba(255, 255, 255, 0.6) 50%, rgba(255, 255, 255, 0.7) 70%, rgb(255, 255, 255) 80%, rgba(255, 255, 255, 0) 100%);
  animation: shiny-slide 3s ease-in-out infinite;
  z-index: 0;
}

@keyframes shiny-slide {
  0% {
    left: -300%;
    transform: rotate(135deg);
  }

  30% {
    left: 150%;
    transform: rotate(135deg);
  }

  100% {
    left: 150%;
    transform: rotate(135deg);
  }
}


.c-button span .small-text:before {
  content: initial;
}

.c-button span .small-text:after {
  content: initial;
}


.c-highlight {
  position: relative;
  color: #44CAFF;
  font-weight: 700;
  background: linear-gradient(#FFF8A7 0%, #FFF8A7 100%);
}

.c-highlightYellow {
  position: relative;
  background: linear-gradient(#FFF8A7 0%, #FFF8A7 100%);
}

.c-title {
  position: relative;
  color: #ffffff;
  font-weight: 700;
  line-height: 1.1875;
  letter-spacing: 0.09em;
  text-align: center;
  z-index: 1;
}

.c-table__title h2 {
  font-weight: 700;
  font-size: 1.3125rem;
  line-height: 1.38;
  text-align: center;
}

.c-table__title .blue {
  color: #1FA0F6;

}

.c-table__title .big {
  color: #1FA0F6;
  font-weight: 700;
  font-size: 2.6rem;
}

ß .c-underline {
  background: linear-gradient(transparent 60%, #f8ff30 0%);
}

.p-404__inner {
  min-height: 30vh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 2.5rem;
}

.p-404__button {
  width: 100%;
  max-width: 15rem;
}

.p-404__button a {
  display: inline-block;
  width: 100%;
  padding-top: 0.375rem;
  padding-bottom: 0.3125rem;
  background: #32d696;
  box-shadow: 0px 0.125rem 0px #279970;
  border-radius: 100vh;
  color: #ffffff;
  font-weight: 700;
  line-height: 1.1875;
  letter-spacing: 0.09em;
  text-align: center;
  transition: ease-in-out, 0.3s;
}

.p-404__button a:hover {
  transform: translateY(2px);
  box-shadow: none;
}

.p-banner {
  position: relative;
}

.p-banner img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.p-banner__arrow {
  position: relative;
}

.p-banner__arrow::before {
  content: "";
  position: absolute;
  bottom: -2.5rem;
  left: 50%;
  width: 100%;
  height: 2.5rem;
  background: url(../images/icon/under_arrow.svg) center/contain no-repeat;
  transform: translate(-50%, -50%);
}

.p-cause__inner {
  background: linear-gradient(180deg, #F0F1F1 0%, #DEDEDE 100%);
  padding-top: 1.875rem;
  padding-bottom: 2.5rem;
}

.p-cause__contents {
  margin-top: 1.25rem;
}

.p-cause__card+.p-cause__card {
  margin-top: 1.25rem;
}

.p-cause__note {
  margin-top: 1.25rem;
}

.p-cause__text {
  font-size: 0.9375rem;
  line-height: 1.6875rem;
}

.p-cause__text:last-child {
  margin-top: 1.875rem;
}

.p-causeCard {
  position: relative;
  background: #ffffff url(../images/common/bg_note.png) repeat;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, .08);
  padding: 1.25rem 1.0625rem 1.875rem;
}

/* 右上の縦書きラベル "CAUSE 01" */
.p-causeCard__label {
  position: absolute;
  top: 0;
  right: 0;
  color: #9AA0AF;
  font-weight: 700;
  font-size: 0.75rem;
  line-height: 1;
  letter-spacing: 0.05em;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  display: flex;
  align-items: center;
  gap: 0.375rem;
}

/* 鉛筆アイコン */
.p-causeCard__label::after {
  content: "";
  display: block;
  width: 1.1875rem;
  height: 1.1875rem;
  background: url(../images/icon/pencil.svg) no-repeat center/contain;
}

.p-causeCard__inner {
  background: transparent;
  position: relative;
  padding-right: 1.6rem;
}

/* タイトル（チェックアイコン＋赤文字） */
.p-causeCard__title {
  position: relative;
  padding-left: 1.9375rem;
  padding-bottom: 0.4375rem;
  font-weight: 700;
  color: #B04749;
  font-size: 1.0625rem;
  line-height: 1.4;
  border-bottom: 1px solid #9AA0AF;
}

.p-causeCard__title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1.625rem;
  height: 1.625rem;
  background: url(../images/icon/checkbox.svg) no-repeat center/contain;
}

.p-causeCard__text {
  margin-top: 0.5rem;
  font-size: 0.875rem;
  line-height: 1.79;
  font-weight: 500;
}

/* 対策ブロック（電球アイコン） */
.p-causeCard__countermeasure {
  margin-top: 1.25rem;
  position: relative;
  padding-left: 1.0625rem;
}

.p-causeCard__countermeasure::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 0.3125rem;
  background: #9AA0AF;
}

.p-causeCard__countermeasure-title {
  position: relative;
  padding-left: 2rem;
  font-weight: 700;
  font-size: 1.0625rem;
  line-height: 1.59;
}

.p-causeCard__countermeasure-title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1.5rem;
  height: 1.5rem;
  background: url(../images/icon/lightbulb.svg) no-repeat center/contain;
}

.p-causeCard__countermeasure-text {
  margin-top: 0.375rem;
  font-size: 0.875rem;
  line-height: 1.79;
}

/* 右端のラベル */
.p-causeCard::after {
  content: attr(data-cause);
  position: absolute;
  top: 16px;
  right: 12px;
  color: #b8c2cc;
  font-weight: 700;
  letter-spacing: .08em;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-size: 12px;
}

/* 鉛筆アイコン */
.p-causeCard::before {
  content: "";
  position: absolute;
  top: 64px;
  right: 10px;
  width: 16px;
  height: 16px;
  opacity: .9;
}

.p-card {
  background: #ffffff;
  border-radius: 0.375rem;
}

.p-card:first-child .p-card__title::before {
  content: "";
  position: absolute;
  top: -1px;
  right: 0;
  width: 6rem;
  height: 5.5rem;
  background: url(../images/icon/recomend.svg) center/contain no-repeat;
  z-index: 999;
  pointer-events: none;
}

.p-card:not(:first-child) {
  margin-top: 0.875rem;
}

.p-card__container {
  padding-bottom: 1.75rem;
  border-radius: 5px 5px 0 0;
}

.p-card__inner {
  padding: 0 0.6875rem;
}

.p-card__inner.p-card__inner--content-img {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  z-index: 10;
}

.p-banner__content-1 {
  margin-top: 1.25rem;
}

.p-card__title {
  position: relative;
  padding: 0.625rem 0.8125rem;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.p-card__title a {
  color: #1FA0F6;
  font-size: 1.125rem;
  line-height: 1.33;
  font-weight: 700;
  border-bottom: 2px solid #1FA0F6;
  display: inline-block;
  width: fit-content;
}

.p-card__rank-icon {
  flex-shrink: 0;
  width: 1.6rem;
  height: 1.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.p-card__rank-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.p-card__title-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.p-card__evaluation {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
}

.p-card__evaluation-text {
  font-size: 1.125rem;
  line-height: 1.33;
  font-weight: 700;
}

.p-card__evaluation-stars {
  display: flex;
  align-items: center;
}

.p-card__evaluation-stars img {
  width: 7rem;
  height: auto;
  object-fit: contain;
}


.p-card__body {
  display: flex;
  align-items: center;
  margin-top: 0.375rem;
}

.p-card__title a:hover {
  opacity: 0.7;
}

.p-card__text {
  font-size: 0.75rem;
  line-height: 1.5833333333;
}

.p-card__img {
  text-align: center;
}

.p-card__img a:hover {
  opacity: 0.7;
}

.p-card__img img {
  width: 7.4375rem;
  height: auto;
  -o-object-fit: contain;
  object-fit: contain;
}

.p-card__office-name {
  text-align: center;
}

.p-card__office-name a {
  color: #3D7DC1;
  border-bottom: 2px solid #3D7DC1;
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.375;
}

.p-card__img.p-card__img--other img {
  max-width: initial;
}

.p-card__item+.p-card__item {
  margin-top: 0.5rem;
}

.p-card__item-title {
  position: relative;
  width: 100%;
  padding: 0.5rem 0.5rem 0.5rem 0.7rem;
  font-weight: 700;
  font-size: 0.9375rem;
  line-height: 1;
  background: #1FA0F6;
  color: #FFF;
  border-radius: 1rem;
}

.p-card__meta {
  margin-top: 1rem;
  padding: 0.9375rem 0.9375rem 1rem;
  background: #DAF6FF;
}

.p-card__item-text {
  font-size: 0.9375rem;
  line-height: 1.4;
}

.p-card__point {
  margin-top: 1rem;
}

.p-card__subtitle {
  position: relative;
  width: 100%;
  text-align: center;
  font-weight: 700;
  background: #1FA0F6;
  color: #FFF;
  padding: 0.25rem 0;
  border-radius: 1rem;
  font-size: 0.9375rem;
  line-height: 1.67;
}

.p-card__point-list {
  margin-top: 0.6875rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.p-card__point-item {
  position: relative;
  padding-left: 2rem;
  font-weight: 500;
  line-height: 1.62;
  font-size: 0.8125rem;
  vertical-align: top;
}

.p-card__point-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 1.75rem;
  height: 1.4375rem;
  background: url(../images/icon/check_box.svg) center/contain no-repeat;
}

.p-card__point-button {
  margin-top: 1.4375rem;
}

.p-card__point-button__text {
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.5714285714;
  text-align: center;
}

.p-card__point-button .c-button {
  margin-top: 0.1875rem;
}

.p-card__explain {
  position: relative;
  border: 1px solid #CFD6DB;
  border-radius: 3px;
  padding: 1rem;
}

.p-card__explain p {
  position: relative;
  max-height: 7.5rem;
  /* 開く前に見せたい高さを指定 */
  margin-bottom: 0;
  overflow: hidden;
  transition: max-height 1s;
  font-size: 0.875rem;
  line-height: 1.5;
}

.p-card__explain:has(:checked) p {
  max-height: 100vh;
}

.p-card__explain p::after {
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 60px;
  background: linear-gradient(180deg, hsla(0, 0%, 100%, 0) 0, hsla(0, 0%, 100%, .9) 50%, hsla(0, 0%, 100%, .9) 0, #fff);
  content: '';
}

.p-card__explain:has(:checked) p::after {
  content: none;
}

.p-card__explain label {
  display: flex;
  align-items: center;
  gap: 0 4px;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  color: #4f96f6;
  font-size: .8em;
}

.p-card__explain label:hover {
  color: #B04749;
  text-decoration: underline;
  cursor: pointer;
}

.p-card__explain:has(:checked) label {
  display: none;
}

.p-card__explain label::after {
  display: inline-block;
  width: 0.875rem;
  height: 0.6rem;
  background-color: #CFD6DB;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  content: '';
}

.p-card__explain input {
  display: none;
}

.p-card__voice {
  margin-top: 1rem;
}

.p-card__voice-swiper__container {
  margin-top: 0.625rem;
}

.p-card__voice-swiper__slide {
  width: 15.9375rem;
}

@media (max-width: 620px) {
  .p-card__voice-swiper__slide {
    min-height: 9.125rem;
  }
}

.p-card__voice-slide {
  width: 15.9375rem;
  padding-bottom: 1.375rem;
  border: 1px solid #1FA0F6;
  border-radius: 0.2rem;
}

@media (max-width: 620px) {
  .p-card__voice-slide {
    min-height: 9.125rem;
  }
}

.p-card__voice-slide__title {
  margin: 0 0.875rem;
  color: #3D7DC1;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.2142857143;
  text-align: center;
  padding-bottom: 0.625rem;
  border-bottom: 2px dotted #3D7DC1;
}

.p-card__voice-slide__content {
  margin-top: 0.625rem;
  text-align: center;
  display: grid;
  gap: 25px;
}

.p-card__voice-slide__before {
  font-weight: 600;
  color: #E12323;
  font-size: 0.875rem;
}

.p-card__voice-slide__after {
  font-weight: 600;
  color: #3ECA00;
  font-size: 0.875rem;
  position: relative;
  display: inline-block;
}

.p-card__voice-slide__after::before {
  content: "";
  position: absolute;
  top: -12px;
  left: 50%;
  width: 1rem;
  height: 1rem;
  background: url(../images/icon/arrow.svg) center/contain no-repeat;
  transform: translate(-50%, -50%);
}

.p-card__voice-slide__text {
  position: relative;
  margin-top: 0.9375rem;
  padding-inline: 1.0625rem;
  z-index: 10;
}

.p-card__voice-slide__text p {
  font-size: 0.75rem;
  line-height: 1.75;
}

.p-card__voice-disclaimer {
  padding-inline: 0.8125rem;
  text-align: center;
  margin-top: 0.3rem;
}

.p-card__voice-disclaimer p {
  font-size: 0.625rem;
  font-weight: 500;
  line-height: 1.8;
}

.swiper-button-prev {
  left: 1.875rem;
}

.swiper-button-next {
  right: 1.875rem;
}

.swiper-button-prev.debt-case-prev {
  left: 2.15rem;
}

.swiper-button-next.debt-case-next {
  right: 2.15rem;
}

.swiper-button-prev,
.swiper-button-next {
  top: 55%;
  width: 1.5625rem;
  height: 1.5625rem;
  border-radius: 100vh;
  background: #1FA0F6;
  border: 1px solid transparent;
  transition: ease-in-out, 0.3s;
}

.swiper-button-prev::before,
.swiper-button-next::before {
  content: "";
  position: absolute;
  top: 50%;
  width: 0.625rem;
  height: 0.625rem;
  transition: ease-in-out, 0.3s;
}

.swiper-button-prev::before {
  left: 57%;
  transform: translate(-50%, -50%) rotate(-135deg);
  border-top: solid 2px #ffffff;
  border-right: solid 2px #ffffff;
}

.swiper-button-next::before {
  left: 43%;
  transform: translate(-50%, -50%) rotate(45deg);
  border-top: solid 2px #ffffff;
  border-right: solid 2px #ffffff;
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
  background: #ffffff;
  border: 1px solid #1FA0F6;
}

.swiper-button-prev:hover::before,
.swiper-button-next:hover::before {
  border-color: #1FA0F6;
}

.p-card__feature {
  margin-top: 1.375rem;
}

.p-card__feature-container {
  padding-inline: 1rem;
  padding-bottom: 1.0625rem;
  border: 6px solid #d61b2d;
}

.p-card__feature-title {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-inline: auto;
  width: 9.5625rem;
  height: 1.875rem;
  border-radius: 0 0 0.625rem 0.625rem;
  color: #ffffff;
  font-weight: 700;
  line-height: 1.1875;
}

.p-card__feature-title--merit {
  background: #d61b2d;
}

.p-card__feature-title--demerit {
  height: 2.25rem;
  background: #666666;
}

.p-card__feature-merit__list {
  margin-top: 0.875rem;
}

.p-card__feature-merit__item {
  position: relative;
  padding-left: 2.3125rem;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.3571428571;
}

.p-card__feature-merit__item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 1.5625rem;
  height: 1.5625rem;
  background: url(../images/icon/check_maru.svg) center/contain no-repeat;
}

.p-card__feature-merit__item:not(:first-child)::after {
  content: "";
  position: absolute;
  top: -0.5rem;
  left: 0;
  height: 1px;
  width: 100%;
  border-top: 1px dashed #cccccc;
}

.p-card__feature-merit__item:not(:first-child) {
  margin-top: 0.9375rem;
}

.p-card__feature-demerit {
  margin-top: 0.875rem;
  padding-inline: 0.75rem;
  padding-bottom: 0.8125rem;
  background: #e6e6e6;
  border-radius: 0.375rem;
}

.p-card__feature-demerit__list {
  margin-top: 0.75rem;
}

.p-card__feature-demerit__item {
  position: relative;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.3571428571;
  text-indent: 0.875rem;
}

.p-card__feature-demerit__item::before {
  content: "";
  position: absolute;
  top: 0.375rem;
  left: 0.275rem;
  width: 0.25rem;
  height: 0.25rem;
  background: #000000;
  border-radius: 100vh;
}

.p-card__feature-demerit__item:not(:first-child)::after {
  content: "";
  position: absolute;
  top: -0.5rem;
  left: 0;
  height: 1px;
  width: 100%;
  border-top: 1px dashed #cccccc;
}

.p-card__feature-demerit__item:not(:first-child) {
  margin-top: 1rem;
}

.p-card__button {
  margin-top: 0.5rem;
}

.p-card__button-text {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.36;
  text-align: center;
}

.p-card__button .c-button {
  margin-top: 0.125rem;
}

.p-search-result__body .p-card__title::before {
  content: none;
}

.p-search-result__body .p-card__title {
  margin-left: 0;
}

.p-category-ranking {
  background: linear-gradient(180deg, #44CAFF 0%, #1E9FF5 100%);
}

.p-category-ranking__inner {
  padding: 2.375rem 0.6875rem;
}

.p-comparison {
  background: linear-gradient(180deg, #FCF774 0%, #FFD8E3 100%);
}

.p-comparison__inner {
  padding-top: 4rem;
  padding-bottom: 2.375rem;
  padding-left: 0.6875rem;
  padding-right: 0.6875rem;
}

.p-comparison__table-wrapper {
  position: relative;
  padding: 1.6875rem 0.625rem 1rem;
  border-radius: 1rem;
  background: #FFF;
}

.p-comparison__title {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translate(-50%, -50%);
  width: 13.625rem;
}

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

.p-comparison__table-container {
  position: relative;
  touch-action: auto !important;
}

.p-comparison__table-container::-webkit-scrollbar {
  height: 0.3125rem;
}

.p-comparison__table-container::-webkit-scrollbar-track {
  background-color: transparent;
  border: 1px solid #d61b2d;
}

.p-comparison__table-container::-webkit-scrollbar-thumb {
  background-color: #d61b2d;
  border-radius: 0.25rem;
}

.p-comparison__table-container::-webkit-scrollbar-thumb:hover {
  background-color: #a91523;
}

.p-comparison__table {
  width: 100%;
  border-collapse: collapse;
}

.p-comparison__table-tr {
  height: auto;
  background: #FFF;
}

/* ランキング行のセル：下辺のみボーダー */
.p-comparison__table-td--rank {
  border: 0 !important;
  border-left: 2px solid #FFF !important;
  border-right: 2px solid #FFF !important;
}

.p-comparison__table-td--rank img {
  width: 2.625rem;
  height: 2.0625rem;
}

/* スクロール固定行の設定 */
.p-comparison__table-tr--sticky-1,
.p-comparison__table-tr--sticky-2 {
  position: sticky;
  z-index: 10;
}

.p-comparison__table-tr--sticky-1 {
  top: 0;
}

.p-comparison__table-tr--sticky-2 {
  top: 2.7rem;
}

/* 1番目の行のセルのパディング調整 */
.p-comparison__table-tr--sticky-1 .p-comparison__table-td {
  padding: 0.75rem 0 0.1rem;
  border-bottom: 0.625rem solid #E2E8F0;
  background: #FFF;
}

.p-comparison__table-td--blue {
  background: #3D7DC1;
}

.p-comparison__table-td--blue p {
  color: #fff;
}

.p-comparison__table-th {
  text-align: center;
}

.p-comparison__table-th:first-child {
  border-left: 2px solid #E12323;
  border-right: 2px solid #E12323;
}

.p-comparison__table-th:last-child {
  border-left: 2px solid #fae2bd;
  border-right: 2px solid #FFD8E3;
}

.p-comparison__table-th--label {
  font-size: 0.8625rem;
  line-height: 1.47;
  font-weight: 700;
}

.p-comparison__table-th:last-child .p-comparison__table-th__text {
  margin-left: 0.125rem;
  margin-right: 0;
}

.p-comparison__table-th__text {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-inline: auto;
  width: 5.1875rem;
  height: 1.0625rem;
  background: #d61b2d;
  border-radius: 0.1875rem 0.1875rem 0 0;
  color: #ffffff;
  font-size: 0.625rem;
  font-weight: 700;
  line-height: 1.2;
}

.p-comparison__table-th--crown.p-comparison__table-th--sticky {
  width: 2.75rem;
  background: transparent;
}

.p-comparison__table-th--crown.p-comparison__table-th--sticky::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #ffffff;
}

.p-comparison__table-body {
  position: relative;
}

.p-comparison__table-td {
  height: auto;
  font-size: 0.625rem;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  vertical-align: top;
  /* 上下中央揃えから上揃えに変更 */
  border-right: 1px solid #CFD6DB;
  border-left: 1px solid #CFD6DB;
  padding: 0.875rem 0.375rem;
  width: 6.875rem;
}

.p-comparison__table-td:first-child {
  border: 2px solid #E12323;
  border-top: 0;
  border-bottom: 0;
}

.p-comparison__table-td.p-comparison__table-td--first:first-child {
  border-top: 2px solid #E12323;
}

.p-comparison__table-td.p-comparison__table-td--last:first-child {
  border-bottom: 2px solid #E12323;
}

.p-comparison__table-td--image a {
  width: 100%;
}

.p-comparison__table-td--image a span {
  display: inline-block;
  margin-top: 0.34375rem;
  font-size: 0.75rem;
  line-height: 1.5;
  font-weight: 500;
  color: #1E9FF5;
  border-bottom: 1px solid #1E9FF5;
}

.p-comparison__table-td--crown {
  position: relative;
  text-align: right;
}

.p-comparison__table-td img {
  max-width: 2rem;
  width: 100%;
  height: 100%;
  margin-inline: auto;
  -o-object-fit: contain;
  object-fit: contain;
}

.p-comparison__table-td--rank img {
  width: 2.625rem;
  height: 2.0625rem;
}

.p-comparison__table-td--image img {
  width: 4.9375rem;
  height: 7.625rem;
}

.p-comparison__table-td.p-comparison__table-td--image img {
  max-width: initial;
}

.p-comparison__table-td--crown img {
  width: 2.0625rem;
  height: 1.5625rem;
  margin-left: auto;
  margin-right: 0;
}

.p-comparison__table-td--style img {
  width: 2.3125rem;
  height: 1.875rem;
}

.p-comparison__table-td--name {
  display: inline-block;
}

.p-comparison__table-td.p-comparison__table-td--button {
  border: 0;
}

.p-comparison__table-td--button a {
  position: relative;
  width: 100%;
  padding: 1rem 0.1rem;
  background: linear-gradient(to right, #3ECA00 0%, #C4E500 100%);
  box-shadow: 0px 0.125rem 0px #008F00;
  border-radius: 100vh;
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.3;
  overflow: hidden;
  letter-spacing: 0.09em;
}

.p-comparison__table-td--button a:hover {
  transform: translateY(2px);
  box-shadow: none;
}

/* 光のアニメーション */
.p-comparison__table-td--button a::after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 0;
  left: -150%;
  width: 200%;
  height: 200%;
  background: linear-gradient(310deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.1) 5%, rgba(255, 255, 255, 0.7) 70%, rgb(255, 255, 255) 80%, rgba(255, 255, 255, 0) 100%);
  animation: shiny-slide 3s ease-in-out infinite;
}

.p-comparison__table-td__text {
  display: block;
  margin-top: 0.4375rem;
  font-weight: 600;
  line-height: 1.5;
  text-align: center;
}

.p-comparison__table-td .p-comparison__table-td__text p {
  font-size: 0.75rem;
  line-height: 1.33;
}

.p-comparison__table-th--sticky,
.p-comparison__table-td--sticky {
  position: sticky;
  top: 0;
  left: 0;
  z-index: 1;
  background: #ffffff;
}

.p-comparison__table-th--sticky+.p-comparison__table-th--sticky,
.p-comparison__table-td--sticky+.p-comparison__table-td--sticky {
  position: sticky;
  top: 0;
  left: 2.75rem;
}

.p-comparison__table-container.is-scrolled-end {
  border-right: 1px solid #CFD6DB;
}

.p-footer-link {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  max-width: 38.75rem;
  margin-top: 0.9375rem;
  margin-inline: auto;
  z-index: 9999;
}

@media (min-width: 620px) {
  .p-footer-link {
    width: 620px;
  }
}

.p-footer-link__content {
  background: #3D7DC1;
}

.p-footer-link__list {
  display: flex;
  height: 4.5625rem;
}

.p-footer-link__item {
  position: relative;
  width: 25%;
}

.p-footer-link__item:not(:first-child) {
  border-left: 1px solid #ffffff;
}

.p-footer-link__item a {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 0.5rem;
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1.1666666667;
  letter-spacing: 0.06em;
  text-align: center;
  z-index: 10
}

.p-footer-link__item a::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.17);
  background: rgba(0, 0, 0, 0.23);
  transition: ease-in-out, 0.3s;
  opacity: 0;
  z-index: -1;
}

.p-footer-link__item a:hover::after {
  opacity: 1;
}

@media screen and (max-width: 767px) {
  .p-footer-link__item a:hover::after {
    pointer-events: none;
  }
}

.p-footer-link__item a::before {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.p-footer-link__item:first-child a::before {
  top: 1.375rem;
  width: 1.625rem;
  height: 1rem;
  background: url(../images/icon/pagetop.svg) center/contain no-repeat;
}

.p-footer-link__item:nth-of-type(2) a::before {
  top: 0.8125rem;
  width: 1.625rem;
  height: 1.5625rem;
  background: url(../images/icon/comparative_table.svg) center/contain no-repeat;
}

.p-footer-link__item:nth-of-type(3) a::before {
  top: 0.9375rem;
  width: 1.5625rem;
  height: 1.3125rem;
  background: url(../images/icon/ranking.svg) center/contain no-repeat;
}

.p-footer-link__item:last-child a::before {
  top: 0.6875rem;
  width: 1.75rem;
  height: 1.75rem;
  background: url(../images/icon/summary.svg) center/contain no-repeat;
}

.p-footer__inner {
  margin-inline: auto;
  padding-top: 1.75rem;
  padding-bottom: 5.375rem;
}

.p-footer__list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.0625rem;
}

.p-footer__item span {
  color: #808080;
  font-size: 0.625rem;
  font-weight: 400;
  line-height: 1.2;
  border-bottom: 1px solid #808080;
  transition: ease-in-out, 0.3s;
}

.p-footer__item span:hover {
  color: #000000;
}

@media screen and (max-width: 767px) {
  .p-footer__item span:hover {
    pointer-events: none;
  }
}

.p-general-ranking {
  background: #BFE3F9;
}


.p-general-ranking__title {
  position: relative;
  color: #fff;
  background-color: #3D7DC1;
  padding: 0.625rem 0.8125rem;
  text-align: center;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.2222222222;
  border-radius: 5px 5px 0 0;
}

.p-general-ranking__inner {
  padding: 2.5rem 0.9375rem;
}

.p-general-ranking__list {
  padding-bottom: 0.25rem;
}

.p-general-ranking__list.p-general-ranking__list--top3 {
  margin-top: 1.25rem;
}

.p-general-ranking__item {
  position: relative;
  border-top: 1px solid #3D7DC1;
  background: #ffffff;
  border-radius: 0.375rem;
  padding-bottom: 2.5rem;
}

.p-general-ranking__item:not(:first-child) {
  margin-top: 2.5rem;
}

.p-general-ranking__item-container {
  padding-inline: 0.9375rem;
}


.p-general-ranking__item-img {
  text-align: center;
  margin-top: 0.625rem;
}

.p-general-ranking__item-img img {
  max-width: 12.75rem;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}


.p-general-ranking__item-img a:hover {
  opacity: 0.7;
}


.p-general-ranking__item-title {
  position: relative;
  text-align: center;
  color: #3D7DC1;
  font-size: 1.0625rem;
  font-weight: 700;
  line-height: 1.2352941176;
}

.p-general-ranking__item-title a {
  border-bottom: 2px solid #3D7DC1;
}

.p-general-ranking__item-title::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -2.5rem;
  transform: translateY(-50%);
}

.p-general-ranking__item-title a:hover {
  opacity: 0.7;
}

.p-general-ranking__item-text {
  margin-top: 0.625rem;
  font-size: 0.875rem;
  line-height: 1.5833333333;
  border-top: 1px solid #3D7DC1;
  padding-top: 0.625rem;
}

.p-general-ranking__item-button {
  margin-top: 0.625rem;
}

.p-mv img {
  max-width: 100%;
  width: 100%;
  height: auto;
  -o-object-fit: contain;
  object-fit: contain;
  display: block;
}

.p-merit__inner {
  padding-top: 1.75rem;
  padding-bottom: 2.0625rem;
}

.p-merit__contents {
  margin-top: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.p-merit__text {
  font-size: 0.9375rem;
  line-height: 1.8;
}

.p-merit__image img {
  width: 100%;
  height: auto;
}

.p-pc-bg {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: -9999;
  width: 100%;
  min-height: 100svh;
  background: url(../images/common/bg_pc.png) center/cover no-repeat;
}

/* セクション背景（方眼） */
.p-point {
  background: url(../images/common/bg_point.png) center/cover no-repeat;
  width: 100%;
  padding-bottom: 1rem;
}

.p-point__inner {
  padding-top: 1.3125rem;
  padding-bottom: 2.3125rem;
}

.p-point__contents {
  margin-top: 1.25rem;
}

.p-point__text {
  font-size: 0.9375rem;
  line-height: 1.8;
}

.p-point__note {
  margin-top: 1.5625rem;
}

.p-point__card+.p-point__card {
  margin-top: 1.25rem;
}

/* POINTカード -------------------------------------------------- */
.p-pointCard {
  position: relative;
  background: #fff url(../images/common/bg_note.png) repeat;
  border-radius: 1rem;
  box-shadow: 0 0.25rem 0.375rem 0 #44CAFF;
  border: 1px solid #F4F4F4;
  overflow: hidden;
}

.p-pointCard__inner {
  position: relative;
  padding: 0.625rem 1.5rem 1.5625rem;
}

/* 右上の縦書きラベル + 鉛筆 */
.p-pointCard__label {
  position: absolute;
  top: 1rem;
  right: 1.4rem;
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  display: flex;
  align-items: flex-start;
  gap: 0.375rem;
  background: linear-gradient(90deg, #44CAFF 0%, #1E9FF5 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  /* Safari対応 */
  background-clip: text;
  color: transparent;
}


.p-pointCard__label::after {
  content: "";
  width: 1.1875rem;
  height: 1.1875rem;
  background: url(../images/icon/pencil_blue.svg) no-repeat center/contain;
}

.p-pointCard__number {
  font-weight: 700;
  font-size: 2.125rem;
  line-height: 1.12;
  background: linear-gradient(90deg, #44CAFF 0%, #1E9FF5 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  /* Safari対応 */
  background-clip: text;
  color: transparent;
}

/* 見出し */
.p-pointCard__title {
  margin-top: 0.4375rem;
  font-weight: 700;
  font-size: 1.125rem;
  line-height: 1.56;
  padding-right: 1rem;
}

/* 画像 */
.p-pointCard__image {
  margin-top: 1.0625rem;
  margin-bottom: 0.8125rem;
}

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

/* テキスト（既存の p-causeCard__text を流用） */
.p-point .p-causeCard__text {
  font-size: 0.75rem;
  line-height: 1.3125rem;
  font-weight: 400;
}

.p-causeCard__text+.p-causeCard__text {
  margin-top: 1.2rem;
}

.p-popular-one {
  @media (max-width: 1430px) {
    display: none;
  }
}

.p-popular-one__container {
  max-width: 15.25rem;
  position: sticky;
  top: 69px;
  left: 0;
  background: linear-gradient(180deg, #44CAFF 0%, #1E9FF5 100%);
  border-radius: 0.375rem;
  box-shadow: 0 0.25rem 0.25rem 0 #B4EAFF;
}

.p-popular-one.p-popular-one__top{
  display: block;
}

.p-popular-one__top{
  margin-top: 2rem;
}

.p-popular-one__inner{
  background: linear-gradient(180deg, #44CAFF 0%, #1E9FF5 100%);
  border-radius: 0.375rem;
  box-shadow: 0 0.25rem 0.25rem 0 #B4EAFF;
}


.p-popular-one__inner {
  padding: 0.6875rem 0.625rem 0.625rem;
}

.p-popular-one h2 {
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  line-height: 1.37;
}

.p-popular-one .c-title::before {
  top: 75%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 14.25rem;
  height: 2.625rem;
  background: url(../images/summary/bg_title.png) center/contain no-repeat;
}

.p-popular-one__content {
  margin-top: 0.6875rem;
  padding: 0.6875rem 0.75rem 0.875rem;
  background: #ffffff;
  border-radius: 0.375rem;
}

.p-popular-one__img a:hover {
  opacity: 0.7;
}

.p-popular-one__img {
  width: 100%;
  height: auto;
  text-align: center;
}

.p-popular-one__img img {
  width: 5.4375rem;
  height: auto;
}

.p-popular-one__title {
  text-align: center;
}

.p-popular-one__title .c-title {
  font-size: 0.75rem;
  color: #193360;
}

.p-popular-one__title .c-title span {
  color: #3D7DC1;
}

.p-popular-one__subtitle {
  display: inline-block;
  position: relative;
  padding-left: 2.25rem;
}

.p-popular-one__subtitle::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 1.8125rem;
  height: 1.4375rem;
  background: url(../images/icon/rank_1.svg) center/contain no-repeat;
}

.p-popular-one__subtitle a {
  padding-top: 0.3125rem;
  padding-bottom: 0.3125rem;
  border-bottom: 1px solid #3D7DC1;
  color: #1FA0F6;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1;
  font-family: var(--font-en);
}

.p-popular-one__subtitle a:hover {
  opacity: 0.7;
}

.p-popular-one__text {
  margin-top: 0.5625rem;
  font-size: 0.58rem;
  line-height: 1.75;
}

.p-popular-one__top .p-popular-one__text {
  font-size: 0.9375rem;
}

.p-popular-one__button {
  margin-top: 0.5rem;
}
.p-popular-one__button.p-popular-one__button--top {
  margin-top: 1rem;
}

.p-popular-one__button a.c-button {
  margin-top: 0.2rem;
}

.p-popular-one__button .c-button span {
  padding-top: 1rem;
  padding-bottom: 1rem;
  font-size: 0.85rem;
}

.p-popular-one__button.p-popular-one__button--top .c-button span {
  font-size: 1.25rem;
}

.p-popular-one__button .c-button span::before {
  width: 0.625rem;
  height: 0.625rem;
}

.c-sideLink::before {
  content: "▶";
  margin-right: 0.25em;
}

/* Section Title */
.c-sectionTitle {
  position: relative;
  text-align: center;
}

.c-sectionTitle__label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: .10em;
  text-transform: uppercase;
  color: #44CAFF;
}

.c-sectionTitle__title {
  margin-top: 0.5rem;
  font-weight: 700;
  font-size: 1.3125rem;
  line-height: 1.57;
}

.c-sectionTitle__title span {
  font-weight: 700;
  color: #44CAFF;
}

.c-sectionTitle--red .c-sectionTitle__title span,
.c-sectionTitle--red .c-sectionTitle__label {
  color: #B04749;
  font-weight: 700;
}

/* セクションタイトルの左右装飾（画像版） */
.c-sectionTitle::before,
.c-sectionTitle::after {
  content: "";
  position: absolute;
  bottom: 0;
  width: 2rem;
  height: 2rem;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.c-sectionTitle::before {
  left: 1.75rem;
  background-image: url(../images/icon/section-deco_left_blue.svg);
}

.c-sectionTitle::after {
  right: 1.75rem;
  background-image: url(../images/icon/section-deco_right_blue.svg);
}

/* 赤色バリエーション */
.c-sectionTitle--red::before {
  background-image: url(../images/icon/section-deco_left_red.svg);
}

.c-sectionTitle--red::after {
  background-image: url(../images/icon/section-deco_right_red.svg);
}

.p-search-result {
  background: #d61b2d;
}

.p-search-result__inner {
  padding-top: 0.9375rem;
  padding-bottom: 1.5625rem;
}

.p-search-result__title {
  color: #ffffff;
  font-weight: 700;
  letter-spacing: 0.09em;
  line-height: 1.1875;
  text-align: center;
}

.p-search-result__num {
  color: #ffffff;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  line-height: 1.2083333333;
}

.p-search-result__body {
  margin-top: 0.9375rem;
}

.p-search__inner {
  margin-inline: auto;
  padding-top: 0.375rem;
  padding-bottom: 1.125rem;
}

.p-search_date__meta {
  /*   display: flex;
  justify-content: space-between; */
  padding-left: 1.25rem;
  padding-right: 1.1875rem;
}

.p-search__date {
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 1.25;
}

.p-search__pr {
  /*   font-size: 0.75rem; */
  font-weight: 400;
  line-height: 1.25;
  font-size: 12px;
  text-align: right
}

.p-search__title {
  margin-top: 0.6875rem;
  padding-inline: 1.25rem;
  text-align: center;
}

.p-search__title img {
  max-width: 19.125rem;
  aspect-ratio: 306/40;
  -o-object-fit: contain;
  object-fit: contain;
  margin-inline: auto;
}

.p-search__category {
  margin-top: 0.4375rem;
  padding-inline: 0.625rem;
}

.p-search-form {
  margin: 0 auto;
  text-align: center;
  font-family: sans-serif;
  color: #d61b2d;
}

@media (max-width: 480px) {
  .p-search-form {
    max-width: 100%;
  }
}

.p-search-form__title {
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.p-search-form__body {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.p-search-form__select-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3125rem;
  width: 100%;
}

.p-search-form__select-wrapper {
  position: relative;
  width: calc((100% - 0.625rem) / 3);
  font-weight: 700;
  cursor: pointer;
}

.p-search-form__select-wrapper:nth-of-type(4),
.p-search-form__select-wrapper:last-child {
  width: calc((100% - 0.3125rem) / 2);
}

.p-search-form__select-wrapper::before {
  content: "";
  position: absolute;
  top: 51%;
  left: 0.5rem;
  transform: translateY(-50%);
}

.p-search-form__select-wrapper:first-child::before {
  width: 0.6875rem;
  height: 0.6875rem;
  background: url(../images/search/person.svg) center/contain no-repeat;
}

.p-search-form__select-wrapper:nth-of-type(2)::before {
  width: 0.625rem;
  height: 0.75rem;
  background: url(../images/search/flag.svg) center/contain no-repeat;
}

.p-search-form__select-wrapper:nth-of-type(3)::before {
  width: 1rem;
  height: 0.5625rem;
  background: url(../images/search/price.svg) center/contain no-repeat;
}

.p-search-form__select-wrapper:nth-of-type(4)::before {
  width: 1rem;
  height: 0.5rem;
  background: url(../images/search/programming_language.svg) center/contain no-repeat;
}

.p-search-form__select-wrapper:last-child::before {
  width: 0.5rem;
  height: 0.875rem;
  background: url(../images/search/light.svg) center/contain no-repeat;
}

.p-search-form__select-wrapper:nth-of-type(3) .custom-select-trigger {
  padding-left: 1.5rem;
}

.p-search-form__select-wrapper:nth-of-type(4) .custom-select-trigger {
  padding-left: 1.75rem;
}

.p-search-form__select:focus {
  outline: none;
}

.p-search-form__button-wrapper {
  width: 100%;
  max-width: 17.375rem;
  margin-top: 0.625rem;
  margin-inline: auto;
}

.p-search-form__button::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: -150%;
  width: 200%;
  height: 500%;
  background: linear-gradient(310deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.1) 5%, rgba(255, 255, 255, 0.7) 70%, rgb(255, 255, 255) 80%, rgba(255, 255, 255, 0) 100%);
  animation: shiny-slide 3s ease-in-out infinite;
  will-change: transform, box-shadow;
}

.p-search-form__button {
  position: relative;
  width: 100%;
  padding-top: 1rem;
  padding-bottom: 1rem;
  border: none;
  border-radius: 100vh;
  background: #d61b2d;
  color: #ffffff;
  font-weight: 700;
  letter-spacing: 0.48em;
  cursor: pointer;
  box-shadow: 0px 0.3rem 0px #a0161f;
  overflow: hidden;
  transition: ease-in-out, 0.3s;
}

.p-search-form__button::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: -150%;
  width: 200%;
  background: linear-gradient(310deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.1) 5%, rgba(255, 255, 255, 0.7) 70%, rgb(255, 255, 255) 80%, rgba(255, 255, 255, 0) 100%);
  animation: shiny-slide 3s ease-in-out infinite;
  will-change: transform, box-shadow;
}

.p-search-form__button:hover {
  transform: translateY(0.3rem);
  box-shadow: none;
}

.custom-select {
  position: relative;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.custom-select-trigger {
  display: block;
  width: 100%;
  padding-top: 0.625rem;
  padding-bottom: 0.625rem;
  padding-left: 1.25rem;
  border: 1px solid #d61b2d;
  border-radius: 0.1875rem;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  color: #d61b2d;
  font-size: 0.875rem;
  line-height: 1.1875;
  text-align: left;
  cursor: pointer;
  position: relative;
}

.custom-select-trigger::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0.5rem;
  width: 0.5rem;
  height: 0.5rem;
  border-top: 2px solid #d61b2d;
  border-right: 2px solid #d61b2d;
  transform: translateY(-50%) rotate(135deg);
  transition: transform 0.3s;
}

.custom-select.opened .custom-select-trigger::after {
  transform: translateY(-50%) rotate(-45deg);
}

.custom-options {
  position: absolute;
  top: 110%;
  left: 0;
  right: 0;
  background: #ffffff;
  border: 1px solid #d61b2d;
  border-radius: 0.1875rem;
  box-shadow: 0 0.25rem 0.625rem rgba(214, 27, 45, 0.15);
  opacity: 0;
  transform: translateY(-10px);
  pointer-events: none;
  transition: all 0.3s ease;
  z-index: 99999;
}

.custom-select.opened .custom-options {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.custom-option {
  padding: 0.625rem 0.1875rem;
  color: #d61b2d;
  font-size: 0.875rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s ease;
}

.custom-option:hover,
.custom-option.selected {
  background: rgba(214, 27, 45, 0.05);
}

.custom-options .custom-option[data-value=""] {
  display: none;
}

.p-seminar {
  background: linear-gradient(to bottom, #484db8 9%, #593580 25%, #672252 39%, #71132e 51%, #790814 62%, #7e0205 70%, #800000 78%);
}

.p-seminar__inner {
  padding-top: 1.3125rem;
  padding-bottom: 0.75rem;
}

.p-seminar__content {
  margin-top: 1.3125rem;
  padding-top: 0.6875rem;
  padding-bottom: 1rem;
  background: #ffffff;
  border-radius: 0.375rem;
}

.p-seminar__img {
  padding-inline: 0.8125rem;
}

.p-seminar__img img {
  width: 100%;
  aspect-ratio: 329/151;
  -o-object-fit: contain;
  object-fit: contain;
}

.p-seminar__swiper {
  padding-block: 0.9375rem;
  padding-left: 0.8125rem;
  padding-right: 0;
}

.p-seminar__slide {
  padding-top: 1.3125rem;
  padding-inline: 0.875rem;
  padding-bottom: 0.9375rem;
  border-radius: 0.375rem;
  box-shadow: 3px 3px 9px 4px rgba(0, 0, 0, 0.08);
  background: #ffffff;
}

.p-seminar__slide-header {
  display: flex;
  gap: 1.4375rem;
  padding-left: 0.75rem;
}

.p-seminar__slide-badge {
  position: relative;
  width: 2.5rem;
  text-align: center;
  z-index: 1;
}

.p-seminar__slide-badge::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 3.8125rem;
  height: 3.8125rem;
  background: #d61b2d;
  border-radius: 100vh;
  z-index: -1;
}

.p-seminar__slide-point {
  display: block;
  color: #ffffff;
  font-size: 0.625rem;
  font-weight: 700;
  line-height: 1;
}

.p-seminar__slide-number {
  display: block;
  color: #ffffff;
  font-size: 1.9375rem;
  font-weight: 700;
  line-height: 1;
}

.p-seminar__slide-title {
  padding-top: 0.1875rem;
  color: #d61b2d;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
}

.p-seminar__slide-list {
  margin-top: 1.25rem;
}

.p-seminar__slide-item {
  padding-top: 0.5rem;
  padding-bottom: 0.5625rem;
  background: rgba(214, 27, 45, 0.1);
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1.1666666667;
  text-align: center;
}

.p-seminar__slide-item:not(:first-child) {
  margin-top: 0.5625rem;
}

.p-seminar__slide-text {
  margin-top: 0.875rem;
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 1.4166666667;
}

.p-seminar__button {
  margin-top: 0.5625rem;
  padding-inline: 0.8125rem;
}

.p-sidebar {
  min-width: 10rem;

}

@media (max-width: 1430px) {
  .p-sidebar {
    display: none;
  }
}

.p-sidebar__list {
  position: sticky;
  top: 72px;
  right: 0;
}

.p-sidebar__item:not(:first-child) {
  margin-top: 15px;
}

.p-sidebar__item a {
  color: #777777;
  font-size: 1.25rem;
  font-size: 0.8125rem;
  font-weight: 700;
  line-height: 1.2;
}

.p-sidebar__item a:hover {
  color: #1FA0F6;
}

.p-sidebar__item.is-active a {
  color: #1FA0F6;
}

.p-summary__inner {
  padding-top: 1.875rem;
}

.p-summary__contents {
  margin-top: 1.25rem;
}

.p-summary__text {
  font-size: 0.9375rem;
  line-height: 1.8;
}

.p-summary__note {
  margin-top: 1.25rem;
}

/* CHECK POINT カード */
.p-summary__card {
  position: relative;
  background: #ffffff url(../images/common/bg_note.png) repeat;
  border-radius: 1rem;
  box-shadow: 0 0.25rem 0.375rem 0 #44CAFF;
  border: 1px solid #f0f0f0;
  padding: 1.1875rem 1.6875rem 1.8125rem;
}

.p-summary__cardInner {
  position: relative;
  padding-right: 2.4rem;
}

/* 右上の縦書きラベル "CHECK POINT" */
.p-summary__label {
  position: absolute;
  top: 0;
  right: 0;
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  text-transform: uppercase;
  display: flex;
  gap: 0.3125rem;
  background: linear-gradient(90deg, #44CAFF 0%, #1E9FF5 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  /* Safari対応 */
  background-clip: text;
  color: transparent;
}

/* 鉛筆アイコン */
.p-summary__label::after {
  content: "";
  display: block;
  width: 1.1875rem;
  height: 1.1875rem;
  background: url(../images/icon/pencil_blue.svg) no-repeat center/contain;
}

/* チェックポイントリスト */
.p-summary__cardList {
  list-style: none;
  padding: 0;
  margin: 0;
}

.p-summary__cardItem {
  position: relative;
  margin: 1.5rem 0;
}

.p-summary__cardItem:first-child {
  margin-top: 0;
}

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

/* タイトル */
.p-summary__cardTitle {
  font-weight: 700;
  font-size: 1.0625rem;
  line-height: 1.59;
  border-bottom: 1px solid #55BFF8;
  padding-bottom: 0.25rem;
  display: block;
  background: linear-gradient(90deg, #44CAFF 0%, #1E9FF5 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  /* Safari対応 */
  background-clip: text;
  color: transparent;
}

/* 説明テキスト */
.p-summary__cardText {
  margin-top: 0.4375rem;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.93;
}

.p-summary__arrow {
  margin-top: 1.875rem;
  text-align: center;
}

.p-summary__arrow img {
  width: 5.25rem;
}

.p-summary__answer {
  margin-top: 1rem;
  text-align: center;
}

.p-summary__answerTitle {
  font-size: 1rem;
  line-height: 1.69;
  font-weight: 500;
}

.p-summary__answerTitle span {
  color: #55BFF8;
  font-size: 2rem;
  line-height: 1.84;
  font-weight: 700;
}

.p-summary__answerImage {
  margin-top: 0.75rem;
  position: relative;
  display: flex;
  justify-content: center;
}

.p-summary__answerImage img {
  display: block;
  width: 10.625rem;
  height: auto;
}

.p-summary__sparkle {
  position: absolute;
  z-index: 1;
}

.p-summary__sparkle img {
  width: 2.5625rem;
  height: auto;
}

.p-summary__sparkle--topRight {
  top: -2.4rem;
  right: 2.4rem;
}

.p-summary__sparkle--bottomLeft {
  bottom: -2.4rem;
  left: 2.4rem;
}

.p-tab__list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4375rem;
  border-bottom: 1px solid #d61b2d;
}

.p-tab__item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 1.5rem;
  border-radius: 0.1875rem 0.1875rem 0 0;
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid transparent;
  color: #ffffff;
  font-size: 0.875rem;
  font-weight: 700;
  cursor: pointer;
  transition: ease-in-out, 0.3s;
}

.p-tab__item:hover {
  background: rgba(214, 27, 45, 0.4);
}

@media screen and (max-width: 767px) {
  .p-tab__item:hover {
    pointer-events: none;
  }
}

.p-tab__item.is-active {
  background: #d61b2d;
  cursor: default;
}

.p-tab__contents {
  margin-top: 0.875rem;
}

.p-tab__content {
  display: none;
}

.p-tab__content:first-child {
  display: block;
}

.p-try__inner {
  padding-top: 2.5rem;
}

.p-try__contents {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.p-try__text {
  margin-top: 2.5rem;
  font-size: 0.9375rem;
  line-height: 1.8;
}

.p-try__image {
  width: 100%;
}

.p-try__image a {
  display: block;
}

.p-try__image img {
  width: 100%;
  height: auto;
}

.u-color-accent {
  color: #3D7DC1;
  font-weight: 700;
}

.u-md-block {
  display: none;
}

@media screen and (max-width: 767px) {
  .u-md-block {
    display: block;
  }
}

.u-md-none {
  display: none;
}

.u-sm-block {
  display: none;
}

@media screen and (max-width: 480px) {
  .u-sm-block {
    display: block;
  }
}

/*# sourceMappingURL=style.css.map */

.p-card__img a {
  width: 100%;
}

/* 任意売却事例セクション */
.p-debt-case {
  background: linear-gradient(135deg, #E8F4FD 0%, #fff 100%);
  padding: 1rem 0;
  position: relative;
}

.p-debt-case__inner.l-inner {
  margin: 0;
  padding: 0;
}

.p-debt-case__swiper {
  position: relative;
  margin: 0 auto;
  overflow: hidden;
}

.debt-case-swiper {
  overflow: hidden;
}

.swiper-slide.p-debt-case__swiper-slide {
  width: 15.9375rem;
}

.p-debt-case__profile {
  border-radius: 0.625rem;
  background-color: #fff;
  border: 1px solid #00AFE5;
  padding-bottom: 1.25rem;
  margin: 0;
  height: auto;
  transition: all 0.3s ease;
}

.p-debt-case__body {
  padding: 0 1.25rem;
}


.p-debt-case__title {
  border-radius: 0.625rem 0.625rem 0 0;
  font-size: 1.25rem;
  font-weight: 700;
  color: #193360;
  background-color: #96D2E6;
  padding: 0.5rem 0;
  text-align: center;
}

.p-debt-case__info {
  display: flex;
  align-items: center;
  margin-top: 0.625rem;
}

.p-debt-case__profile-icon {
  margin-right: 1rem;
  width: 4.625rem;
  height: 100%;
  align-items: center;
  justify-content: center;
}

.p-debt-case__profile-info p {
  margin: 0;
  font-size: 0.875rem;
  color: #193360;
  font-weight: 700;
  line-height: 1;
  padding: 0.3125rem 0.625rem;
  background-color: #CBE9F3;
  border-radius: 3.125rem;
}

.p-debt-case__profile-info p:first-child {
  margin-bottom: 0.3125rem;

}

.p-debt-case__debt-overview {
  margin-top: 0.625rem;
  text-align: center;
}

.p-debt-case__amount p {
  font-size: 0.875rem;
  color: #193360;
  font-weight: 700;
  line-height: 1;
}

.p-debt-case__amount span {
  font-size: 0.875rem;
  color: #E12323;
  font-weight: 700;
  line-height: 1;
}

.p-debt-case__amount .big-number {
  font-size: 1.5625rem;
}

.p-debt-case__amount .big-text {
  font-size: 1rem;
}


.p-debt-case__amount--new {
  position: relative;
}

.p-debt-case__amount.p-debt-case__amount--new span {
  color: #3ECA00;
  margin-left: 0.75rem;
}

.p-debt-case__amount--new::before {
  content: "";
  position: absolute;
  top: 5px;
  left: 0.2rem;
  width: 1.25rem;
  height: 1.25rem;
  background: url(../images/icon/arrow.svg) center/contain no-repeat;
  transform: rotate(-90deg);
}

.p-debt-case__amount--new.p-debt-case__amount--new-2::before {
  top: 0;
}

.p-debt-case__debt-type {
  color: #193360;
  font-size: 1rem;
  font-weight: 500;
  border-top: 2px dashed #193360;
  margin-top: 0.3125rem;
  padding-top: 0.3125rem;
}

.p-debt-case__repayment {
  background-color: #fff;
  border: 1px solid #00AFE5;
  padding: 1.25rem;
  border-radius: 0.625rem;
  text-align: center;
  margin-top: 0.625rem;
}

.p-debt-case__procedure {
  text-align: left;
  color: #193360;
  font-weight: 500;
  line-height: 1.5;
}

.p-debt-case__procedure p {
  margin-top: 0.3125rem;
}

.p-debt-case__procedure ul {
  margin-top: 0.3125rem;
  list-style: disc;
  padding: 0 1.25rem;
}

.p-debt-case__procedure-title {
  color: #00AFE5;
  font-weight: 700;
  display: flex;
  align-items: center;
}

.p-debt-case__procedure p::after {
  content: "";
  height: 1px;
  /* 線の高さ */
  flex-grow: 1;
  /* 横幅いっぱい */
  background-color: #00AFE5;
  margin-left: 0.625rem;
  /* 文字との余白 */
}

.p-debt-case__procedure.p-debt-case__procedure--comment {
  margin-top: 2rem;
}

.p-debt-case__title-sub {
  font-size: 1rem;
  color: #193360;
  font-weight: 700;
  line-height: 1;
  padding: 0.3125rem 0.625rem;
  background-color: #CBE9F3;
  border-radius: 3.125rem;
  display: inline-block;
}

.p-debt-case__repayment-comparison {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.625rem;

}

.p-debt-case__arrow {
  font-size: 1.25rem;
  color: #3D7DC1;
  margin: 0 1rem;
  font-weight: 700;
}

.p-debt-case__repayment-period {
  text-align: center;
  color: #193360;
  font-size: 1rem;
  font-weight: 600;
  margin-top: 0.625rem;
}

.p-debt-case__features ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.p-debt-case__features li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
  color: #495057;
  line-height: 1.5;
}

.p-debt-case__features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #27ae60;
  font-weight: 700;
}

/* Swiper Navigation for Debt Case */

.debt-case-prev,
.debt-case-next {
  top: 18%;
  width: 1.5625rem;
  height: 1.5625rem;
  border-radius: 100vh;
  background: #193360;
  border: 1px solid transparent;
  transition: ease-in-out, 0.3s;
}

.debt-case-prev::before,
.debt-case-next::before {
  content: "";
  position: absolute;
  top: 50%;
  width: 0.625rem;
  height: 0.625rem;
  transition: ease-in-out, 0.3s;
}

.debt-case-prev::before {
  left: 57%;
  transform: translate(-50%, -50%) rotate(-135deg);
  border-top: solid 2px #ffffff;
  border-right: solid 2px #ffffff;
}

.debt-case-next::before {
  left: 43%;
  transform: translate(-50%, -50%) rotate(45deg);
  border-top: solid 2px #ffffff;
  border-right: solid 2px #ffffff;
}

.debt-case-prev:hover,
.debt-case-next:hover {
  background: #ffffff;
  border: 1px solid #193360;
}

.debt-case-prev:hover::before,
.debt-case-next:hover::before {
  border-color: #193360;
}


/* よくある質問セクション */
.p-faq {
  background: linear-gradient(135deg, #E8F4FD 0%, #D1E9FB 100%);
  padding: 1.25rem 0;
  position: relative;
  margin-top: 5rem;
}

.p-faq::before {
  content: "";
  position: absolute;
  top: -3rem;
  left: 50%;
  transform: translateX(-50%);
  width: 18.125rem;
  height: 3rem;
  background: url(../images/summary/faq_ilust.png) center/contain no-repeat;
}

.p-faq__inner {
  max-width: 1200px;
  margin: 0 auto;
}

/* タイトル部分 */
.c_content {
  text-align: center;
}

.c_content__title {
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
  display: inline-block;
}

.c_content__title::before {
  content: "";
  position: absolute;
  bottom: -2rem;
  left: 50%;
  transform: translateX(-50%);
  width: 15.8125rem;
  height: 100%;
  background: url(../images/icon/faq_bubble.svg) center/contain no-repeat;
}

.c_content__title-sub {
  font-size: 3.125rem;
  font-weight: 700;
  color: #ffffff;
  opacity: 0.5;
}

.c_content__title-main {
  font-size: 1.25rem;
  font-weight: 700;
  color: #3D7DC1;
  margin-top: -1.5rem;
  z-index: 10;
  position: relative;
}



/* FAQリスト */
.p-faq__list {
  max-width: 800px;
  margin: 0 auto;
}

.p-faq__item {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(150, 210, 230, 0.8);
  margin-bottom: 1.5rem;
  overflow: hidden;
  transition: all 0.3s ease;
}

.p-faq__item:hover {
  transform: translateY(-2px);
}

.p-faq__question {
  display: flex;
  align-items: center;
  padding: 1.5rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.p-faq__question-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: #3D7DC1;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.125rem;
  margin-right: 1rem;
  flex-shrink: 0;
}

.p-faq__question-text {
  flex: 1;
  font-size: 1.125rem;
  font-weight: 600;
  color: #3D7DC1;
  line-height: 1.4;
}

.p-faq__toggle-icon {
  width: 1.25rem;
  height: 1.25rem;
  color: #3D7DC1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.p-faq__item.is-active .p-faq__toggle-icon {
  color: #3D7DC1;
  transform: rotate(90deg);
}

/* 回答部分 */
.p-faq__answer {
  max-height: 0;
  margin: 0 1.5rem;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.p-faq__item.is-active .p-faq__answer {
  border-top: 1px dashed #193360;
}

.p-faq__item.is-active .p-faq__answer {
  max-height: 500px;
}

.p-faq__answer-content {
  padding: 1.5rem 0;
  display: flex;
  align-items: flex-start;
}

.p-faq__answer-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  border: 1px solid #3D7DC1;
  background: #ffffff;
  color: #3D7DC1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.125rem;
  margin-right: 1rem;
  flex-shrink: 0;
}

.p-faq__answer-text {
  flex: 1;
  font-size: 1rem;
  color: #495057;
  line-height: 1.6;
  margin: 0;
}

.p-faq__answer-text span {
  font-weight: 700;
  color: #3D7DC1;
}

.p-header__inner {
  margin-top: 0.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.p-header__text {
  font-family: var(--font-en);
  font-size: 0.75rem;
}

/* 見出しセルの背景とボーダーを調整 */
.p-comparison__table-tr--titleBack {
  background: linear-gradient(90deg, #FCF774 0%, #FFD8E3 100.01%);
  border: 0;
  /* 見出しセルのボーダーを消す */
  position: relative;
  overflow: hidden;
}

.p-comparison__table-tr--titleBack th {
  border: 1px solid transparent;
}

/* 見出しセル（成分バランス、続けやすさなど）のボーダー調整 */
.p-comparison__table th,
.p-comparison__table td {
  border: 1px solid #E2E8F0;
  border-collapse: collapse;
}

/* 見出しセルの下にのみボーダーを表示 */
.p-comparison__table th::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: #E2E8F0;
}

/* 3つのポイントリストのスタイル */
.p-summary__answerList {
  margin-top: 2rem;
  text-align: center;
}

.p-summary__answerItem {
  position: relative;
}

.p-summary__answerItem+.p-summary__answerItem {
  margin-top: 1rem;
}

.p-summary__answerItem-number {
  font-size: 2.125rem;
  font-weight: 700;
  line-height: 1.12;
  display: inline-block;
  background: linear-gradient(90deg, #44CAFF 0%, #1E9FF5 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  /* Safari対応 */
  background-clip: text;
  color: transparent;
}

.p-summary__answerItem-text {
  margin-top: 0.3125rem;
  position: relative;
  font-size: 1.0625rem;
  font-weight: 500;
  line-height: 1.59;
}

.p-summary__answerItem-text::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 1.1875rem;
  height: 2.0625rem;
  background-image: url('../images/icon/kakko-left.svg');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.p-summary__answerItem-text::after {
  content: '';
  position: absolute;
  right: 0;
  bottom: 0;
  width: 1.1875rem;
  height: 2.0625rem;
  background-image: url('../images/icon/kakko-right.svg');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.p-summary__answerText {
  margin-top: 2.5rem;
  font-size: 0.9375rem;
  line-height: 1.8;
}

/* スパークルアイコンのスタイル */
.p-summary__itemSparkle {
  position: absolute;
  z-index: 1;
}

.p-summary__itemSparkle--topRight {
  top: -10px;
  right: -10px;
}

.p-summary__itemSparkle--bottomLeft {
  bottom: -10px;
  left: -10px;
}

.p-summary__itemSparkle img {
  width: 32px;
  height: 40px;
  opacity: 0.8;
}

/* レスポンシブ対応 */
@media screen and (max-width: 767px) {
  .p-summary__answerItem {
    padding: 1rem;
    margin-bottom: 1.5rem;
  }

  .p-summary__answerItem-content {
    flex-direction: column;
    gap: 0.5rem;
  }

  .p-summary__answerItem-number {
    font-size: 2rem;
    text-align: center;
  }

  .p-summary__answerItem-textWrapper {
    justify-content: center;
  }

  .p-summary__bracket {
    font-size: 1.2rem;
  }

  .p-summary__itemSparkle img {
    width: 28px;
    height: 35px;
  }
}