html{
    font-size: 62.5%;
}

p{
    margin: 0;
}

body{
    margin: 0;
    background-color: #eeefef;
    font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
    font-weight: bold;
    letter-spacing: .1em;
    overflow-x: hidden;
}

.section{
    z-index: 100;
    width: 88%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 40px; 
    padding: 30px 10px 50px;
    /* height: 100vh; */
    position: relative;
    text-align: center;
    background-color: rgba(248, 248, 248, 1);
    border: rgb(209, 209, 209) 1px solid;
}

.section_title{
    font-family: Helvetica;
    display: inline-block;
    font-size: 2rem;
}





.navButton,
.navButton.active{
    transition: .5s;
    position: fixed;
    right: 30px;
    top: 30px;
    z-index: 999;
    width: 36px;
    height: 36px;
}

.navButton_top,
.navButton.active .navButton_top:nth-of-type(5):before{
    position: absolute;
    transition: .5s;
    display: block;
    width: 10px;
    height: 10px;
    background-color: #b3b3b3;
}

.navButton_top:nth-of-type(2),
.navButton_top:nth-of-type(5),
.navButton_top:nth-of-type(8){
    left: 0;
    right: 0;
    margin: auto;
}

.navButton_top:nth-of-type(3),
.navButton_top:nth-of-type(6),
.navButton_top:nth-of-type(9){
    right: 0;
}

.navButton_top:nth-of-type(4),
.navButton_top:nth-of-type(5),
.navButton_top:nth-of-type(6){
    top: 0;
    bottom: 0;
    margin: auto;
}

.navButton_top:nth-of-type(7),
.navButton_top:nth-of-type(8),
.navButton_top:nth-of-type(9){
    bottom: 0;
}

.navButton.active .navButton_top:nth-of-type(5),
.navButton.active .navButton_top:nth-of-type(5):before{
    background-color: #fff;
    width: 40px;
    height: 5px;
}

.navButton.active .navButton_top:nth-of-type(5){
    transform: rotate(45deg);
    transform-origin: center;
}

.navButton.active .navButton_top:nth-of-type(5):before{
    content: "";
    transform: rotate(-90deg);
    transform-origin: center;    
}

.navButton.active .navButton_top:nth-of-type(1),
.navButton.active .navButton_top:nth-of-type(2),
.navButton.active .navButton_top:nth-of-type(3),
.navButton.active .navButton_top:nth-of-type(4),
.navButton.active .navButton_top:nth-of-type(6),
.navButton.active .navButton_top:nth-of-type(7),
.navButton.active .navButton_top:nth-of-type(8),
.navButton.active .navButton_top:nth-of-type(9){
    opacity: 0;
}















.HeaderNav{
    top: -2000px;
}

.HeaderNav.active{
    top: 0 !important;
}

.HeaderNav{
    filter: drop-shadow(0 0 1px #000);
    transition: .5s;
    font-family: Helvetica;
    z-index: 900;
    position: fixed;
    background-color: #b3b3b3;
    width: 100%;
    padding: 20px;
    box-sizing: border-box;
    font-size: 12px;
}

.HeaderNav_list{
    margin-top: 60px;
    padding-left: 0;
}

.HeaderNav_projectText{
    width: 100%;
    text-align: center;
    margin-top: 40px;
    margin-bottom: 20px; 
}

.HeaderNav_projectText::before,
.HeaderNav_projectText::after{
    content: "-";
    margin: 0 2px;
}

.HeaderNav_listTop,
.HeaderNav_listProject{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    align-items: center;
}

.HeaderNav_item,
.HeaderNav_itemProject{
    width: 21%;
    list-style: none;
    text-align: center;
}

.HeaderNav_link,
.HeaderNav_linkTop{
    display: block;
    font-family: Helvetica;
}

.HeaderNav_linkTop{
    color: #000;
}

.HeaderNav_linkTop{
    color: #1D2087;
}

.HeaderNav_itemProject{
    margin: 0 5px 30px;
}

.HeaderNav_img{
    width: 100%;
    height: 50px;
    object-fit: contain;
}















.Top{
    /* padding-top: 50px; */
    display: flex;
    position: relative;
    height: 94vh;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
}

.Top_inner{
    display: none;
    position: relative;
    width: 100%;
    height: 567px;
    animation: opening 3s;
    margin-top: -50px;
}

@keyframes opening{
    0%{
        transform: scale(2) translate(100px,-200px);
    }
    80%{
        transform: scale(1.5) translate(-100px,100px);
    }
    100%{
        transform: scale(1) translate(0);
    }
}


.Top_titleBox,
.Top_detailBox{
    display: none;
    position: absolute;
    z-index: 10;
    animation: titleScale 1s;
    left: 4vw;
}

@keyframes titleScale{
    0%{
        transform: scale(0);
    }
    100%{
        transform: scale(1);
    }
}

.Top_titleBox{
    top: 240px;
}

.Top_title{
    font-size: 5.6rem;
    margin-top: 0;
    margin-bottom: 0;
}

.Top_subTitle{
    font-family: Helvetica;
    margin-top: -10px;
    margin-bottom: 0;
}

.Top_detailBox{
    text-align: left;
    bottom: 20px;
}

.Top_detailBox p{
    margin-top: 0;
    margin-bottom: 0;
    /* margin-bottom: 5px; */
}

.Top_day{
    letter-spacing: 0;
    display: flex;
    font-family: Helvetica;
    font-size: 2.4rem;
}

.Top_dayWeek{
    font-size: 1.6rem;
    margin-left: 3px;
    letter-spacing: .1em;
}

.Top_dayBetween{
    margin-left: 5px;
    margin-right: 5px; 
}

.Top_time{
    font-family: Helvetica;
    font-size: 1.6rem;
    margin-bottom: 0 !important;
}

.Top_timeLast{
    font-size: 1rem;
    margin-left: 10px;
}

.Top_place{
    font-size: 1.1rem;
    letter-spacing: .3rem;
}

.Top_news{
    display: inline-block;
    background-color: #000;
    color: #fff;
    font-size: 1rem;
    padding: 3px;
}

.Top_backGround{
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    width: 100vw;
}

#svg{
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    /* height: 100vh; */
    width: 100%;
}

.st0{
    fill: transparent;
    stroke-dasharray: 2000;
    stroke-width: 4;
    animation: animYellow 2s cubic-bezier(0.645, 0.045, 0.355, 1) forwards;
}
  
@keyframes animYellow {
    0% {
        fill: transparent;
        stroke: #FFF000;
        stroke-dashoffset: 2000;
    }
    80% {
        fill: transparent;
        stroke-dashoffset: 0;
        stroke: #FFF000;
    }
    100% {
        stroke: none;
        fill: #FFF000;
    }
}

.st1{
    fill: transparent;
    stroke-dasharray: 2000;
    stroke-width: 2;
    animation: animBlue 2.5s cubic-bezier(0.645, 0.045, 0.355, 1) forwards;
}
  
@keyframes animBlue {
    0% {
        fill: transparent;
        stroke: #1D2087;
        stroke-dashoffset: 2000;
    }
    80% {
        fill: transparent;
        stroke-dashoffset: 0;
        stroke: #1D2087;
    }
    100% {
        stroke: none;
        fill: #1D2087;
    }
}

.st2{
    fill: transparent;
    stroke-dasharray: 2000;
    stroke-width: 2;
    animation: animGray 3.5s cubic-bezier(0.645, 0.045, 0.355, 1) forwards;
}
  
@keyframes animGray {
    0% {
        fill: transparent;
        stroke: #B4B4B5;
        stroke-dashoffset: 2000;
    }
    50% {
        fill: transparent;
        stroke-dashoffset: 0;
        stroke: #B4B4B5;
    }
    100% {
        stroke: none;
        fill: #B4B4B5;
    }
}

.Top_personImgBox{
    position: fixed;
}

.Top_personImgBox:nth-of-type(1){
    margin-top: 55px;
    left: 45px;
    animation: personImg .5s;
}

.Top_personImgBox:nth-of-type(1) .Top_personImg{
    height: 70px;
}

.Top_personImgBox:nth-of-type(2){
    margin-top: 57px;
    left: 130px;
    animation: personImg .5s;
}

.Top_personImgBox:nth-of-type(2) .Top_personImg{
    height: 68px;
}

.Top_personImgBox:nth-of-type(3){
    margin-top: 55px;
    left: 204px;
    animation: personImg .5s;
}

.Top_personImgBox:nth-of-type(3) .Top_personImg{
    height: 70px;
}

.Top_personImgBox:nth-of-type(4){
    margin-top: 55px;
    left: 296px;
    animation: personImg .5s;
}

.Top_personImgBox:nth-of-type(4) .Top_personImg{
    height: 70px;
}

.Top_personImgBox:nth-of-type(5){
    margin-top: 170px;
    left: 35px;
    animation: personImg .5s;
}

.Top_personImgBox:nth-of-type(5) .Top_personImg{
    height: 65px;
}

.Top_personImgBox:nth-of-type(6){
    margin-top: 167px;
    left: 132px;
    animation: personImg .5s;
}

.Top_personImgBox:nth-of-type(6) .Top_personImg{
    height: 68px;
}

.Top_personImgBox:nth-of-type(7){
    margin-top: 163px;
    left: 212px;
    animation: personImg .5s;
}

.Top_personImgBox:nth-of-type(7) .Top_personImg{
    height: 77px;
}

.Top_personImgBox:nth-of-type(8){
    margin-top: 166px;
    left: 300px;
    animation: personImg .5s;
}

.Top_personImgBox:nth-of-type(8) .Top_personImg{
    height: 75px;
}

.Top_personImgBox:nth-of-type(9){
    margin-top: 263px;
    left: 212px;
    animation: personImg .5s;
}
    
.Top_personImgBox:nth-of-type(9) .Top_personImg{
    height: 65px;
}

.Top_personImgBox:nth-of-type(10){
    margin-top: 256px;
    left: 300px;
    animation: personImg .5s;
}

.Top_personImgBox:nth-of-type(10) .Top_personImg{
    height: 75px;
}

.Top_personImgBox:nth-of-type(11){
    margin-top: 350px;
    left: 43px;
    animation: personImg .5s;
}

.Top_personImgBox:nth-of-type(11) .Top_personImg{
    height: 80px;
}

.Top_personImgBox:nth-of-type(12){
    margin-top: 350px;
    left: 135px;
    animation: personImg .5s;
}

.Top_personImgBox:nth-of-type(12) .Top_personImg{
    height: 80px;
}

.Top_personImgBox:nth-of-type(13){
    margin-top: 350px;
    left: 218px;
    animation: personImg .5s;
}

.Top_personImgBox:nth-of-type(13) .Top_personImg{
    height: 80px;
}

.Top_personImgBox:nth-of-type(14){
    margin-top: 354px;
    left: 292px;
    animation: personImg .5s;
}

.Top_personImgBox:nth-of-type(14) .Top_personImg{
    height: 77px;
}

@keyframes personImg{
    0%{
        opacity: 0;
    }
    100%{
        opacity: 1;
    }
}

.Top_scrollBox{
    display: none;
    font-family: Helvetica;
    position: absolute;
    bottom: 30px;
    left: 0;
    right: 0;
    margin: auto;
    animation: scroll 1s infinite;
    text-align: center;
}

.Top_scrollText{
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.Top_scrollArrow{
    position: absolute;
    width: 40px;
    height: 40px;
    border-bottom: #000 1px solid;
    border-right: #000 1px solid;
    transform: rotate(45deg);
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
}

@keyframes scroll{
    0%{
        opacity: 1;
    }
    50%{
        opacity: .2;
    }
    100%{
        opacity: 1;
    }
}   











.About_img{
    width: 80vw;
    height: 80vw;
    object-fit: cover;
    margin-bottom: 25px;
}

.About_text{
    padding-left: 10px;
    padding-right: 10px; 
    font-size: 1.2rem;
    text-align: justify;
    text-justify: inter-ideograph;
    margin-bottom: 10px;
}









.ProjectContents{
    margin-bottom: 70px;
}

.ProjectContents_logo{
    margin-left: auto;
    margin-right: auto;
}

.ProjectContents_logoImg{
    width: 150px;
    height: 150px;
    object-fit: contain;
}

.ProjectContents_subText{
    font-size: 13px;
}

.ProjectContents_text{
    font-size: 11px;
    line-height: 20px;
    text-align: justify;
    text-justify: inter-ideograph;
}

.wrap{
    width:95%;
    margin:0 auto;
    text-align:center;
}
.mainImage{
    margin-bottom: 20px;
}
.mainImage img{
    width: 80%;
    height: 150px;
    object-fit: cover;
    text-align:center;
}
.thumbnails{
    width:80%;
    margin:0 auto 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.thumbnails img:first-child{
    border: 2px solid #FFF000;
}
.thumbnails img{
    width:30%;
    box-sizing: border-box;
}





.FloorMap{
    height: 400px;
}




.Access_map{
    display: block;
    width: 300px;
    height: 300px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 40px;
}

.Access_link{
    color: #fff;
    background-color: #1d2087;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 20px;
}

.Access_trafficBox{
    margin-top: 60px;
    text-align: left;
    width: 90%;
    margin-left: auto;
    margin-right: auto;
}

.Access_busBox,
.Access_train{
    font-size: 1.1rem;
}

.Access_busBoxHead::before{
    content: "<";
}  

.Access_busBoxHead::after{
    content: ">";
} 

.Access_busBoxContent{
    margin-left: 10px;
}






.footer{
    position: relative;
    z-index: 800;
    text-align: center;
    padding-bottom: 30px;
}


.kenkokai_box{
    width: 70%;
    margin-left: auto;
    margin-right: auto;
    border: rgb(209, 209, 209) 1px solid;
    margin-bottom: 20px;
}

.kenkokai_img{
    width: 100%;
}


.copyright{

}







.ComingSoon{
    position: absolute;
	top: 50%;
	left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2.0rem;
}






.SPOnly{
    display: none;
}


@media screen and (min-width: 768px){
    .SPOnly{
        width: 100vw;
        height: 100vh;
        display: block;
        position: fixed;
        z-index: 1000;
        background-color: #fff;
        overflow: hidden;
        text-align: center;
    }

    main{
        display: none;
    }
}