@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 {
  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;
  *font-size: 100%;
  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-size: 16px;
  font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", sans-serif;
  color: #241818;
}
body.is-no-scroll {
  overflow-y: hidden;
}

/* ------------- layout ------------- */
.l-inner {
  margin: 0 auto;
  padding: 0 20px;
}

.l-inner--md {
  max-width: 900px;
}

/* ------------- utility ------------- */
.u-br-sp {
  display: none;
}
@media screen and (max-width: 768px) {
  .u-br-sp {
    display: block;
  }
}

.u-br-pc {
  display: block;
}
@media screen and (max-width: 768px) {
  .u-br-pc {
    display: none;
  }
}

/* ------------- component ------------- */
.cta-button__wrap {
  width: 350px;
  padding: 12px 0 12px 34px;
  background: -webkit-gradient(linear, left top, left bottom, from(#f9b8a0), color-stop(45%, #ec602a), to(#ec6834));
  background: linear-gradient(to bottom, #f9b8a0 0%, #ec602a 45%, #ec6834 100%);
  color: #fff;
  border-radius: 10px;
  border: 2px solid #ec612b;
  font-size: 18px;
  position: relative;
  cursor: pointer;
  -webkit-transition: opacity 0.4s;
  transition: opacity 0.4s;
}
@media (max-width: 400px) {
  .cta-button__wrap {
    width: 300px;
    font-size: 16px;
  }
}
@media screen and (max-width: 360px) {
  .cta-button__wrap {
    width: 270px;
    padding: 12px 0 12px 24px;
  }
}
.cta-button__wrap:hover {
  opacity: 0.8;
}
.cta-button__wrap:hover::after {
  right: 26px;
}
.cta-button__wrap::after {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 34px;
  background-image: url(../img/icon/icon-arrow-right.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  display: inline-block;
  width: 22px;
  height: 18px;
  -webkit-transition: right 0.4s;
  transition: right 0.4s;
}
@media (max-width: 400px) {
  .cta-button__wrap::after {
    width: 18px;
    height: 16px;
    right: 14px;
  }
}
@media screen and (max-width: 360px) {
  .cta-button__wrap::after {
    right: 10px;
  }
}

.cta-button {
  display: inline-block;
  text-align: center;
}
.cta-button span {
  color: #fdfa00;
  font-size: 24px;
}
@media (max-width: 400px) {
  .cta-button span {
    font-size: 20px;
  }
}

/* ------------- header ------------- */
.header {
  height: 45px;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.9);
  z-index: 10;
}

.header__inner {
  max-width: 889px;
  margin: 0 auto;
  padding: 0 20px;
  height: 100%;
  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;
}
@media screen and (max-width: 360px) {
  .header__inner {
    padding: 0 0 0 20px;
  }
}

@media screen and (max-width: 600px) {
  .header__logo {
    margin-left: 8px;
  }
}

.header__logo-link {
  display: block;
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 0.01em;
}
@media screen and (max-width: 360px) {
  .header__logo-link {
    font-size: 14px;
  }
}

.header__left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

/* ナビゲーション */
.header__right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

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

.header__nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.header__nav-item:not(:first-child) {
  margin-left: 48px;
}
@media screen and (max-width: 768px) {
  .header__nav-item:not(:first-child) {
    margin-left: 24px;
  }
}

.header__nav-link {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.01em;
  display: block;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.header__nav-link:hover {
  opacity: 0.8;
}

.header__contact {
  margin-left: 56px;
}
@media screen and (max-width: 768px) {
  .header__contact {
    margin-left: 32px;
  }
}
@media screen and (max-width: 375px) {
  .header__contact {
    margin-left: 0;
  }
}

.contact-btn {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.01em;
  background: -webkit-gradient(linear, left top, left bottom, from(#f9b8a0), color-stop(45%, #ec602a), to(#ec6834));
  background: linear-gradient(to bottom, #f9b8a0 0%, #ec602a 45%, #ec6834 100%);
  width: 140px;
  height: 45px;
  display: grid;
  place-items: center;
  font-size: 14px;
  color: #fff;
  position: relative;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
@media screen and (max-width: 600px) {
  .contact-btn {
    width: 125px;
  }
}
@media screen and (max-width: 360px) {
  .contact-btn {
    width: 115px;
  }
}
.contact-btn:hover {
  opacity: 0.8;
}
.contact-btn::after {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 25px;
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 8px solid #fff;
  border-right: 0;
}
@media screen and (max-width: 768px) {
  .contact-btn::after {
    right: 20px;
  }
}

/* ハンバーガメニュー */
.header__hamburger {
  display: none;
}
@media screen and (max-width: 600px) {
  .header__hamburger {
    display: block;
    width: 15px;
    height: 15px;
    position: relative;
    z-index: 12;
  }
  .header__hamburger.is-open .header__hamburger-line:first-child {
    top: 50%;
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
  }
  .header__hamburger.is-open .header__hamburger-line:nth-child(2) {
    opacity: 0;
  }
  .header__hamburger.is-open .header__hamburger-line:last-child {
    top: 50%;
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
  }
}

.header__hamburger-line {
  display: inline-block;
  width: 100%;
  height: 1px;
  background-color: #241818;
  position: absolute;
  left: 0;
  -webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
  transition: opacity 0.3s, -webkit-transform 0.3s;
  transition: opacity 0.3s, transform 0.3s;
  transition: opacity 0.3s, transform 0.3s, -webkit-transform 0.3s;
}
.header__hamburger-line:first-child {
  top: 0;
}
.header__hamburger-line:nth-child(2) {
  top: 50%;
}
.header__hamburger-line:last-child {
  top: 100%;
}

/* SP版ナビゲーション */
.spNav {
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.spNav.is-open {
  opacity: 1;
  visibility: visible;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: rgba(255, 255, 255, 0.97);
  z-index: 11;
}

.spNav__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: 32px;
}

.spNav__link {
  display: block;
  padding: 8px;
  font-size: 18px;
  font-weight: 600;
}

/* ------------- first view ------------- */
.fv {
  height: 615px;
  background-image: url(../img/fv.webp);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center top;
}
@media (max-width: 500px) {
  .fv {
    display: none;
  }
}
@media (min-width: 1440px) {
  .fv {
    height: 600px;
  }
}
@media (min-width: 1700px) {
  .fv {
    height: 640px;
  }
}
@media (min-width: 1800px) {
  .fv {
    height: 700px;
  }
}
@media (min-width: 1940px) {
  .fv {
    height: 740px;
  }
}

.fv__box {
  position: absolute;
  top: 65px;
  left: 20%;
  max-width: 390px;
}
@media screen and (max-width: 768px) {
  .fv__box {
    left: 15%;
  }
}
@media screen and (max-width: 600px) {
  .fv__box {
    left: 10%;
  }
}
@media screen and (max-width: 540px) {
  .fv__box {
    left: 8%;
  }
}
@media (min-width: 1440px) {
  .fv__box {
    left: 26%;
  }
}
@media (min-width: 1700px) {
  .fv__box {
    left: 33%;
  }
}

.fv__lead-text {
  background-color: #40b74f;
  color: #fff;
  font-size: 18px;
  letter-spacing: 0.01em;
  padding: 2px 10px;
  text-align: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.fv__lead-text-span01 {
  font-size: 28px;
}

.fv__lead-text-span02 {
  font-size: 24px;
  font-weight: 600;
  color: #fdfa00;
}

.fv__main {
  margin-top: 20px;
}

.fv__main-upper-title {
  font-size: 21px;
  color: #fff;
  background-color: #3b3a3e;
  position: relative;
  -webkit-transform: rotate(-5deg);
          transform: rotate(-5deg);
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 8px 12px 4px;
  overflow: hidden;
}
.fv__main-upper-title::after {
  content: "";
  position: absolute;
  top: -180px;
  left: 0;
  width: 30px;
  height: 100%;
  background-color: rgba(255, 231, 2, 0.8);
  -webkit-transition: 0.3s;
  transition: 0.3s;
  -webkit-animation: shine 5s ease-in-out infinite;
          animation: shine 5s ease-in-out infinite;
}
.fv__main-upper-title span {
  color: #fdfa00;
  background-image: radial-gradient(circle at center, #fff 20%, transparent 20%);
  background-position: top right;
  background-repeat: repeat-x;
  background-size: 1em 0.3em;
  padding-top: 0.4em;
}

@-webkit-keyframes shine {
  0% {
    -webkit-transform: scale(0) rotate(45deg);
            transform: scale(0) rotate(45deg);
    opacity: 0;
  }
  80% {
    -webkit-transform: scale(0) rotate(45deg);
            transform: scale(0) rotate(45deg);
    opacity: 0.5;
  }
  81% {
    -webkit-transform: scale(5) rotate(45deg);
            transform: scale(5) rotate(45deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(50) rotate(45deg);
            transform: scale(50) rotate(45deg);
    opacity: 0;
  }
}

@keyframes shine {
  0% {
    -webkit-transform: scale(0) rotate(45deg);
            transform: scale(0) rotate(45deg);
    opacity: 0;
  }
  80% {
    -webkit-transform: scale(0) rotate(45deg);
            transform: scale(0) rotate(45deg);
    opacity: 0.5;
  }
  81% {
    -webkit-transform: scale(5) rotate(45deg);
            transform: scale(5) rotate(45deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(50) rotate(45deg);
            transform: scale(50) rotate(45deg);
    opacity: 0;
  }
}
.fv__main-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2px;
  font-size: 35px;
  letter-spacing: 0.02em;
  font-weight: 600;
}

.fv__main-title-inner {
  background-color: #fff;
  color: #162d4f;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  -webkit-box-shadow: 0 2px #162d4f;
          box-shadow: 0 2px #162d4f;
  padding: 6px 12px;
}

.fv__main-title-colored01,
.fv__main-title-colored02 {
  display: inline-block;
  margin-right: 6px;
}

.fv__main-title-colored01 {
  color: #40b74f;
}

.fv__main-title-colored02 {
  color: #f55925;
}

.fv__features {
  margin-top: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 4px;
}

.fv__feature {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 115px;
          flex: 0 0 115px;
  height: 115px;
  border-radius: 50%;
  background-color: #40b74f;
  color: #fff;
  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;
  border: 3px solid #fff;
  font-size: 19px;
  letter-spacing: 0.01em;
  text-align: center;
}

.fv__photos {
  margin-top: 16px;
}
.fv__photos img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.fv-sp {
  display: none;
}
@media (max-width: 500px) {
  .fv-sp {
    display: block;
  }
}

/* ------------- top cta ------------- */
.top-cta {
  padding: 16px 0 10px;
}

.top-cta__text {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  letter-spacing: 0.01em;
  position: relative;
}
@media screen and (max-width: 375px) {
  .top-cta__text {
    font-size: 14px;
  }
}
.top-cta__text::before, .top-cta__text::after {
  content: "";
  position: absolute;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  display: inline-block;
  width: 22px;
  height: 26px;
}
@media screen and (max-width: 375px) {
  .top-cta__text::before, .top-cta__text::after {
    width: 20px;
    height: 20px;
  }
}
.top-cta__text::before {
  background-image: url(../img/teacher-text-deco-left@2x.png);
  left: -26px;
  top: 0;
}
.top-cta__text::after {
  background-image: url(../img/teacher-text-deco-right@2x.png);
  right: -26px;
  top: 0;
}
.top-cta__text span {
  color: #f55925;
}

.top-cta__button {
  margin: 8px auto 0;
  position: relative;
}

/* ------------- section01 ------------- */
.section01 {
  padding: 36px 0 54px;
}
@media screen and (max-width: 768px) {
  .section01 {
    padding: 48px 0 48px;
  }
}

.section01__heading-img {
  display: block;
  max-width: 115px;
  width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .section01__heading-img {
    max-width: 70px;
  }
}

.section01__heading {
  margin-top: 16px;
  text-align: center;
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  .section01__heading {
    font-size: 20px;
  }
}
@media screen and (max-width: 375px) {
  .section01__heading {
    font-size: 18px;
  }
}
.section01__heading span {
  display: inline-block;
  margin-top: 16px;
  font-size: 30px;
}
@media screen and (max-width: 768px) {
  .section01__heading span {
    margin-top: 8px;
    font-size: 24px;
  }
}
@media screen and (max-width: 375px) {
  .section01__heading span {
    font-size: 22px;
  }
}

.section01__list {
  margin-top: 42px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  -webkit-column-gap: 12px;
     -moz-column-gap: 12px;
          column-gap: 12px;
}
@media screen and (max-width: 768px) {
  .section01__list {
    margin-top: 24px;
    grid-template-columns: repeat(2, 1fr);
    row-gap: 32px;
  }
}
@media screen and (max-width: 600px) {
  .section01__list {
    grid-template-columns: 1fr;
  }
}

.section01__item {
  border-radius: 10px;
  padding: 10px;
}
.section01__item:nth-child(odd) {
  border: 2px solid #eaa700;
  -webkit-box-shadow: 4px 6px #eaa700;
          box-shadow: 4px 6px #eaa700;
}
.section01__item:nth-child(even) {
  border: 2px solid #40b74f;
  -webkit-box-shadow: 4px 6px #40b74f;
          box-shadow: 4px 6px #40b74f;
}

.section01__item-body {
  margin-top: 10px;
}

.section01__item-img {
  text-align: center;
}
.section01__item-img img {
  width: 120px;
  height: 120px;
  aspect-ratio: 1/1;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 768px) {
  .section01__item-img img {
    width: 110px;
    height: 110px;
  }
}

.section01__item-title {
  text-align: center;
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  .section01__item-title {
    font-size: 20px;
  }
}

.section01__item-text {
  margin-top: 14px;
  font-size: 13px;
}
@media screen and (max-width: 768px) {
  .section01__item-text {
    margin-top: 10px;
    font-size: 16px;
  }
}

/* ------------- section02 ------------- */
.section02 {
  padding: 48px 0 58px;
  background-color: #f4f5f0;
  position: relative;
}
.section02::after {
  content: "";
  position: absolute;
  bottom: -60px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background-image: url(../img/green-down-arrow.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  width: 33px;
  height: 100px;
}

.section02__heading {
  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: 16px;
  font-size: 24px;
}
@media screen and (max-width: 768px) {
  .section02__heading {
    font-size: 20px;
  }
}
.section02__heading span {
  display: block;
  font-size: 30px;
}
@media screen and (max-width: 768px) {
  .section02__heading span {
    font-size: 24px;
  }
}
@media screen and (max-width: 375px) {
  .section02__heading span {
    font-size: 22px;
  }
}
@media screen and (max-width: 360px) {
  .section02__heading span {
    font-size: 20px;
  }
}

.section02__img-block {
  max-width: 580px;
  margin: 0 auto;
  padding-top: 154px;
  text-align: center;
  position: relative;
}
@media screen and (max-width: 540px) {
  .section02__img-block {
    padding-top: 400px;
    max-width: 480px;
  }
}

.section02__img {
  width: 198px;
  -o-object-fit: cover;
     object-fit: cover;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 540px) {
  .section02__img {
    width: 154px;
  }
}

.section01-fukidashi01,
.section01-fukidashi02,
.section01-fukidashi03,
.section01-fukidashi04 {
  position: absolute;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-animation: shake 4s infinite;
          animation: shake 4s infinite;
}

@-webkit-keyframes shake {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
  5% {
    -webkit-transform: translate(-5px, 0);
            transform: translate(-5px, 0);
  }
  10% {
    -webkit-transform: translate(5px, 0);
            transform: translate(5px, 0);
  }
  15% {
    -webkit-transform: translate(-5px, 0);
            transform: translate(-5px, 0);
  }
  20% {
    -webkit-transform: translate(5px, 0);
            transform: translate(5px, 0);
  }
  25% {
    -webkit-transform: translate(-5px, 0);
            transform: translate(-5px, 0);
  }
  30% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
}

@keyframes shake {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
  5% {
    -webkit-transform: translate(-5px, 0);
            transform: translate(-5px, 0);
  }
  10% {
    -webkit-transform: translate(5px, 0);
            transform: translate(5px, 0);
  }
  15% {
    -webkit-transform: translate(-5px, 0);
            transform: translate(-5px, 0);
  }
  20% {
    -webkit-transform: translate(5px, 0);
            transform: translate(5px, 0);
  }
  25% {
    -webkit-transform: translate(-5px, 0);
            transform: translate(-5px, 0);
  }
  30% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
}
.section01-fukidashi01 {
  width: 237px;
  left: 68px;
  top: 24px;
}
@media screen and (max-width: 540px) {
  .section01-fukidashi01 {
    width: 210px;
    left: 18px;
    top: 20px;
  }
}

.section01-fukidashi02 {
  width: 221px;
  right: 40px;
  top: 48px;
}
@media screen and (max-width: 540px) {
  .section01-fukidashi02 {
    width: 212px;
    right: 20px;
    top: 112px;
  }
}

.section01-fukidashi03 {
  width: 200px;
  left: 0;
  bottom: 42px;
}
@media screen and (max-width: 540px) {
  .section01-fukidashi03 {
    width: 188px;
    left: 20px;
    bottom: 225px;
  }
}

.section01-fukidashi04 {
  width: 200px;
  right: 0;
  bottom: 32px;
}
@media screen and (max-width: 540px) {
  .section01-fukidashi04 {
    right: 20px;
    bottom: 100px;
  }
}

/* ------------- section03 ------------- */
.section03 {
  padding: 74px 0 8px;
}

.section03__inner {
  max-width: 715px;
}

.section03__heading {
  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;
  font-size: 24px;
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  .section03__heading {
    text-align: center;
  }
}

@media screen and (max-width: 768px) {
  .section03__span-wrap {
    position: relative;
  }
}
.section03__span-wrap::before {
  content: "＼";
  display: inline-block;
  margin-right: 20px;
}
@media screen and (max-width: 768px) {
  .section03__span-wrap::before {
    position: absolute;
    left: -34px;
    bottom: 0;
    margin-right: 0;
  }
}
.section03__span-wrap::after {
  content: "／";
  display: inline-block;
  margin-left: 20px;
}
@media screen and (max-width: 768px) {
  .section03__span-wrap::after {
    position: absolute;
    right: -34px;
    bottom: 0;
    margin-left: 0;
  }
}

.section03__span-bold {
  font-size: 30px;
  color: #40b74f;
}
@media screen and (max-width: 768px) {
  .section03__span-bold {
    display: block;
  }
}

.section03__list {
  margin-top: 42px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media screen and (max-width: 768px) {
  .section03__list {
    grid-template-columns: repeat(2, 1fr);
    place-items: center;
  }
}
@media screen and (max-width: 600px) {
  .section03__list {
    gap: 10px;
  }
}
@media screen and (max-width: 360px) {
  .section03__list {
    grid-template-columns: 1fr;
  }
}

.section03__item {
  width: 214px;
  height: 214px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background-color: #40b74f;
  color: #fff;
  border: 1px solid #fff;
  outline: 2px solid #40b74f;
}
@media screen and (max-width: 600px) {
  .section03__item {
    width: 157px;
    height: 157px;
  }
}

.section03__text {
  font-size: 24px;
  font-weight: 600;
  text-align: center;
}
@media screen and (max-width: 600px) {
  .section03__text {
    font-size: 18px;
  }
}
.section03__text span {
  color: #fdfa00;
}

/* ------------- section04 ------------- */
.section04 {
  padding: 152px 0 0;
  background-color: #fff9da;
  -webkit-clip-path: polygon(0 0, 50% 100px, 100% 0, 100% 100%, 0 100%);
          clip-path: polygon(0 0, 50% 100px, 100% 0, 100% 100%, 0 100%);
}
@media screen and (max-width: 540px) {
  .section04 {
    padding: 100px 0 0;
    -webkit-clip-path: polygon(0 0, 50% 40px, 100% 0, 100% 100%, 0 100%);
            clip-path: polygon(0 0, 50% 40px, 100% 0, 100% 100%, 0 100%);
  }
}

.section04__inner {
  max-width: 520px;
}

.section04__heading {
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .section04__heading {
    font-size: 20px;
  }
}
.section04__heading span.is-large {
  font-size: 30px;
}
@media screen and (max-width: 768px) {
  .section04__heading span.is-large {
    font-size: 24px;
  }
}
@media screen and (max-width: 768px) {
  .section04__heading span.mb16 {
    display: inline-block;
    margin-bottom: 16px;
  }
}
.section04__heading span.is-accent {
  color: #f55925;
}
.section04__heading span.has-underline {
  display: inline-block;
  text-decoration: underline;
  text-decoration-thickness: 3px;
  text-decoration-color: #f55925;
  text-underline-offset: 5px;
}

.section04__list {
  margin-top: 54px;
}

.section04__item {
  background-color: #fff;
  border-radius: 20px;
  padding: 34px 24px 34px 24px;
  min-height: 170px;
  position: relative;
  display: grid;
  place-items: center;
}
@media screen and (max-width: 768px) {
  .section04__item {
    padding: 34px 10px 34px 10px;
  }
}
.section04__item:not(:first-child) {
  margin-top: 100px;
}
.section04__item::before, .section04__item::after {
  content: "";
  position: absolute;
  display: inline-block;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
}
.section04__item.item01::before, .section04__item.item01::after, .section04__item.item02::before, .section04__item.item02::after, .section04__item.item03::before, .section04__item.item03::after {
  position: absolute;
  display: inline-block;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
}
.section04__item.item01::before {
  background-image: url(../img/corn-raddish.png);
  width: 120px;
  height: 90px;
  left: -40px;
  top: -25px;
}
@media screen and (max-width: 768px) {
  .section04__item.item01::before {
    background-image: url(../img/corn-raddish-sp.png);
    width: 86px;
    height: 50px;
    left: -17px;
    top: -20px;
  }
}
.section04__item.item01::after {
  background-image: url(../img/skill-pic01.webp);
  width: 140px;
  height: 110px;
  right: -55px;
  bottom: -40px;
}
@media screen and (max-width: 768px) {
  .section04__item.item01::after {
    width: 80px;
    height: 60px;
    right: -18px;
    bottom: -18px;
  }
}
.section04__item.item02::before {
  background-image: url(../img/icon-man-woman.webp);
  width: 170px;
  height: 100px;
  left: -64px;
  bottom: -35px;
}
@media screen and (max-width: 768px) {
  .section04__item.item02::before {
    width: 100px;
    height: 54px;
    bottom: -18px;
    left: -18px;
  }
}
.section04__item.item02::after {
  background-image: url(../img/icon-phone-hand.webp);
  width: 100px;
  height: 80px;
  right: -35px;
  top: -30px;
}
@media screen and (max-width: 768px) {
  .section04__item.item02::after {
    width: 75px;
    height: 54px;
    right: -10px;
  }
}
.section04__item.item03::before {
  background-image: url(../img/pay-phone.png);
  width: 110px;
  height: 110px;
  left: -50px;
  top: -5px;
}
@media screen and (max-width: 768px) {
  .section04__item.item03::before {
    width: 66px;
    height: 70px;
    left: -12px;
    top: -30px;
  }
}
.section04__item.item03::after {
  background-image: url(../img/pc-balloon.png);
  width: 124px;
  height: 80px;
  right: -45px;
  bottom: -15px;
}
@media screen and (max-width: 768px) {
  .section04__item.item03::after {
    width: 83px;
    height: 50px;
    right: -15px;
    bottom: -24px;
  }
}

.section04__text {
  font-size: 20px;
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  .section04__text {
    font-size: 16px;
  }
}
@media screen and (max-width: 360px) {
  .section04__text {
    font-size: 14px;
  }
}

.section04__sub-text {
  position: absolute;
  top: -10px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background-color: #f55925;
  color: #fff;
  font-size: 18px;
  letter-spacing: 0.01em;
  font-weight: 600;
  border-radius: 14px;
  width: 100px;
  height: 26px;
  line-height: 26px;
  text-align: center;
}
@media screen and (max-width: 360px) {
  .section04__sub-text {
    font-size: 16px;
  }
}

.section04__item-arrow {
  position: absolute;
  background-image: url(../img/dot-down-arrow.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  width: 35px;
  height: 40px;
  top: -76px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.section04__lower-heading {
  margin-top: 56px;
  font-size: 16px;
  letter-spacing: 0.01em;
  text-align: center;
}

.section04__lower-span01 {
  display: block;
  margin-bottom: 10px;
  position: relative;
}
.section04__lower-span01::before {
  content: "＼";
  display: inline-block;
  margin-right: 20px;
}
@media screen and (max-width: 768px) {
  .section04__lower-span01::before {
    margin-right: 10px;
  }
}
.section04__lower-span01::after {
  content: "／";
  display: inline-block;
  margin-left: 20px;
}
@media screen and (max-width: 768px) {
  .section04__lower-span01::after {
    margin-left: 10px;
  }
}

.section04__lower-span02 {
  font-size: 24px;
  font-weight: 600;
  color: #f55925;
  display: inline-block;
  margin-right: 4px;
}
@media screen and (max-width: 768px) {
  .section04__lower-span02 {
    font-size: 20px;
  }
}
.section04__lower-span02 span {
  font-size: 16px;
  color: #241818;
}

/* ------------- section05 ------------- */
.section05 {
  padding: 124px 0 40px;
  position: relative;
}
@media screen and (max-width: 540px) {
  .section05 {
    padding: 54px 0 0;
  }
}
.section05::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100px;
  background-color: #fff9da;
  -webkit-clip-path: polygon(0 0, 100% 0, 50% 100px, 0 0);
          clip-path: polygon(0 0, 100% 0, 50% 100px, 0 0);
}
@media screen and (max-width: 540px) {
  .section05::before {
    height: 50px;
    -webkit-clip-path: polygon(0 0, 100% 0, 50% 50px, 0 0);
            clip-path: polygon(0 0, 100% 0, 50% 50px, 0 0);
  }
}

.section05__inner {
  padding-top: 56px;
}
@media screen and (max-width: 768px) {
  .section05__inner {
    padding-top: 50px;
  }
}

.section05__heading {
  text-align: center;
  font-size: 24px;
}
@media screen and (max-width: 768px) {
  .section05__heading {
    font-size: 20px;
  }
}
@media screen and (max-width: 360px) {
  .section05__heading {
    font-size: 18px;
  }
}

.section05__heading-span01 {
  font-size: 24px;
  color: #fff;
  font-weight: 600;
  background-color: #40b74f;
  padding: 10px 20px;
  display: inline-block;
  margin-bottom: 10px;
}
@media screen and (max-width: 768px) {
  .section05__heading-span01 {
    font-size: 20px;
    margin-bottom: 15px;
  }
}
@media screen and (max-width: 360px) {
  .section05__heading-span01 {
    font-size: 18px;
    margin-bottom: 12px;
  }
}

.section05__heading-span02 {
  font-size: 30px;
  font-weight: 600;
  color: #40b74f;
  display: inline-block;
  text-decoration: underline;
  text-decoration-thickness: 3px;
  text-decoration-color: #40b74f;
  text-underline-offset: 5px;
}
@media screen and (max-width: 768px) {
  .section05__heading-span02 {
    font-size: 24px;
  }
}
@media screen and (max-width: 360px) {
  .section05__heading-span02 {
    font-size: 22px;
  }
}

.section05__grow-img {
  max-width: 600px;
  padding: 0 20px;
  margin: 42px auto 0;
}
@media screen and (max-width: 768px) {
  .section05__grow-img {
    margin: 24px auto 0;
  }
}
.section05__grow-img img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.section05__mid-message-block {
  margin-top: 42px;
  padding: 24px 0;
  text-align: center;
  background-color: #40b74f;
}

.section05__mid-message {
  font-size: 24px;
  color: #fff;
  font-weight: 600;
  line-height: 1.6;
  letter-spacing: 0.01em;
}
@media screen and (max-width: 768px) {
  .section05__mid-message {
    font-size: 20px;
  }
}
@media screen and (max-width: 360px) {
  .section05__mid-message {
    font-size: 18px;
  }
}

.section05__bottom-block {
  padding: 64px 20px 34px;
  max-width: 620px;
  margin: 0 auto;
  background-image: url(../img/pic-operator-woman@2x.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center top;
}
@media screen and (max-width: 768px) {
  .section05__bottom-block {
    padding: 56px 20px 34px;
    background-image: url(../img/sp-operator-woman.png);
  }
}

.section05__bottom-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  letter-spacing: 0.01em;
}
.section05__bottom-item:not(:first-child) {
  margin-top: 14px;
}
.section05__bottom-item img {
  width: 14px;
  height: 14px;
  -o-object-fit: contain;
     object-fit: contain;
}

.section05__text-block {
  margin-top: 32px;
}
@media screen and (max-width: 768px) {
  .section05__text-block {
    margin-top: 26px;
  }
}

.section05__text {
  font-size: 18px;
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  .section05__text {
    font-size: 16px;
  }
}
@media screen and (max-width: 360px) {
  .section05__text {
    font-size: 14px;
  }
}

.section05__button-wrap {
  margin-top: 42px;
}
@media screen and (max-width: 768px) {
  .section05__button-wrap {
    margin-top: 36px;
  }
}

.section05__button {
  margin: 0 auto;
}

/* ------------- section06 ------------- */
.section06 {
  padding: 80px 0 0;
}
@media screen and (max-width: 768px) {
  .section06 {
    padding: 50px 0 0;
  }
}

.section06__inner {
  max-width: 790px;
}

.section06__heading {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  font-size: 30px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .section06__heading {
    font-size: 24px;
  }
}
@media screen and (max-width: 375px) {
  .section06__heading {
    font-size: 22px;
  }
}
@media screen and (max-width: 360px) {
  .section06__heading {
    font-size: 20px;
  }
}
.section06__heading::after {
  content: "";
  position: absolute;
  bottom: -18px;
  left: 0;
  width: 100%;
  height: 18px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}
.section06__heading.heading01::after {
  background-image: url(../img/title-underline-deco.webp);
}
.section06__heading.heading02::after {
  background-image: url(../img/title-underline-deco02.webp);
}

.section06__upper-list {
  margin-top: 64px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  -webkit-column-gap: 42px;
     -moz-column-gap: 42px;
          column-gap: 42px;
  row-gap: 46px;
}
@media screen and (max-width: 768px) {
  .section06__upper-list {
    margin-top: 56px;
    -webkit-column-gap: 24px;
       -moz-column-gap: 24px;
            column-gap: 24px;
    row-gap: 32px;
  }
}
@media (max-width: 700px) {
  .section06__upper-list {
    grid-template-columns: 1fr;
    row-gap: 56px;
  }
}

@media (max-width: 700px) {
  .section06__upper-item.has-margin {
    margin-top: 20px;
  }
}

.section06__upper-img-wrap {
  height: 200px;
}
@media screen and (max-width: 768px) {
  .section06__upper-img-wrap {
    height: auto;
  }
}
.section06__upper-img-wrap img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 20px;
}

.section06__upper-body {
  margin-top: 14px;
  height: 110px;
  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 (max-width: 768px) {
  .section06__upper-body {
    margin-top: 24px;
  }
}
@media screen and (max-width: 375px) {
  .section06__upper-body {
    margin-top: 20px;
  }
}
@media screen and (max-width: 360px) {
  .section06__upper-body {
    margin-top: 16px;
  }
}

.section06__upper-title {
  font-size: 18px;
  font-weight: 600;
  color: #40b74f;
  text-align: center;
}
@media (max-width: 700px) {
  .section06__upper-title {
    font-size: 20px;
    text-align: left;
  }
}
@media screen and (max-width: 360px) {
  .section06__upper-title {
    font-size: 18px;
  }
}

.section06__upper-text {
  margin-top: auto;
  line-height: 1.6;
}
@media (max-width: 700px) {
  .section06__upper-text {
    margin-top: 16px;
  }
}
@media screen and (max-width: 360px) {
  .section06__upper-text {
    font-size: 14px;
  }
}

.section06__upper-br {
  display: none;
}
@media (max-width: 700px) {
  .section06__upper-br {
    display: block;
  }
}

.section06__lower-content {
  margin-top: 100px;
}
@media screen and (max-width: 768px) {
  .section06__lower-content {
    margin-top: 78px;
  }
}

.section06__lower-list {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  -webkit-column-gap: 8px;
     -moz-column-gap: 8px;
          column-gap: 8px;
}
@media screen and (max-width: 768px) {
  .section06__lower-list {
    grid-template-columns: 1fr;
    width: 50%;
    margin: 56px auto 0;
    gap: 46px;
  }
}
@media (max-width: 700px) {
  .section06__lower-list {
    width: 60%;
  }
}
@media screen and (max-width: 600px) {
  .section06__lower-list {
    width: 70%;
  }
}
@media screen and (max-width: 540px) {
  .section06__lower-list {
    width: 75%;
  }
}
@media (max-width: 500px) {
  .section06__lower-list {
    width: 80%;
  }
}
@media (max-width: 440px) {
  .section06__lower-list {
    width: 100%;
  }
}

.section06__lower-img-wrap {
  height: 150px;
}
@media screen and (max-width: 768px) {
  .section06__lower-img-wrap {
    height: 187px;
  }
}
.section06__lower-img-wrap img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 20px;
}

.section06__lower-body {
  margin-top: 10px;
}

.section06__lower-title {
  font-size: 18px;
  line-height: 1.6;
  letter-spacing: 0.075em;
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  .section06__lower-title {
    font-size: 20px;
    line-height: 1.4;
  }
}
@media screen and (max-width: 375px) {
  .section06__lower-title {
    font-size: 18px;
  }
}
@media screen and (max-width: 360px) {
  .section06__lower-title {
    font-size: 16px;
  }
}
.section06__lower-title span {
  color: #40b74f;
}

.section06__lower-text {
  margin-top: 14px;
}

/* ------------- section07 ------------- */
.section07 {
  padding: 130px 0 90px;
  background-color: #f4f5f0;
  position: relative;
}
@media screen and (max-width: 768px) {
  .section07 {
    padding: 100px 0 54px;
  }
}
.section07::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  background-color: #fff;
  width: 100%;
  height: 90px;
  -webkit-clip-path: polygon(0 0, 100% 0, 50% 90px, 0 0);
          clip-path: polygon(0 0, 100% 0, 50% 90px, 0 0);
}
@media screen and (max-width: 540px) {
  .section07::before {
    height: 40px;
    -webkit-clip-path: polygon(0 0, 100% 0, 50% 40px, 0 0);
            clip-path: polygon(0 0, 100% 0, 50% 40px, 0 0);
  }
}

.section07__inner {
  max-width: 750px;
}

.section07__heading {
  text-align: center;
  font-size: 30px;
  font-weight: 600;
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  .section07__heading {
    font-size: 24px;
    line-height: 1.9;
  }
}
@media screen and (max-width: 375px) {
  .section07__heading {
    font-size: 22px;
  }
}
.section07__heading span.has-bg {
  color: #fff;
  background-color: #eaa700;
  padding: 8px;
}
.section07__heading span.has-underline {
  color: #eaa700;
  text-decoration: underline;
  text-decoration-thickness: 3px;
  text-decoration-color: #eaa700;
  text-underline-offset: 5px;
}

.section07__text {
  margin-top: 46px;
  text-align: center;
  font-size: 20px;
  letter-spacing: 0.075em;
}
@media screen and (max-width: 768px) {
  .section07__text {
    font-size: 16px;
    line-height: 1.8;
  }
}
.section07__text span {
  display: inline-block;
  line-height: 1;
  padding: 4px 8px;
  font-weight: 600;
  color: #fff;
  background-color: #eaa700;
}
.section07__text span + span {
  margin-left: 8px;
}

.section07__img-wrap {
  margin-top: 40px;
}
@media screen and (max-width: 768px) {
  .section07__img-wrap {
    margin-top: 28px;
  }
}
.section07__img-wrap img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.section07__notice-wrap {
  margin-top: 10px;
  padding-left: 46px;
}
@media screen and (max-width: 768px) {
  .section07__notice-wrap {
    margin-top: 8px;
    padding-left: 1em;
  }
}

.section07__notice-text {
  font-size: 14px;
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  .section07__notice-text {
    font-size: 11px;
  }
}
.section07__notice-text:first-of-type {
  text-indent: -1em;
}
.section07__notice-text:first-of-type::before {
  content: "※";
}

/* ------------- section08 ------------- */
.section08 {
  padding: 74px 0 64px;
  background-color: #40b74f;
}
@media screen and (max-width: 768px) {
  .section08 {
    padding: 56px 0 50px;
  }
}

.section08__inner {
  max-width: 580px;
}

.section08__heading {
  text-align: center;
  background-color: #fff;
  color: #40b74f;
  font-size: 30px;
  border-radius: 23px;
  letter-spacing: 0.01em;
  position: relative;
}
@media screen and (max-width: 768px) {
  .section08__heading {
    font-size: 18px;
    padding: 12px;
  }
}
@media screen and (max-width: 375px) {
  .section08__heading {
    font-size: 16px;
    padding: 10px;
  }
}
@media screen and (max-width: 360px) {
  .section08__heading {
    padding: 8px;
  }
}
.section08__heading::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -20px;
  display: inline-block;
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 15px solid transparent;
  border-left: 15px solid transparent;
  border-top: 20px solid #fff;
  border-bottom: 0;
}
@media screen and (max-width: 768px) {
  .section08__heading::before {
    bottom: -8px;
    -webkit-transform: translateY(-1px);
            transform: translateY(-1px);
    border-right: 7px solid transparent;
    border-left: 7px solid transparent;
    border-top: 8px solid #fff;
  }
}

.section08__content {
  margin-top: 54px;
}
@media screen and (max-width: 768px) {
  .section08__content {
    margin-top: 28px;
  }
}

.section08__video-wrap {
  aspect-ratio: 560/315;
}
.section08__video-wrap iframe {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.section08__caption {
  margin-top: 30px;
  text-align: center;
  font-size: 20px;
  letter-spacing: 0.01em;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .section08__caption {
    margin-top: 16px;
    font-size: 16px;
  }
}
@media screen and (max-width: 375px) {
  .section08__caption {
    margin-top: 8px;
    font-size: 14px;
  }
}

.section08__box {
  margin-top: 30px;
  background-color: #fff;
  border-radius: 10px;
  padding: 36px 44px 32px;
}
@media screen and (max-width: 768px) {
  .section08__box {
    margin-top: 28px;
    padding: 18px 16px;
  }
}

.section08__result-text {
  font-size: 20px;
  letter-spacing: 0.01em;
}
@media screen and (max-width: 768px) {
  .section08__result-text {
    font-size: 16px;
  }
}
.section08__result-text span {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(65%, transparent), to(#ffe702));
  background: linear-gradient(to bottom, transparent 65%, #ffe702 100%);
}

.section08__result-list {
  margin-top: 34px;
}
@media screen and (max-width: 768px) {
  .section08__result-list {
    margin-top: 14px;
  }
}

.section08__result-item {
  color: #40b74f;
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 0.01em;
}
@media screen and (max-width: 768px) {
  .section08__result-item {
    font-size: 20px;
  }
}
@media screen and (max-width: 375px) {
  .section08__result-item {
    font-size: 18px;
  }
}
@media screen and (max-width: 360px) {
  .section08__result-item {
    font-size: 16px;
  }
}
.section08__result-item:not(:first-child) {
  margin-top: 14px;
}
@media screen and (max-width: 768px) {
  .section08__result-item:not(:first-child) {
    margin-top: 10px;
  }
}

/* ------------- section09 ------------- */
.section09 {
  padding: 100px 0 110px;
}
@media screen and (max-width: 768px) {
  .section09 {
    padding: 64px 0;
  }
}

.section09__inner {
  max-width: 810px;
}

.section09__heading {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  text-align: center;
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 0.01em;
  position: relative;
}
@media screen and (max-width: 768px) {
  .section09__heading {
    font-size: 20px;
  }
}
@media screen and (max-width: 375px) {
  .section09__heading {
    font-size: 18px;
  }
}
.section09__heading::before, .section09__heading::after {
  content: "";
  position: absolute;
  display: inline-block;
  width: 30px;
  height: 40px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
}
@media screen and (max-width: 375px) {
  .section09__heading::before, .section09__heading::after {
    width: 25px;
    height: 35px;
  }
}
.section09__heading::before {
  background-image: url(../img/teacher-text-deco-left@2x.png);
  left: -46px;
  bottom: 3px;
}
@media screen and (max-width: 375px) {
  .section09__heading::before {
    left: -36px;
  }
}
.section09__heading::after {
  background-image: url(../img/teacher-text-deco-right@2x.png);
  right: -46px;
  bottom: 3px;
}
@media screen and (max-width: 375px) {
  .section09__heading::after {
    right: -36px;
  }
}
.section09__heading span {
  font-size: 30px;
}
@media screen and (max-width: 768px) {
  .section09__heading span {
    font-size: 24px;
  }
}
@media screen and (max-width: 375px) {
  .section09__heading span {
    font-size: 22px;
  }
}
.section09__heading span.is-colored {
  color: #f55925;
}

.section09__lead-block {
  margin-top: 34px;
}
@media screen and (max-width: 768px) {
  .section09__lead-block {
    margin-top: 24px;
  }
}

.section09__lead-text {
  text-align: center;
  letter-spacing: 0.01em;
}
@media screen and (max-width: 768px) {
  .section09__lead-text {
    text-align: left;
  }
}

.section09__list {
  margin-top: 60px;
}

.section09__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  position: relative;
}
.section09__item:first-child, .section09__item:last-child {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  gap: 24px;
}
@media screen and (max-width: 768px) {
  .section09__item:first-child, .section09__item:last-child {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    gap: 14px;
  }
}
@media screen and (max-width: 768px) {
  .section09__item:last-child {
    padding-bottom: 30px;
  }
}
.section09__item:not(:first-child) {
  margin-top: 10px;
}
@media screen and (max-width: 768px) {
  .section09__item:not(:first-child) {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    margin-top: 32px;
    gap: 14px;
  }
}

.section09__img-wrap {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 360px;
          flex: 0 0 360px;
  height: 360px;
}
@media screen and (max-width: 768px) {
  .section09__img-wrap {
    -webkit-box-flex: initial;
        -ms-flex: initial;
            flex: initial;
    width: 60%;
    height: auto;
  }
}
@media (max-width: 500px) {
  .section09__img-wrap {
    width: 100%;
  }
}
.section09__img-wrap img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.section09__body {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

.section09__name {
  font-size: 30px;
  color: #f55925;
  letter-spacing: 0.01em;
}
@media screen and (max-width: 768px) {
  .section09__name {
    text-align: center;
    font-size: 24px;
  }
}

.section09__text {
  margin-top: 24px;
  line-height: 1.6;
  letter-spacing: 0.01em;
}
@media screen and (max-width: 768px) {
  .section09__text {
    margin-top: 10px;
    font-size: 14px;
  }
}

.section09__others {
  position: absolute;
  right: 0;
  bottom: 0;
  font-size: 24px;
  letter-spacing: 0.01em;
}
@media screen and (max-width: 768px) {
  .section09__others {
    font-size: 14px;
  }
}

/* ------------- section10 ------------- */
.section10 {
  padding: 120px 0;
  background-color: #fff9da;
}
@media screen and (max-width: 768px) {
  .section10 {
    padding: 64px 0 54px;
  }
}

.section10__inner {
  max-width: 860px;
}

.section10__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
}
@media screen and (max-width: 768px) {
  .section10__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 34px;
  }
}

.section10__item {
  width: calc((100% - 40px) / 2);
  border-radius: 10px;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .section10__item {
    width: 100%;
  }
}

.section10__top-block {
  padding: 30px 0 10px;
}
.section10__top-block.is-left {
  background-color: #40b74f;
}
.section10__top-block.is-right {
  background-color: #eaa700;
}

.section10__top-img {
  width: 200px;
  height: 200px;
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  margin: 0 auto;
}

.section10__top-heading {
  margin-top: 24px;
  text-align: center;
  font-size: 20px;
  color: #fff;
  letter-spacing: 0.01em;
  font-weight: 600;
  line-height: 1.9;
}
@media screen and (max-width: 768px) {
  .section10__top-heading {
    font-size: 18px;
  }
}
@media screen and (max-width: 360px) {
  .section10__top-heading {
    font-size: 16px;
  }
}
.section10__top-heading span {
  background-color: #fff;
  padding: 6px;
}
.section10__top-heading span + span {
  margin-left: 6px;
}
.section10__top-heading.is-left span {
  color: #40b74f;
}
.section10__top-heading.is-right span {
  margin-right: 4px;
  color: #eaa700;
}

.section10__list-item img {
  width: 18px;
  height: 18px;
  -o-object-fit: contain;
     object-fit: contain;
}

.section10__bottom-block {
  padding: 64px 0 36px;
  background-color: #fff;
  position: relative;
}
.section10__bottom-block.is-right::before, .section10__bottom-block.is-left::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 30px;
  -webkit-transform: translateY(-1px);
          transform: translateY(-1px);
  -webkit-clip-path: polygon(0 0, 100% 0, 50% 100%, 0 0);
          clip-path: polygon(0 0, 100% 0, 50% 100%, 0 0);
}
.section10__bottom-block.is-right::before {
  background-color: #eaa700;
}
.section10__bottom-block.is-left::before {
  background-color: #40b74f;
}

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

.section10__list-item {
  max-width: 240px;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 4px;
  border-bottom: 1px solid #cccccc;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 8px;
  font-size: 18px;
  letter-spacing: 0.01em;
  padding-left: 20px;
}
@media screen and (max-width: 375px) {
  .section10__list-item {
    font-size: 16px;
    padding-left: 14px;
  }
}
.section10__list-item:not(:first-child) {
  margin-top: 20px;
}

.section10__bottom-img {
  width: 315px;
  height: 250px;
  margin: 42px auto 0;
}
.section10__bottom-img.pic01 {
  width: 245px;
  height: 250px;
}
@media screen and (max-width: 360px) {
  .section10__bottom-img {
    width: 280px;
    height: 200px;
    margin: 24px auto 0;
  }
}
.section10__bottom-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

/* ------------- section11 ------------- */
.section11 {
  padding: 94px 0 104px;
}
@media screen and (max-width: 768px) {
  .section11 {
    padding: 54px 0 36px;
  }
}

.section11__inner {
  max-width: 890px;
}

.section11__heading {
  font-size: 24px;
  line-height: 1.6;
  text-align: center;
  font-weight: 600;
  letter-spacing: 0.01em;
}
@media screen and (max-width: 768px) {
  .section11__heading {
    font-size: 20px;
  }
}
@media screen and (max-width: 360px) {
  .section11__heading {
    font-size: 18px;
  }
}
.section11__heading span {
  font-size: 30px;
  color: #40b74f;
}
@media screen and (max-width: 768px) {
  .section11__heading span {
    font-size: 24px;
  }
}
@media screen and (max-width: 375px) {
  .section11__heading span {
    font-size: 22px;
  }
}
@media screen and (max-width: 360px) {
  .section11__heading span {
    font-size: 20px;
  }
}

.section11__table01-wrap {
  margin-top: 54px;
}
@media screen and (max-width: 768px) {
  .section11__table01-wrap {
    margin-top: 34px;
  }
}

.section11__bottom-block {
  margin-top: 74px;
}
@media screen and (max-width: 768px) {
  .section11__bottom-block {
    margin-top: 56px;
  }
}

.section11__balloon-heading {
  color: #fff;
  background-color: #fff;
  background-color: #eaa700;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  font-size: 30px;
  letter-spacing: 0.01em;
  font-weight: 600;
  border-radius: 25.5px;
  padding: 8px 30px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .section11__balloon-heading {
    font-size: 24px;
    padding: 8px 20px;
  }
}
@media screen and (max-width: 360px) {
  .section11__balloon-heading {
    font-size: 20px;
  }
}
.section11__balloon-heading::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -13px;
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 10px solid transparent;
  border-left: 10px solid transparent;
  border-top: 14px solid #eaa700;
  border-bottom: 0;
}

.section11__table-list {
  margin-top: 56px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 600px) {
  .section11__table-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 32px;
  }
}

.section11__basic-table-wrap {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 46%;
          flex: 0 0 46%;
}

.section11__option-table-wrap {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 46%;
          flex: 0 0 46%;
}

.section11__bottom-table {
  margin-top: 50px;
}
@media screen and (max-width: 768px) {
  .section11__bottom-table {
    margin-top: 32px;
  }
}

.section11__button-wrap {
  margin-top: 56px;
}
@media screen and (max-width: 768px) {
  .section11__button-wrap {
    margin-top: 36px;
  }
}

.section11__btn {
  margin: 0 auto;
}

/* ------------- section12 ------------- */
.section12 {
  padding: 84px 0 104px;
  background-image: url(../img/bg-field.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}
@media screen and (max-width: 768px) {
  .section12 {
    padding: 64px 0 56px;
  }
}

.section12__inner {
  max-width: 620px;
}

.section12__content {
  padding: 36px 24px;
  background-color: rgba(255, 255, 255, 0.7);
}
@media screen and (max-width: 768px) {
  .section12__content {
    padding: 36px 12px;
  }
}

.section12__heading {
  text-align: center;
  font-size: 30px;
  font-weight: 600;
  line-height: 1.6;
  letter-spacing: 0.01em;
}
@media screen and (max-width: 768px) {
  .section12__heading {
    font-size: 24px;
  }
}

.section12__texts {
  margin-top: 32px;
}
@media screen and (max-width: 768px) {
  .section12__texts {
    margin-top: 40px;
  }
}

.section12__text {
  font-size: 18px;
  letter-spacing: 0.01em;
  line-height: 1.6;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .section12__text {
    font-size: 15px;
  }
}
.section12__text + .section12__text {
  margin-top: 32px;
}
@media screen and (max-width: 768px) {
  .section12__text + .section12__text {
    margin-top: 28px;
  }
}
.section12__text span {
  color: #40b74f;
  font-weight: 600;
}

/* ------------- section13 ------------- */
.section13 {
  padding: 54px 0 56px;
  background-color: #40b74f;
}

.section13__inner {
  max-width: 706px;
}

.section13__heading {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  text-align: center;
  font-size: 30px;
  color: #fff;
  font-weight: 600;
  letter-spacing: 0.01em;
  position: relative;
}
@media (max-width: 650px) {
  .section13__heading {
    font-size: 20px;
    padding: 0 50px;
  }
}
@media screen and (max-width: 360px) {
  .section13__heading {
    font-size: 18px;
  }
}
.section13__heading::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background-image: url(../img/text-deco-lg.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  display: block;
  width: 632px;
  height: 68px;
}
@media (max-width: 650px) {
  .section13__heading::before {
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    width: 320px;
    height: 40px;
    top: initial;
    bottom: 0;
    background-image: url(../img/text-deco-sm.png);
  }
}
@media screen and (max-width: 360px) {
  .section13__heading::before {
    width: 280px;
  }
}
.section13__heading span {
  color: #ffe702;
}

/* フォーム */
.form {
  margin-top: 36px;
}

.form__item {
  padding: 10px 0;
  border-top: 1px solid #fff;
}
.form__item.is-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 768px) {
  .form__item.is-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;
  }
}
.form__item.form__item--checkbox {
  padding: 14px 0;
  border-top: 1px solid #fff;
}
.form__item.form__item--acceptance {
  border-top: none;
}
@media screen and (max-width: 768px) {
  .form__item.form__item--acceptance {
    padding: 0;
  }
}

.form__item-label {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 230px;
          flex: 0 0 230px;
  font-size: 18px;
}
@media screen and (max-width: 768px) {
  .form__item-label {
    -webkit-box-flex: initial;
        -ms-flex: initial;
            flex: initial;
  }
}

.form__submit-wrap {
  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;
  gap: 14px;
  border-top: 1px solid #fff;
}
@media screen and (max-width: 768px) {
  .form__submit-wrap {
    padding-top: 24px;
  }
}
@media (max-width: 360px) {
  .form__submit-wrap {
    -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;
  }
}
.form__submit-wrap .button-wrap {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 173px;
          flex: 0 0 173px;
  height: 30px;
}

.wpcf7-form-control-wrap {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

input[type=text],
input[type=email],
input[type=tel],
textarea {
  background-color: #fff;
  width: 100%;
  border-radius: 2px;
  padding: 8px;
}

input[type=text],
input[type=email],
input[type=tel] {
  height: 30px;
}

textarea {
  height: 165px;
  resize: none;
}

/* チェックボックス */
.form__item.form__item--checkbox .wpcf7-checkbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
  padding-left: 20px;
}
@media screen and (max-width: 768px) {
  .form__item.form__item--checkbox .wpcf7-checkbox {
    padding-left: 0;
  }
}

.wpcf7-list-item {
  margin: 0;
}

.wpcf7-list-item-label {
  font-size: 16px;
  padding-left: 24px;
  position: relative;
  cursor: pointer;
}
.wpcf7-list-item-label::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  display: inline-block;
  width: 16px;
  height: 16px;
  border-radius: 2px;
  background-color: #fff;
}
.wpcf7-list-item-label::after {
  content: none;
  display: none;
}
.wpcf7-list-item-label.is-checked::after {
  content: "";
  position: absolute;
  display: inline-block;
  top: 3px;
  left: 1px;
  width: 13px;
  height: 6px;
  border-left: 2px solid #40b74f;
  border-bottom: 2px solid #40b74f;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

input[type=checkbox] {
  position: absolute;
  opacity: 0;
}
input[type=checkbox]:checked + .wpcf7-list-item-label::after {
  content: "";
  position: absolute;
  display: inline-block;
  top: 3px;
  left: 1px;
  width: 13px;
  height: 6px;
  border-left: 2px solid #40b74f;
  border-bottom: 2px solid #40b74f;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

/* 送信ボタン */
input[type=submit] {
  width: 173px;
  height: 30px;
  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: #fff;
  border-radius: 2px;
  font-size: 14px;
  color: #9d9e9a;
  pointer-events: none;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
input[type=submit].is-checked {
  color: #241818;
  pointer-events: auto;
  cursor: pointer;
}
input[type=submit].is-checked:hover {
  opacity: 0.8;
}

/* 個人情報保護方針 */
.section13__privacy-wrap {
  margin-top: 34px;
  text-align: center;
}

.section13__privacy {
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.section13__privacy:hover {
  opacity: 0.8;
}

/* ------------- footer ------------- */
.footer {
  background-color: #fff9da;
}

.footer__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 26px;
  padding: 14px 20px;
}
@media screen and (max-width: 768px) {
  .footer__inner {
    -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: 4px;
    padding-left: 24px;
  }
}

.footer__company {
  font-size: 14px;
  letter-spacing: 0.075em;
}
@media screen and (max-width: 768px) {
  .footer__company {
    font-size: 12px;
  }
}

.footer__address {
  font-size: 14px;
  letter-spacing: 0.075em;
}
@media screen and (max-width: 768px) {
  .footer__address {
    font-size: 12px;
  }
}

.footer__copyright {
  height: 40px;
  display: grid;
  place-items: center;
  background-color: #3b3a3e;
}

.footer__copyright-text {
  color: #fff;
  font-size: 14px;
  letter-spacing: 0.075em;
}
@media screen and (max-width: 768px) {
  .footer__copyright-text {
    font-size: 10px;
  }
}/*# sourceMappingURL=style.css.map */