@charset "UTF-8";

/* ==========================================
   リセット
   ========================================== */
*,
*::before,
*::after {
  box-sizing: border-box;
}

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;
}

ul, ol {
  list-style: none;
}

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

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

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

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

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

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

:focus:not(:focus-visible) {
  outline: 0;
}

/* ==========================================
   ベース
   ========================================== */
@media (min-width: 821px) {
  html {
    font-size: calc(16px * 820 / 375);
  }
}

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

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

body {
  position: relative;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  color: #1a1a2e;
  background: #f0f2f5;
}

/* ==========================================
   レイアウト
   ========================================== */
.l-inner {
  margin-inline: auto;
  padding-right: 0.625rem;
  padding-left: 0.625rem;
}

.l-wrapper {
  position: relative;
  width: 100%;
  max-width: 51.25rem;
  margin-inline: auto;
  background: #ffffff;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
  z-index: 100;
}

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

.l-container {
  margin-inline: auto;
}

/* ==========================================
   アニメーション
   ========================================== */
.js-fadeIn {
  opacity: 0;
  transition-duration: 0.8s;
  transition-property: opacity, transform;
  transform: translateY(30px);
}

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

/* ==========================================
   共通コンポーネント
   ========================================== */

/* --- セクションタイトル --- */
.p-section-title {
  text-align: center;
}

.c-title {
  position: relative;
  display: inline-block;
  padding: 0.6rem 2rem;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.06em;
  text-align: center;
  z-index: 1;
  border-radius: 100vh;
  background: linear-gradient(135deg, #667eea 0%, #3b82f6 100%);
}

/* --- ボタン --- */
.c-button {
  width: 100%;
}

a.c-button {
  display: flex;
}

.c-button span {
  position: relative;
  display: inline-block;
  width: 100%;
  padding: 0.9rem 1rem;
  overflow: hidden;
  background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
  box-shadow: 0px 4px 0px #0d7a6e;
  border-radius: 100vh;
  color: #ffffff;
  font-weight: 700;
  font-size: 0.9375rem;
  line-height: 1.2;
  letter-spacing: 0.06em;
  text-align: center;
  transition: all 0.3s ease;
  will-change: transform, box-shadow;
}

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

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

.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;
}

.c-button--sm span {
  padding: 0.6rem 1rem;
  font-size: 0.8125rem;
}

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

/* --- アクセントカラー --- */
.u-color-accent {
  color: #2563eb;
}

/* ==========================================
   PR表記
   ========================================== */
.p-pr {
  padding: 0.25rem 0.625rem;
}

.p-pr__text {
  font-size: 0.5rem;
  color: #bbb;
  text-align: right;
}

/* ==========================================
   メインビジュアル
   ========================================== */
.p-mv {
  background: #1a1a2e;
}

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

.u-visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ==========================================
   おすすめランキング TOP3
   ========================================== */
.p-ranking {
  background: linear-gradient(180deg, #1a1a2e 0%, #16213e 40%, #0f3460 100%);
}

.p-ranking__inner {
  padding: 0.625rem 0 0.5rem;
}

.p-ranking .c-title {
  background: linear-gradient(135deg, #60a5fa 0%, #2563eb 100%);
}

.p-ranking__list {
  margin-top: 0.3125rem;
  padding: 0.625rem 0.75rem 1.25rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.p-ranking__item {
  position: relative;
  background: #ffffff;
  border-radius: 0.5rem;
  padding: 1rem;
  overflow: hidden;
}

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

.p-ranking__item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 3.5rem;
  height: 2.5rem;
  background-size: contain;
  background-repeat: no-repeat;
  z-index: 2;
}

.p-ranking__item:first-child::before {
  content: "1st";
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0 0 0.5rem 0;
  background: linear-gradient(135deg, #ffd700, #ffaa00);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 900;
  text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

.p-ranking__item:nth-child(2)::before {
  content: "2nd";
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0 0 0.5rem 0;
  background: linear-gradient(135deg, #c0c0c0, #a0a0a0);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 900;
  text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

.p-ranking__item:nth-child(3)::before {
  content: "3rd";
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0 0 0.5rem 0;
  background: linear-gradient(135deg, #cd7f32, #a0612c);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 900;
  text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

.p-ranking__item-container {
  display: flex;
  gap: 0.875rem;
  padding-left: 0.5rem;
}

.p-ranking__item-img {
  flex-shrink: 0;
  width: 5.5rem;
  padding-top: 0.25rem;
}

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

.p-ranking__item-img img {
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 0.375rem;
}

.p-ranking__item-img--contain {
  object-fit: contain !important;
  background: #f8f9fa;
}

.p-ranking__item-title {
  position: relative;
  display: inline-block;
  color: #667eea;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.3;
  border-bottom: 2px solid #667eea;
}

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

.p-ranking__item-text {
  margin-top: 0.5rem;
  font-size: 0.6875rem;
  line-height: 1.6;
  color: #555;
}

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

/* ==========================================
   カード詳細セクション
   ========================================== */
.p-detail {
  background: linear-gradient(180deg, #2563eb 0%, #3b82f6 30%, #60a5fa 70%, #3b82f6 100%);
}

.p-detail__inner {
  padding: 0 0 0.5rem;
}

.p-detail .c-title {
  background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 100%);
}

/* --- カード --- */
.p-card {
  background: #ffffff;
  border-radius: 0.5rem;
  overflow: hidden;
}

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

.p-card__container {
  padding-top: 1.25rem;
  padding-bottom: 1rem;
}

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

.p-card__title {
  position: relative;
  display: inline-block;
  margin-left: 3.5rem;
  border-bottom: 2px solid #667eea;
  color: #667eea;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.3;
}

.p-card__title::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -3.25rem;
  transform: translateY(-50%);
  width: 2.5rem;
  height: 2rem;
}

.p-card:first-child .p-card__title::before {
  content: "1st";
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.25rem;
  background: linear-gradient(135deg, #ffd700, #ffaa00);
  color: #fff;
  font-size: 0.6875rem;
  font-weight: 900;
}

.p-card:nth-child(2) .p-card__title::before {
  content: "2nd";
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.25rem;
  background: linear-gradient(135deg, #c0c0c0, #a0a0a0);
  color: #fff;
  font-size: 0.6875rem;
  font-weight: 900;
}

.p-card:nth-child(3) .p-card__title::before {
  content: "3rd";
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.25rem;
  background: linear-gradient(135deg, #cd7f32, #a0612c);
  color: #fff;
  font-size: 0.6875rem;
  font-weight: 900;
}

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

.p-card__text {
  margin-top: 1rem;
  padding-inline: 0.8125rem;
  font-size: 0.75rem;
  line-height: 1.7;
  color: #444;
}

.p-card__img {
  margin-top: 0.75rem;
  padding-inline: 0.8125rem;
}

.p-card__img a {
  display: block;
  width: 100%;
  border-radius: 0.375rem;
  overflow: hidden;
}

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

.p-card__img img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.p-card__img--contain {
  object-fit: contain !important;
  background: #f8f9fa;
  padding: 1rem;
}

/* --- 情報テーブル --- */
.p-card__meta {
  margin-top: 0.75rem;
  padding: 0.875rem;
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.06) 0%, rgba(59, 130, 246, 0.06) 100%);
  border-radius: 0.5rem;
  border: 1px solid rgba(102, 126, 234, 0.15);
}

.p-card__item:not(:first-child) {
  margin-top: 0.75rem;
}

.p-card__item-title {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  width: 100%;
  padding: 0.25rem 0.5rem 0.25rem 0.375rem;
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.15), rgba(59, 130, 246, 0.15));
  border-radius: 100vh;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.8125rem;
  font-weight: 700;
  color: #1a1a2e;
}

.p-card__item-icon {
  display: inline-block;
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
}

.p-card__item-icon--price {
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23667eea' stroke-width='2'%3E%3Cpath d='M12 1v22M17 5H9.5a3.5 3.5 0 000 7h5a3.5 3.5 0 010 7H6'/%3E%3C/svg%3E") center/contain no-repeat;
}

.p-card__item-icon--subject {
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23667eea' stroke-width='2'%3E%3Cpath d='M4 19.5A2.5 2.5 0 016.5 17H20'/%3E%3Cpath d='M6.5 2H20v20H6.5A2.5 2.5 0 014 19.5v-15A2.5 2.5 0 016.5 2z'/%3E%3C/svg%3E") center/contain no-repeat;
}

.p-card__item-icon--style {
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23667eea' stroke-width='2'%3E%3Crect x='2' y='3' width='20' height='14' rx='2'/%3E%3Cline x1='8' y1='21' x2='16' y2='21'/%3E%3Cline x1='12' y1='17' x2='12' y2='21'/%3E%3C/svg%3E") center/contain no-repeat;
}

.p-card__item-icon--tablet {
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23667eea' stroke-width='2'%3E%3Crect x='4' y='2' width='16' height='20' rx='2'/%3E%3Cline x1='12' y1='18' x2='12.01' y2='18'/%3E%3C/svg%3E") center/contain no-repeat;
}

.p-card__item-icon--trial {
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23667eea' stroke-width='2'%3E%3Cpath d='M22 11.08V12a10 10 0 11-5.93-9.14'/%3E%3Cpolyline points='22 4 12 14.01 9 11.01'/%3E%3C/svg%3E") center/contain no-repeat;
}

.p-card__item-text {
  margin-top: 0.25rem;
  padding-left: 0.375rem;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.8125rem;
  font-weight: 600;
  line-height: 1.5;
  color: #333;
}

.p-card__item-note {
  font-size: 10px;
  color: #999;
  font-weight: 400;
  line-height: 1.5;
}

/* --- おすすめポイント --- */
.p-card__point {
  margin-top: 1.25rem;
}

.p-card__subtitle {
  width: 100%;
  padding: 0.5rem;
  background: linear-gradient(135deg, #667eea 0%, #3b82f6 100%);
  color: #ffffff;
  font-weight: 700;
  font-size: 0.9375rem;
  letter-spacing: 0.06em;
  text-align: center;
  border-radius: 0.25rem 0.25rem 0 0;
}

.p-card__point-list {
  margin-top: 0.75rem;
  padding-inline: 0.8125rem;
}

.p-card__point-item {
  position: relative;
  padding-left: 1.75rem;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.8125rem;
  font-weight: 600;
  line-height: 1.5;
  color: #333;
}

.p-card__point-item::before {
  content: "";
  position: absolute;
  top: 0.125rem;
  left: 0;
  width: 1.25rem;
  height: 1.25rem;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%2311998e'%3E%3Cpath d='M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm-2 15l-5-5 1.41-1.41L10 14.17l7.59-7.59L19 8l-9 9z'/%3E%3C/svg%3E") center/contain no-repeat;
}

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

.p-card__point-button {
  margin-top: 1.25rem;
  padding-inline: 0.8125rem;
}

.p-card__point-button__text {
  display: block;
  font-size: 0.8125rem;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
  color: #333;
}

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

/* --- メリット・デメリット --- */
.p-card__feature {
  margin-top: 1.25rem;
}

.p-card__feature-container {
  padding: 0 0.75rem 1rem;
  border: 3px solid #667eea;
  border-radius: 0 0 0.5rem 0.5rem;
}

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

.p-card__feature-title--merit {
  background: linear-gradient(135deg, #667eea, #3b82f6);
}

.p-card__feature-title--demerit {
  height: 2rem;
  background: #6c757d;
}

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

.p-card__feature-merit__item {
  position: relative;
  padding-left: 1.75rem;
  font-size: 0.8125rem;
  font-weight: 600;
  line-height: 1.5;
  color: #333;
}

.p-card__feature-merit__item::before {
  content: "";
  position: absolute;
  top: 0.125rem;
  left: 0;
  width: 1.25rem;
  height: 1.25rem;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23667eea'%3E%3Cpath d='M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm-2 15l-5-5 1.41-1.41L10 14.17l7.59-7.59L19 8l-9 9z'/%3E%3C/svg%3E") center/contain no-repeat;
}

.p-card__feature-merit__item:not(:first-child) {
  margin-top: 0.625rem;
  padding-top: 0.625rem;
  border-top: 1px dashed #ddd;
}

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

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

.p-card__feature-demerit__item {
  position: relative;
  padding-left: 1rem;
  font-size: 0.8125rem;
  font-weight: 600;
  line-height: 1.5;
  color: #555;
}

.p-card__feature-demerit__item::before {
  content: "";
  position: absolute;
  top: 0.5rem;
  left: 0.25rem;
  width: 0.3rem;
  height: 0.3rem;
  background: #6c757d;
  border-radius: 50%;
}

.p-card__feature-demerit__item:not(:first-child) {
  margin-top: 0.5rem;
  padding-top: 0.5rem;
  border-top: 1px dashed #ddd;
}

/* --- カード下部ボタン --- */
.p-card__button {
  margin-top: 1rem;
}

.p-card__button-text {
  display: block;
  font-size: 0.8125rem;
  font-weight: 700;
  text-align: center;
  color: #333;
}

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

/* ==========================================
   比較表
   ========================================== */
.p-comparison {
  background: linear-gradient(180deg, #2563eb 0%, #1e40af 40%, #0f3460 100%);
}

.p-comparison__inner {
  padding: 0.75rem 0 0.5rem;
}

.p-comparison .c-title {
  background: linear-gradient(135deg, #60a5fa 0%, #2563eb 100%);
}

.p-comparison__table-wrapper {
  margin-top: 1.25rem;
  padding: 0.5rem;
  background: #ffffff;
  border-radius: 0.5rem;
  overflow: hidden;
}

.p-comparison__table-container {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-color: #667eea transparent;
  scrollbar-width: thin;
}

.p-comparison__table-container::-webkit-scrollbar {
  height: 4px;
}

.p-comparison__table-container::-webkit-scrollbar-track {
  background: #f0f0f0;
}

.p-comparison__table-container::-webkit-scrollbar-thumb {
  background: #667eea;
  border-radius: 4px;
}

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

.p-comparison__table-th {
  padding: 0.75rem 0.5rem;
  text-align: center;
  vertical-align: middle;
  font-size: 0.6875rem;
  font-weight: 700;
  color: #667eea;
  background: #f8f9fa;
  border-bottom: 2px solid #667eea;
  width: 22%;
}

.p-comparison__table-th--label {
  width: 12%;
  background: linear-gradient(135deg, #667eea, #3b82f6);
  color: #fff;
  font-size: 0.75rem;
  border-bottom: 2px solid #667eea;
}

.p-comparison__table-th--first {
  background: #f0f4ff;
  border-top: 3px solid #667eea;
}

.p-comparison__table-logo {
  display: block;
  width: 3.5rem;
  height: 2rem;
  margin: 0 auto 0.375rem;
  object-fit: contain;
}

.p-comparison__table-td {
  padding: 0.625rem 0.5rem;
  text-align: center;
  vertical-align: middle;
  font-size: 0.6875rem;
  font-weight: 600;
  line-height: 1.4;
  color: #333;
  border-bottom: 1px solid #e9ecef;
}

.p-comparison__table-td--label {
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.08), rgba(59, 130, 246, 0.08));
  font-weight: 700;
  color: #1a1a2e;
  font-size: 0.625rem;
  text-align: center;
}

.p-comparison__table-td--highlight {
  background: rgba(102, 126, 234, 0.06);
}

.p-comparison__table-price {
  display: block;
  font-size: 1rem;
  font-weight: 900;
  color: #2563eb;
}

.p-comparison__table-note {
  display: block;
  margin-top: 0.125rem;
  font-size: 0.5625rem;
  color: #888;
  font-weight: 400;
}

.p-comparison__badge {
  display: inline-block;
  padding: 0.125rem 0.5rem;
  border-radius: 100vh;
  font-size: 0.625rem;
  font-weight: 700;
}

.p-comparison__badge--good {
  background: #d4edda;
  color: #155724;
}

.p-comparison__badge--neutral {
  background: #fff3cd;
  color: #856404;
}

.p-comparison__icon {
  display: inline-block;
  width: 1.5rem;
  height: 1.5rem;
}

.p-comparison__icon--circle-double {
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Ccircle cx='12' cy='12' r='10' fill='none' stroke='%23667eea' stroke-width='2.5'/%3E%3Ccircle cx='12' cy='12' r='6' fill='none' stroke='%23667eea' stroke-width='2'/%3E%3C/svg%3E") center/contain no-repeat;
}

.p-comparison__icon--circle {
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Ccircle cx='12' cy='12' r='9' fill='none' stroke='%2311998e' stroke-width='2.5'/%3E%3C/svg%3E") center/contain no-repeat;
}

.p-comparison__icon--triangle {
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 4L3 20h18z' fill='none' stroke='%23ffc107' stroke-width='2'/%3E%3C/svg%3E") center/contain no-repeat;
}

.p-comparison__icon--cross {
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M18 6L6 18M6 6l12 12' stroke='%23dc3545' stroke-width='2.5' fill='none'/%3E%3C/svg%3E") center/contain no-repeat;
}

.p-comparison__table-td--recommend {
  font-size: 0.625rem;
  font-weight: 700;
  color: #667eea;
}

.p-comparison__table-td--button a {
  display: inline-block;
  padding: 0.375rem 0.75rem;
  background: linear-gradient(135deg, #11998e, #38ef7d);
  box-shadow: 0 2px 0 #0d7a6e;
  border-radius: 100vh;
  color: #fff;
  font-size: 0.6875rem;
  font-weight: 700;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.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%, rgba(255,255,255,1) 80%, rgba(255,255,255,0) 100%);
  animation: shiny-slide 3s ease-in-out infinite;
}

/* ==========================================
   タイプ別おすすめガイド
   ========================================== */
.p-guide {
  background: linear-gradient(180deg, #0f3460 0%, #1a1a2e 100%);
  padding: 1.5rem 0 1.25rem;
}

.p-guide__inner {
  padding-inline: 0.625rem;
}

.p-guide .c-title {
  background: linear-gradient(135deg, #38ef7d 0%, #11998e 100%);
}

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

.p-guide__item {
  padding: 1rem;
  border-radius: 0.5rem;
  background: #ffffff;
  position: relative;
  overflow: hidden;
}

.p-guide__item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
}

.p-guide__item--blue::before {
  background: linear-gradient(180deg, #667eea, #3b82f6);
}

.p-guide__item--green::before {
  background: linear-gradient(180deg, #11998e, #38ef7d);
}

.p-guide__item--orange::before {
  background: linear-gradient(180deg, #2563eb, #60a5fa);
}

.p-guide__item-label {
  display: inline-block;
  padding: 0.125rem 0.625rem;
  border-radius: 100vh;
  font-size: 0.6875rem;
  font-weight: 700;
  color: #fff;
}

.p-guide__item--blue .p-guide__item-label {
  background: linear-gradient(135deg, #667eea, #3b82f6);
}

.p-guide__item--green .p-guide__item-label {
  background: linear-gradient(135deg, #11998e, #38ef7d);
}

.p-guide__item--orange .p-guide__item-label {
  background: linear-gradient(135deg, #2563eb, #60a5fa);
}

.p-guide__item-name {
  margin-top: 0.375rem;
  font-size: 1.0625rem;
  font-weight: 900;
  color: #667eea;
}

.p-guide__item-text {
  margin-top: 0.375rem;
  font-size: 0.75rem;
  line-height: 1.6;
  color: #555;
}

.p-guide__item .c-button {
  margin-top: 0.625rem;
}

/* ==========================================
   フッター
   ========================================== */
.p-footer {
  padding: 1.25rem 0.625rem 1.5rem;
  background: #1a1a2e;
}

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

.p-footer__note {
  font-size: 0.625rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.6;
}

.p-footer__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.5rem 1rem;
  margin-top: 0.75rem;
}

.p-footer__item a {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.625rem;
  transition: 0.3s;
}

.p-footer__item a:hover {
  color: rgba(255, 255, 255, 0.8);
}

