@charset "UTF-8";
html{-webkit-box-sizing:border-box;box-sizing:border-box}body,html{margin:0;padding:0}*,::after,::before{box-sizing:inherit}a,abbr,address,article,aside,audio,blockquote,canvas,caption,cite,code,dd,del,details,dfn,div,dl,dt,em,fieldset,figcaption,figure,footer,form,h1,h2,h3,h4,h5,h6,header,hgroup,iframe,img,ins,label,legend,li,main,mark,nav,ol,p,pre,q,section,small,span,strike,strong,sub,summary,sup,table,tbody,td,tfoot,th,thead,time,tr,ul,video{border:0;margin:0;padding:0}h1,h2,h3,h4,h5,h6{font-size:inherit;font-weight:inherit;line-height:inherit}article,aside,figcaption,figure,footer,header,main,nav,section{display:block}ol,ul{list-style:none}code,kbd,pre,samp{font-family:monospace,sans-serif;font-size:inherit}blockquote,q{quotes:none}blockquote::after,blockquote::before,q::after,q::before{content:"";content:none}address{font-style:normal}

/* 受付時間外：modal 内の電話番号を非表示 */
.is-phone-closed .p-cta-section__buttons .c-button-sp-phone,
.is-phone-closed .c-phone-modal__tel,
.is-phone-closed .p-global-cta__button--phone,
.is-phone-closed .c-button-cta-phone { display: none; }

/* （任意）番号の代わりに「受付時間外」を表示したい場合 */
.c-phone-modal__closed { display: none; }
.is-phone-closed .c-phone-modal__closed { display: block; }


.c-phone-modal{
  --c-blue:#0a66ad; --c-blue-dark:#084e85; --c-blue-tint:#eef5fb;
  --c-green:#1f8a5b; --c-green-dark:#166843; --c-green-tint:#edf6f1;
  --c-ink:#1f2937;  --c-sub:#5b6675;  --c-line:#e3e8ef;

  position:fixed; inset:0; z-index:9999;
  display:flex; align-items:center; justify-content:center;
  padding:20px;
  background:rgba(15,23,42,.55);
  opacity:0; visibility:hidden;
  transition:opacity .2s ease, visibility .2s ease;
}
.c-phone-modal.is-open{ opacity:1; visibility:visible; }

.c-phone-modal__panel{
  position:relative;
  width:100%; max-width:720px;
  background:#fff; border-radius:16px;
  box-shadow:0 24px 60px rgba(15,23,42,.30);
  overflow:hidden;
  transform:translateY(10px); transition:transform .2s ease;
  max-height:90vh; overflow-y:auto;
}
.c-phone-modal.is-open .c-phone-modal__panel{ transform:none; }

.c-phone-modal__header{
  padding:18px 24px;
  background:var(--c-ink); color:#fff;
  text-align:center;
}
.c-phone-modal__title{ margin:0; font-size:17px; font-weight:700; letter-spacing:.02em; }

.c-phone-modal__close{
  position:absolute; top:12px; right:12px;
  width:36px; height:36px; border:none; border-radius:50%;
  background:rgba(255,255,255,.18); color:#fff;
  font-size:22px; line-height:1; cursor:pointer;
  display:flex; align-items:center; justify-content:center;
  transition:background .15s ease;
}
.c-phone-modal__close:hover{ background:rgba(255,255,255,.34); }

.c-phone-modal__cols{
  display:grid; grid-template-columns:1fr 1fr;
  gap:0;
}
.c-phone-modal__col{
  padding:28px 24px 30px;
  text-align:center;
  display:flex; flex-direction:column;
}
.c-phone-modal__col--new{     background:var(--c-blue-tint);  border-top:4px solid var(--c-blue); }
.c-phone-modal__col--current{ background:var(--c-green-tint); border-top:4px solid var(--c-green); }

.c-phone-modal__col-label{
  margin:0 0 16px; min-height:3em;
  font-size:14px; font-weight:700; line-height:1.5;
  display:flex; align-items:center; justify-content:center;
}
.c-phone-modal__col-label_title {
    display: contents;
    font-size: 2em;
}
.c-phone-modal__col--new    .c-phone-modal__col-label{ color:var(--c-blue-dark); }
.c-phone-modal__col--current .c-phone-modal__col-label{ color:var(--c-green-dark); }

.c-phone-modal__tel{
  display:flex; align-items:center; justify-content:center; gap:10px;
  margin-top:auto;
  padding:14px 16px; border-radius:12px;
  text-decoration:none; color:#fff;
  font-size:clamp(22px, 4.4vw, 28px); font-weight:800;
  font-variant-numeric:tabular-nums; letter-spacing:.01em;
  transition:transform .15s ease, filter .15s ease;
}
.c-phone-modal__tel:hover{ transform:translateY(-2px); filter:brightness(1.05); }
.c-phone-modal__col--new     .c-phone-modal__tel{ background:var(--c-blue);  box-shadow:0 6px 16px rgba(10,102,173,.30); }
.c-phone-modal__col--current .c-phone-modal__tel{ background:var(--c-green); box-shadow:0 6px 16px rgba(31,138,91,.28); }
.c-phone-modal__tel-icon{ width:26px; height:26px; flex:none; }

.c-phone-modal__hours{ margin:12px 0 0; font-size:12px; color:var(--c-sub); }

.is-phone-closed .c-phone-modal__tel{ display:none; }
.c-phone-modal__closed{
  display:none; margin-top:auto;
  padding:16px; border-radius:12px;
  background:#f1f3f6; color:var(--c-sub);
  font-size:14px; font-weight:700; line-height:1.6;
}
.is-phone-closed .c-phone-modal__closed{ display:block; }
.is-phone-closed .p-global-cta-phone__number,
.is-phone-closed .p-global-cta__button--phone,
.is-phone-closed .p-global-cta-phone{ display:none; }

@media (max-width:600px){
  .c-phone-modal__cols{ grid-template-columns:1fr; }
  .c-phone-modal__col{ padding:24px 20px; }
  .c-phone-modal__col--current{ border-top:1px solid var(--c-line); border-top-color:var(--c-green); }
  .c-phone-modal__col-label{ min-height:0; }
}

@media (prefers-reduced-motion:reduce){
  .c-phone-modal, .c-phone-modal__panel, .c-phone-modal__tel, .c-button-cta-phone{ transition:none; }
}
.c-phone-modal__tel:focus-visible,
.c-phone-modal__close:focus-visible,
.c-button-cta-phone:focus-visible{ outline:3px solid #ffb020; outline-offset:2px; }


/**カラー*********/
:root {
  --header-height: 0px;
}

html {
  font-size: 16px;
}
@media (max-width: 430px) {
  html {
    font-size: 3.7209302326vw;
  }
}
@media screen and (min-width: 430px) and (max-width: 767px) {
  html {
    font-size: 3.7209302326vw;
  }
}
@media screen and (min-width: 768px) {
  html {
    font-size: 1.3333333333vw;
  }
}
@media screen and (min-width: 1200px) {
  html {
    font-size: 16px;
  }
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  color: #1a3347;
  line-height: 1.6;
  font-size: 1rem;
  letter-spacing: 0.02em;
  margin: 0;
  padding: 0;
  overflow-x: clip;
}
@media screen and (max-width: 430px) {
  body {
    font-size: 0.875rem;
  }
}

a {
  text-decoration: none;
  color: #000000;
  display: inline-block;
  transition: 0.4s;
}

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

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

html.has-fixed-header {
  scroll-padding-top: var(--header-height);
}

html.has-fixed-header [id] {
  scroll-margin-top: var(--header-height);
}

@media (min-width: 768px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}
.l-container {
  box-sizing: initial;
  padding-inline: 1.5625rem;
  max-inline-size: 1200px;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .l-container {
    padding-inline: 2.1875rem;
  }
  .p-global-cta-bar__container.l-container {
    padding-inline: 10px;
  }
}

.l-container .l-container--narrow {
  max-inline-size: 1100px;
}

.c-section__ttl {
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
  color: #000000;
}
@media screen and (max-width: 767px) {
  .c-section__ttl {
    font-size: 1.75rem;
  }
}
@media screen and (max-width: 430px) {
  .c-section__ttl {
    font-size: 1.5rem;
  }
}

.c-button {
  display: inline-grid;
  grid-template-columns: 1fr auto 1fr;
  column-gap: 0.625rem;
  align-items: center;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  width: min(25rem, 100%);
  color: #024f90;
  padding: 0.875rem 1.25rem;
  border-radius: 3.75rem;
  border: 0.125rem solid #024f90;
  background-color: #ffffff;
  text-decoration: none;
  cursor: pointer;
  transition: opacity 0.3s, background-color 0.3s, color 0.3s, border-color 0.3s;
}
@media screen and (max-width: 767px) {
  .c-button {
    font-size: 0.875rem;
    width: min(18.75rem, 100%);
    padding: 0.6875rem 1rem;
  }
}

.c-button::before {
  content: "";
}

.c-button::after {
  content: "";
  justify-self: end;
  width: 1.25rem;
  aspect-ratio: 1;
  background-color: #024f90;
  mask-image: url("../img/common/icon-circle-arrow-right.svg");
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
  transition: background-color 0.3s;
}
@media screen and (max-width: 767px) {
  .c-button::after {
    width: 1rem;
  }
}

@media (any-hover: hover) {
  .c-button:not([class*=c-button--]):hover {
    background-color: rgba(255, 255, 255, 0.8);
  }
  .c-button--nav:hover {
    background-color: #0177d9;
  }
  .c-button--orange:hover {
    background-color: #ffb900;
    transform: translateY(0.125rem);
    box-shadow: 0 0.125rem 0 0 #d09806;
  }
  .c-button--logo:hover {
    background-color: #008cff;
    transform: translateY(0.125rem);
    box-shadow: 0 0.125rem 0 0 #056abc;
  }
  .c-button--pink:hover {
    background-color: #ff588f;
    transform: translateY(0.125rem);
    box-shadow: 0 0.125rem 0 0 #e2326c;
  }
}
.c-button--orange {
  color: #ffffff;
  border-color: transparent;
  background-color: #ffb900;
  box-shadow: 0 0.25rem 0 0 #d09806;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}

.c-button--orange::after {
  background-color: #ffffff;
}

.c-button--logo {
  color: #ffffff;
  border-color: transparent;
  background-color: #008cff;
  box-shadow: 0 0.25rem 0 0 #056abc;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}

.c-button--logo::after {
  background-color: #ffffff;
}

.c-button--nav {
  color: #ffffff;
  border-color: transparent;
  background-color: #0177d9;
}

.c-button--nav::after {
  background-color: #ffffff;
}

.c-button--pink {
  color: #ffffff;
  border-color: transparent;
  background-color: #ff588f;
  box-shadow: 0 0.25rem 0 0 #e2326c;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}

.c-button--pink::after {
  background-color: #ffffff;
}

.c-button.c-button--no-shadow {
  box-shadow: none;
  transition: background-color 0.3s ease;
  padding: 0.75rem 1rem;
}

@media (any-hover: hover) {
  .c-button.c-button--no-shadow:hover {
    transform: none;
    box-shadow: none;
    background-color: rgba(255, 255, 255, 0.8);
  }
  .c-button--orange.c-button--no-shadow:hover {
    background-color: rgba(255, 185, 0, 0.8);
  }
  .c-button--logo.c-button--no-shadow:hover {
    background-color: rgba(0, 140, 255, 0.8);
  }
  .c-button--nav.c-button--no-shadow:hover {
    background-color: rgba(1, 119, 217, 0.8);
  }
  .c-button--pink.c-button--no-shadow:hover {
    background-color: rgba(255, 88, 143, 0.8);
  }
}
.c-button-cta-phone {
  display: inline-grid;
  grid-template-columns: 4.5rem 1fr;
  grid-template-rows: auto auto auto;
  align-items: center;
  column-gap: 0.5rem;
  row-gap: 0.1875rem;
  font-family: "Noto Sans JP", sans-serif;
  text-decoration: none;
  cursor: pointer;
  transition: opacity 0.3s;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .c-button-cta-phone {
    grid-template-columns: 3.75rem 1fr;
    column-gap: 0.3125rem;
  }
}

.c-button-cta-phone--with-company {
  grid-template-rows: auto auto auto auto;
}

@media (any-hover: hover) {
  .c-button-cta-phone:hover {
    opacity: 0.8;
  }
}
.c-button-cta-phone__icon {
  align-self: center;
  grid-column: 1;
  grid-row: 1/4;
  width: 4.5rem;
  aspect-ratio: 1;
}
@media screen and (max-width: 767px) {
  .c-button-cta-phone__icon {
    width: 3.75rem;
  }
}

.c-button-cta-phone--with-company .c-button-cta-phone__icon {
  grid-row: 1/5;
}

.c-button-cta-phone__label {
  grid-column: 2;
  grid-row: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  font-weight: 700;
  color: #008cff;
  line-height: 1;
  letter-spacing: 0;
}
@media screen and (max-width: 767px) {
  .c-button-cta-phone__label {
    letter-spacing: -0.08em;
  }
}

.c-button-cta-phone__label::before,
.c-button-cta-phone__label::after {
  content: "";
  height: 0.125rem;
  width: 1.875rem;
  flex-grow: 1;
  background-color: #008cff;
  border-radius: 0.3125rem;
  margin-inline: 0.25rem;
}
@media screen and (max-width: 767px) {
  .c-button-cta-phone__label::before,
  .c-button-cta-phone__label::after {
    height: 0.0625rem;
    width: 0.9375rem;
  }
}

.c-button-cta-phone__label::before {
  margin-right: 0.25rem;
}

.c-button-cta-phone__label::after {
  margin-left: 0.25rem;
}

.c-button-cta-phone__number {
  grid-column: 2;
  grid-row: 2;
  font-family: "Roboto Condensed", "Noto Sans JP", sans-serif;
  font-size: 3.125rem;
  font-weight: 700;
  color: #008cff;
  line-height: 1;
  letter-spacing: 0;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .c-button-cta-phone__number {
    font-size: 2.6875rem;
  }
}

.c-button-cta-phone__hours {
  grid-column: 2/3;
  grid-row: 3;
  font-size: 0.875rem;
  font-weight: 500;
  color: #1a3347;
  justify-self: center;
  line-height: 1;
  letter-spacing: 0;
}

.c-button-cta-phone__company {
  grid-column: 2/3;
  grid-row: 3;
  font-size: 0.875rem;
  font-weight: 500;
  color: #1a3347;
  justify-self: center;
  line-height: 1;
  letter-spacing: 0;
}

.c-button-cta-phone--with-company .c-button-cta-phone__hours {
  grid-row: 4;
}

.c-button-cta-web {
  position: relative;
  display: inline-grid;
  grid-template-columns: auto 1fr auto;
  column-gap: 0.75rem;
  align-items: center;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  width: min(18.75rem, 100%);
  color: #ffffff;
  padding-block: 0.9375rem;
  padding-inline: 2.8125rem 1.25rem;
  border-radius: 3.125rem;
  background-color: #ff9d00;
  box-shadow: 0 0.25rem 0 0 #d09806;
  text-decoration: none;
  cursor: pointer;
  text-shadow: 0 0 0.125rem rgba(0, 0, 0, 0.25);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .c-button-cta-web {
    padding-block: 0.8125rem;
    padding-inline: 3.25rem 1.25rem;
  }
}

.c-button-cta-web::before {
  content: "";
  width: 2.8125rem;
  aspect-ratio: 35/38;
  background-image: url("../img/common/icon-web-apply-shadow.webp");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
@media screen and (max-width: 767px) {
  .c-button-cta-web::before {
    width: 2.625rem;
  }
}

.c-button-cta-web::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 1.5rem;
  transform: translateY(-50%);
  justify-self: center;
  width: 0.9375rem;
  aspect-ratio: 7/14;
  background-color: #ffffff;
  mask-image: url("../img/common/icon-arrow-right-shadow.webp");
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
}

@media (any-hover: hover) {
  .c-button-cta-web:hover {
    transform: translateY(0.125rem);
    box-shadow: 0 0.125rem 0 0 #d09806;
  }
}
.c-heading-dotted {
  display: block;
  text-align: center;
}

.c-heading-dotted__container {
  position: relative;
  display: inline-block;
  font-size: 1.75rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  color: #024f90;
  text-align: center;
  line-height: 1;
  padding-bottom: 0.625rem;
  letter-spacing: 0;
}
@media screen and (max-width: 767px) {
  .c-heading-dotted__container {
    padding-bottom: 0.75rem;
    font-size: 1rem;
  }
}
.c-heading-dotted__container::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 11.5625rem;
  height: 0.3125rem;
  background-image: url("../img/common/icon-section-border.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
@media screen and (max-width: 767px) {
  .c-heading-dotted__container::after {
    width: 1.375rem;
    height: 0.3125rem;
    background-image: url("../img/common/icon-section-border-sp.svg");
  }
}

.c-heading-dotted__text--number {
  font-family: "Roboto Condensed", sans-serif;
  font-size: 3.125rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .c-heading-dotted__text--number {
    font-size: 1.375rem;
  }
}

.c-heading-dotted__text--unit {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.875rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .c-heading-dotted__text--unit {
    font-size: 1.0625rem;
  }
}

.c-heading-dotted__text {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.8125rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .c-heading-dotted__text {
    font-size: 1rem;
  }
}

.c-page-title {
  padding-block: 3.75rem;
  margin-inline: auto;
  border-image: linear-gradient(color-mix(in srgb, #008cff 10%, transparent) 0 0) fill 0//0 100lvi;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .c-page-title {
    padding-block: 1.875rem;
  }
}

.c-page-title__text {
  display: inline-grid;
  grid-template-columns: auto 1fr auto;
  gap: 0.9375rem;
  place-items: center;
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-size: 2.875rem;
  font-weight: 700;
  color: #024f90;
  line-height: 1.4782608696;
}
@media screen and (max-width: 767px) {
  .c-page-title__text {
    gap: 0.625rem;
    font-size: 1.375rem;
    line-height: 1.5;
  }
}

.c-title-small {
  font-size: 0.75rem;
}
@media screen and (max-width: 767px) {
  .c-title-small {
    font-size: 0.625rem;
  }
}

.c-page-title__text::before,
.c-page-title__text::after {
  content: "";
  display: block;
  width: 0.75rem;
  aspect-ratio: 1;
  background-color: #ffb900;
  transform: rotate(45deg);
}
@media screen and (max-width: 767px) {
  .c-page-title__text::before,
  .c-page-title__text::after {
    width: 0.625rem;
  }
}

.c-price-card {
  background-color: #ffffff;
  border: 0.1875rem solid #008cff;
  border-radius: 1.25rem;
  padding-block: 1.875rem 1.25rem;
  padding-inline: 2.5rem 3.125rem;
  display: grid;
  grid-template-areas: "header" "price";
  grid-template-rows: auto 1fr;
  gap: 0;
  box-shadow: 0 0.375rem 0 0 #008cff;
}
@media screen and (max-width: 767px) {
  .c-price-card {
    border: 0.125rem solid #008cff;
    box-shadow: none;
    border-radius: 0.625rem;
    padding-block: 0.9375rem 0.3125rem;
    padding-inline: 0.625rem;
  }
}

.c-price-card__header {
  grid-area: header;
  display: grid;
  grid-template-areas: "icon type" "icon plan";
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  place-items: center;
  gap: 0 0.9375rem;
}
@media screen and (max-width: 767px) {
  .c-price-card__header {
    grid-template-areas: "plan" "type" "icon";
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
  }
}

.c-price-card__icon {
  grid-area: icon;
  width: min(6.875rem, 100%);
}
@media screen and (max-width: 767px) {
  .c-price-card__icon {
    margin-top: 0.5rem;
    width: min(2.625rem, 100%);
  }
}

.c-price-card__type {
  grid-area: type;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.375rem;
  font-weight: 700;
  color: #024f90;
  line-height: 1.2;
}
@media screen and (max-width: 767px) {
  .c-price-card__type {
    margin-top: 0.3125rem;
    font-size: 0.875rem;
  }
}

.c-price-card__plan {
  grid-area: plan;
  display: inline-grid;
  place-items: center;
  padding: 0.25rem 0.75rem;
  background-color: #008cff;
  color: #ffffff;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  border-radius: calc(infinity * 1px);
  width: min(9.8125rem, 100%);
  line-height: 1.2;
}
@media screen and (max-width: 767px) {
  .c-price-card__plan {
    width: min(8.4375rem, 100%);
    padding: 0;
    line-height: 1.4;
  }
}

.c-price-card__price {
  grid-area: price;
  display: grid;
  place-items: center;
  grid-template-areas: "label number tax" "label number unit";
  grid-template-columns: auto min(9.25rem, 100%) auto;
  grid-template-columns: auto fit-content auto;
  grid-template-rows: auto;
  gap: 0 0.3125rem;
}
@media screen and (max-width: 767px) {
  .c-price-card__price {
    gap: 0 0.1875rem;
    grid-template-columns: auto 5.75rem auto;
  }
}

.c-price-card__label {
  grid-area: label;
  place-self: center end;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.375rem;
  font-weight: 700;
  color: #1a3347;
  line-height: 1.2;
  writing-mode: vertical-rl;
}
@media screen and (max-width: 767px) {
  .c-price-card__label {
    font-size: 0.875rem;
    letter-spacing: 0.3em;
  }
}

.c-price-card__number {
  grid-area: number;
  font-family: "Staatliches", sans-serif;
  font-size: 4.875rem;
  font-weight: 400;
  color: #ff588f;
  letter-spacing: -0.015em;
  line-height: 1.25;
}
@media screen and (max-width: 767px) {
  .c-price-card__number {
    font-size: 3rem;
  }
}

.c-price-card__unit {
  grid-area: unit;
  place-self: start start;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.625rem;
  font-weight: 700;
  color: #1a3347;
  padding-left: 0.625rem;
}
@media screen and (max-width: 767px) {
  .c-price-card__unit {
    font-size: 1rem;
    padding-left: 0;
  }
}

.c-price-card__tax {
  grid-area: tax;
  place-self: end start;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  color: #1a3347;
  margin-left: 0.625rem;
}
@media screen and (max-width: 767px) {
  .c-price-card__tax {
    margin-left: 0;
    font-size: 0.75rem;
  }
}

.c-price-card.c-price-card--blue {
  border: 0.1875rem solid #0277d9;
  box-shadow: 0 0.375rem 0 0 #0277d9;
}
@media screen and (max-width: 767px) {
  .c-price-card.c-price-card--blue {
    box-shadow: none;
    border: 0.125rem solid #0277d9;
  }
}

.c-price-card.c-price-card--blue .c-price-card__plan {
  background-color: #0277d9;
}

.c-badge {
  width: 7.3125rem;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  background-image: url("../img/top/icon-badge-recommended.webp");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.25;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .c-badge {
    width: 5.5rem;
    font-size: 0.875rem;
  }
}

.c-badge--popular {
  width: 6.75rem;
  font-size: 1.1875rem;
  line-height: 1.3;
  padding-top: 0.375rem;
}
@media screen and (max-width: 767px) {
  .c-badge--popular {
    line-height: 1.3;
    width: 5.5rem;
    font-size: 0.875rem;
  }
}

.c-badge--cashback {
  width: 7.5rem;
  font-size: 1rem;
}
@media screen and (max-width: 767px) {
  .c-badge--cashback {
    width: 6.5625rem;
    font-size: 0.875rem;
  }
}

.c-breadcrumb {
  background-color: #ffffff;
  padding: 0.625rem 1.25rem;
}

.c-breadcrumb__inner {
  display: flex;
  gap: 0.9375rem;
  align-items: center;
}

.c-breadcrumb__item {
  display: flex;
  gap: 0.9375rem;
  align-items: center;
}

.c-breadcrumb__link {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  color: #0177d9;
  text-decoration: none;
  line-height: 1;
  transition: opacity 0.3s;
}

@media (any-hover: hover) {
  .c-breadcrumb__link:hover {
    opacity: 0.7;
  }
}
.c-breadcrumb__current {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  color: #1a3347;
  line-height: 1;
}

.c-breadcrumb__separator {
  width: 0.25rem;
  height: 0.5rem;
}

.c-breadcrumb__separator::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: #1a3347;
  mask-image: url("../img/common/icon-arrow-right.svg");
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
}

/* ====================================
  c-button-sp-phone
==================================== */
@media screen and (max-width: 767px) {
  .c-button-sp-phone {
    display: block;
    width: min(18.75rem, 100%);
  }
}

.c-button-sp-phone__inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 0.25rem;
  padding-bottom: 0.6875rem;
  background: #ffffff;
  border: 0.125rem solid #008cff;
  border-radius: 100vh;
  box-shadow: 0 0.125rem 0 0 #008cff;
  transition: 0.3s;
}

@media (any-hover: hover) {
  .c-button-sp-phone:hover .c-button-sp-phone__inner {
    transform: translateY(0.125rem);
    box-shadow: none;
  }
}
.c-button-sp-phone__content {
  text-align: center;
}

.c-button-sp-phone__label {
  color: #008cff;
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.01em;
}

.c-button-sp-phone__number {
  color: #008cff;
  font-family: "Roboto Condensed", "Noto Sans JP", sans-serif;
  font-size: 1.8125rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.01em;
}

.c-button-sp-phone_call {
  max-width: 1.75rem;
  aspect-ratio: 28/20;
  object-fit: contain;
}

.c-button-sp-phone__hours {
  display: block;
  margin-top: 0.125rem;
  color: #008cff;
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.01em;
}

.c-button-sp-phone__company {
  display: block;
  color: #008cff;
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.01em;
}

.c-button-sp-phone_icon {
  width: 3.5625rem;
  aspect-ratio: 1;
  object-fit: contain;
}

.c-button-sp-phone_call {
  max-width: 1.75rem;
  aspect-ratio: 28/20;
  object-fit: contain;
}

.c-button-sp-phone--contact .c-button-sp-phone__label {
  padding-left: 0.5625rem;
}

.c-button-sp-phone--contact .c-button-sp-phone__number {
  padding-left: 0.5625rem;
}

.c-button-sp-phone--contact .c-button-sp-phone__hours {
  padding-left: 0.5rem;
}

.c-button-sp-phone--contact .c-button-sp-phone__company {
  padding-left: 0.5rem;
}

.c-button-sp-phone--application .c-button-sp-phone__inner {
  justify-content: flex-start;
}

.c-button-sp-phone--application .c-button-sp-phone_icon {
  position: absolute;
  top: 0.9375rem;
  right: 1.125rem;
  max-width: 3.125rem;
  max-height: 3.125rem;
}

.c-button-sp-phone--application .c-button-sp-phone__number {
  padding-left: 0.0625rem;
}

.c-button-sp-phone--application .c-button-sp-phone__label {
  padding-left: 1.125rem;
}

.c-button-sp-phone--application .c-button-sp-phone__number-wrapper {
  padding-left: 1.1875rem;
}

.c-button-sp-phone--application .c-button-sp-phone__hours {
  padding-left: 1.6875rem;
}

.c-button-sp-phone--application .c-button-sp-phone__company {
  padding-left: 2.125rem;
}

.p-top-10gb {
  position: relative;
  background-image: url("../img/top/img-10gb-background.webp");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  padding-block: 5.125rem 1.875rem;
}
@media screen and (max-width: 767px) {
  .p-top-10gb {
    background-image: url("../img/top/img-10gb-background-sp.webp");
    padding-block: 5.625rem 1.875rem;
  }
}

.p-top-10gb__container {
  max-inline-size: 934px;
}

.p-top-10gb__background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.p-top-10gb__content {
  position: relative;
  display: grid;
  place-items: center;
}

.p-top-10gb__badge {
  position: absolute;
  top: -2.8125rem;
  left: 0.625rem;
  width: 8.1805625rem;
}
@media screen and (max-width: 767px) {
  .p-top-10gb__badge {
    top: -4.0625rem;
    left: 0.125rem;
    width: 3.75rem;
  }
}

.p-top-10gb__badge-image {
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
}

.p-top-10gb__main-copy {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: flex-end;
  padding-left: 3.75rem;
}
@media screen and (max-width: 767px) {
  .p-top-10gb__main-copy {
    max-width: 19.25rem;
    justify-content: center;
    margin-top: 0;
    padding-left: 0;
  }
}

.p-top-10gb__button {
  margin-top: 2.1875rem;
}
@media screen and (max-width: 767px) {
  .p-top-10gb__button {
    margin-top: 1.25rem;
  }
}

.p-top-10gb__icon-ultra-speed {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
}

.p-top-10gb__text {
  position: relative;
  display: grid;
  grid-template-areas: "text text-10 text-gbps" "text text-10 text-plan";
  grid-template-columns: auto min-content auto;
  grid-template-rows: auto auto;
  place-items: end center;
}

.p-top-10gb__icon-game {
  position: absolute;
  top: -5rem;
  left: 7.8125rem;
  width: 7.9375rem;
  aspect-ratio: 1;
}
@media screen and (max-width: 767px) {
  .p-top-10gb__icon-game {
    top: -5.625rem;
    left: 4.0625rem;
    width: 4.5rem;
  }
}

.p-top-10gb__icon-video {
  position: absolute;
  top: -5.3125rem;
  left: 17.8125rem;
  width: 9.0625rem;
  aspect-ratio: 1;
}
@media screen and (max-width: 767px) {
  .p-top-10gb__icon-video {
    top: -5.625rem;
    left: 10.75rem;
    width: 4.6875rem;
  }
}

.p-top-10gb__catchphrase {
  position: absolute;
  top: 1.25rem;
  left: 7.375rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 1.875rem;
  line-height: 1.2;
  color: #ffffff;
  text-shadow: 0 0 0.3125rem rgba(0, 0, 0, 0.35);
  display: flex;
  align-items: center;
  gap: 0.625rem;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .p-top-10gb__catchphrase {
    top: -2.1875rem;
    left: 50%;
    translate: -50% 0;
    font-size: 1.125rem;
    gap: 0.125rem;
  }
}

.p-top-10gb__catchphrase::before,
.p-top-10gb__catchphrase::after {
  content: "";
  display: block;
  width: 1.875rem;
  aspect-ratio: 1;
  background-image: url("../img/common/icon-double-quotation.webp");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  flex-shrink: 0;
}

.p-top-10gb__catchphrase::after {
  transform: scaleX(-1);
}

.p-top-10gb__text-ultra-speed-char {
  display: inline-block;
  background: linear-gradient(90deg, #fff782 5.21%, #f1c218 99.45%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.p-top-10gb__text-group {
  position: absolute;
  top: 2.5rem;
  left: 28.25rem;
  display: flex;
  align-items: flex-start;
  gap: 0.125rem;
}

.p-top-10gb__text-10 {
  grid-area: text-10;
  place-self: end center;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 900;
  font-style: italic;
  font-size: 9.375rem;
  line-height: 1;
  white-space: nowrap;
}

.p-top-10gb__text-10-char {
  display: inline-block;
  background: linear-gradient(90deg, #fff782 5.21%, #f1c218 99.45%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0.1875rem 0.1875rem 0.3125rem rgba(0, 0, 0, 0.25));
}

.p-top-10gb__text-sub {
  display: flex;
  flex-direction: column;
  padding-top: 1.5rem;
  gap: 0.625rem;
}

.p-top-10gb__text-gbps {
  grid-area: text-gbps;
  place-self: end start;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 900;
  font-style: italic;
  font-size: 3.75rem;
  line-height: 1;
  white-space: nowrap;
}

.p-top-10gb__text-gbps-char {
  display: inline-block;
  background: linear-gradient(90deg, #fff782 5.21%, #f1c218 99.45%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0.1875rem 0.1875rem 0.3125rem rgba(0, 0, 0, 0.25));
}

.p-top-10gb__text-plan {
  grid-area: text-plan;
  place-self: end start;
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-weight: 700;
  font-size: 2.875rem;
  line-height: 1;
  white-space: nowrap;
}

.p-top-10gb__text-plan-char {
  display: inline-block;
  background: linear-gradient(90deg, #fff782 5.21%, #f1c218 99.45%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0.1875rem 0.1875rem 0.3125rem rgba(0, 0, 0, 0.25));
}

.p-top-10gb__button {
  margin-top: 1.625rem;
}
@media screen and (max-width: 767px) {
  .p-top-10gb__button {
    margin-top: 1.875rem;
  }
}

.p-top-10gb__button-text {
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-weight: 700;
  font-size: 1.125rem;
  line-height: 1;
  color: #024f90;
  text-align: center;
  white-space: nowrap;
  transition: color 0.3s;
}

.p-top-campaign {
  position: relative;
  width: 100%;
  background-image: url("../img/top/img-campaign-background.webp");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  padding-block: 5rem 6.25rem;
}
@media screen and (max-width: 767px) {
  .p-top-campaign {
    padding-block: 2.5rem;
    background-image: url("../img/top/img-campaign-background-sp.webp");
  }
}

.p-top-campaign__container {
  max-inline-size: 1140px;
  margin-inline: auto;
}

.p-top-campaign__decoration-left {
  position: absolute;
  left: -0.875rem;
  top: 0;
  width: 35.125rem;
  height: 53.5rem;
  z-index: 0;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .p-top-campaign__decoration-left {
    display: none;
  }
}

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

.p-top-campaign__decoration-right {
  position: absolute;
  right: -0.875rem;
  top: 0;
  width: 35.875rem;
  height: 53.8125rem;
  z-index: 0;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .p-top-campaign__decoration-right {
    display: none;
  }
}

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

.p-top-campaign__character {
  position: absolute;
  top: 5.25rem;
  left: 50%;
  transform: translateX(-50%);
  width: 10rem;
  height: 10rem;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .p-top-campaign__character {
    width: 5rem;
    height: 5rem;
    top: 1.875rem;
  }
}

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

.p-top-campaign__confetti {
  position: absolute;
  top: 5.25rem;
  width: 8.125rem;
  height: 7.375rem;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .p-top-campaign__confetti {
    display: none;
  }
}

.p-top-campaign__confetti-left {
  left: 42.625rem;
  transform: rotate(50deg);
}

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

.p-top-campaign__items {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
  justify-content: center;
  margin-top: 4.375rem;
}
@media screen and (max-width: 767px) {
  .p-top-campaign__items {
    grid-template-columns: 1fr;
    gap: 3.75rem;
    margin-top: 3.75rem;
  }
}

.p-top-campaign__item {
  position: relative;
  display: grid;
  grid-template-rows: 1fr;
  place-items: center;
  background-color: #ffffff;
  border-radius: 1.25rem;
  box-shadow: 0 0 0.5rem rgba(0, 0, 0, 0.3);
  padding: 3.125rem 1.875rem 2.3125rem;
}
@media screen and (max-width: 767px) {
  .p-top-campaign__item {
    padding: 3.3125rem 0.3125rem 2.1875rem;
    border-radius: 0.625rem;
  }
}

.p-top-campaign__item-decoration {
  position: absolute;
  top: -3.1875rem;
  left: 50%;
  transform: translateX(-50%);
  width: 33.125rem;
  height: 9.25rem;
  z-index: 1;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .p-top-campaign__item-decoration {
    width: 18.75rem;
    height: auto;
    top: -1.875rem;
  }
}

.p-top-campaign__item-decoration-img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}

.p-top-campaign__item-images-left {
  position: absolute;
  left: 2.125rem;
  top: 4.6875rem;
  width: 6.25rem;
  height: 9.375rem;
}
@media screen and (max-width: 767px) {
  .p-top-campaign__item-images-left {
    left: 0.5rem;
    top: 3.5625rem;
    width: 2.375rem;
    height: 4.3125rem;
  }
}

.p-top-campaign__item-images-right {
  position: absolute;
  right: 2.125rem;
  top: 4.6875rem;
  width: 6.25rem;
  height: 9.375rem;
}
@media screen and (max-width: 767px) {
  .p-top-campaign__item-images-right {
    right: 0.5rem;
    top: 3.3125rem;
    width: 2.3125rem;
    height: 4.1875rem;
  }
}

.p-top-campaign__item-title {
  position: absolute;
  top: -3.625rem;
  z-index: 2;
  width: min(33.125rem, 100%);
}
@media screen and (max-width: 767px) {
  .p-top-campaign__item-title {
    top: -2.5rem;
    width: 22.5rem;
  }
}

.p-top-campaign__item-title-img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}

.p-top-campaign__item-main-price {
  position: relative;
  display: flex;
  gap: 0.625rem;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .p-top-campaign__item-main-price {
    gap: 0.3125rem;
  }
}

.p-top-campaign__item-main-price::before,
.p-top-campaign__item-main-price::after {
  content: "";
  display: block;
  width: 2.5625rem;
  height: 4.6875rem;
  background-image: url("../img/top/icon-campaign-price-decoration.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .p-top-campaign__item-main-price::before,
  .p-top-campaign__item-main-price::after {
    width: 2.375rem;
    height: 4.375rem;
  }
}

.p-top-campaign__item-main-price::after {
  transform: scaleX(-1);
}

.p-top-campaign__item-badge {
  display: grid;
  place-items: center;
  width: 3.75rem;
  aspect-ratio: 1;
  border: 0.125rem solid #024f90;
  border-radius: 0.3125rem;
  background-color: #ffffff;
  flex-shrink: 0;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #024f90;
  line-height: 1.2;
  text-align: center;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .p-top-campaign__item-badge {
    width: 3.125rem;
    font-size: 1rem;
    letter-spacing: 0.1em;
  }
}

.p-top-campaign__item-amount {
  position: relative;
  display: flex;
  align-items: baseline;
  justify-content: center;
}

.p-top-campaign__item-amount-digit {
  position: relative;
  display: inline-block;
  font-family: "Staatliches", sans-serif;
  font-size: 6.875rem;
  font-style: normal;
  font-weight: 400;
  line-height: 0.9;
  text-align: center;
  color: #ff588f;
  filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.25));
  will-change: filter;
}
@media screen and (max-width: 767px) {
  .p-top-campaign__item-amount-digit {
    font-size: 5rem;
    filter: drop-shadow(0 2px 3px rgba(0, 0, 0, 0.25));
  }
}

.p-top-campaign__item-amount-digit::before {
  content: attr(data-text);
  position: absolute;
  inset: 0;
  color: transparent;
  -webkit-text-stroke-width: 0.75rem;
  -webkit-text-stroke-color: #ffffff;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .p-top-campaign__item-amount-digit::before {
    font-size: 5rem;
    -webkit-text-stroke-width: 0.5rem;
  }
}

.p-top-campaign__item-amount-comma {
  position: relative;
  display: inline-block;
  font-family: "Staatliches", sans-serif;
  font-weight: 400;
  font-size: 5.625rem;
  line-height: 0.9;
  color: #ff588f;
  filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.25));
  will-change: filter;
}
@media screen and (max-width: 767px) {
  .p-top-campaign__item-amount-comma {
    font-size: 3.5rem;
    filter: drop-shadow(0 0.125rem 0.1875rem rgba(0, 0, 0, 0.25));
  }
}

.p-top-campaign__item-amount-comma::before {
  content: attr(data-text);
  position: absolute;
  inset: 0;
  color: transparent;
  -webkit-text-stroke-width: 0.75rem;
  -webkit-text-stroke-color: #ffffff;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .p-top-campaign__item-amount-comma::before {
    font-size: 3.5rem;
    -webkit-text-stroke-width: 0.5rem;
  }
}

.p-top-campaign__item-unit {
  position: relative;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 900;
  color: #ff588f;
  line-height: 1;
  font-size: 2.25rem;
  filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.25));
  will-change: filter;
  margin-left: 0.625rem;
}
@media screen and (max-width: 767px) {
  .p-top-campaign__item-unit {
    font-size: 1.75rem;
    filter: drop-shadow(0 2px 3px rgba(0, 0, 0, 0.25));
    margin-left: 0.3125rem;
  }
}

.p-top-campaign__item-unit::before {
  content: attr(data-text);
  position: absolute;
  inset: 0;
  color: transparent;
  -webkit-text-stroke-width: 0.5rem;
  -webkit-text-stroke-color: #ffffff;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .p-top-campaign__item-unit::before {
    -webkit-text-stroke-width: 0.5rem;
  }
}

.p-top-campaign__item-cashback {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
}
@media screen and (max-width: 767px) {
  .p-top-campaign__item-cashback {
    gap: 0rem;
  }
}

.p-top-campaign__item-cashback-text {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 1.625rem;
  color: #024f90;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-top-campaign__item-cashback-text {
    font-size: 1.375rem;
  }
}

.p-top-campaign__item-coin {
  position: relative;
  width: 4.375rem;
  height: 3.9375rem;
  flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .p-top-campaign__item-coin {
    width: 3rem;
    height: 2.6875rem;
  }
}

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

.p-top-campaign__item-bank {
  position: relative;
  width: 4.625rem;
  height: 3.9375rem;
  flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .p-top-campaign__item-bank {
    width: 3rem;
    height: 2.625rem;
  }
}

.p-top-campaign__item-sub-price-caption {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 1.125rem;
}
@media screen and (max-width: 767px) {
  .p-top-campaign__item-sub-price-caption {
    gap: 0.9375rem;
    margin-top: 0.5rem;
  }
}

.p-top-campaign__item-sub-note-underline {
  position: relative;
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #024f90;
  line-height: 1.5;
  display: inline-block;
  border-bottom: 0.09375rem solid #024f90;
}
@media screen and (max-width: 767px) {
  .p-top-campaign__item-sub-note-underline {
    font-size: 1.0625rem;
  }
}

.p-top-campaign__item-sub-note-underline::before {
  content: "";
  position: absolute;
  bottom: -0.75rem;
  left: 50%;
  border-style: solid;
  border-width: 0.75rem 0.9375rem 0 0;
  border-color: #024f90 transparent transparent;
  translate: -50% 0;
  transform: skew(-30deg);
  transform-origin: top;
}
@media screen and (max-width: 767px) {
  .p-top-campaign__item-sub-note-underline::before {
    bottom: -0.625rem;
    border-width: 0.625rem 0.75rem 0 0;
    transform: skew(-20deg);
  }
}

.p-top-campaign__item-sub-note-underline::after {
  content: "";
  position: absolute;
  bottom: -0.625rem;
  left: 50%;
  border-style: solid;
  border-width: 0.6875rem 0.75rem 0 0;
  border-color: #ffffff transparent transparent;
  translate: -50% 0;
  transform: skew(-30deg);
  transform-origin: top;
}
@media screen and (max-width: 767px) {
  .p-top-campaign__item-sub-note-underline::after {
    bottom: -0.4375rem;
    border-width: 0.5625rem 0.5625rem 0 0;
    transform: skew(-20deg);
  }
}

.p-top-campaign__item-construction-text {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 2.5rem;
  margin-top: 0.9375rem;
  color: #024f90;
  line-height: 1.3;
}
@media screen and (max-width: 767px) {
  .p-top-campaign__item-construction-text {
    font-size: 2rem;
    margin-top: 0.625rem;
  }
}

.p-top-campaign__item-construction-text--small {
  font-size: 1.875rem;
  margin: 0 0.1875rem;
}
@media screen and (max-width: 767px) {
  .p-top-campaign__item-construction-text--small {
    font-size: 1.375rem;
  }
}

.p-top-campaign__item-construction-text--emphasis span {
  position: relative;
  display: inline-block;
}
.p-top-campaign__item-construction-text--emphasis span::before {
  content: "";
  position: absolute;
  top: -0.125rem;
  left: 50%;
  transform: translateX(-50%);
  width: 0.375rem;
  height: 0.375rem;
  background-color: #ffb900;
  border-radius: 50%;
}
@media screen and (max-width: 767px) {
  .p-top-campaign__item-construction-text--emphasis span::before {
    width: 0.25rem;
    height: 0.25rem;
    top: 0rem;
  }
}

.p-top-campaign__item-button {
  margin-top: 0.9375rem;
}
@media screen and (max-width: 767px) {
  .p-top-campaign__item-button {
    margin-top: 1.25rem;
  }
}

.p-top-feature {
  position: relative;
  width: 100%;
  background-color: #e4f5ff;
  background-image: url("../img/top/img-feature-background.svg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  padding-top: 5rem;
  padding-bottom: 6.25rem;
}
@media screen and (max-width: 767px) {
  .p-top-feature {
    background-image: url("../img/top/img-feature-background-sp.svg");
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }
}

.p-top-feature__container {
  max-inline-size: 1200px;
}

.p-top-feature__items {
  display: grid;
  gap: 0;
}
@media screen and (max-width: 767px) {
  .p-top-feature__items {
    gap: 1.25rem;
    margin-top: 0.9375rem;
  }
}

.p-top-feature__item {
  display: flex;
  align-items: center;
  height: 25rem;
}
@media screen and (max-width: 767px) {
  .p-top-feature__item {
    flex-direction: column;
    height: auto;
  }
}

.p-top-feature__item:nth-of-type(2) {
  margin-top: 8.125rem;
}
@media screen and (max-width: 767px) {
  .p-top-feature__item:nth-of-type(2) {
    margin-top: 0;
  }
}

.p-top-feature__item--reverse {
  flex-direction: row-reverse;
}
@media screen and (max-width: 767px) {
  .p-top-feature__item--reverse {
    flex-direction: column;
  }
}

.p-top-feature__item-content {
  position: relative;
  padding-left: 5rem;
}
@media screen and (max-width: 767px) {
  .p-top-feature__item-content {
    padding-left: 2.5625rem;
  }
}

.p-top-feature__item-number {
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 700;
  font-size: 12.5rem;
  color: #ffffff;
  line-height: 1;
  margin-left: -5rem;
  margin-bottom: -7.1875rem;
}
@media screen and (max-width: 767px) {
  .p-top-feature__item-number {
    font-size: 6.25rem;
    margin-left: -2.5625rem;
    margin-bottom: -3.75rem;
  }
}

.p-top-feature__item-text-area {
  display: grid;
  gap: 1.5625rem;
  position: relative;
  padding-right: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-top-feature__item-text-area {
    gap: 0.5rem;
    padding-right: 0;
  }
}

.p-top-feature__item-title {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 2.5rem;
  color: #008cff;
}
@media screen and (max-width: 767px) {
  .p-top-feature__item-title {
    font-size: 1.25rem;
  }
}

.p-top-feature__item-subtitle {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 1.375rem;
  color: #024f90;
  line-height: 1.4;
  letter-spacing: 0;
}
@media screen and (max-width: 767px) {
  .p-top-feature__item-subtitle {
    font-size: 1rem;
    line-height: 1.7;
  }
}
.p-top-feature__item-subtitle small {
  font-size: 0.75rem;
}
@media screen and (max-width: 767px) {
  .p-top-feature__item-subtitle small {
    font-size: 0.625rem;
  }
}

.p-top-feature__item-description {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 1.125rem;
  color: #024f90;
  line-height: 1.6;
  letter-spacing: 0;
}
@media screen and (max-width: 767px) {
  .p-top-feature__item-description {
    font-size: 0.875rem;
    line-height: 1.8;
  }
}

.p-top-feature__item-image {
  width: min(37.5rem, 100%);
  aspect-ratio: 6/4;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  margin-top: 0.9375rem;
}

.p-top-feature__item-image-img {
  max-width: 100%;
  height: auto;
}

.p-top-feature__item:nth-child(1) .p-top-feature__item-image-img {
  width: 28.4375rem;
}
@media screen and (max-width: 767px) {
  .p-top-feature__item:nth-child(1) .p-top-feature__item-image-img {
    width: 20.8125rem;
  }
}

.p-top-feature__item:nth-child(2) .p-top-feature__item-image-img {
  width: 22.9375rem;
}
@media screen and (max-width: 767px) {
  .p-top-feature__item:nth-child(2) .p-top-feature__item-image-img {
    width: 15.5rem;
  }
}

.p-top-feature__item:nth-child(3) .p-top-feature__item-image-img {
  width: 30.5rem;
}
@media screen and (max-width: 767px) {
  .p-top-feature__item:nth-child(3) .p-top-feature__item-image-img {
    width: 20.5625rem;
  }
}

.p-top-feature__item:nth-child(4) .p-top-feature__item-image-img {
  width: 25.125rem;
}
@media screen and (max-width: 767px) {
  .p-top-feature__item:nth-child(4) .p-top-feature__item-image-img {
    width: 18.4375rem;
  }
}

.p-top-floating-cta {
  display: none;
}
@media screen and (max-width: 767px) {
  .p-top-floating-cta {
    position: fixed;
    top: 100dvh;
    translate: 0 -100%;
    left: 0;
    right: 0;
    z-index: 1000;
    display: block;
    background-color: #ffffff;
    text-align: center;
    padding-block: 0 0.625rem;
  }
}

@media screen and (max-width: 767px) {
  .p-top-floating-cta__title {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 0.75rem;
    font-weight: bold;
    color: #024f90;
    text-align: center;
    line-height: 1.4;
    letter-spacing: 0;
  }
}

@media screen and (max-width: 767px) {
  .p-top-floating-cta__title::before,
  .p-top-floating-cta__title::after {
    content: "";
    width: 0.9375rem;
    height: 0.0625rem;
    background-color: currentColor;
    border-radius: calc(infinity * 1px);
  }
}

@media screen and (max-width: 767px) {
  .p-top-floating-cta__title::before {
    transform: rotate(70deg);
  }
}

@media screen and (max-width: 767px) {
  .p-top-floating-cta__title::after {
    transform: rotate(-70deg);
  }
}

@media screen and (max-width: 767px) {
  .p-top-floating-cta__buttons {
    display: flex;
    gap: 0.625rem;
    justify-content: center;
    margin-top: 0.3125rem;
  }
}

@media screen and (max-width: 767px) {
  .p-top-floating-cta .l-container {
    padding-inline: 1.25rem;
  }
}

@media screen and (max-width: 767px) {
  .p-top-floating-cta__btn {
    position: relative;
    display: grid;
    place-items: center;
    border-radius: 0.3125rem;
    text-decoration: none;
    transition: background-color 0.3s ease;
    padding-block: 0.125rem;
    padding-inline: 1rem;
  }
}

@media screen and (max-width: 767px) {
  .p-top-floating-cta__btn--faq {
    background-color: #0177d9;
  }
}

@media screen and (max-width: 767px) {
  .p-top-floating-cta__btn--faq::before {
    content: "";
    width: 1.5rem;
    aspect-ratio: 1;
    background-color: #ffffff;
    mask-image: url("../img/common/icon-circle-question.svg");
    mask-repeat: no-repeat;
    mask-position: center;
    mask-size: contain;
  }
}

@media screen and (max-width: 767px) {
  .p-top-floating-cta__btn-icon {
    flex-shrink: 0;
  }
}

@media screen and (max-width: 767px) {
  .p-top-floating-cta__btn-text {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 0.875rem;
    font-weight: bold;
    color: #ffffff;
    line-height: 1.4;
    text-align: center;
  }
}

@media screen and (max-width: 767px) {
  .p-top-floating-cta__btn--faq .p-top-floating-cta__btn-text {
    font-size: 0.875rem;
  }
}

@media (any-hover: hover) {
  .p-top-floating-cta__btn.p-top-floating-cta__btn--faq:hover {
    background-color: rgba(1, 119, 217, 0.8);
  }
}
.p-top-flow {
  background-color: #e4f5ff;
  padding-top: 5rem;
  padding-bottom: 8.125rem;
}
@media screen and (max-width: 767px) {
  .p-top-flow {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }
}

.p-top-flow__container {
  max-inline-size: 1000px;
}
@media screen and (max-width: 767px) {
  .p-top-flow__container {
    gap: 1.875rem;
  }
}

.p-top-flow__tabs {
  display: flex;
  gap: 0.625rem;
  justify-content: center;
  position: sticky;
  top: 175px;
  z-index: 10;
}
.admin-bar .p-top-flow__tabs {
  top: 207px;
}

@media screen and (max-width: 767px) {
  .p-top-flow__tabs {
    gap: 0.9375rem;
    top: 90px;
    z-index: 10;
  }
  .admin-bar .p-top-flow__tabs {
    top: 122px;
  }
}

.p-top-flow__tab {
  display: grid;
  place-items: center;
  border-radius: 3.125rem;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.375rem;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.3s, color 0.3s;
  position: relative;
  width: min(15.625rem, 100%);
  padding-block: 0.625rem;
  background-color: #ffffff;
  border: 0.125rem solid #008cff;
  color: #008cff;
}
@media screen and (max-width: 767px) {
  .p-top-flow__tab {
    width: 100%;
    padding-block: 0.375rem;
    font-size: 0.875rem;
    line-height: 1.4;
    border-radius: 0.3125rem;
  }
}

.p-top-flow__tab--active {
  background-color: #008cff;
  color: #ffffff;
}

.p-top-flow__tab--active::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) scaleY(-1);
  width: 0;
  height: 0;
  border-left: 0.625rem solid transparent;
  border-right: 0.625rem solid transparent;
  border-bottom: 0.625rem solid #008cff;
}

.p-top-flow__content {
  text-align: center;
  margin-top: 2.8125rem;
}
@media screen and (max-width: 767px) {
  .p-top-flow__content {
    margin-top: 0.9375rem;
  }
}

.p-top-flow__content-title {
  position: relative;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: #024f90;
  margin-inline: auto;
  margin-top: 4.375rem;
}
@media screen and (max-width: 767px) {
  .p-top-flow__content-title {
    font-size: 1.25rem;
    margin-top: 1.25rem;
  }
}

.p-top-flow__steps {
  display: grid;
  width: 100%;
  gap: 2.421875rem;
  margin-top: 3.125rem;
}
@media screen and (max-width: 767px) {
  .p-top-flow__steps {
    gap: 2.5rem;
    margin-top: 1.25rem;
  }
}

.p-top-flow__step {
  background-color: #ffffff;
  border: 0.125rem solid #008cff;
  border-radius: 1.25rem;
  padding: 1.375rem 3.125rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-top-flow__step {
    border-radius: 0.625rem;
    padding: 1.25rem 1.125rem 1.875rem;
  }
}

.p-top-flow__step:not(:first-child)::before {
  content: "";
  position: absolute;
  top: -1.796875rem;
  left: 50%;
  transform: translateX(-50%);
  display: inline-block;
  width: 2.6875rem;
  height: 1.125rem;
  background: #008cff;
  clip-path: polygon(0 0, 100% 0%, 50% 100%);
}
@media screen and (max-width: 767px) {
  .p-top-flow__step:not(:first-child)::before {
    top: -1.71875rem;
    width: 1.875rem;
    height: 0.9375rem;
  }
}

.p-top-flow__step-content {
  display: grid;
  grid-template-areas: "left right";
  grid-template-columns: auto 1fr;
  grid-template-rows: auto;
  gap: 0.4375rem 1.875rem;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .p-top-flow__step-content {
    grid-template-areas: "icon number" "icon title" "text text";
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto auto;
    gap: 0.3125rem 0.625rem;
  }
}

.p-top-flow__step-content-left {
  grid-area: left;
  display: grid;
  grid-template-areas: "number" "icon";
  gap: 0.3125rem;
  grid-template-columns: 1fr;
  grid-template-rows: auto auto;
}
@media screen and (max-width: 767px) {
  .p-top-flow__step-content-left {
    display: contents;
  }
}

.p-top-flow__step-content-right {
  grid-area: right;
  display: grid;
  grid-template-areas: "title" "text";
  gap: 0.9375rem;
  grid-template-columns: 1fr;
  grid-template-rows: auto auto;
}
@media screen and (max-width: 767px) {
  .p-top-flow__step-content-right {
    display: contents;
  }
}

.p-top-flow__step-icon {
  grid-area: icon;
  place-self: center;
  position: relative;
  display: grid;
  place-items: center;
  width: 7.5rem;
  aspect-ratio: 1;
}
@media screen and (max-width: 767px) {
  .p-top-flow__step-icon {
    width: 5rem;
  }
}

.p-top-flow__step-icon-image {
  position: relative;
  width: 100%;
  height: auto;
}

.p-top-flow__step-icon-number {
  grid-area: number;
  place-self: end center;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #008cff;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .p-top-flow__step-icon-number {
    font-size: 0.875rem;
    justify-self: start;
  }
}

.p-top-flow__step-text {
  grid-area: text;
  display: grid;
  gap: 0.9375rem;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .p-top-flow__step-text {
    gap: 0.625rem;
    margin-top: 0.3125rem;
  }
}

.p-top-flow__step-title {
  grid-area: title;
  align-self: start;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.375rem;
  font-weight: 700;
  color: #024f90;
  letter-spacing: 0;
  line-height: 1.6;
  text-align: left;
  justify-self: start;
}
@media screen and (max-width: 767px) {
  .p-top-flow__step-title {
    font-size: 0.875rem;
  }
}

.p-top-flow__step-description {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: #1a3347;
  line-height: 1.7;
  letter-spacing: 0;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .p-top-flow__step-description {
    font-size: 0.875rem;
  }
}

.p-top-flow__step:nth-of-type(2) .p-top-flow__step-cta .c-button-sp-phone,
.p-top-flow__step:nth-of-type(2) .p-top-flow__step-cta .c-button-cta-web,
.p-top-flow__step:nth-of-type(3) .p-top-flow__step-cta .c-button-sp-phone,
.p-top-flow__step:nth-of-type(3) .p-top-flow__step-cta .c-button-cta-web {
  max-width: 18.75rem;
}

.p-top-flow__step-arrow {
  display: grid;
  place-items: center;
}

.p-top-flow__step-arrow-icon {
  transform: scaleY(-1);
  width: 2.7063125rem;
  height: auto;
}

.p-top-flow__step-highlight {
  display: inline;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0;
  background: linear-gradient(transparent 60%, #ffe653 60%);
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}
@media screen and (max-width: 767px) {
  .p-top-flow__step-highlight {
    font-size: 1rem;
    letter-spacing: -0.02em;
  }
}

.p-top-flow__step-cta {
  display: flex;
  gap: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-top-flow__step-cta {
    flex-direction: column;
    align-items: center;
    gap: 1.0625rem;
  }
}

@media screen and (max-width: 767px) {
  .p-top-flow__step:first-child .p-top-flow__step-cta {
    gap: 0.8125rem;
    padding-bottom: 1.375rem;
  }
}

@media screen and (max-width: 767px) {
  .p-top-flow__step-cta .c-button-sp-phone,
  .p-top-flow__step-cta .c-button-cta-web {
    max-width: 100%;
    width: 100%;
  }
}

@media screen and (max-width: 767px) {
  .p-top-flow__step-cta .c-button-cta-web {
    font-size: 0.875rem;
    column-gap: 1.0625rem;
  }
}

@media screen and (max-width: 767px) {
  .p-top-flow__step:first-child .c-button-cta-web {
    padding-left: 3.75rem;
    font-size: 1rem;
  }
}

@media screen and (max-width: 767px) {
  .p-top-flow__step-cta .c-button-cta-web::before {
    width: 1.875rem;
  }
}

@media screen and (max-width: 767px) {
  .p-top-flow__step:first-child .p-top-flow__step-cta .c-button-cta-web::before {
    width: 2.5rem;
  }
}

@media screen and (max-width: 767px) {
  .p-top-flow__step-cta .c-button-cta-web::after {
    right: 1.0625rem;
  }
}

@media screen and (max-width: 767px) {
  .p-top-flow__step:first-child .p-top-flow__step-cta .c-button-cta-web::after {
    right: 1.625rem;
  }
}

.p-top-flow__tab-content {
  display: none;
}

.p-top-flow__tab-content--active {
  display: block;
}

.p-top-flow__notice {
  background-color: #ffffff;
  border: 0.0625rem solid #1a3347;
  border-radius: 0.3125rem;
  padding: 1.875rem 2.5rem;
  margin-top: 3.125rem;
  text-align: left;
  max-width: 56.25rem;
  margin-inline: auto;
  letter-spacing: 0;
}
@media screen and (max-width: 767px) {
  .p-top-flow__notice {
    padding: 1.875rem 1.25rem;
    margin-top: 1.5625rem;
  }
}

.p-top-flow__notice-title {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #1a3347;
  line-height: 1.7;
  margin-top: 0;
}
@media screen and (max-width: 767px) {
  .p-top-flow__notice-title {
    font-size: 0.875rem;
  }
}

.p-top-flow__notice-text {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: #1a3347;
  line-height: 1.7;
  margin-top: 0;
}
@media screen and (max-width: 767px) {
  .p-top-flow__notice-text {
    font-size: 0.875rem;
  }
}

.p-top-flow__step-list {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  color: #1a3347;
  line-height: 1.7;
  padding-left: 0;
  margin-top: 0;
  list-style: none;
}
@media screen and (max-width: 767px) {
  .p-top-flow__step-list {
    font-size: 0.8125rem;
  }
}

.p-top-flow__step-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.p-top-flow__step-list li::before {
  content: "";
  display: block;
  width: 0.1875rem;
  aspect-ratio: 1;
  background-color: #000000;
  border-radius: calc(infinity * 1px);
  flex-shrink: 0;
  margin-top: calc((1lh - 0.1875rem) / 2);
}

.p-top-flow__step-strong {
  font-family: "Roboto Condensed", sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  color: #008cff;
}
@media screen and (max-width: 767px) {
  .p-top-flow__step-strong {
    font-size: 0.875rem;
  }
}

.p-top-flow__step-note {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  color: #1a3347;
  line-height: 1.6;
  margin-top: 0.9375rem;
}
@media screen and (max-width: 767px) {
  .p-top-flow__step-note {
    font-size: 0.75rem;
  }
}

.p-top-flow__ntt-contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-top-flow__ntt-contact {
    grid-template-columns: 1fr;
    gap: 0.625rem;
  }
}

.p-top-flow__ntt-box {
  border: 0.0625rem solid #008cff;
  border-radius: 1.25rem;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .p-top-flow__ntt-box {
    border-radius: 0.625rem;
  }
}

.p-top-flow__ntt-box--west {
  border-color: #0177d9;
}

.p-top-flow__ntt-header {
  background-color: #008cff;
  color: #ffffff;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  text-align: center;
  padding: 0.625rem;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .p-top-flow__ntt-header {
    font-size: 0.875rem;
  }
}

.p-top-flow__ntt-header--west {
  background-color: #0177d9;
}

.p-top-flow__ntt-body {
  background-color: #ffffff;
  padding: 0.9375rem 0.9375rem 1.25rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-top-flow__ntt-body {
    padding: 1.1875rem 1.1875rem 1.25rem;
  }
}

.p-top-flow__ntt-body .c-button-sp-phone__inner {
  padding-top: 0.375rem;
  padding-right: 1.125rem;
}

.p-top-flow__ntt-body .c-button-sp-phone__content {
  text-align: left;
}

.p-top-flow__ntt-body .c-button-sp-phone__number-wrapper {
  padding-left: 0;
}

.p-top-flow__ntt-body .c-button-sp-phone__number {
  padding-left: 0;
  font-size: 1.625rem;
  letter-spacing: normal;
}

.p-top-flow__ntt-body .c-button-sp-phone_icon {
  position: absolute;
  top: 0.5625rem;
  right: 1.125rem;
  max-width: 2.8125rem;
}

.p-top-flow__ntt-body .c-button-sp-phone__label {
  padding-left: 0;
  font-size: 0.875rem;
  letter-spacing: normal;
}

.p-top-flow__ntt-body .c-button-sp-phone__hours {
  padding-left: 0;
  white-space: nowrap;
}

.p-top-flow__step-content .c-button-sp-phone,
.p-top-flow__step-content .c-button-cta-web {
  max-width: 18.75rem;
  margin-inline: auto;
}

.p-top-flow__ntt-phone {
  display: grid;
  grid-template-columns: auto auto;
  grid-template-rows: auto auto;
  grid-template-areas: "icon number" "hours hours";
  gap: 0 0.625rem;
  align-items: center;
  text-decoration: none;
}
@media screen and (max-width: 767px) {
  .p-top-flow__ntt-phone {
    gap: 0 0.5rem;
  }
}

.p-top-flow__ntt-phone__icon {
  grid-area: icon;
  width: 3.875rem;
  aspect-ratio: 1;
  place-self: center end;
}
@media screen and (max-width: 767px) {
  .p-top-flow__ntt-phone__icon {
    width: 3.5rem;
  }
}

.p-top-flow__ntt-phone__number {
  grid-area: number;
  place-self: center start;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 2.25rem;
  font-weight: 950;
  color: #008cff;
  line-height: 1.6;
  align-self: end;
}
@media screen and (max-width: 767px) {
  .p-top-flow__ntt-phone__number {
    font-size: 2.125rem;
  }
}

.p-top-flow__ntt-phone__hours {
  grid-area: hours;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  color: #1a3347;
  line-height: 1.6;
  align-self: start;
}
@media screen and (max-width: 767px) {
  .p-top-flow__ntt-phone__hours {
    font-size: 0.875rem;
  }
}

.p-top-flow__ntt-phone--west .p-top-flow__ntt-phone__number {
  color: #0177d9;
}

.p-top-flow__ntt-button.c-button {
  width: min(18.75rem, 100%);
  padding: 0.875rem 1rem;
  column-gap: 0.5rem;
  margin-top: 0.9375rem;
}
@media screen and (max-width: 767px) {
  .p-top-flow__ntt-button.c-button {
    width: min(17.5rem, 100%);
    padding: 0.75rem 1rem;
    margin-top: 1.125rem;
  }
}

.p-top-flow__ntt-button--west {
  background-color: #0177d9;
}

.c-button-sp-phone--west .c-button-sp-phone__inner {
  box-shadow: 0 0.125rem 0 0 #0177d9;
  border: 0.125rem solid #0177d9;
}

.c-button-sp-phone--west .c-button-sp-phone__label {
  color: #0177d9;
}

.c-button-sp-phone--west .c-button-sp-phone__number {
  color: #0177d9;
}

.c-button-sp-phone--west .c-button-sp-phone__hours {
  color: #0177d9;
}

.c-button-sp-phone--west .c-button-sp-phone_call {
  filter: brightness(0) saturate(100%) invert(33%) sepia(100%) saturate(1000%) hue-rotate(180deg) brightness(95%) contrast(100%);
}

.c-button-sp-phone--west .c-button-sp-phone_icon {
  filter: brightness(0) saturate(100%) invert(33%) sepia(100%) saturate(1000%) hue-rotate(180deg) brightness(95%) contrast(100%);
}

@media (any-hover: hover) {
  .p-top-flow__tab:hover {
    background-color: #008cff;
    color: #ffffff;
  }
}
.p-top-hero {
  position: relative;
}

.p-top-hero__main {
  position: relative;
  margin-inline: auto;
  text-align: center;
  background-image: url("../img/top/img-hero-background.webp");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .p-top-hero__main {
    height: auto;
    min-height: 25rem;
    background-image: url("../img/top/img-hero-background-sp.webp");
  }
}

.p-top-hero__content {
  position: relative;
  display: block;
  padding-block: 2.1875rem 1.375rem;
}
@media screen and (max-width: 767px) {
  .p-top-hero__content {
    padding-block: 1.875rem 2.5rem;
  }
}

.p-top-hero__top-banner {
  position: relative;
  display: inline-block;
  background-color: #024f90;
  padding-inline: 1.125rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-top-hero__top-banner {
    padding-block: 0.3125rem;
  }
}

.p-top-hero__top-banner-text {
  display: flex;
  align-items: baseline;
  gap: 0.1875rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 1.75rem;
  color: #ffffff;
  letter-spacing: 0;
}
@media screen and (max-width: 767px) {
  .p-top-hero__top-banner-text {
    font-size: 1.125rem;
  }
}

.p-top-hero__top-banner-text--highlight {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 2.125rem;
  color: #ffb900;
  letter-spacing: 0;
}
@media screen and (max-width: 767px) {
  .p-top-hero__top-banner-text--highlight {
    font-size: 1.375rem;
  }
}

.p-top-hero__main-heading {
  margin-top: 0.3125rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  color: #024f90;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-top-hero__main-heading {
    font-size: 1.25rem;
    margin-top: 0.5rem;
  }
}

.p-top-hero__main-heading--medium {
  font-size: 1.875rem;
}
@media screen and (max-width: 767px) {
  .p-top-hero__main-heading--medium {
    font-size: 1.25rem;
  }
}

.p-top-hero__secondary-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 3.75rem;
  margin-top: 1.7rem;
}
@media screen and (max-width: 767px) {
  .p-top-hero__secondary-actions {
    gap: 1.125rem;
    flex-direction: column;
  }
}

.p-top-hero__price-secondary-number-digit {
  position: relative;
  display: inline-block;
  font-family: "Staatliches", sans-serif;
  font-weight: 400;
  font-size: 8.75rem;
  line-height: 0.9;
  letter-spacing: -0.02em;
  color: transparent;
  background: linear-gradient(180deg, var(--orange, #ffb900) 31.73%, #ffea05 63.46%, #fffbd2 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(3px 4.38px 0 #024f90);
  will-change: filter;
}
@media screen and (max-width: 767px) {
  .p-top-hero__price-secondary-number-digit {
    font-size: 6.25rem;
    filter: drop-shadow(0.1875rem 0.27375rem 0 #024f90);
  }
}

.p-top-hero__price-secondary-number-digit::before {
  content: attr(data-text);
  position: absolute;
  inset: 0;
  color: transparent;
  -webkit-text-stroke-width: 0.3125rem;
  -webkit-text-stroke-color: var(--navy, #024f90);
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .p-top-hero__price-secondary-number-digit::before {
    -webkit-text-stroke-width: 0.25rem;
  }
}

.p-top-hero__price-secondary-number-comma {
  position: relative;
  display: inline-block;
  font-family: "Staatliches", sans-serif;
  font-weight: 400;
  font-size: 7.5rem;
  line-height: 0.9;
  letter-spacing: -0.2rem;
  background: linear-gradient(180deg, var(--orange, #ffb900) 31.73%, #ffea05 63.46%, #fffbd2 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(3px 4.38px 0 #024f90);
  will-change: filter;
}
@media screen and (max-width: 767px) {
  .p-top-hero__price-secondary-number-comma {
    font-size: 5.625rem;
  }
}

.p-top-hero__price-secondary-number-comma::before {
  content: ",";
  position: absolute;
  inset: 0;
  color: transparent;
  -webkit-text-stroke-width: 0.1875rem;
  -webkit-text-stroke-color: var(--navy, #024f90);
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .p-top-hero__price-secondary-number-comma::before {
    -webkit-text-stroke-width: 0.125rem;
  }
}

.p-top-hero__cta-button {
  display: grid;
  place-items: center;
  gap: 0.1875rem;
  background-color: #ff588f;
  border-radius: 1.25rem;
  padding-block: 1.0625rem 0.625rem;
  padding-inline: 1.5625rem;
  box-shadow: 0 0.25rem 0 0 #e2326c;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
@media screen and (max-width: 767px) {
  .p-top-hero__cta-button {
    grid-template-columns: auto 1fr;
    gap: 0.625rem;
    padding-block: 0.5rem;
    padding-inline: 1.25rem;
    border-radius: 0.625rem;
  }
}

.p-top-hero__cta-button-icon {
  width: 1.875rem;
  aspect-ratio: 30/41;
}
@media screen and (max-width: 767px) {
  .p-top-hero__cta-button-icon {
    width: 2rem;
  }
}

.p-top-hero__cta-button-text {
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-weight: 700;
  font-size: 1.125rem;
  line-height: 1.5;
  color: #ffffff;
  text-align: center;
}

.p-top-hero__bottom-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding-block: 0.625rem;
  background-color: #024f90;
}
@media screen and (max-width: 767px) {
  .p-top-hero__bottom-bar {
    display: grid;
    grid-template-columns: auto auto minmax(0, 1fr);
    grid-template-areas: "icon badge text" "button button button";
    column-gap: 0.625rem;
    row-gap: 0.3125rem;
    padding-inline: 2.1875rem;
  }
}

.p-top-hero__bottom-bar-wifi-icon {
  grid-area: icon;
  justify-self: center;
  width: 5.3125rem;
  aspect-ratio: 85/52;
}
@media screen and (max-width: 767px) {
  .p-top-hero__bottom-bar-wifi-icon {
    width: 4.25rem;
  }
}

.p-top-hero__bottom-bar-badge {
  grid-area: badge;
  display: grid;
  place-items: center;
  background-color: #ffffff;
  padding: 0.125rem 0.625rem;
  border-radius: 0.3125rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 1.125rem;
  color: #024f90;
  margin-left: 1.875rem;
  justify-self: center;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-top-hero__bottom-bar-badge {
    padding: 0.1875rem 0.3125rem;
    margin-left: 0.625rem;
    font-size: 0.75rem;
  }
}

.p-top-hero__bottom-bar-info-text {
  grid-area: text;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 1.25rem;
  color: #ffffff;
  letter-spacing: 0;
  margin-left: 0.9375rem;
}
@media screen and (max-width: 767px) {
  .p-top-hero__bottom-bar-info-text {
    font-size: 0.875rem;
    text-align: left;
    margin-left: 0;
  }
}

.p-top-hero__bottom-bar__button.c-button {
  grid-area: button;
  font-size: 0.875rem;
  gap: 0.625rem;
  width: min(10.625rem, 100%);
  padding: 0.4375rem 1.25rem;
  margin-left: 1.875rem;
}
@media screen and (max-width: 767px) {
  .p-top-hero__bottom-bar__button.c-button {
    font-size: 0.75rem;
    padding: 0.25rem 0.625rem;
    justify-self: center;
    margin-left: 0;
  }
}

@media (any-hover: hover) {
  .p-top-hero__cta-button:hover {
    transform: translateY(0.125rem);
    box-shadow: 0 0.125rem 0 0 #e2326c;
  }
}
.p-top-hero__price-plans {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3125rem;
  margin-top: 0.625rem;
}

.p-top-hero__price-plan {
  display: flex;
  align-items: center;
  gap: 0.625rem;
}

.p-top-hero__price-plan-label {
  display: flex;
  align-items: baseline;
  justify-content: center;
  width: 7.5rem;
  background-color: #024f90;
  border-radius: 0.375rem;
  padding: 0.25rem 0.5rem;
  line-height: 1.25;
}
@media screen and (max-width: 767px) {
  .p-top-hero__price-plan-label {
    width: 5.625rem;
    padding: 0.1875rem 0.375rem;
  }
}

.p-top-hero__price-plan-label-number {
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 700;
  font-size: 3.125rem;
  color: #ffffff;
}
@media screen and (max-width: 767px) {
  .p-top-hero__price-plan-label-number {
    font-size: 2.25rem;
  }
}

.p-top-hero__price-plan-label-giga {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 1.625rem;
  color: #ffffff;
}
@media screen and (max-width: 767px) {
  .p-top-hero__price-plan-label-giga {
    font-size: 1.125rem;
  }
}

.p-top-hero__price-plan-number {
  display: flex;
  align-items: baseline;
}

.p-top-hero__price-plan-unit {
  display: inline-block;
  width: 2.875rem;
  aspect-ratio: 135/143;
  font-size: 0;
  color: transparent;
  overflow: hidden;
  background-image: url("../img/top/icon-hero-yen.webp");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  margin-left: 0.5rem;
  align-self: flex-end;
  margin-bottom: 0.9375rem;
}
@media screen and (max-width: 767px) {
  .p-top-hero__price-plan-unit {
    width: 2rem;
    margin-bottom: 0.3125rem;
  }
}

.p-top-hero__cashback-text {
  position: relative;
  display: inline-block;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 3.2rem;
  line-height: 1;
  color: #024f90;
  background: linear-gradient(transparent 70%, #ffe653 70%);
  margin-top: 0.25rem;
}
@media screen and (max-width: 767px) {
  .p-top-hero__cashback-text {
    font-size: 1.375rem;
  }
}

.p-top-hero__cashback-text::before,
.p-top-hero__cashback-text::after {
  content: "";
  position: absolute;
  width: 4.75rem;
  aspect-ratio: 76/66;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  pointer-events: none;
}

.p-top-hero__cashback-text::before {
  top: -0.5rem;
  left: -4.625rem;
  background-image: url("../img/top/icon-hero-coin.svg");
}
@media screen and (max-width: 767px) {
  .p-top-hero__cashback-text::before {
    width: 3.125rem;
    top: -0.3125rem;
    left: -2.8125rem;
  }
}

.p-top-hero__cashback-text::after {
  top: -0.75rem;
  right: -5.3125rem;
  background-image: url("../img/top/icon-hero-bill.svg");
}
@media screen and (max-width: 767px) {
  .p-top-hero__cashback-text::after {
    width: 3.4375rem;
    top: -0.3125rem;
    right: -3.625rem;
  }
}

.p-top-hero__worker-box {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 0.75rem;
  background-color: #ffffff;
  border: 0.1875rem solid #024f90;
  border-radius: 0.9375rem;
  padding: 0.75rem 8.125rem 0.75rem 1.5rem;
  overflow: visible;
}
@media screen and (max-width: 767px) {
  .p-top-hero__worker-box {
    padding: 0.625rem 5.625rem 0.625rem 1rem;
    border-radius: 0.625rem;
    gap: 0.5rem;
  }
}

.p-top-hero__worker-box-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
}

.p-top-hero__worker-box-title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 1.5625rem;
  color: #024f90;
}
.p-top-hero__worker-box-title::before, .p-top-hero__worker-box-title::after {
  content: "";
  display: inline-block;
  width: 1.875rem;
  height: 0.125rem;
  background-color: #024f90;
}
@media screen and (max-width: 767px) {
  .p-top-hero__worker-box-title {
    font-size: 1.125rem;
  }
  .p-top-hero__worker-box-title::before, .p-top-hero__worker-box-title::after {
    width: 1.25rem;
  }
}

.p-top-hero__worker-box-text {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 2.125rem;
  color: #024f90;
}
@media screen and (max-width: 767px) {
  .p-top-hero__worker-box-text {
    font-size: 1.625rem;
  }
}

.p-top-hero__worker-box-text--small {
  font-size: 1.625rem;
  margin: 0 0.0625rem;
}
@media screen and (max-width: 767px) {
  .p-top-hero__worker-box-text--small {
    font-size: 1.25rem;
  }
}

.p-top-hero__worker-box-text--emphasis span {
  position: relative;
  display: inline-block;
}
.p-top-hero__worker-box-text--emphasis span::before {
  content: "";
  position: absolute;
  top: -0.0125rem;
  left: 50%;
  transform: translateX(-50%);
  width: 0.25rem;
  height: 0.25rem;
  background-color: #FFB900;
  border-radius: 50%;
}

.p-top-hero__worker-image {
  position: absolute;
  right: 0.3125rem;
  bottom: 0;
  width: 7.5rem;
  height: auto;
}
@media screen and (max-width: 767px) {
  .p-top-hero__worker-image {
    right: -0.3125rem;
    width: 5.9375rem;
  }
}

.p-top-option {
  position: relative;
  width: 100%;
  background-color: #99D1FF;
  background-image: url("../img/top/img-option-background.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: top center;
  padding-top: 5rem;
  padding-bottom: 6.25rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-top-option {
    background-image: url("../img/top/img-option-background-sp.svg");
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }
}

.p-top-option__inner {
  max-width: 1080px;
}

.p-top-option__lead {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #024f90;
  line-height: normal;
  text-align: center;
  margin-top: 1.25rem;
  letter-spacing: 0;
}
@media screen and (max-width: 767px) {
  .p-top-option__lead {
    font-size: 1rem;
    margin-top: 1.5625rem;
  }
}

.p-top-option__lead::before,
.p-top-option__lead::after {
  content: "";
  width: 2.25rem;
  height: 0.1875rem;
  background-color: currentColor;
  border-radius: calc(infinity * 1px);
  margin-top: 0.625rem;
}
@media screen and (max-width: 767px) {
  .p-top-option__lead::before,
  .p-top-option__lead::after {
    width: 3.125rem;
    margin-top: 0;
  }
}

.p-top-option__lead::before {
  transform: rotate(70deg);
}
@media screen and (max-width: 767px) {
  .p-top-option__lead::before {
    margin-right: -0.3125rem;
  }
}

.p-top-option__lead::after {
  transform: rotate(-70deg);
}
@media screen and (max-width: 767px) {
  .p-top-option__lead::after {
    margin-left: -0.3125rem;
  }
}

.p-top-option__items {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(300px, 100%), 1fr));
  gap: 1.875rem;
  justify-content: center;
  margin-top: 1.875rem;
}
@media screen and (max-width: 767px) {
  .p-top-option__items {
    gap: 0.9375rem;
    grid-template-columns: 1fr;
    margin-top: 1.875rem;
  }
}

.p-top-option__item {
  position: relative;
  display: grid;
  grid-template-areas: "icon" "title" "description" "link";
  grid-template-columns: 1fr;
  grid-template-rows: auto auto 1fr auto;
  justify-items: center;
  align-items: start;
  background-color: #ffffff;
  border: 0.3125rem solid #0277d9;
  border-radius: 1.25rem;
  padding: 1.875rem 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-top-option__item {
    grid-template-areas: "icon title" "description description" "link link";
    grid-template-columns: 6.5625rem 1fr;
    grid-template-rows: auto 1fr auto;
    gap: 0.3125rem 0.9375rem;
    padding: 1.5625rem;
    border: 0.1875rem solid #0277d9;
    border-radius: 0.625rem;
  }
}

.p-top-option__item-icon {
  grid-area: icon;
  width: 6.25rem;
}
@media screen and (max-width: 767px) {
  .p-top-option__item-icon {
    width: 4.0625rem;
  }
}

.p-top-option__item-icon-img {
  width: 100%;
  max-width: unset;
}

.p-top-option__item-content {
  display: grid;
  gap: 0.9375rem;
}

.p-top-option__item-title {
  grid-area: title;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  color: #008cff;
  line-height: normal;
  text-align: center;
  letter-spacing: -0.03em;
  font-size: 1.25rem;
  margin-top: 0.3125rem;
}
@media screen and (max-width: 767px) {
  .p-top-option__item-title {
    text-align: left;
    place-self: center start;
    line-height: 1.2;
    letter-spacing: 0;
    font-size: 1rem;
    margin-top: 0;
  }
}

.p-top-option__item-description {
  grid-area: description;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  color: #024f90;
  line-height: 1.7;
  letter-spacing: 0;
  text-align: left;
  margin-top: 0.625rem;
}
@media screen and (max-width: 767px) {
  .p-top-option__item-description {
    margin-top: 0;
  }
}

.p-top-option__item-link {
  grid-area: link;
  justify-self: end;
  display: inline-flex;
  gap: 0.625rem;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  color: #024f90;
  line-height: 1.5;
  align-items: center;
  position: relative;
  text-decoration: none;
  margin-top: 0.625rem;
}
@media screen and (max-width: 767px) {
  .p-top-option__item-link {
    margin-top: 0;
  }
}

.p-top-option__item-link::after {
  content: "";
  width: 1.25rem;
  aspect-ratio: 1;
  background-color: #024f90;
  mask-image: url("../img/common/icon-circle-arrow-right.svg");
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
  transition: background-color 0.3s;
}

@media (any-hover: hover) {
  .p-top-option__item-link:hover {
    opacity: 0.8;
  }
}
.p-top-option__item-link-text {
  grid-area: 1/1;
  text-align: right;
  margin-left: 4.375rem;
  transform: translateX(-100%);
}

.p-top-option__item-link-arrow {
  grid-area: 1/1;
  width: 1.25rem;
  height: 1.25rem;
  margin-left: 5rem;
  margin-top: 0.0625rem;
  background-color: #008cff;
  border-radius: calc(infinity * 1px);
  position: relative;
}

.p-top-option__item-link-arrow::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(90deg);
  width: 0.25rem;
  height: 0.5rem;
  background-image: url("data:image/svg+xml,%3Csvg width='4' height='8' viewBox='0 0 4 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 0L4 4L0 8' fill='%23ffffff'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}

.p-top-option__more {
  display: flex;
  justify-content: center;
  margin-top: 1.875rem;
}

.p-top-reason {
  position: relative;
  width: 100%;
  background-image: url("../img/top/img-reason-background.svg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  padding-top: 5rem;
  padding-bottom: 5rem;
}
@media screen and (max-width: 767px) {
  .p-top-reason {
    background-image: url("../img/top/img-reason-background-sp.svg");
    padding-top: 2.5rem;
    padding-bottom: 3.375rem;
  }
}

.p-top-reason__decoration-left {
  position: absolute;
  top: -13.125rem;
  left: -9.1875rem;
  width: 41.875rem;
  height: 66.375rem;
  pointer-events: none;
  z-index: 0;
}

.p-top-reason__decoration-right {
  position: absolute;
  top: -13.125rem;
  right: -9.1875rem;
  width: 41rem;
  height: 66.375rem;
  pointer-events: none;
  z-index: 0;
}

.p-top-reason__container {
  max-inline-size: 1080px;
}

.p-top-reason__items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5625rem;
  place-items: center;
  margin-top: 1.125rem;
  padding-inline: 1.5625rem;
}
@media screen and (max-width: 767px) {
  .p-top-reason__items {
    padding-inline: 0;
    grid-template-columns: 1fr;
    gap: 3.625rem;
    margin-top: 1.5625rem;
  }
}

.p-top-reason__item {
  display: grid;
  width: 100%;
  grid-template-columns: 1fr;
  grid-template-rows: auto auto auto;
}
@media screen and (max-width: 767px) {
  .p-top-reason__item {
    grid-template-columns: min(11.25rem, 100%) 10rem;
    grid-template-rows: auto auto;
    gap: 0.9375rem 1.25rem;
    padding: 0rem;
  }
}

@media screen and (max-width: 767px) {
  .p-top-reason__item:nth-child(2) {
    grid-template-columns: 10rem min(11.25rem, 100%);
  }
}

@media screen and (max-width: 767px) {
  .p-top-reason__item:nth-child(2) .p-top-reason__item-speech-bubble {
    grid-column: 2;
  }
}

@media screen and (max-width: 767px) {
  .p-top-reason__item:nth-child(2) .p-top-reason__item-speech-bubble::before {
    inset: unset;
    top: 50%;
    left: 0;
    border-width: 7.5px 10px 7.5px 0;
    border-color: transparent #024f90 transparent transparent;
    translate: -100% -50%;
  }
}

@media screen and (max-width: 767px) {
  .p-top-reason__item:nth-child(2) .p-top-reason__item-speech-bubble::after {
    inset: unset;
    top: 50%;
    left: 0;
    border-style: solid;
    border-width: 5px 6.7px 5px 0;
    border-color: transparent #ffffff transparent transparent;
    translate: -100% -50%;
  }
}

@media screen and (max-width: 767px) {
  .p-top-reason__item:nth-child(2) .p-top-reason__item-illustration {
    grid-column: 1;
  }
}

.p-top-reason__item-speech-bubble {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  place-items: center;
  padding: 1.25rem 0.9375rem;
  border: 3px solid #024f90;
  border-radius: 1.25rem;
  background-color: #ffffff;
  text-align: center;
  margin-bottom: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-top-reason__item-speech-bubble {
    grid-column: 1;
    grid-row: 1;
    border: 2px solid #024f90;
    padding: 1.25rem 0.625rem;
    margin-bottom: 0;
    width: min(11.25rem, 100%);
  }
}

.p-top-reason__item-speech-bubble::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  border-style: solid;
  border-width: 20px 12.5px 0 12.5px;
  border-color: #024f90 transparent transparent;
  translate: -50% 100%;
}
@media screen and (max-width: 767px) {
  .p-top-reason__item-speech-bubble::before {
    bottom: unset;
    left: unset;
    top: 50%;
    right: 0;
    border-width: 7.5px 0 7.5px 10px;
    border-color: transparent transparent transparent #024f90;
    translate: 100% -50%;
  }
}

.p-top-reason__item-speech-bubble::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  border-style: solid;
  border-width: 14.3px 9px 0 9px;
  border-color: #ffffff transparent transparent;
  translate: -50% 100%;
}
@media screen and (max-width: 767px) {
  .p-top-reason__item-speech-bubble::after {
    bottom: unset;
    left: unset;
    top: 50%;
    right: 0;
    border-width: 5px 0 5px 6.7px;
    border-color: transparent transparent transparent #ffffff;
    translate: 100% -50%;
  }
}

.p-top-reason__item-speech-bubble-text {
  display: inline-block;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 1.875rem;
  color: #024f90;
  line-height: 1.45;
  letter-spacing: 0;
  vertical-align: baseline;
}
@media screen and (max-width: 767px) {
  .p-top-reason__item-speech-bubble-text {
    font-size: 1.125rem;
    line-height: 1.8;
  }
}

.p-top-reason__item-speech-bubble-text--edge {
  display: inline;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 900;
  font-size: 2.5rem;
  color: #ffe653;
  line-height: 1;
  vertical-align: baseline;
  -webkit-text-stroke: 0.5rem #024f90;
  paint-order: stroke fill;
  padding-inline: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-top-reason__item-speech-bubble-text--edge {
    font-size: 1.625rem;
    -webkit-text-stroke: 0.3125rem #024f90;
  }
}

.p-top-reason__item-illustration {
  width: 12.5rem;
  height: 10.0625rem;
  margin-top: 0.3125rem;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 767px) {
  .p-top-reason__item-illustration {
    width: 10rem;
    height: 7.5rem;
    margin: 0;
    grid-column: 2;
    grid-row: 1;
  }
}

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

.p-top-reason__item-description {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 1.125rem;
  color: #024f90;
  line-height: 1.6;
  text-align: center;
  letter-spacing: 0;
}
@media screen and (max-width: 767px) {
  .p-top-reason__item-description {
    font-size: 1rem;
    line-height: 1.7;
    grid-column: 1/3;
    grid-row: 2;
  }
}

.p-top-reason__item-description-highlight {
  color: #ff588f;
}

.p-top-reason__notes {
  display: grid;
  gap: 0.3125rem;
  margin-top: 1.5625rem;
}
@media screen and (max-width: 767px) {
  .p-top-reason__notes {
    margin-top: 0.9375rem;
  }
}

.p-top-reason__notes-text {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 0.75rem;
  color: #000000;
  line-height: normal;
  letter-spacing: 0;
  text-indent: -0.625rem;
  padding-left: 0.625rem;
}

.p-top-hero__bottom-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding-block: 0.625rem;
  background-color: #024f90;
}
@media screen and (max-width: 767px) {
  .p-top-hero__bottom-bar {
    display: grid;
    grid-template-columns: auto auto minmax(0, 1fr);
    grid-template-areas: "icon badge text" "button button button";
    column-gap: 0.625rem;
    row-gap: 0.3125rem;
    padding-inline: 2.1875rem;
  }
}

.p-top-hero__bottom-bar-wifi-icon {
  grid-area: icon;
  justify-self: center;
  width: 5.3125rem;
  aspect-ratio: 85/52;
}
@media screen and (max-width: 767px) {
  .p-top-hero__bottom-bar-wifi-icon {
    width: 4.25rem;
  }
}

.p-top-hero__bottom-bar-badge {
  grid-area: badge;
  display: grid;
  place-items: center;
  background-color: #ffffff;
  padding: 0.125rem 0.625rem;
  border-radius: 0.3125rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 1.125rem;
  color: #024f90;
  margin-left: 1.875rem;
  justify-self: center;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-top-hero__bottom-bar-badge {
    padding: 0.1875rem 0.3125rem;
    margin-left: 0.625rem;
    font-size: 0.75rem;
  }
}

.p-top-hero__bottom-bar-info-text {
  grid-area: text;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 1.25rem;
  color: #ffffff;
  letter-spacing: 0;
  margin-left: 0.9375rem;
}
@media screen and (max-width: 767px) {
  .p-top-hero__bottom-bar-info-text {
    font-size: 0.875rem;
    text-align: left;
    margin-left: 0;
  }
}

.p-top-hero__bottom-bar__button.c-button {
  grid-area: button;
  font-size: 0.875rem;
  gap: 0.625rem;
  width: min(10.625rem, 100%);
  padding: 0.4375rem 1.25rem;
  margin-left: 1.875rem;
}
@media screen and (max-width: 767px) {
  .p-top-hero__bottom-bar__button.c-button {
    font-size: 0.75rem;
    padding: 0.25rem 0.625rem;
    justify-self: center;
    margin-left: 0;
  }
}

.p-top-hero__bottom-bar-button-text {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 0.875rem;
  color: #024f90;
}
@media screen and (max-width: 767px) {
  .p-top-hero__bottom-bar-button-text {
    font-size: 0.75rem;
  }
}

.p-top-hero__bottom-bar-button-arrow {
  width: 1.25rem;
  height: 1.25rem;
}

@media (any-hover: hover) {
  .p-top-hero__cta-button:hover {
    transform: translateY(0.125rem);
    box-shadow: 0 0.125rem 0 0 #e2326c;
  }
  .p-top-hero__bottom-bar-button:hover {
    background-color: rgb(242.25, 242.25, 242.25);
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.1);
  }
}
.p-top-price {
  position: relative;
  width: 100%;
  background-color: #DBEFFF;
  background-image: url("../img/top/img-price-background-lt.svg"), url("../img/top/img-price-background-rb.svg");
  background-size: 31.25%, 22.76%;
  background-repeat: no-repeat, no-repeat;
  background-position: top left, bottom right;
  padding-block: 5rem 7.5rem;
}
@media screen and (max-width: 767px) {
  .p-top-price {
    background-size: 56.05%, 43.02%;
    background-image: url("../img/top/img-price-background-lt-sp.svg"), url("../img/top/img-price-background-rb-sp.svg");
    padding-block: 2.5rem;
    padding-bottom: 5rem;
  }
}

.p-top-price__container {
  max-width: 860px;
  display: grid;
  gap: 3.4375rem;
}
@media screen and (max-width: 767px) {
  .p-top-price__container {
    gap: 1.875rem;
  }
}

.p-top-price__plan {
  position: relative;
  display: grid;
  gap: 1.875rem;
}
@media screen and (max-width: 767px) {
  .p-top-price__plan {
    gap: 0.625rem;
  }
}

.p-top-price__recommend-badge.c-badge {
  position: absolute;
  top: -2.1875rem;
  left: 3.625rem;
  rotate: -10deg;
  z-index: 10;
}
@media screen and (max-width: 767px) {
  .p-top-price__recommend-badge.c-badge {
    left: 0.625rem;
    line-height: 1.3;
    width: 5rem;
  }
}

.p-top-price__badge-text {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.5rem;
  font-weight: 900;
  color: #ffffff;
  line-height: 1.3;
  text-align: center;
}
@media (max-width: 768px) {
  .p-top-price__badge-text {
    font-size: 1.25rem;
  }
}

.p-top-price__recommend {
  display: grid;
  background-color: #ffffff;
  border-radius: 1.25rem;
  padding: 1.875rem 2.5rem;
  position: relative;
  place-content: center;
  place-items: center;
  grid-template-areas: "title image" "subtitle image" "list image";
  grid-template-columns: min(25.8125rem, 100%) min(15.625rem, 100%);
  grid-template-rows: auto auto 1fr;
  column-gap: 2.5rem;
  row-gap: 0.9375rem;
}
@media screen and (max-width: 767px) {
  .p-top-price__recommend {
    padding: 1.5625rem 1.25rem;
    grid-template-areas: "title" "subtitle" "image" "list";
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto auto;
    place-content: center;
    gap: 0;
  }
}

.p-top-price__recommend-title {
  grid-area: title;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #024f90;
  line-height: 1.2;
  display: flex;
  align-items: center;
  gap: 0.3125rem;
}
@media (max-width: 768px) {
  .p-top-price__recommend-title {
    font-size: 1rem;
  }
}

.p-top-price__recommend-title::before,
.p-top-price__recommend-title::after {
  content: "";
  display: block;
  width: 1.4375rem;
  height: 1.625rem;
  background-image: url("../img/common/icon-start.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  flex-shrink: 0;
  margin-top: 10px;
}
@media (max-width: 768px) {
  .p-top-price__recommend-title::before,
  .p-top-price__recommend-title::after {
    width: 1.25rem;
    height: 1.375rem;
  }
}

.p-top-price__recommend-title::after {
  transform: scaleX(-1);
}

.p-top-price__recommend-subtitle {
  grid-area: subtitle;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  color: #008cff;
  line-height: 1.2;
  letter-spacing: 0;
}
@media (max-width: 768px) {
  .p-top-price__recommend-subtitle {
    font-size: 0.875rem;
    margin-top: 0.625rem;
  }
}

.p-top-price__recommend-list {
  grid-area: list;
  display: grid;
}
@media screen and (max-width: 767px) {
  .p-top-price__recommend-list {
    margin-top: 0.3125rem;
  }
}

.p-top-price__recommend-item {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: #024f90;
  line-height: 1.7;
  letter-spacing: 0;
  display: flex;
  align-items: flex-start;
  gap: 0.3125rem;
  position: relative;
}
@media (max-width: 768px) {
  .p-top-price__recommend-item {
    font-size: 0.875rem;
  }
}

.p-top-price__recommend-item::before {
  content: "";
  width: 1.25rem;
  aspect-ratio: 1;
  background-color: #ffb900;
  mask-image: url("../img/common/icon-circle-check.webp");
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
  flex-shrink: 0;
  margin-block: calc((1lh - 1.25rem) / 2);
}

.p-top-price__recommend-image {
  grid-area: image;
}
@media screen and (max-width: 767px) {
  .p-top-price__recommend-image {
    max-width: 11.875rem;
  }
}

.p-top-price__cards {
  display: grid;
  gap: 3.75rem;
  grid-template-columns: repeat(2, 1fr);
}
@media screen and (max-width: 767px) {
  .p-top-price__cards {
    gap: 0.625rem;
  }
}

.p-top-price__cards small {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 0.75rem;
  line-height: normal;
  letter-spacing: 0;
}

.p-top-price__cards-attention {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 0.875rem;
  line-height: normal;
  letter-spacing: 0;
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}
.p-header {
  position: static;
  width: 100%;
  background-color: #ffffff;
  z-index: 1000;
  transition: transform 0.3s ease;
}
@media screen and (max-width: 767px) {
  .p-header {
    height: 4.875rem;
  }
}

.p-header.is-fixed {
  position: fixed;
  top: 0;
  left: 0;
}

.admin-bar .p-header.is-fixed {
  top: 32px;
}

.p-header__nav-container.l-container {
  max-inline-size: 1200px;
}

@media screen and (max-width: 767px) {
  .p-header .p-global-cta-bar__logo {
    align-items: flex-start;
  }
}

@media screen and (max-width: 767px) {
  .p-header__cta-bar .p-global-cta-bar__buttons {
    display: none;
  }
}

@media screen and (max-width: 767px) {
  .p-header .p-global-cta-bar__logo-image {
    width: 11.0625rem;
  }
}

.p-header__nav {
  background-color: #0177d9;
}
@media screen and (max-width: 767px) {
  .p-header__nav {
    display: none;
  }
}

.p-header__nav-container.l-container {
  max-inline-size: 1200px;
  padding-inline: 0;
}

.p-header__nav-list {
  display: flex;
  justify-content: center;
  align-items: stretch;
  border-right: 0.0625rem solid #ffffff;
  border-left: 0.0625rem solid #ffffff;
}

.p-header__nav-item {
  width: 16.67%;
}

.p-header__nav-item + .p-header__nav-item {
  border-left: 0.0625rem solid #ffffff;
}

.p-header__nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.1875rem;
  width: 100%;
  height: 100%;
  text-decoration: none;
  padding-block: 1.25rem;
  padding-inline: 1.25rem;
  transition: background-color 0.3s ease, opacity 0.3s ease;
}

.p-header__nav-icon {
  width: 1.25rem;
  aspect-ratio: 1;
}

.p-header__nav-text {
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-size: 0.875rem;
  font-weight: bold;
  color: #ffffff;
}

.p-header__hamburger {
  display: none;
}
@media screen and (max-width: 767px) {
  .p-header__hamburger {
    position: absolute;
    top: 0.3125rem;
    right: 0;
    z-index: 1001;
    display: block;
    width: 3.125rem;
    height: 3.125rem;
    background-color: #0177d9;
    border: none;
    border-radius: 0.3125rem;
    cursor: pointer;
    transition: opacity 0.3s ease;
  }
}

.p-header__hamburger-line {
  display: none;
}
@media screen and (max-width: 767px) {
  .p-header__hamburger-line {
    position: absolute;
    left: 0.625rem;
    display: block;
    width: 1.875rem;
    height: 0.1875rem;
    background-color: #ffffff;
    border-radius: 0.09375rem;
    transition: transform 0.3s ease, top 0.3s ease, opacity 0.3s ease;
  }
}

@media screen and (max-width: 767px) {
  .p-header__hamburger-line:nth-child(1) {
    top: 0.625rem;
  }
}

@media screen and (max-width: 767px) {
  .p-header__hamburger-line:nth-child(2) {
    top: 1.1875rem;
  }
}

@media screen and (max-width: 767px) {
  .p-header__hamburger-line:nth-child(3) {
    top: 1.75rem;
  }
}

@media screen and (max-width: 767px) {
  .p-header__hamburger.is-active .p-header__hamburger-line:nth-child(1) {
    top: 1.1875rem;
    transform: rotate(45deg);
  }
}

@media screen and (max-width: 767px) {
  .p-header__hamburger.is-active .p-header__hamburger-line:nth-child(2) {
    opacity: 0;
  }
}

@media screen and (max-width: 767px) {
  .p-header__hamburger.is-active .p-header__hamburger-line:nth-child(3) {
    top: 1.1875rem;
    transform: rotate(-45deg);
  }
}

.p-header__hamburger-text {
  display: none;
}
@media screen and (max-width: 767px) {
  .p-header__hamburger-text {
    position: absolute;
    left: 0.5rem;
    bottom: 0.1875rem;
    display: block;
    font-family: "M PLUS Rounded 1c", sans-serif;
    font-size: 0.75rem;
    font-weight: bold;
    color: #ffffff;
    line-height: 1;
  }
}

@media screen and (max-width: 767px) {
  .p-header__hamburger-text::before {
    content: "MENU";
  }
}

@media screen and (max-width: 767px) {
  .p-header__hamburger.is-active .p-header__hamburger-text::before {
    content: "CLOSE";
  }
}

.p-header__drawer {
  position: fixed;
  top: 4.875rem;
  left: 0;
  width: 100%;
  max-height: 70dvh;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  background-color: #ffffff;
  overflow-y: scroll;
}

.p-header__drawer.is-active {
  opacity: 1;
  visibility: visible;
}

.p-header__drawer-content {
  min-height: 0;
  padding-block: 1.875rem 5rem;
}

.p-header__drawer-item {
  border-bottom: 0.0625rem solid #008cff;
}

.p-header__drawer-link {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.3125rem;
  width: 100%;
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-size: 1rem;
  font-weight: bold;
  letter-spacing: 0;
  line-height: 1.5;
  padding-inline: 0.9375rem;
  padding-block: 1.25rem;
  text-decoration: none;
  color: #0177d9;
  transition: opacity 0.3s ease;
}

.p-header__drawer-text {
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-weight: bold;
  font-size: 1rem;
  line-height: 1.5;
  color: #0177d9;
  flex-grow: 1;
  display: grid;
  grid-template-columns: 1.5rem 1fr auto;
  align-items: center;
  gap: 0.3125rem;
}

.p-header__drawer-text::before {
  content: "";
  width: 1.5rem;
  aspect-ratio: 1;
  background-color: #0177d9;
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
}

.p-header__drawer-text::after {
  content: "";
  width: 0.875rem;
  aspect-ratio: 1;
  background-color: #0177d9;
  mask-image: url("../img/common/icon-arrow-right.svg");
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
}

.p-header__drawer-link--home .p-header__drawer-text::before {
  mask-image: url("../img/common/icon-nav-home.svg");
}

.p-header__drawer-link--gift .p-header__drawer-text::before {
  mask-image: url("../img/common/icon-nav-gift.svg");
}

.p-header__drawer-link--heart .p-header__drawer-text::before {
  mask-image: url("../img/common/icon-nav-heart.svg");
}

.p-header__drawer-link--yen .p-header__drawer-text::before {
  mask-image: url("../img/common/icon-nav-yen.svg");
}

.p-header__drawer-link--flow .p-header__drawer-text::before {
  mask-image: url("../img/common/icon-nav-flow.svg");
}

.p-header__drawer-link--question .p-header__drawer-text::before {
  mask-image: url("../img/common/icon-nav-question.svg");
}

.p-header__drawer-cta {
  flex-shrink: 0;
  background-color: #ffffff;
  margin-top: 3.75rem;
}

.p-header__drawer-cta-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.625rem;
}

@media screen and (max-width: 767px) {
  .p-header__nav {
    overflow-x: auto;
    justify-content: flex-start;
  }
  .p-header__nav-list {
    min-width: max-content;
  }
  .p-header__nav-item {
    width: 8.75rem;
  }
  .p-header__nav-text {
    font-size: 0.75rem;
  }
}
@media (any-hover: hover) {
  .p-header__nav-link:hover {
    background-color: rgba(255, 255, 255, 0.2);
  }
  .p-header__hamburger:hover {
    opacity: 0.7;
  }
  .p-header__drawer-link:hover {
    opacity: 0.7;
  }
}
@media screen and (max-width: 767px) {
  .p-footer {
    padding-block: 0 5.625rem;
  }
}

@media screen and (max-width: 767px) {
  .p-footer__top {
    flex-direction: column;
    height: auto;
  }
}

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

.p-footer__top-logo-image {
  width: 13.125rem;
  height: 3.75rem;
}
@media screen and (max-width: 767px) {
  .p-footer__top-logo-image {
    width: 9.375rem;
    height: 2.6875rem;
  }
}

.p-footer__top-logo-text {
  display: grid;
  gap: 0.3125rem;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.75rem;
  color: #000000;
}
@media screen and (max-width: 767px) {
  .p-footer__top-logo-text {
    font-size: 0.625rem;
    text-align: center;
  }
}

.p-footer__top-phone {
  display: grid;
  align-content: center;
  justify-items: center;
  width: 18.75rem;
  height: 5.625rem;
  background-color: #ffffff;
  border: 0.0625rem solid #6d6c6c;
  border-radius: 0.625rem;
  padding-top: 0.5rem;
  padding-left: 0.5625rem;
  padding-right: 0.5625rem;
}
@media screen and (max-width: 767px) {
  .p-footer__top-phone {
    width: 100%;
    max-width: 18.75rem;
    height: 4.375rem;
  }
}

.p-footer__top-phone-label {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  color: #1a3347;
}

.p-footer__top-phone-number {
  display: flex;
  align-items: center;
  gap: 0.3125rem;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 2.375rem;
  font-weight: bold;
  color: #008cff;
}
@media screen and (max-width: 767px) {
  .p-footer__top-phone-number {
    font-size: 1.75rem;
  }
}

.p-footer__top-phone-icon {
  width: 2.5rem;
  height: 2.5rem;
}

.p-footer__top-phone-hours {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.875rem;
  color: #000000;
}

.p-footer__top-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 18.75rem;
  height: 5rem;
  background-color: #ff9d00;
  border-radius: 3.125rem;
  box-shadow: 0 0.25rem 0 0 #d18102;
  text-decoration: none;
  gap: 0.625rem;
}
@media screen and (max-width: 767px) {
  .p-footer__top-button {
    width: 100%;
    max-width: 18.75rem;
    height: 3.75rem;
  }
}

.p-footer__top-button-icon {
  width: 2.1875rem;
  height: 2.375rem;
}

.p-footer__top-button-text {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1rem;
  font-weight: bold;
  color: #ffffff;
  line-height: 1.5;
  text-shadow: 0 0 0.0625rem rgba(0, 0, 0, 0.25);
}

.p-footer__top-button-arrow {
  width: 0.875rem;
  height: 0.4375rem;
  transform: rotate(90deg);
}

.p-footer__nav {
  padding-block: 2.5rem;
  background-color: #0277d9;
}
@media screen and (max-width: 767px) {
  .p-footer__nav {
    flex-direction: column;
    padding-block: 2.8125rem;
    gap: 1.875rem;
  }
}

.p-footer__nav-container {
  max-inline-size: 1087px;
}

.p-footer__nav-content {
  display: flex;
  align-items: flex-start;
  gap: 5rem;
}
@media screen and (max-width: 767px) {
  .p-footer__nav-content {
    flex-direction: column;
    gap: 0.9375rem;
  }
}

.p-footer__nav-content > * {
  width: calc((100% - 5rem) / 3);
}
@media screen and (max-width: 767px) {
  .p-footer__nav-content > * {
    width: auto;
  }
}

.p-footer__nav-column-wrapper {
  display: flex;
  flex-direction: column;
  gap: 0.3125rem;
}
@media screen and (max-width: 767px) {
  .p-footer__nav-column-wrapper {
    width: 100%;
    gap: 0.9375rem;
  }
}

.p-footer__nav-column {
  display: grid;
  gap: 0.9375rem;
}
@media screen and (max-width: 767px) {
  .p-footer__nav-column {
    width: 100%;
    gap: 0.3125rem;
  }
}

.p-footer__nav-column-header {
  display: flex;
  align-items: center;
  gap: 0.3125rem;
  border-bottom: 0.0625rem solid #ffffff;
}

.p-footer__nav-column-icon {
  width: 1.25rem;
  aspect-ratio: 1;
}

.p-footer__nav-column-title {
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  color: #ffffff;
}
@media screen and (max-width: 767px) {
  .p-footer__nav-column-title {
    font-size: 1rem;
  }
}

.p-footer__nav-column-title-link {
  color: inherit;
  transition: opacity 0.3s ease;
}

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

@media screen and (max-width: 767px) {
  .p-footer__nav-list--sp-2col {
    flex-direction: row;
    flex-wrap: wrap;
    column-gap: 0.9375rem;
  }
}

@media screen and (max-width: 767px) {
  .p-footer__nav-list--sp-2col .p-footer__nav-item {
    width: calc(50% - 0.46875rem);
  }
}

.p-footer__nav-link {
  display: inline-flex;
  align-items: center;
  gap: 0.3125rem;
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  color: #ffffff;
  text-decoration: none;
  padding-block: 0.3125rem;
  transition: opacity 0.3s ease;
}
@media screen and (max-width: 767px) {
  .p-footer__nav-link {
    font-size: 0.875rem;
  }
}

.p-footer__nav-link::before {
  content: "";
  width: 1rem;
  aspect-ratio: 1;
  background-color: #ffffff;
  mask-image: url("../img/common/icon-circle-arrow-right.svg");
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
  transition: background-color 0.3s;
}

.p-footer__copyright {
  display: grid;
  place-items: center;
  padding-block: 0.625rem;
  background-color: #024f90;
}
@media screen and (max-width: 767px) {
  .p-footer__copyright {
    padding-block: 0.4375rem;
  }
}

.p-footer__copyright-text {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.875rem;
  color: #ffffff;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .p-footer .p-global-cta-bar__content {
    padding-block: 0.3125rem 1.25rem;
  }
}

.p-footer .p-global-cta-bar__buttons {
  flex-direction: row;
  gap: 0.9375rem;
}
@media screen and (max-width: 767px) {
  .p-footer .p-global-cta-bar__buttons {
    gap: 0.625rem;
  }
}

.p-footer .c-button-cta-phone {
  display: inline-grid;
  grid-template-columns: 4.5rem 1fr;
  grid-template-rows: auto auto auto;
  align-items: center;
  column-gap: 0.5rem;
  row-gap: 0.1875rem;
  font-family: "Noto Sans JP", sans-serif;
  text-decoration: none;
  cursor: pointer;
  transition: opacity 0.3s;
}
@media screen and (max-width: 767px) {
  .p-footer .c-button-cta-phone {
    display: none;
    grid-template-columns: 3.75rem 1fr;
    column-gap: 0.3125rem;
  }
}

.p-footer .c-button-cta-phone__icon {
  align-self: center;
  grid-column: 1;
  grid-row: 1/4;
  width: 4.5rem;
  aspect-ratio: 1;
}
@media screen and (max-width: 767px) {
  .p-footer .c-button-cta-phone__icon {
    width: 3.75rem;
  }
}

.p-footer .c-button-cta-phone__label {
  grid-column: 2;
  grid-row: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  font-weight: 700;
  color: #008cff;
  line-height: 1;
  letter-spacing: 0;
}
@media screen and (max-width: 767px) {
  .p-footer .c-button-cta-phone__label {
    letter-spacing: -0.08em;
  }
}

.p-footer .c-button-cta-phone__label::before,
.p-footer .c-button-cta-phone__label::after {
  content: "";
  height: 0.125rem;
  width: 1.875rem;
  flex-grow: 1;
  background-color: #008cff;
  border-radius: 0.3125rem;
  margin-inline: 0.25rem;
}

@media screen and (max-width: 767px) {
  .p-footer .c-button-cta-phone__label::before {
    height: 0.0625rem;
    width: 0.9375rem;
  }
}

@media screen and (max-width: 767px) {
  .p-footer .c-button-cta-phone__label::after {
    height: 0.0625rem;
    width: 0.9375rem;
  }
}

.p-footer .c-button-cta-phone__label::before {
  margin-right: 0.25rem;
}

.p-footer .c-button-cta-phone__label::after {
  margin-left: 0.25rem;
}

.p-footer .c-button-cta-phone__number {
  grid-column: 2;
  grid-row: 2;
  font-family: "Roboto Condensed", "Noto Sans JP", sans-serif;
  font-size: 3.125rem;
  font-weight: 700;
  color: #008cff;
  line-height: 1;
  letter-spacing: 0;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-footer .c-button-cta-phone__number {
    font-size: 2.6875rem;
    letter-spacing: -0.03em;
  }
}

.p-footer .c-button-cta-phone__hours {
  grid-column: 2/3;
  grid-row: 3;
  font-size: 0.875rem;
  font-weight: 500;
  color: #1a3347;
  justify-self: center;
  line-height: 1;
  letter-spacing: 0;
}

.p-footer .c-button-cta-web {
  display: inline-grid;
  grid-template-columns: auto 1fr auto;
  column-gap: 0.75rem;
  align-items: center;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  width: min(18.75rem, 100%);
  color: #ffffff;
  padding-block: 1rem;
  padding-inline: 2.8125rem 1.25rem;
  border-radius: 3.125rem;
  background-color: #ff9d00;
  box-shadow: 0 0.25rem 0 0 #d09806;
  text-decoration: none;
  cursor: pointer;
  text-shadow: 0 0 0.125rem rgba(0, 0, 0, 0.25);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .p-footer .c-button-cta-web {
    column-gap: 0.3125rem;
    font-size: 0.875rem;
    border-radius: 0.625rem;
    padding-block: 0.3125rem;
    padding-inline: 0.9375rem;
    box-shadow: none;
  }
}

.p-footer .c-button-cta-web::before {
  content: "";
  width: 2.8125rem;
  aspect-ratio: 35/38;
  background-image: url("../img/common/icon-web-apply-shadow.webp");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
@media screen and (max-width: 767px) {
  .p-footer .c-button-cta-web::before {
    width: 3.125rem;
  }
}

.p-footer .c-button-cta-web::after {
  content: "";
  justify-self: center;
  width: 0.9375rem;
  aspect-ratio: 7/14;
  background-color: #ffffff;
  mask-image: url("../img/common/icon-arrow-right-shadow.webp");
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
}

.p-footer .c-button-cta-phone-sp {
  display: none;
  grid-template-columns: auto 1fr auto;
  column-gap: 0.75rem;
  align-items: center;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  width: min(18.75rem, 100%);
  color: #ffffff;
  padding-block: 1rem;
  padding-inline: 2.8125rem 1.25rem;
  border-radius: 3.125rem;
  background-color: #008cff;
  text-decoration: none;
  cursor: pointer;
  text-shadow: 0 0 0.125rem rgba(0, 0, 0, 0.25);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .p-footer .c-button-cta-phone-sp {
    display: inline-grid;
    column-gap: 0.3125rem;
    font-size: 0.875rem;
    border-radius: 0.625rem;
    padding-block: 0.625rem;
    padding-inline: 0.3125rem;
    box-shadow: none;
  }
}

.p-footer .c-button-cta-phone-sp::before {
  content: "";
  width: 3.125rem;
  aspect-ratio: 1;
  background-color: #ffffff;
  mask-image: url("../img/common/icon-phone.svg");
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
}
@media screen and (max-width: 767px) {
  .p-footer .c-button-cta-phone-sp::before {
    width: 3.125rem;
  }
}

.p-footer .c-button-cta-phone-sp::after {
  content: "";
  justify-self: center;
  width: 0.9375rem;
  aspect-ratio: 7/14;
  background-color: #ffffff;
  mask-image: url("../img/common/icon-arrow-right-shadow.webp");
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
}

@media (any-hover: hover) {
  .p-footer .c-button-cta-phone:hover {
    opacity: 0.8;
  }
  .p-footer .c-button-cta-web:hover {
    transform: translateY(0.125rem);
    box-shadow: 0 0.125rem 0 0 #d09806;
  }
  .p-footer .c-button-cta-phone-sp:hover {
    transform: translateY(0.125rem);
    box-shadow: 0 0.125rem 0 0 #d09806;
  }
  .p-footer__nav-column-title-link:hover {
    opacity: 0.8;
  }
  .p-footer__nav-link:hover {
    opacity: 0.8;
  }
}
.p-cta-section {
  border-image: linear-gradient(#fffdee 0 0) fill 0//0 100lvi;
  padding-top: 3.125rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-cta-section {
    padding: 1.125rem 0 1.875rem;
    overflow: hidden;
  }
}

.p-cta-section__container {
  position: relative;
  margin-inline: auto;
  max-inline-size: 1070px;
  padding-inline: 13.5px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-cta-section__container {
    max-width: 26.875rem;
    overflow: hidden;
  }
}

.p-cta-section__content {
  position: relative;
  display: inline-grid;
  grid-template-rows: auto auto;
  gap: 1.75rem 0;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .p-cta-section__content {
    width: 100%;
    gap: 1.375rem;
    justify-items: center;
  }
}

.p-cta-section__title {
  grid-row: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.3125rem;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: #024f90;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .p-cta-section__title {
    align-items: flex-end;
    gap: 0.9375rem;
    font-size: 1.125rem;
    text-align: center;
    padding-top: 0.625rem;
  }
}

.p-cta-section__title::before,
.p-cta-section__title::after {
  content: "";
  width: 1.25rem;
  height: 2.5rem;
  background-color: #024f90;
  mask-image: url("data:image/svg+xml,%3Csvg width='3' height='40' viewBox='0 0 3 40' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1.5 0V40' stroke='%23024f90' stroke-width='3'/%3E%3C/svg%3E");
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
}
@media screen and (max-width: 767px) {
  .p-cta-section__title::before,
  .p-cta-section__title::after {
    width: 0.1875rem;
    height: 2.8125rem;
    flex-shrink: 0;
  }
}

.p-cta-section__title::before {
  transform: rotate(330deg);
}
@media screen and (max-width: 767px) {
  .p-cta-section__title::before {
    transform: rotate(340deg);
  }
}

.p-cta-section__title::after {
  transform: rotate(210deg) scaleY(-1);
}
@media screen and (max-width: 767px) {
  .p-cta-section__title::after {
    transform: rotate(200deg) scaleY(-1);
  }
}

.p-cta-section__buttons {
  grid-row: 2;
  display: flex;
  align-items: center;
  gap: 1.5625rem;
  justify-content: center;
  padding-bottom: 3.125rem;
}
@media screen and (max-width: 767px) {
  .p-cta-section__buttons {
    gap: 0.9375rem;
    width: 100%;
    padding-bottom: 10px;
    margin-top: -0.3125rem;
  }
}

@media screen and (max-width: 767px) {
  .p-cta-section__buttons .c-button-sp-phone,
  .p-cta-section__buttons .c-button-cta-web {
    width: 100%;
    max-width: 21.875rem;
  }
}

@media screen and (max-width: 767px) {
  .p-cta-section__buttons .c-button-sp-phone_icon {
    content: "";
    position: absolute;
    top: 0.4375rem;
    right: 1.9375rem;
    width: 3.75rem;
    max-width: 3.75rem;
    max-height: 3.75rem;
  }
}

.p-cta-section__buttons .c-button-sp-phone__label {
  padding-left: 2.375rem;
}

.p-cta-section__buttons .c-button-sp-phone__number-wrapper {
  padding-left: 2.125rem;
}

.p-cta-section__buttons .c-button-sp-phone__hours {
  padding-left: 2.6875rem;
}

@media screen and (max-width: 767px) {
  .p-cta-section__buttons .c-button-cta-web {
    padding-left: 1.625rem;
    line-height: 1.25em;
  }
}

.p-cta-section__person-left {
  position: absolute;
  left: -8.4375rem;
  bottom: 0;
  width: 8.625rem;
  aspect-ratio: 138/166;
}
@media screen and (max-width: 767px) {
  .p-cta-section__person-left {
    left: -0.9375rem;
    top: 0.1875rem;
    bottom: auto;
    width: 3.75rem;
  }
}

.p-cta-section__person-right {
  position: absolute;
  right: -12.1875rem;
  bottom: 0;
  width: 12.875rem;
  aspect-ratio: 206/197;
}
@media screen and (max-width: 767px) {
  .p-cta-section__person-right {
    right: -1.375rem;
    top: -0.3125rem;
    bottom: auto;
    width: 5rem;
  }
}

.p-global-cta-bar {
  position: relative;
  background-color: #ffffff;
}

.p-global-cta-bar__content {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.625rem;
  padding-block: 0.8125rem;
}
@media screen and (max-width: 767px) {
  .p-global-cta-bar__content {
    padding-block: 0.3125rem 0;
    flex-direction: column;
    gap: 1.25rem;
  }
}

.p-global-cta-bar__logo {
  display: flex;
  gap: 0.625rem;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .p-global-cta-bar__logo {
    width: 100%;
    flex-direction: column;
    gap: 0;
  }
}

.p-global-cta-bar__logo-image {
  width: 13.125rem;
  aspect-ratio: 210/60;
  transition: opacity 0.3s ease;
}
@media screen and (max-width: 767px) {
  .p-global-cta-bar__logo-image {
    width: 14.125rem;
  }
}

.p-global-cta-bar__logo-text {
  display: flex;
  flex-direction: column;
  gap: 0.3125rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 0.75rem;
  color: #000000;
}
@media screen and (max-width: 767px) {
  .p-global-cta-bar__logo-text {
    color: #ffffff;
    border-image: linear-gradient(#0277d9 0 0) fill 0//0 100lvi;
    flex-direction: row;
    font-size: 0.625rem;
    text-align: center;
    width: 100%;
    justify-content: center;
  }
}

.p-global-cta-bar__buttons {
  display: flex;
  align-items: center;
  gap: 0.875rem;
}
@media screen and (max-width: 767px) {
  .p-global-cta-bar__buttons {
    flex-direction: column;
    width: 100%;
  }
}

.p-global-cta-bar__buttons .c-button-cta-phone {
  grid-template-columns: 3.875rem 1fr;
  column-gap: 0.3125rem;
}

.p-global-cta-bar__buttons .c-button-cta-phone__label {
  color: #1a3347;
  font-weight: 500;
  font-size: 0.875rem;
}

.p-global-cta-bar__buttons .c-button-cta-phone__label::before,
.p-global-cta-bar__buttons .c-button-cta-phone__label::after {
  display: none;
}

.p-global-cta-bar__buttons .c-button-cta-phone__number {
  font-size: 2.375rem;
}
@media screen and (max-width: 767px) {
  .p-global-cta-bar__buttons .c-button-cta-phone__number {
    font-size: 1.75rem;
  }
}

.p-global-cta-bar__buttons .c-button-cta-web {
  padding-right: 2.375rem;
}

.p-global-cta-bar__buttons .c-button-cta-web::after {
  right: 0.875rem;
}

.p-global-cta-phone {
  display: inline-grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto auto;
  align-items: center;
  column-gap: 0;
  row-gap: 0.1875rem;
  font-family: "Noto Sans JP", sans-serif;
  transition: opacity 0.3s;
}
@media screen and (max-width: 767px) {
  .p-global-cta-phone {
    width: min(10.9375rem, 100%);
    border-radius: 0.625rem;
    background-color: #008cff;
  }
}

.p-global-cta-phone::before {
  display: none;
}
@media screen and (max-width: 767px) {
  .p-global-cta-phone::before {
    display: block;
    content: "";
    width: 2.1875rem;
    aspect-ratio: 35/38;
    background-color: #ffffff;
    mask-image: url("../img/common/icon-phone.svg");
    mask-repeat: no-repeat;
    mask-position: center;
    mask-size: contain;
  }
}

.p-global-cta-phone::after {
  display: none;
}
@media screen and (max-width: 767px) {
  .p-global-cta-phone::after {
    display: block;
    content: "";
    justify-self: center;
    width: 0.9375rem;
    aspect-ratio: 7/14;
    background-color: #ffffff;
    mask-image: url("../img/common/icon-arrow-right-shadow.webp");
    mask-repeat: no-repeat;
    mask-position: center;
    mask-size: contain;
  }
}

.p-global-cta-phone__icon {
  align-self: center;
  grid-column: 1;
  grid-row: 1/4;
  width: 4.5rem;
  aspect-ratio: 1;
}
@media screen and (max-width: 767px) {
  .p-global-cta-phone__icon {
    display: none;
  }
}

.p-global-cta-phone__label {
  grid-column: 2;
  grid-row: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  font-weight: 500;
  color: #1a3347;
  line-height: 1;
  letter-spacing: 0;
}
@media screen and (max-width: 767px) {
  .p-global-cta-phone__label {
    letter-spacing: -0.08em;
  }
}

.p-global-cta-phone__number {
  grid-column: 2;
  grid-row: 2;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 2.375rem;
  font-weight: 700;
  color: #008cff;
  line-height: 1;
  letter-spacing: 0;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-global-cta-phone__number {
    display: none;
  }
}

.p-global-cta-phone__hours {
  grid-column: 2/3;
  grid-row: 3;
  font-size: 0.875rem;
  font-weight: 400;
  color: #000000;
  justify-self: center;
  line-height: 1;
  letter-spacing: 0;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .p-global-cta-phone__hours {
    display: none;
  }
}

.p-global-cta__button {
  display: inline-grid;
  grid-template-columns: auto 1fr auto;
  column-gap: 0.625rem;
  align-items: center;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.5;
  width: min(18.75rem, 100%);
  color: #ffffff;
  padding-block: 1rem;
  padding-inline: 2.8125rem 1.25rem;
  border-radius: 3.125rem;
  background-color: #ff9d00;
  box-shadow: 0 0.25rem 0 0 #d09806;
  text-decoration: none;
  cursor: pointer;
  text-shadow: 0 0 0.125rem rgba(0, 0, 0, 0.25);
  transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  text-align: left;
  letter-spacing: 0;
}
@media screen and (max-width: 767px) {
  .p-global-cta__button {
    column-gap: 0.3125rem;
    width: min(10.9375rem, 100%);
    font-size: 0.875rem;
    padding-block: 0.625rem;
    padding-inline: 0.9375rem;
    text-shadow: none;
    box-shadow: none;
    border-radius: 0.625rem;
  }
  .p-global-cta-bar__buttons .p-global-cta__button {
    width: 100%;
    border-radius: 50px;
  }
}

.p-global-cta__button::before {
  content: "";
  width: 3.125rem;
  aspect-ratio: 1;
  background-color: #ffffff;
  mask-image: url("../img/common/icon-web-apply-shadow.webp");
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
}
@media screen and (max-width: 767px) {
  .p-global-cta__button::before {
    mask-image: url("../img/common/icon-web-apply.svg");
  }
}

.p-global-cta__button::after {
  content: "";
  justify-self: center;
  width: 0.75rem;
  aspect-ratio: 7/14;
  background-color: #ffffff;
  mask-image: url("../img/common/icon-arrow-right-shadow.webp");
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
}
@media screen and (max-width: 767px) {
  .p-global-cta__button::after {
    mask-image: url("../img/common/icon-arrow-right.svg");
  }
}

@media screen and (max-width: 767px) {
  .p-global-cta__button.p-global-cta__button-small {
    padding-block: 0.25rem;
    padding-inline: 0.625rem;
    border-radius: 0.3125rem;
    font-size: 0.875rem;
  }
}

@media screen and (max-width: 767px) {
  .p-global-cta__button.p-global-cta__button-small::before {
    width: 2.5rem;
  }
}

@media screen and (max-width: 767px) {
  .p-global-cta__button.p-global-cta__button-small::after {
    width: 0.625rem;
  }
}

@media screen and (max-width: 767px) {
  .p-global-cta__button-wrapper {
    width: 100%;
    max-width: 21.875rem;
  }
}
.p-global-cta__button-wrapper .p-global-cta__button.p-global-cta__button--phone {
  width: max-content;
  box-shadow: 0 0.25rem 0 0 #67a4d6;
}
@media screen and (max-width: 767px) {
  .p-global-cta__button-wrapper .p-global-cta__button.p-global-cta__button--phone {
    border-radius: 50px;
    width: 100%;
  }
}

.p-global-cta__button.p-global-cta__button--phone {
  background-color: #008cff;
}

.p-global-cta__button.p-global-cta__button--phone::before {
  mask-image: url("../img/common/icon-phone-white.svg");
}

@media (any-hover: hover) {
  .p-global-cta-bar__logo-image:hover {
    opacity: 0.8;
  }
  .p-global-cta-phone:hover {
    opacity: 0.8;
  }
  .p-global-cta__button:hover {
    background-color: rgba(255, 157, 0, 0.8);
  }
  .p-global-cta__button.p-global-cta__button--phone:hover {
    background-color: rgba(0, 140, 255, 0.8);
    box-shadow: 0 0.125rem 0 0 #67a4d6;
    transform: translateY(0.125rem);
  }
}
@media (any-hover: hover) and (min-width: 767px) {
  .p-global-cta__button:hover {
    transform: translateY(0.125rem);
    box-shadow: 0 0.125rem 0 0 #d09806;
    opacity: 0.8;
  }
}

.c-button-cta-phone__company.s20260704 {
  position: relative;
  top: -20px;
}
@media screen and (max-width: 767px) {
  .c-button-cta-phone__company.s20260704 {
    top: 0;
  }
}

.p-section-title {
  display: block;
  text-align: center;
}

.p-section-title__text {
  display: inline-flex;
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #024f90;
  line-height: 1.5;
  position: relative;
  gap: 0.9375rem;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .p-section-title__text {
    font-size: 1.125rem;
    gap: 0.3125rem;
  }
}

.p-section-title__text::before,
.p-section-title__text::after {
  content: "";
  flex-grow: 0;
  width: 0.75rem;
  aspect-ratio: 1;
  background-color: #ffb900;
  rotate: 45deg;
}
@media screen and (max-width: 767px) {
  .p-section-title__text::before,
  .p-section-title__text::after {
    width: 0.375rem;
  }
}

.p-section-title__text.p-section-title__text--deco-pink::before,
.p-section-title__text.p-section-title__text--deco-pink::after {
  background-color: #ff588f;
}

.p-section-title__icon {
  width: 6.25rem;
  aspect-ratio: 100/103;
  margin-top: 0.4375rem;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .p-section-title__icon {
    width: 3.375rem;
    margin-top: 0.1875rem;
  }
}

.p-section-title__icon-image {
  width: 100%;
  height: 100%;
}

.p-sub-visual {
  padding-block: 3.75rem;
  background: rgba(0, 140, 255, 0.1);
}
@media screen and (max-width: 767px) {
  .p-sub-visual {
    padding-block: 1.875rem;
  }
}

.p-sub-visual__title {
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-size: 2.875rem;
  font-weight: 700;
  color: #024f90;
  line-height: 1.4782608696;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-sub-visual__title {
    font-size: 1.375rem;
    line-height: 1.5;
  }
}

.p-sub-visual__title span {
  position: relative;
}

.p-sub-visual__title span::before,
.p-sub-visual__title span::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  width: 0.75rem;
  height: 0.75rem;
  background: #ffb900;
}
@media screen and (max-width: 767px) {
  .p-sub-visual__title span::before,
  .p-sub-visual__title span::after {
    width: 0.625rem;
    height: 0.625rem;
  }
}

.p-sub-visual__title span::before {
  left: -1.75rem;
}
@media screen and (max-width: 767px) {
  .p-sub-visual__title span::before {
    left: -1.375rem;
  }
}

.p-sub-visual__title span::after {
  right: -1.75rem;
}
@media screen and (max-width: 767px) {
  .p-sub-visual__title span::after {
    right: -1.375rem;
  }
}

.p-breadcrumbs {
  padding-block: 0.625rem;
}

.p-breadcrumbs__inner {
  display: flex;
  align-items: center;
  gap: 2.125rem;
  max-width: 75rem;
  margin-inline: auto;
  padding-inline: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-breadcrumbs__inner {
    gap: 1.5rem;
    padding-inline: 2.1875rem;
  }
}

.p-breadcrumbs span {
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.01em;
}

.p-breadcrumbs span + span {
  position: relative;
}

.p-breadcrumbs span + span::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -1.3125rem;
  transform: translateY(-50%);
  width: 0.4375rem;
  height: 0.6875rem;
  background: url(../img/common/icon-next.svg) no-repeat center center/contain;
}
@media screen and (max-width: 767px) {
  .p-breadcrumbs span + span::before {
    left: -1rem;
  }
}

.p-breadcrumbs span a {
  color: #0177d9;
}

.p-template-page__inner {
  max-width: 71.875rem;
  margin-inline: auto;
  padding-top: 6.25rem;
  padding-bottom: 6.25rem;
  padding-inline: 1.5625rem;
}
@media screen and (max-width: 767px) {
  .p-template-page__inner {
    padding-top: 2.5rem;
    padding-bottom: 3.75rem;
    padding-inline: 2.1875rem;
  }
}

.p-template-page h2 {
  position: relative;
  padding-block: 0.9375rem;
  padding-inline: 1.5625rem;
  background: rgba(0, 140, 255, 0.1);
  color: #024f90;
  font-size: 1.625rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.001em;
}
@media screen and (max-width: 767px) {
  .p-template-page h2 {
    padding-block: 0.625rem;
    padding-inline: 1.25rem;
    font-size: 1rem;
    line-height: 1.6;
  }
}

.p-template-page h2::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0.375rem;
  height: 100%;
  background-color: #024f90;
}
@media screen and (max-width: 767px) {
  .p-template-page h2::before {
    width: 0.25rem;
  }
}

.p-template-page p + h2,
.p-template-page ul + h2,
.p-template-page .wp-block-group + h2 {
  margin-top: 3.75rem;
}
@media screen and (max-width: 767px) {
  .p-template-page p + h2,
  .p-template-page ul + h2,
  .p-template-page .wp-block-group + h2 {
    margin-top: 1.875rem;
  }
}

.p-template-page ul {
  margin-top: 0.625rem;
}
@media screen and (max-width: 767px) {
  .p-template-page ul {
    margin-top: 0.9375rem;
  }
}

.p-template-page h2 + ul {
  margin-top: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-template-page h2 + ul {
    margin-top: 0.9375rem;
  }
}

.wp-block-group ul {
  margin-top: 0;
}

.p-template-page li {
  position: relative;
  padding-left: 1rem;
  line-height: 1.8;
  letter-spacing: 0.001em;
}

.p-template-page li::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0.375rem;
  transform: translateY(-50%);
  width: 0.25rem;
  height: 0.25rem;
  border-radius: 100vh;
  background: #000000;
}

.p-template-page p {
  margin-top: 1.25rem;
  line-height: 1.8;
  letter-spacing: 0.001em;
}
@media screen and (max-width: 767px) {
  .p-template-page p {
    margin-top: 0.9375rem;
    font-size: 0.875rem;
  }
}

.p-template-page p + p {
  margin-top: 0.625rem;
}
@media screen and (max-width: 767px) {
  .p-template-page p + p {
    margin-top: 0.9375rem;
  }
}

.p-template-page .wp-block-group__inner-container > p {
  margin-top: 0;
}

.p-template-page .wp-block-group {
  margin-top: 1.25rem;
  padding-block: 1.25rem;
  padding-inline: 1.875rem;
  background: #F7F7F7;
}
@media screen and (max-width: 767px) {
  .p-template-page .wp-block-group {
    margin-top: 0.9375rem;
    padding-inline: 1.25rem;
  }
}

.p-template-page a {
  display: inline;
  color: #0277d9;
  line-height: 1.8;
  text-decoration: underline;
  word-break: keep-all;
}
@media screen and (max-width: 767px) {
  .p-template-page a {
    font-size: 0.875rem;
  }
}

.wp-block-table td, .wp-block-table th {
  border: 0.0625rem solid #DDDDDD;
}
@media screen and (max-width: 767px) {
  .wp-block-table td, .wp-block-table th {
    display: block;
    width: 100%;
  }
}

.p-template-page td {
  padding-block: 1.5625rem;
  line-height: 1.5;
}

.p-template-page td:nth-of-type(1) {
  width: 24.545455%;
  padding-inline: 1.875rem;
  background: #024f90;
  color: #ffffff;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .p-template-page td:nth-of-type(1) {
    width: 100%;
    padding-block: 0.9375rem;
    padding-inline: 1.25rem;
    font-size: 0.875rem;
  }
}

.p-template-page td:nth-of-type(2) {
  width: 75.454545%;
  padding-inline: 2.5rem;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .p-template-page td:nth-of-type(2) {
    width: 100%;
    padding-block: 1rem;
    padding-inline: 1.25rem;
    font-size: 0.875rem;
  }
}

.p-campaign__container {
  max-inline-size: 1100px;
}

.p-campaign__content {
  padding-top: 5rem;
  padding-bottom: 5rem;
}
@media screen and (max-width: 767px) {
  .p-campaign__content {
    padding-top: 2.5rem;
    padding-bottom: 3.75rem;
  }
}

.p-campaign__list {
  display: grid;
  gap: 3.75rem;
}
@media screen and (max-width: 767px) {
  .p-campaign__list {
    gap: 2.5rem;
  }
}

.p-campaign__item {
  display: grid;
  justify-content: center;
  gap: 1.25rem;
}

.p-campaign__item-title {
  background-color: rgba(0, 140, 255, 0.1);
  border-left: 0.375rem solid #024f90;
  padding: 0.9375rem 1.25rem;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.625rem;
  font-weight: 700;
  color: #024f90;
  line-height: 1.1923076923;
  letter-spacing: 0;
}
@media screen and (max-width: 767px) {
  .p-campaign__item-title {
    font-size: 1rem;
    padding: 0.625rem 0.9375rem;
    border-left-width: 0.25rem;
    line-height: 1.625;
  }
}

.p-campaign__item-thumbnail {
  width: 100%;
}

.p-campaign__item-note {
  margin-top: 0.25rem;
  font-size: 0.875rem;
}

.p-campaign__item-button {
  text-align: center;
}

.p-option__container {
  max-inline-size: 1100px;
}

.p-option__content {
  padding-top: 6.25rem;
  padding-bottom: 6.25rem;
}
@media screen and (max-width: 767px) {
  .p-option__content {
    padding-top: 2.5rem;
    padding-bottom: 3.75rem;
  }
}

.p-option__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto 1fr auto;
  gap: 3.125rem;
}
@media screen and (max-width: 767px) {
  .p-option__list {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
}

.p-option__item {
  display: grid;
  grid-template-areas: "thumbnail" "title" "excerpt" "link";
  grid-template-rows: subgrid;
  grid-row: span 4;
  background-color: #ffffff;
  border-radius: 0.625rem;
  box-shadow: 0 0 0.3125rem rgba(0, 0, 0, 0.2);
  overflow: hidden;
  padding-bottom: 1.875rem;
  gap: 0.625rem 0;
}
@media screen and (max-width: 767px) {
  .p-option__item {
    grid-template-areas: "thumbnail title" "excerpt excerpt" "link link";
    grid-template-columns: 9.375rem 1fr;
    grid-row: span 3;
    gap: 0.5rem 0.625rem;
    padding: 1.25rem;
    border-radius: 0.9375rem;
  }
}

.p-option__item-thumbnail {
  place-self: center;
  grid-area: thumbnail;
  width: 100%;
  aspect-ratio: 320/200;
  overflow: clip;
}
@media screen and (max-width: 767px) {
  .p-option__item-thumbnail {
    aspect-ratio: 150/90;
    border-radius: 0;
    margin-left: 0;
    margin-right: 0;
    padding: 0;
  }
}

.p-option__item-thumbnail-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.p-option__item-title {
  grid-area: title;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  color: #008cff;
  line-height: 1.2222222222;
  letter-spacing: 0;
  padding-inline: 1.25rem;
  margin-top: 0.3125rem;
}
@media screen and (max-width: 767px) {
  .p-option__item-title {
    text-align: center;
    line-height: 1.1875;
    font-size: 1rem;
    padding: 0;
    place-self: center;
    margin-top: 0;
  }
}

.p-option__item-excerpt {
  grid-area: excerpt;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  color: #1a3347;
  line-height: 1.8;
  letter-spacing: 0;
  padding-inline: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-option__item-excerpt {
    padding: 0;
  }
}

.p-option__item-link {
  grid-area: link;
  justify-self: end;
  display: inline-flex;
  gap: 0.625rem;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  color: #024f90;
  line-height: 1.5;
  align-items: center;
  text-decoration: none;
  padding-inline: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-option__item-link {
    padding: 0;
    margin-top: 0.125rem;
    justify-self: center;
  }
}

.p-option__item-link::after {
  content: "";
  width: 1.25rem;
  aspect-ratio: 1;
  background-color: #024f90;
  mask-image: url("../img/common/icon-circle-arrow-right.svg");
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
}

@media (any-hover: hover) {
  .p-option__item-link:hover {
    opacity: 0.8;
  }
}
.p-page-content {
  padding-top: 6.25rem;
  padding-bottom: 6.25rem;
}
@media screen and (max-width: 767px) {
  .p-page-content {
    padding-top: 2.5rem;
    padding-bottom: 3.75rem;
  }
}

.p-page-content > :first-child {
  margin-top: 0 !important;
}

.p-page-content:has(> .p-cta-section:last-child),
.p-page-content:has(> .p-faq-section:last-child),
.p-page-content:has(> .p-related-options:last-child) {
  padding-bottom: 0;
}
@media screen and (max-width: 767px) {
  .p-page-content:has(> .p-cta-section:last-child),
  .p-page-content:has(> .p-faq-section:last-child),
  .p-page-content:has(> .p-related-options:last-child) {
    padding-bottom: 0;
  }
}

.p-related-options {
  display: grid;
  gap: 1.875rem;
  text-align: center;
  padding-block: 1.875rem;
}
@media screen and (max-width: 767px) {
  .p-related-options {
    padding-block: 1.25rem 3.75rem;
  }
}

.p-related-options__title {
  display: inline-flex;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: #024f90;
  line-height: 1.2142857143;
  position: relative;
  gap: 0.9375rem;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .p-related-options__title {
    font-size: 1rem;
    line-height: 1.1875;
    gap: 0.3125rem;
  }
}

.p-related-options__title::before,
.p-related-options__title::after {
  content: "";
  flex-grow: 0;
  width: 0.75rem;
  aspect-ratio: 1;
  background-color: #ffb900;
  rotate: 45deg;
}
@media screen and (max-width: 767px) {
  .p-related-options__title::before,
  .p-related-options__title::after {
    width: 0.375rem;
  }
}

.p-related-options__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  padding-block: 3.125rem;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .p-related-options__list {
    padding-block: 0;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.9375rem 0.625rem;
  }
}

.p-related-options__item {
  display: grid;
  grid-template-areas: "thumbnail" "title" "link";
  place-items: center;
  grid-template-rows: subgrid;
  grid-row: span 3;
  background-color: #ffffff;
  border-radius: 0.625rem;
  box-shadow: 0 0 0.3125rem rgba(0, 0, 0, 0.2);
  overflow: hidden;
  padding-bottom: 1.25rem;
  gap: 0;
}
.p-related-options__item-thumbnail {
  place-self: center;
  grid-area: thumbnail;
  aspect-ratio: 260/163;
}
@media screen and (max-width: 767px) {
  .p-related-options__item-thumbnail {
    aspect-ratio: 175/120;
  }
}

.p-related-options__item-thumbnail-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  vertical-align: bottom;
}

.p-related-options__item-title {
  grid-area: title;
  align-self: start;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #008cff;
  line-height: 1.1875;
  letter-spacing: 0;
  padding-inline: 0.3125rem;
  margin-top: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-related-options__item-title {
    text-align: center;
    line-height: 1.6;
    font-size: 0.875rem;
    margin-top: 0.625rem;
  }
}

.p-related-options__item-link {
  grid-area: link;
  display: inline-flex;
  gap: 0.625rem;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  color: #024f90;
  line-height: 1.5;
  align-items: center;
  text-decoration: none;
  padding-inline: 0.3125rem;
  margin-top: 0.625rem;
}
@media screen and (max-width: 767px) {
  .p-related-options__item-link {
    gap: 0.3125rem;
    font-size: 0.75rem;
    margin-top: 0.625rem;
  }
}

.p-related-options__item-link::after {
  content: "";
  width: 1.25rem;
  aspect-ratio: 1;
  background-color: #024f90;
  mask-image: url("../img/common/icon-circle-arrow-right.svg");
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
}
@media screen and (max-width: 767px) {
  .p-related-options__item-link::after {
    width: 1rem;
  }
}

@media (any-hover: hover) {
  .p-related-options__item-link:hover {
    opacity: 0.8;
  }
}
.p-page-content {
  --wp--preset--font-size--small: 0.75rem;
  --wp--preset--font-size--medium: 1.125rem;
  --wp--preset--font-size--large: 1.5rem;
  --wp--preset--font-size--x-large: 2.125rem;
}
@media screen and (max-width: 767px) {
  .p-page-content {
    --wp--preset--font-size--small: 0.75rem;
    --wp--preset--font-size--medium: 0.875rem;
    --wp--preset--font-size--large: 1.25rem;
    --wp--preset--font-size--x-large: 1.75rem;
  }
}
.p-page-content .has-blue-color {
  color: #008cff;
}
.p-page-content .has-navy-color {
  color: #024f90;
}
.p-page-content .has-orange-color {
  color: #ffb900;
}
.p-page-content .has-yellow-color {
  color: #ffe653;
}
.p-page-content .has-pink-color {
  color: #ff588f;
}
.p-page-content .has-dark-navy-color {
  color: #1a3347;
}
.p-page-content .has-white-color {
  color: #ffffff;
}
.p-page-content .has-gray-color {
  color: #f7f7f7;
}
.p-page-content .has-black-color {
  color: #000000;
}
.p-page-content .has-light-beige-color {
  color: #FFFDED;
}
.p-page-content .has-light-sky-color {
  color: #E5F3FF;
}
.p-page-content .has-blue-background-color {
  background-color: #008cff;
  --bg-color: #008cff;
}
.p-page-content .has-navy-background-color {
  background-color: #024f90;
  --bg-color: #024f90;
}
.p-page-content .has-orange-background-color {
  background-color: #ffb900;
  --bg-color: #ffb900;
}
.p-page-content .has-yellow-background-color {
  background-color: #ffe653;
  --bg-color: #ffe653;
}
.p-page-content .has-pink-background-color {
  background-color: #ff588f;
  --bg-color: #ff588f;
}
.p-page-content .has-dark-navy-background-color {
  background-color: #1a3347;
  --bg-color: #1a3347;
}
.p-page-content .has-white-background-color {
  background-color: #ffffff;
  --bg-color: #ffffff;
}
.p-page-content .has-gray-background-color {
  background-color: #f7f7f7;
  --bg-color: #f7f7f7;
}
.p-page-content .has-black-background-color {
  background-color: #000000;
  --bg-color: #000000;
}
.p-page-content .has-light-beige-background-color {
  background-color: #FFFDED;
  --bg-color: #FFFDED;
}
.p-page-content .has-light-sky-background-color {
  background-color: #E5F3FF;
  --bg-color: #E5F3FF;
}
.p-page-content .is-style-img-full {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}
@media screen and (max-width: 767px) {
  .p-page-content .is-style-img-full-sp {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
  }
}
.p-page-content .is-style-bg-full {
  border-image: linear-gradient(var(--bg-color, transparent) 0 0) fill 0//0 100lvi;
}
@media screen and (max-width: 767px) {
  .p-page-content .is-style-pc-only {
    display: none;
  }
}
.p-page-content .is-style-sp-only {
  display: none;
}
@media screen and (max-width: 767px) {
  .p-page-content .is-style-sp-only {
    display: revert;
  }
}
.p-page-content h2.wp-block-heading {
  margin-top: 3.75rem;
  margin-bottom: 2.5rem;
  background-color: rgba(0, 140, 255, 0.1);
  border-left: 0.375rem solid #024f90;
  padding: 0.9375rem 1.5625rem;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.625rem;
  font-weight: 700;
  color: #024f90;
  line-height: 1.1923076923;
  letter-spacing: 0;
}
@media screen and (max-width: 767px) {
  .p-page-content h2.wp-block-heading {
    margin-top: 2.5rem;
    margin-bottom: 1.25rem;
    font-size: 1rem;
    line-height: 1.6;
    padding: 0.625rem 1.25rem;
    border-left-width: 0.25rem;
    line-height: 1.625;
  }
}
.p-page-content h3.wp-block-heading {
  position: relative;
  display: block;
  margin-top: 3.75rem;
  margin-bottom: 1.25rem;
  text-align: center;
  font-size: 1.25rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  color: #024f90;
  line-height: 1;
  padding-block: 0.375rem 1.375rem;
  letter-spacing: 0;
}
@media screen and (max-width: 767px) {
  .p-page-content h3.wp-block-heading {
    padding-block: 0 0.875rem;
    font-size: 1rem;
    line-height: 1.1875;
    margin-top: 2.5rem;
  }
}
.p-page-content h3.wp-block-heading::after {
  content: "";
  position: absolute;
  bottom: 0.375rem;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 0.3125rem;
  background-image: url("../img/common/icon-section-border-sp.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
@media screen and (max-width: 767px) {
  .p-page-content h3.wp-block-heading::after {
    width: 1.375rem;
    height: 0.25rem;
    background-image: url("../img/common/icon-section-border-sp.svg");
  }
}
.p-page-content h4.wp-block-heading {
  position: relative;
  margin-top: 1.25rem;
  margin-bottom: 0.625rem;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  color: #024f90;
  line-height: 1.6;
  letter-spacing: 0;
  padding-block: 0.25rem 0.1875rem;
  padding-left: 1.3em;
}
@media screen and (max-width: 767px) {
  .p-page-content h4.wp-block-heading {
    font-size: 1rem;
    padding-block: 0.1875rem 0;
  }
}
.p-page-content h4.wp-block-heading::before {
  content: "";
  position: absolute;
  top: 0.35lh;
  left: 0;
  width: 0.63lh;
  aspect-ratio: 1;
  background-color: #024f90;
}
@media screen and (max-width: 767px) {
  .p-page-content h4.wp-block-heading::before {
    top: 0.33lh;
  }
}
.p-page-content p {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.8;
  margin-top: 0.625rem;
  letter-spacing: 0;
}
@media screen and (max-width: 767px) {
  .p-page-content p {
    font-size: 0.875rem;
    margin-top: 0.625rem;
  }
}
.p-page-content .is-style-font-rounded {
  font-family: "M PLUS Rounded 1c", sans-serif;
}
.p-page-content .is-style-center-sp-left {
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-page-content .is-style-center-sp-left {
    text-align: left;
  }
}
.p-page-content ul.wp-block-list {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.8;
  margin-top: 0.625rem;
  list-style: none;
}
@media screen and (max-width: 767px) {
  .p-page-content ul.wp-block-list {
    font-size: 0.875rem;
  }
}
.p-page-content ul.wp-block-list ul.wp-block-list {
  margin-top: 0;
}
.p-page-content ul.wp-block-list li {
  position: relative;
  padding-left: 1em;
}
.p-page-content ul.wp-block-list li::before {
  content: "・";
  display: inline-block;
  position: absolute;
  left: 0;
  top: 0;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1em;
  font-weight: 500;
  color: currentColor;
}
.p-page-content ul.wp-block-list.is-style-note-marker li::before {
  content: "※";
}
.p-page-content ol.wp-block-list {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.8;
  margin-top: 0.625rem;
  list-style: none;
  counter-reset: list-counter;
}
@media screen and (max-width: 767px) {
  .p-page-content ol.wp-block-list {
    font-size: 0.875rem;
  }
}
.p-page-content ol.wp-block-list ol.wp-block-list,
.p-page-content ul.wp-block-list ul.wp-block-list {
  margin-top: 0;
}
.p-page-content ol.wp-block-list li {
  position: relative;
  padding-left: 1em;
  counter-increment: list-counter;
}
.p-page-content ol.wp-block-list li::before {
  content: counter(list-counter) ".";
  display: inline-block;
  position: absolute;
  left: 0;
  top: 0;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1em;
  font-weight: 500;
  color: currentColor;
}
.p-page-content ol.wp-block-list.is-style-note-marker li {
  padding-left: 2em;
}
.p-page-content ol.wp-block-list.is-style-note-marker li::before {
  content: "※" counter(list-counter);
}
.p-page-content .wp-block-image {
  margin-top: 1.25rem;
}
.p-page-content .wp-block-image img {
  width: 100%;
  height: auto;
}
.p-page-content .wp-block-buttons {
  margin-top: 1.875rem;
}
@media screen and (max-width: 767px) {
  .p-page-content .wp-block-buttons {
    margin-top: 1.25rem;
  }
}
.p-page-content .wp-block-buttons .wp-block-button__link {
  display: inline-grid;
  grid-template-columns: 1fr auto 1fr;
  column-gap: 0.625rem;
  align-items: center;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.125rem;
  line-height: 1.2;
  font-weight: 700;
  width: 25rem;
  color: #024f90;
  padding: 1.0625rem 1.25rem;
  border-radius: 3.75rem;
  border: 0.125rem solid #024f90;
  background-color: #ffffff;
  text-decoration: none;
  cursor: pointer;
  transition: opacity 0.3s ease;
}
@media screen and (max-width: 767px) {
  .p-page-content .wp-block-buttons .wp-block-button__link {
    font-size: 0.875rem;
    width: 18.75rem;
    padding: 0.875rem 1rem;
  }
}
.p-page-content .wp-block-button__link::before {
  content: "";
}
.p-page-content .wp-block-button__link::after {
  content: "";
  justify-self: end;
  width: 1.25rem;
  aspect-ratio: 1;
  background-color: currentColor;
  mask-image: url("../img/common/icon-circle-arrow-right.svg");
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
}
@media screen and (max-width: 767px) {
  .p-page-content .wp-block-button__link::after {
    width: 1rem;
  }
}
@media (any-hover: hover) {
  .p-page-content .wp-block-button__link:hover {
    opacity: 0.8;
  }
}
.p-page-content .wp-block-columns {
  margin-top: 1.25rem;
}
.p-page-content :where(.wp-block-columns.is-layout-flex) {
  gap: 3.125rem;
}
@media screen and (max-width: 767px) {
  .p-page-content :where(.wp-block-columns.is-layout-flex) {
    gap: 1.25rem;
  }
}
.p-page-content .wp-block-group {
  margin-top: 1.25rem;
}
.p-page-content .wp-block-group.has-background {
  padding: 1.875rem;
}
@media screen and (max-width: 767px) {
  .p-page-content .wp-block-group.has-background {
    padding: 1.25rem;
  }
}
.p-page-content .wp-block-group.has-background.is-style-bg-full {
  padding-inline: 0;
}
.p-page-content .wp-block-group :first-child {
  margin-top: 0;
}
.p-page-content .wp-block-group :is(p, ul, ol, li, a) {
  font-weight: 400;
}
.p-page-content .wp-block-flexible-table-block-table {
  margin-top: 0.9375rem;
}
.p-page-content .wp-block-media-text {
  margin-top: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-page-content .wp-block-media-text {
    gap: 1.25rem;
  }
}
.p-page-content .wp-block-media-text__content > p {
  margin-top: 0;
}
.p-page-content p > a {
  color: currentColor;
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: auto;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
  text-decoration-color: currentColor;
  transition: opacity 0.3s;
}
@media (any-hover: hover) {
  .p-page-content a:hover {
    opacity: 0.8;
  }
}

.wp-block-details {
  position: relative;
  margin-top: 1.25rem;
}

.wp-block-details summary {
  display: grid;
  grid-template: "content icon"/1fr 1.125rem;
  column-gap: 0.9375rem;
  align-items: center;
  border-radius: 0.625rem;
  overflow: clip;
  border: 0.125rem solid #0277d9;
  background-color: #ffffff;
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
  padding-left: 1.5625rem;
  padding-right: 1.5625rem;
  cursor: pointer;
  list-style: none;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 1.125rem;
  color: #024f90;
  line-height: normal;
  letter-spacing: 0;
}
@media screen and (max-width: 767px) {
  .wp-block-details summary {
    padding: 0.9375rem 0.9375rem;
    column-gap: 0.3125rem;
    font-size: 0.875rem;
    border-radius: 0.3125rem;
  }
}

.wp-block-details summary::-webkit-details-marker {
  display: none;
}

.wp-block-details summary::before,
.wp-block-details summary::after {
  content: "";
  grid-area: icon;
  place-self: center;
  background-color: #024f90;
}

.wp-block-details summary::before {
  width: 1.125rem;
  height: 0.125rem;
}

.wp-block-details summary::after {
  width: 0.125rem;
  height: 1.125rem;
  transition: opacity 0.3s ease;
}

.wp-block-details[open] summary {
  border-bottom: 0.125rem solid #0277d9;
}

.wp-block-details[open] summary::after {
  opacity: 0;
}

.wp-block-details__content-wrapper {
  padding: 1.25rem;
}
@media screen and (max-width: 767px) {
  .wp-block-details__content-wrapper {
    padding: 0.625rem 0 0 0;
  }
}

.wp-block-details__content-wrapper > p:first-child,
.wp-block-details__content-wrapper > *:first-child {
  margin-top: 0;
}

@media (prefers-reduced-motion: reduce) {
  .wp-block-details summary::after {
    transition: none;
  }
}
.p-faq-block {
  position: relative;
  width: 100%;
}

.wp-block-lazyblock-faq + .wp-block-lazyblock-faq {
  margin-top: 5rem;
}
@media screen and (max-width: 767px) {
  .wp-block-lazyblock-faq + .wp-block-lazyblock-faq {
    margin-top: 2.5rem;
  }
}

.p-faq-block__heading {
  margin-bottom: 2.5rem;
  background-color: rgba(0, 140, 255, 0.1);
  border-left: 0.375rem solid #024f90;
  padding: 0.9375rem 1.5625rem;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.625rem;
  font-weight: 700;
  color: #024f90;
  line-height: 1.1923076923;
  letter-spacing: 0;
}
@media screen and (max-width: 767px) {
  .p-faq-block__heading {
    margin-bottom: 1.25rem;
    font-size: 1rem;
    line-height: 1.6;
    padding: 0.625rem 1.25rem;
    border-left-width: 0.25rem;
    line-height: 1.625;
  }
}

.p-faq-block__items {
  display: grid;
  gap: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-faq-block__items {
    gap: 0.9375rem;
  }
}

.p-faq-block__item {
  position: relative;
  border-radius: 0.625rem;
  border: 0.125rem solid #0277d9;
  overflow: clip;
}
@media screen and (max-width: 767px) {
  .p-faq-block__item {
    border-radius: 0.3125rem;
  }
}

.p-faq-block__question {
  display: grid;
  grid-template: "qicon content icon"/auto 1fr 1.125rem;
  column-gap: 0.625rem;
  align-items: center;
  background-color: #ffffff;
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
  padding-left: 1.5625rem;
  padding-right: 1.5625rem;
  cursor: pointer;
  list-style: none;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 1.125rem;
  color: #024f90;
  line-height: normal;
  letter-spacing: 0;
}
@media screen and (max-width: 767px) {
  .p-faq-block__question {
    padding: 0.9375rem 0.9375rem;
    column-gap: 0.3125rem;
    font-size: 0.875rem;
  }
}

.p-faq-block__question::-webkit-details-marker {
  display: none;
}

.p-faq-block__question::before,
.p-faq-block__question::after {
  content: "";
  grid-area: icon;
  place-self: center;
  background-color: #024f90;
}

.p-faq-block__question::before {
  width: 1.125rem;
  height: 0.125rem;
}

.p-faq-block__question::after {
  width: 0.125rem;
  height: 1.125rem;
  transition: opacity 0.3s ease;
}

.p-faq-block__item[open] .p-faq-block__question {
  border-bottom: 0.125rem solid #0277d9;
}

.p-faq-block__item[open] .p-faq-block__question::after {
  opacity: 0;
}

.p-faq-block__question-icon {
  grid-area: qicon;
  display: grid;
  place-items: center;
  width: 2.5rem;
  height: 2.5rem;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 1.5625rem;
  color: #ffffff;
  background-color: #024f90;
  border-radius: calc(infinity * 1px);
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .p-faq-block__question-icon {
    width: 1.625rem;
    height: 1.625rem;
    font-size: 1.25rem;
  }
}

.p-faq-block__answer {
  background-color: #ffffff;
  overflow: hidden;
  transition: height 0.3s ease;
}

@media (prefers-reduced-motion: reduce) {
  .p-faq-block__answer {
    transition: none;
  }
}
.p-faq-block__answer-content {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.625rem;
  align-items: start;
  padding: 1.25rem 1.5625rem;
}
@media screen and (max-width: 767px) {
  .p-faq-block__answer-content {
    padding: 0.625rem 0.9375rem 0.9375rem;
  }
}

.p-faq-block__answer-icon {
  position: relative;
  display: grid;
  place-items: center;
  width: 2.5rem;
  height: 2.5rem;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 1.5625rem;
  color: #ffffff;
  background-color: #008cff;
  border-radius: calc(infinity * 1px);
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .p-faq-block__answer-icon {
    width: 1.625rem;
    height: 1.625rem;
    font-size: 1.25rem;
  }
}

.p-faq-block__answer-text {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 1.125rem;
  color: #024f90;
  line-height: 1.6;
  letter-spacing: 0;
}
@media screen and (max-width: 767px) {
  .p-faq-block__answer-text {
    font-size: 0.875rem;
  }
}

.p-faq-block__answer-text p {
  margin-top: 0;
  margin-bottom: 0;
}

.p-faq-block__answer-text p + p {
  margin-top: 0;
}

.p-faq-section {
  padding-block: 5rem 6.25rem;
  border-image: linear-gradient(#e4f5ff 0 0) fill 0//0 100lvi;
}
@media screen and (max-width: 767px) {
  .p-faq-section {
    padding-block: 2.5rem;
  }
}

.p-faq-section__block {
  margin-top: 3.125rem;
}
@media screen and (max-width: 767px) {
  .p-faq-section__block {
    margin-top: 1.25rem;
  }
}

/* 必須バッジ */
.ff-el-label .required {
  background-color: #ff588f;
  color: #fff;
  font-size: 0.875rem;
  padding: 0.1875rem 0.625rem;
  line-height: 1;
  border-radius: 0.1875rem;
}

.p-form__inner {
  padding-top: 0.875rem;
  padding-bottom: 6.25rem;
}
@media screen and (max-width: 767px) {
  .p-form__inner {
    padding-top: 1.25rem;
  }
}

@media screen and (max-width: 767px) {
  .p-application .p-form__inner {
    padding-bottom: 3.75rem;
  }
}

@media screen and (max-width: 767px) {
  .p-contact .p-form__inner {
    padding-bottom: 3.125rem;
  }
}

.p-form__steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6.25rem;
}
@media screen and (max-width: 767px) {
  .p-form__steps {
    gap: 1.875rem;
  }
}

.p-form__step {
  width: 6.25rem;
  height: 4.6875rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.3125rem;
}
.p-form__step-circle {
  position: relative;
  width: 3.125rem;
  height: 3.125rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 100vh;
  background: #aaaaaa;
  color: #ffffff;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1;
}

.p-form__step:not(:first-child) .p-form__step-circle::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 4.5625rem;
  transform: translateY(-50%);
  background: #aaaaaa;
  width: 6.25rem;
  height: 0.1875rem;
  border-radius: 0.1875rem;
}
@media screen and (max-width: 767px) {
  .p-form__step:not(:first-child) .p-form__step-circle::before {
    right: 4.6875rem;
    width: 1.875rem;
  }
}

.p-form__step-circle__number {
  color: #ffffff;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1;
}

.p-form__step-text {
  font-weight: 500;
  line-height: 1.2142857143;
  text-align: center;
}

.p-form__step.is-active .p-form__step-circle {
  background: #0177d9;
}

.p-form__step.is-active .p-form__step-text {
  color: #024f90;
  font-size: 0.875rem;
}

.p-form__lead {
  margin-top: 1.875rem;
  margin-bottom: 3.25rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-form__lead {
    margin-bottom: 2.125rem;
  }
}

.p-form__lead-copy {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.2083333333;
  color: #0277d9;
}
@media screen and (max-width: 767px) {
  .p-form__lead-copy {
    margin-top: 1.25rem;
    font-size: 1.125rem;
    line-height: 1.2222222222;
  }
}

.p-form__lead-copy::before,
.p-form__lead-copy::after {
  content: "";
  width: 2.25rem;
  height: 0.1875rem;
  background-color: currentColor;
  border-radius: calc(infinity * 1px);
  margin-top: 0.625rem;
}

.p-form__lead-copy::before {
  transform: rotate(70deg);
}

.p-form__lead-copy::after {
  transform: rotate(-70deg);
}

.p-form__lead-title {
  position: relative;
  font-size: 1.25rem;
  color: #024f90;
  font-weight: 700;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .p-form__lead-title {
    font-size: 1rem;
    line-height: 1.1875;
  }
}

.p-application .p-form__lead-title {
  margin-top: 2.9375rem;
}
@media screen and (max-width: 767px) {
  .p-application .p-form__lead-title {
    margin-top: 1.25rem;
  }
}

.p-form__lead-title::before {
  content: "";
  position: absolute;
  bottom: -1.0625rem;
  left: 50%;
  transform: translateX(-50%);
  width: 1.625rem;
  height: 0.375rem;
  background-image: url(../img/common/icon-dot-three.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
@media screen and (max-width: 767px) {
  .p-form__lead-title::before {
    bottom: -0.6875rem;
    width: 1.375rem;
    height: 0.25rem;
  }
}

.p-form__content {
  max-width: 71.875rem;
  margin-inline: auto;
  margin-inline: auto;
  padding-inline: 1.5625rem;
}
@media screen and (max-width: 767px) {
  .p-form__content {
    padding-inline: 0.5rem;
    max-width: 100%;
  }
}

/* 各項目 */
.p-form__item {
  display: flex;
  border-bottom: 0.0625rem solid #ddd;
}

/* 左のタイトル */
.p-form__header {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  height: 100%;
  padding: 1rem;
  padding-left: 1.875rem;
  background-color: #024f90;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .p-form__header {
    gap: 0.1875rem;
    padding-block: 0.9375rem;
    padding-inline: 1.25rem;
    border-radius: 10px 10px 0 0;
  }
}

.p-form__title {
  font-size: 1rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .p-form__title {
    font-size: 0.875rem;
  }
}

.p-form__label {
  /* 必須・任意ラベル */
  display: inline-block;
  padding: 0.1875rem 0.625rem;
  border-radius: 0.125rem;
  font-size: 0.75rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .p-form__label {
    padding: 0.1875rem 0.5rem;
  }
}

.p-form__label--required {
  /* 必須ラベル */
  background: #ff588f;
  color: #ffffff;
}

.p-form__label--optional {
  /* 任意ラベル */
  background: #ffffff;
  border: 0.0625rem solid #0177d9;
  color: #0177d9;
}

/* 転用承諾番号・事業者変更承諾番号エリア */
.p-form__note {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  margin-top: 0.625rem;
  margin-bottom: 0.3125rem;
  color: #000000;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: normal;
}

@media screen and (max-width: 767px) {
  .p-application div[data-name=ff_cn_id_1] .p-form__note {
    justify-content: space-between;
    gap: 0;
  }
}

.p-application div[data-name=ff_cn_id_7] .p-form__note {
  font-size: 1rem;
  margin-bottom: 0;
}
@media screen and (max-width: 767px) {
  .p-application div[data-name=ff_cn_id_7] .p-form__note {
    font-size: 0.875rem;
  }
}

.p-form__note-tag {
  flex-shrink: 0;
  padding: 0.1875rem 0.625rem;
  border: 0.0625rem solid #0277d9;
  border-radius: 0.1875rem;
  font-size: 0.875rem;
  color: #0277d9;
  line-height: 1.2142857143;
}

.p-form__note-small {
  margin-bottom: 0.625rem;
  color: #1a3347;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.01em;
}
@media screen and (max-width: 767px) {
  .p-form__note-small {
    margin-bottom: 1rem;
    font-size: 0.75rem;
    font-weight: 400;
  }
}

.p-form__link-group--application-category {
  /* お申し込み区分 */
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.p-form__link-text {
  position: relative;
  color: #1a3347;
  font-size: 0.75rem;
  line-height: 1.1666666667;
  letter-spacing: normal;
}

.p-form__link {
  color: #1a3347;
  text-decoration: underline;
  transition: ease-in-out, 0.3s;
}

@media (any-hover: hover) {
  .p-form__link:hover {
    opacity: 0.7;
  }
}
.p-form__input {
  /* テキストフォームの親要素 */
  margin-top: 0.625rem;
}
@media screen and (max-width: 767px) {
  .p-form__input {
    margin-top: 0.5rem;
  }
}

.p-form__input,
.p-form__input .ff-t-cell,
.p-form__input .ff-t-container,
.p-form__input input[type=number],
.p-form__input input[type=tel],
.p-form__input input[type=email] {
  /* テキストフォーム */
  width: 100%;
  max-width: 37.625rem;
}

.p-form__field-label {
  /* テキストフォーム */
  margin-top: 0.9375rem;
  color: #1a3347;
  font-weight: 700;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .p-form__field-label {
    margin-top: 0.75rem;
  }
}

@media screen and (max-width: 767px) {
  .p-form__field-label--namae {
    margin-top: 0;
  }
}

.ff-el-group[data-name=custom_html-1_2] .p-form__field-label {
  /* テキストフォーム1個目の余白を無効 */
  margin-top: 0;
}

.p-contact {
  /* お問い合わせフォーム */
}
.p-contact .ff-t-cell.ff-t-column-2 {
  align-items: flex-start;
}
.p-contact .ff-el-input--content {
  display: block;
}
.p-contact .fluentform .ff-el-group:before {
  content: none;
}
.p-contact .fluentform .ff-el-group.ff_list_buttons .ff-el-form-check {
  /* チェックボックスの順番を初期値へ */
  order: 0;
  margin-bottom: 0;
}
.p-contact .fluentform .ff-el-group.ff_list_buttons .ff-el-form-check input {
  width: 100%;
  height: 100%;
}
.p-contact div[data-name=ff_cn_id_4] .frm-fluent-form .ff-t-cell:last-of-type {
  padding-inline: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-contact div[data-name=ff_cn_id_4] .frm-fluent-form .ff-t-cell:last-of-type {
    width: 100%;
    padding: 1.25rem;
  }
}

.p-form {
  /* ↓ プラグイン(Fluent Forms)のスタイル ↓ */
}
.p-form .fluentform .clearfix:after,
.p-form .fluentform .ff-el-group:after,
.p-form .fluentform .ff-el-repeat .ff-el-input--content:after,
.p-form .fluentform .ff-step-body:after {
  content: none;
}
.p-form .frm-fluent-form .ff-t-container {
  gap: 1rem;
}
.p-form .fluentform .ff_el_checkable_photo_holders {
  display: flex;
  gap: 2%;
  margin-bottom: 20px !important;
}
@media screen and (max-width: 767px) {
  .p-form .fluentform .ff_el_checkable_photo_holders {
    gap: 2%;
  }
}
.p-form .fluentform .ff-el-group.ff_list_buttons .ff-el-form-check.ff-el-image-holder {
  width: 23% !important;
  padding: 10px;
  margin-bottom: 4%;
}
.p-form .fluentform .ff-el-group.ff_list_buttons .ff-el-form-check.ff-el-image-holder span {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
}
@media screen and (max-width: 767px) {
  .p-form .fluentform .ff_el_checkable_photo_holders {
    flex-wrap: wrap;
  }
  .p-form .fluentform .ff-el-group.ff_list_buttons .ff-el-form-check.ff-el-image-holder {
    width: 48% !important;
  }
}

.p-form .ff-el-error-message {
    margin-top: 0;
    color: #e74c3c;
    font-size: 90%;
    text-decoration: underline;
}

@media screen and (max-width: 767px) {
  .p-form .frm-fluent-form .ff-t-container {
    gap: 0.3rem;
    margin-bottom: 15px;
    border-bottom: 0.0625rem solid #dddddd;
    border-radius: 10px;
    display: flex;
  }
}
.p-form {
  /* ↑ プラグインのスタイル ↑ */
  /* .ff-t-container { */
}
.p-form .ff-column-container {
  display: flex;
  border: 0.0625rem solid #dddddd;
}
@media screen and (max-width: 767px) {
  .p-form .ff-column-container {
    flex-direction: column;
    border-bottom: none;
  }
  .p-form .ff-column-container[data-name=ff_cn_id_4] {
    /* 最後のセクションのみ下線追加 */
    border-bottom: 0.0625rem solid #dddddd;
  }
}
.p-form {
  /* 個人情報の同意チェック */
}
.p-form .p-form__consent {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.9375rem;
  width: 100%;
  max-width: 37.5rem;
  margin-top: 3.75rem;
  margin-inline: auto;
  padding-block: 2.875rem;
  background: #f7f7f7;
  border: none;
}
@media screen and (max-width: 767px) {
  .p-form .p-form__consent {
    margin-top: 3.125rem;
    padding-block: 1.875rem;
  }
}
.p-form .p-form__consent.ff-t-container {
  gap: 0.9375rem;
}
@media screen and (max-width: 767px) {
  .p-form .p-form__consent.ff-t-container {
    gap: 0.5625rem;
  }
}
.p-form .p-form__consent.ff-t-container .ff-t-cell.ff-t-column-1 {
  /* 左チェックボックス */
  width: fit-content;
}
.p-form .p-form__consent.ff-t-container .ff-t-cell.ff-t-column-1 .ff-el-form-check {
  margin-bottom: 0;
}
.p-form .p-form__consent.ff-t-container .ff-t-cell.ff-t-column-2 {
  /* 右テキスト */
  flex-grow: initial;
  width: auto;
  padding: 0;
}
.p-form .p-form__consent .p-form__consent-text {
  /* 個人情報の同意チェックのテキスト */
  color: #1a3347;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.3;
}
@media screen and (max-width: 767px) {
  .p-form .p-form__consent .p-form__consent-text {
    font-size: 0.75rem;
  }
}
.p-form .p-form__consent .p-form__consent-link {
  /* 個人情報の同意チェックのリンク */
  border-bottom: 0.125rem solid #1a3347;
  transition: ease-in-out, 0.3s;
}
@media (any-hover: hover) {
  .p-form .p-form__consent .p-form__consent-link:hover {
    opacity: 0.7;
  }
}
.p-form .p-form__consent .p-form__checkbox input[type=checkbox] {
  appearance: none;
  width: 1.25rem;
  height: 1.25rem;
  border: 0.125rem solid #1a3347;
  border-radius: 0.0625rem;
  background-color: #fff;
  position: relative;
  transition: all 0.13s ease-in-out;
  cursor: pointer;
}
.p-form .p-form__consent .p-form__checkbox input[type=checkbox]::after {
  content: "";
  position: absolute;
  top: 45%;
  left: 50%;
  width: 0.375rem;
  height: 0.75rem;
  border-right: 0.125rem solid #fff;
  border-bottom: 0.125rem solid #fff;
  transform: translate(-50%, -50%) rotate(45deg);
  opacity: 0;
  transition: all 0.13s ease-in-out;
}
.p-form .p-form__consent {
  /* チェック状態 */
}
.p-form .p-form__consent .p-form__checkbox input[type=checkbox]:checked {
  background: #1a3347;
  border-color: #1a3347;
}
.p-form .p-form__consent .p-form__checkbox input[type=checkbox]:checked::after {
  opacity: 1;
}
.p-form .p-form__consent .p-form__checkbox--privacy span {
  /* チェックボックスのテキスト */
  display: none;
}
.p-form {
  /* ────────────
  　左のセル
   ──────────── */
}
.p-form .ff-t-cell.ff-t-column-1 {
  flex-basis: auto !important;
  width: 24.545455%;
}
@media screen and (max-width: 767px) {
  .p-form .ff-t-cell.ff-t-column-1 {
    width: 100%;
  }
}
.p-form .fluentform .ff-el-group {
  height: 100%;
  margin-bottom: 0;
}
.p-form {
  /* ────────────
  　右のセル
   ──────────── */
  /* 2カラム用 */
}
.p-form .ff-t-cell.ff-t-column-2 {
  /* 2カラム右のセル親要素 */
  display: flex;
  flex-direction: column;
  flex-basis: auto !important;
  width: 83.454545%;
  padding-block: 1.5625rem;
  padding-inline: 1.5rem;
}
@media screen and (max-width: 767px) {
  .p-form .ff-t-cell.ff-t-column-2 {
    width: 100%;
    padding: 1.25rem;
  }
}
.p-form .fluentform .ff-el-form-check {
  /* ラジオボタンの親親要素 */
  flex-shrink: 0;
  margin-bottom: 0.9375rem;
}
.p-form .ff-default .ff-el-form-check label.ff-el-form-check-label {
  /* ラジオボタン入力項目文字 */
  color: #1a3347;
  font-weight: 700;
}
.p-form .p-form__radio {
  /* ラジオボタン（お客様情報）親要素 */
  margin-top: 0.625rem;
}
@media screen and (max-width: 767px) {
  .p-form .p-form__radio {
    margin-top: 0.75rem;
  }
}
.p-form .p-form__radio .ff-el-form-check {
  margin-bottom: 0;
}
.p-form .p-form__radio .ff-el-form-check span {
  display: inline-block;
  margin-left: 0.625rem;
}
.p-form .ff-t-column-2 .p-form__radio {
  margin-top: 0;
}
.p-form .fluentform .ff-el-group.ff_list_buttons .ff-el-form-check {
  margin-bottom: 0;
}
.p-form .p-form__checkbox-group--time .ff-el-form-check label > span {
  min-width: 7.8125rem;
}
@media screen and (max-width: 767px) {
  .p-form .p-form__checkbox-group--time .ff-el-form-check label > span {
    min-width: 6.875rem;
  }
}
.p-form .ff-el-group.p-form__checkbox-group .ff-el-input--content {
  /* チェックボックス */
  display: flex;
  flex-wrap: wrap;
}
.p-form .ff-el-group.p-form__checkbox-group.p-form__checkbox-group--days .ff-el-input--content {
  gap: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-form .ff-el-group.p-form__checkbox-group.p-form__checkbox-group--days .ff-el-input--content {
    gap: 0.9375rem 1.1875rem;
  }
}
.p-form .ff-el-group.p-form__checkbox-group.p-form__checkbox-group--time .ff-el-input--content {
  gap: 0.9375rem 1.875rem;
}
@media screen and (max-width: 767px) {
  .p-form .ff-el-group.p-form__checkbox-group.p-form__checkbox-group--time .ff-el-input--content {
    gap: 0.9375rem 3.625rem;
  }
}
.p-form .ff-el-group.p-form__checkbox-group.p-form__checkbox-group--days .ff-el-form-check label > span {
  width: 4.25rem;
}
@media screen and (max-width: 767px) {
  .p-form .ff-el-group.p-form__checkbox-group.p-form__checkbox-group--days .ff-el-form-check label > span {
    width: 3.625rem;
  }
}
.p-form .fluentform input[type=radio] {
  appearance: none;
}
.p-form .p-form__textarea {
  /* テキストエリア */
  width: 100%;
}
.p-form .ff-default .p-form__textarea .ff-el-form-control {
  min-height: 8.625rem;
  max-width: 100%;
}
@media screen and (max-width: 767px) {
  .p-form .ff-default .p-form__textarea .ff-el-form-control {
    min-height: 10.625rem;
  }
}
.p-form input[type=radio],
.p-form input[type=checkbox] {
  appearance: none;
  width: 1.125rem;
  height: 1.125rem;
  border: 0.0625rem solid #1a3347;
  border-radius: 50%;
  position: relative;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .p-form input[type=radio],
  .p-form input[type=checkbox] {
    width: 1rem;
    height: 1rem;
  }
}
.p-form input[type=checkbox] {
  border-radius: 0.1875rem;
}
.p-form input[type=radio]::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0.5rem;
  height: 0.5rem;
  background-color: #1a3347;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: ease-in-out, 0.13s;
}
.p-form input[type=radio]:checked::before,
.p-form input[type=checkbox]:checked::before {
  opacity: 1;
}
.p-form .ff-default .ff-el-form-control {
  /* input[text]のスタイル */
  max-width: 37.5rem;
  padding: 0.75rem 1.25rem;
  border: 0.0625rem solid #1a3347;
  color: #dddddd;
  color: #1a3347;
  font-size: 1rem;
  line-height: 1.1875;
}
@media screen and (max-width: 767px) {
  .p-form .ff-default .ff-el-form-control {
    font-size: 0.875rem;
    padding: 0.625rem 0.9375rem;
  }
}
.p-form .p-form__textarea .ff-el-form-control {
  line-height: 1.4;
}
.p-form .ff-default .ff-el-form-control::placeholder {
  color: #aaaaaa;
}
.p-form .fluentform .ff-el-group.ff_list_buttons .ff-el-form-check {
  order: 10;
}
.p-form .fluentform label.ff-el-image-input-src {
  height: 165px;
}
@media screen and (max-width: 767px) {
  .p-form .fluentform label.ff-el-image-input-src {
    height: 215px;
  }
}
.p-form .fluentform .ff-el-group.ff_list_buttons .ff-el-form-check label > span {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 1.875rem;
  padding: 0;
  border: 0.0625rem solid #024f90;
  border-radius: 0.3125rem;
  color: #024f90;
  font-size: 1rem;
  font-weight: 500;
  transition: ease-in-out, 0.3s, 0.1s font-weight;
}
@media screen and (max-width: 767px) {
  .p-form .fluentform .ff-el-group.ff_list_buttons .ff-el-form-check label > span {
    font-size: 0.875rem;
  }
}
.p-form .fluentform .ff-el-group.ff_list_buttons .ff-el-form-check:first-child label > span {
  border: 0.0625rem solid #024f90;
  border-radius: 0.3125rem;
}
.p-form .fluentform .ff-el-group.ff_list_buttons .ff-el-form-check:last-child label > span {
  width: 6.25rem;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .p-form .fluentform .ff-el-group.ff_list_buttons .ff-el-form-check:last-child label > span {
    width: 5.375rem;
  }
}
.p-form .fluentform .ff-el-group.ff_list_buttons .ff-el-form-check.ff_item_selected label > span {
  background: #0177d9;
  border-color: transparent;
  font-weight: 700;
}

.p-form {
  /* ↓ プラグインのスタイル打ち消し ↓ */
}
.p-form .ff-default .ff_btn_style:focus {
  opacity: 1;
  outline: 0;
  text-decoration: none;
}
@media (any-hover: hover) {
  .p-form .ff-default .ff_btn_style:hover {
    opacity: 1;
    outline: 0;
    text-decoration: none;
  }
}
.p-form .ff-default .ff-btn-lg {
  border-radius: 0;
  font-size: inherit;
  line-height: 1;
  padding: 0;
}
.p-form .p-form__submit-none {
  display: none;
}
.p-form {
  /* ↑ プラグインのスタイル打ち消し ↑ */
}
.p-form .p-form__button {
  margin-top: 1.875rem;
}
@media screen and (max-width: 767px) {
  .p-form .p-form__button {
    margin-top: 1.125rem;
  }
}
.p-form .p-form__submit {
  text-align: center;
}
.p-form .p-form__submit-btn,
.p-form .ff-default .ff-btn-lg.p-form__submit-btn {
  position: relative;
  display: inline-block;
  width: 100%;
  max-width: 25rem;
  padding: 1.3125rem 0;
  background: #024f90;
  border: transparent;
  border-radius: 100vh;
  color: #ffffff;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  padding-right: 0.125rem;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
@media screen and (max-width: 767px) {
  .p-form .p-form__submit-btn,
  .p-form .ff-default .ff-btn-lg.p-form__submit-btn {
    padding: 1.125rem 0;
    font-size: 1rem;
  }
}
.p-form .p-form__submit-icon {
  content: "";
  position: absolute;
  top: 50%;
  right: 1.25rem;
  transform: translateY(-50%);
  display: inline-block;
  width: 1.25rem;
  height: 1.25rem;
  background: #ffffff;
  border-radius: 100vh;
  transition: all 0.3s ease-in-out;
}
@media screen and (max-width: 767px) {
  .p-form .p-form__submit-icon {
    right: 1.5rem;
  }
}
.p-form .p-form__submit-icon::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 0.375rem;
  height: 0.625rem;
  background: #024f90;
  mask-image: url(../img/common/icon-arrow-right02.svg);
  mask-repeat: no-repeat;
  mask-size: contain;
  transition: all 0.3s ease-in-out;
}
@media (any-hover: hover) {
  .p-form .p-form__submit-btn:hover {
    background-color: rgba(2, 79, 144, 0.7);
    /* プラグインのスタイル打ち消し */
    opacity: 1;
  }
}

.p-application .p-form .p-form__radio .ff-el-input--content,
.p-contact .p-form .p-form__radio .ff-el-input--content {
  display: flex;
  justify-content: center;
  gap: 0.9375rem;
  flex-direction: column;
}
@media screen and (max-width: 767px) {
  .p-application .p-form .p-form__radio .ff-el-input--content,
  .p-contact .p-form .p-form__radio .ff-el-input--content {
    gap: 0.625rem;
  }
}
.p-application .p-form .p-form__radio .ff-el-form-check,
.p-contact .p-form .p-form__radio .ff-el-form-check {
  margin-top: 0;
}

.p-application div[data-name=ff_cn_id_6] .p-form__radio .ff-el-input--content,
.p-contact div[data-name=ff_cn_id_1] .p-form__radio .ff-el-input--content {
  flex-direction: row;
  justify-content: flex-start;
  gap: 0;
}
@media screen and (max-width: 767px) {
  .p-application div[data-name=ff_cn_id_6] .p-form__radio .ff-el-input--content,
  .p-contact div[data-name=ff_cn_id_1] .p-form__radio .ff-el-input--content {
    gap: 15px;
    flex-wrap: wrap;
  }
}
.p-application div[data-name=ff_cn_id_6] .p-form__radio .ff-el-form-check:nth-of-type(2),
.p-contact div[data-name=ff_cn_id_1] .p-form__radio .ff-el-form-check:nth-of-type(2) {
  margin-left: 4.875rem;
}
@media screen and (max-width: 767px) {
  .p-application div[data-name=ff_cn_id_6] .p-form__radio .ff-el-form-check:nth-of-type(2),
  .p-contact div[data-name=ff_cn_id_1] .p-form__radio .ff-el-form-check:nth-of-type(2) {
    margin-left: 0;
  }
}
.p-application div[data-name=ff_cn_id_6] .p-form__radio .ff-el-form-check:last-child,
.p-contact div[data-name=ff_cn_id_1] .p-form__radio .ff-el-form-check:last-child {
  margin-left: 4.375rem;
}
@media screen and (max-width: 767px) {
  .p-application div[data-name=ff_cn_id_6] .p-form__radio .ff-el-form-check:last-child,
  .p-contact div[data-name=ff_cn_id_1] .p-form__radio .ff-el-form-check:last-child {
    margin-left: 0;
  }
}

.ff-el-form-check + .ff-el-form-check {
  margin-top: 0.8125rem;
}
.p-application div[data-name=ff_cn_id_1] .ff-el-form-check + .ff-el-form-check {
  margin-top: 0.9375rem;
}
@media screen and (max-width: 767px) {
  .p-application div[data-name=ff_cn_id_1] .ff-el-form-check + .ff-el-form-check {
    margin-top: 0.625rem;
  }
}

.p-contact div[data-name=ff_cn_id_1] .p-form__radio {
  margin-top: 0.875rem;
}
@media screen and (max-width: 767px) {
  .p-contact div[data-name=ff_cn_id_1] .p-form__radio {
    margin-top: 0.75rem;
  }
}

/* テキストエリア余白調整 */
.p-application .frm-fluent-form div[data-name=ff_cn_id_10] .ff-t-cell:last-of-type {
  padding-inline: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-application .frm-fluent-form div[data-name=ff_cn_id_10] .ff-t-cell:last-of-type {
    width: 100%;
    padding: 1.25rem;
  }
}

.p-contact .frm-fluent-form div[data-name=ff_cn_id_4] .ff-t-cell:last-of-type {
  padding-inline: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-contact .frm-fluent-form div[data-name=ff_cn_id_4] .ff-t-cell:last-of-type {
    width: 100%;
    padding: 1.25rem;
  }
}

/* スピナー */
.p-form__submit-btn .p-form__submit-icon {
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 2px solid transparent;
  border-top-color: #ffffff;
  border-radius: 50%;
  margin-left: 8px;
  vertical-align: middle;
  opacity: 0;
  transition: opacity 0.2s;
}

.p-form__submit-btn.is-loading {
  pointer-events: none;
  opacity: 0.7;
  cursor: not-allowed;
}
.p-form__submit-btn.is-loading .p-form__submit-icon {
  opacity: 1;
  animation: ff-custom-spin 0.8s linear infinite;
}

@keyframes ff-custom-spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* ────────────
  　確認画面
──────────── */
.confirm-table {
  width: 100%;
  border: 1px solid #dddddd;
}

.confirm-table__item {
  display: flex;
  border: 1px solid #dddddd;
  border-collapse: collapse;
}
@media screen and (max-width: 767px) {
  .confirm-table__item {
    flex-direction: column;
  }
}

.confirm-table__item + .confirm-table__item {
  margin-top: -0.03125rem;
}

.confirm-table__item-title {
  width: 24.56%;
  padding: 1.5625rem 1.875rem;
  background: #024f90;
  color: #ffffff;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .confirm-table__item-title {
    width: 100%;
    padding: 0.875rem 1.25rem;
  }
}

.confirm-table__item-content {
  width: 75.44%;
  padding: 1.5625rem 2.5rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .confirm-table__item-content {
    width: 100%;
    padding: 1.25rem;
  }
}

.confirm-table__item-content .confirm-table__item-box {
  padding-bottom: 0.625rem;
  color: #1a3347;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.2142857143;
}
@media screen and (max-width: 767px) {
  .confirm-table__item-content .confirm-table__item-box {
    font-size: 0.75rem;
    line-height: 1.3333333333;
  }
}

.p-contact .confirm-table__item:first-child .confirm-table__item-box {
  display: block;
  border-bottom: 0.09375rem solid #f7f7f7;
  font-weight: 700;
}

.confirm-table__item-box + .confirm-table__item-box {
  display: block;
  margin-top: 0.9375rem;
}
@media screen and (max-width: 767px) {
  .confirm-table__item-box + .confirm-table__item-box {
    margin-top: 0.5rem;
  }
}

.p-contact .confirm-table__item:first-child .confirm-table__item-box {
  font-weight: 700;
}

.confirm-table__item-box span {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.1875;
}
@media screen and (max-width: 767px) {
  .confirm-table__item-box span {
    font-size: 0.875rem;
    line-height: 1.1428571429;
  }
}

.confirm-table__item-box span.confirm-table__item-text {
  margin-top: 0.3125rem;
  color: #1a3347;
  font-weight: 700;
  line-height: 1.1875;
}
@media screen and (max-width: 767px) {
  .confirm-table__item-box span.confirm-table__item-text {
    font-size: 0.875rem;
    font-weight: 700;
    line-height: 1.1428571429;
  }
}

.confirm-table__item-subtext {
  margin-top: 0.625rem;
  font-size: 0.875rem;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .confirm-table__item-subtext {
    font-size: 0.75rem;
  }
}

.confirm-table__item-box span.confirm-table__item-text--number {
  max-width: 37.5rem;
  min-height: 2.6875rem;
  background: #f7f7f7;
  padding-block: 0.75rem;
  padding-inline: 1.25rem;
  color: #1a3347;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .confirm-table__item-box span.confirm-table__item-text--number {
    font-size: 0.875rem;
  }
}

/* ────────────
  　完了画面
──────────── */
.p-form .ff-message-success {
  /* プラグイン(Fluent Forms)のスタイル打ち消し */
  border: none;
  box-shadow: none;
  margin-top: 0;
  padding: 0;
  position: static;
}

.p-form__thanks-body {
  margin-top: 1.875rem;
}
@media screen and (max-width: 767px) {
  .p-form__thanks-body {
    margin-top: 1.25rem;
  }
}

.p-form__thanks-inner {
  max-width: 56.25rem;
  margin-inline: auto;
}

.p-form__thanks-content {
  padding-top: 3.75rem;
  padding-bottom: 3.4375rem;
  padding-inline: 1.875rem;
  background: rgba(0, 140, 255, 0.03);
}
@media screen and (max-width: 767px) {
  .p-form__thanks-content {
    padding-top: 2.875rem;
    padding-bottom: 3.75rem;
    padding-inline: 0;
  }
}

.p-form__thanks-header {
  text-align: center;
}

.p-form__thanks-title {
  position: relative;
  display: inline-flex;
  color: #0277d9;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-form__thanks-title {
    font-size: 1.125rem;
  }
}

.p-form__thanks-title::before,
.p-form__thanks-title::after {
  content: "";
  width: 2.25rem;
  height: 0.1875rem;
  background-color: currentColor;
  border-radius: calc(infinity * 1px);
  margin-top: 0.625rem;
}
@media screen and (max-width: 767px) {
  .p-form__thanks-title::before,
  .p-form__thanks-title::after {
    width: 1.625rem;
  }
}

.p-form__thanks-title::before {
  transform: rotate(70deg) translateY(15px) translateX(-3px);
}
@media screen and (max-width: 767px) {
  .p-form__thanks-title::before {
    transform: rotate(70deg) translateY(0px) translateX(-4px);
  }
}

.p-form__thanks-title::after {
  transform: rotate(-70deg) translateY(14px) translateX(7px);
}
@media screen and (max-width: 767px) {
  .p-form__thanks-title::after {
    transform: rotate(-70deg) translateY(-2px) translateX(5px);
  }
}

.p-form__thanks-subtitle {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
  color: #024f90;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-form__thanks-subtitle {
    font-size: 1.125rem;
  }
}

.p-form__thanks-subtitle--application {
  color: #ff588f;
}

.p-form__thanks-text {
  margin-top: 2.9375rem;
  color: #1a3347;
  font-weight: 500;
  line-height: 1.8;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-form__thanks-text {
    margin-top: 2.1875rem;
    font-weight: 500;
    line-height: 2;
  }
}

.p-form__thanks-cta {
  margin-top: 2.9375rem;
}
@media screen and (max-width: 767px) {
  .p-form__thanks-cta {
    margin-top: 1.6875rem;
  }
}

.p-form__thanks-cta a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.3125rem;
}
@media screen and (max-width: 767px) {
  .p-form__thanks-cta a {
    max-width: 18.75rem;
    margin-inline: auto;
    padding-top: 0.625rem;
    padding-bottom: 0.5rem;
    background: #008cff;
    border-radius: 0.625rem;
    box-shadow: 0 0.25rem 0 0 #0277d9;
  }
}

.p-form__thanks-cta__content {
  display: flex;
  flex-direction: column;
  gap: 0.5625rem;
}
@media screen and (max-width: 767px) {
  .p-form__thanks-cta__content {
    gap: 0.1875rem;
  }
}

.p-form__thanks-cta__icon {
  display: inline-block;
  width: 5.4375rem;
  height: 5.4375rem;
  background: #024f90;
  mask-image: url(../img/common/icon-phone.svg);
  mask-repeat: no-repeat;
  mask-size: contain;
}
@media screen and (max-width: 767px) {
  .p-form__thanks-cta__icon {
    width: 3.75rem;
    height: 3.75rem;
    background: #ffffff;
  }
}

.p-form__thanks-cta__time {
  display: block;
  font-size: 0.875rem;
  text-align: center;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .p-form__thanks-cta__time {
    color: #ffffff;
    font-size: 0.75rem;
  }
}

.p-form__thanks-cta__number {
  color: #024f90;
  font-size: 3.125rem;
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 700;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .p-form__thanks-cta__number {
    color: #ffffff;
    font-size: 2.25rem;
  }
}

@media (any-hover: hover) {
  .p-form__thanks-cta a:hover {
    opacity: 0.8;
  }
}
@media screen and (any-hover: hover) and (max-width: 767px) {
  .p-form__thanks-cta a:hover {
    box-shadow: none;
    transform: translateY(0.25rem);
  }
}
/* ────────────
  　入力ページに戻るボタン
   ──────────── */
.p-form__back {
  margin-top: 4.375rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-form__back {
    margin-top: 3.375rem;
  }
}

.p-form__back-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.9375rem;
  padding: 0;
  margin-inline: auto;
  background: transparent;
  border: none;
  color: #024f90;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1;
  cursor: pointer;
  transition: ease-in-out, 0.3s;
}
@media screen and (max-width: 767px) {
  .p-form__back-button {
    font-size: 0.875rem;
  }
}

.p-form__back-button__icon {
  position: relative;
  width: 1.25rem;
  height: 1.25rem;
  background: #024f90;
  border-radius: 100vh;
  transition: all 0.3s ease-in-out;
}

.p-form__back-button__icon::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 48%;
  transform: translate(-50%, -50%) rotate(180deg);
  width: 0.375rem;
  height: 0.625rem;
  background: #ffffff;
  mask-image: url(../img/common/icon-arrow-right02.svg);
  mask-repeat: no-repeat;
  mask-size: contain;
  transition: all 0.3s ease-in-out;
}

@media (any-hover: hover) {
  .p-form__back-button:hover {
    opacity: 0.7;
  }
}
/* ────────────
  　TOPに戻るボタン
──────────── */
.p-form__modify {
  margin-top: 1.875rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-form__modify {
    margin-top: 1.5625rem;
  }
}

.p-form__modify-button {
  padding: 0;
  background: transparent;
  border: none;
}
@media screen and (max-width: 767px) {
  .p-form__modify-button {
    margin-top: 1.25rem;
  }
}

.p-form__modify-button a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  color: #024f90;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1;
  cursor: pointer;
  transition: ease-in-out, 0.3s;
}

.p-form__modify-button__icon {
  position: relative;
  width: 1.25rem;
  height: 1.25rem;
  background: #024f90;
  border-radius: 100vh;
  transition: all 0.3s ease-in-out;
}

.p-form__modify-button__icon::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 0.375rem;
  height: 0.625rem;
  background: #ffffff;
  mask-image: url(../img/common/icon-arrow-right02.svg);
  mask-repeat: no-repeat;
  mask-size: contain;
  transition: all 0.3s ease-in-out;
}

@media (any-hover: hover) {
  .p-form__modify-button a:hover {
    opacity: 0.7;
  }
}
/* ────────────
  　各ボタンの初期状態
──────────── */
.p-form__back,
.p-form__button--submit,
.ff-confirm-box,
.ff_submit_btn_wrapper {
  display: none;
}

/* ────────────
  確認画面の表示
──────────── */
/* 確認モード時：入力フィールド群を非表示 */
.fluentform_wrapper_3.is-confirm .ff-t-container {
  display: none !important;
}

/* turnstile（認証部分）も非表示 */
.fluentform_wrapper_3.is-confirm .cf-turnstile {
  display: none !important;
}

/* 確認画面・戻るボタン・送信ボタンを再表示 */
.fluentform_wrapper_3.is-confirm .ff-confirm-box,
.fluentform_wrapper_3.is-confirm .p-form__back,
.fluentform_wrapper_3.is-confirm .p-form__button--submit {
  display: block !important;
}

/* 「入力内容を確認する」ボタンは非表示 */
.fluentform_wrapper_3.is-confirm .p-form__button--confirm {
  display: none !important;
}

/* ────────────
完了画面の表示制御
──────────── */
/* 完了画面表示 */
.fluentform_wrapper_3.is-complete .p-form__thanks {
  display: block !important;
}

/* 入力・確認・ボタン類は非表示 */
.fluentform_wrapper_3.is-complete .ff-confirm-box,
.fluentform_wrapper_3.is-complete .p-form__button--submit,
.fluentform_wrapper_3.is-complete .p-form__button--confirm,
.fluentform_wrapper_3.is-complete .p-form__back,
.fluentform_wrapper_3.is-complete form {
  display: none !important;
}

/* 確認モード時：入力フィールド群を非表示（実際には画面外に） */
.fluentform_wrapper_3.is-confirm .ff-t-container {
  position: absolute !important;
  left: -9999px !important;
  visibility: hidden !important;
  opacity: 0 !important;
}

/* ────────────
お申し込みフォーム
──────────── */
.p-application div[data-name=ff_cn_id_1] .ff-el-input--content,
.p-application div[data-name=ff_cn_id_1] .ff-el-group,
.p-application div[data-name=ff_cn_id_5] .ff-el-input--content,
.p-application div[data-name=ff_cn_id_5] .ff-el-group {
  /* ラジオボタンの親要素 */
  display: contents !important;
}
.p-application div[data-name=ff_cn_id_5] .ff-el-form-control {
  margin-bottom: 0.625rem;
}
.p-application .ff-el-form-check:nth-of-type(3) {
  /* お申し込み区分「わからない」順番変更 */
  order: 6;
}
.p-application div[data-name=ff_cn_id_5] .ff-el-form-check:nth-of-type(2) {
  /* 契約中の回線順番変更 */
  order: 3;
}
.p-application div[data-name=ff_cn_id_6] .p-form__radio {
  margin-top: 0.625rem;
}
@media screen and (max-width: 767px) {
  .p-application div[data-name=ff_cn_id_6] .p-form__radio {
    margin-top: 0.75rem;
  }
}
.p-application .p-form__radio .ff-el-form-check:nth-of-type(2) {
  margin-left: 0;
}
.p-application .p-form__radio .ff-el-form-check span {
  margin-left: 0.3125rem;
}
@media screen and (max-width: 767px) {
  .p-application .p-form__radio .ff-el-form-check span {
    margin-left: 0.1875rem;
  }
}

/* ────────────
確認モードの表示制御
──────────── */
/* 確認モード時：入力フィールド群を非表示 */
.fluentform_wrapper_4.is-confirm .ff-t-container {
  display: none !important;
}

/* turnstile（認証部分）も非表示 */
.fluentform_wrapper_4.is-confirm .cf-turnstile {
  display: none !important;
}

/* 確認画面・戻るボタン・送信ボタンを再表示 */
.fluentform_wrapper_4.is-confirm .ff-confirm-box,
.fluentform_wrapper_4.is-confirm .p-form__back,
.fluentform_wrapper_4.is-confirm .p-form__button--submit {
  display: block !important;
}

/* 「入力内容を確認する」ボタンは非表示 */
.fluentform_wrapper_4.is-confirm .p-form__button--confirm {
  display: none !important;
}

/* ────────────
完了画面の表示制御
──────────── */
/* 完了画面表示 */
.fluentform_wrapper_4.is-complete .p-form__thanks {
  display: block !important;
}

/* 入力・確認・ボタン類は非表示 */
.fluentform_wrapper_4.is-complete .ff-confirm-box,
.fluentform_wrapper_4.is-complete .p-form__button--submit,
.fluentform_wrapper_4.is-complete .p-form__button--confirm,
.fluentform_wrapper_4.is-complete .p-form__back,
.fluentform_wrapper_4.is-complete form {
  display: none !important;
}

/* 確認モード時：入力フィールド群を非表示（実際には画面外に） */
.fluentform_wrapper_4.is-confirm .ff-t-container {
  position: absolute !important;
  left: -9999px !important;
  visibility: hidden !important;
  opacity: 0 !important;
}

/* ────────────
必須項目未入力時のエラーメッセージ
──────────── */
.ff-el-error-message {
  margin-top: 0.625rem;
  color: #e74c3c;
}
@media screen and (max-width: 767px) {
  .ff-el-error-message {
    font-size: 0.875rem;
  }
}

.p-form__consent {
  /* 個人情報の同意チェックの位置調整 */
  position: relative;
}

.p-form__checkbox--privacy .ff-el-error-message {
  position: absolute;
  top: 4.5625rem;
  left: 6.875rem;
}
@media screen and (max-width: 767px) {
  .p-form__checkbox--privacy .ff-el-error-message {
    left: 7.3125rem;
  }
}

.ff-el-group[data-name=custom_html-4_26] .p-form__note-small {
  margin-top: 0.625rem;
  margin-bottom: 0;
}

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

.u-sp {
  display: none;
}
@media screen and (max-width: 767px) {
  .u-sp {
    display: revert;
  }
}

.u-df {
  display: flex;
}

.u-jc-c {
  justify-content: center;
}

.u-jc-sb {
  justify-content: space-between;
}

.u-ai-c {
  align-items: center;
}

@media screen and (max-width: 767px) {
  .u-ai-c-md-max {
    align-items: center;
  }
}

.u-fd-c {
  flex-direction: column;
}

@media screen and (max-width: 767px) {
  .u-fd-c-md-max {
    flex-direction: column;
  }
}

.u-fw-regular {
  font-weight: 400;
}

.u-fw-medium {
  font-weight: 500;
}

.u-fw-bold {
  font-weight: 700;
}

.u-ls300 {
  letter-spacing: 0.3em;
}

.u-po-rel {
  position: relative;
}

.u-po-abs {
  position: absolute;
}

@media screen and (max-width: 767px) {
  .u-po-sta-md-max {
    position: static;
  }
}/*# sourceMappingURL=style.css.map */