@charset "utf-8";
/* 共通 */
* {
    box-sizing: border-box;
    text-decoration: none;
    font-family: "Lucida Grande", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", Meiryo, メイリオ, sans-serif;
}
*:hover {
    transition-duration: .2s;
}
body {
    color: #222;
}
p {
    font-size: 16px;
    line-height: 1.5;
}
img {
    max-width: 100%;
}
.container {
    width: 1100px;
    margin-left: auto;
    margin-right: auto;
}
.container_fluid {
    width: 100%;
}
.btn {
    display: inline-block;
    font-weight: bold;
    text-align: center;
    border-radius: 4px;
}
.btn_kanri {
    color: #fff;
    background-color: #f94e4d;
}
.btn_kanri:hover {
    color: #fff;
    background-color: #f96160;
}
.btn_chukai {
    color: #2e6ace;
    background-color: #fff;
}
.btn_chukai:hover {
    color: #2e6ace;
    background-color: #ebf6ff;
}
.btn_kanri span {
    background: #e83130;
}
.btn_chukai span {
    background: #ebf6ff;
}
.btn_kanri:hover span {
    background: #ed4f4e;
    transition-duration: .2s;
}
.btn_chukai:hover span {
    background: #d0e5f6;
    transition-duration: .2s;
}
section {
    margin-bottom: 140px;
}
.scroll {
    margin-top: -140px;
    padding-top: 140px;
}
h2 {
    font-size: 36px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 60px;
}
h2 span {
    display: block;
    font-size: 20px;
    color: #525252;
    margin-bottom: 10px;
}
h3 {
    background: none;
    border: none;
    font-weight: bold;
    margin: 55px auto 20px;
    padding: 0;
    text-align: center;
    font-size: 20px;
    color: #525252;
}
.txt_pink {
    color: #f94e4d;
}

/* bnr_bottom */
#close {
    display: none;
}
.bnr_bottom {
    position: fixed;
    bottom: 0;
    right: 10px;
    z-index: 999;
    height: 215px;
    overflow: hidden;
    box-shadow: 0 1px 8px 0 rgba(0, 0, 0, 0.4);
    border-radius: 5px 5px 0 0;
    border: 2px solid #f94e4d;
    border-bottom: none;
    transition: .5s;
    transform: translateY(182px);
}
.is-active.bnr_bottom {
    transform: translateX(0);
}
#close:checked ~ .bnr_bottom {
    height: 33px;
    transition: .3s;
}
.bnr_bottom label::after {
    content: "×";
    cursor: pointer;
    position: absolute;
    right: 10px;
    font-size: 15px;
    transition: .5s;
}
#close:checked ~ .bnr_bottom label::after {
    content: "^";
    top: 8px;
    font-size: 18px;
    font-weight: normal;
    transition: .5s;
}
.bnr_bottom dt {
    background: #f94e4d;
    color: #fff;
    font-size: 17px;
    font-weight: bold;
    text-align: center;
    padding: 6px 15px 4px 0;
}
.bnr_bottom dt span {
    font-size: 13px;
}
.bnr_bottom dd a {
    background: -moz-linear-gradient(left, #4e84df, #3967b9);
    background: -webkit-linear-gradient(left, #4e84df, #3967b9);
    background: linear-gradient(to right, #4e84df, #3967b9);
    display: inline-block;
    padding: 10px;
}
.bnr_bottom dd a:hover > img {
    opacity: .8;
    transition: .2s;
}
#close:checked ~ .bnr_bottom dd img {
    margin-top: 0;
}

/* header */
header {
    opacity: 0;
    padding: 12px 0 10px;
    position: fixed;
    top: 0;
    background-color: #fff;
    box-shadow: 0 3px 4px 0px rgba(96, 125, 139, .15);
    width: 100%;
}
header.is-active {
    opacity: 1;
    z-index: 1000;
    transition: all 0.5s;
}
.header_inner {
    display: none;
    width: 1250px;
    margin-left: auto;
    margin-right: auto;
    justify-content: space-between;
    align-items: center;
}
header.is-active .header_inner {
    display: flex;
}
.header_logo {
    width: 126px;
    line-height: 1;
}
.header_navi {
    display: flex;
}
.header_navi a {
    color: #525252;
    font-size: 16px;
    font-weight: bold;
    text-align: center;
    margin: 0 20px;
    display: block;
}
.header_navi a:hover {
    color: #2e6ace;
}
.header_navi a span {
    display: block;
    font-size: 13px;
}
.header_cta {
    display: flex;
    align-items: center;
}
.header_tel {
    display: flex;
    flex-direction: column;
    font-weight: bold;
    line-height: 1.2;
}
.header_tel span {
    font-size: 13px;
    color: #525252;
}
.header_tel b {
    font-size: 20px;
}
.header_tel b::before {
    content: url(/images/ielovebb/introduction/icn_phone.png);
    margin-right: 3px;
}
.header_cta .btn {
    width: 185px;
    padding: 8px 0;
    font-size: 14px;
    box-shadow: 0 2px 5px 0 rgba(104, 104, 104, .3);
}
.header_cta .btn span {
    font-size: 12px;
    border-radius: 12px;
    padding: 3px 8px 1px;
    margin-right: 5px;
}
.header_cta .btn_kanri {
    background: #fff;
    color: #f94e4d;
    border: 1px solid #f94e4d;
    margin: 0 10px;
}
.header_cta .btn_kanri span {
    background: #fbf0f0;
}
.header_cta .btn_kanri:hover {
    background: #fbf0f0;
}
.header_cta .btn_kanri:hover span {
    background: #ffd9d9;
}

.header_cta .btn_chukai {
    border: 1px solid #2e6ace;
}
/* icatch */
.icatch {
    position: relative;
    padding: 106px 0 0 0;
    height: 637px;
    background: url(/images/ielovebb/introduction/bg_icatch.png) no-repeat;
    background-position: center;
    background-size: 2100px;
    margin-bottom:  50px;
}
.icatch_header_cta {
    width: 1250px;
    margin: auto;
    position: absolute;
    top: 20px;
    right: 0;
    left: 0;
    justify-content: right;
}
.icatch_header_cta .btn {
    width: 130px;
    padding: 8px 0;
    font-size: 14px;
    box-shadow: 0 2px 12px 0 rgba(68, 68, 68, 0.4);
    display: flex;
    justify-content: center;
    align-items: center;
    line-height: 1;
    border-radius: 3px;
}
.icatch_header_cta .btn span {
    font-size: 12px;
    border-radius: 12px;
    padding: 3px 7px 1px;
    margin-right: 4px;
}
.icatch_header_cta .btn_kanri {
    background-color: #fff;
    color: #f94e4d;
}
.icatch_header_cta .btn_kanri span {
    background: #fbf0f0;
}
.icatch_header_cta .btn_kanri:hover {
    background: #fbf0f0;
}
.icatch_header_cta .btn_kanri:hover span {
    background: #ffd9d9;
}
.icatch_txt {
    color: #fff;
    font-size: 20px;
    font-weight: bold;
    margin: 20px 0 30px;
}
.icatch_txt b {
    font-size: 26px;
}
.icatch ul {
    display: flex;
}
.icatch li:first-child {
    margin-right: 10px;
}
.icatch_cta .btn {
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 2px 12px 0 rgba(68, 68, 68, 0.4);
    width: 242px;
    font-size: 17px;
    line-height: 1;
    padding: 15px 10px 12px;
}
.icatch_cta .btn span {
    font-size: 14px;
    border-radius: 12px;
    padding: 5px 8px 3px;
    margin-right: 7px;
}

/* performance */
.performance {
    overflow: hidden;
}
.performance h2 {
    font-size: 18px;
    margin-bottom: 0;
}
.performance_logo {
    animation: loop 30s linear infinite;
    background: url(/images/ielovebb/introduction/logo_line.png) repeat-x 50%;
    background-size: contain;
    width: 5330px;
    height: 52px;
    margin: 20px auto;
}
@keyframes loop {
     0% {
         background-position: 0 0;
     }
     100% {
         background-position: -5330px 0;
     }
 }

/* movie */
.movie {
    display: flex;
    justify-content: space-around;
    align-items: center;
    background: #ebf6ff;
    width: 920px;
    margin-right: auto;
    margin-left: auto;
    padding: 30px;
    border-radius: 6px;
}
.movie_txt {
    text-align: center;
}
.movie_txt h2 span {
    margin-bottom: 0;
}
.movie_txt h2 {
    font-size: 30px;
    margin-bottom: 15px;
}
.movie_txt b {
    display: block;
    margin-top: 5px;
}
.movie_player {
    width: 350px;
    height: 210px;
}
.movie_player iframe {
    width: 100%;
    height: 100%;
}
/* summary */
.summary {
    height: 500px;
    position: relative;
}
.summary::after {
    content: "";
    position: absolute;
    display: block;
    width: 675px;
    height: 555px;
    top: 0;
    right: -100px;
    background: url(/images/ielovebb/introduction/bg_summary.png) no-repeat;
    background-size: contain;
}
.summary h2 {
    text-align: left;
}
.summary p {
    margin: 20px auto 60px;
}
.summary ul {
    display: flex;
}
.summary a {
    display: block;
    width: 180px;
    height: 180px;
    background-color: #fff;
    background-image: url(/images/ielovebb/introduction/btn_summary.png);
    background-position: center bottom;
    background-repeat: no-repeat;
    border: 2px solid #2e6ace;
    border-radius: 50%;
    box-shadow: 0 3px 10px 0 rgba(104, 104, 104, 0.4);
    padding: 30px 5px;
    margin-right: 20px;
    color: #2e6ace;
    font-size: 18px;
    font-weight: bold;
    text-align: center;
}
.summary a span {
    display: block;
    color: #525252;
    font-size: 13px;
    font-weight: bold;
    padding-bottom: 10px;
}
.summary a:hover {
    animation: hvr-wobble-vertical 1s ease-in-out 1;
}
@keyframes hvr-wobble-vertical {
    0% { transform: translateY(0);}
    16.65% { transform: translateY(8px);}
    33.3% { transform: translateY(-6px);}
    49.95% { transform:translateY(4px);}
    66.6% { transform: translateY(-2px);}
    83.25% { transform: translateY(1px);}
    100% { transform: translateY(0);}
}
/* free */
.free {
    text-align: center;
}
.free h2 {
    font-size: 30px;
    margin-bottom: 25px;
}
.free h2 b {
    color: #2e6ace;
}
.free h2::before,
.free h2::after {
    content: "";
    display: inline-block;
    width: 27px;
    height: 39px;
    background: url(/images/ielovebb/introduction/icn_slash.png) no-repeat;
    background-size: contain;
    vertical-align: middle;
    margin: 0 15px;
}
.free h2::after {
    transform: scale(-1, 1);
}
.btn_try {
    width: 300px;
    font-size: 20px;
    padding: 18px 0 15px;
    box-shadow: 0px 3px 10px 0px rgba(104, 104, 104, 0.4);
}
.free .btn_try {
    margin-top: 35px;
}
/* reason */
.reason_inner {
    display: flex;
    justify-content: space-between;
}
.reason ul {
    display: flex;
    margin-top: 10px;
}
.reason li {
    margin-right: 10px;
    width: 71px;
}
.service_list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    width: 900px;
    margin: auto;
}
.service_list dl {
    border-radius: 3px;
    box-shadow: 0px 3px 10px 0px rgba(104, 104, 104, 0.4);
    width: 227px;
    height: 102px;
    margin: 0 15px 15px 0;
    padding-left: 20px;
    background-color: #fff;
    background-repeat: no-repeat;
    background-position: right 5px center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    cursor: pointer;
}
.service_list dl.stakeholder { background-image: url(/images/ielovebb/introduction/icn_service_stakeholder.png);}
.service_list dl.leasing { background-image: url(/images/ielovebb/introduction/icn_service_leasing.png);}
.service_list dl.reserve { background-image: url(/images/ielovebb/introduction/icn_service_reserve.png);}
.service_list dl.application { background-image: url(/images/ielovebb/introduction/icn_service_application.png);}
.service_list dl.hoshou { background-image: url(/images/ielovebb/introduction/icn_service_hoshou.png);}
.service_list dl.sign { background-image: url(/images/ielovebb/introduction/icn_service_sign.png);}
.service_list dl.lifeline { background-image: url(/images/ielovebb/introduction/icn_service_lifeline.png);}
.service_list dl.b2b { background-image: url(/images/ielovebb/introduction/icn_service_b2b.png);}
.service_list dl.ivr { background-image: url(/images/ielovebb/introduction/icn_service_ivr.png);}
.service_list dl.analysis { background-image: url(/images/ielovebb/introduction/icn_service_analysis.png);}
.service_list dl.kanri { background-image: url(/images/ielovebb/introduction/icn_service_kanri.png);}
.service_list dl:hover {
    background-color: #ebf6ff;
}
.service_list dt {
    font-size: 16px;
    font-weight: bold;
}
.service_list dd {
    font-size: 14px;
    font-weight: bold;
    color: #2e6ace;
}
.service {
    background-color: #ebf6ff;
    background-image: url(/images/ielovebb/introduction/img_other.png);
    background-repeat: no-repeat;
    background-position: calc(50% + 530px) bottom;
    padding: 40px 0 60px;
}
.service h2 {
    font-size: 30px;
    margin-bottom: 20px;
    position: relative;
}
.service h2::before {
    content: url(/images/ielovebb/introduction/img_other_fukidashi.png);
    position: absolute;
    top: -55px;
    right: 470px;
    left: 0;
}
.service_op {
    text-align: center;
    font-size: 13px;
}
/* comparison */
.comparison p {
    text-align: center;
}
.comparison_img {
    position: relative;
}
.comparison_img::after {
    content: "※2024年6月現在";
    position: absolute;
    font-size: 13px;
    bottom: -17px;
    width: 106px;
    right: 159px;
}
.comparison_txt {
    font-size: 28px;
    font-weight: bold;
    margin: 40px auto 20px;
}
.comparison_txt b {
    color: #2e6ace;
}
/* voice */
.voice {
    padding: 70px 10px 100px;
    background: #ebf6ff;
}
.voice h2 {
    margin-bottom: 40px;
}
.voice_list {
    display: flex;
    justify-content: space-between;
    width: 800px;
    margin: 0 auto;
}
.voice_list dl {
    border-radius: 6px;
    background-color: #fff;
    width: 370px;
    text-align: center;
    background-size: contain;
    background-position: center -20px;
    background-repeat: no-repeat;
}
.voice1 { background-image: url(/images/ielovebb/introduction/img_voice1.png); }
.voice2 { background-image: url(/images/ielovebb/introduction/img_voice2.png); }
.voice_list dt {
    background: #fff;
    color: #2e6ace;
    font-size: 14px;
    font-weight: bold;
    border: 2px solid;
    padding: 6px 22px;
    border-radius: 18px;
    display: inline-block;
    margin: 168px 0 25px;
}
.voice_list dd {
    padding-bottom: 20px;
}
.voice_list li {
    background: #fff;
    font-size: 16px;
    font-weight: bold;
    padding: 0 10px 15px;
    text-align: center;
}
.voice_list li strong {
    font-size: 22px;
    color: #f94e4d;
    font-weight: bold;
}
/* form */
.form_inner {
    padding-bottom: 50px;
}
/* popup */
body.is-fixed,
html.is-fixed {
    touch-action: none;
}
.service_popup_fixed {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    width: 100%;
    height: 100%;
}
.service_popup {
    opacity: 0;
    visibility: hidden;
}
.service_popup.is-show {
    opacity: 1;
    visibility: visible;
}
.popup_inner,
.popup_circle,
.popup_contents {
    position: fixed;
    top: 50%;
    left: 50%;
    margin: -275px 0 0 -275px;
    width: 550px;
    height: 550px;
}
.is-narrow .popup_inner,
.is-narrow .popup_circle,
.is-narrow .popup_contents {
    position: absolute;
    margin-top: 0;
}
.is-narrow .popup_inner,
.is-narrow .popup_circle {
    top: 20px;
}
.is-narrow .popup_contents {
    top: 0;
}
.popup_inner {
    z-index: 102;
}
.popup_contents {
    padding: 80px 70px 0;
    opacity: 0;
    visibility: hidden;
    transform: scale(1.2);
}
.popup_contents.is-show {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
    transition: .2s linear 1.1s;
}
.popup_contents.is-hide {
    opacity: 0;
    visibility: hidden;
    transform: scale(1.1);
    transition: .4s ease;
}
.popup_contents dt {
    font-size: 22px;
    font-weight: bold;
    text-align: center;
    color: #2e6ace;
}
.popup_contents dt span {
    display: block;
    font-size: 17px;
    font-weight: bold;
    color: #525252;
    margin-bottom: 8px;
}
.popup_contents_img {
    margin: 15px auto;
    text-align: center;
}
.popup_contents_txt {
    font-size: 16px;
    text-align: justify;
    line-height: 1.4;
}
.popup_close {
    position: absolute;
    left: 50%;
    bottom: 66px;
    margin: 0 0 0 -20px;
    cursor: pointer;
    transform: scale(0);
    border-radius: 50%;
    background: #808a97;
    width: 40px;
    height: 40px;
    text-align: center;
    padding: 7px;
}
.popup_close::after {
    content: "×";
    font-size: 28px;
    font-weight: bold;
    line-height: 1;
    color: #fff;
}
.is-show .popup_close {
    animation: close .5s ease 1.6s;
    animation-fill-mode: forwards;
}
.is-hide .popup_close {
    animation: closeHide .4s ease;
}
@keyframes close {
    0% {
        transform: scale(0);
    }
    40% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}
@keyframes closeHide {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.1);
        opacity: 0;
    }
}
.popup_circle {
    z-index: 101;
    background-color: #fff;
    border-radius: 50%;
    transform: scale(0);
}
.is-show .popup_circle {
    animation: circle .8s ease .5s;
    animation-fill-mode: forwards;
}
.is-hide .popup_circle {
    animation: circleHide .4s ease 0s;
}
@keyframes circle {
    0% {
        opacity: 0;
        transform: scale(0);
    }
    40% {
        transform: scale(1.1);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}
@keyframes circleHide {
    0% {
        opacity: 1;
        transform: scale(1);
        visibility: visible;
    }
    50% {
        opacity: 1;
        visibility: visivle;
    }
    100% {
        opacity: 0;
        transform: scale(1.1);
        visibility: hide;
    }
}
.popup_overlay {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    width: 100%;
    height: 100%;
    background-color: rgba(74, 121, 177, .60);
    opacity: 0;
    visibility: hidden;
    transition: .4s ease;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
    overflow: auto;
    overflow-x: hidden;
}
.is-show .popup_overlay {
    opacity: 1;
    visibility: visible;
}
.is-hide .popup_overlay {
    opacity: 0;
    visibility: hidden;
    transition-delay: .6s;
}

/* 電子契約有料対応 */
.popup_contents dt span.op {
    position: relative;
}
.popup_contents dt span.op::after {
    content: "※オプション機能";
    font-size: 12px;
    font-weight: normal;
    position: absolute;
    bottom: 2px;
    padding-left: 6px;
}

/* bnr_downloadscomic */
#close {
    display: none;
}
.bnr_downloadscomic {
    position: fixed;
    bottom: 0;
    right: 10px;
    z-index: 999;
    height: 207px;
    overflow: hidden;
    box-shadow: 0 1px 8px 0 rgba(0, 0, 0, 0.4);
    border-radius: 5px 5px 0 0;
    border: 2px solid #2d68d0;
    border-bottom: none;
    transition: .5s;
    transform: translateY(172px);
}
.is-active.bnr_downloadscomic {
    transform: translateX(0);
}
#close:checked ~ .bnr_downloadscomic {
    height: 35px;
    transition: .3s;
}
.bnr_downloadscomic label::after {
    content: "×";
    cursor: pointer;
    position: absolute;
    color: #fff;
    right: 10px;
    font-size: 20px;
    transition: .5s;
}
#close:checked ~ .bnr_downloadscomic label::after {
    content: "^";
    top: 8px;
    font-size: 18px;
    font-weight: normal;
    transition: .5s;
}
.bnr_downloadscomic dt {
    background: #2d68d0;
    color: #fff;
    font-size: 20px;
    font-weight: bold;
    text-align: center;
    padding: 6px 15px 4px 0;
}
.bnr_downloadscomic dd a {
    background: #fff;
    display: inline-block;
    padding: 0 3px 6px 15px;
}
.bnr_downloadscomic dd a:hover > img {
    opacity: .8;
    transition: .2s;
}
.bnr_downloadscomic dd img {
    margin-top: -3px;
}
#close:checked ~ .bnr_downloadscomic dd img {
    margin-top: 0;
}
