/* display */

.mobile {
    display: block !important;
}

.wideSite {
    display: none !important;
}

.wrap {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
}

@media screen and (max-width: 360px) {
    .wrap {
        padding: 0 12px;
    }
}


/* breadCrumbs */

.breadCrumbs {
    margin: 12px 0 16px;
}

.breadCrumbs ul {
    text-align: initial;
}

.breadCrumbs li {
    display: inline-block;
    position: relative;
    margin-right: -4px;
}

.breadCrumbs li:not(:last-child) {
    padding-right: 1em;
    font: var(--content03);
}

.breadCrumbs li:not(:last-child)::after {
    content: '>';
    color: inherit;
    width: 1em;
    text-align: center;
    display: block;
    position: absolute;
    right: 0;
    top: 0;
}

.breadCrumbs li:last-child {
    font: var(--content04);
}

.breadCrumbs li::after,
.breadCrumbs li a {
    color: var(--gray3);
}

.breadCrumbs li,
.breadCrumbs li a {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.breadCrumbs li:not(:last-child),
.breadCrumbs li:not(:last-child) a {
    max-width: 6em;
}

.breadCrumbs li a:hover {
    text-decoration: underline;
}


/* share */

.shareBlock {
    position: relative;
}

.shareBlock img.btnShare {
    height: 20px;
    width: 20px;
    display: block;
    cursor: pointer;
}

ul.shareBox {
    background: var(--white);
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    padding: 20px;
    width: max-content;
    position: absolute;
    right: 0;
    z-index: 9;
    display: none;
}

ul.shareBox li {
    margin-bottom: 24px;
}

ul.shareBox li:last-child {
    margin-bottom: 0;
}

ul.shareBox li a {
    color: var(--gray2);
    display: flex;
    align-items: center;
}

ul.shareBox img {
    width: 20px;
    height: 20px;
    display: block;
    margin-right: 10px;
}

.shareBlock .shareToast {
    display: none;
    font-size: 14px;
    position: fixed;
    top: 80px;
    z-index: 100;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 7em;
    text-align: center;
    padding: 4px 8px;
    background: var(--white);
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.15);
    border-radius: 28px;
}

@media screen and (min-width: 1024px) {
    /* display */
    .mobile {
        display: none !important;
    }
    .wideSite {
        display: block !important;
    }
    /* breadCrumbs */
    .breadCrumbs {
        margin: 28px 0 32px;
    }
    .breadCrumbs li:not(:last-child) {
        padding-right: 2em;
    }
    .breadCrumbs li:not(:last-child)::after {
        width: 2em;
    }
    .breadCrumbs li:not(:last-child),
    .breadCrumbs li:not(:last-child) a {
        max-width: 12em;
    }
    /* share */
    .shareBlock img.btnShare {
        width: 32px;
        height: 32px;
    }
}