@charset "UTF-8";

html,body {
  line-height: 1.15;
  font-family: "Hiragino Kaku Gothic ProN", "Helvetica Neue", Arial, "Hiragino Sans", Meiryo, sans-serif;
  color: #030303;
  margin: 0;
}
main {
  display: block;
  overflow: hidden;
}
p,table,form {
  margin: 0;
}
ul,ol {
  margin: 0;padding: 0;list-style: none;
}
h1,h2, h3, h4, h5, p, a {
  color: #030303;
  padding: 0;
  margin: 0;
  text-decoration: none;
}
img{
  width: 100%;
  height: auto;
}
div{
  box-sizing: border-box;
}
::before,::after {
  box-sizing: inherit;
}

.inner1{
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}
.inner2{
  max-width: 1100px;
  margin: auto;
  padding: 0 20px;
}
.inner3{
  max-width: 920px;
  margin: auto;
  padding: 0 20px;
}
@media screen and (max-width: 767px) {
  .inner1, .inner2, .inner3{
    padding: 0 10px;
  }
}

.bg_seams{
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* marker-animation */
.marker.active{
  background-position: -100% 100%;
}
.marker {
  background-image: -webkit-linear-gradient(left, transparent 50%, #000 50%);
  background-repeat: repeat-x;
  background-size: 200% 2px;
  background-position: 0 100%;
  transition: all 1.5s ease;
  padding: 0 5px 3px;
}
/* marker-not-animation */
.marker_rest{
  border-bottom: 4px solid #fff;
}
@media screen and (max-width: 767px) {
  .marker_rest{
    border-bottom: 3px solid #fff;
  }
}

/* fadein-animation */
.fadein_under {
  opacity: 0;
  transform : translate(0, 100px);
  transition : all 1.7s;
}
.fadein_left {
  opacity: 0;
  transform : translate(-50px, 100px);
  transition : all 1.7s;
}
.fadein_right {
  opacity: 0;
  transform : translate(50px, 100px);
  transition : all 1.7s;
}
.fadein_under.scrollin, .fadein_left.scrollin,
.fadein_right.scrollin{
  opacity: 1;
  transform: translate(0, 0);
}

/* arrow */
.arrow1, .arrow2{
  position: relative;
}
.arrow1::before,
.arrow1::after{
  content: '';
  position: absolute;
  bottom: 0;
  width: 0;
  height: 0;
  border-bottom: 90px solid #000;
}
.arrow1::before{
  left: 0;
  border-right: 50vw solid transparent;
}
.arrow1::after{
  right: 0;
  border-left: 50vw solid transparent;
}
.arrow2::after{
  position: absolute;
  content: '';
  border-top: 90px solid #fff;
  border-left: 50vw solid transparent;
  border-right: 50vw solid transparent;
  top: -1px;
  left: -1px;
  right: 0;
  margin: auto;
}
@media screen and (min-width: 1600px) {
  .arrow1::before{
    left: -1px;
    border-right: 801px solid transparent;
  }
  .arrow1::after{
    right: -1px;
    border-left: 801px solid transparent;
  }
  .arrow2::after{
    border-right: 800px solid transparent;
    border-left: 800px solid transparent;
  }
}
@media screen and (max-width: 767px) {
  .arrow2::after{
    border-top: 60px solid #fff;
  }
}

/* title */
.section_title{
  font-size: 30px;
  font-weight: bold;
  text-align: center;
  position: relative;
  z-index: 2;
  line-height: 50px;
}
.section_title::after{
  position: absolute;
  content: '';
  font-size: 80px;
  font-weight: bold;
  line-height: 1;
  color: #EAF6FD;
  top: 0;
  right: 0;
  left: 0;
  margin: auto;
  z-index: -1;
}
.section_title .decoration1{
  font-size: 37px;
  display: inline-block;
}
@media screen and (max-width: 767px) {
  .section_title{
    font-size: 25px;
    line-height: 40px;
  }
  .section_title::after{
    font-size: 60px;
  }
  .section_title .decoration1{
    font-size: 30px;
  }
}

/* header */
.header{
  background-color: rgba(255, 255, 255, 0.7);
  margin-bottom: -80px;
  z-index: 99;
  width: 100vw;
  position: fixed;
}
.header .contents{
  display: flex;
  align-items: center;
  height: 80px;
}
.header .logo_img{
  width: 200px;
  margin: 0 auto 0 0;
}
.header .logo_img:hover{
  opacity: .8;
}
.header .tel_link{
  display: block;
  margin: 0 0 0 auto;
}
.header .tel_link .num{
  color: #0953B3;
  font-size: 32px;
  font-weight: bold;
  letter-spacing: 1.5px;
  padding: 0 0 0 35px;
  position: relative;
  text-shadow: 0 3px 6px rgba(0, 0, 0, 15%);
}
.header .tel_link .num::after{
  position: absolute;
  content: '';
  width: 30px;
  height: 30px;
  background: url(../images/icon_tel01.svg) no-repeat;
  background-size: contain;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
}
.header .tel_link:hover .num{
  color: #5990D6;
}
.header .tel_link:hover .num::after{
  background: url(../images/icon_tel03.svg) no-repeat;
  background-size: contain;
}
.header .head_btn{
  display: inline-block;
  margin: 0 0 0 25px;
  color: #fff;
  font-weight: bold;
  letter-spacing: 1.5px;
  background-color: #06C755;
  text-shadow: 0 3px 6px rgba(0, 0, 0, 15%);
  padding: 0 15px 0 60px;
  font-size: 22px;
  text-align: center;
  box-sizing: border-box;
  line-height: 50px;
  position: relative;
  border-radius: 5px;
}
.header .head_btn::before{
  position: absolute;
  content: '';
  width: 45px;
  height: 45px;
  background: url(../images/icon_line.png) no-repeat;
  background-size: contain;
  top: 0;
  bottom: 0;
  left: 14px;
  margin: auto;
}
.header .head_btn:hover{
  background-color: #00D921;
}
.header .head_btn:hover::before{
  background: url(../images/icon_line_hover.png) no-repeat;
  background-size: contain;
}
@media screen and (max-width: 900px) {
  .header{
    margin-bottom: -70px;
  }
  .header .contents{
    height: 70px;
  }
  .header .logo_img{
    width: 180px;
  }
  .header .tel_link .num{
    font-size: 28px;
    letter-spacing: normal;
    padding: 0 0 0 30px;
  }
  .header .tel_link .num::after{
    width: 26px;
    height: 26px;
  }
  .header .head_btn{
    margin: 0 0 0 25px;
    padding: 0 10px 0 45px;
    font-size: 20px;
    line-height: 40px;
  }
  .header .head_btn::before{
    width: 35px;
    height: 35px;
    left: 10px;
  }
}
@media screen and (max-width: 767px) {
  .header{
    margin-bottom: -50px;
  }
  .header .contents{
    height: 50px;
  }
  .header .logo_img{
    width: 120px;
  }
  .header .tel_link .num{
    font-size: 18px;
    padding: 0 0 0 18px;
  }
  .header .tel_link .num::after{
    width: 17px;
    height: 17px;
  }
  .header .head_btn{
    margin: 0 0 0 10px;
    padding: 0 10px 0 35px;
    font-size: 16px;
    line-height: 30px;
  }
  .header .head_btn::before{
    width: 30px;
    height: 30px;
    left: 6px;
  }
}
@media screen and (max-width: 480px) {
  .header .head_btn{
    height: 40px;
    width: 40px;
    padding: 0;
    background: none;
  }
  .header .head_btn span{
    display: none;
  }
  .header .head_btn::before{
    width: 40px;
    height: 40px;
    left: 0;
    right: 0;
  }
}
@media screen and (max-width: 380px) {
  .header .tel_link .num{
    font-size: 15px;
    padding: 0 0 0 15px;
  }
  .header .tel_link .num::before{
    width: 14px;
    height: 14px;
  }
  .header .head_btn::before{
    width: 35px;
    height: 35px;
  }
}

/* main_visual */
.main_v{
  max-width: 1600px;
  margin: auto;
  height: 800px;
  background: url(../images/main01.png) no-repeat center;
}
.main_v.arrow1::before,
.main_v.arrow1::after{
  border-bottom: 90px solid #91C5ED;
}
.main_v .inner1{
  display: flex;
  align-items: center;
  height: 100%;
}
.main_v .contents{
  width: 100%;
  max-width: 710px;
  background: -webkit-linear-gradient(top, rgba(110,159,222,0.8), rgba(27,104,203,0.8));
  background: linear-gradient(to bottom, rgba(110,159,222,0.8), rgba(27,104,203,0.8));
  outline: 2px solid #fff;
  outline-offset: -7px;
  padding: 20px;
  font-family: "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "游明朝", YuMincho, "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  text-align: center;
  position: relative;
  z-index: 2;
}
.main_v .contents::after{
  position: absolute;
  content: '';
  background: url(../images/main_02.svg)no-repeat;
  background-size: contain;
  width: 340px;
  height: 186px;
  top: 80px;
  right: -250px;
}
.main_v .contents .title{
  width: fit-content;
  margin: 0 auto;
  padding: 70px 5% 5px;
  font-size: 50px;
  color: #fff;
  border-bottom: 1px solid #fff;
  position: relative;
  line-height: 55px;
}
.main_v .contents .title::after{
  position: absolute;
  content: "";
  width: calc(50% * 1.065);
  height: 1px;
  transform: rotate(-20deg);
  background: #fff;
  top: 20%;
  left: -8px;
}
.main_v .contents .title::before{
  position: absolute;
  content: "";
  width: calc(50% * 1.065);
  height: 1px;
  transform: rotate(20deg);
  background: #fff;
  top: 20%;
  right: -8px;
}
.main_v .contents .title .small{
  font-size: 43px;
  white-space: nowrap;
}
.main_v .contents .title .spacing{
  letter-spacing: -4px;
}
.main_v .contents .sub_title{
  width: fit-content;
  margin: 25px auto 10px;
  color: #fff;
  font-size: 40px;
}
.main_v .contents .sub_title span{
  white-space: nowrap;
  background: linear-gradient(transparent 70%, rgba(255,227,106,0.65) 30%);
}
.main_v .contents .text{
  color: #fff;
  font-size: 30px;
}
.main_v .contents .mv_link{
  font-size: 32px;
  color: #fff;
  text-align: center;
  padding: 10px 25px;
  border-radius: 5px;
  border: 3px solid #FFF4C4;
  background: -webkit-linear-gradient(top, #FFDB89, #D09000);
  background: linear-gradient(to bottom, #FFDB89, #D09000);
  text-shadow: 0 3px 6px rgba(0, 0, 0, 15%);
  font-family: "Hiragino Kaku Gothic ProN", "Helvetica Neue", Arial, "Hiragino Sans", Meiryo, sans-serif;
  width: 100%;
  max-width: 300px;
  display: inline-block;
  margin: 15px 0 20px;
  box-sizing: border-box;
}
.main_v .contents .mv_link:hover{
  background: -webkit-linear-gradient(top, #EAC525, #E34F00);
  background: linear-gradient(to bottom, #EAC525, #E34F00);
  border: 3px solid #FFE36A;
}
.main_v .cta{
  margin: 20px auto;
  background-color: #ffffff50;
  padding: 20px;
  border-radius: 10px;
  width: 100%;
  max-width: 550px;
}
.main_v .cta_form{
  display: flex;
  justify-content: space-evenly;
  align-items: center;
}
.main_v .cta_form .select_btn{
  font-size: 20px;
  padding: 15px 10px;
  font-weight: bold;
  border: 2px solid #BCBCBC;
  background: #E5E5E5;
  border-radius: 7px;
  box-shadow: inset 3px 3px 6px rgb(0 0 0 / 15%);
  appearance: none;
  text-align: center;
  width: 25%;
}
.main_v .cta_form .next {
  height: 0;
  border-left: 14px solid #EAC525;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
}
.main_v .assessment_btn{
  font-size: 27px;
  color: #fff;
  text-align: center;
  padding: 0px 20px 2px 25px;
  border-radius: 5px;
  border: 2px solid #FFF4C4;
  background: -webkit-linear-gradient(top, #FFDB89, #D09000);
  background: linear-gradient(to bottom, #FFDB89, #D09000);
  text-shadow: 0 3px 6px rgb(0 0 0 / 15%);
  margin: 15px 0 0;
}
.main_v .assessment_btn:hover{
  background: -webkit-linear-gradient(top, #EAC525, #E34F00);
  background: linear-gradient(to bottom, #EAC525, #E34F00);
  border: 2px solid #FFE36A;
}
@media screen and (max-width: 990px) {
  .main_v .contents{
    max-width: 640px;
  }
  .main_v .contents .sub_title{
    letter-spacing: -3px;
    padding: 0 10px;
  }
}
@media screen and (max-width: 900px) {
  .main_v{
    height: 750px;
  }
  .main_v.arrow1::before,
  .main_v.arrow1::after{
    border-bottom: 60px solid #91C5ED;
  }
  .main_v .contents{
    max-width: 600px;
  }
  .main_v .contents .title{
    font-size: 55px;
  }
  .main_v .contents .sub_title{
    margin: 35px auto 15px;
    font-size: 40px;
  }
  .main_v .contents .text,
  .main_v .contents .mv_link{
    font-size: 30px;
  }
  .main_v .contents::after{
    width: 300px;
    height: 165px;
    top: 60px;
    right: -200px;
  }
}
@media screen and (max-width: 810px) {
  .main_v .contents{
    max-width: 550px;
    margin: 70px auto 0;
  }
  .main_v .contents::after{
    top: -90px;
    right: -60px;
  }
  .main_v .contents .title {
    font-size: 50px;
    padding: 60px 3% 5px;
  }
  .main_v .contents .title::before{
    width: calc(50% * 1.02);
    transform: rotate(17deg);
    top: 16%;
    right: 0;
  }
  .main_v .contents .title::after{
    width: calc(50% * 1.02);
    transform: rotate(-17deg);
    top: 16%;
    left: 0;
  }
  .main_v .contents .title .small{
    font-size: 37px;
  }
  .main_v .contents .sub_title{
    margin: 20px auto 10px;
    font-size: 37px;
  }
  .main_v .contents .mv_link{
    padding: 5px 15px;
  }.main_v .cta {
    padding: 20px 0;
  }
}
@media screen and (max-width: 767px) {
  .main_v{
    height: 650px;
    background: url(../images/main01_sp.png) no-repeat center;
  }
  .main_v .contents{
    max-width: 480px;
    margin: 70px auto 0;
  }
  .main_v .contents::after{
    top: -100px;
    right: 4px;
    width: 260px;
    height: 143px;
  }
  .main_v .contents .title {
    font-size: 38px;
    padding: 45px 5% 0px;
    line-height: 45px;
  }
  .main_v .contents .title .small{
    font-size: 33px;
  }
  .main_v .contents .sub_title{
    font-size: 30px;
    margin: 10px auto 5px;
  }
  .main_v .contents .text{
    font-size: 23px;
  }
  .main_v .contents .mv_link{
    font-size: 25px;
    margin: 15px 0 10px;
  }
  .main_v .cta{
    margin: 10px auto 0;
    padding: 10px 0;
  }
  .main_v .cta_form .select_btn{
    font-size: 15px;
    padding: 12px 5px;
  }
  .main_v .cta_form .next {
    border-left: 10px solid #EAC525;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
  }
  .main_v .assessment_btn{
    font-size: 23px;
    padding: 0px 20px 1px 25px;
    margin: 10px 0 0;
  }
}
@media screen and (max-width: 450px) {
  .main_v .contents{
    max-width: 400px;
  }
  .main_v .contents .title{
    font-size: 37px;
  }
  .main_v .contents .sub_title{
    font-size: 27px;
  }
  .main_v .contents .sub_title{
    letter-spacing: normal;
  }
  .main_v .contents .sub_title span{
    display: block;
    margin: 10px auto;
  }
  .main_v .contents .sub_title .none{
    display: none;
  }
}

/*worries*/
.worries{
  max-width: 1600px;
  margin: auto;
  background: url(../images/worries_bg.png) no-repeat bottom #91C5ED;
  background-size: 100%;
  padding: 80px 0 0;
}
.worries .contents{
  background-color: #fff;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 15%);
  padding: 50px 20px;
}
.worries .contents .title{
  max-width: 720px;
  margin: auto;
  font-size: 27px;
  line-height: 45px;
  font-weight: bold;
  text-align: center;
  position: relative;
  border-bottom: 1px solid #5C4D45;
  padding: 0 0 20px;
}
.worries .contents .title:before {
  position: absolute;
  bottom: -15px;
  left: 0;
  right: 0;
  margin: auto;
  width: 0;
  height: 0;
  content: '';
  border-width: 15px 14px 0 14px;
  border-style: solid;
  border-color: #5C4D45 transparent transparent transparent;
}
.worries .contents .title:after {
  position: absolute;
  bottom: -13px;
  left: 0;
  right: 0;
  margin: auto;
  width: 0;
  height: 0;
  content: '';
  border-width: 15px 14px 0 14px;
  border-style: solid;
  border-color: #fff transparent transparent transparent;
}
.worries .contents .title .decoration1{
  font-size: 30px;
  padding-right: 5px;
}
.worries .contents .title .decoration2{
  font-size: 33px;
  color: #0953B3;
  background: linear-gradient(transparent 70%, #FFE36A 30%);
  padding: 0 5px 4px;
}
.worries .list_con{
  max-width: 750px;
  margin: 40px auto 0;
}
.worries .list{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
}
.worries .list::after{
  position: absolute;
  content: '';
  width: 230px;
  height: 290px;
  background: url(../images/worries_01.png) no-repeat;
  background-size: contain;
  right: 0;
  bottom: 0;
}
.worries .list .item{
  display: inline-block;
  border-bottom: 1px solid #D3D1CC;
  padding: 5px 10px 5px 30px;
  position: relative;
  font-size: 20px;
  font-weight: bold;
  margin: 15px 0 0;
  z-index: 2;
}
.worries .list .item::after{
  position: absolute;
  content: '✔︎';
  color: #0953B3;
  left: 5px;
  top: 2px;
  font-size: 24px;
}
.worries .text_box{
  background-color: rgba(9, 83, 179, 0.7);
  text-align: center;
  margin: 110px 0 0;
  padding: 80px 50px 90px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.worries .text_box.arrow1::after,
.worries .text_box.arrow1::before{
  top: -90px;
  border-bottom: 90px solid rgba(9, 83, 179, 0.7);
}
.worries .text_box .marker{
  background-image: -webkit-linear-gradient(left, transparent 50%, #fff 50%);
}
.worries .text_box .title{
  color: #fff;
  font-size: 47px;
  font-weight: bold;
  width: fit-content;
  position: relative;
}
.worries .text_box .title::after{
  position: absolute;
  content: '';
  background: url(../images/icon_01.svg) no-repeat;
  width: 50px;
  height: 50px;
  background-size: contain;
  top: -30px;
  left: -50px;
}
.worries .text_box .read{
  color: #fff;
  font-size: 27px;
  margin: 20px 0 5px;
  width: fit-content;
  position: relative;
}
.worries .text_box .read::after{
  position: absolute;
  content: '';
  background: url(../images/icon_02.svg) no-repeat;
  width: 50px;
  height: 50px;
  background-size: contain;
  bottom: -40px;
  right: -60px;
}
.worries .text_box .br{
  display: none;
}
@media screen and (max-width: 767px) {
  .worries{
    padding: 50px 0 0;
  }
  .worries .contents{
    padding: 30px 20px;
  }
  .worries .contents .title{
    font-size: 23px;
    line-height: 35px;
    padding: 0 0 15px;
  }
  .worries .contents .title:before {
    bottom: -11px;
    border-width: 10px 10px 0 10px;
  }
  .worries .contents .title:after {
    bottom: -9px;
    border-width: 10px 10px 0 10px;
  }
  .worries .contents .title .decoration1{
    font-size: 27px;
    padding-right: 3px;
  }
  .worries .contents .title .decoration2{
    font-size: 29px;
    padding: 0 3px 4px;
  }
  .worries .list_con{
    margin: 20px auto 0;
  }
  .worries .list::after{
    width: 200px;
    height: 250px;
  }
  .worries .list .item{
    padding: 3px 10px 5px 30px;
    font-size: 18px;
  }
  .worries .list .item::after{
    top: 3px;
    font-size: 20px;
  }
  .worries .text_box{
    margin: 90px 0 0;
    padding: 50px 30px 60px 20px;
  }
  .worries .text_box.arrow1::after,
  .worries .text_box.arrow1::before{
    top: -60px;
    border-bottom: 60px solid rgba(9, 83, 179, 0.7);
  }
  .worries .text_box .title{
    font-size: 35px;
  }
  .worries .text_box .title::after{
    width: 30px;
    height: 30px;
    top: -20px;
    left: -30px;
  }
  .worries .text_box .read{
    font-size: 23px;
    margin: 15px 0 0;
  }
  .worries .text_box .read::after{
    width: 30px;
    height: 30px;
    bottom: -20px;
    right: -35px;
  }
}
@media screen and (max-width: 640px) {
  .worries .list::after{
    width: 150px;
    height: 190px;
  }
}
@media screen and (max-width: 560px) {
  .worries .list::after{
    width: 100px;
    height: 125px;
  }
}
@media screen and (max-width: 520px) {
  .worries .list{
    padding-bottom: 150px;
  }
  .worries .text_box .title{
    font-size: 30px;
  }
  .worries .text_box .title::after{
    left: -25px;
  }
  .worries .text_box .read{
    font-size: 20px;
    line-height: 1.5;
  }
  .worries .text_box .read::after{
    right: -35px;
  }
  .worries .text_box .br{
    display: block;
  }
}

.support{
  margin: 80px auto 0;
  max-width: 1600px;
  counter-reset: support;
}
.support .sub_title{
  color: #fff;
  background-color: #0424A7;
  font-size: 27px;
  border-radius: 25px;
  padding: 10px 30px;
  width: fit-content;
  position: relative;
  margin: 0 auto 35px;
  text-align: center;
}
.support .sub_title::after{
  position: absolute;
  content: '';
  border-top: 17px solid #0424A7;
  border-right: 20px solid transparent;
  border-left: 20px solid transparent;
  bottom: -16px;
  right: 0;
  left: 0;
  margin: auto;
  display: inline-table;
}
.support .section_title::after{
  content: 'SUPPORT';
  color: #EAF6FD;
}
.support .section_title .marker{
  background-image: -webkit-linear-gradient(left, transparent 50%, #0424A7 50%);
  background-size: 200% 4px;
  padding: 0 10px 4px;
}
.support .contents{
  display: flex;
  width: 100%;
}
@media screen and (min-width: 1200px) {
  .support .contents{
    justify-content: flex-start;
  }
  .support .contents:nth-child(2n){
    justify-content: flex-end;
  }
}
.support .contents:nth-of-type(1){
  margin: 50px 0 0;
}
.support .contents .img_box{
  width: 40%;
  padding: 50px 30px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  position: relative;
  z-index: -2;
}
.support .contents:nth-of-type(1) .img_box{
  background-color: #EAF6FD;
}
.support .contents:nth-of-type(2) .img_box{
  background-color: #5990D6;
  align-items: flex-start;
}
.support .contents:nth-of-type(3) .img_box{
  background-color: #0953B3;
}
.support .contents .img_box span{
  position: absolute;
  width: auto;
  height: calc(100% + 10px);
  top: -2px;
  right: -2px;
  z-index: -1;
}
.support .contents:nth-of-type(2n) .img_box span{
  top: -2px;
  left: -2px;
  right: auto;
  transform: scale(-1, 1);
}
.support .contents .bg_img{
  width: 100%;
  height: 100%;
  object-fit: fill;
}
.support .contents .support_img{
  max-width: 420px;
}
.support .contents .img_text{
  max-width: 420px;
  width: 100%;
  box-sizing: border-box;
  font-size: 24px;
  font-weight: bold;
  text-align: center;
  color: #fff;
  background-color: #0424A7;
  padding: 10px;
  margin: -3px 0 0;
}
.support .contents .text_box{
  width: 60%;
  max-width: 800px;
  padding: 50px 30px;
}
.support .contents .text_box .title{
  font-size: 24px;
  font-weight: bold;
  border: 2px solid #0953B3;
  border-left: 60px solid #0953B3;
  padding: 15px 20px;
  margin: 0 0 40px;
  position: relative;
  text-align: center;

}
.support .contents .text_box .title::after{
  position: absolute;
  counter-increment: support;
  content: counter(support);
  color: #fff;
  font-size: 30px;
  width: 60px;
  display: inline-table;
  text-align: center;
  top: 0;
  bottom: 0;
  left: -60px;
  margin: auto;
}
.support .contents .text_box .text_area{
  padding: 0 10px;
}
.support .contents .text_box .category{
  color: #fff;
  font-size: 18px;
  background-color: #5C4D45;
  padding: 9px 25px;
  line-height: 1;
  border-radius: 20px;
  display: inline-block;
  margin: 0 15px 15px 0;
}
.support .contents .text_box .read{
  font-size: 18px;
  line-height: 31px;
  margin-bottom: 25px;
}
.support .contents .text_box .careful{
  font-size: 16px;
}
@media screen and (max-width: 1000px) {
  .support .contents .img_box{
    width: 35%;
    padding: 50px 20px;
  }
  .support .contents .img_text{
    font-size: 20px;
  }
  .support .contents .text_box{
    width: 65%;
    padding: 50px 20px;
  }
}
@media screen and (max-width: 767px) {
  .support{
    margin: 50px auto 0;
  }
  .support .sub_title{
    font-size: 23px;
    padding: 8px 20px;
    margin: 0 auto 25px;
  }
  .support .sub_title::after{
    border-top: 13px solid #0424A7;
    border-right: 15px solid transparent;
    border-left: 15px solid transparent;
    bottom: -12px;
  }
  .support .section_title .marker{
    background-size: 200% 3px;
    padding: 0 10px 3px;
  }
  .support .contents{
    flex-direction: column;
  }
  .support .contents:nth-of-type(1){
    margin: 40px 0 0;
  }
  .support .contents .img_box{
    width: 100%;
    padding: 40px 10px;
    order: 1;
  }
  .support .contents .img_box span{
    display: none;
  }
  .support .contents:nth-of-type(2) .img_box::after,
  .support .contents:nth-of-type(3) .img_box::after{
    position: absolute;
    content: '';
    width: 100%;
    border-bottom: 50px solid #5990D6;
    border-left: 100vw solid transparent;
    top: -49px;
    left: 0;
  }
  .support .contents:nth-of-type(3) .img_box::after{
    border-bottom: 50px solid #0953B3;
  }
  .support .contents .support_img{
    margin: auto;
  }
  .support .contents .img_text{
    margin: auto;
  }
  .support .contents .text_box{
    width: 100%;
    padding: 0 20px 40px;
    order: 2;
    margin: -2px 0;
    z-index: -2;
  }
  .support .contents:nth-of-type(1) .text_box{
    background-color: #EAF6FD;
    padding-bottom: 80px;
  }
  .support .contents:nth-of-type(2) .text_box{
    background-color: #5990D6;
    padding-bottom: 80px;
  }
  .support .contents:nth-of-type(3) .text_box{
    background-color: #0953B3;
  }
  .support .contents .text_box .title{
    font-size: 20px;
    border-left: 50px solid #0953B3;
    padding: 10px;
    margin: 0 0 20px;
    background: rgba(255, 255, 255, 0.8);
  }
  .support .contents .text_box .title::after{
    font-size: 25px;
    width: 50px;
    left: -50px;
  }
  .support .contents:nth-of-type(3) .text_box .title{
    border-color: #5990D6;
  }
  .support .contents .text_box .text_area{
    padding: 0;
  }
  .support .contents .text_box .category{
    font-size: 16px;
    padding: 6px 15px;
    margin: 0 15px 15px 0;
  }
  .support .contents .text_box .read{
    font-size: 16px;
    line-height: 25px;
    margin-bottom: 15px;
  }
  .support .contents:nth-of-type(2) .text_box .read,
  .support .contents:nth-of-type(2) .text_box .careful,
  .support .contents:nth-of-type(3) .text_box .read,
  .support .contents:nth-of-type(3) .text_box .careful{
    color: #fff;
  }
  .support .contents .text_box .careful{
    font-size: 14px;
  }
}
@media screen and (max-width: 330px) {
  .support .section_title::after{
    font-size: 45px;
  }
}

.cta{
  margin: 80px 0;
  text-align: center;
}
.cta .title{
  font-weight: bold;
  font-size: 37px;
  display: inline;
}
.cta .title.marker{
  background-image: -webkit-linear-gradient(left, transparent 50%, #0953B3 50%);
  background-size: 200% 4px;
  padding: 0 10px 10px;
}
.cta .title .br{
  display: none;
}
.cta .assessment{
  margin: 50px 0 0;
  padding: 50px 20px;
  background: repeating-linear-gradient(-45deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.1) 6px, rgba(255, 255, 255, 0) 0, rgba(255, 255, 255, 0) 20px);
  box-shadow: 0 3px 6px rgba(0, 0, 0, 15%);
  position: relative;
  outline: 3px solid #fff;
  outline-offset: -8px;
}
.cta .assessment::after{
  position: absolute;
  content: '';
  width: 100%;
  height: 100%;
  background: -webkit-linear-gradient(top, #658FD0, #0424A7);
  background: linear-gradient(to bottom, #5785DE, #0424A7);
  z-index: -1;
  top: 0;
  left: 0;
}
.cta .assessment .a_form{
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.cta .assessment .select_btn{
  font-size: 20px;
  padding: 20px 10px;
  font-weight: bold;
  border: 2px solid #BCBCBC;
  background: #E5E5E5;
  border-radius: 7px;
  box-shadow: inset 3px 3px 6px rgba(0, 0, 0, 15%);
  appearance: none;
  text-align: center;
  width: 27%;
}
.cta .assessment .next{
  height: 0;
  border-left: 20px solid #EAC525;
  border-top: 15px solid transparent;
  border-bottom: 15px solid transparent;
}
.cta .assessment .assessment_btn{
  font-size: 32px;
  color: #fff;
  text-align: center;
  padding: 0 25px;
  border-radius: 5px;
  border: 3px solid #FFF4C4;
  background: -webkit-linear-gradient(top, #FFDB89, #D09000);
  background: linear-gradient(to bottom, #FFDB89, #D09000);
  text-shadow: 0 3px 6px rgba(0, 0, 0, 15%);
  width: 100%;
  max-width: 540px;
  margin: 30px 0 0;
}
.cta .assessment .assessment_btn:hover{
  background: -webkit-linear-gradient(top, #EAC525, #E34F00);
  background: linear-gradient(to bottom, #EAC525, #E34F00);
  border: 3px solid #FFE36A;
}
.cta .tel{
  margin: 50px 0 0;
}
.cta .text{
  font-size: 24px;
  line-height: 31px;
  font-weight: bold;
  margin: 0 0 15px;
}
.cta .tel .tel_link{
  font-weight: bold;
  letter-spacing: 1.5px;
  font-size: 50px;
  position: relative;
  display: inline-block;
}
.cta .tel .tel_link::after{
  position: absolute;
  content: '';
  background: url(../images/icon_tel02.svg) no-repeat;
  background-size: contain;
  width: 60px;
  height: 65px;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
}
.cta .tel .tel_link:hover::after{
  background: url(../images/icon_tel03.svg) no-repeat;
  background-size: contain;
  left: -5px;
  transition: .3s;
}
.cta .tel .tel_link.marker{
  background-image: -webkit-linear-gradient(left, transparent 50%, #FFF4C4 50%);
  background-size: 200% 30px;
  padding: 0 10px 8px 60px;
}
.cta .tel .tel_link .num{
  color: #0424A7;
  text-shadow: 0 3px 6px rgba(0, 0, 0, 15%);
  line-height: 1;
  transition: .3s;
}
.cta .tel .tel_link:hover .num{
  color: #5990D6;
}
.cta .cta_btn{
  display: flex;
  align-items: flex-end;
  justify-content: space-evenly;
  margin: 50px 0 0;
}
.cta .cta_btn .line,
.cta .cta_btn .contact{
  width: 45%;
  max-width: 450px;
}
.cta .cta_btn .line_link{
  background-color: #06C755;
  display: block;
  width: 100%;
  padding: 20px 0;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 15%);
  letter-spacing: 1.5px;
  transition: 0.3s;
}
.cta .cta_btn .line_link:hover{
  background-color: #00D921;
}
.cta .cta_btn .contact_link{
  background: -webkit-linear-gradient(top, #658FD0, #0953B3);
  background: linear-gradient(to bottom, #658FD0, #0953B3);
  display: block;
  width: 100%;
  padding: 20px 0;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 15%);
  letter-spacing: 1.5px;
}
.cta .cta_btn .contact_link:hover{
  background: -webkit-linear-gradient(top, #1B68CB, #6E9FDE);
  background: linear-gradient(to bottom, #1B68CB, #6E9FDE);
}
.cta .cta_btn .btn{
  color: #fff;
  font-weight: bold;
  font-size: 30px;
  text-shadow: 0 3px 6px rgba(0, 0, 0, 15%);
  position: relative;
  display: inline;
}
.cta .cta_btn .line .btn{
  padding: 0 20px 0 65px;
}
.cta .cta_btn .contact .btn{
  padding: 0 10px 0 75px;
}
.cta .cta_btn .line .btn::after{
  position: absolute;
  content: '';
  width: 58px;
  height: 58px;
  background: url(../images/icon_line.png) no-repeat;
  background-size: contain;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  transition: .3s;
}
.cta .cta_btn .line .line_link:hover .btn::after{
  background: url(../images/icon_line_hover.png) no-repeat;
  background-size: contain;
}
.cta .cta_btn .contact .btn::after{
  position: absolute;
  content: '';
  width: 38px;
  height: 30px;
  background: url(../images/icon_mail.svg) no-repeat;
  background-size: contain;
  left: 20px;
  top: 0;
  bottom: 0;
  margin: auto;
}
@media screen and (max-width: 930px) {
  .cta .cta_btn{
    flex-direction: column;
  }
  .cta .cta_btn .line,
  .cta .cta_btn .contact{
    width: 100%;
    margin: 0 auto;
  }
  .cta .cta_btn .contact{
    margin: 30px auto 0;
  }
}
@media screen and (max-width: 767px) {
  .cta{
    margin: 50px 0;
  }
  .cta .title{
    font-size: 30px;
    line-height: 50px;
  }
  .cta .title.marker{
    background-size: 200% 3px;
  }
  .cta .assessment{
    margin: 40px 0 0;
    padding: 40px 20px;
  }
  .cta .assessment .select_btn{
    font-size: 18px;
    padding: 15px 10px;
    width: 30%;
  }
  .cta .assessment .next{
    border-left: 15px solid #EAC525;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
  }
  .cta .assessment .assessment_btn{
    font-size: 27px;
    border: 2px solid #FFF4C4;
    margin: 20px 0 0;
  }
  .cta .tel{
    margin: 40px 0 0;
  }
  .cta .text{
    font-size: 20px;
    line-height: 25px;
    margin: 0 0 10px;
  }
  .cta .tel .tel_link{
    letter-spacing: normal;
    font-size: 40px;
  }
  .cta .tel .tel_link::after{
    width: 50px;
    height: 55px;
  }
  .cta .tel .tel_link.marker{
    background-size: 200% 20px;
    padding: 0 10px 8px 50px;
  }
  .cta .cta_btn{
    margin: 40px 0 0;
  }
  .cta .cta_btn .line_link,
  .cta .cta_btn .contact_link{
    letter-spacing: normal;
    padding: 15px 0;
  }
  .cta .cta_btn .btn{
    font-size: 25px;
  }
  .cta .cta_btn .line .btn{
    padding: 0 10px 0 55px;
  }
  .cta .cta_btn .contact .btn{
    padding: 0 10px 0 55px;
  }
  .cta .cta_btn .line .btn::after{
    width: 50px;
    height: 50px;
  }
  .cta .cta_btn .contact .btn::after{
    width: 35px;
    height: 27px;
    left: 10px;
  }
}
@media screen and (max-width: 500px) {
  .cta .title .br{
    display: block;
  }
  .cta .tel .tel_link{
    font-size: 35px;
  }
  .cta .tel .tel_link::after{
    width: 45px;
    height: 42px;
  }
  .cta .tel .tel_link.marker{
    padding: 0 10px 8px 40px;
  }
  .cta .assessment .select_btn{
    font-size: 16px;
    padding: 10px 7px;
  }
  .cta .assessment .next{
    border-left: 10px solid #EAC525;
    border-top: 7px solid transparent;
    border-bottom: 7px solid transparent;
  }
}

.feature{
  max-width: 1600px;
  width: 100%;
  margin: auto;
  padding: 80px 0 90px;
  background: url(../images/feature_bg.png) no-repeat center;
  background-size: cover;
}
.feature .section_title::after{
  content: 'FEATURE';
  color: #fff;
}
.feature .section_title .marker{
  background-image: -webkit-linear-gradient(left, transparent 50%, #0424A7 50%);
  background-size: 200% 4px;
  padding: 0 10px 4px;
}
.feature .item{
  counter-reset: feature;
  margin: 50px 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.feature .item .list{
  width: 49%;
  background: -webkit-linear-gradient(top, #fff, #EAF6FD);
  background: linear-gradient(to bottom, #fff, #EAF6FD);
  margin: 0 0 20px;
  padding: 40px;
  box-sizing: border-box;
  position: relative;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 15%);
}
.feature .item .list::after{
  position: absolute;
  content: '';
  width: calc(100% - 10px);
  height: calc(100% - 10px);
  margin: auto;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  border: 1px solid #C6DCE8;
}
.feature .item .list .title{
  font-size: 27px;
  position: relative;
  margin: 0 auto;
  padding: 25px 0 20px 110px;
  display: table;
}
.feature .item .list .title::after{
  position: absolute;
  content: '';
  width: 55px;
  height: 55px;
  background: #0953B3;
  border-radius: 50%;
  top: 20px;
  left: 0;
}
.feature .item .list .title::before{
  position: absolute;
  content: '';
  width: 80px;
  height: 80px;
  background: #5990D6;
  border-radius: 50%;
  top: 0;
  left: 25px;
}
.feature .item .list .title span{
  position: relative;
}
.feature .item .list .title span::after{
  position: absolute;
  counter-increment: feature;
  content: "Point " counter(feature);
  color: #fff;
  font-size: 20px;
  top: 5px;
  bottom: 0;
  left: -95px;
  margin: auto;
  z-index: 1;
}
.feature .item .list .title .marker{
  background-image: -webkit-linear-gradient(left, transparent 50%, #0424A7 50%);
  padding: 0 10px 7px;
}
.feature .item .list .text{
  font-size: 18px;
  line-height: 31px;
  margin: 30px 0 0;
}
.feature.arrow1::after,
.feature.arrow1::before{
  bottom: -1px;
  border-bottom: 90px solid #fff;
}
@media screen and (max-width: 1100px) {
  .feature .item{
    flex-direction: column;
    align-items: center;
  }
  .feature .item .list{
    width: 90%;
  }
}
@media screen and (max-width: 767px) {
  .feature{
    padding: 50px 0 60px;
  }
  .feature .section_title .marker{
    background-size: 200% 3px;
  }
  .feature .item{
    margin: 40px 0;
  }
  .feature .item .list{
    margin: 0 0 15px;
    padding: 25px 30px 30px;
  }
  .feature .item .list .title{
    font-size: 23px;
    padding: 20px 0 20px 100px;
  }
  .feature .item .list .title::after{
    width: 50px;
    height: 50px;
    top: 15px;
  }
  .feature .item .list .title::before{
    width: 70px;
    height: 70px;
  }
  .feature .item .list .title span::after{
    font-size: 18px;
    left: -85px;
  }
  .feature .item .list .text{
    font-size: 16px;
    line-height: 25px;
    margin: 20px 0 0;
  }
  .feature.arrow1::after,
  .feature.arrow1::before{
    bottom: -1px;
    border-bottom: 60px solid #fff;
  }
}
@media screen and (max-width: 550px) {
  .feature .item .list{
    width: 100%;
    padding: 20px 20px 20px;
  }
  .feature .item .list .title{
    padding: 80px 0 5px 0;
  }
  .feature .item .list .title::after{
    left: 0;
    right: 50px;
    top: 20px;
    margin: auto;
  }
  .feature .item .list .title::before{
    left: 30px;
    right: 0;
    margin: auto;
  }
  .feature .item .list .title span::after{
    left: 0;
    right: 0;
    top: -50px;
    width: fit-content;
  }
  .feature .item .list .title .marker{
    font-size: 20px;
    padding: 0 5px 4px;
  }
}
@media screen and (max-width: 330px) {
  .feature .section_title::after{
    font-size: 45px;
  }
}

.awards{
  max-width: 1600px;
  width: 100%;
  margin: auto;
  padding: 80px 0 ;
  background: -webkit-linear-gradient(top, #fff, #EAF6FD, #0953B3);
  background: linear-gradient(to bottom, #fff, #EAF6FD, #0953B3);
}
.awards .section_title{
  padding: 0;
}
.awards .section_title .marker{
  background-image: -webkit-linear-gradient(left, transparent 50%, #0424A7 50%);
  background-size: 200% 4px;
}
.awards .section_title .decoration1{
  display: inline-block;
  padding: 30px 10px 8px;
}
.awards .section_title .decoration2{
  font-size: 55px;
  color: #0953B3;
  padding: 0 5px;
}
.awards .section_title .decoration3{
  font-size: 55px;
  color: #E34F00;
  padding: 0 5px;
  position: relative;
}
.awards .section_title .decoration3::after{
  position: absolute;
  content: '';
  width: 40px;
  height: 30px;
  background: url(../images/icon_04.svg) no-repeat;
  background-size: contain;
  right: -20px;
  top: -20px;
}
.awards .grades{
  background: radial-gradient(#fff, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.7), transparent, transparent, transparent);
  padding: 60px 130px;
  position: relative;
  margin: 40px auto 0;
  text-align: center;
  display: table;
}
.awards .grades::after{
  position: absolute;
  content: '';
  width: 100%;
  height: calc(100% - 50px);
  background: url(../images/icon_05.svg) no-repeat left;
  background-size: contain;
  top: 0;
  bottom: 0;
  left: 30px;
  margin: auto;
}
.awards .grades::before{
  position: absolute;
  content: '';
  width: 100%;
  height: calc(100% - 50px);
  background: url(../images/icon_06.svg) no-repeat right;
  background-size: contain;
  top: 0;
  bottom: 0;
  right: 30px;
  margin: auto;
}
.awards .grades .text{
  font-weight: bold;
  font-size: 27px;
  line-height: 50px;
}
.awards .grades .text .decoration1{
  color: #E34F00;
  font-size: 37px;
}
.awards .img_box{
  display: flex;
  justify-content: space-evenly;
  margin: 40px 0 0;
}
.awards .img_box .img{
  box-shadow: 0 3px 6px rgba(0, 0, 0, 15%);
}
.awards .img_box .img:nth-of-type(1){
  width: 30.48%;
}
.awards .img_box .img:nth-of-type(2){
  width: 22.19%;
}
.awards .img_box .img:nth-of-type(3){
  width: 42.8%;
}
.awards .text_box{
  margin: 40px 0;
}
.awards .text_box .text{
  font-weight: bold;
  text-align: center;
  font-size: 37px;
  line-height: 80px;
  color: #fff;
}
.awards .text_box .text .marker{
  background-image: -webkit-linear-gradient(left, transparent 50%, #FFE36A 50%);
  padding: 0 10px 10px;
}
.awards .text_box .text .decoration1{
  color: #EAC525;
}
.awards.arrow1::after,
.awards.arrow1::before{
  bottom: -1px;
  border-bottom: 90px solid #fff;
}
.awards .br{
  display: none;
}
@media screen and (max-width: 900px) {
  .awards .section_title .decoration1{
    font-size: 35px;
    padding: 30px 5px 8px;
  }
  .awards .section_title .decoration2{
    font-size: 48px;
    padding: 0 3px;
  }
  .awards .section_title .decoration3{
    font-size: 48px;
    padding: 0 3px;
  }
}
@media screen and (max-width: 767px) {
  .awards{
    padding: 50px 0 ;
  }
  .awards .section_title .marker{
    background-size: 200% 3px;
  }
  .awards .section_title .decoration1{
    font-size: 30px;
  }
  .awards .section_title .decoration2,
  .awards .section_title .decoration3{
    font-size: 42px;
  }
  .awards .section_title .decoration3::after{
    width: 28px;
    height: 20px;
    right: -12px;
    top: -12px;
  }
  .awards .grades{
    padding: 30px 75px;
    margin: 20px auto 0;
  }
  .awards .grades::after{
    left: 0;
  }
  .awards .grades::before{
    right: 0;
  }
  .awards .grades .text{
    font-size: 23px;
    line-height: 40px;
  }
  .awards .grades .text .decoration1{
    font-size: 30px;
  }
  .awards .img_box{
    margin: 40px 0 0;
  }
  .awards .text_box{
    margin: 20px 0;
    padding: 0 0 50px;
  }
  .awards .text_box .text{
    font-size: 30px;
    line-height: 60px;
  }
  .awards .text_box .text .marker{
    padding: 0 10px 7px;
  }
  .awards.arrow1::after,
  .awards.arrow1::before{
    border-bottom: 60px solid #fff;
  }
}
@media screen and (max-width: 630px) {
  .awards .br{
    display: block;
  }
  .awards .section_title{
    line-height: 35px;
  }
  .awards .section_title .decoration1 {
    padding: 10px 5px 0px;
    line-height: 55px;
  }
  .awards .grades {
    padding: 30px 70px;
  }
  .awards .grades .text {
    font-size: 20px;
    line-height: 37px;
  }
  .awards .grades .text .decoration1 {
    font-size: 25px;
    white-space: nowrap;
  }
}
@media screen and (max-width: 500px) {
  .awards .grades{
    padding: 30px;
    width: 100%;
  }
  .awards .grades::after,
  .awards .grades::before{
    opacity: 0.5;
  }
  .awards .br1{
    display: none;
  }
}

.tendency{
  max-width: 1600px;
  width: 100%;
  margin: auto;
  padding: 170px 10px 80px;
  background: url(../images/tendency_bg.png) no-repeat center;
  background-size: cover;
  position: relative;
}
.tendency .title{
  color: #fff;
  font-weight: bold;
  font-size: 37px;
  display: table;
  margin: 0 auto;
}
.tendency .title.marker{
  background-image: -webkit-linear-gradient(left, transparent 50%, #EAC525 50%);
  padding: 0 10px 10px;
}
.tendency .contents{
  display: flex;
  margin: 50px 0 0;
  align-items: center;
}
.tendency .contents .tendency_img{
  width: 50%;
}
.tendency .contents .text{
  width: 50%;
  color: #fff;
  font-size: 18px;
  line-height: 36px;
  padding: 0 0 0 4%;
}
@media screen and (max-width: 767px) {
  .tendency{
    padding: 110px 10px 50px;
  }
  .tendency .title{
    font-size: 30px;
  }
  .tendency .title.marker{
    padding: 0 10px 7px;
    line-height: 45px;
    text-align: center;
  }
  .tendency .title span{
    white-space: nowrap;
  }
  .tendency .contents{
    margin: 40px 0 0;
    flex-direction: column;
  }
  .tendency .contents .tendency_img{
    width: 100%;
    max-width: 400px;
  }
  .tendency .contents .text{
    width: 100%;
    font-size: 16px;
    line-height: 30px;
    padding: 20px 0 0;
  }
}

.flow{
  width: 100%;
  max-width: 1600px;
  margin: auto;
  background-color: #EAF6FD;
  padding: 80px 20px;
}
.flow .section_title{
  padding: 45px 0 0;
}
.flow .section_title::after{
  content: 'FLOW';
  color: #fff;
}
.flow .section_title .marker{
  background-image: -webkit-linear-gradient(left, transparent 50%, #0424A7 50%);
  background-size: 200% 4px;
  padding: 0 10px 4px;
}
.flow .list{
  margin: 50px 0 0;
}
.flow .list .item{
  padding: 10px 40px;
  margin: 0 0 50px;
  display: flex;
  align-items: center;
  background: -webkit-linear-gradient(left, #1B68CB, #6E9FDE);
  background: linear-gradient(to right, #1B68CB, #6E9FDE);
  position: relative;
}
.flow .list .item:nth-last-of-type(2n){
  background: -webkit-linear-gradient(left, #6E9FDE, #1B68CB);
  background: linear-gradient(to right, #6E9FDE, #1B68CB);
}
.flow .list .item::after{
  position: absolute;
  content: '';
  display: inline-table;
  border-top: 20px solid #0424A7;
  border-right: 20px solid transparent;
  border-left:  20px solid transparent;
  bottom: -35px;
  right: 0;
  left: 0;
  margin: auto;
}
.flow .list .item .flow_img{
  width: 100%;
  max-width: 180px;
}
.flow .list .item .text_box{
  width: calc(100% - 180px);
  margin: 0 0 0 20px;
}
.flow .list .item:nth-last-of-type(2n) .text_box{
  margin: 0 20px 0 0;
}
.flow .list .item .text_box .title{
  font-size: 22px;
  font-weight: bold;
  color: #fff;
  padding: 20px 0 10px;
  border-bottom: 1px solid #fff;
}
.flow .list .item .text_box .text{
  font-size: 18px;
  line-height: 31px;
  color: #fff;
  margin: 15px 0 20px;
}
.flow .list .comp{
  background-color: #fff;
  border: 4px solid #5990D6;
  padding: 50px 40px;
  text-align: center;
}
.flow .list .comp .title{
  font-weight: bold;
  font-size: 30px;
  position: relative;
  display: inline;
}
.flow .list .comp .title.marker{
  background-image: -webkit-linear-gradient(left, transparent 50%, #FFE36A 50%);
  background-size: 200% 4px;
  padding: 0 10px 7px;
}
.flow .list .comp .title::after,
.flow .list .comp .title::before{
  position: absolute;
  content: '';
  width: 45px;
  height: 45px;
  background: url(../images/icon_03.png) no-repeat;
  background-size: contain;
}
.flow .list .comp .title::after{
  top: -30px;
  right: -30px;
}
.flow .list .comp .title::before{
  bottom: -20px;
  left: -40px;
}
.flow .list .comp .text{
  font-size: 20px;
  line-height: 40px;
  margin: 40px 0 0;
}
@media screen and (max-width: 767px) {
  .flow{
    padding: 50px 0;
  }
  .flow .section_title{
    padding: 35px 0 0;
  }
  .flow .section_title .marker{
    background-size: 200% 3px;
  }
  .flow .list{
    margin: 40px 0 0;
  }
  .flow .list .item{
    padding: 10px 30px 20px;
    margin: 0 0 40px;
    flex-direction: column;
  }
  .flow .list .item::after{
    bottom: -30px;
  }
  .flow .list .item .flow_img{
    max-width: 200px;
    order: 2;
  }
  .flow .list .item .text_box{
    width: 100%;
    margin: 0;
    order: 1;
  }
  .flow .list .item:nth-last-of-type(2n) .text_box{
    margin: 0;
  }
  .flow .list .item .text_box .title{
    font-size: 20px;
    padding: 10px 0;
  }
  .flow .list .item .text_box .text{
    font-size: 16px;
    line-height: 25px;
    margin: 15px 0 0;
  }
  .flow .list .comp{
    padding: 40px 30px;
  }
  .flow .list .comp .title{
    font-size: 25px;
  }
  .flow .list .comp .title.marker{
    background-size: 200% 3px;
  }
  .flow .list .comp .title::after,
  .flow .list .comp .title::before{
    width: 40px;
    height: 40px;
  }
  .flow .list .comp .text{
    font-size: 18px;
    line-height: 32px;
    margin: 30px 0 0;
  }
}
@media screen and (max-width: 450px) {
  .flow .list .item{
    padding: 10px 20px;
  }
  .flow .list .comp{
    padding: 30px 20px;
  }
}

.important{
  max-width: 1600px;
  width: 100%;
  padding: 0 30px;
  margin: auto;
  background: #FFE36A;
}
.important.arrow2::after{
  border-top: 90px solid #EAF6FD;
  z-index: 1;
}
.important .inner1{
  background: #fff;
  padding-top: 170px;
  padding-bottom: 80px;
}
.important .section_title::after{
  content: 'IMPORTANT';
  color: #FFF4C4;
}
.important .section_title .marker{
  background-image: -webkit-linear-gradient(left, transparent 50%, #E34F00 50%);
  background-size: 200% 4px;
  padding: 0 10px 4px;
}
.important .pattern .title{
  font-size: 27px;
  padding: 15px 30px;
  border: 2px solid #EAC525;
  position: relative;
  display: table;
  margin: 50px auto 0;
}
.important .pattern .title::after{
  position: absolute;
  content: '';
  display: inherit;
  border-top: 15px solid #fff;
  border-left: 17px solid transparent;
  border-right: 17px solid transparent;
  bottom: -12px;
  left: 0;
  right: 0;
  margin: auto;
}
.important .pattern .title::before{
  position: absolute;
  content: '';
  display: inherit;
  border-top: 15px solid #EAC525;
  border-left: 17px solid transparent;
  border-right: 17px solid transparent;
  bottom: -15px;
  left: 0;
  right: 0;
  margin: auto;
}
.important .pattern_flow{
  margin: 40px 20px 0;
  display: flex;
  justify-content: space-evenly;
  align-items: stretch;
}
.important .pattern_flow .item{
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}
.important .pattern_arrow{
  border-left: 20px solid #FFE36A;
  border-top: 20px solid transparent;
  border-bottom: 20px solid transparent;
  height: 0;
  margin: auto 0;
}
.important .pattern_flow .text{
  font-size: 20px;
  font-weight: bold;
  line-height: 34px;
}
.important .pattern_flow .img{
  width: 100%;
  max-width: 180px;
}
.important .pattern .read{
  font-weight: bold;
  font-size: 27px;
  margin: 80px 0 0;
  text-align: center;
}
.important .detail{
  background: #fff;
  border: 1px solid #5C4D45;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 15%);
  padding: 50px 30px;
  margin: 50px auto 0;
  display: flex;
  justify-content: space-around;
  align-items: flex-start;
}
.important .detail .img{
  width: 350px;
}
.important .detail .contents{
  width: calc(95% - 350px);
}
.important .detail .contents .title{
  font-size: 20px;
  font-weight: bold;
  line-height: 34px;
  border-bottom: 4px solid #FFE36A;
  padding: 0 0 10px;
}
.important .detail .contents .text{
  padding: 10px 0;
  font-size: 18px;
  line-height: 31px;
}
.important .text_box{
  margin: 80px auto 0;
}
.important .text_box .text{
  font-size: 27px;
  font-weight: bold;
  margin: 0 auto;
  display: table;
}
.important .text_box .text.marker{
  background-image: -webkit-linear-gradient(left, transparent 50%, #E34F00 50%);
  background-size: 200% 4px;
  padding: 0 10px 7px;
}
.important .text_box .read{
  font-size: 20px;
  line-height: 40px;
  margin: 40px 0 0;
}
@media screen and (max-width: 1000px) {
  .important{
    padding: 0 20px;
  }
  .important .pattern_flow {
    margin: 40px 0 0;
  }
  .important .pattern_flow .img {
    max-width: 150px;
  }
}
@media screen and (max-width: 767px) {
  .important{
    padding: 0 10px;
  }
  .important.arrow2::after{
    border-top: 60px solid #EAF6FD;
  }
  .important .inner1{
    padding-top: 110px;
    padding-bottom: 50px;
  }
  .important .section_title .marker{
    background-size: 200% 3px;
  }
  .important .pattern .title{
    font-size: 23px;
    padding: 10px 20px;
    margin: 40px auto 0;
  }
  .important .pattern_flow{
    margin: 20px 0 0;
    align-items: center;
    flex-direction: column;
  }
  .important .pattern_arrow{
    border-left: 20px solid transparent;
    border-top: 20px solid #FFE36A;
    border-right: 20px solid transparent;
    top: 0;
    bottom: 0;
  }
  .important .pattern_flow .text{
    font-size: 22px;
    margin: 20px 0;
    text-align: center;
  }
  .important .pattern_flow .text span{
    white-space: nowrap;
  }
  .important .pattern .text br{
    display: none;
  }
  .important .pattern_flow .img{
    width: 80%;
    max-width: 350px;
    margin: 0 0 20px;
  }
  .important .pattern .read{
    font-size: 24px;
    margin: 20px 0 0;
  }
  .important .pattern .read span{
    white-space: nowrap;
  }
  .important .detail{
    padding: 30px 20px;
    margin: 40px auto 0;
    flex-direction: column;
  }
  .important .detail .img{
    width: 100%;
    max-width: 400px;
    margin: auto;
  }
  .important .detail .contents{
    width: 100%;
  }
  .important .detail .contents .title{
    font-size: 18px;
    line-height: 27px;
    border-bottom: 3px solid #FFE36A;
    padding: 20px 0 10px;
  }
  .important .detail .contents .title br{
    display: none;
  }
  .important .detail .contents .text{
    padding: 10px 0 0;
    font-size: 16px;
    line-height: 25px;
  }
  .important .text_box{
    margin: 50px auto 0;
  }
  .important .text_box .text{
    font-size: 23px;
  }
  .important .text_box .text.marker{
    background-size: 200% 3px;
  }
  .important .text_box .read{
    font-size: 18px;
    line-height: 32px;
    margin: 20px 0 0;
  }
}
@media screen and (max-width: 430px) {
  .important .section_title::after{
    font-size: 45px;
  }
}
@media screen and (max-width: 330px) {
  .important .section_title::after{
    font-size: 35px;
  }
}

.voice{
  width: 100%;
  max-width: 1600px;
  margin: auto;
  background: #EAF6FD;
  padding: 80px 0;
}
.voice .section_title::after{
  content: 'COSTOMER' "'" 'S VOICE';
  color: #fff;
}
.voice .section_title .marker{
  background-image: -webkit-linear-gradient(left, transparent 50%, #0424A7 50%);
  background-size: 200% 4px;
  padding: 0 50px 4px;
}
.voice .list{
  margin: 80px auto;
}
.voice .list .item{
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 0 50px;
}
.voice .list .item .img{
  width: 190px;
}
.voice .list .item .bubble{
  width: calc(100% - 220px);
  background: #fff;
  border: 2px solid #0424A7;
  position: relative;
  padding: 30px 35px;
}
.voice .list .item .bubble::after,
.voice .list .item .bubble::before{
  position: absolute;
  content: '';
  border-top: 17px solid transparent;
  border-bottom: 17px solid transparent;
  top: 0;
  bottom: 0;
  margin: auto;
  display: table;
}
@media screen and (min-width: 768px) {
  .voice .list .item:nth-last-of-type(2n+1) .bubble::after{
    border-right: 20px solid #fff;
    left: -17px;
  }
  .voice .list .item:nth-last-of-type(2n+1) .bubble::before{
    border-right: 20px solid #0424A7;
    left: -20px;
  }
  .voice .list .item:nth-last-of-type(2n) .bubble::after{
    border-left: 20px solid #fff;
    right: -17px;
  }
  .voice .list .item:nth-last-of-type(2n) .bubble::before{
    border-left: 20px solid #0424A7;
    right: -20px;
  }
}
.voice .list .item .bubble .title{
  font-size: 20px;
  font-weight: bold;
  color: #0953B3;
}
.voice .list .item .bubble .text{
  font-size: 18px;
  line-height: 31px;
  margin: 10px 0 0;
}
.voice .biz_profile{
  background: #fff;
  padding: 50px;
}
.voice .biz_profile .title{
  font-size: 27px;
  font-weight: bold;
  display: table;
  margin: 0 auto;
}
.voice .biz_profile .title.marker{
  background-image: -webkit-linear-gradient(left, transparent 50%, #5990D6 50%);
  background-size: 200% 4px;
  padding: 0 10px 7px;
}
@media screen and (max-width: 767px) {
  .voice{
    padding: 50px 0;
  }
  .voice .section_title .marker{
    background-size: 200% 3px;
  }
  .voice .list{
    margin: 50px auto;
  }
  .voice .list .item{
    margin: 0 0 40px;
    flex-direction: column;
  }
  .voice .list .item .img{
    order: 1;
    width: 200px;
  }
  .voice .list .item .bubble{
    width: 100%;
    padding: 20px;
    order: 2;
    margin: 30px 0 0;
  }
  .voice .list .item .bubble::after{
    border-top: none;
    border-right: 17px solid transparent;
    border-left: 17px solid transparent;
    border-bottom: 20px solid #fff;
    top: -18px;
    right: 0;
    left: 0;
    bottom: auto;
  }
  .voice .list .item .bubble::before{
    border-top: none;
    border-right: 17px solid transparent;
    border-left: 17px solid transparent;
    border-bottom: 20px solid #0424A7;
    top: -20px;
    right: 0;
    left: 0;
    bottom: auto;
  }
  .voice .list .item .bubble .title{
    font-size: 18px;
  }
  .voice .list .item .bubble .text{
    font-size: 16px;
    line-height: 25px;
  }
  .voice .biz_profile{
    padding: 40px;
  }
  .voice .biz_profile .title{
    font-size: 24px;
  }
  .voice .biz_profile .title.marker{
    background-size: 200% 3px;
  }
}
@media screen and (max-width: 440px) {
  .voice .section_title::after {
    font-size: 40px;
  }
}
@media screen and (max-width: 300px) {
  .voice .section_title::after {
    font-size: 35px;
  }
}

.form{
  width: 100%;
  max-width: 1600px;
  margin: auto;
  padding: 80px 0;
  background: -webkit-linear-gradient(top, #658FD0, #0424A7);
  background: linear-gradient(to bottom, #658FD0, #0424A7);
}
.form .section_title{
  padding: 45px 0 0;
  color: #fff;
}
.form .section_title::after{
  content: 'CONTACT';
  color: rgba(255, 255, 255, 0.3);
}
.form .section_title .marker{
  background-image: -webkit-linear-gradient(left, transparent 50%, #fff 50%);
  background-size: 200% 4px;
  padding: 0 10px 4px;
}
.form .text{
  font-size: 18px;
  line-height: 31px;
  text-align: center;
  color: #fff;
  margin: 50px 0 0;
}
.form .text .assessment{
  color: #FFE36A;
  border-bottom: 1px solid #FFE36A;
}
.form .text .assessment:hover{
  color: #91C5ED;
  border-color: #91C5ED;
  transition: .3s;
}
form.form_box{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin: 50px 0 0;
}
form.form_box .item_ss{
  width: 22%;
  min-width: 200px;
}
form.form_box .item_s{
  width: 47%;
}
form.form_box .item_l{
  width: 100%;
}
form.form_box .label{
  font-size: 20px;
  color: #fff;
  font-weight: bold;
  margin: 30px 0 10px;
}
form.form_box .label .required{
  font-size: 18px;
  color: #FFDB89;
}
form.form_box .input{
  width: 100%;
  box-sizing: border-box;
  background: rgba(255, 255, 255, 0.85);
  border: 2px solid #fff;
  border-radius: 5px;
  padding: 10px 15px;
  font-size: 18px;
}
form.form_box .radio_box{
  display: flex;
  flex-wrap: wrap;
}
form.form_box .input_radio{
  color: #fff;
  margin: 5px 10px 5px 0;
  font-size: 20px;
  display: inline-block;
}
form.form_box .textarea{
  width: 100%;
  max-width: 100%;
  min-width: 100%;
  height: 130px;
  min-height: 100px;
  box-sizing: border-box;
  background: rgba(255, 255, 255, 0.85);
  border: 2px solid #fff;
  border-radius: 5px;
  padding: 10px 15px;
  font-size: 18px;
}
form.form_box .btn{
  background: #EAC525;
  font-size: 30px;
  color: #fff;
  font-weight: bold;
  text-shadow: 0 3px 6px rgba(0, 0, 0, 15%);
  box-shadow: 0 3px 6px rgba(0, 0, 0, 15%);
  padding: 10px 20px;
  box-sizing: border-box;
  width: 100%;
  max-width: 300px;
  margin: 50px auto 0;
  letter-spacing: 10px;
  border: none;
}
form.form_box .btn:hover{
  background: #D09000;
  transition: .3s;
}
@media screen and (max-width: 767px) {
  .form{
    padding: 50px 0;
  }
  .form .section_title{
    padding: 25px 0 0;
  }
  .form .section_title .marker{
    background-size: 200% 3px;
  }
  .form .text{
    font-size: 16px;
    line-height: 25px;
    margin: 40px 0 0;
  }
  form.form_box{
    margin: 20px 0 0;
    padding: 0 20px;
  }
  form.form_box .item_ss{
    width: 48%;
  }
  form.form_box .item_s{
    width: 100%;
  }
  form.form_box .label{
    font-size: 18px;
  }
  form.form_box .label .required{
    font-size: 16px;
  }
  form.form_box .input{
    font-size: 16px;
  }
  form.form_box .input_radio{
    font-size: 18px;
  }
  form.form_box .textarea{
    height: 100px;
    font-size: 16px;
  }
  form.form_box .btn{
    font-size: 25px;
    margin: 40px auto 0;
    letter-spacing: 7px;
  }
}
@media screen and (max-width: 350px) {
  .form .section_title::after{
    font-size: 45px;
  }
}

/* confilm, thanks, satei_form */
.header.satei_form,
.header.thanks,
.header.confilm{
  width: 100%;
  max-width: 1600px;
  margin: auto;
  background: #D0DDF0;
}
.form.thanks{
  min-height: calc(100vh - 140px);
}
form.form_box .form_out{
  background: rgba(255, 255, 255, 0.6);
  padding: 10px 15px;
  font-weight: bold;
  font-size: 18px;
  word-break: break-all;
}
.form.confilm form.form_box input.btn{
  background: #D3D1CC;
}
.form.confilm form.form_box input.btn:hover{
  background: #BCBCBC;
  transition: .3s;
}
@media screen and (max-width: 767px) {
  .form.confilm form.form_box .form_out{
    font-size: 16px;
  }
  .form.confilm form.form_box input.btn {
    margin: 50px auto -15px;
  }
}

/* satei_form */
.satei_form .section_title::after{
  content: 'ASSESSMENT';
  color: rgba(255, 255, 255, 0.3);
}
.satei_form .form_title{
  color: #fff;
  font-size: 27px;
  font-weight: bold;
  border-bottom: 2px solid #fff;
  width: 100%;
  padding: 0 0 10px;
  margin: 30px 0 10px;
}
.satei_form .form_title:nth-of-type(2){
  margin-top: 80px;
}
.satei_form form.form_box .item_ss .textarea{
  min-height: 47px;
  height: 47px;
  max-height: 47px;
  padding: 7px 15px;
}

.footer{
  background: #0424A7;
  width: 100%;
  max-width: 1600px;
  margin: -1px auto 0;
}
.footer .contents{
  display: flex;
  align-items: center;
  height: 60px;
}
.footer .contents .img{
  width: 140px;
}
.footer .contents .footer_link{
  margin: 0 auto 0 30px;
}
.footer .contents .footer_link .link{
  color: #fff;
  font-size: 14px;
  margin: 0 15px 0 0;
}
.footer .contents .footer_link .link:hover{
  border-bottom: 1px solid #fff;
}
.footer .contents .footer_link .target_blank{
  padding: 0 20px 0 0;
  position: relative;
}
.footer .contents .footer_link .target_blank::after{
  position: absolute;
  content: '';
  width: 14px;
  height: 14px;
  background: url(../images/icon_targetblank.svg) no-repeat;
  background-size: contain;
  top: 0;
  right: 0;
}
.footer .contents .copyright{
  color: #fff;
  font-size: 14px;
  text-align: center;
}
@media screen and (max-width: 900px) {
  .footer .contents{
    height: auto;
    flex-direction: column;
    padding: 0 0 20px;
  }
  .footer .contents .img{
    width: 200px;
  }
  .footer .contents .footer_link{
    margin: 30px 0 20px;
  }
}
@media screen and (max-width: 767px) {
  .footer .contents .footer_link .link{
    font-size: 12px;
  }
  .footer .contents .footer_link .target_blank{
    padding: 0 18px 0 0;
  }
  .footer .contents .footer_link .target_blank::after{
    width: 12px;
    height: 12px;
  }
  .footer .contents .copyright{
    font-size: 12px;
  }
}

/* フローティングボタン */
.float_btn {
  display: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #0953B3;
  position: fixed;
  bottom: 50px;
  right: 30px;
  z-index: 99999;
}
.float_btn span {
  background: url(../images/arrow.svg) no-repeat;
  background-size: 60%;
  width: 100%;
  height: 100%;
  display: block;
  background-position: center;
}
@media screen and (max-width: 767px) {
  .float_btn {
    width: 40px;
    height: 40px;
  }
  .float_btn {
    bottom: 30px;
    right: 10px;
  }
}
