@charset "UTF-8";
header.header {
    position: relative;
}

main.main {
    padding-top: 0;
    margin-top: 0;
}

.header-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
}

.header__subttl {
    display: inline-block;
    text-align: center;
    padding: 2px 0;
}

.section-comic {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.section-comic picture {
    max-width: 650px;
    width: 100%;
    height: auto;
    box-sizing: border-box;
}

.page-1 {
    padding: 20px;
}

.section-cta {
    background-color: #e02629;
    color: #fff;
    text-align: center;
    padding: 30px 20px;
    margin: 50px 0 50px;
    position: relative;
}

.section-cta p {
    font-family: "M PLUS Rounded 1c", sans-serif;
    font-weight: 700;
    font-size: 28px;
    margin: 0;
    line-height: 1.5;
}

.section-cta::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 25px solid transparent;
    border-top-color: #e02629;
    border-bottom: none;
}

.fixMenu--comic {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 10;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    padding: 0.75rem 2rem;
    background-color: rgba(0, 0, 0, 0.7);
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.fixMenu--comic.is-show {
    transform: translateY(0);
}

.fixMenu--comic .fixMenu__txt {
    color: #fff;
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1.5;
}

.fixMenu--comic .fixMenu__contact {
    flex-shrink: 0;
    width: auto;
    padding: 0 2.5rem;
    height: 3.75rem;
    font-size: 1.5rem;
}

@media screen and (max-width: 768px) {
    .section-cta {
        padding: 20px 15px;
        margin-bottom: 40px;
    }
    .section-cta p {
        font-size: 20px;
    }
    .section-cta::after {
        border-width: 20px;
        border-top-color: #e02629;
    }
    .fixMenu--comic {
        flex-direction: column;
        gap: 0.5rem;
        padding: 0.625rem 1rem;
    }
    .fixMenu--comic .fixMenu__txt {
        font-size: 1.2rem;
        text-align: center;
    }
    .fixMenu--comic .fixMenu__contact {
        width: 100%;
        padding: 0 1.5rem;
        height: 3rem;
        font-size: 1.5rem;
    }
}