@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: #BA487F;
}


/*--------------------------------------
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;
}

.wrap {
    margin-bottom: 100px;
}

.wrap:last-child {
    margin-bottom: 0;
}

.wrap p {
    font-size: 1.3rem;
}

#price-list h3 {
    font-size: 3rem;
    margin-bottom: 30px;
    color: #FFFFFF;
}

#price-list h4 {
    text-align: center;
    font-size: 2rem;
    font-weight: 500;
    font-family: 'Zen Kurenaido';
    margin-bottom: 10px;
    color: #FFFFFF;
}

#price-list table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
    background-color: #0000004d;
    color: #FFFFFF;
}

#price-list th,
#price-list td {
    border: 1px solid #FFFFFF40;
    padding: 15px;
}

#price-list th {
    background-color: #FFFFFF33;
    font-weight: bold;
    text-align: center;
}

#price-list .note {
    font-size: 1.2rem;
    color: #FFFFFF;
}

#precautions p {
    margin: 50px 0;
    font-size: 1.5rem;
}

iframe {
    position: relative;
    width: 100%;
    height: 1200px;
    margin: 50px 0;
    cursor: default;
}



/*--------------------------------------
スマートフォン向けスタイル
--------------------------------------*/
@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;
    }

    #price-list h3 {
        font-size: 2.5rem;
    }

    #price-list table {
        width: 90%;
        margin: auto;
        margin-bottom: 20px;
    }

    #precautions p {
        margin: 30px 20px;
        font-size: 1.2rem;
    }
}