@charset "UTF-8";
/*=======================
    変数定義・関数
========================*/
* {
  font-family: "M PLUS 1p", sans-serif;
  line-height: 1.7;
  letter-spacing: 1px;
  min-width: 0;
  min-height: 0;
  color: #002f57;
}
@media screen and (max-width: 1024px) {
  * {
    font-size: 14px;
  }
}

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

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

img {
  width: 100%;
}

.button {
  background-color: #f59752;
  color: #ffffff;
  padding: 12px 24px;
  border-radius: 100px;
}
@media screen and (max-width: 1024px) {
  .button {
    font-size: 16px;
  }
}
.button:hover {
  background-color: #ff974d;
}

main {
  overflow: hidden;
}

section {
  padding: 120px 5%;
}
@media screen and (max-width: 1024px) {
  section {
    padding: 64px 5%;
  }
}
section .section__subtitle {
  text-align: center;
}
@media screen and (max-width: 1024px) {
  section .section__subtitle {
    font-size: 14px;
  }
}
section .section__title {
  display: inline-block;
  text-align: center;
  font-size: 32px;
  font-weight: 500;
  margin-top: 16px;
}
@media screen and (max-width: 1024px) {
  section .section__title {
    font-size: 20px;
    margin-top: 8px;
  }
}

details[open] .details-content {
  -webkit-animation: fadeIn 0.5s ease;
          animation: fadeIn 0.5s ease;
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0; /* 透明 */
    transform: translateY(-10px); /* 上から表示 */
  }
  100% {
    opacity: 1;
    transform: none;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0; /* 透明 */
    transform: translateY(-10px); /* 上から表示 */
  }
  100% {
    opacity: 1;
    transform: none;
  }
}
summary {
  position: relative;
  display: flex; /* デフォルトの矢印を消す */
  align-items: center;
}
summary::-webkit-details-marker {
  display: none; /* デフォルトの矢印を消す */
}
summary:before {
  position: absolute;
  top: 24px;
  right: 24px;
  content: url("../img/QA_botton_open.svg"); /* 画像URLを指定 */
}
@media screen and (max-width: 1024px) {
  summary:before {
    top: calc(50% - 15px);
    right: 0;
  }
}

/*=======================
    header
========================*/
header {
  position: fixed;
  width: 100%;
  z-index: 5;
}
@media screen and (max-width: 1024px) {
  header {
    height: 80px;
    text-align: left;
  }
}
header.change-color {
  background-color: #fffffff9;
  transition: all 0.5s;
}
header .header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px 40px;
}
header .header__nav__list {
  display: flex;
  justify-content: right;
  align-items: center;
}
@media screen and (max-width: 1024px) {
  header .header__nav__list {
    display: none;
  }
}
header .header__nav__list .header__nav__list__item {
  margin: 0 12px;
}
header .header__nav__list .header__nav__list__item:last-child {
  margin-right: 0;
}
header .header__logo img {
  width: 111px;
}

.header__hamburger {
  display: none;
  text-align: center;
}
.header__hamburger .header__logo {
  text-align: left;
  padding: 30px 40px;
}
.header__hamburger .nav__bottom-item {
  padding-bottom: 20px;
}
.header__hamburger .nav__bottom-item .nav-icon {
  display: flex;
  justify-content: center;
}
.header__hamburger .nav__bottom-item .nav-icon .nav-icon-x-img {
  margin: 0 12px;
}
.header__hamburger .nav__bottom-item .nav-nav {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}
@media screen and (max-width: 1024px) {
  .header__hamburger .nav__bottom-item .nav-nav {
    flex-wrap: wrap;
  }
}
.header__hamburger .nav__bottom-item .nav-nav .nav-nav-item {
  font-size: 13px;
  margin: 0 12px;
}
.header__hamburger .nav__bottom-item .nav-copy {
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  opacity: 0.6;
  margin-top: 40px;
}
@media screen and (max-width: 1024px) {
  .header__hamburger {
    display: inline-block;
    /*============
      nav
      =============*/
    /*============
      .toggle_btn
      =============*/
    /*============
      #mask
      =============*/
  }
  .header__hamburger nav {
    display: block;
    position: fixed;
    top: -100%;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: #ffffff;
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    transition: all 0.5s;
    z-index: 3;
    opacity: 0;
  }
  .header__hamburger .open nav {
    top: 0;
    opacity: 1;
    z-index: 5;
    display: flex;
    flex-flow: column;
    justify-content: space-between;
    overflow: hidden;
  }
  .header__hamburger nav .inner {
    width: 100vw;
    padding: 0 20px;
    display: flex;
  }
  .header__hamburger nav .inner ul {
    width: 100%;
    text-align: center;
    list-style: none;
    margin: 0;
    padding: 0;
  }
  .header__hamburger nav .inner ul li {
    position: relative;
    margin-bottom: 32px;
  }
  .header__hamburger .header__humburger__item a {
    display: block;
    text-decoration: none;
    transition-duration: 0.2s;
  }
  .header__hamburger .header__humburger__item a::after {
    position: absolute;
    bottom: -6px;
    left: 32%;
    content: "";
    width: 35%;
    height: 1px;
    transform: scale(0, 1);
    transform-origin: right top;
    transition: transform 0.3s;
  }
  .header__hamburger .header__humburger__item a:hover {
    opacity: 0.6;
  }
  .header__hamburger .header__humburger__item__title {
    font-weight: bold;
  }
  .header__hamburger .header__humburger__item__subTitle {
    font-size: 14px;
  }
  .header__hamburger .button {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto;
  }
  .header__hamburger .toggle_btn {
    display: block;
    position: fixed;
    top: 18px;
    right: 10px;
    width: 30px;
    height: 30px;
    transition: all 0.5s;
    cursor: pointer;
    z-index: 6;
    height: 78px;
    top: 0;
    right: 0;
    width: 70px;
  }
  .header__hamburger .toggle_btn span {
    display: block;
    position: absolute;
    left: 20px;
    width: 30px;
    height: 1px;
    background-color: #002f57;
    border-radius: 4px;
    transition: all 0.5s;
  }
  .header__hamburger .toggle_btn span:nth-child(1) {
    top: 28px;
  }
  .header__hamburger .toggle_btn span:nth-child(2) {
    top: 37px;
  }
  .header__hamburger .toggle_btn span:nth-child(3) {
    bottom: 30px;
  }
  .header__hamburger .open .toggle_btn span {
    background-color: #002f57;
  }
  .header__hamburger .open .toggle_btn span:nth-child(1) {
    transform: translateY(10px) rotate(-315deg);
  }
  .header__hamburger .open .toggle_btn span:nth-child(2) {
    opacity: 0;
  }
  .header__hamburger .open .toggle_btn span:nth-child(3) {
    transform: translateY(-10px) rotate(315deg);
  }
  .header__hamburger #mask {
    display: none;
    transition: all 0.5s;
  }
  .header__hamburger .open #mask {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    z-index: 2;
    cursor: pointer;
  }
}

.kv {
  height: calc(100vh + 30px);
  background-image: url(../img/kv_pc.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  overflow: hidden;
}
@media screen and (max-width: 760px) {
  .kv {
    background-image: url(../img/kv_sp.png);
    background-position-y: bottom;
  }
}
.kv .kv__text {
  font-size: 85%;
}
.kv .kv-txt-box {
  padding: 0 0 0 10%;
  padding-top: calc(50vh - 100px);
  color: #102e54;
}
@media screen and (max-width: 500px) {
  .kv .kv-txt-box {
    padding-top: 50vh;
    background-image: url(../img/kv_bg.png);
    background-size: contain;
    background-position: bottom left;
    background-repeat: no-repeat;
    padding-left: 5%;
  }
}
@media screen and (max-width: 500px) {
  .kv .kv-txt-box {
    width: 100%;
  }
}
.kv .kv-txt-box .link-LINE-Box {
  text-align: left;
}
.kv .kv-txt-box .kv__img--bubble,
.kv .kv-txt-box .kv__img--circle,
.kv .kv-txt-box .kv__img--parson {
  position: absolute;
}
.kv .kv-txt-box .kv__img--bubble img,
.kv .kv-txt-box .kv__img--circle img,
.kv .kv-txt-box .kv__img--parson img {
  width: 100%;
}
.kv .kv-txt-box .kv__img--bubble {
  width: 135px;
  top: calc(25vh - 150px);
  right: -150px;
}
@media screen and (max-width: 760px) {
  .kv .kv-txt-box .kv__img--bubble {
    width: 90px;
    right: -50px;
  }
}
@media screen and (max-width: 500px) {
  .kv .kv-txt-box .kv__img--bubble {
    right: -10px;
  }
}
.kv .kv-txt-box .kv__img--circle {
  width: 200px;
  bottom: -150px;
  left: -250px;
}
@media screen and (max-width: 760px) {
  .kv .kv-txt-box .kv__img--circle {
    width: 120px;
    left: 10px;
    bottom: -40vh;
  }
}
.kv .kv-txt-box .kv__img--parson {
  width: 200px;
  bottom: -150px;
  right: -250px;
}
@media screen and (max-width: 760px) {
  .kv .kv-txt-box .kv__img--parson {
    width: 120px;
    right: 10px;
    bottom: -40vh;
  }
}
.kv .kv-ttl-h3 {
  font-size: 3rem;
  font-weight: 500;
}
@media screen and (max-width: 760px) {
  .kv .kv-ttl-h3 {
    font-size: 32px;
  }
}
.kv .kv-ttl-h3 img {
  max-width: 430px;
}
@media screen and (max-width: 760px) {
  .kv .kv-ttl-h3 img {
    max-width: 280px;
  }
}
.kv .contact-LINE {
  margin-top: 40px;
}
@media screen and (max-width: 760px) {
  .kv .contact-LINE {
    margin-top: 20px;
  }
}
.kv .link-counselor-Box {
  font-size: 14px;
  margin-top: 16px;
}
@media screen and (max-width: 1024px) {
  .kv .link-counselor-Box {
    font-size: 13px;
  }
}
.kv .link-counselor-Box a {
  text-decoration: underline;
  text-underline-offset: 5px;
}
.kv .kv_button {
  display: block;
  margin: 0 auto;
  width: 90%;
  max-width: 380px;
}
.kv .kv_button img {
  width: 100%;
}
@media screen and (max-width: 760px) {
  .kv .kv_button {
    max-width: 300px;
  }
}

.section--campaign {
  background-color: #18acb7;
  padding: 55px 5%;
}
@media screen and (max-width: 760px) {
  .section--campaign {
    padding: 30px 5%;
  }
}
.section--campaign .campaign__title {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  max-width: 430px;
}
@media screen and (max-width: 760px) {
  .section--campaign .campaign__title {
    max-width: 300px;
  }
}
.section--campaign .campaign__title img {
  width: 100%;
}
.section--campaign .campaign__price-wrapper {
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 1024px) {
  .section--campaign .campaign__price-wrapper {
    flex-flow: column;
    align-items: center;
    margin-top: 1.5rem;
  }
}
.section--campaign .campaign__price-wrapper .campaign__price__text {
  color: #fff;
  font-size: 1.6rem;
  font-weight: bold;
  margin-right: 1rem;
}
@media screen and (max-width: 760px) {
  .section--campaign .campaign__price-wrapper .campaign__price__text {
    font-size: 1.2rem;
  }
}
.section--campaign .campaign__price-wrapper .price {
  color: #fff;
  font-size: 3rem;
  font-weight: bold;
  font-family: "Roboto", sans-serif;
  line-height: 1;
  margin-left: -2.8rem;
}
@media screen and (max-width: 1024px) {
  .section--campaign .campaign__price-wrapper .price {
    margin-left: 0;
  }
}
@media screen and (max-width: 760px) {
  .section--campaign .campaign__price-wrapper .price {
    font-size: 2.4rem;
  }
}
.section--campaign .campaign__price-wrapper .unit {
  color: #fff;
  font-size: 1.8rem;
  font-weight: bold;
}
@media screen and (max-width: 760px) {
  .section--campaign .campaign__price-wrapper .unit {
    font-size: 1.2rem;
  }
}
.section--campaign .campaign__price-wrapper .small {
  color: #fff;
  font-size: 1.2rem;
  font-weight: bold;
}
.section--campaign .campaign__price-wrapper .campaign__price__img {
  width: 90%;
  max-width: 500px;
}
.section--campaign .campaign__attention {
  position: relative;
  width: 90%;
  max-width: 540px;
  color: #102e54;
  font-weight: bold;
  border-radius: 4px;
  padding: 15px 20px;
  background-color: #fff;
  margin: 2rem auto 2rem auto;
}
.section--campaign .campaign__attention .orange {
  color: #f59752;
}
@media screen and (max-width: 1024px) {
  .section--campaign .campaign__attention {
    padding-right: 80px;
    margin-bottom: 0;
  }
}
.section--campaign .campaign__attention__img {
  position: absolute;
  bottom: 0;
  right: 20px;
}
@media screen and (max-width: 500px) {
  .section--campaign .campaign__attention__img {
    bottom: -30px;
    right: 0px;
  }
}

.bg-arrow > div {
  position: relative;
  z-index: 2;
  min-height: 500px;
}

.bg-arrow {
  position: relative;
  background-color: #18acb7;
}

.bg-arrow:before {
  content: "";
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  margin-top: -30px;
  border-style: solid;
  border-color: transparent #18acb7 transparent;
  border-width: 30px 50vw 0;
}

.bg-arrow.--solution:before {
  content: "";
  position: absolute;
  display: block;
  border-color: transparent #f9fbfc transparent;
}

.section--step {
  background-color: #dceff0;
  color: #102e54;
}
.section--step .step__title__wrapper {
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
.section--step .step__title__wrapper .step__title {
  text-align: center;
  color: #102e54;
  font-size: 1.2rem;
  font-weight: bold;
}
.section--step .step__title__wrapper .step__title .number {
  font-family: "Roboto", sans-serif;
  color: #102e54;
  font-size: 3.8rem;
  font-weight: bold;
}
.section--step .step__title__wrapper .step__title .step {
  color: #102e54;
  font-size: 2.6rem;
  font-weight: bold;
}
.section--step .step__title__wrapper .step__title--left {
  position: absolute;
  top: 0;
  left: -80px;
}
@media screen and (max-width: 500px) {
  .section--step .step__title__wrapper .step__title--left {
    width: 60px;
    top: auto;
    left: -30px;
    bottom: 0;
  }
}
.section--step .step__title__wrapper .step__title--right {
  position: absolute;
  top: 0;
  right: -80px;
}
@media screen and (max-width: 500px) {
  .section--step .step__title__wrapper .step__title--right {
    width: 60px;
    top: auto;
    right: -30px;
    bottom: 0;
  }
}
.section--step .step__list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  max-width: 1200px;
  margin: 30px auto 0 auto;
}
@media screen and (max-width: 1024px) {
  .section--step .step__list {
    grid-template-columns: 1fr;
    margin-top: 0;
  }
}
.section--step .step__list__item {
  text-align: center;
  background-color: #fff;
  margin: 0 15px;
  padding: 30px;
  border-radius: 6px;
}
@media screen and (max-width: 1024px) {
  .section--step .step__list__item {
    display: flex;
    text-align: left;
    margin: 20px 0 0 0;
    padding: 20px;
  }
  .section--step .step__list__item:first-child {
    margin-top: 0;
  }
}
@media screen and (max-width: 1024px) {
  .section--step .step__list__item .step__list__item__text__wrapper {
    margin-left: 15px;
    width: calc(100% - 90px);
  }
}
.section--step .step__list__item .step__list__item__title {
  font-size: 1.4rem;
  font-weight: bold;
  margin-top: 15px;
}
@media screen and (max-width: 760px) {
  .section--step .step__list__item .step__list__item__title {
    font-size: 1.2rem;
    margin-top: 0;
  }
}
.section--step .step__list__item .step__list__item__title .number {
  color: #18a2ac;
  margin-right: 5px;
  font-size: 1.5rem;
  font-weight: bold;
}
@media screen and (max-width: 760px) {
  .section--step .step__list__item .step__list__item__title .number {
    font-size: 1.4rem;
  }
}
.section--step .step__list__item .step__list__item__text {
  text-align: left;
  margin-top: 8px;
}
.section--step .step__list__item img {
  width: auto;
  height: 120px;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .section--step .step__list__item img {
    width: 90px;
    height: auto;
  }
}

.section-example {
  background-color: #f5f6f6;
}
.section-example .section-example-ttl {
  text-align: center;
}
.section-example .example__item__wrapper {
  display: flex;
  justify-content: center;
  max-width: 1200px;
  margin: 80px auto 0 auto;
}
@media screen and (max-width: 1024px) {
  .section-example .example__item__wrapper {
    flex-flow: column;
    align-items: center;
  }
}
.section-example .example__item__wrapper .section-example-item {
  width: calc(33% - 80px);
  text-align: center;
  margin: 0 40px;
}
@media screen and (max-width: 1024px) {
  .section-example .example__item__wrapper .section-example-item {
    max-width: 450px;
    width: 90%;
    margin-top: 48px;
  }
}
.section-example .example__item__wrapper .section-example-item .example-text {
  font-weight: 500;
  margin-top: 24px;
}
.section-example .example__item__wrapper .section-example-item .example-img {
  height: 140px;
}
.section-example .example__item__wrapper .section-example-item .example-img img {
  width: auto;
}

.section-kimochi .seciton-kimochi-introduction-ttl {
  text-align: center;
}
.section-kimochi .section-kimochi__item__wrapper {
  display: flex;
  justify-content: space-around;
  max-width: 1200px;
  width: 90%;
  margin: 80px auto 0 auto;
}
@media screen and (max-width: 1024px) {
  .section-kimochi .section-kimochi__item__wrapper {
    flex-flow: column-reverse;
    align-items: center;
  }
}
.section-kimochi .section-kimochi__item__wrapper:nth-child(odd) {
  flex-flow: row-reverse;
}
@media screen and (max-width: 1024px) {
  .section-kimochi .section-kimochi__item__wrapper:nth-child(odd) {
    flex-flow: column-reverse;
  }
}
.section-kimochi .section-kimochi__item__text {
  width: 40%;
  max-width: 470px;
}
@media screen and (max-width: 1024px) {
  .section-kimochi .section-kimochi__item__text {
    max-width: 450px;
    width: 90%;
  }
}
.section-kimochi .section-kimochi__item__text .section-kimoti-number {
  color: #dceff0;
  font-size: 4rem;
  font-weight: bold;
}
@media screen and (max-width: 1024px) {
  .section-kimochi .section-kimochi__item__text .section-kimoti-number {
    font-size: 40px;
  }
}
.section-kimochi .section-kimochi__item__text .section-kimochi-sub-ttl {
  color: #18a2ac;
  font-size: 1.05rem;
  font-weight: 500;
  margin-top: 16px;
}
.section-kimochi .section-kimochi__item__text .section-kimochi-ttl {
  font-size: 32px;
  font-weight: 500;
  margin-top: 16px;
}
@media screen and (max-width: 1024px) {
  .section-kimochi .section-kimochi__item__text .section-kimochi-ttl {
    font-size: 18px;
  }
}
.section-kimochi .section-kimochi__item__text .section-kimoch-txt {
  margin-top: 16px;
}
@media screen and (max-width: 1024px) {
  .section-kimochi .section-kimochi__item__text .section-kimoch-txt {
    font-size: 14px;
  }
}
.section-kimochi .section-kimochi-img {
  width: 40%;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 1024px) {
  .section-kimochi .section-kimochi-img {
    width: 100%;
  }
}
@media screen and (max-width: 1024px) {
  .section-kimochi .contact-LINE-sub-ttl,
.section-kimochi .link-LINE-Box {
    transform: scale(-1, 1);
  }
}

.contact-LINE-img__wrapper {
  position: relative;
  background-image: url(../img/kv_pc.png);
  background-position: center bottom 35%;
  background-size: cover;
  max-width: 1200px;
  margin: 130px auto 0 auto;
  border-radius: 40px;
  padding: 100px 0;
}
@media screen and (max-width: 1024px) {
  .contact-LINE-img__wrapper {
    margin-top: 64px;
    transform: scale(-1, 1);
  }
}
@media screen and (max-width: 760px) {
  .contact-LINE-img__wrapper {
    background-position: left 70% bottom 35%;
    background-size: 300%;
  }
}
.contact-LINE-img__wrapper:before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #18a2acaa;
  border-radius: 40px;
}

.contact-LINE-sub-ttl {
  position: relative;
  color: #ffffff;
  font-size: 18px;
  text-align: center;
  z-index: 2;
}

.link-LINE-Box {
  text-align: center;
  margin-top: 20px;
}

.link-LINE {
  position: relative;
  font-size: 20px;
  padding: 12px 3rem;
  z-index: 2;
}
@media screen and (max-width: 1024px) {
  .link-LINE {
    font-size: 16px;
    padding: 12px 32px;
  }
}

.section__coupon {
  padding: 0;
  background-color: #e2f5f6;
}
.section__coupon .coupon__img__wrapper {
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
}
.section__coupon .coupon__img__wrapper img {
  width: 100%;
}

.section__cta {
  background-color: rgba(24, 162, 172, 0.9294117647);
  padding: 0;
}
.section__cta .cta__wrapper {
  position: relative;
  max-width: 500px;
  margin: 0 auto;
}
.section__cta .cta__button {
  position: absolute;
  width: 90%;
  bottom: 27%;
  left: 5%;
  -webkit-animation: scaleAnimation 1.5s infinite ease-in-out;
          animation: scaleAnimation 1.5s infinite ease-in-out;
}
.section__cta .cta__button.consultation {
  bottom: 35%;
}
.section__cta img {
  width: 100%;
}

@-webkit-keyframes scaleAnimation {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}

@keyframes scaleAnimation {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}
@media screen and (max-width: 760px) {
  .section-consultation {
    padding-bottom: 0;
  }
}
.section-consultation .section-consultation-header {
  text-align: center;
}
.section-consultation .consultation-item-box__wrapper {
  max-width: 1000px;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  margin: 0 auto;
}
@media screen and (max-width: 1024px) {
  .section-consultation .consultation-item-box__wrapper {
    flex-flow: column;
  }
}
.section-consultation .consultation-item-box__wrapper .consultation-item-box {
  width: calc(50% - 20px);
}
@media screen and (max-width: 1024px) {
  .section-consultation .consultation-item-box__wrapper .consultation-item-box {
    width: 90%;
  }
}
.section-consultation .consultation-item-box__wrapper .consultation-item-title {
  position: relative;
  font-size: 24px;
  font-weight: 500;
  padding-left: 24px;
  margin-top: 80px;
}
@media screen and (max-width: 1024px) {
  .section-consultation .consultation-item-box__wrapper .consultation-item-title {
    font-size: 18px;
    margin-top: 48px;
  }
}
.section-consultation .consultation-item-box__wrapper .consultation-item-title::before {
  content: "";
  position: absolute;
  top: calc(50% - 5px);
  left: 0;
  background-color: #18a2ac;
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.section-consultation .consultation-item-box__wrapper .consultation-item-list {
  display: flex;
  flex-wrap: wrap;
  margin-top: 24px;
  padding-left: 24px;
}
@media screen and (max-width: 1024px) {
  .section-consultation .consultation-item-box__wrapper .consultation-item-list {
    margin-top: 16px;
  }
}
.section-consultation .consultation-item-box__wrapper .consultation-item-list .consultation-item {
  background-color: #e9f1f1;
  font-size: 14px;
  padding: 6px 12px;
  margin: 6px;
  border-radius: 100px;
}
@media screen and (max-width: 1024px) {
  .section-consultation .consultation-item-box__wrapper .consultation-item-list .consultation-item {
    font-size: 12px;
  }
}
.section-consultation .consultation__text {
  margin-top: 4rem;
  text-align: center;
  font-size: 1.4rem;
  font-weight: 500;
  font-family: "Zen Kaku Gothic New", sans-serif;
}
.section-consultation .support__img__wrapper {
  margin: 2rem auto 0 auto;
  max-width: 500px;
}
@media screen and (max-width: 500px) {
  .section-consultation .support__img__wrapper {
    margin-right: -8%;
  }
}
.section-consultation .support__img__wrapper img {
  width: 100%;
}

.section-merit {
  background-color: #f1f9f9;
}
.section-merit .section-merit-ttl {
  text-align: center;
}
.section-merit .merit-item-box__wrapper {
  max-width: 1000px;
  display: flex;
  justify-content: space-between;
  margin: 64px auto 0 auto;
}
@media screen and (max-width: 1024px) {
  .section-merit .merit-item-box__wrapper {
    flex-flow: column;
    align-items: center;
    margin-top: 40px;
  }
}
.section-merit .merit-item-box__wrapper .merit-item-box {
  width: calc(33.3333333333% - 20px);
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .section-merit .merit-item-box__wrapper .merit-item-box {
    max-width: 450px;
    width: 90%;
    margin-top: 40px;
  }
  .section-merit .merit-item-box__wrapper .merit-item-box:first-child {
    margin-top: 0;
  }
}
.section-merit .merit-item-box__wrapper .merit-itme-ttl {
  font-size: 18px;
  font-weight: 500;
  margin-top: 24px;
}
.section-merit .merit-item-box__wrapper .merit-item-txt {
  font-size: 14px;
  text-align: left;
  margin-top: 8px;
}
.section-merit .merit-item-img {
  width: 80%;
  max-width: 280px;
  margin: 0 auto;
}

.section__plan {
  padding-bottom: 0;
}
.section__plan .seciton-plan-ttl {
  text-align: center;
}
.section__plan .plan-item-box__wrapper {
  max-width: 500px;
  margin: 2rem auto 0 auto;
}
.section__plan .price__list__item {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 0 1rem 0;
  padding: 1rem 1rem 1rem 2rem;
  box-shadow: 0px 0px 10px 0px rgba(2, 35, 63, 0.0509803922);
}
.section__plan .price__list__item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background-color: #74c7cd;
}
.section__plan .price__list__item:nth-of-type(2)::before {
  background-color: #74b2cd;
}
.section__plan .price__list__item:nth-of-type(3)::before {
  background-color: #748dcd;
}
.section__plan .price__list__item .price__list__item__desc {
  width: 75%;
}
.section__plan .price__list__item .price__list__item__desc .target {
  font-size: 0.9rem;
}
.section__plan .price__list__item .price__list__item__desc .name {
  font-size: 1.4rem;
  font-weight: 500;
}
.section__plan .price__list__item .price__list__item__desc .times {
  font-size: 0.9rem;
}
.section__plan .price__list__item .price__list__item__desc .times .orange {
  color: #f59752;
}
.section__plan .price__list__item .price__list__item__tax .price {
  font-size: 0.9rem;
  text-align: right;
}
.section__plan .price__list__item .price__list__item__tax .large {
  font-size: 1.2rem;
  font-weight: 500;
}
.section__plan .price__list__item .price__list__item__tax .unit {
  font-weight: 500;
}
.section__plan .price__img__wrapper {
  width: 30%;
  max-width: 180px;
  text-align: center;
  margin: 3rem auto 0 auto;
}

.swiper {
  width: 100%;
  height: 350px;
  margin: 80px 0 0 10%;
}
@media screen and (max-width: 1024px) {
  .swiper {
    margin-top: 40px;
    margin-left: 5%;
  }
}

.swiper-wrapper {
  width: 100%;
  height: 300px;
}
@media screen and (max-width: 1024px) {
  .swiper-wrapper {
    padding-left: 5px;
  }
}
.swiper-wrapper .swiper-slide {
  width: 300px;
  height: auto;
  padding-top: 5px;
}

.section-counselor {
  padding: 0 0 120px 0;
  overflow: hidden;
}
@media screen and (max-width: 1024px) {
  .section-counselor {
    padding: 80px 0;
  }
}
.section-counselor .section-counselor-ttl {
  text-align: center;
}
.section-counselor .counselor-status {
  height: 300px;
  padding: 24px;
  border-radius: 24px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}
.section-counselor .counselor-status img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
}
.section-counselor .counselor-status__top {
  display: flex;
}
.section-counselor .counselor-status-txt {
  margin-left: 16px;
  width: calc(100% - 80px);
}
.section-counselor .counselor-status-txt .counselor-name {
  font-weight: 500;
}
.section-counselor .counselor-status-txt .counselor-contents__wrapper {
  display: flex;
  flex-wrap: wrap;
  margin-top: 6px;
}
.section-counselor .counselor-status-txt .counselor-contents {
  font-size: 12px;
  background-color: #f1f9f9;
  margin: 0 6px 6px 0;
  padding: 0 4px;
}
.section-counselor .counselor-message-txt {
  font-size: 14px;
  margin-top: 16px;
}
@media screen and (max-width: 1024px) {
  .section-counselor .link-LINE {
    font-size: 14px;
  }
}
.section-counselor .link-LINE .yellow {
  color: #fffa77;
}

.section-plan {
  background-color: #18a2ac;
}
.section-plan .seciton-plan-ttl {
  text-align: center;
}
.section-plan .section__subtitle,
.section-plan .section__title {
  color: #ffffff;
}
.section-plan .plan-item-box__wrapper {
  display: flex;
  align-items: center;
  flex-flow: column;
  max-width: 1000px;
  margin: 64px auto 0 auto;
}
@media screen and (max-width: 1024px) {
  .section-plan .plan-item-box__wrapper {
    flex-flow: column;
    align-items: center;
    margin-top: 40px;
  }
}
.section-plan .plan-item-box__wrapper .plan-item-box {
  width: calc(50% - 20px);
  background-color: #ffffff;
  border-radius: 9px;
  padding: 24px;
  box-shadow: 1px 1px 12px #ffffff;
  margin-top: 16px;
}
@media screen and (max-width: 1024px) {
  .section-plan .plan-item-box__wrapper .plan-item-box {
    width: 90%;
    max-width: 450px;
    margin-top: 16px;
  }
}
.section-plan .plan-item-box__wrapper .plan-name {
  font-size: 18px;
  font-weight: 500;
}
.section-plan .plan-item-box__wrapper .plan__desc {
  padding-bottom: 12px;
  border-bottom: 1px solid #ebebeb;
}
.section-plan .plan-item-box__wrapper .plan__desc .blue {
  color: #18a2ac;
}
.section-plan .plan-item-box__wrapper .plan-rate {
  display: flex;
  align-items: baseline;
  font-size: 18px;
  font-weight: 500;
  margin-top: 12px;
}
@media screen and (max-width: 1024px) {
  .section-plan .plan-item-box__wrapper .plan-rate {
    font-size: 14px;
  }
}
.section-plan .plan-item-box__wrapper .plan-rate .plan-rate__first {
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  align-self: center;
  color: #ffffff;
  background-color: #f59752;
  border-radius: 3px;
  padding: 4px 8px;
  margin-right: 4px;
}
@media screen and (max-width: 1024px) {
  .section-plan .plan-item-box__wrapper .plan-rate .plan-rate__first {
    font-size: 13px;
    padding: 2px 4px;
  }
}
.section-plan .plan-item-box__wrapper .plan-rate .price {
  font-size: 32px;
}
@media screen and (max-width: 1024px) {
  .section-plan .plan-item-box__wrapper .plan-rate .price {
    font-size: 20px;
  }
}
.section-plan .plan-item-box__wrapper .plan-time {
  margin-top: 4px;
}
.section-plan .plan-notes {
  max-width: 1000px;
  margin: 24px auto 0 auto;
}
.section-plan .plan-notes-txt {
  color: #ffffff;
  font-size: 13px;
  text-align: left;
}
.section-plan .contact-LINE {
  margin-top: 64px;
}

.section--problem {
  position: relative;
  background-color: #abbcc1;
  padding-bottom: 250px;
  padding-top: 40px;
}
@media screen and (max-width: 500px) {
  .section--problem {
    padding-bottom: 64px;
  }
}
.section--problem:after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 450px;
  background-image: url(../img/problem_bottom_img.png);
  background-size: cover;
  background-position: top right 35%;
  margin: 0 auto;
}
@media screen and (max-width: 760px) {
  .section--problem:after {
    background-position: top right 40%;
    height: 350px;
  }
}
@media screen and (max-width: 500px) {
  .section--problem:after {
    height: 250px;
  }
}
.section--problem .section--problem__top {
  text-align: center;
}
.section--problem .section--problem__list__title {
  color: #ffffff;
  font-size: 1.4em;
  font-weight: bold;
  margin-bottom: 20px;
}
.section--problem .section--problem__list__title span {
  color: #ffffff;
  font-size: 1.5rem;
  font-weight: bold;
}
.section--problem .section--problem__list__wrapper {
  padding: 0;
  background-color: rgba(0, 46, 87, 0.2431372549);
  border-radius: 4px;
  padding: 20px 8px;
  text-align: left;
  max-width: 660px;
  margin: 0 auto 20px auto;
}
.section--problem .section--problem__list__wrapper .section--problem__list {
  max-width: 480px;
  margin: 0 auto;
}
.section--problem .section--problem__list__wrapper .section--problem__listItem {
  color: #fff;
  margin-bottom: 6px;
  font-family: "Kiwi Maru";
  font-size: 1.2rem;
}
@media screen and (max-width: 500px) {
  .section--problem .section--problem__list__wrapper .section--problem__listItem {
    font-size: 1rem;
  }
}
.section--problem .section--problem__list__wrapper .section--problem__list__img {
  width: 90%;
  margin: 0 auto;
  max-width: 480px;
}
.section--problem .section--problem__list__wrapper .section--problem__list__img img {
  width: 100%;
}
.section--problem .section--problem__bottom {
  position: relative;
  z-index: 2;
}
.section--problem .section--problem__bottom .section--problem__bottom__text {
  max-width: 380px;
  text-align: right;
  margin: 0 auto;
}
.section--problem .section--problem__bottom .section--problem__bottom__text span {
  background-color: #ffffff;
  padding: 4px;
  color: #18a2ac;
  font-family: "Kiwi Maru", serif;
  font-size: 1.5rem;
  line-height: 2.4;
}

.section--solution {
  background: url("../img/common/login-bg.svg") #f9fbfc;
  background-size: cover;
  padding: 80px 5% 0;
}
@media screen and (max-width: 760px) {
  .section--solution {
    padding: 40px 5% 0;
  }
}
.section--solution .section--solution__subtitle {
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  text-align: center;
  font-weight: bold;
  font-size: 1.2rem;
  margin: 0 auto 0.5rem auto;
  padding: 0 20px;
}
@media screen and (max-width: 760px) {
  .section--solution .section--solution__subtitle {
    font-size: 1.1rem;
  }
}
.section--solution .section--solution__subtitle .blue {
  font-size: 1.2rem;
  color: #18a2ac;
}
.section--solution .section--solution__subtitle::before {
  content: "";
  position: absolute;
  top: 4px;
  left: 0;
  width: 16px;
  height: 16px;
  background-image: url("../img/text_line.svg");
  background-repeat: no-repeat;
}
.section--solution .section--solution__subtitle::after {
  content: "";
  position: absolute;
  top: 4px;
  right: 0;
  width: 16px;
  height: 16px;
  background-image: url("../img/text_line.svg");
  background-repeat: no-repeat;
  transform: scale(-1, 1);
}
.section--solution .section--solution__title {
  text-align: center;
  font-size: 1.5rem;
  font-weight: 500;
}
.section--solution .section--solution__title img {
  width: 150px;
  margin-right: 10px;
  vertical-align: sub;
}
.section--solution .section--solution__list {
  background-color: #ffffff;
  width: 100%;
  max-width: 440px;
  margin: 20px auto 0 auto;
  padding: 20px 14px;
  border-radius: 10px;
}
.section--solution .section--solution__list .section--solution__list__item {
  display: flex;
  margin-bottom: 20px;
}
.section--solution .section--solution__list .section--solution__list__item:last-child {
  margin-bottom: 0;
}
.section--solution .section--solution__list .section--solution__list__item .list_title {
  font-size: 14px;
  background-color: #4eb9c4;
  border-radius: 50%;
  width: 62px;
  height: 62px;
  text-align: center;
  color: #ffffff;
  padding-top: 20px;
  font-family: "Kiwi Maru";
}
.section--solution .section--solution__list .section--solution__list__item:nth-of-type(2) .list_title {
  background-color: #ff8686;
}
.section--solution .section--solution__list .section--solution__list__item:nth-child(3) .list_title {
  background-color: #f7b34d;
}
.section--solution .section--solution__list .section--solution__list__item:nth-child(4) .list_title {
  background-color: #a88ef0;
  padding-top: 8px;
}
.section--solution .section--solution__list .section--solution__list__item__list {
  margin-left: 5px;
}
.section--solution .section--solution__list .section--solution__list__item__list li {
  font-family: "Kiwi Maru";
}
.section--solution .section--solution__bottom {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  position: relative;
}
.section--solution .section--solution__bottom .section--solution__bottom__text {
  font-size: 1.4rem;
  text-align: center;
  font-family: "kiwi Maru";
  margin-top: 2rem;
}
.section--solution .section--solution__bottom .solution__img__wrapper {
  text-align: center;
  max-width: 380px;
  margin-top: 2rem;
}
.section--solution .section--solution__bottom .solution__img__wrapper img {
  width: 100%;
}

.section__step {
  background-color: #DCEFF0;
  padding: 0;
}
.section__step .step__img__wrapper {
  max-width: 500px;
  margin: 0 auto;
}
.section__step .step__img__wrapper img {
  width: 100%;
}

.section-user-thoughts {
  background-color: #f1f9f9;
  overflow: hidden;
}
.section-user-thoughts .seciton-user-thoughts-ttl {
  text-align: center;
}
.section-user-thoughts .swiper {
  height: 400px;
}
.section-user-thoughts .swiper-wrapper {
  height: 350px;
}
.section-user-thoughts .swiper-wrapper img {
  position: relative;
  width: 80px;
  height: 80px;
  background-size: cover;
  z-index: 2;
  margin-left: 24px;
}
.section-user-thoughts .user-item-box {
  position: relative;
  background-color: #ffffff;
  height: 350px;
  margin-top: -40px;
  padding: 54px 24px 24px 24px;
  border-radius: 24px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}
.section-user-thoughts .user-item-box .user-thoughts-ttl {
  font-weight: 500;
}
.section-user-thoughts .user-item-box .user-thoughts-txt {
  font-size: 14px;
  margin-top: 8px;
}
.section-user-thoughts .user-item-box .user-status {
  position: absolute;
  bottom: 24px;
  right: 24px;
  text-align: right;
  font-weight: bold;
  margin-top: 16px;
}

.section__thanks {
  padding: 60px 5%;
}
.section__thanks .thanks__title {
  text-align: center;
  font-size: 1.4rem;
  font-weight: 500;
  font-family: "Zen Kaku Gothic New", sans-serif;
}
.section__thanks .thanks__img__wrapper {
  width: 50%;
  max-width: 200px;
  text-align: center;
  margin: 1rem auto 0 auto;
}
.section__thanks .thanks__img__wrapper img {
  width: 100%;
}
.section__thanks .thanks__text__wrapper {
  background-color: #ff8686;
  margin: 2rem auto 0 auto;
  padding: 1rem;
  max-width: 420px;
}
.section__thanks .thanks__text__wrapper p {
  color: #ffffff;
  font-size: 1rem;
}

.section-faq {
  margin: 0 auto;
  padding: 0 0 40px 0;
  background-color: #ffffff;
}
.section-faq .seciton-faq-ttl {
  text-align: center;
}
.section-faq summary {
  position: relative;
  display: block;
  list-style: none;
  cursor: pointer;
}
.section-faq summary:before {
  content: "＋";
  top: 4px;
  right: 0;
  position: absolute;
  font-size: 16px;
  font-weight: bold;
  color: #18a2ac;
  opacity: 0.6;
}
.section-faq details[open] summary:before,
.section-faq summary details[open] summary:before {
  content: "−";
  position: absolute;
  top: 4px;
  right: 0;
  font-size: 18px;
  font-weight: bold;
  color: #18a2ac;
  opacity: 0.6;
}
.section-faq summary::-webkit-details-marker {
  display: none;
}
.section-faq .faq-item-box__wrapper {
  width: 90%;
  max-width: 800px;
  margin: 20px auto 0 auto;
}
.section-faq .faq-item-box {
  padding: 12px;
  border-bottom: 1px solid #dceff0;
}
.section-faq .faq-item-box .faq-item__title__wrapper {
  display: flex;
  align-items: baseline;
}
.section-faq .faq-item-box .faq-item-ttl {
  color: #18a2ac;
  font-size: 20px;
  font-weight: bold;
}
.section-faq .faq-item-box .faq-item-Q {
  font-size: 18px;
  font-weight: 500;
  font-family: "Zen Kaku Gothic New", sans-serif;
  margin: 0 16px;
}
@media screen and (max-width: 1024px) {
  .section-faq .faq-item-box .faq-item-Q {
    font-size: 16px;
    margin-right: 24px;
  }
}
.section-faq .faq-item-box .faq-item-txt-box {
  display: flex;
  align-items: baseline;
  margin-top: 1rem;
}
.section-faq .faq-item-box .faq-item-txt-box .faq-item-answer {
  color: #18a2ac;
  font-size: 20px;
  font-weight: bold;
  opacity: 0.4;
  margin-right: 1rem;
}
.section-faq .faq-item-box .faq-item-txt-box .faq-item-answer p {
  font-family: "Zen Kaku Gothic New", sans-serif;
}

.footer {
  margin-top: 80px;
  padding-bottom: 100px;
}
@media screen and (max-width: 1024px) {
  .footer {
    margin-top: 0px;
  }
}
.footer .footer-icon {
  display: flex;
  justify-content: center;
}
.footer .footer-icon .footer-icon-x-img {
  margin: 0 12px;
}
.footer .footer-nav {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}
@media screen and (max-width: 1024px) {
  .footer .footer-nav {
    flex-wrap: wrap;
  }
}
.footer .footer-nav .footer-nav-item {
  font-size: 13px;
  margin: 0 12px;
}
.footer .footer-copy {
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  opacity: 0.6;
  margin-top: 40px;
}
.footer .fixed-footer {
  display: none;
  position: fixed;
  bottom: 0;
  z-index: 5;
  text-align: center;
  background-color: #fff;
  width: 100%;
  padding: 10px 0 14px 0;
}
.footer .fixed-footer img {
  width: 96%;
  max-width: 400px;
}

.fixedFooter {
  position: fixed;
  bottom: 0;
  width: 100%;
  text-align: center;
  background-color: #fff;
  padding: 10px 0;
  z-index: 20;
}
.fixedFooter .fixedFooter__topText {
  font-weight: bold;
  margin-bottom: -12px;
}
.fixedFooter .fixedFooter__bottomText {
  font-size: 80%;
  font-weight: bold;
}
.fixedFooter .fixedFooter__img {
  width: 90%;
  max-width: 400px;
  margin: 0 auto;
}
/*# sourceMappingURL=style.css.map */