@charset "UTF-8";
/*
 * 参考
 * https://github.com/Andy-set-studio/modern-css-reset/blob/master/src/reset.css
*/
/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
figure,
blockquote,
dl,
dd,
ul {
  margin: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul,
ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* Set core root defaults */
html:focus-within {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: var(--line-height-loose);
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  display: block;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
  background-color: initial;
}

/* Remove all animations and transitions for people that prefer not to see them */
@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;
  }
}

/* アンカーリンクのスクロール位置調整（固定ヘッダー対応） */
:target {
  scroll-margin-top: 11.1rem; /* ヘッダー高さ(8.1rem) + 余白(3rem) */
}

@media screen and (max-width: 767px) {
  :target {
    scroll-margin-top: 9.5rem; /* ヘッダー高さ(6.5rem) + 余白(3rem) */
  }
}

.is-pc {display: inline;}
.is-sp {display: none;}

@media screen and (max-width: 767px) {
  .is-pc {display: none;}
  .is-sp {display: inline;}
}

/*-------------------------------
CSS Variables (Typography)
-------------------------------*/
:root {
  /* Font Sizes */
  --font-size-xs: 1.28rem;
  --font-size-sm: 1.3rem;
  --font-size-base: 1.4rem;
  --font-size-md: 1.422rem;
  --font-size-lg: 1.6rem;
  --font-size-xl: 1.829rem;
  --font-size-2xl: 2.133rem;
  --font-size-3xl: 2.56rem;
  --font-size-4xl: 2.8rem;
  --font-size-5xl: 3.2rem;

  /* Font Weights */
  --font-weight-normal: 400;
  --font-weight-medium: 500;
  --font-weight-bold: 700;
  --font-weight-black: 900;

  /* Line Heights */
  --line-height-tight: 1;
  --line-height-snug: 1.2;
  --line-height-normal: 1.3;
  --line-height-relaxed: 1.4;
  --line-height-loose: 1.5;
  --line-height-xl: 1.6;
  --line-height-2xl: 1.8;
  --line-height-3xl: 1.9;
  --line-height-4xl: 2;

  /* Colors */
  --color-text-primary: #3b290f;
  --color-text-secondary: #9c8262;
  --color-text-dark: #2b2b2b;
  --color-text-light: #6b5c45;
  --color-text-placeholder: #b9b1ab;
  --color-white: #fff;
  --color-yellow: #ffe66b;
  --color-yellow-hover: #fefaee;
  --color-orange: #f27c50;
  --color-orange-hover: #fff8f5;
  --color-orange-light: #e9906f;
  --color-orange-pink: #ffa583;
  --color-orange-rgb: 242, 124, 80;
  --color-gray: #a69782;
  --color-gray-border: #d8cdb7;
  --color-gray-border-light: #d9d0c3;
  --color-gray-border-lighter: #dbdbdb;
  --color-gray-dark: #6b5a4f;
  --color-gray-light: #ebebeb;
  --color-gray-bg: #f5f5f5;
  --color-gray-bg-light: #eeeeee;
  --color-gray-bg-beige: #e5e1da;
  --color-blue-light: #e4f3f8;
  --color-pink-light: #ffe5db;
  --color-green-light: #e2eed5;
  --color-cream: #fff6db;
  --color-cream-light: #fff4bc;
  --color-cream-bg: #fefaee;
  --color-cream-bg-light: #fff9e5;
  --color-bg-light: #fafafa;
}

html {
  font-size: 10px;
  overflow-x: hidden;
}
@media (max-width: 1200px) {
  html {
    font-size: 0.8333333333vw;
  }
}
@media screen and (max-width: 767px) {
  html {
    font-size: 10px;
  }
}
@media (max-width: 375px) {
  html {
    font-size: 2.6666666667vw;
  }
}

body {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: var(--font-weight-normal);
  color: var(--color-text-primary);
  font-size: var(--font-size-lg);
  background-color: var(--color-white);
  padding-top: 8rem;
  overflow-x: clip;
}
@media screen and (max-width: 767px) {
  body {
    font-size: var(--font-size-base);
    padding-top: 6.4rem;
  }
}

body.is-open {
  overflow: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  transition: 0.3s;
  display: inline-block;
}

@media (any-hover: hover) {
  a:hover {
    opacity: 0.7;
  }
}
@media screen and (max-width: 767px) {
  html body .pc {
    display: none;
  }
}

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

/*-------------------------------
l-inner
-------------------------------*/
.l-inner {
  margin: 0 auto;
  max-width: 112.8rem;
  padding: 0 2.4rem;
}

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

/*-------------------------------
c-marker
-------------------------------*/
.c-marker.-big {
  background-image: linear-gradient(transparent calc(100% - 2.2rem), var(--color-yellow) 0, var(--color-yellow) calc(100% - 0.6rem), transparent calc(100% - 0.6rem));
}

.c-marker.-mid {
  background-image: linear-gradient(transparent calc(100% - 1.8rem), var(--color-yellow) 0, var(--color-yellow) calc(100% - 0.6rem), transparent calc(100% - 0.6rem));
}

.c-marker.-small {
  background-image: linear-gradient(transparent calc(100% - 1.2rem), var(--color-yellow) 0, var(--color-yellow) calc(100% - 0.4rem), transparent calc(100% - 0.4rem));
}

/*-------------------------------
c-more-btn
-------------------------------*/
.c-more-btn {
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
}

.c-more-btn a, .c-more-btn button {
  padding: 1.6rem 6.4rem;
  font-size: var(--font-size-lg);
  line-height: var(--line-height-loose);
  font-weight: var(--font-weight-bold);
  background-color: var(--color-yellow);
  border: 1px solid var(--color-yellow);
  border-radius: 10rem;
  text-align: center;
  transition: 0.3s ease-out;
}
@media screen and (max-width: 767px) {
  .c-more-btn a, .c-more-btn button {
    padding: 0.8rem 2.4rem;
  }
}

.c-more-btn button {
  cursor: pointer;
}

.c-more-btn a::after, .c-more-btn button::after {
  content: "";
  width: 0.9rem;
  height: 0.9rem;
  position: absolute;
  top: 43%;
  right: 2.8rem;
  transform: translateY(-50%);
  border-bottom: 2px solid var(--color-text-primary);
  border-right: 2px solid var(--color-text-primary);
  transform: rotate(-45deg);
  transition: 0.15s ease-out;
}
@media screen and (max-width: 767px) {
  .c-more-btn a::after, .c-more-btn button::after {
    display: none;
  }
}

@media (any-hover: hover) {
  .c-more-btn a:hover, .c-more-btn button:hover {
    opacity: 1;
    background-color: var(--color-yellow-hover);
  }
}
@keyframes c-more-btn-hover {
  40% {
    right: 4.8rem;
  }
  55% {
    right: 2.8rem;
  }
  85% {
    right: 4rem;
  }
  100% {
    right: 2.8rem;
  }
}
/*-------------------------------
c-section-title
-------------------------------*/
.c-section-title {
  margin-inline: auto;
  padding-bottom: 0.8rem;
  width: -moz-fit-content;
  width: fit-content;
  line-height: var(--line-height-loose);
  letter-spacing: 0.1em;
  font-weight: var(--font-weight-bold);
  text-align: center;
  position: relative;
}

.c-section-title__en {
  font-size: var(--font-size-md);
  color: var(--color-orange-light);
  text-transform: uppercase;
}

.c-section-title__ja {
  margin-top: 0.4rem;
  font-size: var(--font-size-3xl);
  color: var(--color-text-primary);
}
@media screen and (max-width: 767px) {
  .c-section-title__ja {
    font-size: var(--font-size-2xl);
  }
}

.c-section-title::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 0.2rem;
  background-image: radial-gradient(ellipse 0.15rem 0.1rem at center, #a69782 99%, transparent 100%);
  background-size: 1.5rem 0.2rem;
  background-repeat: repeat-x;
  background-position: left center;
}


.p-contents__title, .p-download__title {
  margin: 0 0 5.6rem;
  padding-bottom: 0;
  text-align: left;
}

.p-bookmark__title {
  margin-bottom: 2.4rem;
  padding-bottom: 0;
}

@media screen and (max-width: 767px) {
  .p-contents__title, .p-download__title {
    margin-bottom: 2.4rem;
  }
}

.p-contents__title .c-section-title__en, .p-download__title .c-section-title__en {
  color: var(--color-text-primary);
  letter-spacing: 0;
}

.p-contents__title::before, .p-download__title::before {
  display: none;
}


.c-section-title--plain {
  padding-bottom: 0;
}
.c-section-title--plain .c-section-title__en, .c-section-title--plain .c-section-title__ja {
  color: var(--color-text-primary);
}
.c-section-title--plain::before {
  display: none;
}

.c-section-title--plain .c-section-title__en {
  letter-spacing: 0;
}

/*-------------------------------
c-text-highlight
-------------------------------*/
.c-text-highlight {
  background-color: var(--color-cream-light);
}

/*-------------------------------
c-back-link（共通：戻るリンク）
-------------------------------*/
.c-back-link {
  text-align: right;
}

.c-back-link a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 2.4rem;
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-bold);
  color: var(--color-text-primary);
  padding-block: 1.6rem;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.c-back-link a:hover {
  opacity: 0.7;
}

.c-back-link a::after {
  content: "";
  width: 0.9rem;
  height: 0.9rem;
  border-bottom: 2px solid var(--color-text-primary);
  border-right: 2px solid var(--color-text-primary);
  transform: rotate(-45deg) translateY(0.3rem);
  transition: 0.3s ease-out;
}

/*========================================
ページ固有スタイル
========================================*/

/*-------------------------------
p-content-card
-------------------------------*/
.p-content-card {
  position: relative;
}

.p-content-card a {
  padding-bottom: 3.2rem;
  width: 32rem;
  position: relative;
  transition: 0.15s ease-out;
}

@media (any-hover: hover) {
  .p-content-card a:hover {
    opacity: 1;
  }
}
.p-content-card__take-free {
  width: 5.8rem;
  height: 2.1rem;
  position: absolute;
  top: -0.7rem;
  left: 0.15rem;
  z-index: 30;
  transform: rotate(-12.58deg);
}

.p-content-card::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 0.2rem; /* 0.2rem（楕円の高さと一致） */
  background-image: radial-gradient(ellipse 0.15rem 0.1rem at center, var(--color-gray) 99%, transparent 100%); /* 楕円の形状を指定(縦横の半径) */
  background-size: 1.5rem 0.2rem; /* 横=15px間隔 / 縦=高さと一致 */
  background-repeat: repeat-x;
  background-position: left center;
}

.p-content-card__top {
  padding-inline: 1.6rem;
  position: relative;
}

.p-content-card__img {
  width: 100%;
  height: 25.6rem;
  transition: transform 0.2s ease-out;
}

.p-content-card__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  filter: drop-shadow(0 0.2rem 0.4rem rgba(0, 0, 0, 0.15));
}
@media (any-hover: hover) {
  .p-content-card a:hover .p-content-card__img {
    opacity: 0.7;
    transform: rotate(-4deg);
  }
}

.p-content-card__tags {
  padding-block: 0.7rem;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 1.6rem;
}

.p-content-card__tags-list {
  margin-left: auto;
  max-width: 16rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  justify-content: flex-end;
  align-items: center;
}

.p-content-card__tag-item {
  padding: 0.3rem 0.8rem 0.4rem;
  height: -moz-fit-content;
  height: fit-content;
  font-size: var(--font-size-xs);
  line-height: var(--line-height-tight);
  font-weight: var(--font-weight-medium);
  text-transform: uppercase;
  border-radius: 10rem;
}

.p-content-card__tag-item.-canva {
  background-color: var(--color-blue-light);
}

.p-content-card__tag-item.-ppt {
  background-color: var(--color-pink-light);
}

.p-content-card__tag-item.-pdf {
  background-color: var(--color-green-light);
}

/* Favorites プラグインのデフォルトスタイル上書き */
.simplefavorite-button.p-content-card__favorite-button.active,
.simplefavorite-button.p-download__favorite.active {
  opacity: 1;
}

.p-content-card__favorite {
  position: relative;
  z-index: 50;
}

.p-content-card__favorite-button {
  all: unset;
  width: 3.2rem;
  height: 3.2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  border: 1px solid var(--color-gray);
  transition: 0.3s ease-out;
  cursor: pointer;
}

.p-content-card__favorite-button svg {
  width: 1rem;
  height: 0.9rem;
}

.p-content-card__favorite-button.is-active,
.p-content-card__favorite-button.active {
  background-color: var(--color-orange-light);
}
.p-content-card__favorite-button.is-active img,
.p-content-card__favorite-button.active img {
  content: url("../images/heart-mark-hover.svg");
}

.p-content-card__expansion-button {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 50;
}

.p-content-card__expansion-button button {
  all: unset;
  width: 8.4rem;
  height: 8.4rem;
  font-size: var(--font-size-xs);
  line-height: 1.92rem;
  font-weight: var(--font-weight-medium);
  text-align: center;
  border-radius: 50%;
  background-color: var(--color-white);
  border: 1px solid var(--color-gray);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.3s ease-out;
  cursor: pointer;
}

@media (any-hover: hover) {
  .p-content-card__expansion-button button:hover {
    color: var(--color-white);
    background-color: var(--color-orange-light);
  }
}
.p-content-card__bottom {
  margin-top: 1.6rem;
  padding-inline: 2.4rem;
}

.p-content-card__title {
  font-size: var(--font-size-xl);
  line-height: var(--line-height-loose);
  font-weight: var(--font-weight-bold);
}
@media screen and (max-width: 767px) {
  .p-content-card__title {
    font-size: var(--font-size-lg);
  }
}

.p-content-card__hash-list {
  margin-top: 0.8rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}
@media screen and (max-width: 767px) {
  .p-content-card__hash-list {
    margin-top: 0.4rem;
  }
}

.p-content-card__hash-item {
  font-size: var(--font-size-xs);
  line-height: var(--line-height-loose);
  font-weight: var(--font-weight-medium);
}

/*-------------------------------
モーダル
-------------------------------*/
.p-content-card__modal {
  display: none;
  padding-block: 4rem;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.9);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
}

.p-content-card__modal-inner.l-inner {
  max-width: 100.8rem;
  height: 100%;
  position: relative;
}

.p-content-card__modal-close-wrap {
  display: flex;
  justify-content: flex-end;
}

.p-content-card__modal-close {
  all: unset;
  width: 4.4rem;
  height: 4.4rem;
  display: inline-block;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .p-content-card__modal-close {
    width: 3.4rem;
    height: 3.4rem;
  }
}

.p-content-card__modal-close img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  aspect-ratio: 44/44;
}

.p-content-card__modal-img {
  padding-block: 0 6rem;
  padding-right: 4rem;
  height: 100%;;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .p-content-card__modal-img {
    padding-right: 0;
  }
}

.p-content-card__modal-img img {
  max-width: 90%;
  max-height: calc(100vh - 20rem);
  object-fit: contain;
}

@media screen and (max-width: 767px) {
  .p-content-card__modal-img img {
    max-width: 100%;
    max-height: calc(100vh - 14rem);
  }
}

/*-------------------------------
p-footer
-------------------------------*/
.p-footer__inner.l-inner {
  max-width: 124.8rem;
}

.p-footer__content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 4.8rem;
  padding-block: 4rem;
}
@media screen and (max-width: 767px) {
  .p-footer__content {
    flex-direction: column;
    gap: 3.2rem;
    padding-block: 4rem 2.4rem;
  }
}

/* Left section */
.p-footer__left {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}

.p-footer__logo-ja {
  font-size: var(--font-size-5xl);
  font-weight: var(--font-weight-bold);
  line-height: var(--line-height-loose);
  font-family: var(--font-family-ja);
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .p-footer__logo-ja {
    font-size: var(--font-size-4xl);
  }
}

.p-footer__logo-en {
  font-size: var(--font-size-md);
  font-weight: var(--font-weight-bold);
  line-height: var(--line-height-loose);
  margin-top: 0.4rem;
  letter-spacing: 0.1em;
}

.p-footer__social {
  display: flex;
  gap: 2.4rem;
  align-items: center;
}

.p-footer__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.4rem;
  height: 2.4rem;
  transition: opacity 0.3s ease;
}
@media (any-hover: hover) {
  .p-footer__social-link:hover {
    opacity: 0.7;
  }
}

.p-footer__social-link img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Navigation */
.p-footer__nav {
  display: flex;
  gap: 8rem;
}
@media screen and (max-width: 767px) {
  .p-footer__nav {
    flex-direction: column;
    gap: 1.6rem;
    width: 100%;
  }
}

.p-footer__nav-column {
  display: flex;
  flex-direction: column;
}

.p-footer__nav-list {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}

.p-footer__nav-item a {
  font-size: var(--font-size-lg);
  line-height: var(--line-height-loose);
  font-weight: var(--font-weight-bold);
  transition: color 0.3s ease;
}
@media (any-hover: hover) {
  .p-footer__nav-item a:hover {
    opacity: 0.7;
  }
}
@media screen and (max-width: 767px) {
  .p-footer__nav-item a {
    font-size: var(--font-size-md);
    font-weight: var(--font-weight-medium);
  }
}

.p-footer__copyright {
  padding-block: 2.2rem;
  font-size: var(--font-size-lg);
  line-height: var(--line-height-loose);
  font-weight: var(--font-weight-bold);
  color: var(--color-white);
  text-align: center;
  background-color: rgb(var(--color-orange-rgb), 0.7);
}
@media screen and (max-width: 767px) {
  .p-footer__copyright {
    font-size: var(--font-size-md);
  }
}

/*-------------------------------
p-fv-swiper
-------------------------------*/
.p-fv-swiper {
  padding-block: 10.4rem 16.7rem;
  width: 1440px;
  position: relative;
  left: 50%;
  margin-left: -720px;
  z-index: 1;
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.p-fv.is-ready .p-fv-swiper {
  opacity: 1;
  transform: scale(1);
  transition-delay: 0.4s;
}
@media screen and (max-width: 767px) {
  .p-fv-swiper {
    padding-block: 5rem 9.6rem;
    width: 100%;
    left: 0;
    margin-left: 0;
  }
}

.p-fv-swiper .swiper {
  width: 100%;
  overflow-y: visible;
  overflow-x: clip;
}

.p-fv-swiper .swiper-wrapper {
  overflow: visible;
}

.p-fv-swiper .swiper-slide {
  overflow: visible;
  position: relative;
  width: 47.3333333333rem;
  height: 28rem;
  flex-shrink: 0;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .p-fv-swiper .swiper-slide {
    width: 16rem;
    height: 9.6rem;
  }
}

.p-fv-swiper .swiper-slide-active {
  z-index: 2;
}

.p-fv-swiper__item-weekly {
  width: 9.7rem;
  height: 9.7rem;
  font-size: var(--font-size-2xl);
  line-height: var(--line-height-normal);
  font-weight: var(--font-weight-bold);
  color: var(--color-white);
  position: absolute;
  top: -9.5rem;
  left: 2.8rem;
  z-index: 10;
  border-radius: 50%;
  background-color: var(--color-orange-pink);
  border: 0.5rem solid var(--color-white);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.3s;
}
@media screen and (max-width: 767px) {
  .p-fv-swiper__item-weekly {
    width: 4rem;
    height: 4rem;
    font-size: 1.1rem;
    top: -5rem;
    left: -0.65rem;
    border: 0.2rem solid var(--color-white);
  }
}

.swiper-slide-active .p-fv-swiper__item-weekly {
  opacity: 1;
}

/* --- p-fv-swiper__item: scaleのみでサイズ変更（GPU描画、リフローなし） --- */
.p-fv-swiper__item {
  padding: 4.1rem;
  width: 28rem;
  height: 28rem;
  border-radius: 50%;
  border: 1px solid var(--color-text-primary);
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: all 1.3s;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  background-color: var(--color-white);
  box-shadow: 0.8rem 0.8rem 0 var(--color-gray-light);
}
@media screen and (max-width: 767px) {
  .p-fv-swiper__item {
    padding: 1.4rem;
    width: 9.6rem;
    height: 9.6rem;
    box-shadow: 0.4rem 0.4rem 0 var(--color-gray-light);
  }
}

.p-fv-swiper__item img {
  max-height: 100%;
  filter: drop-shadow(0 0.2rem 0.4rem rgba(0, 0, 0, 0.15));
}


.swiper-slide-active .p-fv-swiper__item {
  padding: 7.05rem;
  width: 48rem;
  height: 48rem;
}
@media screen and (max-width: 767px) {
  .swiper-slide-active .p-fv-swiper__item {
    padding: 2.2rem;
    width: 19.6rem;
    height: 19.6rem;
  }
}

.p-fv-swiper__button-wrap {
  width: 100%;
  margin-top: 6rem;
  display: flex;
  justify-content: center;
  position: absolute;
  top: 35%;
  left: 0;
  transform: translateY(-50%);
  z-index: 3;
}
@media screen and (max-width: 767px) {
  .p-fv-swiper__button-wrap {
    margin-top: 1.3rem;
  }
}

.p-fv-swiper__button-wrap .swiper-button-prev,
.p-fv-swiper__button-wrap .swiper-button-next {
  width: 4.8rem;
  height: 4.8rem;
}
@media screen and (max-width: 767px) {
  .p-fv-swiper__button-wrap .swiper-button-prev,
  .p-fv-swiper__button-wrap .swiper-button-next {
    width: 1.8rem;
    height: 1.8rem;
  }
}

.p-fv-swiper__button-wrap .swiper-button-prev {
  left: 50%;
  transform: translate(-670%, -50%);
}
@media screen and (max-width: 767px) {
  .p-fv-swiper__button-wrap .swiper-button-prev {
    transform: translate(-670%, 10%);
    margin-top: calc(0px - (1.8rem / 2));
  }
}

.p-fv-swiper__button-wrap .swiper-button-next {
  left: 50%;
  transform: translate(570%, -50%) rotate(180deg);
}
@media screen and (max-width: 767px) {
  .p-fv-swiper__button-wrap .swiper-button-next {
    transform: translate(570%, 10%) rotate(180deg);
    margin-top: calc(0px - (1.8rem / 2));
  }
}

.p-fv-swiper__button-wrap .swiper-button-prev::before,
.p-fv-swiper__button-wrap .swiper-button-next::before {
  content: "";
  width: 1.6rem;
  height: 2.7rem;
  background: url(../images/slider-arrow.webp) center/contain no-repeat;
}
@media screen and (max-width: 767px) {
  .p-fv-swiper__button-wrap .swiper-button-prev::before,
  .p-fv-swiper__button-wrap .swiper-button-next::before {
    width: 0.8rem;
    height: 1.4rem;
  }
}

/*-------------------------------
p-fv
-------------------------------*/
.p-fv {
  padding-top: 5.6rem;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .p-fv {
    padding-top: 1.6rem;
  }
}

.p-fv__inner.l-inner {
  padding: 0;
  position: relative;
}

.p-fv__rib-wrap {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

.p-fv__rib {
  position: absolute;
  transform: translateX(-50%) translateY(3rem);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.p-fv.is-ready .p-fv__rib--kids {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
  transition-delay: 0.9s;
}
.p-fv.is-ready .p-fv__rib--teacher {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
  transition-delay: 1.1s;
}

.p-fv__rib--kids {
  width: 33.4rem;
  height: 18.5rem;
  bottom: -1.1rem;
  left: 25.5%;
  background: url(../images/fv-kids.webp) center/contain no-repeat;
}
@media screen and (max-width: 767px) {
  .p-fv__rib--kids {
    width: 14.8rem;
    height: 8.2rem;
    bottom: -0.5rem;
    left: 25%;
  }
}

.p-fv__rib--teacher {
  width: 19.8rem;
  height: 30.4rem;
  bottom: -0.9rem;
  left: 74.5%;
  background: url(../images/fv-teacher.webp) center/contain no-repeat;
}
@media screen and (max-width: 767px) {
  .p-fv__rib--teacher {
    width: 9.3rem;
    height: 14.3rem;
    bottom: -3.5rem;
    left: 76%;
  }
}

.p-fv__title svg {
  width: 100%;
  height: auto;
}
.p-fv__title {
  margin: 0 auto 3.2rem;
  max-width: 66rem;
  opacity: 0;
  transform: translateY(-2rem);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.p-fv.is-ready .p-fv__title {
  opacity: 1;
  transform: translateY(0);
}
@media screen and (max-width: 767px) {
  .p-fv__title {
    max-width: 32.7rem;
    margin-bottom: 1.6rem;
  }
}

/*-------------------------------
p-header
-------------------------------*/
.p-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 8rem;
  background-color: var(--color-white);
  z-index: 300;
}
@media screen and (max-width: 767px) {
  .p-header {
    height: 5.4rem;
  }
}

.p-header__inner.l-inner {
  max-width: 124.8rem;
  height: inherit;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .p-header__inner.l-inner {
    padding-right: 0;
  }
}
.p-header__logo {
  max-width: 12rem;
  width: 100%;
  height: inherit;
}
@media screen and (max-width: 767px) {
  .p-header__logo {
    max-width: 8.8rem;
  }
}

.p-header__logo a {
  height: inherit;
  display: flex;
  align-items: center;
}

.p-header__logo img,
.p-header__logo svg {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  aspect-ratio: 120/49;
}

.p-header__nav-wrapper {
  height: inherit;
  display: flex;
  gap: 1.6rem;
}
@media screen and (max-width: 767px) {
  .p-header__nav-wrapper {
    gap: 0;
  }
}

.p-header__nav {
  display: flex;
  gap: 2rem;
  height: inherit;
}
.p-header__nav-list {
  display: flex;
  height: inherit;
}

.p-header__nav-list.-ellipse {
  gap: 1.6rem;
}
@media screen and (max-width: 767px) {
  .p-header__nav-list.-ellipse {
    gap: 0.8rem;
  }
}

.p-header__nav-item {
  height: inherit;
}

.p-header__nav-item a {
  padding-inline: 2rem;
  height: inherit;
  display: flex;
  align-items: center;
  font-size: var(--font-size-base);
  line-height: var(--line-height-loose);
  font-weight: var(--font-weight-bold);
  color: var(--color-text-primary);
}
@media (any-hover: hover) {
  .p-header__nav-item a:hover {
    opacity: 0.7;
  }
}

.p-header__nav-list.-ellipse .p-header__nav-item {
  padding-inline: 0;
  display: flex;
  align-items: center;
}

.p-header__nav-list.-ellipse a {
  padding: 0.6rem 2.4rem;
  height: auto;
  font-weight: var(--font-weight-black);
  border-radius: 10rem;
}
@media screen and (max-width: 767px) {
  .p-header__nav-list.-ellipse a {
    padding: 0.4rem 1.2rem;
    height: auto;
    font-size: var(--font-size-xs);
    border-radius: 10rem;
  }
}

.p-header__nav-list.-ellipse .-login a {
  background-color: var(--color-yellow);
  border: 1px solid var(--color-yellow);
}

.p-header__nav-list.-ellipse .-registration a {
  color: var(--color-white);
  background-color: var(--color-orange);
  border: 1px solid var(--color-orange);
}
@media (any-hover: hover) {
  .p-header__nav-list.-ellipse .-login a:hover {
    background-color: var(--color-yellow-hover);
    opacity: 1;
  }
  .p-header__nav-list.-ellipse .-registration a:hover {
    color: var(--color-orange);
    background-color: var(--color-orange-hover);
    opacity: 1;
  }
}

.p-header__hamburger {
  margin: 0;
  padding: 0;
  outline: none;
  border: none;
  position: relative;
  z-index: 999;
  width: 5.4rem;
  height: inherit;
  cursor: pointer;
  transition: 0.3s;
  display: none;
}
@media screen and (max-width: 767px) {
  .p-header__hamburger {
    display: block;
    padding-inline: 1.6rem;
  }
}

.p-header__hamburger.is-open {
  background-color: transparent;
}

.p-header__hamburger span {
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  display: block;
  width: 2.4rem;
  height: 0.2rem;
  background-color: var(--color-text-primary);
  transition: 0.5s;
  border-radius: 0.2rem;
}

.p-header__hamburger span:nth-of-type(1) {
  top: -0.6rem;
}

.p-header__hamburger span:nth-of-type(2) {
  top: 0;
}

.p-header__hamburger span:nth-of-type(3) {
  top: 0.6rem;
}

.p-header__hamburger.is-open span:nth-of-type(1) {
  top: 0.2rem;
  transform: translateX(-50%) rotate(45deg);
}

.p-header__hamburger.is-open span:nth-of-type(2) {
  opacity: 0;
}

.p-header__hamburger.is-open span:nth-of-type(3) {
  top: -0.2rem;
  transform: translateX(-50%) rotate(-45deg);
}

.p-header__drawer {
  padding: 0;
  display: none;
  position: absolute;
  z-index: 900;
  top: 5.4rem;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: calc(100vh - 5.4rem);
  overflow-y: scroll;
  scrollbar-width: none;
  background-color: var(--color-white);
  border-top: 1px solid var(--color-text-primary);
}

.p-header__drawer::-webkit-scrollbar {
  display: none;
}

.p-header__drawer-item {
  border-bottom: 1px solid var(--color-text-primary);
}

.p-header__drawer-item a {
  padding: 1.6rem 2.4rem;
  display: block;
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-bold);
  line-height: var(--line-height-loose);
  letter-spacing: 0.05em;
  color: var(--color-text-primary);
  background: var(--color-white) url('../images/icon-arrow-right.svg') no-repeat right 2.4rem center;
  text-align: left;
  text-transform: none;
}

.p-header__drawer-item:nth-last-child(1) a,
.p-header__drawer-item:nth-last-child(2) a,
.p-header__drawer-item:nth-last-child(3) a,
.p-header__drawer-item:nth-last-child(4) a {
  background-color: var(--color-cream-bg-light);
}

.p-header__drawer-toggle {
  width: 100%;
  padding: 1.6rem 2.4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-bold);
  line-height: var(--line-height-loose);
  letter-spacing: 0.05em;
  color: var(--color-text-primary);
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
}

.p-header__drawer-icon {
  display: inline-block;
  width: 1rem;
  height: 1rem;
  position: relative;
  flex-shrink: 0;
}

.p-header__drawer-icon::before,
.p-header__drawer-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 2px;
  background-color: var(--color-text-primary);
  transform: translate(-50%, -50%);
  transition: transform 0.3s ease;
}

.p-header__drawer-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.p-header__drawer-item.is-open .p-header__drawer-icon::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.p-header__drawer-submenu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background-color: var(--color-white);
}

.p-header__drawer-item.is-open .p-header__drawer-submenu {
  max-height: 50rem;
}

.p-header__drawer-subitem {
  border-top: 1px solid var(--color-text-primary);
}

.p-header__drawer-subitem a {
  padding: 1.6rem 4rem;
  font-size: var(--font-size-md);
  font-weight: var(--font-weight-bold);
  text-align: left;
  text-transform: none;
  position: relative;
  padding-left: 4rem;
}

.p-header__drawer-subitem a::before {
  content: "ー ";
}

/*-------------------------------
p-top-content
-------------------------------*/
.p-top-content {
  padding: 8rem 0 0;
}
@media screen and (max-width: 767px) {
  .p-top-content {
    padding: 3.2rem 0;
  }
}

.p-top-content__list {
  margin-top: 5.6rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, 32rem);
  justify-content: center;
  gap: 5.6rem 6rem;
}
@media screen and (max-width: 767px) {
  .p-top-content__list {
    gap: 4rem;
  }
}

.p-top-content__button {
  margin-inline: auto;
  margin-top: 5.6rem;
}
@media screen and (max-width: 767px) {
  .p-top-content__button {
    margin-top: 2.4rem;
  }
}

/*-------------------------------
p-contents（下層ページ用）
-------------------------------*/
.p-contents {
  padding: 8rem 0 8rem;
}
@media screen and (max-width: 767px) {
  .p-contents {
    padding: 3.2rem 0 5.6rem;
  }
}

.p-contents__list {
  margin-top: 5.6rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, 32rem);
  justify-content: flex-start;
  gap: 5.6rem 6rem;
}
@media screen and (max-width: 767px) {
  .p-contents__list {
    gap: 4rem;
  }
}

.p-contents__request-card {
  width: 11.2rem;
  height: 16rem;
  position: fixed;
  top: 20%;
  right: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 3.2rem 1.6rem;
  gap: 0.8rem;

  background: var(--color-yellow);
  border: 1px solid var(--color-yellow);
  border-radius: 2rem 0 0 2rem;
  text-decoration: none;

  box-shadow: 0 0.4rem 0.4rem rgba(59, 59, 59, 0.25);
}
@media screen and (max-width: 767px) {
  .p-contents__request-card {
    top: 10%;
    width: 7.2rem;
    height: 8rem;
    padding: 1.6rem 0.8rem;
    gap: 0.4rem;
    border-radius: 1rem 0 0 1rem;
  }
}
@media (any-hover: hover) {
  .p-contents__request-card:hover {
    opacity: 1;
    background-color: var(--color-yellow-hover);
  }
}
.p-contents__request-icon {
  width: 5.6rem;
  height: auto;
  display: block;
}
@media screen and (max-width: 767px) {
  .p-contents__request-icon {
    width: 2.4rem;
  }
}

.p-contents__request-text {
  /* font-family は後から指定でOK */
  color: var(--color-text-primary);
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-bold);
  line-height: var(--line-height-normal);
  text-align: center;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .p-contents__request-text {
    font-size: var(--font-size-xs);
  }
}

/* クリック/フォーカス時の最低限の見た目 */
.p-contents__request-card:focus-visible {
  outline: 3px solid rgba(56, 40, 8, 0.6);
  outline-offset: 4px;
}

/*-------------------------------
p-top-cta
-------------------------------*/
.p-top-cta {
  padding-block: 8rem;
  background-color: var(--color-gray-bg);
  border-radius: 2.4rem;
}
@media screen and (max-width: 767px) {
  .p-top-cta {
    padding-block: 3.2rem;
    border-radius: 0;
  }
}

@media screen and (max-width: 767px) {
  .p-top-cta__inner.l-inner {
    max-width: 50rem;
  }
}

.p-top-cta__top {
  display: flex;
  gap: 4rem;
}
@media screen and (max-width: 767px) {
  .p-top-cta__top {
    flex-direction: column;
    gap: 2.4rem;
  }
}

.p-top-cta__line,
.p-top-cta__membership {
  width: 48.1481481481%;
  padding-block: 2.4rem;
  display: flex;
  justify-content: center;
  gap: 4.8rem;
  background-color: var(--color-white);
  border-radius: 2.4rem;
  border: 1px solid var(--color-text-primary);
}
@media screen and (max-width: 767px) {
  .p-top-cta__line,
  .p-top-cta__membership {
    width: 100%;
    flex-direction: column;
    align-items: center;
    gap: 1.6rem;
  }
}

.p-top-cta__line-img,
.p-top-cta__membership-img {
  width: 8.8rem;
}

.p-top-cta__line-img img,
.p-top-cta__membership-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  aspect-ratio: 88/88;
}

.p-top-cta__line-text,
.p-top-cta__membership-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
}
@media screen and (max-width: 767px) {
  .p-top-cta__line-text,
  .p-top-cta__membership-text {
    gap: 1.6rem;
  }
}

.p-top-cta__line-text p,
.p-top-cta__membership-text p {
  font-size: var(--font-size-3xl);
  line-height: var(--line-height-loose);
  letter-spacing: 0.1em;
  font-weight: var(--font-weight-bold);
}
@media screen and (max-width: 767px) {
  .p-top-cta__line-text p,
  .p-top-cta__membership-text p {
    font-size: var(--font-size-xl);
  }
}

.p-top-cta__line-btn.c-more-btn a,
.p-top-cta__membership-btn.c-more-btn a {
  padding: 0.8rem 6.8rem;
}
@media screen and (max-width: 767px) {
  .p-top-cta__line-btn.c-more-btn a,
  .p-top-cta__membership-btn.c-more-btn a {
    width: 20rem;
    padding-inline: 0;
    font-size: var(--font-size-lg);
  }
}

.p-top-cta__membership-btn.c-more-btn a {
  background-color: var(--color-orange);
  color: var(--color-white);
  border: 1px solid var(--color-orange);
}
@media (any-hover: hover) {
  .p-top-cta__membership-btn.c-more-btn a:hover {
    color: var(--color-orange);
    background-color: var(--color-orange-hover);
  }
}

@media screen and (max-width: 767px) {
  .p-top-cta__line-btn.c-more-btn a::after,
  .p-top-cta__membership-btn.c-more-btn a::after {
    display: inline-block;
  }
}

.p-top-cta__membership-btn.c-more-btn a::after {
  border-bottom: 2px solid var(--color-white);
  border-right: 2px solid var(--color-white);
}

.p-top-cta__bottom {
  margin-top: 4rem;
}
@media screen and (max-width: 767px) {
  .p-top-cta__bottom {
    margin-top: 2.4rem;
  }
}

.p-top-cta__instagram {
  width: 100%;
  padding-block: 2.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.4rem;
  background-color: var(--color-white);
  border-radius: 2.4rem;
  border: 1px solid var(--color-text-primary);
}
@media screen and (max-width: 767px) {
  .p-top-cta__instagram {
    flex-direction: column;
  }
}

.p-top-cta__instagram-img {
  width: 4rem;
}

.p-top-cta__instagram-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  aspect-ratio: 40/40;
}

.p-top-cta__instagram-text {
  display: flex;
  align-items: center;
  gap: 4rem;
}
@media screen and (max-width: 767px) {
  .p-top-cta__instagram-text {
    flex-direction: column;
    gap: 1.6rem;
  }
}

.p-top-cta__instagram-text p {
  font-size: var(--font-size-3xl);
  line-height: var(--line-height-loose);
  letter-spacing: 0.1em;
  font-weight: var(--font-weight-bold);
}
@media screen and (max-width: 767px) {
  .p-top-cta__instagram-text p {
    font-size: var(--font-size-xl);
    text-align: center;
  }
}

.p-top-cta__instagram-btn.c-more-btn a {
  padding: 0.8rem 5.2rem;
}
@media screen and (max-width: 767px) {
  .p-top-cta__instagram-btn.c-more-btn a {
    padding-inline: 0;
    width: 20rem;
  }
}

@media screen and (max-width: 767px) {
  .p-top-cta__instagram-btn.c-more-btn a::after {
    display: inline-block;
  }
}

/*-------------------------------
p-top-faq
-------------------------------*/
.p-top-faq {
  padding-block: 8rem;
}
@media screen and (max-width: 767px) {
  .p-top-faq {
    padding-block: 3.2rem;
  }
}

.p-top-faq__inner.l-inner {
  max-width: 68.8rem;
}
@media screen and (max-width: 767px) {
  .p-top-faq__inner.l-inner {
    max-width: 50rem;
  }
}

.p-top-faq__list {
  margin-top: 5.6rem;
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
}
@media screen and (max-width: 767px) {
  .p-top-faq__list {
    margin-top: 2.4rem;
  }
}

.p-top-faq__item {
  position: relative;
}

.p-top-faq__item-question,
.p-top-faq__item-answer {
  display: flex;
  align-items: center;
  padding: 1.6rem 4.8rem 1.6rem 1.6rem;
  font-size: var(--font-size-lg);
  line-height: var(--line-height-loose);
  font-weight: var(--font-weight-bold);
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-top-faq__item-question,
  .p-top-faq__item-answer {
    padding-block: 0.8rem;
    font-size: var(--font-size-md);
    font-weight: var(--font-weight-medium);
  }
}

.p-top-faq__item-question {
  cursor: pointer;
  background-color: var(--color-gray-bg-light);
  border-radius: 1rem;
}

.p-top-faq__item-question::before,
.p-top-faq__item-answer::before {
  width: 1.2rem;
  height: 2.2rem;
  z-index: 10;
  font-size: var(--font-size-lg);
  line-height: 2.2rem;
  font-weight: var(--font-weight-bold);
  margin-right: 2.4rem;
}
@media screen and (max-width: 767px) {
  .p-top-faq__item-question::before,
  .p-top-faq__item-answer::before {
    margin-right: 1.6rem;
  }
}

.p-top-faq__item-question::before {
  content: "Q";
}

.p-top-faq__item-answer::before {
  content: "A";
  color: var(--color-orange);
}

.p-top-faq__item-answer {
  display: flex;
  overflow: hidden;
  height: 0;
  opacity: 0;
  padding: 0 1.6rem;
  transition: opacity 0.1s ease;
}

/* スライド完了後に表示する用 */
.p-top-faq__item-answer.is-open {
  opacity: 1;
  padding-block: 0.8rem;
  transition-delay: 0s;
}

.p-top-faq__item-answer:not(.is-open) .p-top-faq__item-answer-inner {
  transition-delay: 0s;
}

/*-------------------------------
p-top-faq__item +-のcss
-------------------------------*/
.p-top-faq__item-question span {
  width: 1.8rem;
  height: 100%;
  position: absolute;
  top: 0;
  right: 1.6rem;
  display: inline-block;
}

.p-top-faq__item-question span::before,
.p-top-faq__item-question span::after {
  content: "";
  width: 1.8rem;
  height: 0.4rem;
  position: absolute;
  top: 2.7rem;
  right: 0;
  background: var(--color-text-primary);
  transition: 0.5s;
  z-index: 10;
  border-radius: 0.4rem;
}
@media screen and (max-width: 767px) {
  .p-top-faq__item-question span::before,
  .p-top-faq__item-question span::after {
    top: 50%;
  }
}

.p-top-faq__item-question span::after {
  transform: rotate(90deg);
}

.p-top-faq__item-question.is-open span::after {
  transform: rotate(180deg);
}

/*-------------------------------
p-top-features
-------------------------------*/
.p-top-features {
  padding-block: 13.4rem 15.5rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-top-features {
    padding-block: 7rem 7.6rem;
  }
}

.p-top-features::before {
  content: "";
  width: 100%;
  height: 26.7rem;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  background: url(../images/top-features-deco.webp) center/contain no-repeat;
}
@media screen and (max-width: 767px) {
  .p-top-features::before {
    height: 6.1rem;
    bottom: 3.2rem;
  }
}

@media screen and (max-width: 767px) {
  .p-top-features__inner.l-inner {
    max-width: 55rem;
  }
}

.p-top-features__title-group {
  text-align: center;
  position: relative;
}

.p-top-features__title-group::before {
  content: "";
  width: 8.8rem;
  height: 3rem;
  position: absolute;
  top: -2.4rem;
  left: 50%;
  transform: translate(-50%, -100%);
  background: url(../images/concentration-line1.webp) center/contain no-repeat;
}
@media screen and (max-width: 767px) {
  .p-top-features__title-group::before {
    width: 6.4rem;
    height: 2.2rem;
    top: -1.6rem;
  }
}

.p-top-features__read {
  font-size: var(--font-size-5xl);
  line-height: var(--line-height-loose);
  letter-spacing: 0.1em;
  font-weight: var(--font-weight-bold);
}
@media screen and (max-width: 767px) {
  .p-top-features__read {
    font-size: var(--font-size-2xl);
    line-height: 3.1rem;
  }
}

.p-top-features__read .-accent {
  font-size: 3.6rem;
  color: var(--color-orange);
}
@media screen and (max-width: 767px) {
  .p-top-features__read .-accent {
    font-size: var(--font-size-2xl);
  }
}

.p-top-features__title {
  margin-top: 0.4rem;
  font-size: var(--font-size-5xl);
  line-height: 6.2rem;
  font-weight: var(--font-weight-bold);
}
@media screen and (max-width: 767px) {
  .p-top-features__title {
    margin-top: 0.8rem;
    font-size: var(--font-size-xl);
    line-height: 2.6rem;
  }
}

.p-top-features__title .-accent {
  font-size: 4.267rem;
  color: var(--color-orange);
}
@media screen and (max-width: 767px) {
  .p-top-features__title .-accent {
    font-size: var(--font-size-xl);
  }
}

.p-top-features__body {
  margin-top: -2rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-top-features__body {
    margin-top: 3.2rem;
  }
}

.p-top-features__list-top {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .p-top-features__list-top {
    flex-direction: column;
  }
}

.p-top-features__item {
  width: 23.5rem;
  height: 23.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  background-color: var(--color-cream-bg-light);
  border-radius: 50%;
}
@media screen and (max-width: 767px) {
  .p-top-features__item {
    padding-bottom: 3.2rem;
    width: 28rem;
    height: auto;
    margin: 0 auto;
    justify-content: flex-start;
    align-items: flex-start;
    background-color: transparent;
    border-radius: 0;
    gap: 1.6rem;
  }
}

.p-top-features__num {
  font-size: 4.267rem;
  line-height: 6.2rem;
  font-weight: var(--font-weight-bold);
  color: var(--color-orange);
  position: absolute;
  top: -0.2rem;
  left: 0.6rem;
  opacity: 0.3;
}
@media screen and (max-width: 767px) {
  .p-top-features__num {
    display: block;
    width: 2.4rem;
    text-align: center;
    font-size: 2.4rem;
    line-height: 1;
    color: var(--color-orange);
    position: static;
    opacity: 1;
  }
}

.p-top-features__text {
  font-size: var(--font-size-2xl);
  line-height: var(--line-height-loose);
  font-weight: var(--font-weight-medium);
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-top-features__text {
    font-size: var(--font-size-xl);
    text-align: left;
  }
}

.p-top-features__item.-pos-2 {
  margin-top: 2.4rem;
}
@media screen and (max-width: 767px) {
  .p-top-features__item.-pos-2 {
    margin-top: 0;
    position: relative;
  }
}

@media screen and (max-width: 767px) {
  .p-top-features__item.-pos-2::before {
    content: "";
    width: 10.9rem;
    height: 19.2rem;
    background-color: var(--color-gray);
    position: absolute;
    top: 0.8rem;
    right: clamp(19.3rem, -12.84rem + 85.71vw, 34.3rem);
    background: url(../images/download-wow-sp1.webp) center/contain no-repeat;
  }
}

.p-top-features__list-bottom {
  margin-top: 3.1rem;
  padding-inline: 7.5rem 6.7rem;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .p-top-features__list-bottom {
    margin-top: 0;
    padding-inline: 0;
    flex-direction: column;
  }
}

@media screen and (max-width: 767px) {
  .p-top-features__item.-pos-3 {
    position: relative;
  }
}

@media screen and (max-width: 767px) {
  .p-top-features__item.-pos-3::before {
    content: "";
    width: 10.9rem;
    height: 11.2rem;
    background-color: var(--color-gray);
    position: absolute;
    top: 5.1rem;
    left: clamp(22.4rem, -2.4576rem + 66.29vw, 34rem);
    background: url(../images/download-wow-sp2.webp) center/contain no-repeat;
  }
}

.p-top-features__item.-pos-4 {
  margin-top: 2.9rem;
}
@media screen and (max-width: 767px) {
  .p-top-features__item.-pos-4 {
    margin-top: 0;
  }
}

@media screen and (max-width: 767px) {
  .p-top-features__item:nth-child(even) {
    margin-left: auto;
  }
}

.p-top-features__mock {
  position: absolute;
  top: 4.7rem;
  left: 51%;
  transform: translateX(-50%);
  z-index: 10;
}
@media screen and (max-width: 767px) {
  .p-top-features__mock {
    display: none;
  }
}

.p-top-features__mock img {
  width: 52.8rem;
}
@media screen and (max-width: 767px) {
  .p-top-features__mock img {
    margin-inline: auto;
    width: 32.7rem;
  }
}

.p-top-features__illust {
  width: 23.2rem;
  position: absolute;
  top: 26.5rem;
  left: 48%;
  transform: translateX(-50%);
}
@media screen and (max-width: 767px) {
  .p-top-features__illust {
    width: 10.9rem;
    top: auto;
    bottom: 0.5rem;
    left: auto;
    right: -1.4rem;
    transform: translateX(0);
  }
}

.p-top-features__illust img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  aspect-ratio: 232/291;
}

@media screen and (max-width: 767px) {
  .p-top-features__illust img {
    aspect-ratio: 109/112;
  }
}

/*-------------------------------
p-top-live
-------------------------------*/
.p-top-live {
  padding-block: 8rem;
}
@media screen and (max-width: 767px) {
  .p-top-live {
    padding-block: 3.2rem;
  }
}

.p-top-live__inner.l-inner {
  display: flex;
  gap: 8rem;
}
@media screen and (max-width: 767px) {
  .p-top-live__inner.l-inner {
    max-width: 50rem;
    flex-direction: column;
    gap: 4rem;
  }
}

.p-top-live__left {
  width: 54.0740740741%;
}
@media screen and (max-width: 767px) {
  .p-top-live__left {
    width: 100%;
  }
}

.p-top-live__title-group {
  display: flex;
  gap: 4rem;
}
@media screen and (max-width: 767px) {
  .p-top-live__title-group {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
  }
}
@media screen and (max-width: 355px) {
  .p-top-live__title-group {
    gap: 0.6rem;
  }
}

.p-top-live__title {
  font-size: var(--font-size-3xl);
  line-height: var(--line-height-loose);
  letter-spacing: 0.1em;
  font-weight: var(--font-weight-bold);
  display: flex;
  align-items: center;
  gap: 2.4rem;
}
@media screen and (max-width: 767px) {
  .p-top-live__title {
    font-size: var(--font-size-2xl);
    gap: 0.8rem;
  }
}
@media screen and (max-width: 355px) {
  .p-top-live__title {
    gap: 0.6rem;
  }
}

.p-top-live__title::before,
.p-top-live__title::after {
  content: "";
  width: 1.2rem;
  height: 2.2rem;
  background: url(../images/icon-note.webp) center/contain no-repeat;
}

.p-top-live__title-badge {
  padding: 0.4rem 1.6rem;
  font-size: var(--font-size-xl);
  line-height: var(--line-height-loose);
  font-weight: var(--font-weight-bold);
  background-color: var(--color-gray-bg-beige);
  border-radius: 3.5rem;
}
@media screen and (max-width: 767px) {
  .p-top-live__title-badge {
    padding: 0.2rem 1.6rem;
    font-size: var(--font-size-md);
  }
}

.p-top-live__read {
  margin-top: 5.6rem;
  font-size: var(--font-size-2xl);
  line-height: 1.7;
  font-weight: var(--font-weight-medium);
}
@media screen and (max-width: 767px) {
  .p-top-live__read {
    margin-top: 2.4rem;
    font-size: var(--font-size-lg);
    line-height: var(--line-height-loose);
  }
}

.p-top-live__right {
  width: 38.5185185185%;
}
@media screen and (max-width: 767px) {
  .p-top-live__right {
    width: 100%;
  }
}

.p-top-live__img {
  width: 41.6rem;
}
@media screen and (max-width: 767px) {
  .p-top-live__img {
    width: 100%;
  }
}

.p-top-live__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  aspect-ratio: 416/234;
}

/*-------------------------------
p-top-morning
-------------------------------*/
.p-top-morning {
  padding-top: 12rem;
  padding-bottom: 16rem;
  position: relative;
  overflow-x: clip;
}
@media screen and (max-width: 767px) {
  .p-top-morning {
    padding-top: 3.2rem;
    padding-bottom: 4.5rem;
  }
}

.p-top-morning__bg-top,
.p-top-morning__bg-bottom {
  width: 100%;
  min-width: 144rem;
  height: 50rem;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .p-top-morning__bg-top,
  .p-top-morning__bg-bottom {
    min-width: 60.9rem;
    height: 80rem;
  }
}

.p-top-morning__bg-top {
  top: 3.4rem;
  background: url(../images/top-morning-bg.webp) top center/cover no-repeat;
}
@media screen and (max-width: 767px) {
  .p-top-morning__bg-top {
    top: -0.8rem;
    background: url(../images/top-morning-bg_sp.webp) top center/cover no-repeat;
  }
}

.p-top-morning__bg-bottom {
  bottom: 0;
  background: url(../images/top-morning-bg.webp) bottom center/cover no-repeat;
}
@media screen and (max-width: 767px) {
  .p-top-morning__bg-bottom {
    bottom: -2rem;
    background: url(../images/top-morning-bg_sp.webp) bottom center/cover no-repeat;
  }
}

.p-top-morning__inner.l-inner {
  display: flex;
  gap: 1.6rem;
}
@media screen and (max-width: 767px) {
  .p-top-morning__inner.l-inner {
    max-width: 50rem;
    flex-direction: column;
  }
}

.p-top-morning__left {
  width: 54.2592592593%;
}
@media screen and (max-width: 767px) {
  .p-top-morning__left {
    width: 100%;
  }
}

.p-top-morning__title {
  font-size: var(--font-size-3xl);
  line-height: var(--line-height-loose);
  letter-spacing: 0.1em;
  font-weight: var(--font-weight-bold);
  display: flex;
  align-items: center;
  gap: 2.4rem;
}
@media screen and (max-width: 767px) {
  .p-top-morning__title {
    font-size: var(--font-size-2xl);
    justify-content: center;
  }
}

.p-top-morning__title::before,
.p-top-morning__title::after {
  content: "";
  width: 2.2rem;
  height: 2.2rem;
  background: url(../images/icon-pencil.webp) center/contain no-repeat;
}

.p-top-morning__title::before {
  transform: rotate(-90deg);
}

.p-top-morning__read {
  margin-top: 4rem;
  font-size: var(--font-size-2xl);
  line-height: var(--line-height-2xl);
  font-weight: var(--font-weight-medium);
}
@media screen and (max-width: 767px) {
  .p-top-morning__read {
    font-size: var(--font-size-lg);
  }
}

.p-top-morning__read span {
  color: var(--color-orange);
}

.p-top-morning__list {
  margin-top: 4rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.p-top-morning__item {
  width: 53.6rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-top-morning__item {
    width: 100%;
  }
}

.p-top-morning__item::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 0.2rem; /* 0.2rem（楕円の高さと一致） */
  background-image: radial-gradient(ellipse 0.15rem 0.1rem at center, var(--color-gray) 99%, transparent 100%); /* 楕円の形状を指定(縦横の半径) */
  background-size: 1.5rem 0.2rem; /* 横=15px間隔 / 縦=高さと一致 */
  background-repeat: repeat-x;
  background-position: left center;
}

.p-top-morning__item a {
  padding-bottom: 2.4rem;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .p-top-morning__item a {
    padding-bottom: 1.6rem;
  }
}

.p-top-morning__item-meta {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.p-top-morning__item-date {
  font-size: var(--font-size-lg);
  line-height: var(--line-height-loose);
  font-weight: var(--font-weight-normal);
}

.p-top-morning__item-badge {
  display: inline-block;
  padding: 0.1rem 0.8rem;
  font-size: var(--font-size-xs);
  line-height: var(--line-height-loose);
  font-weight: var(--font-weight-bold);
  color: var(--color-orange);
  border: 1px solid var(--color-orange);
  border-radius: 0.4rem;
}

.p-top-morning__item-title {
  margin-top: 0.8rem;
  font-size: var(--font-size-lg);
  line-height: var(--line-height-loose);
  font-weight: var(--font-weight-bold);
}
@media screen and (max-width: 767px) {
  .p-top-morning__item-title {
    font-weight: var(--font-weight-medium);
  }
}

.p-top-morning__button {
  margin-top: 4rem;
}
@media screen and (max-width: 767px) {
  .p-top-morning__button {
    margin-inline: auto;
    margin-top: 2.4rem;
  }
}

.p-top-morning__right {
  width: 44.2592592593%;
}
@media screen and (max-width: 767px) {
  .p-top-morning__right {
    width: 100%;
  }
}

.p-top-morning__img {
  margin-top: 3.9rem;
  margin-inline: auto;
  width: 36.2rem;
}
@media screen and (max-width: 767px) {
  .p-top-morning__img {
    margin-top: 0;
    width: 20.7rem;
  }
}

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

.p-top-morning__cta a {
  margin-top: 3.2rem;
  padding: 2rem 4rem;
  display: flex;
  align-items: center;
  gap: 4rem;
  border-radius: 3.2rem;
  background-color: var(--color-white);
}
@media screen and (max-width: 767px) {
  .p-top-morning__cta a {
    margin-top: 0;
    padding: 2.4rem 2.4rem 1.6rem;
    flex-direction: column;
  }
}
@media (any-hover: hover) {
  .p-top-morning__cta a:hover {
    opacity: 1;
  }
}

.p-top-morning__cta-icon {
  width: 8rem;
  height: 8rem;
}
@media screen and (max-width: 767px) {
  .p-top-morning__cta-icon {
    margin-inline: auto;
  }
}

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

.p-top-morning__cta-text {
  font-size: var(--font-size-lg);
  line-height: var(--line-height-loose);
  font-weight: var(--font-weight-medium);
  transition: opacity 0.3s ease-out;
}
@media screen and (max-width: 767px) {
  .p-top-morning__cta-text {
    text-align: center;
  }
}
@media (any-hover: hover) {
  a:hover .p-top-morning__cta-text {
    opacity: 0.7;
  }
}

.p-top-morning__cta-link {
  display: flex;
  justify-content: flex-end;
}
@media screen and (max-width: 767px) {
  .p-top-morning__cta-link {
    justify-content: center;
  }
}

.p-top-morning__cta-link span {
  margin-top: 0.4rem;
  padding-block: 1.2rem;
  padding-right: 2.4rem;
  width: -moz-fit-content;
  width: fit-content;
  font-size: var(--font-size-base);
  line-height: var(--line-height-loose);
  letter-spacing: 0.05em;
  font-weight: var(--font-weight-bold);
  position: relative;
}

.p-top-morning__cta-link span::after {
  content: "";
  width: 0.9rem;
  height: 0.9rem;
  position: absolute;
  top: 40%;
  right: 0.2rem;
  transform: translateY(-50%);
  border-bottom: 2px solid var(--color-text-primary);
  border-right: 2px solid var(--color-text-primary);
  transform: rotate(-45deg);
}

/*-------------------------------
p-top-news
-------------------------------*/
.p-top-news {
  padding-block: 5.6rem;
  background-color: var(--color-cream-bg);
}
@media screen and (max-width: 767px) {
  .p-top-news {
    padding-block: 3.2rem;
  }
}

.p-top-news__inner.l-inner {
  max-width: 100.8rem;
}

.p-top-news__content {
  padding: 5.6rem 8rem;
  border-radius: 8rem;
  background-color: var(--color-white);
}
@media screen and (max-width: 767px) {
  .p-top-news__content {
    padding: 2.4rem 1.6rem;
    border-radius: 2.4rem;
  }
}

/* スクロールアニメーション用 */
.js-scroll-fade {
  opacity: 0;
  position: relative;
  top: 30px;
  transition: opacity 0.8s ease-out, top 0.8s ease-out;
}

.js-scroll-fade.is-visible {
  opacity: 1;
  top: 0;
}

/* 子要素の遅延表示用 */
.js-scroll-fade-children > * {
  opacity: 0;
  position: relative;
  top: 30px;
  transition: opacity 0.8s ease-out, top 0.8s ease-out;
}

.js-scroll-fade-children > *.is-visible {
  opacity: 1;
  top: 0;
}

.p-top-news__list {
  margin-top: 3.2rem;
}
@media screen and (max-width: 767px) {
  .p-top-news__list {
    margin-top: 1.6rem;
    display: flex;
    flex-direction: column;
    gap: 2.4rem;
  }
}

.p-top-news__item a {
  padding-block: 1.6rem;
  font-size: var(--font-size-lg);
  line-height: var(--line-height-loose);
  display: flex;
  gap: 8rem;
}
@media screen and (max-width: 767px) {
  .p-top-news__item a {
    padding-block: 0;
    flex-direction: column;
    gap: 0.8rem;
  }
}

.p-top-news__date {
  padding-inline: 4rem 1.6rem;
  font-weight: var(--font-weight-normal);
}
@media screen and (max-width: 767px) {
  .p-top-news__date {
    padding-inline: 0;
    font-size: var(--font-size-xs);
  }
}

.p-top-news__text {
  font-weight: var(--font-weight-bold);
}
@media screen and (max-width: 767px) {
  .p-top-news__text {
    font-size: var(--font-size-md);
  }
}

.p-top-news__button {
  margin-top: 3.2rem;
  margin-inline: auto;
}

/*-------------------------------
p-top-price
-------------------------------*/
.p-top-price {
  padding-block: 12rem 10.4rem;
  position: relative;
  overflow-x: clip;
}
@media screen and (max-width: 767px) {
  .p-top-price {
    padding-block: 5.6rem 10.4rem;
  }
}

.p-top-price__bg-top,
.p-top-price__bg-bottom {
  width: calc(100% + 7.6rem);
  min-width: 151.6rem;
  height: 50rem;
  position: absolute;
  left: 50%;
  z-index: -1;
  transform: translateX(-50%);
}
@media screen and (max-width: 767px) {
  .p-top-price__bg-top,
  .p-top-price__bg-bottom {
    width: 100%;
    min-width: 58.7rem;
    height: 50rem;
  }
}

.p-top-price__bg-top {
  top: 4rem;
  background: url(../images/top-price-bg.webp) top center/cover no-repeat;
}
@media screen and (max-width: 767px) {
  .p-top-price__bg-top {
    top: 0;
    background: url(../images/top-price-bg_sp.webp) top center/cover no-repeat;
  }
}

.p-top-price__bg-bottom {
  bottom: 0;
  background: url(../images/top-price-bg.webp) bottom center/cover no-repeat;
}
@media screen and (max-width: 767px) {
  .p-top-price__bg-bottom {
    background: url(../images/top-price-bg_sp.webp) bottom center/cover no-repeat;
  }
}

.p-top-price__inner.l-inner {
  position: relative;
  z-index: 10;
}
@media screen and (max-width: 767px) {
  .p-top-price__inner.l-inner {
    max-width: 50rem;
  }
}

.p-top-price__inner.l-inner::before {
  content: "";
  width: 87.9rem;
  height: 60.7rem;
  position: absolute;
  top: 0.8rem;
  left: 50%;
  transform: translateX(-50%);
  background: url(../images/top-price-ellipse.webp) center/contain no-repeat;
}
@media screen and (max-width: 767px) {
  .p-top-price__inner.l-inner::before {
    display: none;
  }
}

.p-top-price__content {
  padding-block: 8rem;
  position: relative;
  z-index: 50;
}
@media screen and (max-width: 767px) {
  .p-top-price__content {
    padding: 4rem 1.6rem;
    border-radius: 2.4rem;
    background-color: var(--color-white);
  }
}

.p-top-price__content::before {
  content: "";
  width: 20.6rem;
  height: 30.2rem;
  position: absolute;
  bottom: 1.6rem;
  left: 4rem;
  background: url(../images/content-teacher.webp) center/contain no-repeat;
}
@media screen and (max-width: 767px) {
  .p-top-price__content::before {
    width: 8.4rem;
    height: 12.3rem;
    bottom: -8.7rem;
    left: auto;
    right: 0.4rem;
  }
}

.p-top-price__title-group {
  margin-inline: auto;
  padding-inline: 12rem;
  width: -moz-fit-content;
  width: fit-content;
  line-height: var(--line-height-loose);
  letter-spacing: 0.1em;
  font-weight: var(--font-weight-bold);
  text-align: center;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-top-price__title-group {
    padding-inline: 0;
  }
}

.p-top-price__title-group::before {
  content: "";
  width: 14.2rem;
  height: 5.6rem;
  position: absolute;
  top: -3.9rem;
  left: -5.5rem;
  transform: rotate(-36.5deg);
  background: url(../images/deco-line2.webp) center/contain no-repeat;
}
@media screen and (max-width: 767px) {
  .p-top-price__title-group::before {
    width: 5.6rem;
    height: 2.2rem;
    top: -0.9rem;
    left: 50%;
    transform: translate(-50%, -100%);
  }
}

.p-top-price__title-group::after {
  content: "";
  width: 16.5rem;
  height: 20.7rem;
  position: absolute;
  top: 4.3rem;
  right: -6.6rem;
  background: url(../images/deco-circle.webp) center/contain no-repeat;
}
@media screen and (max-width: 767px) {
  .p-top-price__title-group::after {
    display: none;
  }
}

.p-top-price__read1 {
  font-size: var(--font-size-3xl);
}
@media screen and (max-width: 767px) {
  .p-top-price__read1 {
    font-size: var(--font-size-xl);
  }
}

.p-top-price__read2 {
  margin-top: 0.4rem;
  font-size: var(--font-size-5xl);
}
@media screen and (max-width: 767px) {
  .p-top-price__read2 {
    font-size: var(--font-size-3xl);
  }
}

.p-top-price__read2 span {
  color: var(--color-orange);
}
@media screen and (max-width: 767px) {
  .p-top-price__read2 span {
    display: inline-block;
  }
}

.p-top-price__read3 {
  margin-top: 1rem;
  font-size: var(--font-size-3xl);
}
@media screen and (max-width: 767px) {
  .p-top-price__read3 {
    font-size: var(--font-size-xl);
  }
}

.p-top-price__main {
  margin-top: 2rem;
  padding-block: 1.6rem;
  font-weight: var(--font-weight-bold);
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-top-price__main {
    margin-top: 0;
  }
}

.p-top-price__price {
  font-size: var(--font-size-5xl);
  line-height: var(--line-height-loose);
  letter-spacing: 0.1em;
  color: var(--color-orange);
}
@media screen and (max-width: 767px) {
  .p-top-price__price {
    font-size: 2.4rem;
  }
}

.p-top-price__price span {
  font-size: 8rem;
  line-height: var(--line-height-tight);
  letter-spacing: 0.1em;
  display: inline-block;
  position: relative;
  top: 0.3rem;
}
@media screen and (max-width: 767px) {
  .p-top-price__price span {
    font-size: 5.6rem;
  }
}

.p-top-price__button.c-more-btn {
  margin-top: 0.8rem;
  margin-inline: auto;
  position: static;
}
@media screen and (max-width: 767px) {
  .p-top-price__button.c-more-btn {
    margin-top: 1.6rem;
  }
}

.p-top-price__button.c-more-btn a::after {
  display: none;
}

.p-top-price__button.c-more-btn a {
  padding: 1.2rem 5.6rem;
  font-size: var(--font-size-2xl);
  color: var(--color-white);
  background-color: var(--color-orange);
  border: 1px solid var(--color-orange);
  letter-spacing: 0.05em;
}
@media (any-hover: hover) {
  .p-top-price__button.c-more-btn a:hover {
    opacity: 1;
    color: var(--color-orange);
    background-color: var(--color-orange-hover);
  }
}

.p-top-price__text {
  margin-top: 2rem;
}

.p-top-price__text p {
  font-size: var(--font-size-2xl);
  line-height: 1.7;
  font-weight: var(--font-weight-medium);
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-top-price__text p {
    font-size: var(--font-size-lg);
  }
}

.p-top-price__text p + p {
  margin-top: 0.4rem;
}
@media screen and (max-width: 767px) {
  .p-top-price__text p + p {
    margin-top: 0;
  }
}

/*-------------------------------
p-top-ranking
-------------------------------*/
.p-top-ranking {
  margin-top: 12rem;
  padding-bottom: 8rem;
}
@media screen and (max-width: 767px) {
  .p-top-ranking {
    margin-top: 8rem;
    padding-bottom: 2.4rem;
  }
}

.p-top-ranking__title {
  margin-inline: auto;
  width: -moz-fit-content;
  width: fit-content;
  font-size: var(--font-size-xl);
  line-height: var(--line-height-loose);
  font-weight: var(--font-weight-bold);
  text-align: center;
}

.p-top-ranking__title::before {
  height: 0.5rem;
  background-image: radial-gradient(ellipse 0.25rem 0.25rem at center, var(--color-orange-light) 99%, transparent 100%); /* 楕円の形状を指定(縦横の半径) */
  background-size: 1.5rem 0.5rem; /* 横=15px間隔 / 縦=5px相当 */
}

.p-top-ranking__title .c-section-title__ja {
  position: relative;
  color: var(--color-orange);
}

.p-top-ranking__title .c-section-title__sub {
  font-size: var(--font-size-lg);
  line-height: 1.92rem;
  letter-spacing: 0;
  font-weight: var(--font-weight-medium);
  color: var(--color-text-primary);
  display: inline-block;
  position: absolute;
  top: 50%;
  left: -4.2rem;
  transform: translate(-100%, -50%);
}
@media screen and (max-width: 767px) {
  .p-top-ranking__title .c-section-title__sub {
    top: -3.6rem;
    left: 50%;
    transform: translate(-50%, -100%);
  }
}

.p-top-ranking__title .c-section-title__sub::before,
.p-top-ranking__title .c-section-title__sub::after {
  content: "";
  width: 11rem;
  height: 1.8rem;
  position: absolute;
  left: 50%;
  background: url(../images/deco-line1.webp) center/contain no-repeat;
}
@media screen and (max-width: 767px) {
  .p-top-ranking__title .c-section-title__sub::before,
  .p-top-ranking__title .c-section-title__sub::after {
    width: 1.8rem;
    height: 4.2rem;
    background: url(../images/deco-line1_sp.webp) center/contain no-repeat;
  }
}

.p-top-ranking__title .c-section-title__sub::before {
  top: -0.6rem;
  transform: translate(-50%, -100%);
}
@media screen and (max-width: 767px) {
  .p-top-ranking__title .c-section-title__sub::before {
    top: 50%;
    left: auto;
    right: -1.7rem;
    transform: translate(100%, -50%);
  }
}

.p-top-ranking__title .c-section-title__sub::after {
  content: "";
  bottom: -0.6rem;
  transform: translate(-50%, 100%) scaleY(-1);
}
@media screen and (max-width: 767px) {
  .p-top-ranking__title .c-section-title__sub::after {
    top: 50%;
    left: -1.7rem;
    transform: translate(-100%, -50%) scaleX(-1);
  }
}

.p-top-ranking__list {
  margin-top: 7.2rem;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .p-top-ranking__list {
    margin-top: 8rem;
    flex-direction: column;
    align-items: center;
    gap: 5.6rem;
  }
}

.p-top-ranking__item {
  position: relative;
}

.p-top-ranking__item::before {
  content: "";
  width: 8.8rem;
  height: 6.2rem;
  position: absolute;
  top: -4.4rem;
  left: 50%;
  z-index: 50;
  transform: translateX(-50%);
}

.p-top-ranking__item:nth-child(1)::before {
  background: url(../images/crown-no1.webp) center/contain no-repeat;
}

.p-top-ranking__item:nth-child(2)::before {
  background: url(../images/crown-no2.webp) center/contain no-repeat;
}

.p-top-ranking__item:nth-child(3)::before {
  background: url(../images/crown-no3.webp) center/contain no-repeat;
}

.p-top-ranking__item a {
  padding: 3.2rem;
  width: 32rem;
  height: 32rem;
  display: inline-block;
  border-radius: 50%;
  border: 0.1rem solid var(--color-gray);
  /* overflow: clip; */
}
@media (any-hover: hover) {
  .p-top-ranking__item a:hover {
    opacity: 1;
  }
}

.p-top-ranking__img {
  width: 100%;
  height: 22.9rem;
  transition: transform 0.2s ease-out;
}

.p-top-ranking__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  filter: drop-shadow(0 0.2rem 0.4rem rgba(0, 0, 0, 0.15));
}
@media (any-hover: hover) {
  .p-top-ranking__item a:hover .p-top-ranking__img {
    opacity: 0.7;
    transform: rotate(-4deg);
  }
}

/*-------------------------------
p-form (共通フォームスタイル)
-------------------------------*/
.p-form {
  padding: 8rem 0;
  background-color: var(--color-white);
}
@media screen and (max-width: 767px) {
  .p-form {
    padding: 3.2rem 0;
  }
}

.p-form__inner {
  max-width: 68.8rem;
}

.p-form__inner-full {
  max-width: 112.8rem;
}

.p-form__body {
  margin-top: 5.6rem;
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
}
.p-register .p-form__body, .p-edit-profile .p-form__body {
  margin-top: 2.4rem;
}
@media screen and (max-width: 767px) {
  .p-form__body {
    margin-top: 2.4rem;
  }
}

.p-form__row {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.p-form__label-wrapper {
  padding-inline: 1.6rem;
}

.p-form__label {
  font-size: var(--font-size-xl);
  font-weight: var(--font-weight-bold);
}
@media screen and (max-width: 767px) {
  .p-form__label {
    font-size: var(--font-size-lg);
    padding-inline: 0;
  }
  .p-form__label-wrapper {
    padding-inline: 0;
  }
}

.p-form__label-note {
  font-size: var(--font-size-md);
  font-weight: var(--font-weight-medium);
}

.p-form__required {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.4rem 1.2rem;
  font-size: var(--font-size-xs);
  font-weight: var(--font-weight-bold);
  color: var(--color-white);
  background-color: var(--color-gray);
  border-radius: 10rem;
  line-height: var(--line-height-snug);
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .p-form__required {
    padding: 0.15rem 0.6rem;
    font-size: 1rem;
  }
}

.p-form__fields {
  display: flex;
  gap: 1.2rem;
}
@media screen and (max-width: 767px) {
  .p-form__fields {
    flex-direction: column;
  }
}

.p-form__fields.-double input {
  flex: 1 1 0;
}

.p-form__fields.-inline {
  align-items: center;
  flex-wrap: wrap;
}

.p-form__note {
  font-size: var(--font-size-sm);
  color: var(--color-text-light);
}

.p-form__input,
.p-form__textarea {
  width: 100%;
  padding: 1.6rem 2.4rem;
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-medium);
  line-height: var(--line-height-relaxed);
  border: 3px solid var(--color-gray-border-light);
  border-radius: 4rem;
  color: var(--color-text-primary);
  background-color: var(--color-white);
}

select.p-form__input {
  appearance: none;
  background-image: url('../images/icon-arrow-down.svg');
  background-repeat: no-repeat;
  background-position: right 2.4rem center;
  background-size: 1.5rem 1rem;
  padding-right: 5rem;
  cursor: pointer;
  color: var(--color-text-primary);
}

@media screen and (max-width: 767px) {
  .p-form__input,
  .p-form__textarea {
    padding: 1.2rem 1.6rem;
    font-size: var(--font-size-base);
  }

  select.p-form__input {
    background-position: right 1.6rem center;
    padding-right: 4rem;
  }
}
.p-form__input::placeholder,
.p-form__textarea::placeholder {
  color: var(--color-gray-border-light);
}

.p-form__input:focus,
.p-form__textarea:focus {
  outline: none;
}

.p-form__textarea {
  resize: vertical;
  min-height: 16rem;
}

.p-form__note-text {
  display: flex;
  margin-top: 1.6rem;
  font-size: var(--font-size-xl);
  font-weight: var(--font-weight-bold);
  color: var(--color-text-primary);
  line-height: var(--line-height-loose);
  gap: 0.4rem;
}
@media screen and (max-width: 767px) {
  .p-form__note-text {
    font-size: var(--font-size-lg);
  }
}

.p-form__note-text::before {
  content: "※";
}

.p-form__radio-group {
  display: flex;
  flex-wrap: wrap;
  gap: 3.2rem;
  padding-top: 0.4rem;
  margin-bottom: 3.2rem;
}
@media screen and (max-width: 767px) {
  .p-form__radio-group {
    gap: 1.6rem;
    margin-bottom: 1.6rem;
  }
}

.p-form__radio-label {
  display: flex;
  align-items: center;
  gap: 1rem;
  cursor: pointer;
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-medium);
  line-height: var(--line-height-loose);
  color: var(--color-text-primary);
}
@media screen and (max-width: 767px) {
  .p-form__radio-label {
    font-size: var(--font-size-base);
  }
}

.p-form__radio {
  display: none;
}

.p-form__radio-label {
  position: relative;
}

.p-form__radio-label::before {
  content: "";
  display: block;
  width: 1.6rem;
  height: 1.6rem;
  min-width: 1.6rem;
  background: var(--color-white);
  border: 1px solid var(--color-gray);
  border-radius: 50%;
  flex-shrink: 0;
  margin: 0;
  transition: border-color 0.2s ease;
}

.p-form__radio-label:has(.p-form__radio:checked)::before {
  border-color: var(--color-gray);
  background: var(--color-white);
}

.p-form__radio-label:has(.p-form__radio:checked)::after {
  content: "";
  position: absolute;
  left: 0.4rem;
  top: 50%;
  transform: translateY(-50%);
  width: 0.8rem;
  height: 0.8rem;
  background: var(--color-gray);
  border-radius: 50%;
  display: block;
}

.p-form__radio-label:hover::before {
  border-color: var(--color-gray);
}

.p-form__radio-label:has(.p-form__radio:focus-visible)::before {
  outline: 2px solid var(--color-yellow);
  outline-offset: 2px;
}

@media screen and (max-width: 767px) {
  .p-form__radio-label::before {
    width: 1.4rem;
    height: 1.4rem;
    min-width: 1.4rem;
  }

  .p-form__radio-label:has(.p-form__radio:checked)::after {
    left: 0.3rem;
    width: 0.8rem;
    height: 0.8rem;
  }
}

.p-form__radio-label span {
  flex: 1;
}

.p-form__checkbox-label, #contact-form .p-form__checkbox-label label {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  cursor: pointer;
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-medium);
  line-height: var(--line-height-loose);
  color: var(--color-text-primary);
}
@media screen and (max-width: 767px) {
  .p-form__checkbox-label, #contact-form .p-form__checkbox-label label {
    font-size: var(--font-size-base);
  }
}

.p-form__checkbox {
  width: 2rem;
  height: 2rem;
  min-width: 2rem;
  cursor: pointer;
  accent-color: var(--color-text-primary);
  flex-shrink: 0;
  margin: 0;
  margin-top: 0.2rem;
}
@media screen and (max-width: 767px) {
  .p-form__checkbox {
    width: 1.8rem;
    height: 1.8rem;
    min-width: 1.8rem;
  }
}

.p-form__checkbox-label span {
  flex: 1;
}

.p-form__actions {
  margin: 4.8rem auto 0;
  text-align: center;
}

.p-form__submit-btn {
  cursor: pointer;
  padding-block: 1.6rem;
  width: 32rem;
  max-width: 100%;
  font-size: var(--font-size-lg);
  line-height: var(--line-height-loose);
  font-weight: var(--font-weight-bold);
  background-color: var(--color-yellow);
  border: none;
  border-radius: 10rem;
  text-align: center;
  transition: 0.3s ease-out;
  text-decoration: none;
  display: inline-block;
}
.p-form__submit-btn.-orange {
  background-color: var(--color-orange);
  color: var(--color-white);
  border: 1px solid var(--color-orange);
}
.p-form__submit-btn.-beige {
  background-color: #FFE5DB;
  color: var(--color-text-primary);
  border: 1px solid #FFE5DB;
}
.p-form__submit-btn.-gray {
  background-color: #E5E1DA;
  color: var(--color-text-primary);
  border: 1px solid #E5E1DA;
}
@media (any-hover: hover) {
  .p-form__submit-btn:hover { 
    opacity: 1;
  }
  .p-form__submit-btn.-orange:hover {
    background-color: var(--color-orange-hover);
    color: var(--color-orange);
  }
  .p-form__submit-btn.-beige:hover {
    background-color: var(--color-white);
  }
  .p-form__submit-btn.-gray:hover {
    background-color: var(--color-white);
  }
}
.p-form__checkbox-label a {
  color: var(--color-text-primary);
  transition: 0.3s;
}

@media (any-hover: hover) {
  .p-form__checkbox-label a:hover {
    opacity: 0.8;
  }
}

/*-------------------------------
p-register (アカウント作成)
-------------------------------*/
.p-register__title-wrapper {
  margin-bottom: 2.4rem;
  text-align: right;
}

.p-register__title {
  font-size: var(--font-size-3xl);
  font-weight: var(--font-weight-bold);
  line-height: var(--line-height-loose);
  color: var(--color-text-primary);
  text-align: left;
  margin-bottom: 0.8rem;
}
@media screen and (max-width: 767px) {
  .p-register__title {
    font-size: var(--font-size-2xl);
  }
}

.p-register__login-link {
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-bold);
  color: var(--color-text-primary);
  text-decoration: underline;
}
@media screen and (max-width: 767px) {
  .p-register__login-link {
    font-size: var(--font-size-base);
  }
}

@media (any-hover: hover) {
  .p-register__login-link:hover {
    opacity: 0.8;
  }
}

.p-register__text {
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-medium);
  line-height: var(--line-height-loose);
  color: var(--color-text-primary);
  margin-top: 2.4rem;
  margin-bottom: 5.6rem;
}
@media screen and (max-width: 767px) {
  .p-register__text {
    margin-bottom: 2.4rem;
  }
}

/*-------------------------------
p-contact
-------------------------------*/
.p-contact__title {
  margin-bottom: 5.6rem;
}

.p-contact__text-description {
  text-align: center;
  font-size: var(--font-size-lg);
  line-height: var(--line-height-loose);
  font-weight: var(--font-weight-medium);
  color: var(--color-text-primary);
  margin-bottom: 5.6rem;
}

/* CF7 スタイル調整 */
.p-form .wpcf7-form {
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
}

.p-form .wpcf7-form-control-wrap {
  display: block;
}

.p-form .wpcf7-form-control-wrap input[type="text"],
.p-form .wpcf7-form-control-wrap input[type="email"] {
  width: 100%;
  padding: 1.6rem 2.4rem;
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-medium);
  line-height: var(--line-height-relaxed);
  border: 3px solid var(--color-gray-border-light);
  border-radius: 4rem;
  color: var(--color-text-primary);
  background-color: var(--color-white);
}
@media screen and (max-width: 767px) {
  .p-form .wpcf7-form-control-wrap input[type="text"],
  .p-form .wpcf7-form-control-wrap input[type="email"] {
    padding: 1.2rem 1.6rem;
    font-size: var(--font-size-base);
  }
}

.p-form .wpcf7-form-control-wrap input::placeholder,
.p-form .wpcf7-form-control-wrap textarea::placeholder {
  color: var(--color-gray-border-light);
}

.p-form .wpcf7-form-control-wrap input:focus,
.p-form .wpcf7-form-control-wrap textarea:focus {
  outline: none;
}

.p-form .wpcf7-form-control-wrap textarea {
  width: 100%;
  padding: 1.6rem 2.4rem;
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-medium);
  line-height: var(--line-height-relaxed);
  border: 3px solid var(--color-gray-border-light);
  border-radius: 2rem;
  color: var(--color-text-primary);
  background-color: var(--color-white);
  resize: vertical;
  min-height: 16rem;
}
@media screen and (max-width: 767px) {
  .p-form .wpcf7-form-control-wrap textarea {
    padding: 1.2rem 1.6rem;
    font-size: var(--font-size-base);
  }
}

.p-form .wpcf7-form .wpcf7-radio {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.p-form .wpcf7-form .wpcf7-radio .wpcf7-list-item {
  margin: 0;
}

.p-form .wpcf7-form .wpcf7-radio .wpcf7-list-item label {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  cursor: pointer;
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-medium);
}
@media screen and (max-width: 767px) {
  .p-form .wpcf7-form .wpcf7-radio .wpcf7-list-item label {
    font-size: var(--font-size-base);
  }
}

.p-form .wpcf7-form input[type="submit"] {
  padding: 1.6rem 6.4rem;
  font-size: var(--font-size-lg);
  line-height: var(--line-height-loose);
  font-weight: var(--font-weight-bold);
  background-color: var(--color-yellow);
  border: 1px solid var(--color-yellow);
  border-radius: 10rem;
  color: var(--color-text-primary);
  text-align: center;
  cursor: pointer;
  transition: 0.3s ease-out;
}
@media screen and (max-width: 767px) {
  .p-form .wpcf7-form input[type="submit"] {
    padding: 0.8rem 2.4rem;
  }
}
@media (any-hover: hover) {
  .p-form .wpcf7-form input[type="submit"]:hover {
    background-color: var(--color-yellow-hover);
    opacity: 1;
  }
}

.p-form .wpcf7-form .wpcf7-response-output {
  border-radius: 1.2rem;
  padding: 1.6rem 2.4rem;
  font-weight: var(--font-weight-bold);
  text-align: center;
}

.p-form .wpcf7-form .wpcf7-not-valid-tip {
  color: #c62828;
  font-size: var(--font-size-sm);
  margin-top: 0.4rem;
  padding-inline: 1.6rem;
}

.wpcf7-spinner {
  display: none;
}

/*-------------------------------
p-register
-------------------------------*/
.p-form-register__checkbox-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.8rem;
  font-size: var(--font-size-md);
  font-weight: var(--font-weight-medium);
  color: var(--color-text-primary);
  margin-top: 4rem;
}
@media screen and (max-width: 767px) {
  .p-register .p-form-register__checkbox-row {
    margin-top: 2.4rem;
  }
}

.p-register .p-form__actions {
  margin: 4rem auto 0;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-register .p-form__actions {
    margin-top: 2.4rem;
  }
}

.p-register #swpm_message {
  margin-bottom: 2.4rem;
  padding: 1.6rem 2.4rem;
  border-radius: 1.2rem;
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-medium);
  line-height: var(--line-height-xl);
}

.p-register #swpm_message.swpm_success {
  background-color: #e8f5e9;
  color: #2e7d32;
  font-weight: var(--font-weight-bold);
}

.p-register #swpm_message.swpm_error {
  background-color: #fce4ec;
  color: #c62828;
}

.p-register #swpm_message ul {
  margin: 0.8rem 0 0;
  padding: 0;
  list-style: none;
}

.p-register #swpm_message ul li + li {
  margin-top: 1.2rem;
}

.p-register #swpm_message .swpm_error_label {
  display: block;
  font-weight: var(--font-weight-bold);
  margin-bottom: 0.2rem;
}

/*-------------------------------
p-login (ログイン)
-------------------------------*/
.p-login__title {
  font-size: var(--font-size-3xl);
  font-weight: var(--font-weight-bold);
  line-height: var(--line-height-loose);
  color: var(--color-text-primary);
  margin-bottom: 2.4rem;
}
@media screen and (max-width: 767px) {
  .p-login__title {
    font-size: var(--font-size-2xl);
  }
}

.p-login__forgot-password {
  text-align: right;
  margin-top: 0.8rem;
}

.p-login__forgot-link {
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-bold);
  color: var(--color-text-primary);
  text-decoration: underline;
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .p-login__forgot-link {
    font-size: var(--font-size-xs);
  }
}

@media (any-hover: hover) {
  .p-login__forgot-link:hover {
    opacity: 0.8;
  }
}

.p-login__actions-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2.4rem;
  margin-top: 4rem;
}
.p-login__actions-row .p-form__checkbox-label span {
  font-weight: var(--font-weight-bold);
}
@media screen and (max-width: 767px) {
  .p-login__actions-row {
    flex-direction: column;
    gap: 1.6rem;
    margin-top: 3.2rem;
  }
}

.p-login__register-action {
  margin-top: 3.2rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-login__register-action {
    margin-top: 2.4rem;
  }
}

.p-login__register-btn {
  display: inline-block;
  width: auto;
  padding: 1.6rem 9.6rem;
}
@media screen and (max-width: 767px) {
  .p-login__register-btn {
    width: 100%;
    padding: 1.6rem 2.4rem;
  }
}

.p-login__text {
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-medium);
  line-height: var(--line-height-loose);
  color: var(--color-text-primary);
  margin-bottom: 5.6rem;
}
@media screen and (max-width: 767px) {
  .p-login__text {
    margin-bottom: 2.4rem;
  }
}

/*-------------------------------
p-edit-profile (プロフィール編集)
-------------------------------*/
.p-edit-profile #swpm_message {
  margin-bottom: 2.4rem;
  padding: 1.6rem 2.4rem;
  border-radius: 1.2rem;
  font-weight: var(--font-weight-bold);
}

.p-edit-profile #swpm_message.swpm_success {
  background-color: #e8f5e9;
  color: #2e7d32;
}

.p-edit-profile #swpm_message.swpm_error {
  background-color: #fce4ec;
  color: #c62828;
}

.p-form__static-value {
  padding: 1.6rem 2.4rem;
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-medium);
  line-height: var(--line-height-relaxed);
  color: var(--color-text-light);
  background-color: var(--color-bg-gray, #f5f5f5);
  border: 3px solid var(--color-gray-border-light);
  border-radius: 4rem;
}
@media screen and (max-width: 767px) {
  .p-form__static-value {
    padding: 1.2rem 1.6rem;
    font-size: var(--font-size-base);
  }
}

.p-edit-profile__actions {
  margin-top: 2.4rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-edit-profile__actions {
    margin-top: 2.4rem;
  }
}

.p-edit-profile__delete-account {
  margin-top: 8rem;
}
@media screen and (max-width: 767px) {
  .p-edit-profile__delete-account {
    margin-top: 6.4rem;
  }
}

.p-edit-profile__delete-account-title {
  font-size: var(--font-size-2xl);
  font-weight: var(--font-weight-bold);
  line-height: var(--line-height-loose);
  color: var(--color-text-primary);
  margin-bottom: 1.6rem;
}

.p-edit-profile__delete-account-text, .p-edit-profile__delete-account-link {
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-bold);
  line-height: var(--line-height-loose);
  color: var(--color-text-primary);
}

.p-edit-profile__delete-account-text {
  display: flex;
}
.p-edit-profile__delete-account-text::before {
  content: '※';
}

.p-edit-profile__delete-account-link a {
  padding-left: 1em;
  text-decoration: underline;
  transition: 0.3s;
}
@media (any-hover: hover) {
  .p-edit-profile__delete-account-link a:hover {
    opacity: 0.8;
  }
}

.p-edit-profile__text {
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-medium);
  line-height: var(--line-height-loose);
  color: var(--color-text-primary);
  margin-bottom: 5.6rem;
}
@media screen and (max-width: 767px) {
  .p-edit-profile__text {
    margin-bottom: 2.4rem;
  }
}

/*-------------------------------
p-password-reset (パスワードリセット)
-------------------------------*/
.p-password-reset__message {
  margin-bottom: 2.4rem;
}

.p-password-reset__message .swpm_success {
  padding: 1.6rem 2.4rem;
  background-color: #e8f5e9;
  border-radius: 1.2rem;
  color: #2e7d32;
  font-weight: var(--font-weight-bold);
}

.p-password-reset__message .swpm_error {
  padding: 1.6rem 2.4rem;
  background-color: #fce4ec;
  border-radius: 1.2rem;
  color: #c62828;
  font-weight: var(--font-weight-bold);
}

/*-------------------------------
p-mypage (マイページ)
-------------------------------*/
.p-mypage {
  padding: 8rem 0;
  background-color: var(--color-white);
}
@media screen and (max-width: 767px) {
  .p-mypage {
    padding: 3.2rem 0;
  }
}

.p-mypage__title {
  font-size: var(--font-size-3xl);
  font-weight: var(--font-weight-bold);
  line-height: var(--line-height-loose);
  color: var(--color-text-primary);
  margin-bottom: 2.4rem;
}

.p-mypage__content {
  margin-top: 5.6rem;
  display: flex;
  gap: 3.2rem;
  align-items: flex-start;
}
@media screen and (max-width: 767px) {
  .p-mypage__content {
    margin-top: 2.4rem;
    flex-direction: column;
    gap: 4rem;
  }
}

.p-mypage__left {
  flex: 1;
}
@media screen and (max-width: 767px) {
  .p-mypage__left {
    width: 100%;
  }
}

.p-mypage__right {
  width: 51.2rem;
  flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .p-mypage__right {
    width: 100%;
  }
}

.p-mypage__info {
  margin-bottom: 5.6rem;
}
@media screen and (max-width: 767px) {
  .p-mypage__info {
    margin-bottom: 3.2rem;
  }
}

.p-mypage__info-list {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}
@media screen and (max-width: 767px) {
  .p-mypage__info-list {
    gap: 2.4rem;
  }
}

.p-mypage__info-item {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
@media screen and (max-width: 767px) {
  .p-mypage__info-item {
    gap: 0.4rem;
  }
}

.p-mypage__info-label {
  font-size: var(--font-size-xl);
  font-weight: var(--font-weight-bold);
  line-height: var(--line-height-loose);
  color: var(--color-text-primary);
}
@media screen and (max-width: 767px) {
  .p-mypage__info-label {
    font-size: var(--font-size-base);
  }
}

.p-mypage__info-value {
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-bold);
  line-height: var(--line-height-loose);
  color: #A69782;
}
@media screen and (max-width: 767px) {
  .p-mypage__info-value {
    font-size: var(--font-size-base);
  }
}

.p-mypage__not-logged-in p, .p-contents__not-logged-in p {
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-medium);
  line-height: var(--line-height-loose);
  color: var(--color-text-primary);
  margin-bottom: 5.6rem;
}

@media screen and (max-width: 767px) {
  .p-mypage__not-logged-in p, .p-contents__not-logged-in p {
    margin-bottom: 4rem;
  }
}

.p-mypage__actions, .p-contents__actions {
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
}
@media screen and (max-width: 767px) {
  .p-mypage__actions, .p-contents__actions {
    gap: 1.6rem;
  }
}

/* Subscription box */
.p-mypage__subscription {
  background: var(--color-cream-bg-light);
  border-radius: 2.4rem;
  padding: 2.4rem;
  text-align: center;
  box-shadow: 0 0 0.4rem 0 rgba(0, 0, 0, 0.2);
}

.p-mypage__subscription-title {
  font-size: var(--font-size-2xl);
  font-weight: var(--font-weight-bold);
  line-height: var(--line-height-loose);
  color: var(--color-orange);
  padding-block: 1.6rem 0.8rem;
  margin-bottom: 1.6rem;
}
@media screen and (max-width: 767px) {
  .p-mypage__subscription-title {
    font-size: var(--font-size-xl);
  }
}

.p-mypage__subscription-info {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.8rem;
  margin-bottom: 1.6rem;
  background: var(--color-white);
  padding: 1.6rem 2.4rem;
  border-radius: 1.6rem;
  color: var(--color-orange);
  letter-spacing: 0.1em;
}
.p-mypage__subscription-info-text {
  display: inline-block;
  position: relative;
  z-index: 0;
}
.p-mypage__subscription-info-text::after {
  content: '';
  position: absolute;
  bottom: 0.2rem;
  left: 0;
  width: 100%;
  height: 8px;
  background: var(--color-yellow);
  display: inline;
  z-index: -1;
}

.p-mypage__subscription-label {
  font-size: var(--font-size-2xl);
  font-weight: var(--font-weight-bold);
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .p-mypage__subscription-label {
    font-size: var(--font-size-xl);
  }
}

.p-mypage__subscription-amount {
  font-size: 5.4rem;
  font-weight: var(--font-weight-bold);
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .p-mypage__subscription-amount {
    font-size: 4.8rem;
  }
}

.p-mypage__subscription-unit {
  font-size: var(--font-size-2xl);
  font-weight: var(--font-weight-bold);
  margin-left: 0.4rem;
}
@media screen and (max-width: 767px) {
  .p-mypage__subscription-unit {
    font-size: var(--font-size-xl);
  }
}

.p-mypage__subscription-note {
  font-size: var(--font-size-md);
  font-weight: var(--font-weight-bold);
  line-height: var(--line-height-loose);
  color: var(--color-text-primary);
  margin-bottom: 1.6rem;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .p-mypage__subscription-note {
    font-size: var(--font-size-base);
  }
}

.p-mypage__subscription-terms {
  font-size: var(--font-size-md);
  font-weight: var(--font-weight-bold);
  line-height: var(--line-height-loose);
  color: var(--color-text-primary);
  margin-top: 2.4rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-mypage__subscription-terms {
    font-size: var(--font-size-base);
  }
}

.p-mypage__subscription-terms a {
  text-decoration: underline;
}

/* Campaign version */
.p-mypage__subscription-campaign {
  font-size: var(--font-size-xl);
  font-weight: var(--font-weight-bold);
  line-height: var(--line-height-loose);
  color: var(--color-orange);
  margin-bottom: 0.8rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-mypage__subscription-campaign {
    font-size: var(--font-size-lg);
  }
}

.p-mypage__subscription-highlight {
  background-color: var(--color-white);
  border-radius: 1.2rem;
  padding: 1.6rem 2.4rem;
  margin-bottom: 2.4rem;
  text-align: center;
}

.p-mypage__subscription-highlight-text {
  font-size: var(--font-size-5xl);
  font-weight: var(--font-weight-bold);
  line-height: 1.2;
  color: var(--color-orange);
  padding: 0.2rem 0;
}
@media screen and (max-width: 767px) {
  .p-mypage__subscription-highlight-text {
    font-size: var(--font-size-4xl);
  }
}

/* Subscription buttons (SWPM shortcode override) */
.p-mypage__subscription-buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2rem;
  margin-top: 1.6rem;
}
.p-mypage__subscription-buttons .swpm-button-wrapper {
  width: 100%;
  text-align: center;
}
.p-mypage__subscription-buttons button.stripe-button-el,
.p-mypage__subscription-buttons input[type="submit"].stripe-button-el,
.p-mypage__subscription-buttons button.stripe-button-el:focus,
.p-mypage__subscription-buttons input[type="submit"].stripe-button-el:focus,
.p-mypage__subscription-buttons button.stripe-button-el:active,
.p-mypage__subscription-buttons input[type="submit"].stripe-button-el:active {
  all: revert;
  cursor: pointer;
  padding: 1.6rem 0;
  width: 32rem;
  max-width: 100%;
  font-family: inherit;
  font-size: var(--font-size-lg);
  line-height: var(--line-height-loose);
  font-weight: var(--font-weight-bold);
  letter-spacing: 0.1em;
  background-color: var(--color-orange);
  color: var(--color-white);
  border: 1px solid var(--color-orange);
  border-radius: 10rem;
  text-align: center;
  transition: 0.3s ease-out;
  -webkit-appearance: none;
  appearance: none;
}
.p-mypage__subscription-buttons .stripe-button-el span,
.p-mypage__subscription-buttons .stripe-button-el:disabled span,
.p-mypage__subscription-buttons .stripe-button-el:not(:disabled):active span,
.p-mypage__subscription-buttons .stripe-button-el.active span,
.p-mypage__subscription-buttons .stripe-button-el:focus span {
  all: revert;
  color: inherit;
}
@media (any-hover: hover) {
  .p-mypage__subscription-buttons button.stripe-button-el:hover,
  .p-mypage__subscription-buttons input[type="submit"].stripe-button-el:hover {
    background-color: var(--color-orange-hover);
    color: var(--color-orange);
  }
}

/* Subscription portal (active subscriber) */
.p-mypage__subscription-portal {
  margin-top: 1.6rem;
  text-align: center;
}
.amitarou-subscription-cancel-notice {
  font-size: var(--font-size-md);
  font-weight: var(--font-weight-bold);
  color: #c0392b;
  margin-bottom: 1.2rem;
}
.amitarou-stripe-portal-link {
  cursor: pointer;
  padding-block: 1.6rem;
  width: 32rem;
  max-width: 100%;
  font-size: var(--font-size-lg);
  line-height: var(--line-height-loose);
  font-weight: var(--font-weight-bold);
  background-color: var(--color-orange);
  color: var(--color-white);
  border: none;
  border-radius: 10rem;
  text-align: center;
  transition: 0.3s ease-out;
  text-decoration: none;
  display: inline-block;
}
@media (any-hover: hover) {
  .amitarou-stripe-portal-link:hover {
    opacity: 0.8;
  }
}



/*-------------------------------
p-delete-account (アカウント削除)
-------------------------------*/
.p-delete-account .p-form__body {
  margin-top: 2.4rem;
}

.p-delete-account__text {
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-medium);
  line-height: var(--line-height-loose);
  color: var(--color-text-primary);
}

.p-delete-account .swpm_error {
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-bold);
  margin-top: 1.6rem;
  padding: 1.6rem 2.4rem;
  background-color: #fce4ec;
  border-radius: 1.2rem;
  color: #c62828;
}

#account_delete_confirm_pass {
  border-radius: 0;
}

.p-delete-account .p-form__row {
  flex-direction: row;
  align-items: center;
  gap: 0.8rem;
  padding-block: 1.6rem;
}

.p-delete-account .p-form__label-wrapper {
  padding-inline: 0;
  flex-shrink: 0;
}

.p-delete-account .p-form__actions {
  margin-top: 0;
  margin-bottom: 4rem;
}

.p-delete-account__back {
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-medium);
  line-height: var(--line-height-loose);
  color: var(--color-text-primary);
}


/*-------------------------------
p-privacy (プライバシーポリシー)
-------------------------------*/
.p-privacy {
  padding: 8rem 0;
  background-color: var(--color-white);
}
@media screen and (max-width: 767px) {
  .p-privacy {
    padding: 3.2rem 0;
  }
}

.p-privacy__inner {
  max-width: 68.8rem;
}

.p-privacy__title {
  margin-bottom: 5.6rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-privacy__title {
    margin-bottom: 3.2rem;
  }
}

.p-privacy__content {
  display: flex;
  flex-direction: column;
  gap: 8rem;
}
@media screen and (max-width: 767px) {
  .p-privacy__content {
    gap: 4rem;
  }
}

.p-privacy__intro {
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-medium);
  line-height: var(--line-height-2xl);
  color: var(--color-text-primary);
}
@media screen and (max-width: 767px) {
  .p-privacy__intro {
    font-size: var(--font-size-base);
  }
}

.p-privacy__section {
  display: flex;
  flex-direction: column;
  gap: 1.6em;
}
@media screen and (max-width: 767px) {
  .p-privacy__section {
    gap: 0.8rem;
  }
}

.p-privacy__section-title {
  font-size: var(--font-size-xl);
  font-weight: var(--font-weight-bold);
  line-height: var(--line-height-2xl);
  color: var(--color-text-primary);
}
@media screen and (max-width: 767px) {
  .p-privacy__section-title {
    font-size: var(--font-size-xl);
  }
}

.p-privacy__section-text {
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-medium);
  line-height: var(--line-height-2xl);
  color: var(--color-text-primary);
}
@media screen and (max-width: 767px) {
  .p-privacy__section-text {
    font-size: var(--font-size-base);
  }
}

.p-privacy__section-text a {
  color: var(--color-text-primary);
  text-decoration: underline;
}
@media (any-hover: hover) {
  .p-privacy__section-text a:hover {
    opacity: 0.8;
  }
}

.p-privacy__terms {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}

.p-privacy__terms-title {
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-bold);
  line-height: var(--line-height-2xl);
  color: var(--color-text-primary);
}
@media screen and (max-width: 767px) {
  .p-privacy__terms-title {
    font-size: var(--font-size-base);
  }
}

.p-privacy__terms-description {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-medium);
  line-height: var(--line-height-2xl);
  color: var(--color-text-primary);
}
@media screen and (max-width: 767px) {
  .p-privacy__terms-description {
    font-size: var(--font-size-base);
  }
}

.p-privacy__terms-description + .p-privacy__terms-title {
  margin-top: 3.2rem;
}

.p-privacy__terms-list {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  padding-left: 2.4rem;
  list-style-type: decimal;
}

.p-privacy__terms-list li {
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-medium);
  line-height: var(--line-height-2xl);
  color: var(--color-text-primary);
  margin-left: 1em;
  padding-left: 0.8rem;
}
@media screen and (max-width: 767px) {
  .p-privacy__terms-list li {
    font-size: var(--font-size-base);
    margin-left: 0;
  }
}

/*-------------------------------
p-legal__terms（特定商取引法）
-------------------------------*/
.p-legal__terms {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 3.2rem;
  row-gap: 4.8rem;
}

.p-legal__terms-title {
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-bold);
  line-height: var(--line-height-2xl);
  color: var(--color-text-primary);
}

.p-legal__terms-description {
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-medium);
  line-height: var(--line-height-2xl);
  color: var(--color-text-primary);
}

.p-legal__terms-description p {
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-medium);
  line-height: var(--line-height-2xl);
  color: var(--color-text-primary);
}

@media screen and (max-width: 767px) {
  .p-legal__terms {
    grid-template-columns: 1fr;
    row-gap: 0.8rem;
  }

  .p-legal__terms > dt + dd {
    margin-bottom: 2.4rem;
  }

  .p-legal__terms > dd:last-of-type {
    margin-bottom: 0;
  }

  .p-legal__terms-title {
    font-size: var(--font-size-base);
  }

  .p-legal__terms-description {
    font-size: var(--font-size-base);
  }

  .p-legal__terms-description p {
    font-size: var(--font-size-base);
  }
}

.p-privacy__list,
.p-privacy__ordered-list {
  margin-left: 2.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  font-size: var(--font-size-lg);
  line-height: var(--line-height-loose);
  font-weight: var(--font-weight-normal);
  color: var(--color-text-primary);
}
@media screen and (max-width: 767px) {
  .p-privacy__list,
  .p-privacy__ordered-list {
    margin-left: 1.6rem;
    font-size: var(--font-size-base);
    gap: 0.6rem;
  }
}

.p-privacy__list li {
  list-style-type: disc;
}

.p-privacy__ordered-list li {
  list-style-type: decimal;
}

/*-------------------------------
p-download
-------------------------------*/
.p-download__hero {
  padding: 8rem 0;
  background: var(--color-white);
}
@media screen and (max-width: 767px) {
  .p-download__hero {
    padding: 3.2rem 0;
  }
}

.p-download__title {
  margin-bottom: 5.6rem;
}

.p-download__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5.6rem;
}
@media screen and (max-width: 767px) {
  .p-download__content {
    display: block;
  }
}

.p-download__left {
  width: 49.6rem;
}
@media screen and (max-width: 767px) {
  .p-download__left {
    width: 100%;
  }
}

.p-download__left-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.4rem;
  background: var(--color-bg-light);
  padding: 5.6rem 4rem 4rem;
  position: relative;
}

.p-download__eyecatch {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 37rem;
}
@media screen and (max-width: 767px) {
  .p-download__eyecatch {
    min-height: auto;
  }
}

.p-download__eyecatch img {
  width: 42rem;
  max-width: 100%;
  max-height: 42rem;
  object-fit: contain;
  margin: 0 auto;
  filter: drop-shadow(0 0.2rem 0.4rem rgba(0, 0, 0, 0.15));
}

.p-download__favorite {
  position: absolute;
  top: 1.6rem;
  right: 1.6rem;
  width: 5.2rem;
  height: 5.2rem;
  display: grid;
  place-items: center;
  border: none;
  border-radius: 50%;
  background-color: var(--color-white);
  border: 1px solid var(--color-gray);
  transition: 0.3s ease-out;
  cursor: pointer;
  z-index: 10;
}
.p-download__favorite.is-active,
.p-download__favorite.active {
  background-color: var(--color-orange-light);
}
.p-download__favorite.is-active img,
.p-download__favorite.active img {
  content: url("../images/heart-mark-hover.svg");
}

.p-download__favorite img {
  width: 1.6rem;
}

.p-download__thumbnails {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.6rem;
}

.p-download__thumbnails li {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 8rem;
  height: 8rem;
  border: 1px solid var(--color-gray);
  border-radius: 0.4rem;
  background-color: var(--color-white);
  cursor: pointer;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.p-download__thumbnails li:hover {
  border-color: var(--color-orange-light);
  box-shadow: 0 2px 8px rgba(255, 165, 131, 0.3);
}

.p-download__thumbnails img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  cursor: pointer;
}

.p-download__expand {
  width: 100%;
  text-align: center;
  padding-top: 1.6rem;
}

.p-download__expand a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 30rem;
  max-width: 100%;
  height: 5rem;
  margin-inline: auto;
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-medium);
  color: var(--color-text-primary);
  background: var(--color-white);
  border: 1px solid var(--color-gray);
  border-radius: 10rem;
  transition: 0.3s ease-out;
}
@media (any-hover: hover) {
  .p-download__expand a:hover {
    color: var(--color-white);
    background-color: var(--color-orange-light);
  }
}

.p-download__right {
  width: 52.8rem;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 767px) {
  .p-download__right {
    width: 100%;
  }
}

.p-download__category {
  font-size: var(--font-size-sm);
  letter-spacing: 0.1em;
  font-weight: var(--font-weight-bold);
  color: var(--color-text-secondary);
}

.p-download__description {
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-medium);
  line-height: var(--line-height-2xl);
  color: var(--color-text-primary);
  display: grid;
  padding: 1.6rem;
  position: relative;
}
.p-download__description::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 0.2rem;
  background-image: radial-gradient(ellipse 0.15rem 0.1rem at center, var(--color-gray) 99%, transparent 100%);
  background-size: 1.5rem 0.2rem;
  background-repeat: repeat-x;
  background-position: left center;
}

.p-download__meta {
  display: flex;
  flex-direction: column;
}

.p-download__meta-row {
  padding: 1.6rem 1.6rem;
  display: flex;
  align-items: center;
  gap: 2.4rem;
  flex-wrap: wrap;
  position: relative;
}
.p-download__meta-row::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 0.2rem;
  background-image: radial-gradient(ellipse 0.15rem 0.1rem at center, var(--color-gray) 99%, transparent 100%);
  background-size: 1.5rem 0.2rem;
  background-repeat: repeat-x;
  background-position: left center;
}

.p-download__meta-label {
  min-width: 9.6rem;
  font-weight: var(--font-weight-bold);
  font-size: var(--font-size-md);
  color: var(--color-text-primary);
}

.p-download__meta-value {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-bold);
}

.p-download__meta-value + .p-download__meta-value::before {
  content: "/";
  opacity: 1;
}

.p-download__meta-value .-disabled {
  opacity: .2;
}

.p-download__buttons {
  padding: 1.6rem;
}

.p-download__buttons-title {
  font-weight: var(--font-weight-bold);
  font-size: var(--font-size-xl);
  margin-bottom: 2.4rem;
  text-align: center;
}

.p-download__button-list {
  display: flex;
  gap: 1.6rem;
  flex-wrap: wrap;
}

.p-download__button {
  flex: 1 1 15rem;
  width: 15rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1.6rem;
  padding: 0.8rem 1.6rem;
  border-radius: 999px;
  border: 1px solid var(--color-gray);
  background: var(--color-white);
  font-size: var(--font-size-xl);
  font-weight: var(--font-weight-bold);
  color: var(--color-text-primary);
  transition: 0.2s ease;
}

.p-download__button img {
  width: 2rem;
  height: 2rem;
  object-fit: contain;
}

@media (any-hover: hover) {
  .p-download__button:hover {
    opacity: 0.7;
    transform: translateY(-1px);
  }
}

.p-download__button.-canva {
  background: var(--color-blue-light);
}

.p-download__button.-ppt {
  background: var(--color-pink-light);
}

.p-download__button.-pdf {
  background: var(--color-green-light);
}

/* ----------------------------------------
 * 非会員向けCTA（会員登録促進）
 * ---------------------------------------- */
.p-member-cta {
  padding: 1.6rem;
}

.p-member-cta__inner {
  background-color: var(--color-cream-bg);
  border: 2px solid var(--color-cream-light);
  border-radius: 1.6rem;
  padding: 4rem 2.4rem;
  text-align: center;
}

.p-member-cta__title {
  font-size: var(--font-size-2xl);
  font-weight: var(--font-weight-bold);
  color: var(--color-text-primary);
  line-height: var(--line-height-2xl);
  margin-bottom: 1.2rem;
}

.p-member-cta__text {
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-medium);
  color: var(--color-text-secondary);
  margin-bottom: 3.2rem;
}

.p-member-cta__buttons {
  display: flex;
  gap: 1.6rem;
  justify-content: center;
  flex-wrap: wrap;
}

.p-member-cta__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 18rem;
  padding: 1.2rem 3.2rem;
  border-radius: 999px;
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-bold);
  text-decoration: none;
  transition: 0.2s ease;
}

.p-member-cta__button.-register {
  color: var(--color-white);
  background-color: var(--color-orange);
}

.p-member-cta__button.-login {
  color: var(--color-text-primary);
  background-color: var(--color-yellow);
}

@media (any-hover: hover) {
  .p-member-cta__button:hover {
    opacity: 0.8;
    transform: translateY(-1px);
  }
}

/* Stripe決済ボタンのスタイル上書き（マイページと同じパターン） */
.p-member-cta__buttons .swpm-button-wrapper {
  width: 100%;
  text-align: center;
}

.p-member-cta__buttons button.stripe-button-el,
.p-member-cta__buttons input[type="submit"].stripe-button-el,
.p-member-cta__buttons button.stripe-button-el:focus,
.p-member-cta__buttons input[type="submit"].stripe-button-el:focus,
.p-member-cta__buttons button.stripe-button-el:active,
.p-member-cta__buttons input[type="submit"].stripe-button-el:active {
  all: revert;
  cursor: pointer;
  min-width: 18rem;
  padding: 1.2rem 3.2rem;
  font-family: inherit;
  font-size: var(--font-size-lg);
  line-height: var(--line-height-loose);
  font-weight: var(--font-weight-bold);
  letter-spacing: 0.1em;
  background-color: var(--color-orange);
  color: var(--color-white);
  border: none;
  border-radius: 999px;
  text-align: center;
  transition: 0.2s ease;
  -webkit-appearance: none;
  appearance: none;
}

.p-member-cta__buttons .stripe-button-el span,
.p-member-cta__buttons .stripe-button-el:disabled span,
.p-member-cta__buttons .stripe-button-el:not(:disabled):active span,
.p-member-cta__buttons .stripe-button-el.active span,
.p-member-cta__buttons .stripe-button-el:focus span {
  all: revert;
  color: inherit;
}

@media (any-hover: hover) {
  .p-member-cta__buttons button.stripe-button-el:hover,
  .p-member-cta__buttons input[type="submit"].stripe-button-el:hover {
    opacity: 0.8;
    transform: translateY(-1px);
  }
}

@media screen and (max-width: 767px) {
  .p-member-cta__inner {
    padding: 3.2rem 1.6rem;
  }

  .p-member-cta__title {
    font-size: var(--font-size-xl);
  }

  .p-member-cta__buttons {
    flex-direction: column;
    align-items: center;
  }

  .p-member-cta__button {
    width: 100%;
    max-width: 28rem;
  }

  .p-member-cta__buttons button.stripe-button-el,
  .p-member-cta__buttons input[type="submit"].stripe-button-el {
    width: 100%;
    max-width: 28rem;
  }
}

.p-download__voice {
  margin-top: 8rem;
  padding: 0 1.6rem 1.6rem;
  font-size: var(--font-size-md);
  font-weight: var(--font-weight-medium);
  color: var(--color-text-primary);
  position: relative;
}
.p-download__voice::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 0.2rem;
  background-image: radial-gradient(ellipse 0.15rem 0.1rem at center, var(--color-gray) 99%, transparent 100%);
  background-size: 1.5rem 0.2rem;
  background-repeat: repeat-x;
  background-position: left center;
}

.p-download__voice-title {
  margin-bottom: 0.8rem;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 2.4rem;
}
@media screen and (max-width: 767px) {
  .p-download__voice-title {
    gap: 0.8rem;
  }
}

.p-download__voice-title h3 {
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-medium);
}
.p-download__voice-title h3 .fs-l {
  font-size: var(--font-size-xl);
}

.p-download__voice-name {
  font-size: var(--font-size-md);
  margin-bottom: 0.8rem;
}

.p-download__voice-text {
  margin-bottom: 0.8rem;
  font-size: var(--font-size-xs);
  line-height: var(--line-height-2xl);
}

.p-download__voice-more {
  text-align: right;
}
.p-download__voice-more a {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  font-size: var(--font-size-xs);
  font-weight: var(--font-weight-bold);
  position: relative;
  transform: translateX(-0.8rem);
}
.p-download__voice-more a::after {
  content: "";
  width: 0.9rem;
  height: 0.9rem;
  border-bottom: 2px solid var(--color-text-primary);
  border-right: 2px solid var(--color-text-primary);
  transform: rotate(-45deg);
  transition: 0.15s ease-out;
}

.p-download__voice-comment {
  text-align: right;
  padding: 1.6rem;
}
.p-download__voice-comment a {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-bold);
  position: relative;
}

.p-download__recommend {
  padding-bottom: 8rem;
}

.p-download__recommend-title {
  text-align: center;
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-bold);
  padding-block: 0.8rem;
  color: var(--color-text-primary);
  border: 1px solid var(--color-gray);
}

.p-download__recommend-list {
  margin-top: 4.8rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, 24rem);
  justify-content: center;
  gap:5.6rem 2.4rem;
  padding-inline: 2.4rem;
}

.p-download__recommend-item a {
  width: 24rem;
  position: relative;
  transition: 0.15s ease-out;
}

.p-download-card__img {
  width: 100%;
  height: 25.6rem;
  padding-top: 0.8rem;
}
@media screen and (max-width: 767px) {
  .p-download-card__img {
    height: auto;
  }
}

.p-download-card__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  filter: drop-shadow(0 0.2rem 0.4rem rgba(0, 0, 0, 0.15));
}

.p-download-card__bottom {
  margin-top: 1.6rem;
  padding-inline: 2.4rem;
}

.p-download-card__title {
  font-size: var(--font-size-lg);
  line-height: var(--line-height-loose);
  font-weight: var(--font-weight-bold);
  text-align: center;
}

.p-download-card__hash-list {
  margin-top: 0.8rem;
  display: flex;
  justify-content: center;
  gap: 0.8rem;
}

.p-download-card__hash-item {
  font-size: var(--font-size-xs);
  line-height: var(--line-height-loose);
  font-weight: var(--font-weight-medium);
}

.p-download-card__take-free {
  width: 5.8rem;
  height: 2.1rem;
  position: absolute;
  top: -1.8rem;
  left: 0.15rem;
  z-index: 30;
  transform: rotate(-12.58deg);
}

.p-download__back-link {
  margin-top: 8rem;
  text-align: right;
}

.p-download__back-link a {
  font-weight: var(--font-weight-bold);
  position: relative;
  padding-right: 1.6rem;
}

.p-download__back-link a::after {
  content: "";
  width: 0.9rem;
  height: 0.9rem;
  position: absolute;
  top: 52%;
  right: 0;
  transform: translateY(-50%) rotate(-45deg);
  border-bottom: 2px solid var(--color-text-primary);
  border-right: 2px solid var(--color-text-primary);
}

/*-------------------------------
p-profile hero (lead)
-------------------------------*/
.p-profile-hero {
  position: relative;
  padding: 12.8rem 0 0;
  background-color: var(--color-cream-bg);
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .p-profile-hero {
    padding: 6.4rem 0 0;
  }
}

.p-profile-hero::after {
  content: "";
  display: block;
  width: 100%;
  height: 8rem;
  background: var(--color-white);
}
@media screen and (max-width: 767px) {
  .p-profile-hero::after {
    height: 2.4rem;
  }
}

.p-profile-hero__inner {
  position: relative;
}

.p-profile-hero__lead {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-size: var(--font-size-3xl);
  font-weight: var(--font-weight-bold);
  line-height: var(--line-height-snug);
  letter-spacing: 0.2em;
  color: var(--color-text-primary);
  position: relative;
  z-index: 2;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .p-profile-hero__lead {
    font-size: var(--font-size-xl);
    letter-spacing: 0.1em;
  }
}

.p-profile-hero__lead-text {
  display: block;
}

.p-profile-hero__lead-text + .p-profile-hero__lead-text {
  margin-right: 24px;
}
@media screen and (max-width: 767px) {
  .p-profile-hero__lead-text + .p-profile-hero__lead-text {
    margin-right: 12px;
  }
}

/* 黄色い丸い装飾要素 */
.p-profile-hero__lead::before, .p-profile-hero__lead::after {
  content: "";
  --size: 17.5rem;
  --dot: var(--color-yellow);
  --r: 1.5rem;           /* ドット半径（95pxの時、直径16px相当） */

  background-repeat: no-repeat;
  position: absolute;
  opacity: 0.3;
}

.p-profile-hero__lead::before {
  width: var(--size);
  height: var(--size);
  top: 17.2rem;
  right: 12.8rem;
  background-image:
    radial-gradient(circle at 22.2%  9.2%, var(--dot) 0 var(--r), transparent calc(var(--r) + 0.5px)),
    radial-gradient(circle at 29.1% 43.3%, var(--dot) 0 var(--r), transparent calc(var(--r) + 0.5px)),
    radial-gradient(circle at 48.2% 72.5%, var(--dot) 0 var(--r), transparent calc(var(--r) + 0.5px)),
    radial-gradient(circle at 77.6% 90.9%, var(--dot) 0 var(--r), transparent calc(var(--r) + 0.5px));
}
@media screen and (max-width: 767px) {
  .p-profile-hero__lead::before {
    --size: 8rem;
    --r: 0.8rem;
    right: 8rem;
  }
}

.p-profile-hero__lead::after {
  width: var(--size);
  height: var(--size);
  bottom: 0.8rem;
  left: 4.8rem;
  transform: translateY(50%);
  background-image:
  radial-gradient(circle at 83.4% 15.0%, var(--dot) 0 var(--r), transparent calc(var(--r) + 0.5px)),
  radial-gradient(circle at 71.6% 48.1%, var(--dot) 0 var(--r), transparent calc(var(--r) + 0.5px)),
  radial-gradient(circle at 48.3% 74.7%, var(--dot) 0 var(--r), transparent calc(var(--r) + 0.5px)),
  radial-gradient(circle at 16.3% 88.9%, var(--dot) 0 var(--r), transparent calc(var(--r) + 0.5px));
}
@media screen and (max-width: 767px) {
  .p-profile-hero__lead::after {
    --size: 8rem;
    --r: 0.8rem;
    bottom: 0.4rem;
  }
}

.p-profile-hero__text-wrapper {
  position: relative;
  z-index: 0;
  margin-top: 3.2rem;
  padding-top: 12rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-profile-hero__text-wrapper {
    margin-top: 2.4rem;
    padding-top: 6.4rem;
  }
}

.p-profile-hero__text-wrapper::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  width: 100%;
  height: 100%;
  background: var(--color-white);
  border-radius: 70% 70% 0 0 / 100% 100% 0 0;
  pointer-events: none;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .p-profile-hero__text-wrapper::after {
    width: 200%;
  }
}

.p-profile-hero__text p {
  font-size: var(--font-size-lg);
  line-height: 2.3;
  font-weight: var(--font-weight-medium);
}
@media screen and (max-width: 767px) {
  .p-profile-hero__text p {
    font-size: var(--font-size-base);
    line-height: var(--line-height-4xl);
    padding: 0 2.4rem;
  }
}

.p-profile-hero__text p + p {
  margin-top: 4rem;
}
@media screen and (max-width: 767px) {
  .p-profile-hero__text p + p {
    margin-top: 2.4rem;
  }
}

.p-profile-hero__illust {
  position: absolute;
  bottom: 8.8rem;
  right: 50%;
  transform: translateX(-29.6rem);
  z-index: 0;
  width: 100%;
  max-width: 18.7rem;
}
@media screen and (max-width: 767px) {
  .p-profile-hero__illust {
    position: static;
    max-width: 18rem;
    margin: 2.4rem auto 0;
    transform: none;
  }
}

.p-profile-hero__illust img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

/*-------------------------------
p-profile-lead
-------------------------------*/
.p-profile-lead {
  padding: 8rem 0;
  background-color: var(--color-white);
}
@media screen and (max-width: 767px) {
  .p-profile-lead {
    padding: 3.2rem 0;
  }
}

.p-profile-lead__inner {
  position: relative;
  z-index: 0;
}
@media screen and (max-width: 767px) {
  .p-profile-lead__inner {
    display: flex;
    flex-direction: column;
  }
}

.p-profile-lead__left {
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .p-profile-lead__left {
    width: 100%;
  }
}

.p-profile-lead__content {
  font-size: var(--font-size-lg);
  line-height: var(--line-height-4xl);
  font-weight: var(--font-weight-medium);
  color: var(--color-text-primary);
}
@media screen and (max-width: 767px) {
  .p-profile-lead__content {
    font-size: var(--font-size-base);
    line-height: var(--line-height-2xl);
  }
}

.p-profile-lead__content p + p {
  margin-top: 2rem;
}
@media screen and (max-width: 767px) {
  .p-profile-lead__content p + p {
    margin-top: 1.2rem;
  }
}

.p-profile-lead__right {
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .p-profile-lead__right {
    position: static;
    z-index: 0;
    margin-top: 3.2rem;
  }
}

.p-profile-lead__image {
  width: 100%;
  max-width: 46.5rem;
}
@media screen and (max-width: 767px) {
  .p-profile-lead__image {
    max-width: 100%;
  }
}

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

.p-profile-lead__title {
  font-size: var(--font-size-3xl);
  font-weight: var(--font-weight-bold);
  line-height: var(--line-height-relaxed);
  letter-spacing: 0.2rem;
  color: var(--color-text-primary);
  margin-bottom: 4rem;
  position: relative;
  display: inline-block;
  background-image: linear-gradient(transparent calc(100% - 40%), #FFEB98 calc(100% - 40%));
  background-size: 100% 100%;
  background-repeat: no-repeat;
}
@media screen and (max-width: 767px) {
  .p-profile-lead__title {
    font-size: var(--font-size-2xl);
    margin-bottom: 2rem;
  }
}

.p-contents__filter {
  --font-size: var(--font-size-xl);
  --label-width: 80px;
  --row-gap: 32px;
  --item-gap: 16px;

  font-size: var(--font-size);
  color: var(--color-text-dark);
  margin-bottom: 7.2rem;
}

/* 行 */
.p-contents__filter-row {
  display: flex;
  align-items: center;
  gap: var(--item-gap);
}

.p-contents__filter-row + .p-contents__filter-row,
.p-contents__filter-form + .p-contents__filter-row {
  margin-top: var(--row-gap);
}

/* 左ラベル（検索 / タグ） */
.p-contents__filter-label {
  width: var(--label-width);
  font-weight: var(--font-weight-bold);
  letter-spacing: 0.02em;
  white-space: nowrap;
  flex-shrink: 0;
}

/* 検索 */
.p-contents__filter-search {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  flex: 1;
}

.p-contents__filter-input {
  width: 100%;
  max-width: 400px;
  height: 37px;
  padding: 0 40px;

  font-size: 14.22px;
  font-weight: var(--font-weight-bold);
  color: var(--color-gray);
  border: 2px solid var(--color-gray-dark);
  border-radius: 999px;
  background: var(--color-white);
  box-sizing: border-box;
}

.p-contents__filter-input::placeholder {
  color: var(--color-text-placeholder);
}

.p-contents__filter-submit {
  width: 8rem;
  height: 3.7rem;
  background: var(--color-blue-light);
  border-radius: 10rem;
  white-space: nowrap;
  font-size: var(--font-size-md);
  font-weight: var(--font-weight-bold);
  color: var(--color-text-primary);
  background-color: var(--color-yellow);
  border: 1px solid var(--color-yellow);
  cursor: pointer;
  transition: 0.3s ease-out;
}
@media (any-hover: hover) {
  .p-contents__filter-submit:hover {
    background-color: var(--color-yellow-hover);
  }
}

/* タグ一覧 */
.p-contents__filter-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* タグ */
.p-contents__filter-tag {
  width: 100px;
  height: 29px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  font-size: 14.22px;
  font-weight: var(--font-weight-medium);
  text-decoration: none;
  color: var(--color-text-dark);

  background: var(--color-blue-light);
  border-radius: 999px;
  white-space: nowrap;
}

/* レスポンシブ */
@media (max-width: 640px) {
  .p-contents__filter-label {
    width: 56px;
  }

  .p-contents__filter-input {
    max-width: 100%;
  }
}

/*-------------------------------
p-bookmark
-------------------------------*/
.p-bookmark {
  padding: 8rem 0;
}
@media screen and (max-width: 767px) {
  .p-bookmark {
    padding: 3.2rem 0;
  }
}


.p-pager ul {
  display: flex;
  justify-content: center;
  gap: 1.6rem;
  padding-top: 5.6rem;
}
.p-pager ul li {
  list-style: none;
}
.p-pager ul li a,
.p-pager ul li span.page-numbers {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4.8rem;
  height: 4.8rem;
  border-radius: 50%;
  background-color: var(--color-white);
  color: var(--color-text-primary);
  border: 1px solid var(--color-text-primary);
  font-size: var(--font-size-xl);
  font-weight: var(--font-weight-bold);
}
.p-pager ul li.active a,
.p-pager ul li a:hover,
.p-pager ul li span.current {
  background-color: var(--color-text-primary);
  color: var(--color-white);
  opacity: 1;
}
.p-pager .prev-arrow,
.p-pager .next-arrow {
  filter: brightness(0);
}
.p-pager .prev-arrow {
  transform: rotate(180deg);
}
.p-pager ul li a:hover .prev-arrow,
.p-pager ul li a:hover .next-arrow {
  filter: none;
}

/*-------------------------------
p-profile
-------------------------------*/
.p-profile__precious {
  background-color: var(--color-cream-bg);
}

.p-profile__precious::before {
  content: "";
  display: block;
  width: 100%;
  height: 8rem;
  background: var(--color-white) url(../images/profile-precious-bg-top.webp) no-repeat center center / 100% 100%;
}

.p-profile__precious::after {
  content: "";
  display: block;
  width: 100%;
  height: 8rem;
  background: var(--color-white) url(../images/profile-precious-bg-bottom.webp) no-repeat center center / 100% 100%;
}

.p-profile__precious-inner {
  max-width: 96.8rem;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .p-profile__precious-inner {
    padding: 0 2.4rem;
  }
}

.p-profile__precious-title {
  margin-bottom: 1.6rem;
}
@media screen and (max-width: 767px) {
  .p-profile__precious-title {
    margin-bottom: 0;
  }
}

.p-profile__precious-values {
  margin-bottom: 4rem;
}
@media screen and (max-width: 767px) {
  .p-profile__precious-values {
    margin-bottom: 0;
  }
}

.p-profile__value-item {
  padding-block: 4rem 6.4rem;
  display: flex;
  gap: 4rem;
}
.p-profile__value-item:not(:last-child) {
  border-bottom: 1px solid var(--color-gray);
}

.p-profile__value-item:nth-child(even) {
  flex-direction: row-reverse;
}
@media screen and (max-width: 767px) {
  .p-profile__value-item {
    flex-direction: column !important;
    padding-block: 3.2rem 4rem;
    gap: 2.4rem;
  }
}

.p-profile__value-img {
  width: 36.2rem;
  flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .p-profile__value-img {
    width: 100%;
    max-width: 100%;
  }
}

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

.p-profile__value-content {
  display: flex;
  gap: 0.8rem;
}
@media screen and (max-width: 767px) {
  .p-profile__value-content {
    flex-direction: column;
    gap: 0.4rem;
  }
}

.p-profile__value-num {
  width: 5.6rem;
  font-size: 4rem;
  font-weight: var(--font-weight-bold);
  line-height: var(--line-height-tight);
  color: var(--color-gray);
  letter-spacing: 0.1em;
  margin: 0;
  flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .p-profile__value-num {
    width: auto;
    font-size: var(--font-size-5xl);
  }
}

.p-profile__value-title {
  font-size: var(--font-size-2xl);
  font-weight: var(--font-weight-bold);
  line-height: var(--line-height-loose);
  color: #3B290F;
  margin-block: 0.8rem 2.4rem;
}
@media screen and (max-width: 767px) {
  .p-profile__value-title {
    font-size: var(--font-size-xl);
    margin-block: 0.4rem 1.6rem;
  }
}

.p-profile__value-subtitle {
  font-size: var(--font-size-xl);
  font-weight: var(--font-weight-bold);
  line-height: var(--line-height-loose);
  color: #E9906F;
  margin: 0 0 1.6rem;
  letter-spacing: 0.2em;
}
@media screen and (max-width: 767px) {
  .p-profile__value-subtitle {
    font-size: var(--font-size-lg);
    margin: 0 0 1.2rem;
    letter-spacing: 0.1em;
  }
}

.p-profile__value-text {
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-normal);
  line-height: var(--line-height-2xl);
  color: #3B290F;
  margin: 0;
}
@media screen and (max-width: 767px) {
  .p-profile__value-text {
    font-size: var(--font-size-base);
    line-height: var(--line-height-loose);
  }
}

/*-------------------------------
p-profile-about (あみたろうについて)
-------------------------------*/
.p-profile-about {
  padding: 8rem 0;
  background-color: var(--color-white);
}
@media screen and (max-width: 767px) {
  .p-profile-about {
    padding: 6.4rem 0 2.4rem;
  }
}

.p-profile-about__inner {
  max-width: 96.8rem;
  margin-inline: auto;
}

.p-profile__about-title {
  margin-bottom: 8rem;
}
@media screen and (max-width: 767px) {
  .p-profile__about-title {
    margin-bottom: 2.4rem;
  }
}

.p-profile-about__label {
  font-size: var(--font-size-sm);
  letter-spacing: 0.12em;
  font-weight: var(--font-weight-bold);
  color: var(--color-text-secondary);
  margin-bottom: 1.2rem;
}

.p-profile-about__title {
  font-size: var(--font-size-2xl);
  font-weight: var(--font-weight-bold);
  line-height: var(--line-height-relaxed);
  color: var(--color-text-primary);
}
@media screen and (max-width: 767px) {
  .p-profile-about__title {
    font-size: var(--font-size-2xl);
  }
}

.p-profile-about__content {
  display: flex;
  gap: 5.6rem;
  align-items: start;
}
@media screen and (max-width: 767px) {
  .p-profile-about__content {
    flex-direction: column;
    gap: 3.2rem;
  }
}

.p-profile-about__content-left {
  width: 21.6rem;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}
@media screen and (max-width: 767px) {
  .p-profile-about__content-left {
    width: 100%;
    max-width: 30rem;
    margin: 0 auto;
  }
}

.p-profile-about__image {
  width: 100%;
  margin-top: -9.6rem;
}
@media screen and (max-width: 767px) {
  .p-profile-about__image {
    max-width: 60%;
    margin: 0 auto;
  }
}

.p-profile-about__image img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
  border-radius: 1rem;
}

.p-profile-about__text-wrapper {
  display: flex;
  flex-direction: column;
}

.p-profile-about__text {
  font-size: var(--font-size-lg);
  line-height: var(--line-height-2xl);
  font-weight: var(--font-weight-normal);
}
@media screen and (max-width: 767px) {
  .p-profile-about__text {
    font-size: var(--font-size-base);
    line-height: var(--line-height-loose);
  }
}

.p-profile-about__text p + p {
  margin-top: 1.8em;
}
@media screen and (max-width: 767px) {
  .p-profile-about__text p + p {
    margin-top: 1.2rem;
  }
}

.p-profile-about__name {
  font-size: var(--font-size-5xl);
  font-weight: var(--font-weight-bold);
  line-height: var(--line-height-loose);
  color: var(--color-text-primary);
  text-align: center;
  letter-spacing: 0.1rem;;
}
@media screen and (max-width: 767px) {
  .p-profile-about__name {
    font-size: var(--font-size-2xl);
    margin-bottom: 1.2rem;
  }
}

.p-profile-about__name-en {
  font-size: var(--font-size-md);
  font-weight: var(--font-weight-bold);
  margin-top: 0.4rem;
}

.p-profile-about__social {
  display: flex;
  justify-content: center;
  gap: 2.4rem;
}
@media screen and (max-width: 767px) {
  .p-profile-about__social {
    gap: 1.2rem;
  }
}

.p-profile-about__social-link {
  width: 2.4rem;
  height: 2.4rem;
  transition: transform 0.2s ease;
}

.p-profile-about__social-link:hover {
  transform: scale(1.1);
}

.p-profile-about__social-link img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
@media screen and (max-width: 767px) {
  .p-profile-about__social-link img {
    width: 1.8rem;
    height: 1.8rem;
  }
}

/*-------------------------------
p-profile-member (なかまのみなさん)
-------------------------------*/
.p-profile-member {
  padding: 8rem 0;
  background-color: var(--color-white);
}
@media screen and (max-width: 767px) {
  .p-profile-member {
    padding: 6.4rem 0;
  }
}

.p-profile-member__inner {
  max-width: 96.8rem;
  margin-inline: auto;
}

.p-profile__member-title {
  margin-bottom: 5.6rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-profile__member-title {
    margin-bottom: 2.4rem;
  }
}

.p-profile-member__list {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

.p-profile-member__item {
  display: flex;
  gap: 5.6rem;
}
@media screen and (max-width: 767px) {
  .p-profile-member__item {
    flex-direction: column;
    gap: 0;
    align-items: center;
  }
}

.p-profile-member__image {
  width: 21.6rem;
}
@media screen and (max-width: 767px) {
  .p-profile-member__image {
    width: 100%;
    max-width: 24rem;
  }
}

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

.p-profile-member__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
@media screen and (max-width: 767px) {
  .p-profile-member__content {
    width: 100%;
    text-align: center;
  }
}

.p-profile-member__name-wrapper {
  display: flex;
  flex-direction: column;
}

.p-profile-member__name {
  font-size: var(--font-size-2xl);
  font-weight: var(--font-weight-bold);
  line-height: var(--line-height-loose);
}

.p-profile-member__name-en {
  font-size: var(--font-size-xs);
  font-weight: var(--font-weight-normal);
}

.p-profile-member__role {
  font-size: var(--font-size-2xl);
  font-weight: var(--font-weight-normal);
  margin-bottom: 0.8rem;
}

.p-profile-member__text {
  font-size: var(--font-size-lg);
  line-height: var(--line-height-2xl);
  font-weight: var(--font-weight-normal);
}
@media screen and (max-width: 767px) {
  .p-profile-member__text {
    font-size: var(--font-size-base);
    line-height: var(--line-height-loose);
    text-align: left;
    padding: 0 0 0.8rem
  }
}

.p-profile-member__social {
  display: flex;
  justify-content: flex-end;
  gap: 2.4rem;
}
@media screen and (max-width: 767px) {
  .p-profile-member__social {
    justify-content: center;
    gap: 1.2rem;
  }
}

.p-profile-member__social-link {
  width: 2.4rem;
  height: 2.4rem;
  transition: transform 0.2s ease;
}

/*-------------------------------
p-profile-sponsor
-------------------------------*/
.p-profile-sponsor {
  padding: 0 0 8rem;
}
@media screen and (max-width: 767px) {
  .p-profile-sponsor {
    padding: 3.2rem 0 6.4rem;
  }
}

.p-profile-sponsor__list {
  width: 100%;
  max-width: 108rem;
}

.p-profile-sponsor__item-wrapper {
  width: 100%;
  padding: 4rem 0;
  border-bottom: 1px solid var(--color-gray-border-lighter);
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
}
.p-profile-sponsor__list-person .p-profile-sponsor__item-wrapper {
  justify-content: flex-start;
  gap: 2.4rem;
}
@media screen and (max-width: 767px) {
  .p-profile-sponsor__item-wrapper {
    padding-block: 2.4rem;
  }
  .p-profile-sponsor__list-person .p-profile-sponsor__item-wrapper {
    gap: 1.6rem;
  }
  .p-profile-sponsor__list-person .p-profile-sponsor__item-wrapper-person-name-only {
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
  }
}

.p-profile-sponsor__item {
  width: 64rem;
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
}
.p-profile-sponsor__item-silver {
  width: 72rem;
  padding-inline: 4rem;
}
.p-profile-sponsor__item-bronze {
  width: 36rem;
  border-left: 1px solid var(--color-gray-border-lighter);
}
.p-profile-sponsor__list-person .p-profile-sponsor__item {
  width: 16rem;
  gap: 0;
}
@media screen and (max-width: 767px) {
  .p-profile-sponsor__item {
    gap: 1.6rem;
  }
  .p-profile-sponsor__item-gold {
    padding-block: 2.4rem;
  }
  .p-profile-sponsor__item-silver, .p-profile-sponsor__item-bronze {
    align-items: center;
    flex-direction: row;
    gap: 1.6rem;
    width: 100%;
    padding: 0 0 2.4rem;
  }
  .p-profile-sponsor__item-bronze {
    border-top: 1px solid var(--color-gray-border-lighter);
    border-left: 0;
    padding: 2.4rem 0 0;
  }
  .p-profile-sponsor__list-person .p-profile-sponsor__item {
    width: calc((100% - 3.2rem) / 3);
  }
  .p-profile-sponsor__item-wrapper-person-name-only .p-profile-sponsor__item {
    width: 100%;
  }
}

.p-profile-sponsor__image {
  width: 100%;
  height: 14.8rem;
  margin: 0 auto;
  overflow: hidden;
}
.p-profile-sponsor__item-silver .p-profile-sponsor__image {
  width: 32rem;
  height: 12rem;
}
.p-profile-sponsor__item-bronze .p-profile-sponsor__image {
  width: 26rem;
  height: 12rem;
}
@media screen and (max-width: 767px) {
  .p-profile-sponsor__image {
    width: 100%;
    height: auto;
    padding-inline: 0;
  }
  .p-profile-sponsor__image-lw {
    padding: 0.8rem 1.6rem;
  }
  .p-profile-sponsor__item-silver .p-profile-sponsor__image,
  .p-profile-sponsor__item-bronze .p-profile-sponsor__image {
    width: calc((100% - 1.6rem) / 2); 
    height: auto;
  }
}

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

.p-profile-sponsor__text {
  width: 100%;
}
@media screen and (max-width: 767px) {
  .p-profile-sponsor__item-silver .p-profile-sponsor__text,
  .p-profile-sponsor__item-bronze .p-profile-sponsor__text {
    width: calc((100% - 1.6rem) / 2);
  }
}

.p-profile-sponsor__text-title {
  font-size: var(--font-size-2xl);
  font-weight: var(--font-weight-bold);
  text-align: center;
}
.p-profile-sponsor__item-platinum .p-profile-sponsor__text-title,
.p-profile-sponsor__item-silver .p-profile-sponsor__text-title {
  margin-bottom: 2.4rem;
}
.p-profile-sponsor__item-silver .p-profile-sponsor__text-title,
.p-profile-sponsor__item-bronze .p-profile-sponsor__text-title {
  font-size: var(--font-size-xl);
}
.p-profile-sponsor__list-person .p-profile-sponsor__text-title {
  font-size: var(--font-size-xl);
}
@media screen and (max-width: 767px) {
  .p-profile-sponsor__item-platinum .p-profile-sponsor__text-title,
  .p-profile-sponsor__item-silver .p-profile-sponsor__text-title {
    margin-bottom: 1.6rem;
  }
  .p-profile-sponsor__item-silver .p-profile-sponsor__text-title,
  .p-profile-sponsor__item-bronze .p-profile-sponsor__text-title {
    font-size: var(--font-size-md);
    text-align: left;
  }
  .p-profile-sponsor__list-person .p-profile-sponsor__text-title {
    font-size: var(--font-size-xs);
  }
  .p-profile-sponsor__item-wrapper-person-name-only .p-profile-sponsor__text-title {
    font-size: var(--font-size-md);
  }
}

.p-profile-sponsor__text-description {
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-normal);
  line-height: var(--line-height-2xl);
}
@media screen and (max-width: 767px) {
  .p-profile-sponsor__item-silver .p-profile-sponsor__text-description,
  .p-profile-sponsor__item-bronze .p-profile-sponsor__text-description {
    font-size: var(--font-size-md);
  }
}

/*========================================
お知らせ・朝礼ネタアーカイブ共通
========================================*/
.p-archive {
  padding: 8rem 0;
  background: var(--color-white);
}
@media screen and (max-width: 767px) {
  .p-archive {
    padding: 4rem 0;
  }
}

.p-archive__inner {
  max-width: 68.8rem;
  margin: 0 auto;
}

.p-archive__title {
  margin-bottom: 5.6rem;
}
@media screen and (max-width: 767px) {
  .p-archive__title {
    margin-bottom: 4rem;
  }
}

.p-archive__list {
  display: flex;
  flex-direction: column;
}

.p-archive__item {
  border-bottom: 1px solid var(--color-gray);
}

.p-archive__item:first-child {
  padding-bottom: 3.2rem;
}

.p-archive__item:not(:first-child) {
  padding: 3.2rem 0;
}
@media screen and (max-width: 767px) {
  .p-archive__item:first-child {
    padding-bottom: 2.4rem;
  }
  .p-archive__item:not(:first-child) {
    padding: 2.4rem 0;
  }
}

/* アーカイブカード */
.p-archive-card {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 1.9rem;
  text-decoration: none;
  transition: opacity 0.3s ease;
}
@media (any-hover: hover) {
  .p-archive-card:hover {
    opacity: 0.7;
  }
}
@media screen and (max-width: 767px) {
  .p-archive-card {
    flex-direction: column;
    align-items: stretch;
    gap: 1.6rem;
  }
}

.p-archive-card__content {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  flex: 1;
}
@media screen and (max-width: 767px) {
  .p-archive-card__content {
    gap: 0.8rem;
  }
}

.p-archive-card__meta {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.p-archive-card__date {
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-normal);
  line-height: var(--line-height-loose);
  color: var(--color-text-primary);
}

.p-archive-card__badge {
  display: inline-block;
  padding: 0.1rem 0.8rem;
  font-size: var(--font-size-xs);
  line-height: var(--line-height-loose);
  font-weight: var(--font-weight-bold);
  color: var(--color-orange);
  border: 1px solid var(--color-orange);
  border-radius: 0.4rem;
}
@media screen and (max-width: 767px) {
  .p-archive-card__date {
    font-size: var(--font-size-base);
  }
}

.p-archive-card__title {
  font-size: var(--font-size-xl);
  font-weight: var(--font-weight-bold);
  line-height: var(--line-height-loose);
  color: var(--color-text-primary);
}
@media screen and (max-width: 767px) {
  .p-archive-card__title {
    font-size: var(--font-size-lg);
  }
}

.p-archive-card__more {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .p-archive-card__more {
    align-self: flex-end;
  }
}

.p-archive-card__more-text {
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-bold);
  line-height: var(--line-height-loose);
  color: var(--color-text-primary);
}
@media screen and (max-width: 767px) {
  .p-archive-card__more-text {
    font-size: var(--font-size-sm);
  }
}

.p-archive-card__more-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 1.6rem;
  height: 1.6rem;
  background-color: var(--color-orange);
  border-radius: 4rem;
  flex-shrink: 0;
}

.p-archive-card__more-icon img {
  width: 0.8rem;
  height: 0.6rem;
}

/*========================================
詳細ページ共通（お知らせ・朝礼ネタ）
========================================*/
.p-detail {
  padding: 8rem 0;
  background: var(--color-white);
}
@media screen and (max-width: 767px) {
  .p-detail {
    padding: 5rem 0;
  }
}

.p-detail__inner.l-inner {
  max-width: 68.8rem;
}

.p-detail__content {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}
@media screen and (max-width: 767px) {
  .p-detail__content {
    gap: 3.2rem;
  }
}

/* ヘッダー部分 */
.p-detail__header {
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
}
@media screen and (max-width: 767px) {
  .p-detail__header {
    gap: 1.6rem;
  }
}

.p-detail__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 1.6rem;
  list-style: none;
}

.p-detail__tag {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 0.4rem 1.6rem 0.5rem;
  background-color: #e4f3f8;
  border-radius: 1.6rem;
  font-size: var(--font-size-xs);
  font-weight: var(--font-weight-medium);
  line-height: var(--line-height-loose);
  color: var(--color-text-primary);
}

.p-detail__title {
  font-size: var(--font-size-3xl);
  font-weight: var(--font-weight-bold);
  line-height: var(--line-height-loose);
  letter-spacing: 0.1em;
  color: var(--color-text-primary);
}
@media screen and (max-width: 767px) {
  .p-detail__title {
    font-size: var(--font-size-xl);
  }
}

/* ライター情報 */
.p-detail__author {
  display: flex;
  align-items: center;
  gap: 1.6rem;
}

.p-detail__author-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 4.8rem;
  height: 4.8rem;
  background-color: #f6a485;
  border-radius: 50%;
  flex-shrink: 0;
}

.p-detail__author-icon svg {
  width: 1.8rem;
  height: 3.7rem;
}

.p-detail__author-info {
  display: flex;
  flex-direction: column;
}

.p-detail__author-label {
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-medium);
  line-height: 1.5em;
  color: var(--color-text-primary);
}

.p-detail__author-name {
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-bold);
  line-height: var(--line-height-loose);
  color: var(--color-text-primary);
}

/* 本文 */
.p-detail__body {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}
@media screen and (max-width: 767px) {
  .p-detail__body {
    gap: 3.2rem;
  }
}

.p-detail__text {
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-medium);
  line-height: var(--line-height-2xl);
  color: var(--color-text-primary);
  text-align: left;
}

/* セクション */
.p-detail__section-title {
  font-size: var(--font-size-xl);
  font-weight: var(--font-weight-bold);
  line-height: var(--line-height-loose);
  color: var(--color-text-primary);
  background: linear-gradient(transparent 60%, var(--color-yellow) 60%);
  display: inline-block;
  padding: 0 0.4rem;
  margin-top: 0.8rem;
  align-self: flex-start;
  width: auto;
}
@media screen and (max-width: 767px) {
  .p-detail__section-title {
    font-size: var(--font-size-lg);
  }
}

.p-detail__section {
  display: flex;
  flex-direction: column;
  gap: 1.8em;
}


/*========================================
p-error-page (404エラーページ)
========================================*/
.p-error-page {
  padding: 8rem 0;
}
@media screen and (max-width: 767px) {
  .p-error-page {
    padding: 3.2rem 0;
  }
}

.p-error-page__title {
  font-size: var(--font-size-3xl);
  font-weight: var(--font-weight-bold);
  line-height: var(--line-height-loose);
  color: var(--color-text-primary);
  margin-bottom: 2.4rem;
}
@media screen and (max-width: 767px) {
  .p-error-page__title {
    font-size: var(--font-size-2xl);
  }
}

.p-error-page__message, .p-error-page__text {
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-medium);
  line-height: var(--line-height-2xl);
  color: var(--color-text-primary);
}

.p-error-page__links {
  margin-top: 5.6rem;
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
}
@media screen and (max-width: 767px) {
  .p-error-page__links {
    margin-top: 2.4rem;
    gap: 1.6rem;
  }
}