html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
*{
  margin:0;
  padding:0;
  list-style: none;
  box-sizing: border-box;
}
html,body{
  font-family:"游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", 'Noto Sans JP';
  color:#111;
  font-size:10px;
  font-weight: normal;
  line-height: 1.5;
}
img{
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}
a,a:visited{
  text-decoration:none;
  color:#1977ec;
  transition: ease all .4s;
}
a:hover{
  color:#ec194a;
}

/*========================
*
*header
*
*========================*/
header{
    position: fixed;
    left: 0;
    top: 0;
    z-index: 2;
    width: 100%;
    padding: 10px 0;
    transition: ease all .4s;
}
header.active{
    background: #ffffffcf;
}
header .header_inner{
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1300px;
    padding: 0 20px;
    margin: 0 auto;
}
header .header_inner .menu{

}
header .header_inner .menu ol{
    display: flex;
    justify-content: flex-end;
    align-items: center;
}
header .header_inner .menu ol li{
    margin-right: 20px;
}
header .header_inner .menu ol li:last-child{
    margin-right: 0;
}
header .header_inner .menu ol li a{
    color: #111;
    font-weight: bold;
    font-size: 18px;
}
@media screen and (max-width:1320px){
    header .header_inner .menu ol li a{
        font-size: 16px;
    }
}
.mvsp{
    display: none;
}
@media screen and (max-width:1120px){
    header .header_inner .logo{
        max-width: 250px;
    }
    header .header_inner .menu ol li {
        margin-right: 10px;
    }
}
@media screen and (max-width:1024px){
    header .header_inner .menu ol li a {
        font-size: 14px;
    }
}
@media screen and (max-width:968px){
    .spmenu{
        display: block;
        width: 40px;
        height: 40px;
        position: fixed;
        z-index: 99;
        right: 20px;
    }
    .spmenu span{
        width: 100%;
        height: 3px;
        background: #000;
        display: block;
        margin: 8px auto;
        transition: ease all .4s;
        position: relative;
        top: 0;
    }
    .spmenu.active span:nth-child(1){
        transform: rotate(45deg);
        top: 16px;
    }
    .spmenu.active span:nth-child(2){
        pointer-events: none;
        opacity: 0;
    }
    .spmenu.active span:nth-child(3){
        transform: rotate(-45deg);
        top: -6px;
    }
    header .header_inner .menu{
        position: fixed;
        right: 0;
        top: 0;
        background: #fff;
        height: 100vh;
        z-index: 98;
        transition: ease all .4s;
        transform: translateX(100%);
        width: 65%;
    }
    header .header_inner .menu.active{
        transform: translateX(0);
    }
    header .header_inner .menu ol{
        display: block;
        padding: 60px 20px;
    }
    header .header_inner .menu ol li{
        margin: 0 auto;
    }
    header .header_inner .menu ol li a{
        display: block;
        padding: 15px 10px;
        border-bottom: 1px solid #eaeaea;
    }
    .modal_bg{
        display: block;
        position: fixed;
        left: 0;
        top: 0;
        background: #000;
        z-index: 2;
        opacity: 0;
        width: 100vw;
        height: 100vh;
        transition: ease all .4s;
        pointer-events: none;
    }
    .modal_bg.active{
        opacity: .3;
        pointer-events: all;
    }
}
@media screen and (max-width:568px){
    header .header_inner .logo{
        width: 160px;
    }
}

/*========================
*
*mv
*
*========================*/
.mv{
    display: block;
    overflow: hidden;
    position: relative;
    background: url(../img/mv_bg.jpg)no-repeat center top;
    padding-bottom: 20px;
}
.mv .mv_inner{
    display: block;
    max-width: 1300px;
    padding: 0 20px;
    margin: 0 auto;
    text-align: center;
    margin-top: 120px;
}
.mv .mv_inner .main{
    text-align: center;
    font-size: 70px;
    font-weight: bold;
    margin-top: 10px;
    transform: skew(-10deg);
    position: relative;
}
.mv .mv_inner .main .big{
    font-size: 80px;
}
.mv .mv_inner .main .under{
    position: relative;
}
.mv .mv_inner .main .under::before{
    content: '';
    background: #fff608;
    position: absolute;
    left: 0;
    bottom: 10px;
    width: calc(100% + 5px);
    height: 20px;
    z-index: -1;
}
.mv .mv_inner .main .orange{
    color: #ff7800;
}
.mv .mv_inner .image{
    display: flex;
    justify-content: center;
    align-items: flex-end;
    margin: 0 auto 20px;
}
.mv .mv_inner .image img:nth-child(2){
    margin: 0 60px;
}
.mv .mv_inner .image img:last-child{
    position: relative;
    top: 50px;
}
.mv .mv_inner .record{
    position: relative;
    background: #fff;
}
.mv .mv_inner .record .title{
    background: linear-gradient(to right,#0f7bce,#064575);
    color: #fff;
    text-align: center;
    padding: 10px;
    font-weight: bold;
    font-size: 35px;
    position: relative;
}
.mv .mv_inner .record .content{
    padding: 40px;
    text-align: center;
    color: #096dba;
    font-size: 26px;
    border-radius: 0 0 10px 10px;
    box-shadow: 0 0 15px 0 #00000024;
    font-weight: bold;
}
.mv .mv_inner .record  .content span{
    font-size: 36px;
}
@media screen and (max-width:1320px){
    .mv .mv_inner .main{
        font-size: 5vw;
    }
    .mv .mv_inner .main .big{
        font-size: 6vw;
    }
    .mv .mv_inner .record .content{
        font-size: 2.2vw;
        padding: 20px;
    }
    .mv .mv_inner .record .content span{
        font-size: 3vw;
    }
}
@media screen and (max-width:1024px){
    .mv .mv_inner .image{
        width: calc(100% - 40px);
    }
    .mv .mv_inner .image img:nth-child(1){
        max-width: 25%;
    }
    .mv .mv_inner .image img:nth-child(2){
        max-width: 15%;
    }
    .mv .mv_inner .image img:nth-child(3){
        max-width: 35%;
    }
    .mv .mv_inner .record .title{
        font-size: 3.5vw;
    }
}
@media screen and (max-width:768px){
    .mv{
        background-size: cover;
        padding-bottom: 40px;
    }
    .mvsp{
        display: inherit;
    }
    .mv .mv_inner .record .content{
        font-size: 16px;
    }
    .mv .mv_inner .record .content span {
        font-size: 20px;
    }
    .mv .mv_inner .comment{
        width: 260px;
        margin: auto;
    }
    .mv .mv_inner .main .under::before{
        bottom: 5px;
        height: 10px;
    }
}
@media screen and (max-width:568px){
    .mv .mv_inner{
        margin-top: 60px;
    }
    .mv .mv_inner .record .content {
        font-size: 12px;
    }
    .mv .mv_inner .record .content span {
        font-size: 14px;
    }
    .mv .mv_inner .main .under::before{
        bottom: 2px;
    }
    .mv .mv_inner .main .big {
        font-size: 6.2vw;
    }
    .mv .mv_inner .comment{
        width: 200px;
    }
    .mv .mv_inner .image{
        margin: 20px auto 10px;
    }
    .mv .mv_inner .image img:nth-child(1) {
        max-width: 30%;
    }
    .mv .mv_inner .image img:nth-child(2) {
        max-width: 20%;
        margin: 0 20px;
    }
    .mv .mv_inner .image img:nth-child(3) {
        max-width: 35%;
        top: 20px;
    }
}

/*========================
*
*company_case
*
*========================*/
.company_case{
    padding: 60px 0;
}
.company_case .splide ul{
    align-items: center;
}
.company_case .splide ul li{
    text-align: center;
}
@media screen and (max-width:768px){
    .company_case{
        padding: 40px 0;
    }
    .company_case .splide ul li.hsize{
        height: 60px;
    }
    .company_case .splide ul li.hsize img{
        height: 100%;
    }
}
@media screen and (max-width:568px){
    .company_case{
        padding: 20px 0 40px;
    }
}

/*========================
*
*cta
*
*========================*/
.cta{
    background: url(../img/cv_bg.png)no-repeat;
    background-size: cover;
    padding: 80px 0;
}
.cta .cta_inner{
    max-width: 1300px;
    padding: 0 20px;
    background: #fff;
    border-radius: 10px;
    margin: 0 auto;
    padding: 40px;
    padding-top: 70px;
    position: relative;
}
.cta .cta_inner::before{
    content: '';
    width: calc(100% - 80px);
    height: 5px;
    background: #024291;
    display: block;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 500px;
    top: 40px;
}
.cta .cta_inner h2{
    text-align: center;
    font-size: 40px;
    font-weight: bold;
    color: #065088;
}
.cta .cta_inner .text{
    font-size: 24px;
    color: #333;
    text-align: center;
    margin: 10px auto 35px;
}
.cta .cta_inner .btn{
    background: #f9fcff;
    border: 1px solid #f1f5f9;
    padding: 40px 100px;
}
.cta .cta_inner .btn .title_image{
    text-align: center;
}
.cta .cta_inner .btn ol{
    display: flex;
    justify-content: space-between;
    margin: 40px auto 0;
}
.cta .cta_inner .btn ol li{
    max-width: 420px;
    width: 100%;
}
.cta .cta_inner .btn ol li a{
    background: #096dba;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    color: #fff;
    text-align: center;
    padding: 20px;
    font-size: 30px;
    font-weight: bold;
    line-height: 1;
    border-radius: 500px;
    position: relative;
}
.cta .cta_inner .btn ol li a span{
    position: relative;
}
.cta .cta_inner .btn ol li a span::before{
    content: '';
    display: inline-block;
    background: url(../img/cv01.png)no-repeat;
    width: 34px;
    height: 34px;
    position: relative;
    top: 6px;
    margin-right: 10px;
}
.cta .cta_inner .btn ol li a:hover{
    opacity: .8;
}
.cta .cta_inner .btn ol li:nth-child(2) a{
    background: #ff7800;
}
.cta .cta_inner .btn ol li:nth-child(2) a span::before{
    content: '';
    background: url(../img/cv02.png)no-repeat;
    width: 48px;
}
@media screen and (max-width:1320px){
    .cta .cta_inner{
        width: calc(100% - 40px);
    }
    .cta .cta_inner h2{
        font-size: 3vw;
    }
    .cta .cta_inner .text{
        font-size: 2vw;
    }
    .cta .cta_inner .btn{
        padding: 40px;
    }
}
@media screen and (max-width:1120px){
    .cta .cta_inner .btn ol li{
        width: 45%;
    }
    .cta .cta_inner .btn ol li a{
        font-size: 24px;
    }
    .cta .cta_inner .btn ol li a span::before {
        content: '';
        display: inline-block;
        background: url(../img/cv01.png) no-repeat;
        width: 23px;
        height: 23px;
        background-size: contain;
        position: relative;
        top: 3px;
        margin-right: 10px;
    }
    .cta .cta_inner .btn ol li:nth-child(2) a span::before {
        content: '';
        background: url(../img/cv02.png) no-repeat;
        width: 29px;
        background-size: contain;
        height: 23px;
        top: 4px;
    }
}
@media screen and (max-width:768px){
    .cta .cta_inner h2 {
        font-size: 22px;
    }
    .cta .cta_inner .text {
        font-size: 18px;
    }
    .cta .cta_inner .btn .title_image {
        width: 200px;
        margin: 0 auto;
    }
    .cta .cta_inner .btn ol{
        margin-top: 20px;
    }
    .cta .cta_inner .btn {
        padding: 20px;
    }
    .cta .cta_inner .btn ol li {
        width: 48%;
    }
    .cta .cta_inner .btn ol li a {
        font-size: 18px;
    }
    .cta .cta_inner .btn ol li a span::before{
        width: 19px;
        height: 19px;
    }
    .cta .cta_inner .btn ol li:nth-child(2) a span::before {
        content: '';
        background: url(../img/cv02.png) no-repeat;
        width: 26px;
        background-size: contain;
        height: 18px;
        top: 4px;
    }
}
@media screen and (max-width:568px){
    .cta .cta_inner{
        padding: 20px;
        padding-top: 40px;
    }
    .cta .cta_inner::before{
        top: 20px;
    }
    .cta .cta_inner .text {
        font-size: 14px;
        margin: 10px auto 20px;
    }
    .cta .cta_inner .btn{
        padding-bottom: 0;
    }
    .cta .cta_inner .btn ol{
        display: block;
    }
    .cta .cta_inner .btn ol li{
        width: 100%;
        margin: 20px auto;
    }
}
/*========================
*
*common
*
*========================*/
.w126{
    padding: 0 20px;
    max-width: 1300px;
    width: 100%;
    margin: 0 auto;
}
h2.ttl{
    font-size: 60px;
    font-weight: bold;
    text-align: center;
    transform: skew(-10deg);
}
h2.ttl span{
    color: #096dba;
    position: relative;
    font-size: 70px;
}
h2.ttl br{
    display: none;
}
h2 span::before{
    content: '';
    display: block;
    background: url(../img/title_under.png) no-repeat;
    background-size: 100% 100%;
    position: absolute;
    left: 0;
    bottom: 5px;
    width: 102%;
    height: 30px;
    z-index: -1;
}
@media screen and (max-width:1320px){
    h2.ttl{
        font-size: 4vw;
    }
    h2.ttl span{
        font-size: 5vw;
    }
}
@media screen and (max-width:1260px){
    h2 span::before{
    bottom: 0;
    }
}
@media screen and (max-width:768px){
    h2.ttl{
        font-size: 4.2vw;
    }
    h2.ttl span{
        font-size: 5.2vw;
    }
    h2 span::before {
        bottom: -5px;
        width: 100%;
    }
}
@media screen and (max-width:568px){
    h2.ttl {
        font-size: 6.2vw;
    }
    h2.ttl span {
        font-size: 7.2vw;
    }
    h2 span::before{
        bottom: 0;
        height: 18px;
    }
    h2.ttl br{
        display: inherit;
    }
}


/*========================
*
*sec1
*
*========================*/
.sec1{
    padding: 80px 0;
    overflow: hidden;
}
.sec1 .sec1_flex{
    display: flex;
    flex-flow: row-reverse;
    justify-content: space-between;
    align-items: flex-end;
    margin: 60px auto;
}
.sec1 .sec1_flex .image{
    width: 40%;
    text-align: center;
}
.sec1 .sec1_flex .check_list{
    width: 60%;
}
.sec1 .sec1_flex .check_list ol{

}
.sec1 .sec1_flex .check_list ol li{
    border-bottom: 1px solid #ccc;
    padding: 20px 10px;
    padding-left: 60px;
    font-weight: bold;
    color: #333;
    font-size: 18px;
    font-weight: bold;
    position: relative;
}
.sec1 .sec1_flex .check_list ol li::before{
    content: '';
    display: block;
    background: url(../img/sec1_check.png) no-repeat;
    width: 18px;
    height: 18px;
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
}
@media screen and (max-width:1320px){
    .sec1 .sec1_flex .image{
        width: 30%;
    }
    .sec1 .sec1_flex .check_list{
        width: 69%;
    }
    .sec1 .sec1_flex .check_list ol li{
        font-size: 1.5vw;
        padding-left: 40px;
    }
    .sec1 .sec1_flex .check_list ol li::before{
        left: 10px;
    }
}
@media screen and (max-width:769px){
    .sec1{
        padding: 40px 0;
    }
    .sec1 .sec1_flex {
        flex-flow: column;
        margin: 20px auto;
    }
    .sec1 .sec1_flex .image {
        width: 30%;
        margin: 20px auto;
    }
    .sec1 .sec1_flex .check_list {
        width: 100%;
    }
    .sec1 .sec1_flex .check_list ol li {
        font-size: 16px;
        padding: 15px;
        padding-left: 40px;
    }
}
@media screen and (max-width:569px){
    .sec1 .sec1_flex .check_list ol li {
        font-size: 14px;
        padding: 10px;
        padding-left: 40px;
    }
}
/*========================
*
*sec2
*
*========================*/
.sec2{
    padding: 80px 0;
    overflow: hidden;
    background: #f4f9ff;
    position: relative;
}
.sec2 .image{
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -10px;
    max-width:1300px;
    width: 100%;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
}
.sec2 .inner{
    max-width: 1000px;
    padding: 0 20px;
    margin: 40px auto 0;
    background: #fff;
    border-radius: 10px;
    padding: 50px;
    position: relative;
    text-align: center;
}
.sec2 .inner::before{
    content: '';
    display: block;
    width: calc(100% - 20px);
    height: calc(100% - 20px);
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    border-radius: 10px;
    border: 2px solid #f4f9ff;
    pointer-events: none;
}
.sec2 .inner .title{
    font-size: 30px;
    font-weight: bold;
    color: #096dba;
}
.sec2 .inner .text{
    font-size: 18px;
    margin-top: 10px;
    color: #333;
    line-height: 1.8;
}
@media screen and (max-width:1320px){
    .sec2 .image img{
        height: 15vw;
    }
    .sec2 .inner .title{
        font-size: 2.5vw;
    }
    .sec2 .inner .text{
        font-size: 1.8vw;
    }
}
@media screen and (max-width:768px){
    .sec2{
        padding: 40px 0;
    }
    .sec2 .inner{
        padding: 40px 20px;
    }
    .sec2 .inner .title {
        font-size: 3vw;
    }
    .sec2 .inner .text {
        font-size: 14px;
    }
    .sec2 .inner .text br{
        display: none;
    }
}
@media screen and (max-width:568px){
    .sec2 .inner{
        margin: 20px auto 0;
    }
    .sec2 .inner .title {
        font-size: 18px;
    }
    .sec2 .inner .text {
        font-size: 12px;
    }
    .sec2 .image img {
        height: 20vw;
    }
}

/*========================
*
*sec3
*
*========================*/
.sec3{
    padding: 80px 0;
    overflow: hidden;
    position: relative;
    background: linear-gradient(#fff,#e8f5ff);
}
.sec3 .sec3_inner{
    display: flex;
    justify-content: space-between;
    flex-flow: row-reverse;
    margin: 150px auto 0;
}
.sec3 .sec3_inner.re{
    flex-flow: inherit;
}
.sec3 .sec3_inner .image{
    width: 50%;
    text-align: center;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}
.sec3 .sec3_inner .image .num{
    font-family: 'RobotoMono';
    color: #b1cee7;
    position: absolute;
    right: 0;
    bottom: 0;
    font-size: 84px;
    font-weight: bold;
    line-height: .7;
}
.sec3 .sec3_inner.re .image .num{
    left: 0;
    right: auto;
}
.sec3 .sec3_inner .text{
    width: 50%;
    padding: 0 20px;
}
.sec3 .sec3_inner .text h3{
    font-size: 45px;
    font-weight: bold;
    line-height: 1.3;
    color: #096dba;
    margin-bottom: 30px;
}
.sec3 .sec3_inner .text p{
    line-height: 2.2;
    font-size: 18px;
    font-weight: bold;
    color: #333;
}
@media screen and (max-width:1320px){
    .sec3 .sec3_inner .text h3{
        font-size: 3.2vw;
    }
    .sec3 .sec3_inner .text p{
        font-size: 1.5vw;
    }
}
@media screen and (max-width:968px){
    .sec3 .sec3_inner{
        margin: 60px  auto 0;
    }
    .sec3 .sec3_inner .image img{
        width: 60%;
    }
    .sec3 .sec3_inner .image .num{
        font-size: 64px;
    }
}
@media screen and (max-width:768px){
    .sec3{
        padding: 40px 0;
    }
    .sec3 .sec3_inner .image{
        width: 45%;
    }
    .sec3 .sec3_inner .text{
        width: 55%;
        padding: 0;
    }
    .sec3 .sec3_inner .text h3 {
        font-size: 20px;
        margin-bottom: 10px;
        line-height: 1.5;
    }
    .sec3 .sec3_inner .text p {
        font-size: 14px;
        line-height: 1.8;
        font-weight: normal;
    }
}
@media screen and (max-width:568px){
    .sec3 .sec3_inner{
        display: block;
    }
    .sec3 .sec3_inner .image{
        width: 100%;
    }
    .sec3 .sec3_inner .image img{
        width: 50%;
    }
    .sec3 .sec3_inner .image .num {
        font-size: 40px;
    }
    .sec3 .sec3_inner .text{
        width: 100%;
        margin-top: 20px;
    }
    .sec3 .sec3_inner .text h3 br{
        display: none;
    }
}

/*========================
*
*sec4
*
*========================*/
.sec4{
    padding: 80px 0;
    overflow: hidden;
    position: relative;
    background: #f1f9ff;
}
.sec4 ol{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin: 60px auto;
}
.sec4 ol li{
    width: 100%;
    max-width: 280px;
    margin: 20px 0;
    margin-right: 40px;
}
.sec4 ol li:nth-child(4n){
    margin-right: 0;
}
.sec4 ol li .image{
    width: 280px;
    height: 280px;
}
.sec4 ol li .text{
    color: #fff;
    font-size: 21px;
    text-align: center;
    background: #096dba;
    border-radius: 10px;
    padding: 20px 10px;
    position: relative;
    top: -40px;
    font-weight: bold;
}
@media screen and (max-width:1320px){
    .sec4 ol li{
        max-width: 20vw;
    }
    .sec4 ol li .image {
        width: 20vw;
        height: 20vw;
    }
    .sec4 ol li .text{
        font-size: 1.4vw;
    }
}
@media screen and (max-width:968px){
    .sec4 ol li{
        width: calc( 25% - 15px);
        margin-right: 20px;
    }
    .sec4 ol li:nth-child(4n){
        margin-right: 0;
    }
    .sec4 ol li .text{
        top: -25px;
        padding: 10px;
    }
}
@media screen and (max-width:768px){
    .sec4{
        padding: 40px 0;
    }
    .sec4 ol li{
        width: 48%;
        max-width: 48%;
        margin: 20px auto;
    }
    .sec4 ol li .text {
        font-size: 1.8vw;
        width: 70%;
        margin: 0 auto;
    }
    .sec4 ol li .image {
        width: 70%;
        height: auto;
        margin: 0 auto;
    }
}
@media screen and (max-width:568px){
    .sec4 ol{
        margin: 30px auto;
    }
    .sec4 ol li{
        margin: 10px auto;
    }
    .sec4 ol li .text {
        font-size: 12px;
        padding: 10px 5px;
        width: 100%;
    }
    .sec4 ol li .image {
        width: 80%;
        height: auto;
        margin: 0 auto;
    }
}

/*========================
*
*sec5
*
*========================*/
.sec5{
    padding: 80px 0;
    overflow: hidden;
    position: relative;
}
.sec5 ol{
    display: flex;
    justify-content: space-between;
    margin-top: 50px;
}
.sec5 ol li{
    width: 100%;
    max-width: 300px;
    height: 400px;
    margin-right: 20px;
    position: relative;
}
.sec5 ol li:nth-child(4n){
    margin-right: 0;
}
.sec5 ol li .image{
    position: relative;
    overflow: hidden;
    height: 100%;
}
.sec5 ol li .image img{
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    max-width: inherit;
}
.sec5 ol li .text{
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    color: #fff;
    padding: 10px;
    background: #096dba;
    text-align: center;
    font-size: 20px;
    font-weight: bold;
    box-shadow: 0 5px 15px 0 #00000030;
}
@media screen and (max-width:1320px){
    .sec5 ol li{
        height: 35vw;
    }
    .sec5 ol li .text{
        font-size: 2vw;
    }
}
@media screen and (max-width:768px){
    .sec5{
        padding: 40px 0;
    }
    .sec5 ol{
        margin-top: 40px;
    }
    .sec5 ol li{
        margin-right: 10px;
    }
    .sec5 ol li .image img{
        max-height: 130%;
    }
}
@media screen and (max-width:568px){
    .sec5 ol {
        margin-top: 20px;
        flex-wrap: wrap;
    }
    .sec5 ol li{
        width: 48%;
        margin: 10px 0;
        margin-right: 4%;
        height: 50vw;
    }
    .sec5 ol li:nth-child(2n){
        margin-right: 0;
    }
    .sec5 ol li .text {
        font-size: 14px;
    }
}

/*========================
*
*sec6
*
*========================*/
.sec6{
    padding: 80px 0;
    overflow: hidden;
    position: relative;
    background: url(../img/sec6_bg.png)no-repeat center top;
}
.sec6 ol{
    display: flex;
    justify-content: space-between;
    margin: 50px auto;
}
.sec6 ol li{
    width: 480px;
    background: #fff;
    border-radius: 10px;
    padding: 40px;
    box-shadow: 0 10px 10px 0 #00000014;
}
.sec6 ol li .title{
    font-size: 20px;
    font-weight: bold;
}
.sec6 ol li .image{
    height: 100px;
    margin: 20px auto;
    display: flex;
    justify-content: center;
    align-items: center;
}
.sec6 ol li .text{
    font-size: 16px;
    line-height: 2;
    color: #333;
}
.sec6 ol li .more{
    margin: 0 auto;
    text-align: center;
    margin-top: 40px;
}
.sec6 ol li .more span{
    color: #333;
    position: relative;
    font-size: 16px;
}
.sec6 ol li .more span::after{
    content: '';
    background: url(../img/sec6_link.png)no-repeat center;
    width: 5px;
    height: 10px;
    margin-left: 10px;
    display: inline-block;
    position: relative;
    top: -1px;
}
.sec6 ol li:hover{
    cursor: pointer;
}
.sec6 .case_modal_inner{
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    padding: 40px;
    width: 60vw;
    border-radius: 10px;
    z-index: 9;
    transition: ease all .4s;
    pointer-events: none;
    opacity: 0;
}
.sec6 .case_modal_inner.active{
    opacity: 1;
    pointer-events: all;
}
.sec6 .case_modal_inner .title{
    text-align: center;
    font-weight: bold;
    font-size: 26px;
}
.sec6 .case_modal_inner .image{
    height: 100px;
    margin: 20px auto;
    display: flex;
    justify-content: center;
    align-items: center;
}
.sec6 .case_modal_inner .image img{
    max-height: 100%;
}
.sec6 .case_modal_inner .text{
    font-size: 14px;
    line-height: 2;
    height: 30vh;
    overflow-y: scroll;
    padding: 20px;
    background: #fafafa;
}
.sec6 .case_modal_inner .text .case_modal_title{
    font-weight: bold;
    font-size: 18px;
    margin: 10px 0;
}
.sec6 .case_modal_inner .close{
    text-align: center;
    margin-top: 20px;
    font-size: 14px;
    text-decoration: underline;
}
.sec6 .case_modal_inner .close:hover{
    cursor: pointer;
}
.case_modal_bg{
    display: block;
    position: fixed;
    left: 0;
    top: 0;
    background: #000;
    z-index: 2;
    opacity: 0;
    width: 100vw;
    height: 100vh;
    transition: ease all .4s;
    pointer-events: none;
}
.case_modal_bg.active{
    opacity: .3;
    pointer-events: all;
}
@media screen and (max-width:1320px){
    .sec6 ol li{
        width: 45%;
        padding: 20px;
    }
    .sec6 ol li .text{
        line-height: 1.6;
    }
}
@media screen and (max-width:968px){
    .sec6 ol li .title{
        font-size: 18px;
    }
    .sec6 .case_modal_inner{
        width: 86vw;    
    }
    .sec6 .case_modal_inner .image{
        height: 80px;
    }
    .sec6 .case_modal_inner .text{
        height: 36vw;
    }
}
@media screen and (max-width:768px){
    .sec6{
        padding: 40px 0;
    }
    .sec6 ol li .image{
        height: 80px;
    }
    .sec6 ol li .text{
        font-size: 14px;
    }
    .sec6 ol li .more{
        margin-top: 20px;
    }
}
@media screen and (max-width:568px){
    .sec6 ol{
        margin: 20px auto;
        display: block;
    }
    .sec6 ol li{
        width: 100%;
        margin: 20px auto;
    }
    .sec6 ol li .image {
        height: 60px;
    }
    .sec6 ol li .image img{
        max-height: 100%;
    }
    .sec6 .case_modal_inner {
        width: 90vw;
        padding: 20px;
    }
    .sec6 .case_modal_inner .title{
        font-size: 20px;
    }
    .sec6 .case_modal_inner .image {
        height: 60px;
    }
    .sec6 .case_modal_inner .text {
        height: 80vw;
        font-size: 12px;
        line-height: 1.8;
    }
    .sec6 .case_modal_inner .text .case_modal_title{
        font-size: 16px;
    }
}

/*========================
*
*sec7
*
*========================*/
.sec7{
    padding: 80px 0;
    overflow: hidden;
    position: relative;
    background: #f4f9ff;
}
.sec7 .sec7_flow_inner{
    padding: 0 40px;
}
.sec7 ol{
    margin: 80px 0 60px;
    display: flex;
    justify-content: space-between;
    width: 100%;
}
.sec7 ol li{
    width: 11vw;
    max-width: 220px;
    position: relative;
    margin-right: 50px;
}
.sec7 ol li:last-child{
    margin-right: 0;
}
.sec7 ol li::after{
    content: '';
    display: block;
    width: 10px;
    height: 20px;
    position: absolute;
    right: -30px;
    top: 40%;
    transform: translateY(-50%);
    background: url(../img/flow_arrow.png)no-repeat center;
}
.sec7 ol li:last-child::after{
    content: none;
}
.sec7 ol li .step{
    position: absolute;
    left: 50%;
    top: 0;
    transform: translate(-50%,-65%);
    background: #096dba;
    color: #fff;
    font-weight: bold;
    text-align: center;
    border-radius: 50%;
    width: 80px;
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.sec7 ol li .step span{
    font-size: 40px;
    font-family: 'RobotoMono';
    display: block;
    line-height: .8;
}
.sec7 ol li .image{
    width: 11vw;
    height: 11vw;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #fff;
    border-radius: 50%;
    padding: 40px;
}
.sec7 ol li .text{
    position: relative;
    background: #096dba;
    color: #fff;
    text-align: center;
    font-weight: bold;
    font-size: 18px;
    padding: 10px;
    border-radius: 5px;
    line-height: 1;
    top: -30px;
}
.sec7 .bottom_text{
    text-align: center;
    font-size: 18px;
    line-height: 2;
    margin: 60px auto 0;
}
@media screen and (max-width:1520px){
    .sec7 .sec7_flow{
        overflow: hidden;
        width: calc(100% - 80px);
        margin: 0 auto;
    }
    .sec7 .sec7_flow_inner{
        overflow-x: scroll;
        padding: 0;
    }
    .sec7 ol li{
        width: 170px;
    }
    .sec7 ol li .image{
        width: 170px;
        height: 170px;
    }
    .sec7 ol{
        width: calc( ( 11vw * 7 ) + 50px );
    }
}
@media screen and (max-width:1320px){
    .sec7 .bottom_text{
        font-size: 1.8vw;
    }
}
@media screen and (max-width:968px){
    .sec7 .bottom_text{
        margin: 30px auto 0;
    }
}
@media screen and (max-width:768px){
    .sec7{
        padding: 40px 0;
    }
    .sec7 ol{
        margin: 80px 0 20px;
    }
    .sec7 .bottom_text {
        font-size: 14px;
    }
    .sec7 ol li .step{
        width: 60px;
        height: 60px;
    }
    .sec7 ol li .step span{
        font-size: 30px;
    }
    .sec7 ol li .image{
        width: 140px;
        height: 140px;
    }
    .sec7 ol li .image img{
        height: 100%;
        max-width: inherit;
    }
    .sec7 ol li .text{
        font-size: 14px;
    }
}
@media screen and (max-width:568px){
    .sec7 .sec7_flow{
        width: calc(100% - 40px);
    }
    .sec7 ol li{
        width: 110px;
        margin-right: 30px;
    }
    .sec7 ol li .step {
        width: 50px;
        height: 50px;
    }
    .sec7 ol li .step span {
        font-size: 20px;
    }
    .sec7 ol li .text {
        font-size: 12px;
        top: -20px;
        padding: 10px 5px;
    }
    .sec7 ol li .image {
        width: 110px;
        height: 110px;
        padding: 28px;
    }
    .sec7 ol li::after{
        right: -20px;
    }
    .sec7 .bottom_text{
        padding: 0 20px;
        line-height: 1.6;
    }
    .sec7 .bottom_text br{
        display: none;
    }
}

/*========================
*
*sec8
*
*========================*/
.sec8{
    padding: 80px 0;
    overflow: hidden;
    position: relative;
}
.sec8 ol li{
    margin: 30px auto;
}
.sec8 ol li .title{
    color: #fff;
    background: #096dba;
    padding: 20px 70px;
    font-size: 24px;
    font-weight: bold;
    line-height: 1;
    position: relative;
    transition: ease all .4s;
}
.sec8 ol li .title:hover{
    opacity: .9;
    cursor: pointer;
}
.sec8 ol li .title::before{
    content: 'Q';
    display: block;
    position: absolute;
    left: 40px;
    top: 50%;
    transform: translateY(-50%);
}
.sec8 ol li .title::after{
    content:'';
    display: block;
    width: 30px;
    height: 18px;
    background: url(../img/faq_arrow.png)no-repeat center;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    transition: ease all .4s;
}
.sec8 ol li .title.active::after{
    transform: translateY(-50%) rotate(180deg);
}
.sec8 ol li .ans{
    background: #fafafa;
    padding: 40px 70px;
    position: relative;
    font-size: 16px;
    color: #333;
    display: none;
}
.sec8 ol li .ans::before{
    content: 'A';
    display: block;
    position: absolute;
    left: 40px;
    top: 40px;
    color: #096dba;
    font-size: 30px;
    font-weight: bold;
}
.sec8 ol li .ans p{
    margin-top: 10px;
}
@media screen and (max-width:1320px){
    .sec8 ol li .title{
        font-size: 2.4vw;
    }
    .sec8 ol li .ans{
        padding: 20px 70px;
    }
    .sec8 ol li .ans::before{
        top: 20px;
    }
}
@media screen and (max-width:968px){
    .sec8 ol li .title::after{
        width: 20px;
        height: 12px;
        background-size: 100%;
    }
}
@media screen and (max-width:768px){
    .sec8{
        padding: 40px 0;
    }
    .sec8 ol li .title {
        font-size: 16px;
        padding-left: 40px;
    }
    .sec8 ol li .title::before{
        left: 20px;
    }
    .sec8 ol li .ans {
        padding: 20px 40px;
        font-size: 14px;
        padding-top: 15px;
    }
    .sec8 ol li .ans::before{
        left: 20px;
        font-size: 18px;
    }
}
@media screen and (max-width:568px){
    .sec8 ol li .ans{
        font-size: 12px;
        line-height: 1.8;
    }
}



/*========================
*
*footer
*
*========================*/
footer {
    width: 100%;
    clear: both;
}
footer .ad{
    position: fixed;
    right: 20px;
    bottom: 40px;
}
footer .pageTopFooter{
    position: fixed;
    right: 40px;
    bottom: 0;
}

#footer-body {
    background-color: #1962aa;
    width: 100%;
}

#footer-inner {
    max-width: 960px;
    margin: 0 auto;
    padding: 20px 0 10px;
}

#copyright {
    text-align: center;
    margin: 20px 0 10px 0;
}
#copyright li{
    font-size:12px;
}

footer nav {
    text-align: left;
}

footer ul {
    padding: 10px 20px 0 30px;
}

footer ul.home {
    background: url(../img/footer_kugiri.gif) left bottom no-repeat;
    padding: 0 20px 10px 30px;
}

footer ul li {
    display: inline-block;
    padding: 0 10px 0 0;
    line-height: 100%;
    font-size: 1.13em;
    color: #fff;
}
footer ul.menu02 li.footerMenuImg {
    margin-bottom: 12px
}

footer ul li img {
    margin-right: 20px
}

footer nav a:link {
    text-decoration: none;
    color: #fff
}

footer nav a:visited {
    text-decoration: none;
    color: #fff
}

footer nav a:hover {
    text-decoration: underline;
    color: #fff
}

footer nav a:active {
    text-decoration: underline;
    color: #fff
}
@media screen and (max-width:768px){
    footer .ad{
        width: 100px;
    }
    footer .pageTopFooter {
        right: 20px;
        width: 100px;
    }
}