@charset "UTF-8";

/*============================
	fv
============================*/
.fv-top {
    width: 100%;
    height: 100px;
    position: absolute;
    top: 0;
}
.fv {
    width: 100%;
    border-bottom: 1px solid #fff;
}

@keyframes fadezoom {
    0% {
        transform: scale(1.1);
    }

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

.fv__grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-template-rows: 1fr 1fr 1fr;
}

.fv__grid--box {
    height: 100%;
    opacity: 0;
}
.fv__grid--box img{
    height: 100%;
    padding: 1px;
}
.fv__grid--box:nth-child(1) {
    grid-column: 1/2;
    grid-row: 1/3;
}
.fv__grid--box:nth-child(1) img {
    padding-top: 0;
}
.fv__grid--box:nth-child(2) {
    grid-column: 2/4;
    grid-row: 1/2;
    animation-delay: 0.2s;
}
.fv__grid--box:nth-child(2) img {
    padding-top: 0;
}
.fv__grid--box:nth-child(3) {
    grid-column: 4/5;
    grid-row: 1/2;
    animation-delay: 0.4s;
}
.fv__grid--box:nth-child(3) img {
    padding-top: 0;
}
.fv__grid--box:nth-child(4) {
    grid-column: 1/2;
    grid-row: 3/4;
    animation-delay: 0.6s;
}
.fv__grid--box:nth-child(5) {
    grid-column: 2/3;
    grid-row: 2/4;
    animation-delay: 0.8s;
}
.fv__grid--box:nth-child(6) {
    grid-column: 3/5;
    grid-row: 2/3;
    animation-delay: 1.0s;
}
.fv__grid--box:nth-child(7) {
    grid-column: 3/4;
    grid-row: 3/4;
    animation-delay: 1.2s;
}
.fv__grid--box:nth-child(8) {
    grid-column: 4/5;
    grid-row: 3/4;
    animation-delay: 1.4s;
}

.fadeUp {
    animation-name:fadeUpAnime;
    animation-duration:0.5s;
    animation-fill-mode:forwards;
    opacity: 0;
}
@keyframes fadeUpAnime{
    from {
        opacity: 0;
        transform: translateY(100px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media screen and (max-width:1024px) {
    .fv__img img {
        object-fit: cover;
        width: 100%;
    }

}

@media screen and (max-width:768px) {
    .fv {
        border-bottom: none;
    }
    .fv__grid {
        grid-template-columns: 1fr 1fr 1fr 1fr;
        grid-template-rows: 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
        height: 100%;
    }
    .fv__grid--box img{
        padding: 1px;
    }
    .fv__grid--box:nth-child(1) {
        grid-column: 1/3;
        grid-row: 1/2;
    }
    .fv__grid--box:nth-child(1) img {
        padding-top: 0;
    }
    .fv__grid--box:nth-child(2) {
        grid-column: 3/5;
        grid-row: 1/3;
    }
    .fv__grid--box:nth-child(2) img {
        padding-top: 0;
    }
    .fv__grid--box:nth-child(3) {
        grid-column: 1/3;
        grid-row: 2/4;
    }
    .fv__grid--box:nth-child(3) img {
        padding-top: 1px;
    }
    .fv__grid--box:nth-child(4) {
        grid-column: 3/5;
        grid-row: 3/4;
    }
    .fv__grid--box:nth-child(5) {
        grid-column: 1/5;
        grid-row: 4/5;
    }
    .fv__grid--box:nth-child(6) {
        grid-column: 1/2;
        grid-row: 5/7;
    }
    .fv__grid--box:nth-child(7) {
        grid-column: 2/5;
        grid-row: 5/7;
    }
    .fv__grid--box:nth-child(8) {
        grid-column: 1/4;
        grid-row: 7/8;
    }
    .fv__grid--box:nth-child(9) {
        grid-column: 4/5;
        grid-row: 7/8;
        animation-delay: 1.6s;
    }
}


/*============================
	サミット開催内容
============================*/
.info {
    background: #006ED2;
    padding: 170px 70px 125px;
}

.agenda {
    background: #006ED2;
    padding: 95px 0;
}

.agenda .inner {
    width: 89%;
    margin: 0 auto;
    max-width: 1200px;
}

.agenda .text {
    width: 50%;
    position: relative;
    z-index: 1;
}
.agenda .text-inner {
    padding-right: 10%;
}
.agenda:nth-child(even) .text {
    margin-left: auto;
    width: 50%;
}
/*.agenda:nth-child(even) .text-inner {
    padding-right: 0;
}
.agenda:nth-child(even) .text figure {
    width: 80%;
}*/

.agenda .text p {
    color: #fff;
}

.agenda .cate p {
    border: 1px solid #fff;
    padding: 0.5px 10px;
    display: inline-block;
    margin: 25px 0 60px;
}

.agenda table {
    border: 1px solid #fff;
    margin-top: 50px;
    width: 100%;
}

.agenda table th {
    text-align: center;
    color: #fff;
    border-bottom: 1px solid #fff;
    border-right: 1px solid #fff;
    font-size: 16px;
    padding: 10px 0;
    font-family: 'Noto Serif JP', serif;
    width: 20%;
}
.agenda table td {
    text-align: center;
    color: #fff;
    border-bottom: 1px solid #fff;
    border-right: 1px solid #fff;
    font-size: 18px;
    padding: 10px 15px;
    font-family: 'Noto Serif JP', serif;
}

.agenda .img {
    position: absolute;
    top: 7%;
    right: 0;
    width: 452px;
    height: 705px;
}
.agenda:nth-child(even) .img {
    right: auto;
    left: 0;
}

.agenda02, .agenda05, .agenda08 {
    background: #339EFF;
}
.agenda03, .agenda06 {
    background: #7CC1FD;
}

.agenda02 .img {
    width: 531px;
    height: 710px;
    top: auto;
    bottom: 0;
}
.agenda03 .img {
    width: 820px;
    height: 713px;
    top: auto;
    bottom: 0;
}
.agenda04 .img {
    width: 549px;
    height: 547px;
    top: 15%;
}
.agenda05 .img {
    width: 746px;
    height: 574px;
    top: 25%;
}
.agenda.agenda06 .img {
    width: 551px;
    height: 515px;
    top: 15%;
    left: 5%;
}
.agenda07 .img {
    width: 548px;
    height: 722px;
    top: auto;
    bottom: 0;
}
.agenda.agenda08 .img {
    width: 467px;
    height: 492px;
    top: 0;
    left: 10%;
}

@media screen and (max-width:1024px) {
    .agenda table td {
        padding: 10px 0;
    }
}

@media screen and (max-width:768px) {
    .agenda {
        padding: 65px 0;
    }
    .info {
        padding: 90px 5%;
    }
    .agenda .inner {
        width: 100%;
    }
    .agenda .text {
        width: 100%;
    }
    .agenda .text-inner {
        padding-right: 0%;
    }
    .agenda:nth-child(even) .text {
        margin-left: 0;
        width: 100%;
    }
    .agenda:nth-child(even) .text-inner {
        padding-right: 0;
    }
    .agenda:nth-child(even) .text figure {
        width: 100%;
    }

    .agenda table tr {
        width: 100%;
    }
    .agenda table tr:first-child {
        width: 30%;
    }
    .agenda table th {
        font-size: 16px;
    }
    .agenda table td {
        font-size: 16px;
    }
    .agenda table td {
        text-align: left;
        padding-left: 3%;
    }

    .agenda .img {
        top: 5%;
        width: 212px;
        height: 332px;
    }
    .agenda.agenda02 .img {
        width: 300px;
        height: 367px;
        left: auto;
        right: 0;
        top: 0%;
    }
    .agenda03 .img {
        width: 341px;
        height: 363px;
        top: 5%;
        bottom: auto;
        right: -25%;
    }
    .agenda.agenda04 .img {
        width: 212px;
        height: 245px;
        right: -10%;
        left: auto;
        top: 30%;
    }
    .agenda05 .img {
        width: 242px;
        height: 209px;
        top: 0%;
        right: 0%;
    }
    .agenda.agenda06 .img {
        width: 240px;
        height: 200px;
        top: 20%;
        bottom: auto;
        left: auto;
        right: -10%;
    }
    .agenda07 .img {
        width: 236px;
        height: 333px;
        top: 3%;
        bottom: auto;
        right: -10%;
    }
    .agenda.agenda08 .img {
        width: 208px;
        height: 265px;
        top: 0%;
        bottom: auto;
        right: -5%;
        left: auto;
    }
}


/*============================
	OTHER
============================*/
@media screen and (max-width:768px) {
    .other {
        padding: 100px 0 40px;
    }
}



/*============================
	time schedule
============================*/
.time {
    background: #006ED2;
    padding: 180px 0 230px;
    position: relative;
}
.time::after {
    position: absolute;
    content: '';
    bottom: -200px;
    right: -20px;
    background: url(../img/top/time_after.png) no-repeat;
    background-size: cover;
    width: 639px;
    height: 498px;
}
.schedule {
    margin: 100px auto 210px;
    max-width: 1000px;
    padding: 0 1%;
}
.entry-form {
    background: #fff;
    padding: 170px 175px 130px;
}
.entry-form p {
    text-align: center;
    margin: 60px 0 75px;
    font-size: 18px;
    line-height: 2.5;
    color: #006ED2;
}
.entry-form .btn a {
    display: block;
    text-align: center;
    background: #006ED2;
    padding: 30px 90px;
    width: 50%;
    margin: 0 auto;
}

@media screen and (max-width:1024px) {
    .entry-form .btn a {
        padding: 30px 75px;
        width: 75%;
    }

}

@media screen and (max-width:767px) {
    .time {
        padding: 100px 0 115px;
    }
    .time::after {
        bottom: -55px;
        right: -10px;
        width: 268px;
        height: 208px;
    }
    .schedule {
        margin: 60px auto;
        padding: 0;
    }
    .schedule .text {
        margin-bottom: 25px;
        padding: 0 15%;
    }
    .schedule figure {
        overflow-x: scroll;
    }
    .schedule .img {
        width: 140%;
        padding: 0 5%;
    }
    .entry-form {
        padding: 70px 30px;
    }
    .entry-form p {
        text-align: left;
        margin: 45px 0 40px;
        font-size: 14px;
        line-height: 2;
    }
    .entry-form .btn a {
        padding: 25px 80px;
        width: 95%;
    }
}

/*============================
	シャトルバス
============================*/
.bus {
    padding: 190px 0 135px;
}
.bus .flex {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}
.bus .flex figure {
    width: 48%;
}
.bus .flex img {
    margin-bottom: 50px;
}
.bus p {
    text-align: center;
    margin: 60px 0 75px;
    font-size: 18px;
    line-height: 2.5;
    color: #006ED2;
}

@media screen and (max-width:768px) {
    .bus {
        padding: 105px 0 60px;
    }
    .bus .flex {
        flex-direction: column;
    }
    .bus .flex figure {
        width: 100%;
    }
    .bus .flex img {
        margin-bottom: 25px;
    }
    .bus p {
        text-align: left;
        margin: 60px 0 35px;
        font-size: 14px;
        line-height: 2;
    }
    .bus .title {
        width: 100%;
    }
}



/*============================
	ご来場にあたって
============================*/
.notice {
    padding: 120px 0 100px;
    background: #006ED2;
    border-bottom: 1px solid #fff;
}
.notice figure {
    width: 35%;
    margin: 0 auto 60px;
}
.notice ul {
    width: 85%;
    margin: 0 auto;
}
.notice li {
    color: #fff;
    line-height: 2;
    padding-left: 1em;
    text-indent: -1em;
}

@media screen and (max-width:768px) {
    .notice {
        padding: 100px 0 80px;
    }
    .notice figure {
        width: 50%;
        margin: 0 auto 50px;
    }
    .notice ul {
        width: 100%;
    }
    .notice li {
        padding-left: 0em;
        text-indent: 0em;
        font-size: 14px;
    }
}



.title {
    width: 80%;
    margin: 0 auto;
}
.w-85 {
    width: 85%;
}


.entry-btn {
    position: fixed;
    z-index: 100;
    width: 180px;
    bottom: 15px;
    right: 23px;
    opacity: 0;
}
.entry-btn.on {
    opacity: 1;
}
.entry-btn.on:hover {
    opacity: 0.6;
}
@media screen and (max-width:768px) {
    .entry-btn {
        width: 100%;
        bottom: 0;
        right: 0;
        box-shadow: 0 0px 5px rgba(0, 0, 0, .16), 0 0px 10px 0 rgba(0, 0, 0, .12);
    }
}
