@charset "UTF-8";
/* テキスト
==============================　*/
a {
  text-decoration: none;
  color: inherit;
}

strong {
  font-weight: bold;
}

b {
  font-weight: bold;
}

sup {
  vertical-align: top;
}

/* メディア
==============================　*/
img {
  display: block;
  max-width: 100%;
  height: auto;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

video {
  display: block;
  max-width: 100%;
  height: auto;
  outline: none;
}

iframe {
  max-width: 100%;
}

/* テキスト
==============================　*/
.bold {
  font-weight: bold;
}

/* PC/SP切り替え
==============================　*/
.sp, .tb {
  display: none;
}

/* 改行
==============================　*/
/*任意の位置で改行させる*/
.ib {
  display: inline-block;
}

/*PCのみ*/
.pc-br {
  display: inline;
}

/*TBのみ*/
.tb-br {
  display: none;
}

/*PC〜TBにかけて*/
.pc-tb-br {
  display: inline;
}

/*TB〜SPにかけて*/
.tb-sp-br {
  display: none;
}

/*SPのみ*/
.sp-br {
  display: none;
}

/*iphoneSE用*/
.se-br {
  display: none;
}

@media screen and (max-width: 768px) {
  .pc-br {
    display: none;
  }
  .tb-br {
    display: inline;
  }
  .tb-sp-br {
    display: inline;
  }
}
@media screen and (max-width: 600px) {
  .pc-tb-br {
    display: none;
  }
  .tb-br {
    display: none;
  }
  .sp-br {
    display: inline;
  }
}
@media screen and (max-width: 374px) {
  .se-br {
    display: inline;
  }
}
/* ===================================
表示項目切り替え
=================================== */
/* ヘッダー */
.pc_header{
  display: block !important;
}
.sp_header{
  display: none !important;
}

/* フッター */
.pc_copy{
  display: block;
}
.sp_copy{
  display: none;
}

@media screen and (max-width: 1200px){
  .pc_copy{
    display: none;
  }
  .sp_copy{
    display: block;
  }
}
@media screen and (max-width: 768px){
  .pc_header{
    display: none !important;
  }
  .sp_header{
    display: block !important;
  }
}


/* ===================================
共通
=================================== */
.sec{
  position: relative;
  padding: 56px 20px;
}
.sec_inner{
  max-width: 1400px;
  margin: auto;
  padding: 0 100px;
}
.sec_ttl{
  max-width: 1400px;
  margin: auto;
  color: #3258c3;
  text-align: center;
}
.sec_ttl .en{
  display: block;
  font-size: 48px;
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1.4em;
}
.sec_ttl .ja{
  display: block;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4em;
}
.sec_intro{
  margin-top: 27px;
  font-size: 16px;
  font-weight: 500;
  text-align: center;
  letter-spacing: 0.05em;
  line-height: 1.6em;
}
.sec_intro span{
  background: linear-gradient(transparent 60%, #91f9e5 60%);
}

@media screen and (max-width: 1250px){
  .sec_inner{
    padding: 0 20px;
  }
}
@media screen and (max-width: 768px){
  .sec_ttl .en{
    font-size: 30px;
  }
  .sec_ttl .ja{
    font-size: 14px;
  }
  .sec_intro{
    font-size: 14px;
    letter-spacing: 0.05em;
    line-height: 2em;
  }
}
@media screen and (max-width: 600px) {
  .sec{
    padding: 40px 20px;
  }
  .sec_ttl .en{
    font-size: 26px;
  }
}

/* ===================================
ヘッダー
=================================== */
header{
  position: fixed;
  top: 0;
  z-index: 50;
  width: 100%;
}
.header_bg{
  position: absolute;
  top: -100px;
  z-index: -1;
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0px 1px 10px 0px rgba(50, 88, 195, 0.3) ;
  width: 100%;
  height: 100%;
  transition: .3s ease-in-out;
}
.header_bg.fixed{
  top: 0;
}
.header_inner{
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: auto;
  padding: 15px 20px;
}
.logo{
  width: 58px;
  margin-top: -5px;
}
.nav_list{
  display: flex;
  align-items: center;
}
.nav_list li{
  margin-right: 35px;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.6em;
}
.nav_list li:last-of-type{
  margin-right: 0;
  line-height: unset;
}
.txt_nav{
  transition: .3s;
}
.txt_nav a{
  position: relative;
  padding: 0 10px;
}
.txt_nav a::after{
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 100%;
  height: 2px;
  background: #9ad5f2;
  transform: scale(0, 1);
  transform-origin: right top;
  transition: transform 0.3s;
}
.txt_nav a:hover::after{
  transform-origin: left top;
  transform: scale(1, 1);
}


.txt_nav:hover{
  opacity: .6;
}
.nav_btn{
  position: relative;
  width: fit-content;
  margin: auto;
}
.nav_btn::after{
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  bottom: -3px;
  z-index: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #cbc100;
  border-radius: 300px;
  transition: .3s;
}
.nav_btn a{
  position: relative;
  top: 0;
  z-index: 1;
  display: block;
  width: 280px;
  padding: 19px 0;
  padding-left: 9%;
  background-color: #fefb04;
  border: 2px solid #fefb04;
  border-radius: 300px;
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  color: #30529c;
  transition: .3s;
}
.nav_btn a::before{
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 10%;
  width: 16px;
  height: 14px;
  background-image: url(../img/download.png);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.nav_btn:hover a{
  top: 3px;
}

.hamb_btn_area{
  position: sticky;
  top: 20px;
  right: 25px;
  margin-left: auto;
  z-index: 60;
  display: none;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: #30529c;
  border-radius: 50%;
  transition: .3s;
}
.hamb_btn{
  position: relative;
  width: 21px;
  height: 7px;
}
.hamb_btn span{
  position: absolute;
  display: block;
  width: 100%;
  height: 2px;
  background-color: #fff;
  transition: .3s;
}
.hamb_btn span:nth-of-type(1){
  top: 0;
}
.hamb_btn span:nth-of-type(2){
  top: 100%;
}

.hamb_area{
  display: none;
  position: fixed;
  top: -220px;
  width: 100%;
  z-index: 50;
  background: rgba(48, 82, 156, 0.8);
  transition: .5s;
}
.hamb_area_inner{
  padding: 80px 20px 50px;
}
.sp_gnav_list{
  text-align: center;
}
.sp_gnav_list .txt_nav{
  margin-bottom: 20px;
  font-weight: 500;
  color: #fff;
}
.sp_gnav_list .nav_btn{
  margin: 0 -20px;
}
.sp_gnav_list .nav_btn a{
  position: fixed;
  top: unset;
  bottom: 0;
  width: 100%;
  border-radius: 0;
  margin: auto;
  padding: 20px 0;
  padding-left: 5%;
  font-size: 18px;
}
.sp_gnav_list .nav_btn a::before{
  left: 14%;
  width: 21px;
  height: 19px;
}

/* アクティブ */
.hamb_btn_area.active{
  background-color: #fff;
}
.hamb_btn.active span:nth-of-type(1){
  top: 50%;
  transform: rotate(-45deg);
  background-color: #30529c;
}
.hamb_btn.active span:nth-of-type(2){
  top: 50%;
  transform: rotate(45deg);
  background-color: #30529c;
}

.hamb_area.open{
  top: 0;
}


@media screen and (max-width: 1023px) {
  .nav_list li{
    margin-right: 20px;
  }
  .nav_btn a{
    width: 250px;
    padding: 13px 0;
    padding-left: 20px;
    font-size: 12px;
  }
  .nav_btn a::before{
    left: 10%;
  }
}
@media screen and (max-width: 768px){
  header{
    position: relative;
  }
  .header_bg{
    display: none;
  }
  .header_inner{
    justify-content: end;
  }
  main{
    margin-top: -110px;
  }
  .nav_list li{
    font-size: 12px;
  }
  .hamb_area{
    display: block;
  }
  .hamb_btn_area{
    display: flex;
  }
  .logo{
    width: 50px;
    margin-top: 0;
  }
  .sp_gnav_list .nav_btn a:hover{
    background-color: #fefb04;
    border: 2px solid #fefb04;
  }
}
@media screen and (max-width: 600px){
  main{
    margin-top: -125px;
  }
  .logo{
    width: 30px;
  }
  .hamb_btn_area{
    top: 15px;
    right: 20px;
    width: 30px;
    height: 30px;
  }
  .hamb_btn{
    top: -1px;
  }
}
@media screen and (max-width: 350px){
  .sp_gnav_list .nav_btn a::before{
    left: 8%;
  }
}


/* ===================================
メインコンテンツ
=================================== */
main::before{
  content: "";
  position: absolute;
  top: 0;
  display: block;
  width: 100%;
  height: 110px;
  background-color: #fff;
}

/* FV */
.sec_fv{
  position: relative;
  padding-top: 130px;
  padding-bottom: 0;
}
.sp_bg{
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  min-height: 100vh;
  min-height: -webkit-fill-available;
  background-image: url(../img/fv_bg_fixed.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.sec_fv::before{
  content: "";
  display: block;
  position: absolute;
  left: 0;
  bottom: -85px;
  z-index: 20;
  width: 103px;
  height: 186px;
  background-image: url(../img/fv_deco_l.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.sec_fv::after{
  content: "";
  display: block;
  position: absolute;
  right: 0;
  bottom: -85px;
  z-index: 20;
  width: 117px;
  height: 186px;
  background-image: url(../img/fv_deco_r.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.fv_inner{
  position: relative;
  z-index: 21;
  padding-bottom: 60px;
  background-image: url(../img/fv_bg_illust.png);
  background-position: right 43px bottom 60px;
  background-size: 500px;
  background-repeat: no-repeat;
}
h1.fv_pc{
  max-width: 856px;
}
p.fv_ttl_sp,
p.fv_txt_sp,
p.fv_illust_sp{
  display: none;
}
.fv_cont_box{
  width: fit-content;
}
.fv_fuki_list{
  display: flex;
  justify-content: space-between;
  max-width: 600px;
  margin-top: 18px;
  padding: 23px;
}
.fv_fuki_list li{
  width: calc((100% / 3) - 19px);
}
.fv_btn_area{
  text-align: center;
  margin-top: 5px;
}
.fv_btn_txt{
  position: relative;
  width: fit-content;
  margin: auto;
  color: #30529c;
  font-weight: 500;
}
.fv_btn_txt::before,
.fv_btn_txt::after{
  content: "";
  display: block;
  position: absolute;
  bottom: -5px;
  width: 1px;
  height: 30px;
  background-color: #30529c;
}
.fv_btn_txt::before{
  left: -30px;
  transform: rotate(-50deg);
}
.fv_btn_txt::after{
  right: -30px;
  transform: rotate(50deg);
}
.fv_btn_area .nav_btn a{
  position: relative;
  display: block;
  width: 400px;
  margin: 14px auto 0;
  padding: 22px 0;
  padding-left: 7%;
  background-color: #fefb04;
  border: 2px solid #fefb04;
  border-radius: 300px;
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #30529c;
  transition: .3s;
}
.fv_btn_area .nav_btn a::before{
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 15%;
  width: 23px;
  height: 22px;
  background-image: url(../img/download.png);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
/* .fv_btn_area .nav_btn a:hover{
  background-color: #fff;
  border: 2px solid #30529c;
} */
@media screen and (max-width: 1200px){
  .fv_inner{
    background-size: 40%;
    background-position: right 25px bottom 60px;
  }
}
@media screen and (max-width: 1023px){
  .sec_fv::before{
    bottom: -60px;
    width: 80px;
    height: 144px;
  }
  .sec_fv::after{
    bottom: -60px;
    width: 86px;
    height: 136px;
  }
  .fv_inner{
    background-size: 300px;
    background-position: right 25px bottom 50px;
  }
  .fv_fuki_list{
    max-width: 380px;
    padding: 23px 0;
  }
  .fv_fuki_list li{
    width: calc((100% / 3) - 5px);
  }
  .fv_btn_area .nav_btn a{
    width: 300px;
    padding: 15px 0;
    padding-left: 7%;
    font-size: 14px;
  }
  .fv_btn_area .nav_btn a::before{
    width: 18px;
    height: 16px;
    left: 13%;
  }
}
@media screen and (max-width: 768px){
  .sec_fv{
    padding-top: 80px;
  }
  .sec_inner.fv_inner{
    padding-bottom: 60px;
    background-size: 270px;
    background-position: center top 39%;
  }
  .fv_fuki_list{
    max-width: 100%;
    margin-top: 260px;
  }
  .fv_fuki_list li{
    width: calc((100% / 3) - 30px);
  }
  .fv_btn_area{
    display: none;
  }
}
@media screen and (max-width: 600px){
  .sec_fv{
    padding-top: 60px;
  }
  h1.fv_pc{
    display: none;
  }
  p.fv_ttl_sp{
    display: block;
    width: 90%;
    margin-bottom: 18px;
  }
  p.fv_txt_sp{
    display: block;
    position: relative;
    z-index: 21;
    width: 90%;
    margin-bottom: 10px;
  }
  p.fv_illust_sp{
    display: block;
    max-width: 80%;
    margin: auto;
  }
  .sec_fv{
    background-image: none;
    background-color: #f4f8fe;
  }
  .sec_inner.fv_inner{
    padding-bottom: 40px;
    background-image: none;
  }
  .sp_bg{
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    min-height: 100vh;
    min-height: -webkit-fill-available;
    background-image: url(../img/fv_bg_fixed_sp.png);
    background-position: top 20% center;
    background-repeat: no-repeat;
    background-size: cover;
  }
  .sp_bg.hidden{
    display: none;
  }
  .sec_fv::before{
    bottom: 38%;
  }
  .sec_fv::after{
    bottom: unset;
    top: 14%;
  }
  .sec_inner.fv_inner{
    position: relative;
    z-index: 21;
  }
  .fv_fuki_list{
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 0;
  }
  .fv_fuki_list li {
    width: calc((100% / 3) - 10px);
  }
  .fv_fuki_list li:not(:last-of-type){
    margin-right: 5px;
  }
  .fv_btn_area .nav_btn a {
    width: 100%;
    padding: 22px 0;
    padding-left: 5%;
    font-size: 18px;
  }
  .fv_btn_area .nav_btn a::before {
    width: 22px;
    height: 20px;
    left: 20%;
  }
}
@media screen and (max-width: 500px){
  .fv_btn_area .nav_btn a::before {
    left: 15%;
  }
}
@media screen and (max-width: 450px){
  .fv_btn_area .nav_btn a{
    padding-left: 12%;
  }
  .fv_btn_area .nav_btn a::before{
    left: 10%;
  }
}
@media screen and (max-width: 400px){
  p.fv_ttl_sp {
    width: 84%;
  }
  p.fv_txt_sp {
    width: 84%;
  }
}
@media screen and (max-width: 360px){
  .fv_btn_area .nav_btn a{
    font-size: 14px;
    padding-left: 12%;
  }
  .fv_btn_area .nav_btn a::before{
    width: 18px;
    height: 16px;
    left: 10%;
  }
}


/* ビジネスパートナー */
.sec_bp{
  background-color: #fff;
}
.sec_bp::after{
  content: "";
  display: block;
  position: absolute;
  bottom: -85px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  border-style: solid;
  border-width: 85px 0 0 100vw;
  border-color: #fff transparent transparent transparent;
}
.partner_list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-around;
  margin-top: 50px;
}
.partner_list li{
  width: calc((100% / 6) - 9px);
  margin-bottom: 21px;
}
.partner_list li img{
  width: 188px;
}

@media screen and (max-width: 1023px) {
  .partner_list{
    max-width: 700px;
    margin: 50px auto 0;
  }
  .partner_list li{
    width: calc((100% / 3) - 30px);
  }
}
@media screen and (max-width: 600px) {
  .partner_list li{
    width: calc((100% / 3) - 10px);
  }
}

/* こんなお悩み～ */
.sec_worry{
  position: relative;
  padding-top: 85px;
  padding-bottom: 110px;
  background-color: #3258c3;
}
.sec_worry::after{
  content: "";
  display: block;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -70px;
  z-index: 1;
  border-style: solid;
  border-width: 70px 100px 0 100px;
  border-color: #3258c3 transparent transparent transparent;
}
.worry_ttl{
  max-width: 1400px;
  margin: 51px auto 0;
  font-size: 30px;
  font-weight: 700;
  color: #fff;
  text-align: center;
  line-height: 1.4em;
  letter-spacing: 0.01em;
}
.worry_box{
  display: flex;
  justify-content: center;
  margin-top: 34px;
}
.worry_list{
  max-width: 740px;
  width: 100%;
  border: 1px solid #cbd7f9;
  background-color: #fff;
  border-radius: 30px;
  padding: 26px 100px 26px 38px;
}
.worry_list li{
  position: relative;
  padding: 16px 0;
  padding-left: 50px;
  margin-bottom: 1px;
  font-size: 18px;
  font-weight: 500;
  color: #31529c;
  border-bottom: 1px solid #92cce7;
  letter-spacing: 0.05em;
}
.worry_list li::before{
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  display: block;
  width: 20px;
  height: 20px;
  border: 1px solid #3258c3;
  margin-right: 30px;
}
.worry_list li::after{
  content: "";
  position: absolute;
  top: 41%;
  transform: translateY(-50%);
  left: 1px;
  display: block;
  width: 30px;
  height: 27px;
  background-image: url(../img/worry_check.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.worry_img{
  width: 170px;
}
.worry_img img{
  position: relative;
  top: 27px;
  right: 62px;
  max-width: 238px;
}

@media screen and (max-width: 1023px) {
  .worry_list{
    padding: 20px 50px 20px 25px;
  }
  .worry_img img{
    top: 90px;
    right: 50px;
    max-width: 190px;
  }
  .worry_list li{
    font-size: 15px;
  }
}
@media screen and (max-width: 768px){
  .worry_ttl{
    font-size: 21px;
  }
  .worry_img{
    width: 130px;
  }
  .worry_img img{
    max-width: 190px;
  }
  .worry_list li{
    padding: 16px 0;
    padding-left: 35px;
    font-size: 14px;
    letter-spacing: 0.05em;
    line-height: 1.7em;
  }
}
@media screen and (max-width: 600px){
  .sec_worry{
    padding-top: 55px;
    padding-bottom: 55px;
  }
  .sec_worry::after{
    bottom: -40px;
    border-width: 40px 50px 0 50px;
  }
  .worry_box{
    flex-direction: column;
  }
  .worry_list{
    padding: 20px 25px;
  }
  .worry_img{
    width: 100%;
    margin-top: 20px;
  }
  .worry_img img{
    margin: auto;
    top: 0;
    right: 0;
  }
  
}


/* 解決します！ */
.sec_solution{
  padding-top: 120px;
  padding-bottom: 90px;
  background-color: #f4f8fe;
}
.sec_solution::after{
  content: "";
  display: block;
  position: absolute;
  bottom: -85px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  border-style: solid;
  border-width: 85px 100vw 0 0;
  border-color: #f4f8fe transparent transparent transparent;
}
.solution_ttl{
  max-width: 1400px;
  margin: auto;
  text-align: center;
  font-size: 36px;
  font-weight: 700;
  color: #30529c;
  letter-spacing: 0.04em;
  line-height: 1.9em;
}
.solution_ttl span{
  letter-spacing: 0em;
}
.solution_img{
  display: inline-block;
  width: 253px;
  vertical-align: text-bottom;
  margin-right: 11px;
}
.solution_intro{
  margin-top: 15px;
  margin-bottom: 50px;
  font-size: 16px;
  font-weight: 500;
  text-align: center;
  letter-spacing: 0.0em;
  line-height: 1.9em;
}

.solution_list{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.solution_list li{
  position: relative;
  cursor: pointer;
  width: 280px;
  height: 280px;
  margin-right: 70px;
  margin-bottom: 10px;
  border-radius: 50%;
}
.pop_inner {
  overflow: hidden;
  position: relative;
  z-index: 1;
  background-color: #fff;
  cursor: pointer;
  width: 280px;
  height: 280px;
  padding: 30px 27px;
  border: 1px solid #3258c3;
  border-radius: 50%;
  text-align: center;
  transition: .3s;
}
.solution_list li:hover .pop_inner{
  background-color: #3258c3;
}
.solution_list li:nth-of-type(3),
.solution_list li:last-of-type{
  margin-right: 0;
}
.solution_list li:nth-of-type(3) .item_img{
  margin-top: -14px;
}
.solution_list li:last-of-type .item_img{
  margin-top: -10px;
}
.item_name{
  margin-bottom: 22px;
  font-size: 18px;
  font-weight: 700;
  color: #3258c3;
  line-height: 1.6em;
  transition: .3s;
}
.item_arrow{
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 25px;
  padding-left: 28px;
  font-size: 14px;
  font-weight: 500;
  color: #3258c3;
  transition: .3s;
}
.item_arrow::before{
  content: "\f061";
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  display: inline-block;
  color: #3258c3;
  transition: .3s;
}
.solution_list li:hover .item_arrow::before{
  left: 7px;
}

.solution_list li:hover .item_name,
.solution_list li:hover .item_arrow,
.solution_list li:hover .item_arrow::before{
  color: #fff;
}

@media screen and (max-width: 1060px) {
  .sec_solution{
    padding-top: 100px;
    padding-bottom: 50px;
  }
  .solution_ttl{
    font-size: 28px;
  }
  .solution_ttl .solution_img{
    width: 216px;
  }
  .solution_intro{
    margin-top: 10px;
    font-size: 14px;
    letter-spacing: 0.05em;
    line-height: 2em;
  }
  .solution_list li{
    width: 250px;
    height: 250px;
    margin-right: 30px;
  }
  .pop_inner{
    width: 250px;
    height: 250px;
  }
}
@media screen and (max-width: 890px) {
  .solution_list li{
    margin-bottom: 20px;
  }
  .solution_list li:nth-of-type(5){
    margin-top: -15px;
  }
  .solution_list li:nth-of-type(1),
  .solution_list li:nth-of-type(3){
    margin-right: 40px;
  }
  .solution_list li:nth-of-type(2),
  .solution_list li:nth-of-type(4),
  .solution_list li:nth-of-type(5){
    margin-right: 0;
  }
}
@media screen and (max-width: 768px) {
  .solution_ttl{
    font-size: 24px;
  }
  .solution_ttl .solution_img {
    width: 183px;
  }
}
@media screen and (max-width: 600px){
  .sec_solution{
    padding-bottom: 10px;
  }
  .solution_ttl{
    font-size: 20px;
  }
  .solution_list li{
    width: 200px;
    height: 200px;
  }
  .pop_inner{
    width: 200px;
    height: 200px;
    padding: 15px;
  }
  .solution_list li:nth-of-type(1),
  .solution_list li:nth-of-type(3){
    margin-right: 20px;
  }
  .solution_list li:nth-of-type(5){
    margin-top: -10px;
  }
  .item_name{
    margin-bottom: 15px;
    font-size: 14px;
  }
  .item_arrow{
    font-size: 12px;
  }
  .item_arrow::before{
    font-size: 12px;
  }
}
@media screen and (max-width: 460px){
  .solution_list li{
    width: 160px;
    height: 160px;
    margin-bottom: 15px;
  }
  .solution_list li:nth-of-type(1),
  .solution_list li:nth-of-type(3){
    margin-right: 15px;
  }
  .solution_list li:nth-of-type(5){
    margin-top: -10px;
  }
  .pop_inner{
    width: 160px;
    height: 160px;
    padding: 10px 0;
  }
  .item_arrow {
    left: 55%;
    width: 100px;
    padding-left: 6px;
    font-size: 12px;
    bottom: 20px;
  }
  .item_img{
    max-width: 72%;
    margin: auto;
  }
}
@media screen and (max-width: 400px){
  .solution_list li{
    width: 130px;
    height: 130px;
    margin-bottom: 15px;
  }
  .pop_inner{
    width: 130px;
    height: 130px;
  }
  .item_name{
    margin-bottom: 12px;
    font-size: 12px;
  }
  .item_img{
    max-width: 68%;
  }
}

/* ポップアップ */
.popup_bg{
  display: none;
  opacity: 0;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 60;
  width: 100vw;
  height: 100%;
  background: rgba(69, 82, 119, 0.8);
  transition: .6s;
}
.close_btn{
  cursor: pointer;
  position: absolute;
  top: 7%;
  right: 10%;
  width: fit-content;
  height: auto;
  padding: 10px;
}
.close_btn_inner{
  position: relative;
  display: block;
  width: 26px;
  height: 26px;
}
.close_btn_inner span{
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 2px;
  height: 36px;
  background-color: #fff;
}

.popup_box{
  overflow-y: scroll;
  display: none;
  opacity: 0;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 70;
  max-width: 980px;
  width: 100%;
  max-height: 570px;
  background-color: #fff;
  transition: .6s;
}
.popup_box::-webkit-scrollbar{
  width: 23px;
}
.popup_box::-webkit-scrollbar-track{
  z-index: 20;
  background-color: transparent;
}
.popup_box::-webkit-scrollbar-thumb{
  cursor: pointer;
  background-color: #a7bffa;
  border-radius: 30px;
  border: solid 10px transparent; 
  background-clip: padding-box;
}
.popup_inner{
  display: flex;
  justify-content: space-between;
  padding: 40px;
}
.close_btn_inner span:nth-of-type(1){
  transform: translate(-50%, -50%) rotate(45deg);
}
.close_btn_inner span:nth-of-type(2){
  transform: translate(-50%, -50%) rotate(-45deg);
}
.popup_bg.open{
  display: block;
}
.popup_bg.visible{
  opacity: 1;
}
.popup_box.open{
  display: block;
}
.popup_box.visible{
  opacity: 1;
}

.pop_cont_l{
  flex-shrink: 0;
  position: sticky;
  top: 40px;
  max-width: 340px;
  width: 100%;
  max-height: 480px;
  padding: 75px 0;
  background-color: #3258c3;
  border-radius: 30px;
  background-position: center;
  background-repeat: no-repeat;
}
.pop01 .pop_cont_l{
  background-image: url(../img/sl_item01.png);
  background-size: 85%;
  background-position: center bottom 42%;
}
.pop02 .pop_cont_l{
  background-image: url(../img/sl_item02.png);
  background-size: 80%;
  background-position: center bottom 42%;
}
.pop03 .pop_cont_l{
  background-image: url(../img/sl_item03.png);
  background-size: 94%;
  background-position: center bottom 41%;
  padding: 50px 0;
}
.pop04 .pop_cont_l{
  background-image: url(../img/sl_item04.png);
  background-size: 94%;
  background-position: center bottom 41%;
}
.pop05 .pop_cont_l{
  background-image: url(../img/sl_item05.png);
  background-size: 83%;
  background-position: center bottom 42%;
  padding: 50px 0;
}
.pop_cont_l::after{
  content: "";
  position: absolute;
  left: -20px;
  bottom: -30px;
  display: block;
  width: 125px;
  height: 139px;
  background-image: url(../img/point_deco_l.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.pop_ttl{
  font-size: 36px;
  font-weight: 700;
  color: #fff;
  text-align: center;
  letter-spacing: 0.04em;
}
.pop_cont_r{
  flex-shrink: 0;
  max-width: 495px;
  width: 100%;
  padding: 12px 0;
}
.pop_txt{
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.06em;
  line-height: 1.9em;
}
.pop_txt span{
  font-size: 14px;
}
.pop_ttl_gra{
  width: fit-content;
  margin: 24px auto;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.04em;
  background: linear-gradient(90deg, rgba(106,175,207,1) 0%, rgba(50,88,195,1) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.pop_flow_list li{
  position: relative;
  background-color: #f4f8fe;
  border-radius: 30px;
  padding: 20px;
  margin-bottom: 55px;
}
.pop_flow_list li::after{
  content: "";
  position: absolute;
  bottom: -35px;
  left: 50%;
  transform: translateX(-50%);
  width: 46px;
  height: 17px;
  background-image: url(../img/point_arrow.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.pop_flow_list li:last-of-type::after{
  content: none;
}
.pop_flow_list li .ttl_box{
  display: flex;
  align-items: baseline;
  padding-left: 10px;
  margin-bottom: 10px;
  letter-spacing: 0.06em;
}
.pop_flow_list li .ttl_box p{
  font-size: 18px;
  font-weight: 700;
  color: #3258c3;
}
.pop_flow_list li .ttl_box .en{
  width: fit-content;
  background: linear-gradient(90deg, rgba(106,175,207,1) 0%, rgba(50,88,195,1) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 16px;
  font-weight: 700;
  margin-right: 18px;
}
.pop_flow_list li .ttl_box .en span{
  font-size: 24px;
}
.pop_btn_area{

}
.pop_btn_copy{
  position: relative;
  width: fit-content;
  margin: auto;
  font-size: 16px;
  font-weight: 700;
  color: #30529c;
}
.pop_btn_copy::before,
.pop_btn_copy::after{
  content: "";
  position: absolute;
  bottom: 0;
  display: block;
  width: 1px;
  height: 30px;
  background-color: #3e62c7;
}
.pop_btn_copy::before{
  left: -20px;
  transform: rotate(-50deg);
}
.pop_btn_copy::after{
  right: -20px;
  transform: rotate(50deg);
}
.pop_btn_copy span{
  font-size: 24px;
}
.pop_btn_copy .num{
  font-size: 30px;
}
.pop_btn{
  position: relative;
  max-width: 400px;
  margin: 10px auto 0;
}
.pop_btn::after{
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  bottom: -3px;
  z-index: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #cbc100;
  border-radius: 300px;
  transition: .3s;
}
.pop_btn a{
  position: relative;
  top: 0;
  z-index: 1;
  display: block;
  background-color: #fefb04;
  border: 2px solid #fefb04;
  border-radius: 200px;
  max-width: 400px;
  margin: auto;
  padding: 20px 0;
  font-size: 18px;
  font-weight: 700;
  color: #30529c;
  text-align: center;
  transition: .3s;
}
.pop_btn:hover a{
  top: 3px;
}

@media screen and (max-width: 1200px) {
  .popup_box{
    max-width: 85%;
    max-height: 70%;
  }
  .popup_inner{
    padding: 20px;
  }
  .pop_cont_l{
    margin-right: 20px;
    max-width: 32%;
    max-height: 380px;
  }
  .pop_ttl{
    font-size: 28px;
  }
  .pop_cont_r{
    max-width: 65%;
  }
  .popup_inner{
    padding: 20px;
  }
}
@media screen and (max-width: 1023px){
  .pop_ttl{
    font-size: 25px;
  }
}
@media screen and (max-width: 768px){
  .close_btn{
    top: 20px;
    right: 10px;
    bottom: 90%;
  }
  .popup_box{
    max-width: 94%;
    max-height: 85%;
    left: 50%;
    transform: translateX(-50%);
    top: 10%;
  }
  .popup_box::-webkit-scrollbar{
    width: 13px;
  }
  .popup_box::-webkit-scrollbar-thumb{
    border: solid 5px transparent; 
  }
  .popup_box::before{
    content: "";
    position: sticky;
    top: 0;
    display: block;
    width: 100%;
    height: 300px;
    margin-bottom: -300px;
    z-index: 10;
    background-color: #fff;
  }
  .popup_box.pop03::before,
  .popup_box.pop05::before{
    height: 335px;
    margin-bottom: -335px;
  }
  .popup_inner{
    flex-direction: column;
    padding-bottom: 70px;
  }
  .pop_cont_l,
  .pop_cont_r{
    max-width: 100%;
  }
  .pop_cont_l{
    top: 20px;
  }
  .pop_cont_r{
    margin-top: 40px;
  }
  .pop01 .pop_cont_l,
  .pop02 .pop_cont_l,
  .pop03 .pop_cont_l,
  .pop04 .pop_cont_l,
  .pop05 .pop_cont_l{
    z-index: 10;
    margin-right: 0;
    padding: 40px 0 170px;
    background-size: 260px;
    background-position: center bottom 20%;
  }
  .pop_ttl_gra{
    font-size: 20px;
  }
  .pop_flow_list li .ttl_box{
    padding-left: 0;
  }
  .pop_flow_list li .ttl_box .en{
    margin-right: 10px;
  }
  .pop_flow_list li .ttl_box p{
    font-size: 15px;
  }
  .pop_txt{
    font-size: 14px;
    letter-spacing: 0.05em;
    line-height: 2em;
  }
  .pop_btn a{
    padding: 14px 0;
    font-size: 12px;
  }
  .pop_btn_copy{
    font-size: 14px;
  }
  .pop_btn_copy span{
    font-size: 19px;
  }
  .pop_btn_copy .num{
    font-size: 25px;
  }
}
@media screen and (max-width: 600px){
  .popup_box{
    max-width: 91%;
  }
  .popup_box::before{
    height: 205px;
    margin-bottom: -205px;
  }
  .popup_box.pop03::before,
  .popup_box.pop05::before{
    height: 245px;
    margin-bottom: -245px;
  }
  .pop_cont_l::after{
    left: -12px;
    bottom: -25px;
    width: 80px;
    height: 90px;
  }
  .pop01 .pop_cont_l,
  .pop02 .pop_cont_l,
  .pop03 .pop_cont_l,
  .pop04 .pop_cont_l,
  .pop05 .pop_cont_l{
    padding: 10px 0 110px;
    background-size: 170px;
    background-position: center bottom 22%;
  }
}


/* ダウンロード */
.sec_download{
  padding-top: 117px;
  padding-bottom: 30px;
  background-color: #fff;
  background-image: url(../img/bg_illust_left.png), url(../img/bg_illust_right.png);
  background-position: top 65% left 20%, top 65% right 20%;
  background-repeat: no-repeat, no-repeat;
  background-size: 71px, 41px;
}
.sec_download::after{
  content: "";
  display: block;
  position: absolute;
  bottom: -84px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  border-style: solid;
  border-width: 85px 0 0 100vw;
  border-color: #fff transparent transparent transparent;
}
.download_ttl{
  position: relative;
  width: fit-content;
  margin: 5px auto 0;
  font-size: 16px;
  font-weight: 700;
  text-align: center;
  color: #3258c3;
  line-height: 1;
}
.download_ttl .num{
  font-size: 30px;
}
.download_ttl .second{
  font-size: 24px;
}
.download_ttl::before,
.download_ttl::after{
  content: "";
  display: block;
  position: absolute;
  bottom: -7px;
  width: 1px;
  height: 30px;
  background-color: #3258c3;
}
.download_ttl::before{
  left: -25px;
  transform: rotate(-50deg);
}
.download_ttl::after{
  right: -25px;
  transform: rotate(50deg);
}
.download_btn{
  position: relative;
  max-width: 600px;
  margin: auto;
}
.download_btn::after{
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  bottom: -3px;
  z-index: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #cbc100;
  border-radius: 300px;
  transition: .3s;
}
.download_btn a {
  position: relative;
  top: 0;
  z-index: 1;
  display: flex;
  justify-content: center;
  background-color: #fefb04;
  border: 2px solid #fefb04;
  max-width: 600px;
  margin: 30px auto;
  padding: 33px 0;
  border-radius: 200px;
  font-size: 27px;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1;
  color: #3258c3;
  transition: .3s;
}
.download_btn a::before{
  content: "";
  display: block;
  width: 36px;
  height: 33px;
  margin-right: 25px;
  background-image: url(../img/download.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.download_btn:hover a{
  top: 3px;
}
@media screen and (max-width: 1023px){
  .sec_download{
    background-position: top 65% left 10%, top 65% right 10%;
  }
  .download_btn{
    max-width: 450px;
  }
  .download_btn a{
    max-width: 450px;
    padding: 25px 0;
    font-size: 22px;
  }
  .download_btn a::before{
    width: 26px;
    height: 24px;
    margin-right: 10px;
  }
}
@media screen and (max-width: 768px){
  .sec_download{
    background-position: top 45% left 20%, top 45% right 20%;
    background-size: 40px, 25px;
  }
  .download_ttl{
    font-size: 14px;
  }
  .download_ttl .num{
    font-size: 27px;
  }
  .download_ttl .second{
    font-size: 20px;
  }
  .download_btn{
    max-width: 350px;
  }
  .download_btn a{
    max-width: 350px;
    padding: 20px 0;
    font-size: 18px;
  }
  .download_btn a::before{
    width: 22px;
    height: 20px;
    margin-right: 10px;
  }
}
@media screen and (max-width: 500px){
  .sec_download{
    background-position: top 45% left 10%, top 45% right 10%;
  }
  .download_btn a{
    font-size: 14px;
  }
  .download_btn a::before{
    width: 18px;
    height: 16px;
  }
}
@media screen and (max-width: 350px){
  .download_ttl::before,
  .download_ttl::after{
    content: none;
  }
}

/* ポイント */
.sec_point{
  overflow: hidden;
  padding-top: 123px;
  padding-bottom: 220px;
  background-color: transparent;
  background-image: url(../img/point_bg_fix.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
}
.point_inner{
  max-width: 1438px;
  margin: auto;
  padding: 0 80px;
}
.point_area{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 50px auto -20px;
  padding-left: 45px;
}
.point_area::after{
  content: "";
  position: absolute;
  right: -60px;
  bottom: -30px;
  width: 125px;
  height: 139px;
  background-image: url(../img/point_deco_r.png);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.point_area:nth-of-type(2n){
  padding-left: unset;
  padding-right: 45px;
}
.point_area:nth-of-type(2n)::after{
  right: unset;
  left: -60px;
  bottom: -30px;
  background-image: url(../img/point_deco_l.png);
}
.point_area:nth-of-type(1) .point_img{
  max-width: 100px;
  width: 100%;
  margin-right: 20px;
}
.point_area:nth-of-type(2) .point_img{
  max-width: 100px;
  width: 100%;
  margin-left: 20px;
}
.point_area:nth-of-type(3) .point_img{
  max-width: 100px;
  width: 100%;
  margin-right: 20px;
}
.point_area:nth-of-type(4) .point_img{
  max-width: 102px;
  width: 100%;
  margin-left: 20px;
}
/* スライドインアニメーション */
.slideInTrigger_l_num{
  position: relative;
  left: -50px;
  opacity: 0;
  transition-duration: .5s;
}
.slideInTrigger_l_txt{
  position: relative;
  right: -50px;
  opacity: 0;
  transition-delay: .3s;
  transition-duration: .5s;
}
.slideInTrigger_r_num{
  position: relative;
  right: -50px;
  opacity: 0;
  transition-duration: .5s;
}
.slideInTrigger_r_txt{
  position: relative;
  left: -50px;
  opacity: 0;
  transition-delay: .3s;
  transition-duration: .5s;
}
.slideInTrigger_l_num.slide_act{
  left: 0;
  opacity: 1;
}
.slideInTrigger_l_txt.slide_act{
  right: 0;
  opacity: 1;
}
.slideInTrigger_r_num.slide_act{
  right: 0;
  opacity: 1;
}
.slideInTrigger_r_txt.slide_act{
  left: 0;
  opacity: 1;
}

.point_content{
  display: flex;
  padding: 0 80px;
  padding-left: 32.5%;
  align-items: flex-start;
  background: rgba(255, 255, 255, 0.5);
  max-width: 945px;
  min-height: 400px;
  border-radius: 30px;
  background-repeat: no-repeat;
}
.point_area:nth-of-type(2n) .point_content{
  padding-left: 80px;
  padding-right: 32.5%;
}
.point_area:nth-of-type(1) .point_content{
  background-image: url(../img/point_ct01.png);
  background-position: center left 12%;
  background-size: 22%;
}
.point_area:nth-of-type(2) .point_content{
  background-image: url(../img/point_ct02.png);
  background-position: center right 14%;
  background-size: 18.5%;
}
.point_area:nth-of-type(3) .point_content{
  background-image: url(../img/point_ct03.png);
  background-position: center left 11%;
  background-size: 26%;
}
.point_area:nth-of-type(4) .point_content{
  background-image: url(../img/point_ct04.png);
  background-position: center right 11%;
  background-size: 24.5%;
}
.point_ct_txt_box {
  padding: 70px 0;
}
.point_area:nth-of-type(3) .point_ct_txt_box,
.point_area:nth-of-type(4) .point_ct_txt_box{
  padding: 50px 0;
}
.point_ct_ttl{
  margin-bottom: 22px;
  font-size: 30px;
  font-weight: 700;
  color: #31529c;
  letter-spacing: 0.04em;
  line-height: 1.6em;
}
.point_ct_txt{
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 2.2em;
}
.point_ct_txt span{
  font-weight: 700;
  background: linear-gradient(transparent 60%, #91f9e5 60%);
}

@media screen and (max-width: 1200px){
  .point_inner{
    padding: 0 60px;
  }
  .point_area{
    padding-left: 0;
  }
  .point_area:nth-of-type(2n) {
    padding-left: unset;
    padding-right: 0;
}
  .point_content{
    max-width: 900px;
    padding: 0 60px;
    padding-left: 28%;
  }
  .point_area:nth-of-type(2n) .point_content {
    padding-left: 60px;
    padding-right: 28%;
  }
  .point_area:nth-of-type(1) .point_content{
    background-position: center left 10%;
    background-size: 190px;
  }
  .point_area:nth-of-type(2) .point_content{
    background-position: center right 11%;
    background-size: 160px;
  }
  .point_area:nth-of-type(3) .point_content{
    background-position: center left 6%;
    background-size: 250px;
  }
  .point_area:nth-of-type(4) .point_content{
    background-position: center right 8%;
    background-size: 210px;
  }
}
@media screen and (max-width: 1023px){
  .sec_point{
    background-image: url(../img/point_bg_fix_sp.jpg);
    background-repeat: repeat-y;
    position: relative;
    background-attachment: unset;
  }
  .point_area{
    flex-direction: column;
    margin: 50px auto 70px;
  }
  .point_area::after{
    right: 0px;
    bottom: -80px;
    width: 100px;
    height: 109px;
  }
  .point_area:nth-of-type(2n)::after{
    left: 0px;
    bottom: -80px;
  }
  .point_area:nth-of-type(2n){
    flex-direction: column-reverse;
  }
  .slideInTrigger_l_txt,
  .slideInTrigger_r_txt{
    transition-delay: unset;
  }
  .point_content,
  .point_area:nth-of-type(2n) .point_content{
    align-items: center;
    padding: 0 20px;
    background-position: center top 10% !important;
  }
  .point_ct_txt_box,
  .point_area:nth-of-type(3) .point_ct_txt_box,
  .point_area:nth-of-type(4) .point_ct_txt_box{
    padding: 260px 0 30px;
  }
}
@media screen and (max-width: 768px){
  .sec_point{
    padding-bottom: 100px;
  }
  .point_area:nth-of-type(1) .point_img{
    margin-right: 0;
    max-width: 70px;
  }
  .point_area:nth-of-type(2) .point_img{
    margin-left: 0;
    max-width: 70px;
  }
  .point_area:nth-of-type(3) .point_img{
    margin-right: 0;
    max-width: 70px;
  }
  .point_area:nth-of-type(4) .point_img{
    margin-left: 0;
    max-width: 70px;
  }
  .point_ct_txt_box,
  .point_area:nth-of-type(3) .point_ct_txt_box,
  .point_area:nth-of-type(4) .point_ct_txt_box{
    padding: 220px 0 40px;
  }
  .point_area:nth-of-type(1) .point_content{
    background-size: 160px;
  }
  .point_area:nth-of-type(2) .point_content{
    background-size: 140px;
  }
  .point_area:nth-of-type(3) .point_content{
    background-size: 210px;
  }
  .point_area:nth-of-type(4) .point_content{
    background-size: 200px;
  }
  .point_ct_ttl{
    margin-bottom: 10px;
    font-size: 18px;
  }
  .point_ct_txt{
    font-size: 14px;
    letter-spacing: 0.05em;
    line-height: 2em;
  }
}


/* フォーム */
#form{
  margin-top: -100px;
  padding-top: 100px;
}
.sec_form{
  background-color: #fff;
  padding-top: 60px;
}
.sec_form::before{
  content: "";
  display: block;
  position: absolute;
  top: -85px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  border-style: solid;
  border-width: 0 0 85px 100vw;
  border-color: transparent transparent #fff transparent;
}
.sec_form::after{
  content: "";
  display: block;
  position: absolute;
  bottom: -85px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  border-style: solid;
  border-width: 85px 0 0 100vw;
  border-color: #fff transparent transparent transparent;
}
.form_inner {
  margin-bottom: 18px;
  padding: 20px 0;
  background-image: url(../img/bg_illust_left.png), url(../img/bg_illust_right.png);
  background-position: top 87% left 19%, top 92% right 19.5%;
  background-repeat: no-repeat, no-repeat;
  background-size: 71px, 41px;
}
.form_txt{
  position: relative;
  width: fit-content;
  margin: auto;
  font-size: 18px;
  font-weight: 700;
  color: #30529c;
  text-align: center;
  line-height: 1.9em;
  letter-spacing: 0.05em;
}
.form_txt::before,
.form_txt::after{
  content: "";
  display: block;
  position: absolute;
  bottom: -10px;
  width: 3px;
  height: 90px;
  background-color: #3258c3;
}
.form_txt::before{
  left: -55px;
  transform: rotate(-50deg);
}
.form_txt::after{
  right: -60px;
  transform: rotate(50deg);
}
.form_txt .form_copy{
  font-size: 30px;
  color: #479ac1;
  letter-spacing: 0.06em;
}
.form_txt .form_copy .num{
  font-size: 48px;
}
.form_intro {
  max-width: 570px;
  margin: 15px auto 0;
  letter-spacing: 0.05em;
  line-height: 2.2em;
  font-weight: 500;
}
@media screen and (max-width: 1200px) {
  .form_inner{
    background-position: top 87% left 5%, top 92% right 5%;
  }
}
@media screen and (max-width: 768px){
  .form_inner{
    background-position: top 14% left 5%, top 3% right 5%;
    background-size: 30px, 18px;
  }
  .form_txt{
    font-size: 15px; 
  }
  .form_txt .form_copy{
    font-size: 24px;
  } 
  .form_txt .form_copy .num{
    font-size: 35px;
  }
  .form_txt::before,
  .form_txt::after{
    width: 2px;
    height: 50px;
    bottom: 0;
  }
  .form_txt::before{
    left: -30px;
    transform: rotate(-50deg);
  }
  .form_txt::after{
    right: -30px;
    transform: rotate(50deg);
  }
  .form_intro{
    max-width: 500px;
    margin: 15px auto 0;
    font-size: 14px;
    letter-spacing: 0.05em;
    line-height: 2em;
  }
}
@media screen and (max-width: 600px){
  .form_inner{
    background-image: none;
  }
  .form_txt::before,
  .form_txt::after{
    content: none;
  }
}
@media screen and (max-width: 400px){
  .form_txt{
    font-size: 13px;
  }
}

/* メッセージ */
.sec_ms{
  padding-top: 140px;
  padding-bottom: 105px;
  background-color: #f4f8fe;
}
.sec_ms::after{
  content: "";
  display: block;
  position: absolute;
  bottom: -85px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  border-style: solid;
  border-width: 85px 100vw 0 0;
  border-color: #f4f8fe transparent transparent transparent;
}
.ms_content{
  position: relative;
  left: 35px;
  display: flex;
  justify-content: space-between;
  max-width: 910px;
  margin: 70px auto 0;
}
.ms_img{
  position: relative;
  z-index: 1;
  flex-shrink: 0;
  max-width: 280px;
}
.ms_img::before{
  content: "";
  display: block;
  position: absolute;
  top: 3px;
  left: -70px;
  z-index: -1;
  width: 137px;
  height: 123px;
  background-image: url(../img/ms_deco.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.ms_company{
  margin-top: 26px;
  font-size: 16px;
  font-weight: 700;
  color: #31529c;
  text-align: center;
  letter-spacing: 0.06em;
  line-height: .5;
}
.ms_name{
  margin-top: 10px;
  font-size: 16px;
  font-weight: 700;
  color: #31529c;
  text-align: center;
  letter-spacing: 0.06em;
  line-height: 1.5;
}
.ms_name span{
  font-size: 24px;
  line-height: 1.5;
}
.ms_txt{
  flex-shrink: 0;
  max-width: 520px;
  margin-top: -10px;
  letter-spacing: 0.05em;
  line-height: 2.25em;
  font-weight: 500;
}
@media screen and (max-width: 1200px) {
  .ms_content{
    max-width: 930px;
    padding: 0 20px;
  }
}
@media screen and (max-width: 1023px){
  .sec_ms{
    padding-bottom: 50px;
  }
  .ms_content{
    left: unset;
    flex-direction: column;
    align-items: center;
  }
  .ms_txt{
    margin-top: 20px;
  }
}
@media screen and (max-width: 768px){
  .sec_inner {
    padding: 0;
  }
  .ms_content{
    margin: 30px auto 0;
    padding: 0;
  }
  .ms_img{
    max-width: 230px;
  }
  .ms_img::before{
    left: -50px;
    z-index: -1;
    width: 117px;
    height: 106px;
  }
}
@media screen and (max-width: 600px){
  .sec_ms{
    padding-top: 90px;
    padding-bottom: 20px;
  }
  .ms_img{
    max-width: 200px;
    margin: auto;
  }
  .ms_txt{
    font-size: 14px;
    letter-spacing: 0.05em;
    line-height: 2em;
  }
}


/* ===================================
フッター
=================================== */
footer{
  position: relative;
  padding-top: 150px;
  padding-bottom: 110px;
  background-color: #3258c3;
}
.footer_inner{
  display: flex;
  justify-content: space-between;
  max-width: 1400px;
  margin: auto;
  padding: 0 100px;
}
.f_left{
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.f_right {
  flex-shrink: 0;
  max-width: 665px;
  width: 100%;
  margin-left: 30px;
}
.f_ttl{
  margin-top: -8px;
}
.f_ttl .en{
  display: block;
  font-size: 48px;
  font-weight: 700;
  color: #c4d2f9;
}
.f_ttl .ja{
  display: block;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
}
.copy_write{
  font-size: 13px;
  color: #c4d2f9;
  letter-spacing: 0.06em;
}

.f_list{
  font-size: 16px;
  color: #fff;
}
.f_list li{
  display: flex;
  margin-bottom: 30px;
  line-height: 1.9em;
}
.f_list li:last-of-type{
  margin-bottom: 0;
}
.f_list li .fl_ttl{
  display: block;
  width: 175px;
  font-weight: 700;
  color: #c4d2f9;
  letter-spacing: 0.04em;
}
.f_list li .fl_cont{
  display: block;
  max-width: 490px;
  width: 100%;
  margin-left: 5px;
  letter-spacing: 0.05em;
}
.f_list li .fl_cont .in_list{
  display: block;
  padding-left: 90px;
  font-size: 14px;
  letter-spacing: 0.04em;
  text-indent: -45px;
}
.f_list li .fl_cont .in_list::before{
  content: "主な取引先：";
  display: inline-block;
}

@media screen and (max-width: 1200px) {
  footer{
    padding-bottom: 30px;
  }
  .footer_inner{
    flex-direction: column;
    padding: 0 60px;
  }
  .f_right{
    max-width: 100%;
    margin-top: 40px;
    margin-left: 0;
  }
  .copy_write{
    text-align: center;
    margin-top: 50px;
  }
}
@media screen and (max-width: 768px){
  footer{
    margin-bottom: 70px;
  }
  .f_ttl .en{
    font-size: 30px;
  }
  .f_ttl .ja{
    font-size: 14px;
  }
  .footer_inner{
    padding: 0 20px;
  }
  .f_list li .fl_ttl{
    font-size: 14px;
  }
  .f_list li .fl_cont{
    font-size: 14px;
  }
  .f_list li .fl_cont .in_list{
    padding-left: 77px;
    font-size: 12px;
    text-indent: -40px;
  }
}
@media screen and (max-width: 600px){
  .f_list li{
    margin-bottom: 20px;
    flex-direction: column;
  }
  .f_list li .fl_cont{
    margin-left: 0;
  }
}

/* ===================================
PardotForm
=================================== */
.pdform {
   padding-top: 50px;
}
.formbox{
  height: 1350px;
  margin: 0 auto;
}
@media screen and (max-width: 850px) {
  .formbox{
    height: 1650px;
  }
}
@media screen and (max-width: 450px) {
  .formbox{
    height: 1700px;
  }
}
@media screen and (max-width: 410px) {
  .formbox{
    height: 1850px;
  }
}