/*--------------------------
         初期設定
--------------------------*/
*{
  text-size-adjust: 100%;
}
html{
    font-size:62.5%;/*-> 10px*/
    line-height: 1.8;
  }
  body{
    margin:0px;
    font-size: 14px;
    font-size:1.4em;/*-> 14px*/
    max-width:1920px;
  }
  a{
    font-size:1.8rem;
  }
  *{
    box-sizing: border-box;
  }
  @media screen and (max-width: 900px){
    html{
      font-size: 10px;
    }
    body{
      width: 100vw;
    }
  }
  /*--------------------------
           色・フォント
  --------------------------*/
  .bold{
    font-weight: bold;
  }
  .n-bold{
    font-weight:normal;
  }
  .blue{
    color:#172A88;
  }
  .b-blue{
    background-color: #172A88;
    color:white;
  }
  .b-glay{
    background-color: #E8E8E8;
  }
  .b-lglay{
    background-color: #F1F1F1;
  }
  .b-dglay{
    background-color: #E2E2E2;
  }
  .g-blue{
    background-color:#8F9EE8;
    color:white;
  }
  .b-o-blue{
    background-color: #172A88;
  }
  .white{
    color:white;
  }
  .b-dwhite{
    background-color: white;
  }
  .b-white{
    background-color: rgba(255,255,255,0.68);
  }
  .center{
    text-align:center;
  }
  .flex{
    display: flex;
    align-items: flex-start;
  }
  .m-flex{
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
  }
  .pc-none{
    display: none;
  }
  .t-pc-none{
    display: none;
  }
  .clear{
    clear: both;
    height:10px;
  }
  .left{
    text-align: left;
  }
  .cta-image{
    position: relative;
    left:20px;
    top: 1px;
  }
  .m-done{
    display: none;
  }
  @media screen and (max-width: 900px){
    .m-block{
      display: block;
    }
    .m-done{
      display: block;
    }
    .m-none{
      display: none;
    }
    .pc-none{
      display: inherit;
    }
  }
  /*--------------------------
          追従ソリッド 
  --------------------------*/
  .cta-scroll{
    position: fixed;
    top: 20px;
    right: 0px;
    text-align: center;
    box-shadow: 0px 0px 6px rgba(0,0,0,0.6);
    z-index: 1000000000;
  }
  .cta-scroll a{
    display: block;
    text-decoration: none;
    font-weight: bold;
    font-size: 14px;
  }
  .cta-scr{
    width: 120px;
    height: 120px;
    padding: 10px;
  }
  .cta-scr p{
    margin: 0px;
  }
  .cta-scroll img{
    width: 40px;
  }
  .cta-scr1{
    background-color: #FFA200;
    color: white;
  }
  .cta-scr2{
    background-color: white;
    color: #172A88;
  }
  /*--------------------------
          モバイル追従ソリッド 
  --------------------------*/
  @media screen and (max-width: 900px){
    .mcta-scroll{
      position: fixed;
      top: 0px;
      width: 100%;
      height: 60px;
      background-color: white;
      box-shadow: 0px 0px 6px rgba(0,0,0,0.6);
      display: flex;
      z-index: 50000;
    }
    .mcta-scroll a{
      display: block;
    }
    .mcta-logo img{
      width: 100px;
      position: relative;
      top: 20px;
      left: 20px;
    }
    .mcta-scr {
      padding: 10px;
    }
    .mcta-scr img{
      width: 30px;
      position: relative;
      top: 5px;
    }
    .mcta-scr3{
      background-color: #FFA200;
    }
    .mcta-scr1{
      margin-left: auto;
    }
  }
  /*--------------------------
          ctaボタン設定 
  --------------------------*/
  .btn-open {
    display: inline-block;
    width: 350px;
    height:50px;
    text-align: center;
    background-color: #FFA200;
    font-size: 16px;
    line-height: 52px;
    color: #FFF;
    text-decoration: none;
    font-weight: bold;
    border: 2px solid #FFA200;
    position: relative;
    overflow: hidden;
    z-index: 1;
  }
  .btn-open:after{
    width: 100%;
    height: 0;
    content:"";
    position: absolute;
    top: 50%;
    left: 50%;
    background : #FFF;
    opacity: 0;
    transform: translateX(-50%) translateY(-50%) rotate(45deg);
    transition: .2s;
    z-index: -1;
  }
  .btn-open:hover{
    color: #FFA200;
  }
  .btn-open:hover:after{
    height: 840%;
    opacity: 1;
  }
  /*--------------------------
           コンテンツ１
  --------------------------*/
  .fast-view{
    background-image: url(lp-fast.png);
    background-size: cover;
    height:700px;
    padding-top: calc(100vh/10);
    text-align: center;
    font-size:1em;
  }
  .header-logo{
    position: absolute;
    top: 20px;
    left: 20px;
  }
  .header-logo img{
    width: 200px;
  }
  .fast-view p{
    color:white;
    text-shadow: 0px 3px 1px rgba(0,0,0,0.5);
  }
  .fast-a{
    max-width:100%;
    margin:40px auto;
  }
  .fv-s{
    background-color: rgba(255,255,255,0.68);
    max-width:960px;
    width:80%;
    margin:0 auto;
    padding: 20px auto;
  }
  .fv-in{
    width:100%;
    padding: 30px 30px 20px;
  }
  .fv-s h1,.fv-s h2,.fv-s h3{
    display: block;
    margin:0 auto;
    line-height:2em;
  }
  .fv-s h1{
    font-size:4.0rem;
  }
  .fv-s h2{
    font-size:3.5rem;
  }
  .fv-s h3{
    font-size:3.0rem;
  }
  @media screen and (max-width: 900px){
    .fast-view{
      position: relative;
      z-index: 6000;
      height:auto;
      width:100%;
      padding-bottom: 50px;
    }
    .header-logo img{
      width: 100px;
    }
    .fv-s{
      width:100%;
      padding-top: 20px;
      padding-bottom: 20px;
    }
    .fast-a{
        width:70%;
        margin:30px auto;
        font-size:1.8rem;
    }
    .fast-view a{
        width:100%;
        font-size: 1.4rem;
    }
    .fast-view p > br{
      display: none;
    }
    .fast-view p{
      display:block;
      margin:20px;
    }
    .fv-s h1{
      font-size:3.0rem;
    }
    .fv-s h2{
      font-size:2.0rem;
    }
    .fv-s h3{
      font-size:1.8rem;
    }
    .fast-view p{
      font-size:1.4rem;
    }
  }
  
  /*--------------------------
           コンテンツ２-3
  --------------------------*/
  .title-border{
    border-top: 1px solid black;
    height: 10px;
    position: relative;
    top: 45px;
    width: 60%;
    margin: auto;
    z-index: 1;
  }
  .sec-c{
    padding: 50px 0px;
  }
  .sec-c h2{
    display: inline-block;
    background-color: #E8E8E8;
    position: relative;
    padding: 0px 10px 0px 10px;
    z-index: 1000000000;
  }
  .sec-out{
    justify-content: center;
  }
  .sec-out p{
    font-size: 18px;
  }
  .sec-out img{
    width: 250px;
    height: 250px;
    margin: 30px 50px;
  }
  .sec-in-5 img{
    width: 20px;
    height: 20px;
    margin: 5px 5px 0px;
  }
  @media screen and (max-width: 900px){
    .title-border{
      border-top: 1px solid black;
      height: 10px;
      position: relative;
      top: 45px;
      width: 100%;
      margin: auto;
      z-index: 1;
    }
    .sec-out{
      flex-wrap: wrap;
    }
    .sec-in{
      width: 90%;
      margin: auto;
    }
    .sec-in p{
      font-size: 16px;
      font-weight: bold;
      margin: 30px auto;
    }
    .sec-s{
      margin-left: 30px;
    }
  }
  /*--------------------------
           青いバー
  --------------------------*/
  .b-bar{
    padding: 30px;
  }
  .b-bar h4{
    margin:0em;
    font-size:2.4rem;
  }
  .b-bar h2{
    margin:0em;
    font-size:4.2rem;
  }
  .b-bar-tri{
    width: 0;
    height: 0;
    border-style: solid;
    margin:0 auto;
    border-color: #172A88 transparent transparent transparent;
  }
  .tri-50{
    border-width: 50px 50px 0 50px;
  }
  .tri-30{
    border-width: 20px 20px 0 20px;
    position: relative;
    top:-50px;
  }
  @media screen and (max-width: 900px){
    .b-bar h4{
      font-size: 1.8rem;
    }
    .b-bar h2{
      font-size: 2.4rem;
    }
    .b-glay{
      border:5px solid #E8E8E8;
    }
    .tri-50{
      position: relative;
      top: -15px;
    }
    .tri-30{
      top:-42px;
    }
  }
  /*--------------------------
           コンテンツ３
  --------------------------*/
  .thi-c{
    padding-bottom: 150px;
  }
  .thi-c h3{
    margin : 2em;
    font-size: 3.2rem;
  }
  .thi-c h2{
    font-size:3.6rem;
  }
  .thi-in h4{
    font-size:1.8rem;
  }
  .thi-out{
    max-width:1400px; 
    width:80%;
    margin: 0 auto;
    padding: 60px 0;
    justify-content: space-around;
  }
  .thi-in{
    width:30%;
    background-color: white;
    border-radius: 10px;
    box-shadow: 3px 3px 6px rgba(0,0,0,0.5);
  }
  .thi-in p{
    margin: 2em;
    line-height: 1.7em;
  }
  .thi-in img{
    height:100px;
    width: 100px;
  }
  .thi-bg {
    background: white;
    border-radius: 30px;
    width: 30%;
    margin: 40px auto;
}
.orange1{
  color:#F66161;
}
  .orange-tex h5{
    margin: 0px;
    padding-top: 60px;
    font-size: 2.4rem;
  }
  @media screen and (max-width: 900px){
    .thi-c{
      padding-bottom: 50px;
    }
    .thi-out{
      padding:0px;
      margin-bottom: 40px;
      width: 90%;
    }
    .thi-in{
      width:100%;
      margin:30px auto;
    }
    .thi-in p{
      line-height: 1.8;
      font-size:1.4rem;
    }
    .thi-c h2{
      width:100%;
      margin:30px auto;
      font-size: 2.4rem;
    }
    .thi-c h3{
      width:100%;
      margin:30px auto;
      font-size: 2.0rem;
    }
    .thi-in h4{
      font-size:2.0rem;
    }
    .thi-in img{
      height:150px;
      width:150px;
    }
    .thi-big{
      font-size:3.2rem;
    }
    .orange1{
      letter-spacing: 5px;
    }
    .thi-bg{
      width:40%;
    }
    .tex-space{
      line-height: 50px;
      font-size: 3.6rem;
    }
    .orange-tex h5{
      padding-top: 30px;
    }
  }
  /*--------------------------
           コンテンツ4
  --------------------------*/
  .fouc-c{
    padding-bottom:50px;
  }
  .fou-c h2{
    font-size: 3.6rem;
    margin-top: 0px;
    margin-bottom: 0px;
    position: relative;
    top:-30px;
  }
  .fou-c h3{
    font-size: 2.4rem;
  }
  .fou-t{
    margin :0 auto;
    display: block;
    width: 450px;
    padding: 30px 30px 20px;
    position: relative;
    top:-50px;
    border-radius:10px;
  }
  .fou-out{
    max-width:1400px;
    width:85%;
    margin: 0px auto;
    padding: 30px 0px;
    justify-content: space-around;
  }
  .fou-out img{
    width:48%;
    height: auto;
    box-shadow: 0px 0px 10px rgba(0,0,0,0.4);
    align-items: flex-start;
  }
  .fou-in{
    width:45%;
  }
  .fou-in h3{
    font-size: 2.4rem;
  }
  .point{
    padding:5px 10px;
    border-radius:5px;
    font-size:1.4rem;
  }
  .fou-out2 img{
    order:2;
  }
  .fou-in{
    order: 1;
  }
  .fou-in h3{
    margin:0px;
  }
  @media screen and (max-width: 900px){
    .fou-c{
      padding-bottom: 30px;
    }
    .fou-c h3{
      font-size: 1.4rem;
    }
    .fou-c h2{
      font-size: 2.0rem;
    }
    .fouc-c{
      padding-bottom: 30px;
    }
    .fou-out{
      padding:0px 0px 50px;
    }
    .fou-t{
      font-size:2.8rem;
      width:50%;
      top:-40px;
    }
    .fou-in{
      width:100%;
      order: 2;
    }
    .fou-in h3{
      font-size:2.0rem;
      padding: 2.5rem auto;
      margin:20px auto;
    }
    .fou-in p{
      letter-spacing: 3px;
      font-size: 1.4rem;
    }
    .fou-out img{
      width:100%;
      order: 3;
    }
  }
  /*--------------------------
           CTA
  --------------------------*/
  .cta{
    width:100%;
    background-image: url(lp-fast.png);
    padding-top: 100px;
    padding-bottom: 80px;
  }
  .cta h1{
    display: block;
    max-width:960px;
    width:80%;
    margin:20px auto;
    padding:20px 0px;
    font-size:300%;
  }
  @media screen and (max-width: 900px){
    .cta{
      padding-top: 30px;
      padding-bottom: 10px;
    }
    .cta h1{
      font-size: 2.4rem;
      width:100%;
    }
  }
  /*--------------------------
           コンテンツ５
  --------------------------*/
  .fiv-c{
    margin-top:100px;
  }
  .fiv-ca h1{
    line-height: 1.4;
  }
  .fiv-c h2{
    font-size: 4.6rem;
    margin-top: 0px;
  }
  .fiv-c h3{
    font-size: 2.4rem;
    margin-bottom: 0px;
  }
  .sp-f{
    color: #DEE1EE;
    font-size: 100px;
    font-weight: bold;
    letter-spacing: -5px;
    position: relative;
    top:-0px;
  }
  .tri-max{
    height: 0;
    width:0;
  border-style: solid;
  border-width: 50px  300px 0 300px;
  border-color: white transparent transparent transparent;
  position: relative;
  top:-70px;
  z-index: 100;
  }
  .fiv-card{
    padding: 100px 0px 86px;
    position: relative;
    top:-120px;
  }
  .fou-all{
    width: 100%;
    margin: auto;
  }
  .fiv-ca{
    background-color:white;
    width:90%;
    max-width: 900px;
    margin: 14px auto;
    border-radius: 21px;
    padding: 25px 45px 45px;
    box-shadow: 3px 3px 6px rgba(0,0,0,0.5);
  }
  .fiv-ca p{
    padding-left:4em;
    font-size:125%;
    letter-spacing: .03em;
  }
  .orange{
    color:#F66161;
    font-size: 7.0rem;
    letter-spacing: 30px;
  }
  @media screen and (max-width: 900px){
    .fiv-card{
      padding: 30px 0px;
    }
    .fiv-c{
      margin-top: 80px;
    }
    .fiv-c h2{
      font-size: 2.0rem;
    }
    .sp-f{
      font-size: 6.0rem;
      top:-25px;
    }
    .fiv-t h3{
      font-size: 1.6rem;
    }
    .tri-max{
      border-width: 50px  100px 0 100px;
    }
    .fiv-ca p{
      font-size:1.4rem;
      padding-left: 2em;
    }
    .fiv-all{
      width: 90%;
      margin: auto;
    }
    .fiv-ca{
      width:90%;
      padding: 20px 30px;
      margin:20px auto;
    }
    .fiv-ca h1{
      font-size:2.4rem;
    }
    .orange{
      font-size: 3.2rem;
      letter-spacing: 10px;
    }
  }
  /*--------------------------
           コンテンツ6
  --------------------------*/
  .six-c{
    padding-top: 100px;
    padding-bottom: 55px;
    position: relative;
    top:-120px;
  }
  .six-c h1{
    margin-bottom:60px;
    margin-top: 0px;
    font-size: 4.6rem;
  }
  .six-card-out{
    width:85%;
    max-width:1400px;
    margin:30px auto;
    justify-content: space-around;
  }
  .six-card-in{
    background-color: white;
    color:black;
    padding: 15px 10px;
    width:16%;
    border-radius: 3px;
    margin-bottom: 10px;
  }
  .six-card-in h3{
    font-size: 1.2rem;
    margin-bottom: 10px;
  }
  .six-card-in img{
    width:80px;
    height: 80px;
  }
  @media screen and (max-width: 900px){
    .six-c {
      padding-top:50px;
      padding-bottom: 50px;
    }
    .six-c h1{
      margin-bottom: 30px;
      font-size: 2.4rem;
    }
    .six-c h3{
      font-size: 1.6rem;
    }
    .six-card-in{
      width:45%;
    }
    .six-card-in img{
      width:50px;
      height: 50px;
    }
    .six-card-in h3{
      font-size:1.2rem;
    }
  }
  /*--------------------------
           コンテンツ7
  --------------------------*/
  .sev-c{
    position: relative;
    top: -20px;
  }
  .sev-c h3{
    margin: 0px;
  }
  .hikaku-out{
    width:85%;
    max-width: 1400px;
    margin: 30px auto;
    border-collapse: collapse;
    table-layout: fixed;
  }
  .sev-c h2{
    margin: 0px;
    font-size: 4.6rem;
  }
  th{
    font-size:2.4rem;
  }
  .hikaku{
    color: #172A88;
    font-size: 50px;
  }
  .ht{
    border:solid 2px #ABABAB;
    font-weight: bold;
    font-size:2.8rem;
  }
  .h-title{
    background-color: #172A88;
    border:solid 3px #172A88;
    border-top:20px solid #172A88; 
    color: white;
    padding: 15px;
  }
  .o-title{
    background-color:#98A8F5;
    color:white;
    padding: 15px;
    border-right:3px solid white;
  }
  .h-fix{
    border-right:solid 3px #172A88;
    border-left:solid 3px #172A88;
    padding: 20px;
    border-top:3px solid #F5F5F5;
  }
  .h-fix-b{
    border-bottom:solid 3px #172A88;
  }
  .h-st{
    border-bottom:3px solid #F5F5F5;
    border-right:3px solid #F5F5F5;
  }
  @media screen and (max-width: 900px){
    .sev-c{
      position: relative;
      top: -50px;
    }
    .sev-c h3{
      font-size: 1.6rem;
    }
    .sev-c h2{
      font-size: 2.4rem;
    }
    .sev-m-none{
      display: none;
    }
    .hikaku{
      font-size:40px;
    }
    .sev-m1{
      width:60%;
      float:left;
      table-layout: fixed;
    }
    .sev-m-out{
      width:95%;
      margin: auto;
    }
    .sev-m2{
      width:40%;
      overflow-x: scroll;
      float: right;
      table-layout: fixed;
      position: relative;
      top:20px;
    }
    .sev-m2-in{
      width:260px;
      table-layout: fixed;
      border-collapse: collapse;
    }
    .sev-m2-in > tbody{
      display: table-row-group;
    }
    .sev-m td{
      font-weight: bold;
      height: 150px;
    }
    .sev-m2-in > .hikaku{
      font-weight: normal;
    }
    .ht{
      font-size:1.4rem;
      width: 80px;
    }
    tbody{
      display: table;
      width:100%;
    }
    .h-fix{
      padding: 5px;
    }
    .h-title{
      font-size: 1.4rem;
      width:auto;
    }
    .o-title{
      font-size:1.4rem;
    }
  }
  /*--------------------------
           コンテンツ8
  --------------------------*/
  .eig-w{
    width:85%;
    margin:0 auto;
  }
  .eig-c{
    width:100%;
    max-width:1400px;
    margin: 0px auto 100px;
    border-radius: 15px;
    padding-top:30px;
    padding-bottom: 20px;
    box-shadow:3px 3px 6px rgba(0,0,0,0.5);
  }
  .eig-c p{
    letter-spacing: 5px;
    margin:10px 4em;
    font-size:1.5rem;
  }
  .eig-c h3{
    margin:10px 1.5em;
    font-size: 3.2rem;
  }
  .orange-s{
    color:#F66161;
  }
  .ten-c{
    padding: 0px 0px 50px;
    width: 80%;
    max-width: 960px;
    margin:100px auto 100px;
    padding: 40px 30px;
    border: solid #172A88;
  }
  .ten-h1{
    font-family: serif;
  }
  .ten-p{
    width:85%;
    margin:50px auto 0px;
    max-width: 960px;
    line-height: 2.4;
  }
  @media screen and (max-width: 900px){
    .eig-w{
      width: 90%;
      margin: auto;
      position: relative;
      top:-30px;
    }
    .eig-c{
      margin: 20px 0 50px;;
    }
    .eig-c h3{
      font-size: 2.0rem;
    }
    .eig-c p{
      margin: 30px;
    }
    .ten-c{
      width: 95%;
      padding: 20px 20px;
    }
    .ten-p{
      width: 100%;
    }
    .ten-c h1{
      font-size:1.8rem;
      font-family: serif;
    }
  }
  /*--------------------------
      　プライバシーポリシー
   --------------------------*/
   .pvp p{
     background-color: white;
     padding: 20px 30px;
     height: 150px;
     overflow: scroll;
   }
 /*--------------------------
           お問い合わせ
  --------------------------*/
  .f-container{
    width: 100%;
    padding-top: 80px;
    padding-bottom: 100px;
}
.f-title h2{
  margin-top: 0px;
  font-size:2.4rem;
}
.f-title img{
  width: 80%;
  max-width: 960px;
}
.form-con-in{
  width: 80%;
  max-width: 960px;
  margin: 30px auto 0px;
  padding: 30px;
  padding-bottom: 100px;
  background: white;
  box-shadow: 0px 0px 5px rgba(0,0,0,0.6);
}
.contact-tex{
    background-color: #F66161;
    color: white;
    border: solid 5px #F66161;
    border-radius: 10px;
    font-size: 14px;
}
.contact-blue{
background-color: #172A88;
color: white;
border: solid 5px #172A88;
border-radius: 10px;
font-size: 14px;
}
.label-title{
    margin: 20px auto;
    font-weight: bold;
    font-size:1.8rem;
}
.input-1{
    width:100%;
    height:40px;
}
textarea#body{
    width:100%;
    height: 160px;
}
.btn-primary{
    width:100%;
    background-color:#FFA200;
    font-weight: bold;
    color:white;
    border: solid 2px #FFA200;
    border-radius: 50px;
    line-height: 38px;
    margin: 30px auto;
    cursor: pointer;
    transition: 0.3s ease;
    -webkit-transition: 0.3s ease;
}
.btn-primary:hover{
    color: #FFA200;
    background-color:white;
}
@media screen and (max-width: 900px){
    .f-container{
        padding-top: 40px;
    }
    .f-title img{
      width: 90%;
    }
    .form-con-in{
        width: 90%;
      }
}
 /*--------------------------
           フッター
  --------------------------*/
  .footer-wrapper{
    background-color: black;
  }
  .ft-con{
    width: 80%;
    max-width: 960px;
    margin:auto;
    padding: 100px 0px;
    color: white;
  }
  .ft-con img{
    width: 150px;
  }