<style>
        body {
            margin: 0;
            padding: 0;
            background-color: #fff;
        }


        



        /*共通CSSここから*/

        a[target="_blank"],
        a {
            text-decoration: none;
            color: #0033cc;
        }
        h1 {
            border-bottom: solid 3px #202f41;
            position: relative;
        }
        h1:after {
            position: absolute;
            content: '';
            display: block;
            border-bottom: solid 3px #a9ceff;
            width: 20%;
        }
        .overview_map,
        .overview_map a {
            color: #CCC;
            text-decoration: none;
        }
        #news_box,
        #event_last {
            background-color: #e1e7ef;
            margin-right: calc(50% - 50vw);
            margin-left: calc(50% - 50vw);
            padding-right: calc(50vw - 50%);
            padding-left: calc(50vw - 50%);
        }
        h2,
        #event_pro p {
            text-align: center;
        }
        h2 {
          position: relative;
          display: inline-block;
          margin-bottom: 1em;
        }
        h2:before {
          content: '';
          position: absolute;
          bottom: -15px;
          display: inline-block;
          width: 60px;
          height: 2px;
          left: 50%;
          -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
          background-color: black;
          border-radius: 2px;
        }
        /* マネージメントトップ*/
        #management_top img {
            margin: auto!important;
            display: block!important;
        }

        /* 下にホバー*/
        .hover_a a {
            color: black!important;
            font-weight: bold;
        }

        /*お知らせ*/
        .news_box {
            background-color: #e1e7ef;
        }

        .news_list {
            background-color: white;
        }

        .news_list {
            list-style: none outside;
            margin: 0;
            padding: 0;
        }

        .news_list .news_item:first-child a,
        .news_list .news_item:second-child a {
            border-bottom: 1px solid #CCC;
        }

        .news_list .news_item:last-child a {
            border-bottom: none;
        }

        .news_list .news_item .news_date {
            margin: 0;
            min-width: 100px;
            color: #999;
        }

        .news_list .news_item .news_title {
            margin: 0;
            width: 100%;
        }

        .news_list .news_item a:hover .news_title {
            color: black;
        }

        .news_list ul {
            overflow: hidden;
        }

        .news_item p {
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap;
        }
        /*お知らせここまで*/

        /*マネージメントについて*/
        .box_management_1,
        .box_management_2,
        .box_management_3,
        .box_management_4,
        .box_management_5 {
            padding: 10px;
            background-image: linear-gradient(130deg, #a9ceff 50%, #d5cfff 91%);
            margin: 10px;
        }
        .box_management_1,
        .box_management_2,
        .box_management_3,
        .box_management_4,
        .box_management_5 {
            display: flex;
            flex-wrap: wrap;
            justify-content: start;
            align-items: center;
        }
        .box {
            opacity: 0;
            transition: 1s;
            position: relative;
            top: 80px;
        }

        .active {
            opacity: 1;
            top: 0;
        }

        a.btn_01 {
            display: flex;
            justify-content: space-evenly;
            align-items: center;
            text-align: center;
            text-decoration: none;
            width: 14em;
            padding: 1rem 4rem 1rem 3rem;
            font-weight: bold;
            background: #202f41;
            color: #fff;
            position: relative;
            transition: 0.5s;
        }
        .bold {
            font-weight: bold;
            color: #202f41;
        }
        /*選手CSSここから*/
        .player_photo a {
            text-decoration: none;
            color: black;
        }
        .player_photo p {
            text-align: center;
        }
        h3 {
            border-bottom: solid 1px #202f41;
            position: relative;
        }

        /*共通CSSここまで*/




        /*PC向けのスタイルここから*/
        @media screen and (min-width: 769px) {

            main {
                max-width: 1100px;
                margin: 0 auto;
            }
            h1 {
                font-size: 2rem;
            }
            h1,
            h1:after {
                padding-bottom: 10px;
                margin-bottom: auto;
            }
            h2 {
                text-align: center;
                display: block;
                margin: 30px 0 43px 0;
            }
            h2:before {
                bottom: -15px;
            }

        /*パンくずCSSここから*/
        .breadcrumb {
          margin: 0;
          padding: 10px 0;
          list-style: none;
        }

        .breadcrumb li {
          display: inline;
          list-style: none;
          font-weight: bold;
        }

        .breadcrumb li:after {
          content: '>';
          padding: 0 0.2em;
          color: #555;
        }

        .breadcrumb li:last-child:after {
          content: '';
        }

        .breadcrumb li a {
          text-decoration: none;
          color: black;
          margin: 3px;
        }

        .breadcrumb li a:hover {
          text-decoration: underline;
        }
        /*パンくずCSSここまで*/

           /*下にホバー*/
           .hover_a_flex {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
           }
           .hover_a_flex a {
            margin: 2rem;
            position: relative;
            font-size: 1rem;
            text-align: center;
           }
           .hover_a_flex a::after {
            position: absolute;
            left: 0;
            content: '';
            width: 100%;
            height: 2px;
            background: #202f41;
            bottom: -5px;
            transform: scale(0, 1);
            transform-origin: center top;
            transition: transform 0.3s;
           }
           .hover_a_flex a:hover::after {
            transform: scale(1, 1);
           }
           .arrow {
             position: relative;
             display: inline-block;
             width: 25px;
             height: 15px;
             right: 2px;
             top: -1px;
           }
           .arrow::before,
           .arrow::after {
             content: "";
             position: absolute;
             bottom: 0;
             left: calc(50% - -4px);
             width: 2px;
             height: 12px;
             background-color: #202f41;
             transform-origin: 50% calc(100% - 1px);
           }
           .arrow::before {
             transform: rotate(45deg);
           }
           .arrow::after {
             transform: rotate(-45deg);
           }
           /*下にホバーここまで*/


            /*お知らせCSSここから*/
            .news {
                padding: 5px 0 0 0;
            }

            .news_list .news_item a {
                display: flex;
                flex-wrap: wrap;
                flex-wrap: nowrap;
                text-decoration: none;
                color: #333;
                border-bottom: 1px solid #CCC;
                padding: 20px 20px;
                margin: 0 10px;
            }
            .news_list .news_item .news_date {
                padding: 0 20px 0 0;
            }
            .news_item img {
                width: 110px;
                margin-right: 10px;
            }
            .news_item a {
                align-items: center;
            }
            .news_box_sp {
                display: none;
            }
            /*お知らせCSSここまで*/

            /*ボタンCSSここから*/
            .news_btn {
                display: flex;
                align-items: center;
                justify-content: center;
            }

            .news_btn a {
                background: #CCC;
                position: relative;
                display: flex;
                justify-content: space-around;
                align-items: center;
                margin: 0 auto;
                max-width: 240px;
                padding: 10px 25px;
                color: black;
                transition: 0.3s ease-in-out;
                font-weight: 500;
                z-index: 0;
            }

            .news_btn,
            .news_btn a {
                text-decoration: none !important;
                text-align: center;
                padding: 15px 150px;
            }

            .news_btn a {
                margin: 30px;
            }

            .news_btn a:before {
                content: "";
                position: absolute;
                top: 0;
                bottom: 0;
                width: 0;
                display: block;
                background: #202f41;
                transition: .3s;
                left: 0;
            }

            .news_btn a:hover {
                color: #FFF;
            }

            .news_btn a:hover:before {
                width: 100%;
                z-index: -1;
            }

            /*ボタンCSSここまで*/

            /*マネージメントについて*/
            .about_bold {
                font-weight: bold;
                font-size: 1.5vw;
                margin: 10px 0;
                line-height: 2rem;
                color: #202f41;
            }
           .box_management_1,
           .box_management_2,
           .box_management_3,
           .box_management_4,
           .box_management_5 {
            width: 700px;
           }
            .box_management_1 img {
                width: 20px;
                margin: 15px 20px;
            }
            .box_management_2 img,
            .box_management_3 img,
            .box_management_4 img,
            .box_management_5 img {
             width: 2vw;
             margin: 15px;
            }
            .content_bule {
             flex: 1;
            }
            .about_management_flex {
                display: flex;
                flex-wrap: wrap;
                justify-content: space-between;
                align-items: center;
                background-image: url(../images/HP_bg_dot.png), url(../images/HP_bg_dot.png);
                background-size: 250px, 200px;
                background-position: -4vw -1vw, 30vw 15vw;
                background-repeat: no-repeat, no-repeat;
                margin-right: calc(50% - 50vw);
                margin-left: calc(50% - 50vw);
                padding-right: calc(50vw - 50%);
                padding-left: calc(50vw - 50%);
            }
            /*マネージメントについてここまで*/

           a.btn_01 {
            margin: 3em auto;
           }
          a.btn_01::after {
            content: '';
            width: 7px;
            height: 7px;
            border-top: 2px solid #fff;
            border-right: 2px solid #fff;
            transform: rotate(45deg);
          }
          a.btn_01:hover {
            background: #468FBC;
            color: #fff;
          }


          /*選手のCSS*/
          #management_pro img {
            width: 200px;
            padding: 0 10px;
          }
          .player_photo {
            display: flex;
            flex-wrap: wrap;
            justify-content: flex-start;
          }
          /*写真がない選手のCSSここから*/
        }


        /*PC向けのスタイルここまで*/



        /* SP向けのスタイル*/
        @media screen and (max-width: 768px) {
            main {
                margin: 0 25px;
            }
            h1 {
                margin: 10px 0 0 0;
            }
            h1,
            h1:after {
                padding-bottom: 3px;
            }
            h2 {
                font-size: 1rem;
                display: block;
            }
            h2:before {
                bottom: -8px;
            }
            #management_top img {
                width: 100%;
            }

        /*パンくずCSSここから*/
        .breadcrumb {
          margin: 0;
          padding: 5px 0;
          list-style: none;
        }

        .breadcrumb li {
          display: inline;
          list-style: none;
          font-size: 0.6rem;
        }

        .breadcrumb li:after {
          content: '>';
          padding: 0 0.2em;
          color: #555;
        }

        .breadcrumb li:last-child:after {
          content: '';
        }

        .breadcrumb li a {
          text-decoration: none;
          color: black;
          margin: 3px;
        }

        .breadcrumb li a:hover {
          text-decoration: underline;
        }
        /*パンくずCSSここまで*/

           /*下にホバー*/
           .hover_a_flex {
            text-align: center;
           }
           .hover_a_flex a {
            display: block;
            padding: 10px 0;
            margin: 10px;
            background-color: #e1e7ef;
           }
           .arrow {
            display: none;
           }
           /*下にホバーここまで*/



            /*お知らせCSSここから*/
            .news h2 {
                padding-top: 15px;
                margin-bottom: 25px;
            }
            .news_list {
                display: none;
            }
            .white_newsbox img {
                width: 150px;
                display: block;
                margin: auto;
            }
            .white_newsbox {
                display: block;
                margin: auto;
                text-align: left;
                width: 280px;
                background-color: white;
                padding: 10px;
            }
            .white_newsbox a {
                text-decoration: none;
            }
            .white_newsbox p {
                color: black;
                margin: 0 10px 0 10px;
            }
            .box_content {
                margin: 10px 0 17px 0;
            }
            .box_content:last-child {
                margin-bottom: 0;
            }
            .news_date p {
                color: #999;
            }
            /*お知らせCSSここまで*/

            /*ボタンCSSここから*/
            .news_btn {
                display: flex;
                align-items: center;
                justify-content: center;
                padding: 26px 0 26px 0;
            }

            .news_btn a {
                background: #202f41;
                position: relative;
                display: flex;
                justify-content: space-around;
                align-items: center;
                margin: 0 auto;
                max-width: 240px;
                padding: 10px 25px;
                color: #FFF;
                transition: 0.3s ease-in-out;
                font-weight: 500;
                z-index: 0;
            }

            .news_btn a {
                text-decoration: none !important;
                text-align: center;
                padding: 20px 60px;
            }

            /*ボタンCSSここまで*/

            .about_management h2 {
                padding-top: 10px;
            }
            /*マネージメントについてここまで*/
            .about_p {
                text-align: left;
                margin: auto;
                padding-bottom: 10px;
            }
            .about_bold {
                font-weight: bold;
                color: #202f41;
                padding-top: 10px;
            }
            .box_management_1 img {
                width: 5vw;
                margin: 0 19px;
            }
            .box_management_2 img,
            .box_management_3 img,
            .box_management_4 img,
            .box_management_5 img {
             width: 7vw;
             margin: 0 15px;
            }
            .content_bule {
             flex: 1;
            }
            .about_management_flex {
                display: flex;
                flex-wrap: wrap;
                justify-content: space-between;
                align-items: center;
                background-image: url(../images/HP_bg_dot.png), url(../images/HP_bg_dot.png);
                background-size: 33vw, 36vw;
                background-position: -11vw -1vw, 68vw 26vw;
                background-repeat: no-repeat, no-repeat;
                margin-right: calc(50% - 50vw);
                margin-left: calc(50% - 50vw);
                padding-right: calc(50vw - 50%);
                padding-left: calc(50vw - 50%);
            }
           a.btn_01 {
            margin: 0 auto;
           }


           /*選手のCSS*/
          #management_pro img {
            width: 142px;
            padding: 0 10px;
          }
          .player_photo {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
          }
          .player p {
            margin-block-start: 0;
          }
          /*写真がない選手のCSSここから*/
        }

        /* SP向けのスタイルここまで*/






    </style>