sup {
  font-size: 50%;
  line-height: 1;
  vertical-align: super;
}

/* ----------------------------------------
  keyframes
---------------------------------------- */
@keyframes arrowBump {
  0% {
    transform: translate(0, -50%);
  }
  40% {
    transform: translate(5px, -50%);
  }
  100% {
    transform: translate(0, -50%);
  }
}

/* ----------------------------------------
  bg-dots
---------------------------------------- */
.bg-dots {
  background: url("/assets/img/common/shared/bg-dots.webp") repeat #fff;
}

/* ----------------------------------------
  MV
---------------------------------------- */
.mv {
  overflow: hidden;
}
.mv-inner {
  height: 636px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
@media (max-width: 767px) {
  .mv-inner {
    height: auto;
    padding: 0;
  }
}
.mv-img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: auto;
  height: auto;
}
@media (max-width: 767px) {
  .mv-img {
    width: 100%;
    max-width: 100%;
    height: auto;
    position: relative;
    left: 0;
    top: 0;
    transform: none;
  }
}

/* ----------------------------------------
  Slider
---------------------------------------- */
.slider {
  background: #F7F7F7;
  padding: 10px 0 0;
}
@media (max-width: 767px) {
  .slider {
    padding: 10px 10px 0;
  }
}

.slider-inner {
  width: calc(600px + 112px);
  margin: 0 auto;
  position: relative;
  padding: 0 56px;
}
@media (max-width: 767px) {
  .slider-inner {
    width: 355px;
    max-width: 100%;
    padding: 0;
  }
}

.slider-swiper {
  overflow: hidden;
}

.slider-link {
  display: block;
  transition: opacity 0.3s ease;
}
.slider-link:hover {
  opacity: 0.8;
}

.slider-img {
  width: 100%;
  height: auto;
}
@media (max-width: 767px) {
  .slider-img {
    display: block;
  }
}

/* 矢印 */
.slider-prev,
.slider-next {
  width: 10px;
  height: 20px;
  color: transparent;
  position: absolute;
  top: 56% !important;
  z-index: 2;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
@media (max-width: 767px) {
  .slider-prev,
  .slider-next {
    display: none;
  }
}

.slider-prev {
  left: 18px !important;
  background-image: url("/assets/img/top/shared/icon-slider-prev.svg");
}

.slider-next {
  right: 18px !important;
  background-image: url("/assets/img/top/shared/icon-slider-next.svg");
}

.slider-prev::after,
.slider-next::after {
  /* Swiperのデフォルト矢印を消す */
  content: "";
}

/* ドット */
.slider-pagination {
  position: static;
  text-align: center;
  transform: translateY(-3px);
}
@media (max-width: 767px) {
  .slider-pagination {
    padding: 2px 0;
    transform: translateY(-2px);
  }
}

.slider-pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  opacity: 0.35;
  background: #F72E52;
  opacity: 0.2;
}

.slider-pagination .swiper-pagination-bullet-active {
  opacity: 1;
  background: #F72E52;
}

/* ----------------------------------------
  Floating
---------------------------------------- */
.floating {
  position: fixed;
  left: 50%;
  bottom: 18px;
  transform: translate(-50%, 10px);
  opacity: 0;
  pointer-events: none;
  z-index: 60;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.floating.is-visible {
  opacity: 1;
  transform: translate(-50%, 0);
  pointer-events: auto;
}

.floating__btn {
  width: 340px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border-radius: 999px;
  text-decoration: none;
  color: #fff;
  font-size: 24px;
  font-weight: bold;
  background: linear-gradient(180deg, #1474FA 0%, #105AC2 100%);
  border: 4px solid #6DA6E0;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: opacity 0.3s ease;
  position: relative;
}
@media (max-width: 767px) {
  .floating__btn {
    width: 295px;
    max-width: 92%;
    height: 50px;
    margin: 0 auto;
    gap: 12px;
    font-size: 18px;
    border: 3px solid #6DA6E0;
  }
}

.floating__btn:hover {
  opacity: 0.9;
}

.floating__btn:hover .floating__icon {
  animation: floatingIconDown 520ms ease-in-out;
  will-change: transform;
}

@keyframes floatingIconDown {
  0% {
    transform: translateY(-4px) rotate(90deg);
  }
  40% {
    transform: translateY(-1px) rotate(90deg); /* 下に3px */
  }
  100% {
    transform: translateY(-4px) rotate(90deg);
  }
}

.floating__icon {
  width: 8px;
  height: 14px;
  display: block;
  background: url("/assets/img/common/shared/icon-arrow-white.svg") no-repeat center / contain;
  transform: translateY(-4px) rotate(90deg);
  position: absolute;
  top: 22px;
  right: 27px;
}
@media (max-width: 767px) {
  .floating__icon {
    width: 7px;
    height: 12px;
    transform: translateY(-4px) rotate(90deg);
    position: absolute;
    top: 18px;
    right: 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .floating {
    transition: none;
  }
  .floating__btn:hover .floating__icon {
    animation: none;
  }
}

/* ----------------------------------------
  About
---------------------------------------- */
.about {
  padding: 30px 0 80px;
}
@media (max-width: 767px) {
  .about {
    padding: 20px 0 50px;
  }
}

@media (max-width: 767px) {
  .about .inner {
    padding: 0 40px;
  }
}

.mv-note {
  margin-bottom: 80px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
@media (max-width: 767px) {
  .mv-note {
    margin: 0 -20px 50px;
  }
}
.mv-note-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  line-height: 1.5;
}
@media (max-width: 767px) {
  .mv-note-item {
    font-size: 12px;
    letter-spacing: -0.01em;
  }
}
.mv-note-item__mark {
  flex: 0 0 auto;
  line-height: 1.5;
}

.mv-note-item__text {
  flex: 1 1 auto;
  min-width: 0;
}

.about-catch {
  width: 364px;
  margin: 0 auto 28px;
  text-align: center;
}
@media (max-width: 767px) {
  .about-catch {
    width: 251px;
    margin-bottom: 10px;
  }
}
.about-catch-img {
  width: 100%;
}
.about-cta {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.about-primary {
  width: 440px;
  margin: 0 auto 46px;
  position: relative;
  display: block;
  text-decoration: none;
  color: #fff;
  border-radius: 999px;
  padding: 25px 56px 23px;
  background: linear-gradient(180deg, #1474FA 0%, #105AC2 100%);
  border: 4px solid #6DA6E0;
  transition: opacity 0.3s ease;
}
@media (max-width: 767px) {
  .about-primary {
    width: 295px;
    max-width: 100%;
    margin-bottom: 25px;
    padding: 13px 0;
    border-width: 3px;
  }
}

.about-primary:hover {
  opacity: 0.8;
}

.about-primary:hover::after {
  animation: arrowBump 520ms ease-in-out;
  will-change: transform;
}
@media (prefers-reduced-motion: reduce) {
  .about-primary:hover::after {
    animation: none;
  }
}

.about-primary::after {
  content: "";
  position: absolute;
  right: 23px;
  top: 50%;
  width: 7px;
  height: 16px;
  background: url("/assets/img/common/shared/icon-arrow-white.svg") no-repeat center / contain;
  transform: translate(0, -50%);
}
@media (max-width: 767px) {
  .about-primary::after {
    width: 6px;
    height: 14px;
    right: 15px;
    top: 48%;
  }
}

.about-primary-lead {
  display: block;
  font-size: 18px;
  font-weight: bold;
}
@media (max-width: 767px) {
  .about-primary-lead {
    font-size: 14px;
  }
}
@media (max-width: 320px) {
  .about-primary-lead {
    font-size: 13px;
  }
}

.about-primary-main {
  display: block;
  margin-top: 12px;
  font-size: 34px;
  font-weight: bold;
}
@media (max-width: 767px) {
  .about-primary-main {
    margin-top: 10px;
    font-size: 23px;
  }
}
@media (max-width: 320px) {
  .about-primary-main {
    font-size: 20px;
  }
}

.about-note {
  margin: 0 auto 22px;
  font-size: 16px;
}
@media (max-width: 767px) {
  .about-note {
    margin-bottom: 11px;
    font-size: 14px;
    line-height: 1.5;
  }
}

.about-secondary {
  width: 320px;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 21px 0;
  border-radius: 999px;
  border: 1px solid #0B5BCE;
  color: #0B5BCE;
  text-decoration: none;
  font-weight: bold;
  font-size: 16px;
  transition: opacity 0.3s ease;
}
@media (max-width: 767px) {
  .about-secondary {
    width: 235px;
    padding: 14px 35px;
    font-size: 14px;
  }
}

.about-secondary:hover {
  opacity: 0.8;
}

.about-secondary:hover::after {
  animation: arrowBump 520ms ease-in-out;
  will-change: transform;
}
@media (prefers-reduced-motion: reduce) {
  .about-secondary:hover::after {
    animation: none;
  }
}

.about-secondary::after {
  content: "";
  position: absolute;
  right: 17px;
  top: 50%;
  width: 7px;
  height: 16px;
  background: url("/assets/img/common/shared/icon-arrow-blue.svg") no-repeat center / contain;
  transform: translate(0, -50%);
}
@media (max-width: 767px) {
  .about-secondary::after {
    right: 12px;
    top: 48%;
    width: 6px;
    height: 14px;
  }
}

/* ----------------------------------------
  Point
---------------------------------------- */
.point {
  padding: 0;
}

.point .bg {
  width: 100%;
  padding: 122px 0;
  background: #F7F7F7;
  border-radius: 80px;
}
@media (max-width: 767px) {
  .point .bg {
    padding: 80px 0;
    border-radius: 40px;
  }
}

@media (max-width: 767px) {
  .point .inner {
    padding: 0 40px;
  }
}

.point-head {
  text-align: center;
}

.point-eyebrow {
  margin: 0;
  font-weight: bold;
  color: #F72E52;
  font-size: 20px;
}
@media (max-width: 767px) {
  .point-eyebrow {
    font-size: 14px;
  }
}

.point-title {
  margin: 17px 0 0;
  font-weight: bold;
  font-size: 32px;
  letter-spacing: 0.01em;
  color: #2F2C2B;
}
@media (max-width: 767px) {
  .point-title {
    margin-top: 8px;
    font-size: 20px;
  }
}

.point-line {
  display: block;
  width: 2px;
  height: 60px;
  background: #F72E52;
  margin: 25px auto 0;
}
@media (max-width: 767px) {
  .point-line {
    margin-top: 15px;
    height: 50px;
  }
}

.point-figure {
  margin: 40px auto 0;
  width: 200px;
}
@media (max-width: 767px) {
  .point-figure {
    width: 144px;
    margin-top: 30px;
    position: relative;
    z-index: 0;
  }
}

.point-women {
  width: 100%;
  height: auto;
}

.point-grid {
  width: 1160px;
  margin-top: -3px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
}
@media (max-width: 767px) {
  .point-grid {
    width: 100%;
    margin: -3px auto 0;
    gap: 25px;
    position: relative;
    z-index: 1;
  }
}

.point-card {
  flex: 0 0 calc((100% - 80px) / 3);
  min-height: 482px;
  padding: 62px 30px 26px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.16);
  background-size: 100px auto;
  background-repeat: no-repeat;
  background-position: top left;
  background-color: #fff;
  border-radius: 24px;
  position: relative;
  z-index: 1;
}
@media (max-width: 767px) {
  .point-card {
    min-height: auto;
    flex-basis: 100%;
    padding: 45px 24px 50px;
    border-radius: 20px;
    background-size: 80px auto;
  }
}
.point-card::before {
  width: 60px;
  height: 60px;
  background-image: url("/assets/img/top/shared/bg-point-dots.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
}
@media (max-width: 767px) {
  .point-card::before {
    width: 50px;
    height: 50px;
  }
}
.point-card__image {
  margin: 0 auto 26px;
}
.point-card__image img {
  width: 100%;
}
.point-card--1 {
  background-image: url("/assets/img/top/shared/bg-point-point01.svg");
}
.point-card--1 .point-card__image {
  width: 251px;
}
@media (max-width: 767px) {
  .point-card--1 .point-card__image {
    width: 208px;
  }
}
.point-card--2 {
  background-image: url("/assets/img/top/shared/bg-point-point02.svg");
}
.point-card--2 .point-card__image {
  width: 280px;
}
@media (max-width: 767px) {
  .point-card--2 .point-card__image {
    width: 231px;
  }
}
.point-card--3 {
  background-image: url("/assets/img/top/shared/bg-point-point03.svg");
}
.point-card--3 .point-card__image {
  width: 159px;
}
@media (max-width: 767px) {
  .point-card--3 .point-card__image {
    width: 133px;
  }
}
.point-card__desc {
  font-size: 16px;
  line-height: 1.5;
  position: absolute;
  top: 330px;
  left: 30px;
  right: 30px;
}
@media (max-width: 767px) {
  .point-card__desc {
    font-size: 14px;
    position: static;
    top: 0;
    left: 0;
    right: 0;
  }
}

.point-card__more {
  margin: 12px 0 0;
}

.point-card__link {
  display: inline-flex;
  align-items: center;
  position: relative;
  padding-right: 15px; /* 矢印分の余白 */
  color: #0B5BCE;
  text-decoration: none;
  font-weight: bold;
  font-size: 16px;
  transition: opacity 0.3s ease;
}
@media (max-width: 767px) {
  .point-card__link {
    font-size: 14px;
  }
}

.point-card__link:hover {
  opacity: 0.8;
}

.point-card__link:hover::after {
  animation: arrowBump 520ms ease-in-out;
  will-change: transform;
}
@media (prefers-reduced-motion: reduce) {
  .point-card__link:hover::after {
    animation: none;
  }
}

.point-card__link::after {
  content: "";
  position: absolute;
  right: 0;
  top: 48%;
  width: 7px;
  height: 16px;
  background: url("/assets/img/common/shared/icon-arrow-blue.svg") no-repeat center / contain;
  transform: translate(0, -50%);
}
@media (max-width: 767px) {
  .point-card__link::after {
    right: 3px;
    top: 48%;
    width: 6px;
    height: 14px;
  }
}

.point-note {
  margin: 30px 0 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
@media (max-width: 767px) {
  .point-note {
    margin: 20px 0 0;
  }
  }
.point-note-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  line-height: 1.5;
}
@media (max-width: 767px) {
  .point-note-item {
    font-size: 12px;
  }
}
.point-note-item__mark {
  flex: 0 0 auto;
  line-height: 1.5;
}

.point-note-item__text {
  flex: 1 1 auto;
  min-width: 0;
}

/* ----------------------------------------
  Process
---------------------------------------- */
.process {
  padding: 120px 0;
}
@media (max-width: 767px) {
  .process {
    padding: 80px 0;
  }
}

@media (max-width: 767px) {
  .process .inner {
    padding: 0 40px;
  }
}

.process-head {
  text-align: center;
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .process-head {
    margin-bottom: 30px;
  }
}

.process-eyebrow {
  margin: 0;
  font-weight: bold;
  color: #F72E52;
  font-size: 20px;
}
@media (max-width: 767px) {
  .process-eyebrow {
    font-size: 14px;
  }
}

.process-title {
  margin: 18px 0 0;
  font-weight: bold;
  font-size: 32px;
  letter-spacing: 0.01em;
  color: #2F2C2B;
}
@media (max-width: 767px) {
  .process-title {
    margin-top: 8px;
    font-size: 20px;
  }
}

.process-line {
  display: block;
  width: 2px;
  height: 60px;
  background: #F72E52;
  margin: 25px auto 0;
}
@media (max-width: 767px) {
  .process-line {
    margin-top: 15px;
    height: 50px;
  }
}

.process-list {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 40px;
}
@media (max-width: 767px) {
  .process-list {
    flex-direction: column;
    align-items: center;
    gap: 70px;
  }
}

.process-card {
  flex: 1 1 0;
  max-width: 260px;
  border-radius: 20px;
  background: #fff;
  color: #2F2C2B;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.16);
  position: relative;
}
@media (max-width: 767px) {
  .process-card {
    min-width: 0;
    width: 100%;
    max-width: 100%;
    border-radius: 20px;
  }
}

/* PCは横並びなので、カード間の矢印を右向きに */
.process-card:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -26px; /* gap(40px)の中央に配置 */
  transform: translateY(-50%);
  width: 12px;
  height: 36px;
  background: url("/assets/img/common/shared/icon-arrow-right.svg") no-repeat center / contain;
  pointer-events: none;
}
@media (max-width: 767px) {
  .process-card:not(:last-child)::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -45px;
    transform: translateX(-50%);
    top: auto;
    right: auto;
    width: 23px;
    height: 20px;
    background-image: url("/assets/img/common/shared/icon-arrow-bottom.svg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    pointer-events: none;
  }
}

.process-card__media {
  height: 127px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  position: relative;
}
@media (max-width: 767px) {
  .process-card__media {
    height: 90px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    position: relative;
    overflow: hidden;
    border-radius: 20px 20px 0 0;
  }
}

.process-card__media-inner {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 37px 14px 18px;
  text-align: center;
}
@media (max-width: 767px) {
  .process-card__media-inner {
    padding: 20px 14px 18px;
  }
}

.process-card__media .process-card__title {
  margin: 9px 0 0;
  color: #fff;
  font-size: 22px;
  font-weight: bold;
}
@media (max-width: 767px) {
  .process-card__media .process-card__title {
    margin-top: 6px;
    font-size: 20px;
  }
}

.process-card--1 .process-card__media {
  background-image: url("/assets/img/top/p/bg-process-step01.webp");
}
@media (max-width: 767px) {
  .process-card--1 .process-card__media {
    background-image: url("/assets/img/top/s/bg-process-step01.webp");
  }
}

.process-card--2 .process-card__media {
  background-image: url("/assets/img/top/p/bg-process-step02.webp");
}
@media (max-width: 767px) {
  .process-card--2 .process-card__media {
    background-image: url("/assets/img/top/s/bg-process-step02.webp");
  }
}

.process-card--3 .process-card__media {
  background-image: url("/assets/img/top/p/bg-process-step03.webp");
}
@media (max-width: 767px) {
  .process-card--3 .process-card__media {
    background-image: url("/assets/img/top/s/bg-process-step03.webp");
  }
}

.process-card--4 .process-card__media {
  background-image: url("/assets/img/top/p/bg-process-step04.webp");
}
@media (max-width: 767px) {
  .process-card--4 .process-card__media {
    background-image: url("/assets/img/top/s/bg-process-step04.webp");
  }
}

.process-card__body {
  padding: 22px 30px 40px;
}
@media (max-width: 767px) {
  .process-card__body {
    padding: 30px 22px;
  }
}

.process-card__step {
  margin: 0;
  font-weight: bold;
  letter-spacing: 0.02em;
  font-size: 14px;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 4px;
}
@media (max-width: 767px) {
  .process-card__step {
    font-size: 12px;
  }
}

.process-card__step strong {
  font-size: 28px;
}
@media (max-width: 767px) {
  .process-card__step strong {
    font-size: 22px;
  }
}

.process-card__title {
  margin: 4px 0 0;
  font-weight: bold;
  font-size: 22px;
  color: #2F2C2B;
}

.process-card__lead {
  font-weight: bold;
  font-size: 20px;
  line-height: 1.5;
  color: #F72E52;
  text-align: center;
  min-height: 3em;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 767px) {
  .process-card__lead {
    min-height: auto;
    font-size: 16px;
  }
}

.process-card__desc {
  margin: 15px 0 0;
  font-size: 16px;
  line-height: 1.5;
}
@media (max-width: 767px) {
  .process-card__desc {
    margin-top: 20px;
    font-size: 14px;
  }
}

.process-card__action {
  margin: 20px 0 0;
  text-align: center;
}
@media (max-width: 767px) {
  .process-card__action {
    margin: 24px 0 0;
  }
}

.process-card__button {
  width: 200px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 60px;
  padding: 0;
  border-radius: 999px;
  border: 1px solid #2F2C2B;
  background: #fff;
  text-decoration: none;
  font-weight: bold;
  font-size: 16px;
  transition: opacity 0.3s ease;
  color: #2F2C2B;
  position: relative;
}
@media (max-width: 767px) {
  .process-card__button {
    width: 235px;
    height: 45px;
    padding: 0 44px;
    font-size: 14px;
    text-align: center;
    position: relative;
    justify-content: center;
  }
}

.process-card__button:hover {
  opacity: 0.8;
}

.process-card__button:hover::after {
  animation: arrowBump 520ms ease-in-out;
  will-change: transform;
}
@media (prefers-reduced-motion: reduce) {
  .process-card__button:hover::after {
    animation: none;
  }
}

.process-card__button::after {
  content: "";
  position: absolute;
  right: 19px;
  top: 48%;
  width: 7px;
  height: 16px;
  background: url("/assets/img/common/shared/icon-arrow-black.svg") no-repeat center / contain;
  transform: translate(0, -50%);
}
@media (max-width: 767px) {
  .process-card__button::after {
    position: absolute;
    right: 15px;
    top: 48%;
    width: 6px;
    height: 14px;
    transform: translate(0, -50%);
  }
}


/* ----------------------------------------
  Criteria
---------------------------------------- */
.criteria {
  padding: 0;
}

.criteria .bg {
  width: 100%;
  padding: 123px 0 115px;
  background: #F7F7F7;
  border-radius: 80px;
}
@media (max-width: 767px) {
  .criteria .bg {
    padding: 80px 0;
    border-radius: 40px;
  }
}
.criteria .inner {
  width: 1000px;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .criteria .inner {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
  }
}

.criteria-head {
  text-align: center;
  margin-bottom: 35px;
}
@media (max-width: 767px) {
  .criteria-head {
    margin-bottom: 30px;
  }
}

.criteria-eyebrow {
  margin: 0;
  font-weight: bold;
  color: #F72E52;
  font-size: 20px;
}
@media (max-width: 767px) {
  .criteria-eyebrow {
    font-size: 14px;
  }
}

.criteria-title {
  margin: 18px 0 0;
  font-weight: bold;
  font-size: 32px;
  letter-spacing: 0.01em;
  color: #2F2C2B;
}
@media (max-width: 767px) {
  .criteria-title {
    margin-top: 8px;
    font-size: 20px;
  }
}

.criteria-line {
  display: block;
  width: 2px;
  height: 60px;
  background: #F72E52;
  margin: 25px auto 0;
}
@media (max-width: 767px) {
  .criteria-line {
    height: 42px;
  }
}

.criteria-figure {
  margin: 40px auto 0;
  width: 230px;
  transform: translateX(25px);
}
@media (max-width: 767px) {
  .criteria-figure {
    margin: 30px auto 0;
    width: 157px;
    transform: translateX(20px);
  }
}

.criteria-women {
  width: 100%;
  height: auto;
}

.criteria-desc {
  margin: 0 auto 39px;
  font-size: 16px;
  line-height: 1.6;
}
@media (max-width: 767px) {
  .criteria-desc {
    margin-bottom: 30px;
    font-size: 14px;
  }
}

.criteria-accordion {
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (max-width: 767px) {
  .criteria-accordion {
    gap: 15px;
  }
}

.criteria-item {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.16);
  overflow: hidden;
}

.criteria-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 35px 31px;
  position: relative;
  cursor: pointer;
  transition: opacity 0.3s ease;
}
@media (max-width: 767px) {
  .criteria-trigger {
    padding: 20px 37px 20px 20px;
    position: relative;
    gap: 15px;
  }
}
.criteria-trigger:not(.criteria-trigger--static):hover {
  opacity: 0.8;
}
.criteria-item.is-open .criteria-trigger::after {
  content: "";
  position: absolute;
  left: 31px;
  right: 31px;
  bottom: 0;
  height: 1px;
  background: #F72E52;
}
@media (max-width: 767px) {
  .criteria-item.is-open .criteria-trigger::after {
    left: 20px;
    right: 20px;
  }
}

.criteria-item--static .criteria-trigger--static {
  cursor: default;
}

.criteria-trigger__label {
  text-align: left;
  font-weight: bold;
  font-size: 18px;
  line-height: 1.5;
  color: #2F2C2B;
  font-family: "Rubik", "Noto Sans JP", system-ui, -apple-system;
}
@media (max-width: 767px) {
  .criteria-trigger__label {
    font-size: 14px;
  }
}

.criteria-trigger__icon {
  width: 28px;
  height: 28px;
  position: relative;
  flex: 0 0 28px;
  overflow: hidden;
}
@media (max-width: 767px) {
  .criteria-trigger__icon {
    width: 12px;
    height: 12px;
    flex: 0 0 12px;
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
  }
}

.criteria-trigger__icon::before,
.criteria-trigger__icon::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 20px;
  height: 4px;
  background: #F72E52;
  transform: translate(-50%, -50%);
}
@media (max-width: 767px) {
  .criteria-trigger__icon::before,
  .criteria-trigger__icon::after {
    width: 12px;
    height: 3px;
    border-radius: 0;
  }
}

.criteria-trigger__icon::after {
  /* 縦棒（+の縦線） */
  transform: translate(-50%, -50%) rotate(90deg);
  transform-origin: center;
  transition: transform 220ms ease, opacity 220ms ease;
}

/* 開いたら「−」へ（縦棒を回転しながら消す） */
.criteria-item.is-open .criteria-trigger__icon::after {
  transform: translate(-50%, -50%) rotate(0deg);
  opacity: 0;
}

.criteria-panel {
  height: 0;
  overflow: hidden;
  transition: height 260ms ease;
}

.criteria-item.is-open .criteria-panel {
  height: auto; /* JSがheightを上書きしてアニメーション */
}

.criteria-panel__inner {
  padding: 40px 30px 40px;
}
@media (max-width: 767px) {
  .criteria-panel__inner {
    padding: 20px;
  }
}

.criteria-example__head {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 0 0 40px;
}
@media (max-width: 767px) {
  .criteria-example__head {
    margin-bottom: 20px;
  }
}

.criteria-example__line {
  width: 100px;
  height: 1px;
  background: #C4C4C4;
}
@media (max-width: 767px) {
  .criteria-example__line {
    width: 76px;
  }
}

.criteria-example__title {
  font-weight: bold;
}

.criteria-example__grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
}
@media (max-width: 767px) {
  .criteria-example__grid {
    gap: 15px;
    max-width: 100%;
  }
}

.criteria-example__card {
  width: 210px;
  background: #f5f5f5;
  border-radius: 12px;
  padding: 20px 16px 20px;
  text-align: center;
}
@media (max-width: 767px) {
  .criteria-example__card {
    width: calc((100% - 15px) / 2);
    padding: 15px 10px;
  }
}

/* group01（4枚）だけ: 3カラム（上段3つ + 下段に残り） */
.criteria-example--4 > .criteria-example__grid {
  max-width: 670px;
  margin: 0 auto;
  justify-content: flex-start;
}
@media (max-width: 767px) {
  .criteria-example--4 > .criteria-example__grid {
    max-width: 100%;
  }
}

.criteria-example__label {
  margin: 0 0 12px;
  font-size: 14px;
  line-height: 1.5;
  min-height: 3em; /* 2行分(1.5em * 2)の高さを確保 */
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 767px) {
  .criteria-example__label {
    font-size: 12px;
  }
}

.criteria-example__img {
  display: block;
  margin: 0 auto;
  width: auto;
  max-width: 100%;
  height: 130px;
  object-fit: contain;
  object-position: center;
}
@media (max-width: 767px) {
  .criteria-example__img {
    height: 90px;
  }
}

.criteria-example--2 > .criteria-example__grid > .criteria-example__card:nth-child(1) .criteria-example__img {
  width: 69px;
}
.criteria-example--2 > .criteria-example__grid > .criteria-example__card:nth-child(2) .criteria-example__img {
  width: 144px;
}
.criteria-example--2 > .criteria-example__grid > .criteria-example__card:nth-child(3) .criteria-example__img {
  width: 69px;
}
.criteria-example--2 > .criteria-example__grid > .criteria-example__card:nth-child(4) .criteria-example__img {
  width: 116px;
}

.criteria-example--3 > .criteria-example__grid > .criteria-example__card:nth-child(1) .criteria-example__img {
  width: 69px;
}
.criteria-example--3 > .criteria-example__grid > .criteria-example__card:nth-child(2) .criteria-example__img {
  width: 69px;
}

.criteria-example--4 > .criteria-example__grid > .criteria-example__card:nth-child(1) .criteria-example__img {
  width: 69px;
}
.criteria-example--4 > .criteria-example__grid > .criteria-example__card:nth-child(2) .criteria-example__img {
  width: 168px;
}
.criteria-example--4 > .criteria-example__grid > .criteria-example__card:nth-child(3) .criteria-example__img {
  width: 110px;
}
.criteria-example--4 > .criteria-example__grid > .criteria-example__card:nth-child(4) .criteria-example__img {
  width: 69px;
}
.criteria-example--4 > .criteria-example__grid > .criteria-example__card:nth-child(5) .criteria-example__img {
  width: 114px;
}
.criteria-example--4 > .criteria-example__grid > .criteria-example__card:nth-child(6) .criteria-example__img {
  width: 69px;
}
@media (max-width: 767px) {
  .criteria-example--2 > .criteria-example__grid > .criteria-example__card:nth-child(1) .criteria-example__img,
  .criteria-example--2 > .criteria-example__grid > .criteria-example__card:nth-child(3) .criteria-example__img,
  .criteria-example--3 > .criteria-example__grid > .criteria-example__card:nth-child(1) .criteria-example__img,
  .criteria-example--3 > .criteria-example__grid > .criteria-example__card:nth-child(2) .criteria-example__img,
  .criteria-example--4 > .criteria-example__grid > .criteria-example__card:nth-child(1) .criteria-example__img,
  .criteria-example--4 > .criteria-example__grid > .criteria-example__card:nth-child(4) .criteria-example__img,
  .criteria-example--4 > .criteria-example__grid > .criteria-example__card:nth-child(6) .criteria-example__img {
    width: 45px;
  }
  .criteria-example--2 > .criteria-example__grid > .criteria-example__card:nth-child(2) .criteria-example__img {
    width: 94px;
  }
  .criteria-example--2 > .criteria-example__grid > .criteria-example__card:nth-child(4) .criteria-example__img {
    width: 79px;
  }
  .criteria-example--4 > .criteria-example__grid > .criteria-example__card:nth-child(2) .criteria-example__img {
    width: 96px;
  }
  .criteria-example--4 > .criteria-example__grid > .criteria-example__card:nth-child(3) .criteria-example__img {
    width: 72px;
  }
  .criteria-example--4 > .criteria-example__grid > .criteria-example__card:nth-child(5) .criteria-example__img {
    width: 75px;
  }
}

.criteria-example__note {
  margin-top: 28px;
  font-size: 14px;
  line-height: 1.7;
}
@media (max-width: 767px) {
  .criteria-example__note {
    margin-top: 20px;
    font-size: 12px;
  }
}

.criteria-footnote {
  margin: 30px auto 0;
  font-size: 14px;
  line-height: 1.8;
}
@media (max-width: 767px) {
  .criteria-footnote {
    margin-top: 20px;
  }
}

.criteria-footnote__title {
  margin: 0;
  display: grid;
  grid-template-columns: 1.2em 1fr; /* criteria-footnote__list の padding-left(1.2em) と揃える */
  align-items: start;
}
@media (max-width: 767px) {
  .criteria-footnote__title {
    font-size: 12px;
    margin-left: 0;
  }
}

.criteria-footnote__mark {
  line-height: 1.8;
}

.criteria-footnote__text {
  min-width: 0;
}

.criteria-footnote__list {
  margin: 0 0 0 25px;
  padding-left: 1.2em;
  list-style: disc;
  display: flex;
  flex-direction: column;
  gap: 1px;
}
@media (max-width: 767px) {
  .criteria-footnote__list {
    margin-left: 18px;
  }
}

@media (max-width: 767px) {
  .criteria-footnote__list li {
    font-size: 12px;
  }
}

/* ----------------------------------------
  FAQ
---------------------------------------- */
.faq {
  padding: 122px 0 120px;
}
@media (max-width: 767px) {
  .faq {
    padding: 80px 0;
  }
}
.faq .inner {
  width: 1000px;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .faq .inner {
    width: 100%;
    max-width: 100%;
  }
}
.faq-head {
  text-align: center;
}

.faq-eyebrow {
  margin: 0;
  font-weight: bold;
  color: #F72E52;
  font-size: 20px;
}
@media (max-width: 767px) {
  .faq-eyebrow {
    font-size: 14px;
  }
}

.faq-title {
  margin: 18px 0 0;
  font-weight: bold;
  font-size: 32px;
  letter-spacing: 0.01em;
  color: #2F2C2B;
}
@media (max-width: 767px) {
  .faq-title {
    margin-top: 8px;
    font-size: 20px;
  }
}

.faq-line {
  display: block;
  width: 2px;
  height: 60px;
  background: #F72E52;
  margin: 25px auto 0;
}
@media (max-width: 767px) {
  .faq-line {
    height: 50px;
  }
}

.faq-figure {
  margin: 40px auto 0;
  width: 165px;
}
@media (max-width: 767px) {
  .faq-figure {
    margin: 30px auto 0;
    width: 125px;
  }
}

.faq-men {
  width: 100%;
  height: auto;
}

.faq-accordion {
  margin: -4px auto 0;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.faq-item {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.16);
  color: #2F2C2B;
}

.faq-trigger {
  transition: opacity 0.3s ease;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 35px 30px;
  position: relative;
  cursor: pointer;
}
@media (max-width: 767px) {
  .faq-trigger {
    padding: 20px 37px 20px 20px;
    gap: 12px;
  }
}

button.faq-trigger:hover {
  opacity: 0.8;
}

.faq-q {
  flex: 0 0 auto;
  font-weight: bold;
  font-size: 34px;
  color: #F72E52;
  line-height: 1;
  font-family: "Rubik", "Noto Sans JP", system-ui, -apple-system;
}
@media (max-width: 767px) {
  .faq-q {
    font-size: 21px;
  }
}

.faq-trigger__label {
  flex: 1 1 auto;
  text-align: left;
  font-weight: bold;
  font-size: 18px;
  line-height: 1.7;
  color: #2F2C2B;
  font-family: "Rubik", "Noto Sans JP", system-ui, -apple-system;
}
@media (max-width: 767px) {
  .faq-trigger__label {
    font-size: 14px;
    line-height: 1.5;
  }
}

.faq-trigger__icon {
  flex: 0 0 28px;
  width: 28px;
  height: 28px;
  position: relative;
}
@media (max-width: 767px) {
  .faq-trigger__icon {
    width: 12px;
    height: 12px;
    flex: 0 0 12px;
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
  }
}

.faq-trigger__icon::before,
.faq-trigger__icon::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 20px;
  height: 4px;
  background: #F72E52;
  transform: translate(-50%, -50%);
}
@media (max-width: 767px) {
  .faq-trigger__icon::before,
  .faq-trigger__icon::after {
    width: 12px;
    height: 3px;
    border-radius: 0;
  }
}

.faq-trigger__icon::after {
  /* 縦棒（+の縦線） */
  transform: translate(-50%, -50%) rotate(90deg);
  transform-origin: center;
  transition: transform 220ms ease, opacity 220ms ease;
}

/* 開いたら「−」へ（縦棒を回転しながら消す） */
.faq-item.is-open .faq-trigger__icon::after {
  transform: translate(-50%, -50%) rotate(0deg);
  opacity: 0;
}

.faq-item.is-open .faq-trigger::after {
  content: "";
  position: absolute;
  left: 30px;
  right: 30px;
  bottom: 2px;
  height: 1px;
  background: #F72E52;
}
@media (max-width: 767px) {
  .faq-item.is-open .faq-trigger::after {
    left: 18px;
    right: 18px;
  }
}

.faq-panel {
  height: 0;
  overflow: hidden;
  transition: height 260ms ease;
}

.faq-item.is-open .faq-panel {
  height: auto; /* JSがheightを上書きしてアニメーション */
}

.faq-panel__inner {
  display: flex;
  gap: 16px;
  padding: 40px 22px 40px 30px;
}
@media (max-width: 767px) {
  .faq-panel__inner {
    padding: 20px 20px 20px;
    gap: 12px;
  }
}

.faq-a {
  flex: 0 0 auto;
  font-weight: bold;
  font-size: 34px;
  color: #F72E52;
  line-height: 1;
  margin: 0;
  transform: translateY(-5px);
  font-family: "Rubik", "Noto Sans JP", system-ui, -apple-system;
}
@media (max-width: 767px) {
  .faq-a {
    font-size: 21px;
    transform: none;
  }
}

.faq-panel__content {
  flex: 1 1 auto;
  min-width: 0;
}
.faq-panel__content .faq-image {
  display: block;
  margin: 20px auto;
  width: var(--faq-image-width-pc, auto);
  max-width: 100%;
}

.faq-panel__content .faq-image img {
  display: block;
  width: 100%;
  height: auto;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .faq-panel__content .faq-image {
    margin: 10px auto;
    width: var(--faq-image-width-sp, 100%);
  }
}

.faq-panel__text {
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
}
@media (max-width: 767px) {
  .faq-panel__text {
    font-size: 14px;
  }
}

.faq-panel__list {
  margin: 23px 0 0;
  padding-left: 1.2em;
  list-style: disc;
  display: flex;
  flex-direction: column;
  gap: 0;
  font-size: 16px;
  line-height: 1.5;
}
@media (max-width: 767px) {
  .faq-panel__list {
    font-size: 14px;
  }
}

.faq-more {
  margin: 57px 0 0;
  text-align: center;
}
@media (max-width: 767px) {
  .faq-more {
    margin-top: 30px;
  }
}

.faq-more__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 60px;
  width: 320px;
  padding: 0;
  border-radius: 999px;
  border: 1px solid #2F2C2B;
  background: transparent;
  text-decoration: none;
  position: relative;
  font-weight: bold;
  font-size: 16px;
  line-height: 1;
  color: #2F2C2B;
  transition: opacity 0.3s ease;
}
@media (max-width: 767px) {
  .faq-more__link {
    width: 235px;
    height: 45px;
    font-size: 14px;
  }
}

.faq-more__link::after {
  content: "";
  position: absolute;
  right: 20px;
  top: 50%;
  width: 7px;
  height: 16px;
  background: url("/assets/img/common/shared/icon-arrow-black.svg") no-repeat center / contain;
  transform: translate(0, -50%);
}
@media (max-width: 767px) {
  .faq-more__link::after {
    right: 13px;
    top: 48%;
    width: 6px;
    height: 14px;
  }
}

.faq-more__link:hover {
  opacity: 0.8;
}

.faq-more__link:hover::after {
  animation: arrowBump 520ms ease-in-out;
  will-change: transform;
}
@media (prefers-reduced-motion: reduce) {
  .faq-more__link:hover::after {
    animation: none;
  }
}
/* Answer内 */
.faq-panel__content {
  flex: 1 1 auto;
  min-width: 0;

  @media (min-width: 768px) {
    max-width: 850px;
  }
}

.faq-panel__content p {
  font-size: 16px;
  line-height: 24px;
}

.faq-panel__content .faq-text {
  font-size: 16px;
  line-height: 24px;

  @media (max-width: 767px) {
    font-size: 14px;
  }
}

.faq-panel__content sup {
  vertical-align: text-bottom;
  font-size: 12px;
}

.faq-panel__content b {
  font-weight: bold;
}

.faq-panel__content a {
  color: #0B5BCE !important;
  text-decoration: none !important;
  font-weight: 400 !important;
  word-wrap: break-word;
  transition: opacity 0.3s ease;
}

.faq-panel__content a:hover {
  opacity: 0.6;
}

.faq-panel__content h3 + p,
.faq-panel__content h4 + p,
.faq-panel__content h3 + .faq-text,
.faq-panel__content h4 + .faq-text {
  margin-top: 0;
}

.faq-panel__content * + * {
  margin-top: 40px;

  @media (max-width: 767px) {
    margin-top: 20px;
  }
}

.faq-panel__content ul {
  padding-left: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
  font-size: 16px;
  line-height: 1.5;
}

.faq-panel__content .faq-note {
  font-size: 14px;
  margin-top: 10px;
}

.faq-panel__content li {
  display: block;
  position: relative;
  padding-left: 25px;
}

.faq-panel__content li > .faq-list-marker,
.faq-panel__content li > .faq-note-marker {
  position: absolute;
  left: 0;
  top: 0;
  width: 20px;
  text-align: left;
  line-height: 1.5;
  font-variant-numeric: tabular-nums;
  font-feature-settings: 'tnum' 1;
}

.faq-panel__content li > ul {
  margin-top: 8px;
}

.faq-panel__content li + li {
  margin-top: 10px;
}

.faq-panel__content h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.5;

  @media (max-width: 767px) {
    font-size: 16px;
  }
}

.faq-panel__content h4 {
  font-size: 16px;
  font-weight: 700;
  line-height: 30px;
  margin-bottom: 20px;

  @media (max-width: 767px) {
    font-size: 14px;
  }
}

@media (max-width: 767px) {
  .faq-a {
    font-size: 21px;
    transform: none;
  }

  .faq-panel__content p,
  .faq-panel__content ul {
    font-size: 14px;
  }

  .faq-panel__content img {
    width: 100%;
    height: auto;
  }
}

.faq-link-with-icon::after {
  content: '';
  display: inline-block;
  width: 1em;
  height: 1em;
  margin-left: 0.35em;
  vertical-align: -0.12em;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.faq-panel__content .faq-link-icon-blank::after {
  background-image: url('/assets/img/faq/shared/icon-blank.svg');
}

.faq-panel__content .faq-link-icon-pdf::after {
  background-image: url('/assets/img/faq/shared/icon-pdf.svg');
}

/* ----------------------------------------
  FAQ panel sub-accordion
  ベース: assets/css/other/style.css の .other-template-accordion*
  （site-policy 参照、クラス名のみ .faq-sub-accordion* に変更）
---------------------------------------- */

.faq-sub-accordion {
  border-top: 2px solid #E0E0E0;
}
@media (max-width: 767px) {
  .faq-sub-accordion {
    margin-top: 30px;
  }
}
.faq-sub-accordion__item {
  border-bottom: 2px solid #E0E0E0;
}

/* アコーディオン連続時は .faq-panel__content * + * の margin-top と
   自身の border-top を打ち消す（前要素の border-bottom と二重線にならないようにする） */
.faq-panel__content .faq-sub-accordion + .faq-sub-accordion {
  margin-top: 0;
  border-top: 0;
}

/* アコーディオンの構造要素（icon / panel）は trigger 内・直後の隣接兄弟になるため
   .faq-panel__content * + * の margin-top: 40px が当たってしまう。これを打ち消す。
   （panel-inner 配下のコンテンツ間の余白は元のルールで維持される） */
.faq-panel__content .faq-sub-accordion__icon,
.faq-panel__content .faq-sub-accordion__panel {
  margin-top: 0;
}

.faq-sub-accordion__trigger {
  width: 100%;
  padding: 40px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: transparent;
  border: 0;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  transition: opacity 0.3s ease;
}
@media (max-width: 767px) {
  .faq-sub-accordion__trigger {
    padding: 25px 15px;
  }
}

.faq-sub-accordion__trigger:hover {
  opacity: 0.8;
}

.faq-sub-accordion__label {
  font-size: 18px;
  font-weight: bold;
  line-height: 1.5;
  color: #2F2C2B;
}
@media (max-width: 767px) {
  .faq-sub-accordion__label {
    font-size: 14px;
  }
}

.faq-sub-accordion__icon {
  width: 20px;
  height: 20px;
  position: relative;
  flex: 0 0 20px;
}
@media (max-width: 767px) {
  .faq-sub-accordion__icon {
    width: 12px;
    height: 12px;
    flex: 0 0 12px;
  }
}

.faq-sub-accordion__icon::before,
.faq-sub-accordion__icon::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 20px;
  height: 4px;
  border-radius: 0;
  background: #F72E52;
  transform: translate(-50%, -50%);
}
@media (max-width: 767px) {
  .faq-sub-accordion__icon::before,
  .faq-sub-accordion__icon::after {
    width: 12px;
    height: 3px;
  }
}

.faq-sub-accordion__icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
  transform-origin: center;
  transition: transform 220ms ease, opacity 220ms ease;
}

.faq-sub-accordion__item.is-open .faq-sub-accordion__icon::after {
  transform: translate(-50%, -50%) rotate(0deg);
  opacity: 0;
}

.faq-sub-accordion__panel {
  height: 0px;
  overflow: hidden;
  transition: height 260ms ease;
}

/* 閉じ状態でインライン height:auto が残っても、アイコン(is-open)と表示を一致させる
   （実機リロード後にラベルは＋・パネルだけ開く不整合の防止）
   is-closing 中は閉じアニメのため !important を外す */
[data-accordion-item]:not(.is-open):not(.is-closing) > [data-accordion-panel] {
  height: 0 !important;
  overflow: hidden !important;
  visibility: hidden;
}

[data-accordion-item].is-open > [data-accordion-panel],
[data-accordion-item].is-closing > [data-accordion-panel] {
  visibility: visible;
}

.faq-sub-accordion__item.is-open > .faq-sub-accordion__panel {
  /* 親FAQと同様、open時のフォールバック（実測高さはJSが上書き） */
  height: auto;
}

.faq-sub-accordion__panel-inner {
  padding: 0 60px 40px 30px;
}
@media (max-width: 767px) {
  .faq-sub-accordion__panel-inner {
    padding: 0 37px 25px 15px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .faq-sub-accordion__panel {
    transition: none;
  }
  .faq-sub-accordion__icon::after {
    transition: none;
  }
}


/* ----------------------------------------
  Apply
---------------------------------------- */
.apply {
  padding: 0 0 110px;
}
@media (max-width: 767px) {
  .apply {
    padding: 0;
  }
}
.apply .bg {
  width: 100%;
  padding: 122px 0;
  background: #F7F7F7;
  border-radius: 80px;
}
@media (max-width: 767px) {
  .apply .bg {
    padding: 80px 0;
    border-radius: 40px;
  }
}

@media (max-width: 767px) {
  .apply .inner {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
  }
}

.apply-head {
  text-align: center;
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .apply-head {
    margin-bottom: 30px;
  }
}

.apply-eyebrow {
  margin: 0;
  font-weight: bold;
  color: #F72E52;
  font-size: 20px;
}
@media (max-width: 767px) {
  .apply-eyebrow {
    font-size: 14px;
  }
}

.apply-title {
  margin: 18px 0 0;
  font-weight: bold;
  font-size: 32px;
  letter-spacing: 0.01em;
  color: #2F2C2B;
}
@media (max-width: 767px) {
  .apply-title {
    margin-top: 8px;
    font-size: 20px;
  }
}

.apply-line {
  display: block;
  width: 2px;
  height: 60px;
  background: #F72E52;
  margin: 25px auto 0;
}
@media (max-width: 767px) {
  .apply-line {
    height: 50px;
  }
}

.apply-lead {
  text-align: center;
  margin: 0 0 140px;
  font-size: 16px;
  line-height: 1.5;
  color: #2F2C2B;
}
@media (max-width: 767px) {
  .apply-lead {
    margin-bottom: 100px;
    font-size: 14px;
  }
}

.apply-lead__strong {
  color: #F72E52;
  font-weight: bold;
  font-size: 20px;
}
@media (max-width: 767px) {
  .apply-lead__strong {
    font-size: 18px;
  }
}

.apply-app-wrap {
  position: relative;
  width: 960px;
  margin: 0 auto 40px;
}
@media (max-width: 767px) {
  .apply-app-wrap {
    width: 100%;
    margin: 0 auto 30px;
    margin-bottom: 30px;
  }
}

.apply-app {
  position: relative;
  width: 100%;
  background: linear-gradient(180deg, #105AC2 0%, #1474FA 100%);
  border-radius: 18px;
  padding: 31px 60px 30px;
  color: #fff;
  z-index: 1;
  box-shadow: 0 10px 10px -10px rgba(0, 0, 0, 0.16);
}
@media (max-width: 767px) {
  .apply-app {
    padding: 25px 20px 30px;
  }
}

/* 半円 */
.apply-app-wrap::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -63px;
  transform: translateX(-50%);
  width: 600px;
  height: 300px;
  background: #105AC2;
  border-radius: 300px 300px 0 0;
  z-index: 0;
}
@media (max-width: 767px) {
  .apply-app-wrap::before {
    top: -35px;
    width: 150px;
    height: 75px;
    border-radius: 75px 75px 0 0;
  }
}
/* 線 */
.apply-app-wrap::after {
  width: 100%;
  height: 1px;
  background: #fff;
  opacity: 0.2;
  position: absolute;
  left: 0;
  top: 78px;
  z-index: 1;
  content: "";
}
@media (max-width: 767px) {
  .apply-app-wrap::after {
    top: 65px;
  }
}

.apply-app__cap {
  position: absolute;
  left: 50%;
  top: -97px;
  transform: translateX(-50%);
}
@media (max-width: 767px) {
  .apply-app__cap {
    top: -65px;
  }
}

.apply-app__cap-img {
  width: 58px;
  height: auto;
}
@media (max-width: 767px) {
  .apply-app__cap-img {
    width: 43px;
  }
}

.apply-app__title {
  margin: 0 auto 60px;
  text-align: center;
  font-weight: bold;
  font-size: 24px;
  letter-spacing: 0.01em;
}
@media (max-width: 767px) {
  .apply-app__title {
    margin-bottom: 45px;
    font-size: 18px;
  }
}

.apply-app__sub {
  margin: 0 0 33px;
  text-align: center;
  font-size: 16px;
}
@media (max-width: 767px) {
  .apply-app__sub {
    margin-bottom: 20px;
    font-size: 14px;
    line-height: 1.5;
  }
}

.apply-store {
  margin-bottom: 35px;
  display: flex;
  gap: 40px;
  justify-content: center;
}
@media (max-width: 767px) {
  .apply-store {
    margin-bottom: 25px;
    gap: 20px;
    flex-direction: column;
  }
}

.apply-store__card {
  flex: 1 1 0;
  width: 400px;
  background: #fff;
  color: #2F2C2B;
  border-radius: 20px;
  padding: 21px 34px 28px 36px;
  position: relative;
}
@media (max-width: 767px) {
  .apply-store__card {
    width: 100%;
    padding: 10px 20px 20px;
    border-radius: 10px;
    max-width: 100%;
    margin: 0 auto;
  }
}
.apply-store__card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 65px;
  width: 100%;
  height: 1px;
  background: #E5E5E6;
}
@media (max-width: 767px) {
  .apply-store__card::before {
    top: 41px;
  }
}

.apply-store__name {
  margin: 0 0 50px;
  text-align: center;
  font-weight: bold;
  font-size: 18px;
  line-height: 1.5;
  color: #2F2C2B;
}
@media (max-width: 767px) {
  .apply-store__name {
    margin: 0 0 31px;
    font-size: 14px;
  }
}

.apply-store__row {
  display: flex;
  align-items: center;
  gap: 30px;
}
@media (max-width: 767px) {
  .apply-store__row {
    justify-content: center;
    gap: 20px;
  }
}

.apply-store__badge {
  width: 180px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s ease;
}
@media (max-width: 767px) {
  .apply-store__badge {
    width: 145px;
    max-width: 61.7%;
  }
}
.apply-store__badge:hover {
  opacity: 0.8;
}

.apply-store__badge img {
  max-width: 100%;
  height: auto;
}

.apply-store__qr {
  width: 120px;
  height: auto;
}
@media (max-width: 767px) {
  .apply-store__qr {
    width: 90px;
    max-width: 38.3%;
  }
}

.apply-store__qr img {
  max-width: 100%;
  height: auto;
}

.apply-app__more {
  text-align: center;
}
@media (max-width: 767px) {
  .apply-app__more {
    font-size: 14px;
  }
}

.apply-app__link {
  display: inline-flex;
  align-items: center;
  position: relative;
  padding-right: 12px; /* 矢印分の余白 */
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  letter-spacing: 0.02em;
  transition: opacity 0.3s ease;
}

.apply-app__link::after {
  content: "";
  position: absolute;
  right: 0;
  top: 48%;
  width: 7px;
  height: 16px;
  background: url("/assets/img/common/shared/icon-arrow-white.svg") no-repeat center / contain;
  transform: translate(0, -50%);
}
@media (max-width: 767px) {
  .apply-app__link::after {
    right: 0;
    top: 44%;
    width: 6px;
    height: 14px;
  }
}

.apply-app__link:hover {
  opacity: 0.8;
}

.apply-app__link:hover::after {
  animation: arrowBump 520ms ease-in-out;
  will-change: transform;
}
@media (prefers-reduced-motion: reduce) {
  .apply-app__link:hover::after {
    animation: none;
  }
}

.apply-web {
  width: 960px;
  margin: 0 auto;
  background: #fff;
  border-radius: 20px;
  border: 4px solid #E5F1FB;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.16);
}
@media (max-width: 767px) {
  .apply-web {
    width: 100%;
  }
}

.apply-web__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 42px 55px 30px;
}
@media (max-width: 767px) {
  .apply-web__inner {
    padding: 26px 30px 30px;
    gap: 20px;
    flex-direction: column;
    align-items: stretch;
  }
}

@media (max-width: 767px) {
  .apply-web__text {
    text-align: center;
  }
}

.apply-web__title {
  margin: 0 auto 13px;
  font-weight: bold;
  font-size: 20px;
}
@media (max-width: 767px) {
  .apply-web__title {
    margin-bottom: 6px;
    font-size: 16px;
    line-height: 1.5;
  }
}

.apply-web__desc {
  font-size: 14px;
  line-height: 1.5;
}

.apply-web__action {
  width: 320px;
  margin: 0;
  flex: 0 0 auto;
  transform: translateY(-5px);
}
@media (max-width: 767px) {
  .apply-web__action {
    width: 235px;
    max-width: 100%;
    margin: 0 auto;
    transform: none;
  }
}

.apply-web__button {
  width: 100%;
  height: 60px;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border-radius: 999px;
  border: 1px solid #0B5BCE;
  color: #0B5BCE;
  text-decoration: none;
  font-weight: bold;
  background: #fff;
  transition: opacity 0.3s ease;
}
@media (max-width: 767px) {
  .apply-web__button {
    height: 45px;
    font-size: 14px;
    width: 100%;
    min-width: 0;
  }
}

.apply-web__button::after {
  content: "";
  position: absolute;
  right: 19px;
  top: 50%;
  width: 7px;
  height: 16px;
  background: url("/assets/img/common/shared/icon-arrow-blue.svg") no-repeat center / contain;
  transform: translate(0, -50%);
}
@media (max-width: 767px) {
  .apply-web__button::after {
    right: 17px;
    top: 47%;
    width: 6px;
    height: 14px;
  }
}

.apply-web__button:hover {
  opacity: 0.8;
}

/* hover時に矢印を右へ移動→元へ戻す */
.apply-web__button:hover::after {
  animation: arrowBump 520ms ease-in-out;
  will-change: transform;
}

@media (prefers-reduced-motion: reduce) {
  .apply-web__button:hover::after {
    animation: none;
  }
}

/* ----------------------------------------
  News
---------------------------------------- */
.news {
  padding: 8px 0 80px;
}
@media (max-width: 767px) {
  .news {
    padding: 80px 0 60px;
  }
}
.news .inner {
  width: 1000px;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .news .inner {
    width: 100%;
  }
}
.news-card {
  margin: 0 auto;
  padding-bottom: 20px;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.16);
}
@media (max-width: 767px) {
  .news-card {
    padding-bottom: 10px;
  }
}

.news-title {
  margin: 0;
  padding: 30px 18px 24px;
  text-align: center;
  font-weight: bold;
  font-size: 26px;
  background: #F7F7F7;
}
@media (max-width: 767px) {
  .news-title {
    padding: 15px 0;
    font-size: 18px;
  }
}

.news-list {
  width: 840px;
  margin: 0 auto;
  padding-top: 10px;
}
@media (max-width: 767px) {
  .news-list {
    width: 100%;
    padding: 0 20px;
  }
}

.news-item {
  padding: 20px 0 15px;
}
@media (max-width: 767px) {
  .news-item {
    padding: 20px 0;
  }
}

.news-item + .news-item {
  border-top: 2px dotted #BDBDBD;
}
@media (max-width: 767px) {
  .news-item + .news-item {
    border-top: 1px dotted #BDBDBD;
  }
}

.news-date {
  margin: 0 0 10px;
  font-size: 14px;
  letter-spacing: 0.02em;
  color: #767676;
}
@media (max-width: 767px) {
  .news-date {
    margin: 0 0 5px;
    font-size: 12px;
  }
}

.news-text {
  margin: 0;
  font-size: 16px;
  line-height: 1.9;
}
.news-text a{
  color: #0B5BCE;
  text-decoration: none;
  transition: opacity 0.3s ease;
}
.news-text a:hover {
  opacity: 0.8;
}

@media (max-width: 767px) {
  .news-text {
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
  }
}
/* ----------------------------------------
  Attention
---------------------------------------- */
.attention {
  padding: 0 0 80px;
}
@media (max-width: 767px) {
  .attention {
    padding: 0 0 60px;
  }
}
.attention .inner {
  width: 1000px;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .attention .inner {
    width: 100%;
  }
}
.attention-title {
  margin: 0 0 40px;
  text-align: center;
  font-weight: bold;
  font-size: 32px;
  letter-spacing: 0.02em;
  color: #2F2C2B;
}
@media (max-width: 767px) {
  .attention-title {
    margin-bottom: 30px;
    font-size: 20px;
  }
}
.attention-title::after {
  content: "";
  width: 48px;
  height: 12px;
  display: block;
  margin: 24px auto 0;
  background: url("/assets/img/common/shared/icon-title-dots.svg") no-repeat center / contain;
}
@media (max-width: 767px) {
  .attention-title::after {
    width: 32px;
    height: 8px;
    margin-top: 15px;
  }
}

.attention-sub-title {
  margin: 0 0 30px;
  font-weight: bold;
  font-size: 28px;
  letter-spacing: 0.02em;
  color: #2F2C2B;
  line-height: 1.5;
}
@media (max-width: 767px) {
  .attention-sub-title {
    margin-bottom: 20px;
    font-size: 18px;
  }
}

.attention-list + .attention-sub-title {
  margin-top: 40px;
}
@media (max-width: 767px) {
  .attention-list + .attention-sub-title {
    margin-top: 40px;
  }
}

.attention-list {
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
@media (max-width: 767px) {
  .attention-list {
    gap: 10px;
  }
}

.attention-list li {
  position: relative;
  padding-left: 1.4em;
  font-size: 16px;
  line-height: 1.5;
}
@media (max-width: 767px) {
  .attention-list li {
    font-size: 14px;
  }
}

.attention-list li a {
  color: #0B5BCE;
  text-decoration: none;
  transition: opacity 0.3s ease;
}
.attention-list li a:hover {
  opacity: 0.8;
}
@media (prefers-reduced-motion: reduce) {
  .attention-list li a:hover {
    animation: none;
  }
}

.attention-list li::before {
  content: "・";
  position: absolute;
  left: 0;
  top: 0;
}

/* ----------------------------------------
  Modal
---------------------------------------- */
body.is-modal-open {
  overflow: hidden;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 3000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 240ms ease;
}

.modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
}

.modal__content {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 108px 20px;
  overflow: scroll;
}
@media (max-width: 767px) {
  .modal__content {
    padding: 60px 20px;
    display: block;
  }
}

.modal__inner {
  width: 960px;
  text-align: center;
}
@media (max-width: 767px) {
  .modal__inner {
    width: 100%;
  }
}

.modal__lead {
  margin: 0 0 140px;
  color: #fff;
  font-size: 16px;
  line-height: 1.5;
}
@media (max-width: 767px) {
  .modal__lead {
    margin: 0 0 90px;
    font-size: 16px;
  }
}
.modal__lead__strong {
  font-size: 20px;
  font-weight: bold;
}
@media (max-width: 767px) {
  .modal__lead__strong {
    font-size: 18px;
  }
}

.modal__close {
  position: absolute;
  top: 40px;
  right: 40px;
  width: 34px;
  height: 34px;
  cursor: pointer;
  transition: opacity 0.3s ease;
}
@media (max-width: 767px) {
  .modal__close {
    top: 16px;
    right: 15px;
    width: 30px;
    height: 30px;
  }
}
.modal__close:hover {
  opacity: 0.8;
}

.modal__close > span {
  position: relative;
  width: 34px;
  height: 34px;
  display: block;
}
@media (max-width: 767px) {
  .modal__close > span {
    width: 30px;
    height: 30px;
  }
}

.modal__close > span::before,
.modal__close > span::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 40px;
  height: 6px;
  background: #fff;
  transform-origin: center;
}
@media (max-width: 767px) {
  .modal__close > span::before,
  .modal__close > span::after {
    width: 25px;
    height: 4px;
  }
}

.modal__close > span::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.modal__close > span::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

@media (max-width: 767px) {
  .modal .apply-app-wrap {
    margin-bottom: 0;
  }
}

