@charset "UTF-8";
/* 共通 */
div img {
    display: block;
    width: 100%;
    height: auto;
}

body {
    color: #fff;
    font-family: "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo";
}

body.is_menu_active {
    position: fixed;
    width: 100%;
    overflow: hidden;
}

/* レイアウト */
.container {
    display: flex;
    justify-content: space-between;
    min-height: 100vh;
}

.left {
    width: calc((100% - 500px) / 2);
    background-color: #f0f0f0;
    background-image: url("/img/pc_bg/masters_pc_back_l.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top right;
    left: 0;
    top: 0;
    position: fixed;
    height: 100vh;
    box-shadow: inset -10px 0 0 #3bdb9e;
}

.right {
    width: calc((100% - 500px) / 2);
    background-color: #f0f0f0;
    background-image: url("/img/pc_bg/masters_pc_back_r.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top left;
    right: 0;
    top: 0;
    position: fixed;
    height: 100vh;
    box-shadow: inset 10px 0 0 #3bdb9e;
}

.right-menu {
    margin: auto;
    width: 50%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 50px 0;
}

.right-menu-text-link li {
    list-style: none;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #3bdb9d;
}

.right-menu-text-link li a {
    text-decoration: none;
    color: #fff;
    height: 100%;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-size: 18px;
}

.right-menu-img-link {
    display: grid;
    margin-top: 100px;
    grid-template-columns: repeat(2, 1fr);
}

.right-menu-img-link-nanatetsu {
    grid-column: span 2;
    border-top: 1px solid #3bdb9d;
}

.right-menu-img-link div {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #3bdb9d;
    max-height: 70px;
}

.right-menu-img-link div:nth-child(even) {
    border-right: 1px solid #3bdb9d;
}

.right-menu-img-link div a {
    text-decoration: none;
    color: #fff;
}

.right-menu-img-link div a img {
    width: auto;
    height: auto;
    max-width: 80%;
    max-height: 40px;
    margin: auto;
}

.right-menu-img-sns {
    max-height: 30px !important;
}

.right-menu-img-link div a p {
    margin: 0;
    font-size: 12px;
    color: #fff;
}

.center {
    max-width: 500px;
    width: 100%;
    background-image: url("/img/common/bg.png");
    background-repeat: repeat;
    margin: 0 auto;
}

.bl_leftArea_linkWrap {
    position: absolute;
    background-color: rgba(0, 0, 0, 0.5);
    width: calc(100% - 10px);
    bottom: 3%;
    padding: 2rem 0;
}

.bl_leftArea_linkWrap_inner {
    max-width: 450px;
    margin: 0 auto;
}

.bl_leftArea_linkLogo {
    width: 65%;
    text-align: center;
    margin-bottom: 1rem;
    margin: auto;
}

.bl_leftArea_linkBtnWrap {
    display: flex;
    align-items: center;
    gap: 20px;
}

.bl_leftArea_linkBtn_app {
    width: 46%;
}

.bl_leftArea_linkBtn_ggl {
    width: 54%;
}

.bl_header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    background-color: #000;
    margin: 0 5px;
    border-bottom: 0.5px solid #3bdb9d;
}

.el_header_link {
    display: block;
    padding-right: 15px;
    width: 15%;
    border-right: 0.5px solid #3bdb9d;
}

.el_header_link img {
    width: 100%;
    height: auto;
    padding-left: 5px;
}

.el_header_title {
    width: 65%;
}

.el_header_title img {
    width: 100%;
    height: auto;
}

.el_header_btn {
    width: 10%;
}

.bl_menu_btn {
    display: none;
}

.el_menu_btn_bar {
    display: inline-block;
    width: 44%;
    height: 2px;
    background: #3bdb9d;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    transition: 0.5s;
}

.el_menu_btn_bar:first-child {
    top: 16px;
}

.el_menu_btn_bar:nth-child(2) {
    top: 24px;
}

.el_menu_btn_bar:last-child {
    top: 32px;
}

.bl_menu_btn.is_active .el_menu_btn_bar:first-child {
    top: 24px;
    transform: translateX(-50%) rotate(45deg);
}

.bl_menu_btn.is_active .el_menu_btn_bar:nth-child(2) {
    opacity: 0;
}

.bl_menu_btn.is_active .el_menu_btn_bar:last-child {
    top: 24px;
    transform: translateX(-50%) rotate(-45deg);
}

/* ナビゲーションメニュー */
.bl_menu_nav {
    position: fixed;
    top: 0;
    right: 0;
    height: 100%;
    width: 85%;
    z-index: 10;
    transition: all ease 0.4s;
    transform: translateX(100%);
    overflow-y: scroll;
    background-color: #000;
    background: linear-gradient(to bottom, #000 0%, #000 50%, #165e7f 100%);
    padding: 30px 30px 0;
}

.bl_menu_nav.is_active {
    transform: translateX(0);
    overflow-y: scroll;
}

.bl_menu_head {
    width: 60%;
    margin: 0 auto;
}

.bl_menu_link {
    width: 60%;
    margin: 0 auto;
}

.bl_menu_list li {
    list-style: none;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 45px;
    border-bottom: 1px solid #fff;
}

.bl_menu_list li a {
    text-decoration: none;
    color: #fff;
    height: 100%;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.bl_menu_list li a img {
    display: block;
    height: 60%;
    width: auto;
    max-width: 100%;
}

.bl_menu_sns {
    width: 60%;
    margin: 50px auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.bl_hl_title {
    text-align: center;
    color: #3bdb9d;
    border-bottom: 1px #3bdb9d solid;
    font-size: 12px;
    padding: 25px 0;
    background: linear-gradient(to top, #000 0%, #165e7f 100%);
}

/* セレクトボックス */
.bl_select {
    display: flex;
    align-items: center;
    width: 100%;
    border-top: 1px solid #3bdb9d;
    border-left: 1px solid #3bdb9d;
    border-bottom: 1px solid #3bdb9d;
    background: #3bdb9d;
}

.el_select_label {
    text-align: center;
    color: #fff;
    white-space: nowrap;
    width: 40%;
    background: #020f31;
    font-size: 16px;
    padding: 10px 0;
}

.bl_select .el_select_box {
    width: 60%;
    height: 100%;
    position: relative;
    background: #3bdb9d;
}

.el_select_box select {
    font-weight: bold;
    text-align: center;
    width: 100%;
    background: #3bdb9d;
    color: #003333;
    border: none;
    appearance: none; /* デフォルト矢印消す */
    font-size: 16px;
    cursor: pointer;
    padding: 10px 5px;
}

.el_select_box::after {
    content: "";
    position: absolute;
    right: 5%;
    top: 50%;
    width: 6px;
    height: 6px;
    border-right: 2px solid #003333;
    border-bottom: 2px solid #003333;
    transform: translateY(-60%) rotate(45deg);
    pointer-events: none;
}

/* ランキング */
.bl_ranking_item {
    margin-top: 20px;
    position: relative;
}

.el_pref_icon {
    color: #000;
    padding: 0 6px;
    display: inline-block;
    font-size: 10px;
}

.el_hall_name {
    font-size: 16px;
    color: #fff;
    text-decoration: none;
    white-space: nowrap;
}

.el_hall_schedule_date {
    font-size: 22px;
    color: #fff;
    text-decoration: none;
    white-space: nowrap;
    font-weight: bold;
}

.el_ranking_contents {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    width: 97%;
    margin-left: 3%;
}

.el_ranking_info {
    width: 67%;
}

.el_ranking_stars_container {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 16%;
}

.el_ranking_rank_number {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #3bdb9d;
    font-size: 30px;
    font-weight: bold;
    width: 17%;
}

.el_ranking_stars_icon {
    color: #3bdb9d;
}

.el_ranking_stars_count {
    color: #fff;
    font-size: 20px;
    font-weight: bold;
}

/* スケジュール */
.el_schedule_date {
    background: #165f80;
    color: #fff;
    padding: 5px 10px;
    font-size: 16px;
    margin-top: 25px;
}

.el_schedule_link {
    margin: 25px 25px 0;
    position: relative;
    display: block;
    text-decoration: none;
    background: linear-gradient(
        to right,
        rgba(22, 94, 127, 0) 0%,
        rgba(22, 94, 127, 0.1) 80%,
        rgba(22, 94, 127, 1) 100%
    );
}

.bl_schedule_item {
    padding: 10px 20px 5px 10px;
    display: flex;
    flex-direction: column;
    border: 1px solid #3bdb9d;
}

.el_schedule_arrow {
    width: 10px;
    height: 10px;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    border-left: 8px solid #fff;
    position: absolute;
    top: 0;
    right: 5px;
    bottom: 0;
    margin: auto;
}

.el_schedule_header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}

.el_schedule_report_icon {
    width: 20%;
    border-right: 0.5px solid #3bdb9d;
    padding-right: 10px;
}

.el_schedule_info {
    width: 80%;
}

.el_schedule_banners {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 10px;
}

/* 結果一覧 */
.bl_result_list {
    display: none;
}

.el_result_link {
    margin: 25px 25px 0;
    position: relative;
    display: block;
    text-decoration: none;
    background: linear-gradient(
        to right,
        rgba(22, 94, 127, 0) 0%,
        rgba(22, 94, 127, 0.1) 80%,
        rgba(22, 94, 127, 1) 100%
    );
}

.bl_result_item {
    padding: 10px;
    display: flex;
    gap: 10px;
    border: 1px solid #3bdb9d;
}

.el_result_report {
    width: 20%;
    padding-right: 10px;
    border-right: 0.5px solid #3bdb9d;
}

.el_result_report img {
    width: 100%;
    height: auto;
}

.el_result_data {
    align-content: center;
    width: 80%;
}

.el_result_date {
    line-height: 0.8;
    color: #fff;
    font-size: 16px;
}

.el_result_arrow {
    width: 10px;
    height: 10px;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    border-left: 8px solid #fff;
    position: absolute;
    top: 0;
    right: 5px;
    bottom: 0;
    margin: auto;
}

/* もっと見るボタン */
.bl_more_btn {
    margin-top: 20px;
}

.bl_more_btn img {
    max-width: 200px;
    cursor: pointer;
    margin: auto;
}

/* フッター */
footer {
    margin-top: auto;
    text-align: center;
    padding: 20px 0;
    color: #fff;
    font-size: 12px;
}

.bl_link_jbcom {
    border: 1px solid #2c5a54;
}

.bl_link_jbcom a {
    display: block;
    padding: 15px 0;
}

.bl_link_jbcom a img {
    width: 30%;
    margin: auto;
}

.bl_link_set {
    display: flex;
}

.bl_link_set a {
    display: block;
    width: 50%;
    height: 100px;
    text-align: center;
    border: 1px solid #2c5a54;
    align-content: center;
    padding: 10px 0;
}

.bl_link_set a img {
    max-width: 50%;
    height: auto;
    margin: auto;
}

.bl_link_sns a {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff;
    text-decoration: none;
}

.bl_link_sns a img {
    width: 50px;
    height: auto;
    margin-bottom: 5px;
}

.bl_footer_copyright {
    margin-top: 40px;
}

/* 地方別ボーダー */
.bd_color_hokkaido {
    border-color: #0094ff;
}
.bd_color_kanto {
    border-color: #00a59d;
}
.bd_color_hokuriku {
    border-color: #ff9f3a;
}
.bd_color_tokai {
    border-color: #ff00a4;
}
.bd_color_kansai {
    border-color: #ff1b3a;
}
.bd_color_chugoku {
    border-color: #00da00;
}
.bd_color_kyushu {
    border-color: #bd00ff;
}
/* 地方別背景色 */
.bg_color_hokkaido {
    background-color: #0094ff;
}
.bg_color_kanto {
    background-color: #00a59d;
}
.bg_color_hokuriku {
    background-color: #ff9f3a;
}
.bg_color_tokai {
    background-color: #ff00a4;
}
.bg_color_kansai {
    background-color: #ff1b3a;
}
.bg_color_chugoku {
    background-color: #00da00;
}
.bg_color_kyushu {
    background-color: #bd00ff;
}
/* 地方別背景色(グラデーション) */
.bg_color_hokkaido_gd {
    background: linear-gradient(to right, #2a95ff 0%, #3fe0ff 100%);
}
.bg_color_kanto_gd {
    background: linear-gradient(to right, #2ba59c 0%, #3bdb9d 100%);
}
.bg_color_hokuriku_gd {
    background: linear-gradient(to right, #fa9f3b 0%, #fde226 100%);
}
.bg_color_tokai_gd {
    background: linear-gradient(to right, #f807a2 0%, #fbabd4 100%);
}
.bg_color_kansai_gd {
    background: linear-gradient(to right, #f81a3a 0%, #fa909e 100%);
}
.bg_color_chugoku_gd {
    background: linear-gradient(to right, #3adb00 0%, #c5ed7e 100%);
}
.bg_color_kyushu_gd {
    background: linear-gradient(to right, #bd10ff 0%, #f68dd5 100%);
}
/* 非活性 */
.bg_color_gray {
    background-color: #888;
}

/* モーダル */
.bl_modal_bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(0, 0, 0);
    background: rgba(0, 0, 0, 0.75);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 20;
}

.bl_modal {
    position: relative;
    width: 100%;
    height: 100%;
}

.bl_modal_contents {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    max-width: 90%;
}

/* 非表示 */
.display_none {
    display: none;
}

/* エリア選択 */
.bl_area_select {
    margin: 25px 25px 0;
    display: flex;
    justify-content: space-between;
}

.bl_area_select .bl_select_label {
    width: 50%;
    align-content: center;
    font-weight: bold;
    border-left: 4px #3bdb9d solid;
    padding-top: 5px;
    padding-bottom: 5px;
    padding-left: 7px;
    text-align: left;
}

.bl_area_select .bl_select {
    width: 50%;
    display: inline-flex;
    height: 100%;
}

.bl_area_select .bl_select .el_select_label,
.bl_area_select .bl_select .el_select_box select {
    font-size: 10px;
}

/* スケジュール・結果 切り替えタブ */
.bl_switch_tabs {
    display: flex;
    padding-bottom: 1px;
    background: #165f80;
    padding-bottom: 3px;
}

.el_switch_tab {
    position: relative;
    flex: 1;
    padding: 10px 0;
    text-align: center;
    font-weight: bold;
    color: #2ba69d;
    background: #72c4b9;
    cursor: pointer;
}

.el_switch_tab.active {
    color: #fff;
    background: #165f80;
}

.bl_coming_soon {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 200px;
    color: #fff;
    font-size: 18px;
}

/* スマホ用のスタイル */
@media (max-width: 767px) {
    body {
        -ms-overflow-style: none; /* IE, Edge */
        scrollbar-width: none; /* Firefox */
    }

    body::-webkit-scrollbar {
        display: none; /* Chrome, Safari */
    }

    .bl_menu_btn {
        display: block;
        width: 50px;
        height: 50px;
        position: relative;
        border: none;
        background: transparent;
        appearance: none;
        padding: 0;
        cursor: pointer;
        z-index: 11;
    }

    .right-menu {
        display: none;
    }

    .jbc_nav_img {
        max-height: 35%;
    }
}
