@charset "utf-8";

/*----------------------------------------
  共通
----------------------------------------*/
html{
    font-size: 62.5%;
    overflow-x: hidden;
}
html * {
	box-sizing: border-box;
}
body {
    overflow-x: hidden;
    background: #fff;
    color: #424242;
    font-family: 'Noto Sans JP', serif;
    font-size: 1.6rem;
    font-weight: 400;
    line-height: 1.75;
}
.inner {
    max-width: 1000px;
    width: 92%;
    margin: 0 auto;
}
sup{
    font-size: 10px;
    font-size: 1rem;
}
a{
    display: block;
    transition: .3s;
    text-decoration: none;
	outline: none;
}
a, a:link, a:visited {
    color: #fff;
}
a:hover{
    text-decoration: none;
}
img {
	max-width: 100%;
	width: 100%;
}
section{
    padding: 3em 0;
}
/*----------------------------------------
  btn-o
----------------------------------------*/
.btn-o{
    background: linear-gradient(to right, #FF6E1F, #FFB300);
    color: #fff;
    border-radius: 74px;
    font-size: 2rem;
    font-weight: 700;
    box-shadow: 0 4px 32px rgb(66 66 66 / .2);
    max-width: 446px;
    width: 100%;
    margin: 0 auto;
    padding: 16px;
    text-align: center;
    border-top: 2px solid transparent;
    border-bottom: 2px solid transparent;
    border-left: 2px solid #FF6E1F;
    border-right: 2px solid #FFB300;
    transition: color .3s;
}
.btn-o:hover{
    background: #fff;
    color: #FF6E1F;
    border: 2px solid #FF6E1F;
}
.btn-o:hover span::after{
    border-top: 3px solid #FF6E1F;
    border-right: 3px solid #FF6E1F;
}
.btn-o span{
    padding-right: 20px;
    position: relative;
}
.btn-o span::after{
    position: absolute;
    content: '';
    width: 10px;
    height: 10px;
    border-top: 3px solid #fff;
    border-right: 3px solid #fff;
    right: 0;
    top: 50%;
    transform: rotate(45deg) translateY(-50%);
}
/*----------------------------------------
  btn-b
----------------------------------------*/
.btn-b{
    background: #212121;
    color: #fff;
    border-radius: 74px;
    font-size: 2rem;
    font-weight: 700;
    box-shadow: 0 4px 32px rgb(66 66 66 / .2);
    max-width: 446px;
    width: 100%;
    margin: 0 auto;
    padding: 18px;
    position: relative;
}
.btn-b:hover{
    background: #424242;
}
.btn-b span{
    padding-right: 20px;
    position: relative;
}
.btn-b span::after{
    position: absolute;
    content: '';
    width: 10px;
    height: 10px;
    border-top: 3px solid #fff;
    border-right: 3px solid #fff;
    right: 0;
    top: 50%;
    transform: rotate(45deg) translateY(-50%);
}
.btn-b img{
    position: absolute;
    width: 95px;
    height: 79px;
    top: -32px;
    left: -62px;
}
/*----------------------------------------
  secTtl
----------------------------------------*/
.secTtl{
    text-align: center;
    line-height: 1;
}
.secTtl .--en{
    color: #C8E9FF;
    font-size: 9.6rem;
    font-weight: 700;
}
.secTtl .--ja{
    font-size: 3.2rem;
    font-weight: 700;
    margin-top: -15px;
}
/*----------------------------------------
  common
----------------------------------------*/
.--line{
    border-bottom: 8px solid #FFB300;
    line-height: .75;
    display: inline-block;
}
.note{
    text-align: right;
    font-weight: 500;
    font-size: 1rem;
    line-height: 1.5;
}
/*----------------------------------------
  header
----------------------------------------*/
.header{
    padding: 12px 0;
    height: 60px;
}
.header-inner{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.header-left{
    display: flex;
    align-items: center;
}
.header-logo{
    margin-right: 20px;
}
.header-txt{
    font-size: 1.2rem;
    font-weight: 700;
}
.header-right .btn-o{
    font-size: 1.2rem;
    padding: 6px;
    width: 220px;
    height: 36px;
}

/*----------------------------------------
  mv
----------------------------------------*/
.mv{
    background: linear-gradient(to right, #51AEEC, #007FC3);
    height: 363px;
}
.mv-inner{
    display: flex;
    position: relative;
    z-index: 2;
}
.mv-inner::before{
    position: absolute;
    content: '';
    height: 363px;
    width: 1920px;
    background: url(../img/mv_bg.svg) no-repeat center center / 100%;
    background-size: auto;
    left: -467px;
    top: -3em;
    z-index: -1;
}
.mv-right{
    position: absolute;
    top: 0;
    right: -132px;
}
.mv-lead{
    color: #fff;
    font-size: 2.4rem;
    font-weight: 700;
}
.mv-lead img{
    width: 274px;
}
.mv-lead span{
    vertical-align: -webkit-baseline-middle;
    margin-left: 8px;
}
.mv-ttl{
    color: #fff;
    font-size: 4.8rem;
    font-weight: 700;
    line-height: 1.3;
}
.mv-list{
    display: flex;
    justify-content: space-between;
    margin-top: 28px;
}
.mv-list li{
    border: 1px solid #007FC3;
    border-radius: 4px;
    max-width: 181px;
    width: 33%;
    box-shadow: 5px 5px 0 #007FC3;
    padding: 9px 5px 9px 15px;

    color: #007FC3;
    background: #fff;
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 1.6;
}
.mv-body .btn-o{
    margin: 70px 0 0;
}
.mv-right-txt{
    text-align: center;
    color: #fff;
    font-size: 2rem;
    font-weight: 700;
}
.mv-img{
    width: 590px;
}
/*----------------------------------------
  reason
----------------------------------------*/
.reason{
    padding: 90px 0 250px;
}
.reason-ttl{
    text-align: center;
    font-size: 3.6rem;
    font-weight: 700;
}
.reason-ttl span{
    font-size: 6.4rem;
    color: #007FC3;
}
.reason-list{
    display: flex;
    justify-content: space-between;
    margin-top: 36px;
}
.reason-item{
    border: 1px solid #007FC3;
    border-radius: 4px;
    max-width: 314px;
    width: 33%;
    box-shadow: 8px 8px 0 #007FC3;
    padding: 24px 16px 24px 24px;
}
.reason-item:nth-child(1){
    background: url(../img/reason_img1.svg) no-repeat center left 16px / 51px;
}
.reason-item:nth-child(2){
    background: url(../img/reason_img2.svg) no-repeat center left 16px / 50px;
}
.reason-item:nth-child(3){
    background: url(../img/reason_img3.svg) no-repeat center left 12px / 55px;
}
.reason-item-txt{
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.6;
    padding-left: 52px;
}
/*----------------------------------------
  point
----------------------------------------*/
.point{
    background: #F0F9FF;
    position: relative;
}
#point01.point::before{
    position: absolute;
    content: '';
    top: 0;
    left: -168px;
    background: url(../img/elem2.svg) no-repeat center center / 100%;
    width: 336px;
    height: 336px;
}
#point01.point::after{
    position: absolute;
    content: '';
    bottom: 0;
    right: -60px;
    background: url(../img/elem5.svg) no-repeat center center / 100%;
    width: 320px;
    height: 299px;
}
#point02.point::before{
    position: absolute;
    content: '';
    top: 40px;
    left: -168px;
    background: url(../img/elem2.svg) no-repeat center center / 100%;
    width: 336px;
    height: 336px;
}
#point03.point::before{
    position: absolute;
    content: '';
    top: 0;
    left: -122px;
    background: url(../img/elem2.svg) no-repeat center center / 100%;
    width: 336px;
    height: 336px;
}
#point03.point::after{
    position: absolute;
    content: '';
    bottom: 80px;
    right: -167px;
    background: url(../img/elem2.svg) no-repeat center center / 100%;
    width: 336px;
    height: 336px;
}
.point-inner{
    max-width: 1240px;
    margin: 0 auto;
    width: 94%;
}
.point-head{
    border-radius: 30px;
    background: url(../img/point_bg.svg) no-repeat center center / 1240px;
    display: flex;
    min-height: 320px;
    padding: 60px 120px;
    position: relative;
    margin-top: -200px;
}
.point-head2{
    padding: 60px 60px;
}
.point-head-num{
    margin-right: 24px;
}
.point-head-ttl{
    color: #fff;
    font-size: 4.4rem;
    font-weight: 700;
    line-height: 1.8;
}
.point-head-ttl2{
    font-size: 4rem;
}
.point-head-icon{
    position: absolute;
    right: 90px;
    top: 60px;
}
.point-head-icon2{
    top: 72px;
    right: 50px;
}
.point-head-icon3{
    top: 72px;
}
.point-wrap{
    background: #fff;
    border-radius: 30px;
    padding: 32px;
    margin-top: -62px;
    position: relative;
    z-index: 2;
}
.point-ttl{
    text-align: center;
    font-size: 3.2rem;
    font-weight: 700;
    line-height: 1.5;
}
.point-ttl sup{
    font-size: 1.6rem;
    font-weight: 300;
    vertical-align: baseline;
}
.point-ttl .--blue{
    color: #007FC3;
}

/* cont */
.point-cont{
    display: flex;
    align-items: center;
    margin-top: 45px;
}
.point-cont-left{
    background: #F5F8F9;
    border-radius: 30px;
    text-align: center;
    padding: 15px 10px 22px 22px;
    max-width: 370px;
    width: 100%;
    flex-shrink: 0;
    margin-right: 56px;
}
.point-cont-left-ttl{
    display: inline-block;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 25px;
}
.point-cont-txt1{
    font-size: 2.6rem;
    font-weight: 700;
    line-height: 2;
    margin-bottom: 40px;
}
.point-cont-txt2{
    font-size: 2.4rem;
    font-weight: 500;
    line-height: 1.69;
}

/* cont2 */
.point-cont2{
    display: flex;
    margin: 32px 0 5px;
}
.point-cont2-left{
    margin-right: 24px;
    max-width: 50%;
}
.point-cont2-txt{
    font-size: 2.4rem;
    font-weight: 700;
    margin: 8px 0;
}
.point-cont2-list li{
    font-size: 2rem;
    font-weight: 700;
    padding-left: 32px;
    background: url(../img/icn_check.png) no-repeat center left / 20px;
    line-height: 2.3;
}

/* cont3 */
.point-cont3{
    display: flex;
    justify-content: space-between;
    margin-top: 32px;
}
.point-cont3-item{
    max-width: 460px;
    width: 49.5%;
    border-radius: 30px;
    overflow: hidden;
}
.point-cont3-item-head{
    text-align: center;
    color: #fff;
    background: #616161;
    padding: 21px 31px 16px;
}
.point-cont3-item2 .point-cont3-item-head{
    background: #007FC3;
}
.point-cont3-item-head .--ttl{
    font-size: 2.4rem;
    font-weight: 700;
}
.point-cont3-item-head .--txt{
    font-size: 1.6rem;
    font-weight: 700;
    margin: 11px 0 8px;
}
.point-cont3-item-head .--cat{
    font-size: 1.6rem;
    font-weight: 700;
    color: #616161;
    background: #fff;
    padding: 6px;
}
.point-cont3-item2 .point-cont3-item-head .--cat{
    color: #007FC3;
}
.point-cont3-item-img{
    background: #E0E0E0;
    padding: 12px 16px 40px;
}
.point-cont3-item-img img{
    display: block;
    max-width: 280px;
    width: 100%;
    margin: 0 auto;
}
.point-cont3-item-img2{
    background: #DDF1FF;
}
.point-cont3-item-img2 img{
    max-width: 353px;
    margin: 0 0 0 auto;
}

.point-elem{
    position: absolute;
    bottom: -35px;
    right: 0;
}
.point-catch{
    text-align: center;
    font-size: 3.2rem;
    font-weight: 700;
    margin: 80px 0 32px;
}
.point-catch span{
    color: #007FC3;
}
.point-txt{
    text-align: center;
    font-size: 2rem;
    font-weight: 500;
    margin-bottom: 16px;
}

/*----------------------------------------
  voice
----------------------------------------*/
.voice{
    background: #F0F9FF;
    position: relative;
    z-index: 2;
}
.voice::before{
    position: absolute;
    content: '';
    top: 0;
    left: -257px;
    background: url(../img/elem4.svg) no-repeat center center / 100%;
    width: 540px;
    height: 540px;
    z-index: -1;
}
.voice::after{
    position: absolute;
    content: '';
    bottom: -310px;
    right: -147px;
    background: url(../img/elem3.svg) no-repeat center center / 100%;
    width: 426px;
    height: 426px;
    z-index: -1;
}

.voice-list{
    display: flex;
    justify-content: space-between;
    margin-top: 42px;
}
.voice-item{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: #fff;
    max-width: 493px;
    width: 49%;
    padding: 32px;
    border-radius: 30px;
}
.voice-item-img{
    border-radius: 16px;
    overflow: hidden;
    margin: 0 0 32px;
}
.voice-item-ttl{
    color: #007FC3;
    font-size: 2.4rem;
    font-weight: 700;
    line-height: 1.5;
    margin: 0 0 16px;
}
.voice-item-txt{
    font-size: 1.4rem;
    line-height: 1.5;
    margin: 0 0 32px;
}
.voice-item-info{
    display: flex;
}
.info-left{
    width: 50%;
}
.info-right{
    width: 50%;
}
.info-left-txt{
    font-size: 1.4rem;
    line-height: 1.5;
}
.info-left .info-left-txt:nth-child(2){
    margin-top: 16px;
}
.info-left-txt2{
    color: #007FC3;
    font-size: 1.4rem;
    line-height: 1.5;
    font-weight: 700;
    margin-bottom: 4px;
}
.info-left-txt3{
    color: #007FC3;
    font-size: 1.4rem;
    line-height: 1.5;
    font-weight: 700;
    background: #DDF1FF;
    display: inline-block;
    border-radius: 32px;
    padding: 5px 16px;
}
/*----------------------------------------
  plan
----------------------------------------*/
.plan{
    background: #F0F9FF;
    position: relative;
}
.plan::after{
    position: absolute;
    content: '';
    bottom: -134px;
    left: -163px;
    background: url(../img/elem3.svg) no-repeat center center / 100%;
    width: 426px;
    height: 426px;
}
.plan-list{
    display: flex;
    justify-content: space-between;
    margin-top: 48px;
    position: relative;
    z-index: 3;
}
.plan-item{
    background: #fff;
    border-radius: 30px;
    overflow: hidden;
    max-width: 493px;
    width: 49%;
}
.plan-item-ttl{
    font-size: 2.4rem;
    font-weight: 700;
    text-align: center;
    background: #007FC3;
    color: #fff;
    padding: 40px;
}
.plan-item-body{
    padding: 32px 32px 26px;
}
.plan-item-head{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 46px;
    min-height: 104px;
}
.plan-item-head-ttl{
    font-size: 2.4rem;
    font-weight: 700;
    line-height: 1.5;
    text-align: center;
}
.plan-item-head-ttl .--s{
    font-size: 2rem;
}
.plan-item-img{
    margin-left: 13px;
}
.plan-item-img2{
    margin-left: 30px;
}
.plan-item-mh{
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 6px;
}
.plan-item-txt{
    font-size: 1.6rem;
    line-height: 1.5;
    margin-bottom: 30px;
}
.plan-item-sh{
    font-size: 1.6rem;
    line-height: 1.5;
    font-weight: 700;
    border-top: 1px solid #FFB300;
    padding-top: 16px;
}
.plan-item-info{
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 2;
    margin-top: 10px;
}
.plan-item-info li{
    padding-left: 32px;
    background: url(../img/icn_check.png) no-repeat center left / 20px;
}

/*----------------------------------------
  trial
----------------------------------------*/
.trial{
    text-align: center;
    color: #fff;
    padding: 28px 0 40px;
    position: relative;
    z-index: 3;
}
.trial.mb{
    margin-bottom: 200px;
}
.trial::before{
    position: absolute;
    content: '';
    left: 50%;
    transform: translateX(-50%);
    top: 0;
    background: url(../img/trial_bg.svg) no-repeat center center / 100%;
    background-size: cover;
    width: 100%;
    height: 311px;
}
.trial .inner{
    position: relative;
    z-index: 2;
}
.trial-catch{
    font-size: 4.8rem;
    font-weight: 700;
    letter-spacing: .05em;
    line-height: 1.55;
}
.trial-txt{
    font-size: 3.2rem;
    font-weight: 700;
    letter-spacing: .05em;
}
.trial-btn{
    margin-top: 42px;
}
.trial-img{
    position: absolute;
    bottom: -40px;
    right: -70px;
}

/*----------------------------------------
  table
----------------------------------------*/
.table{
    background: #F0F9FF;
    position: relative;
    z-index: 2;
}
.table::after{
    position: absolute;
    content: '';
    bottom: -173px;
    right: -147px;
    background: url(../img/elem3.svg) no-repeat center center / 100%;
    width: 426px;
    height: 426px;
    z-index: -1;
}
.table-img{
    margin-top: 32px;
}
/*----------------------------------------
  database
----------------------------------------*/
.database{
    background: #F0F9FF;
    position: relative;
    z-index: 2;
}
.database::before{
    position: absolute;
    content: '';
    top: -40px;
    left: -57px;
    background: url(../img/elem5.svg) no-repeat center center / 100%;
    width: 320px;
    height: 299px;
}
.database::after{
    position: absolute;
    content: '';
    bottom: -175px;
    right: -90px;
    background: url(../img/elem4.svg) no-repeat center center / 100%;
    width: 540px;
    height: 540px;
    z-index: -1;
}
.database-catch{
    text-align: center;
    font-size: 3.2rem;
    font-weight: 700;
    line-height: 1.8;
    margin-top: 48px;
    letter-spacing: .01em;
    position: relative;
    z-index: 2;
}
.database-catch::after{
    position: absolute;
    content: '';
    right: 44px;
    top: 0;
    background: url(../img/database_icon.png) no-repeat center center / 100%;
    width: 186px;
    height: 190px;
    z-index: -1;
}
.database-wrap{
    background: #fff;
    border-radius: 30px;
    padding: 32px 32px 100px;
    margin-top: 48px;
    position: relative;
    overflow: hidden;
}
.database-wrap::before{
    position: absolute;
    content: '';
    bottom: 0;
    left: 0;
    background: url(../img/database_img1.svg) no-repeat center center / 100%;
    width: 157px;
    height: 143px;
}
.database-wrap::after{
    position: absolute;
    content: '';
    bottom: 0;
    right: 0;
    background: url(../img/database_img2.svg) no-repeat center center / 100%;
    width: 173px;
    height: 143px;
}
.database-list{
    display: flex;
    margin-bottom: 20px;
}
.database-item{
    width: 50%;
}
.database-item-ttl{
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    color: #007FC3;
    border: 1px solid #007FC3;
    padding: 40px;
    cursor: pointer;
}
.database-item-ttl.is-active{
    background-color: #007FC3;
    color: #fff;
}
.database-item:nth-child(1) .database-item-ttl{
    border-radius: 10px 0 0 10px;
}
.database-item:nth-child(2) .database-item-ttl{
    border-radius: 0 10px 10px 0;
}
.database-wrapper-item{
    display: none;
}
.database-wrapper-item.is-show{
    display: block;
}
.database-content{
    display: flex;
    justify-content: space-between;
}
.database-cont{
    width: 50%;
    padding: 12px;
}
.database-item-img{
    margin-bottom: 16px;
}
.database-item-img1{
    margin-bottom: 62px;
}
.database-item-bottom{
    text-align: center;
    border: 1px solid #2997DA;
    border-radius: 4px;
    max-width: 395px;
    width: 100%;
    margin: 16px auto 0;
    padding: 13px 10px;
    min-height: 163px;
    box-shadow: 7px 7px 0 #2997DA;
}
.database-item-bottom .--txt{
    font-size: 2.4rem;
    font-weight: 700;
    line-height: 1.85;
}
.database-item-bottom .--txt2{
    line-height: 2;
    padding-top: 18px;
}
.database-item-bottom .--txt .--m{
    font-size: 3.2rem;
}
.database-item-bottom .--txt .--l{
    font-size: 4rem;
}
.database-item-bottom .--txt .--line{
    border-bottom: 8px solid #FFB300;
    display: inline-block;
}
/*----------------------------------------
  faq
----------------------------------------*/
.faq{
    background: #F0F9FF;
    position: relative;
    z-index: 2;
}
.faq::before{
    position: absolute;
    content: '';
    top: -152px;
    left: -143px;
    background: url(../img/elem3.svg) no-repeat center center / 100%;
    width: 426px;
    height: 426px;
    z-index: -1;
}
.faq::after{
    position: absolute;
    content: '';
    bottom: -16px;
    right: -83px;
    background: url(../img/elem5.svg) no-repeat center center / 100%;
    width: 320px;
    height: 299px;
    z-index: -1;
}
.faq-list{
    margin-top: 42px;
}
.faq-item{
    margin-bottom: 24px;
}
.faq-item-q{
    display: flex;
    background: #fff;
    border-radius: 16px;
    padding: 20px 16px;
}
.faq-item-a{
    display: flex;
    padding: 20px 16px;
}
.faq-item .--num{
    font-size: 2.4rem;
    font-weight: 700;
    line-height: 1;
    margin-right: 11px;
    color: #007FC3;
}
.faq-item .faq-item-a .--num{
    color: #FFB300;
}
.faq-item .--ttl{
    display: block;
    font-size: 1.6rem;
    font-weight: 700;
}
.faq-item .--txt{
    display: block;
    font-size: 1.4rem;
    margin-top: 11px;
}

/*----------------------------------------
  footer
----------------------------------------*/
.footer{
	background: #FF6E1F;
    padding: 18px;
    height: 54px;
}
.footer-copy{
    text-align: center;
    color: #fff;
    font-size: 1.2rem;
    font-weight: 700;
}



