body {
    font-size: min(3.5vw, 16px);
    font-family: "M PLUS 1", sans-serif, "Oswald";
    color: #333;
    background: url(../images/bg_cross_loop.webp);
    background-color: rgba(255, 255, 255, 0.1);
    background-blend-mode: lighten;
    background-repeat: repeat;
    background-size: 100px;
    background-attachment: fixed;
    line-height: 1.5;
}

#page_all {
    background: url(../images/bg_sight.webp);
    background-position: top center;
    background-size: 100%;
    background-repeat:repeat-y;
/*    padding: 0 0 80px 0;*/
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: #333;
}

img {
    vertical-align: bottom;
}

.panlist {
    text-align: left;
    font-size: 12px;
    padding-left: 1em;
    color: #fff;
    background: #000;
    line-height: 2;
}

.panlist a {
    color: #fff;
}

#pan_box {
    -ms-overflow-style: none;
    scrollbar-width: none;
    padding-top: 100px;
    position: relative;
    z-index: 1;
}

#pan_box::-webkit-scrollbar {
    display: none;
}

.onlySp {
    display: none;
}

.onlyPc {
    display: block;
}

/* head PC*/

#head {
    height: 100px;
    width: 100%;
    background: #fff;
    box-shadow: 0 0 4px #ccc;
    position: fixed;
    font-family: "Oswald", "M PLUS 1", sans-serif;
    line-height: 1;
    z-index: 9999;
}

.head_wrap {
    display: flex;
    justify-content: space-between;
    padding: 0 40px;
}

#head h1 {
    width: 220px;
}

#head h1 img {
    width: 100%;
    margin-top: 10px;
}

ul.nav {
    display: flex;
    text-align: center;
}

ul.nav li {
    position: relative;
}

ul.nav li::before,
ul.nav li:last-of-type::after {
    content: "";
    display: block;
    width: 10px;
    height: 10px;
    background: url(../images/sight.webp);
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
    line-height: 100px;
}

ul.nav li::before {
    position: absolute;
    left: -5px;
    top: 40px;
}

ul.nav li:last-of-type::after {
    position: absolute;
    right: 5px;
    top: 40px;
}

ul.nav li a {
    display: block;
    width: 140px;
    padding: 17px 0;
    margin: 10px 0 0 0;
    position: relative;
}

ul.nav li span {
    display: block;
    font-size: 20px;
    font-weight: 900;
    margin-bottom: 8px;
}

ul.nav li small {
    display: block;
    font-size: 12px;
}

ul.nav li a::after {
    content: "";
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #ae0004;
    transition: 0.2s;
    left: 10%;
}

ul.nav li:hover a::after {
    width: 80%;
}

ul.nav li a[tabindex] {
    opacity: 0.2;
    pointer-events: none;

}

ul.nav li:hover a[tabindex]::after {
    width: 0%;
}

/* foot PC*/

#foot{
    position: relative;
    z-index: 0;
}

.bnr_wrap ul {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
}

.bnr_wrap li {
    width: 320px;
    margin-right: 10px;
}

.bnr_wrap li:last-of-type {
    margin-right: 0;
}

.bnr_wrap li a {
    transition: 0.2s;
}

.bnr_wrap li a:hover {
    opacity: 0.75;
}

.bnr_wrap li img {
    width: 100%;
}

.sns_wrap {
    display: flex;
    justify-content: center;
    font-family: "Oswald", "M PLUS 1", sans-serif;
    font-weight: 900;
    font-size: 16px;
    letter-spacing: 1px;
    margin-bottom: 40px;
    text-align: center;
}

#foot .sns_wrap img {
    width: 40px;
    height: 40px;
}

.official_x {
    margin-right: 10px;
}

.official_x,
.share {
    width: min(85%, 360px);
    border-radius: 400px;
    background: #ae0004;
    color: #fff;
    display: flex;
    align-items: center;
    padding: 10px 0;
}

.official_x p,
.share p {
    width: 50%;
    font-size: min(3.5vw, 16px);
}

.share #sns_button {
    width: 50%;
    display: flex;
    justify-content: center;
}

.share #sns_button a {
    display: block;
    margin-right: 8px;
}

.copy {
    font-size: 12px;
    display: block;
    text-align: center;
    pointer-events: none;
    margin-bottom: 40px;
}

.hamb {
    display: none;
}

@keyframes head_bg {
    0% {
        background-size: 110%;
    }

    100% {
        background-size: 100%;
    }
}

.sub_head {
    background-color: #333;
    background-image: url(../images/bg_header_blood.webp);
    background-repeat: no-repeat;
    background-size: 100%;
    background-position: top;
    animation: head_bg 2s forwards;
    font-family: "Oswald", sans-serif;
    color: #fff;
    text-align: center;
    line-height: 1;
    padding: 4.5em 0;
    margin-bottom: 80px;
}

.sub_head h1 {
    font-weight: 900;
    font-size: min(10vw, 60px);
}

.sub_head small {
    display: block;
    font-weight: 400;
    font-size: min(3.5vw, 16px);
    margin-top: 1em;
}

/* inview */

.inview {
    opacity: 0;
}

.inview_up {
    animation: up 1s forwards;
}


@keyframes up {
    0% {
        opacity: 0;
        transform: translateY(60px);
    }

    100% {
        opacity: 1;
        transform: translateY(0px);
    }
}

/* PC */
main {
    text-align: left;
}

main article {
    width: min(90%, 1200px);
    margin: 0 auto;
}

article section {
    margin-bottom: 80px;
    position: relative;
}

article section h2 {
    background: url(../images/ttl_bg.webp);
    background-size: 100%;
    background-position: 0px 20%;
    background-repeat: no-repeat;
    font-family: "Oswald", sans-serif;
    font-weight: 400;
    letter-spacing: 0.05em;
    color: #fff;
    font-size: min(4.5vw, 42px);
    padding: 0.5em 0 calc(0.5em + 120px) 80px;
    box-sizing: border-box;
    line-height: 1;
    border-radius: 80px 0 0 0;
}

section .content_area {
    background: #fff;
    border: 6px solid #ae0004;
    border-radius: 80px 0 40px 40px;
    box-sizing: border-box;
    margin-top: -120px;
    padding: min(4em, 80px) min(3em, 60px);
}

.mono_01 {
    content: "";
    display: block;
    width: min(100%, 300px);
    height: 300px;
    background: url(../images/mono/mono_03.webp);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    z-index: -1;
    left: min(-11vw, -185px);
    top: 80px;
}

.mono_02 {
    content: "";
    display: block;
    width: min(100%, 300px);
    height: 300px;
    background: url(../images/mono/mono_04.webp);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    z-index: -1;
    right: min(-11vw, -185px);
    bottom: 80px;
}

.content_area {
    position: relative;
    z-index: 3;
}

/* TAB */

@media screen and (max-width:1280px) {
    .onlySp {
        display: block;
    }

    .onlyPc {
        display: none;
    }

    #page_all {
        overflow-x: hidden;
    }

    #pan_box {
        overflow-x: scroll;
        padding-top: 60px;
    }

    #head {
        height: 60px;
    }

    .head_wrap {
        padding: 0 20px;
    }

    #head h1 {
        width: auto;
    }

    #head h1 img {
        width: auto;
        height: 50px;
        margin-top: 5px;
    }

    #pan_box {}

    .hamb {
        display: block;
        width: 40px;
        height: 28px;
        position: absolute;
        right: 20px;
        top: 16px;
        cursor: pointer;
    }

    .hamb span {
        display: block;
        width: 40px;
        height: 4px;
        background: #000;
        position: absolute;
        transition: 0.2s;
    }

    ul.nav {
        right: -260px;
        top: 60px;
        transition: 0.2s;
        background: #fff;
        display: block;
        width: 240px;
        position: absolute;
        height: 100vh;
        box-shadow: 0 0 4px #ccc;
        overflow-y: scroll;
    }

    ul.nav.active {
        right: 0;
        z-index: 9998;
    }

    ul.nav li a {
        margin: 0 auto;
    }

    ul.nav li::before,
    ul.nav li::after {
        content: "";
        display: block;
        width: 10px;
        height: 10px;
        background: url(../images/sight.webp);
        background-size: contain;
        background-position: center center;
        background-repeat: no-repeat;
        position: absolute;
        top: 32px;
    }

    ul.nav li::before {
        left: min(10vw, 20px);
    }

    ul.nav li::after {
        right: min(10vw, 20px);
    }

    ul.nav li:last-of-type::after {
        top: 32px;
        right: 20px;
    }

    ul.nav div::after {
        content: "";
        display: block;
        width: 80%;
        margin: 0 auto;
        border-bottom: 1px dotted #ccc;
    }

    .hamb span:nth-of-type(1) {
        top: 0;
        left: 0;
    }

    .hamb span:nth-of-type(2) {
        top: 12px;
        left: 0;
    }

    .hamb span:nth-of-type(3) {
        top: 24px;
        left: 0;
    }

    .hamb.active span:nth-of-type(1) {
        top: 12px;
        transform: rotate(45deg);
    }

    .hamb.active span:nth-of-type(2) {
        opacity: 0;
    }

    .hamb.active span:nth-of-type(3) {
        top: 12px;
        transform: rotate(-45deg);
    }

    .bnr_wrap ul {
        width: 95%;
        margin: 0 auto 40px;
    }

    .sub_head {
        margin-bottom: 120px;
        padding: 3.5em 0;
    }

    article h2 {
        position: relative;
    }

    .mono_01 {
        content: "";
        display: block;
        width: min(100%, 300px);
        height: 300px;
        background: url(../images/mono/mono_03.webp);
        background-position: center center;
        background-repeat: no-repeat;
        background-size: contain;
        position: absolute;
        z-index: 0;
        left: inherit;
        right: 0;
        top: 0;
        margin: -115px auto;
    }

    .mono_02 {
        content: "";
        display: none;
    }
}

/* SP */

@media screen and (max-width:800px) {
    body {
        background-size: 80px;
    }

    #pan_box {
        -ms-overflow-style: auto;
        scrollbar-width: thin;
    }

    ul.nav.active {
        width: 100%;
    }

    ul.nav li a {
        width: 80%;
        padding: 10px 0 10px 0;
    }

    ul.nav li::after,
    ul.nav li::before {
        top: 25px;
    }

    ul.nav li::before {
        left: min(10vw, 80px);
    }

    ul.nav li::after {
        right: min(10vw, 80px);
    }

    ul.nav li:last-of-type::after {
        top: 25px;
        right: min(10vw, 80px);
    }


    .sns_wrap {
        flex-direction: column;
    }

    .sns_wrap .official_x {
        margin: 0 auto 20px;
    }

    .sns_wrap .share {
        margin: 0 auto;
    }

    #foot .sns_wrap img {
        width: 32px;
        height: 32px;
    }

    .bnr_wrap ul {
        flex-direction: column;
    }

    .bnr_wrap li {
        width: min(85%, 320px);
        margin: 0 auto 10px;
    }

    .bnr_wrap li:last-of-type {
        margin: 0 auto;
    }

    article section {
        position: relative;
        margin-bottom: 40px;
    }

    article section h2 {
        border-radius: 40px 0 0 0;
        background-size: 120%;
        background-position: 0px -10vw;
        padding: 0.5em 0 calc(0.5em + 120px) 40px;
    }

    section .content_area {
        border: 2px solid #ae0004;
        border-radius: 40px 0 20px 20px;
        padding: min(4em, 80px) min(2em, 60px);
    }

    .mono_01 {
        right: 0;
        left: 0;
        margin: -115px auto;
    }
    
    @keyframes head_bg {
    0% {
        background-size: 140%;
    }

    100% {
        background-size: 125%;
    }
}
}
