@charset "UTF-8";
/* CSSリセット
--------------------------------------------------------------------------------------------------------------------------------------------- */
body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, form, fieldset, input, textarea, p, blockquote, th, td {
  margin: 0;
  padding: 0;
}

ul li {
  list-style: none;
}

fieldset, img {
  border: 0;
}

abbr, acronym {
  border: 0;
}

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

strong {
  font-weight: bold;
}

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

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

.clearfix::after {
  content: "";
  clear: both;
  height: 0;
  display: block;
  visibility: hidden;
}

/* COMMON */
html {
  font-size: 62.5%;
}

html.is_hidden {
  overflow: hidden;
}

body {
  background-color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 2rem;
  font-weight: 600;
  color: #000;
  line-height: 1.75;
}

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

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.fadein {
  opacity: 0;
  -webkit-transition-duration: 1s;
          transition-duration: 1s;
}
.fadein.anistart {
  opacity: 1;
}

.fadeinUp {
  opacity: 0;
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
  -webkit-transition-duration: 1s;
          transition-duration: 1s;
}
.fadeinUp.anistart {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  opacity: 1;
}

.en_text {
  font-family: "Be Vietnam Pro", "Noto Sans JP", sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
}

img {
  max-width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

figure {
  margin: auto;
}

.is_block {
  display: block;
}

.is_inline_block {
  display: inline-block;
}

.is_pc_block {
  display: block;
}

.is_sp_block {
  display: none;
}

@media screen and (min-width: 767px) {
  .is_pc_none {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .is_pc_block {
    display: none;
  }
  .is_sp_block {
    display: block;
  }
  .is_sp_none {
    display: none;
  }
}
.color_yellow {
  color: #fff4bc;
}

.color_orange {
  color: #ff8f5d;
}

.bg_section {
  background: url("../images/section_bg.png") top center/100% repeat-y;
}

.section_inner {
  padding: 0 9.73%;
}

@media screen and (max-width: 768px) {
  .section_inner {
    padding: 0 2.66%;
  }
}
.blue_section {
  padding: 90px 0 120px;
  background-color: #3ebddf;
  color: #fff;
}

.green_section {
  padding: 90px 0 120px;
  background-color: #58b75a;
  color: #fff;
}

.orange_section {
  padding: 90px 0 120px;
  background-color: #FF8F5C;
  color: #fff;
}

@media screen and (max-width: 768px) {
  .blue_section {
    padding: 60px 0 80px;
  }
  .green_section {
    padding: 60px 0 80px;
  }
  .orange_section {
    padding: 60px 0 80px;
  }
}
.copyright {
  margin-top: 50px;
  font-size: 14px;
  font-weight: 300;
  text-align: center;
  letter-spacing: 0.05em;
}

.en_title {
  margin-bottom: 16px;
  font-family: "Be Vietnam Pro", "Noto Sans JP", sans-serif;
  font-size: 2rem;
  font-weight: 300;
  font-style: italic;
  line-height: 1.5;
  letter-spacing: 0.05em;
  text-align: center;
}

.headline {
  margin-bottom: 60px;
  font-size: 4.2rem;
  font-weight: 700;
  line-height: 1.19;
  letter-spacing: 0.05em;
  text-align: center;
}
.headline .stripe_inner {
  position: relative;
  display: inline-block;
  padding: 0 146px;
}
.headline .stripe_inner::before, .headline .stripe_inner::after {
  content: "";
  position: absolute;
  top: 0.19em;
  width: 116px;
  aspect-ratio: 1/0.316;
  background: url(../images/icon-stripe.svg) center/contain no-repeat;
}
.headline .stripe_inner::before {
  left: 0;
}
.headline .stripe_inner::after {
  right: 0;
}

@media screen and (max-width: 768px) {
  .en_title {
    margin-bottom: 12px;
    font-size: 1.6rem;
  }
  .headline {
    margin-bottom: 30px;
    font-size: min(5.33vw, 2.4rem);
  }
  .headline .stripe_inner {
    padding: 0 3.75em;
  }
  .headline .stripe_inner::before, .headline .stripe_inner::after {
    top: 0.125em;
    width: 3.33em;
  }
}
.square_btn {
  position: relative;
  display: block;
  width: 100%;
  padding: 20px 70px 20px 38px;
  background-color: #fff;
  border: solid 1px #a6afd6;
  border-radius: 10px;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.25;
  color: #000;
}
.square_btn.blue::after {
  background-color: #3ebddf;
}
.square_btn.blue:hover {
  background-color: #3ebddf;
}
.square_btn.blue:hover::after {
  background-image: url(../images/icon_arrow_blue.svg);
  background-color: #fff;
}
.square_btn.green::after {
  background-color: #58b75a;
}
.square_btn.green:hover {
  background-color: #58b75a;
}
.square_btn.green:hover::after {
  background-image: url(../images/icon_arrow_green.svg);
  background-color: #fff;
}
.square_btn.orange::after {
  background-color: #FF8F5C;
}
.square_btn.orange:hover {
  background-color: #FF8F5C;
}
.square_btn.orange:hover::after {
  background-image: url(../images/icon_arrow_orange.svg);
  background-color: #fff;
}
.square_btn:hover {
  border-color: #fff;
  color: #fff;
}
.square_btn:hover::after {
  background-color: #fff;
}
.square_btn::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 30px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 38px;
  height: 38px;
  background: url(../images/icon_arrow_white.svg) center/14px no-repeat;
  background-color: #292f4a;
  border-radius: 50%;
}
.square_btn:not(:first-child) {
  margin-top: 50px;
}

@media screen and (max-width: 768px) {
  .square_btn {
    padding: 20px 54px 20px 20px;
    font-size: 2rem;
  }
  .square_btn::after {
    right: 10px;
  }
  .square_btn:not(:first-child) {
    margin-top: 30px;
  }
}
/*menu*/
button,
input[type=submit],
input[type=button] {
  height: auto;
  -webkit-appearance: button;
     -moz-appearance: button;
          appearance: button;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background: transparent;
  border: none;
  border-radius: 0;
  color: inherit;
  cursor: pointer;
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
  white-space: normal;
}

button::-webkit-search-decoration,
input[type=submit]::-webkit-search-decoration,
input[type=button]::-webkit-search-decoration {
  display: none;
}

button:focus,
input[type=submit]:focus,
input[type=button]:focus {
  outline-offset: -2px;
  outline: none;
}

#menu_button {
  position: fixed;
  top: 0;
  right: 0;
  width: 68px;
  height: 68px;
  background-color: #FF8F5C;
  border-radius: 0 0 0 10px;
  z-index: 999;
  cursor: pointer;
}
#menu_button:hover {
  background-color: #3ebde0;
}
#menu_button.is_active .menu__line.menu__top {
  -webkit-transform: rotate(35deg);
          transform: rotate(35deg);
  margin-top: 12px;
}
#menu_button.is_active .menu__line.menu__center {
  opacity: 0;
}
#menu_button.is_active .menu__line.menu__bottom {
  -webkit-transform: rotate(-35deg);
          transform: rotate(-35deg);
  margin-top: 12px;
}
#menu_button .menu__line {
  display: block;
  position: absolute;
  top: 22px;
  left: 0;
  right: 0;
  width: 100%;
  max-width: 32px;
  height: 1px;
  margin: 0 auto;
  background-color: #fff;
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
}
#menu_button .menu__line.menu__center {
  margin-top: 9px;
}
#menu_button .menu__line.menu__bottom {
  margin-top: 18px;
}

.header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  padding: 20px min(15.62%, 145px) 10px 4.24%;
  z-index: 99;
  color: #292f4a;
}

.header_logo {
  display: block;
  margin-right: 2.66em;
  font-size: min(1.3vw, 15px);
  font-weight: 600;
  color: #292f4a;
  line-height: 1.33;
  letter-spacing: 0.1em;
}
.header_logo a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.header_logo img {
  max-width: 6.66em;
  width: 100%;
  height: auto;
  margin-right: 1.06em;
}
.header_logo .sub_text {
  font-size: 0.86em;
}

#gnav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 50px 0;
  background-color: #fff;
  background-image: url("../images/menuleft.svg"), url("../images/menuright.svg");
  background-position: 0%, 100%;
  background-repeat: no-repeat, no-repeat;
  background-size: contain, contain;
  font-size: 1.4rem;
  font-weight: 700;
  color: #333;
  visibility: hidden;
  opacity: 0;
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
  z-index: -1;
  line-height: 20px;
}

#gnav[aria-hidden=false] {
  visibility: visible;
  opacity: 1;
  z-index: 1;
}

.gnav_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
}

.div-block {
  background-color: #f18f43;
  color: #fff;
  padding: 10px 30px;
}

.div-block-2 {
  grid-column-gap: 35px;
  grid-row-gap: 35px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
  width: 300px;
  margin: 0 auto;
  font-size: 20px;
  text-align: center;
}

.div-block-3 {
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: #f18f43;
  text-align: center;
}

.text-block {
  border-bottom: 1px solid #f18f43;
  padding-bottom: 15px;
  font-weight: 700;
}

.nav_footer {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.nav_contact_wrapper {
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 10px;
  font-weight: 700;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.text-block-2 {
  color: #000;
  font-size: 10px;
  font-weight: 400;
}

.text-block-3 {
  color: #000;
}

@media screen and (max-width: 768px) {
  #menu_button {
    width: 64px;
    height: 64px;
  }
  #menu_button .menu__line {
    top: 20px;
  }
  #gnav {
    background-repeat: repeat-y, repeat-y;
    background-size: 40px, 40px;
    padding-top: 90px;
  }
  .header {
    min-height: 80px;
    padding: 10px 70px 6px 4.1%;
  }
  .header_logo {
    margin: 0;
    font-size: 13px;
  }
  .header_logo img {
    max-width: 5.23em;
    margin-right: 0.769em;
  }
  .header_logo .sub_text {
    font-size: 0.846em;
  }
  .div-block-2 {
    grid-column-gap: 31px;
    grid-row-gap: 31px;
    width: 235px;
    font-size: 16px;
  }
  .div-block-3 {
    width: 235px;
    margin-top: 30px;
  }
  .text-block {
    font-size: 11px;
  }
}
.hero_section {
  position: relative;
  padding-top: 125px;
  z-index: 2;
}
.hero_section::before {
  content: "";
  position: absolute;
  top: 125px;
  left: 0;
  right: 0;
  bottom: -140px;
  width: 100%;
  background: url(../images/hero_bg.png) center bottom/100% no-repeat;
  z-index: -1;
  pointer-events: none;
}

.hero_inner {
  padding: 26px 16.03% 100px;
}

.hero_headline img {
  display: block;
  width: 100%;
}

@media screen and (max-width: 768px) {
  .hero_section {
    padding-top: 80px;
  }
  .hero_section::before {
    top: 0;
    bottom: -50px;
  }
  .hero_inner {
    padding: 10px 2.66% 60px;
  }
}
.about_flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.about_flex .en_title {
  text-align: left;
}
.about_flex .headline {
  text-align: left;
}
.about_flex .img_block {
  width: 44.09%;
  margin: 0 0 0 5.81%;
}
.about_flex .text_block {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.about_flex .text_group {
  line-height: 2;
}

@media screen and (max-width: 768px) {
  .about_flex {
    display: block;
  }
  .about_flex .en_title {
    text-align: left;
  }
  .about_flex .headline {
    text-align: left;
  }
  .about_flex .img_block {
    width: 100%;
    margin: 30px 0 0;
  }
}
.features_wrap:not(:first-child) {
  margin-top: 120px;
}

.features_headline {
  margin-bottom: 36px;
  font-size: 3.6rem;
  font-weight: 700;
  line-height: 1.11;
  text-align: center;
}
.features_headline .star_inner {
  display: inline-block;
  position: relative;
  padding: 0 64px;
}
.features_headline .star_inner::before, .features_headline .star_inner::after {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 48px;
  aspect-ratio: 1/1;
  background: url(../images/icon-star.svg) center/contain no-repeat;
}
.features_headline .star_inner::before {
  left: 0;
}
.features_headline .star_inner::after {
  right: 0;
}

.features_grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0 0 -24px -2.22%;
}

.features_item {
  width: 31.11%;
  margin: 0 0 24px 2.22%;
  padding: 20px 2.66% 36px;
  background-color: #fff;
  border-radius: 20px;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.25;
  color: #000;
}
.features_item .img_block {
  max-width: 180px;
  margin: 0 auto 20px;
}
.features_item .img_block img {
  display: block;
  width: 100%;
}
.features_item .title {
  margin-bottom: 20px;
  font-size: 1.8rem;
  font-weight: 700;
  text-align: center;
  color: #3ebddf;
}

@media screen and (max-width: 768px) {
  .features_wrap:not(:first-child) {
    margin-top: 80px;
  }
  .features_headline {
    margin-bottom: 20px;
    font-size: 2.4rem;
  }
  .features_grid {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 0 0 -24px 0;
  }
  .features_item {
    width: 100%;
    margin: 0 0 24px 0;
    padding: 24px 6.76%;
  }
  .features_item .title {
    margin-bottom: 16px;
  }
}
.movie_wrap:not(:first-child) {
  margin-top: 100px;
}

.movie_box {
  width: 81.81%;
  aspect-ratio: 1/0.562;
  margin: 0 auto;
}
.movie_box iframe {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

@media screen and (max-width: 768px) {
  .movie_wrap:not(:first-child) {
    margin-top: 80px;
  }
  .movie_box {
    width: 100%;
  }
}
.tele-education_wrap {
  padding: 50px 4.54% 60px;
  background-color: #fff;
  border-radius: 20px;
  color: #000;
  line-height: 2;
  text-align: center;
}

.tele-education_img {
  width: 90%;
  margin: 0 auto;
}
.tele-education_img:not(:first-child) {
  margin-top: 46px;
}
.tele-education_img img {
  display: block;
  width: 100%;
}

@media screen and (max-width: 768px) {
  .tele-education_wrap {
    padding: 24px 5.63%;
    text-align: left;
  }
  .tele-education_img {
    width: 100%;
  }
  .tele-education_img:not(:first-child) {
    margin-top: 30px;
  }
}
.service_content:not(:first-child) {
  margin-top: 140px;
}

.service_flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.service_flex .text_block {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.service_flex .img_block {
  position: sticky;
  top: 70px;
  width: 50%;
  margin: 0 0 0 5.63%;
}
.service_flex .img_block img {
  display: block;
  width: 100%;
}

.service_headline {
  margin-bottom: 54px;
  font-size: 3.6rem;
  font-weight: 700;
  line-height: 1.11;
}
.service_headline small {
  font-size: 0.66em;
}

.service_school_box {
  padding: 40px 6.14%;
  background-color: #fff;
  border-radius: 20px;
  color: #000;
}
.service_school_box:not(:last-child) {
  margin-bottom: 34px;
}
.service_school_box .title {
  margin-bottom: 30px;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.33;
  color: #58b75a;
}
.service_school_box em {
  font-size: 1.2em;
  font-weight: 700;
}

.service_about_box {
  padding: 40px 6.14%;
  border: solid 3px #fff;
  border-radius: 20px;
}
.service_about_box:not(:last-child) {
  margin-bottom: 34px;
}
.service_about_box .title {
  margin-bottom: 30px;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.33;
}
.service_about_box em {
  font-size: 1.2em;
  font-weight: 700;
}

@media screen and (max-width: 768px) {
  .service_content:not(:first-child) {
    margin-top: 80px;
  }
  .service_flex {
    position: static;
    top: auto;
    display: block;
  }
  .service_flex .img_block {
    width: 100%;
    margin: 30px 0 0;
  }
  .service_headline {
    margin-bottom: 30px;
    font-size: 2.4rem;
    text-align: center;
  }
  .service_school_box {
    padding: 24px 5.63%;
  }
  .service_school_box:not(:last-child) {
    margin-bottom: 30px;
  }
  .service_school_box .title {
    margin-bottom: 20px;
    font-size: 2rem;
  }
  .service_about_box {
    padding: 24px 5.63%;
    border-width: 2px;
  }
  .service_about_box:not(:last-child) {
    margin-bottom: 30px;
  }
  .service_about_box .title {
    margin-bottom: 20px;
    font-size: 2rem;
  }
}
.sop_wrap {
  padding: 50px 4.54%;
  background-color: #fff;
  border-radius: 20px;
  color: #000;
  line-height: 2;
  text-align: center;
}
.sop_wrap > *:not(:last-child) {
  margin-bottom: 1.5em;
}

@media screen and (max-width: 768px) {
  .sop_wrap {
    padding: 24px 5.63%;
    text-align: left;
  }
}
.sop_content:not(:first-child) {
  margin-top: 90px;
}

.sop_headline {
  font-size: 3.6rem;
  font-weight: 700;
  text-align: center;
  line-height: 1.11;
}

.sop_note_text {
  font-size: 2.4rem;
  font-weight: 600;
  text-align: center;
  line-height: 1.67;
}
.sop_note_text:not(:first-child) {
  margin-top: 10px;
}

.sop_column {
  position: relative;
  padding: 5rem 10px 20px;
  background-color: #fff;
  border-radius: 30px;
  font-size: 1.6rem;
  text-align: center;
  color: #000;
}
.sop_column.sop1_column .sop_number {
  background-color: #ffc18d;
  color: #000;
}
.sop_column.sop2_column .sop_number {
  background-color: #ffc18d;
  color: #000;
}
.sop_column .sop_number {
  display: inline-block;
  position: absolute;
  bottom: 100%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  margin-bottom: -0.9em;
  padding: 0.4em 0.8em 0.25em;
  background-color: #fddb79;
  border-radius: 10px;
  font-family: "Be Vietnam Pro", "Noto Sans JP", sans-serif;
  font-size: 2.5rem;
  font-weight: 600;
  line-height: 1.11;
  letter-spacing: 0.05em;
  color: #292f4a;
  text-align: center;
}
.sop_column .img_block {
  width: 82.35%;
  margin: 0 auto;
}

.sop_column_title {
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.27;
}
.sop_column_title small {
  font-size: 0.81em;
}

.border_btn {
  position: relative;
  display: block;
  width: 100%;
  padding: 16px 36px;
  background-color: #fff;
  border: solid 1px #292f4a;
  border-radius: 3em;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.5;
  color: #000;
  text-align: center;
}
.border_btn.blue {
  border-color: #3ebddf;
}
.border_btn.blue::after {
  background-image: url(../images/icon_long_arrow_blue.svg);
}
.border_btn.blue:hover {
  background-color: #3ebddf;
}
.border_btn.blue:hover::after {
  background-image: url(../images/icon_long_arrow_white.svg);
}
.border_btn.green {
  border-color: #58b75a;
}
.border_btn.green::after {
  background-image: url(../images/icon_long_arrow_green.svg);
}
.border_btn.green:hover {
  background-color: #58b75a;
}
.border_btn.green:hover::after {
  background-image: url(../images/icon_long_arrow_white.svg);
}
.border_btn.orange {
  border-color: #ff8f5c;
}
.border_btn.orange::after {
  background-image: url(../images/icon_long_arrow_orange.svg);
}
.border_btn.orange:hover {
  background-color: #ff8f5c;
}
.border_btn.orange:hover::after {
  background-image: url(../images/icon_long_arrow_white.svg);
}
.border_btn:hover {
  background-color: #292f4a;
  color: #fff;
}
.border_btn:hover::after {
  background-image: url(../images/icon_long_arrow_white.svg);
}
.border_btn::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 12px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 19px;
  height: 4px;
  background: url(../images/icon_long_arrow.svg) center/contain no-repeat;
}

.sop_grid01 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.sop_grid01:not(:first-child) {
  margin-top: 60px;
}
.sop_grid01 .sop_column {
  width: 46.81%;
  padding: 7.2rem 3.45% 34px;
  text-align: center;
}
.sop_grid01 .sop_column .sop_number {
  font-size: 3.4rem;
}
.sop_grid01 .sop_column .sop_column_title {
  margin-bottom: 20px;
  font-size: 2.4rem;
}
.sop_grid01 .sop_column .img_block {
  max-width: 220px;
  width: 100%;
  margin: 0 auto 14px;
}
.sop_grid01 .sop_column .detail_items {
  display: inline-block;
}
.sop_grid01 .sop_column .detail_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  font-size: 1.6rem;
  font-weight: 600;
  text-align: left;
}
.sop_grid01 .sop_column .detail_item:not(:last-child) {
  margin-bottom: 6px;
}
.sop_grid01 .sop_column .detail_item > dt {
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
  width: 6.67em;
  margin-right: 10px;
  padding: 4px;
  background-color: #ff8f5c;
  border-radius: 10px;
  font-size: 1.4rem;
  font-weight: 700;
  text-align: center;
  color: #fff;
}
.sop_grid01 .border_btn {
  margin-top: 30px;
}

.sop_grid02 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0 0 -28px -2.36%;
}
.sop_grid02:not(:first-child) {
  margin-top: 40px;
}
.sop_grid02 .sop_column {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 22.63%;
  margin: 0 0 28px 2.36%;
}
.sop_grid02 .sop_column .sop_column_title {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  margin-bottom: 2px;
}

@media screen and (max-width: 768px) {
  .sop_content:not(:first-child) {
    margin-top: 80px;
  }
  .sop_headline {
    font-size: 2.4rem;
  }
  .sop_note_text {
    font-size: 1.6rem;
  }
  .sop_column {
    padding: 3rem 10px 10px;
  }
  .sop_column .sop_number {
    padding: 0.4em 0.8em 0.25em;
    font-size: 1.8rem;
  }
  .sop_column .img_block {
    width: 80%;
  }
  .sop_column_title {
    font-size: min(4.2vw, 1.6rem);
  }
  .sop_grid01 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 0 0 -6rem;
  }
  .sop_grid01:not(:first-child) {
    margin-top: 60px;
  }
  .sop_grid01 .sop_column {
    width: 100%;
    margin: 0 0 6rem;
    padding: 5rem 5.63% 24px;
  }
  .sop_grid01 .sop_column .sop_number {
    font-size: 3rem;
  }
  .sop_grid01 .sop_column .sop_column_title {
    margin-bottom: 20px;
    font-size: 2rem;
  }
  .sop_grid02 {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin: 0 0 -3rem;
  }
  .sop_grid02:not(:first-child) {
    margin-top: 40px;
  }
  .sop_grid02 .sop_column {
    width: 47.67%;
    aspect-ratio: 1/1;
    margin: 0 0 3rem;
  }
}
.sop_method_wrap:not(:first-child) {
  margin-top: 90px;
}

.sop_method_headline {
  margin-bottom: 60px;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.67;
  text-align: center;
}

.sop_method_content {
  position: relative;
  padding: 4rem 4.54% 40px;
  background-color: #fff;
  border-radius: 30px;
  font-size: 1.6rem;
  line-height: 1.5;
  color: #000;
}
.sop_method_content:not(:last-child) {
  margin-bottom: 80px;
}
.sop_method_content .sop_method_numbers {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  position: absolute;
  bottom: 100%;
  left: 4%;
  right: 4%;
  margin: -8px 0 -2rem -8px;
}
.sop_method_content .sop_number {
  display: inline-block;
  margin: 8px 0 0 8px;
  padding: 0.4em 0.6em 0.25em;
  background-color: #fddb79;
  border-radius: 10px;
  font-family: "Be Vietnam Pro", "Noto Sans JP", sans-serif;
  font-size: 2.3rem;
  font-weight: 600;
  line-height: 1.11;
  letter-spacing: 0.05em;
  color: #000;
  text-align: center;
}
.sop_method_content .sop_number.sop01 {
  background-color: #ffc18d;
}
.sop_method_content .sop_number.sop02 {
  background-color: #ffa780;
}
.sop_method_content .detail_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.sop_method_content .detail_item:not(:last-child) {
  margin-bottom: 6px;
}
.sop_method_content .detail_item > dt {
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
  width: 6.67em;
  margin-right: 10px;
  padding: 4px;
  background-color: #000;
  border-radius: 10px;
  font-size: 1.4rem;
  font-weight: 700;
  text-align: center;
  color: #fff;
}
.sop_method_content .detail_item > dd {
  padding-top: 3px;
}
.sop_method_content .detail_item > dd > *:not(:last-child) {
  margin-bottom: 0.5em;
}

.sop_method_title {
  margin-bottom: 20px;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.02em;
}

@media screen and (max-width: 768px) {
  .sop_method_wrap:not(:first-child) {
    margin-top: 80px;
  }
  .sop_method_headline {
    margin-bottom: 50px;
    font-size: 2rem;
  }
  .sop_method_content {
    padding: 3rem 5.63% 24px;
  }
  .sop_method_content:not(:last-child) {
    margin-bottom: 60px;
  }
  .sop_method_content .sop_method_numbers {
    left: 5%;
    right: 5%;
    margin: -2px 0 -1.6rem -2px;
  }
  .sop_method_content .sop_number {
    margin: 2px 0 0 2px;
    font-size: 1.8rem;
  }
  .sop_method_title {
    font-size: 1.8rem;
  }
}
.voice_gird {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0 0 -24px -2.22%;
}

.voice_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 31.11%;
  margin: 0 0 24px 2.22%;
  padding: 30px 1.95% 38px;
  background-color: #fff;
  border-radius: 20px;
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1.44;
  color: #000;
}
.voice_item .voice_text {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  padding: 20px 16px;
  margin-bottom: 26px;
  border: solid 3px #3ebddf;
}
.voice_item .voice_text::after {
  content: "";
  position: absolute;
  top: 100%;
  right: 28%;
  width: 90%;
  max-width: 35px;
  aspect-ratio: 1/0.88;
  margin-top: -1px;
  background: url(../images/voice_bottom.svg) top center/contain no-repeat #fff;
  pointer-events: none;
}
.voice_item .voice_img {
  max-width: 205px;
  width: 100%;
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  .voice_gird {
    margin: 0 0 -24px;
  }
  .voice_item {
    display: block;
    width: 100%;
    margin: 0 0 24px;
    padding: 24px 5.63%;
    font-size: 1.6rem;
  }
  .voice_item .voice_text {
    padding: 16px 10px;
  }
  .voice_item .voice_img {
    max-width: 180px;
  }
}
.official_section {
  position: relative;
  padding: 90px 90px 30px;
  z-index: 1;
}
.official_section::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  width: 68px;
  background: url(../images/official_bg.png) top left/100% repeat-y;
  z-index: -1;
  pointer-events: none;
}
.official_section .section_inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0;
}

.official_headline {
  font-size: 4.2rem;
  font-weight: 700;
  line-height: 1.19;
  letter-spacing: 0.02em;
}
.official_headline .small_text {
  font-size: 0.857em;
}

.official_flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
.official_flex .text_block {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.official_flex .img_block {
  width: 29.22%;
  margin: 0 1.77% 0 0;
}
.official_flex .img_block img {
  display: block;
  width: 100%;
}

.official_btn {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  min-height: 3.73em;
  padding: 14px 94px 14px 7.53em;
  background-color: #fff;
  border-radius: 10px;
  -webkit-box-shadow: 10px 10px 0 rgba(0, 0, 0, 0.45);
          box-shadow: 10px 10px 0 rgba(0, 0, 0, 0.45);
  font-size: 30px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.05em;
  color: #000;
}
.official_btn:not(:first-child) {
  margin-top: 50px;
}
.official_btn:hover {
  -webkit-transform: translate(10px, 10px);
          transform: translate(10px, 10px);
  -webkit-box-shadow: none;
          box-shadow: none;
}
.official_btn::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 40px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background: url(../images/icon_arrow_white.svg) center/20px no-repeat;
  background-color: #58b75a;
  border-radius: 50%;
}
.official_btn .official_btn_sub_text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-line-pack: center;
      align-content: center;
  position: absolute;
  top: 50%;
  left: 38px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 8.22em;
  aspect-ratio: 1/1;
  background-color: #fff4bc;
  border-radius: 50%;
  font-size: 0.6em;
  color: #58b75a;
  line-height: 1.26;
  text-align: center;
}
.official_btn .official_btn_sub_text .small_text {
  font-size: 0.77em;
}

@media screen and (max-width: 768px) {
  .official_section {
    padding: 60px 0 30px;
  }
  .official_section::before {
    width: 50px;
  }
  .official_section .section_inner {
    max-width: none;
    padding: 0 2.66%;
  }
  .official_headline {
    font-size: 2.4rem;
  }
  .official_flex {
    display: block;
    max-width: 355px;
    margin: 0 auto;
  }
  .official_flex .text_block {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
  .official_flex .img_block {
    width: 100%;
    max-width: 140px;
    margin: 30px auto 0;
  }
  .official_btn {
    padding: 10px 54px 10px 98px;
    -webkit-box-shadow: 6px 6px 0 rgba(0, 0, 0, 0.45);
            box-shadow: 6px 6px 0 rgba(0, 0, 0, 0.45);
    font-size: 16px;
  }
  .official_btn:not(:first-child) {
    margin-top: 30px;
  }
  .official_btn:hover {
    -webkit-transform: translate(6px, 6px);
            transform: translate(6px, 6px);
  }
  .official_btn::after {
    right: 10px;
    width: 38px;
    height: 38px;
    background-size: 14px;
  }
  .official_btn .official_btn_sub_text {
    left: 10px;
  }
}