@charset "UTF-8";

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

/* Remove default padding */

ul,
ol {
  padding: 0;
}

/* Remove default margin */

body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Set core root defaults */

html {
  scroll-behavior: smooth;
}

/* Set core body defaults */

body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* Remove list styles on ul, ol elements with a class attribute */

ul,
ol {
  list-style: none;
}

/* A elements that don't have a class get default styles */

a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

a {
  text-decoration: none;
}

/* Make images easier to work with */

img {
  max-width: 100%;
  display: block;
  width: 100%;
}

/* Natural flow and rhythm in articles by default */

article > * + * {
  margin-top: 1em;
}

/* Inherit fonts for inputs and buttons */

input,
button,
textarea,
select {
  font: inherit;
}

/* Blur images when they have no alt attribute */

img:not([alt]) {
  -webkit-filter: blur(10px);
          filter: blur(10px);
}

/* フォームリセット */

input,
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}

textarea {
  resize: vertical;
}

input[type=checkbox],
input[type=radio] {
  display: none;
}

input[type=submit],
input[type=button],
label,
button,
select {
  cursor: pointer;
}

select::-ms-expand {
  display: none;
}

html {
  font-size: 16px;
}

body {
  font-family: "Noto Sans JP", serif;
}

img {
  width: 100%;
  height: auto;
  display: block;
}

a[href^="tel:"] {
  pointer-events: none;
}

a {
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

a:hover {
  opacity: 0.7;
}

.header {
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 100%;
  max-width: 1440x;
  padding: 0 clamp(16px, 3.8888888889vw, 56px);
  height: 80px;
  background-color: #FFFFFF;
}

.header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: inherit;
  gap: 5px;
}

.logo {
  display: block;
  width: 100%;
  max-width: 220px;
  height: auto;
}

.header__nav {
  height: inherit;
}

.header__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: inherit;
}

.header__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: inherit;
}

.header__item:not(:first-child) {
  margin-left: 14px;
}

.header__item.header__item--wide {
  margin-left: 40px;
}

.header__link {
  font-size: clamp(12px, 0.9722222222vw, 14px);
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.05em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #0068B7;
  height: inherit;
}

.header__contact {
  margin-left: 66px;
}

.header__nav.is-hidden {
  display: none;
}

.header__logo {
  width: 100%;
  max-width: 160px;
}

.hamburger {
  position: fixed;
  z-index: 8888;
  top: 19px;
  right: 35px;
  width: 30px;
  height: 15px;
  cursor: pointer;
  width: 44px;
  height: 44px;
  background-color: transparent;
  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;
  -webkit-transition: background-color 0.3s, border-color 0.3s;
  transition: background-color 0.3s, border-color 0.3s;
}

.hamburger.is-active {
  right: 35px;
}

.hamburger span {
  position: absolute;
  display: inline-block;
  left: 50%;
  /* 中央寄せ */
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  /* 中央寄せ調整 */
  width: 70%;
  height: 3px;
  background-color: #0068B7;
  border-radius: 3px;
  -webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
  transition: opacity 0.3s, -webkit-transform 0.3s;
  transition: transform 0.3s, opacity 0.3s;
  transition: transform 0.3s, opacity 0.3s, -webkit-transform 0.3s;
  z-index: 9999;
}

.hamburger span:nth-child(1) {
  top: 11px;
}

.hamburger span:nth-child(2) {
  top: 20px;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

.hamburger span:nth-child(3) {
  top: 29px;
}

.hamburger.is-active span:nth-child(1) {
  top: 19px;
  -webkit-transform: translateX(-50%) rotate(-45deg);
          transform: translateX(-50%) rotate(-45deg);
}

.hamburger.is-active span:nth-child(2) {
  opacity: 0;
}

.hamburger.is-active span:nth-child(3) {
  top: 19px;
  -webkit-transform: translateX(-50%) rotate(45deg);
          transform: translateX(-50%) rotate(45deg);
}

.footer {
  background-color: #FFFFFF;
  padding-top: 30px;
  padding-bottom: 40px;
  width: 100%;
  height: auto;
}

.footer__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 10px;
}

.footer__logoImg {
  width: 100%;
  max-width: 220px;
  height: auto;
}

.footer__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  height: inherit;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.footer__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: inherit;
  padding-top: 15px;
}

.footer__item:not(:first-child) {
  margin-left: 17px;
}

.footer__link {
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #333333;
  height: inherit;
}

.footer__contactButton {
  text-align: right;
  padding-top: 35px;
}

.footer__contactButton.footer__contactButton--second {
  padding-top: 15px;
}

.footer__copyright {
  text-align: right;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.4;
  color: #00284A;
  opacity: 0.6;
  margin-top: 16px;
}

.footer__marks {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
}

.footer__markImg {
  height: 60px;
  width: auto;
}

.inner {
  width: 100%;
  max-width: 1160px;
  padding-right: 20px;
  padding-left: 20px;
  margin-right: auto;
  margin-left: auto;
}

.inner2 {
  width: 100%;
  max-width: 1440px;
  padding-right: 172px;
  padding-left: 172px;
  margin-right: auto;
  margin-left: auto;
}

.c-section-heading {
  text-align: center;
}

.c-section-heading__inner {
  position: relative;
  max-width: 1200px;
  margin-right: auto;
  margin-left: auto;
}

.c-section-heading__title {
  position: relative;
  z-index: 1;
  font-size: 30px;
  font-weight: 700;
  line-height: 1.5;
  margin-top: 0;
  margin-bottom: 16px;
  color: #00284A;
}

.c-section-heading__lead {
  position: relative;
  z-index: 1;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
  margin-top: 0;
  margin-bottom: 0;
  text-align: center;
  color: #00284A;
}

.c-section-heading__decoration {
  position: relative;
  width: 170px;
  height: 2px;
  margin-top: 24px;
  margin-right: auto;
  margin-left: auto;
  background-color: #0068B7;
}

.c-section-heading__decoration::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -6px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 6px;
  height: 6px;
  background-color: #3e6fb3;
  border-radius: 50%;
}

.c-section-heading__decoration::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -6px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 6px;
  height: 6px;
  background-color: #3e6fb3;
  border-radius: 50%;
}

.heading {
  position: relative;
  font-size: clamp(1.25rem, 0.961rem + 1.23vw, 1.75rem);
  font-weight: 700;
  padding-bottom: clamp(0.625rem, 0.229rem + 1.69vw, 1.75rem);
  line-height: 1.324;
  letter-spacing: 0.08em;
  text-align: center;
  color: #28AB9E;
}

.heading.heading--large-text {
  font-size: clamp(1.25rem, 0.81rem + 1.88vw, 2.5rem);
}

.heading.heading--black {
  color: #333333;
}

.heading::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 88px;
  height: 1px;
  background-color: #63C0AB;
}

.heading.heading--black::after {
  background-color: #333333;
}

.heading.heading--afterUnset::after {
  content: "";
  position: unset;
  bottom: unset;
  left: unset;
  -webkit-transform: unset;
          transform: unset;
  width: unset;
  height: unset;
  background-color: unset;
}

.headingHighlight {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(80%, transparent), color-stop(70%, #F1CD63));
  background: linear-gradient(transparent 80%, #F1CD63 70%);
}

.sub-heading-box {
  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;
}

.sub-heading {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.08em;
  color: #333333;
}

.text {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.875;
  color: #63C0AB;
}

.text.text--large {
  font-size: 24px;
  line-height: 1.833;
}

.contact-button {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 10px 0px;
  min-width: clamp(160px, 13.8888888889vw, 200px);
  border-radius: 2px;
  text-decoration: none;
  gap: 12px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.contact-button--large {
  min-width: clamp(310px, 29.375vw, 432px);
}

.contact-button--fv {
  min-width: clamp(310px, 29.375vw, 349px);
  padding: 12px 0;
}

.contact-button--red {
  background-color: #D13752;
}

.contact-button--blue {
  background-color: #0068B7;
}

.contact-button__badge {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-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: #FFFFFF;
  color: #D13752;
  font-size: 18px;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 6px;
  line-height: 1;
}

.contact-button__badge--fv {
  font-size: 16px;
}

.contact-button__label {
  font-size: clamp(12px, 0.9722222222vw, 14px);
  font-weight: 500;
  color: #FFFFFF;
  line-height: 1.4;
}

.contact-button__label--fv {
  font-size: 18px;
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1.4;
}

.contact-button__arrow {
  width: 10px;
  height: 10px;
  border-top: 2px solid #ffffff;
  border-right: 2px solid #ffffff;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.contact-button:hover {
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  -webkit-box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
          box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.c-form-heading {
  text-align: center;
  margin-bottom: 24px;
}

.c-form-heading__text {
  font-size: clamp(14px, 1.25vw, 18px);
  font-weight: 700;
  line-height: 1;
  color: #0068B7;
}

.c-form-heading__line {
  position: relative;
  width: 100%;
  max-width: 360px;
  height: 1.5px;
  background-color: #0068B7;
  margin-top: 10px;
  margin-left: auto;
  margin-right: auto;
}

/* 中央のくぼみ */

.c-form-heading__line::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 32px;
  height: 10px;
  background-color: #0068B7;
  -webkit-clip-path: polygon(0 0, 50% 100%, 100% 0);
          clip-path: polygon(0 0, 50% 100%, 100% 0);
}

/* くぼみのフチ（青ライン） */

/* 真ん中のV字 */

.c-form-heading__line::after {
  content: "";
  position: absolute;
  left: 50%;
  top: -2px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 32px;
  height: 10px;
  background-color: #FFFFFF;
  -webkit-clip-path: polygon(0 0, 50% 100%, 100% 0);
          clip-path: polygon(0 0, 50% 100%, 100% 0);
}

.c-form {
  width: 100%;
  max-width: 463px;
  margin-left: auto;
  margin-right: auto;
}

.c-form__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.c-form__field {
  margin-top: 24px;
}

.c-form__field--half {
  width: 50%;
}

.c-form__label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

.c-form__label-text {
  font-size: 12px;
  font-weight: 500;
  line-height: 1.2;
}

.c-form__label-text-note {
  font-size: 11px;
  font-weight: 400;
  line-height: 1;
  margin-top: 8px;
}

.c-form__required {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 10px;
  font-weight: 500;
  color: #FFFFFF;
  background-color: #D13752;
  line-height: 1;
  border-radius: 3px;
  padding: 2px 6px;
}

.c-form__input {
  width: 100%;
  height: 44px;
  padding: 0 14px;
  border: 1px solid #ccc;
  border-radius: 2px;
  font-size: 14px;
}

.c-form__input::-webkit-input-placeholder {
  color: #bdbdbd;
}

.c-form__input::-moz-placeholder {
  color: #bdbdbd;
}

.c-form__input:-ms-input-placeholder {
  color: #bdbdbd;
}

.c-form__input::-ms-input-placeholder {
  color: #bdbdbd;
}

.c-form__input::placeholder {
  color: #bdbdbd;
}

.c-form__privacy {
  margin-top: 20px;
}

.c-form__privacy-link {
  display: inline-block;
  margin-top: 6px;
  font-size: 12px;
  font-weight: 400;
  color: #0068B7;
  text-decoration: underline;
}

.c-form__privacy-text {
  font-size: 12px;
  font-weight: 400;
  line-height: 1.2;
  color: #333333;
}

.c-form__checkbox-label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
}

.c-form__checkbox-label--fv {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  padding-top: 5px;
}

.c-form input.c-form__checkbox {
  display: inline-block;
  width: 16px;
  height: 16px;
  margin-top: 3px;
  border: 1px solid #bfbfbf;
  border-radius: 2px;
  -webkit-appearance: auto;
     -moz-appearance: auto;
          appearance: auto;
}

.c-form__checkbox-text {
  font-size: 12px;
  font-weight: 400;
  line-height: 1.2;
}

.c-form__submit {
  margin-top: 32px;
  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;
}

.c-form__button {
  width: 100%;
  max-width: 349px;
  height: auto;
  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;
  padding: 18px 0;
  background: #0068B7;
  color: #FFFFFF;
  font-size: 16px;
  font-weight: 700;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

.c-form__button--fv {
  font-size: 14px;
  padding: 14px 0;
}

#nayami,
#reason,
#service,
#exam,
#faq,
#contact {
  scroll-margin-top: 100px;
}

.xl-show {
  display: none;
}

.lg-show {
  display: none;
}

.md-show {
  display: none;
}

.sp-show {
  display: none;
}

.test {
  width: 100%;
  height: 500px;
  background-color: black;
}

.drawer-menu {
  position: fixed;
  z-index: 3000;
  top: 0;
  right: 0;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  width: 50%;
  height: 100vh;
  background-color: #F0F3F5;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  padding: 130px 0 100px;
}

.drawer-menu.is-open {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.drawer-menu__inner {
  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-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  width: 100%;
  height: inherit;
  padding: 0px 100px;
}

.drawer-menu__items {
  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;
  margin-inline: auto;
}

.drawer-menu__item {
  display: inline-block;
}

.drawer-menu__item:not(:first-child) {
  margin-top: 28px;
}

.drawer-menu__item.drawer-menu__item--no-margin-top {
  margin-top: unset;
}

.drawer-menu__link {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.05em;
  color: #333333;
}

.drawer-menu__link.drawer-menu__link--small {
  font-size: 16px;
}

.drawer-menu__contact {
  margin-top: 50px;
}

.drawer-menu__box {
  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;
  margin-top: 28px;
  gap: 12px;
}

/* オーバーレイ */

.drawer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  z-index: 2000;
}

.drawer-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

.mv {
  margin-top: 80px;
  position: relative;
  background-image: url(../img/mv/mv__bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.mv__bg-img {
  width: 100%;
  max-width: 798px;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.mv__inner {
  width: 100%;
  max-width: 1440px;
  margin-inline: auto;
  padding-left: clamp(25px, 3.8888888889vw, 56px);
  padding-bottom: 110px;
  position: relative;
}

.mv__container {
  position: relative;
}

.mv__leftBox {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 700px;
  padding-top: 50px;
}

.mv__leadBox {
  background-color: #0068B7;
  border-radius: 4px;
  width: 100%;
  max-width: 428px;
  padding: 7px 14px;
}

.mv__lead {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.4;
  color: #FFFFFF;
}

.mv__subTitle {
  font-size: 19px;
  font-weight: 700;
  line-height: 1.4;
  color: #3F3F3F;
  padding-top: 6px;
}

.mv__markBox {
  padding-top: clamp(20px, 2.9166666667vw, 42px);
}

.mv__mark {
  width: 100%;
  max-width: clamp(350px, 35.7638888889vw, 515px);
  height: auto;
}

.mv__descriptionBox {
  margin-top: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.mv__description {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.4;
  color: #3F3F3F;
}

.mv__ctaBox {
  margin-top: 40px;
  width: 100%;
  max-width: 354px;
  display: grid;
  place-content: center;
  place-items: center;
}

.mv__ctaBox--sp {
  display: none;
}

.mv__ctaBox--sp-siryou {
  display: none;
}

.mv__titleBoxWrapper {
  padding-top: 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}

.mv__titleBox {
  display: inline-block;
  border-radius: 4px;
}

.mv__title {
  color: #0068B7;
  font-size: clamp(40px, 4.1666666667vw, 60px);
  font-weight: 900;
  line-height: 1.4;
  z-index: 10;
  padding-top: 6px;
}

.mv__title .mv__title--large {
  font-size: clamp(45px, 4.4444444444vw, 64px);
}

.mv__title .mv__title--pale {
  opacity: 0.3;
}

.mv__title--kaigyo {
  display: inline-block;
}

.mv__imgBox {
  position: absolute;
  bottom: 0%;
  right: 20%;
  z-index: 0;
}

.mv__form {
  position: absolute;
  bottom: 7%;
  right: 5.5%;
  z-index: 2;
  background-color: #FFFFFF;
  padding: 32px 20px 32px;
  max-width: clamp(350px, 27.5694444444vw, 397px);
}

.mv__form .c-form__field {
  margin-top: 12px;
}

.mv__mainImg {
  width: 100%;
  max-width: clamp(400px, 46.3888888889vw, 668px);
  height: auto;
}

.faq {
  background-color: #EBF3F9;
  padding-top: 80px;
  padding-bottom: 80px;
}

.faq-accordion-box {
  margin-top: 64px;
}

.faq-accordion {
  margin-inline: auto;
  padding: 0 20px;
}

.faq-accordion__item:not(:first-child) {
  margin-top: 24px;
}

.faq-accordion__summary {
  list-style: none;
  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;
  padding: 12px 24px;
  cursor: pointer;
  background-color: #FFFFFF;
}

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

.faq-accordion__question {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
}

.faq-accordion__q-icon,
.faq-accordion__a-icon {
  width: 24px;
  height: auto;
}

.faq-accordion__a-icon {
  margin-top: 8px;
}

.faq-accordion__title {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.08em;
  color: #0068B7;
}

.faq-accordion__content {
  padding: 18px 24px 24px;
}

.faq-accordion__answer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 16px;
}

.faq-accordion__text {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.875;
  letter-spacing: 0.04em;
  color: #333333;
}

.faq-accordion__arrow {
  width: 24px;
  height: 24px;
  position: relative;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

/* 横線（常に表示） */

.faq-accordion__arrow::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 16px;
  height: 2px;
  background: #333333;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

/* 縦線（＋用） */

.faq-accordion__arrow::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 2px;
  height: 16px;
  background: #333333;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: opacity 0.2s;
  transition: opacity 0.2s;
}

/* 開いたら縦線を消す → −になる */

.faq-accordion__item[open] .faq-accordion__arrow::after {
  opacity: 0;
}

.cta-section {
  padding-top: 64px;
  padding-bottom: 64px;
  background-color: #0068B7;
}

.cta-section__inner {
  width: 100%;
  max-width: 1100px;
  margin-right: auto;
  margin-left: auto;
  padding-right: 20px;
  padding-left: 20px;
}

.cta-section__box {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  /* ▼ グラデーション（今までと同じ値に差し替えてOK） */
  padding-top: 56px;
  padding-right: 40px;
  padding-bottom: 56px;
  padding-left: 40px;
}

.cta-section__title {
  font-size: 30px;
  font-weight: 700;
  line-height: 1.5;
  margin-top: 0;
  margin-bottom: 16px;
  color: #00284A;
}

.cta-section__content {
  position: relative;
  z-index: 2;
  text-align: center;
  background-color: #FFFFFF;
  border-radius: 4px;
  padding: 50px 15px;
}

.cta-section__button-wrap {
  margin-top: 26px;
}

.contact {
  background-color: #F7F7F7;
  padding-top: 50px;
  padding-bottom: 50px;
}

.contact__inner {
  width: 100%;
  max-width: 1440px;
  padding: 0 120px;
  margin-left: auto;
  margin-right: auto;
}

.contact__wrapper {
  background-color: #FFFFFF;
  padding: 50px 15px;
}

.exam {
  padding-top: 80px;
  padding-bottom: 80px;
}

.exam__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  -webkit-column-gap: 40px;
     -moz-column-gap: 40px;
          column-gap: 40px;
  margin-top: 32px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
}

.exam-card {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 4;
  height: 100%;
  background-color: #FFFFFF;
  -webkit-box-shadow: 0 0 8px rgba(0, 104, 183, 0.1);
          box-shadow: 0 0 8px rgba(0, 104, 183, 0.1);
  border-radius: 6px;
  overflow: hidden;
}

.exam-card__image {
  aspect-ratio: 332/203;
  overflow: hidden;
}

.exam-card__image-img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.exam-card__title {
  padding-top: 8px;
  padding-right: 18px;
  padding-left: 18px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
  color: #00284A;
  text-align: center;
}

.exam-card__title-break {
  display: block;
}

.exam-card__title-highlight {
  color: #0068B7;
}

.exam-card__text {
  padding-top: 8px;
  padding-right: 24px;
  padding-left: 24px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
  color: #00284A;
}

.exam-card__result {
  display: grid;
  grid-template-columns: 42px 1fr;
  margin-top: 20px;
  margin-right: 18px;
  margin-bottom: 20px;
  margin-left: 18px;
  background-color: #EBF3F9;
  border-radius: 4px;
  overflow: hidden;
}

.exam-card__result-label {
  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;
  background-color: #0068B7;
}

.exam-card__result-label-text {
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  text-orientation: upright;
  font-size: 12px;
  font-weight: 500;
  line-height: 1;
  color: #FFFFFF;
}

.exam-card__result-list {
  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-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-top: 8px;
  padding-right: 14px;
  padding-bottom: 8px;
  padding-left: 14px;
  margin: 0;
  list-style: none;
  min-height: 100%;
}

.exam-card__result-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
}

.exam-card__result-item + .exam-card__result-item {
  margin-top: 8px;
}

.exam-card__result-icon {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.exam-card__result-text {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4285714286;
  letter-spacing: 0.04em;
  color: #00284A;
}

.nayami {
  position: relative;
  background-color: #EBF3F9;
  padding-top: 80px;
  padding-bottom: 50px;
}

.nayami__cards {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
  margin-top: 48px;
}

.nayami-card {
  width: calc((100% - 48px) / 3);
  background-color: #ffffff;
  border-radius: 8px;
  overflow: hidden;
}

.nayami-card__image {
  width: 100%;
}

.nayami-card__image-item {
  display: block;
  width: 100%;
  height: auto;
}

.nayami-card__body {
  padding: 30px 24px 24px;
  background-color: #FFFFFF;
  margin-top: unset;
}

.nayami-card__title {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
  color: #00284A;
}

.nayami-card__title span {
  color: #0068B7;
}

.nayami-card__break {
  display: inline;
}

.nayami-card__text {
  margin-top: 16px;
  color: #00284A;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
}

.reason {
  position: relative;
  padding-top: 180px;
  padding-bottom: 80px;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 104, 183, 0)), color-stop(68%, #EBF3F9));
  background: linear-gradient(180deg, rgba(0, 104, 183, 0) 0%, #EBF3F9 68%);
}

.reason::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  left: 0;
  width: 100%;
  height: 100px;
  background-color: #EBF3F9;
  -webkit-clip-path: polygon(0 0, 100% 0, 50% 100%);
          clip-path: polygon(0 0, 100% 0, 50% 100%);
}

.reason__content {
  margin-top: 64px;
}

.reason__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 56px;
}

.reason-card {
  width: 100%;
}

.reason-card__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 28px;
}

.reason-card--reverse .reason-card__content {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

.reason-card__text-area {
  width: 100%;
  max-width: 600px;
}

.reason-card__text-area--narrow {
  width: 100%;
  max-width: 550px;
}

.reason-card__image-area {
  width: 100%;
  max-width: 500px;
}

.reason-card__number {
  width: 100%;
  max-width: clamp(110px, 11.8055555556vw, 170px);
}

.reason-card__number-image {
  display: block;
  width: 100%;
  height: auto;
}

.reason-card__title {
  margin-top: 12px;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.02em;
  color: #00284A;
}

.reason-card__title span {
  color: #0068B7;
}

.reason-card__text {
  margin-top: 16px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.02em;
  color: #00284A;
}

.reason-card__image {
  display: block;
  width: 100%;
  height: auto;
}

.reason-card__break {
  display: block;
}

.service {
  background-color: #EBF3F9;
  padding-top: 80px;
  padding-bottom: 80px;
}

.service__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}

.service-card {
  background-color: #FFFFFF;
  border-radius: 4px;
  padding: 40px 24px;
  min-height: 220px;
}

.service-card__title-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
}

.service-card__icon {
  width: 34px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.service-card__icon-img {
  display: block;
  width: 100%;
  height: auto;
}

.service-card__title {
  color: #0068B7;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.08em;
}

.service-card__line {
  width: 100%;
  height: 1px;
  background-color: #b8d7ee;
  margin-top: 14px;
  margin-bottom: 18px;
}

.service-card__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 14px;
}

.service-card__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}

.service-card__item-icon {
  width: 24px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-top: 2px;
}

.service-card__item-icon-img {
  display: block;
  width: 100%;
  height: auto;
}

.service-card__item-text {
  color: #00284A;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.875;
  letter-spacing: 0.04em;
}

.service-card__item-note {
  margin-top: 2px;
  color: #16375b;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.02em;
}

@media screen and (max-width: 1200px) {
  .xl-none {
    display: none;
  }

  .xl-show {
    display: block;
  }

  .mv__descriptionBox {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }

  .mv__form {
    right: 2%;
    bottom: 2%;
  }
}

@media screen and (max-width: 1000px) {
  .lg-none {
    display: none;
  }

  .lg-show {
    display: block;
  }

  .drawer-menu {
    overflow-y: scroll;
  }

  .drawer-menu__inner {
    padding: 0px 50px;
  }

  .mv__container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

@media screen and (max-width: 768px) {
  a[href^="tel:"] {
    pointer-events: auto;
  }

  .logo {
    max-width: 110px;
  }

  .header__link {
    font-size: 13px;
  }

  .hamburger {
    right: 7px;
    width: 45px;
    height: 40px;
  }

  .hamburger.is-active {
    right: 20px;
  }

  .hamburger span:nth-child(1) {
    top: 9px;
  }

  .hamburger span:nth-child(2) {
    top: 18px;
  }

  .hamburger span:nth-child(3) {
    top: 27px;
  }

  .hamburger.is-active span:nth-child(1) {
    top: 17px;
  }

  .hamburger.is-active span:nth-child(3) {
    top: 17px;
  }

  .footer__markImg {
    height: 48px;
  }

  .inner {
    padding-right: 20px;
    padding-left: 20px;
  }

  .inner2 {
    padding-right: 20px;
    padding-left: 20px;
  }

  .c-section-heading__title {
    font-size: 23px;
    margin-bottom: 12px;
  }

  .c-section-heading__decoration {
    width: 180px;
    margin-top: 20px;
  }

  .text.text--large {
    font-size: 20px;
    line-height: 1.8;
  }

  .contact-button--large {
    min-width: unset;
    width: 100%;
  }

  .contact-button--fv {
    min-width: clamp(310px, 29.375vw, 349px);
    width: 100%;
  }

  .contact-button__badge {
    font-size: 14px;
    padding: 4px 12px;
  }

  .contact-button:hover {
    -webkit-transform: none;
            transform: none;
  }

  .c-form-heading {
    margin-bottom: 20px;
  }

  .c-form__row {
    gap: 12px;
  }

  .c-form__field {
    margin-top: 20px;
  }

  .c-form__privacy {
    margin-top: 18px;
  }

  #nayami,
  #reason,
  #service,
  #exam,
  #faq,
  #contact {
    scroll-margin-top: 70px;
  }

  .md-none {
    display: none;
  }

  .md-show {
    display: block;
  }

  .drawer-menu {
    width: 100%;
  }

  .drawer-menu__inner {
    padding: 0 15px;
  }

  .mv__inner {
    padding-left: 15px;
    padding-right: 15px;
  }

  .mv__container {
    padding-top: 100px;
  }

  .mv__leftBox {
    padding-top: 0;
  }

  .mv__lead {
    font-size: 16px;
    text-align: center;
  }

  .mv__titleBoxWrapper {
    padding-top: 20px;
    gap: 10px;
  }

  .mv__title {
    font-size: 40px;
    line-height: 1.35;
  }

  .mv__imgBox {
    right: 0%;
  }

  .mv__form {
    display: none;
  }

  .mv__mainImg {
    max-width: clamp(300px, 52.0833333333vw, 768px);
  }

  .faq {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .faq-accordion-box {
    margin-top: 40px;
  }

  .cta-section {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .cta-section__box {
    padding-top: 36px;
    padding-right: 24px;
    padding-bottom: 36px;
    padding-left: 24px;
    border-radius: 10px;
  }

  .cta-section__title {
    font-size: 20px;
    margin-bottom: 12px;
  }

  .cta-section__content {
    padding: 30px 15px;
  }

  .cta-section__button-wrap {
    margin-top: 20px;
  }

  .contact {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .exam {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .exam__cards {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 32px;
  }

  .exam-card {
    display: block;
  }

  .exam-card__image {
    aspect-ratio: 280/157;
  }

  .exam-card__title {
    padding-top: 18px;
    padding-right: 16px;
    padding-left: 16px;
    font-size: 16px;
    line-height: 1.6;
  }

  .exam-card__text {
    padding-top: 14px;
    padding-right: 16px;
    padding-left: 16px;
    font-size: 14px;
  }

  .exam-card__result {
    grid-template-columns: 38px 1fr;
    margin-top: 16px;
    margin-right: 16px;
    margin-bottom: 16px;
    margin-left: 16px;
    height: auto;
  }

  .exam-card__result-label-text {
    font-size: 11px;
  }

  .exam-card__result-list {
    padding-top: 12px;
    padding-right: 12px;
    padding-bottom: 12px;
    padding-left: 12px;
    min-height: auto;
  }

  .exam-card__result-icon {
    width: 16px;
    height: 16px;
  }

  .nayami {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .nayami__cards {
    display: block;
    margin-top: 32px;
    max-width: 500px;
    margin-inline: auto;
  }

  .nayami-card {
    width: 100%;
  }

  .nayami-card + .nayami-card {
    margin-top: 16px;
  }

  .nayami-card__break {
    display: inline;
  }

  .reason {
    padding-top: 75px;
    padding-bottom: 50px;
  }

  .reason::after {
    height: 30px;
  }

  .reason__content {
    margin-top: 40px;
    width: 100%;
    max-width: 500px;
    margin-inline: auto;
  }

  .reason__list {
    gap: 40px;
  }

  .reason-card__content {
    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: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 20px;
  }

  .reason-card--reverse .reason-card__content {
    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: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 20px;
  }

  .reason-card__text-area--narrow {
    max-width: 600px;
  }

  .reason-card__image-area {
    max-width: 100%;
  }

  .reason-card__number {
    max-width: 95px;
  }

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

  .reason-card__text {
    margin-top: 12px;
    font-size: 14px;
    line-height: 1.5;
  }

  .reason-card__break {
    display: none;
  }

  .service {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .service__cards {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-top: 32px;
    max-width: 500px;
    margin-inline: auto;
  }

  .service-card {
    padding: 22px 16px 28px;
    min-height: auto;
  }

  .service-card__title-wrap {
    gap: 10px;
  }

  .service-card__icon {
    width: 32px;
  }

  .service-card__line {
    margin-top: 12px;
    margin-bottom: 16px;
  }

  .service-card__list {
    gap: 12px;
  }

  .service-card__item {
    gap: 8px;
  }

  .service-card__item-icon {
    width: 20px;
  }

  .service-card__item-text {
    font-size: 14px;
  }

  .service-card__item-note {
    font-size: 11px;
  }
}

@media screen and (max-width: 499px) {
  .header__logo {
    max-width: 140px;
  }

  .footer {
    padding-top: 24px;
    padding-bottom: 24px;
  }

  .footer__container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }

  .footer__items {
    -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;
  }

  .footer__item:not(:first-child) {
    margin-left: unset;
  }

  .footer__contactButton {
    padding-top: 15px;
  }

  .footer__contactButton {
    display: none;
  }

  .footer__contactButton.footer__contactButton--second {
    padding-top: 15px;
  }

  .footer__copyright {
    text-align: left;
    margin-top: 0;
  }

  .footer__markImg {
    height: 40px;
  }

  .c-section-heading__lead {
    font-size: 16px;
  }

  .sp-none {
    display: none;
  }

  .sp-show {
    display: block;
  }

  .mv {
    background-image: url(../img/mv/mv__bg__sp.png);
    padding-left: 18px;
    padding-right: 18px;
  }

  .mv__inner {
    padding-left: 0;
    padding-right: 0;
    padding-bottom: 0;
  }

  .mv__container {
    padding-top: 20px;
  }

  .mv__leadBox {
    padding: 7px 9px;
    margin-inline: auto;
  }

  .mv__subTitle {
    text-align: center;
    font-size: 14px;
    line-height: 1.48;
  }

  .mv__markBox {
    padding-top: 20px;
  }

  .mv__mark {
    margin-inline: auto;
  }

  .mv__descriptionBox {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }

  .mv__description {
    font-size: 12px;
  }

  .mv__ctaBox--sp {
    position: absolute;
    bottom: 10%;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }

  .mv__ctaBox--sp-siryou {
    position: absolute;
    bottom: 1%;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }

  .mv__titleBoxWrapper {
    padding-top: 0px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }

  .mv__title {
    text-align: center;
  }

  .mv__imgBox {
    position: unset;
    bottom: unset;
    right: unset;
  }

  .mv__mainImg {
    max-width: 368px;
    margin-inline: auto;
  }

  .faq-accordion {
    padding: 0;
  }

  .faq-accordion__title {
    font-size: 14px;
  }

  .faq-accordion__text {
    font-size: 14px;
  }

  .reason__content {
    margin-top: 140px;
  }

  .reason__list {
    gap: 80px;
  }

  .reason-card__number {
    max-width: 140px;
  }
}
/*# sourceMappingURL=style.css.map */