@charset "utf-8";

.icatch{
    max-height: 410px;
    background: url(/images/top/bg_ptn_ielove.png);
    background-color: #4786d5;
    background-size: 600px;
    overflow: hidden;
}
.icatch > div{
    display: flex;
    justify-content: space-around;
    position: relative;
    align-items: center;
}
.icatch_circle{
    background-color: #fff;
    width: 480px;
    height: 488px;
    border-radius: 50%;
    margin: -20px auto -50px 0;
    padding: 90px 20px 0;
}
h1{
    font-size: 39px;
    text-align: center;
    margin-bottom: 10px;
}
h1 strong{
    font-size: 19px;
    font-weight: bold;
    color: #246ac1;
    display: block;
}
h1 strong::before, h1 strong::after{
    content: "";
    display: inline-block;
    width: 22px;
    height: 35px;
    background: url(/images/top/img_slash.png) no-repeat;
    background-size: contain;
    vertical-align: middle;
}
h1 strong::after{
    transform: scale(-1, 1);
}
.icatch_result{
    font-size: 22px;
    font-weight: bold;
    color: #fff600;
    text-align: center;
    background-color: #246ac1;
    max-width: 342px;
    width: 100%;
    margin: auto;
    padding: 8px 20px;
}
.icatch .btn{
    font-size: 24px;
    font-weight: bold;
    color: #e91e63;
    text-align: center;
    display: block;
    position: relative;
    max-width: 342px;
    width: 100%;
    margin: 10px auto 0;
    padding: 14px;
    border: 2px solid #e91e63;
    border-radius: 4px;
    box-shadow: 0px 2px 7px 0px rgba(0, 0, 0, 0.22);
    text-decoration: none;
}
.icatch .btn::after{
    position: absolute;
    font-family: "ielove-cloud";
    content: "\f0da";
    color: #e91e63;
    right: 25px;
}
.icatch .btn:hover{
    opacity: 0.7;
    box-shadow: 0px 4px 12px 0px rgba(0, 0, 0, 0.30);
    transition-duration: .2s;

}
.icatch dt{
    font-size: 18px;
    font-weight: bold;
    color: #fff;
    text-align: center;
    width: 100%;
    max-width: 336px;
    margin: 40px auto 20px;
    padding: 8px;
    border: 1px solid #fff;
    border-radius: 30px;
    background-color: rgba(36, 106, 193, 0.70);
}
.icatch dd{
    position: relative;
    text-align: center;
}
.play_btn span {
  background-color: #07bba0;
  border-radius: 50%;
  width: 67px;
  height: 67px;
  opacity: 0.8;
  display: block;
  cursor: pointer;
  position: absolute;
    top: 30%;
    left: 0;
    right: 0;
    margin: auto;
    box-shadow: 0px 3px 6px 0.8px rgba(8, 50, 100, 0.60);
    -webkit-transition: all .3s;
            transition: all .3s;
}
.play_btn span:after {
  display: block;
    content: "";
    border: 18px solid transparent;
    border-left: 30px solid #fff;
    margin-left: -10px;
    position: relative;
    top     : 17px;
    left    : 33px;
}
.play_btn span:hover {
  opacity: 0.75;
  transform: scale(1.1);
  transition-duration: 0.3s;
}
@media screen and (max-width: 768px){
    .icatch{
        max-height: none;
        padding: 0 0 50px;
    }
    .icatch > div{
        flex-direction: column;
    }
    .icatch_circle{
        width: 570px;
        height: 570px;
        margin: -50px auto 0;
        position: absolute;
        left: calc(50% - 285px);
        top: 0;
    }
    h1{
        font-size: 33px;
    }
    h1 strong{
        font-size: 16px;
        margin-bottom: 5px;
    }
    h1 strong::before, h1 strong::after{
        width: 15px;
        height: 20px;
    }
    .icatch_result, .icatch .btn{
        max-width: 70%;
    }
    .icatch dl{
        margin: 310px auto 0;
        position: relative;
    }
    .icatch dt{
        color: #246ac1;
        font-size: 20px;
        width: 85%;
        margin: auto;
        position: absolute;
        top: 40px;
        right: 0;
        left: 0;
        z-index: 1;
        background-color: rgba(255, 255, 255, 0.9);
    }
}
@media screen and (max-width: 480px){
    .icatch_circle {
        width: 400px;
        height: 400px;
        left: calc(50% - 200px);
        padding: 60px 20px 0;
        margin-top: -30px;
    }
    h1 {
        font-size: 28px;
    }
    .icatch_result {
        font-size: 15px;
    }
    .icatch .btn{
        font-size: 18px;
        padding: 10px;
    }
    .icatch dl{
        margin-top: 260px;
    }
    .icatch dt{
        font-size: 16px;
        top: 30px;
    }
    .play_btn span{
        width: 50px;
        height: 50px;
    }
    .play_btn span:after {
        border: 14px solid transparent;
        border-left: 20px solid #fff;
        margin-left: -7px;
        top: 12px;
        left: 25px;
    }
}

/* YOUTUBE */
.youtube {
  position: fixed;
  top     : 50%;
  left    : 50%;
  z-index : 10002;/* headerăŽz-indexă10000 */
  transform: translate(-50%,-50%);
  width: 800px;
  display: none;
}
.youtube iframe {
  max-width: 100%;
  height: 450px;
}
.youtube_close {
    position: absolute;
    top     : -50px;
    right   : -50px;
  z-index : 10003;
    font-size: 20px;
    color    : #fff;
  cursor: pointer;
    border : 3px solid #fff;
    border-radius: 50%;
    padding: 10px;
  display: none;
}
.overlay {
  position: fixed;
  top     : 0;
  left    : 0;
  z-index : 10001;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,.8);
  cursor: pointer;
  display: none;
}
@media screen and (max-width: 927px){
  .youtube {
    width: 90%;
  }
  .youtube iframe {
    height: 36vh;
  }
  .youtube_close {
    top  : -30px;
    right: -26px;
    padding: 5px;
  }
}
.allinone{
    padding: 60px 40px 70px;
}
/* h2,h3 */
h2, h3{
    text-align: center;
    font-weight: normal;
    font-size: 13px
}
h2 span, h3 span{
    font-size: 30px;
    font-weight: bold;
    display: block;
    margin-bottom: 10px;
}
.allinone h2{
    font-size: 30px;
}
.allinone ul{
    display: flex;
    justify-content: space-between;
    margin-top: 25px;
}
.allinone dl{
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.allinone dt a{
    display: block;
    border: 4px solid #246ac1;
    border-radius: 50%;
    box-shadow: 0px 3px 5.46px 0.54px rgba(8, 50, 102, 0.22);
    width: 100vw;
    height: 100vw;
    max-width: 312px;
    max-height: 312px;
    font-size: 18px;
    font-weight: bold;
    color: #246ac1;
    text-align: center;
    overflow: hidden;
}
.allinone dt a:hover{
    text-decoration: none;
    color: #fff;
    background-color: #246ac1;
    box-shadow: 0px 3px 14px 1px rgba(8, 50, 102, 0.22);
    transition-duration: .1s;
    mix-blend-mode: multiply;
    animation: hvr-wobble-vertical 1s ease-in-out;
}
.allinone dt a:hover strong{
    color: #fff;
}
.allinone dt a{
    background-repeat: no-repeat;
    background-position: center;
    background-size: 180px;
}
.allinone .chukai dt a{
    background-image: url(/images/top/img_chukai.png);
}
.allinone .kanri dt a{
    background-image: url(/images/top/img_kanri.png);
}
.allinone .hp dt a{
    background-image: url(/images/top/img_hp.png);
}
.allinone dt a strong{
    display: block;
    font-size: 22px;
    line-height:37px;
    font-weight: bold;
    color: #000;
    padding: 47px 0 136px;
}
.allinone dt a strong b{
    font-size: 30px;
    font-weight: inherit;
    color: inherit;
}
.allinone .hp dt a strong b{
    font-size: 27px;
    letter-spacing: -.05em;
}
.allinone dd{
    font-size: 15px;
    font-weight: bold;
    width: 90%;
    max-width: 262px;
    margin-top: 15px;
}
@media screen and (max-width: 768px){
    .allinone {
        padding: 60px 15px 70px;
    }
    h2 span, h3 span{
        font-size: 24px;
        margin-bottom: 6px;
    }
    .allinone h2{
        font-size: 24px;
    }
    .allinone ul{
        font-size: 18px;
        flex-direction: column;
        box-shadow: 0px 3px 5.46px 0.54px rgba(8, 50, 102, 0.22);
        border-radius: 12px;
    }
    .allinone ul dl{
        border: 4px solid #246ac1;
        border-bottom: 0;
        flex-direction: row;
        position: relative;
    }
    .allinone ul li:first-child > dl{
        border-radius: 12px 12px 0 0;
    }
    .allinone ul li:last-child > dl{
        border-radius: 0 0 12px 12px;
        border-bottom: 4px solid #246ac1;
    }
    .allinone ul dl:after{
        content: "";
        display: block;
        border-style: solid;
        border-color: transparent transparent transparent #246ac1;
        border-width:8px;
        position: absolute;
        right: 0;
    }
    .allinone ul dl:hover:after{
        border-color: transparent transparent transparent #fff;
    }
    .allinone dt {
        width: 100%;
    }
    .allinone dt a strong{
        padding: 15px 0 0;
        text-align: center;
    }
    .allinone dt a{
        font-size: 14px;
        text-align: center;
        border: none;
        box-shadow: none;
        max-width: none;
        max-height: none;
        width: 100%;
        height: auto;
        border-radius: 0;
        background-position: center left 20px;
        background-size: 140px;
        padding: 0 0 83px 160px;

    }
    .allinone dt a:hover{
         animation: none;
    }
    .allinone dd{
        position: absolute;
        right: 0;
        top: 77px;
        margin: 0 10px 0 0;
        font-size: 14px;
        width: calc(95% - 160px);
        padding: 0 20px 0 0;
        max-width: none;
        z-index: -1;
    }
}
@media screen and (max-width: 480px){
    .allinone{
        padding: 60px 15px;
    }
    .allinone ul dl, .allinone ul li:last-child > dl{
        border-width: 3px;
    }
    .allinone dt a{
        background-size: 104px;
        background-position: left 15px top calc(50% + 18px);
        padding: 0 0 calc( 220px - 30vw) 15px;
        line-height: 1.5;
    }
    .allinone dt a strong{
        font-size: 18px;
        line-height: 1;
    }
    .allinone dt a strong b,
    .allinone .hp dt a strong b{
        font-size: 23px;
    }
    .allinone dd {
        font-size: 13px;
        font-weight: normal;
        font-weight: 500;
        width: calc(100% - 137px);
        top: 67px;
    }
}
.feature{
    background-color: #246ac1;
}
.feature .container{
    background: url(/images/top/img_tool.png) no-repeat bottom -1px right;
    padding: 40px 40px 80px;

}
.feature h2{
    font-size: 36px;
    font-weight: bold;
    color: #fff;
    text-align: left;
    margin-bottom: 25px;
}
.feature p{
    color: #fff;
    max-width: 425px;
}
@media screen and (max-width: 768px){
    .feature{
        padding: 0;
    }
    .feature .container{
        padding-bottom: 200px;
        background-position: bottom -1px right 10%;
        background-size: 390px;
    }
    .feature h2{
        font-size: 24px;
    }
    .feature p{
        font-size: 14px;
    }
}
@media screen and (max-width: 480px){
    .feature .container{
        background-position: bottom -1px right -20px;
        background-size: 320px;
        padding: 40px 15px 170px;
    }
}
.pickup{
    background: #f5f7fa;
    padding: 40px 40px 50px;
}
.pickup > p{
    font-size: 17px;
    font-weight: bold;
    text-align: center;
    margin: 40px auto 20px;
}
.pickup dl a{
    display: block;
    border-radius: 8px;
    background: #fff;
    width: 224px;
    max-width: 100%;;
    padding: 10px 15px 15px;
    color: #000;
    text-decoration: none;
    box-sizing: border-box;
    border: 2px solid #fff;
}
.pickup dl a:hover{
    border: 2px solid #246ac1;
    opacity: .7;
    transition-duration: .1s;
}
.pickup dt{
    font-size: 17px;
    font-weight: bold;
    text-align: center;
    padding-top: 120px;
    background-position: center top 23px!important;
}
.pickup .portal dt{
    background: url(/images/service_list/img_portal.png) no-repeat;
}
.pickup .flyer dt{
    background: url(/images/service_list/img_flyer.png) no-repeat;
}
.pickup .hp dt{
    background: url(/images/service_list/img_hp.png) no-repeat;
}
.pickup .crm dt{
    background: url(/images/service_list/img_crm.png) no-repeat;
}
.pickup .leasing dt{
    background: url(/images/service_list/img_leasing_kanri.png) no-repeat;
}
.pickup .kanri dt{
    background: url(/images/service_list/img_kanri.png) no-repeat;
}
.pickup dd{
    font-size: 13px;
    text-align: center;
}
@media screen and (max-width: 480px){
    .pickup > p{
        margin: 20px auto 10px;
    }
    .pickup dt{
        padding-top: 95px;
        background-size: 100px!important;
        background-position: center top 17px!important;
    }
    .pickup .portal dt{
        background-size: 115px!important;
    }
}

.news{
    margin: 50px auto 40px;
}
.news ol{
    width: 100%;
    border-radius: 8px;
    background-color: #f5f7fa;
    padding: 10px 30px;
    margin: 30px auto 15px;
}
.news li{
    border-bottom: 1px solid #dfe4ec;
    padding: 15px 0;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}
.news li a{
    font-size: 14px;
    color: #000;
    text-decoration: underline;
}
.news li a:hover{
    text-decoration: none;
}
.news li:last-child{
    border-bottom: 0;
}
.news li span{
    font-size: inherit;
    font-weight: bold;
    margin-right: 15px;
}
.news > p a{
    display: block;
    font-size: 14px;
    width: 150px;
    max-width: 100%;
    padding: 5px 20px;
    margin: auto;
}
.knowhow{
    margin-bottom: 50px;
}
.knowhow ul{
    display: flex;
    justify-content: space-around;
}
.knowhow li{
    width: calc((100% - 14px) / 2);
    max-width: 475px;
    background-color: #f5f7fa;
    border-radius: 8px;
    overflow: hidden;
}
.knowhow .btn{
    width: 100%;
    font-size: 15px;
    padding: 11px;
    margin-top: 8px;
}
.blog dl{
    display: flex;
}
.blog dt{
    position: relative;
    width: 30%;
    background: no-repeat center center;
    background-size: cover;
    opacity: .8;
}
.blog dt::before{
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    background-color: rgba(36,106,193,0.5);
}
.blog dt img{
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    margin: auto;
}
.blog .date{
    font-size: 18px;
    font-weight: 600;
    display: block;
}
.blog .date::after{
    content: "NEW";
    font-size: 17px;
    color: #ff4381;
    padding-left: 5px;
}
.blog dd{
    width: 70%;
    padding: 20px 15px 15px;
    white-space: nowrap;
}
.blog dd b{
    display: block;
    font-size: 14px;
    font-weight: bold;
    text-overflow: ellipsis;
    overflow: hidden;
}
.document{
    background: url(/images/top/img_document.png) no-repeat center left 15px;
}
.document dl{
    width: 70%;
    float: right;
    padding: 20px 15px 15px;
}
.document dt{
    font-size: 20px;
    font-weight: bold;
    text-align: center;
}
.document dd{
    font-size: 14px;
    color: #798a9e;
    text-align: center;
}
@media screen and (max-width: 768px){
    .news li{
        white-space: normal;
        overflow: visible;
    }
    .news li span{
        display: block;
        margin: 0 0 6px;
    }
    .knowhow ul{
        flex-direction: column;
        align-items: center;
    }
    .knowhow li{
        width: 100%;
        max-width: none;
    }
    .blog{
        margin-bottom: 15px;
    }
    .document{
        background-position: center left 10%;
    }
}
@media screen and (max-width: 480px){
    .news ol{
        margin-top: 20px;
        padding: 5px 20px;
    }
    .blog dd{
        padding: 10px 15px;
    }
    .blog .date{
        font-size: 16px;
    }
    .blog .date::after{
        font-size: 16px;
    }
    .blog dd b{
        font-size: 12px;
    }
    .knowhow .btn{
        font-size: 14px;
        padding: 8px;
    }
    .document dl{
        padding: 10px 15px;
    }
    .document dt{
        font-size: 16px;
        margin: 0 -10px;
    }
    .document{
        background-position: center left 6%;
        background-size: 80px;
    }
}
.company{
    margin-bottom: 60px;
}
.company h2{
    font-size: 30px;
    font-weight: bold;
    color: #fff;
    text-align: center;
    background-color: #246ac1;
    padding: 40px 0;
}
.company .logo{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 20px auto 50px;
}
.company .logo li{
    max-width: 300px;
    width: calc(100% / 4);
    margin-top: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.company .logo li img{
    max-height: 42px;
}
.company > div{
    padding: 0 40px;
}
.company h3{
    margin-bottom: 20px;
}
.case a{
    border-radius: 8px;
    display: block;
    padding: 130px 0 0;
    overflow: hidden;
    text-decoration: none;
}
.detail01{
    background: url(/images/top/img_detail01.png) no-repeat;
    background-size: contain;
}
.detail03{
    background: url(/images/top/img_detail03.png) no-repeat;
    background-size: contain;
}
.detail04{
    background: url(/images/top/img_detail04.png) no-repeat;
    background-size: contain;
}
.detail08{
    background: url(/images/top/img_detail08.png) no-repeat;
    background-size: contain;
}
.case p{
    font-size: 15px;
    font-weight: bold;
    color: #000;
    background-color: #f5f7fa;
    padding: 10px;
    min-height: 85px;
}
.case span{
    display: block;
    font-size: 14px;
    color: #586474;
}
.case a:hover{
    opacity: .8;
    transition-duration: .1s;
}
.case a:hover p{
    color: #246ac1;
}

@media screen and (max-width: 768px){
    .company h2{
        font-size: 24px;
        padding: 30px 10px;
    }
    .company .logo li img{
        max-height: 28px;
    }
    .case p{
        font-size: 14px;
    }
    .case span{
        font-size: 12px;
    }
}
@media screen and (max-width: 480px){
    .company h2{
        font-size: 18px;
    }
    .company .logo li{
        width: calc(100% / 2)
    }
    .case li{
        height: 232px;
    }
    .case p{
        min-height: 101px;
    }
}

/*20191115 ASPIC追加*/
.aspic2019{
    position: absolute;
    bottom: 30px;
    right: -60px;
}
.aspic2019 a{
    display: block;
    border-radius: 50%;
    overflow: hidden;
    width: 140px;
    font-size: 0;
}
.aspic2019 a img{
    width: 100%;
}
.aspic2019 a:hover{
    transform: scale(1.03);
    transition-duration: .3s;
}

@media screen and (max-width: 768px){
    .aspic2019{
        bottom: 20px;
        right: -40px;
    }
}
@media screen and (max-width: 480px){
    .aspic2019{
        bottom: -5px;
        right: -10px;
    }
    .aspic2019 a{
        width: 130px;

    }
}
