html {
    min-height: 100%;
    position: relative;
}

body {
    text-align: center;
    font-family: 'Libre Franklin',
        sans-serif;
    margin: 0px;
    -webkit-text-size-adjust: 100%;
    margin-bottom: 5vh;
}

body::before {
    background: url('../images/カラフル_光_統合.jpg') no-repeat center;
    background-size: 100% auto;
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding-bottom: 0px;
    content: "";
    z-index: -1;
}

@media screen and (min-width:480px) {
    body::before {
        background-size: 100% auto;
    }

}

@media screen and (min-width:768px) and (max-width:1024px) {
    body::before {
        background-size: 100% auto;
    }

}

@media screen and (min-width:1024px) {
    body::before {
        background-size: 70% auto;
    }

}


#content {
    min-height: calc(95vh - 58px);
    background-color: rgba(243, 243, 248, 0.6);

    font-family: MyFont;

}

#title-component {
    min-height: calc(100vh - 58px);
    position: relative;
}

main {
    position: relative;
    z-index: 50;
}

.sub-title {
    width: 250px;
    border-top: 1px solid black;
    margin-left: auto;
    margin-right: auto;
}

.top-section {
    margin-block-start: 0em;
}

.kouen-by {
    font-size: calc(2vw + 12px);
    font-family: MyFont;
}

#kouen-title {
    font-size: calc(9vw + 15px);
    font-family: MyFont;
}

#kouen-title-info {
    font-size: calc(30px + 3vw);
    font-family: MyFont;
}

.text {
    display: inline-block;
}

.staff-icon {
    margin-bottom: 24px;
    margin-right: 8px;
    margin-left: 8px;
}

.audio-content {
    position: fixed;
    z-index: 100;
    right: 0;
    margin-top: 10px;
    margin-right: 22px;
}

footer {

    font-size: small;
    width: 100%;
    margin: 0;
    vertical-align: middle;
    line-height: 5vh;
    bottom: 0;
    height: 5vh;
    position: absolute;
}

.sound-btns {
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: center;
}


#init-audio-on {
    padding: 0.5em;
    margin: 10px 0;
    display: block;

    /* color */
    color: #000 !important;
    background: #ffffff;
    border: solid #000 1px;

    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
    border-radius: 3px;
    text-align: center;
    text-decoration: none !important;
}

#init-audio-on:before {
    content: "";
    display: inline-block;
    width: 18px;
    height: 18px;
    margin: -3px 5px 0 0;
    background: url(/images/icon_audio_on.svg) no-repeat;
    background-size: contain;
    vertical-align: middle;
}

#init-audio-on:hover {
    background: #c0c0c0;
}

@media screen and (min-width: 768px) {
    #init-audio-on {
        padding: 0.5em 2em;
        margin: 10px auto;
        font-size: 20px;
        display: inline-block;
    }

    #init-audio-on:before {
        margin: -3px 10px 0 0;
    }
}

#init-audio-off {
    padding: 0.5em;
    margin: 10px 0;
    display: block;

    /* color */
    color: #000 !important;
    background: #ffffff;
    border: solid #000 1px;

    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
    border-radius: 3px;
    text-align: center;
    text-decoration: none !important;
}

#init-audio-off:before {
    content: "";
    display: inline-block;
    width: 18px;
    height: 18px;
    margin: -3px 5px 0 0;
    background: url(/images/icon_audio_off.svg) no-repeat;
    background-size: contain;
    vertical-align: middle;
}

#init-audio-off:hover {
    background: #c0c0c0;
}

#ticket-btn {
    padding: 0.5em;
    /* margin: 10px 0; */
    display: block;

    /* color */
    color: #000 !important;
    background: #ffffff;
    border: solid #000 1px;

    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
    border-radius: 3px;
    text-align: center;
    text-decoration: none !important;
}

/* #ticket-btn:before {
    content: "";
    display: inline-block;
    width: 18px;
    height: 18px;
    margin: -3px 5px 0 0;
    background-size: contain;
    vertical-align: middle;
} */

#ticket-btn:hover {
    background: #c0c0c0;
}


@media screen and (min-width: 768px) {
    #init-audio-off {
        padding: 0.5em 2em;
        margin: 10px auto;
        font-size: 20px;
        display: inline-block;
    }

    #init-audio-off:before {
        margin: -3px 10px 0 0;
    }
}


@font-face {
    font-family: 'MyFont';
    src: url(/font/font_1_honokamin.ttf), url(/font/ipaexfont/ipaexm.ttf);
}

@font-face {
    font-family: 'MyFont2';
    src: url(/font/sawarabi-mincho-medium.ttf);
}

.flexbox-container-vertical-center {
    display: flex;
    /* 子要素をflexboxで揃える */
    flex-direction: column;
    /* 子要素をflexboxにより縦方向に揃える */
    justify-content: center;
    /* 子要素をflexboxにより中央に配置する */
    align-items: center;
    /* 子要素をflexboxにより中央に配置する */

}

.member-component {
    height: 240px;
}

.staff-component {
    margin-top: 10px;
    margin-bottom: 20px
}

.staff-logo {
    width: 200px;
}

.staff-logo-photo {
    width: 120px;
}

.member-img {
    width: 200px;
}

.talk-underline {
    width: 100%;
    margin-top: 5px;
    margin-bottom: 10px;
    border-bottom: 1px solid black;
    margin-left: auto;
    margin-right: auto;
}



.talk-background {
    background-color: #ffffff;
}

.talk-row {
    margin-top: 10px;
}

.talk-sentence {
    padding-left: 0px;
    padding-right: 0px;
}

p {
    width: 100%;
    overflow-wrap: break-word;
    font-family: 'MyFont2';
}

.talk-icon {
    width: 110%;
    /* width: calc(2vw + 20px); */
    border-radius: 50%;
}

.talk-img {
    width: 100%;
}

#scroll {
    position: absolute;
    bottom: 0;
    margin-left: auto;
    margin-right: auto;
    left: 0px;
    right: 0px;
    z-index: 2;
    display: inline-block;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
    text-decoration: none;
    padding-top: 80px;
    color: black;
}

#scroll span {
    position: absolute;
    top: 0;

    width: 24px;
    height: 24px;
    margin-left: 8px;
    border-left: 1px solid #000;
    border-bottom: 1px solid #000;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    -webkit-animation: sdb 2s infinite;
    animation: sdb 2s infinite;
    opacity: 0;
    box-sizing: border-box;
}

#scroll span:nth-of-type(1) {
    -webkit-animation-delay: 0s;
    animation-delay: 0s;
}

#scroll span:nth-of-type(2) {
    top: 16px;
    -webkit-animation-delay: .15s;
    animation-delay: .15s;
}

#scroll span:nth-of-type(3) {
    top: 32px;
    -webkit-animation-delay: .3s;
    animation-delay: .3s;
}

@-webkit-keyframes sdb {
    0% {
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

@keyframes sdb {
    0% {
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.movie-wrap {
    position: relative;
    padding-bottom: 56.25%;
    /*アスペクト比 16:9の場合の縦幅*/
    height: 0;
    overflow: hidden;
}

.movie-wrap iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

@media only screen and (max-width: 780px) {
    .twitter-wrap {
        overflow: hidden;
    }

    .twitter-wrap iframe {
        /* 20pxの部分は埋め込んだタイムラインの左右に必要な余白の総計を記載 */
        width: calc(100vw - 20px) !important;
    }
}

.cursor {
    cursor: pointer;
}

.talk-view {
    font-size: 14px;
}

@media (min-width: 860px) {
    .talk-view {
        font-size: calc(1rem + ((1vw - 8.6px) * 1.9048));
    }
}

@media (min-width: 1280px) {
    .talk-view {
        font-size: 24px;
    }
}

.talk-detail {
    font-size: 18px;
}

@media (min-width: 860px) {
    .talk-detail {
        font-size: calc(1rem + ((1vw - 8.6px) * 1.9048));
    }
}

@media (min-width: 1280px) {
    .talk-detail {
        font-size: 30px;
    }
}