@charset "UTF-8";
/* Scss Document */
/* CSS Document */
/*------------------------------mixin フォント------------------------------*/
@font-face {
  font-family: "Noto Sans JP";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../font/NotoSansJP-Regular.woff2") format("woff2"), url("../font/NotoSansJP-Regular.woff") format("woff");
}
@font-face {
  font-family: "Noto Sans JP";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("../font/NotoSansJP-Medium.woff2") format("woff2"), url("../font/NotoSansJP-Medium.woff") format("woff");
}
@font-face {
  font-family: "Noto Sans JP";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../font/NotoSansJP-Bold.woff2") format("woff2"), url("../font/NotoSansJP-Bold.woff") format("woff");
}
@font-face {
  font-family: "Zen Kaku Gothic New";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../font/ZenKakuGothicNew-Bold.woff2") format("woff2"), url("../font/ZenKakuGothicNew-Bold.woff") format("woff");
}
@font-face {
  font-family: "Zen Kaku Gothic New";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("../font/ZenKakuGothicNew-Medium.woff2") format("woff2"), url("../font/ZenKakuGothicNew-Medium.woff") format("woff");
}
@font-face {
  font-family: "Zen Kaku Gothic New";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../font/ZenKakuGothicNew-Regular.woff2") format("woff2"), url("../font/ZenKakuGothicNew-Regular.woff") format("woff");
}
@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../font/Montserrat-Regular.woff2") format("woff2"), url("../font/Montserrat-Regular.woff") format("woff");
}
@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("../font/Montserrat-Medium.woff2") format("woff2"), url("../font/Montserrat-Medium.woff") format("woff");
}
@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("../font/Montserrat-SemiBold.woff2") format("woff2"), url("../font/Montserrat-SemiBold.woff") format("woff");
}
@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("../font/Montserrat-Bold.woff2") format("woff2"), url("../font/Montserrat-Bold.woff") format("woff");
}
/*------------------------------mixin bg------------------------------*/
/*------------------------------mixin flex------------------------------*/
/*------------------------------基本設定------------------------------*/
html {
  margin-top: 0 !important;
  font-size: 2.5641025641vw;
  font-feature-settings: "palt";
}
@media only screen and (min-width: 1000px) {
  html {
    font-size: 0.694444444vw;
  }
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  color: #000;
  font-size: 1.6rem;
}
body * {
  letter-spacing: 0.05em;
}

img, source {
  width: 100%;
  height: auto;
}

.wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  margin: 0 auto;
  width: 100%;
  overflow: hidden;
}
.wrapper--b-page {
  padding-top: 5.8rem;
  background: #F9F9F9;
}
@media only screen and (min-width: 1000px) {
  .wrapper--b-page {
    padding-top: 0;
  }
}

main {
  flex: 1;
  width: 100vw;
  background: #F9F9F9;
  color: #606060;
}

.pc-only {
  display: none;
}
@media only screen and (min-width: 1000px) {
  .pc-only {
    display: block;
  }
}

.sp-only {
  display: block;
}
@media only screen and (min-width: 1000px) {
  .sp-only {
    display: none;
  }
}

@media only screen and (min-width: 1000px) {
  .pc-flex {
    display: flex;
    justify-content: center;
    align-items: center;
  }
}

section {
  position: relative;
  width: 100%;
  margin: 0 auto;
}

@media only screen and (min-width: 1000px) {
  main {
    width: calc(100% - 18rem);
    margin-left: auto;
  }
}

.wrap {
  padding: 6rem 3rem;
}
@media only screen and (min-width: 1000px) {
  .wrap {
    margin: 0 auto;
    padding: 10rem 13rem;
    width: 100%;
    height: 100%;
  }
}

picture {
  display: block;
}

.bold {
  font-weight: 700;
}

.l-blue {
  color: #24B0BA;
}

.font-en {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

/*------------------------------タイトル------------------------------*/
.ttl01 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  align-items: flex-start;
}
.ttl01 .main {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  color: #24B0BA;
  font-size: 4.8rem;
}
@media only screen and (min-width: 1000px) {
  .ttl01 .main {
    font-size: 9.6rem;
  }
}
.ttl01 .sub {
  margin-top: 0.4rem;
  font-size: 1rem;
  color: #001E3C;
}
@media only screen and (min-width: 1000px) {
  .ttl01 .sub {
    font-size: 1.4rem;
  }
}

.ttl02 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  align-items: flex-start;
  padding-bottom: 2rem;
  border-bottom: 0.1rem solid #D9D9D9;
}
.ttl02 .main {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  color: #24B0BA;
  font-size: 4.8rem;
  line-height: 1.2;
}
@media only screen and (min-width: 1000px) {
  .ttl02 .main {
    font-size: 9.6rem;
  }
}
.ttl02 .sub {
  margin-top: 1.6rem;
  font-size: 2rem;
  font-weight: 700;
  color: #606060;
  line-height: 1.3;
}
@media only screen and (min-width: 1000px) {
  .ttl02 .sub {
    font-size: 2.4rem;
  }
}

.ttl03 {
  text-align: center;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-style: normal;
  color: #001E3C;
  font-weight: bold;
  font-size: 2rem;
}
@media only screen and (min-width: 1000px) {
  .ttl03 {
    text-align: left;
    font-size: 2.8rem;
  }
}

.gradient_ttl {
  animation: AnimationTitle 5s ease infinite;
  background: linear-gradient(91deg, #1E9FD6 0.55%, #2bd4d4 51.66%, #5cbdb8 100%);
  background-size: 200% 100%;
  background-clip: text !important;
  -webkit-background-clip: text !important;
  color: transparent !important;
}

@keyframes AnimationTitle {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
.rotate {
  transform: rotate(0);
  opacity: 0;
  transition: opacity 0.2s ease;
}
.rotate.animate {
  animation: AnimationRotate 2s ease forwards;
  opacity: 1;
}

@keyframes AnimationRotate {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}
/*------------------------------ボタン------------------------------*/
.btn01 {
  display: block;
  padding: 1.8rem 0;
  width: 100%;
  border-radius: 999rem;
  background: #fff;
  filter: drop-shadow(0 0.6rem 1.8rem rgba(0, 30, 60, 0.12));
  text-align: center;
  position: relative;
  transition: 300ms;
}
@media only screen and (min-width: 1000px) {
  .btn01 {
    width: 30rem;
  }
}
.btn01 .deco {
  width: 4rem;
  height: 4rem;
  background: url(../img/btn01_deco.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  position: absolute;
  top: 50%;
  left: 0.8rem;
  transform: translateY(-50%);
  transition: 500ms;
}
.btn01 p {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 1.4rem;
  line-height: 1.6;
  color: #001E3C;
}
.btn01:hover .deco {
  transform: translateY(-50%) translateX(24rem);
}

.btn02 {
  display: block;
  padding: 2rem 0;
  border: 0.2rem solid #fff;
  border-radius: 999rem;
}
.btn02 p {
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 1.6rem;
  font-style: italic;
}
.btn02 p::after {
  content: "";
  margin-left: 0.8rem;
  width: 5.4rem;
  height: 1.6rem;
  background: url(../img/btn02_arrow.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}

.btn03 {
  width: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 1.4rem;
  font-style: italic;
  font-weight: 700;
  line-height: 1.7;
  color: #24B0BA;
}
.btn03::after {
  content: "";
  margin-left: 0.4rem;
  width: 8rem;
  height: 0.8rem;
  background: url(../img/arrow_02.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  position: relative;
  left: 0;
  transition: 150ms;
}
.btn03:hover::after {
  left: 0.4rem;
}

/*------------------------------本文------------------------------*/
.body_txt {
  font-size: 1.6rem;
  line-height: 1.8;
  text-align: justify;
}

/*------------------------------header------------------------------*/
.header {
  padding: 1.8rem 0 1.8rem 1.6rem;
  width: 100%;
  height: 5.8rem;
  background: #fff;
  box-shadow: 0.2rem 0.4rem 1.2rem 0 rgba(0, 0, 0, 0.04);
  display: flex;
  justify-content: flex-start;
  position: fixed !important;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
}
@media only screen and (min-width: 1000px) {
  .header {
    padding: 6rem 2rem;
    width: 18rem;
    height: 100vh;
    right: auto;
    bottom: 0;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
  }
}
@media only screen and (min-width: 1000px) {
  .header::-webkit-scrollbar {
    width: 0.4rem;
    border-radius: 9rem;
  }
}
@media only screen and (min-width: 1000px) {
  .header::-webkit-scrollbar-thumb {
    background: #D9D9D9;
  }
}
.header--logo {
  height: 100%;
}
@media only screen and (min-width: 1000px) {
  .header--logo {
    margin-bottom: 6rem;
    width: 9.2rem;
    height: auto;
  }
}
.header--logo:hover {
  opacity: 0.7;
}
.header--logo img {
  width: auto;
  height: 100%;
}
@media only screen and (min-width: 1000px) {
  .header--logo img {
    width: 100%;
    height: auto;
  }
}
.header--nav ul li a {
  display: inline-block;
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.6;
  color: #3D4245;
  transition: 300ms;
  position: relative;
}
.header--nav ul li a::after {
  content: "";
  background: #3D4245;
  display: block;
  height: 0.1rem;
  position: absolute;
  left: 0;
  transition: 0.3s all;
  width: 0;
}
.header--nav ul li a.disabled {
  pointer-events: none;
  opacity: 0.5;
}
.header--nav ul li a:hover {
  opacity: 0.6;
}
.header--nav ul li a:hover::after {
  width: 100%;
}
.header--nav ul li.l-blue a {
  color: #24B0BA;
  position: relative;
  transition: 0.3s all;
}
.header--nav ul li.l-blue a::after {
  content: "";
  width: 0;
  height: 0.1rem;
  background: #24B0BA;
  position: absolute;
  bottom: 0;
  left: 0;
}
.header--nav ul li.l-blue a:hover {
  opacity: 0.6;
}
.header--nav ul li.l-blue a:hover::after {
  width: 100%;
}
.header--nav ul li.l-blue + li {
  margin-top: 4.8rem;
}
.header--nav ul li + li {
  margin-top: 1.6rem;
}
.header--nav ul li.has-children {
  position: relative;
}
.header--nav ul li.has-children .sub-menu {
  display: none;
  transition: all 0.3s;
  position: absolute;
  right: -1rem;
  top: -1rem;
  transform: translateX(100%);
  background: rgba(255, 255, 255, 0.7);
  padding: 2rem;
  overflow: hidden;
}
.header--nav ul li.has-children .sub-menu li a {
  font-size: 1.2rem;
  white-space: nowrap;
}
.header--nav ul li.has-children .sub-menu li + li {
  margin-top: 1rem;
}
.header--nav ul li.has-children::after {
  content: "";
  position: absolute;
  top: 0;
  right: -1rem;
  width: 2rem;
  height: 100%;
}
.header--nav ul li.has-children:hover .sub-menu,
.header--nav ul li.has-children .sub-menu:hover .sub-menu {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  align-items: flex-start;
}

.openbtn1 {
  width: 5.8rem;
  height: 5.8rem;
  background: linear-gradient(180deg, #1EAAD6 0%, #26C3C3 99.98%, #26C3C3 99.99%, #32B7B1 100%);
  position: fixed;
  top: 0;
  right: 0;
  z-index: 1000;
  cursor: pointer;
}
.openbtn1 > span {
  display: inline-block;
  width: 1.8rem;
  height: 0.1rem;
  background: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: 300ms;
}
.openbtn1 > span::before, .openbtn1 > span::after {
  content: "";
  width: 1.8rem;
  height: 0.1rem;
  background: #fff;
  position: absolute;
  bottom: 0.6rem;
  transition: 300ms;
}
.openbtn1 > span::after {
  top: 0.6rem;
}
.openbtn1.active > span {
  background: transparent;
}
.openbtn1.active > span::before, .openbtn1.active > span::after {
  bottom: 0;
  transform: rotate(-45deg);
}
.openbtn1.active > span::after {
  top: 0;
  transform: rotate(45deg);
}

.nav {
  padding: 9.6rem 0 4rem;
  width: 100%;
  background: #fff;
  position: fixed;
  top: -40rem;
  left: 0;
  right: 0;
  z-index: 998;
  text-align: center;
  box-shadow: 0 0.4rem 0.8rem 0px rgba(0, 0, 0, 0.08);
  transition: 300ms;
}
.nav ul li {
  color: #3D4245;
}
.nav ul li a {
  display: inline-block;
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1.6;
}
.nav ul li a.disabled {
  pointer-events: none;
  opacity: 0.5;
}
.nav ul li.l-blue {
  color: #24B0BA;
}
.nav ul li.l-blue a {
  position: relative;
}
.nav ul li.l-blue a::after {
  content: "";
  width: 100%;
  height: 0.2rem;
  background: #24B0BA;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
.nav ul li + li {
  margin-top: 2rem;
}
.nav.panelactive {
  top: 0;
}

/*------------------------------ふんわりフェードイン------------------------------*/
.fadein {
  opacity: 0;
  transform: translate(0, 0);
  transition: all 1.5s;
  transform: translate(0, 5rem);
}
.fadein.fadein_left {
  transform: translate(-8rem, 0);
}
.fadein.scrollin {
  opacity: 1 !important;
  transform: translate(0, 0) !important;
}

.reveal-text {
  opacity: 0;
  transform: translate(0, 0);
  transition: all 1s;
  transform: translate(-8rem, 0);
}
.reveal-text.reveal {
  opacity: 1 !important;
  transform: translate(0, 0) !important;
}

.fadein_left {
  opacity: 0;
  transform: translate(0, 0);
  transition: all 1.5s;
  transform: translate(-8rem, 0);
}
.fadein_left.scrollin {
  opacity: 1 !important;
  transform: translate(0, 0) !important;
}

.fadein_up {
  opacity: 0;
  transform: translate(0, 0);
  transition: all 1.5s;
  transform: translate(0, 5rem);
}
.fadein_up.scrollin {
  opacity: 1 !important;
  transform: translate(0, 0) !important;
}

/*------------------------------ドーナツ型の装飾------------------------------*/
.donuts_deco {
  width: 29.5rem;
  height: 29.5rem;
  -webkit-mask-image: url(../img/about-us_deco.svg);
          mask-image: url(../img/about-us_deco.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: 50% 50%;
          mask-position: 50% 50%;
  -webkit-mask-size: 100%;
          mask-size: 100%;
  position: absolute;
  top: -6rem;
  right: -6.8rem;
}
@media only screen and (min-width: 1000px) {
  .donuts_deco {
    width: 70rem;
    height: 70rem;
    top: -12rem;
    right: -17.2rem;
  }
}
.donuts_deco #gradient-canvas02 {
  width: 100%;
  height: 100%;
  --gradient-color-1: #96C8F2;
  --gradient-color-2: #80E7F2;
  --gradient-color-3: #79F2E6;
  --gradient-color-4: #BBF2D8;
  --gradient-color-5: #37D9E2;
  --gradient-color-6: #C5EFED;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.donuts_deco img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 0 0;
     object-position: 0 0;
  opacity: 0.2;
  mix-blend-mode: screen;
}

/*--------------▼ お問い合わせ / .contact ▼--------------*/
.contact {
  background: url(../img/contact_bg.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  text-align: center;
  color: #fff;
}
@media only screen and (min-width: 1000px) {
  .contact {
    background: url(../img/contact_bg_pc.webp);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    text-align: left;
  }
}
.contact--bg {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.contact--bg #gradient-canvas05 {
  width: 100%;
  height: 100%;
  --gradient-color-1: #5FC2D9;
  --gradient-color-2: #66CDD9;
  --gradient-color-3: #41D9D9;
  --gradient-color-4: #66D9D9;
  --gradient-color-5: #4AD9CA;
  --gradient-color-6: #71D6CD;
}
.contact .wrap {
  position: relative;
  z-index: 1;
}
@media only screen and (min-width: 1000px) {
  .contact .wrap {
    display: flex;
    justify-content: center;
    align-items: center;
  }
}
.contact--ttl {
  align-items: center;
}
@media only screen and (min-width: 1000px) {
  .contact--ttl {
    align-items: flex-start;
  }
}
.contact--ttl .main {
  font-size: 6.4rem;
  font-style: italic;
  color: #fff;
}
.contact--ttl .sub {
  color: #fff;
}
.contact--ttl + p {
  margin-top: 2.8rem;
  font-size: 1.6rem;
  line-height: 1.7;
}
.contact .btn02 {
  margin-top: 3.2rem;
}
@media only screen and (min-width: 1000px) {
  .contact .btn02 {
    display: none;
  }
}
@media only screen and (min-width: 1000px) {
  .contact .btn {
    margin-left: 1.6rem;
    width: 9.2rem;
    position: relative;
    left: 0;
    transition: 300ms;
  }
}
@media only screen and (min-width: 1000px) {
  .contact .btn:hover {
    left: 0.8rem;
  }
}

/*--------------▲ お問い合わせ / .contact ▲--------------*/
/*--------------▼ 採用フォーム / .recruit-form ▼--------------*/
.recruit-form {
  background: url(../img/contact_bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  text-align: center;
  color: #fff;
}
@media only screen and (min-width: 1000px) {
  .recruit-form {
    background: url(../img/contact_bg_pc.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    text-align: left;
  }
}
.recruit-form .recruit-form_bg {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.recruit-form .recruit-form_bg #gradient-canvas07 {
  width: 100%;
  height: 100%;
  --gradient-color-1: #5FC2D9;
  --gradient-color-2: #66CDD9;
  --gradient-color-3: #41D9D9;
  --gradient-color-4: #66D9D9;
  --gradient-color-5: #4AD9CA;
  --gradient-color-6: #71D6CD;
}
.recruit-form .wrap {
  position: relative;
  z-index: 1;
  padding: 6rem 4rem;
}
@media only screen and (min-width: 1000px) {
  .recruit-form .wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10rem 13rem;
  }
}
.recruit-form .recruit-form_txt .title {
  line-height: 1.6;
  white-space: nowrap;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-weight: bold;
  text-align: center;
}
@media only screen and (min-width: 1000px) {
  .recruit-form .recruit-form_txt .title {
    font-size: 3.2rem;
  }
}
.recruit-form .btn01 {
  margin-top: 3rem;
}
@media only screen and (min-width: 1000px) {
  .recruit-form .btn01 {
    width: 30rem;
    margin: 0 auto;
    margin-top: 3.2rem;
  }
}

/*--------------▲ お問い合わせ / .contact ▲--------------*/
/*--------------▼ フッター / .footer ▼--------------*/
.footer {
  width: 100%;
  text-align: center;
}
@media only screen and (min-width: 1000px) {
  .footer {
    width: calc(100% - 18rem);
    margin-left: auto;
  }
}
.footer--link {
  padding: 6rem 0;
  background: #0F1923;
}
@media only screen and (min-width: 1000px) {
  .footer--link {
    padding: 7.2rem 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
  }
}
.footer--link--logo {
  display: block;
  margin: 0 auto;
  width: 21.8rem;
}
@media only screen and (min-width: 1000px) {
  .footer--link--logo {
    margin: 0;
    width: 31.2rem;
  }
}
.footer--link--link-list {
  margin-top: 2.8rem;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
@media only screen and (min-width: 1000px) {
  .footer--link--link-list {
    margin-top: 0;
    margin-left: 6rem;
  }
}
.footer--link--link-list li {
  margin-top: 1.2rem;
  padding: 0 1.6rem;
}
@media only screen and (min-width: 1000px) {
  .footer--link--link-list li {
    margin-top: 0;
    padding: 0.6rem 1.6rem;
  }
}
.footer--link--link-list li a {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 1.6rem;
  font-weight: 500;
  color: #fff;
}
.footer--link--link-list li a.disabled {
  pointer-events: none;
  opacity: 0.5;
}
.footer--link--link-list li a:hover {
  opacity: 0.6;
}
.footer--cw {
  padding: 2rem 0;
  background: #000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
.footer--cw small {
  font-size: 1.2rem;
  color: #fff;
}
.footer--cw small a {
  text-decoration: underline;
}
.footer--cw small a:hover {
  opacity: 0.6;
}

/*--------------▲ フッター / .footer  ▲--------------*/
/*--------------▼ パンくずリスト / .breadcrumbs ▼--------------*/
.breadcrumbs {
  padding: 1.6rem 2rem;
}
@media only screen and (min-width: 1000px) {
  .breadcrumbs {
    padding: 2rem;
  }
}
.breadcrumbs ul {
  display: flex;
  justify-content: left;
  flex-wrap: wrap;
  row-gap: 1rem;
  line-height: 1.3;
}
.breadcrumbs ul li {
  font-size: 1.2rem;
  color: #606060;
}
.breadcrumbs ul li a {
  text-decoration: underline;
}
.breadcrumbs ul li + li {
  margin-left: 0.4rem;
}
.breadcrumbs ul li + li::before {
  content: "＞";
}
.breadcrumbs ul li.current a {
  text-decoration: none;
}

/*--------------▲ パンくずリスト / .breadcrumbs ▲--------------*/
/*--------------▼ 下層ページFV / .b-page-fv ▼--------------*/
.b-page-fv {
  width: 100%;
  height: 11.6rem;
  position: relative;
}
@media only screen and (min-width: 1000px) {
  .b-page-fv {
    height: 24.8rem;
  }
}
.b-page-fv #gradient-canvas01, .b-page-fv #gradient-canvas02 {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  --gradient-color-1: #9DEEF6;
  --gradient-color-2: #BBDDF7;
  --gradient-color-3: #DFEBE6;
  --gradient-color-4: #C1F4F1;
  --gradient-color-5: #B6EFF5;
  --gradient-color-6: #C0EFEE;
}
.b-page-fv .mask-image {
  width: auto;
  height: 100%;
  mask-image: url("../img/b-page-fv_mask.svg");
  mask-repeat: no-repeat;
  mask-position: 0;
  mask-size: 100%;
  -webkit-mask-image: url("../img/b-page-fv_mask.svg");
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: 0;
  -webkit-mask-size: 100%;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  z-index: 1;
}
@media only screen and (min-width: 1000px) {
  .b-page-fv .mask-image {
    mask-image: url("../img/b-page-fv_mask_pc.svg");
    mask-repeat: no-repeat;
    mask-position: 0;
    mask-size: 100%;
    -webkit-mask-image: url("../img/b-page-fv_mask_pc.svg");
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: 0;
    -webkit-mask-size: 100%;
  }
}
.b-page-fv .mask-image img {
  width: auto;
  height: 100%;
}
.b-page-fv .deco {
  width: auto;
  height: 100%;
  position: absolute;
  top: 0;
  left: 22rem;
  bottom: 0;
  z-index: 2;
  opacity: 0.4;
}
@media only screen and (min-width: 1000px) {
  .b-page-fv .deco {
    left: 61.2rem;
  }
}
.b-page-fv .deco img {
  width: auto;
  height: 100%;
}
.b-page-fv .screen {
  width: 100%;
  height: 100%;
  background: #fff;
  opacity: 0.2;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 3;
}

/*--------------▲ 下層ページFV / .b-page-fv ▲--------------*/
/*--------------▼ 下層ページセクションタイトル / .section-title ▼--------------*/
.section-ttl {
  padding: 0 0rem;
  line-height: 1;
}
@media only screen and (min-width: 1000px) {
  .section-ttl {
    padding: 0;
  }
}
.section-ttl p {
  margin-top: 2rem;
  font-size: 1.6rem;
  line-height: 1.6;
  color: #606060;
  text-align: justify;
}

/*--------------▲ 下層ページセクションタイトル / .section-title ▲--------------*/
/*--------------▼ トップへ戻る / .back-to-top-btn ▼--------------*/
.back-to-top-btn {
  display: block;
  width: 6.6rem;
  position: absolute;
  right: 2rem;
  bottom: 26rem;
  opacity: 0;
  transition: 500ms;
  transform: translateY(24px);
}
@media only screen and (min-width: 1000px) {
  .back-to-top-btn {
    right: 8rem;
    bottom: 22rem;
  }
}
.back-to-top-btn.is-show {
  opacity: 1;
  transform: translateY(0);
}

/*--------------▲ トップへ戻る / .back-to-top-btn ▲--------------*/
/*--------------▼ 背景アニメーション / #gradient-canvas03 ▼--------------*/
#gradient-canvas03 {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  --gradient-color-1: #9DEEF6;
  --gradient-color-2: #BBDDF7;
  --gradient-color-3: #DFEBE6;
  --gradient-color-4: #C1F4F1;
  --gradient-color-5: #B6EFF5;
  --gradient-color-6: #C0EFEE;
  background: linear-gradient(45deg, var(--gradient-color-1), var(--gradient-color-2), var(--gradient-color-3), var(--gradient-color-4), var(--gradient-color-5), var(--gradient-color-6));
  z-index: 0;
}

.screen {
  width: 100%;
  height: 100%;
  background: #fbffff;
  opacity: 0.6;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

/*--------------▲ 背景アニメーション / #gradient-canvas03 ▲--------------*/
/*--------------▼ 背景アニメーション / #gradient-canvas04 ▼--------------*/
#gradient-canvas04 {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  --gradient-color-1: #9DEEF6;
  --gradient-color-2: #BBDDF7;
  --gradient-color-3: #DFEBE6;
  --gradient-color-4: #C1F4F1;
  --gradient-color-5: #B6EFF5;
  --gradient-color-6: #C0EFEE;
  background: linear-gradient(45deg, var(--gradient-color-1), var(--gradient-color-2), var(--gradient-color-3), var(--gradient-color-4), var(--gradient-color-5), var(--gradient-color-6));
}

/*--------------▲ 背景アニメーション / #gradient-canvas04 ▲--------------*/
/*--------------▼ 背景アニメーション / #gradient-canvas05 ▼--------------*/
#gradient-canvas05 {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  --gradient-color-1: #9DEEF6;
  --gradient-color-2: #BBDDF7;
  --gradient-color-3: #dfeaeb;
  --gradient-color-4: #c1eff4;
  --gradient-color-5: #B6EFF5;
  --gradient-color-6: #c0e0ef;
  background: linear-gradient(45deg, var(--gradient-color-1), var(--gradient-color-2), var(--gradient-color-3), var(--gradient-color-4), var(--gradient-color-5), var(--gradient-color-6));
}

/*--------------▲ 背景アニメーション / #gradient-canvas05 ▲--------------*/
/*--------------▼ 背景アニメーション / #gradient-canvas06 ▼--------------*/
#gradient-canvas06 {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  --gradient-color-1: #9df6ea;
  --gradient-color-2: #bbf7e8;
  --gradient-color-3: #DFEBE6;
  --gradient-color-4: #c1f4e2;
  --gradient-color-5: #b6f5f2;
  --gradient-color-6: #c0efde;
  background: linear-gradient(45deg, var(--gradient-color-1), var(--gradient-color-2), var(--gradient-color-3), var(--gradient-color-4), var(--gradient-color-5), var(--gradient-color-6));
}

/*--------------▲ 背景アニメーション / #gradient-canvas06 ▲--------------*/
/*--------------▼ 背景アニメーション / #gradient-canvas05 ▼--------------*/
#gradient-canvas07 {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  --gradient-color-1: #9DEEF6;
  --gradient-color-2: #BBDDF7;
  --gradient-color-3: #dfeaeb;
  --gradient-color-4: #c1eff4;
  --gradient-color-5: #B6EFF5;
  --gradient-color-6: #c0e0ef;
  background: linear-gradient(45deg, var(--gradient-color-1), var(--gradient-color-2), var(--gradient-color-3), var(--gradient-color-4), var(--gradient-color-5), var(--gradient-color-6));
}

/*--------------▲ 背景アニメーション / #gradient-canvas05 ▲--------------*/
.section-ttl .wrap {
  padding-top: 2rem;
}
@media only screen and (min-width: 1000px) {
  .section-ttl .wrap {
    padding-top: 6rem;
  }
}

.recommend::after {
  position: absolute;
  content: "";
  background: url(../img/service/lp/worried_man.svg) no-repeat center/contain;
  width: 18rem;
  height: 11.143rem;
  bottom: 1rem;
  right: 0;
  z-index: 10;
}
@media only screen and (min-width: 1000px) {
  .recommend::after {
    width: 22rem;
    height: 13.619rem;
    bottom: 3rem;
    right: 1.5rem;
  }
}

.feature {
  background: #fff;
  border-top: #D9D9D9 solid 0.1rem;
}
.feature .top_txt {
  margin-top: 3rem;
}
.feature .feature_list {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4rem;
  margin-top: 4rem;
}
@media only screen and (min-width: 1000px) {
  .feature .feature_list {
    margin-top: 7rem;
    gap: 6rem;
  }
}
.feature .feature_list .item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}
@media only screen and (min-width: 1000px) {
  .feature .feature_list .item {
    flex-direction: row;
    gap: 4rem;
  }
}
@media only screen and (min-width: 1000px) {
  .feature .feature_list .item .txt_wrap {
    flex: 1;
  }
}
.feature .feature_list .item .txt_wrap .title {
  border-bottom: solid #24B0BA 0.1rem;
  padding-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  justify-content: flex-start;
  gap: 1.5rem;
}
.feature .feature_list .item .txt_wrap .title .number {
  color: #24B0BA;
  font-size: 2.4rem;
}
@media only screen and (min-width: 1000px) {
  .feature .feature_list .item .txt_wrap .title .number {
    font-size: 3rem;
  }
}
.feature .feature_list .item .txt_wrap .title .txt {
  font-size: 1.8rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-weight: bold;
  line-height: 1.3;
}
@media only screen and (min-width: 1000px) {
  .feature .feature_list .item .txt_wrap .title .txt {
    font-size: 2.4rem;
  }
}
.feature .feature_list .item .txt_wrap .image {
  margin-top: 2rem;
}
@media only screen and (min-width: 1000px) {
  .feature .feature_list .item .txt_wrap .body_txt {
    margin-top: 1rem;
  }
}
.feature .feature_list .item .img_wrap {
  margin-top: 1.6rem;
  border-radius: 0.4rem;
  overflow: hidden;
  position: relative;
}
@media only screen and (min-width: 1000px) {
  .feature .feature_list .item .img_wrap {
    margin-left: 4rem;
    width: 40rem;
    min-width: 40rem;
    height: 30rem;
  }
}
.feature .feature_list .item .img_wrap .cover1,
.feature .feature_list .item .img_wrap .cover2,
.feature .feature_list .item .img_wrap .cover3 {
  background: #F9F9F9;
  height: 33.3333333333%;
  left: 0;
  pointer-events: none;
  position: absolute;
  right: 0;
  z-index: 1;
  transform: translateX(0);
  transition: transform 2s cubic-bezier(0.4, 0, 0.2, 1);
}
.feature .feature_list .item .img_wrap .cover1 {
  top: 0;
}
.feature .feature_list .item .img_wrap .cover2 {
  top: 33.3333333333%;
}
.feature .feature_list .item .img_wrap .cover3 {
  top: 66.6666666667%;
}
.feature .feature_list .item .img_wrap.animate .cover1 {
  transform: translateX(40rem);
}
.feature .feature_list .item .img_wrap.animate .cover2 {
  transform: translateX(100%);
  transition-delay: 0.2s;
}
.feature .feature_list .item .img_wrap.animate .cover3 {
  transform: translateX(100%);
  transition-delay: 0.4s;
}
.feature .feature_list .item .body_txt .bold {
  font-weight: bold;
}
.feature .feature_list .item .body_txt ul li {
  margin-left: 1.5rem;
  position: relative;
  font-weight: bold;
}
.feature .feature_list .item .body_txt ul li::before {
  content: "・";
  color: #24B0BA;
  position: absolute;
  left: 0;
  top: 0;
  transform: translateX(-150%);
}
@media only screen and (min-width: 1000px) {
  .feature .feature_list .item.item_02 {
    flex-direction: row-reverse;
  }
}

.thatwhy {
  background: #fff;
  border-top: 1px solid #d9d9d9;
}
.thatwhy .body_txt {
  margin-top: 3rem;
}
.thatwhy .point_list {
  margin-top: 4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5rem;
}
@media only screen and (min-width: 1000px) {
  .thatwhy .point_list {
    margin-top: 7rem;
    gap: 7rem;
  }
}
.thatwhy .point_list .item {
  width: 100%;
}
.thatwhy .point_list .item .title {
  border-bottom: 0.1rem solid #24B0BA;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  align-items: flex-start;
  gap: 1rem;
  font-size: 2rem;
}
@media only screen and (min-width: 1000px) {
  .thatwhy .point_list .item .title {
    flex-direction: row;
    justify-content: flex-start;
    font-size: 2.4rem;
    gap: 1.5rem;
  }
}
.thatwhy .point_list .item .title .point_number {
  color: #24B0BA;
}
.thatwhy .point_list .item .title .main {
  padding-bottom: 1rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-weight: 500;
  color: #001E3C;
}
.thatwhy .point_list .item .body_txt {
  margin-top: 2rem;
}
.thatwhy .point_list .item .figure_wrap {
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.thatwhy .point_list .item .figure_wrap.pc-only {
  display: none;
}
@media only screen and (min-width: 1000px) {
  .thatwhy .point_list .item .figure_wrap.pc-only {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    margin-top: 5rem;
  }
}
@media only screen and (min-width: 1000px) {
  .thatwhy .point_list .item .figure_wrap.sp-only {
    display: none;
  }
}
.thatwhy .point_list .item .figure_wrap figure {
  width: 33rem;
}
@media only screen and (min-width: 1000px) {
  .thatwhy .point_list .item .figure_wrap figure {
    width: 35rem;
  }
}
.thatwhy .point_list .item .figure_wrap figure.flow_02, .thatwhy .point_list .item .figure_wrap figure.flow_03 {
  margin-top: -3.2rem;
}
@media only screen and (min-width: 1000px) {
  .thatwhy .point_list .item .figure_wrap figure.flow_02, .thatwhy .point_list .item .figure_wrap figure.flow_03 {
    margin-top: 0;
  }
}
@media only screen and (min-width: 1000px) {
  .thatwhy .point_list .item .figure_wrap figure.flow_01 {
    margin-right: -4rem;
  }
}
.thatwhy .point_list .item .figure_wrap figure.flow_02 {
  transition-delay: 0.2s;
}
.thatwhy .point_list .item .figure_wrap figure.flow_03 {
  transition-delay: 0.4s;
}
@media only screen and (min-width: 1000px) {
  .thatwhy .point_list .item .figure_wrap figure.flow_03 {
    margin-left: -4rem;
  }
}
.thatwhy .point_list .item .point_02_list {
  margin-top: 4rem;
}
.thatwhy .point_list .item .point_02_list .circle-graph {
  margin: 0 auto;
  width: 29.5rem;
}
.thatwhy .point_list .item .point_02_list .explanation_list {
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  align-items: flex-start;
  gap: 2rem;
}
@media only screen and (min-width: 1000px) {
  .thatwhy .point_list .item .point_02_list .explanation_list {
    position: relative;
  }
}
.thatwhy .point_list .item .point_02_list .explanation_list .font-en {
  font-size: 1.8rem;
  font-weight: 600;
}
.thatwhy .point_list .item .point_02_list .explanation_list .font-en.item_01 {
  color: #76D1D7;
}
.thatwhy .point_list .item .point_02_list .explanation_list .font-en.item_02 {
  color: #54C2CA;
}
.thatwhy .point_list .item .point_02_list .explanation_list .font-en.item_03 {
  color: #1DA4AD;
}
.thatwhy .point_list .item .point_02_list .explanation_list .font-en.item_04 {
  color: #017E87;
}
.thatwhy .point_list .item .point_02_list .explanation_list .font-en .jp {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 1.4rem;
}
.thatwhy .point_list .item .point_02_list .explanation_list .txt {
  font-size: 1.4rem;
  line-height: 1.6;
}
@media only screen and (min-width: 1000px) {
  .thatwhy .point_list .item .point_02_list .explanation_list .plan {
    position: absolute;
    left: 1rem;
    top: -28rem;
  }
  .thatwhy .point_list .item .point_02_list .explanation_list .plan .txt {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    line-height: 1.6;
  }
  .thatwhy .point_list .item .point_02_list .explanation_list .plan .txt span {
    width: 30rem;
  }
  .thatwhy .point_list .item .point_02_list .explanation_list .plan .txt .line {
    display: inline-block;
    width: 6rem;
    height: 0.1rem;
    background: #76D1D7;
  }
}
@media only screen and (min-width: 1000px) {
  .thatwhy .point_list .item .point_02_list .explanation_list .do {
    position: absolute;
    right: 9rem;
    top: -28rem;
  }
  .thatwhy .point_list .item .point_02_list .explanation_list .do .txt {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    line-height: 1.6;
  }
  .thatwhy .point_list .item .point_02_list .explanation_list .do .txt .line {
    display: inline-block;
    width: 6rem;
    height: 0.1rem;
    background: #54C2CA;
  }
}
@media only screen and (min-width: 1000px) {
  .thatwhy .point_list .item .point_02_list .explanation_list .check {
    position: absolute;
    right: 0rem;
    top: -13rem;
  }
  .thatwhy .point_list .item .point_02_list .explanation_list .check .txt {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    line-height: 1.6;
  }
  .thatwhy .point_list .item .point_02_list .explanation_list .check .txt span {
    width: 30rem;
  }
  .thatwhy .point_list .item .point_02_list .explanation_list .check .txt .line {
    display: inline-block;
    width: 6rem;
    height: 0.1rem;
    background: #1DA4AD;
  }
}
@media only screen and (min-width: 1000px) {
  .thatwhy .point_list .item .point_02_list .explanation_list .action {
    position: absolute;
    left: 0;
    top: -13rem;
  }
  .thatwhy .point_list .item .point_02_list .explanation_list .action .txt {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    line-height: 1.6;
  }
  .thatwhy .point_list .item .point_02_list .explanation_list .action .txt span {
    width: 30rem;
  }
  .thatwhy .point_list .item .point_02_list .explanation_list .action .txt .line {
    display: inline-block;
    width: 6rem;
    height: 0.1rem;
    background: #017E87;
  }
}
.thatwhy .point_list .item .point_02_list.ooda .explanation_list li {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  justify-content: flex-start;
}
@media only screen and (min-width: 1000px) {
  .thatwhy .point_list .item .point_02_list.ooda .explanation_list li {
    display: block;
    width: auto;
  }
}
.thatwhy .point_list .item .point_02_list.ooda .explanation_list li .font-en {
  width: 50%;
}
.thatwhy .point_list .item .point_02_list.ooda .explanation_list li .txt {
  flex: 1;
}
@media only screen and (min-width: 1000px) {
  .thatwhy .point_list .item .point_02_list.ooda .explanation_list li .txt {
    flex: auto;
  }
}
@media only screen and (min-width: 1000px) {
  .thatwhy .point_list .item .point_02_list.ooda .explanation_list .ovserve {
    position: absolute;
    left: 18rem;
    top: -26rem;
  }
  .thatwhy .point_list .item .point_02_list.ooda .explanation_list .ovserve .txt {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    line-height: 1.6;
  }
  .thatwhy .point_list .item .point_02_list.ooda .explanation_list .ovserve .txt .line {
    display: inline-block;
    width: 6rem;
    height: 0.1rem;
    background: #76D1D7;
  }
}
@media only screen and (min-width: 1000px) {
  .thatwhy .point_list .item .point_02_list.ooda .explanation_list .orient {
    position: absolute;
    right: 18rem;
    top: -26rem;
  }
  .thatwhy .point_list .item .point_02_list.ooda .explanation_list .orient .txt {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    line-height: 1.6;
  }
  .thatwhy .point_list .item .point_02_list.ooda .explanation_list .orient .txt .line {
    display: inline-block;
    width: 6rem;
    height: 0.1rem;
    background: #54C2CA;
  }
}
@media only screen and (min-width: 1000px) {
  .thatwhy .point_list .item .point_02_list.ooda .explanation_list .decide {
    position: absolute;
    right: 6rem;
    top: -11rem;
  }
  .thatwhy .point_list .item .point_02_list.ooda .explanation_list .decide .txt {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    line-height: 1.6;
    width: 38rem;
  }
  .thatwhy .point_list .item .point_02_list.ooda .explanation_list .decide .txt .line {
    display: inline-block;
    width: 6rem;
    height: 0.1rem;
    background: #1DA4AD;
  }
}
@media only screen and (min-width: 1000px) {
  .thatwhy .point_list .item .point_02_list.ooda .explanation_list .action_02 {
    position: absolute;
    left: 8rem;
    top: -11rem;
  }
  .thatwhy .point_list .item .point_02_list.ooda .explanation_list .action_02 .txt {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    line-height: 1.6;
    width: 38rem;
  }
  .thatwhy .point_list .item .point_02_list.ooda .explanation_list .action_02 .txt .line {
    display: inline-block;
    width: 6rem;
    height: 0.1rem;
    background: #017E87;
  }
}

.flow .flow_list {
  margin-top: 4rem;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}
@media only screen and (min-width: 1000px) {
  .flow .flow_list {
    margin-top: 5rem;
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
  }
}
.flow .flow_list::after {
  position: absolute;
  content: "";
  top: 10%;
  left: 4rem;
  width: 3px;
  height: 80%;
  background: #24B0BA;
  z-index: 0;
}
@media only screen and (min-width: 1000px) {
  .flow .flow_list::after {
    top: 6.5rem;
    left: 10%;
    width: 80%;
    height: 3px;
  }
}
.flow .flow_list li {
  position: relative;
  display: flex;
  align-items: center;
  z-index: 1;
  gap: 1.5rem;
  counter-increment: flow_number;
}
@media only screen and (min-width: 1000px) {
  .flow .flow_list li {
    flex-direction: column;
    gap: 1rem;
  }
}
.flow .flow_list li::before {
  content: "0" counter(flow_number);
  position: absolute;
  top: -1rem;
  left: -1rem;
  line-height: 1;
  color: #24B0BA;
  font-size: 2rem;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
}
@media only screen and (min-width: 1000px) {
  .flow .flow_list li::before {
    top: 0;
    left: 0;
  }
}
.flow .flow_list li figure {
  width: 8rem;
  height: 8rem;
}
@media only screen and (min-width: 1000px) {
  .flow .flow_list li figure {
    width: 13rem;
    height: 13rem;
  }
}
.flow .flow_list li p {
  font-size: 1.8rem;
  color: #001E3C;
}
@media only screen and (min-width: 1000px) {
  .flow .flow_list li p {
    text-align: center;
    min-height: 3.2em;
  }
}
.flow .flow_list + p {
  margin-top: 1em;
}
@media only screen and (min-width: 1000px) {
  .flow .flow_list + p {
    margin-top: 2em;
  }
}
.flow .link_btn {
  margin-top: 3rem;
}
@media only screen and (min-width: 1000px) {
  .flow .link_btn {
    margin-top: 4rem;
  }
}
.flow .link_btn .btn01 {
  margin-top: 4rem;
  padding: 2.8rem;
  background: #37D9E2;
}/*# sourceMappingURL=lp.css.map */