@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;
  box-sizing: border-box;
}

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

/* base
--------------------------------------------- */
body {
  font-family: "Noto Sans JP", sans-serif;
  color: #3A3A3A;
}

/* component
--------------------------------------------- */
/* ボタン */
.form-button {
  display: inline-block;
  width: 100%;
  max-width: 450px;
  color: #fff;
  background-color: #EE6316;
  border-radius: 30px;
  text-align: center;
  padding: 20px 10px 21px;
  border: 1px solid #EE6316;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.4583333333;
  transition: background-color 0.4s ease, color 0.4s ease;
}
@media (any-hover: hover) {
  .form-button:hover {
    background-color: #fff;
    color: #EE6316;
  }
}

/* 見出し */
.marker-heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  position: relative;
}
@media screen and (min-width:900px) {
  .marker-heading {
    padding: 0 19px;
  }
}
.marker-heading span.text {
  display: inline-block;
  padding: 0 10px;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.4285714286;
  position: relative;
  z-index: 2;
}
@media screen and (min-width:900px) {
  .marker-heading span.text {
    font-size: 36px;
    line-height: 1.4444444444;
    padding: 0;
  }
}
.marker-heading span.text::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  background-image: url(../img/text-marker-sp.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  display: inline-block;
  width: 100%;
  height: 10px;
}
@media screen and (min-width:900px) {
  .marker-heading span.text::after {
    content: none;
  }
}
.marker-heading span.marker-pc {
  display: none;
}
@media screen and (min-width:900px) {
  .marker-heading span.marker-pc {
    position: absolute;
    left: 0;
    bottom: -11px;
    background-image: url(../img/text-marker01.svg);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center center;
    display: inline-block;
    width: 100%;
    height: 20px;
    z-index: 1;
  }
}

.marker-pc-wrap {
  display: contents;
}
@media screen and (min-width:900px) {
  .marker-pc-wrap {
    display: flex;
  }
}

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

/* header */
.header {
  background-color: transparent;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  max-width: 1060px;
  width: 100%;
  margin-inline: auto;
  padding: 30px 0 0 17px;
  z-index: 2;
}
@media screen and (min-width:768px) {
  .header {
    padding: 0 30px;
  }
}

.header__logo {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.header__logo-link {
  display: flex;
  align-items: center;
  gap: 5px;
}
@media screen and (min-width:768px) {
  .header__logo-link {
    gap: 17px;
  }
}

.header__logo-icon {
  flex: 0 0 40px;
  width: 40px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width:768px) {
  .header__logo-icon {
    flex: 0 0 80px;
    width: 80px;
  }
}

.header__logo-text {
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.45;
}
@media screen and (min-width:768px) {
  .header__logo-text {
    font-size: 27px;
    line-height: 1.4444444444;
  }
}

/* footer */
.footer {
  padding: 37px 10px 40px 30px;
  background-color: #3C2B23;
}
@media screen and (min-width:768px) {
  .footer {
    padding: 10px 10px 31px 30px;
  }
}

.footer__logo {
  display: flex;
  justify-content: flex-start;
  gap: 5px;
}
@media screen and (min-width:400px) {
  .footer__logo {
    justify-content: center;
  }
}
@media screen and (min-width:768px) {
  .footer__logo {
    gap: 20px;
  }
}

.footer__logo-link {
  display: block;
}

.footer__logo-icon {
  flex: 0 0 30px;
  width: 30px;
  height: 30px;
  aspect-ratio: 1;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width:768px) {
  .footer__logo-icon {
    flex: 0 0 57px;
    width: 57px;
    height: 57px;
  }
}

.footer__text-wrap {
  margin-top: 3px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}
@media screen and (min-width:768px) {
  .footer__text-wrap {
    margin-top: 10px;
  }
}

.footer__logo-text {
  color: #fff;
  font-size: 20px;
  font-weight: 500;
  line-height: 1;
}
@media screen and (min-width:768px) {
  .footer__logo-text {
    font-size: 27px;
    line-height: 1.4444444444;
  }
}

.footer__produce {
  display: inline-block;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4285714286;
}
@media screen and (min-width:768px) {
  .footer__produce {
    font-size: 18px;
    line-height: 0.9285714286;
  }
}

.footer__sns-list {
  margin-top: 30px;
  display: grid;
  grid-template-columns: 52px 40px 40px;
  align-items: center;
  justify-content: center;
  gap: 15px;
}
@media screen and (min-width:768px) {
  .footer__sns-list {
    margin-top: 40px;
  }
}

.footer__sns-link {
  display: block;
}

.footer__sns-icon {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.footer__nav {
  margin-top: 30px;
}

.footer__nav-list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  -moz-column-gap: 15px;
       column-gap: 15px;
  row-gap: 0;
}
@media screen and (min-width:768px) {
  .footer__nav-list {
    -moz-column-gap: 27px;
         column-gap: 27px;
  }
}

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

.footer__copyright {
  margin-top: 15px;
  text-align: center;
  color: #fff;
  font-size: 12px;
  font-weight: 500;
  line-height: 2.25;
  letter-spacing: 0.6px;
}
@media screen and (min-width:768px) {
  .footer__copyright {
    margin-top: 20px;
    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-tab-none {
  display: inline;
}
@media screen and (min-width:768px) {
  .u-tab-none {
    display: none;
  }
}

/* FV
--------------------------------------------- */
.fv {
  height: 705px;
  position: relative;
}
@media screen and (min-width:768px) {
  .fv {
    height: 750px;
  }
}

.fv__bg {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.fv__box {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 125px;
  width: 100%;
  max-width: 390px;
}
@media screen and (min-width:768px) {
  .fv__box {
    max-width: 670px;
    top: 0;
  }
}

.fv__box-img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.fv__box-button-pc {
  display: none;
}
@media screen and (min-width:768px) {
  .fv__box-button-pc {
    display: block;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    text-align: center;
  }
}

.fv__button-sp {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 60px;
  width: 100%;
  text-align: center;
  max-width: 330px;
}
@media screen and (min-width:768px) {
  .fv__button-sp {
    display: none;
  }
}

/* Concept
--------------------------------------------- */
.concept {
  padding: 30px 0;
  background-image: url(../img/lead-bg-sp.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}
@media screen and (min-width:768px) {
  .concept {
    padding: 0;
    background-image: url(../img/lead-bg.webp);
  }
}

.concept__container {
  background-color: rgba(19, 32, 38, 0.8);
}
@media screen and (min-width:768px) {
  .concept__container {
    height: 486px;
    text-align: center;
    color: #fff;
    background-color: initial;
    background-image: url(../img/lead-overlay.svg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    width: 100%;
  }
}

.concept__inner {
  max-width: 784px;
  margin-inline: auto;
  padding: 0 30px;
}

.concept__heading {
  text-align: center;
  color: #fff;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.4642857143;
  letter-spacing: 2.8px;
}
@media screen and (min-width:768px) {
  .concept__heading {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.4444444444;
    letter-spacing: 3.6px;
  }
}

.concept__content {
  padding: 21px 0 33px;
}
@media screen and (min-width:768px) {
  .concept__content {
    padding: 80px 0;
  }
}

.concept__item {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
@media screen and (min-width:768px) {
  .concept__item {
    margin-top: 40px;
    flex-direction: row;
    align-items: flex-start;
    gap: 30px;
  }
}
@media screen and (min-width:900px) {
  .concept__item {
    gap: 78px;
  }
}

.concept__img {
  width: 142px;
}
@media screen and (min-width:768px) {
  .concept__img {
    width: auto;
    flex: 0 0 243px;
  }
}
.concept__img img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

@media screen and (min-width:768px) {
  .concept__body {
    flex: 1 1 auto;
  }
}

.concept__title {
  white-space: nowrap;
  font-size: 20px;
  color: #fff;
  font-weight: 700;
  line-height: 1.45;
}
@media screen and (min-width:768px) {
  .concept__title {
    font-size: 27px;
    line-height: 1.4444444444;
  }
}

.concept__textarea {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
@media screen and (min-width:768px) {
  .concept__textarea {
    gap: 15px;
  }
}

.concept__text {
  text-align: center;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.84px;
  line-height: 1;
}
@media screen and (min-width:768px) {
  .concept__text {
    font-size: 18px;
    letter-spacing: 0.9px;
  }
}

/* Worry
--------------------------------------------- */
.worry {
  padding: 40px 0 60px;
  background-image: url(../img/bg-wrap-sp.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  position: relative;
  z-index: 2;
}
.worry::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -40px;
  display: block;
  width: 100%;
  background: linear-gradient(0deg, #F6E8D5 0%, #D9D2C5 50%, rgba(23, 92, 135, 0.85) 100%);
  height: 80px;
}
@media screen and (min-width:768px) {
  .worry {
    padding: 80px 0;
    background-image: url(../img/bg-wrap.webp);
  }
}

.worry__heading {
  text-align: center;
  color: #fff;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.4642857143;
}
@media screen and (min-width:768px) {
  .worry__heading {
    font-size: 36px;
    line-height: 1.4444444444;
  }
}

.worry__list {
  margin-top: 30px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}
@media screen and (min-width:768px) {
  .worry__list {
    width: 60%;
    margin: 30px auto 0;
  }
}
@media screen and (min-width:900px) {
  .worry__list {
    width: auto;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
}

.worry__list-item {
  background-color: #fff;
}

.worry__list-pic img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.worry__list-title {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 7px 14.23px 7.76px 15px;
  background-color: #EE6316;
  color: #fff;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.2;
}
@media screen and (min-width:768px) {
  .worry__list-title {
    padding: 10px 17px 8px 16px;
    font-size: 27px;
    line-height: 1.1851851852;
  }
}

.worry__list-content.--first {
  padding: 10px 10px 15px 99px;
}
@media screen and (min-width:768px) {
  .worry__list-content.--first {
    padding: 10px 10px 12px 74px;
  }
}
.worry__list-content.--second {
  padding: 11px 10px 15px 36px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
@media screen and (min-width:768px) {
  .worry__list-content.--second {
    padding: 11px 10px 12px 10px;
    gap: 15.5px;
  }
}
.worry__list-content.--second .top {
  display: flex;
  align-items: center;
  gap: 20px;
}
@media screen and (min-width:768px) {
  .worry__list-content.--second .top {
    gap: 15.5px;
  }
}
.worry__list-content.--third {
  padding: 10px 10px 15px 92px;
}
@media screen and (min-width:768px) {
  .worry__list-content.--third {
    padding: 10px 10px 12px 65px;
  }
}
.worry__list-content .text {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.2;
}
@media screen and (min-width:768px) {
  .worry__list-content .text {
    font-size: 27px;
    line-height: 1.1851851852;
  }
}
.worry__list-content .text:not(:first-of-type) {
  margin-top: 10px;
}
@media screen and (min-width:768px) {
  .worry__list-content .text:not(:first-of-type) {
    margin-top: 16px;
  }
}

.worry__notice01 {
  margin-top: 30px;
  text-align: center;
}
@media screen and (min-width:768px) {
  .worry__notice01 {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin: 40px auto 0;
  }
}

.worry__notice-text {
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.84px;
  line-height: 1.2857142857;
}
@media screen and (min-width:768px) {
  .worry__notice-text {
    font-size: 18px;
    letter-spacing: 1.08px;
    line-height: 1;
  }
}
.worry__notice-text:not(:first-of-type) {
  margin-top: 1em;
}

.worry__graph {
  margin-top: 30px;
  margin-left: -30px;
  margin-right: -30px;
}
@media screen and (min-width:768px) {
  .worry__graph {
    margin-top: 40px;
    margin-left: 0;
    margin-right: 0;
  }
}
.worry__graph img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.worry__notice02 {
  margin-top: 30px;
  margin-right: -5px;
  margin-left: -5px;
  text-align: center;
}
@media screen and (min-width:768px) {
  .worry__notice02 {
    max-width: 680px;
    margin-top: 40px;
    margin-right: auto;
    margin-left: auto;
  }
}

.worry__btn-wrap {
  text-align: center;
  margin-top: 60px;
}

/* bg01
--------------------------------------------- */
.bg-wrap01 {
  padding: 40px 0 16px;
  background: linear-gradient(180deg, rgba(246, 232, 213, 0.85) 0%, rgba(253, 230, 182, 0.9) 50%, #FFF3DC 100%);
}
@media screen and (min-width:768px) {
  .bg-wrap01 {
    padding: 80px 0 30px;
  }
}

/* bg02
--------------------------------------------- */
.bg-wrap02 {
  background-image: url(../img/section-bottom-bg-sp.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}
@media screen and (min-width:768px) {
  .bg-wrap02 {
    background-image: url(../img/section-bottom-bg.webp);
  }
}

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

.campaign__inner {
  padding: 0 25px;
}

.campaign__content {
  background-color: #fff;
  padding: 20px 0 10px;
  border-radius: 10px;
  background-image: url(../img/campaign-bg02-sp.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  position: relative;
}
@media screen and (min-width:900px) {
  .campaign__content {
    background-image: url(../img/campaign-bg.png);
  }
}

.campaign__students {
  display: none;
}
@media screen and (min-width:900px) {
  .campaign__students {
    -o-object-fit: cover;
       object-fit: cover;
    position: absolute;
    bottom: 0;
    width: 216px;
    z-index: 2;
  }
}
@media screen and (min-width:1024px) {
  .campaign__students {
    width: 316px;
  }
}
.campaign__students.--left {
  left: 0;
}
.campaign__students.--right {
  right: 0;
}

.campaign__ribbon-title-wrap {
  text-align: center;
  position: relative;
  z-index: 3;
}

.campaign__ribbon-text {
  width: 300px;
  margin-inline: auto;
  position: relative;
}
@media screen and (min-width:768px) {
  .campaign__ribbon-text {
    width: 378px;
  }
}
.campaign__ribbon-text img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.campaign__ribbon-text .text {
  position: absolute;
  width: 100%;
  top: 6px;
  text-align: center;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
}
@media screen and (min-width:768px) {
  .campaign__ribbon-text .text {
    top: 50%;
    transform: translate(-50%, -50%);
    font-size: 27px;
    line-height: 1.1851851852;
  }
}

.campaign__heading {
  margin-top: 10px;
  text-align: center;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.2142857143;
  position: relative;
  z-index: 3;
}
@media screen and (min-width:768px) {
  .campaign__heading {
    margin-top: 15px;
    font-size: 36px;
    line-height: 1.1944444444;
  }
}

.campaign__desc {
  text-align: center;
  margin-top: 5px;
  font-size: 14px;
  line-height: 1.2142857143;
  font-weight: 700;
  position: relative;
  z-index: 3;
}
@media screen and (min-width:768px) {
  .campaign__desc {
    margin-top: 10px;
    font-size: 18px;
    line-height: 1.2222222222;
  }
}

.campaign__sp-student-wrap {
  max-width: 332px;
  margin-inline: auto;
}
@media screen and (min-width:900px) {
  .campaign__sp-student-wrap {
    display: none;
  }
}

.campaign__sp-student {
  margin-top: 15px;
  margin-left: auto;
  width: 178px;
}
@media screen and (min-width:600px) {
  .campaign__sp-student {
    width: 278px;
  }
}
.campaign__sp-student img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.campaign__picture {
  margin: -22px auto 0;
  width: 300px;
  position: relative;
  z-index: 3;
}
@media screen and (min-width:600px) {
  .campaign__picture {
    margin: 0 auto;
  }
}
@media screen and (min-width:768px) {
  .campaign__picture {
    margin: 20px auto 0;
    width: 376px;
  }
}
.campaign__picture img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.campaign__textarea {
  margin: 20px auto 0;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
  z-index: 3;
}

.campaign__term-list {
  margin-top: 5px;
  display: flex;
  flex-direction: column;
}
@media screen and (min-width:768px) {
  .campaign__term-list {
    margin-top: 7px;
  }
}

.campaign__term-title {
  font-size: 12px;
  font-weight: 700;
  line-height: 1.1666666667;
}
@media screen and (min-width:768px) {
  .campaign__term-title {
    font-size: 14px;
    line-height: 1.2142857143;
  }
}

.campaign__term-list-item {
  display: flex;
  align-items: center;
  font-size: 12px;
  line-height: 1.1666666667;
  font-weight: 700;
}
@media screen and (min-width:768px) {
  .campaign__term-list-item {
    font-size: 14px;
    line-height: 1.2142857143;
  }
}
.campaign__term-list-item .mark {
  flex: 0 0 1em;
}
.campaign__term-list-item .text {
  flex: 1 1 auto;
}
.campaign__term-list-item.--align-start {
  align-items: flex-start;
}

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

.voice__content {
  background-color: #fff;
  border-radius: 10px;
  padding: 10px 0 26px;
  background-image: url(../img/voice-bg-sp.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}
@media screen and (min-width:768px) {
  .voice__content {
    background-image: url(../img/voice-bg.png);
  }
}

.voice__inner {
  max-width: 811px;
  padding: 0 10px;
  margin-inline: auto;
}

.voice__heading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
@media screen and (min-width:768px) {
  .voice__heading {
    gap: 16px;
  }
}
.voice__heading .icon {
  flex: 0 0 39px;
  width: 39px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width:768px) {
  .voice__heading .icon {
    flex: 0 0 52px;
    width: 52px;
  }
}
.voice__heading .text {
  font-size: 28px;
  line-height: 1.2142857143;
  font-weight: 700;
}
@media screen and (min-width:768px) {
  .voice__heading .text {
    font-size: 36px;
    line-height: 1.1944444444;
  }
}

.voice__items {
  margin-top: 25px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 25px;
}
@media screen and (min-width:768px) {
  .voice__items {
    margin-top: 40px;
    flex-direction: row;
    justify-content: center;
    gap: 16px;
  }
}
@media screen and (min-width:1024px) {
  .voice__items {
    gap: 56px;
  }
}

.voice__item {
  padding: 91px 10px 10px;
  min-height: 255px;
  max-width: 230px;
  width: 100%;
  background-color: #fff;
  border-radius: 10px;
  border: 2px solid rgba(243, 157, 103, 0.8);
  position: relative;
}
@media screen and (min-width:768px) {
  .voice__item {
    min-height: 286px;
  }
}

.voice__person {
  display: block;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.voice__person.--01 {
  width: 54px;
  top: 19px;
}
.voice__person.--02 {
  width: 50px;
  top: 19px;
}
.voice__person.--03 {
  width: 59px;
  top: 19px;
}
.voice__person img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.voice__person-name-wrap {
  text-align: center;
}

.voice__person-name {
  background-color: #EE6316;
  color: #fff;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  padding: 0 12px;
  min-height: 25px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.1875;
}

.voice__stars-wrap {
  margin-top: 7px;
  text-align: center;
}
@media screen and (min-width:768px) {
  .voice__stars-wrap {
    margin-top: 10px;
  }
}
.voice__stars-wrap img {
  width: 128px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width:768px) {
  .voice__stars-wrap img {
    width: 159px;
  }
}

.voice__textarea {
  margin-top: 10px;
}
@media screen and (min-width:768px) {
  .voice__textarea {
    margin-top: 5px;
  }
}

.voice__text {
  font-size: 14px;
  line-height: 1.2142857143;
  font-weight: 500;
  text-align: center;
}
@media screen and (min-width:1024px) {
  .voice__text {
    font-size: 15px;
    line-height: 1.1875;
  }
}

/* About
--------------------------------------------- */
.about__lead {
  margin-top: 30px;
}

.about__lead-text {
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 1px;
  line-height: 1.35;
}
@media screen and (min-width:768px) {
  .about__lead-text {
    font-size: 27px;
    letter-spacing: 1.35px;
  }
}

.about__lead-sub {
  margin-top: 20px;
  text-align: center;
  font-size: 14px;
  line-height: 1.9285714286;
  font-weight: 700;
  letter-spacing: 0.7px;
}
@media screen and (min-width:768px) {
  .about__lead-sub {
    margin-top: 30px;
    font-size: 18px;
    line-height: 1.5;
    letter-spacing: 0.9px;
  }
}
.about__lead-sub .colored {
  color: #EE6316;
}

.about__items {
  margin-top: 30px;
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 20px;
}
@media screen and (min-width:768px) {
  .about__items {
    grid-template-columns: repeat(2, 1fr);
    -moz-column-gap: 30px;
         column-gap: 30px;
    row-gap: 30px;
  }
}
@media screen and (min-width:900px) {
  .about__items {
    -moz-column-gap: 69px;
         column-gap: 69px;
  }
}
.about__items.--pc {
  display: none;
}
@media screen and (min-width:768px) {
  .about__items.--pc {
    display: grid;
  }
}
.about__items.--pc .pc-wrap {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.about__items.--sp {
  display: grid;
}
@media screen and (min-width:768px) {
  .about__items.--sp {
    display: none;
  }
}

.about__item {
  display: flex;
  gap: 10px;
  border: 1px solid #000;
  background-color: #fff;
}
@media screen and (min-width:768px) {
  .about__item {
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    gap: 20px;
  }
}
.about__item.--center {
  align-items: center;
}
@media screen and (min-width:768px) {
  .about__item.--center .about__item-text {
    margin-top: 0;
  }
}
.about__item.--start {
  align-items: flex-start;
}
.about__item.--first {
  padding: 14px 8.7px 18px 10px;
  background-image: url(../img/graph-paper01-sp.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}
@media screen and (min-width:768px) {
  .about__item.--first {
    padding: 20.88px 10px 19.55px 33.45px;
    background-image: url(../img/graph-paper01.webp);
  }
}
.about__item.--second {
  padding: 21px 22px 22px 10px;
  background-image: url(../img/graph-paper02-sp.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}
@media screen and (min-width:768px) {
  .about__item.--second {
    padding: 30px 31px 30px 29.81px;
    background-image: url(../img/graph-paper02.webp);
  }
}
.about__item.--third {
  padding: 21px 22px 22px 10px;
  background-image: url(../img/graph-paper03-sp.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}
@media screen and (min-width:768px) {
  .about__item.--third {
    padding: 30px 20px 30px 30px;
    background-image: url(../img/graph-paper03.webp);
  }
}
.about__item.--fourth {
  padding: 14px 9px 19px 10px;
  background-image: url(../img/graph-paper04-sp.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}
@media screen and (min-width:768px) {
  .about__item.--fourth {
    padding: 21.89px 29px 30px 31.9px;
    background-image: url(../img/graph-paper04.webp);
  }
}
.about__item.--fifth {
  padding: 14px 8.7px 18px 10px;
  background-image: url(../img/graph-paper05-sp.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}
@media screen and (min-width:768px) {
  .about__item.--fifth {
    padding: 19.88px 12px 20.55px 30.45px;
    background-image: url(../img/graph-paper05.webp);
  }
}

.about__item-icon {
  flex: 0 0 23px;
  width: 23px;
  height: 23px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width:768px) {
  .about__item-icon {
    flex: 0 0 42px;
    width: 42px;
    height: 42px;
  }
}

.about__item-text {
  flex: 1 1 auto;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.9285714286;
  letter-spacing: 0.1px;
}
@media screen and (min-width:768px) {
  .about__item-text {
    font-size: 18px;
    line-height: 1.5;
    letter-spacing: 0.9px;
  }
}

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

.feature__content {
  margin-top: 40px;
}
@media screen and (min-width:768px) {
  .feature__content {
    margin-top: 51px;
  }
}

.feature__items.--sp {
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 20px;
}
@media screen and (min-width:768px) {
  .feature__items.--sp {
    display: none;
  }
}
.feature__items.--pc {
  display: none;
}
@media screen and (min-width:768px) {
  .feature__items.--pc {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    -moz-column-gap: 30px;
         column-gap: 30px;
    row-gap: 30px;
  }
  .feature__items.--pc .pc-wrap {
    display: flex;
    flex-direction: column;
    gap: 30px;
  }
}
@media screen and (min-width:900px) {
  .feature__items.--pc {
    -moz-column-gap: 70px;
         column-gap: 70px;
  }
}

.feature__item {
  background-color: #fff;
  border-radius: 50px;
  padding: 14px 22px 14px 21px;
  border: 1px solid #000;
  display: flex;
  align-items: center;
  gap: 13px;
}
@media screen and (min-width:768px) {
  .feature__item {
    padding: 20px 28px 20px 30px;
  }
}

.feature__item-number {
  flex: 0 0 30px;
  width: 30px;
  height: 26px;
  display: grid;
  place-items: center;
  background-image: url(../img/icon-book-sp.webp);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
}
@media screen and (min-width:768px) {
  .feature__item-number {
    flex: 0 0 40px;
    width: 40px;
    height: 30px;
    font-size: 20px;
    background-image: url(../img/icon-book.webp);
  }
}

.feature__item-text {
  flex: 1 1 auto;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.7px;
  line-height: 1.4285714286;
  letter-spacing: -0.05px;
}
@media screen and (min-width:768px) {
  .feature__item-text {
    font-size: 19px;
    line-height: 1.5;
    letter-spacing: 0.9px;
  }
}

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

.feature__bottom-textarea {
  border-radius: 10px;
  background-color: rgba(242, 139, 73, 0.7);
  padding: 18px 0 19px;
}
@media screen and (min-width:768px) {
  .feature__bottom-textarea {
    padding: 45px 10px 45px;
  }
}

.feature__bottom-text {
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4285714286;
  letter-spacing: 0.1px;
}
@media screen and (min-width:768px) {
  .feature__bottom-text {
    font-size: 27px;
    line-height: 1;
    letter-spacing: 1.35px;
  }
}
.feature__bottom-text:not(:first-of-type) {
  margin-top: 10px;
}

/* FAQ
--------------------------------------------- */
.faq {
  padding: 14px 0 40px;
}
@media screen and (min-width:768px) {
  .faq {
    padding: 40px 0 50px;
  }
}

.faq__wrapper {
  padding: 30px 15px 30px;
  border-radius: 20px;
  background-color: #fff;
}

.faq__heading {
  text-align: center;
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
}
@media screen and (min-width:768px) {
  .faq__heading {
    font-size: 32px;
    line-height: 1.375;
  }
}

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

.faq__list {
  max-width: 700px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 23px;
}

.faq__list-item {
  padding-bottom: 6px;
  border-bottom: 1px solid #3A3A3A;
  position: relative;
}
.faq__list-item:has(.is-open) .faq__icon {
  background-color: #F6F4F4;
}
.faq__list-item:has(.is-open) .faq__icon::after {
  transform: translate(-50%, -50%) rotate(0);
}

.faq__term {
  cursor: pointer;
  display: flex;
  gap: 8px;
  padding-right: 31px;
}

.faq__q {
  flex: 0 0 15px;
  font-size: 15px;
  font-weight: 700;
}

.faq__q-text {
  flex: 1 1 auto;
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: -0.1px;
}
@media screen and (min-width:768px) {
  .faq__q-text {
    font-size: 16px;
  }
}

.faq__desc {
  display: none;
  padding-top: 8px;
}

.faq__desc-inner {
  display: flex;
  align-items: flex-start;
  gap: 7px;
}

.faq__a {
  flex: 0 0 15px;
  font-size: 15px;
  font-weight: 700;
}

.faq__a-text {
  flex: 1 1 auto;
  font-size: 13px;
  font-weight: 500;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
@media screen and (min-width:768px) {
  .faq__a-text {
    font-size: 16px;
    gap: 10px;
  }
}
.faq__a-text .text {
  display: inline-block;
}
.faq__a-text .text.mt {
  margin-top: 8px;
}
@media screen and (min-width:768px) {
  .faq__a-text .text.mt {
    margin-top: 10px;
  }
}
.faq__a-text .text.ml {
  margin-left: 31px;
}

.faq__icon {
  position: absolute;
  right: 0;
  top: -5px;
  display: inline-block;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background-color: #FFF1E4;
  transition: background-color 0.4s ease;
  pointer-events: none;
}
.faq__icon::before, .faq__icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: inline-block;
  width: 16px;
  height: 2px;
  background-color: #3A3A3A;
  transition: transform 0.4s ease, background-color 0.4s ease;
}
.faq__icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

/* CTA
--------------------------------------------- */
.cta {
  padding: 243px 0 40px;
  background-image: url(../img/cta-bg-sp.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}
@media screen and (min-width:768px) {
  .cta {
    padding: 220px 0 60px;
    background-image: url(../img/cta-bg.webp);
  }
}

.cta__btn-wrap {
  text-align: center;
  padding: 0 30px;
}

/* 下層ページ */
.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;
  }
}
/*# sourceMappingURL=style.css.map */