
/*=========================================================================== 
/////////////////////////////////////////////////////////////////////////////
-------------PC--------------------------------------------------------------
/////////////////////////////////////////////////////////////////////////////
=========================================================================== */
/*========================= 共通 =========================*/
.l-feature h1,
.l-feature h2,
.l-feature h3,
.l-feature h4,
.l-feature p,
.l-feature li,
.l-feature a {
    color: #555;
    line-height: 1.5;
}
.l-feature h2 {
    font-size: 2.0rem;
}
.l-feature p {
    margin-top: 30px;
}
.l-feature .flex {
    display: flex;
    justify-content: space-between;
    align-items: start;
}
.l-feature .flex > div,
.l-feature .flex > div + div {
    width: 50%;
}
.l-feature img {
    width: 100%;
    height: auto;
}
.l-feature .full-order-tshirts-contact {
    background-repeat: no-repeat;
}

/*========================= .l-lead =========================*/
.l-lead {
    margin-top: 40px;
}
.l-lead p {
    font-size: 1.5rem;
}

/*========================= .l-begin =========================*/
.l-begin {
    margin-top: 80px;
}
.l-begin h2 {
    font-size: 2.2rem;
    font-weight: bold;
}
.l-begin p {
    font-size: 1.5rem;
}
.l-begin .p-begin__img {
    max-width: 390px;
}

/*========================= .l-intro & .l-blog =========================*/
.l-intro h2,
.l-blog h2 {
    text-align: center;
}

/*========================= .l-intro =========================*/
.l-intro {
    margin-top: 160px;
}
.l-intro .flex {
    margin-top: 25px;
    gap: 30px;
}
.l-intro .flex li {
    width: 25%;
}

/*========================= .l-blog =========================*/
.l-blog {
    margin-top: 70px;
}
.l-blog .flex {
    margin-top: 25px;
    gap: 30px;
}
.l-blog .flex li {
    width: 25%;
}
.l-blog .flex h3 {
    margin-top: 20px;
    font-size: 16px;
}
.l-blog .flex p {
    margin-top: 20px;
    font-size: 14px;
}


/*=========================================================================== 
/////////////////////////////////////////////////////////////////////////////
-------------SP--------------------------------------------------------------
/////////////////////////////////////////////////////////////////////////////
=========================================================================== */
@media  (max-width: 768px) {
    /*========================= 共通 =========================*/
    .l-lead,
    .l-begin,
    .l-intro,
    .l-blog {
        padding: 0 calc(20 / 375 * 100vw);
    }
    .l-feature h2 {
        font-size: calc(16 / 375 * 100vw);
    }
    .l-feature .flex {
        display: block;
    }
    .l-feature .flex > div,
    .l-feature .flex > div + div {
        width: 100%;
    }

    /*========================= .l-lead =========================*/
    .l-lead {
        margin-top: calc(20 / 375 * 100vw);
    }
    .l-lead p {
        font-size: calc(14 / 375 * 100vw);
    }

    /*========================= .l-begin =========================*/
    .l-begin {
        margin-top: calc(60 / 375 * 100vw);
    }
    .l-begin h2 {
        font-size: calc(18 / 375 * 100vw);
    }
    .l-begin p {
        font-size: calc(14 / 375 * 100vw);
    }
    .l-begin .p-begin__img {
        max-width: 320px;
        margin: calc(20 / 375 * 100vw) auto 0;
    }

    /*========================= .l-intro =========================*/
    .l-intro {
        margin-top: calc(80 / 375 * 100vw);
    }
    .l-intro .flex {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        margin-top: calc(20 / 375 * 100vw);
        gap: calc(20 / 375 * 100vw);
    }
    .l-intro .flex li {
        width: 45%;
    }

    /*========================= .l-blog =========================*/
    .l-blog {
        margin-top: calc(45 / 375 * 100vw);
    }
    .l-blog .flex {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        margin-top: calc(20 / 375 * 100vw);
        gap: calc(20 / 375 * 100vw);
    }
    .l-blog .flex li {
        width: 45%;
    }
    .l-blog .flex h3 {
        margin-top: calc(15 / 375 * 100vw);
        font-size: calc(14 / 375 * 100vw);
    }
    .l-blog .flex p {
        margin-top: calc(15 / 375 * 100vw);
        font-size: calc(12 / 375 * 100vw);
    }
}


/*/////////////////////////////////////////
----------------------------------------
youtube - popup
----------------------------------------
/////////////////////////////////////////*/
img.videoThumb {
    cursor: pointer;
}
img.videoThumb:hover {
    opacity: 0.8;
}
.modalContent {
    background-color: #fefefe;
    padding: 0;
    border: 1px solid #888;
    position: relative;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 100%;
    aspect-ratio: 16 / 9;
    max-width: 600px;
}
.modalContent iframe {
    position: absolute;
    width: 100%;
    height: 100%;
}
button.closeBtn {
    display: inline-block;
    vertical-align: middle;
    color: #FFF;
    line-height: 1;
    width: 1.6rem;
    height: 0.2rem;
    background: currentColor;
    border-radius: 0.1rem;
    position: absolute;
    transform: rotate(45deg);
    border: none;
    right: -35px;
    top: 7px;
    opacity: 0.6;
    transition: 0.2s ease-in-out;
}
button.closeBtn:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: inherit;
    border-radius: inherit;
    transform: rotate(90deg);
}
button.closeBtn:hover {
    opacity: 1;
}
@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
    }
}
@keyframes fadeOut {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        transform: translateY(60px);
    }
}
.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background-color: rgba(0, 0, 0, 0.6);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    pointer-events: none;
}
.play-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: block;
    width: 0;
    height: 0;
    border-left: 18px solid #fff;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
}