@charset "UTF-8";

html{
    scroll-behavior:smooth;
}

.content.itp_key_bg{
    margin-top:0;
    padding-top:0;
    padding-bottom:0;
}

.content.itp_key_bg + .content{
    margin-top:10rem;
}

.itp_key_bg{
    height:520px;
    background-color: var(--dark-bg-color);
    background-image: url("../images/top/top_image_r.jpg");
    background-repeat: no-repeat;
    background-position: left center;
    background-size: cover;
    color:var(--light-text-color);
}

.itp_keybox_bg_eff{
    width:100%;
    height: 100%;
    backdrop-filter: brightness(50%) blur(3px);
}

.itp_keybox{
    padding-top:3rem;
    padding-bottom:2rem;
    position:relative;
}

.itp_key_hd{
    --item-width:40%;
}

.itp_key_hd .hd_text{
    background-color: var(--key-hd-bg-color);
    display: inline-block;
    padding:0.2rem 0.5rem;
}

.itp_key_hd .checklist{
    font-size:130%;
    padding-left:0.5em;
    line-height:200%;
}

.itp_key_hd .checklist a:hover{
    text-decoration: underline;
}

.itp_key_hd > div:first-of-type{
    font-size:200%;
    font-weight: bold;
    margin-bottom: 1em;
}

.itp_key_hd > div:nth-of-type(2){
    padding:0.5em 0.5em 0.5em 0.5em;
    border-radius: var(--border-radius);
    font-size: 100%;
    width:var(--item-width);
}

.itp_key_hd > .top_oto_button{
    width:var(--item-width);
    margin-top:2em;
    margin-bottom: 1em;
    font-size: 130%;
}

.itp_key_hd > .top_oto_button > a{
    padding-top:0.5em;
    padding-bottom: 0.5em;
}

.itp_key_image{
    position:absolute;
    top:50%;
    left:50%;
    width:700px;
}

/* .itp_key_image > img{
    width:700px;
    position: relative;
    right:-30px;
    top:90px;
}
 */
@media screen and (max-width:768px) {
    .itp_keybox{
        flex-direction: column;
    }

    .itp_key_hd{
        --item-width:80%;
        text-align: center;
    }

    .itp_key_hd > div:first-of-type{
        text-align: center;
    }

    .itp_key_hd > div:nth-of-type(n + 2){
        width:var(--item-width);
        margin-left:auto;
        margin-right: auto;
    }

    .itp_key_image{
        display: none;
    }
}

.dounyu{
    display: flex;
    gap:3rem;
    flex-direction: column;
}

.dounyu_item_hd{
    display: flex;
    align-items: center;
}

.dounyu_item_hd > span{
    display: inline-block;
    height:3rem;
    width: 3rem;
    border-radius: 50%;
    background-color:var(--dark-bg-color);
    color:var(--light-text-color);

    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 150%;
    font-weight: bold;
}

.dounyu_item_hd > h4{
    margin-left: 1rem;
    font-size: 120%;
}

.dounyu_item_ct{
    padding-left:4rem;
}


.itp_function{
    display: flex;
    column-gap: 1rem;
    row-gap: 1rem;
}

.itp_function > div{
    --size:50%;
    width: var(--size, 50%);
}

.itp_function > div:first-of-type > img{
    filter: drop-shadow(3px 3px 5px #666);
}

.itp_function > div > p{
    margin-bottom:1rem;
    line-height: 200%;
}

.itp_function > div > p:last-child{
    margin-bottom: 0;
}

@media screen and (max-width:768px){
    .itp_function{
        flex-direction: column;
        gap: 1%;
    }

    .itp_function > div{
        width: 100%;
    }
}


/* OP */
.itp_function_op{
    margin-bottom: 2rem;
}

.itp_function_op.grid{
    --cols:4;
    --row-gap:2rem;
}

.itp_function_op.grid{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: max-content;
    column-gap: 2%;
    row-gap: 5.5rem;
}

.itp_function_op_item{
    position: relative;
    
    width:100%;
    height: calc(100% + 3.5rem);
    background-color: var(--base-bg-color);
    color:var(--dark-text-color);

    transition: all var(--delay);
}

.itp_function_op_item > a{
    display: block;
    width:100%;
    height:100%;
}

.itp_function_op_item:hover{
    filter: drop-shadow(0 3px 5px rgb(0 0 0 / 14%));
}

.itp_function_op_item h4{
    background-color: var(--dark-bg-color);
    color: var(--light-text-color);
    padding:0.5rem 0.5rem;
}

.itp_function_op_item:hover > a > h4{
    background-color: var(--sub-color);
}

.itp_function_op_item h4+div{
    padding:0.25rem 0.5rem;
}

.itp_op_price{
    padding:0.25rem 0.5rem;
    margin-bottom:0.5rem;
    text-decoration: underline;
    text-decoration-color: var(--main-color-a);
    text-decoration-thickness: 0.4em;
}

.itp_op_price > span{
    font-weight: bold;
    font-size: 1.1rem;
}

.itp_function_op_item div.to_details{
    position: absolute;
    padding:0;
    bottom: 0.5rem;
    left:1rem;
    height: 2.5rem;
    width:calc(100% - 2rem);

    display: flex;
    justify-content: center;
    align-items: center;

    border:1px var(--sub-color) solid;
    color:var(--sub-color);
    border-radius: var(--border-radius);
}

.itp_function_op_item:hover > a > div.to_details{
    border:1px var(--sub-color) solid;
    background-color: var(--sub-color);
    color: var(--light-text-color);
}

.itp_function_op_item div.to_details::after{
    content: '';
    position: absolute;
    display: block;
    width: 0.5rem;
    height: 0.5rem;
    border-right: 2px var(--sub-color) solid;
    border-bottom: 2px var(--sub-color) solid;
    transform: rotate(-45deg);
    right: 1rem;
}

.itp_function_op_item:hover div.to_details::after{
    border-right-color: var(--light-text-color);
    border-bottom-color: var(--light-text-color);

    right: 0.7rem;

}


.itp_bg{
    background-color: var(--light-bg-color);
    padding-top:5rem;
    padding-bottom:5rem;
}

.itp_bg h3{
    margin-bottom:1em;
}

@media screen and (max-width:768px) {
    .itp_function_op > .itp_function_op_item >h4{
        padding:0 0.2rem;
        justify-content: center;
    }

    .itp_function_op.grid{
        grid-template-columns: repeat(1, 1fr);
        row-gap: 5.5rem;
        padding-left:1rem;
        padding-right:1rem;
    }

    .itp_bg{
        padding-top:2rem;
        padding-bottom:2rem;
    }
}

.itp_red{
    display: flex;
    gap:2em;
    justify-content: space-around;
}

.content_item{
    margin-top:1rem;
}

.content_item p{
    text-indent:1rem;
    margin-top:1rem;
}

.checklist p{
    text-indent: 0;
    margin-top:0;
}

/* IT点呼*/
.it > div:nth-of-type(n + 2){
    margin-top:5rem;
}

.it > div > div:nth-last-of-type(1){
    align-self: center;
}

.content_item.it > div{
    display: flex;
}

.content_item.it > div:nth-of-type(even){
    flex-direction: row-reverse;
}

.content_item.it > div > div{
    width:50%;
}

.content_item.it > div:nth-of-type(odd) > div:last-of-type{
    padding-left:2rem;
}

.content_item.it > div:nth-of-type(even) > div:last-of-type{
    padding-right: 2rem;
}

.content_item.it p:first-of-type{
    margin-top:0;
}


/* ROUMU */
div.content.nopadding{
    padding-top: 0;
    padding-bottom: 0;
}

.wl_roumu{
    width:100%;
    max-width:400px;
    margin-left:auto;
    margin-right:auto;
}

.roumu_bg{
    background-color: var(--light-bg-color);
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.roumu_bg_img{
    background-color: var(--light-bg-color);
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.roumu_header{
    padding-top:5rem;
    padding-bottom: 5rem;
    text-align: center;
    color:var(--light-text-color);
    font-size: 1.25rem;

    background-color: #eee;
    background-image: url("../images/itp/roumu/mainvisual.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}

.roumu_header h1{
    font-size: 1.5rem;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.roumu_header h1 span.lt{
    font-size:3.5rem;
}

.roumu_header h1+div{
    margin: 3rem 0;
}

.roumu_button > a{
    display: block;
    background: var(--button-grad-l);
    color: var(--light-text-color);
    width: 100%;
    height: 100%;
    padding:0.75em 0;
    display: grid;
    justify-content: center;
    align-items: center;
    text-align: center;
    border-radius: var(--border-radius);
    font-weight: bold;
    font-size: 1.25rem;
}

.roumu_button > a:hover{
    text-decoration: underline;
}

.roumu_item{
    position: relative;
    padding:0.5rem 2rem 1rem 0rem;
    display: flex;
    background-color: var(--base-bg-color);
    border-radius: calc(var(--border-radius) * 3);
}

.roumu_item:nth-of-type(n + 2){
    margin-top:3rem;
}

.roumu_item_hd{
    position: relative;
    flex:0 0 33%;
    max-width: 300px;
    text-align: center;
    justify-self: center;
    align-self: center;
    font-size: 2rem;
    color: var(--sub-em-color);
    font-weight: bold;
    padding-top:0.5rem;
}

.roumu_item_hd::before{
    content: '';
    display: inline-block;
    background-image: url('../images/itp/roumu/cbox02-icon-check.png');
    background-size: contain;
    width: 2rem;
    height:2rem;
    position: relative;
    top:0.2rem;
    left:0px;
}


.roumu_mc_item{
    margin-bottom: 2rem;
}

.roumu_mc_item > div{
    margin-bottom: 1rem;
}

.roumu_mc{
    column-count: 2;
}

.roumu_mc li{
    margin-bottom:1rem;
}

.roumu_mc_item ul li > div:first-of-type{
    font-weight: bold;
}

.roumu_mc_item.table{
    margin-top:2rem;
    display: grid;
    grid-template-columns: 1fr 3fr;
    column-gap: 2rem;
}

.roumu_mc_item.table > div:nth-of-type(odd){
    text-align: left;
    font-weight: bold;
}

.roumu_koumoku{
    border: 3px var(--main-color) solid;
    border-radius: calc(var(--border-radius) * 2);
    padding-top: 1rem;
}

.roumu_koumoku > div:first-child{
    font-weight: bold;
    color:var(--main-color);
    padding-left: 1rem;

}

.roumu_koumoku > ul{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(6, max-content);
    grid-auto-flow: column;
    padding: 1rem 1rem 1rem 2rem;
}

.roumu_kakaku{
    text-align: center;
    font-size:2.5rem;
    font-weight: bold;
}

.roumu_kakaku > span{
    font-size: 5rem;
    color: var(--main-color);
}

.roumu_kakaku+div.roumu_mc_item > div.footnote{
    text-align: center;
    font-size:0.9rem;
}


/* toxyz */
.toxyz_header{
    padding-top:5rem;
    padding-bottom: 5rem;
    text-align: center;
    color:var(--light-text-color);
    font-size: 1.25rem;

    background-color: #eee;
    background-image: url("../images/itp/toxyz/mv_bg.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}

.toxyz_header h1{
    margin-top:1rem;
    margin-bottom:1rem;
}

.toxyz_button{
    margin-left:auto;
    margin-right: auto;
    margin-top:3rem;
}

.toxyz_button > a{
    display: block;
    background: var(--button-grad-l);
    color: var(--light-text-color);
    width: 100%;
    height: 100%;
    padding:0.75em 0;
    display: grid;
    justify-content: center;
    align-items: center;
    text-align: center;
    border-radius: var(--border-radius);
    font-weight: bold;
    font-size: 1.25rem;
}

.toxyz_button > a:hover{
    text-decoration: underline;
}

.toxyz_bg_img{
    background-color: var(--light-bg-color);
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.toxyz_ki{
    position: relative;
    text-align: center;
    height:16rem;
    background-color: var(--light-bg-color);
    border: 3px var(--sub-color) solid;
    border-radius: var(--border-radius);
}

.toxyz_ki > div:first-child{
    padding:1rem;
}

.toxyz_ki > div:nth-of-type(2){
    display: grid;
    justify-content: center;
    align-items: center;
    padding: 1rem;
}

.toxyz_ki > div:nth-of-type(3){
    width:100%;
    background-color: var(--sub-color);
    color: var(--light-text-color);
    padding:0.5rem;

    position: absolute;
    bottom: 0;
}


.toxyz_items{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 1fr);
    gap:3rem;
}

.toxyz_item{
    border-radius: calc(var(--border-radius) * 2);
}

.toxyz_item > div{
    padding:2rem 2rem;
}

.toxyz_box{
    background-color: var(--dark-bg-color);
    color:var(--light-text-color);
    font-size:1.6rem;
    height:10rem;

    display: flex;
    justify-items: center;
    align-items: center;

    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}

.toxyz_box+div{
    background-color: var(--base-bg-color);
    line-height:150%;
    font-size:1.2rem;
    height:14rem;
}

.toxyz_box.box1{
    background-image: url('../images/itp/toxyz/c-box02-img01.jpg');
}
.toxyz_box.box2{
    background-image: url('../images/itp/toxyz/c-box02-img02.jpg');
}
.toxyz_box.box3{
    background-image: url('../images/itp/toxyz/c-box02-img03.jpg');
}
.toxyz_box.box4{
    background-image: url('../images/itp/toxyz/c-box02-img04.jpg');
}
.toxyz_box.box5{
    background-image: url('../images/itp/toxyz/c-box02-img05.jpg');
}
.toxyz_box.box6{
    background-image: url('../images/itp/toxyz/c-box02-img06.jpg');
}

@media screen and (max-width:768px) {
    .toxyz_items{
        display: block;
    }

    .toxyz_item{
        margin-bottom: 3rem;
    }
}

.toxyz_kadai_solve{
    background-image:url('../images/itp/toxyz/c-box08-arrow-gray-sp.png');
    background-repeat: no-repeat;
    background-position: center;

    margin-left: auto;
    margin-right:auto;
    margin-top:5rem;

    width:100%;

    text-align: center;
    font-size:2rem;
}


.toxyz_riyou_step > div{
    position: relative;
}

.toxyz_riyou_step > div::after{
    content: '';
    display: block;
    background-image: url('../images/itp/toxyz/c-box03-arrow-gray.png');
    background-repeat: no-repeat;
    background-size: contain;
    width:30px;
    height: 30px;

    position: absolute;
    top:calc(50% - 15px);
    right:-35px;
}

.toxyz_riyou_step > div:last-of-type::after{
    display: none;
}

.toxyz_riyou_step > div > a{
    display:block;

    position:relative;
    width:100%;
    height:100%;
    text-align: center;
    column-gap: 5rem;
    border-radius: var(--border-radius);
    border:1px var(--border-color) solid;
    background-color: var(--light-bg-color);
    color:var(--dark-text-color);
}

.toxyz_riyou_step > div > a > span:first-of-type{
    display: block;

    display: flex;
    justify-content: center;
    align-items: center;
    padding:0.2rem;
    font-size:1.25rem;
}

.toxyz_riyou_step > div > a > span:nth-of-type(n + 2){
    display: block;
    font-size:1.75rem;
    padding:0.25rem 0.5rem;
}


.toxyz_step{
    margin-top: 5rem;
    font-size: 1.2rem;
    line-height: 175%;
}

.toxyz_step > span:first-child{
    background-color: var(--button-grad-color2);
    color:var(--light-text-color);
    border-radius: 0.5rem;
    padding:0.2rem 0.5rem;
}

.toxyz_step ul > li{
    padding-left:2rem;
    text-indent:-2rem;
    margin-bottom:1rem;
}


.toxyz_step li li{
    margin-bottom:0rem;
}

span.akam{
    color:#f00;

}

.toxyz_hd{
    font-size:1.5rem;
    margin-top:1rem;
    margin-bottom:1rem;
    font-weight: bold;
}

.toxyz_merit > div{
    margin:2rem auto 4rem auto;
}

.toxyz_merit > div:nth-of-type(even){
    width: 75%;
}

.toxyz_uv_bg{
    background-image: url('../images/itp/toxyz/cbox06-bg.jpg');
    background-repeat: no-repeat;
    background-position: center center;

}

.toxyz_uv{
    background-color: var(--base-bg-color);

    margin-bottom:3rem;
    padding:1rem 2rem;
}

.toxyz_uv > div > div{
    align-self: center;
}

.toxyz_uv > div > div:last-child{
    text-align: center;
}

.toxyz_uv p{
    margin-top:1rem;
    text-indent: 1rem;
}

.toxyz_eg{
    margin-bottom:1.5rem;
    display: flex;
    justify-content: space-between;
}

.toxyz_eg > div:first-of-type{
    position: relative;
    flex:0 0 65%;
}

.toxyz_eg > div:last-of-type.wbr:before{
    --height:4rem;
    --width:2rem;
    content: '';
    display: block;
    background-image: url('../images/itp/toxyz/c-box08-arrow-gray.png');
    background-repeat: no-repeat;
    background-size: contain;
    width: var(--width);
    height:var(--height);
    position: absolute;
    left:-1.8rem;
}

.toxyz_eg > div:last-of-type{
    position: relative;
    flex:0 0 30%;

    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.toxyz_eg > div:last-of-type span{
    color:var(--main-color);
    text-align: center;
    font-size:1.75rem;
}

.toxyz_maru{
    display: inline-block;
    background-color: var(--main-color);
    color:var(--light-text-color);
    border-radius: calc(var(--border-radius) * 3);
    padding:0.2rem 1rem;
}


/* 個別機能ページ */
.fn_page h3{
    border:0px;
}

.fn_page h4{
    border-bottom:1px var(--border-color) solid;
    margin-bottom:1rem;
}

.fn_page div.img{
    position: relative;
    border: 1px #333 solid;
    text-align: right;
}

.fn_page a div.img.hdimg span{
    overflow-y: hidden;
    height:2rem;
    transition: all 0.3s;
    width: 100%;
    text-align: right;
}

.fn_page a:hover div.img.hdimg span{
    height:5rem;
    background-color: var(--main-color);
}

.fn_page div.img span{
    position: absolute;
    display: block;

    background-color: rgba(0,0,0,0.8);
    color:#fff;
    
    bottom:0;
    left:0;
    padding:0.25rem 1rem;
    text-align: left;
}

.fn_page .checklist > li{
    padding-left: 1.5rem;
    text-indent: -1.85rem;
}

.fn_page .checklist > li p{
    margin-top:0.5rem;
    margin-bottom:1rem;
}

.fn_item:nth-of-type(n + 2){
    margin-top:3rem;
}

.fn_item h4{
    margin-top:3rem;
}

.fn_item p a{
    text-decoration: underline;
    text-underline-offset:0.1rem;
}

@media screen and (max-width:768px){
    .fn_item div.grid{
        grid-template-columns: 1fr;
        padding: 0 1rem;
    }
}

.span2{
    grid-column: span 2;
}

:is(.img_dr_c01, .img_dr_c02, .img_dr_c03, .img_dr_c04, .img_dr_c05, .img_dr_c06) div.img{
    background-color: var(--base-bg-color);
}

:is(.img_dr_c01, .img_dr_c02, .img_dr_c03, .img_dr_c04, .img_dr_c05) div.img > img{
    height:130px;
    object-fit:contain;
    object-position:left top;
}

.img_dr_c06 div.img > img{
    object-fit:cover;
    object-position:left top;
}

:is(.img_dr_c01, .img_dr_c02, .img_dr_c03, .img_dr_c04, .img_dr_c05, .img_dr_c06) > div{
    margin-bottom: 1.5rem;
}

:is(.img_dr_c01, .img_dr_c02, .img_dr_c03, .img_dr_c04, .img_dr_c05) div.img_desc{
    padding: 0.25rem 0.5rem;
    font-size:0.9rem;

}

.img_dr_c05 .img_cap{
    font-size:0.9rem;
}


/* リアルタイム動態 */
.realtime_gaiyou{
    display: grid;
    grid-template-columns: 2fr 2fr;
    column-gap: 1rem;
    row-gap: 2rem;
}

.realtime_gaiyou > div:not(.img){
    padding-top:1rem;
}

.realtime_gaiyou p{
    margin-bottom: 1rem;
}

.itp_icon_example{
    display: flex;
    align-items: center;
    text-align: center;
    column-gap: 1rem;
    row-gap: 1rem;
    flex-wrap: wrap;
}

.itp_icon_example > div{
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    flex-direction: column;
    font-size: 0.9rem;
}

.itp_icon_example > div > span{
    --size:2.6rem;

    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;

    line-height: 0.8rem;
    font-size:0.8rem;
    width:var(--size);
    height:var(--size);
    padding-top:2px;
    border-radius: var(--size);
    border: 2px var(--color) solid;
    background-color: #fff;
}

.itp_icon_example > div > span.empty{
    background-color: #fff;
    color: #333;
}

.itp_icon_example > div > span.fill{
    background-color: var(--color);
    color: #fff;
}

.itp_icon_example > div > span.fill::after{
    content: '';
    position: absolute;
    display: block;
    width:calc(var(--size) - 8px);
    height:calc(var(--size) - 8px);
    top:0px;
    border-radius: var(--size);
    border: 2px rgb(255, 255, 255) solid;
    z-index:10;
}



/* 日報用 */
.hd_sc_item.nippou > a > img{
    border: 1px var(--border-color) solid;
    margin-bottom: 0.5rem;
}

.hd_sc_item.nippou > a{
    border: 0;
    background-color: var(--base-bg-color);
    color: var(--dark-text-color);
    box-shadow: none;
}

.hd_sc_item.nippou:hover > a{
    filter: none;
}

.hd_sc_item.nippou > a::after{
    display: none;
}

.hd_sc_item.nippou > a > span{
    display: inline-block;
    position: relative;

    border: 1px var(--sub-color) solid;
    border-radius: calc(var(--border-radius) * 5);
    background-color: var(--base-bg-color);
    box-shadow: 0 3px 5px -1px rgba(0,0,0,.25);

    color: var(--sub-color);
    padding: 0.25rem 0rem;
    width: 50%;
    text-align: center;
}

.hd_sc_item.nippou:hover > a > span{
    filter: drop-shadow(0 3px 5px rgb(0 0 0 / 14%));
}

.hd_sc_item.nippou > a > span::after{
    content: '';
    position: absolute;

    width: 0.6rem;
    height:0.6rem;

    border-right:2px var(--sub-color) solid;
    border-bottom:2px var(--sub-color) solid;
    transform: rotate(-45deg);

    top:calc(50% - (0.6rem + 2px) / 2);
    right:0.75rem;
}

.hd_sc_item.nippou:hover > a > span::after{
    right:calc(0.75rem - 4px);
}


@media screen and (max-width:760px) {
    .hd_sc_items{
        grid-template-columns: 1fr;
        row-gap: 1rem;
    }

    .realtime_gaiyou{
        grid-template-columns: 1fr;
        row-gap: 0.5rem;
    }
}

.mc{
    column-width: 15rem ;
    margin-top: 2rem;
    margin-bottom:2rem;
}

.file_dl{
    display: flex;
    justify-content: center;
    align-items: center;

    padding:0.5rem 0;
    border:1px var(--border-color) solid;
    background-color: var(--light-bg-color);
    border:1px var(--border-color) solid;
    border-radius: var(--border-radius);
}

.file_dl:hover{
    background-color: var(--light-bg-color);
    border:1px var(--border-color) solid;
    opacity: 0.7;
    filter: drop-shadow(2px 2px 1px var(--shadow-color));
}

.file_dl::before{
    content: url('/itp/images/ico/ico_download.svg');
    display: inline-block;
    width: 1.5rem;
    height:1.5rem;
    padding:0.5rem;
    margin-right:1rem;
    background-color: rgba(0,0,0,0.3);
    border-radius:1.5rem;
}