@import url('https://fonts.googleapis.com/css2?family=Zen+Kurenaido&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
}

body {
    background-color: #FB9E3A;
}


/*--------------------------------------
background
--------------------------------------*/
.p5-container {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 0;
}


/*--------------------------------------
main
--------------------------------------*/
main {
    min-height: 100vh;
    margin-top: 100px;
}

section {
    position: relative;
    width: 100%;
    margin-bottom: 50px;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 50px 0;
}

.section-title {
    font-size: 4rem;
    font-weight: 700;
    font-family: 'Zen Kurenaido';
    color: #FFFFFF;
    text-align: center;
}

.section-title span {
    font-size: 6rem;
}

.container h3 {
    margin-bottom: 30px;
    text-align: center;
    font-size: 3rem;
    font-family: 'Zen Kurenaido';
    color: #FFFFFF;
}

.container p {
    margin: 10px 0;
    text-align: center;
    font-size: 2rem;
    font-family: 'Zen Kurenaido';
    color: #FFFFFF;
}

.how-to .container {
    background-color: #282828b3;
    border: 1px solid #ffffff33;
    border-radius: 15px;
    padding: 30px 50px;
    margin-top: 100px;
    box-shadow: 0 8px 16px #0000004d;
}

.how-to h3 {
    font-size: 2.5rem;
    text-align: center;
    color: #FFFFFF;
}

.how-to .videoWrap {
    display: flex;
    justify-content: center;
    margin-bottom: 50px;
}

.how-to video {
    width: 500px;
}

.how-to ol {
    padding-left: 50px;
    color: #e0e0e0;
}

.how-to ol li {
    margin-bottom: 25px;
    font-size: 1.4em;
}

.how-to ol li::marker {
    color: #FFEB55;
    font-weight: bold;
    font-size: 1.3em;
}

.link-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 20px;
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 12px #00000014;
    margin: 1em 0;
    transition: box-shadow 0.3s ease;
}

.link-container:hover {
    box-shadow: 0 6px 16px #0000001f;
}

.link-container a {
    color: #333;
    text-decoration: none;
    font-size: 1.2rem;
    margin-right: 15px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.link-container a:hover {
    color: #007bff;
}

.link-container .copy-btn {
    background-image: linear-gradient(to right, #6a11cb 0%, #2575fc 100%);
    color: #FFFFFF;
    border: none;
    padding: 10px 18px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.2s ease-in-out;
    flex-shrink: 0;
    box-shadow: 0 2px 4px #0000001a;
}

.link-container .copy-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 10px #00000033;
}

.link-container .copy-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px #0000001a;
}

.how-to .option {
    margin-bottom: 20px;
    padding-top: 20px;
    border-top: 1px solid #ffffff33;
    font-size: 2em;
    font-weight: 700;
    color: #FFFFFF;
    text-align: center;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.asset-card {
    background: #ffffff90;
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 20px;
    text-align: center;
    transition: box-shadow 0.3s ease;
    border: 1px solid #ffffff33;
}

.asset-card:hover {
    box-shadow: 0 20px 40px #00000030;
}

.asset-card p {
    font-size: 1.2rem;
    font-family: none;
    color: #000000;
}

.asset-card img,
.asset-card video {
    width: 100%;
    border: solid 5px #FB9E3A;
}

.asset-card .copy-btn {
    background-image: linear-gradient(to right, #6a11cb 0%, #2575fc 100%);
    color: #FFFFFF;
    border: none;
    padding: 10px 18px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.2s ease-in-out;
    flex-shrink: 0;
    box-shadow: 0 2px 4px #0000001a;
}

.asset-card .copy-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 10px #00000033;
}

.asset-card .copy-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px #0000001a;
}



/*--------------------------------------
スマートフォン向けスタイル
--------------------------------------*/
@media (max-width: 768px) {
    main {
        margin-top: 30px;
    }

    .container {
        padding: 20px 0;
    }

    .container h3 {
        margin-bottom: 20px;
        font-size: 2rem;
    }

    .container p {
        margin: 20px;
        font-size: 1.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .section-title span {
        font-size: 3rem;
    }

    .how-to .container {
        margin: 50px 10px;
        padding: 30px;
    }

    .how-to h3 {
        font-size: 2rem;
    }

    .how-to ol {
        padding-left: 30px;
    }

    .how-to ol li {
        margin-bottom: 20px;
        font-size: 1.2em;
    }

    .how-to ol li::marker {
        font-size: 1.1em;
    }

    .how-to video {
        width: 90%;
    }

    .grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }

    .asset-card h3 {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }

    .asset-card p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
}