@charset "shift_jis";
/* CSS Document */

#webinar_month_header{    
    margin:0.7em 30px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-end;
    color:#000;
    line-height: 1.4;
}

#webinar_month_header h2{
    font-size: 3.42em;
    font-weight: bold;
}

#webinar_month_header p{
    padding-left: 1.5em;
    text-indent: -1.5em;
}

.webinar_box{
    display: grid;
    grid-template: 
        "date cont" auto
        "btn cont" 1fr /
        180px 1fr;
    gap:20px;
    color: #000;
    padding: 0 0 1.7em;
    margin:2em 30px 1.5em;
    line-height: 1.5;
    border-bottom: #ccc solid 1px;
}

.webinar_box .wb_date{
    grid-area: date;
    font-size: 1.14em;
    font-weight: bold;
}
.webinar_box .wb_date span{
    display: block;
    font-size: 1.5em;
}
.webinar_box .wb_btn{
    grid-area: btn;
}
.webinar_box .wb_btn a{
    display: flex;
    color: #fff;
    font-size: 1.07em;
    font-weight: bold;
    padding: 0.6em 1em 0.6em 1.7em;
    margin-bottom:0.7em;
    border-radius: 2.1em;
    position: relative;
    justify-content: space-between;
}
.webinar_box .wb_btn a:hover{
    text-decoration: none;
    opacity: 0.8;
}
.webinar_box .wb_btn a::after{
    content: "";
    display:block;
    width: 1.25em;
    background: url("/portal/page/out/webinar/2023/arrow.svg") no-repeat center / contain;
    transform: rotate(-90deg);
}
.webinar_box .wb_btn a.wb_btn_ap{ background-color: #0e47a1; }
.webinar_box .wb_btn a.wb_btn_ss{ background-color: #0070e3; }
.webinar_box .wb_btn a.wb_btn_mv{ background: #333 url("/portal/page/out/webinar/2023/movie.svg") no-repeat 5.3em center / 3.25em; }

.webinar_box .wb_btn b{
    display: block;
    margin-bottom: 0.7em;
}
.webinar_box .wb_cont{
    grid-area: cont;
    display: grid;
    grid-template: 
        "keyword keyword" auto
        "ttl ttl" auto
        "overview recommend" 1fr
        "product product" auto /
        1fr 43%;
    gap:1em;
        
}
.webinar_box .wb_keyword{
    grid-area:keyword;
}
.webinar_box .wb_keyword li{
    display: inline-block;
    margin:0 0.5em 0.5em 0;
    color: #fff;
    font-weight: bold;
    background-color: #00adff;
    min-width: 14em;
    text-align: center;
    padding: 0 0.5em;
}

.webinar_box h3{
    grid-area: ttl;
    font-size: 1.7em;
    font-weight: bold;
}
.webinar_box .wb_overview{
    grid-area: overview;
}

.webinar_box .wb_recommend{
    grid-area: recommend;
    padding:0.2em 0.5em 0.5em;
    border-radius: 1em;
    background-color: #d7ebff;
}
.webinar_box .wb_recommend h4{
    padding: 0.7em 0.5em 0.3em 2.75em;
    margin: 0 0 0.35em;
    font-size: 1.2em;
    color: #0070e3;
    font-weight: bold;
    text-shadow:2px 2px 0 #fff, -2px -2px 0 #fff,
              -2px 2px 0 #fff, 2px -2px 0 #fff,
              0px 2px 0 #fff,  0 -2px 0 #fff,
              -2px 0 0 #fff, 2px 0 0 #fff;
    background: url("/portal/page/out/webinar/2023/hand.svg") no-repeat left top / contain;
}
.webinar_box .wb_recommend li{
    margin: 0 0.7em 0.5em;
    padding-left: 1.25em;
    position: relative;
    line-height: 1.4;
    font-size: 0.928em;
}
.webinar_box .wb_recommend li::before{
    content: "";
    display: block;
    position: absolute;
    top: 0.35em;
    left: 0;
    width: 0.6em;
    height: 0.6em;
    background-color:#0070e3;
    border-radius: 50%;
}
.webinar_box .wb_product{
    grid-area: product;
    background-color: #f0f0f0;
    padding: 0.5em 1em;
    font-size: 0.928em;
}
.webinar_box .wb_product li{
    display: inline-block;
}

.webinar_box .wb_product li::after{
    content: "/";
    margin: 0 0.1em 0 0.5em;
}
.webinar_box .wb_product li:last-child::after{
    display: none;
}


@media only screen and (max-width:1024px){
.webinar_box .wb_recommend h4{
    background-size: 2.5em;
}
}
@media only screen and (max-width:940px){
#webinar_month_header{    
    margin:0.7em 2.667%;
}
.webinar_box{
    margin:2em 2.667% 1.5em;
}
    
}
@media only screen and (max-width:768px){
    #webinar_month_header h2{
    font-size: 7vw;
}
    
.webinar_box{
    grid-template: 
        "date" auto
        "cont" 1fr
        "btn" auto/
        1fr;
}
    .webinar_box .wb_date span{
    display: inline-block;
    font-size: 1.5em;
}
    .webinar_box .wb_keyword li {
        min-width: 0;
    }
    .webinar_box .wb_cont{
    grid-template: 
        "keyword" auto
        "ttl" auto
        "overview" auto
        "recommend" 1fr
        "product" auto /
        1fr;        
}
    .webinar_box h3 {
        margin: 0;
    }
    .webinar_box .wb_btn{
        display: flex;
}
    .webinar_box .wb_btn li{
        margin-right: 1em;
    }
    .webinar_box .wb_btn a{
        width: 12em;
    }

    .webinar_box .wb_btn a::after {
        margin-left: 0.5em;
    }
    .webinar_box .wb_recommend h4{
        background-size: contain;
}
    .webinar_box .wb_btn a.wb_btn_mv{
        background-position:6em center;
    }
}
@media only screen and (max-width:550px){
#webinar_month_header p br{
     display: none;
}
    .webinar_box h3 {
    font-size: 1em;
    }
    .webinar_box .wb_btn{
    display: block;
    }
    .webinar_box .wb_btn li{
    margin-right:0;
    }
    .webinar_box .wb_btn a{
    width:100%;
        max-width: 15em;
    }


}
