@charset "UTF-8";

/* about */
.bl_about_head {
    margin-bottom: 34px;
    font-size: 32px;
    display: inline-block;
    padding: 5px 5px;
}

.bl_about_movie {
    max-width: 800px;
    margin: 0 auto 60px;
}

.bl_about_item_txt {
    color: #000;
    font-size: 20px;
    text-align: left;
    line-height: 1.75;
}

.bl_about_txtBox {
    margin-bottom: 70px;
}

.bl_about_movieView_txt {
    font-size: 24px;
    line-height: 1.85;
    letter-spacing: 4px;
    font-weight: bold;
}

.bl_about_movieView_txt:not(:last-child) {
    margin-bottom: 25px;
}

.bl_about_movieView_txt.bl_about_movieView_txt_l {
    font-size: 32px;
    padding: 5px 0;
    margin-bottom: 35px;
    color: #ffd300;
    text-shadow: #000 1px 0px 20px;
}

.bl_about_movieView {
    max-width: 1020px;
    margin: 0 auto;
    border-radius: 8px;
    background-size: cover;
    position: relative;
    z-index: 1;
    margin-bottom: 20px;
    background-color: #212121;
}

.bl_about_movieView_txt_wrap {
    z-index: 2;
    position: absolute;
    width: 100%;
    padding: 40px 20px;
    color: #fff;
    text-shadow: 0 0 20px #616161;
}

.bl_about_fadeMovie {
    border-radius: 8px;
    filter: opacity(0.3);
}

.bl_about_movieView_subTxt {
    margin-bottom: 100px;
    font-size: 16px;
}

.bl_about_youtube_wrap {
    max-width: 1020px;
    width: 100%;
    margin: 0 auto;
    padding-bottom: 80px;
}

.bl_about_youtube {
    position: relative;
    padding-bottom: 56.25%;
}

.bl_about_youtube_iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* team */
.bl_team_head {
    font-size: 29px;
    display: inline-block;
    margin-bottom: 80px;
    padding: 5px;
}

/* 流れるテキスト */
.bl_teamInner article {
    overflow: hidden;
    margin-bottom: 50px;
}

.loop_wrap {
    display: flex;
    width: 100%;
    height: 150px;
    overflow: hidden;
}

.loop_wrap div {
    flex: 0 0 auto;
    white-space: nowrap;
    font-size: 94px;
    font-weight: bold;
    color: #fff;
    text-shadow:
        1px 1px #ccc,
        -1px 1px #ccc,
        -1px -1px #ccc,
        1px -1px #ccc,
        1px 0px #ccc,
        0px 1px #ccc,
        -1px 0px #ccc,
        0px -1px #ccc;
    overflow: hidden;
}

.loop_wrap div:nth-child(odd) {
    animation: loop 50s -25s linear infinite;
}

.loop_wrap div:nth-child(even) {
    animation: loop2 50s linear infinite;
}

@keyframes loop {
    0% {
        transform: translateX(100%);
    }

    to {
        transform: translateX(-100%);
    }
}

@keyframes loop2 {
    0% {
        transform: translateX(0);
    }

    to {
        transform: translateX(-200%);
    }
}


/* 流れるテキストここまで */

.bl_team_itemBox {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 1000px;
    margin: 0 auto;
}

.bl_team_item {
    width: calc(33% - (20px / 2));
    text-align: left;
    margin-bottom: 100px;
}

.bl_team_item:nth-child(2n-1) {
    margin-right: 20px;
}

.bl_team_item_company {
    display: flex;
    margin-bottom: 20px;
}

.bl_team_item_txtBox {
    /* width: calc(100% - 80px); */
    width: 100%;
    text-align: center;
}

.flowingWrap {
    display: inline-block;
}

.bl_team_item_txt {
    display: inline-block;
    background: #f5f7fb;
    font-size: 17px;
    font-weight: bold;
    color: #000;
    padding: 4px 15px;
    /* overflow: hidden;
      white-space: nowrap;
      width: 0;
      margin: 0; */

}

@keyframes flowing-anim {
    0% {
        width: 0%;
    }

    100% {
        width: 100%;
    }
}

.bl_team_item_txt_top {
    margin-bottom: 3px;
}

.bl_team_item_linkbox {
    text-align: center;
}

.bl_team_item_imgLogo {
    /* background: #f6f9fc; */
    width: 71px;
    /* padding: 15px; */
    margin-right: 10px;
    /* border: 1px #c9c9c9 solid; */
}

.bl_team_item_img {
    max-width: 230px;
    margin: 0 auto 25px;
}

/*
.bl_team_item_img:hover {
    animation: fadezoom-s 0.5s 0s forwards;
}
*/

.bl_team_item_img img {
    width: auto;
    height: 150px;
}

.bl_top_schedule {
    max-width: 1000px;
    margin: 20px auto 40px;
}

.bl_top_schedule img {
    border: #000 1px solid;
    border-radius: 2px;
}

@keyframes fadezoom-s {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.2);
    }
}

.bl_team_item_companyLink_wrap {
    max-width: 200px;
    margin: 0 auto 35px;
}

.bl_team_item_companyLink {
    display: flex;
    align-items: center;
    justify-content: center;
}

.bl_team_item_companyLink_txt {
    display: inline-block;
    font-size: 14px;
    font-weight: bold;
    color: #333;
    transition: all .25s ease;
}

.bl_team_item_companyLink_wrap:hover .bl_team_item_companyLink_txt {
    text-decoration: underline;
    color: #6d6d6d;
}

.bl_team_item_companyLink_mark {
    color: #585858;
    font-size: 12px;
    margin-left: 15px;
    position: relative;
    display: inline-block;
}

.bl_team_item_companyLink_mark::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    border: 1px solid #585858;
    border-radius: 50%;
}

.bl_team_item_linkWrap {
    display: flex;
    justify-content: center;
    align-items: center;
    /* background: #000; */
    color: #fff;
    /* border: 2px solid #000; */
    border-radius: 100vh;
    padding: 13px 0px 13px 25px;
    transition: all .25s ease;
    max-width: 320px;
    margin: 0 auto 20px;
}

.bl_team_item_link {
    display: inline-block;
    font-size: 15px;
    font-weight: bold;
    color: #fff;
}

.bl_team_item_linkWrap:hover {
    background: #fff;
    color: #000;
}

.bl_team_item_linkWrap:hover .bl_team_item_link {
    color: #000;
}

.el_btn_mark {
    position: relative;
    margin-left: 35px;
    display: inline-block;
    font-size: 14px;
    transform: translateX(0px);
    transition: all .25s ease;
    color: #fff;
}

.el_btn_mark::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 32px;
    height: 32px;
    border: 2px solid #fff;
    border-radius: 50%;
}

.bl_team_item_linkWrap:hover .el_btn_mark {
    color: #000;
    transform: translateX(8px);
}

.bl_team_item_linkWrap:hover .el_btn_mark::after {
    border: 2px solid #000;
}

.bl_rule_head {
    display: inline-block;
    font-size: 29px;
    font-weight: bold;
    margin-bottom: 30px;
    padding: 5px;
}

.bl_rule_itemWrap {
    max-width: 1000px;
    margin: 50px auto 100px;
    padding: 60px 60px 26px;
    text-align: left;
    background: #fbfcfc;
    border-radius: 5px;
    border: 8px solid #2369b6;
}

.bl_rule_itemTxtWrap {
    margin-bottom: 50px;
}

.bl_rule_itemTxtBox {
    margin-bottom: 40px;
}

.bl_rule_itemTxt {
    font-size: 17px;
    font-weight: bold;
    line-height: 1.7;
    margin-bottom: 10px;
    padding-left: 1em;
    text-indent: -1em;
    color: #333;
}

.bl_rule_itemSubTxt {
    display: block;
    font-size: 15px;
    line-height: 2;
}

.bl_rule_item_prizeWrap {
    margin-bottom: 60px;
}

.bl_rule_item_prize {
    margin-bottom: 50px;
}

.bl_rule_item_prize_txt {
    position: relative;
    font-size: 34px;
    text-align: center;
    font-weight: bold;
    color: #fff;
    background: #d50913;
    max-width: 600px;
    margin: 0px auto 10px;
    padding: 14px 0;
    clip-path: polygon(6% 0%, 100% 0%, 94% 100%, 0% 100%);
}

.bl_rule_item_subprize {
    margin-bottom: 30px;
}

.bl_rule_item_subPrize_txt {
    position: relative;
    font-size: 22px;
    font-weight: bold;
    color: #fff;
    background: #2369b6;
    margin: 30px auto;
    padding: 14px 0 14px 65px;
    /* border-radius: 100vh; */
    clip-path: polygon(6% 0%, 98% 0%, 94% 100%, 2% 100%);
}

.bl_rule_subTitle {
    font-size: 24px;
    font-weight: bold;
    margin: 60px auto 0;
    color: #f44336;
}

.bl_rule_item_prize_subTxt {
    font-size: 15px;
    text-align: center;
    display: block;
    max-width: 600px;
    margin: 0 auto;
}

.bl_rule_subTitle_center {
    width: 5.5em;
    padding-bottom: 10px;
    font-size: 24px;
    font-weight: bold;
    margin: 0 auto 30px;
    text-align: center;
}

.bl_rule_subTxt {
    font-size: 15px;
    text-align: center;
    margin-bottom: 50px;
}

.bl_rule_newMark {
    position: absolute;
    top: -20px;
    left: 0;
    right: 0;
    font-size: 16px;
    color: #f44336;
    font-weight: bold;
}

.bl_rule_schedule_txt {
    text-indent: -1em;
    padding-left: 1em;
    font-size: 15px;
    line-height: 2em;
    margin-bottom: 1em;
}

/* キャッチコピー */

.el_catchphrase {
    position: relative;
    font-size: 22px;
    line-height: 2.5em;
    width: 700px;
    margin: 20px auto 80px;
}

.el_catchphrase h2 {
    position: relative;
    font-size: 30px;
    width: 100%;
    text-shadow: #fff 2px 0, #fff -2px 0, #fff 0 -2px, #fff 0 2px, #fff 2px 2px, #fff -2px 2px, #fff 2px -2px, #fff -2px -2px, #fff 1px 2px, #fff -1px 2px, #fff 1px -2px, #fff -1px -2px, #fff 2px 1px, #fff -2px 1px, #fff 2px -1px, #fff -2px -1px, rgba(0, 0, 0, .5) 3px 3px 3px;
}

.el_catchphrase h2:before {
    position: absolute;
    top: calc(50% - 1px);
    left: 0;
    width: 100%;
    height: 2px;
    content: '';
    background: #000;
}

.el_catchphrase h2 span {
    position: relative;
    padding: 0 1em;
    background: #fff;
}

.el_catchphrase_txt {
    font-size: 22px;
    text-shadow: #fff 2px 0, #fff -2px 0, #fff 0 -2px, #fff 0 2px, #fff 2px 2px, #fff -2px 2px, #fff 2px -2px, #fff -2px -2px, #fff 1px 2px, #fff -1px 2px, #fff 1px -2px, #fff -1px -2px, #fff 2px 1px, #fff -2px 1px, #fff 2px -1px, #fff -2px -1px, rgba(0, 0, 0, .5) 2px 2px 2px;
}

.el_catchphrase_txt_l {
    font-size: 28px;
    font-weight: bold;
}

/* 代表選手 */

.bl_mainPlayer_item_memberWrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 1000px;
    margin: 0 auto;
}

.bl_mainPlayer_item_member {
    width: calc(33.33% -(20px / 2));
    text-align: left;
    margin-bottom: 100px;
}

.bl_mainPlayer_item_member:not(:last-child) {
    margin-right: 25px;
}

.bl_mainPlayer_item_member_imgWrap {
    margin-bottom: 20px;
    text-align: center;
}

.bl_mainPlayer_item_member_img {
    border-radius: 3px;
    text-align: center;
}

.bl_mainPlayer_item_member_teamLogo {
    position: absolute;
    top: 0;
    left: 0;
    width: 120px;
    padding: 3px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 0 0 3px 0;
}

.bl_mainPlayer_item_member_img img {
    width: 50%;
}

.bl_mainPlayer_item_memberWrap_6column .bl_mainPlayer_item_member_teamLogo {
    width: calc(65px / 1.57);
}

.bl_mainPlayer_item_member_txt {
    font-size: 28px;
    font-weight: bold;
}

.el_color_box_inner {
    position: relative;
    display: inline-block;
    overflow: hidden;
}

.el_color_box_inner::before {
    content: '';
    display: inline-block;
    width: 100%;
    height: 0;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
    background: #d6dbde;
}

.el_color_box.move .el_color_box_inner::before {
    animation: barPhotoAnime forwards 1s 1 ease 0.1s normal;
}

.el_color_box .el_color_box_inner img {
    /* opacity: 0; */
    opacity: 1;
    transform: scale(1.1);
}

.el_color_box.move .el_color_box_inner img {
    animation: photoAnime forwards 1s 1 ease 0.5s normal;
}

.el_color_box_inner_en img[src*="/talent/"] {
    background-color: rgba(230 0 123 / 30%);
}

.el_color_box_inner_dy img[src*="/talent/"] {
    background-color: rgba(150 167 42 / 50%);
}

.el_color_box_inner_ds img[src*="/talent/"] {
    background-color: rgb(42 167 56 / 50%);
}

.el_color_box_inner_gu img[src*="/talent/"] {
    background-color: rgb(1 181 187 / 50%);
}

.el_color_box_inner_mr img[src*="/talent/"] {
    background-color: rgb(230 0 18 / 50%);
}

.el_color_box_inner_kc img[src*="/talent/"] {
    background-color: rgb(235 97 0 / 50%);
}

.el_team_bg_color_al {
    background-color: rgb(246 0 87);
    border: double 0px #fff;
}

.el_team_bg_color_kc {
    background-color: rgb(235 97 0);
    border: double 0px #fff;
}

.el_team_bg_color_ab {
    background-color: rgb(31 84 220);
    border: double 0px #fff;
}

.el_team_bg_color_tg {
    background-color: rgb(30 117 58);
    border: double 0px #fff;
}

.el_team_bg_color_fg {
    background-color: rgb(202 12 0);
    border: double 0px #fff;
}

.bl_mainPlayer_item_detail_corp_txt {
    font-size: 17px;
    text-align: center;
    margin-bottom: 10px;
}

.bl_mainPlayer_item_detail_memberName_txt {
    font-size: 20px;
    text-align: center;
    color: #fff;
    width: 8.5em;
    margin: 0 auto;
    padding: 5px;
    border-radius: 2px;
    -webkit-box-shadow: 5px 5px 0 #ddd;
    box-shadow: 5px 5px 0 #ddd;
    -webkit-transform: skew(-15deg);
    transform: skew(-15deg);
    color: #fff;
}

.bl_mainPlayer_item_detail_leader_txt {
    font-size: 14px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 10px;
}

/* 収録スケジュール */

.bl_schedule_caution_wrap {
    margin: 10px auto 50px;
}

.bl_schedule_caution {
    display: flex;
    align-items: center;
    justify-content: center;
}

.bl_schedule_caution_txt {
    display: inline-block;
    font-size: 16px;
    font-weight: bold;
    color: #333;
    transition: all .25s ease;
    text-decoration: underline;
}

.bl_schedule_caution_wrap:hover .bl_schedule_caution_txt {
    text-decoration: underline;
    color: #6d6d6d;
}

.bl_schedule_caution_mark {
    color: #585858;
    font-size: 12px;
    margin-left: 15px;
    position: relative;
    display: inline-block;
}

.bl_schedule_caution_mark::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    border: 1px solid #585858;
    border-radius: 50%;
}

#company .teamColor_kc {
    border: solid 2px #eb6100;
}

#company .teamColor_al {
    border: solid 2px rgb(246 0 87);
}

#company .teamColor_ab {
    border: solid 2px rgb(31 84 220);
}

#company .teamColor_tg {
    border: solid 2px rgb(30 117 58);
}

#company .teamColor_fg {
    border: solid 2px rgb(202 12 0);
}


@media screen and (max-width: 767px) {

    /* about */
    .bl_about_head {
        font-size: min(7.8rem, 29px);
        margin-bottom: min(15rem, 60px);
    }

    .bl_about_movieView_txt {
        /* font-size: min(6rem, 20px); */
        font-size: min(4.9rem, 14px);
    }

    .bl_about_movieView_txt:not(:last-child) {
        margin-bottom: 7rem;
    }

    .bl_about_movieView_txt.bl_about_movieView_txt_l {
        font-size: min(6.7rem, 18px);
    }

    .movieView_notice {
        font-size: 12px;
    }

    .bl_about_movieView_txt_wrap {
        top: 50%;
        transform: translateY(-50%);
        padding: 0;
    }

    .bl_about_fadeMovie {
        height: min(210rem, 850px);
    }

    .bl_about_movieView_subTxt {
        margin-bottom: 40px;
        font-size: 10px;
    }

    .bl_about_youtube_wrap {
        padding-bottom: 40px;
    }

    /* team */

    .loop_wrap {
        height: min(25rem, 180px);
        ;
    }

    .loop_wrap div {
        font-size: min(17rem, 80px);
    }

    .bl_team_head {
        font-size: min(7.8rem, 29px);
        margin-bottom: 60px;
    }

    .bl_team_itemBox {
        flex-flow: column;
        max-width: 460px;
    }

    .bl_team_item {
        width: 100%;
        margin-bottom: min(0em, 100px);
    }

    .bl_team_item:nth-child(2n-1) {
        margin-right: 0;
    }

    .bl_team_item_txtBox {
        width: calc(100% - (min(0rem, 83px) + min(3rem, 10px)));
    }

    .bl_team_item_imgLogo {
        width: min(30rem, 83px);
        margin-right: min(3rem, 10px);
    }

    .bl_team_item_txt {
        font-size: min(6.3rem, 20px);
    }

    .bl_team_item_txt_top {
        /* margin-bottom: min(3rem, 10px); */
    }

    .bl_team_item_img {
        /* width: min(100rem, 270px); */
        margin: 0 auto 20px;
    }

    .bl_team_item_companyLink_wrap {
        margin: 0 auto min(12rem, 40px);
    }

    .bl_team_item_companyLink_txt {
        display: inline-block;
        font-size: min(6rem, 17px);
    }

    .bl_team_item_linkWrap {
        padding: min(3.5rem, 13px) 0px min(3.5rem, 13px) min(7.4rem, 25px);
        margin: 0 auto min(7.2rem, 20px);
    }

    .bl_team_item_link {
        font-size: min(6rem, 18px);
    }

    .el_btn_mark {
        margin-left: min(8rem, 35px);
        font-size: min(5rem, 14px);
    }

    .el_btn_mark::after {
        width: min(12rem, 32px);
        height: min(12rem, 32px);
        border: 1px solid #fff;
    }

    .bl_rule_head {
        margin-bottom: min(7.8rem, 29px);
        font-size: min(8rem, 34px);
    }

    .bl_rule_itemWrap {
        margin: min(10rem, 40px) auto min(20rem, 100px);
        /* padding-top: min(14rem, 40px);
    padding: min(13rem, 80px) min(8rem, 110px); */
        padding: 28px 16px 0;
        border-radius: 5px;
    }

    .bl_rule_itemTxtBox {
        margin-bottom: min(17rem, 28px);
    }

    .bl_rule_itemTxt {
        margin-bottom: min(10rem, 70px);
    }

    .bl_rule_itemTxt {
        font-size: min(6.2rem, 17px);
        margin-bottom: min(3rem, 10px);
    }

    .bl_rule_itemSubTxt {
        line-height: 2em;
        font-size: min(5.8rem, 14px);
    }

    .bl_rule_subTitle {
        margin-top: 40px;
        font-size: 20px;
    }

    .bl_rule_newMark {
        font-size: 16px;
    }

    .bl_rule_item_prizeWrap {
        margin-bottom: min(10rem, 60px);
    }

    .bl_rule_item_prize {
        margin-bottom: min(8rem, 50px);
    }

    .bl_rule_item_prize_txt {
        font-size: min(8rem, 40px);
        width: min(105rem, 560px);
        margin: 0 auto min(2rem, 10px);
        padding: min(3.3rem, 14px) 0;
        clip-path: polygon(6% 0%, 100% 0%, 94% 100%, 0% 100%);
    }

    .bl_rule_item_prize_subTxt {
        font-size: min(5rem, 13px);
        width: min(105rem, 560px);
    }

    .bl_rule_item_subPrize_txt {
        font-size: 14px;
        padding: 14px 0 14px 4px;
        text-align: center;
    }

    .bl_rule_subTitle_center {
        padding-bottom: 5px;
    }

    /* キャッチコピー */

    .el_catchphrase {
        width: 100%;
        font-size: 15px;
        margin-bottom: 50px;
    }

    .el_catchphrase h2 {
        font-size: 18px;
        margin-bottom: 20px;
    }

    .el_catchphrase_txt {
        font-size: 15px;
    }

    .el_catchphrase_txt_l {
        font-size: 17px;
    }

    .bl_top_schedule {
        margin-bottom: 30px;
    }

    .bl_rule_schedule_txt {
        font-size: 14px;
    }

    .bl_team_item_linkbox {
        display: flex;
    }

    .bl_team_item_linkbox>div {
        width: 50%;
    }

    .bl_team_item_img img {
        width: auto;
        height: 150px;
    }

    .bl_mainPlayer_item_member_img img {
        width: auto;
        height: 130px;
    }

    .bl_mainPlayer_item_detail_memberName_txt {
        font-size: min(6rem, 18px);
        padding: 8px 5px;
    }

    .bl_mainPlayer_item_member_imgWrap {
        margin: 5px 0;
    }
}

@media screen and (max-width: 357px) {
    .bl_rule_subTitle {
        font-size: 17px;
    }
}

@media screen and (max-width: 357px) {
    .el_catchphrase {
        font-size: 13px;
    }

    .el_catchphrase h2 {
        font-size: 16px;
    }

    .el_catchphrase_txt {
        font-size: 13px;
    }

    .el_catchphrase_txt_l {
        font-size: 15px;
    }
}