/* リセットCSS */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
}

/* ヘッダー */
header {
    background-image: url('../img/header/h_bg_para.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 120px;
    position: relative;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

/* ロゴ */
.logo {
    position: absolute;
    top: 5px;
    right: 50px;
    width: 7%;
}

.logo img {
    display: block;
    width: 100%;
}


#hamburger-menu-para {
    position: absolute;
    right: 15px;
    /* ハンバーガーメニューの左隣に配置 */
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
}


/* ヘッダーテキスト */
.header-text {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    z-index: 2;
}

.header-text h1 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 5px;
    line-height: 1.2;
    font-family: "stolzl",
        sans-serif;
    font-style: normal;
}

.header-text p {
    font-size: 1.6rem;
    line-height: 1.2;
    font-family: "stolzl",
        sans-serif;
    font-weight: 100;
    font-style: normal;
}

/* ハンバーガーメニュー */
.hamburger-menu {
    flex-shrink: 0;
    z-index: 3;
    margin-right: 130px;
}

.hamburger-btn {
    background: black;
    border: none;
    width: 50px;
    height: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hamburger-btn:hover {
    background: #333;
}

.hamburger-btn span {
    width: 25px;
    height: 4px;
    background: white;
    margin: 2px 0;
    transition: all 0.3s ease;
    display: block;
}

/* ハンバーガーメニューアニメーション */
.hamburger-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger-btn.active span:nth-child(2) {
    opacity: 0;
}

.hamburger-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* フッター */
footer {
    background: #f4f4f4;
    padding: 40px 0;
    text-align: center;
}

footer .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

/* SNSアイコン */
.social-icons {
    display: flex;
    gap: 50px;
    justify-content: center;
    align-items: center;
}

.social-link {
    display: inline-block;
    transition: transform 0.3s ease;
}

.social-link:hover {
    transform: scale(1.1);
}

.social-link img {
    width: 30px;
    height: 30px;
    object-fit: contain;
}

/* フッターロゴ */
.footer-logo {
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-logo img {
    height: 100px;
    width: auto;
    max-width: 300px;
}

/* コピーライト */
.copyright {
    margin-top: 10px;
}

.copyright small {
    color: #000;
    font-size: 0.8rem;
}

/* メインコンテンツ */
.m-section img {
    width: 100%;
    height: 100%;
    vertical-align: bottom;
    object-fit: cover;
}

.sp_img {
    display: none;
}

/* .ticket-info {
    background: white;
    padding: 30px 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.ticket-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    padding: 0 20px;
}

.ticket-title {
    font-size: 35px;
    font-weight: bold;
    color: #000;
    margin-bottom: 30px;
    letter-spacing: 0.1em;
}

.ticket-logo {
    margin: 40px 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.ticket-logo img {
    height: 200px;
    width: auto;
    max-width: 400px;
}

.coming-soon {
    font-size: 3rem;
    font-weight: bold;
    color: #000;
    margin-top: 30px;
    letter-spacing: 0.05em;
}

.decoration-section {
    background-image: url('../img/decoration.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 300px;
    width: 100%;
}

.decoration-section-para {
    background-image: url('../img/decoration_para.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 300px;
    width: 100%;
} */

/* SP用ヘッダー */
@media screen and (max-width: 768px) {
    header {
        background-image: url('../img/header/h_bg_para_sp.jpg');
        background-size: 100% 100%;
        /* 横幅・高さともに100% */
        background-position: center;
        background-repeat: no-repeat;
        height: 60px;
        position: relative;
    }


    #hamburger-menu-para {
        position: absolute;
        right: 0px;
        /* ハンバーガーメニューの左隣に配置 */
        top: 50%;
        transform: translateY(-50%);
        z-index: 2;
    }

    .header-para .container {
        padding: 0;
    }

    .container {
        max-width: 100%;
        margin: 0;
        padding: 0;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
        position: relative;
    }

    /* ロゴ */
    .logo {
        margin-left: 0px;
        margin-top: 0px;

        position: absolute;
        top: 5px;
        right: 50px;
        width: 10%;
    }

    /* ヘッダーテキスト */
    .header-text {
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        text-align: center;
        color: white;
        z-index: 2;
    }

    #header-text-para {
        left: 33%;
    }

    .header-text h1 {
        font-size: 1.2rem;
        font-weight: bold;
        margin-bottom: 5px;
        line-height: 1;
    }

    .header-text p {
        font-size: 1rem;
        font-weight: normal;
        line-height: 1;
    }

    /* ハンバーガーメニュー */
    .hamburger-menu {
        flex-shrink: 0;
        z-index: 3;
        margin-right: 0;
    }

    .hamburger-btn {
        background: black;
        border: none;
        width: 60px;
        height: 50px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .hamburger-btn:hover {
        background: #333;
    }

    .hamburger-btn span {
        width: 25px;
        height: 4px;
        background: white;
        margin: 2px 0;
        transition: all 0.3s ease;
        display: block;
    }

    /* ハンバーガーメニューアニメーション */
    .hamburger-btn.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .hamburger-btn.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger-btn.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    .pc_img {
        display: none;
    }

    .sp_img {
        display: block;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .social-icons {
        gap: 40px;
    }
}