@charset "UTF-8";

/*---------------------------------------------------------
Reset
---------------------------------------------------------*/

html {
    /*overflow-x: hidden;*/
    scroll-behavior: smooth;
}

body {
    /*overflow-x: hidden;*/
}

html,
body,
div,
article,
section,
main,
h1,
h2,
h3,
h4,
h5,
h6,
dl,
dt,
dd,
ul,
ol,
li,
pre,
form,
input,
textarea,
address,
nav,
table,
th,
td,
a,
p,
img,
figure,
span,
em,
small {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

small {
    font-size: 12px;
    line-height: 1.2;
    display: inline-block;
}

main {
    display: block;
}

ul,
li {
    list-style-type: none;
}

table {
    border-collapse: collapse;
}

img {
    border: none;
}

a {
    text-decoration: none;
}

a,
button {
    outline: none;
}

a:focus,
button:focus {
    outline: none;
}

.mt4 {
    margin-top: 4px !important;
}

.mt8 {
    margin-top: 8px !important;
}

.mt16 {
    margin-top: 16px !important;
}

.mt24 {
    margin-top: 24px !important;
}

.mt40 {
    margin-top: 40px !important;
}

.mb40 {
    margin-bottom: 40px;
}

.bold {
    font-weight: bold;
}

.res-pc {
    display: block !important;
}

.res-sp {
    display: none !important;
}

.widthSp {
    width: calc(100% - 48px);
    margin: 40px auto;
}

.center {
    text-align: center !important;
}

.center_margin {
    margin: 0 auto;
}

.bold {
    font-weight: bold;
}

.updown {
    animation-name: updown1;
    /* アニメーション名の指定 */
    animation-delay: 0s;
    /* アニメーションの開始時間指定 */
    animation-duration: 3s;
    /* アニメーション動作時間の指定 */
    animation-timing-function: ease-in-out;
    /* アニメーションの動き指定（徐々に早く）*/
    animation-iteration-count: infinite;
}

@keyframes updown1 {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0);
    }
}

.updown2 {
    animation-name: updown1;
    /* アニメーション名の指定 */
    animation-delay: 0s;
    /* アニメーションの開始時間指定 */
    animation-duration: 4s;
    /* アニメーション動作時間の指定 */
    animation-timing-function: ease-in-out;
    /* アニメーションの動き指定（徐々に早く）*/
    animation-iteration-count: infinite;
}

@keyframes updown2 {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0);
    }
}

@media only screen and (max-width: 959px) {
    .res-pc {
        display: none !important;
    }

    .res-sp {
        display: block !important;
    }

    .widthSp {
        margin: 16px auto;
    }

    .updown {
        animation-name: updown1;
        /* アニメーション名の指定 */
        animation-delay: 0s;
        /* アニメーションの開始時間指定 */
        animation-duration: 3s;
        /* アニメーション動作時間の指定 */
        animation-timing-function: ease-in-out;
        /* アニメーションの動き指定（徐々に早く）*/
        animation-iteration-count: infinite;
    }

    @keyframes updown1 {
        0% {
            transform: translateY(0);
        }

        50% {
            transform: translateY(-4px);
        }

        100% {
            transform: translateY(0);
        }
    }

    .updown2 {
        animation-name: updown1;
        /* アニメーション名の指定 */
        animation-delay: 0s;
        /* アニメーションの開始時間指定 */
        animation-duration: 4s;
        /* アニメーション動作時間の指定 */
        animation-timing-function: ease-in-out;
        /* アニメーションの動き指定（徐々に早く）*/
        animation-iteration-count: infinite;
    }

    @keyframes updown2 {
        0% {
            transform: translateY(0);
        }

        50% {
            transform: translateY(-4px);
        }

        100% {
            transform: translateY(0);
        }
    }
}


/*---------------------------------------------------------
common
---------------------------------------------------------*/

html {
    font-size: 100%;
}


/*
@media only screen and (min-width: 320px) and (max-width: 414px) {
   html {
      font-size: 2.41546vw;
   }
}

@media screen and (min-width: 768px) and (max-width: 1240px) {
   html {
      font-size: 0.80645vw;
   }
}
*/

body {
    margin: inherit;
    font-size: 16px;
    font-family: 'Noto Sans JP', sans-serif;
    color: #00030b;
    line-height: 1.6;
    letter-spacing: 0.04em;
    min-width: 320px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-text-size-adjust: 100%;
    word-break: break-word;
    font-weight: 400;
    position: relative;
    background: #2A3152;
    /*overflow: hidden;*/
}

@media only screen and (max-width: 959px) {
    body {
        margin: inherit;
        font-size: 14px;
        color: #00030b;
        line-height: 1.4;
        letter-spacing: 0.04em;
    }
}

img {
    width: 100%;
    vertical-align: bottom;
}

a {
    color: #fff;
    text-decoration: none;
    -webkit-transition-duration: 0.4s;
    -o-transition-duration: 0.4s;
    transition-duration: 0.4s;
}

a:hover {}

.underline {
    text-decoration: underline;
}

.underline:hover {
    text-decoration: none;
}

.bgwhite {
    background: #fff;
    border-radius: 16px;
    padding: 40px;
}

@media only screen and (max-width: 959px) {
    .bgwhite {
        padding: 24px;
    }
}


/*---------------------------------------------------------
header
---------------------------------------------------------*/

header {
    z-index: 9998;
}

.header_logo {
    position: fixed;
    left: 0;
    top: 0;
    z-index: 9998;
}

.header_logo img {
    width: 416px;
}

header .headerR .headerbtn {
    text-align: right;
}

header .headerR .headerbtn a {
    min-width: 140px;
    font-size: 16px;
    padding: 10px auto;
    line-height: 14px;
    font-weight: bold;
    min-height: 38px;
    background-color: #268FCF;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    border-radius: 8px;
}

header .headerR .linebtn a {
    color: #1F1FA3;
    border: 2px solid #1F1FA3;
    background-color: #fff;
}

header .headerR .headerR_btn {
    display: flex;
    justify-content: flex-end;
}

header .headerR .headerbtn a:hover {
    opacity: 0.6;
}

header .nav {
    background: #202126;
    width: 100%;
    padding: 16px 0;
    position: fixed;
    right: 0;
    top: 0;
    z-index: 9997;
    display: flex;
    justify-content: space-between;
}

header .nav ul {
    display: flex;
    padding-right: 8px;
    justify-content: right;
}

header .nav ul li {
    padding: 0 8px;
    color: #fff;
}

header .nav ul li a {
    color: #fff;
    font-weight: bold;
    font-size: 14px;
}

header .nav ul li a:hover {
    opacity: 0.4;
}


/*---------------------------------------------------------
headerSP
---------------------------------------------------------*/


/* Navbar & Navmenu color */

:root {
    --background-navbar: rgba(0, 3, 11, 0.96);
}

.headersp {
    position: fixed;
    width: 100%;
    height: 64px;
    z-index: 9998;
    left: -1px;
}

.menu,
.menu span {
    display: inline-block;
    -webkit-transition: all .4s;
    transition: all .4s;
    box-sizing: border-box;
}

.menu {
    position: fixed;
    top: 20px;
    right: 25px;
    width: 35px;
    height: 22px;
    z-index: 10;
    border: none;
    background: none;
}

.menu span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #fff;
    z-index: 10;
}

.menu span:nth-of-type(1) {
    top: 0px;
}

.menu span:nth-of-type(2) {
    top: 10px;
}

.menu span:nth-of-type(3) {
    bottom: 0px;
}

.menu.active span:nth-of-type(1) {
    -webkit-transform: translateY(10px) rotate(45deg);
    transform: translateY(10px) rotate(45deg);
    background-color: #fff;
}

.menu.active span:nth-of-type(2) {
    opacity: 0;
    background-color: #fff;
}

.menu.active span:nth-of-type(3) {
    -webkit-transform: translateY(-10px) rotate(-45deg);
    transform: translateY(-10px) rotate(-45deg);
    background-color: #fff;
}

#nav {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 10;
    width: 100%;
    height: 100vh;
    opacity: 0;
    background: linear-gradient(#004975 0%, #00304e 35.66%, #000 100%);
    transition: all 0.3s ease-in-out;
    visibility: hidden;
}

#nav.active {
    right: 0;
    opacity: 1;
    -moz-transform: translateX(0);
    -webkit-transform: translateX(0);
    transform: translateX(0);
    visibility: visible;
}

#nav ul {
    margin: 20px 0;
    padding: 20px 0;
}

#nav ul li {
    list-style-type: none;
    padding: 16px;
}

#nav ul li a {
    display: block;
    transition: all 0.2s ease-in-out;
    text-align: left;
    font-weight: bold;
    text-decoration: none;
    color: #fff;
    text-align: center;
    font-size: 18px;
}

.menuList .btn a {
    width: 100%;
    text-align: center !important;
    background: #268FCF;
    border-radius: 8px;
    padding: 8px 0;
}

.menuList .btnlist .btn a {
    margin: 0 auto;
    color: #fff !important;
}

.menuList .btnlist .linebtn a {
    color: #1F1FA3 !important;
    border: #1F1FA3 2px solid;
    background: none;
}

.headersp .navtext a img {
    width: 210px;
}


/*---------------------------------------------------------
anclink
---------------------------------------------------------*/

.anclink {
    display: flex;
    width: 100%;
}

.anclink li {
    width: 50%;
}

.anclink li a {
    position: relative;
    display: block;
    overflow: hidden;
}

.anclink li .box {
    cursor: pointer;
    overflow: hidden;
    position: relative;
    width: 100%;
}

.anclink li .box-bg {
    background-image: url(../img/img_anc01@2x.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 380px;
    transition: transform .6s ease;
    width: 100%;
    background-position: center;
}

.anclink li .box-bg2 {
    background-image: url(../img/2024_sjt_00.jpg);
}

.anclink li .box:hover .box-bg {
    transform: scale(1.1);
}

.img_anc_tx {
    left: -2px;
    top: 0;
    position: absolute;
    width: 370px;
    z-index: 1;
}

.img_anc_tx_02 {
    left: 0;
    bottom: 0;
    position: absolute;
    width: 370px;
    z-index: 1;
}

@media only screen and (max-width: 959px) {
    .anclink {
        display: block;
        width: 92%;
        margin: 4% auto 0;
    }

    .anclink li {
        width: 100%;
    }

    .anclink li .box-bg {
        height: 160px;
    }

    .img_anc_tx {
        width: 170px;
    }

    .img_anc_tx_02 {
        width: 170px;
    }
}


/*---------------------------------------------------------
main
---------------------------------------------------------*/

.main {
    padding: 160px 0 0;
    position: relative;
    z-index: 1;
}

@media only screen and (max-width: 959px) {
    .main {
        padding: 64px 0 0;
    }
}


/*---------------------------------------------------------
mv video
---------------------------------------------------------*/

.videoWrap {
    padding-top: 56.25%;
    width: 100%;
    position: relative;
}

.videoWrap video {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0px;
    left: 0px;
}


/*---------------------------------------------------------
txreadarea
---------------------------------------------------------*/

.txreadarea {
    display: flex;
    width: 960px;
    margin: 0 auto;
    justify-content: space-between;
    position: relative;
    z-index: 1;
}

.maincopy {
    width: 55%;
}

.txreadarea div {
    width: 40%;
    margin-top: 160px;
}

.txreadarea .tx {
    font-weight: bold;
    font-size: 18px;
    letter-spacing: 0.04em;
    line-height: 48px;
    text-align: left;
    color: #fff;
    margin-top: 24px;
}

.bg_tri_01 {
    position: absolute;
    left: 0;
    top: 0;
    width: 460px;
    z-index: 0;
}

.bg_tri_02 {
    position: absolute;
    right: 0;
    top: 320px;
    width: 400px;
    z-index: 0;
}

@media only screen and (max-width: 959px) {
    .txreadarea {
        display: block;
        width: calc(100% - 12%);
    }

    .maincopy {
        width: 100%;
    }

    .txreadarea div {
        width: 100%;
        margin-top: 40px;
    }

    .txreadarea .tx {
        font-size: 14px;
        line-height: 32px;
        margin-top: 24px;
    }

    .bg_tri_01 {
        position: absolute;
        left: 0;
        top: 96px;
        width: 280px;
        z-index: 0;
    }

    .bg_tri_02 {
        position: absolute;
        right: 0;
        top: 480px;
        width: 200px;
        z-index: 0;
    }
}


/*---------------------------------------------------------
contracted
---------------------------------------------------------*/

.contracted {
    padding-top: 120px;
    position: relative;
    z-index: 1;
}

.contracted_innner {
    padding-top: 200px;
    margin-top: -120px;
}

.bg_tri_03 {
    position: absolute;
    left: 0;
    top: 80px;
    width: 320px;
    z-index: 0;
}

.contracted_playerL {
    display: flex;
    width: 100%;
    background: #303964;
    align-items: center;
    margin-top: 64px;
    position: relative;
    z-index: 1;
}

.contracted_playerR {
    display: flex;
    width: 100%;
    background: #303964;
    align-items: center;
    flex-direction: row-reverse;
    margin-top: 24px;
    position: relative;
    z-index: 1;
}

.contracted_playerL img {
    width: 50%;
}

.contracted_playerR img {
    width: 50%;
}

.contracted_playerL div {
    width: 50%;
    max-width: 560px;
    padding-left: 40px;
}

.contracted_playerR div {
    width: 50%;
    max-width: 560px;
    padding-right: 40px;
}

.contracted .textbox {
    position: relative;
}

.contracted .textbox h3 {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: bold;
    font-size: 32px;
    letter-spacing: 0.04em;
    line-height: 32px;
    text-align: left;
    color: #fff;
}

.contracted .textbox h3 span {
    font-family: "Teko", sans-serif;
    font-weight: normal;
    font-size: 24px;
    line-height: 24px;
    text-align: left;
    color: #fff;
}

.contracted .textbox p {
    margin-top: 24px;
    border-top: 4px solid #fff;
    padding-top: 24px;
    color: #fff;
}

.img_cptri_L {
    position: absolute;
    left: 0;
    top: 0;
    width: 72px !important;
}

.img_cptri_R {
    position: absolute;
    right: 0;
    top: 0;
    width: 72px !important;
}

@media only screen and (max-width: 959px) {
    .contracted {
        padding-top: 80px;
    }

    .bg_tri_03 {
        top: 80px;
        width: 160px;
    }

    .contracted_playerL {
        display: block;
        width: 100%;
        align-items: center;
        margin-top: 40px;
        padding-bottom: 24px;
    }

    .contracted_playerR {
        display: block;
        width: 100%;
        justify-content: flex-end;
        margin-top: 16px;
        position: relative;
        z-index: 1;
        padding-bottom: 24px;
    }

    .contracted_playerL img {
        width: 100%;
    }

    .contracted_playerR img {
        width: 100%;
    }

    .contracted_playerL div {
        width: calc(100% - 12%);
        max-width: inherit;
        padding-left: 0;
        margin: 24px auto 0;
    }

    .contracted_playerR div {
        width: calc(100% - 12%);
        max-width: inherit;
        padding-right: 0;
        margin: 24px auto 0;
    }

    .contracted .textbox h3 {
        font-size: 20px;
        line-height: 20px;
    }

    .contracted .textbox h3 span {
        font-family: "Teko", sans-serif;
        font-size: 16px;
        line-height: 16px;
    }

    .contracted .textbox p {
        margin-top: 16px;
        border-top: 2px solid #fff;
        padding-top: 16px;
    }

    .img_cptri_L {
        display: none;
    }

    .img_cptri_R {
        display: none;
    }
}


/*---------------------------------------------------------
tc
---------------------------------------------------------*/

.tc {
    padding: 120px 0;
    position: relative;
    z-index: 1;
}

.bg_tri_04 {
    position: absolute;
    left: 0;
    top: 280px;
    width: 320px;
    z-index: 0;
}

.bg_tri_05 {
    position: absolute;
    right: 0;
    top: 1200px;
    width: 400px;
    z-index: 0;
}

.bg_tri_06 {
    position: absolute;
    left: 0;
    top: 280px;
    width: 320px;
    z-index: 0;
}

.bg_tri_07 {
    position: absolute;
    right: 0;
    top: 1200px;
    width: 400px;
    z-index: 0;
}

.tcIn {
    width: 960px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.tcread {
    font-weight: bold;
    font-size: 20px;
    letter-spacing: 0.04em;
    line-height: 40px;
    text-align: left;
    color: #fff;
    margin-top: 64px;
    position: relative;
    z-index: 1;
}

.tcimage {
    width: 960px;
    margin: -640px auto 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    position: relative;
    z-index: 1;
    position: relative;
    z-index: 1;
}

.tcimage li {
    width: 450px;
}

.tcimage li.tcimage02 {
    margin-top: 64px;
}

.tcimage li.tcimage03 {
    margin-top: 0;
}

.tcimage li.tcimage04 {
    margin-top: 64px;
}

.tcimage li.tcimage01_b {
    margin-top: 64px;
}

.tcimage li.tcimage03_b {
    margin-top: 64px;
}

.newspaper {
    display: flex;
    justify-content: space-around;
    width: 960px;
    margin: 80px auto;
    position: relative;
    z-index: 1;
}

.newspaper li {
    width: 30%;
    text-align: center;
    color: #fff;
    line-height: 3;
}

.newspaper li a:hover {
    opacity: 0.6;
}

.cupmovie {
    width: 960px;
    margin: 64px auto 0;
}

.schedule {
    color: #fff;
    margin-top: 16px;
    width: 100%;
}

.schedule td {
    padding: 8px;
    font-size: 16px;
    border-bottom: 1px solid #535B80;
}

.schedule td:nth-child(1) {
    width: 80px;
}

.schedule td:nth-child(2) {
    width: 160px;
}

.btnbox {
    width: 960px;
    margin: 40px auto;
    display: flex;
    justify-content: space-between;
}

.btnbox li {
    width: 48%;
}

.bg_img_slide {
    background-image: url(../img/bg_img_slide.svg);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    width: 100%;
    height: 760px;
    position: relative;
    z-index: 0;
}

.bg_img_slideR {
    background-image: url(../img/bg_img_slide_R.svg);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    width: 100%;
    height: 760px;
    position: relative;
    z-index: 0;
}

.day {
    background: #202126;
    color: #fff;
    margin-top: 24px;
    display: inline-block;
    font-weight: bold;
    padding: 4px 8px;
}

.daybig {
    font-size: 24px;
}

.movie-title-container {
    display: flex;
    justify-content: center;
    margin: 50px auto -50px;
}


.movie-title {
    margin: 50px auto 0px;
    padding-bottom: 5px;
    color: #fff;
    font-size: 24px;
    font-weight: bold;
    border-bottom: #fff solid 2.5px;
}



.movie {
    text-align: center;
    margin: 80px auto 0;
    width: 960px;
    z-index: 1;
    position: relative;
}

@media only screen and (max-width: 959px) {
    .tc {
        padding: 80px 0 0;
    }

    .bg_tri_04 {
        left: 0;
        top: 140px;
        width: 240px;
    }

    .bg_tri_05 {
        top: 800px;
        width: 240px;
        z-index: 0;
    }

    .bg_tri_06 {
        top: 480px;
        width: 240px;
    }

    .bg_tri_07 {
        top: 1200px;
        width: 240px;
        display: none;
    }

    .tcIn {
        width: calc(100% - 12%);
        margin: 0 auto;
    }

    .tcread {
        font-size: 14px;
        line-height: 28px;
        margin-top: 40px;
    }

    .tcimage {
        width: calc(100% - 12%);
        margin: -340px auto 0;
        display: flex;
    }

    .tcimage li {
        width: 48%;
    }

    .tcimage li.tcimage02 {
        margin-top: 16px;
    }

    .tcimage li.tcimage03 {
        margin-top: 0;
    }

    .tcimage li.tcimage04 {
        margin-top: 16px;
    }

    .tcimage li.tcimage01_b {
        margin-top: 16px;
    }

    .tcimage li.tcimage03_b {
        margin-top: 16px;
    }

    .tcimage li.tcimage04 {
        margin-top: 16px;
    }

    .newspaper {
        display: flex;
        justify-content: space-around;
        width: calc(100% - 12%);
        margin: 40px auto;
        position: relative;
        z-index: 1;
    }

    .newspaper li {
        width: 30%;
        font-size: 12px;
    }

    .btnbox {
        width: calc(100% - 12%);
        margin: 40px auto;
        display: block;
        justify-content: space-between;
    }

    .btnbox li {
        width: 100%;
        margin-bottom: 16px;
    }

    .bg_img_slide {
        height: 400px;
        position: relative;
        z-index: 0;
    }

    .bg_img_slideR {
        height: 400px;
        position: relative;
        z-index: 0;
    }

    /* ================================= */
    .movie-title-container {
        margin: 50px auto -25px;
    }

    .movie-title {
        font-size: 14px;
    }

    /* ====================================*/
    .movie {
        margin-top: 40px;
        width: 88%;
    }

    .cupmovie {
        width: calc(100% - 12%);
        margin: 40px auto 0;
    }

    .day {
        font-size: 12px;
    }

    .daybig {
        font-size: 18px;
    }

    .schedule td {
        font-size: 14px;
    }

    .schedule td:nth-child(1) {
        width: 48px;
    }

    .schedule td:nth-child(2) {
        width: 126px;
    }
}


/*---------------------------------------------------------
btn
---------------------------------------------------------*/

a.btn_01 {
    display: block;
    text-align: center;
    vertical-align: middle;
    text-decoration: none;
    min-width: 440px;
    margin: auto;
    padding: 40px 0;
    font-weight: bold;
    border: 1px solid #FFFFFF;
    transition: 0.5s;
    font-weight: bold;
    font-size: 32px;
    letter-spacing: 0.04em;
    line-height: 64px;
    text-align: center;
    color: #fff;
    position: relative;
    z-index: 1;
}

a.btn_01:hover {
    color: #fff;
    background: #0A3788;
    border: 1px solid #0A3788;
}

.disabled {
    background: #515A69;
    border: none !important;
}

a.disabled:hover {
    background: #515A69;
    border: none !important;
}

@media only screen and (max-width: 959px) {
    a.btn_01 {
        min-width: inherit;
        padding: 24px 0;
        font-size: 20px;
        line-height: 28px;
    }

    a.btn_01:hover {
        color: #fff;
        background: #0A3788;
        border: 1px solid #0A3788;
    }
}


/*---------------------------------------------------------
loopslider
---------------------------------------------------------*/

.loopslider {
    margin-top: 120px;
    position: relative;
    z-index: 2;
}


/*
右から左へ
----------------------------*/

@keyframes infinity-scroll-left {
    from {
        transform: translateX(0);
    }

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


/*
IE11対策
----------------------------*/

_:-ms-lang(x)::-ms-backdrop,
.loopslider {
    display: -ms-grid;
    overflow: hidden;
}


/*----------------------------*/

.loopslider__wrap {
    display: flex;
    overflow: hidden;
}

.loopslider__list {
    display: flex;
    list-style: none;
    align-items: center;
}

.loopslider__list--left {
    animation: infinity-scroll-left 70s infinite linear 0.5s both;
}

.loopslider__item {
    width: calc(100vw / 4);
    margin-right: 40px;
}

.loopslider__item>img {
    width: 100%;
}

.loopslider__wrap:hover .loopslider__list--left {
    /*
    animation-play-state: paused;
    */
}

@media screen and (max-width: 959px) {
    .loopslider {
        margin-top: 40px;
    }

    .loopslider__item {
        width: calc(100vw / 2.5);
        margin-right: 16px;
    }
}


/*---------------------------------------------------------
 title
---------------------------------------------------------*/

.title_contracted {
    width: 644px;
    margin: 0 auto;
    padding: 0;
    z-index: 1;
    position: relative;
}

.title_sjc {
    width: 768px;
    margin: 0 auto;
    z-index: 1;
    position: relative;
}

.title_kf {
    width: 915px;
    margin: 0 auto;
    z-index: 1;
    position: relative;
}

@media only screen and (max-width: 959px) {
    .title_contracted {
        width: calc(100% - 12%);
        margin: 0 auto;
    }

    .title_sjc {
        width: 100%;
        margin: 0 auto;
    }

    .title_kf {
        width: 100%;
        margin: 0 auto;
    }
}


/*---------------------------------------------------------
footer
---------------------------------------------------------*/

footer {
    background: #303964;
    padding: 80px 0;
    text-align: center;
    color: #fff;
    position: relative;
    z-index: 1;
    margin-top: 80px;
}

footer img {
    width: 154px;
}

footer ul {
    display: flex;
    margin-top: 64px;
    text-align: center;
    align-items: center;
    justify-content: center;
}

footer ul.small {
    font-size: 12px;
}

footer ul li {
    padding: 0 16px;
}

footer .pagetop {
    position: absolute;
    right: 0;
    bottom: 0;
}

footer .pagetop:hover {
    opacity: 0.5;
}

footer .pagetop img {
    width: 72px;
}

address {
    background: #2A3152;
    text-align: center;
    color: #fff;
    font-style: normal;
    font-size: 12px;
    padding: 8px 0;
}

@media screen and (max-width: 959px) {
    footer {
        padding: 64px 0;
    }

    footer img {
        width: 154px;
    }

    footer ul {
        display: block;
        margin-top: 24px;
    }

    footer ul.small {
        font-size: 12px;
        display: flex;
    }

    footer ul li {
        padding: 8px;
    }

    footer .pagetop {
        position: absolute;
        right: 0;
        bottom: 0;
    }

    footer .pagetop:hover {
        opacity: 0.5;
    }

    footer .pagetop img {
        width: 56px;
    }

    address {
        background: #2A3152;
        text-align: center;
        color: #fff;
        font-style: normal;
        font-size: 12px;
        padding: 8px 0;
    }
}


/*---------------------------------------------------------
list
---------------------------------------------------------*/

.disc {
    list-style-type: disc;
    padding-left: 24px;
    margin-top: 24px;
}

.disc li {
    list-style-type: disc;
}

.decimal {
    list-style-type: decimal;
    padding-left: 24px;
    margin-top: 24px;
}

.decimal li {
    list-style-type: decimal;
}


/*---------------------------------------------------------
base
---------------------------------------------------------*/

p.mt {
    margin-top: 80px;
}

p.line {
    position: relative;
    padding: 1rem 2rem;
    border-bottom: 1px solid #E0DFDF;
    max-width: 1120px;
    margin: 120px auto;
    width: 100%;
}

p.line:before {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 16px;
    height: 1px;
    content: '';
    background: #10A5CC;
}

.inner1360 {
    max-width: 1360px;
    margin: 0 auto;
}

.inner1120 {
    max-width: 1120px;
    margin: 0 auto;
}

.inner960 {
    max-width: 960px;
    margin: 0 auto;
}

.pankuzu {
    padding: 16px 0;
    position: absolute;
    width: 100%;
    top: 88px;
}

.pankuzu ul {
    display: flex;
}

.pankuzu ul li {
    margin-right: 8px;
    font-weight: normal;
    color: #fff;
}

.pankuzu ul li a {
    color: #fff;
    font-weight: normal;
}

.anc {
    width: 960px;
    margin: 80px auto;
}

.anc ul {
    display: flex;
    justify-content: center;
}

.anc ul li {
    width: 293px;
    padding: 2%;
}

.anc ul li a {
    width: 100%;
    max-width: 293px;
}

.anc ul li .button_solid019 a:after {
    display: none;
}

span.circle {
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    font-size: 20px;
    line-height: inherit;
    text-align: center;
    color: #fff;
    background-color: #0A3464;
    border-radius: 40px;
    padding: 1px 9px;
    margin-right: 16px;
}

.blue {
    color: #1E6CC3;
}

@media only screen and (max-width: 959px) {
    p.mt {
        margin-top: 64px;
    }

    p.line {
        max-width: inherit;
        margin: 80px auto;
        width: calc(100% - 48px);
    }

    .inner1360 {
        max-width: inherit;
        width: 100%;
        margin: 0 auto;
    }

    .inner1120 {
        max-width: inherit;
        width: calc(100% - 48px);
        margin: 0 auto;
    }

    .inner960 {
        max-width: inherit;
        width: 100%;
        margin: 0 auto;
    }

    .anc {
        width: calc(100% - 48px);
        margin: 40px auto;
    }

    .anc ul {
        display: flex;
    }

    .anc ul li {
        width: 161px;
    }

    .anc ul li a {
        max-width: inherit;
    }

    .anc ul li .button_solid019 a:after {
        display: none;
    }

    span.circle {
        font-size: 16px;
        margin-right: 8px;
        padding: 7px;
    }

    .pankuzu {
        top: 72px;
    }
}


/*---------------------------------------------------------
fadein
---------------------------------------------------------*/


/* 画面外にいる状態 */

.fadein {
    opacity: 0.1;
    transform: translate(0, 24px);
    transition: all 500ms;
}


/* 画面内に入った状態 */

.fadein.scrollin {
    opacity: 1;
    transform: translate(0, 0);
}


/* 画面外にいる状態 */

.fadeleft {
    opacity: 0;
    transform: translate(200%, -800px);
    transition: all 1000ms;
}


/* 画面内に入った状態 */

.fadeleft.scrollin {
    opacity: 1;
    transform: translate(0, 0);
}


/* 画面外にいる状態 */

.faderight {
    opacity: 0;
    transform: translate(-200%, -800px);
    transition: all 1000ms;
}


/* 画面内に入った状態 */

.faderight.scrollin {
    opacity: 1;
    transform: translate(0, 0);
}

@media only screen and (max-width: 959px) {}


/*---------------------------------------------------------
Pagination
---------------------------------------------------------*/

.Pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 40px;
}

.Pagination-Item-Link {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    overflow: hidden;
    background: #fff;
    font-size: 14px;
    color: #111;
    font-weight: bold;
    transition: all 0.15s linear;
}

.Pagination-Item-Link img {
    width: 24px;
}

.Pagination-Item-Link.isActive {
    background: #0072C6;
    color: #fff;
    pointer-events: none;
}

.Pagination-Item-Link:not(.isActive):hover {
    background: #0072C6;
    color: #fff;
}

.Pagination>*+* {
    margin-left: 8px;
}


.game {
    margin: 20px auto;
}

.game-link {
    display: block;
    text-align: center;
    vertical-align: middle;
    text-decoration: none;
    min-width: 440px;
    margin: auto;
    padding: 40px 0;
    font-weight: bold;
    border: 1px solid #FFFFFF;
    transition: 0.5s;
    font-weight: bold;
    font-size: 32px;
    letter-spacing: 0.04em;
    line-height: 64px;
    text-align: center;
    color: #fff;
    position: relative;
    z-index: 1;
}

.game-link:hover {
    color: #fff;
    background: #0A3788;
    border: 1px solid #0A3788;
}

@media only screen and (max-width: 959px) {
    .game {
        margin: 10px auto;
    }
    .game-link {
        min-width: inherit;
        padding: 24px 0;
        font-size: 20px;
        line-height: 28px;
    }

    .game-link:hover {
        color: #fff;
        background: #0A3788;
        border: 1px solid #0A3788;
    }
}


.junior-cup {
    width: 960px;
    margin: 50px auto -30px;
}
.junior-cup-image {
    width: 100%;
}

@media only screen and (max-width: 959px) {
    .junior-cup {
        width: calc(100% - 12%);
        margin: 20px auto -25px;
    }
}