@charset "UTF-8";

/*-------------------------------------------------------
アンカーリンク
-------------------------------------------------------*/
.anchor-container {
    display: flex;
}

.anchor_list {
    display: flex;
    flex-wrap: nowrap;
    width: 700px;
    margin: 0 auto;
    align-items: center;
    justify-content: center;
}

.anchor_item a {
    font-size: 17px;
}

@media screen and (max-width: 768px) {
    .anchor_item a {
        font-size: 1.2rem;
    }
}

.anchor-container .anchor_list .anchor_item {
    width: 50%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    box-shadow: none !important;
    -webkit-box-shadow: none !important;
    text-align: center;
    margin: 10px 0;
    line-height: 1.5;
    position: relative;
    display: inline-block;
    border-left: 1px solid #D1D1D1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.anchor-container .anchor_list .anchor_item:last-child {
    border-right: 1px solid #D1D1D1;
}

.anchor-container .anchor_list .anchor_item:after {
    content: "";
    width: 5px;
    height: 5px;
    border: 0px;
    border-top: solid 2px #000;
    border-right: solid 2px #000;
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
    position: absolute;
    top: 50%;
    right: 8px;
    margin-top: -4px;
}

.anchor-link {
    display: block;
    padding-top: 300px;
    margin-top: -300px;
}

.anchor-link-recommend {
    display: block;
    padding-top: 300px;
    margin-top: -300px;
}

@media screen and (max-width: 768px) {
    .anchor-link {
        display: block;
        padding-top: 300px;
        margin-top: -300px;
    }

    .anchor-link-recommend {
        display: block;
        padding-top: 300px;
        margin-top: -300px;
    }

    .anchor-container .anchor_list .anchor_item {
        padding-bottom: 20px;
    }

    .anchor-container .anchor_list .anchor_item:after {
        top: auto;
        bottom: 7px;
        right: 0;
        left: 0;
        margin: auto;
    }
}