@charset "utf-8";

.imageAnchorArea{
    margin-top: 4em;
    margin-bottom: 4em;
}

.imageAnchorWrapper{
    display: flex;
    justify-content: center;
    flex-wrap: nowrap;
}

.imageAnchorWrapper .imageAnchor{
    width: 100%;
}

.imageAnchorWrapper .imageAnchor:nth-child(n+2){
    border-left: 1px solid #e1e1e1;
}

.imageAnchorWrapper .imageAnchor .anchorArea{
    margin: 0 auto;
    max-width: 250px;
}

.imageAnchorWrapper .imageAnchor a{
    display: block;
    color: #262626;
}

.imageAnchorWrapper .imageAnchor a:hover{
    text-decoration: underline solid #262626;
    opacity: 0.7;
}

.imageAnchorWrapper .imageAnchor a.tdNone:hover{
    text-decoration: none;
}

.imageAnchorWrapper .imageAnchor .anchorContent{
    padding: 0 1em 1.5em;
    background-image: url(/common_new/images/common/icon_anchor-blue.png);
    background-repeat: no-repeat;
    background-position: bottom 5px left 50%;
    background-size: 12px auto;
}

.imageAnchorWrapper .imageAnchor .anchorContent .anchorImg{
    display: block;
    margin: 0 auto;
}

.imageAnchorWrapper .imageAnchor .anchorContent .anchorTitle{
    display: block;
    margin-bottom: 0;
    margin-top: 1em;
    text-align: center;
    font-weight: 600;
    font-size: 16px;
    color: #262626;
}

.imageAnchorWrapper .imageAnchor .anchorContent .anchorDesc{
    display: block;
    margin: 0.5em 0 0;
    text-align: center;
    color: #262626;
}

@media screen and (max-width: 767px){
    .imageAnchorArea{
        margin-top: 2em;
        margin-bottom: 2em;
    }

    .imageAnchorWrapper{
        justify-content: center;
        flex-wrap: wrap;
    }

    .imageAnchorWrapper .imageAnchor{
        width: calc(50% - 1px);
    }

    .imageAnchorWrapper .imageAnchor:nth-child(n+2){
        border-left: none;
    }

    .imageAnchorWrapper .imageAnchor:nth-child(2n){
        border-left: 1px solid #e1e1e1;
    }

    .imageAnchorWrapper .imageAnchor:nth-child(n+3){
        margin-top: 2em;
    }

    .imageAnchorWrapper .imageAnchor .anchorArea{
        width: 100%;
    }

    .imageAnchorWrapper .imageAnchor .anchorContent .anchorTitle{
        font-size: 14px;
    }
}