@charset 'utf-8';
@import url('https://fonts.googleapis.com/css2?family=Special+Gothic:wght@400..700&display=swap');
/*==============
    common
===============*/
:root {
    /* color */
    --black: #1a1a1a;
    --gray: #262626;
    --red: #c94938;
    --Darkred: #ba4434;
    /* font */
    --en: "Special Gothic", sans-serif;
    --ja: "Yu Gothic", "游ゴシック体", YuGothic, sans-serif;
}
::selection {
    background: var(--red);
    color: white;
}
::-moz-selection {
    background: var(--red);
    color: white;
}
html {
    font-size: 10px;
    scroll-behavior: smooth;
}
img {
    user-drag: none;
    -webkit-user-drag: none;
    -moz-user-select: none;
    image-rendering: -webkit-optimize-contrast;
}
body {
    font-size: 1.6rem;
    font-family: var(--ja);
    font-weight: 600;
    color: white;
    animation: fadeIn 4s forwards;
    background: var(--black);
}
@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
a {
    text-decoration: none;
    color: initial;
    transition: 0.4s all;
}
.pc {
    display: block;
}
.sp {
    display: none;
}
.wrap {
    width: 100%;
    max-width: 1080px;
    margin: 0 auto;
}
.flex {
    display: flex;
}
.text-animation {
    display: inline-block;
    overflow: hidden;
    line-height: 1.5;
}
.text-animation span {
    display: inline-block;
    opacity: 0;
    transform: translateY(100%);
    animation: fadeInUp 0.5s ease-out forwards;
    animation-delay: calc(var(--delay) * 0.08s);
}
@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(100%);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}
.anime {
    opacity: 0;
    filter: blur(5px);
    transform: translateY(50px);
    transition: opacity 0.6s ease, filter 0.6s ease, transform 0.6s ease;
    will-change: opacity, transform, filter;
}
.anime-on {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
}
h2 {
    text-align: center;
    display: block !important;
}
h2 span {
    font-size: clamp(40px, calc(40px + 40 * ((100vw - 320px) / 1120)), 80px);
    font-family: var(--en);
    font-weight: 700;
    line-height: 1;
}
.coming-soon {
    font-size: clamp(32px, calc(32px + 18 * ((100vw - 320px) / 1120)), 50px);
    font-family: var(--en);
    color: #808080;
    text-align: center;
}
@media screen and (max-width: 1080px) {
    .wrap {
        width: 90%;
    }
}
@media screen and (max-width: 768px) {
    .pc {
        display: none;
    }
    .sp {
        display: block;
    }
}
.curtain-animation {
    position: relative;
    display: inline-block;
    overflow: hidden;
}
.curtain-animation img {
    opacity: 0;
    animation: fadeIns 0.1s forwards;
    animation-delay: 1.2s;
}
.curtain-animation::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--Darkred);
    transform: scaleX(0);
    transform-origin: left;
    animation: curtainMove 1.2s cubic-bezier(0.86, 0, 0.07, 1) forwards;
    animation-delay: 0.8s;
}
@keyframes fadeIns {
    0% {
        opacity: 0;
    }
    49% {
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 1;
    }
}
@keyframes curtainMove {
    0% {
        transform: scaleX(0);
        transform-origin: left;
    }
    50% {
        transform: scaleX(1);
        transform-origin: left;
    }
    50.1% {
        transform: scaleX(1);
        transform-origin: right;
    }
    100% {
        transform: scaleX(0);
        transform-origin: right;
    }
}
/*==============
    main
===============*/
#main {
    width: 100%;
    height: 100vh;
    background: url(../../img/special/ep-blast/main.jpg);
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}
#main h1 {
    position: absolute;
    bottom: clamp(64px, calc(64px + 16 * ((100vw - 320px) / 1120)), 80px);
    left: clamp(32px, calc(32px + 48 * ((100vw - 320px) / 1120)), 80px);
    max-width: clamp(300px, calc(300px + 350 * ((100vw - 320px) / 1120)), 650px);
}
#main .logo {
    max-width: clamp(80px, calc(80px + 50 * ((100vw - 320px) / 1120)), 130px);
    position: fixed;
    top: clamp(16px, calc(16px + 8 * ((100vw - 320px) / 1120)), 24px);
    left: clamp(16px, calc(16px + 8 * ((100vw - 320px) / 1120)), 24px);
    z-index: 10;
}
#main::before {
    content: "BALLISTIK BOYZ";
    writing-mode: vertical-rl;
    position: absolute;
    top: 50%;
    left: 10px;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    font-family: var(--en);
    font-size: clamp(13px, calc(13px + 3 * ((100vw - 320px) / 1120)), 16px);
}
#main::after {
    content: "BALLISTIK BOYZ";
    writing-mode: vertical-rl;
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    font-family: var(--en);
    font-size: clamp(13px, calc(13px + 3 * ((100vw - 320px) / 1120)), 16px);
}
/* links */
#main .links {
    background: #ffffff59;
    padding: 24px 32px;
    display: inline-block;
    position: absolute;
    top: 1.5vw;
    right: 1.5vw;
}
#main .links .head {
    font-family: var(--en);
    margin-bottom: 8px;
    display: inline-block;
    font-size: 1.8rem;
}
#main .links ul li {
    margin-bottom: 8px;
}
#main .links ul li a {
    color: #fff;
    font-family: var(--en);
}
#main .links ul li a:hover{
    opacity: 0.5;
}
#main .links ul li a span {
    font-family: var(--en);
    border: 1px solid #fff;
    padding: 3px;
    display: inline-block;
    width: 70px;
    text-align: center;
    font-size: 12px;
    margin-right: 16px;
}
@media screen and (max-width: 1240px) {
    #main .links {
        top: initial;
        bottom: 1.5vw;
    }
}
@media screen and (max-width: 1080px) {
    #main {
        background: url(../../img/special/ep-blast/main-tb.jpg);
        background-size: cover;
        background-position: center -150px;
    }
}
@media screen and (max-width: 768px) {
    #main {
        background: url(../../img/special/ep-blast/main-sp.jpg);
        background-size: cover;
        background-position: center clamp(-100px, calc(-100px + -100 * ((100vw - 320px) / 448)), -200px);
    }
    #main h1{
        bottom: 27vh;
    }
    #main .links{
        bottom: 9vw;
        left: 1.5vw;
    }
}
/*==============
    lead
===============*/
#lead ::selection {
    background: white;
    color: var(--red);
}
#lead ::-moz-selection {
    background: white;
    color: var(--red);
}
#lead {
    padding: clamp(80px, calc(80px + 70 * ((100vw - 320px) / 1120)), 150px) 0;
    background: var(--red);
    position: relative;
    z-index: 1;
    overflow: hidden;
}
#lead .text {
    font-size: clamp(16px, calc(16px + 2 * ((100vw - 320px) / 1120)), 18px);
    text-align: center;
    line-height: 1.8;
    font-weight: 600;
}
/* bg animation */
#lead .bgTxt {
    font-family: var(--en);
    font-size: 210px;
    font-weight: 600;
    display: flex;
    overflow: hidden;
    white-space: nowrap;
    color: var(--Darkred);
    letter-spacing: -0.5rem;
    position: absolute;
    top: calc(50% - 120px);
    left: 0%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    z-index: -1;
}
#lead .bgTxt p {
    padding: 0 24px;
    margin: 0;
    line-height: 1;
}
#loop-container {
    display: flex;
    width: max-content;
    animation: scroll-right 300s linear infinite;
}
@keyframes scroll-right {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}
@media screen and (max-width: 768px) {
    #lead .text {
        text-align: left;
    }
}
/*==============
    product
===============*/
#product {
    position: relative;
    padding: clamp(80px, calc(80px + 70 * ((100vw - 320px) / 1120)), 150px) 0 clamp(100px, calc(100px + 140 * ((100vw - 320px) / 1120)), 240px);
    clip-path: inset(0);
}
#product::after {
    content: "";
    background-image: url(../../img/special/ep-blast/bg.jpg);
    background-size: cover;
    background-position: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    pointer-events: none;
}
#product .detail-list {
    margin-top: clamp(40px, calc(40px + 16 * ((100vw - 320px) / 1120)), 56px);
}
#product .detail-list li {
    display: flex;
    justify-content: space-between;
    padding-bottom: clamp(56px, calc(56px + 24 * ((100vw - 320px) / 1120)), 80px);
    margin-bottom: clamp(56px, calc(56px + 24 * ((100vw - 320px) / 1120)), 80px);
    border-bottom: 2px dotted #fff;
}
#product .detail-list li:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}
#product .detail-list li .imgWrap {
    width: 46.3%;
    position: relative;
}
#product .detail-list li .imgWrap::after {
    content: "";
    width: 100%;
    aspect-ratio: 1 / 1;
    background: var(--Darkred);
    position: absolute;
    top: clamp(16px, calc(16px + 14 * ((100vw - 320px) / 1120)), 30px);
    left: clamp(-16px, calc(-16px + -24 * ((100vw - 320px) / 1120)), -40px);
    z-index: -1;
}
#product .detail-list li .imgWrap img {
    filter: drop-shadow(4px 4px 8px rgba(0, 0, 0, 0.5));
}
#product .detail-list li .detail {
    width: 50%;
}
#product .detail-list li .detail .typeWrap {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-bottom: clamp(14px, calc(14px + 2 * ((100vw - 320px) / 1120)), 16px);
}
#product .detail-list li .detail .typeWrap .type {
    font-size: clamp(12px, calc(12px + 1 * ((100vw - 320px) / 1120)), 13px);
    font-family: var(--en);
    padding: 5px 10px;
    border: 1px solid #fff;
    display: inline-block;
}
#product .detail-list li .detail .typeWrap .number {
    font-size: clamp(12px, calc(12px + 1 * ((100vw - 320px) / 1120)), 13px);
    font-family: var(--en);
}
#product .detail-list li .detail .productName {
    font-size: clamp(24px, calc(24px + 16 * ((100vw - 320px) / 1120)), 40px);
    line-height: 1;
    padding-bottom: clamp(8px, calc(8px + 2 * ((100vw - 320px) / 1120)), 10px);
}
#product .detail-list li .detail .productName span {
    font-size: clamp(16px, calc(16px + 2 * ((100vw - 320px) / 1120)), 18px);
    padding-left: 10px;
}
#product .detail-list li .detail .price {
    font-size: clamp(18px, calc(18px + 6 * ((100vw - 320px) / 1120)), 24px);
    font-family: var(--en);
}
#product .detail-list li .detail .price span {
    font-size: 1.2rem;
    padding-left: 8px;
}
#product .detail-list li .detail .links {
    display: flex;
    margin-top: clamp(24px, calc(24px + 8 * ((100vw - 320px) / 1120)), 32px);
}
#product .detail-list li .detail .links li {
    width: 100%;
    padding-bottom: 0;
    margin-bottom: 0;
    border-bottom: none;
}
#product .detail-list li .detail .links li a {
    background: var(--Darkred);
    color: #fff;
    line-height: 1;
    display: flex;
    align-items: center;
    max-width: 245px;
    width: 100%;
    padding: clamp(16px, calc(16px + 4 * ((100vw - 320px) / 1120)), 20px) 0;
    justify-content: center;
    border-radius: 50px;
    border: 2px solid var(--Darkred);
    font-size: clamp(14px, calc(14px + 2 * ((100vw - 320px) / 1120)), 16px);
}
#product .detail-list li .detail .links li a:hover {
    background: #fff;
    color: var(--Darkred);
}
.material-symbols-outlined {
    padding-right: 5px;
}
/* accordion */
.accordion-container {
    margin-top: clamp(24px, calc(24px + 16 * ((100vw - 320px) / 1120)), 40px);
}
.accordion-item:last-child {
    margin-top: 10px;
}
.accordion-header {
    width: 100%;
    padding: clamp(16px, calc(16px + 4 * ((100vw - 320px) / 1120)), 20px);
    background: none;
    border: none;
    outline: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: clamp(14px, calc(14px + 2 * ((100vw - 320px) / 1120)), 16px);
    font-weight: bold;
    text-align: left;
    background-color: #1a1a1a;
    color: #fff;
}
.icon {
    position: relative;
    width: 18px;
    height: 18px;
}
.icon::before,
.icon::after {
    content: "";
    position: absolute;
    background-color: #fff;
    transition: transform 0.3s ease;
}
.icon::before {
    top: 7px;
    left: 0;
    width: 16px;
    height: 2px;
}
.icon::after {
    top: 0;
    left: 7px;
    width: 2px;
    height: 16px;
}
.accordion-item.is-open .icon::after {
    transform: rotate(90px);
    opacity: 0;
}
.accordion-item.is-open .icon::before {
    transform: rotate(180deg);
}
.accordion-content {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.3s ease-out;
    overflow: hidden;
}
.accordion-item.is-open .accordion-content {
    grid-template-rows: 1fr;
}
.content-inner {
    min-height: 0;
    padding: 0 20px;
    opacity: 0;
    transition: opacity 0.3s ease, padding 0.3s ease;
}
.accordion-item.is-open .content-inner {
    padding: 32px 24px;
    opacity: 1;
    background: #262626;
    font-size: clamp(14px, calc(14px + 2 * ((100vw - 320px) / 1120)), 16px);
}
.content-inner .ttl {
    font-style: 1.4rem;
    font-weight: bold;
    list-style: 1.3;
    border-bottom: 1px solid #fff;
    padding-bottom: 10px;
    margin-bottom: 24px;
}
.content-inner .layout2 {
    column-count: 2;
    column-gap: 2rem;
}
.content-inner .list {
    margin-bottom: 24px;
}
.content-inner .list:last-child {
    margin-bottom: 0;
}
.content-inner .list li {
    padding-bottom: 0 !important;
    margin-bottom: 0 !important;
    border-bottom: none !important;
}
.content-inner .list.min li {
    text-indent: -1rem;
    padding-left: 1rem;
    font-size: 1.1rem;
}
.content-inner .layout2 li {
    text-indent: -1rem;
    padding-left: 1rem;
    font-size: 1.1rem;
    break-inside: avoid;
}
.content-inner .layout1.mt {
    margin-top: 16px;
}
@media screen and (max-width: 768px) {
    #product .detail-list li {
        flex-wrap: wrap;
    }
    #product .detail-list li .imgWrap,
    #product .detail-list li .detail {
        width: 100%;
    }
    #product .detail-list li .imgWrap {
        width: 70%;
        margin: 0 auto;
        margin-bottom: clamp(40px, calc(40px + 16 * ((100vw - 320px) / 448)), 56px);
    }
    #product .detail-list li .detail .links {
        justify-content: space-between;
    }
    #product .detail-list li .detail .links li {
        width: 48%;
    }
    #product .detail-list li .detail .links li a {
        max-width: initial;
    }
}
@media screen and (max-width: 500px) {
    #product .detail-list li .detail .links {
        flex-wrap: wrap;
        row-gap: 10px;
    }
    #product .detail-list li .detail .links li {
        width: 100%;
    }
    .content-inner .layout2 {
        column-count: 1;
    }
    .content-inner .layout1 li {
        width: 100%;
    }
}
/*==============
    benefit
===============*/
#benefit {
    position: relative;
    padding: clamp(80px, calc(80px + 70 * ((100vw - 320px) / 1120)), 150px) 0;
    clip-path: inset(0);
}
#benefit::after {
    content: "";
    background-image: url(../../img/special/ep-blast/benefit-bg.jpg);
    background-size: cover;
    background-position: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
}
#benefit h3 {
    text-align: center;
    display: block;
    margin-bottom: 32px;
}
#benefit h3 span {
    font-size: clamp(26px, calc(26px + 30 * ((100vw - 320px) / 1120)), 56px);
    font-weight: 900;
    line-height: 1;
}
#benefit .cap {
    margin-bottom: clamp(40px, calc(40px + 24 * ((100vw - 320px) / 1120)), 64px);
}
#benefit .cap li {
    font-size: clamp(16px, calc(16px + 2 * ((100vw - 320px) / 1120)), 18px);
    text-align: center;
}
#benefit .list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    row-gap: clamp(56px, calc(56px + 16 * ((100vw - 320px) / 1120)), 72px);
}
#benefit .list li {
    width: 48.52%;
}
#benefit .list li h4 {
    font-size: clamp(18px, calc(18px + 6 * ((100vw - 320px) / 1120)), 24px);
    text-align: center;
    font-weight: 900;
    margin-bottom: clamp(10px, calc(10px + 6 * ((100vw - 320px) / 1120)), 16px);
}
#benefit .list li .imgwrap img {
    border-radius: 10px;
    margin-bottom: 16px;
}
#benefit .list li .notice {
    margin-bottom: clamp(16px, calc(16px + 16 * ((100vw - 320px) / 1120)), 32px);
}
#benefit .list li .notice .cap {
    font-size: clamp(12px, calc(12px + 1 * ((100vw - 320px) / 1120)), 13px);
    text-indent: -1.5rem;
    padding-left: 1.5rem;
    display: block;
    margin-bottom: 0;
}
#benefit .list li .more,
#benefit .serial-benefit .more {
    width: 76.34%;
    margin: 0 auto;
    padding: 16px 0;
    border: 1px solid #fff;
    color: #fff;
    display: block;
    text-align: center;
    border-radius: 50px;
    overflow: hidden;
    position: relative;
    z-index: 1;
}
#benefit .list li .more::after,
#benefit .serial-benefit .more::after {
    background: #fff;
    position: absolute;
    top: 0;
    left: 0;
    content: '';
    width: 100%;
    height: 100%;
    transform: scale(0, 1);
    transform-origin: left top;
    transition: .2s cubic-bezier(0.45, 0, 0.55, 1);
    z-index: -1;
}
#benefit .list li .more:hover,
#benefit .serial-benefit .more:hover {
    color: #2e8eb0;
}
#benefit .list li .more:hover::after,
#benefit .serial-benefit .more:hover::after {
    transform: scale(1, 1);
}
#benefit .serial-benefit {
    padding-top: clamp(72px, calc(72px + 28 * ((100vw - 320px) / 1120)), 100px);
    margin-top: clamp(72px, calc(72px + 28 * ((100vw - 320px) / 1120)), 100px);
    border-top: 2px dotted;
}
#benefit .serial-benefit .lead {
    font-size: clamp(18px, calc(18px + 6 * ((100vw - 320px) / 1120)), 24px);
    text-align: center;
}
#benefit .serial-benefit .more {
    max-width: 400px;
    margin-top: clamp(32px, calc(32px + 8 * ((100vw - 320px) / 1120)), 40px);
}
#benefit .serial-benefit .coming-soon {
    color: #FFF;
}
@media screen and (max-width: 768px) {
    #benefit .list li {
        width: 100%;
    }
    #benefit .list li .more,
    #benefit .serial-benefit .more {
        width: 100%;
    }
    #benefit .serial-benefit h3 {
        margin-bottom: 16px;
    }
}
/*==============
    campaign
===============*/
#campaign {
    position: relative;
    padding: clamp(80px, calc(80px + 70 * ((100vw - 320px) / 1120)), 150px) 0;
    clip-path: inset(0);
}
#campaign::after {
    content: "";
    background-image: url(../../img/special/ep-blast/bg.jpg);
    background-size: cover;
    background-position: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    pointer-events: none;
}
#campaign .coming-soon {
    margin-top: clamp(40px, calc(40px + 24 * ((100vw - 320px) / 1120)), 64px);
}
/*==============
    footer
===============*/
footer {
    padding: clamp(16px, calc(16px + 8 * ((100vw - 320px) / 1120)), 24px) 0;
    background: var(--Darkred);
}
footer p {
    color: #fff;
    font-size: 10px;
    font-family: var(--en);
    text-align: center;
}