@charset "utf-8";

/* すべての要素に適用 */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: Arial, Helvetica, sans-serif;
        background: #bd1e51;
}





.fv {
    position: relative;
    aspect-ratio: 9 / 16;
}

.bg-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.site-header {
    position: fixed;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: .5rem 1rem;
    z-index: 1;
    width: 100%;

}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: #fff;
    margin: 5px 0;
    transition: 0.4s;
}



.logo {
    height: 34px;
    width: 34px;
}


.logo img {
    width: 100%;
}

.name {
    font-family: Georgia, 'Times New Roman', Times, serif;
    color: #fff;
}



/* 1ページ目 */
.page-1 {
    background: #bd1e51;
    aspect-ratio: 9 / 16;
}

.page-header {
    height: 2.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: Georgia, 'Times New Roman', Times, serif;
    font-size: 1.5rem;
    color: #fff;
    letter-spacing: .5rem;
    border-bottom: 1px solid #fff;
    margin: 0 .5rem;
}

.content {
    background: #fff;
    aspect-ratio: 9 / 16;
    margin: 2rem;
}

.content-title {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 1rem;


}

.content-no {
    background: #bd1e51;
    height: 2.5rem;
    width: 2.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    color: #fff;
    font-weight: bold;
    font-size: 1.5rem;
}

.content-name {
    margin-left: 1rem;
    font-weight: bold;
    font-size: 1.5rem;
    color: #bd1e51;
}

.content-img {
    margin: 1rem auto 0;
    width: 200px;
    height: 200px;
}

.content-img img {
    width: 100%;
}


.content-cap {
    font-weight: bold;
    font-size: 1.25rem;
    color: #bd1e51;
    margin: 2rem 2rem 2rem 2rem;
    text-align: center;
}

.content-recommend {
    position: relative;
    margin: 2rem 1rem 0 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    border: solid 1px black;
    border-radius: 5px;
}

.mi {
    position: absolute;
    top: 0%;
    left: 50%;
    transform: translate(-50%, -50%);

    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 3;
    background: #fff;
    padding: 0 1rem;
}

.circle {
    background: #bd1e51;
    height: 2.5rem;
    width: 2.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    color: #fff;
    font-weight: bold;
    font-size: 1.5rem;
    margin-right: .25rem;
}

.mi>p {
    letter-spacing: .15rem;
}

.comment {
    padding: 2rem;
    font-size: 1.5rem;
}