@charset "UTF-8";
html {
  color: #000;
  background: #fff;
}

body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
code,
form,
fieldset,
legend,
input,
textarea,
p,
blockquote,
th,
td,
figure {
  margin: 0;
  padding: 0;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
}

fieldset,
img {
  border: 0;
}

address,
caption,
cite,
code,
dfn,
em,
strong,
th,
var {
  font-style: normal;
  font-weight: normal;
}

ol,
ul {
  list-style: none;
}

caption,
th {
  text-align: left;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 100%;
  font-weight: normal;
}

q:before,
q:after {
  content: "";
}

abbr,
acronym {
  border: 0;
  font-variant: normal;
}

sup {
  vertical-align: text-top;
}

sub {
  vertical-align: text-bottom;
}

input,
textarea,
select,
button {
  color: inherit;
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  border-radius: 0;
  border: none;
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  background-color: inherit;
}

input,
textarea,
select {
  font-size: 16px;
}

textarea {
  resize: vertical;
  display: block;
}

button {
  padding: 0;
  cursor: pointer;
}

legend {
  color: #000;
}

main {
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
}

svg {
  display: block;
}

* {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

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

/* base
--------------------------------------------- */
body {
  font-family: "Noto Sans JP", sans-serif;
  color: #3A3A3A;
}
body.js-no-scroll {
  overflow-y: hidden;
}

/* component
--------------------------------------------- */
/* ボタン */
/* 見出し */
.section-heading {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.83333;
  color: #05287A;
}
@media screen and (min-width:768px) {
  .section-heading {
    font-size: 36px;
    line-height: 1;
  }
}
.section-heading.--white {
  color: #fff;
}
.section-heading .text {
  position: relative;
  z-index: 2;
}
.section-heading .marker {
  display: inline-block;
  position: relative;
}
.section-heading .marker .text {
  display: inline-block;
  z-index: 2;
}
.section-heading .marker svg {
  position: absolute;
  left: 0;
  bottom: 7px;
}
@media screen and (min-width:768px) {
  .section-heading .marker svg {
    bottom: -3px;
  }
}
@media screen and (min-width:768px) {
  .section-heading .marker svg.svg-sp {
    display: none;
  }
}
.section-heading .marker svg.svg-pc {
  display: none;
}
@media screen and (min-width:768px) {
  .section-heading .marker svg.svg-pc {
    display: block;
  }
}

/* layout
--------------------------------------------- */
/* outer */
.outer {
  max-width: 1512px;
  margin-inline: auto;
}

/* inner sm:700 1000 */
.inner {
  max-width: 1060px;
  margin-inline: auto;
  padding: 0 30px;
}

.inner-sm {
  max-width: 760px;
  margin-inline: auto;
  padding: 0 30px;
}

/* main */
.main {
  margin-top: 50px;
}
@media screen and (min-width:768px) {
  .main {
    margin-top: 80px;
  }
}

/* header */
.header {
  background-color: #05287A;
  padding: 0 28px 0 30px;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 50px;
  z-index: 1001;
}
@media screen and (min-width:768px) {
  .header {
    height: 80px;
    padding: 0 61px 0 30px;
  }
}
.header.js-open {
  background-color: #F3F6FA;
}

.header__outer {
  height: 100%;
}

.header__inner {
  height: 100%;
  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;
}

.header__logo {
  width: 87px;
}
@media screen and (min-width:768px) {
  .header__logo {
    width: 152px;
  }
}

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

.header__nav {
  display: none;
}
@media screen and (min-width:768px) {
  .header__nav {
    display: block;
  }
}

.header__nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
}

.header__nav-link {
  display: block;
  color: #fff;
  font-family: "Noto Serif", serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 2.75;
  letter-spacing: 0.8px;
}
.header__nav-link.--contact {
  font-size: 18px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  line-height: 1.2222222222;
  background-color: #E95855;
  border-radius: 6px;
  width: 160px;
  padding: 13px 10px;
  text-align: center;
  border: 1px solid #E95855;
  -webkit-transition: background-color 0.3s ease, color 0.3s ease, -webkit-filter 0.3s ease;
  transition: background-color 0.3s ease, color 0.3s ease, -webkit-filter 0.3s ease;
  transition: background-color 0.3s ease, color 0.3s ease, filter 0.3s ease;
  transition: background-color 0.3s ease, color 0.3s ease, filter 0.3s ease, -webkit-filter 0.3s ease;
}
@media (any-hover: hover) {
  .header__nav-link.--contact:hover {
    background-color: #fff;
    color: #3A3A3A;
    -webkit-filter: drop-shadow(4px 5px 5px rgba(209, 76, 74, 0.25));
            filter: drop-shadow(4px 5px 5px rgba(209, 76, 74, 0.25));
  }
}

.header__hamburger {
  display: block;
}
@media screen and (min-width:768px) {
  .header__hamburger {
    display: none;
  }
}
.header__hamburger img {
  -o-object-fit: cover;
     object-fit: cover;
}

.header__hamburger-open {
  display: block;
  width: 30px;
}
.header__hamburger-open.js-open {
  display: none;
}

.header__hamburger-close {
  display: none;
  width: 40px;
}
.header__hamburger-close.js-open {
  display: block;
}

.drawer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: #F3F6FA;
  padding: 100px 30px 40px;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.3s ease, visibility 0.3s ease;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.drawer.js-open {
  opacity: 1;
  visibility: visible;
}

.drawer__inner {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.drawer__nav-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-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 42px;
}

.drawer__nav-link {
  font-family: "Noto Serif", serif;
  font-size: 24px;
  color: #000;
  line-height: 1.4166666667;
}

.drawer__button-wrap {
  margin-top: 200px;
  text-align: center;
}

.drawer__button {
  display: inline-block;
  width: 100%;
  max-width: 330px;
  background-color: #E95855;
  color: #fff;
  text-align: center;
  font-size: 17px;
  font-weight: 700;
  line-height: 1;
  padding: 23px 10px 25px;
  border-radius: 10px;
  border: 1px solid #E95855;
  -webkit-transition: background-color 0.3s ease, color 0.3s ease, -webkit-filter 0.3s ease;
  transition: background-color 0.3s ease, color 0.3s ease, -webkit-filter 0.3s ease;
  transition: background-color 0.3s ease, color 0.3s ease, filter 0.3s ease;
  transition: background-color 0.3s ease, color 0.3s ease, filter 0.3s ease, -webkit-filter 0.3s ease;
}
@media screen and (min-width:390px) {
  .drawer__button {
    font-size: 18px;
  }
}
@media (any-hover: hover) {
  .drawer__button:hover {
    background-color: #fff;
    color: #3A3A3A;
    -webkit-filter: drop-shadow(4px 5px 5px rgba(209, 76, 74, 0.25));
            filter: drop-shadow(4px 5px 5px rgba(209, 76, 74, 0.25));
  }
}
@media screen and (min-width:768px) {
  .drawer__button.--lg {
    max-width: 450px;
    font-size: 24px;
    padding: 24px 10px 22px;
  }
}

/* footer */
.footer {
  background-color: #05287A;
  padding: 20px 28.5px 19px;
}
@media screen and (min-width:768px) {
  .footer {
    padding: 49px 28.5px;
  }
}

.footer__inner {
  max-width: 602px;
  margin-inline: auto;
}

.footer__info {
  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;
  gap: 20px;
}
@media screen and (min-width:768px) {
  .footer__info {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

.footer__logo {
  width: 152px;
}
@media screen and (min-width:768px) {
  .footer__logo {
    width: 180px;
  }
}

.footer__logo-link {
  display: block;
}
.footer__logo-link img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.footer__sns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 25px;
}
@media screen and (min-width:768px) {
  .footer__sns {
    gap: 20px;
  }
}

.footer__sns-link {
  display: block;
}
.footer__sns-link.--line, .footer__sns-link.--instagram {
  width: 50px;
}
@media screen and (min-width:768px) {
  .footer__sns-link.--line, .footer__sns-link.--instagram {
    width: 70px;
  }
}
.footer__sns-link.--note {
  width: 128px;
}
@media screen and (min-width:768px) {
  .footer__sns-link.--note {
    width: 185px;
  }
}
.footer__sns-link img {
  -o-object-fit: cover;
     object-fit: cover;
}

.footer__nav {
  margin-top: 20px;
}
@media screen and (min-width:768px) {
  .footer__nav {
    margin-top: 46px;
  }
}

.footer__nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-column-gap: 22px;
     -moz-column-gap: 22px;
          column-gap: 22px;
  row-gap: 5px;
}

.footer__nav-link {
  display: block;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.92;
  letter-spacing: 0.7px;
}
@media screen and (min-width:768px) {
  .footer__nav-link {
    font-size: 20px;
    line-height: 1.35;
    letter-spacing: 1px;
  }
}

.p-footer__copyright {
  margin-top: 5px;
}
@media screen and (min-width:768px) {
  .p-footer__copyright {
    margin-top: 6px;
  }
}

.p-footer__copyright-text {
  color: #fff;
  font-size: 14px;
  line-height: 1.92;
  text-align: center;
  letter-spacing: 0.7px;
}
@media screen and (min-width:768px) {
  .p-footer__copyright-text {
    font-size: 20px;
    line-height: 1.35;
    letter-spacing: 1px;
  }
}

/* utility
--------------------------------------------- */
.u-tab-br {
  display: none;
}
@media screen and (min-width:768px) {
  .u-tab-br {
    display: inline;
  }
}

.u-md-br {
  display: none;
}
@media screen and (min-width:900px) {
  .u-md-br {
    display: inline;
  }
}

.u-tab-none {
  display: inline;
}
@media screen and (min-width:768px) {
  .u-tab-none {
    display: none;
  }
}

/* FV
--------------------------------------------- */
.fv {
  padding: 35px 0 40px;
}
@media screen and (min-width:768px) {
  .fv {
    padding: 67px 0 56px;
  }
}

.fv__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width:1024px) {
  .fv__inner {
    -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;
    max-width: 1146px;
    margin-inline: auto;
    padding: 0 30px;
  }
}
@media screen and (min-width:1240px) {
  .fv__inner {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    max-width: initial;
    padding: 0 170px 0 30px;
    margin-inline: initial;
    margin-left: auto;
  }
}

.fv__contents {
  display: contents;
}
@media screen and (min-width:1024px) {
  .fv__contents {
    display: block;
    margin-right: -270px;
    position: relative;
    z-index: 2;
  }
}

.fv__title {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
  padding-left: 7px;
  color: #05287A;
  font-size: 43px;
  font-weight: 700;
  line-height: 1.25;
  font-family: "Noto Serif", serif;
  white-space: nowrap;
}
@media screen and (min-width:390px) {
  .fv__title {
    font-size: 46px;
  }
}
@media screen and (min-width:1024px) {
  .fv__title {
    -webkit-box-ordinal-group: initial;
        -ms-flex-order: initial;
            order: initial;
    padding-left: 0;
    font-size: 64px;
    line-height: 1.17;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.25);
  }
}
.fv__title .sm {
  font-size: 28px;
}
@media screen and (min-width:390px) {
  .fv__title .sm {
    font-size: 30px;
  }
}
@media screen and (min-width:768px) {
  .fv__title .sm {
    font-size: 48px;
  }
}

.fv__pic {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
  margin-top: 35px;
}
@media screen and (min-width:1024px) {
  .fv__pic {
    -webkit-box-ordinal-group: initial;
        -ms-flex-order: initial;
            order: initial;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 650px;
            flex: 0 0 650px;
    margin-top: 0;
  }
}
@media screen and (min-width:1240px) {
  .fv__pic {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 796px;
            flex: 0 0 796px;
  }
}
.fv__pic img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.fv__button-wrap {
  -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
          order: 3;
  margin-top: 30px;
  text-align: center;
}
@media screen and (min-width:1024px) {
  .fv__button-wrap {
    -webkit-box-ordinal-group: initial;
        -ms-flex-order: initial;
            order: initial;
    margin-top: 20px;
    text-align: left;
  }
}

.fv__button {
  display: inline-block;
  width: 100%;
  max-width: 330px;
  background-color: #E95855;
  color: #fff;
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  padding: 23px 10px 25px;
  border-radius: 10px;
  border: 1px solid #E95855;
  -webkit-filter: drop-shadow(4px 5px 5px rgba(209, 76, 74, 0.25));
          filter: drop-shadow(4px 5px 5px rgba(209, 76, 74, 0.25));
  -webkit-transition: background-color 0.3s ease, color 0.3s ease, -webkit-filter 0.3s ease;
  transition: background-color 0.3s ease, color 0.3s ease, -webkit-filter 0.3s ease;
  transition: background-color 0.3s ease, color 0.3s ease, filter 0.3s ease;
  transition: background-color 0.3s ease, color 0.3s ease, filter 0.3s ease, -webkit-filter 0.3s ease;
}
@media (any-hover: hover) {
  .fv__button:hover {
    background-color: #fff;
    color: #3A3A3A;
  }
}
@media screen and (min-width:768px) {
  .fv__button {
    max-width: 400px;
    padding: 23px 10px 23px;
    font-size: 20px;
    line-height: 1.2;
  }
}
.fv__button.--solution {
  padding: 25px 10px 26px;
}
@media screen and (min-width:768px) {
  .fv__button.--solution {
    max-width: 450px;
    padding: 23px 10px 22px;
    font-size: 24px;
    line-height: 1;
  }
}

/* about
--------------------------------------------- */
.about {
  padding: 60px 0;
  background-color: #05287A;
}
@media screen and (min-width:768px) {
  .about {
    padding: 100px 0;
  }
}

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

.about__inner {
  max-width: 976px;
  margin-inline: auto;
  padding: 0 30px;
}

.about__content {
  margin-top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}
@media screen and (min-width:600px) {
  .about__content {
    width: 75%;
    margin: 20px auto 0;
  }
}
@media screen and (min-width:900px) {
  .about__content {
    width: initial;
    margin-top: 48px;
    -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;
    gap: 45px;
  }
}

@media screen and (min-width:900px) {
  .about__pic {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 336px;
            flex: 0 0 336px;
  }
}
.about__pic img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

@media screen and (min-width:900px) {
  .about__body {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
            flex: 1 1 auto;
  }
}

.about__text {
  font-family: "Noto Serif", serif;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.375;
  letter-spacing: 0.96px;
}
@media screen and (min-width:768px) {
  .about__text {
    font-size: 18px;
    line-height: 1.22222;
    letter-spacing: 1.08px;
  }
}
.about__text + .about__text {
  margin-top: 1em;
}

/* cta
--------------------------------------------- */
.cta {
  padding: 23px 0 22px;
}
@media screen and (min-width:768px) {
  .cta {
    padding: 15px 0 15px;
  }
}

.cta__inner {
  padding: 0 24px;
}
@media screen and (min-width:900px) {
  .cta__inner {
    padding: 0 30px;
  }
}

.cta__inner-content {
  border-radius: 10px;
  background-color: #01539C;
  padding: 20px 15px;
}
@media screen and (min-width:768px) {
  .cta__inner-content {
    padding: 35px 35px;
  }
}

.cta__items {
  display: grid;
  grid-template-columns: 1fr;
  gap: 26px;
}
@media screen and (min-width:600px) {
  .cta__items {
    width: 75%;
    margin-inline: auto;
  }
}
@media screen and (min-width:900px) {
  .cta__items {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    width: initial;
    margin-inline: initial;
  }
}

@media screen and (min-width:900px) {
  .cta__sp-pic {
    display: none;
  }
}
.cta__sp-pic img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.cta__pc {
  display: none;
}
@media screen and (min-width:900px) {
  .cta__pc {
    display: block;
  }
}

.cta__pc-line {
  padding: 13px 10px 9px;
  background-color: #fff;
  border-radius: 10px;
  min-height: 500px;
}
.cta__pc-line .text {
  text-align: center;
}
.cta__pc-line .text.text-left {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  text-align: left;
  position: relative;
}
.cta__pc-line .text.text-left .icon {
  position: absolute;
  top: 0;
  right: 0;
  display: inline-block;
  width: 60px;
  aspect-ratio: 1;
  -o-object-fit: cover;
     object-fit: cover;
}
.cta__pc-line .text.align-column {
  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;
}
.cta__pc-line .text.align-column span:nth-of-type(2) {
  margin-top: -8px;
}
.cta__pc-line .text.fz14 {
  font-size: 13px;
  font-weight: 700;
}
@media screen and (min-width:1024px) {
  .cta__pc-line .text.fz14 {
    font-size: 14px;
  }
}
.cta__pc-line .text.fz16 {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
}
.cta__pc-line .text.fz18 {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2222222222;
}
@media screen and (min-width:1024px) {
  .cta__pc-line .text.fz18 {
    font-size: 18px;
  }
}
.cta__pc-line .text.fz24 {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.2;
}
.cta__pc-line .text.mt5 {
  margin-top: 6px;
}
.cta__pc-line .text.mt20 {
  margin-top: 20px;
}
.cta__pc-line .text.mt25 {
  margin-top: 19px;
}
.cta__pc-line .text.lg {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.5;
}
@media screen and (min-width:1024px) {
  .cta__pc-line .text.lg {
    font-size: 30px;
  }
}
.cta__pc-line .text.blue {
  color: #01539C;
}
.cta__pc-line .text.line {
  color: #12AF5E;
}

.cta__pc-kindle {
  background-color: #F1EDE9;
  border-radius: 10px;
  padding: 10px 10px 26px;
}
@media screen and (min-width:900px) {
  .cta__pc-kindle {
    min-height: 500px;
    padding: 13px 13.5px 37px;
  }
}
.cta__pc-kindle img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.cta__pc-btn-wrap {
  margin-top: 16px;
  text-align: center;
}
@media screen and (min-width:900px) {
  .cta__pc-btn-wrap {
    margin-top: 27px;
  }
}

.cta__pc-link {
  display: inline-block;
  max-width: 243px;
}
@media screen and (min-width:500px) {
  .cta__pc-link {
    max-width: 348px;
  }
}
.cta__pc-link img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/* strong
--------------------------------------------- */
.strong {
  padding: 40px 0;
  background-color: #F3F6FA;
}
@media screen and (min-width:768px) {
  .strong {
    padding: 80px 0;
  }
}

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

.strong__inner {
  max-width: 860px;
  margin-inline: auto;
  padding: 0 30px;
}

.strong__content {
  margin-top: 42px;
}
@media screen and (min-width:768px) {
  .strong__content {
    margin-top: 60px;
  }
}

.strong__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 52px;
}
@media screen and (min-width:600px) {
  .strong__items {
    width: 80%;
    margin-inline: auto;
  }
}
@media screen and (min-width:768px) {
  .strong__items {
    width: initial;
    margin-inline: initial;
    gap: 60px;
  }
}

.strong__header {
  min-height: 50px;
  background-color: #05287A;
  padding: 19px 0 10px;
  position: relative;
}
@media screen and (min-width:768px) {
  .strong__header {
    min-height: 70px;
    padding: 13px 0 13px;
  }
}

.strong__header-text {
  color: #fff;
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
}
@media screen and (min-width:768px) {
  .strong__header-text {
    font-size: 27px;
    line-height: 1.62963;
  }
}

.strong__item-number {
  position: absolute;
  top: -17px;
  left: -1px;
  display: inline-grid;
  place-items: center;
  width: 30px;
  height: 30px;
  background-color: #FEE300;
  font-size: 24px;
  font-weight: 500;
  line-height: 1;
}
@media screen and (min-width:768px) {
  .strong__item-number {
    width: 50px;
    height: 50px;
    font-size: 40px;
  }
}

.strong__body {
  background-color: #fff;
  padding: 20px 0 20px;
}
@media screen and (min-width:768px) {
  .strong__body {
    padding: 30px 0 30px;
  }
}
@media screen and (min-width:768px) {
  .strong__body.--03 {
    margin-top: 5px;
  }
}
@media screen and (min-width:768px) {
  .strong__body.--04 {
    margin-top: 5px;
  }
}

.strong__feature {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 4px;
}
@media screen and (min-width:500px) {
  .strong__feature {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.strong__feature-pic {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 70px;
          flex: 0 0 70px;
}
@media screen and (min-width:768px) {
  .strong__feature-pic {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 170px;
            flex: 0 0 170px;
  }
}
.strong__feature-pic img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.strong__feature-pic.--01 {
  margin-top: 9px;
}
@media screen and (min-width:768px) {
  .strong__feature-pic.--01 {
    margin-top: 10px;
  }
}
.strong__feature-pic.--02 {
  margin-top: 5px;
}
@media screen and (min-width:768px) {
  .strong__feature-pic.--02 {
    margin-top: 10px;
  }
}
.strong__feature-pic.--03 {
  margin-top: 10px;
}
@media screen and (min-width:768px) {
  .strong__feature-pic.--03 {
    margin-top: 0;
  }
}
.strong__feature-pic.--04 {
  margin-top: 15px;
}
@media screen and (min-width:768px) {
  .strong__feature-pic.--04 {
    margin-top: 0;
  }
}

.strong__feature-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: 1em;
}
@media screen and (min-width:768px) {
  .strong__feature-list {
    gap: 0;
  }
}
.strong__feature-list.--01 {
  padding-right: 16px;
}
.strong__feature-list.--02 {
  padding-right: 1px;
}
.strong__feature-list.--03 {
  padding-right: 13px;
}
.strong__feature-list.--04 {
  padding-right: 28px;
}

.strong__feature-lit-item {
  font-size: 15px;
  font-weight: 500;
  line-height: 1.875;
}
@media screen and (min-width:390px) {
  .strong__feature-lit-item {
    font-size: 16px;
  }
}
@media screen and (min-width:768px) {
  .strong__feature-lit-item {
    font-size: 18px;
    line-height: 1.6666666667;
  }
}

.strong__item-triangle {
  display: none;
}
@media screen and (min-width:768px) {
  .strong__item-triangle {
    display: block;
    width: 44px;
    margin: 16px auto 11px;
  }
}
.strong__item-triangle img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.strong__triangle-sp {
  width: 30px;
  margin: 24px auto 8px;
}
@media screen and (min-width:768px) {
  .strong__triangle-sp {
    display: none;
  }
}

.strong__item-bottom {
  padding-top: 15px;
  border-top: 0.8px solid rgba(5, 40, 122, 0.3);
}
@media screen and (min-width:768px) {
  .strong__item-bottom {
    padding-top: 13px;
  }
}
@media screen and (min-width:768px) {
  .strong__item-bottom.--sp {
    display: none;
  }
}
.strong__item-bottom.--pc {
  display: none;
}
@media screen and (min-width:768px) {
  .strong__item-bottom.--pc {
    display: block;
    text-align: left;
    padding-left: 9px;
  }
  .strong__item-bottom.--pc .strong__bottom-text {
    margin-inline: initial;
  }
}

.strong__bottom-text {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
}
@media screen and (min-width:390px) {
  .strong__bottom-text {
    font-size: 20px;
  }
}
@media screen and (min-width:768px) {
  .strong__bottom-text {
    font-size: 27px;
    line-height: 1.1111111111;
  }
}
.strong__bottom-text.--01 {
  padding: 0 15px;
}
.strong__bottom-text.--02 {
  padding: 0 1px 0 9px;
}
.strong__bottom-text.--03 {
  padding: 0 13px 0 17px;
}
.strong__bottom-text.--04 {
  padding: 0;
}

/* worry
--------------------------------------------- */
.worry {
  padding: 50px 0 45px;
  background-color: #05287A;
}
@media screen and (min-width:768px) {
  .worry {
    padding: 100px 0 100px;
  }
}

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

.worry__content {
  max-width: 343px;
  margin-inline: auto;
  background-color: #fff;
  border-radius: 10px;
  padding: 9px 0 5px;
  outline: 1px solid rgba(5, 40, 122, 0.7);
  outline-offset: -4px;
  position: relative;
}
@media screen and (min-width:768px) {
  .worry__content {
    padding: 30px 0 23px;
    max-width: 708px;
    outline-offset: -8px;
  }
}
@media screen and (min-width:1024px) {
  .worry__content {
    max-width: initial;
    margin-inline: initial;
  }
}

.worry__heading {
  color: #05287A;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.1111111111;
  letter-spacing: -0.54px;
}
@media screen and (min-width:768px) {
  .worry__heading {
    font-size: 36px;
    line-height: 1.2222222222;
  }
}

.worry__item {
  margin-top: 8px;
  padding: 0 15px;
}
@media screen and (min-width:768px) {
  .worry__item {
    margin-top: 38px;
    padding: 0 60px;
  }
}

.worry__pic {
  max-width: 104px;
  margin: 38px auto 0;
}
@media screen and (min-width:768px) {
  .worry__pic {
    max-width: 238px;
    margin: 181px auto 0;
  }
}
.worry__pic img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.worry__balloon {
  position: absolute;
}
.worry__balloon img {
  -o-object-fit: cover;
     object-fit: cover;
}
.worry__balloon.--01 {
  width: 92px;
  left: 15px;
  bottom: 11px;
}
@media screen and (min-width:768px) {
  .worry__balloon.--01 {
    width: 256px;
    left: 13px;
    bottom: 50px;
  }
}
@media screen and (min-width:1024px) {
  .worry__balloon.--01 {
    left: 60px;
  }
}
.worry__balloon.--02 {
  width: 107px;
  top: 37px;
  left: 30px;
}
@media screen and (min-width:768px) {
  .worry__balloon.--02 {
    width: 305px;
    top: 82px;
    left: 56px;
  }
}
@media screen and (min-width:1024px) {
  .worry__balloon.--02 {
    top: 112px;
    left: 146px;
  }
}
.worry__balloon.--03 {
  width: 107px;
  top: 37px;
  right: 30px;
}
@media screen and (min-width:768px) {
  .worry__balloon.--03 {
    width: 292px;
    top: 86px;
    right: 47px;
  }
}
@media screen and (min-width:1024px) {
  .worry__balloon.--03 {
    top: 112px;
    right: 157px;
  }
}
.worry__balloon.--04 {
  width: 93px;
  right: 15px;
  bottom: 12px;
}
@media screen and (min-width:768px) {
  .worry__balloon.--04 {
    width: 256px;
    right: 12px;
    bottom: 50px;
  }
}
@media screen and (min-width:1024px) {
  .worry__balloon.--04 {
    right: 60px;
  }
}

.worry__balloon-text {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  color: #05287A;
  font-size: 10px;
  font-weight: 500;
  line-height: 1.5;
  white-space: nowrap;
}
@media screen and (min-width:768px) {
  .worry__balloon-text {
    font-size: 27px;
    line-height: 1.1111111111;
  }
}
/* solution
--------------------------------------------- */
.solution {
  padding: 55px 0 37px;
  position: relative;
}
@media screen and (min-width:768px) {
  .solution {
    padding: 100px 0 78px;
  }
}

.worry__triangle {
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 165px;
}
@media screen and (min-width:768px) {
  .worry__triangle {
    width: 300px;
  }
}
.worry__triangle img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

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

.solution__inner {
  max-width: 1061px;
  margin-inline: auto;
  padding: 0 26px 0 31px;
}

.solution__content {
  margin-top: 20px;
}
@media screen and (min-width:768px) {
  .solution__content {
    margin-top: 48px;
  }
}

.solution__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 30px;
}
@media screen and (min-width:500px) {
  .solution__items {
    width: 85%;
    margin-inline: auto;
  }
}
@media screen and (min-width:600px) {
  .solution__items {
    width: 75%;
    margin-inline: auto;
  }
}
@media screen and (min-width:768px) {
  .solution__items {
    width: 85%;
    gap: 48px;
  }
}
@media screen and (min-width:1024px) {
  .solution__items {
    width: initial;
    margin-inline: initial;
  }
}

.solution__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 14px;
}
@media screen and (min-width:768px) {
  .solution__item {
    gap: 48px;
  }
}
@media screen and (min-width:1024px) {
  .solution__item:nth-of-type(even) {
    margin-left: 146px;
  }
}

.solution__photo {
  margin-top: 15px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 60px;
          flex: 0 0 60px;
}
@media screen and (min-width:768px) {
  .solution__photo {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 130px;
            flex: 0 0 130px;
    margin-top: 0;
  }
}
@media screen and (min-width:768px) {
  .solution__photo.--02 {
    margin-top: 7px;
  }
}
@media screen and (min-width:768px) {
  .solution__photo.--03 {
    margin-top: 9px;
  }
}
.solution__photo.--04 {
  margin-top: 0;
}
.solution__photo img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.solution__balloon {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  background-color: #C8D6EA;
  border-radius: 10px;
  padding: 10px 2px 10px 10px;
  position: relative;
}
@media screen and (min-width:900px) {
  .solution__balloon {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 670px;
            flex: 1 1 670px;
    max-width: 670px;
  }
}
.solution__balloon::before {
  content: "";
  position: absolute;
  left: -14px;
  bottom: 7px;
  display: inline-block;
  width: 28px;
  height: 33px;
  background-image: url(../img/solution-triangle-left-sp.webp);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
}
@media screen and (min-width:768px) {
  .solution__balloon::before {
    width: 38px;
    height: 46px;
    left: -34px;
    bottom: 12px;
  }
}
@media screen and (min-width:768px) {
  .solution__balloon.--01 {
    padding: 33px 10px 32px 37px;
  }
}
@media screen and (min-width:768px) {
  .solution__balloon.--02 {
    padding: 33px 10px 32px 37px;
  }
}
@media screen and (min-width:768px) {
  .solution__balloon.--03 {
    padding: 18px 10px 17px 30px;
  }
  .solution__balloon.--03::before {
    bottom: 20px;
  }
  .solution__balloon.--03 .solution__balloon-text {
    line-height: 1.2962962963;
  }
}
.solution__balloon.--04 {
  margin-top: 3px;
}
@media screen and (min-width:768px) {
  .solution__balloon.--04 {
    padding: 15px 10px 15px 27px;
    margin-top: 20px;
  }
}
.solution__balloon.--04::before {
  bottom: 2.5px;
}
@media screen and (min-width:768px) {
  .solution__balloon.--04::before {
    bottom: 12px;
  }
}

.solution__balloon-text {
  font-size: 13px;
  color: #05287A;
  font-weight: 500;
  line-height: 1.0714285714;
  position: relative;
  z-index: 2;
}
@media screen and (min-width:390px) {
  .solution__balloon-text {
    font-size: clamp(0.813rem, 0.508rem + 1.25vw, 1.688rem);
  }
}
@media screen and (min-width:768px) {
  .solution__balloon-text {
    line-height: 1.4814814815;
  }
}
.solution__balloon-text.--04 {
  line-height: 1.4285714286;
}
.solution__balloon-text + .solution__balloon-text {
  margin-top: 1em;
}
@media screen and (min-width:768px) {
  .solution__balloon-text + .solution__balloon-text {
    margin-top: 0;
  }
}

.solution__btn-wrap {
  margin-top: 96px;
  text-align: center;
}
@media screen and (min-width:768px) {
  .solution__btn-wrap {
    margin-top: 178px;
  }
}

/* tutor
--------------------------------------------- */
.tutor {
  padding: 40px 0;
  background-color: #EEDFD2;
}
@media screen and (min-width:768px) {
  .tutor {
    padding: 80px 0;
  }
}

.tutor__header {
  padding: 13px 0;
  background-color: #560C0B;
}
@media screen and (min-width:768px) {
  .tutor__header {
    padding: 28px 0;
  }
}

.tutor__heading {
  text-align: center;
  font-family: "Noto Serif", serif;
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.8333333333;
}
@media screen and (min-width:768px) {
  .tutor__heading {
    font-size: 36px;
    line-height: 1.2222222222;
  }
}

.tutor__content {
  margin-top: 20px;
}
@media screen and (min-width:768px) {
  .tutor__content {
    margin-top: 48px;
  }
}

.tutor__container {
  display: grid;
  grid-template-columns: 160px 1fr;
  grid-template-rows: repeat(2, auto);
  -webkit-column-gap: 15px;
     -moz-column-gap: 15px;
          column-gap: 15px;
  row-gap: 16px;
}
@media screen and (min-width:500px) {
  .tutor__container {
    width: 75%;
    margin-inline: auto;
  }
}
@media screen and (min-width:768px) {
  .tutor__container {
    width: initial;
    margin-inline: initial;
    grid-template-columns: 321px 1fr;
    grid-template-rows: initial;
    -webkit-column-gap: 32px;
       -moz-column-gap: 32px;
            column-gap: 32px;
  }
}
@media screen and (min-width:1024px) {
  .tutor__container {
    -webkit-column-gap: 59px;
       -moz-column-gap: 59px;
            column-gap: 59px;
  }
}

.tutor__photo {
  grid-column: 1/2;
  grid-row: 1/2;
}
@media screen and (min-width:768px) {
  .tutor__photo {
    grid-column: initial;
    grid-row: initial;
  }
}
.tutor__photo img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.tutor__sp-textarea {
  grid-column: 2/3;
  grid-row: 1/2;
  margin-right: -15px;
}
@media screen and (min-width:768px) {
  .tutor__sp-textarea {
    grid-column: initial;
    grid-row: initial;
    display: none;
  }
}
.tutor__sp-textarea .tutor__text + .tutor__text {
  margin-top: 20px;
}

.tutor__pc-textarea {
  display: none;
}
@media screen and (min-width:768px) {
  .tutor__pc-textarea {
    display: block;
  }
}

.tutor__textarea {
  grid-column: 1/3;
  grid-row: 2/3;
}
@media screen and (min-width:768px) {
  .tutor__textarea {
    margin-top: 19px;
    grid-column: initial;
    grid-row: initial;
  }
}

.tutor__text {
  font-family: "Noto Serif", serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0.96px;
}
@media screen and (min-width:768px) {
  .tutor__text {
    font-size: 18px;
    letter-spacing: 1.08px;
    line-height: 1.1111111111;
  }
}
.tutor__text + .tutor__text {
  margin-top: 1em;
}
.tutor__text.mt1em {
  margin-top: 1em;
}

/* result
--------------------------------------------- */
.result {
  padding: 40px 0 0;
}
@media screen and (min-width:768px) {
  .result {
    padding: 80px 0 0;
  }
}

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

.result__content {
  margin-top: 20px;
}
@media screen and (min-width:768px) {
  .result__content {
    margin-top: 48px;
  }
}

.result__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 30px;
}
@media screen and (min-width:600px) {
  .result__items {
    width: 75%;
    margin-inline: auto;
  }
}
@media screen and (min-width:768px) {
  .result__items {
    width: initial;
    margin-inline: initial;
    gap: 48px;
  }
}

.result__item {
  border-radius: 10px;
  background-color: #F4F2E5;
  padding: 20px 10px 30px;
}
@media screen and (min-width:768px) {
  .result__item {
    padding: 30px 10px 30px;
    min-height: 217px;
  }
}

.result__title {
  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;
  gap: 10px;
}
.result__title .text {
  color: #825E15;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.8333333333;
}
@media screen and (min-width:768px) {
  .result__title .text {
    font-size: 36px;
    line-height: 1.2222222222;
  }
}
.result__title .icon {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 30px;
          flex: 0 0 30px;
  width: 30px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width:768px) {
  .result__title .icon {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 42px;
            flex: 0 0 42px;
    width: 42px;
  }
}

.result__body {
  margin-top: 20px;
}
@media screen and (min-width:768px) {
  .result__body {
    max-width: 817px;
    margin: 20px auto 0;
  }
}

.result__item-text {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.1875;
}
@media screen and (min-width:768px) {
  .result__item-text {
    font-size: 18px;
    line-height: 1.2222222222;
  }
}

/* price
--------------------------------------------- */
.price {
  padding: 40px 0 40px;
}
@media screen and (min-width:768px) {
  .price {
    padding: 80px 0 80px;
  }
}

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

.price__content {
  margin-top: 20px;
}

.price__tabs {
  display: grid;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  grid-template-columns: repeat(3, 1fr);
}

.price__tab {
  height: 33px;
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 18px;
  font-weight: 500;
  cursor: pointer;
}
@media screen and (min-width:768px) {
  .price__tab {
    height: 100px;
    font-size: 36px;
  }
}
.price__tab.is-active {
  height: 43px;
}
@media screen and (min-width:768px) {
  .price__tab.is-active {
    height: 128px;
  }
}
.price__tab.--01 {
  background-color: #05287A;
}
.price__tab.--02 {
  background-color: #17978A;
}
.price__tab.--03 {
  background-color: #802769;
}

.price__panel {
  display: none;
}
.price__panel.is-active {
  display: block;
  padding: 8.5px 8.5px;
  background-color: #05287A;
}
@media screen and (min-width:768px) {
  .price__panel.is-active {
    padding: 25px 25px;
  }
}

.price__panel-content {
  background-color: #fff;
  padding: 2px 0 2px;
}
@media screen and (min-width:768px) {
  .price__panel-content {
    padding: 8px 0 0;
  }
}

.price__panel-pic {
  width: 69%;
  aspect-ratio: 217/155;
  margin-inline: auto;
}
@media screen and (min-width:768px) {
  .price__panel-pic {
    max-width: 650px;
    aspect-ratio: 650/465;
    width: initial;
  }
}
.price__panel-pic img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/* faq */
.faq {
  padding: 40px 0;
  background-color: #0051A2;
}
@media screen and (min-width:768px) {
  .faq {
    padding: 80px 0;
  }
}

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

.faq__content {
  margin-top: 20px;
}
@media screen and (min-width:768px) {
  .faq__content {
    margin-top: 48px;
  }
}

.faq__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: 20px;
}
@media screen and (min-width:600px) {
  .faq__list {
    width: 75%;
    margin-inline: auto;
  }
}
@media screen and (min-width:768px) {
  .faq__list {
    width: initial;
    margin-inline: initial;
  }
}

.faq__item {
  padding: 6px 0 10px 0;
  border-bottom: 1px solid #fff;
}
@media screen and (min-width:768px) {
  .faq__item {
    padding: 6px 0 14px 0;
  }
}

.faq__term {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  padding-right: 30px;
  cursor: pointer;
  position: relative;
}
.faq__term.is-open .faq__q-title::after {
  content: "ー";
}

.faq__q {
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
}

.faq__q-title {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  color: #fff;
  font-size: 13.5px;
  font-weight: 500;
  line-height: 1;
}
@media screen and (min-width:500px) {
  .faq__q-title {
    font-size: 14px;
  }
}
@media screen and (min-width:768px) {
  .faq__q-title {
    font-size: 16px;
  }
}
.faq__q-title::before, .faq__q-title::after {
  content: "";
  position: absolute;
  display: inline-block;
}
.faq__q-title::before {
  top: -6px;
  right: 2px;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background-color: #fff;
}
@media screen and (min-width:768px) {
  .faq__q-title::before {
    width: 30px;
    height: 30px;
  }
}
.faq__q-title::after {
  content: "＋";
  top: -6.5px;
  right: 5px;
  color: #3A3A3A;
  font-size: 20px;
  font-weight: 900;
  line-height: 1.2;
}
@media screen and (min-width:768px) {
  .faq__q-title::after {
    top: -4px;
    right: 6.5px;
  }
}

.faq__desc {
  display: none;
  padding-top: 16px;
  padding-right: 36px;
}

.faq__desc-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}

.faq__a {
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
}

.faq__a-text {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4285714286;
}
@media screen and (min-width:768px) {
  .faq__a-text {
    font-size: 16px;
    line-height: 1.25;
  }
}

/* cta02 */
.cta02 {
  padding: 60px 0;
}
@media screen and (min-width:768px) {
  .cta02 {
    padding: 100px 0;
  }
}

.cta02__inner {
  text-align: center;
}

/* 下層ページ */
.p-page {
  padding: 56px 0 80px;
}
@media screen and (min-width:768px) {
  .p-page {
    padding: 80px 0 120px;
  }
}

.p-page__inner {
  max-width: 830px;
  margin-inline: auto;
  padding: 0 15px;
}
.p-page__inner.--row {
  max-width: 930px;
}

.p-page__heading {
  text-align: center;
  font-size: 32px;
  font-weight: 700;
}
@media screen and (min-width:768px) {
  .p-page__heading {
    font-size: 40px;
  }
}

.p-page__lead {
  margin-top: 40px;
}
@media screen and (min-width:768px) {
  .p-page__lead {
    margin-top: 70px;
  }
}

.p-page__lead-text {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.6;
}
@media screen and (min-width:768px) {
  .p-page__lead-text {
    font-size: 18px;
  }
}

.p-page__items {
  margin-top: 42px;
  display: flex;
  flex-direction: column;
  gap: 34px;
}
@media screen and (min-width:768px) {
  .p-page__items {
    gap: 54px;
  }
}

.p-page__title {
  font-size: 22px;
  font-weight: 700;
}
@media screen and (min-width:768px) {
  .p-page__title {
    font-size: 32px;
  }
}

.p-page__textarea {
  margin-top: 10px;
}
@media screen and (min-width:768px) {
  .p-page__textarea {
    margin-top: 18px;
  }
}

.p-page__text {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.8;
}
@media screen and (min-width:768px) {
  .p-page__text {
    font-size: 18px;
  }
}
.p-page__text + .p-page__text {
  margin-top: 1em;
}

.p-page__list {
  margin-top: 1em;
  list-style-type: disc;
  margin-left: 1em;
  padding-left: 1em;
}
.p-page__list.--number {
  list-style-type: decimal;
}

.p-page__list-item {
  font-size: 16px;
  line-height: 1.8;
  font-weight: 500;
}
@media screen and (min-width:768px) {
  .p-page__list-item {
    font-size: 18px;
  }
}

.p-page__table {
  border: 1px solid #cccccc;
}

.p-page__table-item {
  display: flex;
}
.p-page__table-item:last-of-type .p-page__table-term {
  border-bottom: none;
}

.p-page__table-term {
  flex: 0 0 135px;
  font-size: 15px;
  font-weight: 500;
  padding: 8px 6px 8px 8px;
  border-right: 1px solid #cccccc;
  border-bottom: 1px solid #cccccc;
}
@media screen and (min-width:768px) {
  .p-page__table-term {
    flex: 0 0 230px;
    font-size: 17px;
    padding: 10px 10px;
  }
}

.p-page__table-desc {
  flex: 1 1 auto;
  font-size: 14px;
  font-weight: 500;
  padding: 8px 6px 8px 8px;
  border-bottom: 1px solid #cccccc;
}
@media screen and (min-width:768px) {
  .p-page__table-desc {
    font-size: 17px;
    padding: 10px 10px;
  }
}
.p-page__table-desc ul {
  list-style: disc;
  padding-left: 1em;
  font-size: 15px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
@media screen and (min-width:768px) {
  .p-page__table-desc ul {
    font-size: 17px;
  }
}
.p-page__table-desc li {
  font-size: 14px;
  line-height: 1.5;
  font-weight: 500;
}
@media screen and (min-width:768px) {
  .p-page__table-desc li {
    font-size: 17px;
  }
}