@charset "utf-8";

* {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

html {
    height: 100%;
}

body {
    font-size: 16px;
    line-height: 1.7em;
    color: #333;
    font-family: "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", "verdana", sans-serif;
    background: #fff;
    display: block;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    height: 100%;
    background: url(images/bg.webp);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.content_wrap {
    max-width: 1000px;
    margin: 0 auto;
}

.contet_area {
    padding: 0 20px;
}

.wrap1024 {
    max-width: 1024px;
    margin: 0 auto;
}

.align_center {
    text-align: center;
}

.align_left {
    text-align: left;
}

.align_right {
    text-align: right;
}

p {
    margin: 0;
    text-align: justify
}

p.nojust {
    text-align: left;
}

a {
    color: #004096;
    text-decoration: none;
    -webkit-transition: .5s;
    transition: .5s;
    font-weight: bold;
}

a:hover {
    color: #009FE8;
    opacity: 0.8;
}

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

.m100 {
    padding: 100px 0;
}

.mt100 {
    padding-top: 100px;
}

.mb100 {
    padding-bottom: 100px;
}

.m80 {
    padding: 80px 0;
}

.mt80 {
    padding-top: 80px;
}

.mb80 {
    padding-bottom: 80px;
}

.m50 {
    padding: 50px 0;
}

.mt50 {
    padding-top: 50px;
}

.mb50 {
    padding-bottom: 50px;
}

.m30 {
    padding: 30px 0;
}

.mt30 {
    padding-top: 30px;
}

.mb30 {
    padding-bottom: 30px;
}

.m20 {
    padding: 20px 0;
}

.mt20 {
    padding-top: 20px;
}

.mb20 {
    padding-bottom: 20px;
}

.m15 {
    padding: 15px 0;
}

.mt15 {
    padding-top: 15px;
}

.mb15 {
    padding-bottom: 15px;
}

.m10 {
    padding: 10px 0;
}

.mt10 {
    padding-top: 10px;
}

.mb10 {
    padding-bottom: 10px;
}

.mt5 {
    padding-top: 5px;
}

table,
td,
th {
    border-collapse: collapse;
    width: 100%
}

td,
th {
    padding: 10px;
    width: 30px;
    height: 25px;
}

.indent-1 {
    padding-left: 1em;
    text-indent: -1em;
}

.target {
    pointer-events: none;
    opacity: 0.5;
}

/*****ANIMATION*****/
.sa {
    opacity: 0;
    -webkit-transition: all .5s ease;
    -webkit-transition: all .5s ease;
    transition: all .5s ease;
}

.sa.show {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
}

.sa--lr {
    -webkit-transform: translate(-100px, 0);
    transform: translate(-100px, 0);
}

.sa--rl {
    -webkit-transform: translate(100px, 0);
    transform: translate(100px, 0);
}

.sa--up {
    -webkit-transform: translate(0, 100px);
    transform: translate(0, 100px);
}

.sa--down {
    -webkit-transform: translate(0, -100px);
    transform: translate(0, -100px);
}

.sa--scaleUp {
    -webkit-transform: scale(.5);
    transform: scale(.5);
}

.hidden {
    display: none;
}

/*HEADER-----------------------------------------------------------------------------------*/

#container {
    background: #fff;
    margin-left: 280px;
    position: relative;
    -webkit-transition: margin-left .25s linear;
    transition: margin-left .25s linear;
}

span.lang {
    font-size: 1.3em;
}

#sidebar {
    width: 250px;
    height: 100vh;
    position: fixed;
    top: 0;
    background: #fff;
    z-index: 9999;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-top: auto;
    overflow: scroll;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.side_in {
    height: 100%;
    min-height: 780px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.menu_ttl {
    border-bottom: 1px solid #D2D2D2;
    border-top: 1px solid #D2D2D2;
    margin-bottom: 5px;
}

.menu_ttl p {
    font-family: 'Montserrat', sans-serif;
    padding: 15px;
    font-weight: 500;
}

#global-nav {
    display: block;
}

.lang_box_ttl h3 {
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    color: #1D73B8;
    margin-top: 25px;
    display: block;
}

.lang_box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 118px;
    margin: 0 auto 25px auto;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.flag {
    width: 57px;
}

.flag img {
    width: 100%;
}

.side_logo {
    width: 100%;
    margin: 0 auto;
    display: block;
    padding: 0 15px;
}

.side_logo a {
    -webkit-transition: .5s;
    transition: .5s;
}

.side_logo a:hover {
    opacity: 0.6;
}

#global-nav ul {
    list-style: none;
    margin-left: 0;
}

#global-nav ul li:nth-child(1) {
    border-top: 1px solid #BCD9FF;
}

#global-nav > ul > li {
    position: relative;
}

/* nav-toggle */
#nav-toggle {
    z-index: 1000;
}

#nav-toggle {
    display: none;
    position: fixed;
    top: 0 !important;
    right: 0;
    height: 32px;
}

#nav-toggle > div {
    position: relative;
    width: 32px;
}

#nav-toggle span {
    width: 100%;
    height: 2px;
    left: 0;
    display: block;
    background: #fff;
    position: absolute;
    -webkit-transition: .35s ease-in-out;
    transition: .35s ease-in-out;
}

#nav-toggle span:nth-child(1) {
    top: -3px;
}

#nav-toggle span:nth-child(2) {
    top: 8px;
}

#nav-toggle span:nth-child(3) {
    top: 19px;
}

div#nav-toggle p {
    position: absolute;
    top: 20px;
    color: #fff;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    font-size: 12px;
}

/* #nav-toggle close */
.open #nav-toggle span:nth-child(1) {
    top: 11px;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

.open #nav-toggle span:nth-child(2) {
    width: 0;
    left: 50%;
}

.open #nav-toggle span:nth-child(3) {
    top: 11px;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

#overlay {
    display: none;
    position: fixed;
    background: rgba(0, 0, 0, .6);
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
}

.side_secret {
    display: block;
    font-size: 12px;
    color: #333;
    line-height: 1.7em
}

.side_secret_in h3 {
    color: #003e92;
    width: 100%;
    margin-bottom: 10px;
    border-bottom: 1px solid #003e92;
}

.side_secret_in p {
    margin-top: 5px;
    color: #003e92;
}

.jes_logo {
    width: 60px;
    margin: 15px auto 10px auto;
}

.jsptlogobox {
    padding: 0 15px;
}

ul.side_bnr_box {
    padding: 0 15px;
    list-style: none;
    margin-bottom: 15px;
}

ul.side_bnr_box li:nth-child(n+2) {
    margin-top: 15px;
}

.policy a {
    color: #fff;
    font-size: 12px;
}

.policy {
    padding: 0 15px;
}

.side_sns_contain {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.sns_items:nth-child(n+2) {
    margin-left: 20px;
}

.sns_items a {
    font-size: 3em;
    color: #fff;
}

.sponcer_table,
.sponcer_table td,
.sponcer_table th {
    border: 1px solid #595959;
    border-collapse: collapse;
}

.sponcer_table td,
.sponcer_table th {
    padding: 10px 3px;
    height: 25px;
    text-align: center;
}

.sponcer_table th {
    background: #0562a7;
    color: #fff
}

.height100 {
    min-height: 100vh;
}

/*HEADERend--------------------------------------------------------------------------------*/

/*MAIN-------------------------------------------------------------------------------------*/

.main_v_sp {
    display: none;
}

.main_v {
    display: block;
}

.top_date_sp {
    display: none;
}

.prearea {
    background: url(images/pre_bg.jpg);
    height: 100vh;
    width: 100vw;
    position: relative;
}

.pre_v {
    max-width: 500px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
}

.premessage {
    background: #f0932b;
    border: 1px solid #f0932b;
    padding: 20px;
    margin-bottom: 20px;
    color: #fff
}

#color_area {
    background: #E8F9FF;
}

.l_blue {
    background: #E0F1FC;
}
}

.border_tb {
    border-bottom: 1px solid #D2D2D2;
    border-top: 1px solid #D2D2D2;
}

.border_t {
    border-top: 1px solid #D2D2D2;
}

/*******NEWSAREA+*****/


.area_ttl h2 {
    text-align: center;
    color: #004096;
    font-size: 35px;
    font-weight: 600;
    letter-spacing: 0.05em;
}

.area_ttl p {
    text-align: center;
    color: #004096;
    font-weight: 600;
    font-family: "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
    font-size: 14px;
    padding: 10px;
}

.undr_bar {
    background: #FFE05D;
    height: 1px;
    width: 50px;
    margin: 0 auto;
}

.fb-container {
    width: 100%;
    max-width: 500px;
}

.sns_in:nth-child(n+2) {
    margin-top: 20px;
}

.news_area {
    background: #fff;
    padding: 30px;
    border-radius: 20px;
}

.news_area li {
    border-bottom: 1px dashed #004096;
    list-style: none;
    padding: 20px 10px;
    width: auto;
    color: #000;
}

.news_area a {
    text-decoration: none;
}

.news_area span {
    background-color: #2388b8;
    border-radius: 3px;
    color: #fff;
    display: inline-block;
    margin-right: 20px;
    padding: 5px;
}

time {
    display: inline-block;
    font-weight: bold;
    margin-right: 20px;
    color: #004096;
}

.news_area p {
    display: inline-block;
}


.new2::after {
    content: "NEW";
    color: #fff;
    font-weight: bold;
    border-radius: 3px;
    background: #d10606;
    font-size: 0.8rem;
    border: 1px solid #d10606;
    padding: 4px 8px;
    margin: 0 0 0 10px;
    display: inline-block;
    line-height: 1;
}

.new::before {
    content: "NEW";
    color: #fff;
    font-weight: bold;
    border-radius: 3px;
    background: #d10606;
    font-size: 0.8rem;
    border: 1px solid #d10606;
    padding: 4px 8px;
    margin: 0 10px 0 0;
    display: inline-block;
    line-height: 1;
}

/***************+*****/


/*****btn*********************/
.btn_flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.btn_flex_in {
    width: calc(50% - 20px / 2);
}

.button_main {
    display: inline-block;
    width: 100%;
    text-align: center;
    background-color: #004096;
    border: 2px solid #004096;
    font-size: 18px;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    padding: 20px;
    -webkit-transition: .5s;
    transition: .5s;
    letter-spacing: 0.1em;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    position: relative;
    transition: ease .3s;
    border-radius: 100px;
    font-weight: 600;
}

.button_main:after {
    content: '';
    position: absolute;
    top: 38%;
    right: 25px;
    width: 12px;
    height: 12px;
    border-top: 1px solid #fff;
    border-right: 1px solid #fff;
    transform: rotate(45deg);
    transition: all .3s;
}

.button_main:hover {
    background-color: transparent;
    border-color: #4691c9;
    color: #4691c9;
    opacity: 1;
}


.button_main:hover:after {
    right: 25px;
    border-top: 1px solid #4691c9;
    border-right: 1px solid #4691c9;
}

.button_main2 {
    display: inline-block;
    width: 100%;
    text-align: center;
    background-color: #FFF000;
    border: 2px solid #FFF000;
    font-size: 18px;
    color: #000;
    text-decoration: none;
    font-weight: 600;
    padding: 20px;
    -webkit-transition: .5s;
    transition: .5s;
    letter-spacing: 0.1em;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    position: relative;
    transition: ease .3s;
    border-radius: 100px;
    font-weight: 600;
}

.button_main2:after {
    content: '';
    position: absolute;
    top: 38%;
    right: 25px;
    width: 12px;
    height: 12px;
    border-top: 1px solid #000;
    border-right: 1px solid #000;
    transform: rotate(45deg);
    transition: all .3s;
}

.button_main2:hover {
    background-color: transparent;
    border-color: #FFF000;
    color: #FFF000;
    opacity: 1;
}


.button_main2:hover:after {
    right: 25px;
    border-top: 1px solid #FFF000;
    border-right: 1px solid #FFF000;
}


#global-nav a {
    display: inline-block;
    width: 100%;
    background-color: transparent;
    border-bottom: 1px solid #BCD9FF;
    font-size: 14.5px;
    color: #000;
    text-decoration: none;
    font-weight: bold !important;
    padding: 15px 20px;
    -webkit-transition: .5s;
    transition: .5s;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    position: relative;
    transition: ease .3s;
    font-weight: 200;
}

#global-nav a:before {
    content: '';
    position: absolute;
    top: 44%;
    left: 5px;
    width: 5px;
    height: 5px;
    border-top: 2px solid #004096;
    border-right: 2px solid #004096;
    transform: rotate(45deg);
    transition: all .3s;
}

#global-nav a:hover {
    border-left: 5px solid #004096;
    opacity: 1;
}


#global-nav a:hover:before {
    right: 25px;
    border-top: 2px solid #004096;
    border-right: 2px solid #004096;
}

.nav_active a {
    border-left: 5px solid #004096;
}

.nav_active a:before {
    border-top: 2px solid #004096 !important;
    border-right: 2px solid #004096 !important;
}

.sns {
    display: flex;
    justify-content: center;
    list-style: none;
    margin-top: 20px;
}

.sns li {
    width: calc(100% / 3);
}

/******************************/

.youtube {
    width: 100%;
    aspect-ratio: 16 / 9;
}

.youtube iframe {
    width: 100%;
    height: 100%;
}

.pr_box {
    list-style: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.pr_box li {
    width: 48%;
}

.pr_box li p {
    border-bottom: 1px solid #D2D2D2;
    font-weight: 600;
}

.bnr_box {
    list-style: none;
}

.bnr_box li {
    width: 100%;
}



/*2023/01/05 トップ修正*/
.top_inform {
    padding: 25px;
    border: 4px solid #003E92;
    text-align: center;
}

.top_inform h3 {
    font-size: 25px;
    padding-bottom: 20px;
    color: #ce6016;
    line-height: 1.5em;
}


.big_p {
    font-size: 20px;
    color: #333;
    font-weight: bold;
    line-height: 38px;
    text-align: center;
}

.top_inform del {
    color: #f00;
}

.top_inform del span {
    color: #333;
}

.side_dl {
    padding: 15px;
}

.large_p {
    font-size: 1.2em
}

/* サムネイル */
.video-thumbnail {
    cursor: pointer;
}

.video-thumbnail img {
    width: 100%;
    display: block;
}

/* モーダル全体 */
.modal {
    display: none;
    position: fixed;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 9999;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.modal.show {
    display: flex;
    opacity: 1;
    pointer-events: auto;
}

/* 閉じるボタン */
.close-btn {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 2rem;
    color: white;
    background: none;
    border: none;
    cursor: pointer;
}

/* 動画ラッパー */
.video-wrapper {
    position: relative;
    width: 90vw;
    max-width: 960px;
    aspect-ratio: 16 / 9;
}

.video-wrapper video {
    width: 100%;
    height: 100%;
    background: black;
    display: block;
    border-radius: 8px;
}

/*MAINend----------------------------------------------------------------------------------*/

/*FOOTER-----------------------------------------------------------------------------------*/

.footer_in {
    text-align: center;
    background: #E0F1FC;
    padding: 10px;
    font-size: 12px;
    font-weight: bold;
}

.footer_in p {
    text-align: center;
    color: #004096;
}

.sac_contain {
    background: #E0F1FC;
    padding: 0 20px;
}

.sac_box {
    background: #E0F1FC;
    padding: 30px 0;
    list-style: none;
    display: flex;
    justify-content: space-between;
    text-align: center;
    flex-wrap: wrap;
    border-bottom: 1px solid #004096;
}

.sac_box li {
    width: calc(100% / 3 - 20px);
}

.sac_box li h2 {
    background-color: #fff;
    font-size: 15px;
    color: #004096;
    margin-bottom: 15px;
    border-radius: 20px;
}

.sac_box li p {
    font-size: 13px;
    text-align: center;
    color: #000;
    line-height: 1.7em
}

.footer_items {
    background: #fff;
    padding: 100px 20px;
}

.sponsors_bnr {
    list-style: none;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.sponsors_bnr li {
    width: calc(100% / 3 - 20px);
}

.sponsors_bnr li:nth-child(n+4) {
    margin-top: 20px;
}

.sponsors_bnr::after {
    content: "";
    display: block;
    width: calc(100% / 3 - 20px);
}

.linkzone {
    background: #E0F1FC;
    padding: 30px;
    border-radius: 20px;
}

.linklist {
    list-style: none;
}

.linklist li {
    border-bottom: dashed 1px #004096;
}

.pagetop {
    height: 50px;
    width: 50px;
    position: fixed;
    right: 30px;
    bottom: 30px;
    background: #fff;
    border: solid 2px #004096;
    border-radius: 50%;
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 2;
    cursor: pointer;
}

.pagetop__arrow {
    display: block;
    height: 10px;
    width: 10px;
    border-top: 3px solid #004096;
    border-right: 3px solid #004096;
    transform: translateY(20%) rotate(-45deg);
}

/*FOOTERend--------------------------------------------------------------------------------*/



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

    /*HEADER-----------------------------------------------------------------------------------*/

    #brand-logo img {
        max-width: 550px;
    }

    #sidebar {
        left: -260px;
        z-index: 910;
        -webkit-transition: .35s ease-in-out;
        transition: .35s ease-in-out;
        overflow: scroll;
        height: 100%;
    }

    .close #sidebar {
        left: 0;
    }

    #container {
        margin-left: 0;
    }

    #global-nav ul {
        overflow-y: scroll;
        -webkit-overflow-scrolling: touch;
    }

    #nav-toggle {
        display: block;
        background: #003e92;
        padding: 10px;
        -webkit-box-sizing: content-box;
        box-sizing: content-box;
    }

    #nav-toggle span {
        background: #fff;
    }



    /* nav open */
    .open {
        overflow: hidden;
    }

    .open #overlay {
        display: block;
    }

    .open #sidebar {
        -webkit-transform: translate3d(-300px, 0, 0);
        transform: translate3d(-300px, 0, 0);
    }

    /* #nav-toggle close */
    .close #nav-toggle span {
        background: #16ae67;
    }

    .open #nav-toggle span:nth-child(1) {
        top: 11px;
        -webkit-transform: rotate(45deg);
        transform: rotate(45deg);
    }

    .open #nav-toggle span:nth-child(2) {
        width: 0;
        left: 50%;
    }

    .open #nav-toggle span:nth-child(3) {
        top: 11px;
        -webkit-transform: rotate(-45deg);
        transform: rotate(-45deg);
    }


    /* z-index */
    #overlay {
        z-index: 200;
    }

    #sidebar {
        z-index: 300;
    }

    #nav-toggle {
        z-index: 400;
    }


    /*HEADERend--------------------------------------------------------------------------------*/

    /*MAIN-------------------------------------------------------------------------------------*/

    .wrap1024 {
        padding: 0 15px;
    }

    ul.megamenu-inner.main-wrapper li {
        width: 100%;
    }

    .content_box {
        padding: 0 !important;
    }


    /*MAINend----------------------------------------------------------------------------------*/

    /*FOOTER-----------------------------------------------------------------------------------*/
    .sponsors_bnr li {
        width: calc(100%);
    }

    .sponsors_bnr li:nth-child(n+2) {
        margin-top: 20px;
    }

    /*FOOTERend--------------------------------------------------------------------------------*/

}

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

    /*HEADER-----------------------------------------------------------------------------------*/

    #nav-toggle {
        top: 5.5vw;
    }

    /*HEADERend--------------------------------------------------------------------------------*/

    /*MAIN-------------------------------------------------------------------------------------*/

    .pr_box {
        display: block;
    }

    .pr_box li {
        width: 100%;
    }

    .pr_box li:nth-child(n+2) {
        margin-top: 50px;
    }

    .top_inform {
        padding: 15px;
    }

    .top_inform h3 {
        font-size: 20px;
    }


    .top_inform p {
        font-size: 15px;
    }

    /*MAINend----------------------------------------------------------------------------------*/

    /*FOOTER-----------------------------------------------------------------------------------*/
    .sac_box li {
        width: calc(100% / 1);
    }

    .sac_box li:last-child {
        margin-top: 50px;
    }

    /*FOOTERend--------------------------------------------------------------------------------*/

}
