@charset "UTF-8";

html {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

*,
::before,
::after {
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
}

h1,
h2,
h3,
h4,
h5,
h6,
a,
p,
span,
em,
small,
strong,
sub,
sup,
mark,
del,
ins,
strike,
abbr,
dfn,
blockquote,
q,
cite,
code,
pre,
ol,
ul,
li,
dl,
dt,
dd,
div,
section,
article,
main,
aside,
nav,
header,
hgroup,
footer,
img,
figure,
figcaption,
address,
time,
audio,
video,
canvas,
iframe,
details,
summary,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td {
  border: 0;
  margin: 0;
  padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
}

article,
aside,
footer,
header,
nav,
section,
main,
figure,
figcaption {
  display: block;
}

ul,
ol {
  list-style: none;
  list-style-type: 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;
}

/**カラー*********/

html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 16px;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  color: #362D25;
  line-height: 1;
  font-size: 1rem;
  letter-spacing: 0;
  -webkit-text-size-adjust: 100%;
}

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

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

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

.l-header {
  background-color: #fff;
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  width: 100%;
  -webkit-transition: -webkit-box-shadow 0.3s ease;
  transition: -webkit-box-shadow 0.3s ease;
  transition: box-shadow 0.3s ease;
  transition: box-shadow 0.3s ease, -webkit-box-shadow 0.3s ease;
}

.l-header.is-scrolled {
  -webkit-box-shadow: 0 0.125rem 0.5rem rgba(0, 0, 0, 0.1);
          box-shadow: 0 0.125rem 0.5rem rgba(0, 0, 0, 0.1);
}

.l-header__inner {
  max-width: 81.875rem;
  margin: 0 auto;
  padding: 0.1875rem 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.l-header__logo {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  position: relative;
  z-index: 10001;
}

.l-header__logo-link {
  width: 7rem;
}

.l-header__hamburger {
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0.3125rem;
  width: 3rem;
  height: 3rem;
  background-color: #319B8A;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  padding: 0.75rem;
  position: relative;
  z-index: 10001;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.l-header__hamburger:hover {
  background-color: #2a8577;
}

.l-header__hamburger-line {
  width: 100%;
  height: 0.1875rem;
  background-color: #fff;
  border-radius: 0.125rem;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-transform-origin: center;
          transform-origin: center;
}

.l-header__hamburger.is-active .l-header__hamburger-line:nth-child(1) {
  -webkit-transform: translateY(0.5rem) rotate(45deg);
          transform: translateY(0.5rem) rotate(45deg);
}

.l-header__hamburger.is-active .l-header__hamburger-line:nth-child(2) {
  opacity: 0;
}

.l-header__hamburger.is-active .l-header__hamburger-line:nth-child(3) {
  -webkit-transform: translateY(-0.5rem) rotate(-45deg);
          transform: translateY(-0.5rem) rotate(-45deg);
}

.l-header__nav {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.75rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.l-header__overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.3s ease, visibility 0.3s ease;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 9998;
}

.l-header__overlay.is-visible {
  opacity: 1;
  visibility: visible;
}

.l-footer {
  background-color: #F0C821;
  padding: 2.5rem 0 0;
}

.l-footer__logo {
  text-align: center;
  width: 13.75rem;
  margin: 0 auto;
}

.l-footer__nav {
  margin: 1rem auto 0;
  max-width: 34.375rem;
}

.l-footer__nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0.375rem 2rem;
}

.l-footer__nav-item {
  font-weight: 700;
  line-height: 1.43;
}

.l-footer__nav-link:hover {
  opacity: 0.7;
}

.l-footer__copyright-bar {
  background-color: #FD7E24;
  padding: 0.875rem;
  margin-top: 3.125rem;
}

.l-footer__copyright-text {
  font-size: 0.75rem;
  line-height: 1.41;
  color: #fff;
  text-align: center;
  font-weight: 700;
}

.l-container {
  padding-top: 3.75rem;
  overflow-x: clip;
}

.l-border-wrapper {
  border: 1.875rem solid #F9F6B3;
  background-color: #F0DF21;
}

.c-btn {
  display: inline-block;
  color: #fff;
  font-weight: 700;
  font-family: "Zen Maru Gothic", sans-serif;
  text-align: center;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

.c-btn:hover {
  color: #fff;
}

.c-btn--sm {
  padding: 0.9375rem 2.5rem 0.75rem;
  font-size: 1rem;
  border-radius: 2.5rem;
}

.c-btn--lg {
  padding: 1.25rem 2.5rem;
  font-size: 1.8125rem;
  border-radius: 3.125rem;
  min-width: 15.875rem;
}

.c-btn--xl {
  padding: 1.8125rem 2.5rem 1.4375rem;
  font-size: 1.8125rem;
  border-radius: 3.125rem;
  min-width: 26.25rem;
}

.c-btn--orange {
  background-color: #FD7E24;
}

.c-btn--orange.c-btn--shadow-sm {
  -webkit-box-shadow: 0 0.25rem 0 #DB5B00;
          box-shadow: 0 0.25rem 0 #DB5B00;
}

.c-btn--orange.c-btn--shadow-sm:hover {
  -webkit-transform: translateY(0.25rem);
          transform: translateY(0.25rem);
  -webkit-box-shadow: 0 0 0 #DB5B00;
          box-shadow: 0 0 0 #DB5B00;
}

.c-btn--orange.c-btn--shadow-lg {
  -webkit-box-shadow: 0 0.5625rem 0 #DB5B00;
          box-shadow: 0 0.5625rem 0 #DB5B00;
}

.c-btn--orange.c-btn--shadow-lg:hover {
  -webkit-transform: translateY(0.5625rem);
          transform: translateY(0.5625rem);
  -webkit-box-shadow: 0 0 0 #DB5B00;
          box-shadow: 0 0 0 #DB5B00;
}

.c-btn--green {
  background-color: #319B8A;
}

.c-btn--green.c-btn--shadow-sm {
  -webkit-box-shadow: 0 0.25rem 0 #167162;
          box-shadow: 0 0.25rem 0 #167162;
}

.c-btn--green.c-btn--shadow-sm:hover {
  -webkit-transform: translateY(0.25rem);
          transform: translateY(0.25rem);
  -webkit-box-shadow: 0 0 0 #167162;
          box-shadow: 0 0 0 #167162;
}

.c-btn--green.c-btn--shadow-lg {
  -webkit-box-shadow: 0 0.5625rem 0 #167162;
          box-shadow: 0 0.5625rem 0 #167162;
}

.c-btn--green.c-btn--shadow-lg:hover {
  -webkit-transform: translateY(0.5625rem);
          transform: translateY(0.5625rem);
  -webkit-box-shadow: 0 0 0 #167162;
          box-shadow: 0 0 0 #167162;
}

.c-btn--gray {
  background-color: #DD3A4E;
}

.c-btn--gray.c-btn--shadow-sm {
  -webkit-box-shadow: 0 0.25rem 0 #A82638;
          box-shadow: 0 0.25rem 0 #A82638;
}

.c-btn--gray.c-btn--shadow-sm:hover {
  -webkit-transform: translateY(0.25rem);
          transform: translateY(0.25rem);
  -webkit-box-shadow: 0 0 0 #A82638;
          box-shadow: 0 0 0 #A82638;
}

.c-btn--gray.c-btn--shadow-lg {
  -webkit-box-shadow: 0 0.5625rem 0 #A82638;
          box-shadow: 0 0.5625rem 0 #A82638;
}

.c-btn--gray.c-btn--shadow-lg:hover {
  -webkit-transform: translateY(0.5625rem);
          transform: translateY(0.5625rem);
  -webkit-box-shadow: 0 0 0 #A82638;
          box-shadow: 0 0 0 #A82638;
}

.c-btn--coming {
  background-color: #A3A3A3;
  pointer-events: none;
}

.c-btn--coming.c-btn--shadow-sm {
  -webkit-box-shadow: 0 0.25rem 0 #726A6A;
          box-shadow: 0 0.25rem 0 #726A6A;
}

.c-btn--coming.c-btn--shadow-lg {
  -webkit-box-shadow: 0 0.5625rem 0 #726A6A;
          box-shadow: 0 0.5625rem 0 #726A6A;
}

.c-btn--coming:hover {
  -webkit-transform: none;
          transform: none;
}

.c-section > * {
  background-color: #fff;
  max-width: 75rem;
  margin: 0 auto;
  border-radius: 4.75rem;
  padding: 4.25rem 0;
}

.c-section__inner {
  width: 94%;
  margin: 0 auto;
}

.c-ttl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 3.125rem;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: bold;
  line-height: 1.44;
  text-align: center;
  position: relative;
}

.c-ttl__imageWrapper {
  position: absolute;
}

.p-fv {
  position: relative;
}

.p-fv__slider {
  position: relative;
  width: 91.6%;
  margin: 0 auto;
}

.p-fv__slider.swiper {
  overflow: visible;
  height: auto;
}

.p-fv__slider .swiper-wrapper {
  height: auto;
}

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

.p-fv__slide picture {
  display: block;
  width: 100%;
  height: 100%;
}

.p-fv__slide img {
  width: 100%;
  height: auto;
  display: block;
}

.p-fv__slide--with-btn {
  position: relative;
}

.p-fv__slide-btn-wrapper {
  position: absolute;
  bottom: 3.75rem;
  left: 3.75rem;
}

.p-fv__button-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 3.125rem;
}

.p-fv__slider .swiper-pagination {
  bottom: -2rem;
}

.p-fv__slider .swiper-pagination-bullet {
  width: 0.5625rem;
  height: 0.5625rem;
  background-color: #FFFFFF;
  opacity: 1;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.p-fv__slider .swiper-pagination-bullet-active {
  background-color: #319B8A;
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}

.p-report-banner {
  position: absolute;
  bottom: -4.8125rem;
  right: 0;
  z-index: 100;
  width: 25rem;
}

.p-report-banner__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 1rem 1.25rem;
  position: relative;
  padding: 1.25rem 3.125rem 1.5rem;
}

.p-report-banner__link > * {
  position: relative;
}

.p-report-banner__link::before {
  content: "";
  width: 25.0625rem;
  height: 10.5625rem;
  background: url(../img/bg_fixed.png) center/contain no-repeat;
  position: absolute;
  bottom: 0;
  right: 0;
}

.p-report-banner__link:hover {
  opacity: 0.8;
}

.p-report-banner__content {
  position: relative;
  z-index: 1;
}

.p-report-banner__name {
  font-size: 1.5625rem;
  font-weight: 700;
  line-height: 1.32;
  font-family: "Zen Maru Gothic", sans-serif;
  text-align: center;
  color: #fff;
}

.p-report-banner__button {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.1875rem;
  background-color: #fff;
  color: #E85580;
  font-size: 1.375rem;
  font-weight: 700;
  padding: 0.5625rem 1.1875rem 0.625rem 2.0625rem;
  border-radius: 2.5rem;
  font-family: "Zen Maru Gothic", sans-serif;
  margin-top: 0.4375rem;
  min-width: 10.75rem;
}

.p-report-banner__button--coming {
  padding: 0.5625rem 1.1875rem 0.625rem;
}

.p-report-banner__button--coming .p-report-banner__button-text {
  letter-spacing: 0;
}

.p-report-banner__button-text {
  letter-spacing: 0.3em;
}

.p-report-banner__button-arrow {
  width: 1.9375rem;
}

.p-report-banner__image {
  width: 10.625rem;
  position: absolute;
  bottom: 0.25rem;
  right: 0;
}

.p-about {
  padding-top: 6.5rem;
}

.p-about__heading {
  margin-left: 5.625rem;
}

.p-about__heading .c-ttl__imageWrapper {
  width: 6.9375rem;
  position: absolute;
  top: -1.9375rem;
  left: 25.5%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
}

.p-about__cards {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.625rem;
  max-width: 62.5rem;
  margin: 3.1875rem auto 0;
}

.p-about__card {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  border: 0.1875rem solid #FD7E24;
  border-radius: 1.875rem;
  overflow: hidden;
  background-color: #fff;
}

.p-about__card-header {
  background-color: #FD7E24;
  padding: 0.75rem 0.75rem 0;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: relative;
}

.p-about__card-num {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 3.125rem;
  font-weight: 700;
  color: #F0DF21;
  line-height: 1;
}

.p-about__card-title {
  font-size: 1.875rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.46;
  margin-top: 0.0625rem;
}

.p-about__card-imgWrapper {
  width: 12.25rem;
}

.p-about__card-body {
  padding: 1.25rem 1.5625rem;
  background-color: #fff;
}

.p-about__card-body p {
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 2;
}

.p-about__questions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 3.125rem auto 0;
  max-width: 62.5rem;
}

.p-about__question-img {
  position: absolute;
  z-index: 2;
}

.p-about__question-bubble {
  position: relative;
  border-radius: 1.25rem;
  padding: 0.875rem 1.4375rem 2.0625rem 2rem;
  text-align: center;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 1.25rem;
  line-height: 1.45;
  font-weight: 700;
}

.p-about__question-bubble::before {
  content: "";
  position: absolute;
  top: 0;
  left: -0.1875rem;
  width: 13.92rem;
  height: 6.605rem;
  background-image: url("../img/bg_bubble01.png");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

.p-about__question-bubble > * {
  position: relative;
}

.p-about__question {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.75rem;
  width: 33.3333%;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.p-about__question--01 .p-about__question-bubble {
  padding-right: 0.875rem;
}

.p-about__question--01 .p-about__question-img {
  width: 9.25rem;
  left: 1.0625rem;
  top: -0.8125rem;
}

.p-about__question--02 .p-about__question-bubble {
  padding-right: 2.1875rem;
}

.p-about__question--02 .p-about__question-img {
  width: 8.1875rem;
  top: -0.9375rem;
  left: 0.4375rem;
}

.p-about__question--03 .p-about__question-bubble {
  padding-right: 0.5rem;
}

.p-about__question--03 .p-about__question-bubble::before {
  left: 0.1875rem;
}

.p-about__question--03 .p-about__question-img {
  width: 9.75rem;
  top: -0.875rem;
  left: -0.25rem;
}

.p-about__video {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #319B8A;
  border-radius: 1.875rem;
  padding: 2.1875rem 0 2.625rem;
  position: relative;
  z-index: 3;
  max-width: 62.5rem;
  margin: 1.5625rem auto 0;
}

.p-about__video-character {
  width: 11.6875rem;
  position: absolute;
  left: 2.8125rem;
  bottom: 0;
}

.p-about__video-text {
  font-size: 1.75rem;
  font-weight: 700;
  color: #fff;
}

.p-plan {
  padding-top: 4.375rem;
}

.p-plan__heading .c-ttl__imageWrapper--left {
  width: 7.875rem;
  top: -3.75rem;
  left: 19%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
}

.p-plan__heading .c-ttl__imageWrapper--right {
  width: 8.125rem;
  top: -3.6875rem;
  left: 79%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
}

.p-plan__selector {
  max-width: 70.75rem;
  margin: 2.5rem auto 0;
  background-color: #F4F2F2;
  padding: 2.8125rem 0 3.5rem;
}

.p-plan__selector-label {
  font-size: 1.5625rem;
  font-weight: 700;
  font-family: "Zen Maru Gothic", sans-serif;
  text-align: center;
  margin-bottom: 1rem;
}

.p-plan__selector-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.9375rem;
  max-width: 32.0625rem;
  margin: 2.5rem auto 0;
  width: 90%;
}

.p-plan__selector-btn {
  background-color: #fff;
  border: 0.1875rem solid #FD7E24;
  border-radius: 0.9375rem;
  padding: 0.8125rem 1.875rem;
  font-size: 1.25rem;
  font-weight: 700;
  color: #FD7E24;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  text-align: left;
}

.p-plan__selector-btn:hover {
  background-color: #FFF5EE;
}

.p-plan__selector-btn.is-active {
  background-color: #FD7E24;
  color: #fff;
}

.p-plan__chart-wrapper {
  border: 0.1875rem solid #FD7E24;
  border-radius: 0.9375rem;
  margin-top: 1.5625rem;
  max-width: 70.75rem;
  margin-left: auto;
  margin-right: auto;
  overflow: hidden;
}

.p-plan__chart-header {
  background-color: #FD7E24;
  padding: 0.625rem 1.875rem 0.75rem;
}

.p-plan__chart-label {
  color: #fff;
  font-size: 1.5625rem;
  font-weight: 700;
  font-family: "Zen Maru Gothic", sans-serif;
  line-height: 1.4;
}

.p-plan__chart-plan-wrapper {
  padding: 1.6875rem 1.25rem 3.625rem;
}

.p-plan__chart-plan-name {
  font-size: 1.25rem;
  font-weight: 700;
  text-align: center;
}

.p-plan__chart-price {
  background-color: #FFEEE2;
  padding: 1.875rem 0.625rem 2.5rem;
  margin-top: 1.375rem;
}

.p-plan__chart-price-label {
  font-size: 1.5625rem;
  font-weight: 700;
  text-align: center;
  color: #DE5C00;
}

.p-plan__chart-price-note {
  font-size: 0.875rem;
  margin: 0.625rem auto 0;
  max-width: 30rem;
  line-height: 1.44;
}

.p-plan__chart-price-amount {
  font-size: 3.125rem;
  padding: 0 0.625rem;
}

.p-plan__chart {
  margin: 1.25rem auto 0;
  max-width: 64.375rem;
  width: 100%;
  position: relative;
}

.p-plan__chart canvas {
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  -webkit-font-smoothing: subpixel-antialiased;
}

.p-plan__estimate-btn-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 2.1875rem;
}

.p-plan__estimate-btn {
  padding: 1.625rem 4.0625rem;
}

.p-plan__estimate-note {
  font-size: 0.875rem;
  margin-top: 1.25rem;
  text-align: center;
  line-height: 1.5;
}

.p-flow {
  padding-top: 4.375rem;
}

.p-flow__container {
  padding-bottom: 5.4375rem;
}

.p-flow__inner {
  width: 93%;
  margin: 0 auto;
}

.p-flow__heading .c-ttl__imageWrapper {
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
}

.p-flow__heading .c-ttl__imageWrapper--left {
  width: 9.5rem;
  top: -5.4375rem;
  left: 10.8%;
}

.p-flow__heading .c-ttl__imageWrapper--right {
  width: 9.75rem;
  top: -8.125rem;
  left: 89%;
}

.p-flow__steps {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  max-width: 60rem;
  margin: 2.3125rem auto 0;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.p-flow__step {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.p-flow__step-num {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 3.125rem;
  font-weight: 700;
  color: #FD7E24;
  line-height: 1.44;
}

.p-flow__step-icon {
  width: auto;
  margin: 0 auto;
  height: 8.8125rem;
}

.p-flow__step-icon img {
  height: 100%;
}

.p-flow__step-text {
  font-size: 1.25rem;
  font-weight: 700;
  color: #319B8A;
  line-height: 1.25;
  margin-top: 1.3125rem;
}

.p-flow__note {
  font-size: 0.875rem;
  margin-top: 1.875rem;
  text-align: center;
  line-height: 1.5;
}

.p-partner {
  padding-top: 4.375rem;
}

.p-partner__heading .c-ttl__imageWrapper {
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
}

.p-partner__heading .c-ttl__imageWrapper--left {
  width: 10.5625rem;
  top: -8.5rem;
  left: 10.2%;
}

.p-partner__heading .c-ttl__imageWrapper--right {
  width: 9.8125rem;
  top: -6.25rem;
  left: 90.7%;
}

.p-partner__map {
  max-width: 44.5rem;
  margin: 1.875rem auto 0;
}

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

.p-partner__text {
  text-align: center;
  margin-top: 0.825rem;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.75;
}

.p-ambassador {
  padding-top: 4.375rem;
}

.p-ambassador__inner {
  max-width: 61.25rem;
}

.p-ambassador__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2.9375rem;
}

.p-ambassador__image {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 23.9375rem;
  overflow: hidden;
}

.p-ambassador__text-wrapper {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.p-ambassador__title {
  font-size: 2.8125rem;
  font-weight: 700;
  line-height: 1.44;
  font-family: "Zen Maru Gothic", sans-serif;
}

.p-ambassador__subtitle {
  font-size: 1.25rem;
  font-weight: 700;
  color: #FD7E25;
  margin-top: 1.875rem;
  background: #FFEEE2;
  border-radius: 3.125rem;
  padding: 0.625rem 1.1875rem;
  display: inline-block;
}

.p-ambassador__description {
  margin-top: 1.9375rem;
  font-size: 1.25rem;
  line-height: 1.75;
  font-weight: 600;
}

.p-ambassador__btn-wrapper {
  margin-top: 1.6875rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.p-more {
  padding-top: 4.375rem;
}

.p-more__container {
  padding-bottom: 5.625rem;
}

.p-more__desc {
  text-align: center;
  font-size: 1.25rem;
  line-height: 1.75;
  margin-top: 1.25rem;
  font-weight: 700;
}

.p-more__character {
  width: 17.6875rem;
  margin: 1.5625rem auto 0;
}

.p-more__btn-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 1.5625rem;
}

.p-more__articles {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.625rem;
  max-width: 62.5rem;
  margin: 3.625rem auto 0;
}

.p-more__article {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  background-color: #F4F2F2;
  padding: 2.5rem 1.875rem 3.25rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 1rem;
}

.p-more__article-icon {
  width: 4.806875rem;
  margin: 0 auto;
}

.p-more__article-title {
  font-size: 1.5625rem;
  font-weight: 700;
  line-height: 1.6;
  margin-top: 1.9375rem;
  font-family: "Zen Maru Gothic", sans-serif;
  letter-spacing: -0.05em;
}

.p-more__article-text {
  line-height: 1.56;
  font-weight: 600;
  margin-top: 1.5rem;
}

.p-more__btn-wrapper {
  margin-top: 1.5625rem;
}

.p-contact {
  padding: 6.125rem 0 6.375rem;
}

.p-contact--page {
  padding-top: 8.75rem;
}

.p-contact__inner {
  max-width: 75rem;
}

.p-contact__heading .c-ttl__imageWrapper--right {
  width: 17rem;
  bottom: -5rem;
  left: 82.6%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
}

.p-contact__form {
  max-width: 62.5rem;
  margin: 2rem auto 0;
  background-color: #fff;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 2.5rem 0;
}

.p-contact__form .shadow-lg {
  -webkit-box-shadow: none;
          box-shadow: none;
}

.p-contact__form .p-8 {
  padding: 0;
}

.p-contact__description {
  max-width: 50rem;
  margin-bottom: 1.875rem;
  text-align: center;
  width: 100%;
}

.p-contact__description-text {
  font-size: 1.25rem;
  line-height: 1.75;
  font-weight: 700;
  margin-bottom: 1.875rem;
}

.p-contact__features {
  background-color: #F4F2F2;
  padding: 1.875rem 2.5rem;
  border-radius: 0.9375rem;
}

.p-contact__features-title {
  font-size: 1.5625rem;
  font-weight: 700;
  line-height: 1.6;
  color: #FD7E24;
  margin-bottom: 1rem;
  font-family: "Zen Maru Gothic", sans-serif;
}

.p-contact__features-list {
  text-align: left;
  display: inline-block;
}

.p-contact__features-item {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.75;
  position: relative;
  padding-left: 1.25rem;
}

.p-contact__features-item::before {
  content: "・";
  position: absolute;
  left: 0;
}

.p-contact__features-highlight {
  color: #FD7E24;
  font-weight: 900;
}

.p-contact-page {
  padding: 8.75rem 0 6.25rem;
  background-color: #FFE500;
  position: relative;
  overflow: hidden;
}

.p-contact-page__container {
  max-width: 75rem;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.p-contact-page__heading .c-ttl__imageWrapper--right {
  width: 17rem;
  bottom: -6.25rem;
  left: 82.6%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
}

.p-contact-page__form-wrapper {
  margin: 0 auto;
  position: relative;
}

.p-contact-page__form {
  background-color: #FFF8D6;
  border-radius: 1.25rem;
  padding: 2.5rem 0;
  width: 90%;
  margin: 2.5rem auto 0;
  position: relative;
  z-index: 1;
}

.p-contact-page__field {
  width: 92%;
  margin-left: auto;
  margin-right: auto;
}

.p-contact-page__field:not(:first-child) {
  margin-top: 1.875rem;
}

.p-contact-page__label {
  display: block;
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  font-family: "Noto Sans JP", sans-serif;
}

.p-contact-page__label--hidden {
  display: none;
}

.p-contact-page__required {
  color: #E53935;
  margin-right: 0.25rem;
  font-size: 1.125rem;
}

.p-contact-page__input {
  width: 100%;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  font-family: "Noto Sans JP", sans-serif;
  border: 0.125rem solid #E0E0E0;
  border-radius: 0.5rem;
  background-color: #FFFFFF;
  -webkit-transition: border-color 0.3s ease;
  transition: border-color 0.3s ease;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.p-contact-page__input:focus {
  outline: none;
  border-color: #FD7E24;
}

.p-contact-page__select {
  width: 96%;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  font-family: "Noto Sans JP", sans-serif;
  border: 0.125rem solid #E0E0E0;
  border-radius: 0.5rem;
  background-color: #FFFFFF;
  -webkit-transition: border-color 0.3s ease;
  transition: border-color 0.3s ease;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23343434' d='M1.41 0L6 4.58 10.59 0 12 1.41l-6 6-6-6z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.p-contact-page__select:focus {
  outline: none;
  border-color: #FD7E24;
}

.p-contact-page__textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  font-family: "Noto Sans JP", sans-serif;
  border: 0.125rem solid #E0E0E0;
  border-radius: 0.5rem;
  background-color: #FFFFFF;
  min-height: 12.5rem;
  resize: vertical;
  -webkit-transition: border-color 0.3s ease;
  transition: border-color 0.3s ease;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.p-contact-page__textarea:focus {
  outline: none;
  border-color: #FD7E24;
}

.p-contact-page__checkbox-field {
  margin-top: 1.875rem;
  width: 92%;
  margin-left: auto;
  margin-right: auto;
}

.p-contact-page__checkbox-field dd {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0.5rem;
}

.p-contact-page__checkbox-field label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.75rem;
  font-size: 1.25rem;
  font-weight: 700;
}

.p-contact-page__checkbox {
  width: 1.25rem;
  height: 1.25rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  cursor: pointer;
  accent-color: #319B8A;
}

.p-contact-page__checkbox-label {
  font-size: 1.125rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  color: #343434;
  line-height: 1.6;
  cursor: pointer;
}

.p-contact-page__link {
  color: #0066CC;
  text-decoration: underline;
}

.p-contact-page__link:hover {
  color: #0052A3;
}

.p-contact-page__submit {
  width: 90%;
  margin: 0 auto;
  display: block;
  padding: 1.125rem 0;
  font-size: 1.25rem;
  font-weight: 700;
  color: #FFFFFF;
  background-color: #A3A3A3;
  border: none;
  border-radius: 3.125rem;
  cursor: not-allowed;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  font-family: "Zen Maru Gothic", sans-serif;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.p-contact-page__submit:not(:disabled) {
  background-color: #319B8A;
  cursor: pointer;
}

.p-contact-page__submit:not(:disabled):hover {
  background-color: #167162;
}

#form_submit {
  margin-top: 1.875rem;
}

#thanks::before {
  display: none;
}

#thanks .c-ttl__imageWrapper--right {
  width: 17rem !important;
  bottom: -5rem !important;
  left: 82.6% !important;
}

form#mail_form {
  width: auto !important;
  margin: 3.125rem auto !important;
  border: 0.0625rem solid #cccccc !important;
  border-radius: 0.4375rem !important;
  -webkit-box-shadow: 0 0 0.4375rem rgba(0, 0, 0, 0.2) !important;
          box-shadow: 0 0 0.4375rem rgba(0, 0, 0, 0.2) !important;
}

form#mail_form dl dt {
  width: 22% !important;
  float: left !important;
  padding: 2.1875rem 0 1.5625rem !important;
  text-align: left !important;
}

form#mail_form dl dd {
  width: 72% !important;
}

form#mail_form dl dt span.required,
form#mail_form dl dt span.optional {
  display: none !important;
}

form#mail_form dl dt i {
  display: none !important;
}

form#mail_form dl dd span.error_blank,
form#mail_form dl dd span.error_format,
form#mail_form dl dd span.error_match {
  display: block;
  color: #E53935 !important;
  margin-top: 0.5rem !important;
  font-size: 0.875rem;
  font-weight: 400;
}

form#mail_form .p-contact-page__checkbox-field dt {
  width: 100% !important;
  float: none !important;
}

form#mail_form .p-contact-page__checkbox-field dd {
  width: 100% !important;
}

form#mail_form input[type=text],
form#mail_form input[type=email],
form#mail_form input[type=tel] {
  padding: 0.4375rem 2% !important;
  border: 0.0625rem solid #cccccc !important;
  border-radius: 0.1875rem !important;
  font-size: 1rem !important;
}

form#mail_form select {
  padding: 0.4375rem 2% !important;
  border: 0.0625rem solid #cccccc !important;
  border-radius: 0.1875rem !important;
  font-size: 1rem !important;
}

form#mail_form textarea {
  height: 12.5rem !important;
  padding: 0.4375rem 2% !important;
  border: 0.0625rem solid #cccccc !important;
  border-radius: 0.1875rem !important;
  font-size: 1rem !important;
}

form#mail_form input[type=button] {
  margin-left: 0 !important;
  padding: 0.4375rem 1.25rem !important;
  border: 0.0625rem solid #4cae4c !important;
  border-radius: 0.1875rem !important;
  font-size: 1.75rem !important;
}

form#mail_form p#form_submit {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-pack: center !important;
      -ms-flex-pack: center !important;
          justify-content: center !important;
  margin-top: 1.875rem !important;
}

.p-thanks {
  width: 100%;
  max-width: 50rem;
  margin: 0 auto;
  padding: 2.5rem 1.25rem;
}

.p-thanks__message {
  background-color: #fff;
  border-radius: 1rem;
  padding: 3.125rem 2.5rem;
  -webkit-box-shadow: 0 0.25rem 1.25rem rgba(0, 0, 0, 0.08);
          box-shadow: 0 0.25rem 1.25rem rgba(0, 0, 0, 0.08);
}

.p-thanks__text {
  font-size: 1.125rem;
  line-height: 1.8;
  color: #707070;
  text-align: center;
}

.p-thanks__text:not(:first-child) {
  margin-top: 1.875rem;
}

.p-thanks__btn-wrapper {
  margin-top: 3.125rem;
  text-align: center;
}

.u-sp {
  display: none;
}

.u-df {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.u-jc-c {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.u-jc-sb {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.u-ai-c {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.u-fd-c {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          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-ff-noto {
  font-family: "Noto Sans JP", sans-serif;
}

.u-ff-zen {
  font-family: "Zen Maru Gothic", sans-serif;
}

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

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

@media screen and (min-width: 1600px) {
  .p-fv__slide-btn-wrapper {
    bottom: 10%;
    left: 10%;
  }
}

@media screen and (max-width: 1000px) {
  form#mail_form dl dd {
    padding: 1.875rem 0 1.5625rem 5% !important;
    float: right !important;
  }
}

@media (max-width: 768px) {
  html {
    font-size: 3.7209302326vw;
  }
}

@media screen and (max-width: 768px) {
  .l-header__inner {
    padding: 0.1875rem 1.25rem;
  }

  .l-header__hamburger {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  .l-header__nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background-color: #fff;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 1.5rem;
    padding: 5rem 2.5rem;
    -webkit-transition: right 0.3s ease;
    transition: right 0.3s ease;
    z-index: 10000;
  }

  .l-header__nav.is-open {
    right: 0;
  }

  .l-header__nav .c-btn {
    width: 100%;
    max-width: 20rem;
  }

  .l-header__overlay {
    display: block;
  }

  .l-footer {
    padding: 1.5rem 0 0;
  }

  .l-footer__nav {
    margin-top: 1.5rem;
  }

  .l-footer__nav-list {
    gap: 0.625rem 1.5rem;
  }

  .l-footer__nav-item {
    font-size: 0.75rem;
  }

  .l-footer__copyright-bar {
    margin-top: 2.0625rem;
    padding: 1.0625rem;
  }

  .l-footer__copyright-text {
    font-size: 0.625rem;
    line-height: 1.5;
  }

  .l-container {
    padding-top: 3.8125rem;
  }

  .l-border-wrapper {
    border: 0.9375rem solid #F9F6B3;
  }

  .c-btn--sm {
    font-size: 1rem;
    padding: 0.4375rem 1.75rem 0.5625rem;
  }

  .c-btn--lg {
    font-size: 1.5625rem;
    padding: 1.375rem 0.625rem;
    min-width: auto;
    width: 100%;
  }

  .c-btn--xl {
    font-size: 1.5625rem;
    padding: 1.375rem 0.625rem;
    min-width: auto;
    width: 100%;
    border-radius: 2.5rem;
  }

  .c-btn--orange.c-btn--shadow-lg {
    -webkit-box-shadow: 0 0.4375rem 0 #DB5B00;
            box-shadow: 0 0.4375rem 0 #DB5B00;
  }

  .c-btn--orange.c-btn--shadow-lg:hover {
    -webkit-transform: translateY(0.4375rem);
            transform: translateY(0.4375rem);
  }

  .c-btn--green.c-btn--shadow-lg {
    -webkit-box-shadow: 0 0.4375rem 0 #167162;
            box-shadow: 0 0.4375rem 0 #167162;
  }

  .c-btn--green.c-btn--shadow-lg:hover {
    -webkit-transform: translateY(0.4375rem);
            transform: translateY(0.4375rem);
  }

  .c-btn--gray.c-btn--shadow-lg {
    -webkit-box-shadow: 0 0.4375rem 0 #A82638;
            box-shadow: 0 0.4375rem 0 #A82638;
  }

  .c-btn--gray.c-btn--shadow-lg:hover {
    -webkit-transform: translateY(0.4375rem);
            transform: translateY(0.4375rem);
  }

  .c-btn--coming.c-btn--shadow-lg {
    -webkit-box-shadow: 0 0.4375rem 0 #726A6A;
            box-shadow: 0 0.4375rem 0 #726A6A;
  }

  .c-section > * {
    margin: 0 calc(50% - 50vw);
    border-radius: 1.875rem;
    padding: 2.5rem 0;
  }

  .c-section__inner {
    width: 93%;
  }

  .c-ttl {
    font-size: 1.875rem;
    line-height: 1.46;
  }

  .p-fv__slider {
    width: 100%;
  }

  .p-fv__slide-btn-wrapper {
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    bottom: 1.25rem;
    width: 89%;
    max-width: 20rem;
  }

  .p-fv__slide-btn-wrapper .c-btn {
    width: 100%;
  }

  .p-fv__button-wrapper {
    margin: 3.4375rem auto 0;
    width: 89%;
  }

  .p-fv__slider .swiper-pagination {
    bottom: -2rem;
  }

  .p-report-banner {
    position: static;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-top: 3.125rem;
  }

  .p-report-banner__link {
    padding: 1.5rem 2rem;
    width: 89%;
    border-radius: 1.25rem;
  }

  .p-report-banner__link::before {
    width: 100%;
    background: url(../img/bg_fixed_sp.png) center/contain no-repeat;
  }

  .p-report-banner__button {
    margin-top: 0.25rem;
  }

  .p-report-banner__image {
    bottom: 0.75rem;
    width: 11.3125rem;
    right: 0.3125rem;
  }

  .p-about {
    padding-top: 2.8125rem;
  }

  .p-about__heading {
    margin-left: 3.25rem;
  }

  .p-about__heading .c-ttl__imageWrapper {
    width: 3.3125rem;
    top: -0.8125rem;
    left: 8.5%;
  }

  .p-about__cards {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1.5625rem;
    margin-top: 1rem;
  }

  .p-about__card-header {
    padding: 0.25rem 0.625rem 0.625rem;
  }

  .p-about__card-num {
    font-size: 2.5rem;
  }

  .p-about__card-title {
    font-size: 1.5625rem;
    margin-top: 0.1875rem;
  }

  .p-about__card-imgWrapper {
    width: 6.3125rem;
    position: absolute;
    bottom: 0;
    right: 0.375rem;
  }

  .p-about__card-body {
    padding: 0.6875rem 1.125rem 1.1875rem;
  }

  .p-about__card-body p {
    font-size: 1rem;
    line-height: 2.18;
  }

  .p-about__questions {
    margin-top: 1.25rem;
  }

  .p-about__question-img {
    width: 3.75rem;
  }

  .p-about__question-bubble {
    font-size: 1rem;
    line-height: 1.37;
    padding: 0.875rem 0.9375rem 0.625rem;
  }

  .p-about__question {
    gap: 0.5rem;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }

  .p-about__question--01 .p-about__question-bubble {
    padding-right: 0.9375rem;
  }

  .p-about__question--01 .p-about__question-bubble::before {
    background-image: url("../img/bg_bubble01_sp.png");
    width: 8.429375rem;
    height: 6.339375rem;
    left: -1.3125rem;
  }

  .p-about__question--01 .p-about__question-img {
    width: 7.991875rem;
    top: auto;
    bottom: -4.75rem;
    left: 0;
  }

  .p-about__question--02 .p-about__question-bubble {
    padding-right: 0;
    padding-left: 1.4375rem;
  }

  .p-about__question--02 .p-about__question-bubble::before {
    background-image: url("../img/bg_bubble02_sp.png");
    width: 7.58875rem;
    height: 6.484375rem;
    left: -0.4375rem;
  }

  .p-about__question--02 .p-about__question-img {
    width: 7.111875rem;
    top: auto;
    bottom: -6.25rem;
    left: 0.0625rem;
  }

  .p-about__question--03 .p-about__question-bubble {
    padding-right: 0;
    padding-left: 1.4375rem;
  }

  .p-about__question--03 .p-about__question-bubble::before {
    background-image: url("../img/bg_bubble03_sp.png");
    width: 7.3625rem;
    height: 6.44625rem;
    left: 0.5625rem;
  }

  .p-about__question--03 .p-about__question-img {
    width: 8.856875rem;
    top: auto;
    bottom: -6.25rem;
  }

  .p-about__video {
    padding: 9.5rem 1.1875rem 1.875rem;
    margin-top: 9.375rem;
  }

  .p-about__video-character {
    width: 10.6875rem;
    bottom: 7rem;
    left: 48%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
  }

  .p-about__video-text {
    font-size: 1.5rem;
  }

  .p-plan {
    padding-top: 5.5rem;
  }

  .p-plan__container {
    padding: 3.1875rem 0 2.625rem;
  }

  .p-plan__heading .c-ttl__imageWrapper--left {
    width: 4.4375rem;
    top: -7.75rem;
    left: 41%;
  }

  .p-plan__heading .c-ttl__imageWrapper--right {
    width: 4.5rem;
    top: -7.5rem;
    left: 60%;
  }

  .p-plan__selector {
    margin-top: 1.375rem;
    padding: 1.875rem 0;
  }

  .p-plan__selector-label {
    font-size: 1rem;
  }

  .p-plan__selector-buttons {
    margin-top: 1.6875rem;
    gap: 0.5625rem;
  }

  .p-plan__selector-btn {
    font-size: 1.0625rem;
    padding: 0.4375rem 1.625rem;
    border: 0.125rem solid #FD7E24;
  }

  .p-plan__chart-wrapper {
    border-radius: 1.875rem;
    margin-top: 1.25rem;
  }

  .p-plan__chart-header {
    padding: 1.3125rem 1.125rem;
  }

  .p-plan__chart-label {
    font-size: 1.25rem;
  }

  .p-plan__chart-plan-wrapper {
    padding: 1.3125rem 1.0625rem 2.5rem;
  }

  .p-plan__chart-plan-name {
    font-size: 0.875rem;
  }

  .p-plan__chart-price {
    padding: 1.1875rem 0.375rem 1.3125rem;
  }

  .p-plan__chart-price-label {
    font-size: 1rem;
  }

  .p-plan__chart-price-note {
    font-size: 0.75rem;
    margin-top: 0.3125rem;
  }

  .p-plan__chart-price-amount {
    font-size: 2.25rem;
  }

  .p-plan__estimate-btn-wrapper {
    margin-top: 1.125rem;
  }

  .p-plan__estimate-note {
    font-size: 0.75rem;
    margin-top: 1rem;
  }

  .p-flow {
    padding-top: 5.9375rem;
  }

  .p-flow__container {
    padding: 3.125rem 0 3.875rem;
  }

  .p-flow__heading .c-ttl__imageWrapper--left {
    width: 5.75rem;
    top: -6.5625rem;
    left: 38.8%;
  }

  .p-flow__heading .c-ttl__imageWrapper--right {
    width: 5.5rem;
    top: -7.75rem;
    left: 62.5%;
  }

  .p-flow__steps {
    gap: 0.4375rem 1.875rem;
    margin-top: 0.625rem;
  }

  .p-flow__step {
    -webkit-box-flex: 1;
        -ms-flex: auto;
            flex: auto;
    width: calc((100% - 1.875rem) / 2);
  }

  .p-flow__step-num {
    font-size: 2.5rem;
  }

  .p-flow__step-icon {
    height: 7.5rem;
  }

  .p-flow__step-text {
    font-size: 1rem;
    line-height: 1.18;
  }

  .p-flow__note {
    font-size: 0.75rem;
    margin-top: 1.25rem;
  }

  .p-partner {
    padding-top: 5.75rem;
  }

  .p-partner__container {
    padding: 3.125rem 0 1.5625rem;
  }

  .p-partner__heading .c-ttl__imageWrapper--left {
    width: 5.875rem;
    top: -7.5rem;
    left: 38.2%;
  }

  .p-partner__heading .c-ttl__imageWrapper--right {
    width: 5.4375rem;
    top: -6.25rem;
    left: 63.5%;
  }

  .p-partner__text {
    font-size: 1rem;
    line-height: 1.5;
  }

  .p-ambassador {
    padding-top: 3.125rem;
  }

  .p-ambassador__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1.875rem;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }

  .p-ambassador__image {
    width: 100%;
    max-width: 20.9375rem;
    border-radius: 1.25rem;
  }

  .p-ambassador__text-wrapper {
    text-align: center;
  }

  .p-ambassador__title {
    font-size: 1.875rem;
  }

  .p-ambassador__subtitle {
    font-size: 1rem;
    margin-top: 0.75rem;
    line-height: 1.5;
  }

  .p-ambassador__description {
    font-size: 1rem;
    margin-top: 1.25rem;
  }

  .p-ambassador__btn-wrapper {
    margin: 1.75rem auto 0;
    width: 89%;
  }

  .p-more {
    padding-top: 4.0625rem;
  }

  .p-more__container {
    padding: 3.125rem 0 3.875rem;
  }

  .p-more__desc {
    font-size: 1rem;
    line-height: 2.18;
    margin-top: 1.75rem;
  }

  .p-more__character {
    width: 12.75rem;
    margin-top: 0.75rem;
  }

  .p-more__articles {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0.9375rem;
    margin-top: 3.375rem;
  }

  .p-more__article {
    padding: 1.875rem 2.125rem 2.375rem;
  }

  .p-more__article-icon {
    width: 5.119375rem;
  }

  .p-more__article-title {
    margin-top: 0.9375rem;
    letter-spacing: -0.02em;
  }

  .p-more__article-text {
    font-size: 1rem;
    margin-top: 0.875rem;
  }

  .p-more__article-btn {
    font-size: 1.25rem;
    min-width: 13rem;
    width: auto;
    padding: 0.875rem 0.625rem;
  }

  .p-more__btn-wrapper {
    margin: 0.9375rem auto 0;
    width: 90%;
  }

  .p-contact {
    padding: 3.6875rem 0 3.5625rem;
  }

  .p-contact--page {
    padding-top: 6.25rem;
  }

  .p-contact__heading .c-ttl__imageWrapper--right {
    width: 12.5625rem;
    left: 50%;
    bottom: -8.75rem;
  }

  .p-contact__form {
    margin-top: 8.625rem;
    padding: 1.25rem 0;
  }

  .p-contact__form .p-8 {
    padding: 1.25rem;
  }

  .p-contact__description {
    margin-bottom: 1.25rem;
    padding: 0 1rem;
  }

  .p-contact__description-text {
    font-size: 1rem;
    line-height: 2.18;
    margin-bottom: 1.25rem;
  }

  .p-contact__features {
    padding: 1.25rem 0.5rem;
  }

  .p-contact__features-title {
    font-size: 1.25rem;
    line-height: 1.75;
    margin-bottom: 0.75rem;
  }

  .p-contact__features-item {
    font-size: 1rem;
    line-height: 2.18;
    padding-left: 1rem;
  }

  .p-contact-page {
    padding: 3.75rem 0;
  }

  .p-contact-page__heading .c-ttl__imageWrapper--right {
    width: 10.625rem;
    left: 50%;
    bottom: -7.5rem;
  }

  .p-contact-page__form-wrapper {
    width: 93%;
    padding: 1.875rem 0;
    border-radius: 1.25rem;
  }

  .p-contact-page__form {
    width: 100%;
    margin-top: 5rem;
    padding: 1.25rem 0;
    border-radius: 0.9375rem;
  }

  .p-contact-page__field:not(:first-child) {
    margin-top: 1.25rem;
  }

  .p-contact-page__field {
    width: 90%;
  }

  .p-contact-page__label {
    font-size: 1rem;
  }

  .p-contact-page__required {
    font-size: 1rem;
  }

  .p-contact-page__input {
    padding: 0.625rem 0.75rem;
  }

  .p-contact-page__select {
    padding: 0.625rem 0.75rem;
  }

  .p-contact-page__textarea {
    padding: 0.625rem 0.75rem;
    min-height: 9.375rem;
  }

  .p-contact-page__checkbox-field {
    width: 90%;
    margin-top: 1.25rem;
    padding-top: 1.25rem !important;
  }

  .p-contact-page__checkbox-field dd {
    gap: 0;
    padding-top: 1.25rem;
  }

  .p-contact-page__checkbox-field label {
    font-size: 1.125rem;
  }

  .p-contact-page__checkbox-label {
    font-size: 1rem;
  }

  .p-contact-page__submit {
    font-size: 1.125rem;
    padding: 0.875rem 0;
  }

  #form_submit {
    margin-top: 1.25rem;
  }

  #thanks .c-ttl__imageWrapper--right {
    width: 12.5625rem !important;
    left: 50% !important;
    bottom: -8.75rem !important;
  }

  form#mail_form dl dd span.error_blank,
  form#mail_form dl dd span.error_format,
  form#mail_form dl dd span.error_match {
    font-size: 0.8125rem;
  }

  form#mail_form input[type=button] {
    font-size: 1.25rem !important;
  }

  form#mail_form {
    margin: 5rem auto 0 !important;
  }

  form#mail_form dl dt {
    width: 100% !important;
    float: none !important;
    padding: 1.25rem 0 0.75rem !important;
  }

  form#mail_form dl dd {
    width: auto !important;
    float: none !important;
    padding: 0 0 1.25rem 0 !important;
  }

  form#mail_form p#form_submit {
    margin-top: 0 !important;
  }

  form#mail_form p#form_submit {
    margin-top: 1.25rem !important;
  }

  .p-thanks {
    padding: 1.875rem 1rem;
  }

  .p-thanks__message {
    padding: 1.875rem 1.25rem;
  }

  .p-thanks__text {
    font-size: 1rem;
  }

  .p-thanks__text:not(:first-child) {
    margin-top: 1.5rem;
  }

  .p-thanks__btn-wrapper {
    margin-top: 2.5rem;
  }

  .u-pc {
    display: none;
  }

  .u-sp {
    display: block;
  }

  .u-ai-c-md-max {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }

  .u-fd-c-md-max {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }

  .u-po-sta-md-max {
    position: static;
  }
}

@media screen and (max-width: 430px) {
  body {
    font-size: 0.875rem;
  }
}

@media screen and (min-width: 769px) and (max-width: 1366px) {
  html {
    font-size: 1.1713030747vw;
  }
}
/*# sourceMappingURL=style.css.map */