@charset "UTF-8";

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@200..700&display=swap');

/* ---------------------------
 RESET
--------------------------- */
/*
html5doctor.com Reset Stylesheet
v1.4
2009-07-27
Author: Richard Clark - http://richclarkdesign.com
*/
html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary, time, mark, audio, video {
  font-size: 100%;
  margin: 0;
  padding: 0;
  vertical-align: baseline;
  border: 0;
  outline: 0;
  background: transparent;
}
body {
  /* min-width: 960px; */
}
article, aside, dialog, figure, footer, header, hgroup, nav, section {
  display: block;
}
nav, ul {
  list-style: none;
}
blockquote, q {
  quotes: none;
}
blockquote:before, blockquote:after, q:before, q:after {
  content: '';
  content: none;
}
a {
  font-size: 100%;
  margin: 0;
  padding: 0;
  vertical-align: baseline;
  border: 0;
  background: transparent;
  text-decoration: none;
}
ins {
  text-decoration: none;
  color: #000;
  background-color: #ff9;
}
mark {
  font-weight: bold;
  font-style: italic;
  color: #000;
  background-color: #ff9;
}
del {
  text-decoration: line-through;
}
abbr[title], dfn[title] {
  cursor: help;
  border-bottom: 1px dotted #000;
}
table {
  border-spacing: 0;
  border-collapse: collapse;
}
hr {
  display: block;
  height: 1px;
  margin: 1em 0;
  padding: 0;
  border: 0;
  border-top: 1px solid #ccc;
}
input, select {
  vertical-align: middle;
}
strong {
  font-weight: 500;
}
body {
  font-family: 'Noto Sans JP', 'ヒラギノ角ゴ Pro W3',
  'Hiragino Kaku Gothic Pro', 'メイリオ', Meiryo, Osaka, '游ゴシック体',
  YuGothic, '游ゴシック Medium', 'Yu Gothic Medium', '游ゴシック', 'Yu Gothic',
  sans-serif;
  font-size: 16px;
  font-feature-settings: "palt";
  font-weight: 500;
  letter-spacing: 0.06em;
  line-height: 1.5;
  color: var(--textcolor01);
}
 
html {
  /* scroll-behavior: smooth; */
}
* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
*:before, *:after {
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
}
.clear {
  clear: both;
}
.bg_none {
  background: none !important;
}
.ct {
  text-align: center;
}

li{
  list-style: none;
}

@media only screen and (max-width: 768px) {
  body {
    min-width: auto;
    line-height: 1.5;
    margin-bottom: 0;
  }
  img {
    max-width: 100%;
  }
}

/* ---------------------------
 テーマカラー / ThemaColor
--------------------------- */
:root{
  --white:#ffffff;
  --color01: #00abeb;
  --color02:#eff8fd;
  --color03:#01d491;
  --accent-color:#fcb200;

  --en-font: 'Oswald', sans-serif;

  --shadow:  12px 10px 20px rgba(59, 187, 239, 0.09);

}

/* ---------------------------
 共通 / layout
--------------------------- */

body{
  font-size: 16px;
  letter-spacing: 0.06em;
  color: #333333;

}

.content {
  width: calc(100% - 40px);
  max-width: 960px;
  margin: 0 auto;
  padding: 100px 0;
  
}

.center{
  text-align: center;
}

.sp{
  display: none;
}
.pc{
  display: block;
}

@media only screen and (max-width: 768px){
  .pc{
    display: none;
  }
}

.fade-up{
  opacity: 0;
  visibility: hidden;
  transform: translateY(50px);
  transition: opacity 1s,visibility 1s, transform 1s;
}
.js-mv-copy{
  opacity: 0;
  visibility: hidden;
  transform: translateY(50px);
  transition: opacity 1s,visibility 1s, transform 1s;
}
.active{
  opacity: 1;
  visibility: visible;
  transform: translateY(0px);
}
@media only screen and (max-width: 768px){
  .content{
    padding: 60px 0;
  }
  .sp{
    display: block;
  }
  .pc{
    display: none;
  }

}

/* ---------------------------
共通
--------------------------- */

.blue{
  color: var(--color01);
}

.section{
  padding: 110px 0 120px;
} 

@media only screen and (max-width: 768px){
  .section{
    padding: 90px 0;
  }
}

.bg-blue{
  background: var(--color02);
}

.section__inner{
  max-width: 1240px;
  padding: 0 20px;
  margin: 0 auto;
}

.btn__heading-area{
  font-size: 30px;
  line-height: 1.5;
  color: var(--white);
  letter-spacing: 0.06em;
  font-weight: bold;
  text-align: center;
}

.btn__heading{
  display: inline-block;
  position: relative;
  padding: 0 75px;
}

.btn-heading-left{
  position: absolute;
  width: 65px;
  height: 65px;
  left: 0;
  bottom: 8px;
}

.btn-heading-left::before{
  position: absolute;
  content: "";
  width: 2px;
  height: 45px;
  background: var(--white);
  right: 20px;
  bottom: 0;
  transform: rotate(-60deg);
  transform-origin: bottom;
}

.btn-heading-left::after{
  position: absolute;
  content: "";
  width: 2px;
  height: 90px;
  background: var(--white);
  right: 0;
  bottom: 0;
  transform: rotate(-45deg);
  transform-origin: bottom;
}

.btn-heading-right{
  position: absolute;
  width: 65px;
  height: 65px;
  right: -5px;
  bottom: 8px;
}

.btn-heading-right::before{
  position: absolute;
  content: "";
  width: 2px;
  height: 45px;
  background: var(--white);
  right: 40px;
  bottom: 0;
  transform: rotate(60deg);
  transform-origin: bottom;
}

.btn-heading-right::after{
  position: absolute;
  content: "";
  width: 2px;
  height: 90px;
  background: var(--white);
  right: 65px;
  bottom: 0;
  transform: rotate(45deg);
  transform-origin: bottom;
}

.btn__heading--sm{
  font-size: 24px;
}

.btn__heading--sm > .btn-heading-left::before{
  height: 40px;
  right: 15px;
}

.btn__heading--sm > .btn-heading-left::after{
  height: 70px;
}

.btn__heading--sm > .btn-heading-right::before{
  height: 40px;
  right: 50px;
}

.btn__heading--sm > .btn-heading-right::after{
  height: 70px;
}

.btn{
  display: block;
  background: var(--accent-color);
  color: var(--white);
  font-size: 38px;
  letter-spacing: 0.02em;
  font-weight: bold;
  width: 700px;
  padding: 32px 0;
  border-radius: 10px;
  position: relative;
  margin-top: 15px;
  transition: all .3s;
}

.btn:hover{
  letter-spacing: 0.1em;
}

.btn__icon{
  position: absolute;
  right: 50px;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
}

.btn__icon::before{
  position: absolute;
  content: "";
  width: 3px;
  height: 20px;
  background: var(--white);
  transform: rotate(-45deg);
  right: 0;
  top: -6px;
}

.btn__icon::after{
  position: absolute;
  content: "";
  width: 3px;
  height: 20px;
  background: var(--white);
  transform: rotate(45deg);
  right: 0;
  top: 6px;
}

.bnt__inner{
  position: relative;
}

@media only screen and (max-width: 768px){
  .btn-area{
    width: 100%;
    padding: 0 20px;
  }

  .btn__heading-area{
    font-size: 17px;
    line-height: 1.58;
  }

  .btn__heading{
    padding: 0 23px;
    letter-spacing: 0;
  }

  .btn-heading-left{
    width: 23px;
    height: 40px;
    bottom: 4px;
  }

  .btn-heading-left::before{
    height: 23px;
    transform: rotate(-45deg);
    right: 8px;
  }

  .btn-heading-left::after{
    height: 45px;
    transform: rotate(-30deg);
  }

  .btn-heading-right{
    width: 23px;
    height: 40px;
    bottom: 4px;
  }

  .btn-heading-right::before{
    height: 23px;
    transform: rotate(45deg);
    right: 12px;

  }

  .btn-heading-right::after{
    height: 45px;
    transform: rotate(30deg);
    right: 20px;
  }

  .btn__heading--sm{
    font-size: 17px;
  }

  .btn__heading--sm > .btn-heading-left{
    width: 23px;
    height: 40px;
    bottom: 4px;
  }

  .btn__heading--sm > .btn-heading-left::before{
    height: 23px;
    transform: rotate(-45deg);
    right: 8px;
  }

  .btn__heading--sm > .btn-heading-left::after{
    height: 45px;
    transform: rotate(-30deg);
  }

  .btn__heading--sm > .btn-heading-right{
    width: 23px;
    height: 40px;
    bottom: 4px;
  }

  .btn__heading--sm > .btn-heading-right::before{
    height: 23px;
    transform: rotate(45deg);
    right: 12px;
  }

  .btn__heading--sm > .btn-heading-right::after{
    height: 45px;
    transform: rotate(30deg);
    right: 20px;
  }

  .btn{
    width: 100%;
    font-size: 19px;
    margin-top: 15px;
    padding: 25px 0;
    text-align: left;
    padding: 25px 30px;
  }

  .btn:hover{
    letter-spacing: 0.06em;
    line-height: 1.58;
    letter-spacing: 0;
  }

  .btn__icon{
    width: 20px;
    height: 20px;
    right: 24px;
  }

}

.heading--level2{
  font-size: 40px;
  letter-spacing: 0.06em;
  text-align: center;
  position: relative;
  padding-bottom: 20px;
  margin-bottom: 30px;
  line-height: 1.587;
  
}

.heading--level2::after{
  position: absolute;
  content: "";
  width: 100px;
  height: 2px;
  background: var(--color01);
  left: 50%;
  bottom: 0px;
  transform: translateX(-50%);
}

.heading--level3{
  font-size: 20px;
  line-height: 1.5;
  letter-spacing: 0.06em;
  color: var(--color01);
  font-weight: bold;
}

@media only screen and (max-width: 768px){
  .heading--level2{
    font-size: 28px;
    line-height: 1.5;
    margin-bottom: 40px;
  }

}


/* ---------------------------
header
--------------------------- */
.header{
  background: var(--white);
  width: 100%;
  height: 90px;
}

.header-inner{
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 20px;
}

.header-img{
  padding: 20px 0;
}

@media only screen and (max-width: 768px){
  .header{
    height: 50px;
  }

  .header-img{
    padding: 12px 0;
    height: 50px;
  }

  .header-img img{
    height: 100%;
  }
}



/* ---------------------------
MV
--------------------------- */
.mv{
  position: relative;
  overflow: hidden;
}

.mv__inner{
  padding-top: 120px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.mv__copy-area{
  border-radius: 10px;
  padding: 0 4.6875vw 80px;
  position: relative;
  max-width: 940px;
}

.mv__copy-area::after{
  position: absolute;
  content: "";
  width: 100%;
  height: calc(100% - 210px);
  background: rgba(255, 255, 255, .9);
  border-radius: 10px;
  top: 40px;
  left: 0;
  z-index: -10;
}

.mv__sub-copy{
  font-size: 40px;
  font-weight: bold;
  color: var(--white);
  background: var(--color01);
  padding: 10px 60px;
  border-radius: 9999px;
  margin-bottom: 60px;
  display: inline-block;
  letter-spacing: 0.06em;
}

.mv__copy{
  max-width: 768px;

}

.mv__icon-area{
  margin-top: 55px;
}

.mv__icon-heading{
  font-size: 24px;
  color: var(--color01);
  letter-spacing: 0.06em;
  font-weight: bold;
  line-height: 1;
  text-align: center;
}

.mv__icon-heading__inner{
  display: inline-block;
  position: relative;
  padding: 0 24px;
}

.icon-left{
  position: absolute;
  width: 18px;
  height: 18px;
  left: 0;
  bottom: 0;
}

.icon-left::before{
  position: absolute;
  content: "";
  width: 2px;
  height: 12px;
  background: var(--color01);
  right: 8px;
  bottom: 0;
  transform: rotate(-60deg);
  transform-origin: bottom;
}

.icon-left::after{
  position: absolute;
  content: "";
  width: 2px;
  height: 24px;
  background: var(--color01);
  right: 0;
  bottom: 0;
  transform: rotate(-45deg);
  transform-origin: bottom;
}

.icon-right::before{
  position: absolute;
  content: "";
  width: 2px;
  height: 12px;
  background: var(--color01);
  right: 8px;
  bottom: 0;
  transform: rotate(60deg);
  transform-origin: bottom;
}

.icon-right::after{
  position: absolute;
  content: "";
  width: 2px;
  height: 24px;
  background: var(--color01);
  right: 16px;
  bottom: 0;
  transform: rotate(45deg);
  transform-origin: bottom;
}

.mv__icon-wrapper{
  margin-top: 16px;
  display: flex;
  gap: 30px;
  justify-content: center;
}

.mv__icon{
  background: var(--color03);
  border-radius: 50%;
  color: var(--white);
  width: 180px;
  height: 180px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 25px 0;
  font-size: 18px;
}

.mv__icon-img{
  height: 70px;
}

.mv__icon-img img{
  height: 100%;
}

.mv__icon-text{
  text-align: center;
  flex: 1;
}

.line-height{
  line-height: 48px;
}

.mv__bg{
  position: absolute;
  width: 100%;
  height: 1000px;
  top: 0;
  z-index: -100;
}

.mv__bg img{
  width: 100%;
  height: 1000px;
  object-fit: cover;
  object-position: bottom;
}

@media only screen and (max-width: 768px){
  .mv__inner{
    padding-top: 60px;
  }

  .mv__copy-area{
    padding: 0 20px;
    text-align: center;
    margin-bottom: 50px;
  }

  .mv__copy-area::after{
    width: calc(100% - 40px);
    top: 22px;
    left: 50%;
    translate:-50% 0 ;
    height: calc(100% - 74px);
  }

  .mv__sub-copy{
    font-size: 16px;
    padding: 8px 20px;
    text-align: center;
    margin-bottom: 30px;
  }

  .mv__copy{
    width: 86.66666666666667vw;
    min-width: 325px;
    margin: 0 auto;
    padding: 0 10px;
  }

  .mv__icon-area{
    margin-top: 30px;
    
  }

  .mv__icon-heading{
    font-size: 14px;
  }

  .mv__icon-heading__inner{
    padding: 0 16px;
  }

  .icon-left{
    width: 12px;
    height: 12px;
  }

  .icon-left::before{
    height: 8px;
    right: 6px;
  }

  .icon-left::after{
    height: 16px;
  }

  .icon-right{
    width: 12px;
    height: 12px;
  }

  .icon-right::before{
    height: 8px;
  }

  .icon-right::after{
    height: 16px;
    right: 13px;
  }

  .mv__icon-wrapper{
    gap: 10px;
  }

  .mv__icon{
    width: 105px;
    height: 105px;
    gap: 3px;
    padding: 15px 0;
  }

  .mv__icon-img{
    height: 35px;
  }

  .mv__icon-text{
    font-size: 14px;
  }

  .line-height{
    line-height: 42px;
  }

  .mv__bg{
    height: 148vw;
    max-height: 655px;
    min-height: 555px;
  }

  .mv__bg img{
    height: 148vw;
    max-height: 655px;
    min-height: 555px;
  }
}


/* ---------------------------
problem
--------------------------- */
.problem__wrapper{
  display: flex;
  gap: 40px;
  margin-top: 50px;
  justify-content: center;
  flex-wrap: wrap;
}

@media only screen and (max-width: 768px){
  .problem__wrapper{
    gap: 35px 20px;
    margin-top: 55px;
  }
}


.problem__item{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 200px;
}

@media only screen and (max-width: 768px){
  .problem__item{
    width: calc((100% - 20px) / 2);
  }
}


.problem__text-wrapper{
  width: 100%;
  min-height: 120px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  background: var(--color02);
  border-radius: 10px;
}

@media only screen and (max-width: 768px){
  .problem__text-wrapper{
    min-height: auto;
    padding: 20px 0;
  }
}

.problem__text-wrapper::before{
  position: absolute;
  content: "";
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--color02);
  left: 50%;
  top: calc(100% + 10px);
  transform: translateX(-50%);
}

@media only screen and (max-width: 768px){
  .problem__text-wrapper::before{
    top: calc(100% + 5px);
  }
}

.problem__text-wrapper::after{
  position: absolute;
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--color02);
  left: 50%;
  top: calc(100% + 40px);
  transform: translateX(-50%);
}

@media only screen and (max-width: 768px){
  .problem__text-wrapper::after{
    top: calc(100% + 30px);
  }
}


.problem__text{
  font-weight: bold;
  text-align: center;
}

.problem__icon{
  font-size: 28px;
  font-weight: bold;
  line-height: 1.4;
  background: var(--color01);
  display: block;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: var(--white);
  text-align: center;
  margin: 0 auto;
  position: absolute;
  left: 50%;
  top: -20px;
  transform: translateX(-50%);
}

@media only screen and (max-width: 768px){
  .problem__icon{
    font-size: 20px;
    width: 30px;
    height: 30px;
    top: -15px;
  }
}

.problem__item__img{
  margin-top: 96px;
}

@media only screen and (max-width: 768px){
  .problem__item__img{
    margin-top: 50px;
    height: 100px;
  }

  .problem__item__img img{
    height: 100%;
  }
}



/* ---------------------------
solution
--------------------------- */
.solution{
  padding-top: 205px;
  position: relative;
}

.solution::after{
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 384px solid transparent;
  border-left: 384px solid transparent;
  border-top: 120px solid #ffffff;
  border-bottom: 0;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

@media only screen and (max-width: 768px){
  .solution{
    padding-top: 90px;
  }

  .solution::after{
    border-right: 50vw solid transparent;
    border-left: 50vw solid transparent;
    border-top: 60px solid #ffffff;
  }
}

.solution__wrapper{
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin-top: 75px;
}

@media only screen and (max-width: 768px){
  .solution__wrapper{
    flex-direction: column;
    margin-top: 80px;
    gap: 75px;
  }
}

@media only screen and (max-width: 768px){
  .solution__heading-img{
    height: 45px;
  }

  .solution__heading-img img{
    height: 100%;
  }
}

.solution__heading-wrapper{
  text-align: center;
}

.solution__item{
  background: var(--white);
  padding: 35px 40px;
  width: calc((100% - 80px) / 3);
  border-radius: 10px;
  position: relative;
  box-shadow: var(--shadow);
}

@media only screen and (max-width: 768px){
  .solution__item{
    width: 100%;
    padding: 35px 20px 30px;
  }
}

.solution__num{
  font-size: 40px;
  font-family: var(--en-font);
  letter-spacing: 0.06em;
  background: var(--white);
  width: 90px;
  height: 90px;
  color: var(--color01);
  position: absolute;
  top: -45px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 50%;
  text-align: center;
  line-height: 90px;
  font-weight: normal;
}

@media only screen and (max-width: 768px){
  .solution__num{
    font-size: 45px;

  }
}

.solution__heading{
  position: relative;
  z-index: 10;
}


.solution__img{
  height: 160px;
  margin: 15px 0;
  text-align: center;
}

.solution__img img{
  height: 100%;
  width: 100%;
  object-fit: contain;
}

@media only screen and (max-width: 768px){
  .solution__img{
    margin: 25px 0;
  }
}


/* ---------------------------
support
--------------------------- */
.support__wrapper{
  display: flex;
  gap: 40px;
  align-items: center;
  justify-content: flex-end;
}

@media only screen and (max-width: 768px){
  .support__wrapper{
    flex-direction: column;
    gap: 24px;
  }
}

.support__img{
  width: 25vw;
  max-width: 480px;
}

.support__img img{
  width: 100%;
}

@media only screen and (max-width: 768px){
  .support__img{
    width: 64vw;
    margin: 0 auto;
    min-width: 240px;
  }
}

.support__list{
  width: 50%;
}

@media only screen and (max-width: 768px){
  .support__list{
    width: 100%;
  }
}

.support__item{
  padding: 0px 20px 18px 0;
  background: var(--white);
  box-shadow: var(--shadow);
}


.support__item:not(:first-child){
  margin-top: 40px;
}

.support__heading-area{
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  gap: 20px;
}

.support__heading{
  text-align: left;
}

.support__num{
  font-size: 24px;
  color: var(--white);
  background: var(--color01);
  padding: 7px 20px;
  text-align: center;
  display: inline-block;
  font-weight: bold;
  border-radius: 0 0 10px 0;
  min-width: 123px;
}

.support__text{
  padding-left: 20px;
}

@media only screen and (max-width: 768px){
  .support__item{
    padding: 0 20px 30px 0;
  }

  .support__item:not(:first-child){
    margin-top: 30px;
  }

  .support__heading-area{
    flex-direction: column;
    gap: 15px;
    align-items: flex-start;
    margin-bottom: 10px;
  }

  .support__heading{
    padding-left: 20px;
  }

  .support__num{
    min-width: auto;
    padding: 8px 20px;
  }
}

/* ---------------------------
reason
--------------------------- */
.reason_heading{
  line-height: 1.2;
}

.reason__heading--lg{
  font-family: var(--en-font);
  font-size: 90px;
  font-weight: 500;
}

.reason__item{
  display: flex;
  gap: 40px;
}

.reason__item:not(:first-child){
  margin-top: 60px;
}

.reverse{
  flex-direction: row-reverse;
}

.reason__text-area{
  position: relative;
  z-index: 10;
  width: 50%;
}

.reason__item__heading{
  margin-bottom: 35px;
}

.reason__item__heading--sub{
  font-size: 20px;
  font-weight: bold;
  display: block;
  line-height: 1.2;
}

.reason__item__heading--main{
  font-size: 32px;
  font-weight: bold;
  display: inline-block;
  position: relative;
}

.reason__item__heading--main--sp{
  display: none;
}

@media only screen and (max-width: 768px){
  .reason__heading--lg{
    font-size: 50px;
    line-height: 1;
  }

  .reason__item__heading--main--pc{
    display: none;
  }

  .reason__item__heading--main--sp{
    display: block;
  }

  .reason__item__heading--main--sp-inner{
    display: inline-block;
  }
}

.reason__item__heading--main::after{
  position: absolute;
  content: "";
  width: 100%;
  height: 5px;
  border-radius: 999px;
  left: 0;
  bottom: -3px;
  background: var(--color01);
}

.reason__num{
  font-size: 200px;
  font-family: var(--en-font);
  font-weight: normal;
  color: var(--white);
  line-height: .8;
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: -10;
}

.reason__img{
  border-radius: 10px;
}

.reason__img img{
  border-radius: 10px;
  width: 100%;
}

@media only screen and (max-width: 768px){
  .reason__item__heading--lg{
    font-size: 50px;
    line-height: 1.07;
  }
  .reason__item{
    flex-direction: column;
    gap: 30px;
  }

  .reason__item:not(:first-child){
    margin-top: 45px;
  }

  .reason__text-area{
    width: 100%;
  }

  .reason__item__heading{
    margin-bottom: 20px;
  }

  .reason__item__heading--sub{
    font-size: 18px;
  }

  .reason__item__heading--main{
    font-size: 24px;
  }

  .reason__heading--main::after{
    bottom: -3px;
  }

  .reason__num{
    font-size: 140px;
    top: 0;
    bottom: auto;
  }
}

/* ---------------------------
cv
--------------------------- */
.cv{
  background: var(--color01);
  position: relative;
  overflow: hidden;
  z-index: 10;
}

.cv::after{
  position: absolute;
  content: "";
  width: 1500px;
  height: 1500px;
  background: var(--white);
  border-radius: 50%;
  opacity: .1;
  left: 50%;
  top: -125%;
  translate: -50% 0;
  z-index: -10;
}

.cv-btn{
  margin: 15px auto 0;
}

@media only screen and (max-width: 768px){
  .cv-btn{
    margin: 15px 0 0 0;
  }

  .cv::after{
    width: 100vw;
    height: 100vw;
    top: -5%;
  }
}

/* ---------------------------
flow
--------------------------- */
.flow__item{
  padding: 35px 40px 35px 65px;
  margin-left: 40px;
  box-shadow: var(--shadow);
  position: relative;
}

.flow__item:not(:last-child){
  margin-bottom: 40px;
}

.flow__item:not(:last-child)::after{
  position: absolute;
  content: "";
  width: 2px;
  height: 40px;
  left: 100px;
  top: 100%;
  background: var(--color01);
}

.flow__num{
  font-size: 80px;
  font-family: var(--en-font);
  color: var(--color01);
  position: absolute;
  left: -40px;
  top: 50%;
  translate: 0 -50%;
  font-weight: normal;
}

.flow__text{
  margin-top: 10px;
  font-size: 16px;
}

@media only screen and (max-width: 768px){
  .flow__item{
    padding: 22px 20px 30px 55px;
    margin-left: 20px;
  }

  .flow__item:not(:last-child){
    margin-bottom: 50px;
  }

  .flow__item:not(:last-child)::after{
    left: 20px;
    height: 50px;
  }

  .flow__num{
    font-size: 65px;
    top: 0;
    left: -25px;
    translate: 0;
    line-height: 1;
  }
}

/* ---------------------------
card
--------------------------- */
@media only screen and (max-width: 768px){
  .needs_heading{
    letter-spacing: 0.01em;
  }
}

.card__wrapper{
  display: flex;
  gap: 40px;
}

.card{
  width: calc((100% - 80px) / 3);
  display: flex;
  flex-direction: column;
  transition: all .3s;
  
}

.card__img{
  position: relative;
  overflow: hidden;
  height: 240px;
}

.card__img img{
  width: 100%;
  transition: all .3s;
}

.card:hover .card__img img{
  transform: scale(1.1);
}

.card__text-area{
  padding: 15px 20px;
  background: var(--white);
  box-shadow: var(--shadow);
  flex: 1;
  min-height: 142px;
}

.card__text{
  margin-top: 10px;
  color: #333;
  text-decoration: none;
}

@media only screen and (max-width: 768px){
  .card__wrapper{
    flex-direction: column;
    gap: 30px;
  }

  .card__img{
    height: 210px;
  }

  .card{
    width: 100%;
  }
}

/* ---------------------------
footer
--------------------------- */
.footer{
  font-family: '游ゴシック Medium', 'Yu Gothic Medium', '游ゴシック', 'Yu Gothic', sans-serif;
}

.footer a{
  transition: all .3s;
}

.footer a:hover{
  opacity: .5;
}

.ft_nav{
  background: #333333;
  padding: 26px 20px;
  display: flex;
  gap: min(1.3020833333333335vw, 25px);
  justify-content: center;
  font-size: 14px;
}

.ft_nav a{
  color: var(--white);
  font-weight: bold;
}

.wrap{
  max-width: 1060px;
  padding: 0 20px;
  margin: 0 auto;
}

.ft_bt{
  display: flex;
  padding: 36px 0;
  gap: 52px;
  align-items: center;
}

.txt{
  line-height: 2;
}

.txt h3{
  height: 26px;
}

.txt p{
  margin-top: 15px;
}

.sitemap{
  max-width: 1060px;
  padding: 0 20px;
  margin: 0 auto;
}

.FooterService{
  max-width: 960px;
}

.sitemap__list{
  display: flex;
  flex-wrap: wrap;
  margin-left: 10px;
  gap: 8px;
  width: calc(100% - 120px);
  padding-bottom: 10px;
  line-height: 1.1;
  letter-spacing: 0.06em;
  color: #333;
}

.FooterTitle{
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 10px;
  letter-spacing: 0;
}

.FooterService_list{
  display: flex;
  font-size: 12px;
}

.FooterService_heading{
  width: 105px;
  color: var(--color01);
  border-right: 2px solid var(--color01);
}

.FooterService_item{
  padding-right: 8px;
  border-right: 1px solid #333;
}

.FooterService_item:last-child{
  border-right: none;
  padding-right: 0;
}

.FooterService_item a{
  color: #333;
}

.fotter-bottom{
  display: flex;
  max-width: 1060px;
  padding: 0 20px;
  margin: 10px auto;
}

.footer-line{
  width: 960px;
  height: 2px;
  background: var(--color01);
}

.privacy{
  margin-top: -25px;
}

.copyright{
  font-size: 10px;
  margin: 20px 0;
  text-align: center;
  letter-spacing: 0;
  font-size: 10px;
  letter-spacing: 0;
}

@media only screen and (max-width: 768px){
  .ft_nav{
    gap: 25px 30px;
    flex-wrap: wrap;
    font-size: 13px;
    justify-content: center;
    padding: 30px;
  }

  .ft_bt{
    gap: 20px;
    padding: 30px 0 40px;
  }

  .logo{
    width: 75px;
  }

  .logo img{
    width: 100%;
  }

  .txt{
    flex: 1;
  }

  .txt h3{
    height: 16px;
    width: 200px;
  }

  .txt p{
    font-size: 12px;
    line-height: 2;
    margin-top: 10px;
  }

  .FooterTitle{
    margin-bottom: 20px;
  }


  .sitemap__list{
    padding-bottom: 30px;
    gap: 5px;
    margin-left: 5px;
    letter-spacing: 0.04em;
  }

  dl:last-child > .sitemap__list{
    padding-bottom: 0;
  }

  .FooterService_heading{
    width: 88px;
  }

  .FooterService_item{
    line-height: 1;
    padding-right: 5px;
  }

  .fotter-bottom{
    flex-direction: column;
    gap: 20px;
    margin-top: 25px;
  }

  .footer-line{
    width: 100%;
  }

  .privacy{
    text-align: center;
    width: 60px;
    height: 60px;
    margin: 0 auto;
  }

  .privacy img{
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
}