@charset "UTF-8";
:root {
  --navy: #003C5D;
  --bg-pale-green: #FCFFFD;
  --bg-dark-green: #E7F7F9;
  --bace-green: #00A9A3;
  --bitter-green: #EDF5F5;
  --blue-green: #24A5B6;
  --light-gree: #DAFFF5;
  --gray-blue: #A0B8C5;
  --black: #333333;
  --white: #ffffff;  
}
  /*------------------------------------------
      cssリセット start
------------------------------------------*/
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
body, html, main {  
  position: relative;
  width: 100%;
  font-size: 18px;
  font-weight: 400;
  color: #333333;
}
main {
  position: relative;
  padding-top: 0;
  background-color: rgb(242, 246, 252);
  letter-spacing: 0.8px;
  margin: 0px auto;
  overflow: hidden;
  background: var(--bg-dark-green);
}
section {
  margin-top: 0;
  padding-top: 0;
}
figure {
  margin: 0;
}
h1{
  margin: 0;
}
ul {
  list-style: none;
}
img{
  max-width: 100%;
  height: auto;
  }

  .pc_br {
    display: block;
  }
  .tab_br {
    display: none;
  }
  .sp_br {
    display: none;
  }
  
  @media screen and (max-width: 812px) {
    .pc_br {
      display: none;
    }
    .tab_br {
      display: block;
    }
    .sp_br {
      display: none;
    }
  }
  
  @media screen and (max-width: 480px) {
    .tab_br {
      display: block;
    }
    .sp_br {
      display: block;
    }
  }

  /*------------------------------------------
      // cssリセット end
------------------------------------------*/

  /*------------------------------------------
      ベース＆共通 start
------------------------------------------*/
html {
  font-family: sans-serif;
}

body {
  font-family: "Roboto",
  Arial,
  'Noto Sans JP',
  sans-serif;
}

p,td{
  line-height: 1.6;
  font-size: clamp(16px, 1.25vw, 20px);
}

.mb{
  margin-bottom: 1em;
}

/*-------- 各コンテンツ内　余白 --------*/
.p_section {
  padding: 100px 0;
}
@media screen and (max-width: 812px) {
  .p_section {
    padding: 60px 0;
  }
}
@media screen and (max-width: 480px) {
  .p_section {
    padding: 40px 0;
  }
}
/*-------- // 各コンテンツ内　余白 end --------*/
/*-------- 各コンテンツ内　横幅 --------*/
.l_inner {
  max-width: 1440px;
  width: 90%;
  margin: 0 auto;
}
/*-------- // 各コンテンツ内　横幅 end --------*/
/*-------- 背景　--------*/
.bg-honeycomb {
  background: url(../images/bg_honeycomb.png);
  background-repeat: repeat-y;
  background-size: cover;
}

.bg-pale-green{
  background-color:var(--bg-pale-green);
}
/*-------- // 背景　end --------*/
/*-------- 上付き文字 --------*/
sup {
  top: -1.5em;
}
sup {
  font-size: 35%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
/*-------- // 上付き文字 end --------*/
/*-------- ルビ --------*/
ruby[data-ruby] rt {
  display: none;
}
 
ruby[data-ruby] {
  position: relative;
  display: inline-block;
}
 
ruby[data-ruby]::after {
  content: attr(data-ruby);
  position: absolute;
  transform: translate(-50%, -1.7em);
  display: block;
  left: 50%;
  top: 15%;
  white-space: nowrap;
  font-size: 30%;
  letter-spacing: 0;
}
/*-------- // ルビ end --------*/
/*-------- 強調文 --------*/
.marker{
  font-weight: bold;
  background: linear-gradient(transparent 60%, var(--light-gree) 30%);
  display: inline;
  /* 背景の繰り返しを停止 */
  background-repeat: no-repeat;

  /* マーカーの横方向を0にして縮める */
  background-size: 0% 100%;

  /* マーカーが引かれる速度を指定 */
  transition:background-size 1.5s;
}
/* マーカーが引かれる際に付与するクラス */
.marker.on {
  /* 横方向を100%にして、マーカーを引く */
  background-size: 100% 100%;
}

/*-------- // 強調文 end --------*/
/*-------- 注釈文 --------*/
.annotation{
  font-size: 14px;
}
/*-------- // 注釈文 end --------*/
/*-------- テキスト　色変え --------*/
.txt_green{
  color: var(--bace-green);
}
/*-------- // テキスト　色変え end --------*/
/*-------- テキスト内リンク --------*/
.txt_link{
  color: var(--bace-green);
  display: inline-block;
  position: relative;
}
.txt_link::after{
  content: '';
  width: 6px;
  height: 6px;
  border: 0;
  border-top: solid 2px var(--bace-green);
  border-right: solid 2px var(--bace-green);
  transform: rotate(45deg);
  position: absolute;
  top: 0.1em;
  right: -.6em;
  bottom: 0;
  margin: auto;
}

/*-------- // テキスト　色変え end --------*/

/*-------- 画像　PC・SP入れ替え --------*/
.pc_img{
  display: inline-block;
}
.sp_img{
  display: none;
}
@media screen and (max-width: 812px) {
  .pc_img{
    display: none;
  }
  .sp_img{
    display: block;
  }
}
/*-------- // 画像　PC・SP入れ替え end --------*/

/*-------- コンテンツ内　h2 --------*/
.section_ttl{
  position: relative;
  padding: 0.5rem 0 2rem;
  margin-bottom: 40px;
  font-weight: bold;
  font-size: clamp(36px, 2.625vw, 46px);
  color: var(--navy);
  background-image: linear-gradient(90deg, #4AEEB8 50%, #28EB76 100%);
  background-repeat: no-repeat;
  background-size: 9rem 0.3rem;
  background-position: bottom;
  text-align: center;
}
@media screen and (max-width: 812px) {
  .section_ttl{
    padding: 0.5rem 0 1.5rem;
  }
}
@media screen and (max-width: 480px) {
  .section_ttl{
    font-size: clamp(25px, 2.1vw, 28px);
  }
}

/*-------- // コンテンツ内　h2 end --------*/
/*-------- h2の下のリード文 --------*/
.section_lead {
  text-align: center;
  line-height: 2;
  letter-spacing: 0.05em;
  padding-bottom: 60px;
}
@media screen and (max-width: 812px) {
  .section_lead {
  text-align: left;
  line-height: 1.6;
  padding-bottom: 40px;
  }
}
/*-------- // h2の下のリード文 end--------*/
/*-------- コンテンツ内　h3 --------*/
.sub_ttl{
  font-size: clamp(28px, 2.125vw, 32px);
  font-weight: bold;
  color: var(--bace-green);
  line-height: 1.4;
  font-feature-settings: "palt";
}
@media screen and (max-width: 480px) {
.sub_ttl{
font-size: clamp(21px, 4.1vw, 24px);
}
}

/*-------- // コンテンツ内　h3 end--------*/
/*-------- コンテンツ内　h4 --------*/
h4 {
  color: var(--navy);
  font-size: clamp(18px, 1.2vw, 21px);
}
/*-------- // コンテンツ内　h3 end--------*/
/*-------- CTAボタン --------*/
.btn_copy{
  color: var(--navy);
  position: relative;
  display: block;
  width: fit-content;
  margin-right: auto;
  margin-bottom: 8px;
  margin-left: auto;
  font-weight: 500;
  font-size: clamp(14px, 3.333vw, 16px);
  line-height: 1;
}
@media screen and (max-width: 812px) {
  .btn_copy{
    display: none;
  }
  }
/* ボタン共通設定 */
a.btn-cta {
  color: #fff;
  border: 2px solid #fff;
  border-radius: 0;
  -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, .1);
  box-shadow: 0 5px 10px rgba(0, 0, 0, .1);
  font-weight: 700;
  line-height: 1.5;
  position: relative;
  display: inline-block;
  padding: 0.4em 1em;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  letter-spacing: 0.1em;
}

/* 矢印 */
a.btn-cta::after{
  content: '';
  width: 6px;
  height: 6px;
  border: 0;
  border-top: solid 2px var(--white);
  border-right: solid 2px var(--white);
  transform: rotate(45deg);
  position: absolute;
  top: 0;
  right: 10%;
  bottom: 0;
  margin: auto;
}

.btn_gradient{
  background-image: -webkit-gradient(linear, left top, right top, from(#00649B), to(#00A4D5));
  background-image: -webkit-linear-gradient(left, #00649B 0%, #00A4D5 100%);
  background-image: linear-gradient(to right, #00649B 0%, #00A4D5 100%);
}
.btn_green{
  background-color: #32CBC5;
}
/* //  ボタン共通設定　end */
/* ボタン　ホバー時 */
a.btn-cta:hover {
  -webkit-transform: translate(0, -2px);
  transform: translate(0, -2px);
  color: #fff;
  -webkit-box-shadow: 0 8px 15px rgba(0, 0, 0, .2);
  box-shadow: 0 8px 15px rgba(0, 0, 0, .2);
}
/*--------ul 周り共通 --------*/
.ulbox{
  background-color: var(--bitter-green);
  padding: clamp(25px, 10*(1vw + 1vh), 30px);
}

.ulbox li{
  font-size: clamp(18px, 1vw, 20px);
  color: var(--navy);
  margin-bottom: 1.1em;
  padding-left: 2em;
  position: relative;
  line-height: 1.5;
}
.ulbox li:last-child{
  margin-bottom: 0;
}
.ulbox li::before{
  content: '';
  width: 1.3em;
  height: 1.3em;
  background-image: url(../images/icon_check.svg);
  background-repeat: no-repeat;
  background-size: contain;
  vertical-align: middle;
  position:absolute;
  top:0;
  left:0;
}
@media screen and (max-width: 812px) {
  .ulbox li{
    font-size:16px;
  }
}
@media screen and (max-width: 480px) {
  .ulbox{
    padding: max(7%, 20px);
  }
  .ulbox li{
    padding-left: 1.4em;
  }
  .ulbox li::before{
    width: 1em;
    height: 1em;
    top: 0.2em;
  }
}

  /*------------------------------------------
      //  ベース＆共通 end
------------------------------------------*/

  /*------------------------------------------
      FVエリア start
------------------------------------------*/
.fv {
  min-width: 1280px;
  background: url(../images/fv_bg.png) no-repeat;
  background-size: cover;
}
@media screen and (max-width: 812px) {
  .fv {
    min-width: 100%;
    background: url(../images/bg_honeycomb_sp.png) no-repeat,url(../images/fv_bg_sp.png) no-repeat;
    background-size: cover;
  }
}
.fv_inner {
  display: flex;
  align-items: center;
  max-width: 1600px;
  width: 90%;
  margin: auto;
  padding: max(7.5vw, 90px) 3% max(6vw, 60px);
}
@media screen and (max-width: 812px) {
  .fv_inner {
      flex-flow: column;
      width: 86%;
      padding: max(8.5vw, 104px) 0 max(6.5vw, 40px) 0;
  }
}
@media screen and (max-width: 480px) {
  .fv_inner {
      padding: max(5.5vw, 80px) 0 max(6.5vw, 40px) 0;
  }
}
.fv_left {
  width: auto;
  height: auto;
  position: initial;
  transform: initial;
  display: flex;
  flex-direction: column;
  margin-right: 2%;
}
@media screen and (max-width: 812px) {
  .fv_left {
    width: 100%;
    margin-right: 0;
  }
}
.fv_ttl{
  width: 100%;
  max-width: initial;
  height: auto;
  margin-bottom: 2em;
  opacity: initial;
  transition: 0.8s ease;
  transform: initial;
  font-weight: bold;
  font-feature-settings: "palt";
  flex-direction: column;
  display: flex;
  align-items: center;
}

.fv_ttl h1 .ttl_main {
  font-size: clamp(90px, 8.75vw, 120px);
  font-weight: bold;
  color: var(--navy);

  display: block;
  animation: moveInLeft 1s ease-out;
}

@keyframes moveInLeft {
  0% {
    opacity: 0;
    transform: translateX(-100px);
  }
  
  80% {
    transform: translateX(10px);
  }
  
  100% {
    opacity: 1;
    transform: translate(0);
  }
}

@media screen and (max-width: 480px) {
  .fv_ttl h1 .ttl_main{
    font-size: 16vw;
  }
}

.fv_ttl h1 .ttl_main sup{
  color: var(--navy);
}

.ttl_small{
  font-size: clamp(14px, 1.85vw, 16px);
  color: var(--bace-green);
  text-align: center;
  align-items: center;
  display: flex;
  justify-content: center;
  margin-bottom: .7em;

  animation: moveInRight 1s ease-out;
}
@keyframes moveInRight {
  0% {
    opacity: 0;
    transform: translateX(100px);
  }
  
  80% {
    transform: translateX(-10px);
  }
  
  100% {
    opacity: 1;
    transform: translate(0);
  }
}


.ttl_small::before,
.ttl_small::after {
  background-color: var(--bace-green);
  content: "";
  height: 1px; /* 横線の高さ */
  width: 60px; /* 横線の長さ */
}
.ttl_small::before {
  margin-right: 15px; /* 文字との余白 */
}
.ttl_small::after {
  margin-left: 15px; /* 文字との余白 */
}
.fv_sub-ttl{
  font-size: clamp(30px,3.75vw, 36px);
  font-weight: 500;
  color: var(--navy);
  background: linear-gradient(transparent 60%, var(--white) 0%);
}
@media screen and (max-width: 480px) {
  .fv_sub-ttl{
    font-size: 5.5vw;
  }
}
.fv .ulbox{
  margin-bottom: 3.5em;
  background: transparent;
  padding: 0;
}
@media screen and (max-width: 812px) {
  .fv .ulbox{
    margin-bottom: 2em;
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (max-width: 480px) {
  .fv .ulbox{
    margin-bottom: 1em;
  }
}
.fv .ulbox li{
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 1em;
}
.fv .ulbox li:last-child{
  margin-bottom: 0;
}
.fv .ulbox li::before{
 top: 0.1em;
}
@media screen and (max-width: 480px) {
  .fv .ulbox li{
  padding-left: 1.4em;
  }
  .fv .ulbox li::before{
    top: 0.2em;
   }
}

.fv_cta_list{
  display: flex;
  position: relative;
  gap: 15px;
  justify-content: center;
}
.fv_cta_list .btn-cta{
  font-size: 1.2em;
  width: 250px;
}
@media screen and (max-width: 812px) {
  .fv_cta_list .btn_size{
    width: 80%;
  }
  .fv_cta_list .btn-cta{
    max-width: 100%;
    width: 100%;
    font-size: clamp(18px, 3.333vw, 20px);;
  }
}
@media screen and (max-width: 480px) {
  .fv_cta_list{
    flex-direction: column;
    gap: 10px;
  }
  .fv_cta_list .btn_size{
    width: 100%;
  }
}

.fv_right {
  display: flex;
  justify-content: center;
  margin-top: 5em;
}
@media screen and (max-width: 812px) {
  .fv_right {
      width: 82%;
      display: flex;
      justify-content: center;
      margin-top: 2%;
  }
}


  /*------------------------------------------
      //  FVエリア end
------------------------------------------*/

  /*------------------------------------------
      problem start
------------------------------------------*/
.problem{
  background-color:#A5E1DF;
}

.problem_section {
  padding: 100px 0 0 0;
  position: relative;
}
@media screen and (max-width: 812px) {
  .problem_section {
    padding: 60px 0 0 0;
  }
}
@media screen and (max-width: 812px) {
  .problem_section {
    padding: 40px 0 0 0;
  }
}

.problem_wrap{
  width: 85%;
  background-color: var(--white);
  margin: 0 auto;
  position: relative;
  padding: clamp(30px, 3.125vw, 60px) clamp(20px, 3.125vw, 60px) clamp(100px, 10*(1vw + 1vh), 150px) clamp(20px, 3.125vw, 60px);
}
.problem_wrap::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  bottom: calc(100vw / 25);
  transform: translateY(-50%) translateX(-50%); 
  margin: auto;
  width: 200px;
  height: 60px;
  background: url(../images/icon_arrow.png) no-repeat;
  background-size: contain;
}
@media screen and (max-width: 812px) {
  .problem_wrap{
    width: 90%;
  }
  .problem_wrap::after {
    width: 5em;
    height: 2em;
    bottom: calc(100vw / 12);
  }
}
@media screen and (max-width: 480px) {
  .problem_wrap{
    padding: max(7%, 25px) max(7%, 25px) max(10%, 125px) max(7%, 25px);
  }
  .problem_wrap::after {
    bottom: 8%;
  }
}


.problem_ttl{
  font-size: clamp(20px, 2.625vw, 32px);
  font-weight: bold;
  line-height: 1.5;
  color: var(--navy);
  text-align: center;
  margin-bottom: 5%;
}
.problem_ttl .marker{
  font-size: clamp(22px, 2.625vw, 34px);
}
.problem_ttl .txt_green{
  color: var(--bace-green);
  font-size: 45px;
}
@media screen and (max-width: 812px) {
  .problem_ttl .txt_green{
    font-size: clamp(24px, 2.625vw, 36px);
  }
}
@media screen and (max-width: 480px) {
  .problem_ttl{
    font-size: 3.5vw;
  }
  .problem_ttl .marker{
    font-size: 3.8vw;
  }
  .problem_ttl .txt_green{
    color: var(--bace-green);
    font-size: 4.5vw;
  }
}

.problem_inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 812px) {
  .problem_inner{
    flex-flow: column;
  }
}

.problem_img{
  max-width: 458px;
  width: 45%;
  margin-right: 2%;
}
@media screen and (max-width: 812px) {
  .problem_img{
    width: 80%;
    margin-right: 0;
    margin-bottom: 5%;
  }
}
.problem_txt{
  width: 50%;
}
@media screen and (max-width: 812px) {
  .problem_txt{
    width: 100%;
  }
}

.problem .ulbox{
  font-weight: 700;
}


.solution{
  max-width: 1440px;
  width: 90%;
  margin: 0 auto;
  background-color: var(--white);
  border: 5px solid var(--blue-green);
  box-shadow: 7px 7px 0px 0px var(--blue-green);
  position: absolute;
  right: 0;
  left: 0;
  bottom: -8%;
  margin: 0 auto;
  z-index: 1;
}

.solution p{
  font-size: clamp(30px, 2.625vw, 50px);
  font-weight: bold;
  color: var(--navy);
  text-align: center;
  padding: 1em 0;
}
.solution p span{
  color: var(--bace-green);
}
@media screen and (max-width: 812px) {
  .solution{
    bottom: -5%;
  }
  .solution p{
    font-size: 4vw;
  }
}
@media screen and (max-width: 480px) {
  .solution{
    bottom: -7%;
  }
  .solution p{
    font-size: max(3.448vw, 20px);
  }
}

/*-- problem下の高さ --*/
.bg_hight{
  height: calc(100vw / 20 );
  width: 100%;
  background-color: var(--bg-pale-green);
}
@media screen and (max-width: 812px) {
  .bg_hight{
    height: calc(100vw / 10 );
  }
}
@media screen and (max-width: 480px) {
  .bg_hight{
    height: calc(100vw / 8 );
  }
}

  /*------------------------------------------
      //  problemエリア end
------------------------------------------*/
  /*------------------------------------------
      about start
------------------------------------------*/
.about_section {
  padding: 100px 0 100px 0;
  position: relative;
}
@media screen and (max-width: 812px) {
  .about_section {
    padding: 60px 0;
  }
}
@media screen and (max-width: 812px) {
  .about_section {
    padding: 40px 0;
  }
}

.about figure{
  text-align: center;
}

.about img{
  width: 93%;
  margin-bottom: 80px;
}
@media screen and (max-width: 812px) {
  .about img{
    width: 100%;
    margin-bottom: 60px;
  }
}

.merit_wrap{
  background-color:var(--bitter-green);
  position: relative;
}

.merit_wrap::before {
  content: "";
  position: absolute;
  top: -5%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%); 
  margin: auto;
  width: 200px;
  height: 60px;
  background: url(../images/icon_arrow.png) no-repeat;
  background-size: contain;
}
@media screen and (max-width: 812px) {
  .merit_wrap::before{
    top: 0;
    width: 5em;
    height: 2em;
  }
}
@media screen and (max-width: 480px) {
  .merit_wrap::before{
    top: -1.5em;
  }
}

.merit_inner{
  padding: clamp(40px, 4.125vw, 80px) clamp(30px, 3.125vw, 60px) clamp(30px, 3.125vw, 60px) clamp(30px, 3.125vw, 60px);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: 1fr;
  gap: clamp(8px, 1.625vw, 10px);
}
@media screen and (max-width: 480px) {
  .merit_inner{
    padding: max(7%, 20px);
    grid-auto-flow: column;
    grid-template-rows: repeat(2, auto);
    grid-template-columns: none;
    gap: 25px 0;
  }
}
.merit_item{
  position: relative;
  padding: clamp(20px, 3.125vw, 30px);
  background-color:var(--white);
  border: 2px solid var(--blue-green);
}
.merit_item::after {
  content: "";
  height: 30px;
  width: 30px;
  position: absolute;
  top: -3px;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 1;
  background: url(../images/icon_check.svg) no-repeat center center;
  background-size: 30px 30px;
  background-position: top;
  filter: none;
}
@media screen and (max-width: 480px) {
  .merit_item::after{
    height: 20px;
    width: 20px;
    background-size: 20px 20px;
  }
}
@media screen and (max-width: 480px) {
  .merit_item{
    padding: max(3%, 20px);
  }
}
.merit_sub_ttl{
  font-size: clamp(24px, 2.625vw, 28px);
  font-weight: bold;
  color: var(--navy);
  text-align: center;
  margin-bottom: 0.7em;
}
@media screen and (max-width: 480px) {
  .merit_sub_ttl{
    font-size: clamp(18px, 4.1vw, 20px);
  }
}

  /*------------------------------------------
      //  aboutエリア end
------------------------------------------*/
  /*------------------------------------------
      features start
------------------------------------------*/
.features_box_bg{
  position: absolute;
  width: 626px;
  height: 260px;
  background: linear-gradient(90deg, rgb(74, 219, 238, 0.6), rgb(40, 235, 118, 0.6));
  left: auto;
  right: 0;
}
@media screen and (max-width: 812px) {
  .features_box_bg{
    width: 90%;
  }
}
.features_box_bg.--left{
  left:0;
}
.features_box{
padding-top: 50px;
}
@media screen and (max-width: 480px) {
  .features_box{
    padding-top: 30px;
  }
}
.features_item{
  position: relative;
  background: var(--white);
  border: 2px solid var(--blue-green);
  box-shadow: 7px 7px 0px 0px var(--blue-green);
  margin-bottom: 60px;
}
.features_item.--last{
  margin-bottom: 0;
}
@media screen and (max-width: 480px) {
  .features_item{
    margin-bottom: 30px;
  }
}
.features_item_inner{
  display: flex;
  gap: 0 5%;
  padding: 55px 50px;
}
@media screen and (max-width: 812px) {
  .features_item_inner{
    flex-flow: column;
    padding: clamp(30px, 3.125vw, 40px);
  }
}
@media screen and (max-width: 480px) {
  .features_item_inner{
    padding: max(7%, 25px);
  }
}
.features_txt{
  text-align: left;
  max-width: 590px;
}
.features_txt .h3_area{
  display: flex;
  align-items: center;
  gap: 0 1.2em;
  margin-bottom: 2em;
}
.features_txt p{
  margin-bottom: 2em;
}
@media screen and (max-width: 812px) {
  .features_txt{
    width: 100%;
    max-width: 100%;
  }
  .features_txt .h3_area{
    margin-bottom: 5%;
  }
  .features_txt .h3_area img{
    width: 2.5rem;
  }
  .features_txt p{
    margin-bottom: 5%;
  }
}
@media screen and (max-width: 480px) {
  .features_txt .h3_area img{
    width: 2rem;
  }
}

.features .ulbox{
  padding: 20px;
}

.features .ulbox li{
  font-size: 18px;
  margin-bottom: 0.8em;
  padding-left: 1.5em;
  position: relative;
}
.features .ulbox li:last-child{
  margin-bottom: 0;
}

.features .ulbox li::before{
  width: 18px;
  height: 18px;
  top: 0.2em;
}
@media screen and (max-width: 812px) {
  .features .ulbox{
    margin-bottom: 5%;
  }
  .features .ulbox li{
    font-size: 16px;
  }
}

.features_img{
  display: flex;
  justify-content: center;
  max-width: 530px;
  min-width: 220px;
  height: 100%;
  display: block;
}
@media screen and (max-width: 812px) {
  .features_img{
    max-width: 100%;
  }
}
  /*------------------------------------------
      //  featuresエリア end
------------------------------------------*/
  /*------------------------------------------
      コンテンツ内CTAエリア start
------------------------------------------*/
.cta_area{
  background: url(../images/bg_cta_honeycomb.png) no-repeat,linear-gradient(90deg, rgb(74, 219, 238, 0.5), rgb(40, 235, 118, 0.5)),url(../images/bg_cta_hexagon.png) no-repeat;
  background-size: cover;
  padding: 60px 0;
}
@media screen and (max-width: 480px) {
  .cta_area{
    padding: 40px 0;
  }
}
.cta_inner{
  width: 90%;
  margin: 0 auto;
  text-align: center;
}

.balloon{
  position: relative;
  display: inline-block;
  margin-bottom: 1.5em;
  padding: 0.5em 2em;
  min-width: 120px;
  max-width: 100%;
  color: var(--navy);
  font-size: clamp(34px, 2.625vw, 42px);
  background: var(--white);
  border-radius: 50px;
}
.balloon:before {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -15px;
  border: 15px solid transparent;
  border-top: 15px solid var(--white);
}
@media screen and (max-width: 812px) {
  .balloon{
    font-size: clamp(26px, 3.695vw, 30px);
  }
}
@media screen and (max-width: 480px) {
  .balloon{
    font-size: max(5.4vw, 20px);
  }
}
.balloon h2 {
  margin: 0;
  padding: 0;
}

.cta_box{
  display: flex;
  justify-content: center;
}

.cta_list{
  display: flex;
  position: relative;
  gap: 15px;
}
.cta_list .btn_copy{
  font-size: clamp(18px, 3.333vw, 20px);
  margin-bottom: 0.6em;
}
@media screen and (max-width: 812px) {
  .cta_list{
    flex-direction: column;
    width: 100%;
  }
  .cta_list .btn_copy{
    display: block;
    font-size: 16px;
  }
}

.cta_list .btn-cta{
  font-size: 1.2em;
  width: 335px;
}
@media screen and (max-width: 812px) {
  .cta_list .btn-cta{
    width: 100%;
  }
}

.cta_list .btn_size{
  width: 335px;
}
@media screen and (max-width: 812px) {
  .cta_list .btn_size{
    width: 100%;
  }
}


  /*------------------------------------------
      //  コンテンツ内CTAエリア end
------------------------------------------*/
  /*------------------------------------------
      evaluation start
------------------------------------------*/
.evaluation_img{
  text-align: center;
  margin-bottom: 40px;
}
@media screen and (max-width: 480px) {
  .evaluation_img{
    margin-bottom: 5%;
  }
}

.evaluation_img img{
  width: 877px;
}

.evaluation_list{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: 1fr;
  gap: clamp(30px, 3.125vw, 50px);
}
@media screen and (max-width: 812px) {
  .evaluation_list{
    grid-auto-flow: column;
    grid-template-rows: repeat(2, auto);
    grid-template-columns: none;
  }
}

.evaluation_list_card{
  display: flex;
  flex-direction: column;
  background-color: var(--white);
  border: 2px solid var(--blue-green);
  box-shadow: 7px 7px 0px 0px var(--blue-green);
  padding: clamp(30px, 3.125vw, 40px);
}

.evaluation_list_card .sub_ttl{
  text-align: center;
  margin-bottom: 40px;
}
.evaluation_list_card figure{
  margin-bottom: 40px;
}
@media screen and (max-width: 812px) {
  .evaluation_list_card figure{
    margin-bottom: 5%;
  }
}
.evaluation_list_card p.lead{
  margin-bottom: 20px;
}
.evaluation_ulbox_wrap{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: auto;
  gap: 10px;
}
@media screen and (max-width: 480px) {
  .evaluation_ulbox_wrap{
    grid-template-rows: repeat(2, auto);
    grid-template-columns: none;
  }
}
.evaluation_ulbox_wrap.--1column{
  grid-template-columns: repeat(1, 1fr);
}
.evaluation_ulbox_item{
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 2;
}

.evaluation_ulbox_item .h4_area{
  display: grid;
  align-items: center;
  text-align: center;
}
.evaluation_ulbox_item sup{
  font-size: 75%;
  top: 0;
}
.evaluation .ulbox{
  padding: clamp(15px, 3.125vw, 20px);
}

.evaluation .ulbox li{
  font-size: 18px;
  margin-bottom: 0.8em;
  padding-left: 1.5em;
  position: relative;
}
.evaluation .ulbox li:last-child{
  margin-bottom: 0;
}
.evaluation .ulbox li::before{
  width: 18px;
  height: 18px;
  top: 0.2em;
}
@media screen and (max-width: 812px) {
  .evaluation .ulbox li{
    margin-bottom: 0.5em;
  }
}
  /*------------------------------------------
      //  evaluation end
------------------------------------------*/
  /*------------------------------------------
      flow start
------------------------------------------*/
.flow_wrap {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: calc(100vw / 90);
  margin-top: 3%;
}
@media screen and (max-width: 812px) {
  .flow_wrap {
    grid-template-columns: repeat(auto-fit, minmax(10rem, 1fr));
    gap: 3em calc(100vw / 90);
  }
}
@media screen and (max-width: 480px) {
  .flow_wrap {
    grid-auto-flow: column;
    grid-template-rows: repeat(5, auto);
    grid-template-columns: none;
    row-gap: 0.75rem;
    margin-left: 5%;
    margin-top: 0;
  }
}
.flow_item{
  position: relative;
  border: 2px solid var(--bace-green);
  background: #ffffff;
  padding: clamp(15px, 3.125vw, 20px);
}
@media screen and (max-width: 480px) {
  .flow_item{
    display: flex;
    column-gap: 1.2rem;
    align-items: center;
    padding: 1rem 1rem 1rem 2rem;
  }
}
.flow_item.item4{
  position: relative;
}
/*--
.flow_item.item4::after{
  content: "";
  position: absolute;
  bottom: -150px;
  left: 105%;
  transform: translateY(-50%) translateX(-50%);
  margin: auto;
  width: 202px;
  height: 157px;
  background: url(../images/flow_support.svg) no-repeat;
  background-size: contain;
}
  --*/
.flow_item .num {
  position: absolute;
  top: -1.76rem;
  left: 50%;
  transform: translateX(-50%);
  aspect-ratio: 1;
  width: 3.5rem;
  height: auto;
}
@media screen and (max-width: 480px) {
  .flow_item .num {
    top: 50%;
    left: 0;
    transform: translate(-50%, -50%);
    width: 2.5rem;
  }
}
.flow_item .icon {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: auto;
  height: auto;
  margin-bottom: 1.5em;
  margin-top: 2em;
}
@media screen and (max-width: 480px) {
  .flow_item .icon {
    justify-content: flex-start;
    height: auto;
    width: 3.75rem;
    height: auto;
    margin: 0;
  }
}
.flow_item .icon1{
  width: 3.2em;
}
.flow_item .icon2{
  width: 4em;
}
.flow_item .icon3{
  width: 3em;
}
.flow_item .icon4{
  width: 3.9em;
}
.flow_item .icon5{
  width: 2.5em;
}
@media screen and (max-width: 480px) {
  .flow_item .icon1{
    width: 2.5em;
  }
  .flow_item .icon2{
    width: 2.7em;
  }
  .flow_item .icon3{
    width: 2.7em;
  }
  .flow_item .icon4{
    width: 2.9em;
  }
  .flow_item .icon5{
    width: 2.5em;
  }
}

.flow_item p{
  font-weight: 700;
  font-size: clamp(18px, 2.125vw, 21px);
  color: var(--navy);
  line-height: 1.3;
  letter-spacing: 0.04em;
  text-align: center;
  font-feature-settings: "palt";
}

@media screen and (max-width: 480px) {
  .flow_item p{
    text-align: left;
  }

  .txt_wrap{
    width: 100%;
  }
}
  /*------------------------------------------
      //  flow end
------------------------------------------*
  /*------------------------------------------
      specification start
------------------------------------------*/
.table_design {
  border-collapse: collapse;
  width: 100%;
  border: 1px solid var(--gray-blue);
}
.table_design td {
  border-bottom: 1px solid var(--gray-blue);
  background-color: var(--white);
  padding: 0.5em 1em;
}
.table_design th {
  font-size: clamp(16px, 1.25vw, 20px);
  white-space: nowrap;
  border-bottom: 1px solid var(--white);
  background-color: var(--gray-blue);
  color: var(--white);
  font-weight: bold;
  text-align: center;
  width: 20%;
  min-width: 4em;
  padding: 0.5em;
}
.table_design td.no-border,
.table_design th.no-border {
  border: none;
}
  /*------------------------------------------
      //  specification end
------------------------------------------*