/* header */
header .row{
    display: flex;
    align-items: center;
    padding: 0 7%;
    width: 100%;
    padding-top: 10px;
    border-bottom: 1px solid #EDEDED;
}
header .row::before {
    content: "";
    width: 100%;
    height: 10px;
    position: absolute;
    top: 0;
    left: 0;
    background: url(../img/common/header_bg.png) no-repeat left top / cover;
}
header .row .logo{
    width: 1120px;
    margin: auto;
}

header .header-inner{
    width: 920px;
    margin: auto;
}

header h1 {
    margin-top: 30px;
    margin-bottom: 10px;
    padding: 0;
    line-height: 64px;
}

header .guide-content {
    display: block;
    margin-bottom: 20px;
}
header .w__breadCrumb {
    display: flex;
    align-items: center;
}
header .w__breadCrumb li{
    font-size: 14px;
}
header .w__breadCrumb li::after {
    content: ">";
    color: #777;
    padding: 0 5px;
}
header .w__breadCrumb li:last-child::after {
    display: none;
}
header .w__breadCrumb li a {
    color: var(--jcom-blue);
}

header .page_anchor{
    margin-bottom: 30px;
    padding: 0 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
}
header .page_anchor .list{
    display: inline-block;
}
header .page_anchor .list a{
    position: relative;
    display: block;
    padding: 1em;
    padding-left: calc(1em + 10px);
    transition: .3s;
}
header .page_anchor .list a:hover{
    opacity: 0.75;
    background-color: #FFF2F0;
}
header .page_anchor .list a::before {
    content: "";
    width: 8px;
    height: 8px;
    border-top: 2px solid var(--jcom-red);
    border-right: 2px solid var(--jcom-red);
    position: absolute;
    left: 10px;
    top: calc(50% - 6px);
    transform: rotate(135deg);
}

header .notice {
    margin: 10px 0 33px;
    padding: 1em;
    background-color: #FFF2F0;
    border-radius: 3px;
    font-size: 14px;
}
header .notice .ttl {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 5px;
    color: var(--jcom-red);
}

@media screen and (max-width: 767px) {
    header .row .logo{
        width: 130px;
        margin: 5px 10px;
    }

    header .header-inner {
        width: 100%;
        padding: 0 10px;
    }
    header .header-inner h1{
        margin: 20px 10px 15px;
        font-size: 23px;
        line-height: 1.3;
    }

    header .guide-content{
        display: none;
    }

    header .page_anchor {
        padding-left: 5px;
        padding-right: 5px;
        margin-bottom: 30px;
        background-color: white;
        border: unset;
    }
    header .page_anchor_list {
        font-size: 14px;
        border-bottom: 1px dotted #999;
    }
    header .page_anchor_list .list {
        display: block;
        border-top: 1px dotted #999;
    }
    header .page_anchor_list .list a {
        padding: 12px .5em 8px;
        padding-left: 20px;
    }
    header .page_anchor_list .list a::before {
        content: "";
        width: 8px;
        height: 8px;
        border-top: 2px solid var(--jcom-red);
        border-right: 2px solid var(--jcom-red);
        position: absolute;
        left: 5px;
        top: calc(50% - 4px);
        transform: rotate(135deg);
    }
}