@charset "utf-8";
@import url("default.css");

/*==========================================
body
===========================================*/

body {
    font-family: 'Avenir', 'Helvetica Neue', 'Helvetica', 'Arial', 'Hiragino Sans', 'ヒラギノ角ゴシック', YuGothic, 'Yu Gothic', 'メイリオ', Meiryo, 'ＭＳ Ｐゴシック', 'MS PGothic';
    font-size: 18px;
    -webkit-text-size-adjust: 100%;
}

@media screen and (max-width:1000px) {
    body {
        width: 100%;
        overflow-x: hidden;
    }
}

a {
    text-decoration: none;
    color: #000;
}

ul {
    list-style: none;
}

.clear {
    clear: both;
}

.margin_top50 {
    margin-top: 50px;
}

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

@media screen and (min-width:1001px) {}

/*==========================================
header
===========================================*/

header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    z-index: 100;
    background-color: rgba(255, 255, 255, 0.9);
    margin-top: 5px;
}

/*==========================================
nav_pc
===========================================*/

@media screen and (max-width:1000px) {
    div.nav_pc {
        display: none;

    }
}

@media screen and (min-width:1001px) {
    div.nav_pc {
        width: 1000px;
        height: 100px;
        margin: 0 auto;
        margin-top: 15px;
        display: flex;
        justify-content: space-between;
    }

    div.nav_pc img {
        float: left;
        width: 300px;
        height: auto;
    }
}

/*==========================================
nav_pc gnav
===========================================*/

.gnav {
    display: flex;
    height: 2rem;
    width: 600px;
    width: 650px;
    padding-top: 35px;
    font-size: 14px;
    font-weight: bold;
}

.gnav > li {
    /*親階層のみ幅を25%にする*/
    width: 100px;
}

/*全てのリスト・リンク共通*/

.gnav li {
    list-style: none;
    position: relative;
}

.gnav li a {
    border-right: 1px solid #eee;
    display: block;
    height: 2rem;
    line-height: 2rem;
    text-align: center;
    text-decoration: none;
    width: 100%;
    transition: .5s;
}

.gnav li a:hover {
    background-color: #000;
    color: #fff;
}

/*子階層以降共通*/

.gnav li li {
    height: 0;
    overflow: hidden;
    transition: .5s;
}

.gnav li li a {
    border-top: 1px solid #eee;
    border-right: none;
    width: 170px;
    text-align: left;
    padding-left: 18px;
    background: #000;
    color: #fff;

}

.gnav li:hover > ul > li {
    height: 2rem;
    overflow: visible;
}

.gnav li:hover > ul > li:hover {
    opacity: 0.5;
}

/*==========================================
nav_sp
===========================================*/

@media screen and (max-width:1000px) {
    div.nav_sp {
        width: 100%;
        height: 80px;
        margin: 0 auto;
    }

    .nav_sp img {
        height: 60px;
        width: auto;
        vertical-align: bottom;
        margin-top: 10px;
        margin-left: 10px;
    }
}

@media screen and (min-width:1001px) {
    div.nav_sp {
        display: none;
    }
}

/*==========================================
nav_sp menu
===========================================*/

/*ボタン部分*/

.menu-btn {
    position: fixed;
    top: 10px;
    right: 10px;
    display: flex;
    height: 60px;
    width: 60px;
    justify-content: center;
    align-items: center;
    z-index: 90;
    background-color: #000;
}

.menu-btn span,
.menu-btn span:before,
.menu-btn span:after {
    content: '';
    display: block;
    height: 3px;
    width: 25px;
    border-radius: 3px;
    background-color: #ffffff;
    position: absolute;
}

.menu-btn span:before {
    bottom: 8px;
}

.menu-btn span:after {
    top: 8px;
}

#menu-btn-check:checked ~ .menu-btn {
    background-color: rgba(255, 255, 255, 0);
    /*メニューオープン時は真ん中の線を透明にする*/
}

#menu-btn-check:checked ~ .menu-btn span {
    background-color: rgba(255, 255, 255, 0);
    /*メニューオープン時は真ん中の線を透明にする*/
}

#menu-btn-check:checked ~ .menu-btn span::before {
    bottom: 0;
    transform: rotate(45deg);
}

#menu-btn-check:checked ~ .menu-btn span::after {
    top: 0;
    transform: rotate(-45deg);
}

#menu-btn-check {
    display: none;
}

/*メニュー部分*/

.menu-content {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 100%;
    /*leftの値を変更してメニューを画面外へ*/
    z-index: 80;
    background-color: rgba(0, 0, 0, 0.8);
    transition: all 0.5s;
    /*アニメーション設定*/
    overflow: scroll;
}

#menu-btn-check:checked ~ .menu-content {
    left: 0;
    /*メニューを画面内へ*/
}

.menu-content ul {
    padding: 70px 10px 0;
}

.menu-content ul li {
    border-bottom: solid 1px #ffffff;
    list-style: none;
}

.menu-content ul li a {
    display: block;
    width: 100%;
    font-size: 18px;
    box-sizing: border-box;
    color: #ffffff;
    text-decoration: none;
    padding: 25px 15px 25px 0;
    position: relative;
}

.menu-content ul li a::before {
    content: "";
    width: 7px;
    height: 7px;
    border-top: solid 2px #ffffff;
    border-right: solid 2px #ffffff;
    transform: rotate(45deg);
    position: absolute;
    right: 11px;
    top: 16px;
}


/*==========================================
slider
===========================================*/

.slider {
    position: relative;
    margin-top: 125px;
    background-color: #000;
}

@media screen and (max-width:1000px) {
    .slider {
        margin-top: 90px;
        background-color: #000;
    }
}

.slider > div {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    background-image: radial-gradient(rgba(0, 0, 0, 0.10) 27%, transparent 27%),
        radial-gradient(rgba(0, 0, 0, 0.10) 27%, transparent 27%);
    background-position: 0 0, 3px 3px;
    background-size: 6px 6px;
}

.slider > div img:nth-of-type(1) {
    position: absolute;
    top: 15%;
    left: 0;
    right: 0;
    margin: 0 auto;
    height: 70%;
    width: auto;
    opacity: 0.6;
}

.slider > div img:nth-of-type(2) {
    position: absolute;
    bottom: 15%;
    left: 2%;
    height: 8%;
    width: auto;
    opacity: 0.6;
}

/*==========================================
video
===========================================*/

video {
    width: 100%;
    height: auto;
    vertical-align: bottom;
}

/*==========================================
mainheader
===========================================*/
.main_header img{
    width: 100%;
}

@media (min-width: 1001px){
.header_main img{
    width: 100%;
    margin-top: 120px;
}
}
@media screen and (max-width: 1001px) {
.header_main img{
    width: 100%;
    margin-top: 86px;
}

}
.header_main{
    margin-bottom: -3px;
}

/*==========================================
video-background

===========================================*/

#video-background {
    position: fixed;
    left: 0;
    top: 0;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: -999;
}

/*==========================================
title
===========================================*/

ul.title {
    width: 100%;
    padding: 10px 0;
}

ul.title li img {
    display: block;
    height: 50px;
    width: auto;
    margin-left:20px;
}

ul.title li:nth-of-type(2) {
    color: #fff;
    text-align: right;
    font-size: 24px;
    letter-spacing: 5px;
    text-align: center;
    margin-top: 5px;
}

@media (min-width: 1001px) {

    /* 横幅が10110px以上の場合に適用するスタイル */
    ul.title {
        display: flex;
        width: 1200px;
        margin: 0 auto;
        padding: 10px 0;
    }

    ul.title li {
        width: 50%;
    }

    ul.title li:nth-of-type(2) {
        color: #fff;
        text-align: right;
        font-size: 24px;
        letter-spacing: 5px;
        padding-top: 70px;
    }

    ul.title li img {
        height: 100px;
        width: auto;
    }
}

@media screen and (max-width: 1001px) {
    ul.title li img {
        width: auto;
        height: 50px;
        margin:0 auto;
    }
}

/*==========================================
parallax
===========================================*/

/*固定する背景*/

main > div {
    box-sizing: border-box;
    display: flex;
}

main > div > div {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    background-image: radial-gradient(rgba(0, 0, 0, 0.10) 27%, transparent 27%),
        radial-gradient(rgba(0, 0, 0, 0.10) 27%, transparent 27%);
    background-position: 0 0, 3px 3px;
    background-size: 6px 6px;
    padding: 15px 0;
}

main .parallax-bg {
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    height: 50%;
}

/*各背景の画像*/

main .img-bg-01 {
    background-image: url('../img/common/bg_1.jpg');
}

main .img-bg-02 {
    background-image: url('../img/common/bg_2.jpg');
}

main .img-bg-03 {
    background-image: url('../img/common/bg_3.jpg');
}

main .img-bg-04 {
    background-image: url('../img/common/bg_4.jpg');
}

main .img-bg-05 {
    background-image: url('../img/common/bg_5.jpg');
}

main .img-bg-06 {
    background-image: url('../img/common/bg_6.jpg');
}


/*スクロールするコンテンツ*/

main .scrollbox {
    background-color: rgba(0, 0, 0, 0.9);
    background-image: radial-gradient(rgba(0, 0, 0, 0.10) 27%, transparent 27%),
        radial-gradient(rgba(0, 0, 0, 0.10) 27%, transparent 27%);
    background-position: 0 0, 3px 3px;
    background-size: 6px 6px;
    padding-top: 50px;
    padding-bottom: 100px;
}

@media (min-width: 1001px) {

    main .scrollbox {
        padding-top: 100px;
        padding-bottom: 200px;
    }
}

/*scrollbox1*/

main .scrollbox1 > ul {
    width: 300px;
    margin: 0 auto;
}

main .scrollbox1 > ul > li {
    width: 300px;
    height: 350px;
    border: solid 1px #fff;
    box-shadow: 0 10px 25px 0 rgba(255, 255, 255, 0.5);
    margin-bottom: 3rem;
}

main .scrollbox1 > ul > li a {
    display: block;
    height: 100%;
    width: 100%
}

main .scrollbox1 > ul > li a:hover {
    opacity: 0.6;
}

main .scrollbox1 > ul > li img {
    width: 100%;
    height: auto;
    vertical-align: bottom;
}

main .scrollbox1 > ul > li div {
    padding: 15px;
    color: #fff;
}

main .scrollbox1 > ul > li div p:nth-of-type(1) {
    font-size: 24px;
    font-weight: bold;
    letter-spacing: 5px;
    border-bottom: solid 1px #fff;
    padding-bottom: 5px;
}

main .scrollbox1 > ul > li div p:nth-of-type(2) {
    margin-top: 10px;
    height: 105px;
    line-height: 1.5;
    overflow: hidden;
    overflow-wrap: break-word;
}

@media (min-width: 1001px) {

    /* 横幅が10110px以上の場合に適用するスタイル */
    main .scrollbox1 {}

    main .scrollbox1 > ul {
        width: 1000px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 3rem;
    }

}

/*scrosllbox2*/

/* 横幅が10110px以上の場合に適用するスタイル */

main .scrollbox2 {
    position: relative;
}

main .scrollbox2 section {
    width: 300px;
    margin: 0 auto;
    color: #fff;
    text-align: center;
    text-shadow: 1px 2px 3px #00f;
}

main .scrollbox2 section h1 {
    font-size: 22px;
    margin-bottom: 50px;
}

main .scrollbox2 section p {
    font-size: 16px;
    font-weight: bold;
    line-height: 2.5;
}


@media (min-width: 1001px) {

    /* 横幅が10110px以上の場合に適用するスタイル */
    main .scrollbox2 {
        position: relative;
    }

    main .scrollbox2 section {
        width: 1000px;
        height: 500px;
        margin: 0 auto;
        color: #fff;
        text-align: center;
        text-shadow: 1px 2px 3px #00f;
    }

    main .scrollbox2 section h1 {
        margin-top: 75px;
        font-size: 50px;
        margin-bottom: 75px;
    }

    main .scrollbox2 section p {
        font-size: 24px;
        font-weight: bold;
        line-height: 2.5;
    }

    main .scrollbox2 img {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        margin: 0 auto;
        opacity: 0.2;
        height: 85%;
    }
    main .scrollbox2 img {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        margin: 0 auto;
        opacity: 0.2;
        height: 85%;
        padding: 61px 0px;
    }
}

@media screen and (max-width: 1001px) {
    main .scrollbox2 img {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        margin: 0 auto;
        opacity: 0.2;
        height: 85%;
        padding: 30px 0px;
    }
}

/*scrosllbox3*/

main .scrollbox3 {
    display: flex;
    list-style: none;
    justify-content: center;
}

main .scrollbox3 > ul {
    width: 300px;
    margin: 0 auto;
}

main .scrollbox3 > ul > li {
    width: 300px;
    height: 300px;
    border: solid 1px #fff;
    background-color: #fff;
    margin-bottom:3rem;
}


main .scrollbox3 > ul > li a {
    display: block;
    height: 100%;
    width: 100%
}

main .scrollbox3 > ul > li a:hover {
    opacity: 0.6;
}

main .scrollbox3 > ul > li img {
    width: 100%;
    height: auto;
    vertical-align: bottom;
}

main .scrollbox3 > ul > li p {
    margin-top: 25px;
    font-size: 24px;
    font-weight: bold;
    letter-spacing: 5px;
    line-height: 1.5;
    color: #000;
    text-align: center;
}

@media (min-width: 1001px) {

    /* 横幅が10110px以上の場合に適用するスタイル */
    main .scrollbox3 > ul {
        width: 1000px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 3rem;
    }

    main .scrollbox3 > ul > li{
        margin-bottom:3rem;
    }

}


/*scrollbox4*/

main .scrollbox4 table {
    width: 300px;
    margin: 0 auto;
    border: solid 1px #fff;

}

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

    main .scrollbox4 table th,
    main .scrollbox4 table td {
        display: block;
        text-align: left;
    }
}

main .scrollbox4 table th {
    background-color: #fff;
    padding: 15px;
}

main .scrollbox4 table td {
    color: #fff;
    padding: 15px;
    line-height: 1.5;
    border: solid 1px #fff;
}

main .scrollbox4 table td a {
    color: #fff;
}

@media (min-width: 1001px) {

    /* 横幅が10110px以上の場合に適用するスタイル */
    main .scrollbox4 {}

    main .scrollbox4 table {
        width: 1000px;
        margin: 0 auto;
        border: solid 1px #fff;
    }

    main .scrollbox4 table th {
        background-color: #fff;
        border-bottom: solid 1px #000;
    }

    main .scrollbox4 table tr:last-child th {
        border-bottom: solid 1px #fff;
    }

    main .scrollbox4 table td {
        color: #fff;
        padding: 15px;
        line-height: 1.5;
        border: solid 1px #fff;
    }

    main .scrollbox4 table td a {
        color: #fff;
    }
}

/*scrollbox5*/

main .scrollbox5 {}

main .scrollbox5 p {
    color: #fff;
    line-height: 1.5;
    margin-bottom: 25px;
}

main .scrollbox5 p span {
    font-weight: bold;
}

main .scrollbox5 > form {
    width: 300px;
    margin: 0 auto;
}

main .scrollbox5 > form > ul {
    width: 300px;
}

main .scrollbox5 > form > ul > li select {
    width: 300px;
    font-size: 16px;
    color: #a0a0a0;
    padding: 10px 0;
    opacity: 0.8;
}

main .scrollbox5 > form > ul > li input {
    width: 290px;
    color: #a0a0a0;
    font-size: 16px;
    padding: 10px 0;
    padding-left: 5px;
    opacity: 0.8;
}



main .scrollbox5 > form > ul > li textarea {
    width: 290px;
    height: 275px;
    font-size: 16px;
    font-weight: bold;
    color: #a0a0a0;
    padding: 10px 0;
    padding-left: 5px;
    opacity: 0.8;
}

main .scrollbox5 > form > ul > li > ul > li {
    margin-bottom: 10px;
}

input::placeholder {
    color: #a0a0a0;
}

textarea::placeholder {
    color: #a0a0a0;
}

main .scrollbox5 .btn {
    display: block;
    margin: 0 auto;
    margin-top: 25px;
    border-radius: 5px;
    font-size: 24px;
    text-align: center;
    cursor: pointer;
    padding: 20px 50px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    transition: .3s;
    border: 1px solid rgba(255, 255, 255, 1);
}

main .scrollbox5 .btn:hover {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
}

@media (min-width: 1001px) {

    /* 横幅が10110px以上の場合に適用するスタイル */
    main .scrollbox5 {}

    main .scrollbox5 p {
        color: #fff;
        line-height: 1.5;
        margin-bottom: 25px;
    }

    main .scrollbox5 p span {
        font-weight: bold;
    }

    main .scrollbox5 > form {
        width: 1000px;
        margin: 0 auto;
    }

    main .scrollbox5 > form > ul {
        width: 1000px;
        display: flex;
    }

    main .scrollbox5 > form > ul > li select {
        width: 500px;
        font-size: 24px;
        color: #a0a0a0;
        padding: 10px 0;
        opacity: 0.8;
    }

    main .scrollbox5 > form > ul > li input {
        width: 490px;
        color: #a0a0a0;
        font-size: 24px;
        padding: 10px 0;
        padding-left: 5px;
        opacity: 0.8;
    }



    main .scrollbox5 > form > ul > li textarea {
        width: 460px;
        height: 275px;
        font-size: 24px;
        color: #a0a0a0;
        padding: 10px 0;
        padding-left: 5px;
        margin-left: 25px;
        opacity: 0.8;
    }

    main .scrollbox5 > form > ul > li > ul > li {
        margin-bottom: 10px;
    }

    input::placeholder {
        color: #a0a0a0;
    }

    textarea::placeholder {
        color: #a0a0a0;
    }

    /* IE */
    input:-ms-input-placeholder {
        color: #a0a0a0;
    }

    /* Edge */
    input::-ms-input-placeholder {
        color: #a0a0a0;
    }

    /* IE */
    textarea:-ms-input-placeholder {
        color: #a0a0a0;
    }

    /* Edge */
    textarea::-ms-input-placeholde {
        color: #a0a0a0;
    }

    main .scrollbox5 .btn {
        display: block;
        margin: 0 auto;
        margin-top: 25px;
        border-radius: 5px;
        font-size: 24px;
        text-align: center;
        cursor: pointer;
        padding: 20px 50px;
        background: rgba(255, 255, 255, 0.1);
        color: #fff;
        transition: .3s;
        border: 1px solid rgba(255, 255, 255, 1);
    }

    main .scrollbox5 .btn:hover {
        background: rgba(255, 255, 255, 0.2);
        border: 1px solid rgba(255, 255, 255, 0.2);
        color: #fff;
    }
}

/*scrollbox6*/
main .scrollbox6 .sponsor{
}

main .scrollbox6{
    display: block;
}

main .scrollbox6 .sponsor{
    text-align: center;
    width: 1000px;
    margin: 0 auto;
    background-color: transparent;
}


main .scrollbox6 .sponsor p{
    font-size: 20px;
    font-weight: bold;
    /* border-bottom: solid 1px #fff; */
    padding-bottom: 5px;
    line-height:1.2;

}

main .scrollbox6 .sponsor div{
    padding: 15px;
    color: #fff;
    height: 58px;
    display: flex;
    align-items: center; 
    justify-content: center;
}

main .scrollbox6 .sponsor p:nth-of-type(2) {
    font-size:20px;
    font-weight: normal;
    margin-top: 20px;
    padding:0px;
    height: auto;
    text-align: left;
    border-bottom:none;
    overflow-wrap: break-word;

}

main .scrollbox6 ul {
    display: flex;

}

main .scrollbox6 ul li{
    width: 100%;
    border: solid 1px #fff;
    box-shadow: 0 10px 25px 0 rgba(255, 255, 255, 0.5);
}

main .scrollbox6 .sponsor_1 img{
    width: 100%;
}


main .scrollbox6 .sponsor_2 img{
    width: 100%;
}

main .scrollbox6 .sponsor_2{
    padding-top:100px;
}


main .scrollbox6 .sponsor_1{
    display: grid;
    align-items: center;
    grid-template-columns: repeat(3, 1fr);
    gap:3rem;
}

main .scrollbox6 .sponsor_2{ 
    display: flex;
    align-items: center;
}

main .scrollbox6 .sponsor_title{
    font-size: 50px;
    font-family:impact;
    color:white;
    width:70%;
    margin:auto;
    background-color: transparent;
}

@media screen and (max-width: 1001px) {
    main .scrollbox6 .sponsor{
        text-align: center;
        width: 100%;
        margin: 0 auto;
        background-color: transparent;
    }
    
    
    main .scrollbox6 .sponsor p{
        font-size: 20px;
        font-weight: bold;
        /* border-bottom: solid 1px #fff; */
        padding-bottom: 5px;
        line-height:1.2;
    
    }
    
    main .scrollbox6 .sponsor div{
        padding: 10px;
        color: #fff;
        height: 58px;
        display: flex;
        align-items: center; 
        justify-content: center;
    }
    
    main .scrollbox6 ul {
        display: flex;
    
    }
    
    main .scrollbox6 ul li{
        width: 300px;
        border: solid 1px #fff;
        box-shadow: 0 10px 25px 0 rgba(255, 255, 255, 0.5);
        margin:auto;
        margin-bottom:50px;
    }

    main .scrollbox6 li:nth-of-type(2){
        margin:auto;
        margin-bottom:50px;
    }
    
    
    main .scrollbox6 .sponsor_1 img{
        width: 100%;
    }
    
    
    main .scrollbox6 .sponsor_2 img{
        width: 100%;
    }
    
    main .scrollbox6 ul{
        padding-top:0px;
    }
    
    
    main .scrollbox6 .sponsor_1{
        display: block;
        align-items: center;
    }
    
    main .scrollbox6 .sponsor_2{ 
        padding-top: 0px;
        display: block;
        align-items: center;
    }

    main .scrollbox6 .sponsor_title{
        font-size: 35px;
        color:white;
        width:80%;
        text-align: center;
    }
}




/*==========================================
btn_2
===========================================*/
main .scrollbox scrollbox6 .btn_2 {
    display: block;
    margin: 0 auto;
    margin-top: 25px;
    border-radius: 5px;
    font-size: 24px;
    text-align: center;
    cursor: pointer;
    padding: 20px 50px;
}

/*==========================================
small
===========================================*/

small {}

small p {
    background: #fff;
    text-align: center;
    font-size: 16px;
    color: #aaa;
    padding: 10px 0;
}

@media screen and (max-width:1000px) {
    small p {
        font-size: 12px;
    }
}

/*==========================================
news_btn
===========================================*/


.news_btn{
    margin:auto;
    padding:80px 0;
    text-align: center;
    display: block;
    background-color: rgba(0, 0, 0, 0.9);
}

.news_btn .btn{
    color:white;
    width:260px;
    padding: 20px 0;
    border: solid 1px #fff;
    box-shadow: 0 10px 25px 0 rgba(255, 255, 255, 0.5);
    margin: 0 auto;
}

/*==========================================
footer
===========================================*/

footer  {
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9); 
    text-align: center;
    padding-bottom: 30px;
}

footer div {
    width: 1039px;    
    margin: 0 auto;
}

footer a {
    margin-left:  20px;
    color: white;
}

footer img{
    width:50px;
    }

    @media screen and (max-width:1001px) {
        footer div{
        width: 100%;
        text-align:center;
        }
        }