:root {
  --primary-color: #FE7E46;
  --light-color: #FFEEE0;
}

.-orange {
  --primary-color: #FE7E46;
  --light-color: #FFEEE0;
}

.-yellow {
  --primary-color: #E8C449;
  --light-color: #FEF6DA;
}

.-green {
  --primary-color: #16A4B8;
  --light-color: #DEF3EF;
}

html {
  font-family: "Noto Sans JP", sans-serif;
  color: #333;
  line-height: 1.6;
}
@media screen and (min-width: 1120px) {
  html {
    font-size: 10px;
  }
}
@media screen and (max-width: 1119px) {
  html {
    font-size: 0.8928571429vw;
  }
}
@media screen and (max-width: 767px) {
  html {
    font-size: 2.5641025641vw;
  }
}

body.-lock {
  overflow: hidden;
}

img {
  width: 100%;
}

.__inner {
  max-width: 108rem;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .__inner {
    max-width: 100%;
    padding: 0 1.6rem;
  }
}

.-sp {
  display: none;
}
@media screen and (max-width: 767px) {
  .-sp {
    display: block;
  }
}

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

section {
  font-size: 1.5rem;
}

.btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 2rem;
  background-image: -webkit-gradient(linear, left top, right top, from(#FF783C), to(#FEA246));
  background-image: linear-gradient(to right, #FF783C, #FEA246);
  border-radius: calc(infinity * 1px);
  -webkit-box-shadow: 0.3rem 0.3rem 1rem rgba(0, 0, 0, 0.1);
          box-shadow: 0.3rem 0.3rem 1rem rgba(0, 0, 0, 0.1);
}
.btn.-primary {
  position: relative;
  color: #fff;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.btn.-primary span {
  position: relative;
}
.btn.-primary::before {
  content: "";
  position: absolute;
  top: 0.1rem;
  left: 0.1rem;
  display: block;
  width: calc(100% - 0.2rem);
  height: calc(100% - 0.2rem);
  background-color: #fff;
  border-radius: calc(infinity * 1px);
  opacity: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.btn.-primary:hover {
  color: var(--primary-color);
}
.btn.-primary:hover::before {
  opacity: 1;
}
.btn.-white {
  position: relative;
  color: var(--primary-color);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.btn.-white::before {
  content: "";
  position: absolute;
  top: 0.1rem;
  left: 0.1rem;
  display: block;
  width: calc(100% - 0.2rem);
  height: calc(100% - 0.2rem);
  background-color: #fff;
  border-radius: calc(infinity * 1px);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.btn.-white span {
  position: relative;
}
.btn.-white:hover {
  color: #fff;
}
.btn.-white:hover::before {
  opacity: 0;
}
.header__button__area .btn {
  height: 3.5rem;
  font-size: 1.5rem;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .header__button__area .btn {
    width: 100%;
    height: 6rem;
    font-size: 1.6rem;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.main__top .btn {
  height: 5.5rem;
  padding: 0 5rem;
  font-size: 1.7rem;
  font-weight: 700;
}

header {
  background-color: #fff;
}

.header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 3rem;
  max-width: 124rem;
  height: 7rem;
  margin: 0 auto;
  padding: 0 2rem;
}
@media screen and (max-width: 767px) {
  .header__inner {
    height: 5rem;
    padding: 0 1.6rem;
  }
}

.header__logo {
  width: 14rem;
}
@media screen and (max-width: 767px) {
  .header__logo {
    width: 10rem;
  }
}

.header__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 3rem;
  margin-left: auto;
}
@media screen and (max-width: 767px) {
  .header__nav {
    visibility: hidden;
    position: absolute;
    top: 5rem;
    right: 0;
    z-index: 500;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100%;
    height: calc(100% - 5rem);
    padding: 0 1.6rem;
    background-color: #fff;
    translate: 0 -3rem;
    opacity: 0;
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  .header__nav.-open {
    visibility: visible;
    opacity: 1;
    translate: 0 0;
  }
}

.header__nav__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 3rem;
  font-size: 1.5rem;
  font-weight: 500;
  color: #333;
}
.header__nav__list a {
  position: relative;
}
.header__nav__list a::before {
  content: "";
  position: absolute;
  bottom: -0.2rem;
  left: 50%;
  translate: -50% 0;
  display: block;
  width: 0%;
  height: 0.1rem;
  background-color: var(--primary-color);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.header__nav__list a:hover::before {
  width: 100%;
}
@media screen and (max-width: 767px) {
  .header__nav__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0;
  }
  .header__nav__list_item {
    width: 100%;
    height: 6rem;
    border-bottom: 0.1rem solid #D9D9D9;
  }
  .header__nav__list_item a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 100%;
    height: 100%;
    padding: 0 1rem;
  }
  .header__nav__list_item a::before {
    display: none;
  }
  .header__nav__list_item a::after {
    content: "";
    display: block;
    width: 0.6rem;
    height: 1.2rem;
    margin: 0.3rem 0 0 auto;
    background: url(../images/arrow_header_nav.svg) no-repeat 0 0;
    background-size: contain;
  }
}

.header__button__area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
}
@media screen and (max-width: 767px) {
  .header__button__area {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    gap: 2rem;
  }
}

#sp__btn {
  display: none;
}
@media screen and (max-width: 767px) {
  #sp__btn {
    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;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 0.8rem;
    width: 3rem;
    height: 2.2rem;
    margin-left: auto;
  }
  #sp__btn span {
    display: block;
    width: 3rem;
    height: 0.2rem;
    background-color: #000;
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  #sp__btn::before, #sp__btn::after {
    content: "";
    display: block;
    width: 3rem;
    height: 0.2rem;
    background-color: #000;
    -webkit-transform-origin: left center;
            transform-origin: left center;
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  #sp__btn.-open span {
    opacity: 0;
  }
  #sp__btn.-open::before {
    rotate: 45deg;
    translate: 0 -0.1rem;
  }
  #sp__btn.-open::after {
    rotate: -45deg;
  }
}

#main {
  position: relative;
}

.main__top {
  margin-bottom: 3rem;
  padding-bottom: 4.7rem;
  background: url(../images/bg_main__top.webp) no-repeat center bottom;
  background-size: cover;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .main__top {
    margin-bottom: 2.8rem;
    padding-bottom: 4.5rem;
  }
}

.main__top__img__box {
  text-align: center;
  height: 20rem;
  margin-bottom: 3.2rem;
}
.main__top__img__box img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 50% bottom;
     object-position: 50% bottom;
}
@media screen and (max-width: 767px) {
  .main__top__img__box {
    height: 9rem;
    margin-bottom: 2.6rem;
  }
}

.main__title {
  margin-bottom: 3.2rem;
  font-size: 4.4rem;
  font-weight: 800;
  line-height: 1.4;
}
.main__title span.-small {
  display: block;
  margin-bottom: 1.5rem;
  font-size: 2.2rem;
  font-weight: 800;
  letter-spacing: 0.2em;
}
.main__title span.-small .-orange {
  font-size: 3.2rem;
  letter-spacing: 0;
}
.main__title span.-small .-orange i {
  font-size: 2.2rem;
  font-style: normal;
}
.main__title span.-orange {
  color: var(--primary-color);
}
@media screen and (max-width: 767px) {
  .main__title {
    margin-bottom: 2rem;
    padding: 0 2rem;
    font-size: 3.5rem;
  }
  .main__title span.-small {
    font-size: 2rem;
  }
  .main__title span.-small .-orange {
    font-size: 3rem;
  }
  .main__title span.-small .-orange i {
    font-size: 2rem;
  }
  .main__title span.-middle {
    margin-bottom: 0.4rem;
    font-size: 2.5rem;
  }
}

.introduction__block {
  margin-bottom: 4rem;
  text-align: center;
}
.introduction__block dt {
  margin-bottom: 2rem;
  font-size: 1.8rem;
  font-weight: 700;
  color: #00A4AD;
}
.introduction__block dt b {
  font-size: 2.8rem;
}
.introduction__block dd {
  height: 4.7rem;
}
@media screen and (max-width: 767px) {
  .introduction__block {
    margin-bottom: 2.5rem;
  }
}

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

#solution {
  position: relative;
  margin-bottom: 7rem;
  padding: 4rem 0 4.8rem;
  background: url(../images/bg_solution.png) no-repeat center 0;
  background-size: cover;
}
#solution::before {
  content: "";
  position: absolute;
  bottom: -4rem;
  left: 50%;
  translate: -50% 0;
  display: block;
  width: 0;
  height: 0;
  border-width: 4rem 8rem 0 8rem;
  border-style: solid;
  border-color: #FFA166 transparent;
}
@media screen and (max-width: 767px) {
  #solution {
    margin-bottom: 5rem;
    padding: 3rem 0;
  }
  #solution::before {
    bottom: -3rem;
    border-width: 3rem 8rem 0 8rem;
  }
}

.solution__title {
  margin-bottom: 2.8rem;
  font-size: 3.4rem;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
  color: #fff;
}
.solution__title span {
  font-size: 4.4rem;
}
@media screen and (max-width: 767px) {
  .solution__title {
    margin-bottom: 1.6rem;
    font-size: 2rem;
  }
  .solution__title span {
    font-size: 2.8rem;
  }
}

.solution__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 3rem;
}
.solution__list_item {
  width: 19.2rem;
  padding: 2rem 1.2rem;
  background-color: #fff;
  border-radius: 0.6rem;
  color: #000;
  text-align: center;
}
.solution__list_item figure {
  height: 7.4rem;
}
.solution__list_item:first-child figure {
  padding-top: 0.2rem;
}
.solution__list_item:first-child figure img {
  width: 5rem;
}
.solution__list_item:nth-child(2) figure {
  padding-top: 0.1rem;
}
.solution__list_item:nth-child(2) figure img {
  width: 6.7rem;
}
.solution__list_item:nth-child(3) figure {
  padding-top: 0.5rem;
}
.solution__list_item:nth-child(3) figure img {
  width: 6.3rem;
}
.solution__list_item:nth-child(4) figure img {
  width: 6.1rem;
}
.solution__list_item:nth-child(5) figure img {
  width: 5.4rem;
}
.solution__list_item dt {
  margin-bottom: 0.6rem;
  font-size: 2rem;
}
@media screen and (max-width: 767px) {
  .solution__list {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 1rem 0.8rem;
  }
  .solution__list_item {
    width: 11.4rem;
    padding: 0 1.1rem 1.5rem;
  }
  .solution__list_item figure {
    height: 6.2rem;
  }
  .solution__list_item:first-child figure {
    padding-top: 1.3rem;
  }
  .solution__list_item:first-child figure img {
    width: 3.1rem;
  }
  .solution__list_item:nth-child(2) figure {
    padding-top: 1.2rem;
  }
  .solution__list_item:nth-child(2) figure img {
    width: 4rem;
  }
  .solution__list_item:nth-child(3) figure {
    padding-top: 1.5rem;
  }
  .solution__list_item:nth-child(3) figure img {
    width: 3.8rem;
  }
  .solution__list_item:nth-child(4) figure {
    padding-top: 1.3rem;
  }
  .solution__list_item:nth-child(4) figure img {
    width: 3.9rem;
  }
  .solution__list_item:nth-child(5) figure {
    padding-top: 1.2rem;
  }
  .solution__list_item:nth-child(5) figure img {
    width: 3.5rem;
  }
  .solution__list_item dt {
    margin-bottom: 0.6rem;
    font-size: 1.5rem;
  }
  .solution__list_item dd {
    font-size: 1.3rem;
  }
}

#support {
  margin-bottom: 3rem;
}

.support__title {
  margin-bottom: 4rem;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
}
.support__title span {
  color: var(--primary-color);
}
.support__title span.-large {
  font-size: 3.8rem;
}
.support__title span.-small {
  color: #333;
}
@media screen and (max-width: 767px) {
  .support__title {
    margin-bottom: 4rem;
    font-size: 2.3rem;
  }
  .support__title span.-large {
    font-size: 3.1rem;
  }
  .support__title span.-small {
    font-size: 1.6rem;
  }
}

.support__img img {
  width: 100%;
}
@media screen and (max-width: 767px) {
  .support__img {
    overflow: auto;
  }
  .support__img img {
    width: auto;
    height: 30rem;
  }
}

#skill {
  position: relative;
  padding: 16.5rem 0 15.1rem;
  background-image: -webkit-gradient(linear, right top, left top, from(#EAF8F2), to(#D2EEEB));
  background-image: linear-gradient(to left, #EAF8F2 0%, #D2EEEB 100%);
}
#skill::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 13rem;
  background: url(../images/bg_skill_overlay.png) no-repeat center 0;
  background-size: 100% 13rem;
}
#skill::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 13rem;
  background: url(../images/bg_skill_overlay.png) no-repeat center 0;
  background-size: 100% 13rem;
  rotate: 180deg;
}
@media screen and (max-width: 767px) {
  #skill {
    padding: 7.1rem 0;
  }
  #skill::before {
    height: 4.1rem;
    background-size: 100% 4.1rem;
  }
  #skill::after {
    height: 4.1rem;
    background-size: 100% 4.1rem;
  }
}

.skill__title {
  margin-bottom: 3rem;
  font-size: 3.5rem;
  font-weight: 700;
  text-align: center;
}
.skill__title span {
  color: #00A4AD;
}
@media screen and (max-width: 767px) {
  .skill__title {
    font-size: 2.6rem;
  }
}

.skill__list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(20.4rem, 1fr));
  grid-gap: 1.2rem 1.5rem;
  margin-bottom: 6.1rem;
}
.skill__list_item {
  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;
  width: 20.4rem;
  height: 5.5rem;
  background-color: #fff;
  border-radius: 0.6rem;
  -webkit-box-shadow: 0.3rem 0.3rem 2rem rgba(0, 0, 0, 0.1);
          box-shadow: 0.3rem 0.3rem 2rem rgba(0, 0, 0, 0.1);
  font-size: 1.7rem;
  font-weight: 500;
  color: #006A70;
}
@media screen and (max-width: 767px) {
  .skill__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 4rem;
  }
  .skill__list_item {
    width: 17.4rem;
    height: 3.5rem;
    border-radius: 0.4rem;
    font-size: 1.5rem;
  }
}

.skill__subtitle {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
}
.skill__subtitle span {
  color: #00A4AD;
}
@media screen and (max-width: 767px) {
  .skill__subtitle {
    margin-bottom: 2.6rem;
    font-size: 2.4rem;
  }
}

.skill__slider {
  padding-bottom: 4rem;
}

.skill__accordion {
  margin-bottom: 4rem;
}

.skill__slider__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 3rem 0 !important;
}
.skill__slider__list_item {
  position: relative;
  width: 28rem;
  padding: 1.6rem 2rem 2rem;
  background-color: #fff;
  border-radius: 0.6rem;
  -webkit-box-shadow: 0.3rem 0.3rem 2rem rgba(0, 0, 0, 0.1);
          box-shadow: 0.3rem 0.3rem 2rem rgba(0, 0, 0, 0.1);
}
.skill__slider__list_item::before {
  content: "";
  position: absolute;
  top: -1.3rem;
  left: 0.4rem;
  display: block;
  width: 5rem;
  height: 6.2rem;
  background: url(../images/icon_skill_flag.png) no-repeat 0 0;
  background-size: contain;
  pointer-events: none;
}
.skill__slider__list_item dt {
  margin-bottom: 0.7rem;
  font-size: 2.2rem;
  font-weight: 700;
  color: #006A70;
  text-align: center;
}
.skill__slider__list_item dd figure {
  width: 100%;
  height: 13rem;
  margin-bottom: 1.6rem;
}
.skill__slider__list_item dd figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 767px) {
  .skill__slider__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 2rem;
    padding: 0 1.6rem !important;
  }
  .skill__slider__list_item {
    width: 100%;
    padding: 0;
  }
  .skill__slider__list_item dt {
    position: relative;
    margin-bottom: 0;
    padding: 2rem;
    font-size: 2.2rem;
    font-weight: 700;
    color: #006A70;
    text-align: center;
    line-height: 1;
  }
  .skill__slider__list_item dt::before, .skill__slider__list_item dt::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 1.6rem;
    translate: 0 -50%;
    display: block;
    width: 1.6rem;
    height: 0.2rem;
    background-color: #333;
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  .skill__slider__list_item dt::after {
    rotate: 90deg;
  }
  .skill__slider__list_item dt.-open::after {
    rotate: 0deg;
  }
  .skill__slider__list_item dd {
    display: none;
    padding: 0 2rem 2rem;
  }
  .skill__slider__list_item dd figure {
    width: 24rem;
    margin: 0 auto 1.6rem;
  }
  .skill__slider__list_item dd figure img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

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

.splide__pagination {
  bottom: 4rem;
}
@media screen and (max-width: 767px) {
  .splide__pagination {
    display: none;
  }
}

.splide__pagination__page {
  width: 1rem;
  height: 1rem;
  background-color: rgba(0, 0, 0, 0.3);
}
.splide__pagination__page.is-active {
  background-color: rgba(0, 0, 0, 0.7);
  -webkit-transform: scale(1);
          transform: scale(1);
}

.splide__arrow {
  top: 21rem;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  -webkit-box-shadow: 0.3rem 0.3rem 2rem rgba(0, 0, 0, 0.1);
          box-shadow: 0.3rem 0.3rem 2rem rgba(0, 0, 0, 0.1);
  background: url(../images/arrow_skill_slider.png) no-repeat 0 0;
  background-size: contain;
  opacity: 1;
}
.splide__arrow.splide__arrow--prev {
  left: 12rem;
  rotate: 180deg;
}
.splide__arrow.splide__arrow--next {
  right: 12rem;
}

.skill__message {
  text-align: center;
  font-size: 2.1rem;
  font-weight: 700;
  line-height: 1.5;
}
.skill__message span {
  color: var(--primary-color);
}
@media screen and (max-width: 767px) {
  .skill__message {
    font-size: 1.6rem;
  }
}

#welfare {
  padding: 8rem 0 10rem;
}
@media screen and (max-width: 767px) {
  #welfare {
    padding: 3rem 0 6rem;
  }
}

.welfare__title {
  margin-bottom: 8rem;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
}
.welfare__title span {
  color: var(--primary-color);
}
@media screen and (max-width: 767px) {
  .welfare__title {
    margin-bottom: 5.5rem;
    font-size: 2.4rem;
  }
}

.welfare__block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 5rem;
  margin-bottom: 9rem;
  display: flex;
  align-items: flex-start;
  gap: 5rem;
  margin-bottom: 9rem;
}
.welfare__block dl {
  width: 64rem;
  padding-left: 3rem;
}
.welfare__block dl dt {
  position: relative;
  margin-bottom: 2rem;
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--primary-color);
}
.welfare__block dl dt span {
  display: block;
  font-size: 1.4rem;
  line-height: 1.2;
}
.welfare__block dl dt span b {
  margin-left: 0.6rem;
  font-size: 4rem;
}
.welfare__block dl dt::before {
  content: "";
  position: absolute;
  top: -2.7rem;
  left: -3rem;
  z-index: -1;
  display: block;
  width: 13.5rem;
  height: 12.7rem;
  background-repeat: no-repeat;
  background-position: 0 0;
  background-size: contain;
}
.welfare__block figure {
  width: 39rem;
}
.welfare__block:first-of-type dl dt::before {
  background-image: url(../images/icon_welfare_01.svg);
}
.welfare__block:nth-of-type(2) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  gap: 6rem;
}
.welfare__block:nth-of-type(2) dl {
  width: 63rem;
  padding-left: 0;
}
.welfare__block:nth-of-type(2) dl dt::before {
  background-image: url(../images/icon_welfare_02.svg);
}
.welfare__block:last-of-type {
  margin-bottom: 0;
}
.welfare__block:last-of-type dl dt::before {
  background-image: url(../images/icon_welfare_03.svg);
}
.welfare__block dl {
  width: 64rem;
  padding-left: 3rem;
}
.welfare__block dl dt {
  position: relative;
  margin-bottom: 2rem;
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--primary-color);
}
.welfare__block dl dt span {
  display: block;
  font-size: 1.4rem;
  line-height: 1.2;
}
.welfare__block dl dt span b {
  margin-left: 0.6rem;
  font-size: 4rem;
}
.welfare__block dl dt::before {
  content: "";
  position: absolute;
  top: -2.7rem;
  left: -3rem;
  z-index: -1;
  display: block;
  width: 13.5rem;
  height: 12.7rem;
  background-repeat: no-repeat;
  background-position: 0 0;
  background-size: contain;
}
.welfare__block figure {
  width: 39rem;
}
.welfare__block:first-of-type dl dt::before {
  background-image: url(../images/icon_welfare_01.svg);
}
.welfare__block:nth-of-type(2) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  gap: 6rem;
}
.welfare__block:nth-of-type(2) dl {
  width: 63rem;
  padding-left: 0;
}
.welfare__block:nth-of-type(2) dl dt::before {
  background-image: url(../images/icon_welfare_02.svg);
}
.welfare__block:last-of-type {
  margin-bottom: 0;
}
.welfare__block:last-of-type dl dt::before {
  background-image: url(../images/icon_welfare_03.svg);
}
@media screen and (max-width: 767px) {
  .welfare__block {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 5.5rem;
  }
  .welfare__block dl {
    width: 100%;
    padding-left: 0;
  }
  .welfare__block dl dt {
    position: relative;
    margin-bottom: 1.5rem;
    font-size: 2.2rem;
  }
  .welfare__block dl dt span {
    font-size: 1.4rem;
  }
  .welfare__block dl dt span b {
    font-size: 3.4rem;
  }
  .welfare__block dl dt::before {
    top: -2.5rem;
    left: 3.6rem;
    width: 13.5rem;
    height: 12.7rem;
  }
  .welfare__block figure {
    width: 100%;
  }
  .welfare__block:nth-of-type(2) {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1.5rem;
  }
  .welfare__block:nth-of-type(2) dl {
    width: 100%;
  }
  .welfare__block:last-of-type {
    margin-bottom: 0;
  }
}

#case {
  position: relative;
  z-index: 5;
  padding: 10rem 0 19.6rem;
  background-image: -webkit-gradient(linear, left bottom, left top, from(#D2EEEB), to(#D2EEEB));
  background-image: linear-gradient(to top, #D2EEEB, #D2EEEB);
  background-repeat: no-repeat;
  background-position: center 53rem;
  background-size: 100% calc(100% - 106rem);
}
#case::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  translate: -50% 0;
  z-index: -1;
  display: block;
  width: 100%;
  height: 53rem;
  background: url(../images/bg_case.webp) no-repeat center 0;
  background-size: 100% 100%;
}
#case::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  translate: -50% 0;
  z-index: -1;
  display: block;
  width: 100%;
  height: 53rem;
  background: url(../images/bg_case.webp) no-repeat center 0;
  background-size: 100% 100%;
  scale: 1 -1;
}
@media screen and (max-width: 767px) {
  #case {
    padding: 4rem 0 8rem;
    background-position: center 18rem;
    background-size: 100% calc(100% - 36rem);
    overflow: hidden;
  }
  #case::before {
    width: 68.3rem;
    height: 18rem;
  }
  #case::after {
    width: 68.3rem;
    height: 18rem;
    scale: 1 -1;
  }
}

.case__title {
  margin-bottom: 6rem;
  font-size: 3.5rem;
  font-weight: 700;
  text-align: center;
}
.case__title span {
  font-size: 4.4rem;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .case__title {
    margin-bottom: 3.9rem;
    font-size: 2.6rem;
  }
  .case__title span {
    font-size: 3.4rem;
  }
}

.case__block {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 5rem;
  margin-bottom: 5.5rem;
  padding: 4rem 5rem 3rem;
  background-color: #fff;
  border-radius: 1.5rem;
}
.case__block:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 767px) {
  .case__block {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 3.9rem;
    padding: 4.6rem 2rem 2rem;
    border-radius: 1rem;
  }
  .case__block:last-child {
    margin-bottom: 0;
  }
}

.case__block__title {
  position: absolute;
  top: -1.4rem;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 23.5rem;
  height: 5rem;
  padding-left: 1.6rem;
  background-color: #00A4AD;
  font-size: 2.2rem;
  font-weight: 700;
  color: #fff;
}
.case__block__title::before {
  content: "";
  display: block;
  width: 3.8rem;
  height: 3.2rem;
  margin-right: 1.3rem;
  background: url(../images/icon_case.svg) no-repeat 0 0;
  background-size: contain;
}
.case__block__title span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 2.5rem;
  margin-left: 1.5rem;
  padding-left: 1.5rem;
  border-left: 0.1rem solid rgba(255, 255, 255, 0.7);
  font-size: 2.4rem;
}
@media screen and (max-width: 767px) {
  .case__block__title {
    top: -0.9rem;
    left: 0;
    width: 21rem;
    height: 4rem;
    font-size: 2rem;
  }
  .case__block__title::before {
    width: 2.8rem;
    height: 2.4rem;
  }
  .case__block__title span {
    height: 2.6rem;
    font-size: 2.2rem;
  }
}

.case__block__body {
  padding-top: 2.7rem;
}
.case__block__body h4 {
  margin-bottom: 0.6rem;
  font-size: 2.4rem;
  font-weight: 700;
}
.case__block__body dl dt {
  margin-bottom: 1.6rem;
  font-size: 1.8rem;
  font-weight: 700;
  color: #00A4AD;
}
.case__block__body dl dd p {
  margin-bottom: 1.5rem;
}
.case__block__body dl dd p:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 767px) {
  .case__block__body {
    padding-top: 0;
  }
  .case__block__body h4 {
    font-size: 2rem;
  }
  .case__block__body dl dt {
    font-size: 1.6rem;
  }
}

.case__block__overview {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 30rem;
}
.case__block__overview figure {
  height: 17rem;
  -webkit-box-shadow: 0.3rem 0.3rem 2rem rgba(0, 0, 0, 0.1);
          box-shadow: 0.3rem 0.3rem 2rem rgba(0, 0, 0, 0.1);
}
.case__block__overview figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 767px) {
  .case__block__overview {
    width: 100%;
  }
  .case__block__overview figure {
    height: 18rem;
  }
}

.case__block__info {
  margin-top: 2rem;
  padding: 1.2rem 1.5rem 1.4rem;
  background-color: #F7F7F7;
  border-top: 0.3rem solid #00A4AD;
}
.case__block__info dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.5rem;
  font-size: 1.4rem;
  margin-bottom: 0.4rem;
}
.case__block__info dl dt {
  width: 7rem;
}
.case__block__info dl:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 767px) {
  .case__block__info {
    padding: 1.5rem;
  }
}

#comparison {
  position: relative;
  margin-top: -19.6rem;
  padding: 27rem 0 17.9rem;
  background-image: -webkit-gradient(linear, left top, right top, from(#D2EEEB), to(#EAF8F2));
  background-image: linear-gradient(to right, #D2EEEB, #EAF8F2);
}
#comparison::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 13rem;
  background: url(../images/bg_skill_overlay.png) no-repeat center 0;
  background-size: 100% 13rem;
  rotate: 180deg;
}
#comparison p {
  margin-bottom: 3rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  #comparison {
    margin-top: -18rem;
    padding: 21.9rem 0 9.1rem;
  }
  #comparison::after {
    height: 4.1rem;
    background-size: 100% 4.1rem;
  }
  #comparison p {
    margin-bottom: 3rem;
    text-align: center;
  }
}

.comparison__title {
  margin-bottom: 4rem;
  font-size: 3.5rem;
  font-weight: 700;
  text-align: center;
}
.comparison__title span {
  color: var(--primary-color);
}
@media screen and (max-width: 767px) {
  .comparison__title {
    margin-bottom: 2.5rem;
    font-size: 2.6rem;
  }
}

.comparison__table {
  width: 100%;
  table-layout: fixed;
  border-collapse: initial;
  border: none;
  border-spacing: 0;
}
.comparison__table .col-label {
  width: 22rem;
}
.comparison__table .col-satellabo {
  width: 47.2rem;
}
.comparison__table .col-inhouse {
  width: 38.9rem;
}
@media screen and (max-width: 767px) {
  .comparison__table .col-label {
    width: 9rem;
  }
  .comparison__table .col-satellabo {
    width: 15rem;
  }
  .comparison__table .col-inhouse {
    width: 12rem;
  }
}
.comparison__table thead tr th:nth-child(2) span {
  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;
  height: 8rem;
  background-color: var(--primary-color);
  border-radius: 0.6rem 0.6rem 0 0;
  font-size: 1.9rem;
  color: #fff;
  text-align: center;
}
.comparison__table thead tr th:last-child {
  padding-top: 3rem;
}
.comparison__table thead tr th:last-child span {
  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;
  height: 5rem;
  background-color: #619CA0;
  border-radius: 0.6rem 0.6rem 0 0;
  font-size: 1.7rem;
  color: #fff;
  text-align: center;
}
.comparison__table tbody tr th {
  padding: 3.2rem 1.5rem 3.2rem 4.8rem;
  background-repeat: no-repeat;
  background-position: 1.5rem center;
  background-color: #fff;
  background-size: 2.4rem;
  border-width: 0 0 0.1rem 0.1rem;
  border-style: solid;
  border-color: #DEDEDE;
  font-size: 1.7rem;
  font-weight: 700;
  vertical-align: middle;
}
.comparison__table tbody tr td {
  position: relative;
  padding: 2rem 3rem 2rem 7rem;
  background-color: #fff;
  border-width: 0 0.1rem 0.1rem 0;
  border-style: solid;
  border-color: #DEDEDE;
  vertical-align: middle;
}
.comparison__table tbody tr td:first-of-type {
  position: relative;
  padding: 2rem 3rem 2rem 6rem;
  border-right: 0;
  border-bottom: 0.1rem solid #fff;
  background-color: var(--light-color);
  font-size: 1.7rem;
}
.comparison__table tbody tr td:first-of-type span {
  font-weight: 700;
  color: var(--primary-color);
}
.comparison__table tbody tr td:first-of-type::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: calc(100% + 0.1rem);
  border-left: 0.5rem solid var(--primary-color);
  border-right: 0.5rem solid var(--primary-color);
}
.comparison__table tbody tr td::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 2.1rem;
  translate: 0 -50%;
  display: block;
  background-repeat: no-repeat;
  background-position: 0 0;
  background-size: contain;
}
.comparison__table tbody tr td.-level01::after {
  left: 2.1rem;
  width: 3rem;
  height: 3rem;
  background-image: url(../images/icon_comparison_status_01.svg);
}
.comparison__table tbody tr td.-level02::after {
  left: 1.8rem;
  width: 3.8rem;
  height: 3.8rem;
  background-image: url(../images/icon_comparison_status_02.svg);
}
.comparison__table tbody tr td.-level03::after {
  left: 2.3rem;
  width: 2.8rem;
  height: 2.7rem;
  background-image: url(../images/icon_comparison_status_03.svg);
}
.comparison__table tbody tr:first-child th {
  border-top: 0.1rem solid #DEDEDE;
  border-radius: 0.6rem 0 0 0;
  background-image: url(../images/icon_comparison_01.svg);
}
.comparison__table tbody tr:nth-child(2) th {
  background-image: url(../images/icon_comparison_02.svg);
}
.comparison__table tbody tr:nth-child(3) th {
  background-image: url(../images/icon_comparison_03.svg);
}
.comparison__table tbody tr:nth-child(4) th {
  background-image: url(../images/icon_comparison_04.svg);
}
.comparison__table tbody tr:last-child th {
  background-image: url(../images/icon_comparison_05.svg);
}
.comparison__table tbody tr:last-child td:first-of-type::before {
  border-bottom: 0.5rem solid var(--primary-color);
}
@media screen and (max-width: 767px) {
  .comparison__table thead tr th {
    line-height: 1.2;
  }
  .comparison__table thead tr th:nth-child(2) span {
    height: 5rem;
    font-size: 1.6rem;
  }
  .comparison__table thead tr th:last-child {
    padding-top: 1rem;
  }
  .comparison__table thead tr th:last-child span {
    height: 4rem;
    font-size: 1.6rem;
  }
  .comparison__table tbody tr th {
    padding: 3rem 0.5rem 0;
    background-position: center calc(50% - 2rem);
    font-size: 1.5rem;
    text-align: center;
    line-height: 1.2;
  }
  .comparison__table tbody tr td {
    padding: 4rem 1rem 1rem;
    font-size: 1.4rem;
  }
  .comparison__table tbody tr td:first-of-type {
    padding: 4rem 1.5rem 1rem;
    font-size: 1.5rem;
  }
  .comparison__table tbody tr td:first-of-type::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: calc(100% + 0.1rem);
    border-left: 0.4rem solid var(--primary-color);
    border-right: 0.4rem solid var(--primary-color);
  }
  .comparison__table tbody tr td::after {
    left: 50%;
    translate: -50% 0;
  }
  .comparison__table tbody tr td.-level01::after {
    top: 1.1rem;
    left: 50%;
    width: 2.5rem;
    height: 2.5rem;
  }
  .comparison__table tbody tr td.-level02::after {
    top: 0.9rem;
    left: 50%;
    width: 3.2rem;
    height: 3.2rem;
  }
  .comparison__table tbody tr td.-level03::after {
    top: 1.3rem;
    left: 50%;
    width: 2.2rem;
    height: 2.2rem;
  }
  .comparison__table tbody tr:last-child td:first-of-type::before {
    border-bottom: 0.4rem solid var(--primary-color);
  }
}

#plan {
  position: relative;
  padding-bottom: 6rem;
}
@media screen and (max-width: 767px) {
  #plan {
    padding-bottom: 2rem;
  }
}

.plan__title {
  margin-bottom: 4.2rem;
  font-size: 3.5rem;
  font-weight: 700;
  text-align: center;
  line-height: 1.4;
}
.plan__title span {
  display: block;
  font-size: 2rem;
}
.plan__title .-color {
  display: inline;
  font-size: 3.5rem;
  color: var(--primary-color);
}
.plan__title .-color b {
  font-size: 5.2rem;
}
@media screen and (max-width: 767px) {
  .plan__title {
    margin-bottom: 3rem;
    font-size: 2.8rem;
  }
  .plan__title span {
    font-size: 1.8rem;
  }
  .plan__title .-color {
    font-size: 2.8rem;
  }
  .plan__title .-color b {
    font-size: 4.2rem;
  }
}

.plan__anchor__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 2rem;
  margin-bottom: 5.3rem;
}
.plan__anchor__list_item {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 4rem;
  padding: 0 2rem;
  background-color: var(--primary-color);
  border-radius: calc(infinity * 1px);
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
}
.plan__anchor__list_item::before {
  content: "";
  position: absolute;
  bottom: -1.1rem;
  left: 50%;
  translate: -50% 0;
  display: block;
  width: 0;
  height: 0;
  border-width: 1.2rem 1rem 0 1rem;
  border-style: solid;
  border-color: var(--primary-color) transparent;
}
@media screen and (max-width: 767px) {
  .plan__anchor__list {
    gap: 0.8rem;
    margin-bottom: 3.1rem;
  }
  .plan__anchor__list_item {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 11.4rem;
    height: 3.5rem;
    padding: 0;
    font-size: 1.5rem;
  }
}

.plan__block {
  margin-bottom: 4rem;
  padding: 4rem 5rem 5rem;
  background-color: var(--light-color);
  border-radius: 2rem;
}
.plan__block:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 767px) {
  .plan__block {
    margin-bottom: 2rem;
    padding: 1.5rem 1.5rem 3rem;
  }
  .plan__block:last-child {
    margin-bottom: 0;
  }
}

.plan__block__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 3rem;
}
.plan__block__top figure {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 31rem;
}
@media screen and (max-width: 767px) {
  .plan__block__top {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1rem;
  }
  .plan__block__top figure {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    width: 100%;
    margin-bottom: 2rem;
  }
}

.plan__block__top__box {
  width: 64rem;
}
@media screen and (max-width: 767px) {
  .plan__block__top__box {
    display: contents;
  }
}

.plan__block__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 3rem;
  margin-bottom: 2.7rem;
}
.plan__block__title h3 {
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--primary-color);
}
@media screen and (max-width: 767px) {
  .plan__block__title {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    -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: 0.5rem;
    margin-bottom: 1rem;
  }
  .plan__block__title h3 {
    font-size: 2.5rem;
  }
}

.plan__block__feature {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.plan__block__feature p {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  text-align: center;
  width: 19rem;
  padding: 3rem 2.7rem;
  background-color: var(--primary-color);
  border-radius: 1rem 0 0 1rem;
  font-size: 1.8rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.4;
}
.plan__block__feature ul {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  padding: 1.5rem 2.1rem;
  background-color: #fff;
  border-radius: 0 1rem 1rem 0;
}
.plan__block__feature ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  line-height: 1.6;
}
.plan__block__feature ul li::before {
  content: "";
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: block;
  width: 1.8rem;
  height: 1.8rem;
  margin-top: 0.4rem;
  margin-right: 0.9rem;
  background-repeat: no-repeat;
  background-position: 0 0;
  background-size: contain;
}
.-orange .plan__block__feature ul li::before {
  background-image: url(../images/icon_plan_check_01.svg);
}
.-yellow .plan__block__feature ul li::before {
  background-image: url(../images/icon_plan_check_02.svg);
}
.-green .plan__block__feature ul li::before {
  background-image: url(../images/icon_plan_check_03.svg);
}
@media screen and (max-width: 767px) {
  .plan__block__feature {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .plan__block__feature p {
    width: 100%;
    height: 4rem;
    padding: 0 2rem;
    border-radius: 1rem 1rem 0 0;
    font-size: 1.6rem;
  }
  .plan__block__feature ul {
    width: 100%;
    padding: 1rem 1.2rem 1.5rem;
    border-radius: 0 0 1rem 1rem;
  }
}

.plan__block__body {
  padding: 3rem 0 0;
}
.plan__block__body__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 1.6rem;
  font-size: 2rem;
  font-weight: 700;
}
.plan__block__body__title::before, .plan__block__body__title::after {
  content: "";
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  width: auto;
  height: 0.2rem;
}
.plan__block__body__title::before {
  margin-right: 1rem;
}
.plan__block__body__title::after {
  margin-left: 1rem;
}
.plan__block__body__title.-white::before, .plan__block__body__title.-white::after {
  background-color: #fff;
}
.plan__block__body__title.-green::before, .plan__block__body__title.-green::after {
  background-color: #00A4AD;
}

.plan__block__body__detail {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 2.5rem;
  margin: 3.2rem 0 3.6rem;
}
.plan__block__body__detail_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 2.2rem;
  width: 31rem;
}
.plan__block__body__detail_item dt {
  width: 9rem;
  text-align: center;
  font-weight: 700;
}
.plan__block__body__detail_item dt img {
  margin-top: 1rem;
}
@media screen and (max-width: 767px) {
  .plan__block__body__detail {
    gap: 2rem;
    margin: 1.5rem 0 3rem;
  }
  .plan__block__body__detail_item {
    gap: 1.5rem;
    width: 100%;
  }
  .plan__block__body__detail_item dt {
    width: 9.5rem;
  }
}

.plan__list_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.plan__list_item::before {
  content: "";
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: block;
  width: 0.8rem;
  height: 0.8rem;
  margin-top: 0.9rem;
  margin-right: 1rem;
  background-color: var(--primary-color);
  border-radius: 50%;
}

.plan__block__body__point__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 2.2rem;
  margin-bottom: 2rem;
}
.plan__block__body__point__box:last-of-type {
  margin-bottom: 0;
}
.plan__block__body__point__box figure {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 9.7rem;
}
.plan__block__body__point__box_text dl {
  margin-top: 2rem;
}
.plan__block__body__point__box_text dl dt {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 2.4rem;
  margin-bottom: 0.8rem;
  padding: 0 1rem;
  background-color: #00A4AD;
  font-weight: 700;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .plan__block__body__point__box {
    display: block;
    margin-bottom: 3rem;
    overflow: hidden;
  }
  .plan__block__body__point__box:last-of-type {
    margin-bottom: 0;
  }
  .plan__block__body__point__box figure {
    width: 6.7rem;
    margin: 0 1rem 0 0;
    float: left;
  }
  .plan__block__body__point__box_text dl {
    margin-top: 2rem;
  }
  .plan__block__body__point__box_text dl dt {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    height: 2.4rem;
    margin-bottom: 0.8rem;
    padding: 0 1rem;
    background-color: #00A4AD;
    font-weight: 700;
    color: #fff;
  }
}

@media screen and (max-width: 767px) {
  .plan__block__body__operation {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 3rem;
  }
}

.plan__operation__period {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.plan__operation__period_item {
  position: relative;
  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;
  width: 12rem;
  height: 2.5rem;
  margin-bottom: 2.1rem;
  border-radius: calc(infinity * 1px);
  background-color: var(--primary-color);
  font-weight: 700;
  color: #fff;
}
.plan__operation__period_item::before {
  content: "";
  position: absolute;
  bottom: -0.9rem;
  left: 50%;
  translate: -50% 0;
  display: block;
  width: 0;
  height: 0;
  border-width: 0.9rem 0.8rem 0;
  border-style: solid;
  border-color: var(--primary-color) transparent;
}
.plan__operation__period_item:first-child {
  margin-right: 31rem;
}
.plan__operation__period_item:last-child {
  margin-left: 13rem;
}
@media screen and (max-width: 767px) {
  .plan__operation__period {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    margin-right: 1.3rem;
  }
  .plan__operation__period_item {
    width: 2.5rem;
    height: 9rem;
    margin-bottom: 0;
    -webkit-writing-mode: vertical-rl;
        -ms-writing-mode: tb-rl;
            writing-mode: vertical-rl;
    text-orientation: upright;
  }
  .plan__operation__period_item::before {
    bottom: 50%;
    left: initial;
    right: -0.9rem;
    translate: 0 50%;
    border-width: 0.8rem 0 0.8rem 0.9rem;
    border-color: transparent var(--primary-color);
  }
  .plan__operation__period_item:first-child {
    margin-right: 0;
    margin-bottom: 1.3rem;
  }
  .plan__operation__period_item:last-child {
    margin-left: 0;
    margin-top: 0.8rem;
  }
}

.plan__operation__title {
  position: relative;
  z-index: 5;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 3.2rem;
  margin-bottom: 1.5rem;
}
.plan__operation__title_01 {
  position: relative;
  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;
  width: 72rem;
  height: 4rem;
  background-color: #9F7A21;
  font-weight: 700;
  color: #fff;
}
.plan__operation__title_01::before {
  content: "";
  position: absolute;
  top: 0;
  right: -2rem;
  display: block;
  width: 0;
  height: 0;
  border-width: 2rem 0 2rem 2rem;
  border-style: solid;
  border-color: transparent #9F7A21;
}
.plan__operation__title_02 {
  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;
  width: 22.8rem;
  height: 4rem;
  padding-left: 2rem;
  background: url(../images/bdr_plan_operation.svg) no-repeat 0 0;
  background-size: contain;
}
@media screen and (max-width: 767px) {
  .plan__operation__title {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    gap: 3.4rem;
    margin-bottom: 0;
    margin-right: 1.1rem;
    -webkit-writing-mode: vertical-rl;
        -ms-writing-mode: tb-rl;
            writing-mode: vertical-rl;
    text-orientation: upright;
  }
  .plan__operation__title_01 {
    width: 3rem;
    height: 22.5rem;
  }
  .plan__operation__title_01::before {
    top: initial;
    bottom: -1.5rem;
    right: 0;
    border-width: 1.5rem 1.5rem 0;
    border-color: #9F7A21 transparent;
  }
  .plan__operation__title_02 {
    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;
    width: 3rem;
    height: 13.5rem;
    padding-left: 0;
    padding-bottom: 2rem;
    background-image: url(../images/bdr_plan_operation_sp.svg);
  }
}

.plan__operation__text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 1.9rem;
}
.plan__operation__text_box:first-child {
  width: 49rem;
}
.plan__operation__text_box:nth-child(2) {
  position: relative;
  width: 25rem;
  padding: 0 3rem 0 2rem;
}
.plan__operation__text_box:nth-child(2)::before {
  content: "";
  position: absolute;
  top: -7.6rem;
  left: 0;
  width: 0.2rem;
  height: calc(100% + 7.6rem);
  border-left: 0.2rem dashed var(--primary-color);
}
.plan__operation__text_box:last-child {
  position: relative;
  width: 24rem;
  padding-left: 2rem;
}
.plan__operation__text_box:last-child::before {
  content: "";
  position: absolute;
  top: -7.6rem;
  left: 0;
  width: 0.2rem;
  height: calc(100% + 7.6rem);
  border-left: 0.2rem dashed var(--primary-color);
}
@media screen and (max-width: 767px) {
  .plan__operation__text {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-bottom: 0;
  }
  .plan__operation__text_box:first-child {
    width: 24.9rem;
    height: 14.8rem;
  }
  .plan__operation__text_box:nth-child(2) {
    width: 24.9rem;
    padding: 1.8rem 0 3.2rem;
  }
  .plan__operation__text_box:nth-child(2)::before {
    content: "";
    position: absolute;
    top: 0;
    left: -4.5rem;
    width: 29.4rem;
    height: 0.2rem;
    border-left: 0;
    border-top: 0.2rem dashed var(--primary-color);
  }
  .plan__operation__text_box:last-child {
    width: 24.9rem;
    padding-top: 1.8rem;
    padding-left: 0;
  }
  .plan__operation__text_box:last-child::before {
    position: absolute;
    top: 0;
    left: -4.5rem;
    width: 29.4rem;
    height: 0.2rem;
    border-left: 0;
    border-top: 0.2rem dashed var(--primary-color);
  }
}

.plan__note {
  margin-top: 0.9rem;
}
.plan__note b {
  margin-right: 0.7rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .plan__note {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: 0.5rem;
  }
  .plan__note b {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    margin-right: 0.8rem;
  }
}

.plan__text__right {
  font-size: 1.3rem;
  text-align: right;
  margin-bottom: 3.1rem;
}
@media screen and (max-width: 767px) {
  .plan__text__right {
    position: absolute;
    bottom: 1rem;
    right: 0;
    margin-bottom: 0;
  }
}

.plan__movie {
  width: 80rem;
  margin: 4rem auto 0;
}
.plan__movie iframe {
  width: 100%;
  aspect-ratio: 80/45;
}
@media screen and (max-width: 767px) {
  .plan__movie {
    width: 100%;
  }
}

.plan__effort__box {
  margin-bottom: 3rem;
}
.plan__effort__box dt {
  margin-bottom: 2rem;
  font-weight: 400;
}
.plan__effort__box dt span {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 2.4rem;
  margin-right: 2rem;
  padding: 0 1rem;
  background-color: var(--primary-color);
  font-weight: 700;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .plan__effort__box {
    margin-bottom: 3rem;
  }
  .plan__effort__box dt {
    margin-bottom: 2rem;
    font-weight: 400;
  }
  .plan__effort__box dt span {
    margin-right: 0;
    margin-bottom: 1rem;
    padding: 0 0.8rem;
  }
}

.plan__effort__box__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2.5rem;
}
.plan__effort__box__list_item {
  width: 31rem;
  font-size: 1.4rem;
}
.plan__effort__box__list_item img {
  margin-bottom: 0.8rem;
}
@media screen and (max-width: 767px) {
  .plan__effort__box__list {
    gap: 1.2rem;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .plan__effort__box__list_item {
    width: 15.8rem;
    text-align: center;
  }
  .plan__effort__box__list_item img {
    margin-bottom: 0.5rem;
  }
}

#subsidy {
  position: relative;
  padding: 18.7rem 0 8rem;
  background-image: -webkit-gradient(linear, left top, right top, from(#FFF2E4), to(#FFFAEB));
  background-image: linear-gradient(to right, #FFF2E4, #FFFAEB);
}
#subsidy::after {
  content: "";
  position: absolute;
  top: 2rem;
  left: 0;
  z-index: 5;
  display: block;
  width: 100%;
  height: 13.5rem;
  background: url(../images/bg_skill_overlay.png) no-repeat center 0;
  background-size: 100% 13.5rem;
  scale: -1 1;
}
#subsidy::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 2.4rem;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  #subsidy {
    padding: 10.2rem 0 5rem;
  }
  #subsidy::after {
    width: 100%;
    height: 4.2rem;
    background-size: 100% 4.2rem;
  }
}

.subsidy__title {
  margin-bottom: 4rem;
  font-size: 3.5rem;
  font-weight: 700;
  text-align: center;
}
.subsidy__title span {
  color: var(--primary-color);
}
@media screen and (max-width: 767px) {
  .subsidy__title {
    margin-bottom: 2rem;
    font-size: 2.6rem;
  }
}

.subsidy__text {
  margin-bottom: 3rem;
}
@media screen and (max-width: 767px) {
  .subsidy__text {
    margin-bottom: 2rem;
  }
}

.subsidy__box {
  margin-bottom: 4rem;
}
.subsidy__box_title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 4rem;
  background-color: var(--primary-color);
  border-radius: 0.6rem 0.6rem 0 0;
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
}
.subsidy__box_body {
  padding: 3rem 4rem;
  background-color: #fff;
  border-width: 0 0.2rem 0.2rem;
  border-style: solid;
  border-color: var(--primary-color);
  border-radius: 0 0 0.6rem 0.6rem;
}
.subsidy__box_body p {
  font-size: 1.3rem;
}
.subsidy__box_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 4rem;
  margin-bottom: 2rem;
}
.subsidy__box_list_item h4 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 1.5rem;
  font-size: 1.7rem;
  font-weight: 700;
  color: #000;
}
.subsidy__box_list_item h4::before {
  content: "";
  display: block;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 1.5rem;
  height: 1.5rem;
  margin-right: 0.4rem;
  border-radius: 50%;
  background-color: var(--primary-color);
}
.subsidy__box_list_item dl {
  padding: 2rem 3rem;
  background-color: var(--light-color);
  border-radius: 1rem;
}
.subsidy__box_list_item dl dt {
  margin-bottom: 1.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 0.2rem solid var(--primary-color);
  font-weight: 700;
}
.subsidy__box_list_item dl dt span {
  margin-right: 2rem;
  color: var(--primary-color);
}
@media screen and (max-width: 767px) {
  .subsidy__box {
    margin-bottom: 2.5rem;
  }
  .subsidy__box_title {
    text-align: center;
    height: 6.2rem;
    font-size: 1.8rem;
    line-height: 1.2;
  }
  .subsidy__box_body {
    padding: 1.1rem 1.5rem 2rem;
  }
  .subsidy__box_list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
  }
  .subsidy__box_list_item h4 {
    margin-bottom: 0.8rem;
    font-size: 1.6rem;
  }
  .subsidy__box_list_item dl {
    padding: 1rem 1.2rem;
  }
  .subsidy__box_list_item dl dt {
    margin-bottom: 1rem;
  }
  .subsidy__box_list_item dl dt span {
    margin-right: 1rem;
  }
}

.subsidy__message {
  font-size: 2.1rem;
  font-weight: 700;
  text-align: center;
  line-height: 1.5;
}
.subsidy__message span {
  color: var(--primary-color);
}
@media screen and (max-width: 767px) {
  .subsidy__message {
    font-size: 1.7rem;
  }
}

#flow {
  padding: 6rem 0;
  background: url(../images/bg_flow.png) no-repeat center 0;
  background-size: cover;
}
@media screen and (max-width: 767px) {
  #flow {
    padding: 4rem 0;
  }
}

.flow__title {
  margin-bottom: 3.6rem;
  font-size: 3.5rem;
  font-weight: 700;
  color: #fff;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .flow__title {
    margin-bottom: 2rem;
    font-size: 2.6rem;
  }
}

.flow__text {
  margin-bottom: 3.6rem;
}
@media screen and (max-width: 767px) {
  .flow__text {
    margin-bottom: 2rem;
  }
}

.flow__period {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 1.8rem;
  margin-bottom: 1.8rem;
}
.flow__period li {
  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;
  width: 21.6rem;
  height: 3.5rem;
  background-repeat: no-repeat;
  background-position: 0 0;
  background-size: contain;
  color: #fff;
}
.flow__period li:first-child {
  padding-right: 2.6rem;
  background-image: url(../images/arrow_flow_01.png);
}
.flow__period li:nth-child(2) {
  width: 64.8rem;
  padding-right: 2.9rem;
  background-image: url(../images/arrow_flow_02.png);
}
.flow__period li:last-child {
  padding-right: 0.9rem;
  background-image: url(../images/arrow_flow_03.png);
}
.flow__period li {
  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;
  width: 21.6rem;
  height: 3.5rem;
  background-repeat: no-repeat;
  background-position: 0 0;
  background-size: contain;
  color: #fff;
}
.flow__period li:first-child {
  padding-right: 2.6rem;
  background-image: url(../images/arrow_flow_01.png);
}
.flow__period li:nth-child(2) {
  width: 64.8rem;
  padding-right: 2.9rem;
  background-image: url(../images/arrow_flow_02.png);
}
.flow__period li:last-child {
  padding-right: 0.9rem;
  background-image: url(../images/arrow_flow_03.png);
}
@media screen and (max-width: 767px) {
  .flow__period li {
    width: 7.8rem;
    height: 4rem;
    font-size: 1.4rem;
    text-align: center;
    line-height: 1.1;
  }
  .flow__period li:first-child {
    padding-right: 0;
    background-image: url(../images/arrow_flow_01_sp.png);
  }
  .flow__period li:nth-child(2) {
    width: 22rem;
    padding-right: 0.4rem;
    background-image: url(../images/arrow_flow_02_sp.png);
  }
  .flow__period li:last-child {
    padding-right: 0.4rem;
    background-image: url(../images/arrow_flow_03_sp.png);
  }
}

.flow__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  display: flex;
  justify-content: space-between;
}
.flow__list_item {
  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;
  width: 21.6rem;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.5;
}
.flow__list_item span {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-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;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 9rem;
  height: 9rem;
  margin-bottom: 1.1rem;
  background-color: #fff;
  border-radius: 50%;
  font-size: 1.8rem;
  color: var(--primary-color);
  line-height: 1.2;
}
.flow__list_item span b {
  font-size: 2.6rem;
}
.flow__list_item {
  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;
  width: 21.6rem;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.5;
}
.flow__list_item span {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-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;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 9rem;
  height: 9rem;
  margin-bottom: 1.1rem;
  background-color: #fff;
  border-radius: 50%;
  font-size: 1.8rem;
  color: var(--primary-color);
  line-height: 1.2;
}
.flow__list_item span b {
  font-size: 2.6rem;
}
@media screen and (max-width: 767px) {
  .flow__list_item {
    width: 6rem;
    font-size: 1.4rem;
  }
  .flow__list_item p {
    -webkit-writing-mode: vertical-rl;
        -ms-writing-mode: tb-rl;
            writing-mode: vertical-rl;
    text-orientation: upright;
  }
  .flow__list_item span {
    width: 6rem;
    height: 6rem;
    margin-bottom: 0.8rem;
    font-size: 1.4rem;
  }
  .flow__list_item span b {
    font-size: 1.8rem;
  }
}

#faq {
  padding: 6rem 0 8rem;
}
@media screen and (max-width: 767px) {
  #faq {
    padding: 4rem 0;
  }
}

.faq__title {
  margin-bottom: 6.9rem;
  font-size: 3.5rem;
  font-weight: 700;
  text-align: center;
}
.faq__title span {
  color: var(--primary-color);
}
@media screen and (max-width: 767px) {
  .faq__title {
    margin-bottom: 3rem;
    font-size: 2.6rem;
  }
}

.faq__list {
  border-top: 0.1rem solid #D9D9D9;
}
.faq__list_item {
  position: relative;
  border-bottom: 0.1rem solid #D9D9D9;
}
.faq__list_item::before, .faq__list_item::after {
  content: "";
  position: absolute;
  top: 4.9rem;
  right: 3rem;
  width: 2.6rem;
  height: 0.1rem;
  background-color: #3E4758;
}
.faq__list_item::after {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  rotate: 90deg;
}
.faq__list_item.-open::after {
  rotate: 0deg;
}
.faq__list_item dt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 2.5rem 3rem;
  font-size: 1.9rem;
  font-weight: 700;
  cursor: pointer;
}
.faq__list_item dt:before {
  content: "Q";
  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;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 5rem;
  height: 5rem;
  margin-right: 2rem;
  background-image: -webkit-gradient(linear, left top, right top, from(#00888F), to(#00A4AD));
  background-image: linear-gradient(to right, #00888F, #00A4AD);
  border-radius: 50%;
  -webkit-box-shadow: 0.3rem 0.3rem 2rem rgba(0, 0, 0, 0.1);
          box-shadow: 0.3rem 0.3rem 2rem rgba(0, 0, 0, 0.1);
  font-family: "Roboto", sans-serif;
  font-size: 2.9rem;
  font-weight: 700;
  color: #fff;
}
.faq__list dd {
  display: none;
  padding: 3.5rem 3rem;
  background-color: #F7F7F7;
}
.faq__list dd p {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.faq__list dd p:before {
  content: "A";
  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;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 5rem;
  height: 5rem;
  margin-right: 2rem;
  background-color: #fff;
  border-radius: 50%;
  -webkit-box-shadow: 0.3rem 0.3rem 2rem rgba(0, 0, 0, 0.1);
          box-shadow: 0.3rem 0.3rem 2rem rgba(0, 0, 0, 0.1);
  font-family: "Roboto", sans-serif;
  font-size: 2.9rem;
  font-weight: 700;
  color: #00A4AD;
}
@media screen and (max-width: 767px) {
  .faq__list_item::before, .faq__list_item::after {
    top: 3.7rem;
    right: 1.5rem;
    width: 1.5rem;
    height: 0.1rem;
  }
  .faq__list_item dt {
    padding: 1.5rem 4rem 1.5rem 1.5rem;
    font-size: 1.6rem;
  }
  .faq__list_item dt:before {
    width: 3.2rem;
    height: 3.2rem;
    margin-right: 0.8rem;
    font-size: 2rem;
  }
  .faq__list dd {
    padding: 1.5rem;
  }
  .faq__list dd p:before {
    width: 3.2rem;
    height: 3.2rem;
    margin-right: 0.8rem;
    font-size: 2rem;
  }
}

#contact {
  padding: 6.2rem 0;
  background-image: -webkit-gradient(linear, left top, right top, from(#D2EEEB), to(#EAF8F2));
  background-image: linear-gradient(to right, #D2EEEB, #EAF8F2);
}
#contact .__inner {
  max-width: 84rem;
}
#contact .field {
  margin-bottom: 1.5rem;
  font-size: 1.4rem;
}
#contact .field > label {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 1.4rem;
  font-weight: 500;
}
#contact .field input[type=text], #contact .field input[type=email], #contact .field input[type=tel] {
  width: 100%;
  height: 4rem;
  padding: 0.5rem 1rem;
  border: 0.1rem solid #CBD6E2;
  border-radius: 0.3rem;
}
#contact .field input[type=text]:-moz-placeholder, #contact .field input[type=email]:-moz-placeholder, #contact .field input[type=tel]:-moz-placeholder {
  background-color: #F5F8FA;
}
#contact .field input[type=text]:-ms-input-placeholder, #contact .field input[type=email]:-ms-input-placeholder, #contact .field input[type=tel]:-ms-input-placeholder {
  background-color: #F5F8FA;
}
#contact .field input[type=text]:placeholder-shown, #contact .field input[type=email]:placeholder-shown, #contact .field input[type=tel]:placeholder-shown {
  background-color: #F5F8FA;
}
#contact .field input[type=text].error, #contact .field input[type=email].error, #contact .field input[type=tel].error {
  border-color: #c87872;
}
#contact .field textarea {
  width: 100%;
  height: 7rem;
  padding: 0.5rem 1rem;
  border: 0.1rem solid #CBD6E2;
  border-radius: 0.3rem;
}
#contact .field textarea:-moz-placeholder {
  background-color: #F5F8FA;
}
#contact .field textarea:-ms-input-placeholder {
  background-color: #F5F8FA;
}
#contact .field textarea:placeholder-shown {
  background-color: #F5F8FA;
}
#contact .hs-error-msg {
  font-size: 1.5rem;
  color: #f2545b;
}
#contact .hs-form-checkbox {
  margin-bottom: 0.4rem;
}
#contact .hs-form-checkbox:last-of-type {
  margin-bottom: 0;
}
#contact .hs-form-checkbox input {
  -webkit-appearance: auto;
     -moz-appearance: auto;
          appearance: auto;
  margin-right: 0.5rem;
  margin-bottom: 0.3rem;
}
#contact .hs-form-required {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 2rem;
  margin-left: 1rem;
  padding: 0 0.5rem;
  background-color: #F13131;
  font-size: 1.3rem;
  font-weight: 500;
  color: #fff;
}
#contact .hs-form-required + .optional__icon {
  display: none;
}
#contact .optional__icon {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 2rem;
  margin-left: 1rem;
  padding: 0 0.5rem;
  background-color: #B4B4B4;
  font-size: 1.3rem;
  font-weight: 500;
  color: #fff;
}
@media screen and (max-width: 767px) {
  #contact {
    padding: 3rem 0;
  }
  #contact .__inner {
    max-width: 100%;
  }
  #contact .field input[type=text], #contact .field input[type=email], #contact .field input[type=tel] {
    height: 4.5rem;
  }
  #contact .field textarea {
    height: 9.5rem;
  }
  #contact .hs-error-msg {
    font-size: 1.4rem;
  }
  #contact .hs-form-checkbox input {
    margin-right: 0.6rem;
  }
}

.contact__block {
  padding: 7rem 7rem 5rem;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .contact__block {
    padding: 3.4rem 2rem 3rem;
  }
}

.contact__title {
  margin-bottom: 3rem;
  font-size: 2.5rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .contact__title {
    margin-bottom: 2rem;
  }
}

.contact__text {
  margin-bottom: 5rem;
  font-size: 1.4rem;
  text-align: center;
}
.contact__text a {
  color: #00A4AD;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.contact__text a:hover {
  text-decoration: underline;
  color: var(--primary-color);
}
@media screen and (max-width: 767px) {
  .contact__text {
    margin-bottom: 2rem;
  }
}

.actions {
  margin-top: 2rem;
  text-align: center;
}

.hs-button.primary {
  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;
  width: 21rem;
  height: 5rem;
  background-color: var(--primary-color);
  border-radius: 0.3rem;
  font-size: 1.6rem;
  font-weight: 700;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .hs-button.primary {
    width: 100%;
    height: 6rem;
  }
}

#footer {
  padding: 4rem 0 3rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  #footer {
    padding: 2.6rem 0 3rem;
  }
}

.footer__logo img {
  width: 20rem;
}

.footer__box {
  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;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  width: 40rem;
  margin: 4rem auto 3rem;
  padding: 1.1rem 0 0.8rem;
  background-image: -webkit-gradient(linear, right top, left top, from(#EAF8F2), to(#D2EEEB));
  background-image: linear-gradient(to left, #EAF8F2 0%, #D2EEEB 100%);
  border-radius: calc(infinity * 1px);
  font-size: 1.2rem;
  line-height: 1.4;
}
.footer__box span {
  font-size: 2.4rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .footer__box {
    width: 29.8rem;
    margin: 2.4rem auto 2rem;
  }
  .footer__box a {
    text-decoration: none;
    color: #333;
  }
}

.copy {
  padding-top: 1.5rem;
  border-top: 0.1rem solid #D9D9D9;
  font-size: 1.2rem;
}

.contact__fixed {
  position: fixed;
  bottom: 3rem;
  right: 3rem;
  z-index: 30;
  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;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 15.9rem;
  height: 15.9rem;
  background-image: -webkit-gradient(linear, left top, right top, from(#32B7CA), to(#8DDD5E));
  background-image: linear-gradient(to right, #32B7CA, #8DDD5E);
  border-radius: 50%;
  font-size: 1.7rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
  text-align: center;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.contact__fixed.-visible {
  opacity: 1;
  visibility: visible;
}
.contact__fixed img {
  width: 3.4rem;
  margin-bottom: 1rem;
}
@media screen and (max-width: 767px) {
  .contact__fixed {
    width: 10.8rem;
    height: 10.8rem;
    font-size: 1.3rem;
  }
  .contact__fixed img {
    width: 2.3rem;
    margin-bottom: 0.7rem;
  }
}

.counseling {
  padding: 5.5rem 2.4rem;
  background: url(../images/bg_counseling.png) no-repeat center 0;
  background-size: cover;
}
.counseling .__inner {
  max-width: 91rem;
  padding: 5rem 2.4rem 6rem;
  background-color: #fff;
  border-radius: 2rem;
  text-align: center;
}
.counseling h2 {
  margin-bottom: 4rem;
  font-size: 3.5rem;
  font-weight: 700;
}
.counseling h2 span {
  color: #FE7E46;
}
.counseling p {
  margin-bottom: 3rem;
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.75;
  letter-spacing: 0.01em;
}
.counseling .btn {
  height: 6rem;
  padding: 0 5rem;
  font-size: 2rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .counseling {
    padding: 3rem 2.4rem;
  }
  .counseling .__inner {
    max-width: 100%;
    padding: 2rem 2.7rem 3.5rem;
    border-radius: 2rem;
  }
  .counseling h2 {
    margin-bottom: 2rem;
    font-size: 2.4rem;
    font-weight: 3.4rem;
  }
  .counseling p {
    font-size: 1.5rem;
    letter-spacing: 0;
  }
  .counseling .btn {
    font-size: 1.7rem;
  }
}

#company {
  padding: 5rem 0;
  border-bottom: 0.1rem solid #D9D9D9;
}
#company .__inner {
  max-width: 80rem;
}

.company__info__list_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}
.company__info__list_item dt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 16rem;
  padding: 1.6rem 1rem;
  border-bottom: 0.1rem solid #87C8C0;
  font-size: 1.6rem;
  font-weight: 700;
  color: #000;
}
.company__info__list_item dd {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  padding: 1.6rem 2rem 1.6rem 5rem;
  border-bottom: 0.1rem solid #D9D9D9;
  font-size: 1.5rem;
  color: #333;
}
@media screen and (max-width: 767px) {
  .company__info__list_item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-bottom: 0.6rem;
  }
  .company__info__list_item:last-child {
    margin-bottom: 0;
  }
  .company__info__list_item dt {
    width: 100%;
    padding: 1rem;
  }
  .company__info__list_item dd {
    padding: 1rem;
    border: 0;
  }
}