body {
    font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", "Meiryo", sans-serif;
    background-color: #ffffff;
    color: #333333;
    letter-spacing: 0.05em;
}

/* フォント */
h1 {
    font-size: 36px;
    font-weight: 500;
    font-family: "Poppins";
}

h2 {
    font-size: 26px;
    font-weight: 500;
}

h3 {
    font-size: 16px;
    font-weight: 500;
    text-align: center;
}

.note {
    font-size: 10px;
    font-weight: 300;
    margin-top: 15px;
}

/* ヘッダー */
header {
    position: fixed;
    top: 0;
    left: 0;
    padding: 30px 20px;
    font-family: "Poppins";
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.1em;
}

/* ナビゲーション */
.nav_wrap {
    position: fixed;
    top: 40px;
    left: 0;
    z-index: 10;
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    row-gap: 20px;
}

.nav_item {
    font-size: 12px;
    font-weight: 500;
    display: flex;
    align-items: center;
    column-gap: 10px;
    padding: 5px 10px;
    border-radius: 0 3px 3px 0;
    background-color: #ffffff;
    opacity: 0.8;
}

.nav_item img {
    width: 15px;
    margin-left: 10px;
}

.nav_item:hover {
    opacity: 1.0;
    background-image: linear-gradient(to left, transparent 95%, #516C9D 5%);
}

/* セクション */
.section_inner {
    margin: 70px auto 0px;
    max-width: 1050px;
    padding: 30px 25px 0px;
}

.section_title {
    text-align: center;
    margin-bottom: 40px;
}

/* ファーストビュー */
#firstview {
    margin: 50px auto 0px;
    max-width: 1050px;
    padding: 30px 25px 0px;
}

.title_wrap {
    text-align: center;
    line-height: 1.5;
    letter-spacing: 0.1em;
}

.subtitle{
    font-size: 14px;
    font-weight: 500;
}

.fv_wrap {
    font-size: 18px;
    font-weight: 500;
    display: flex;
    column-gap: 15px;
    justify-content: center;
    margin-top: 50px;
}

.fv_item {
    background-color: #516C9D;
    /* background-color: #28385E; */
    /* background-color: #FCAA00; */
    color: #ffffff;
    border-radius: 10px;
    padding: 15px 10px;
    width: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    row-gap: 10px;
}

.fv_item img {
    width: 30px;
}

.fv_item:hover {
    background-color: #333333;
}

/* 共通 */
.name {
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.05em;
    line-height: 1.5;
}

.linebreak_pc {
    display: block;
}

/* 劇場 */
.venue_wrap {
    display: flex;
    flex-wrap: wrap;
    margin: 20px auto;
    width: 660px;
    /* ここまで共通 */
    gap: 10px;
}

.venue_item {
    color: #ffffff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    /* ここまで共通 */
    justify-content: space-between;
    padding: 10px 15px;
    /* background-color: #586365; */
    background-color: #517D99;
    width: 325px;
}

.venue_wrap .yoshimoto {
    background-color: #e84709;
}

.venue_link_wrap{
    display: flex;
    column-gap: 10px;
}

.venue_hp {
    font-weight: 500;
    color: #333333;
    background-color: #ffffff;
    padding: 5px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 30px;
    /* ここまで共通 */
    font-size: 14px;
}

.venue_seatmap {
    font-weight: 500;
    color: #333333;
    background-color: #ffffff;
    padding: 5px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 30px;
    /* ここまで共通 */
    font-size: 13px;
}

.venue_hp:hover, .venue_seatmap:hover {
    background-color: #333333;
    color: #ffc042;
}

/* チケット */
.ticket_wrap {
    display: flex;
    flex-wrap: wrap;
    margin: 20px auto;
    width: 660px;
    /* ここまで共通 */
    gap: 16px;
}

.ticket_item {
    color: #ffffff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    /* ここまで共通 */
    justify-content: center;
    padding: 10px 5px;
    background-color: #EB8686;
    width: 153px;
    height: 50px;
}

.ticket_item:hover {
    background-color: #333333;
    color: #ffc042;
}

/* 賞レース */
.prize_wrap {
    display: flex;
    flex-wrap: wrap;
    margin: 20px auto;
    width: 660px;
    /* ここまで共通 */
    gap: 20px;
}

.prize_item {
    color: #ffffff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    /* ここまで共通 */
    justify-content: space-between;
    padding: 9px 15px 10px;
    background-color: #bda12c;
    width: 320px;
    height: 55px;
}

.prize_link_wrap{
    display: flex;
    column-gap: 10px;
}

.prize_hp, .prize_wiki {
    font-weight: 500;
    color: #333333;
    background-color: #ffffff;
    padding: 5px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 30px;
    /* ここまで共通 */
    font-size: 14px;
}

.prize_hp:hover, .prize_wiki:hover {
    background-color: #333333;
    color: #ffc042;
}

/* メディア */
.media_wrap {
    display: flex;
    flex-wrap: wrap;
    margin: 20px auto;
    width: 660px;
    /* ここまで共通 */
    gap: 16px;
}

.media_item {
    color: #ffffff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    /* ここまで共通 */
    justify-content: center;
    padding: 10px 5px;
    background-color: #5DA797;
    width: 153px;
    height: 50px;
}

.media_item:hover {
    background-color: #333333;
    color: #ffc042;
}

/* 事務所 */
.agency_wrap {
    display: flex;
    flex-wrap: wrap;
    margin: 20px auto;
    width: 660px;
    /* ここまで共通 */
    gap: 16px;
}

.agency_item {
    color: #ffffff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    /* ここまで共通 */
    justify-content: center;
    padding: 10px 5px;
    background-color: #6088C6;
    width: 153px;
    height: 50px;
}

.agency_item:hover {
    background-color: #333333;
    color: #ffc042;
}

/* フッター */
footer {
    font-family: "Poppins";
    font-size: 10px;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-align: center;
    padding: 20px;
    margin-top: 50px;
}

.contact_link:hover {
    background-color: #97d4d9;
    color: #ffffff;
    border-radius: 2px;
}

/* ひとこと */
.mywords_wrap {
    position: fixed;
    bottom: 30px;
    right: 20px;
    margin: 10px;
    display: flex;
    flex-direction: column;
    align-items: end;
}

.mywords_img_pc{
    width: 60px;
    border-radius: 50%;
    margin-right: 20px;
    box-shadow: 1px 1px 3px #888888;
}

.mywords_img_sp {
    display: none;
}

.mywords {
    border: 2px solid #97d4d9;
    background-color: #ffffff;
    box-shadow: 2px 2px #97d4d9;
    width: fit-content;
    padding: 10px;
    border-radius: 10px;
    line-height: 1.5;
}

.triangle {
    background-color: #97d4d9;
    width: 20px;
    height: 15px;
    clip-path: polygon(0 0, 100% 0, 50% 100%);
    margin: 0 40px 5px 0;
}

.mywords_text {
    font-size: 14px;
    font-weight: 500;
}

.mywords_date {
    font-size: 10px;
    font-weight: 500;
    text-align: end;
    margin-top: 10px;
}

.mw_test {
    display: none;
}

/*----- Pagetop -----*/
.pagetop {
    position: fixed;
    right: 10px;
    bottom: 10px;
    z-index: 3;
    opacity: 0;
    transform: translateY(100px);
}
  
.pagetop a{
    width: 30px;
    height: 30px;
    border-radius: 5px;
    display: block;
    transition: all 0.3s;
    position: relative;
}
  
.pagetop a::before {
    content: "";
    width: 10px;
    height: 10px;
    position: absolute;
    top: 12px;
    left: 10px;
    transform: rotate(-45deg);
    border-top: 2px solid #333333;
    border-right: 2px solid #333333;
    border-radius: 2px;
}
  
.pagetop a:hover{
    background-color: #333333;
}

.pagetop a:hover::before {
    border-top: 2px solid #ffffff;
    border-right: 2px solid #ffffff;
}

/*　上に上がる動き　*/
.pagetop.pt-up{
    animation: ptupAnime 1.0s forwards;
}
@keyframes ptupAnime{
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/*　下に下がる動き　*/
.pagetop.pt-down{
    animation: ptdownAnime 1.0s forwards;
}
@keyframes ptdownAnime{
    from {
        opacity: 1;
        transform: translateY(0);
    }
    to {
        opacity: 1;
        transform: translateY(50px);
    }
}

/* --------------------
    for SP size 
-------------------- */
@media screen and (max-width: 768px){

    /* フォント */
    h1 {
        font-size: 26px;
        line-height: 1.5;
    }

    h2 {
        font-size: 21px;
        font-weight: 500;
    }

    h3 {
        font-size: 15px;
    }

    .name {
        font-size: 14px;
    }

    /* ヘッダー */
    header {
        width: 100vw;
        text-align: center;
        padding: 8px;
        background-color: #ffffff;
        font-size: 12px;
    }

    /* ナビゲーション */
    .nav_wrap {
        top: unset;
        bottom: 0px;
        padding: 8px 10px 7px 10px;
        height: fit-content;
        width: 100vw;
        display: flex;
        justify-content: center;
        background-color: #ffffff;
        flex-direction: row;
        column-gap: 10px;
    }

    .nav_item {
        font-size: 10px;
        flex-direction: column;
        align-items: center;
        padding: 5px 0 8px;
        margin: 0 5px;
        border-radius: 0px;
        width: 50px;
        row-gap: 5px;
    }

    .nav_item img {
        margin-left: 0px;
    }

    .nav_item:hover {
        background-image: linear-gradient(transparent 93%, #516C9D 7%);
    }

    /* セクション */
    .section_inner {
        margin: 30px auto 0px;
    }

    .section_title {
        margin-bottom: 30px;
    }

    /* ファーストビュー */
    #firstview {
        margin: 0px auto 0px;
    }

    .subtitle{
        font-size: 10px;
    }

    .fv_wrap {
        flex-wrap: wrap;
        font-size: 14px;
        gap: 15px;
        margin-top: 30px;
    }

    .fv_item {
        width: 90px;
        padding: 10px;
        row-gap: 5px;
    }

    .fv_item img {
        width: 20px;
    }

    /* 共通 */
    .linebreak_sp {
        display: block;
    }

    .linebreak_pc {
        display: none;
    }

    /* その他コンテンツ */
    .venue_wrap,.prize_wrap {
        width: 325px;
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .ticket_wrap, .media_wrap, .agency_wrap {
        width: 325px;
        justify-content: space-between;
        gap: 10px;
    }

    .prize_item {
        height: 50px;
    }

    .venue_hp, .prize_hp, .prize_wiki {
        font-size: 12px;
    }

    .ticket_item, .media_item, .agency_item {
        width: 157px;
        height: 45px;
    }

    footer {
        margin: 20px auto 60px;
    }

    .copyright .note {
        font-size: 8px;
        line-height: 1.8;
    }

    /* ひとこと */
    .mywords_wrap{
        position: static;
        margin: 0;
        flex-direction: row;
        margin-top: 30px;
        background-color: #97d4d9;
        overflow: hidden;
    }

    .mywords_img_sp {
        display: block;
        width: 30px;
        margin-right: 6px;
    }

    .triangle, .mywords_img_pc {
        display: none;
    }

    .mywords {
        border: none;
        background-color: #97d4d9;
        box-shadow: none;
        padding: 0;
        border-radius: 0px;
        line-height: 30px;
        color: #ffffff;
        padding-left: 100%;
        white-space: nowrap;
        animation: animate-banner 20s linear infinite;
    }

    /* バナー内の要素をすべて選択 */
    .mywords > * {
        display: inline-block;
    }

    /* 横にスクロールさせるアニメーション */
    @keyframes animate-banner {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(-100%);
        }
    }

    .mywords_text {
        font-size: 12px;
    }

    .mywords_date {
        margin: 0 0 0 5px;
    }

    /* ----- Pagetop ----- */
    .pagetop {
        right: 5px;
        bottom: 65px;
    }
    
    .pagetop a{
        width: 20px;
        height: 20px;
    }
    
    .pagetop a::before {
        width: 9px;
        height: 9px;
        top: 7px;
        left: 6px;
    }

}