@charset "UTF-8";

:root {
  --color-primary: #186DA4;
  --color-accent: #FF6529;
  --color-green: #06C755;
  --color-light-blue: #CFE8F9;
  --color-text: #374151;
  --color-bg-gray: #E0E3E6;
  --color-white: #ffffff;
  --color-danger: #ef4444;
  --font-base: 'Noto Sans JP', sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-base);
  color: var(--color-text);
  line-height: 1.6;
  background-color: var(--color-white);
}

a {
  text-decoration: none;
  color: inherit;
  transition: opacity 0.3s;
}

a:hover {
  opacity: 0.8;
}

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

ol {
  list-style-type: none;
}

.sp-only {
  display: block;
}

.pc-only {
  display: none;
}

/* =========================================
   Base Styles (750px design / px based)
   Applies to 501px - 767px (and fallback)
   ========================================= */

.l-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0;
}

.l-section {
  padding: 120px 40px;
}

.l-section--gray {
  background-color: var(--color-bg-gray);
}

.l-section--primary {
  background-color: var(--color-primary);
}

.l-section--yellow {
  background-color: #FFFAE1;
}

.l-section--section02 {
  background-image: url(../images/bg-section02-left.png), url(../images/bg-section02-right.png);
  background-repeat: no-repeat;
  background-size: 45%, 45%;
  background-position: left 10% top 21.5%, right -22% bottom 1%;
}

.l-section--section03 {
  background-image: url(../images/bg-section03-sp.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center;
}

.l-section--section05 {
  background-image: url(../images/bg-section05-sp.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top left;
  background-color: var(--color-light-blue);
}

.l-section--section05 .l-section__title {
  font-size: 52px;
}

.l-section--section05 .l-section__subtitle {
  margin-top: 33px;
}

.l-section--section06 .l-section__title {
  font-size: 52px;
}

.l-section--section07 {
  background-image: url(../images/bg-section07-sp.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top left;
  background-color: var(--color-primary);
}

.l-section__header {
  text-align: center;
  margin-bottom: 40px;
}

.l-section__title {
  font-size: 40px;
  font-weight: 700;
  color: var(--color-primary);
  margin-top: -4px;
  letter-spacing: 4px;
}

.l-section__title--white {
  color: var(--color-white);
}

.l-section__title .u-divided > span {
  position: relative;
  font-size: 48px;
}

.l-section__title .u-divided > span::before {
  position: absolute;
  display: block;
  content: "・";
  top: -28px;
  inset-inline: 0;
  margin: auto;
  font-size: 35px;
  font-weight: 700;
}

.l-section__subtitle {
  color: var(--color-text);
  font-size: 32px;
  margin-top: 22px;
  font-weight: 700;
}

.l-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background-color: rgba(255, 255, 255, 0.95);
  padding: 12px 19px;
}

.l-header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 auto;
}

.l-header__logo {
  font-size: 32px;
  font-weight: 700;
  color: var(--color-primary);
  display: flex;
  align-items: center;
  gap: 8px;
  max-width: 362px;
}

.l-header__nav {
  display: none;
  gap: 16px;
}

.l-header__nav .c-btn .icon {
  display: block;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}

.l-header__nav .c-btn .icon.icon--line {
  width: 22px;
  height: 18px;
  background-image: url(../images/icon/icon-line.svg);
}

.l-header__nav .c-btn .icon.icon--contact {
  width: 20px;
  height: 26px;
  background-image: url(../images/icon/icon-memo.svg);
}

.l-footer {
  background: var(--color-white);
  color: var(--color-text);
  padding: 123px 0 40px;
  text-align: center;
}

.l-footer__logo {
  font-size: 24px;
  font-weight: 700;
  max-width: 460px;
  margin: auto;
}

.l-footer__links {
  display: flex;
  flex-direction: column;
  gap: 35px;
  margin-top: 49px;
}

.l-footer__links > a {
  font-size: 28px;
  font-weight: 400;
  display: block;
  width: fit-content;
  margin: auto;
}

.l-footer__copy {
  color: var(--color-text);
  font-size: 20px;
  margin-top: 117px;
  letter-spacing: 0.2px;
}

.c-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 25px 24px;
  border-radius: 10px;
  font-weight: 700;
  cursor: pointer;
  border: none;
  font-size: 32px;
  transition: transform 0.2s, opacity 0.2s;
  box-shadow: 6px 6px 3px rgba(0, 0, 0, 0.16);
  color: #fff;
  transition: ease .3s background-color;
}

.c-btn:hover {
  opacity: 1;
}

.c-btn-text {
  display: block;
  width: 100%;
  text-align: center;
  position: relative;
}

.c-btn-text::before,
.c-btn-text::after {
  position: absolute;
  display: block;
  content: "";
  inset-block: 0;
  margin: auto;
}

.c-btn-text::before {
  right: 4px;
  width: 20px;
  height: 2px;
  background: var(--color-white);
}

.c-btn-text::after {
  right: 5px;
  width: 10px;
  height: 10px;
  border-top: 2px solid var(--color-white);
  border-right: 2px solid var(--color-white);
  transform: rotate(45deg);
}

.c-btn--accent {
  background-color: var(--color-accent);
  border: solid 2px var(--color-accent);
}

.c-btn--accent:hover {
  background-color: var(--color-white);
  color: var(--color-accent);
}

.c-btn--accent:hover .c-btn-text::before {
  background: var(--color-accent);
}

.c-btn--accent:hover .c-btn-text::after {
  border-top: 2px solid var(--color-accent);
  border-right: 2px solid var(--color-accent);
}

.c-btn--green {
  background-color: var(--color-green);
  font-size: 30px;
  padding-block: 22px;
  border: solid 2px var(--color-green);
}

.c-btn--green:hover {
  background-color: var(--color-white);
  color: var(--color-green);
}

.c-btn--green:hover .c-btn-text::before {
  background: var(--color-green);
}

.c-btn--green:hover .c-btn-text::after {
  border-top: 2px solid var(--color-green);
  border-right: 2px solid var(--color-green);
}

.l-header__nav .c-btn:hover .icon.icon--line {
  background-image: url(../images/icon/icon-line-green.svg);
}

.l-header__nav .c-btn:hover .icon.icon--contact {
  background-image: url(../images/icon/icon-memo-orange.svg);
}

.c-btn i {
  margin-left: 8px;
}

.c-btn--header {
  font-size: 16px;
  padding: 12px 37px;
  box-shadow: none;
  border-radius: 100px;
}

.c-btn-comment {
  position: absolute;
  display: block;
  width: fit-content;
  padding: 11px 25px;
  background-color: #FFDE35;
  border-radius: 50px;
  color: var(--color-text);
  left: 15px;
  top: -25px;
  font-size: 18px;
  font-weight: 700;
}

.c-btn-comment::after {
  content: "";
  display: block;
  position: inherit;
  bottom: -10px;
  inset-inline: 0;
  margin: auto;
  width: 0;
  height: 0;
  rotate: 225deg;
  transform: translate(-10px, 10px);
  border-top: 8px solid #FFDE35;
  border-left: 20px solid transparent;
  border-right: 5px solid transparent;
}

.c-tag {
  background: #fff;
  border: 3px solid var(--color-primary);
  padding: 14px 43px;
  border-radius: 9999px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  font-size: 25px;
}

.c-tag i {
  margin-right: 8px;
  color: var(--color-primary);
}

.c-tag-text {
  margin-left: 6px;
  letter-spacing: 2.4px;
}

.c-badge {
  font-size: 28px;
  color: var(--color-white);
  padding: 2px 15px;
  background-color: var(--color-accent);
  border-radius: 25px;
  margin-left: 14px;
  vertical-align: baseline;
}

.c-input {
  width: 100%;
  padding: 23px 19px;
  border: 1px solid #B4B4B4;
  border-radius: 4px;
  background: #f9fafb;
  font-size: 28px;
  outline: none;
  margin-top: 17px;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.c-input:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(0, 104, 183, 0.2);
}

.c-error-box {
  background: #fee2e2;
  border: 1px solid #f87171;
  color: #b91c1c;
  padding: 16px;
  border-radius: 4px;
  font-size: 14px;
  margin-bottom: 24px;
}

.c-error-box ul {
  list-style-position: inside;
}

.p-hero {
  background-color: var(--color-light-blue);
  padding: 42px 40px 62px;
  background-image: url(../images/bg-hero-sp.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.p-hero__inner {
  display: flex;
  flex-direction: column-reverse;
  position: relative;
}

.p-hero__illust {
  max-width: 500px;
  margin: auto;
}

.p-hero__content {
  z-index: 10;
  flex-shrink: 0;
  margin-top: -48px;
}

.p-hero__label {
  font-weight: 700;
  font-size: 52px;
}

.p-hero__title {
  font-size: 62px;
  line-height: 1.3;
  color: #1f2937;
  font-weight: 900;
  letter-spacing: 1px;
  position: relative;
}

.p-hero__title::after {
  position: absolute;
  content: "";
  display: block;
  width: calc(100% - 46px);
  height: 28px;
  background-color: #FFE669;
  bottom: -8px;
  left: 0;
  z-index: -1;
}

.p-hero__title-small {
  font-size: 0.8em;
}

.p-hero__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 47px;
}

.p-hero__actions {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 68px;
}

.p-feature-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 25px;
}

.p-feature-card {
  background: var(--color-white);
  padding: 135px 32px 55px;
  border-radius: 24px;
  box-shadow: 10px 10px 3px rgba(0, 0, 0, 0.16);
  text-align: center;
  transition: box-shadow 0.3s;
  position: relative;
  margin-top: 154px;
}

.p-feature-card__icon {
  position: absolute;
  background: var(--color-white);
  color: var(--color-primary);
  border-radius: 150px;
  padding: 30px;
  display: block;
  top: -136px;
  width: 274px;
  height: 274px;
  left: 0;
  right: 0;
  margin: auto;
}

.p-feature-card__icon img {
  width: 210px;
  height: 210px;
}

.p-feature-card__title {
  font-size: 36px;
  color: var(--color-primary);
}

.p-feature-card__text {
  font-size: 32px;
  color: var(--color-text);
  margin-top: 16px;
}

.l-section-lead {
  font-size: 36px;
  font-weight: 700;
  color: var(--color-text);
  position: relative;
  line-height: 1.45;
  letter-spacing: 3px;
  width: fit-content;
  margin: auto;
}

.l-section-lead--white {
  color: var(--color-white);
}

.l-section-lead::before,
.l-section-lead::after {
  position: absolute;
  display: block;
  content: "";
  width: 48px;
  height: 4px;
  background-color: var(--color-text);
  bottom: 20px;
}

.l-section-lead--white::before,
.l-section-lead--white::after {
  background-color: var(--color-white);
}

.l-section-lead::before {
  rotate: 48deg;
  left: -62px;
}

.l-section-lead::after {
  rotate: -48deg;
  right: -62px;
}

.l-section__title.p-solution-title {
  font-size: 52px;
  margin-top: 33px;
  letter-spacing: 5px;
}

.l-section__title.p-solution-title .yellow {
  color: #FFE669;
}

.p-solution-text {
  font-size: 32px;
  color: var(--color-white);
  font-weight: 400;
  max-width: 640px;
  margin: 34px auto 0;
}

.p-solution-points {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 30px;
  margin-top: 37px;
}

.p-solution-point {
  position: relative;
  background: var(--color-white);
  color: var(--color-text);
  padding: 26px 32px;
  border-radius: 9999px;
  font-weight: 700;
  display: block;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  font-size: 28px;
}

.p-solution-point::before,
.p-solution-point::after {
  position: absolute;
  display: block;
  content: "・";
  inset-block: 0;
  margin: auto;
  color: var(--color-accent);
  height: fit-content;
  font-size: 60px;
}

.p-solution-point::before {
  left: 20px;
}

.p-solution-point::after {
  right: 20px;
}

.p-solution-point .orange {
  color: var(--color-accent);
  font-size: 32px;
}

.p-reason-box {
  border: solid 5px var(--color-accent);
  border-radius: 30px;
  margin-top: 65px;
  background-color: var(--color-white);
  background-image: url(../images/bg-section04-sp.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top left;
  padding-inline: 31px;
  padding-bottom: 55px;
  box-shadow: 10px 10px 5px rgba(0, 0, 0, 0.16);
}

.p-reason-box__title {
  font-size: 52px;
  color: var(--color-accent);
  font-weight: 700;
  text-align: center;
  letter-spacing: 4.6px;
  line-height: 1.2;
  padding-inline: 30px;
  transform: translateY(-40px);
}

.p-reason-box__title .wave {
  position: relative;
}

.p-reason-box__title .wave::after {
  position: absolute;
  display: block;
  content: "";
  width: 100%;
  height: 14px;
  bottom: -12px;
  right: 0;
  background-image: url(../images/common/deco-wave.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: top center;
}

.p-reason-box__title em {
  font-size: 70px;
  font-style: normal;
}

.p-reason-grid {
  display: flex;
  flex-direction: column;
  gap: 114px;
  margin-top: 100px;
}

.p-reason-card {
  background: #FFF1EB;
  padding: 90px 24px 36px;
  border-radius: 24px;
  text-align: center;
  position: relative;
}

.p-reason-card__num {
  position: absolute;
  top: -75px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-text);
  color: var(--color-white);
  width: 146px;
  height: 146px;
  font-size: 24px;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  letter-spacing: 1px;
}

.p-reason-card__num .num {
  font-size: 58px;
  line-height: 1;
  font-family: "Montserrat", sans-serif;
}

.p-reason-card__title {
  color: var(--color-accent);
  font-size: 36px;
  font-weight: 700;
  margin-top: 8px;
}

.p-reason-card__text {
  font-size: 32px;
  color: var(--color-text);
  font-weight: 400;
  margin-top: 14px;
}

.p-flow {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 67px;
  margin-top: 64px;
}

.p-flow__step {
  background: var(--color-white);
  padding: 40px 20px 31px 80px;
  border-radius: 24px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  width: 100%;
  text-align: center;
  position: relative;
}

.p-flow__step:not(:last-child):after {
  position: absolute;
  content: "";
  display: block;
  bottom: -35px;
  inset-inline: 0;
  margin: auto;
  width: fit-content;
  border: 16px solid transparent;
  border-top: 19px solid var(--color-white);
}

.p-flow__step:last-child {
  border: solid 8px var(--color-primary);
  padding: 35px 20px 21px 80px;
}

.p-flow__step:last-child .p-flow__label {
  top: -33px;
}

.p-flow__label {
  position: absolute;
  display: inline-block;
  font-family: "Montserrat", sans-serif;
  background: var(--color-primary);
  color: var(--color-white);
  font-size: 28px;
  font-weight: 700;
  padding: 4px 38px;
  border-radius: 25px;
  top: -25px;
  inset-inline: 0;
  margin: auto;
  width: fit-content;
}

.p-flow-item {
  display: flex;
  align-items: center;
  gap: 34px;
}

.p-flow__icon {
  width: 120px;
  height: 120px;
  margin-top: 8px;
}

.p-flow__title {
  font-size: 32px;
  font-weight: 400;
  margin-top: 8px;
  text-align: left;
}

.p-faq {
  max-width: 1200px;
  margin: 45px auto 0;
  display: flex;
  flex-direction: column;
  gap: 21px;
}

.p-faq__item {
  background-color: #EEF5FF;
  border-radius: 8px;
  padding: 29px 40px;
}

.p-faq__summary {
  font-weight: 700;
  font-size: 32px;
  color: var(--color-text);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  position: relative;
  padding-left: 62px;
  align-items: center;
}

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

.p-faq__wrapper {
  padding-right: 40px;
  display: block;
}

.p-faq__icon {
  font-size: 44px;
  font-weight: 400;
  transition: transform 0.2s;
  color: var(--color-primary);
  position: absolute;
  right: 0;
}

.p-faq__icon > i::before {
  transform: translate(-5px, 5px)
}

.p-faq__item[open] .p-faq__icon {
  transform: rotate(135deg);
}

.p-faq__q,
.p-faq__a {
  position: absolute;
  left: 0;
  top: 0;
  font-family: "Montserrat", sans-serif;
  font-size: 36px;
  color: var(--color-primary);
}

.p-faq__answer {
  margin-top: 20px;
  font-size: 32px;
  font-weight: 700;
  position: relative;
  color: var(--color-text);
  padding-left: 60px;
  margin-left: 40px;
}

.p-contact {
  color: #fff;
}

.p-contact-lead {
  font-size: 52px;
  font-weight: 700;
  color: var(--color-white);
  position: relative;
  line-height: 1.55;
  letter-spacing: 2px;
  width: fit-content;
  margin: 10px auto 0;
}

.p-contact-lead .yellow {
  color: #FFE669;
}

.p-contact-lead::before,
.p-contact-lead::after {
  position: absolute;
  display: block;
  content: "";
  width: 48px;
  height: 4px;
  background-color: var(--color-white);
  bottom: 20px;
}

.p-contact-lead::before {
  rotate: 48deg;
  left: -35px;
}

.p-contact-lead::after {
  rotate: -48deg;
  right: -35px;
}

.p-contact-text {
  color: var(--color-white);
  font-size: 32px;
  text-align: center;
  margin-top: 37px;
}

.p-contact__header {
  text-align: center;
  margin: 0 auto;
}

.p-contact__card {
  background-color: #EEF5FF;
  color: var(--color-text);
  padding: 24px 40px 83px;
  border-radius: 16px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  max-width: 1220px;
  margin: 37px auto 0;
}

.p-form__item {
  margin-top: 38px;
}

.p-form__item.mt-narrow {
  margin-top: 14px;
}

.p-form__label {
  display: block;
  font-size: 32px;
  font-weight: 400;
}

.p-form__actions {
  margin-top: 32px;
}

.p-form__actions--confirm {
  display: flex;
  gap: 16px;
}

.p-form__btn-back {
  width: 30%;
  color: var(--color-text);
}

.p-form__btn-submit {
  width: 70%;
}

.p-form .p-hero__actions {
  margin-top: 71px;
}

.p-form .p-hero__actions .c-btn {
  padding: 30px 24px;
}

.p-form .p-hero__actions .c-btn .c-btn-text::before {
  right: 15px;
  width: 23px;
}

.p-form .p-hero__actions .c-btn .c-btn-text::after {
  right: 16px;
  width: 14px;
  height: 14px;
}

.p-form .p-hero__actions .c-btn .c-btn-comment {
  font-size: 24px;
  top: -33px;
}

.p-form .p-hero__actions .c-btn.c-btn--green {
  padding: 19px 24px;
}

.p-confirm-item {
  border-bottom: 1px solid #e5e7eb;
  padding: 16px 0;
}

.p-confirm-item:first-child {
  padding-top: 0;
}

.p-confirm-item__label {
  font-size: 12px;
  color: #6b7280;
}

.p-confirm-item__value {
  font-weight: 700;
  font-size: 15px;
  white-space: pre-wrap;
  margin-top: 4px;
}

.p-thanks {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-light-blue);
  padding: 20px;
}

.p-thanks__card {
  background: #fff;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
  max-width: 500px;
  width: 100%;
  text-align: center;
}

.p-thanks__icon {
  font-size: 60px;
  color: var(--color-primary);
}

.p-thanks__title {
  font-size: 24px;
  font-weight: 700;
  color: var(--color-primary);
  margin-top: 16px;
}

.p-thanks__text {
  margin-top: 16px;
}

.p-thanks__btn {
  margin-top: 32px;
  width: 100%;
  color: var(--color-white);
  background-color: var(--color-primary);
}

.p-thanks__debug {
  font-size: 12px;
  color: var(--color-danger);
  background: #fee2e2;
  padding: 12px;
  border-radius: 4px;
  text-align: left;
  margin-top: 24px;
}

.u-hidden {
  display: none;
}

.u-hidden-sp {
  display: none;
}

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

/* =========================================
   Sub Page Styles
   ========================================= */

.l-main {
  min-height: calc(100vh - 300px);
  padding: 60px 20px;
  background-color: #f9fafb;
}

.p-page {
  max-width: 900px;
  margin: 0 auto;
  background: var(--color-white);
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.p-page__title {
  font-size: 28px;
  font-weight: 700;
  color: var(--color-primary);
  text-align: center;
  padding-bottom: 24px;
  margin-bottom: 32px;
  border-bottom: 3px solid var(--color-primary);
}

.p-page__content {
  font-size: 16px;
  line-height: 1.8;
}

.p-page__content h2 {
  font-size: 20px;
  font-weight: 700;
  color: var(--color-primary);
  margin-top: 32px;
  margin-bottom: 16px;
  padding-left: 16px;
  border-left: 4px solid var(--color-primary);
}

.p-page__content p {
  margin-bottom: 16px;
}

.p-page__content ul {
  margin-bottom: 16px;
  padding-left: 24px;
}

.p-page__content ul li {
  margin-bottom: 8px;
  list-style-type: disc;
}

.p-page__content a {
  color: var(--color-primary);
  text-decoration: underline;
}

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

.p-page__table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 24px;
}

.p-page__table th,
.p-page__table td {
  border: 1px solid #ddd;
  padding: 12px 16px;
  text-align: left;
  vertical-align: top;
}

.p-page__table th {
  background-color: #f3f4f6;
  font-weight: 700;
  width: 30%;
  white-space: nowrap;
}

.p-page__table td ul {
  margin: 0;
  padding-left: 20px;
}

.p-page__table td ul li {
  margin-bottom: 4px;
}

.p-page__date {
  text-align: right;
  color: #6b7280;
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid #e5e7eb;
}

@media (max-width: 500px) {
  .l-main {
    padding: 8vw 4vw;
  }

  .p-page {
    padding: 6.4vw;
    border-radius: 3.2vw;
  }

  .p-page__title {
    font-size: 5.6vw;
    padding-bottom: 4.8vw;
    margin-bottom: 6.4vw;
  }

  .p-page__content {
    font-size: 3.733vw;
  }

  .p-page__content h2 {
    font-size: 4.267vw;
    margin-top: 6.4vw;
    margin-bottom: 3.2vw;
    padding-left: 3.2vw;
  }

  .p-page__table th {
    width: 100%;
    display: block;
  }

  .p-page__table td {
    display: block;
  }

  .p-page__date {
    margin-top: 8vw;
    padding-top: 4.8vw;
  }
}


/* =========================================
   SP Scaling Styles (Scales down for < 500px)
   Calculated based on 750px base
   ========================================= */

@media (max-width: 500px) {
  .l-section {
    padding: 16vw 5.333vw;
  }

  .l-section--section05 .l-section__title {
    font-size: 6.933vw;
  }

  .l-section--section05 .l-section__subtitle {
    margin-top: 4.4vw;
  }

  .l-section--section06 .l-section__title {
    font-size: 6.933vw;
  }

  .l-section__header {
    margin-bottom: 5.333vw;
  }

  .l-section__title {
    font-size: 5.333vw;
    margin-top: -0.533vw;
    letter-spacing: 0.533vw;
  }

  .l-section__title .u-divided > span {
    font-size: 6.4vw;
  }

  .l-section__title .u-divided > span::before {
    top: -3.733vw;
    font-size: 4.667vw;
  }

  .l-section__subtitle {
    font-size: 4.267vw;
    margin-top: 2.933vw;
  }

  .l-header {
    padding: 1.6vw 2.533vw;
  }

  .l-header__logo {
    font-size: 4.267vw;
    gap: 1.067vw;
    max-width: 48.267vw;
  }

  .l-header__nav {
    gap: 2.133vw;
  }

  .l-header__nav .c-btn .icon.icon--line {
    width: 4.933vw;
    height: 4.4vw;
  }

  .l-header__nav .c-btn .icon.icon--contact {
    width: 4.667vw;
    height: 5.467vw;
  }

  .l-footer {
    padding: 16.4vw 0 5.333vw;
  }

  .l-footer__logo {
    font-size: 3.2vw;
    max-width: 61.333vw;
  }

  .l-footer__links {
    gap: 4.667vw;
    margin-top: 6.533vw;
  }

  .l-footer__links > a {
    font-size: 3.733vw;
  }

  .l-footer__copy {
    font-size: 2.667vw;
    margin-top: 15.6vw;
    letter-spacing: 0.027vw;
  }

  .c-btn {
    padding: 3.333vw 3.2vw;
    border-radius: 1.333vw;
    font-size: 4.267vw;
    box-shadow: 0.8vw 0.8vw 0.4vw rgba(0, 0, 0, 0.16);
  }

  .c-btn-text::before {
    right: 0.533vw;
    width: 2.667vw;
    height: 0.267vw;
  }

  .c-btn-text::after {
    right: 0.667vw;
    width: 1.333vw;
    height: 1.333vw;
    border-top: 0.267vw solid var(--color-white);
    border-right: 0.267vw solid var(--color-white);
  }

  .c-btn--accent:hover .c-btn-text::after {
    border-top: 2px solid var(--color-accent);
    border-right: 2px solid var(--color-accent);
  }

  .c-btn--green {
    font-size: 4vw;
    padding-block: 2.933vw;
  }

  .c-btn--green:hover .c-btn-text::after {
    border-top: 2px solid var(--color-green);
    border-right: 2px solid var(--color-green);
  }

  .c-btn i {
    margin-left: 1.067vw;
  }

  .c-btn--header {
    font-size: 2.133vw;
    padding: 1.6vw 4.933vw;
    border-radius: 13.333vw;
  }

  .c-btn-comment {
    padding: 1.467vw 3.333vw;
    border-radius: 6.667vw;
    left: 2vw;
    top: -3.333vw;
    font-size: 2.4vw;
  }

  .c-btn-comment::after {
    bottom: -1.333vw;
    transform: translate(-1.333vw, 1.333vw);
    border-top: 1.067vw solid #FFDE35;
    border-left: 2.667vw solid transparent;
    border-right: 0.667vw solid transparent;
  }

  .c-tag {
    padding: 1.867vw 5.733vw;
    font-size: 3.333vw;
  }

  .c-tag i {
    margin-right: 1.067vw;
  }

  .c-tag-text {
    margin-left: 0.8vw;
    letter-spacing: 0.32vw;
  }

  .c-badge {
    font-size: 3.733vw;
    padding: 0.267vw 2vw;
    border-radius: 3.333vw;
    margin-left: 1.867vw;
  }

  .c-input {
    padding: 3.067vw 2.533vw;
    font-size: 3.733vw;
    margin-top: 2.267vw;
  }

  .c-input:focus {
    box-shadow: 0 0 0 0.4vw rgba(0, 104, 183, 0.2);
  }

  .p-hero {
    padding: 5.6vw 5.333vw 8.267vw;
  }

  .p-hero__illust {
    max-width: 66.667vw;
  }

  .p-hero__content {
    margin-top: -6.4vw;
  }

  .p-hero__label {
    font-size: 6.933vw;
  }

  .p-hero__title {
    font-size: 8.267vw;
    letter-spacing: 0.133vw;
  }

  .p-hero__title::after {
    width: calc(100% - 6.133vw);
    height: 3.733vw;
    bottom: -1.067vw;
  }

  .p-hero__tags {
    gap: 2.4vw;
    margin-top: 6.267vw;
  }

  .p-hero__actions {
    gap: 2.667vw;
    margin-top: 9.067vw;
  }

  .p-feature-grid {
    gap: 3.333vw;
  }

  .p-feature-card {
    padding: 18vw 4.267vw 7.333vw;
    border-radius: 3.2vw;
    box-shadow: 1.333vw 1.333vw 0.4vw rgba(0, 0, 0, 0.16);
    margin-top: 20.533vw;
  }

  .p-feature-card__icon {
    border-radius: 20vw;
    padding: 4vw;
    top: -18.133vw;
    width: 36.533vw;
    height: 36.533vw;
  }

  .p-feature-card__icon img {
    width: 28vw;
    height: 28vw;
  }

  .p-feature-card__title {
    font-size: 4.8vw;
  }

  .p-feature-card__text {
    font-size: 4.267vw;
    margin-top: 2.133vw;
  }

  .l-section-lead {
    font-size: 4.8vw;
    letter-spacing: 0.4vw;
  }

  .l-section-lead::before,
  .l-section-lead::after {
    width: 6.4vw;
    height: 0.533vw;
    bottom: 2.667vw;
  }

  .l-section-lead::before {
    left: -8.267vw;
  }

  .l-section-lead::after {
    right: -8.267vw;
  }

  .l-section__title.p-solution-title {
    font-size: 6.933vw;
    margin-top: 4.4vw;
    letter-spacing: 0.667vw;
  }

  .p-solution-text {
    font-size: 4.267vw;
    max-width: 85.333vw;
    margin: 4.533vw auto 0;
  }

  .p-solution-points {
    gap: 4vw;
    margin-top: 4.933vw;
  }

  .p-solution-point {
    padding: 3.467vw 4.267vw;
    box-shadow: 0 0.533vw 0.8vw rgba(0, 0, 0, 0.1);
    font-size: 3.733vw;
  }

  .p-solution-point::before,
  .p-solution-point::after {
    font-size: 8vw;
  }

  .p-solution-point::before {
    left: 2.667vw;
  }

  .p-solution-point::after {
    right: 2.667vw;
  }

  .p-solution-point .orange {
    font-size: 4.267vw;
  }

  .p-reason-box {
    border-radius: 4vw;
    margin-top: 8.667vw;
    padding-inline: 4.133vw;
    padding-bottom: 7.333vw;
    box-shadow: 1.333vw 1.333vw 0.667vw rgba(0, 0, 0, 0.16);
  }

  .p-reason-box__title {
    font-size: 6.933vw;
    letter-spacing: 0.613vw;
    padding-inline: 4vw;
    transform: translateY(-5.333vw);
  }

  .p-reason-box__title .wave::after {
    height: 1.867vw;
    bottom: -1.6vw;
  }

  .p-reason-box__title em {
    font-size: 9.333vw;
  }

  .p-reason-grid {
    gap: 15.2vw;
    margin-top: 13.333vw;
  }

  .p-reason-card {
    padding: 12vw 3.2vw 4.8vw;
    border-radius: 3.2vw;
  }

  .p-reason-card__num {
    top: -10vw;
    width: 19.467vw;
    height: 19.467vw;
    font-size: 3.2vw;
    letter-spacing: 0.133vw;
  }

  .p-reason-card__num .num {
    font-size: 7.733vw;
  }

  .p-reason-card__title {
    font-size: 4.8vw;
    margin-top: 1.067vw;
  }

  .p-reason-card__text {
    font-size: 4.267vw;
    margin-top: 1.867vw;
  }

  .p-flow {
    gap: 8.933vw;
    margin-top: 8.533vw;
  }

  .p-flow__step {
    padding: 5.333vw 2.667vw 4.133vw 10.667vw;
    border-radius: 3.2vw;
    box-shadow: 0 0.133vw 0.267vw rgba(0, 0, 0, 0.05);
  }

  .p-flow__step:not(:last-child):after {
    bottom: -4.667vw;
    border: 2.133vw solid transparent;
    border-top: 2.533vw solid var(--color-white);
  }

  .p-flow__step:last-child {
    padding: 4.667vw 2.667vw 2.8vw 10.667vw;
  }

  .p-flow__step:last-child .p-flow__label {
    top: -4.4vw;
  }

  .p-flow__label {
    font-size: 3.733vw;
    padding: 0.533vw 5.067vw;
    border-radius: 3.333vw;
    top: -3.333vw;
  }

  .p-flow-item {
    gap: 4.533vw;
  }

  .p-flow__icon {
    width: 16vw;
    height: 16vw;
    margin-top: 1.067vw;
  }

  .p-flow__title {
    font-size: 4.267vw;
    margin-top: 1.067vw;
  }

  .p-faq {
    margin: 6vw auto 0;
    gap: 2.8vw;
  }

  .p-faq__item {
    border-radius: 1.067vw;
    padding: 3.867vw 5.333vw;
  }

  .p-faq__summary {
    font-size: 4.267vw;
    padding-left: 8.267vw;
  }

  .p-faq__wrapper {
    padding-right: 5.333vw;
  }

  .p-faq__icon {
    font-size: 5.867vw;
  }

  .p-faq__icon > i::before {
    transform: translate(-0.667vw, 0.667vw);
  }

  .p-faq__q,
  .p-faq__a {
    font-size: 4.8vw;
  }

  .p-faq__answer {
    margin-top: 2.667vw;
    font-size: 4.267vw;
    padding-left: 8vw;
    margin-left: 5.333vw;
  }

  .p-contact-lead {
    font-size: 6.933vw;
    letter-spacing: 0.267vw;
    margin: 1.333vw auto 0;
  }

  .p-contact-lead::before,
  .p-contact-lead::after {
    width: 6.4vw;
    height: 0.533vw;
    bottom: 2.667vw;
  }

  .p-contact-lead::before {
    left: -4.667vw;
  }

  .p-contact-lead::after {
    right: -4.667vw;
  }

  .p-contact-text {
    font-size: 4.267vw;
    margin-top: 4.933vw;
  }

  .p-contact__card {
    padding: 3.2vw 5.333vw 11.067vw;
    border-radius: 2.133vw;
    box-shadow: 0 3.333vw 6.667vw -1.6vw rgba(0, 0, 0, 0.25);
    margin: 4.933vw auto 0;
  }

  .p-form__item {
    margin-top: 5.067vw;
  }

  .p-form__item.mt-narrow {
    margin-top: 1.867vw;
  }

  .p-form__label {
    font-size: 4.267vw;
  }

  .p-form__actions {
    margin-top: 4.267vw;
  }

  .p-form__actions--confirm {
    gap: 2.133vw;
  }

  .p-form .p-hero__actions {
    margin-top: 9.467vw;
  }

  .p-form .p-hero__actions .c-btn {
    padding: 4vw 3.2vw;
  }

  .p-form .p-hero__actions .c-btn .c-btn-text::before {
    right: 2vw;
    width: 3.067vw;
  }

  .p-form .p-hero__actions .c-btn .c-btn-text::after {
    right: 2.133vw;
    width: 1.867vw;
    height: 1.867vw;
  }

  .p-form .p-hero__actions .c-btn .c-btn-comment {
    font-size: 3.2vw;
    top: -4.4vw;
  }

  .p-form .p-hero__actions .c-btn.c-btn--green {
    padding: 2.533vw 3.2vw;
  }
}

/* =========================================
   PC Styles (Keep unchanged)
   Applies to >= 768px
   ========================================= */

@media (min-width: 768px) {
  .sp-only {
    display: none;
  }

  .pc-only {
    display: block;
  }

  .l-section {
    padding: 120px 0;
  }

  .l-section--section02 {
    background-size: 20%, 20%;
    background-position: left 14% top 54%, right 13% bottom 4%;
  }

  .l-section--section03 {
    background-image: url(../images/bg-section03-pc.png);
    background-position: left top;
  }

  .l-section--section05 {
    background-image: url(../images/bg-section05-pc.png);
  }

  .l-section--section05 .l-section__title {
    margin-top: 0;
    font-size: 40px;
  }

  .l-section--section05 .l-section__subtitle {
    margin-top: 25px;
    font-size: 24px;
  }

  .l-section--section06 .l-section__title {
    font-size: 40px;
    margin-top: -6px;
  }

  .l-section--section07 {
    background-image: url(../images/bg-section07-pc.png);
  }

  .l-section__title {
    margin-top: 6px;
  }

  .l-section__title .u-divided > span::before {
    top: -36px;
  }

  .l-section__subtitle {
    font-size: 24px;
  }

  .l-header {
    padding: 14px 32px;
  }

  .l-header__logo {
    font-size: 24px;
    max-width: 230px;
  }

  .l-header__nav {
    display: flex;
  }

  .l-footer {
    padding: 80px 0 40px;
    max-width: 1200px;
    margin: auto;
  }

  .l-footer__logo {
    max-width: 320px;
  }

  .l-footer__links {
    flex-direction: row;
    justify-content: center;
    margin-top: 40px;
  }

  .l-footer__links > a {
    font-size: 14px;
    margin: unset;
  }

  .l-footer__copy {
    font-size: 14px;
    margin-top: 97px;
  }

  .c-btn {
    font-size: 22px;
    padding: 21px 24px;
  }

  .c-btn--green {
    background-color: var(--color-green);
    font-size: 20px;
    padding-block: 17px;
  }

  .c-btn--header {
    font-size: 16px;
    padding: 11px 25px;
    gap: 14px;
  }

  .c-tag {
    padding: 14px 18px;
    font-size: 18px;
  }

  .c-tag-text {
    letter-spacing: 0;
  }

  .c-badge {
    font-size: 14px;
    margin-left: 16px;
    padding: 2px 10px;
  }

  .c-input {
    width: 100%;
    padding: 12px 15px;
    border-radius: 4px;
    font-size: 16px;
    margin-top: 6px;
  }

  .p-hero__inner {
    flex-direction: row;
  }

  .p-hero {
    padding: 150px 0 140px;
    background-image: url(../images/bg-hero-pc.png);
  }

  .p-hero__title {
    font-size: 60px;
    letter-spacing: 6px;
  }

  .p-hero__actions {
    max-width: 530px;
    margin-top: 60px;
    gap: 29px;
  }

  .p-hero__content {
    margin-top: 0;
  }

  .p-hero__illust {
    max-width: 560px;
    position: absolute;
    right: -45px;
    top: -70px;
  }

  .p-hero__tags {
    gap: 19px;
  }

  .p-feature-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
  }

  .p-feature-card {
    padding: 130px 32px 36px;
    margin-top: 116px;
  }

  .p-feature-card__icon {
    top: -108px;
    width: 220px;
    height: 220px;
  }

  .p-feature-card__icon img {
    width: 170px;
    height: 170px;
  }

  .p-feature-card__title {
    font-size: 20px;
  }

  .p-feature-card__text {
    font-size: 16px;
    margin-top: 8px;
  }

  .l-section-lead {
    font-size: 30px;
  }

  .l-section-lead::before,
  .l-section-lead::after {
    height: 2px;
    bottom: 13px;
  }

  .l-section-lead::before {
    left: -57px;
  }

  .l-section-lead::after {
    right: -57px;
  }

  .l-section__title.p-solution-title {
    font-size: 40px;
    margin-top: 49px;
    letter-spacing: 3.5px;
  }

  .p-solution-text {
    font-size: 24px;
    margin: 27px auto 0;
  }

  .p-solution-points {
    max-width: 675px;
    margin: 48px auto 0;
  }

  .p-solution-point {
    margin: auto;
    width: 100%;
    font-size: 20px;
    padding: 18px 32px;
  }

  .p-solution-point .orange {
    font-size: 24px;
  }

  .p-solution-point::before,
  .p-solution-point::after {
    font-size: 45px;
  }

  .p-solution-point::before {
    left: 14px;
  }

  .p-solution-point::after {
    right: 14px;
  }

  .p-reason-box {
    margin-top: 35px;
    padding: 0 50px 43px;
    background-image: url(../images/bg-section04-pc.png);
  }

  .p-reason-grid {
    gap: 80px 20px;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }

  .p-reason-box__title {
    font-size: 40px;
    letter-spacing: 4.2px;
    transform: translateY(-10px);
  }

  .p-reason-box__title .wave::after {
    bottom: -9px;
    height: 11px;
  }

  .p-reason-box__title em {
    font-size: 60px;
  }

  .p-reason-card {
    padding: 55px 24px 36px;
    max-width: 350px;
    width: 100%;
  }

  .p-reason-card__num {
    width: 100px;
    height: 100px;
    font-size: 14px;
    top: -50px;
  }

  .p-reason-card__num .num {
    font-size: 40px;
  }

  .p-reason-card__title {
    font-size: 20px;
    margin-top: 15px;
  }

  .p-reason-card__text {
    font-size: 16px;
    margin-top: 8px;
  }

  .p-flow {
    flex-direction: row;
    margin-top: 63px;
    align-items: baseline;
    gap: 25px;
  }

  .p-flow__label {
    font-size: 16px;
    padding: 2px 16px;
    top: -14px;
  }

  .p-flow__step {
    padding: 42px 9px 21px;
  }

  .p-flow__step:not(:last-child):after {
    right: -32px !important;
    inset-inline: unset;
    inset-block: 0;
    rotate: -90deg;
    height: fit-content;
  }

  .p-flow__step:last-child {
    padding: 42px 4px 11px;
    border: solid 5px var(--color-primary);
  }

  .p-flow__step:last-child .p-flow__label {
    top: -21px;
  }

  .p-flow-item {
    gap: 9px;
    display: grid;
    grid-template-rows: auto 1fr;
    justify-content: center;
    justify-items: center;
  }

  .p-flow__icon {
    width: 64px;
    height: 64px;
  }

  .p-flow__title {
    font-weight: 700;
    font-size: 16px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
  }

  .p-faq {
    margin: 48px auto 0;
  }

  .p-faq__item {
    border-radius: 16px;
    padding: 29px 40px 29px 52px;
  }

  .p-faq__q,
  .p-faq__a {
    font-size: 24px;
  }

  .p-faq__q {
    top: -4px;
  }

  .p-faq__a {
    left: -2px;
    top: -5px;
  }

  .p-faq__summary,
  .p-faq__answer {
    font-size: 18px;
  }

  .p-faq__summary {
    padding-left: 45px;
  }

  .p-faq__answer {
    margin-top: 31px;
    padding-left: 44px;
  }

  .p-faq__icon {
    font-size: 32px;
    right: 6px;
  }

  .p-contact-lead {
    font-size: 40px;
    margin: 0 auto;
    letter-spacing: 4px;
  }

  .p-contact-lead::before {
    left: -46px;
  }

  .p-contact-lead::after {
    right: -46px;
  }

  .p-contact-text {
    margin-top: 25px;
    font-size: 24px;
  }

  .p-contact__card {
    margin: 48px auto 0;
    padding: 40px 40px 56px;
  }

  .p-form {
    max-width: 852px;
    margin: auto;
  }

  .p-form__label {
    font-size: 16px;
  }

  .p-form__item {
    margin-top: 30px;
  }

  .p-form__item.mt-narrow {
    margin-top: 20px;
  }

  .p-form__container {
    display: flex;
    flex-wrap: wrap;
    gap: 0px 28px;
  }

  .p-form__container .p-form__item {
    width: calc(50% - 14px);
  }

  .p-form .p-hero__actions {
    margin: 55px auto 0;
    gap: 31px;
  }

  .p-form .p-hero__actions .c-btn {
    padding: 22px 24px;
  }

  .p-form .p-hero__actions .c-btn .c-btn-text::before {
    right: 5px;
    width: 18px;
  }

  .p-form .p-hero__actions .c-btn .c-btn-text::after {
    right: 5px;
    width: 10px;
    height: 10px;
  }

  .p-form .p-hero__actions .c-btn .c-btn-comment {
    font-size: 18px;
    top: -27px;
    padding: 12px 25px;
  }

  .p-form .p-hero__actions .c-btn.c-btn--green {
    padding: 16px 24px;
  }

  .u-hidden-sp {
    display: block;
  }
}

@media (max-width: 768px) {
  .p-floating-btn {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    padding: 10px;
    transform: translateY(100%);
    transition: transform 0.3s ease-in-out;
  }

  .p-floating-btn.is-show {
    transform: translateY(0);
  }

  .p-floating-btn .c-btn {
    gap: 12px;
  }

  .p-floating-btn .l-header__nav {
    display: flex;
    gap: 8px;
    justify-content: center;
  }

  .p-floating-btn .c-btn--header {
    flex: 1;
    font-size: 12px;
    padding: 12px 5px;
  }
}