@charset "UTF-8";
/* CSS Document */
/*-------------------------------------------------------------------------------------
PC用レイアウト（768px以上スクリーン）
----------------------------------------------------------------------------------------*/
/*--------------------------------------------------
共通設定(PC)
-----------------------------------------------------*/
/*body全体の初期スタイル調整*/
body {
  font-size: 62.5%; /*emの計算をしやすくするための定番設定*/
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  color: #333333;
  box-sizing: border-box;
}
/*リンク文字の設定*/
a {
  text-decoration: underline;
}
a:link, a:visited {
  color: #39f;
}
a:hover, a:active {
  color: #f60;
}
.footer a {
  color: #fff !important;
}
/*ブラウザのCSSをリセット*/
p {
  margin: 0 !important;
  padding: 0 !important;
}
/*セクションエリアの共通設定*/
section {
  clear: both;
  overflow: auto;
}
/*--------------------------------------------------
見出しタグ設定（PC）
-----------------------------------------------------*/
/*--------------------------------------------------
全体レイアウト／背景設定（PC）
-----------------------------------------------------*/
/*全体エリア（全体背景を設定するにはここ）*/
.main {
  background-color: #fff;
}
/*記事(ボディ)エリア*/
.article {
  background-color: #fff;
  font-size: 1.6em; /*=16px*/
}
/*記事(ボディ)エリアの行間*/
.article p {
  line-height: 1.6;
}
.article {
  width: 100%;
}
/*カラム全体の幅を変更する*/
.top_image_in, .section_inr {
  width: 950px;
  margin: 0 auto; /*真ん中に要素を置きたいときに使う*/
}
/*--------------------------------------------------
上部固定ヘッダー設定
-----------------------------------------------------*/
/*上部固定ヘッダー全体*/
.header {
  position: sticky;
  position: -webkit-sticky;
  top: 0;
  z-index: 5000;
  background-color: rgba(255, 255, 255, 0.9);
  overflow: auto;
}
/*ヘッダー内部をカラム幅にする*/
.header_inr {
  width: 100%;
  max-width: 950px;
  margin: 1rem auto;
  overflow: hidden;
  align-items: center;
  display: flex;
}
/*ヘッダーのロゴ*/
.header_logo {
  width: 35%;
  float: left;
  margin: 0em;
}
/*ヘッダーの問い合わせボタン*/
/*ヘッダーの電話ボタン*/
/*ヘッダー内の画像が常に幅100%になるように*/
.header_logo img {
  width: 100%;
}
a {
  text-decoration: none;
  color: #333333;
}
nav {
  margin: 0 0 0 auto;
}
ul {
  list-style: none;
  margin: 0;
  display: flex;
}
li {
  margin: 0 0 0 15px;
  font-size: 14px;
}
.sp-nav {
  display: none;
}
@media screen and (max-width: 950px) {
  /*===========
.scroll-box
===========*/
  .scroll-box {
    overflow-x: auto;
    padding-bottom: 10px;
    -webkit-overflow-scrolling: touch;
  }
  .scroll-box div img {

    vertical-align: top;
  }
  /*===========
scrollbar
===========*/
  /*スクロールバー全体の高さ*/
  .scroll-box::-webkit-scrollbar {
    height: 4px;
  }
  /*スクロールバー全体の背景*/
  .scroll-box::-webkit-scrollbar-track {
    background: #eee;
  }
  /*スクロールバーの動く部分*/
  .scroll-box::-webkit-scrollbar-thumb {
    background: #aaa;
    border: none;
  }
  /*スクロールバーの動く部分のホバー（マウスオーバー）*/
  .scroll-box::-webkit-scrollbar-thumb:hover {
    background: #999;
  }
  a {
    text-decoration: none;
    color: #fff ;
  }
  .pc-nav {
    display: none;
  }
  .sp-nav {
    z-index: 1;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    display: block;
    width: 100%;
    background: rgba(0, 0, 0, .8);
    opacity: 0;
    transform: translateY(-100%);
    transition: all .2s ease-in-out;
  }
  #hamburger {
    position: relative;
    display: block;
    width: 30px;
    height: 20px;
    margin: 0 0 0 auto;
  }
  #hamburger span {
    position: absolute;
    top: 50%;
    left: 0;
    display: block;
    width: 100%;
    height: 2px;
    background-color: #333;
    transform: translateY(-50%);
  }
  #hamburger::before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #333;
  }
  #hamburger::after {
    content: '';
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 70%;
    height: 2px;
    background-color: #333;
  }
  /*スマホメニュー*/
  .sp-nav ul {
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
  }
  .sp-nav li {
    margin: 0;
    padding: 0;
  }
  .sp-nav li span {
    font-size: 15px;
    color: #fff;
  }
  .sp-nav li a, .sp-nav li span {
    display: block;
    padding: 20px 0;
    color: #ffff00;
  }
  /*-閉じるアイコンー*/
  .sp-nav .close {
    position: relative;
    padding-left: 20px;
  }
  .sp-nav .close::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    display: block;
    width: 16px;
    height: 1px;
    background: #ffff00;
    transform: rotate(45deg);
  }
  .sp-nav .close::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    display: block;
    width: 16px;
    height: 1px;
    background: #ffff00;
    transform: rotate(-45deg);
  }
  .toggle {
    transform: translateY(0);
    opacity: 1;
  }
  .main-visual {
    padding: 0 4%;
  }
}
/*--------------------------------------------------
ファーストビュー設定
-----------------------------------------------------*/
.top_image {
  background-image: url("../images/top_image_back.jpg");
  background-repeat: no-repeat;
  background-position: top center;
  height: auto;
}
.top_image_in img {
  width: 100%;
}
/*--------------------------------------------------
sectionの設定
-----------------------------------------------------*/
/*.section_01 {
  background: #fff;
  padding: 0 3em 1.5em;
  background-image: url("../images/blue-bg3.jpg");
  background-repeat: no-repeat;
  background-position: bottom center;
  background-size: cover;
  height: auto;
  overflow: hidden;
  text-align: left;
  margin-top: 3%;
}*/
.section_02 {
  background-color: #FFF;
  overflow: hidden;
  text-align: left
}
.section_03 {
  background-color: #f3f3f3;
  overflow: hidden;
  text-align: center;
  padding-bottom: 3%;

}
/*--------------------------------------------------
チェックリスト設定
-----------------------------------------------------*/
/*--------------------------------------------------
テーブル設定
-----------------------------------------------------*/
/*スマホでは行が列になるテーブルタグ*/
/*--------------------------------------------------
フォーム設定
-----------------------------------------------------*/
/*--------------------------------------------------
よくある質問
-----------------------------------------------------*/
/*--------------------------------------------------
CTAエリア
-----------------------------------------------------*/
/*--------------------------------------------------
フッター部分
-----------------------------------------------------*/
.footer {
  background-color: #0d2f54;
  padding: 2em 0em;
  text-align: center;
  font-size: 1.4em;
  color: #fff;
}
.footer a {
  color: #fff;
}
/*--------------------------------------------------
特典スクロール部分
-----------------------------------------------------*/
@keyframes infinity-scroll-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
.scroll-infinity__wrap {
  display: flex;
  overflow: hidden;
}
.scroll-infinity__list {
  display: flex;
  list-style: none;
  padding: 0
}
.scroll-infinity__list--left {
  animation: infinity-scroll-left 80s infinite linear 0.5s both;
}
.scroll-infinity__item {
  width: calc(100vw / 6);
}
.scroll-infinity__item > img {
  width: 100%;
}
@media screen and (max-width: 768px) {
  .scroll-infinity__item {
    width: calc(100vw / 5);
  }
}
@media only screen and (max-width : 950px) {
  .scroll-infinity__item {
    width: calc(100vw / 4);
  }
}
/*--------------------------------------------------
追加CSS
-----------------------------------------------------*/
.button a {
    background: #FF7F50;
    border-radius: 9999px;
    position: relative;
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin: 0 auto;
    max-width: 250px;
    padding: 10px 25px;
    font-family: "Noto Sans Japanese";
    color: #fff;
    line-height: 1.8;
    text-decoration: none;
    transition: 0.3s ease-in-out;
    font-weight: 500;
}
.button a:hover {
    background: #333333;
    color: #FFF;
}
.button a:after {
    content: '';
    width: 5px;
    height: 5px;
    border-top: 3px solid #fff;
    border-right: 3px solid #fff;
    transform: rotate(45deg) translateY(-50%);
    position: absolute;
    top: 50%;
    right: 20px;
    border-radius: 1px;
    transition: 0.3s ease-in-out;
}
.button a:hover:after {
    border-color: #FFF;
}
.btn-area {
  display: block;
  margin: 0 auto;
  width: 50%;
}
a.btn_1 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: center;
  text-decoration: none;
  width: 80%;
  margin: auto;
  padding: 1rem 4rem;
  font-weight: bold;
  background: #115f9f;
  color: #fff;
  border-radius: 100vh;
  position: relative;
  transition: 0.5s;
  font-size: 100%;
	max-width:460px;
}
a.btn_1::before {
  content: '';
  position: absolute;
  top: calc(50% - 2px);
  right: 1em;
  transform: translateY(calc(-50% - 2px)) rotate(45deg);
  width: 10px;
  height: 1px;
  background: #27acd9;
}
a.btn_1::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 1em;
  transform: translateY(-50%);
  width: 50px;
  height: 1px;
  background-color: #27acd9;
}
a.btn_1:hover {
  background: #d4eef7;
  color: #27acd9;
}
#header {
  height: 70px; /*高さ指定*/
  width: 100%; /*横幅指定*/
  /*以下はレイアウトのためのCSS*/
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.9);
  color: #fff;
  text-align: center;
  padding: 20px;
}
.pc-nav a{
	color:#333;
}
/*JSを使いfixedクラスが付与された際の設定*/
#header.fixed {
  position: fixed; /*fixedを設定して固定*/
  z-index: 999; /*最前面へ*/
  top: 0; /*位置指定*/
  left: 0; /*位置指定*/
}
.center-title {
  display: block;
  margin: 0 auto;
  border: 2px solid #333333;
  width: 100%;
  text-align: center;
  font-size: 1.3em;
  font-weight: 500;
  color: #333333;
  padding: .5em;
}
.floating-banner {
  z-index: 99999;
  bottom: -50px;
  position: fixed;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  top: auto;
}
.banner {
  width: 780px;
  padding: 15px 50px;
  color: #333333;
  font-weight: 400;
  text-align: center;
  font-size: 1.8em;
  margin: 0 auto 1%;
}
.banner-box {
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px 10px;
  max-width: 950px;
}
img.banner-img {
  width: 100%;
  padding: 0 1%;
}
@media screen and (max-width: 768px) {
  .floating-banner {
    z-index: 99999;
    bottom: 0;
    position: fixed;
    left: 0;
    transform: none;
    -webkit-transform: none;
    -ms-transform: none;
    top: auto;
    width: 100vw;
  }
  .banner {
    width: 100vw;
    padding: 8px;
    margin: 0 auto 1%;
  }
  .banner-box {
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px 5px;
    width: 100%;
  }
}
.readmore {
  position: relative;
  margin: 50px auto 0;
  padding: 0 0 75px;
}
.readmore label {
  position: absolute;
  display: table;
  left: 50%;
  bottom: 0;
  margin: 0 auto;
  width: 200px;
  padding: 10px 0;
  color: #fff;
  text-align: center;
  border-radius: 5px;
  background-color: #333;
  transform: translateX(-50%);
  cursor: pointer;
  z-index: 1;
}
.readmore label::before {
  content: '続きを見る';
}
.readmore input[type="checkbox"]:checked ~ label::before {
  content: '元に戻す';
}
.readmore input[type="checkbox"] {
  display: none;
}
.readmore-content {
  position: relative;
  height: 200px;
  overflow: hidden;
}
.readmore input[type="checkbox"]:checked ~ .readmore-content {
  height: auto;
}
.readmore-content::before {
  position: absolute;
  display: block;
  content: "";
  bottom: 0;
  left: 0;
  width: 100%;
  height: 75px;
  background: linear-gradient(rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.8) 50%, #fff 100%);
}
.readmore input[type="checkbox"]:checked ~ .readmore-content::before {
  display: none;
}
.cta2 {
  background-color: #fff;
  width: 48%;
  box-sizing: border-box;
  padding: 2%;
}
.flex-box2 {
  padding: 10px;
  display: flex;
  /* align-items: center; */
  flex-flow: wrap;
  justify-content: center;
  box-sizing: border-box;
  gap: 10px;
}
.flex-box3 {
  max-width: 1100px;
  width: auto;
  padding: 10px;
  display: flex;
  /* align-items: center; */
	flex-wrap:nowrap;
  margin:0 auto;
  justify-content: center;
  box-sizing: border-box;
  gap: 0px;
}

.team {
  font-weight: bold;
  color: #5ec2c6;
  font-size: clamp(84px, 8.6vw, 86px);
}
.relative {
  position: relative;
  font-weight: bold;
}
.absolute {
  position: absolute;
  top: 87%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.absolute img {
  max-width: 1100px;
  overflow: scroll;
}
.relative2 {
  position: relative;
  font-weight: bold;
  font-size: clamp(36px, 4.0vw, 38px);
}
.absolute2 {
  position: absolute;
  right: 0;
  margin: 0 auto;
  top: 87%;
  left: 0%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}
.absolute3 {
  position: absolute;
  top: 108%;
  left: 30%;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 768px) {
  .form-img {
    width: 60% !important;
  }
  .absolute3 {
    position: absolute;
    top: 110%;
    left: 40%;
    transform: translate(-50%, -50%);
  }
}
.arrow_box {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin: 20px 0 0;
  position: relative;
}
.prev-arrow, .next-arrow {
  display: block;
  width: 50px;
  height: 50px;
  background: coral;
  border-radius: 50%;
  transition: all .3s ease;
  cursor: pointer;
  position: relative;
}
.prev-arrow {
  transform: rotate(180deg);
  margin-right: 20px;
}
.prev-arrow::before, .next-arrow::before {
  position: absolute;
  content: "";
  width: 10px;
  height: 10px;
  border-right: 2px solid #FFF;
  border-top: 2px solid #FFF;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  transform: rotate(45deg);
}
.voice-box {
  border-radius: 16px;
  background-color: rgb(255, 255, 255);
  padding: 5%;
}
.voice-box p {
  text-align-last: left;
  font-size: clamp(13px, 2.0vw, 18px) !important;
}
.voice-age {
  font-size: clamp(16px, 2.2vw, 20px) !important;
}
.voice-item1 {}
.voice-item2 {
  padding-bottom: 5px;
}
.flex-box {
  padding: 10px;
  display: flex;
  align-items: flex-end;
  flex-flow: wrap;
  gap: 25px;
  justify-content: center;
}
.flex-box2 {
  padding: 10px;
  display: flex;
  /* align-items: center; */
  flex-flow: wrap;
  justify-content: center;
}
/* 動画を囲うdiv */
/* YouTube埋め込み用のiframe */
.w75 {
  margin: 0 auto;
  display: block;
  width: 75%;
}
.w100 {
  margin: 0 auto;
  display: block;
  width: 100%;
}
.course {
  max-width: 1100px;
  display: block;
  margin: 0 auto;
}
summary {
  /* display: list-item;以外を指定してデフォルトの三角形アイコンを消します */
  display: block;
}
summary::-webkit-details-marker {
  /* Safariで表示されるデフォルトの三角形アイコンを消します */
  display: none;
}
.summary_inner {
  cursor: pointer;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 16px 24px;
  border: 5px solid #000;
  font-size: clamp(16px, 2.2vw, 18px);
  color: #002255;
}
.icon {
  display: block;
  position: relative;
  width: 24px;
  margin-left: 6px;
  flex-shrink: 0;
  transform-origin: center 43%;
  transition: transform 0.4s;
}
/* is-openedクラスが付与されたときのスタイル */
/* アイコンのバーのスタイル */
.icon::before, .icon::after {
  content: "";
  position: absolute;
  display: block;
  width: 15px;
  height: 3px;
  background-color: #000;
}
.icon::before {
  left: 0;
  transform: rotate(45deg);
}
.icon::after {
  right: 0;
  transform: rotate(-45deg);
}
/* --------アコーディオンの中身のスタイル-------- */
.content {
  overflow: hidden;
  background-color: #fff;
  /* details直下のタグにpaddingを設定すると挙動がおかしくなるので、ここには指定しない */
}
.content_inner {
  padding: 24px 48px;
  /* display: flex;*/
  flex-direction: column;
  font-size: clamp(16px, 2.2vw, 18px);
}
/* --------レイアウト用のスタイル-------- */
.wrapper {
  width: 850px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  padding-bottom: 5%;
}
.wrapper details {
  margin-bottom: 16px;
}
.wrapper details:last-child {
  margin-bottom: 0;
}

img.cta{
 margin: 0 auto;
  display: block;	
	width:75%;
}
img.check{
 margin: 0 auto;
  display: block;	
	max-width:1200px;
}
.check2{
 margin: 0 auto;
  display: block;	
	max-width:1200px;
	padding:0 6%;
}

  .body_cta {
  background-color:#0d2f54;
  height: auto;
	  padding-top:2.5%;
  }
  .body_sub1 {
  background-image: url("../images/cta_bg.jpg");
  background-repeat: repeat;
  background-position: top center;
  background-size: auto;
  height: 564px;
  }
.body_sub1 top {
  position: absolute;
  top: -50px;
}
.body_sub2 {
  background-image: url("../images/sec1_bg.jpg");
  background-repeat: no-repeat;
  background-position: top center;
  background-size: auto;
  height: 4568px;
}
.body_sub3 {
  background-image: url("../images/sec2_bg.jpg");
  background-repeat: no-repeat;
  background-position: top center;
  background-size: auto;
  height: 3148px;
}
.body_sub4 {
  background-image: url("../images/sec3_bg.jpg");
  background-repeat: no-repeat;
  background-position: top center;
  background-size: auto;
  height: 2521px;
}
.body_point {
  background-image: url("../images/point.jpg");
  background-repeat: no-repeat;
  background-position: top center;
  background-size: auto;
  height: 237px;
}
.body_sub5 {
  background-image: url("../images/sec4_bg.jpg");
  background-repeat: no-repeat;
  background-position: top center;
  background-size: auto;
  height: 955px;
}
.body_sub6 {
  background-image: url("../images/sec5_bg.jpg");
  background-repeat: no-repeat;
  background-position: top center;
  background-size: auto;
  height: 955px;
}
.body_sub7 {
  background-image: url("../images/sec6_bg.jpg");
  background-repeat: no-repeat;
  background-position: top center;
  background-size: auto;
  height: auto;
	padding:3%;
}

.body_sub8 {
  background-image: url("../images/sec7_bg.jpg");
  background-repeat: no-repeat;
  background-position: top center;
  background-size: auto;
  height: 1426px;
}
.body_check {
  background-image: url("../images/check-top_bg.jpg");
  background-repeat: no-repeat;
  background-position: top center;
  background-size: auto;
  height: 482px;
}
.body_sub9 {
  background-image: url("../images/sec8_bg.jpg");
  background-repeat: no-repeat;
  background-position: top center;
  background-size: auto;
  height: 2154px;
}
.body_sub10 {
  background-image: url("../images/sec9_bg.jpg");
  background-repeat: no-repeat;
  background-position: top center;
  background-size: auto;
  height: 1770px;
}
.body_sub11 {
  background-image: url("../images/sec10_bg.jpg");
  background-repeat: no-repeat;
  background-position: top center;
  background-size: auto;
  height: 1465px;
}

.body_voice {
  background-image: url("../images/voice_bg.jpg");
  background-repeat: no-repeat;
  background-position: top center;
  background-size: auto;
  height: 415px;
}
.body_sec2-1 {
  background-image: url("../images/sec2_bg_01.jpg");
  background-repeat: no-repeat;
  background-position: top center;
  background-size: auto;
  height: 952px;
}
.body_sec2-2 {
  background-image: url("../images/sec2_bg_02.jpg");
  background-repeat: no-repeat;
  background-position: top center;
  background-size: auto;
  height: 730px;
}
.body_sec2-3 {
  background-image: url("../images/sec2_bg_03.jpg");
  background-repeat: no-repeat;
  background-position: top center;
  background-size: auto;
  height: 716px;
}
.body_sec2-4 {
  background-image: url("../images/sec2_bg_04.jpg");
  background-repeat: no-repeat;
  background-position: top center;
  background-size: auto;
  height: 750px;
}

.body_sub08 {
  background-image: url("../images/prf.jpg");
  background-repeat: no-repeat;
  background-position: top center;
  background-size: auto;
  height: 1289px;
}
.body_sub09 {
  height: auto;
  padding-bottom: 5%;
  background-image: -moz-linear-gradient(119deg, rgb(253, 251, 251) 0%, rgb(235, 237, 238) 100%);
  background-image: -webkit-linear-gradient(119deg, rgb(253, 251, 251) 0%, rgb(235, 237, 238) 100%);
  background-image: -ms-linear-gradient(119deg, rgb(253, 251, 251) 0%, rgb(235, 237, 238) 100%);
}

.body_cta2 {
  background-color: #0e6c47;
  height: 100%;
  padding: 5% 0;
}
.body_step1 {
  background-image: url("../images/check_bg.jpg");
  background-repeat: no-repeat;
  background-position: top center;
  background-size: auto;
	padding:6%;
	text-align: center;
}
.body_step2 {
  background-color: #b8d3d4;
  height: 100%;
  padding-top: 20px;
  padding-bottom: 5%;
}
.body_qa {
  /*background-color: #b8d3d4;*/
  background-image: url("../images/bg_texture_shodai.jpg");
  background-repeat: repeat;
  height: 100%;
  padding: 50px 0;
}
.body_support {
  background-image: url("../images/support-1_01.jpg");
  background-repeat: no-repeat;
  background-position: top center;
  height: auto;
  padding: 0 0 50px 0;
}
.section_02 p {
  font-size: clamp(11px, 1.5vw, 17px);
  line-height: 160%;
}
.section_03 p {
  font-size: clamp(14px, 1.8vw, 16px);
  line-height: 200%;
}
/*.section_04 p {
  font-size: clamp(18px, 2.2vw, 24px);
  line-height: 200%;
}*/
.section_inr2 {
  ;
  width: 950px;
  margin: 0 auto;
}
.form-icon {
  display: block;
  margin: 0 auto;
  width: 20%;
}
.form-text {
  display: block;
  margin: 0 auto;
  text-align: center;
  font-size: clamp(20px, 2.4vw, 24px);
}
/* マーカーが引かれる際に付与するクラス */
/* 点滅 */
/* ボタンアニメーション */
@media only screen and (max-width : 950px) {
	img.cta{
 margin: 0 auto;
  display: block;	
	width:70%;
}
	img.check{
 margin: 0 auto;
  display: block;	
	max-width:1100px;
}
a.btn_1 {
    display: flex
;
    justify-content: space-between;
    align-items: center;
    text-align: center;
    text-decoration: none;
    width: 100%;
    margin: auto;
    padding: 1rem 4rem;
    font-weight: bold;
    background: #115f9f;
    color: #fff;
    border-radius: 100vh;
    position: relative;
    transition: 0.5s;
    font-size: 85%;
}
	.flex-box3 {
  max-width: 1100px;
  width: auto;
  padding: 10px;
  display: flex;
  /* align-items: center; */
	flex-wrap:nowrap;
  margin:0 auto;
  justify-content: left;
  box-sizing: border-box;
  gap: 0px;
}
  .readmore label {
    width: 140px;
  }
  .voice-item1 img {
    width: 50%;
    margin: 0 auto;
  }
  .header_inr {
    max-width: 100%;
    overflow: hidden;
    padding: 0 3%;
  }
  .content_inner {
    padding: 2% 4%;
    display: flex;
    flex-direction: column;
    font-size: clamp(15px, 2.2vw, 18px);
    line-height: 170%;
  }
  .w75 {
    margin: 0 auto;
    display: block;
    width: 90%;
  }
  .w100 {
    margin: 0 auto;
    display: block;
    width: 100%;
  }
  .section_inr2 {
    width: 100%;
    padding: 0 3%;
  }
  .body_cta {
    height: auto;
    padding-top:5.5% ;
  }
  .body_cta2 {
    background-color: #0e6c47;
    height: 100%;
    padding-bottom: 20px;
  }
  .body_step2 {
    background-color: #b8d3d4;
    height: 100%;
    padding-top: 20px;
    padding-bottom: 10%;
  }
  .body_sub1 {
  background-position: top center;
  background-size: auto;
  height: auto;
  }
  .body_sub2 {
    background-image: none;
    height: auto;
  }
  .body_sub3 {
    background-image: none;
    height: auto;
  }
  .body_sub4 {
    background-image: none;
    height: auto;
  }
  .body_sub5 {
    background-image: none;
    height: auto;
  }
  .body_sub6 {
    background-image: none;
    height: auto;
  }
  .body_sub7 {
    background-image: none;
    height: auto;
  }
  .body_sub8 {
    background-image: none;
    height: auto;
  }
	.body_check {
    background-image: none;
    height: auto;
  }
  .body_sub9 {
    background-image: none;
    height: auto;
  }	
  .body_sub10 {
    background-image: none;
    height: auto;
  }	
  .body_sub11 {
    background-image: none;
    height: auto;
  }	
	 .body_voice {
    background-image: none;
    height: auto;
  }	
		 .body_sec2-1,.body_sec2-2,.body_sec2-3,.body_sec2-4{
    background-image: none;
    height: auto;
  }	
  .body_cta {
    background-image: none;
    height: auto;
  }
  .section_02 {
    width: 100%;
  }
  .section_03 {
    width: 100%;
  }
  .top_image_in, .section_inr {
    width: 100%;
    margin: 0 auto;
  }
}
@media (max-width: 767px) {
  .wrapper {
    width: 100%;
    padding: 0 3% 5%;
  }
	img.check{
 margin: 0 auto;
  display: block;	
	max-width:770px;
}
	img.cta{
 margin: 0 auto;
  display: block;	
	width:90%;
}
}