@charset "utf-8";
@import "./variables.css";

/* == base ================================================ */
html {
  font-size: 62.5%;
}
* {
  box-sizing: border-box;
}
body {
  font-family: var(--font-ja);
  font-size: var(--fs-15);
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.06em;
  color: var(--base-black);
  background-color: var(--base-off-white);
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  line-break: strict;
  overflow-wrap: break-word;
  hyphens: auto;
  font-feature-settings: 'palt';
}

/* == utility ==================================================== */
.is-none {
  display: none;
  visibility: hidden;
}
.u-pc {
  display: block;
}
.u-sp {
  display: none;
}
@media (width < 768px) {
  .u-pc {
    display: none;
  }
  .u-sp {
    display: block;
  }
}

/* == component ================================================== */
/* -- c-underTitle ------------------------------------------ */
.c-underTitle {
  position: relative;
  background-color: var(--main-white-beige);
  padding: 104px 72px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
  overflow: hidden;
}
.c-underTitle::after {
  content: "";
  position: absolute;
  inset: 8px;
  border: 1px solid var(--base-white);
  border-radius: 8px;
  pointer-events: none;
}
.c-underTitle .c-breadcrumb {
  position: absolute;
  top: 56px;
  left: 72px;
}
.c-underTitle .c-heading {
  width: 100%;
}
.c-underTitle .c-heading__ja {
  margin: 0 auto;
}
.c-underTitle .c-heading__text {
  padding-left: 40px;
}
.c-underTitle .c-heading__en {
  font-size: clamp(6.0rem, 8.0vw, 9.6rem);
  text-align: center;
  width: 100%;
}
.c-underTitle__desc {
  font-size: var(--fs-16);
  font-weight: 500;
  letter-spacing: 0.06em;
  line-height: 2;
  text-align: center;
  color: var(--base-black);
}
@media (width < 768px) {
  .c-underTitle {
    padding: 104px 28px;
  }
  .c-underTitle .c-breadcrumb {
    top: 24px;
    left: 28px;
  }
  .c-underTitle .c-heading__text {
    font-size: 1.8rem;
    padding-left: 36px;
  }
  .c-underTitle .c-heading,
  .c-underTitle__desc {
    max-width: 334px;
    margin: 0 auto;
    text-align: left;
    gap: 24px;
  }
  .c-underTitle .c-heading__ja {
    margin: 0;
    background-size: 28px 28px;
  }
  .c-underTitle .c-heading__en {
    font-size: 6.4rem;
    white-space: normal;
    word-break: break-word;
    text-align: left;
  }
}

/* -- c-btn ------------------------------------------------- */
.c-btn {
  display: inline-flex;
  align-items: center;
  overflow: hidden;
  border-radius: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.6;
  text-decoration: none;
  transition: 0.2s;
  font-feature-settings: 'palt' on;
}
/* label */
.c-btn__label {
  flex: 1 0 0;
  min-width: 0;
}
/* arrow */
.c-btn__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-left: 1px dashed;
  background-image: url(../img/common/icon_arrow.svg);
  background-position: center;
  background-size: 12px 8px;
  background-repeat: no-repeat;
  transition: border-color 0.2s, background-image 0.2s;
}
/* size: S */
.c-btn--s {
  justify-content: center;
  width: 240px;
  height: 64px;
  padding: 12px 16px;
  font-size: 1.6rem;
}
.c-btn--s .c-btn__label {
  text-align: center;
}

/* size: M */
.c-btn--m {
  width: 280px;
  height: 72px;
  padding: 12px 0 12px 24px;
  font-size: 16px;
}
/* size: L */
.c-btn--l {
  width: 338px;
  height: 88px;
  padding: 12px 0 12px 24px;
  font-size: 18px;
}
/* level: Primary (red) */
.c-btn--primary {
  background: var(--main-red);
  border: 1px solid var(--main-red);
  color: var(--base-white);
}
.c-btn--primary .c-btn__arrow {
  border-color: var(--base-white);
}
@media (hover: hover) {
  .c-btn--primary:hover {
    background: var(--base-white);
    color: var(--main-red);
  }
  .c-btn--primary:hover .c-btn__label {
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-decoration-color: var(--main-red);
    text-underline-offset: 0.15em;
    text-decoration-skip-ink: none;
  }
  .c-btn--primary:hover .c-btn__arrow {
    border-color: var(--main-red);
    background-image: url(../img/common/icon_arrow-red.svg);
  }
}

/* level: Secondary (black) */
.c-btn--secondary {
  background: var(--base-black);
  border: 1px solid var(--base-black);
  color: var(--base-white);
}
.c-btn--secondary .c-btn__arrow {
  border-color: var(--base-white);
}
@media (hover: hover) {
  .c-btn--secondary:hover {
    background: var(--main-blue);
    border-color: var(--main-blue);
  }
  .c-btn--secondary:hover .c-btn__label {
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-decoration-color: var(--base-white);
    text-underline-offset: 0.15em;
    text-decoration-skip-ink: none;
  }
}
/* level: Tertiary (outline) */
.c-btn--tertiary {
  background: var(--base-white);
  border: 1px solid var(--base-dark-gray);
  color: var(--base-black);
}
@media (hover: hover) {
  .c-btn--tertiary:hover {
    background: var(--base-off-white);
  }
  .c-btn--tertiary:hover .c-btn__label {
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-decoration-color: var(--base-black);
    text-underline-offset: 0.15em;
    text-decoration-skip-ink: none;
  }
}

/* -- c-cta ------------------------------------------------- */
.c-cta {
  display: inline-flex;
  align-items: center;
  height: 88px;
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  padding: 12px 0 12px 32px;
  gap: 12px;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.c-cta__inner {
  display: flex;
  flex: 1 0 0;
  gap: 6px;
  align-items: center;
}
.c-cta__icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  transition: 0.2s;
}
.c-cta__label {
  flex: 1 0 0;
  text-align: center;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.06em;
  line-height: 1.6;
  transition: color 0.2s;
}
.c-cta__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-left: 1px dashed;
  background-image: url(../img/common/icon_arrow.svg);
  background-position: center;
  background-size: 12px 8px;
  background-repeat: no-repeat;
  transition: border-color 0.2s, background-image 0.2s;
}
/* primary */
.c-cta--primary {
  background: var(--main-red);
  border: 1px solid var(--main-red);
}
.c-cta--primary .c-cta__icon {
  background-image: url(../img/common/icon_mail.svg);
}
.c-cta--primary .c-cta__label {
  color: var(--base-white);
}
.c-cta--primary .c-cta__arrow {
  border-color: var(--base-white);
}
@media (hover: hover) {
  .c-cta--primary:hover {
    background: var(--base-white);
    border-color: var(--main-red);
  }
  .c-cta--primary:hover .c-cta__icon {
    background-image: url(../img/common/icon_mail-red.svg);
  }
  .c-cta--primary:hover .c-cta__label {
    color: var(--main-red);
  }
  .c-cta--primary:hover .c-cta__arrow {
    border-color: var(--main-red);
    background-image: url(../img/common/icon_arrow-red.svg);
  }
}
/* secondary */
.c-cta--secondary {
  background: var(--main-blue);
  border: 1px solid var(--main-blue);
}
.c-cta--secondary .c-cta__icon {
  background-image: url(../img/common/icon_bulb.svg);
}
.c-cta--secondary .c-cta__label {
  color: var(--base-white);
}
.c-cta--secondary .c-cta__arrow {
  border-color: var(--base-white);
}
@media (hover: hover) {
  .c-cta--secondary:hover {
    background: var(--base-white);
    border-color: var(--main-blue);
  }
  .c-cta--secondary:hover .c-cta__icon {
    background-image: url(../img/common/icon_bulb--blue.svg);
  }
  .c-cta--secondary:hover .c-cta__label {
    color: var(--main-blue);
    /* text-decoration: underline; */
  }
  .c-cta--secondary:hover .c-cta__arrow {
    border-color: var(--main-blue);
    background-image: url(../img/common/icon_arrow--blue.svg);
  }
}

/* mobile */
@media (width < 768px) {
  .c-cta {
    padding: 12px;
    border-width: 1px;
    border-style: solid;
    border-color: var(--base-white);
  }
  .c-cta__icon,
  .c-cta__arrow {
    display: none;
  }
}

/* -- c-tag -------------------------------------------------- */
.c-tag {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  font-size: 1.4rem;
  letter-spacing: 0.06em;
  line-height: 1;
  white-space: nowrap;
}
.c-tag__hash {
  font-weight: 700;
  color: var(--main-blue);
}
.c-tag span:not(.c-tag__hash) {
  font-weight: 500;
  color: var(--base-black);
}

/* -- c-tags ------------------------------------------------- */
.c-tags {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 12px 16px;
  list-style: none;
}
.c-tags__item {
  display: flex;
  align-items: center;
  gap: 2px;
  font-size: 1.4rem;
  letter-spacing: 0.06em;
  line-height: 1;
  white-space: nowrap;
}
.c-tags__hash {
  font-weight: 700;
  color: var(--main-blue);
}
.c-tags__item span:not(.c-tags__hash) {
  font-weight: 500;
  color: var(--base-black);
}

/* -- c-heading ------------------------------------------------- */
.c-heading {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}
.c-heading__ja {
  display: inline-block;
  background-position: center left;
  background-size: 32px 32px;
  background-repeat: no-repeat;
  text-align: center;
}
.c-heading__ja.--model {
  background-image: url(../img/common/icon_course.svg);
}
.c-heading__ja.--column {
  background-image: url(../img/common/icon_knowhow.svg);
}
.c-heading__ja.--news {
  background-image: url(../img/common/icon_knowhow.svg);
}
.c-heading__ja.--special {
  background-image: url(../img/common/icon_star.svg);
}
.c-heading__icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}
.c-heading__text {
  position: relative;
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 0.06em;
  color: var(--base-black);
  white-space: nowrap;
  line-height: 1.6;
  padding-left: 32px;
  background-repeat: no-repeat;
}
.c-heading__text--01 {
  background-image: url(../img/common/icon_course.svg);
  background-size: 24px 24px;
  background-position: left top 4px;
}
.c-heading__text--02 {
  background-image: url(../img/common/icon_knowhow.svg);
  background-size: 24px 24px;
  background-position: left top 5px;
}
.c-heading__text--03 {
  background-image: url(../img/common/icon_award.svg);
  background-size: 24px 24px;
  background-position: left top 5px;
}
.c-heading__en {
  font-family: var(--font-en);
  letter-spacing: .02em;
  color: var(--base-white);
  -webkit-text-stroke: 3px var(--base-black);
  paint-order: stroke fill;
  white-space: nowrap;
  font-size: clamp(6.0rem, 5vw, 7.2rem);
  font-weight: 900;
  line-height: 1;
}
@media (width < 768px) {
  .c-heading {
    gap: 16px;
  }
  .c-heading__text--01,
  .c-heading__text--02,
  .c-heading__text--03 {
    background-position: left top 3px;
    text-align: left;
    font-size: 1.8rem;
  }
  .c-heading__en {
    font-size: 6.0rem;
  }
}

/* -- c-breadcrumb ------------------------------------------------- */
.c-breadcrumb__list {
  display: flex;
  align-items: center;
  gap: 24px;
  list-style: none;
}
.c-breadcrumb__item {
  position: relative;
  display: flex;
  align-items: center;
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  line-height: 1.6;
  white-space: nowrap;
}
.c-breadcrumb__item+.c-breadcrumb__item::before {
  content: "";
  position: absolute;
  left: -14px;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: var(--main-gray-beige);
}
.c-breadcrumb__link {
  color: var(--main-dark-beige);
  text-decoration: none;
}
@media (hover:hover) {
  .c-breadcrumb__link:hover {
    text-decoration: underline;
    text-decoration-thickness: auto;
    text-decoration-color: var(--base-black);
    text-underline-offset: auto;
    text-decoration-skip-ink: none;
  }
}
.c-breadcrumb__current {
  color: var(--main-gray-beige);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.c-breadcrumb__item:has(.c-breadcrumb__current) {
  min-width: 0;
}
/* -- c-modelList ------------------------------------------------- */
.c-modelList {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: min(2.22vw, 32px);
}
.c-modelList>li {
  display: grid;
  grid-row: span 4;
  grid-template-rows: subgrid;
}
@media (width < 768px) {
  .c-modelList {
    row-gap: 56px;
    grid-template-columns: 1fr;
  }
  .c-modelList>li {
    display: block;
    grid-row: auto;
  }
}

/* -- c-modelCard ------------------------------------------ */
.c-modelCard {
  display: contents;
}
/* thumb */
.c-modelCard__thumb {
  position: relative;
  aspect-ratio: 384 / 271;
  border-radius: 16px;
  overflow: hidden;
}
.c-modelCard__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.2s ease;
}

.c-modelCard__thumb::after {
  content: '';
  position: absolute;
  inset: 8px;
  border: 1px solid var(--base-white);
  border-radius: 8px;
  opacity: 0.5;
  pointer-events: none;
  z-index: 2;
}
@media (hover: hover) {
  .c-modelCard:hover .c-modelCard__thumb img {
    transform: scale(1.05);
  }
  .c-modelCard:hover .c-modelCard__title {
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-decoration-color: var(--base-black);
    text-underline-offset: 0.15em;
    text-decoration-skip-ink: none;
  }
}
/* area tag */
.c-modelCard__areaTag {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 32px;
  min-width: 88px;
  padding: 0 16px;
  background: var(--base-white);
  border-radius: 16px 0 16px 0;
  font-weight: 700;
  font-size: var(--fs-14);
  letter-spacing: 0.06em;
  color: var(--base-black);
  line-height: 1;
  white-space: nowrap;
}
.c-modelCard__body {
  grid-row: span 3;
  display: grid;
  grid-template-rows: subgrid;
  row-gap: 16px;
  position: relative;
  padding: 0 12px;
  align-content: start;
}
.c-modelCard__body .c-tags {
  padding: 8px 0;
}
.c-modelCard__arrow {
  position: absolute;
  top: 17px;
  right: 12px;
  width: 40px;
  height: 20px;
  background-color: var(--base-black);
  border-radius: 4px;
  background-image: url(../img/common/icon_arrow.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 10px auto;
  transition: background-color 0.1s;
}
@media (hover: hover) {
  .c-modelCard:hover .c-modelCard__arrow {
    background-color: var(--main-blue);
  }
}
.c-modelCard__info {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 6px 12px;
  padding: 20px 48px 0 0;
}
.c-modelCard__schedule {
  font-weight: 500;
  font-size: var(--fs-14);
  letter-spacing: 0.06em;
  color: var(--base-black);
  white-space: nowrap;
  padding-right: 12px;
  border-right: 1px solid var(--base-medium-light-gray);
  line-height: 1;
}
.c-modelCard__season {
  font-weight: 500;
  font-size: var(--fs-14);
  letter-spacing: 0.06em;
  color: var(--base-black);
  line-height: 1;
}
.c-modelCard__title {
  font-weight: 700;
  font-size: 1.8rem;
  letter-spacing: 0.06em;
  color: var(--base-black);
  line-height: 1.6;
  border-top: 1px dashed var(--main-light-beige);
  border-bottom: 1px dashed var(--main-light-beige);
  padding: 16px 0;
}
@media (width < 768px) {
  .c-modelCard {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  .c-modelCard__thumb {
    flex-shrink: 0;
  }
  .c-modelCard__body {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 0 12px;
    align-content: normal;
  }
  .c-modelCard__info {
    padding: 0 48px 0 0;
  }
  .c-modelCard__arrow {
    top: -3px;
  }
  .c-modelCard__schedule,
  .c-modelCard__season {
    font-size: 1.4rem;
  }
}

/* == cta ======================================================= */
.c-ctaArea {
  background: var(--base-white);
  padding: 32px;
}
.c-ctaArea__inner {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: min(2.22vw, 32px);
}

/* card base */
.c-ctaCard {
  background: var(--main-navy);
  border-radius: 16px;
  padding: 80px 32px;
  position: relative;
  overflow: hidden;
}
/* inner white border */
.c-ctaCard::after {
  content: '';
  position: absolute;
  inset: 8px;
  border: 1px solid var(--base-white);
  border-radius: 8px;
  opacity: 0.5;
  pointer-events: none;
  z-index: 0;
}
.c-ctaCard__block {
  max-width: 504px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}
.c-ctaCard__block--left {
  gap: 24px;
}
.c-ctaCard__block--right {
  gap: 22.5px;
}
.c-ctaCard--contact {
  justify-content: space-between;
}
.c-ctaCard__head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
  color: var(--base-white);
}
.c-ctaCard__headingEn {
  font-family: var(--font-en);
  font-weight: 900;
  font-size: 1.6rem;
  letter-spacing: 0.06em;
  line-height: 1.6;
}
.c-ctaCard__headingJa {
  font-weight: 700;
  font-size: 3.2rem;
  letter-spacing: 0.06em;
  line-height: 1.6;
}

/* desc */
.c-ctaCard__desc {
  font-weight: 500;
  font-size: var(--fs-16);
  letter-spacing: 0.96px;
  color: var(--base-white);
  line-height: 2;
  text-align: center;
  padding: 0 16px;
}
.c-ctaCard__image {
  width: 357px;
  height: 200px;
}
.c-ctaCard__telWrap,
.c-ctaCard__formWrap {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
  padding: 0 16px;
}
.c-ctaCard__telWrap {
  padding: 22.5px 16px;
  border-top: 1px dashed var(--main-navy-gray);
  border-bottom: 1px dashed var(--main-navy-gray);
}
.c-ctaCard__blockLabel {
  font-weight: 700;
  font-size: 1.6rem;
  letter-spacing: 0.06em;
  color: var(--base-white);
  line-height: 1.6;
}
.c-ctaCard__telContent {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  padding-left: 52px;
}
.c-ctaCard__telContent::before {
  content: "";
  background: var(--base-white);
  background-image: url(../img/common/icon_phone-blue.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 20px 20px;
  border-radius: 100vmax;
  width: 40px;
  height: 40px;
  position: absolute;
  top: 0;
  left: 0;
}
.c-ctaCard__telText {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.c-ctaCard__telNum {
  font-family: var(--font-en);
  font-weight: 900;
  font-size: 4.0rem;
  letter-spacing: 0.02em;
  color: var(--base-white);
  text-decoration: none;
  line-height: 1;
  white-space: nowrap;
}
.c-ctaCard__telTime {
  font-weight: 500;
  font-size: var(--fs-14);
  letter-spacing: 0.06em;
  color: var(--base-white);
  line-height: 1.6;
  white-space: nowrap;
}
@media (width < 960px) {
  .c-ctaArea__inner {
    grid-template-columns: 1fr;
  }
  .c-ctaCard__desc {
    padding: 0 8px;
    font-size: 1.6rem;
  }
  .c-ctaCard__telTime {
    font-size: 1.4rem;
  }
}
@media (width < 768px) {
  .c-ctaArea {
    padding: 32px 8px;
  }
  .c-ctaArea__inner {
    flex-direction: column;
    gap: 20px;
  }
  .c-ctaCard__block--right {
    gap: 24px;
  }
  .c-ctaCard {
    padding: 64px 24px;
  }
  .c-ctaCard__image {
    width: 100%;
    max-width: 300px;
    height: auto;
  }
  .c-ctaCard__telContent {
    padding-left: 44px;
  }
  .c-ctaCard__telContent::before {
    width: 32px;
    height: 32px;
  }
  .c-ctaCard__telNum {
    font-size: 3.2rem;
  }
  .c-ctaCard__telTime {
    font-size: 1.2rem;
  }
  .c-ctaCard__telWrap {
    padding: 24px 8px;
  }
  .c-ctaCard__formWrap {
    padding: 0 8px;
  }
}

/* -- c-pagination ------------------------------------------ */
.c-pagination__list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  list-style: none;
  padding: 40px 0;
}
.c-pagination__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  cursor: pointer;
  height: 44px;
}
.c-pagination__btn--num {
  width: 35px;
  flex-direction: column;
  justify-content: flex-start;
  padding: 12px 12px 0;
  font-family: var(--font-en);
  font-weight: 900;
  font-size: 1.8rem;
  letter-spacing: 0.04em;
  color: var(--base-black);
  line-height: 1;
  gap: 12px;
}
.c-pagination__btn--num::after {
  content: "";
  display: block;
  height: 2px;
  width: 0;
  background: var(--base-black);
  transition: width 0.2s ease;
}
@media (hover: hover) {
  .c-pagination__btn--num:not(.is-current):hover::after {
    width: 35px;
  }
}
.c-pagination__btn--num.is-current {
  width: 44px;
  background: var(--base-black);
  color: var(--base-white);
  border-radius: 4px;
}
.c-pagination__btn--num.is-current::after {
  display: none;
}
.c-pagination__btn--prev,
.c-pagination__btn--next {
  width: 44px;
  height: 44px;
  border-radius: 4px;
  transition: background-color 0.2s ease;
}
.c-pagination__btn--prev[disabled],
.c-pagination__btn--next[disabled] {
  opacity: 0.3;
  cursor: default;
  pointer-events: none;
}
@media (hover: hover) {
  .c-pagination__btn--prev:not([disabled]):hover,
  .c-pagination__btn--next:not([disabled]):hover {
    background-color: var(--base-light-gray);
  }
}
/* アニメーションコンテナ */
.c-pagination__anim {
  display: flex;
  align-items: center;
  width: 16px;
  height: 16px;
  overflow: hidden;
}
.c-pagination__anim-inner {
  display: flex;
  gap: 16px;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}
/* Next: default は2つ目の矢印を表示（translateX -32px） */
.c-pagination__btn--next .c-pagination__anim-inner {
  transform: translateX(-32px);
}
@media (hover: hover) {
  /* Next: ホバーで1つ目の矢印が左からスライドイン */
  .c-pagination__btn--next:not([disabled]):hover .c-pagination__anim-inner {
    transform: translateX(0);
  }
  /* Prev: ホバーで2つ目の矢印が右からスライドイン */
  .c-pagination__btn--prev:not([disabled]):hover .c-pagination__anim-inner {
    transform: translateX(-32px);
  }
}
/* アイコン */
.c-pagination__icon {
  display: block;
  width: 16px;
  height: 16px;
  background-color: var(--base-black);
  -webkit-mask-image: url(../img/common/icon_arrow.svg);
  mask-image: url(../img/common/icon_arrow.svg);
  -webkit-mask-size: 12px 8px;
  mask-size: 12px 8px;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  flex-shrink: 0;
}
.c-pagination__icon--prev {
  transform: rotate(180deg);
}

/* == layout ===================================================== */
.l-inner {
  padding-top: 120px;
}
.l-inner--top {
  background-color: var(--base-white-gray);
}
.l-inner--under {
  margin-top: 88px;
}
@media (width < 768px) {
  .l-inner {
    padding-top: 96px;
  }
}

/* == header ===================================================== */
.l-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--base-white);
  transition: transform 0.5s cubic-bezier(0.34, 1, 0.64, 1);
}
.l-header.is-hidden {
  transform: translateY(-100%);
  transition: transform 0.25s ease-in;
}
.l-header__inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 12px 12px 32px;
  z-index: 1000;
}
.l-header__logo {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
  text-decoration: none;
}
.l-header__right {
  display: flex;
  align-items: center;
  gap: min(3.06vw, 44px);
}
.l-header__navMenu {
  display: flex;
  align-items: center;
  gap: min(2.5vw, 36px);
}
.l-header__navLink {
  display: flex;
  align-items: center;
  font-weight: 700;
  font-size: var(--fs-16);
  letter-spacing: 0.06em;
  color: var(--base-black);
  white-space: nowrap;
  line-height: 1.6;
  transition: 0.2s;
}
@media (hover:hover) {
  .l-header__navLink:hover {
    color: var(--main-blue);
  }
}
.l-header__cta {
  display: flex;
  align-items: center;
  gap: min(1.94vw, 28px);
}
.l-header__tel {
  display: flex;
  align-items: center;
  gap: 12px;
  height: 64px;
  padding: 0 0 0 44px;
}
.l-header__tel__info {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 4px;
  white-space: nowrap;
}
.l-header__tel__info::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -44px;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  background: var(--main-navy);
  border-radius: 100vmax;
  background-image: url(../img/common/icon-phone.svg);
  background-position: center;
  background-size: 16px 16px;
  background-repeat: no-repeat;
}
.l-header__telNum {
  font-family: var(--font-en);
  font-weight: 900;
  font-size: 28px;
  letter-spacing: 0.02em;
  color: var(--base-black);
  line-height: 1;
}
.l-header__tel-time {
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--base-black);
  line-height: 1;
}
.l-header__contact {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  width: 200px;
  height: 64px;
  padding: 8px 24px;
  background: var(--main-red);
  border: 1px solid var(--main-red);
  border-radius: 12px;
  overflow: hidden;
  flex-shrink: 0;
  transition: 0.2s;
}
.l-header__contact span {
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.06em;
  color: var(--base-white);
  line-height: 1.6;
  padding-left: 38px;
  background-image: url(../img/common/icon_mail.svg);
  background-position: top 3px left;
  background-size: 24px 24px;
  background-repeat: no-repeat;
  transition: color 0.2s, background-image 0.2s;
}
@media (hover:hover) {
  .l-header__contact:hover {
    background: var(--base-white);
  }
  .l-header__contact:hover span {
    color: var(--main-red);
    background-image: url(../img/common/icon_mail-red.svg);
  }
}
/* -- burger (SP only) -------------------------------------- */
.l-header__burger {
  display: none;
  position: relative;
  width: 56px;
  height: 56px;
  background: var(--main-navy);
  border-radius: 8px;
  flex-shrink: 0;
  z-index: 101;
}
.l-header__burger span {
  position: absolute;
  left: 16px;
  width: 24px;
  height: 1px;
  background: var(--base-white);
  transition: transform 0.3s ease, opacity 0.3s ease, top 0.3s ease;
}
.l-header__burger span:nth-child(1) {
  top: 18.5px;
}
.l-header__burger span:nth-child(2) {
  top: 27.5px;
}
.l-header__burger span:nth-child(3) {
  top: 36.5px;
}
.l-header__burger.is-active span:nth-child(1) {
  top: 27.5px;
  transform: rotate(30deg);
}
.l-header__burger.is-active span:nth-child(2) {
  opacity: 0;
}
.l-header__burger.is-active span:nth-child(3) {
  top: 27.5px;
  transform: rotate(-30deg);
}
/* -- drawer (SP only) -------------------------------------- */
.l-header__drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100dvh;
  background: var(--base-white);
  transform: translateX(100%);
  opacity: 1;
  transition: transform 0.4s ease;
  z-index: 99;
  display: flex;
  flex-direction: column;
  padding-top: 86px;
  pointer-events: none;
}
.l-header__drawer.is-open {
  transform: translateX(0);
  pointer-events: auto;
}
.l-header__drawerBody {
  flex: 1;
  background: var(--base-white-gray);
  overflow-y: auto;
  padding: 40px 40px 80px;
  display: flex;
  flex-direction: column;
  gap: 48px;
}
.l-header__drawer-menu {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.l-header__drawer-link {
  display: flex;
  align-items: center;
  min-height: 48px;
  padding: 8px 0;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.06em;
  color: var(--base-black);
  line-height: 1.6;
  transition: opacity 0.2s;
}
.l-header__drawer-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  width: 100%;
}
.l-header__tel--sp {
  width: 100%;
  height: auto;
  padding: 0 12px;
  align-items: flex-start;
  gap: 12px;
}
.l-header__telNum--sp {
  font-size: 32px;
  letter-spacing: 0.02em;
}
.l-header__tel-time--sp {
  font-size: 14px;
  letter-spacing: 0.06em;
}
.l-header__contact--sp {
  width: 100%;
  height: 72px;
}
.l-header__contact--sp span {
  font-size: 18px;
  letter-spacing: 0.06em;
}
/* -- overlay ----------------------------------------------- */
.l-header__overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 98;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}
.l-header__overlay.is-visible {
  opacity: 1;
  pointer-events: auto;
}

@media (width < 1120px) {
  .l-header__inner {
    padding: 15px 12px;
  }
  .l-header__right {
    display: none;
  }
  .l-header__burger {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .l-header__drawerBody .l-header__right {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 40px;
    width: 100%;
    gap: 0;
    margin: 0 auto;
  }
  .l-header__nav {
    padding-bottom: 48px;
    border-bottom: 1px dashed var(--base-black);
  }
  .l-header__drawerBody .l-header__navMenu {
    align-items: flex-start;
    max-width: 310px;
  }
  .l-header__drawerBody .l-header__navMenu {
    flex-direction: column;
    gap: 32px;
  }
  .l-header__drawerBody .l-header__navLink {
    min-height: 48px;
    padding: 8px 0;
    font-size: 18px;
  }
  .l-header__tel__info::before {
    top: 0;
    transform: none;
  }
  .l-header__drawerBody .l-header__cta {
    flex-direction: column;
    align-items: flex-start;
    gap: 46px;
    margin-top: 48px;
  }
  .l-header__drawerBody .l-header__tel {
    width: 100%;
    height: auto;
    padding-left: 56px;
    align-items: flex-start;
  }
  .l-header__drawerBody .l-header__telNum {
    font-size: 32px;
    letter-spacing: 0.02em;
  }
  .l-header__drawerBody .l-header__tel-time {
    font-size: 14px;
  }
  .l-header__drawerBody .l-header__contact {
    width: 100%;
    max-width: 310px;
    height: 72px;
    justify-content: center;
  }
  .l-header__drawerBody .l-header__contact span {
    font-size: 18px;
    width: 100%;
    text-align: center;
    padding-left: 24px;
  }
}

/* == footer ===================================================== */
.l-footer {
  background: var(--base-off-white);
  padding: 80px 80px 56px;
  display: flex;
  flex-direction: column;
  gap: 80px;
}
.l-footer__topBlock {
  display: flex;
  gap: 40px min(8.33vw, 120px);
  align-items: flex-start;
  justify-content: flex-end;
  padding-bottom: 16px;
}

/* -- company info ---------------------------------------- */
.l-footer__companyInfo {
  flex: 1 0 0;
  display: flex;
  flex-direction: column;
  gap: 56px;
  min-width: 364px;
}
.l-footer__logo img {
  width: 363px;
  height: auto;
}
.l-footer__companyText {
  display: flex;
  flex-direction: column;
  gap: 24px;
  color: var(--base-black);
}
.l-footer__companyName {
  font-size: 1.8rem;
  font-weight: var(--font-weight-700);
  line-height: 1.6;
  letter-spacing: 0.06em;
}
.l-footer__companyAddress {
  display: flex;
  flex-direction: column;
  font-size: 1.5rem;
  font-weight: var(--font-weight-500);
  line-height: 1.6;
  letter-spacing: 0.06em;
}
.l-footer__companyReg {
  font-size: 1.5rem;
  font-weight: var(--font-weight-500);
  line-height: 1.6;
  letter-spacing: 0.06em;
}
.l-footer__menuBlock {
  display: flex;
  gap: min(8.33vw, 120px);
}
/* -- nav ------------------------------------------------- */
.l-footer__navMenu {
  display: flex;
  flex-direction: column;
  gap: 8px;
  list-style: none;
  padding-top: 8px;
}
.l-footer__navLink {
  display: flex;
  align-items: center;
  height: 48px;
  font-size: 1.6rem;
  font-weight: var(--font-weight-500);
  color: var(--base-black);
  text-decoration: none;
  letter-spacing: 0.06em;
  white-space: nowrap;
  transition: 0.3s;
}
@media (hover:hover) {
  .l-footer__navLink:hover {
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-decoration-color: var(--base-black);
    text-underline-offset: 0.15em;
    text-decoration-skip-ink: none;
  }
}

/* -- recommend ------------------------------------------- */
.l-footer__recommend {
  width: 360px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-top: 24px;
}
.l-footer__recommendTitle {
  font-size: 1.4rem;
  font-weight: var(--font-weight-700);
  color: var(--base-black);
  letter-spacing: 0.06em;
  padding-left: 22px;
  background-image: url(../img/common/icon_star_blue.svg);
  background-position: center left;
  background-size: 16px 16px;
  background-repeat: no-repeat;
}
.l-footer__specialLink {
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-decoration: none;
}
.l-footer__specialThumb {
  aspect-ratio: 360 / 222;
  background: var(--base-light-gray);
  border-radius: 16px;
  overflow: hidden;
  position: relative;
}
.l-footer__specialThumb::after {
  content: '';
  position: absolute;
  inset: 8px;
  border: 1px solid var(--base-white);
  border-radius: 8px;
  opacity: 0.5;
  pointer-events: none;
}
.l-footer__specialThumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.2s ease;
}
.l-footer__specialTextWrap {
  display: flex;
  align-items: flex-end;
  gap: 8px;
}
.l-footer__specialTitle {
  flex: 1;
  min-width: 0;
  font-size: 1.4rem;
  font-weight: var(--font-weight-700);
  color: var(--base-black);
  letter-spacing: 0.06em;
  line-height: 1.6;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.l-footer__specialArrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 20px;
  background: var(--base-black);
  border-radius: 4px;
  background-image: url(../img/common/icon_arrow.svg);
  background-size: 9px 6px;
  background-position: center;
  background-repeat: no-repeat;
  flex-shrink: 0;
  transition: background-color 0.1s ease;
}
@media (hover:hover) {
  .l-footer__specialLink:hover .l-footer__specialThumb img {
    transform: scale(1.05);
  }
  .l-footer__specialLink:hover .l-footer__specialArrow {
    background-color: var(--main-blue);
  }
  .l-footer__specialLink:hover .l-footer__specialTitle {
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-decoration-color: var(--base-black);
    text-underline-offset: 0.15em;
    text-decoration-skip-ink: none;
  }
}

/* -- bottom block ---------------------------------------- */
.l-footer__bottomBlock {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.l-footer__bottomBlock::before {
  content: "";
  width: 100%;
  height: 1px;
  border-bottom: 1px dashed var(--base-medium-light-gray);
  position: absolute;
  top: -40px;
  left: 0;
}
.l-footer__links {
  display: flex;
  gap: 24px;
  list-style: none;
}

.l-footer__link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 16px 20px 16px 0;
  font-size: 1.4rem;
  font-weight: var(--font-weight-500);
  color: var(--base-black);
  text-decoration: none;
  letter-spacing: 0.06em;
  white-space: nowrap;
  /* background-image: url(../img/common/icon_blank.svg);
  background-size: 14px 14px;
  background-position: right center;
  background-repeat: no-repeat; */
}
@media (hover:hover) {
  .l-footer__link:hover {
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-decoration-color: var(--base-black);
    text-underline-offset: 0.15em;
    text-decoration-skip-ink: none;
  }
}
.l-footer__copyright {
  font-size: var(--fs-12);
  font-weight: var(--font-weight-500);
  color: var(--base-black);
  letter-spacing: 0.06em;
  line-height: 1.6;
}
@media (width < 1280px) {
  .l-footer__topBlock {
    gap: 0;
  }
  .l-footer__menuBlock {
    flex-direction: column;
    gap: 48px;
  }
  .l-footer__navMenu {
    height: 176px;
    flex-wrap: wrap;
    gap: 16px 24px;
    padding: 0;
  }
  .l-footer__nav {
    position: relative;
    width: 100%;
    padding: 0 24px;
  }
  .l-footer__nav::after {
    content: "";
    position: absolute;
    left: 0;
    width: 100%;
    border-bottom: 1px dashed var(--base-medium-light-gray);
    bottom: -24px;
  }
  .l-footer__recommend {
    width: 36.72vw;
    padding: 24px 24px 0;
  }
}
@media (width < 960px) {
  .l-footer {
    padding: 80px 32px 40px;
    gap: 48px;
  }
  .l-footer__companyInfo,
  .l-footer__recommend {
    width: 100%;
    min-width: auto;
    padding: 0;
  }
  .l-footer__recommend {
    padding-top: 16px;
  }
  .l-footer__logo img {
    width: 318px;
  }
  .l-footer__companyInfo {
    padding-bottom: 16px;
  }
  .l-footer__topBlock {
    flex-direction: column;
    gap: 48px;
  }
  .l-footer__menuBlock {
    width: 100%;
  }
  .l-footer__nav {
    padding: 0;
  }
  .l-footer__nav::before {
    content: "";
    position: absolute;
    left: 0;
    width: 100%;
    border-top: 1px dashed var(--base-medium-light-gray);
    top: -28px;
  }
  .l-footer__bottomBlock {
    flex-direction: column;
    gap: 16px;
  }
  .l-footer__bottomBlock::before {
    content: "";
    position: absolute;
    left: 0;
    width: 100%;
    top: -24px;
  }
}


/* == index ====================================================== */
/* -- p-importantInfo ----------------------------------------- */
.p-importantInfo {
  padding: 0 32px 32px;
}
.p-importantInfo__inner {
  display: flex;
  gap: 32px;
  align-items: center;
  background: #fff5f4;
  border: 1px solid var(--main-red);
  border-radius: 8px;
  padding: 32px 24px;
}
.p-importantInfo__heading {
  display: flex;
  align-items: center;
  gap: 8px;
  align-self: stretch;
  flex-shrink: 0;
  border-right: 1px solid var(--base-medium-light-gray);
  padding: 0 32px 0 48px;
  background-image: url(../img/common/icon_notion.svg);
  background-position: center left 16px;
  background-size: 24px 24px;
  background-repeat: no-repeat;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--main-red);
  letter-spacing: 0.06em;
}
.p-importantInfo__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 1;
  min-width: 0;
  list-style: none;
}
.p-importantInfo__item {
  display: flex;
  align-items: center;
  gap: 16px;
  position: relative;
}
.p-importantInfo__date {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--base-black);
  white-space: nowrap;
  font-feature-settings: 'palt';
  line-height: 1;
  flex-shrink: 0;
}
.p-importantInfo__linkText {
  flex: 0 1 auto;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--main-red);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-decoration-color: var(--main-red);
  text-underline-offset: 0.15em;
  text-decoration-skip-ink: none;
  letter-spacing: 0.06em;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  padding-right: 20px;
  background-image: url(../img/common/icon_arrow-red.svg);
  background-position: center right 0;
  background-size: 12px 8px;
  background-repeat: no-repeat;
}
@media (hover:hover) {
  .p-importantInfo__item:hover .p-importantInfo__linkText {
    text-decoration: none;
  }
}
@media (width < 768px) {
  .p-importantInfo {
    padding: 0 8px 16px;
  }
  .p-importantInfo__inner {
    flex-direction: column;
    align-items: flex-start;
    padding: 24px 20px 32px;
  }
  .p-importantInfo__heading {
    border-right: none;
    border-bottom: 1px solid var(--base-medium-light-gray);
    padding: 0 0 16px;
    width: 100%;
    padding: 0 32px 16px 40px;
    background-position: top left 8px;
  }
  .p-importantInfo__list {
    gap: 32px;
  }
  .p-importantInfo__item {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  .p-importantInfo__linkText {
    flex: 0 1 auto;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    white-space: normal;
    background-position: bottom 7px right 2px;
  }
}

/* -- p-indexMv layout ------------------------------------- */
.p-indexMv {
  padding: 0 32px 0 0;
}
.p-indexMv__inner {
  display: flex;
  align-items: stretch;
  gap: min(2.22vw, 32px);
}

/* -- p-indexMv quickMenu (PC Default) ----------------------------- */
.p-indexMv__quickMenu {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 30%;
  flex-shrink: 0;
}
/* menuList */
.p-indexMv__menuList {
  display: flex;
  flex-direction: column;
  background: var(--base-white);
  gap: 8px;
  border-radius: 12px;
  overflow: hidden;
  padding: 8px;
  flex: 1;
}
/* menuCard */
@keyframes mvMenuSlideIn {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.p-indexMv__menuCard {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
  flex: 1 0 0;
  padding: 22px 24px;
  background: var(--base-white);
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.2s, opacity 0.3s ease, transform 0.3s ease;
  animation: mvMenuSlideIn 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}
.p-indexMv__menuCard:nth-child(1) {
  animation-delay: 0.4s;
}
.p-indexMv__menuCard:nth-child(2) {
  animation-delay: 0.55s;
}
.p-indexMv__menuCard:nth-child(3) {
  animation-delay: 0.7s;
}
.p-indexMv__menuCard.is-leaving {
  opacity: 0;
  transform: translateX(-12px);
}
.p-indexMv__menuCard:not(:last-child)::after {
  content: '';
  position: absolute;
  bottom: -5.5px;
  left: 0;
  width: 100%;
  height: 1px;
  border-top: 1px dashed var(--base-light-gray);
  pointer-events: none;
}
@media (hover: hover) {
  .p-indexMv__menuCard:hover {
    background: var(--base-off-white);
  }
  .p-indexMv__menuCard:hover .p-indexMv__menuTitle {
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-decoration-color: var(--base-black);
    text-underline-offset: 0.15em;
    text-decoration-skip-ink: none;
  }
  .p-indexMv__menuCard:hover .p-indexMv__menuArrow {
    background-color: var(--main-blue);
  }
}

/* titleWrap */
.p-indexMv__menuTitleWrap {
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
}
.p-indexMv__menuIcon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
}
.p-indexMv__menuTitle {
  flex: 1 0 0;
  font-weight: 700;
  font-size: var(--fs-20);
  letter-spacing: 0.06em;
  color: var(--base-black);
  line-height: 2.2;
  white-space: nowrap;
  padding-left: 48px;
  background-position: center left;
  background-size: 36px 36px;
  background-repeat: no-repeat;
}
.p-indexMv__menuTitle--01 {
  background-image: url(../img/common/icon_course.svg);
}
.p-indexMv__menuTitle--02 {
  background-image: url(../img/common/icon_knowhow.svg);
}
.p-indexMv__menuTitle--03 {
  background-image: url(../img/common/icon_document.svg);
}
.p-indexMv__menuArrow {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 40px;
  height: 20px;
  background-color: var(--base-black);
  border-radius: 4px;
  background-image: url(../img/common/icon_arrow.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 10px 7px;
  transition: background-color 0.1s;
}
/* desc */
.p-indexMv__menuDesc {
  font-weight: 500;
  font-size: 1.3rem;
  letter-spacing: 0.06em;
  color: var(--base-black);
  line-height: 1.8;
}
/* specialCard */
.p-indexMv__specialCard {
  display: block;
  position: relative;
  height: max(7.22vw, 104px);
  border-radius: 12px;
  overflow: hidden;
  background: var(--base-black);
  text-decoration: none;
  flex-shrink: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
  animation: mvMenuSlideIn 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.85s both;
}
.p-indexMv__specialCard.is-leaving {
  opacity: 0;
  transform: translateX(-12px);
}
/* 背景画像レイヤー */
.p-indexMv__specialCard::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url(../img/top/mv_menucard.jpg);
  background-size: cover;
  background-position: center;
  z-index: 0;
  transition: opacity 0.15s;
}
/* カラーオーバーレイレイヤー */
.p-indexMv__specialCard::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(137, 145, 151, 1);
  mix-blend-mode: multiply;
  z-index: 1;
  transition: 0.2s;
}
@media (hover: hover) {
  .p-indexMv__specialCard:hover::after {
    opacity: 0.8;
  }
  .p-indexMv__specialCard:hover .p-indexMv__specialTitle {
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-decoration-color: var(--base-white);
    text-underline-offset: 0.15em;
    text-decoration-skip-ink: none;
  }
  .p-indexMv__specialCard:hover .p-indexMv__specialArrow {
    background-color: var(--main-blue);
  }
}
.p-indexMv__specialInner {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
  height: 100%;
  padding: 0 32px;
  z-index: 2;
}
.p-indexMv__specialTitle {
  flex: 1 0 0;
  font-weight: 700;
  font-size: 1.6rem;
  letter-spacing: 0.06em;
  color: var(--base-white);
  line-height: 1.6;
}
.p-indexMv__specialArrow {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 40px;
  height: 20px;
  background-color: var(--base-black);
  border-radius: 4px;
  background-image: url(../img/common/icon_arrow.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 10px 7px;
  transition: background-color 0.1s;
}

/* -- p-indexMv slider (PC Default) ------------------------------------- */
.p-indexMv__sliderWrap {
  position: relative;
  flex: 1;
  min-width: 0;
  padding-left: 32px;
  overflow: visible;
}
/* ribbon */
.p-indexMv__ribbon {
  position: absolute;
  top: -12px;
  right: -12px;
  width: 178px;
  height: 178px;
  overflow: hidden;
  border-radius: 0 16px 0 0;
  z-index: 3;
  pointer-events: none;
}
/* swiper */
.p-indexMv__swiper {
  position: relative;
  height: 100%;
  overflow: hidden;
  border-radius: 16px;
}
.p-indexMv__swiper::before {
  content: "";
  border: 1px solid var(--base-white);
  opacity: .5;
  pointer-events: none;
  z-index: 2;
  border-radius: 8px;
  position: absolute;
  inset: 8px;
}
.p-indexMv__swiper .swiper-slide {
  display: block;
  /* これ消しちゃダメ */
  overflow: hidden;
}
.p-indexMv__swiper__img {
  height: 100%;
  pointer-events: none;
}
.p-indexMv__swiper__img img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  transition: 0.2s;
}
/* description card (PC: absolute overlay) */
.p-indexMv__slideDesc {
  position: absolute;
  bottom: 40px;
  left: 0;
  width: 418px;
  min-height: 174px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  background: var(--base-white);
  padding: 32px 32px 40px;
  border-radius: 0 16px 16px 0;
  text-decoration: none;
  z-index: 4;
  transition: 0.3s;
}
@media (hover: hover) {
  .p-indexMv__slideDesc:hover .p-indexMv__slideTitle,
  .p-indexMv__sliderWrap:has(.swiper-slide:hover) .p-indexMv__slideTitle {
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-decoration-color: var(--base-black);
    text-underline-offset: 0.15em;
    text-decoration-skip-ink: none;
  }
  .p-indexMv__slideDesc:hover .p-indexMv__slideArrow,
  .p-indexMv__sliderWrap:has(.swiper-slide:hover) .p-indexMv__slideArrow {
    background-color: var(--main-blue);
  }
  .p-indexMv__sliderWrap:has(.swiper-slide:hover) .p-indexMv__swiper__img img,
  .p-indexMv__sliderWrap:has(.p-indexMv__slideDesc:hover) .swiper-slide img {
    transform: scale(1.05);
  }
}
.p-indexMv__slideDescInner {
  display: flex;
  flex-direction: column;
  gap: 16px;
  opacity: 1;
  transition: 0.3s ease-out;
}
.p-indexMv__slideDesc.is-leaving .p-indexMv__slideDescInner {
  opacity: 0;
}
.p-indexMv__slideTitle {
  min-height: 73px;
  font-weight: 700;
  font-size: var(--fs-24);
  letter-spacing: 0.06em;
  color: var(--base-black);
  line-height: 1.6;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.p-indexMv__slideDate {
  font-family: var(--font-en);
  font-weight: 900;
  font-size: 13px;
  letter-spacing: 0.06em;
  color: var(--main-red);
  line-height: 1;
  white-space: nowrap;
}
.p-indexMv__slideArrow {
  display: block;
  position: absolute;
  bottom: 32px;
  right: 32px;
  width: 56px;
  height: 28px;
  background: var(--base-black);
  border-radius: 4px;
  background-image: url(../img/common/icon_arrow.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 12px 8px;
  transition: 0.2s;
}
/* indicator */
.p-indexMv__indicator {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  height: 38px;
  padding: 0 18px;
  position: absolute;
  bottom: 24px;
  right: 24px;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  z-index: 5;
}
.p-indexMv__indicatorBtn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  background: none;
  border: none;
  cursor: pointer;
  flex-shrink: 0;
}
.p-indexMv__indicatorBtn::before {
  content: '';
  display: block;
  width: 20px;
  height: 20px;
  background-image: url(../img/top/mv_arrow.svg);
  background-position: center;
  background-size: 20px 20px;
  background-repeat: no-repeat;
}
.p-indexMv__indicatorBtn--prev::before {
  transform: rotate(-180deg);
}
/* .p-indexMv__indicatorBtn--next::before {
  transform: rotate(135deg);
} */
/* pagination */
.p-indexMv__pagination.swiper-pagination {
  position: static;
  display: flex;
  align-items: center;
  gap: 8px;
  width: auto;
}
.p-indexMv__pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background-color: transparent;
  border: 1px solid var(--base-black);
  border-radius: 50%;
  opacity: 1;
  transition: background 0.3s;
  flex-shrink: 0;
}
.p-indexMv__pagination .swiper-pagination-bullet-active {
  background: var(--main-navy);
}
@media (width < 1080px) {
  .p-indexMv__inner {
    flex-direction: column;
  }
  .p-indexMv__quickMenu {
    width: 100%;
    padding-left: 32px;
  }
}
@media (width < 768px) {
  .p-indexMv {
    padding: 0 8px 32px;
  }
  .p-indexMv__inner {
    flex-direction: column;
    gap: 32px;
  }
  .p-indexMv__quickMenu {
    width: 100%;
    padding-left: 0;
  }
  .p-indexMv__ribbon {
    width: 144px;
    height: 144px;
    top: -4px;
    right: -4px;
  }
  .p-indexMv__sliderWrap {
    padding-left: 0;
  }
  .p-indexMv__swiper {
    overflow: hidden;
  }
  .p-indexMv__pagination.swiper-pagination {
    width: auto !important;
  }
  .p-indexMv__thumb {
    aspect-ratio: 1/1;
  }
  .p-indexMv__slideDesc {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    min-height: auto;
    padding: 20px 16px 24px;
    border-radius: 16px;
  }
  .p-indexMv__slideTitle {
    font-size: 20px;
  }
  .p-indexMv__slideDescInner {
    gap: 12px;
  }
  .p-indexMv__slideArrow {
    bottom: 16px;
    right: 16px;
  }
  .p-indexMv__menuTitle {
    font-size: 2.0rem;
  }
  .p-indexMv__indicator {
    position: static;
    justify-content: center;
    margin-top: 4px;
    background: none;
    box-shadow: none;
  }
  .p-indexMv__specialCard {
    height: 104px;
  }
}

/* == model course =============================================== */
.p-indexModel {
  position: relative;
  z-index: 1;
  padding: 32px 32px 0;
  background: linear-gradient(to bottom,
      #f7f7f7 0%,
      #f7f7f7 85%,
      #ffffff 85%,
      #ffffff 100%);
}
.p-indexModel__inner {
  position: relative;
  background-color: var(--main-white-beige);
  padding: 80px min(5.56vw, 80px) 120px;
  border-radius: 16px;
}
.p-indexModel__inner::before {
  content: "";
  position: absolute;
  top: -16px;
  right: 28.47vw;
  width: 122px;
  height: 130px;
  background-image: url(../img/common/illust_01.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
.p-indexModel__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 56px;
}
.p-indexModel .c-btn--pc {
  display: flex;
}
.p-indexModel .c-btn--sp {
  display: none;
}
@media (width < 1000px) {
  .p-indexModel .c-btn--pc {
    display: none;
  }
  .p-indexModel .c-btn--sp {
    display: flex;
    margin: 40px 0 0 auto;
  }
  .p-indexModel__inner:before {
    right: 80px;
  }
}
/* SP */
@media (width < 768px) {
  .p-indexModel {
    position: relative;
    padding: 0 0 104px;
  }
  .p-indexModel::before {
    content: "";
    background-image: url(../img/common/illust_02.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    width: 80px;
    height: 101px;
    position: absolute;
    bottom: 40px;
    left: 28px;
    z-index: 10;
  }
  .p-indexModel__inner {
    margin: 0 8px;
    padding: 104px 16px;
  }
  .p-indexModel__head {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }
  .p-indexModel .c-btn--sp {
    margin: 56px auto 0;
  }
  .p-indexModel__inner:before {
    width: 92px;
    height: 98px;
    right: 25px;
    top: -16px;
  }
  .p-indexMv__swiper .swiper-slide {
    aspect-ratio: 1 / 1;
  }
}

/* == model course/detail ======================================== */
/* -- p-modelMain ------------------------------------------ */
.p-modelMain {
  position: relative;
  background: var(--base-off-white);
  padding: 120px 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 56px;
}
/* search Result */
.p-modelResult {
  margin: 0 auto 0 0;
  padding: 0 16px;
}
.p-modelResult__title {
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.96px;
  display: flex;
  align-items: center;
  line-height: 1.2;
}
.p-modelResult__num {
  font-size: 2.4rem;
  letter-spacing: 0;
  padding: 0 4px 0 2px;
}
.p-modelResult__tags {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.p-modelResult__tags__item button {
  position: relative;
  font-size: 1.4rem;
  background-color: var(--base-white);
  border: 1px solid var(--base-medium-light-gray);
  border-radius: 100vmax;
  padding: 8px 28px 9px 16px;
  /* background-image: url(../img/model-course/icon_closeTag.svg);
  background-position: center right 12px;
  background-repeat: no-repeat;
  background-size: 7px 7px; */
}
.p-modelResult__tags__item button::before {
  content: "";
  position: absolute;
  right: 4px;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 100vmax;
  width: 20px;
  height: 20px;
  background-image: url(../img/model-course/icon_closeTag.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 7px 7px;
  transition: 0.2s;
}
@media (hover:hover) {
  .p-modelResult__tags__item button:hover::before {
    background-color: var(--base-white-gray);
  }
}
/* search field */
.p-modelSearch {
  display: flex;
  align-items: center;
  gap: 12px;
  height: 80px;
  padding: 0 40px;
  background: var(--base-white);
  border-radius: 999px;
  box-shadow: 0 4px 4px 0 rgba(33, 33, 33, 0.05);
  border: 1px solid var(--base-white);
  width: 100%;
  text-align: left;
  cursor: pointer;
  transition: 0.2s;
}
.p-modelSearch--top {
  position: absolute;
  top: -32px;
  left: 80px;
  right: 80px;
  width: auto;
}
.p-modelSearch__icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}
.p-modelSearch__label {
  flex: 1;
  font-weight: 700;
  font-size: 1.8rem;
  letter-spacing: 0.06em;
  line-height: 1.6;
  color: var(--base-black);
  font-feature-settings: 'palt' on;
}
.p-modelSearch__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 28px;
  background: var(--base-black);
  border-radius: 4px;
  border: none;
  cursor: pointer;
  flex-shrink: 0;
  transition: 0.1s;
}
.p-modelSearch__btnIcon {
  display: block;
  width: 10px;
  height: 10px;
  position: relative;
}
.p-modelSearch__btnIcon::before {
  content: "";
  position: absolute;
  top: 0;
  left: 4px;
  width: 2px;
  height: 10px;
  background: var(--base-white);
}
.p-modelSearch__btnIcon::after {
  content: "";
  position: absolute;
  top: 4px;
  left: 0;
  width: 10px;
  height: 2px;
  background: var(--base-white);
}
@media (hover:hover) {
  .p-modelSearch:hover {
    border: 1px solid var(--base-black);
  }
  .p-modelSearch:hover .p-modelSearch__btn {
    background-color: var(--main-blue);
  }
}
/* card list (listing page override) */
.p-modelMain__cardList {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: min(2.22vw, 32px);
  width: 100%;
}
.p-modelMain__cardList>li {
  display: grid;
  grid-row: span 4;
  grid-template-rows: subgrid;
  margin-bottom: 96px;
}
/* 後ろから3つ（＝最終行）の margin-bottom を 0 */
.p-modelMain__cardList>li:nth-last-child(-n+3) {
  margin-bottom: 0;
}
.p-modelMain__cardList a.c-modelCard {
  text-decoration: none;
}
@media (width < 1024px) {
  .p-modelMain {
    padding: 120px 40px;
  }
}
@media (width < 768px) {
  .p-modelMain {
    padding: 104px 16px;
  }
  .p-modelSearch--top {
    left: 16px;
    right: 16px;
  }
  .p-modelMain__cardList {
    grid-template-columns: 1fr;
    gap: 56px;
  }
  .p-modelMain__cardList>li {
    display: block;
    grid-row: auto;
    margin-bottom: 0;
  }
  .p-modelSearch {
    padding: 0 24px;
  }
  .p-modelSearch__label {
    font-size: 1.6rem;
  }
  .p-modelResult {
    padding: 0 8px;
  }
}

/* -- p-searchModal ------------------------------------------ */
.p-searchModal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.3s, visibility 0.3s;
}
.p-searchModal[aria-hidden="false"] {
  visibility: visible;
  opacity: 1;
}
.p-searchModal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(33, 33, 33, 0.4);
  cursor: pointer;
}
.p-searchModal__dialog {
  position: relative;
  z-index: 1;
  background: var(--base-white);
  border-radius: 16px;
  padding: 40px;
  width: min(1280px, calc(100% - 80px));
  max-height: calc(100svh - 80px);
  overflow-y: auto;
}
.p-searchModal__head {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 32px;
}
.p-searchModal__headIcon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}
.p-searchModal__headTitle {
  flex: 1;
  font-weight: 700;
  font-size: var(--fs-18);
  letter-spacing: 0.06em;
  line-height: 1.6;
  color: var(--base-black);
  margin: 0;
}
.p-searchModal__close {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
  border-radius: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-shrink: 0;
  transition: background-color 0.2s;
}
@media (hover: hover) {
  .p-searchModal__close:hover {
    background-color: var(--base-white-gray);
  }
}
.p-searchModal__closeIcon {
  display: block;
  position: relative;
  width: 18px;
  height: 18px;
}
.p-searchModal__closeIcon::before,
.p-searchModal__closeIcon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background: var(--base-black);
}
.p-searchModal__closeIcon::before {
  width: 2px;
  height: 24px;
  transform: translate(-50%, -50%) rotate(45deg);
}
.p-searchModal__closeIcon::after {
  width: 24px;
  height: 2px;
  transform: translate(-50%, -50%) rotate(45deg);
}
.p-searchModal__filterSet {
  display: flex;
  align-items: flex-start;
  gap: 40px;
  border-top: 1px dashed var(--base-medium-light-gray);
}
.p-searchModal__filterHead {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 120px;
  min-height: 66px;
  padding: 28px 8px 28px 32px;
  margin-left: 12px;
  flex-shrink: 0;
  background-position: center left;
  background-size: 24px 24px;
  background-repeat: no-repeat;
}
.p-searchModal__filterHead--area {
  background-image: url(../img/common/icon_filter-area.svg);
}
.p-searchModal__filterHead--schedule {
  background-image: url(../img/common/icon_filter-schedule.svg);
}
.p-searchModal__filterHead--season {
  background-image: url(../img/common/icon_filter-season.svg);
}
.p-searchModal__filterHead--feature {
  background-image: url(../img/common/icon_filter-feature.svg);
}
.p-searchModal__filterTitle {
  flex: 1;
  font-weight: 700;
  font-size: 1.4rem;
  letter-spacing: 0.06em;
  line-height: 1.6;
  color: var(--base-black);
}
.p-searchModal__checkList {
  flex: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 16px 40px;
  align-items: center;
  padding: 28px 0;
  list-style: none;
}
.p-searchModal__checkItem {
  position: relative;
  display: flex;
  align-items: center;
  width: 120px;
  padding-left: 34px;
  cursor: pointer;
  min-height: 28px;
  line-height: 1.6;
}
.p-searchModal__filterSet--feature .p-searchModal__checkItem {
  width: 280px;
}
.p-searchModal__checkItem input[type="checkbox"] {
  position: absolute;
  left: 0;
  top: 2px;
  width: 24px;
  height: 24px;
  appearance: none;
  -webkit-appearance: none;
  border-radius: 4px;
  border: 1px solid var(--base-dark-gray);
  background: var(--base-white);
  cursor: pointer;
  transition: border-color 0.15s ease, background-color 0.15s ease;
}
@media (hover: hover) {
  .p-searchModal__checkItem:hover input[type="checkbox"]:not(:checked) {
    border-color: var(--main-blue);
  }
  .p-searchModal__checkItem:hover input[type="checkbox"]:checked {
    background-color: var(--main-dark-blue);
    border-color: var(--main-dark-blue);
  }
}
.p-searchModal__checkItem input[type="checkbox"]:checked {
  background-color: var(--main-blue);
  border-color: var(--main-blue);
  background-image: url(../img/common/check.svg);
  background-size: 12px 24px;
  background-position: center;
  background-repeat: no-repeat;
}
.p-searchModal__checkLabel {
  font-weight: 500;
  font-size: 1.6rem;
  letter-spacing: 0.06em;
  line-height: 1.6;
  color: var(--base-black);
}
.p-searchModal__foot {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  border-top: 1px dashed var(--base-medium-light-gray);
  padding-top: 32px;
}
.p-searchModal__clear {
  width: 240px;
  height: 64px;
  background: var(--base-white);
  border: 1px solid var(--base-dark-gray);
  border-radius: 12px;
  font-family: var(--font-ja);
  font-weight: 700;
  font-size: var(--fs-16);
  letter-spacing: 0.06em;
  line-height: 1.6;
  color: var(--base-black);
  cursor: pointer;
  transition: 0.2s;
  font-feature-settings: 'palt';
}
.p-searchModal__submit {
  width: 240px;
  height: 64px;
  background: var(--base-black);
  border: 1px solid var(--base-black);
  border-radius: 12px;
  font-family: var(--font-ja);
  font-weight: 700;
  font-size: var(--fs-16);
  letter-spacing: 0.06em;
  line-height: 1.6;
  color: var(--base-white);
  cursor: pointer;
  transition: 0.2s;
  font-feature-settings: 'palt';
}
@media (hover: hover) {
  .p-searchModal__clear:hover {
    background: var(--base-white-gray);
  }
  .p-searchModal__submit:hover {
    background: var(--main-blue);
    border-color: var(--main-blue);
  }
}
@media (width < 768px) {
  /* .p-searchModal {
    align-items: flex-end;
    justify-content: stretch;
  } */
  .p-searchModal__dialog {
    display: flex;
    flex-direction: column;
    width: max(358px, 91.79vw);
    max-height: 90svh;
    border-radius: 16px;
    padding: 0;
    background: var(--base-off-white);
    overflow: hidden;
  }
  .p-searchModal__head {
    flex-shrink: 0;
    background: var(--base-white);
    border-bottom: 1px solid var(--base-medium-light-gray);
    padding: 16px 56px 16px 16px;
    position: relative;
  }
  .p-searchModal__headIcon {
    width: 20px;
    height: 20px;
  }
  .p-searchModal__headTitle {
    font-size: 1.6rem;
  }
  .p-searchModal__close {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
  }
  .p-searchModal__body {
    flex: 1;
    overflow-y: auto;
    min-height: 0;
    padding: 0 16px 16px;
  }
  .p-searchModal__filterSet {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 4px 0 32px;
  }
  .p-searchModal__filterSet:first-child {
    border-top: none;
  }
  .p-searchModal__filterHead {
    width: auto;
    padding: 23px 8px 23px 32px;
  }
  .p-searchModal__checkList {
    padding: 0 16px;
    width: 100%;
    gap: 16px 40px;
  }
  .p-searchModal__checkList--feature {
    flex-direction: column;
    align-items: flex-start;
  }
  .p-searchModal__filterSet--feature .p-searchModal__checkItem {
    width: auto;
  }
  .p-searchModal__foot {
    flex-shrink: 0;
    background: var(--base-white);
    border-top: 1px solid var(--base-medium-light-gray);
    gap: 8px;
    padding: 16px 8px;
  }
  .p-searchModal__foot .c-btn--s {
    width: max(40.77vw, 159px);
  }
  .p-searchModal__clear,
  .p-searchModal__submit {
    flex: 1;
    width: auto;
  }
}

/* == column ===================================================== */
.p-indexColumn {
  position: relative;
  background: var(--base-white);
  padding: 120px 0;
  overflow-x: clip;
}
.p-indexColumn::before {
  content: "";
  position: absolute;
  top: -24px;
  right: -48px;
  background-image: url(../img/top/stamp.svg);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  width: 590px;
  height: 352px;
  z-index: 0;
}
.p-indexColumn__inner {
  position: relative;
  padding: 0 80px;
  z-index: 1;
}
/* head */
.p-indexColumn__head {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 56px;
}
.p-indexColumn__head .c-heading {
  position: relative;
}
.p-indexColumn__head .c-heading::before {
  content: "";
  position: absolute;
  top: -140px;
  right: -130px;
  width: 106px;
  height: 134px;
  background-image: url(../img/common/illust_02.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
/* card list */
.p-indexColumn__cardList {
  display: flex;
  align-items: flex-start;
  gap: min(3.89vw, 56px);
}

/* -- p-columnCardFeatured ------------------------------------- */
.p-columnCardFeatured {
  flex: 0 0 calc(40% - 28px);
  display: flex;
  flex-direction: column;
  gap: 20px;
  text-decoration: none;
  position: relative;
}
.p-columnCardFeatured__thumb {
  position: relative;
  aspect-ratio: 478 / 338;
  border-radius: 16px;
  overflow: hidden;
}
.p-columnCardFeatured__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.2s ease;
}
.p-columnCardFeatured__thumb::after {
  content: '';
  position: absolute;
  inset: 8px;
  border: 1px solid var(--base-white);
  border-radius: 8px;
  opacity: 0.5;
  pointer-events: none;
  z-index: 2;
}
@media (hover: hover) {
  .p-columnCardFeatured:hover .p-columnCardFeatured__thumb img {
    transform: scale(1.05);
  }
}
.p-columnCardFeatured__body {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 0 12px;
}
.p-columnCardFeatured__title {
  font-weight: 700;
  font-size: var(--fs-20);
  letter-spacing: 0.06em;
  color: var(--base-black);
  line-height: 1.6;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.p-columnCardFeatured__arrow {
  position: absolute;
  bottom: -6px;
  right: 12px;
  width: 56px;
  height: 28px;
  background-color: var(--base-black);
  border-radius: 4px;
  background-image: url(../img/common/icon_arrow.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 12px 8px;
  transition: background-color 0.1s;
}
@media (hover: hover) {
  .p-columnCardFeatured:hover .p-columnCardFeatured__arrow {
    background-color: var(--main-blue);
  }
}

/* -- p-columnCard (archive cards) ---------------------------- */
.p-indexColumn__archive {
  flex: 1;
  min-width: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
}
.p-indexColumn__archive>li {
  padding: 16px 0;
}
.p-indexColumn__archive>li:first-child {
  padding-top: 0;
}
.p-indexColumn__archive>li:last-child {
  padding-bottom: 0;
}
.p-indexColumn__archive>li+li {
  border-top: 1px dashed var(--base-medium-light-gray);
}
.p-columnCard {
  display: flex;
  align-items: center;
  gap: 24px;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}
.p-columnCard__thumb {
  flex-shrink: 0;
  width: max(226px, 15.69vw);
  aspect-ratio: 226 / 160;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
}
.p-columnCard__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.2s ease;
}
.p-columnCard__thumb::after {
  content: '';
  position: absolute;
  inset: 8px;
  border: 1px solid var(--base-white);
  border-radius: 8px;
  opacity: 0.5;
  pointer-events: none;
  z-index: 2;
}
@media (hover: hover) {
  .p-columnCard:hover .p-columnCard__thumb img {
    transform: scale(1.05);
  }
}
.p-columnCard__body {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-bottom: 8px;
  padding-right: 48px;
}
.p-columnCard__info {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px 16px;
}
.p-columnCard__date {
  font-family: var(--font-en);
  font-weight: 900;
  font-size: 1.4rem;
  letter-spacing: 0.02em;
  color: var(--base-dark-gray);
  line-height: 1;
  white-space: nowrap;
}
.c-column__category {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  height: 24px;
  padding: 0 16px;
  background: var(--main-pale-blue);
  border-radius: 999px;
  font-size: 1.3rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--base-black);
  white-space: nowrap;
  line-height: 1.2;
}
.p-columnCard__title {
  font-weight: 700;
  font-size: 1.6rem;
  letter-spacing: 0.06em;
  color: var(--base-black);
  line-height: 1.6;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
@media (hover:hover) {
  .p-columnCardFeatured:hover .p-columnCardFeatured__title,
  .p-columnCard:hover .p-columnCard__title {
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-decoration-color: var(--base-black);
    text-underline-offset: 0.15em;
    text-decoration-skip-ink: none;
  }
}
.p-columnCard__arrow {
  position: absolute;
  bottom: 8px;
  right: 0;
  width: 40px;
  height: 20px;
  background-color: var(--base-black);
  border-radius: 4px;
  background-image: url(../img/common/icon_arrow.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 10px auto;
  transition: background-color 0.1s;
}
.p-indexColumn .c-btn--pc {
  display: flex;
}
.p-indexColumn .c-btn--sp {
  display: none;
}
@media (hover: hover) {
  .p-columnCard:hover .p-columnCard__arrow {
    background-color: var(--main-blue);
  }
}
@media (width < 900px) {
  .p-indexColumn__cardList {
    flex-direction: column;
    gap: 56px;
  }
  .p-columnCardFeatured {
    width: 100%;
  }
}
@media (width < 768px) {
  .p-indexColumn {
    padding: 0 0 104px 0;
    overflow: hidden;
  }
  .p-indexColumn::before {
    width: 295px;
    height: 176px;
    top: 0;
    right: -28px;
  }
  .p-indexColumn__inner {
    padding: 0 16px;
  }
  .p-indexColumn__head {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }
  .p-indexColumn__cardList {
    flex-direction: column;
    gap: 0;
  }
  .p-indexColumn__archive>li:first-child,
  .p-indexColumn__archive>li {
    padding: 32px 0;
  }
  .p-indexColumn__archive>li:first-child {
    border-top: 1px dashed var(--base-medium-light-gray);
  }
  .p-indexColumn__archive>li:last-child {
    padding-bottom: 0;
  }
  .p-columnCardFeatured {
    flex: none;
    width: 100%;
    padding-bottom: 32px;
  }
  .p-columnCard {
    gap: 16px;
    flex-direction: column;
  }
  .p-columnCard__thumb {
    width: 100%;
    height: auto;
  }
  .p-columnCardFeatured__title,
  .p-columnCard__title {
    font-size: 1.8rem;
  }
  .p-columnCardFeatured__body .c-tags {
    padding-right: 48px;
  }
  .p-columnCardFeatured__body .p-columnCardFeatured__arrow {
    width: 40px;
    height: 20px;
    background-size: 10px auto;
    bottom: 0;
    right: 0;
  }
  .p-columnCard__body {
    width: 100%;
    padding: 0 12px;
  }
  .p-indexColumn__archive {
    width: 100%;
  }
  .p-columnCard__arrow {
    bottom: 0;
    right: 0;
  }
  .p-columnCard__body .c-tags {
    padding-right: 48px;
  }
  .p-indexColumn .c-btn--pc {
    display: none;
  }
  .p-indexColumn .c-btn--sp {
    display: flex;
    margin: 56px auto 0;
  }
  .p-indexColumn__head .c-heading::before {
    content: none;
  }
}

/* -- Features ---------------------------- */
.p-indexFeatures {
  position: relative;
  background: var(--main-pale-blue);
  padding: 120px 0;
}
.p-indexFeatures::before {
  content: "";
  position: absolute;
  top: -30px;
  right: 22.64vw;
  width: 154px;
  height: 158px;
  background-image: url(../img/common/illust_03.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
.p-indexFeatures__inner {
  padding: 0 80px;
}
.p-indexFeatures__heading {
  margin-bottom: 80px;
}
.p-indexFeatures__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 80px;
  list-style: none;
}
/* 3カラム時：列1・2の右にdashed線（擬似要素） */
.p-featureCard:not(:nth-child(3n))::after {
  content: '';
  position: absolute;
  top: 0;
  right: -40px;
  height: 100%;
  border-right: 1px dashed var(--main-blue-gray);
}
.p-featureCard {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 48px;
}
.p-featureCard__thumb {
  position: relative;
  background: var(--base-white);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
}
.p-featureCard__thumb img {
  width: 136px;
  height: 136px;
  object-fit: contain;
  display: block;
}
.p-featureCard__num {
  position: absolute;
  bottom: -20px;
  left: 8px;
  font-family: var(--font-en);
  font-weight: 900;
  font-size: 48px;
  color: var(--main-navy);
  line-height: 1;
  letter-spacing: 0.02em;
  z-index: 2;
}
.p-featureCard__body {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 0 8px;
}
.p-featureCard__title {
  font-weight: 700;
  font-size: 2.0rem;
  letter-spacing: 0.06em;
  color: var(--main-navy);
  line-height: 1.6;
}
.p-featureCard__text {
  font-weight: 500;
  font-size: 1.5rem;
  letter-spacing: 0.06em;
  color: var(--base-black);
  line-height: 2;
}
@media (width < 1280px) {
  .p-indexFeatures__list {
    grid-template-columns: repeat(2, 1fr);
  }
  /* 2カラム時：3列ルールをリセットし、列1のみ適用 */
  .p-featureCard:not(:nth-child(3n))::after {
    content: none;
  }
  .p-featureCard:not(:nth-child(2n))::after {
    content: '';
    position: absolute;
    top: 0;
    right: -40px;
    height: 100%;
    border-right: 1px dashed var(--main-blue-gray);
  }
}
@media (width < 960px) {
  .p-indexFeatures::before {
    right: 22.40px;
  }
}
@media (width < 768px) {
  .p-indexFeatures {
    padding: 104px 0;
  }
  .p-indexFeatures:before {
    width: 116px;
    height: 119px;
    right: 14px;
    top: -60px;
  }
  .p-indexFeatures__inner {
    padding: 0 16px;
  }
  .p-indexFeatures__list {
    grid-template-columns: 1fr;
    gap: 64px;
  }
  .p-featureCard:not(:nth-child(2n))::after {
    content: none;
  }
}

/* == p-modelDetail ============================================== */
/* -- p-modelDetailTop --------------------------------------------- */
.p-modelMv__desc {
  font-size: 1.6rem;
  letter-spacing: 0.06em;
}
.p-modelDetailTop {
  position: relative;
  padding: 56px 80px 160px;
  background: var(--base-off-white);
}
.p-modelDetailTop__breadcrumb {
  margin-bottom: 85px;
}
.p-modelDetailTop__inner {
  display: grid;
  grid-template-columns: 1fr 44.44vw;
  gap: min(3.89vw, 56px);
  align-items: start;
}
.p-modelDetailTop__content {
  display: flex;
  flex-direction: column;
  gap: 56px;
}

/* h1Wrap */
.p-modelDetailTop__h1Wrap {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.p-modelDetailTop__category {
  display: flex;
  align-items: center;
  gap: 8px;
}
.p-modelDetailTop__categoryLabel {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.6;
  color: var(--base-black);
}
.p-modelDetailTop__title {
  font-size: 3.2rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.6;
  color: var(--base-black);
}

/* infoWrap */
.p-modelDetailTop__infoWrap {
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding-top: 56px;
  border-top: 1px dashed var(--base-medium-light-gray);
}
.p-modelDetailTop__infoList {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.p-modelDetailTop__infoItem {
  display: flex;
  align-items: flex-start;
  gap: 24px;
}
.p-modelDetailTop__dt {
  flex-shrink: 0;
  width: 96px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--base-white);
  border-radius: 4px;
  font-size: var(--fs-14);
  font-weight: 700;
  letter-spacing: 0.06em;
}
.p-modelDetailTop__dd {
  font-size: var(--fs-16);
  font-weight: 500;
  letter-spacing: 0.06em;
  line-height: 1.6;
  padding-top: 4px;
}
.p-modelDetailTop__dd .c-tags {
  gap: 8px 16px;
}
.p-modelDetailTop__dd .c-tags__item {
  font-size: var(--fs-16);
  line-height: 1.6;
}
.p-modelDetailTop__updateDate {
  font-size: var(--fs-14);
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--base-black);
}

/* introduction */
.p-modelDetailTop__introduction {
  display: flex;
  flex-direction: column;
  gap: 56px;
  padding-top: 56px;
  border-top: 1px dashed var(--base-medium-light-gray);
}
.p-modelDetailTop__body {
  font-size: var(--fs-18);
  font-weight: 500;
  letter-spacing: 0.06em;
  line-height: 2;
  color: var(--base-black);
}
.p-modelDetailTop__body p:not(:last-child) {
  margin-bottom: 30px;
}
.p-modelDetailTop__recommend {
  background: var(--base-white);
  border-radius: 16px;
  padding: 40px min(3.33vw, 48px) 48px;
}
.p-modelDetailTop__recommendTitle {
  font-size: 2.0rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.6;
  color: var(--base-black);
  text-align: left;
  padding-bottom: 16px;
  border-bottom: 1px dashed var(--base-medium-light-gray);
  margin-bottom: 32px;
}
.p-modelDetailTop__recommendList {
  display: flex;
  flex-direction: column;
  gap: 16px;
  list-style: none;
}
.p-modelDetailTop__recommendItem {
  padding-left: 32px;
  background-image: url(../img/common/icon_check.svg);
  background-position: center left;
  background-size: 20px 20px;
  background-repeat: no-repeat;
  font-size: 1.6rem;
}
/* imgArea */
.p-modelDetailTop__imgArea {
  position: sticky;
  top: 108px;
  align-self: start;
}
.p-modelDetailTop__imgArea--pc {
  display: block;
}
.p-modelDetailTop__imgArea--sp {
  display: none;
}
.p-modelDetailTop__thumb {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
}
.p-modelDetailTop__thumb::after {
  content: "";
  position: absolute;
  border: 1px solid var(--base-white);
  border-radius: 8px;
  pointer-events: none;
  z-index: 2;
  opacity: .5;
  inset: 8px;
}
.p-modelDetailTop__thumb img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

@media (width < 1080px) {
  .p-modelDetailTop__imgArea--pc {
    display: none;
  }
  .p-modelDetailTop__imgArea--sp {
    display: block;
  }
  .p-modelDetailTop__inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}
@media (width < 768px) {
  .p-modelDetailTop {
    padding: 24px 16px 128px;
  }
  .p-modelDetailTop__breadcrumb {
    position: static;
    margin-bottom: 77px;
  }
  .p-modelDetailTop__imgArea {
    position: static;
    order: -1;
  }
  .p-modelDetailTop__thumb img {
    height: auto;
    aspect-ratio: 4 / 3;
  }
  .p-modelDetailTop__content {
    gap: 40px;
  }
  .p-modelDetailTop__h1Wrap {
    gap: 16px;
  }
  .p-modelDetailTop__title {
    font-size: 2.8rem;
  }
  .p-modelDetailTop__infoWrap {
    padding-top: 32px;
    gap: 24px;
  }
  .p-modelDetailTop__introduction {
    padding-top: 32px;
    gap: 32px;
  }
  .p-modelDetailTop__recommend {
    padding: 24px 24px 32px;
  }
  .p-modelDetailTop__body {
    font-size: 1.8rem;
  }
  .p-modelDetailTop__dt,
  .p-modelDetailTop__updateDate {
    font-size: 1.4rem;
  }
  .p-modelDetailTop__dd,
  .p-modelDetailTop__dd .c-tags__item {
    font-size: 1.6rem;
  }
}

/* -- p-modelDetailSpot -------------------------------------------- */
.p-modelDetailSpot {
  position: relative;
  padding: 120px 8vw 136px;
  background: var(--main-white-beige);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 80px;
}
.p-modelDetailSpot::before {
  content: "";
  position: absolute;
  top: -44px;
  left: 80px;
  background-image: url(../img/common/illust_02.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 106px;
  height: 134px;
}
.p-modelDetailSpot__illust {
  position: absolute;
  left: 80px;
  top: -44px;
  width: 106px;
  height: 134px;
  pointer-events: none;
  z-index: 1;
}
.p-modelDetailSpot__head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  width: 100%;
}
.p-modelDetailSpot__headEn {
  font-family: var(--font-en);
  font-weight: 900;
  font-size: 1.6rem;
  letter-spacing: 0.06em;
  color: var(--main-red);
  text-align: center;
}
.p-modelDetailSpot__headJa {
  display: flex;
  align-items: flex-end;
  gap: 16px;
  justify-content: center;
}
.p-modelDetailSpot__deco {
  display: block;
  flex-shrink: 0;
  width: 24px;
  height: 40px;
  overflow: hidden;
  position: relative;
}
.p-modelDetailSpot__deco::before {
  content: '';
  position: absolute;
  width: 2px;
  height: 32px;
  background: var(--base-black);
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) rotate(-30deg);
}
.p-modelDetailSpot__deco--rev::before {
  transform: translate(-50%, -50%) rotate(30deg);
}
.p-modelDetailSpot__title {
  font-size: 2.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.6;
  color: var(--base-black);
  white-space: nowrap;
}
/* slider */
.p-modelDetailSpot__block {
  position: relative;
  width: 100%;
}
.p-modelDetailSpot__sliderWrap {
  width: 83.33vw;
  margin: 0 auto;
  overflow: hidden;
}
.p-modelDetailSpot__slider {
  overflow: visible;
  width: 100%;
}
.p-modelDetailSpot__slider--center .swiper-wrapper {
  justify-content: center;
}
.p-modelDetailSpot__slider .swiper-slide {
  padding: 8px 0 0 8px;
}
/* spot card */
.p-spotCard {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  width: 100%;
}
@media (hover:hover) {
  .p-spotCard:hover .p-spotCard__thumb img {
    transform: scale(1.05);
  }
  .p-spotCard:hover .p-spotCard__name {
    text-decoration-line: underline;
    text-decoration-skip-ink: auto;
    text-decoration-thickness: auto;
    text-underline-offset: auto;
  }
}
.p-spotCard__num {
  position: absolute;
  top: -4px;
  left: -4px;
  z-index: 4;
  width: max(36px, 2.5vw);
  height: max(36px, 2.5vw);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--main-navy);
  border-radius: 4px;
  font-family: var(--font-en);
  font-weight: 900;
  font-size: max(1.25vw, 1.8rem);
  letter-spacing: 0.02em;
  color: var(--base-white);
}
.p-spotCard__thumb {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 16px;
  overflow: hidden;
  flex-shrink: 0;
}
.p-spotCard__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: 0.15s;
}
.p-spotCard__name {
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.6;
  color: var(--base-black);
  text-align: center;
  width: 100%;
}
.js-spotSlider .swiper-slide:not(:first-child) .p-spotCard::before {
  content: '';
  position: absolute;
  top: calc(5.56vw - 4px);
  left: max(-3.33vw, -48px);
  width: min(2.22vw, 34px);
  height: 4px;
  background-image: radial-gradient(circle, var(--main-navy) 1px, transparent 1px);
  background-position: left center;
  background-repeat: repeat-x;
  background-size: 6px 4px;
  flex: 1;
  z-index: 1;
}
.p-modelDetailSpot__prev,
.p-modelDetailSpot__next {
  position: absolute;
  top: calc(3.96vw + 8px);
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}
.p-modelDetailSpot__prev {
  left: -64px;
}
.p-modelDetailSpot__next {
  right: -64px;
}
.p-modelDetailSpot__prev::before,
.p-modelDetailSpot__next::before {
  content: '';
  display: block;
  width: 28px;
  height: 28px;
  border-top: 1.5px solid var(--base-black);
  border-right: 1.5px solid var(--base-black);
}
.p-modelDetailSpot__prev::before {
  transform: rotate(-135deg) translate(-4px, -4px);
}
.p-modelDetailSpot__next::before {
  transform: rotate(45deg) translate(-4px, -4px);
}
.p-modelDetailSpot__prev.swiper-button-disabled,
.p-modelDetailSpot__next.swiper-button-disabled {
  display: none;
}

/* -- p-modelDetailSchedule ---------------------------------------- */
.p-modelDetailSchedule {
  padding: 120px 80px 160px;
}
.p-scheduleItem__line {
  flex: 1;
  width: 4px;
  background-image: radial-gradient(circle, var(--main-navy) 2px, transparent 2px);
  background-size: 4px 10px;
  background-repeat: repeat-y;
  background-position: center;
  min-height: 24px;
}
/* SpotList */
.p-scheduleSpot {
  position: relative;
  padding-left: 80px;
  padding-bottom: 80px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.p-scheduleSpot--last {
  padding-bottom: 0 !important;
}
.p-scheduleSpot__timeline {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 56px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
  overflow: hidden;
  padding-bottom: 8px;
}
.p-scheduleSpot__timelineIcon {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
  background: var(--main-navy);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-en);
  font-weight: 900;
  font-size: 2.0rem;
  letter-spacing: 0.02em;
  color: var(--base-white);
}
.p-scheduleSpot__content {
  display: grid;
  grid-template-columns: 1fr max(30.56vw, 350px);
  gap: 32px;
}
.p-scheduleSpot__textWrap {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-top: 8px;
}
.p-scheduleSpot__name {
  font-size: 2.4rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.6;
  color: var(--main-navy);
}
.p-scheduleSpot__time {
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.6;
  color: var(--main-blue);
  white-space: nowrap;
  background-image: url(../img/common/icon_timer.svg);
  background-size: 24px 24px;
  background-repeat: no-repeat;
  background-position: center left;
  padding-left: 32px;
}
.p-scheduleSpot__body {
  display: flex;
  flex-direction: column;
  gap: 1em;
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  line-height: 2;
  color: var(--base-black);
}
.p-scheduleSpot__imgWrap .p-spotSubList__mainImage {
  height: 21.6vw;
}
.p-scheduleSpot__imgCard {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  height: 21.6vw;
}
.p-scheduleSpot__imgCard::after {
  content: '';
  position: absolute;
  inset: 8px;
  border: 1px solid var(--base-white);
  border-radius: 8px;
  opacity: 0.5;
  pointer-events: none;
  z-index: 2;
}
.p-scheduleSpot__imgCard img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.p-scheduleTransport {
  position: relative;
  padding-left: 80px;
  padding-bottom: 88px;
}
.p-scheduleTransport__timeline {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 56px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
  overflow: hidden;
  padding-bottom: 8px;
}
.p-scheduleTransport__timelineIcon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  background-color: var(--main-navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 24px 24px;
}
.p-scheduleTransport__timelineIcon.--bus {
  background-image: url(../img/model-course/detail/icon_bus.svg);
}
.p-scheduleTransport__timelineIcon.--walk {
  background-image: url(../img/model-course/detail/icon_walk.svg);
}
.p-scheduleTransport__timelineIcon.--train {
  background-image: url(../img/model-course/detail/icon_train.svg);
}
.p-scheduleTransport__timelineIcon.--shinkansen {
  background-image: url(../img/model-course/detail/icon_shinkansen.svg);
}
.p-scheduleTransport__timelineIcon.--plane {
  background-image: url(../img/model-course/detail/icon_plane.svg);
}
.p-scheduleTransport__content {
  padding-top: 8px;
}
.p-scheduleTransport__text {
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.6;
  color: var(--main-navy);
  white-space: nowrap;
}
.p-modelDetailSchedule__btn {
  margin: 80px auto 0;
  text-align: center;
}
.p-modelDetailSchedule__btn .c-btn {
  text-align: left;
}
@media (width < 1024px) {
  .js-spotSlider .swiper-slide:not(:first-child) .p-spotCard::before {
    top: calc(7vw - 4px);
    /* N=5 */
  }
  .p-modelDetailSpot__next {
    right: -52px;
  }
  .p-modelDetailSpot__prev {
    left: -52px;
  }
}
@media (width < 980px) {
  .p-scheduleSpot__content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .p-scheduleSpot__imgWrap {
    width: 440px;
  }
  .p-scheduleSpot__imgWrap .p-spotSubList__imageWrap {
    width: 100%;
  }
  .p-scheduleSpot__imgWrap .p-spotSubList__mainImage {
    height: 311px;
  }
}
@media (width < 768px) {
  .js-spotSlider .swiper-slide:not(:first-child) .p-spotCard::before {
    width: 23px;
    top: 52px;
    left: -33px;
  }
  .p-modelDetailSpot {
    padding: 80px 12px;
    gap: 56px;
  }
  .p-modelDetailSpot::before {
    top: -80px;
    left: 32px;
  }
  .p-modelDetailSpot__block {
    overflow: hidden;
    width: 100vw;
    padding-left: 12px;
  }
  .p-modelDetailSpot__illust {
    left: 32px;
    top: -80px;
  }
  .p-modelDetailSpot__headJa {
    gap: 8px;
  }
  .p-modelDetailSpot__deco {
    width: 19px;
    height: 32px;
  }
  .p-modelDetailSpot__deco::before {
    width: 1.6px;
    height: 26px;
  }
  .p-scheduleSpot__imgWrap .p-spotSubList__mainImage {
    aspect-ratio: 4 / 3;
    height: auto;
  }
  .p-modelDetailSpot__title {
    font-size: 2.4rem;
    white-space: normal;
    text-align: center;
  }
  .p-modelDetailSpot__prev,
  .p-modelDetailSpot__next {
    display: none;
  }
  .p-modelDetailSpot__slider--center .swiper-wrapper {
    justify-content: flex-start;
  }
  .p-modelDetailSpot__slider .swiper-slide {
    width: 112px;
    margin-right: 32px !important;
  }
  .p-modelDetailSpot__sliderWrap {
    width: 100%;
    overflow: visible;
  }
  .p-modelDetailSpot__sliderWrap::after {
    content: '';
    position: absolute;
    right: 0;
    top: -20px;
    bottom: -20px;
    width: 40px;
    background: linear-gradient(to right, transparent, var(--main-white-beige) 90%);
    z-index: 10;
    pointer-events: none;
  }
  .p-modelDetailSchedule {
    padding: 120px 16px 104px;
  }
  .p-scheduleSpot {
    padding-left: 56px;
    padding-bottom: 48px;
  }
  .p-scheduleSpot__timeline {
    width: 40px;
  }
  .p-scheduleSpot__timelineIcon {
    width: 40px;
    height: 40px;
    font-size: 1.6rem;
  }
  .p-scheduleSpot__content {
    gap: 24px;
  }
  .p-scheduleSpot__name {
    font-size: 2.0rem;
  }
  .p-scheduleSpot__imgWrap {
    width: 100%;
  }
  .p-scheduleSpot__imgCard {
    height: auto;
    aspect-ratio: 4 / 3;
  }
  .p-scheduleTransport {
    padding-left: 56px;
    padding-bottom: 48px;
  }
  .p-scheduleTransport__timeline {
    width: 40px;
  }
}

/* -- p-spotSubList ---------------------------------------- */
.p-scheduleSpot--accommodation {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.p-scheduleSpot__timelineIcon--location {
  background-image: url(../img/model-course/detail/icon_location.svg);
  background-size: 24px 24px;
  background-repeat: no-repeat;
  background-position: center;
}
.p-spotSubList {
  display: grid;
  grid-template-columns: 1fr max(320px, 24.17vw);
  gap: 32px;
  background: var(--base-white);
  border-radius: 16px;
  padding: 40px;
}
.p-spotSubList__textWrap {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-top: 8px;
  min-width: 0;
}
.p-spotSubList__titleWrap {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.p-spotSubList__subtitle {
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 2;
  color: var(--base-dark-gray);
  font-feature-settings: 'palt';
}
.p-spotSubList__title {
  font-size: 2.0rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.6;
  color: var(--main-navy);
  font-feature-settings: 'palt';
}
.p-spotSubList__body {
  display: flex;
  flex-direction: column;
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  line-height: 2;
  color: var(--base-black);
  font-feature-settings: 'palt';
}
.p-spotSubList__imageWrap {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.p-spotSubList__mainImage {
  position: relative;
  width: 100%;
  height: 17.08vw;
  border-radius: 16px;
  overflow: hidden;
}
.p-spotSubList__mainImage::after {
  content: '';
  position: absolute;
  inset: 8px;
  border: 1px solid var(--base-white);
  border-radius: 8px;
  opacity: 0.5;
  pointer-events: none;
  z-index: 2;
}
.p-spotSubList__mainImage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.2s ease;
}
.p-spotSubList__thumbs {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.p-spotSubList__thumb {
  position: relative;
  width: max(78px, 5.42vw);
  height: max(55px, 3.82vw);
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  border: none;
  padding: 0;
  background: none;
}
.p-spotSubList__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.p-spotSubList__thumb::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 8px;
  border: 1px solid var(--main-navy);
  background: var(--base-white);
  opacity: 0;
  pointer-events: none;
  z-index: 2;
  transition: opacity 0.2s ease;
}
.p-spotSubList__thumb.is-active::after {
  opacity: 0.5;
}
@media (width < 980px) {
  .p-spotSubList {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .p-spotSubList__imageWrap {
    width: 348px;
  }
  .p-spotSubList__mainImage {
    height: auto;
  }
}
@media (width < 768px) {
  .p-scheduleSpot--accommodation {
    gap: 24px;
  }
  .p-spotSubList {
    padding: 24px;
  }
  .p-spotSubList__imageWrap {
    width: 100%;
  }
  .p-spotSubList__mainImage {
    aspect-ratio: 282 / 200;
  }
  .p-spotSubList__thumbs {
    gap: 8px;
  }
  .p-spotSubList__thumb {
    width: 72px;
    height: 52px;
  }
}

/* == p-secOthers ================================================ */
.p-secOthers {
  background: var(--base-light-gray);
  padding: 120px 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}
.p-secOthers__head {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
}
.p-secOthers__headIcon {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}
.p-secOthers__headTitle {
  font-size: 2.8rem;
  font-weight: var(--font-weight-700);
  letter-spacing: 0.06em;
  color: var(--base-black);
  font-feature-settings: 'palt';
}
.p-secOthers__cardList {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  width: 100%;
}
.p-secOthers__cardList__btn {
  margin-top: 40px;
}
@media (width < 768px) {
  .p-secOthers {
    padding: 104px 16px;
  }
  .p-secOthers__cardList {
    grid-template-columns: 1fr;
    gap: 56px;
  }
}

/* == column ============================================== */
/* -- p-columnArchive layout ----------------------------------- */
.p-columnArchive {
  padding: 80px 80px 120px;
}
.p-columnArchive__inner {
  display: flex;
  gap: min(5.56vw, 80px);
  align-items: flex-start;
}
.p-columnArchive__main {
  width: 100%;
}
.p-columnArchive__subTitle {
  font-size: 2.0rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  margin-bottom: 56px;
}
.p-columnArchive__subTitle span {
  color: var(--main-blue);
  font-size: 3.2rem;
  letter-spacing: 0.1em;
  padding: 0 6px;
}
.p-columnArchive__list>li {
  border-top: 1px dashed var(--base-medium-light-gray);
  padding: 16px 0;
}
.p-columnArchive__list>li:first-child {
  border-top: none;
  padding-top: 0;
}

/* -- p-columnSidebar ------------------------------------------ */
.p-columnSidebar {
  flex-shrink: 0;
  width: clamp(240px, 22.22vw, 320px);
  position: sticky;
  top: 160px;
  align-self: flex-start;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.p-columnSidebar__block {
  position: relative;
  background: var(--base-white);
  border-radius: 16px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.p-columnSidebar__block--top::before {
  content: "";
  position: absolute;
  top: -103px;
  right: 8px;
  width: 120px;
  height: 123px;
  z-index: 3;
  pointer-events: none;
  background-image: url(../img/common/illust_03.svg);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}
/* PC：summaryクリック不可・常時展開 */
.p-columnSidebar__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 16px;
  border-bottom: 1px dashed var(--base-medium-light-gray);
  pointer-events: none;
}
.p-columnSidebar__title {
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--base-black);
  font-feature-settings: 'palt';
  line-height: 1.6;
}
/* シェブロン（PC非表示） */
.p-columnSidebar__chevron {
  display: none;
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  position: relative;
}
.p-columnSidebar__chevron::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 8px;
  height: 8px;
  border-left: 1.5px solid var(--base-black);
  border-top: 1.5px solid var(--base-black);
  transform: translate(-50%, -60%) rotate(-135deg);
  transition: transform 0.2s ease;
}
/* カテゴリーリスト */
.p-columnSidebar__categoryList {
  list-style: none;
  display: flex;
  flex-direction: column;
}
.p-columnSidebar__categoryItem {
  display: flex;
  align-items: center;
  height: 40px;
  padding: 6px 0;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.06em;
  text-decoration: none;
  font-feature-settings: 'palt';
  white-space: nowrap;
  transition: color 0.2s ease;
}
@media (hover: hover) {
  .p-columnSidebar__categoryItem:hover {
    color: var(--main-blue);
  }
}
/* タグリスト */
.p-columnSidebar__tagList {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 24px;
  padding: 8px 40px 8px 0;
}
.p-columnSidebar__tagItem {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 1.6rem;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  transition: opacity 0.2s ease;
}
@media (hover: hover) {
  .p-columnSidebar__tagItem:hover {
    opacity: 0.7;
  }
}
.p-columnSidebar__tagHash {
  font-weight: 700;
  color: var(--main-blue);
  font-feature-settings: 'palt';
}
.p-columnSidebar__tagItem span:last-child {
  font-weight: 500;
  color: var(--base-black);
  font-feature-settings: 'palt';
}
@media (width < 1000px) {
  .p-columnArchive__inner {
    flex-direction: column-reverse;
    gap: 56px;
  }
  .p-columnSidebar {
    width: 100%;
    position: static;
    padding-top: 0;
  }
  .p-columnSidebar__block {
    padding: 20px 24px;
    box-shadow: 0px 4px 4px 0px rgba(33, 33, 33, 0.05);
    gap: 0;
  }
  .p-columnSidebar__block--top:before {
    width: 96px;
    height: 98px;
    top: -86px;
    right: 16px;
  }
  .p-columnSidebar__head {
    pointer-events: auto;
    cursor: pointer;
    padding-bottom: 0;
    border-bottom: none;
  }
  details.p-columnSidebar__block[open] .p-columnSidebar__head {
    padding-bottom: 16px;
    border-bottom: 1px dashed var(--base-medium-light-gray);
    margin-bottom: 16px;
  }
  .p-columnSidebar__chevron {
    display: block;
  }
  details.p-columnSidebar__block[open] .p-columnSidebar__chevron::before {
    transform: translate(-50%, -40%) rotate(45deg);
  }
  .p-columnSidebar__tagList {
    padding-right: 0;
  }
}
@media (width < 768px) {
  .p-columnArchive {
    padding: 64px 16px 120px;
  }
  .p-columnArchive__subTitle {
    text-align: center;
  }
  .p-columnArchive__list>li {
    padding: 32px 0;
  }
  .p-columnArchive__main .c-pagination__list {
    padding: 80px 0 0;
  }
}

/* == column/detail ============================================== */
.p-columnDetail {
  padding: 56px 80px 120px;
}
.p-columnDetailArchive {
  padding-top: 85px;
}
.p-columnDetailArchive__inner {
  align-items: flex-start;
  gap: min(5.56vw, 80px);
  display: flex;
}

/* -- p-columnDetail__content ---------------------------------- */
.p-columnDetail__content {
  width: 100%;
  padding-bottom: 80px;
  border-bottom: 1px dashed var(--base-medium-light-gray);
}
.p-columnDetail__content__wrap {
  flex: 1;
}
.p-columnDetail__content__wrap .c-btn__wrap {
  margin-top: 80px;
  text-align: center;
}
.p-columnDetail__content__wrap .c-btn {
  text-align: left;
}

/* article header */
.p-columnDetail__head {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-bottom: 56px;
  border-bottom: 1px dashed var(--base-medium-light-gray);
}
.p-columnDetail__pageName {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-bottom: 16px;
}
.p-columnDetail__pageName span {
  font-size: var(--fs-16);
  font-weight: 700;
  padding-left: 32px;
  background-image: url(../img/common/icon_knowhow.svg);
  background-position: center left;
  background-repeat: no-repeat;
  background-size: 24px 24px;
}
.p-columnDetail__title {
  font-size: 3.6rem;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.06em;
}
.p-columnDetail__head .c-tags {
  margin-bottom: 32px;
}
.p-columnDetail__dates {
  display: flex;
  gap: 32px;
  font-size: 1.4rem;
  font-weight: 500;
}

/* -- p-columnDetail__body (WordPress generated content) ------- */
.p-columnDetail__body {
  padding-top: 56px;
  font-size: var(--fs-18);
  line-height: 2;
}
.p-columnDetail__body>*+* {
  /* margin-top: 48px; */
  margin-bottom: 48px;
}
.p-columnDetail__body h2 {
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.06em;
  border-bottom: 4px solid var(--main-white-beige);
  padding-bottom: 16px;
  margin-top: 96px;
  margin-bottom: 32px;
}
.p-columnDetail__body h3 {
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.06em;
  padding-left: 24px;
  position: relative;
  margin-top: 72px;
  margin-bottom: 24px;
}
.p-columnDetail__body h3::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  bottom: 8px;
  width: 6px;
  height: 29px;
  background: var(--main-light-beige);
  border-radius: 999px;
}
.p-columnDetail__body h4 {
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.06em;
  margin-top: 56px;
  margin-bottom: 16px;
}
.p-columnDetail__body p {
  font-size: var(--fs-18);
  line-height: 2;
}
.p-columnDetail__body a {
  color: var(--main-blue);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.p-columnDetail__body a[target="_blank"] {
  padding-right: 26px;
  background-image: url(../img/common/icon_blank_blue.svg);
  background-size: 20px 20px;
  background-repeat: no-repeat;
  background-position: right top 2px;
}
@media (hover:hover) {
  .p-columnDetail__body a:hover {
    text-decoration: none;
  }
}
.p-columnDetail__body ul,
.p-columnDetail__body ol {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 48px;
}
.p-columnDetail__body ul li,
.p-columnDetail__body ol li {
  position: relative;
  padding-left: 40px;
  font-size: 1.8rem;
  line-height: 2;
}
.p-columnDetail__body ul li::before {
  content: "";
  position: absolute;
  left: 14px;
  top: calc(1em - 4px);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--main-blue);
}
.p-columnDetail__body ol {
  counter-reset: ol-counter;
}
.p-columnDetail__body ol li {
  counter-increment: ol-counter;
}
.p-columnDetail__body ol li::before {
  content: counter(ol-counter) ".";
  position: absolute;
  left: 13px;
  font-weight: 700;
  color: var(--main-blue);
}
/* ol の中にネストした ul はアルファベット（a. b. c.）で表示 */
.p-columnDetail__body ol li ul {
  counter-reset: ul-alpha-counter;
  margin-bottom: 0;
}
.p-columnDetail__body ol li ul li {
  counter-increment: ul-alpha-counter;
}
.p-columnDetail__body ol li ul li::before {
  content: counter(ul-alpha-counter, lower-alpha) ".";
  width: auto;
  height: auto;
  border-radius: 0;
  background: none;
  font-weight: 700;
  color: var(--main-blue);
  top: 0;
}
.p-columnDetail__body blockquote {
  font-size: var(--fs-18);
  line-height: 2;
  margin: 48px 0;
}
.wp-block-pullquote {
  padding: 0;
}
.p-columnDetail__body blockquote p {
  font-size: 1.6rem;
  background-color: var(--base-white-gray);
  padding: 32px 24px;
  border-radius: 8px;
  margin-bottom: 0;
}
.p-columnDetail__body blockquote cite {
  display: block;
  text-align: right;
  font-size: 1.4rem;
  color: var(--main-dark-beige);
  font-style: normal;
  margin-top: 8px;
}
.p-columnDetail__body figure.wp-block-image {
  margin-bottom: 48px;
}
.p-columnDetail__body figure.wp-block-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}
.p-columnDetail__body figcaption {
  font-size: 1.4rem;
  color: var(--base-dark-gray);
  text-align: center;
  margin-top: 8px;
}
.p-columnDetail__body iframe {
  aspect-ratio: 16 / 9;
  width: 100%;
  margin-bottom: 48px;
  border-radius: 8px;
}

/* -- YouTube / video embed ------------------------------------ */
.p-columnDetail__body .wp-block-embed {
  margin-bottom: 48px;
}
.p-columnDetail__body .wp-block-embed__wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
}
.p-columnDetail__body .wp-block-embed__wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  aspect-ratio: unset;
  margin-bottom: 0;
  border-radius: 8px;
}

/* -- c-embeddedUrl（oEmbed iframe コンテナ） -------------------- */
/* iframe内はfunctions.phpのembed_headカスタムCSSでスタイリング  */
.c-embeddedUrl {
  margin-bottom: 48px;
}
.c-embeddedUrl .wp-block-embed__wrapper {
  position: static;
  aspect-ratio: unset;
  width: 100%;
}
.c-embeddedUrl .wp-block-embed__wrapper iframe {
  position: static;
  width: 100%;
  height: auto;
  aspect-ratio: unset;
  margin-bottom: 0;
  border-radius: 0;
  border: none;
}

/* -- p-columnToc (目次) --------------------------------------- */
.p-columnToc {
  background: var(--base-white-gray);
  border: 1px solid var(--base-medium-light-gray);
  border-radius: 8px;
  padding: 32px 40px 40px;
  border-radius: 8px;
  margin: 48px 0;
}
.p-columnToc__head {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 16px;
}
.p-columnToc__title {
  font-size: 2.0rem;
  font-weight: 700;
  line-height: 1.5;
  padding-left: 32px;
  background-image: url(../img/common/icon_list.svg);
  background-position: center left;
  background-size: 24px 24px;
  background-repeat: no-repeat;
}
.p-columnToc__list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px !important;
  counter-reset: toc-counter;
  margin-bottom: 0 !important;
}
.p-columnToc__item {
  counter-increment: toc-counter;
  display: flex;
  gap: 4px;
  align-items: flex-start;
}
.p-columnToc__item::before {
  color: var(--base-black) !important;
  content: counter(toc-counter) ".";
  flex-shrink: 0;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.75;
  text-align: right;
}
.p-columnToc__item a {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.75;
  color: var(--main-dark-blue);
  text-decoration: underline;
  text-underline-offset: 3px;
}
@media (hover:hover) {
  .p-columnToc__item a:hover {
    text-decoration: none;
  }
}

/* -- p-columnCallout ------------------------------------------ */
.p-columnCallout {
  position: relative;
  background: var(--base-white-gray);
  border-radius: 8px;
  padding: 40px 40px 40px 88px;
  margin-bottom: 48px;
}
.p-columnCallout::before {
  content: "";
  background-image: url(../img/common/icon_bulb_outline.svg);
  background-position: center;
  background-size: contain;
  position: absolute;
  left: 36px;
  top: 40px;
  width: 32px;
  height: 32px;
}
.p-columnCallout__title {
  font-size: 2.2rem !important;
  font-weight: 700;
  line-height: 1.6 !important;
  letter-spacing: 0.06em;
  margin-bottom: 24px;
}
.p-columnCallout__text {
  margin-bottom: 0 !important;
}

/* -- table ----------------------------------------------- */
table {
  width: 100%;
  border-collapse: collapse;
}
table th,
table td {
  font-size: 1.6rem;
  padding: 15px;
  /* 任意の余白 */
  border-bottom: 1px solid #ddd;
  /* 行の区切り線 */
  text-align: left;
}
table th {
  width: 30%;
  /* タイトル側の幅を固定する場合 */
  border-bottom: 2px solid var(--base-medium-light-gray);
  font-weight: bold;
  vertical-align: text-top;
}

/* -- p-columnLinkCard ----------------------------------------- */
.p-columnLinkCard {
  display: flex;
  align-items: flex-start;
  gap: 32px;
  padding: 40px;
  border: 1px solid var(--base-medium-light-gray);
  border-radius: 8px;
  text-decoration: none !important;
  color: var(--base-black) !important;
  background: var(--base-white);
  position: relative;
}
.p-columnLinkCard__thumb {
  flex-shrink: 0;
  width: 200px;
  height: 150px;
  border-radius: 8px;
  overflow: hidden;
}
.p-columnLinkCard__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.p-columnLinkCard__body {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.p-columnLinkCard__title {
  font-weight: 700;
  font-size: var(--fs-18);
  line-height: 1.6;
  padding-right: 56px;
}
.p-columnLinkCard__desc {
  font-size: 1.4rem !important;
  line-height: 2;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
}
.p-columnLinkCard__arrow {
  position: absolute;
  right: 39px;
  top: 43px;
  width: 40px;
  height: 20px;
  background: var(--base-black);
  background-color: var(--base-black);
  background-image: url(../img/common/icon_arrow.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 12px;
  border-radius: 4px;
  transition: 0.1s;
}
@media (hover: hover) {
  .p-columnLinkCard:hover .p-columnLinkCard__title {
    text-decoration: underline;
  }
  .p-columnLinkCard:hover .p-columnLinkCard__arrow {
    background-color: var(--main-blue);
  }
}
/* -- marker ----------------------------------------- */
.p-columnDetail__body mark {
  background:
    /* 1. 中央のメイン線（上部の直線部分）: 高さ2px、下から6pxの位置 */
    linear-gradient(to right, #8cd3ff, #8cd3ff) center bottom 6px / calc(100% - 4px) 2px no-repeat,
    /* 2. 左の角（円）: 直径4px、下から4pxの位置 */
    radial-gradient(circle at 2px 2px, #8cd3ff 2px, transparent 2.5px) left 0 bottom 4px / 4px 4px no-repeat,
    /* 3. 右の角（円）: 直径4px、下から4pxの位置 */
    radial-gradient(circle at 2px 2px, #8cd3ff 2px, transparent 2.5px) right 0 bottom 4px / 4px 4px no-repeat,
    /* 4. 下部ボディ（四角い部分）: 高さ6px、一番下 */
    linear-gradient(to right, #8cd3ff, #8cd3ff) center bottom 0 / 100% 6px no-repeat !important;
  display: inline;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  border-radius: 2px;
  padding: 0 2px 6px;
}
@media (width < 1000px) {
  .p-columnDetailArchive__inner {
    flex-direction: column;
    gap: 120px;
  }
}
@media (width < 768px) {
  .p-columnDetail {
    padding: 24px 16px 140px;
  }
  .p-columnDetail .c-breadcrumb {
    padding: 0 12px;
  }
  .p-columnDetailArchive {
    padding-top: 40px;
  }
  .p-columnDetail__title {
    font-size: 3.2rem;
  }
  .p-columnDetail__body h2 {
    font-size: 2.8rem;
  }
  .p-columnDetail__body h3 {
    font-size: 2.4rem;
  }
  .p-columnDetail__body h3::before {
    height: 26px;
  }
  .p-columnDetail__body h4 {
    font-size: 2.0rem;
  }
  .p-columnToc {
    padding: 24px 24px 32px;
  }
  .p-columnCallout {
    padding: 32px 24px 32px 64px;
  }
  .p-columnCallout::before {
    left: 20px;
    top: 32px;
    width: 28px;
    height: 28px;
  }
  .p-columnCallout__title {
    font-size: 2.0rem !important;
  }
  .p-columnCallout__text {
    font-size: 1.6rem !important;
  }
  table th,
  table td {
    display: block;
    /* 縦に並べる */
    width: 100%;
  }
  table th {
    border-bottom: none;
    padding: 24px 8px 16px;
  }
  table td {
    padding: 0 8px 24px;
  }
  .p-columnLinkCard {
    gap: 12px;
    padding: 32px 16px;
  }
  .p-columnLinkCard__thumb {
    width: 120px;
    height: 90px;
  }
  .p-columnLinkCard__title {
    padding-right: 0;
    font-size: var(--fs-16);
  }
  .p-columnLinkCard__arrow {
    right: 0;
    top: auto;
    bottom: 0;
  }
}

/* == special ================================================ */
/* -- p-specialArchive --------------------------------------- */
.p-specialArchive {
  position: relative;
  padding: 80px 80px 120px;
}
.p-specialArchive::before {
  content: "";
  background-image: url(../img/common/illust_01.svg);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  right: 96px;
  top: -48px;
  width: 122px;
  height: 130px;
}

/* -- p-specialCardList -------------------------------------- */
.p-specialCardList {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 96px min(2.22vw, 32px);
  margin-bottom: 56px;
}
/* -- p-specialCard ------------------------------------------ */
.p-specialCard {
  display: flex;
  flex-direction: column;
  gap: 20px;
  overflow: hidden;
  text-decoration: none;
}
.p-specialCard__thumb {
  position: relative;
  aspect-ratio: 405 / 272;
  border-radius: 16px;
  overflow: hidden;
}
.p-specialCard__thumbBorder {
  position: absolute;
  inset: 8px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 8px;
  z-index: 2;
  pointer-events: none;
}
.p-specialCard__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.2s ease;
}
@media (hover:hover) {
  .p-specialCard:hover .p-specialCard__thumb img {
    transform: scale(1.05);
  }
}
.p-specialCard__body {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 0 12px 28px;
}
.p-specialCard__title {
  font-size: var(--fs-18);
  font-weight: 700;
  color: var(--base-black);
  line-height: 1.6;
  letter-spacing: 0.06em;
  font-feature-settings: 'palt';
}
@media (hover: hover) {
  .p-specialCard:hover .p-specialCard__title {
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-decoration-color: var(--base-black);
    text-underline-offset: 0.15em;
    text-decoration-skip-ink: none;
  }
}
.p-specialCard__arrow {
  position: absolute;
  bottom: 0;
  right: 12px;
  width: 40px;
  height: 20px;
  background-color: var(--base-black);
  border-radius: 4px;
  background-image: url(../img/common/icon_arrow.svg);
  background-position: center;
  background-size: 9px 6px;
  background-repeat: no-repeat;
  transition: background-color 0.1s;
}
@media (hover: hover) {
  .p-specialCard:hover .p-specialCard__arrow {
    background-color: var(--main-blue);
  }
}
/* -- p-specialArchive__pagination --------------------------- */
.p-specialArchive__pagination .c-pagination__list {
  padding-bottom: 0;
}
@media (width < 1024px) {
  .p-specialArchive {
    padding: 80px 40px 120px;
  }
  .p-specialArchive::before {
    right: 50px;
  }
}
@media (width < 768px) {
  .p-specialArchive {
    padding: 64px 20px 144px;
  }
  .p-specialArchive::before {
    right: 32px;
    width: 92px;
    height: 98px;
  }
  .p-specialCardList {
    grid-template-columns: 1fr;
    gap: 56px;
  }
}

/* == special/detail ========================================== */
.p-specialDetail {
  background-color: var(--base-white-gray);
}
.p-specialDetail .c-breadcrumb {
  padding: 56px 72px 85px;
}
.p-specialDetail__top {
  overflow: hidden;
}

/* -- p-specialDetail__h1Wrap -------------------------------- */
.p-specialDetail__h1Wrap {
  position: relative;
  padding: 0 80px 80px;
  overflow: hidden;
}
.p-specialDetail__h1 {
  border-left: 4px solid var(--main-blue);
  padding: 24px 0 40px 48px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.p-specialDetail__title {
  font-size: 3.6rem;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.06em;
  color: var(--base-black);
  font-feature-settings: 'palt';
}
.p-specialDetail__dates {
  display: flex;
  gap: 32px;
  font-size: var(--fs-14);
  font-weight: 500;
  letter-spacing: 0.06em;
  font-feature-settings: 'palt';
  line-height: 1;
  white-space: nowrap;
}
.p-specialDetail__date {
  display: flex;
  gap: 2px;
  align-items: center;
}
/* -- p-specialDetail__introWrap ----------------------------- */
.p-specialDetail__introWrap {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.p-specialDetail__imageWrap {
  position: relative;
  max-width: 960px;
  z-index: 2;
  margin-bottom: -120px;
  width: 70%;
  display: flex;
  justify-content: center;
}
.p-specialDetail__imageWrap::before {
  content: "";
  background-image: url(../img/special/detail/stamp_02.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  right: -224px;
  top: -160px;
  width: 292px;
  height: 240px;
}
.p-specialDetail__image {
  width: 100%;
  aspect-ratio: 960 / 593;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
}
.p-specialDetail__image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.p-specialDetail__bottomArea {
  position: relative;
  z-index: 1;
  width: 100%;
  background: var(--main-white-beige);
  padding: 200px 160px 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.p-specialDetail__content {
  max-width: 1120px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.p-specialDetail__lead {
  position: relative;
  font-size: var(--fs-32);
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: 0.06em;
  color: var(--base-black);
  font-feature-settings: 'palt';
}
.p-specialDetail__lead::before {
  content: '';
  position: absolute;
  left: -160px;
  bottom: 85px;
  width: 128px;
  height: 1px;
  background: var(--main-light-beige);
}
.p-specialDetail__body {
  font-size: var(--fs-18);
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.06em;
  color: var(--base-black);
  font-feature-settings: 'palt';
}
.p-specialDetail__body p {
  margin: 0;
}
/* -- responsive --------------------------------------------- */
@media (width < 1024px) {
  .p-specialDetail .c-breadcrumb {
    padding: 40px 40px 60px;
  }
  .p-specialDetail__h1Wrap {
    padding: 0 40px 60px;
  }
  .p-specialDetail__imageWrap {
    min-width: 620px;
  }
  .p-specialDetail__imageWrap:before {
    right: -160px;
  }
  .p-specialDetail__bottomArea {
    padding: 160px 40px 104px;
  }
  .p-specialDetail__lead::before {
    display: none;
  }
}
@media (width < 768px) {
  .p-specialDetail .c-breadcrumb {
    padding: 24px 20px 40px;
  }
  .p-specialDetail__h1Wrap {
    padding: 0 20px 64px;
  }
  .p-specialDetail__title {
    font-size: 2.4rem;
  }
  .p-specialDetail__stamp {
    display: none;
  }
  .p-specialDetail__h1 {
    padding: 12px 0 24px 24px;
  }
  .p-specialDetail__imageWrap {
    width: 100%;
    padding: 0 16px;
    min-width: auto;
  }
  .p-specialDetail__imageWrap:before {
    top: -136px;
    right: -16px;
    width: 146px;
    height: 120px;
  }
  .p-specialDetail__bottomArea {
    padding: 200px 20px 104px;
  }
  .p-specialDetail__lead {
    font-size: 2.4rem;
  }
  .p-specialDetail__body {
    font-size: 1.6rem;
  }
}

/* -- p-specialArticleH2 (共通セクション見出し) --------------- */
.p-specialArticleH2 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding-bottom: 48px;
  width: 100%;
}
.p-specialArticleH2__ja {
  font-size: 2.0rem;
  font-weight: 700;
  color: var(--main-navy);
  letter-spacing: 0.06em;
  line-height: 1.6;
  text-align: center;
}
.p-specialArticleH2__en {
  font-family: var(--font-en);
  font-weight: 900;
  font-size: 8rem;
  line-height: 1;
  letter-spacing: 0.02em;
  color: var(--base-white);
  -webkit-text-stroke: 3px var(--base-black);
  paint-order: stroke fill;
  text-align: center;
  white-space: nowrap;
}
.p-specialArticleH2__after {
  display: flex;
  align-items: center;
  gap: 16px;
  height: 8px;
  margin-top: 24px;
}
.p-specialArticleH2__after span {
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--main-red);
}
@media (width < 768px) {
  .p-specialArticleH2 {
    padding-bottom: 40px;
  }
  .p-specialArticleH2__en {
    font-size: 6.4rem;
  }
}

/* -- p-specialDetail__spot ---------------------------------- */
.p-specialDetail__spot {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 160px 80px;
  background-color: var(--base-white);
}
.p-specialDetail__spot::before {
  content: "";
  position: absolute;
  left: 120px;
  top: -64px;
  width: 158px;
  height: 160px;
  background-image: url(../img/special/detail/illust_06.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  pointer-events: none;
}
/* spotList */
.p-specialDetail__spotList {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 56px min(3.89vw, 56px);
  max-width: 1280px;
  width: 100%;
  padding-top: 32px;
  padding-bottom: 120px;
  align-content: flex-start;
}
.p-specialDetail__spotList::after {
  content: "";
  position: absolute;
  right: 16px;
  top: -104px;
  width: 75px;
  height: 136px;
  background-image: url(../img/special/detail/illust_07.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  pointer-events: none;
}
/* spotCard */
.p-specialDetail__spotCard {
  display: flex;
  flex-direction: column;
  gap: 48px;
  background-color: var(--base-off-white);
  border-radius: 16px;
  overflow: hidden;
  width: calc(50% - 28px);
}
.p-specialDetail__spotCardThumb {
  aspect-ratio: 612 / 433;
  overflow: hidden;
  border-radius: 16px;
  position: relative;
}
.p-specialDetail__spotCardThumb img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.p-specialDetail__spotCardBody {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 0 40px;
}
.p-specialDetail__spotCardTitle {
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.06em;
  color: var(--base-black);
}
.p-specialDetail__spotCardDesc {
  font-size: var(--fs-16);
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.06em;
  color: var(--base-black);
}
/* recommend */
.p-specialDetail__spotCardRecommend {
  padding: 16px 16px 0 32px;
}
.p-specialDetail__spotCardRecommendInner {
  position: relative;
  border-top: 1px dashed var(--base-medium-light-gray);
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 40px 24px 40px 8px;
}
.p-specialDetail__spotCardRecommendLabel {
  position: absolute;
  top: -17px;
  left: 0;
  height: 32px;
  background-color: var(--main-dark-beige);
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 0 16px 0 13px;
  margin-right: 6px;
  white-space: nowrap;
}
.p-specialDetail__spotCardRecommendLabel::before {
  content: '';
  position: absolute;
  left: -6px;
  top: 0;
  width: 6px;
  height: 32px;
  background-image: url(../img/special/detail/ribbon.svg);
  background-position: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.p-specialDetail__spotCardRecommendLabel::after {
  content: '';
  position: absolute;
  right: -6px;
  top: 0;
  width: 6px;
  height: 32px;
  background-image: url(../img/special/detail/ribbon.svg);
  background-position: contain;
  background-repeat: no-repeat;
  background-position: center;
  transform: rotate(180deg);
}
.p-specialDetail__spotCardRecommendLabel span {
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.6;
  color: var(--base-white);
  background-image: url(../img/common/icon_bulb_outline-white.svg);
  background-repeat: no-repeat;
  background-size: 20px 20px;
  background-position: center left;
  padding-left: 24px;
}
.p-specialDetail__spotCardRecommendText {
  flex: 1;
  font-size: var(--fs-18);
  font-weight: 700;
  line-height: 2;
  letter-spacing: 0.06em;
  color: var(--main-dark-beige);
  min-width: 0;
}
/* course section */
.p-specialDetail__spotCourse {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: flex-start;
  max-width: 1280px;
  width: 100%;
  background-color: var(--main-white-beige);
  border-radius: 16px;
  padding: 64px min(5.56vw, 80px);
}
.p-specialDetail__spotCourseHead {
  display: flex;
  align-items: center;
  gap: 16px;
}
.p-specialDetail__spotCourseHeadText {
  font-size: var(--fs-28);
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.06em;
  color: var(--main-navy);
  white-space: nowrap;
  padding-left: 52px;
  background-image: url(../img/common/icon_point.svg);
  background-position: center left;
  background-size: 36px 36px;
  background-repeat: no-repeat;
}
.p-specialDetail__spotCourseCard {
  width: 100%;
}
.p-specialDetail__spotCourseLink {
  display: flex;
  align-items: center;
  gap: min(2.78vw, 40px);
  overflow: hidden;
  padding-right: 40px;
  text-decoration: none;
  position: relative;
  max-width: 1280px;
  width: 100%;
}
.p-specialDetail__spotCourseLinkThumb {
  width: clamp(280px, 27.78vw, 400px);
  aspect-ratio: 400 / 283;
  flex-shrink: 0;
  overflow: hidden;
  position: relative;
  border-radius: 16px;
}
.p-specialDetail__spotCourseLinkThumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.2s ease;
}
.p-specialDetail__spotCourseLinkThumb::after {
  content: '';
  position: absolute;
  inset: 8px;
  border: 1px solid var(--base-white);
  border-radius: 8px;
  opacity: 0.5;
  pointer-events: none;
  z-index: 2;
}
.p-specialDetail__spotCourseLinkBody {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 24px 0;
  min-width: 0;
}
.p-specialDetail__spotCourseLinkInfo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: var(--fs-16);
  font-weight: 500;
  letter-spacing: 0.06em;
  line-height: 1;
  white-space: nowrap;
}
.p-specialDetail__spotCourseLinkInfoItem--schedule {
  padding-right: 12px;
  border-right: 1px solid var(--base-medium-light-gray);
}
.p-specialDetail__spotCourseLinkTitle {
  font-size: var(--fs-24);
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.06em;
  color: var(--base-black);
  border-top: 1px dashed var(--main-light-beige);
  border-bottom: 1px dashed var(--main-light-beige);
  padding: 24px 0;
}
.p-specialDetail__spotCourseLinkTags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 16px;
  align-items: center;
  font-size: var(--fs-16);
  letter-spacing: 0.06em;
  line-height: 1;
  white-space: nowrap;
  padding: 8px 0;
}
.p-specialDetail__spotCourseLinkTag {
  display: flex;
  align-items: center;
  gap: 4px;
  font-weight: 500;
  color: var(--base-black);
}
.p-specialDetail__spotCourseLinkTagHash {
  font-weight: 700;
  color: var(--main-blue);
}
.p-specialDetail__spotCourseLinkArrow {
  position: absolute;
  bottom: 0;
  right: 24px;
  width: 56px;
  height: 28px;
  background-color: var(--base-black);
  border-radius: 4px;
  background-image: url(../img/common/icon_arrow.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 12px 8px;
  transition: background-color 0.1s;
}
@media (hover: hover) {
  .p-specialDetail__spotCourseLink:hover .p-specialDetail__spotCourseLinkThumb img {
    transform: scale(1.05);
  }
  .p-specialDetail__spotCourseLink:hover .p-specialDetail__spotCourseLinkTitle {
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-decoration-color: var(--base-black);
    text-underline-offset: 0.15em;
    text-decoration-skip-ink: none;
  }
  .p-specialDetail__spotCourseLink:hover .p-specialDetail__spotCourseLinkArrow {
    background-color: var(--main-blue);
  }
}
/* responsive */
@media (width < 1024px) {
  .p-specialDetail__spot {
    padding: 120px 40px;
  }
  .p-specialDetail__spotCourse {
    padding: 48px 40px;
    width: 100vw;
    margin-inline: calc(50% - 50vw);
    border-radius: 0;
  }
}
@media (width < 768px) {
  .p-specialDetail__spot {
    padding: 80px 20px 104px;
  }
  .p-specialDetail__spot::before {
    content: none;
    /* left: 20px;
    top: -48px;
    width: 120px;
    height: 120px; */
  }
  .p-specialDetail__spotCard {
    width: 100%;
    gap: 32px;
  }
  .p-specialDetail__spotList {
    gap: 40px;
    padding-bottom: 80px;
  }
  .p-specialDetail__spotList::after {
    width: 58px;
    height: 104px;
    right: 12px;
    top: -72px;
  }
  .p-specialDetail__spotCardBody {
    padding: 0 20px;
  }
  .p-specialDetail__spotCardRecommend {
    padding: 16px 16px 0 20px;
  }
  .p-specialDetail__spotCourse {
    padding: 40px 20px;
    gap: 32px;
  }
  .p-specialDetail__spotCourseHeadText {
    font-size: 2.4rem;
    white-space: normal;
    background-position: left top;
  }
  .p-specialDetail__spotCourseLink {
    flex-direction: column;
    padding-right: 0;
    gap: 0;
  }
  .p-specialDetail__spotCourseLinkThumb {
    width: 100%;
  }
  .p-specialDetail__spotCourseLinkBody {
    padding: 28px 20px 28px;
    gap: 20px;
  }
  .p-specialDetail__spotCourseLinkTitle {
    padding: 16px 0;
  }
  .p-specialDetail__spotCourseLinkArrow {
    width: 40px;
    height: 20px;
    bottom: 0;
    right: 12px;
  }
}

/* -- p-specialDetail__features ------------------------------ */
.p-specialDetail__features {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 160px 80px;
  background-color: var(--base-white-gray);
}
.p-specialDetail__featuresList {
  display: flex;
  flex-direction: column;
  gap: 80px;
  max-width: 1280px;
  width: 100%;
  padding-top: 80px;
}
.p-specialDetail__featuresLine {
  height: 0;
  border-top: 1px dashed #808080;
}
.p-specialDetail__featuresItem {
  display: flex;
  gap: min(3.89vw, 56px);
  align-items: flex-start;
  padding: 0 40px;
}
.p-specialDetail__featuresItem--reverse {
  flex-direction: row-reverse;
}
.p-specialDetail__featuresTextWrap {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 48px;
  padding: 24px 0;
  min-width: 0;
}
.p-specialDetail__featuresTitle {
  position: relative;
  padding-left: 80px;
}
.p-specialDetail__featuresNum {
  position: absolute;
  left: 0;
  top: -2px;
  width: 56px;
  height: 56px;
  background-color: var(--main-navy);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.p-specialDetail__featuresNum span {
  font-family: var(--font-en);
  font-weight: 900;
  font-size: 2.0rem;
  color: var(--base-white);
  line-height: 1;
  letter-spacing: 0.02em;
}
.p-specialDetail__featuresTitleText {
  font-size: var(--fs-28);
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: 0.06em;
  color: var(--base-black);
}
.p-specialDetail__featuresBody {
  font-size: var(--fs-18);
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.06em;
  color: var(--base-black);
}
.p-specialDetail__featuresImage {
  /* width: 520px;
  height: 368px; */
  width: min(36.11vw, 520px);
  aspect-ratio: 520 / 368;
  flex-shrink: 0;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
}
.p-specialDetail__featuresImage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (width < 1024px) {
  .p-specialDetail__features {
    padding: 120px 40px;
  }
}
@media (width < 768px) {
  .p-specialDetail__features {
    padding: 104px 20px;
  }
  .p-specialDetail__featuresList {
    gap: 56px;
    padding-top: 40px;
  }
  .p-specialDetail__featuresItem,
  .p-specialDetail__featuresItem--reverse {
    flex-direction: column;
    padding: 0;
    gap: 32px;
  }
  .p-specialDetail__featuresImage {
    width: 100%;
    height: auto;
    aspect-ratio: 520 / 368;
  }
  .p-specialDetail__featuresTitle {
    padding-left: 56px;
  }
  .p-specialDetail__featuresTitleText {
    font-size: 2.4rem;
  }
  .p-specialDetail__featuresNum {
    width: 40px;
    height: 40px;
    top: 2px;
  }
  .p-specialDetail__featuresTextWrap {
    padding: 0;
    gap: 32px;
  }
}

/* -- p-specialDetail__overview ------------------------------ */
.p-specialDetail__overview {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 160px 80px;
  background-color: var(--base-white);
}
.p-specialDetail__overview::before {
  content: "";
  position: absolute;
  right: 64px;
  top: -56px;
  background-image: url(../img/special/detail/illust_04.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 162px;
  height: 200px;
  z-index: 1;
}
.p-specialDetail__overviewIllust04 img,
.p-specialDetail__overviewIllust05 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.p-specialDetail__overviewDl {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 24px;
  background-color: var(--base-off-white);
  border-radius: 16px;
  padding: 56px 56px 32px;
  min-width: 880px;
  width: 61.11vw;
}
.p-specialDetail__overviewDl::before {
  content: "";
  position: absolute;
  bottom: -80px;
  left: -120px;
  width: 184px;
  height: 176px;
  background-image: url(../img/special/detail/illust_05.svg);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}
.p-specialDetail__overviewRow {
  display: flex;
  align-items: stretch;
  width: 100%;
}
.p-specialDetail__overviewDt {
  width: 200px;
  flex-shrink: 0;
  border-bottom: 2px solid var(--base-medium-light-gray);
  padding: 0 8px 23px;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: 0.06em;
}
.p-specialDetail__overviewDd {
  flex: 1;
  border-bottom: 1px solid var(--base-light-gray);
  padding: 0 8px 24px;
  font-size: 1.6rem;
  line-height: 1.8;
  letter-spacing: 0.06em;
}
.p-specialDetail__overviewRow:last-child .p-specialDetail__overviewDt,
.p-specialDetail__overviewRow:last-child .p-specialDetail__overviewDd {
  border-bottom: none;
}
.p-specialDetail__overviewDd ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.p-specialDetail__overviewDd ul li {
  position: relative;
  display: flex;
  align-items: flex-start;
  line-height: 2;
  letter-spacing: 0.06em;
  padding-left: 24px;
}
.p-specialDetail__overviewDd ul li::before {
  content: '';
  display: block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: var(--base-black);
  flex-shrink: 0;
  position: absolute;
  top: 14px;
  left: 10px;
}
@media (width < 1200px) {
  .p-specialDetail__overviewDl::before {
    left: 8px;
    bottom: -128px;
  }
}
@media (width < 1024px) {
  .p-specialDetail__overview {
    padding: 120px 40px;
  }
  .p-specialDetail__overviewDl {
    width: 98%;
    min-width: auto;
  }
}
@media (width < 768px) {
  .p-specialDetail__overview {
    padding: 104px 16px;
  }
  .p-specialDetail__overview:before {
    width: 122px;
    height: 150px;
    top: -82px;
    right: 16px;
  }
  .p-specialDetail__overviewIllust04 {
    width: 120px;
    height: 148px;
    right: 0;
    top: -40px;
  }
  .p-specialDetail__overviewRow {
    flex-direction: column;
    gap: 0;
  }
  .p-specialDetail__overviewDl {
    padding: 56px 16px;
    gap: 24px;
  }
  .p-specialDetail__overviewDl::before {
    width: 138px;
    height: 132px;
    bottom: -88px;
  }
  .p-specialDetail__overviewDt {
    width: 100%;
    border-bottom: none;
    padding-bottom: 16px;
  }
  .p-specialDetail__overviewDd {
    padding-top: 0;
  }
  .p-specialDetail__overviewIllust05 {
    bottom: 24px;
    left: 20px;
    width: 130px;
    height: 124px;
  }
}

/* -- p-specialDetail__cta ----------------------------------- */
.p-specialDetail__cta {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
  padding: 120px 0;
  background-color: var(--main-white-blue);
}
.p-specialDetail__cta::before {
  content: '';
  background-image: url(../img/special/detail/illust_08.svg);
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  left: 72px;
  top: -72px;
  width: 206px;
  height: 200px;
}
.p-specialDetail__cta::after {
  content: '';
  background-image: url(../img/special/detail/illust_09.svg);
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  bottom: 44px;
  right: 104px;
  width: 106px;
  height: 160px;
  pointer-events: none;
}
.p-specialDetail__ctaMessage {
  display: flex;
  align-items: flex-end;
  gap: 12px;
  justify-content: center;
}
.p-specialDetail__ctaMessageDeco {
  display: block;
  position: relative;
  width: 24px;
  height: 40px;
  overflow: hidden;
  flex-shrink: 0;
}
.p-specialDetail__ctaMessageDeco::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 2px;
  height: 32px;
  background-color: var(--main-red);
}
.p-specialDetail__ctaMessageDeco--before::before {
  transform: translate(-50%, -50%) rotate(-30deg);
}
.p-specialDetail__ctaMessageDeco--after::before {
  transform: translate(-50%, -50%) rotate(30deg);
}
.p-specialDetail__ctaMessageText {
  font-size: var(--fs-24);
  font-weight: 700;
  color: var(--base-black);
  text-align: center;
  letter-spacing: 0.06em;
  line-height: 1.6;
  white-space: nowrap;
}
.p-specialDetail__cta .c-btn--l {
  width: 400px;
}
@media (width < 768px) {
  .p-specialDetail__cta {
    gap: 32px;
    padding: 104px 0;
  }
  .p-specialDetail__cta::before {
    width: 155px;
    height: 150px;
    left: -8px;
    top: -72px;
  }
  .p-specialDetail__cta::after {
    bottom: -8px;
    right: 48px;
    width: 80px;
    height: 120px;
  }
  .p-specialDetail__ctaMessageText {
    font-size: 2.0rem;
    white-space: normal;
  }
  .p-specialDetail__cta .c-btn--l {
    width: 320px;
  }
}

/* == news =================================================== */
.p-newsArchive {
  position: relative;
  padding: 80px 0 120px;
}
.p-newsArchive::before {
  content: "";
  background-image: url(../img/common/illust_01.svg);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  right: 96px;
  top: -48px;
  width: 122px;
  height: 130px;
}
.p-newsArchive__inner {
  width: 800px;
  margin: 0 auto;
}
/* -- p-newsArchive__list ----------------------------------- */
.p-newsArchive__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
.p-newsArchive__item {
  position: relative;
}
.p-newsArchive__item::before {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 100%;
  height: 1px;
  border-bottom: 1px dashed var(--base-medium-light-gray);
}
/* -- p-newsCard ------------------------------------------- */
.p-newsCard {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 40px 80px 40px 40px;
  border-radius: 16px;
  text-decoration: none;
  position: relative;
  transition: background-color 0.2s ease;
}
@media (hover: hover) {
  .p-newsCard:hover {
    background-color: var(--base-white-gray);
  }
  .p-newsCard:hover .p-newsCard__arrow {
    background-color: var(--main-blue);
  }
  .p-newsCard:hover .p-newsCard__title {
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-decoration-color: var(--base-black);
    text-underline-offset: 0.15em;
    text-decoration-skip-ink: none;
  }
}
.p-newsCard__textWrap {
  flex: 1 0 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
  min-width: 0;
}
.p-newsCard__info {
  display: flex;
  align-items: center;
  gap: 16px;
}
.p-newsCard__date {
  font-family: var(--font-en);
  font-weight: 900;
  font-size: 1.4rem;
  color: var(--base-dark-gray);
  letter-spacing: 0.02em;
  line-height: 1;
  white-space: nowrap;
}
.p-newsCard__tag {
  display: flex;
  width: fit-content;
  align-items: center;
  height: 24px;
  padding: 0 16px;
  background: #ffbe98;
  border-radius: 100vmax;
  font-size: 1.3rem;
  letter-spacing: 0.06em;
  white-space: nowrap;
}
.p-newsCard__title {
  font-size: var(--fs-18);
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.06em;
  color: var(--base-black);
  font-feature-settings: 'palt';
}
.p-newsCard__arrow {
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  flex-shrink: 0;
  width: 40px;
  height: 20px;
  background-color: var(--base-black);
  background-image: url(../img/common/icon_arrow.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 12px;
  border-radius: 4px;
  transition: background-color 0.1s ease;
}

/* -- p-newsArchive__pagination ---------------------------- */
.p-newsArchive__pagination .c-pagination__list {
  padding-top: 56px;
  padding-bottom: 0;
}
/* -- responsive ------------------------------------------- */
@media (width < 900px) {
  .p-newsArchive__inner {
    width: 91.79%;
  }
}
@media (width < 768px) {
  .p-newsArchive {
    padding: 48px 0 80px;
  }
  .p-newsArchive::before {
    right: 32px;
    width: 92px;
    height: 98px;
  }
  .p-newsCard {
    padding: 24px 68px 24px 16px;
  }
  .p-newsCard__arrow {
    right: 16px;
  }
  .p-newsCard__title {
    font-size: 1.8rem;
  }
}

/* == news/detail =================================================== */
.p-newsDetail {
  padding: 56px 72px 120px;
}
.p-newsDetailContent {
  width: 800px;
  margin: 0 auto;
}
.p-newsDetail__head {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding-bottom: 56px;
  margin-top: 85px;
  border-bottom: 1px dashed var(--base-medium-light-gray);
}
.p-newsDetail__title {
  letter-spacing: .06em;
  font-size: 3.6rem;
  font-weight: 700;
  line-height: 1.6;
}
.p-newsDetail__dates {
  font-size: 1.4rem;
  gap: 32px;
  font-weight: 500;
  display: flex;
}
.p-newsDetail .p-columnDetail__body {
  padding-bottom: 80px;
  border-bottom: 1px dashed var(--base-medium-light-gray);
}
.p-newsDetail .p-columnDetail__body>h2 {
  margin-top: 0;
}
.p-newsDetail .c-btn__wrap {
  margin-top: 80px;
  text-align: center;
}
.p-newsDetail .c-btn {
  text-align: left;
}
/* -- responsive ------------------------------------------- */
@media (width < 900px) {
  .p-newsDetailContent {
    width: 100%;
  }
}
@media (width < 768px) {
  .p-newsDetail {
    padding: 24px 16px 140px;
  }
  .p-newsDetail__head {
    margin-top: 60px;
  }
}

/* == p-download ============================================= */
/* -- header ------------------------------------------------- */
.p-form__header {
  height: 88px;
  display: flex;
  align-items: center;
  padding: 0 12px 0 32px;
  flex-shrink: 0;
  background-color: var(--base-white-gray);
}

/* -- main --------------------------------------------------- */
.p-download {
  background-color: var(--base-white-gray);
  display: flex;
  gap: min(3.89vw, 56px);
  align-items: flex-start;
  padding: 80px 80px 40px;
}

/* -- info (left) -------------------------------------------- */
.p-download__info {
  flex: 1 0 0;
  min-width: 400px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.p-download__infoHead {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.p-download__infoTitle {
  padding-left: 44px;
  background-image: url(../img/common/icon_document.svg);
  background-position: center left;
  background-size: 36px 36px;
  background-repeat: no-repeat;
}
.p-download__infoTitleText {
  font-size: 3.2rem;
  color: var(--main-navy);
  letter-spacing: 0.06em;
}
.p-download__infoLead {
  font-size: var(--fs-16);
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.06em;
}
.p-download__divider {
  border: none;
  border-top: 1px dashed var(--base-medium-light-gray);
  margin: 0;
}
.p-download__docList {
  display: flex;
  flex-direction: column;
  gap: 32px;
  border-top: 1px dashed var(--base-medium-light-gray);
  border-bottom: 1px dashed var(--base-medium-light-gray);
  padding: 32px 0;
}
.p-download__docItem {
  display: flex;
  gap: 8px;
  align-items: flex-start;
}
.p-download__docTextWrap {
  flex: 1 0 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.p-download__docTitle {
  display: flex;
  gap: 4px;
  align-items: flex-start;
  font-size: 1.8rem;
  letter-spacing: 0.06em;
  line-height: 1.6;
}
.p-download__docNum {
  flex-shrink: 0;
}
.p-download__docPoints {
  list-style: disc;
  padding-left: 20px;
  font-size: 1.3rem;
  line-height: 2;
  letter-spacing: 0.06em;
  display: flex;
  flex-direction: column;
}
.p-download__docThumb {
  width: 160px;
  height: 148px;
  flex-shrink: 0;
}
.p-download__docThumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* -- formCard (right) --------------------------------------- */
.p-formCard {
  flex: 1 0 0;
  max-width: 880px;
  min-width: 600px;
  background: var(--base-white);
  border-radius: 24px;
  padding: 80px min(5.56vw, 80px) 120px;
}

/* -- p-form ------------------------------------------------- */
.p-download__formFields {
  display: flex;
  flex-direction: column;
  gap: 48px;
  width: 100%;
}
.p-form__set {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.p-form__label {
  display: flex;
  align-items: center;
  gap: 12px;
}
.p-form__labelText {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 2;
  letter-spacing: 0.06em;
  font-feature-settings: 'palt';
}
.p-form__textInput {
  width: 100%;
  height: 72px;
  border: 1px solid var(--base-light-gray);
  border-radius: 8px;
  padding: 20px 28px;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.06em;
  color: var(--base-black);
  background: var(--base-white);
  font-family: var(--font-ja);
  transition: border-color 0.2s ease;
}
.p-form__textInput::placeholder {
  color: var(--base-medium-light-gray);
}
.p-form__textInput:focus {
  border-color: var(--main-blue);
}
.p-form__textInput.--readonly {
  background: var(--base-off-white);
  color: var(--base-black);
  display: flex;
  align-items: center;
  padding: 0 24px;
  cursor: default;
  pointer-events: none;
}
/* == CF7 共通 ================================================ */
/* labelTip（contact形式）*/
.labelTip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 24px;
  padding: 0 8px;
  border-radius: 4px;
  font-size: 1.2rem;
  font-weight: 500;
  white-space: nowrap;
  flex-shrink: 0;
  letter-spacing: 0.06em;
}
.labelTip--require {
  background: var(--main-red);
  color: var(--base-white);
}
.labelTip--optional {
  background: var(--base-light-gray);
  color: var(--base-dark-gray);
}
/* textarea（CF7: formTextarea / static: p-form__textarea）*/
.formTextarea,
.p-form__textarea {
  width: 100%;
  height: 254px;
  border: 1px solid var(--base-light-gray);
  border-radius: 8px;
  background: var(--base-white);
  padding: 23px 28px;
  font-size: 1.7rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  line-height: 1.6;
  resize: vertical;
  font-family: inherit;
  transition: border-color 0.2s ease;
  font-feature-settings: 'palt';
}
.formTextarea::placeholder,
.p-form__textarea::placeholder {
  color: var(--base-medium-light-gray);
}
.formTextarea:focus,
.p-form__textarea:focus {
  border-color: var(--main-blue);
  outline: none;
}
.p-form__hint {
  font-size: 1.3rem;
  letter-spacing: 0.06em;
  color: #808080;
  font-feature-settings: 'palt';
}
/* Error Message */
.custom_wpcf7-not-valid-tip {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 2px;
  padding-left: 28px;
  margin: 0 !important;
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--main-red) !important;
  background-image: url(../img/common/icon_alert.svg);
  background-size: 24px 24px;
  background-repeat: no-repeat;
  background-position: left top 1px;
}
/* エラー時のinputボーダー */
.p-formCard .inputBox__input:has(.custom_wpcf7-not-valid-tip) .formText {
  border: 2px solid var(--main-red);
}
.p-form__checkboxText {
  font-size: 17px;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.06em;
  color: var(--base-black);
  font-feature-settings: 'palt';
}
@media (hover: hover) {
  .p-formCard .wpcf7-list-item:hover input[type="checkbox"] {
    border-color: var(--main-blue);
  }
  .p-formCard .wpcf7-list-item:hover input[type="checkbox"]:checked {
    background-color: var(--main-dark-blue);
    border-color: var(--main-dark-blue);
  }
}

/* -- footer ------------------------------------------------- */
.p-form__footer {
  padding: 80px 80px 56px;
  display: flex;
  flex-direction: column;
  gap: 40px;
  background-color: var(--base-white-gray);
}
.p-form__footerDivider {
  border: none;
  border-top: 1px dashed var(--base-medium-light-gray);
  margin: 0;
}
.p-download__copyright {
  display: block;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.06em;
  text-align: center;
  font-feature-settings: 'palt';
}

/* -- responsive --------------------------------------------- */
@media (width < 1200px) {
  .p-download {
    flex-direction: column;
    padding: 48px 40px 40px;
    gap: 40px;
  }
  .p-download__info {
    min-width: unset;
    width: 100%;
  }
  .p-download__docItem {
    flex-direction: column;
    gap: 16px;
  }
  .p-formCard {
    min-width: unset;
    max-width: 100%;
    width: 100%;
    padding: 48px 40px 80px;
  }
  .p-form__footer {
    padding-inline: 40px;
  }
}
@media (width < 768px) {
  .p-form__header {
    padding: 0 16px 0 20px;
  }
  .p-download {
    padding: 64px 16px 40px;
    gap: 56px;
  }
  .p-download__infoTitle {
    text-align: center;
    padding-top: 44px;
    padding-left: 0;
    background-position: center top;
  }
  .p-download__infoLead {
    font-size: 1.6rem;
    text-align: center;
  }
  .p-download__docThumb {
    margin: 0 auto;
  }
  .p-formCard {
    padding: 64px 16px 104px;
  }
  .p-formCard .c-btn--l {
    width: 326px;
  }
  .p-download__form {
    gap: 48px;
  }
  .p-form__privacyBox {
    padding: 24px 24px 20px;
  }
  .p-download__submitBtn {
    width: 100%;
  }
  .p-form__footer {
    padding: 64px 16px 56px;
  }
  .p-form__privacyLink {
    margin-bottom: 4px;
    display: inline-block;
  }
}
/* セクション区切り見出し（CF7: p-contact__section / static: p-contact__group）*/
.p-contact__section,
.p-contact__group {
  display: flex;
  flex-direction: column;
  gap: 48px;
  width: 100%;
}
.p-contact__sectionHeading,
.p-contact__groupHeading {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-bottom: 16px;
  border-bottom: 1px dashed var(--base-medium-light-gray);
}
.p-contact__sectionTitle,
.p-contact__groupTitle {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.6;
  color: var(--base-dark-gray);
  padding-bottom: 16px;
  border-bottom: 1px dashed var(--base-medium-light-gray);
  width: 100%;
}
.p-contact__sectionHeading .p-contact__sectionTitle,
.p-contact__groupHeading .p-contact__groupTitle {
  padding-bottom: 0;
  border-bottom: none;
}
.p-contact__sectionLead,
.p-contact__groupLead {
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.06em;
  color: var(--base-black);
  font-feature-settings: 'palt';
}
/* 確認画面タイトル */
.confirm_area__title {
  font-size: var(--fs-24);
  text-align: center;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--base-black);
  width: 100%;
}
/* 確認画面ボタンエリア */
.p-confirmBtnWrap {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
/* 戻るボタン */
.c-backBtn {
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  font-family: inherit;
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}
/* エラー時のtextareaボーダー */
.p-formCard .inputBox__input:has(.custom_wpcf7-not-valid-tip) .formTextarea {
  border-color: var(--main-red);
}

/* == CF7 フォームカード 共通 ================================= */
.input_area {
  display: flex;
  flex-direction: column;
  gap: 80px;
}
/* CF7が生成するHTML構造（inputBox / formText / wpcf7-*）をスタイル */
.p-formCard .p-contactForm__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 48px;
}
.p-formCard .inputBox {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.p-formCard .inputBox__label {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 2;
}
.p-formCard .inputBox__input {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
/* text / tel / email inputs */
.p-formCard .formText {
  width: 100%;
  height: 72px;
  border: 1px solid var(--base-light-gray);
  border-radius: 8px;
  background: var(--base-white);
  padding: 0 24px;
  font-size: 1.7rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  transition: border-color 0.2s ease;
}
.p-formCard .formText::placeholder {
  color: var(--base-medium-light-gray);
}
.p-formCard .formText:focus {
  border-color: var(--main-blue);
  outline: none;
}
/* radio */
.p-formCard .wpcf7-radio {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.p-formCard .wpcf7-radio .wpcf7-list-item {
  margin: 0;
}
.p-formCard .wpcf7-radio .wpcf7-list-item label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
}
.p-formCard .wpcf7-radio input[type="radio"] {
  appearance: none;
  -webkit-appearance: none;
  width: 32px;
  height: 32px;
  border: 1px solid var(--base-light-gray);
  border-radius: 50%;
  background: var(--base-white);
  cursor: pointer;
  transition: 0.15s ease;
  margin-top: 2px;
  flex-shrink: 0;
}
.p-formCard .wpcf7-radio input[type="radio"]:checked {
  background: radial-gradient(circle, var(--main-blue) 0 52%, white 55%);
}
@media (hover: hover) {
  .p-formCard .wpcf7-radio .wpcf7-list-item:hover input[type="radio"] {
    border-color: var(--main-blue);
  }
}
.p-formCard .wpcf7-radio .wpcf7-list-item-label {
  font-size: 1.7rem;
  line-height: 1.6;
  letter-spacing: 0.06em;
  margin-top: 4px;
}
/* privacy */
.p-formCard .p-contact__privacy {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  background: var(--base-off-white);
  border-radius: 12px;
  border: 1px solid var(--base-medium-light-gray);
  padding: 40px 40px 28px;
  margin-top: 0 !important;
}
.p-formCard .p-contact__privacy .wpcf7-form-control-wrap {
  font-size: 1.7rem;
}
.p-formCard .wpcf7-acceptance .wpcf7-list-item {
  margin: 0;
}
.p-formCard .wpcf7-acceptance .wpcf7-list-item label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
}
.p-formCard .wpcf7-acceptance input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 32px;
  height: 32px;
  min-width: 32px;
  border: 1.5px solid var(--base-light-gray);
  border-radius: 8px;
  background: var(--base-white);
  cursor: pointer;
  flex-shrink: 0;
  transition: border-color 0.15s ease, background-color 0.15s ease;
}
.p-formCard .wpcf7-acceptance input[type="checkbox"]:checked {
  background-color: var(--main-blue);
  border-color: var(--main-blue);
  background-color: var(--main-blue);
  border-color: var(--main-blue);
  background-image: url(../img/common/check_big.svg);
  background-size: 14px 10px;
  background-repeat: no-repeat;
  background-position: center;
}
.p-form__checkboxText .privacyLink {
  color: var(--main-dark-blue);
  text-decoration: underline;
  text-underline-offset: 2px;
  background-image: url(../img/common/icon_blank_blue.svg);
  background-position: center right;
  background-size: 18px 18px;
  background-repeat: no-repeat;
  padding-right: 20px;
  margin-right: 8px;
}
/* submit buttons */
.p-formCard input[type="submit"].p-checkBtn,
.p-formCard input[type="submit"].p-contact__btn {
  appearance: none;
  -webkit-appearance: none;
  height: 88px;
  background: var(--base-black);
  border: 1px solid var(--base-black);
  border-radius: 12px;
  color: var(--base-white);
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  transition: 0.2s;
  padding: 0 32px;
  text-align: center;
}
@media (hover: hover) {
  .p-formCard input[type="submit"].p-checkBtn:hover,
  .p-formCard input[type="submit"].p-contact__btn:hover {
    background: var(--main-blue);
    border-color: var(--main-blue);
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-decoration-color: var(--base-white);
    text-underline-offset: 0.15em;
    text-decoration-skip-ink: none;
  }
}
/* back button */
.p-formCard .c-backBtn {
  width: 100%;
  height: 88px;
  justify-content: center;
  font-size: 1.8rem;
  font-weight: 700;
}
@media (hover:hover) {
  .p-formCard .c-backBtn:hover {
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-decoration-color: var(--base-black);
    text-underline-offset: 0.15em;
    text-decoration-skip-ink: none;
  }
}
/* confirm area */
.p-formCard .confirm_area {
  display: flex;
  flex-direction: column;
  gap: 80px;
}
.p-formCard .confirm_area .inputBox__input {
  min-height: 24px;
  font-size: 1.7rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--base-black);
  line-height: 1.6;
  padding: 16px 0;
}
/* input[type="submit"] に c-btn クラスを当てた場合の補正 */
.p-formCard input[type="submit"].c-btn {
  width: 100%;
  display: inline-flex;
  align-items: center;
  text-align: center;
}
.p-formCard input[type="submit"].c-btn--l {
  padding: 12px 24px;
}
.p-formCard .p-contact__btnWrap {
  position: relative;
  width: 100%;
  max-width: 338px;
  margin: 0 auto;
}
.p-formCard .p-confirmBtnWrap {
  display: grid;
  grid-template-columns: 14fr 19fr;
  gap: 32px;
  width: 100%;
  max-width: 560px;
  margin: 0 auto;
}
/* spinner非表示 */
.p-formCard .wpcf7-spinner,
.wpcf7-not-valid-tip {
  display: none;
}
/* responsive */
@media (width < 768px) {
  .p-formCard .input_area,
  .p-formCard .confirm_area {
    gap: 64px;
  }
  .p-formCard .p-confirmBtnWrap {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .p-formCard input[type="submit"].p-checkBtn,
  .p-formCard input[type="submit"].p-contact__btn {
    width: 100%;
  }
  .p-formCard .p-contact__btnWrap {
    max-width: none;
  }
  .p-formCard .p-contact__privacy {
    padding: 24px 24px 20px;
  }
}

/* == Contact ================================================ */
.p-contact {
  background-color: var(--base-white-gray);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 80px;
  padding: 80px 80px 40px;
  min-height: 100dvh;
}
.p-contact .p-formCard {
  margin: 0 auto;
}

/* -- head --------------------------------------------------- */
.p-contact__head {
  width: 100%;
}
.p-contact__en {
  font-family: var(--font-en);
  font-weight: 900;
  font-size: 1.6rem;
  letter-spacing: 0.06em;
  text-align: center;
  margin-bottom: 8px;
}
.p-contact__title {
  font-size: 4.4rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--main-navy);
  text-align: center;
}
.p-contact__head .p-contact__en+.p-contact__title {
  margin-top: 0;
}
.p-contact__lead {
  font-size: var(--fs-16);
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.06em;
  text-align: center;
  color: var(--base-black);
  font-feature-settings: 'palt';
  margin-top: 56px;
}
/* -- card --------------------------------------------------- */
.p-contact__card {
  width: 100%;
  padding: 80px 120px 120px;
}
/* -- fields ------------------------------------------------- */
/* ※ section / group / heading / lead は CF7 共通セクションを参照 */
.p-contact__fields {
  display: flex;
  flex-direction: column;
  gap: 48px;
  width: 100%;
}
/* -- privacyBox --------------------------------------------- */
.p-contact__privacyBox {
  width: 100%;
  background: var(--base-off-white);
  border: 1px solid var(--base-medium-light-gray);
  border-radius: 8px;
  padding: 40px 40px 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
/* icon_blank アイコン（リンクテキスト横） */
.p-form__privacyIcon {
  display: inline-block;
  vertical-align: middle;
  margin-left: 2px;
  width: 18px;
  height: 18px;
}
/* -- responsive --------------------------------------------- */
@media (width < 1024px) {
  .p-contact {
    padding: 64px 40px;
    gap: 56px;
  }
  .p-contact__card {
    padding: 64px 64px 80px;
  }
}
@media (width < 768px) {
  .p-contact {
    padding: 64px 16px 40px;
    gap: 40px;
  }
  .p-contact__en+.p-contact__title {
    font-size: 3.2rem;
  }
  .p-contact__card {
    padding: 48px 24px 80px;
  }
  .p-contact__form {
    gap: 56px;
  }
  .p-contact__section,
  .p-contact__group {
    gap: 32px;
  }
  .p-contact__fields {
    gap: 32px;
  }
  .p-contact__privacyBox {
    padding: 32px 24px 24px;
  }
  .p-contact__form .c-btn--l {
    width: 100%;
    max-width: 338px;
  }
}

/* == Thanks ================================================= */
.p-thanks__inner {
  padding: 56px 72px 0;
}
.p-thanks__body {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 80px;
  padding: 80px 80px 120px;
}
.p-thanks__title {
  font-size: 3.6rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-align: center;
  line-height: 1.4;
}
.p-thanks__text {
  display: flex;
  flex-direction: column;
  gap: 24px;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 2;
  max-width: 800px;
  width: 100%;
}
.p-thanks__body::before {
  content: "";
  background-image: url(../img/top/stamp.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  bottom: 32px;
  right: 52px;
  width: 590px;
  height: 352px;
  pointer-events: none;
  opacity: 1;
  z-index: -1;
}
/* -- responsive --------------------------------------------- */
@media (width < 768px) {
  .p-thanks__inner {
    padding: 24px 28px;
  }
  .p-thanks__body {
    padding: 64px 16px 120px;
    gap: 56px;
    overflow: hidden;
  }
  .p-thanks__body::before {
    width: 295px;
    height: 176px;
    bottom: 194px;
    right: -16px;
  }
  .p-thanks__title {
    font-size: 3.2rem;
  }
  .p-thanks__text {
    font-size: 1.6rem;
  }
  .p-thanks__stamp {
    width: 320px;
    right: -40px;
    bottom: 16px;
  }
  .p-thanks__body .c-btn--l {
    width: 326px;
  }
}

/* == 404 ==================================================== */
.p-notFound__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: min(5.56vw, 80px);
  padding: 0 48px 120px;
}
.p-notFound .c-breadcrumb {
  padding: 56px 72px 5px;
}
/* -- visual (left) ------------------------------------------ */
.p-notFound__visual {
  display: flex;
  align-items: center;
  position: relative;
  width: 560px;
  height: 560px;
}
.p-notFound__circle {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: #d9d3c8;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
}
.p-notFound__num {
  font-family: var(--font-en);
  font-weight: 900;
  font-size: clamp(8rem, 14vw, 13.2rem);
  color: var(--base-white);
  line-height: 1;
  letter-spacing: 0.04em;
}
.p-notFound__label {
  font-family: var(--font-en);
  font-weight: 900;
  font-size: clamp(2rem, 3.5vw, 3.6rem);
  color: var(--base-white);
  letter-spacing: 0.1em;
}
.p-notFound__visual img {
  width: 100%;
  height: auto;
}
/* -- content (right) ---------------------------------------- */
.p-notFound__content {
  display: flex;
  flex-direction: column;
  gap: 40px;
  min-width: 0;
}
.p-notFound__title {
  font-size: clamp(2rem, 2.8vw, 2.8rem);
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.5;
  color: var(--base-black);
}
.p-notFound__body {
  display: flex;
  flex-direction: column;
  gap: 20px;
  font-size: var(--fs-16);
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.06em;
  color: var(--base-black);
  margin-bottom: 16px;
}
/* -- responsive --------------------------------------------- */
@media (width < 860px) {
  .p-notFound .c-breadcrumb {
    padding: 24px 28px 20px;
  }
  .p-notFound__inner {
    flex-direction: column;
    align-items: center;
    padding: 0 16px 120px;
    gap: 40px;
  }
  .p-notFound__visual {
    width: min(100%, 358px);
    height: min(100%, 358px);
  }
  .p-notFound__content {
    align-items: center;
    text-align: center;
    gap: 40px;
  }
  .p-notFound__title {
    font-size: 2.8rem;
  }
  .p-notFound__body {
    text-align: center;
  }
}