html{
    width: 100%;
    height: 100vh;
    margin: 0;
    box-sizing: border-box;
}

body{
    width: 100%;
    height: 100vh;
    margin: 0;
    box-sizing: border-box;
    overflow-x: hidden;
    font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic";
    background-size: cover;
}


.sp{
    width: 60%;
    height: auto;
    position: absolute;
    top: 35vh;
    left: 20vw;
    z-index: 1000;
/*
    width: 600px;
    height: auto;
*/
    transition: all .2s ease;
}

/*
@media(max-width:1250px ){
    .sp{
    width: 60%;
    height: auto;
    position: fixed;
    z-index: 2000;
    margin: 25% 23% 24% 25%;
    transition: all .2s ease;
}
}

@media(max-width:1150px ){
    .sp{
    width: 60%;
    height: auto;
    position: fixed;
    z-index: 2000;
    margin: 26% 23% 23% 27%;
    transition: all .2s ease;
}
}

@media(max-width:1000px ){
    .sp{
    width: 60%;
    height: auto;
    position: fixed;
    z-index: 2000;
    margin: 40% 23% 23% 26%;
    transition: all .2s ease;
}
}
*/

/*
.center{
    width: 40%;
    height: auto;
    position: fixed;
    margin: 23% 23% 25% 29%;
    transition: all .2s ease;
}
*/

.hidden{
    opacity: 0;
    visibility: hidden;
    transition: all .2s ease;
}

.logo_rect{
    position: fixed;
    top: .5%;
    left: .5%;
    width: 5%;
    height: auto;
    z-index: 1001;
}

/*左側　水色*/
.menu{
    position: fixed;
    top: 0;
    left: 0;
    width: 6%;
    height: 100%;
    background-color: rgba(252,252,252,0.7);
/*    background-color: rgba(101, 205, 232, 0.7);*/
    z-index: 1000;
/*    cursor: pointer;*/
}




.color1{
    background-color: rgba(101, 205, 232, 0.7);
}

.color2{
    background-color: rgba(248,153,170,0.7);
}

.color3{
    background-color: rgba(239,233,84,0.7);
}

.fixed{
    width: 6%;
    height: auto;
    position: fixed;
    top: 45%;
    left: 1%;
    z-index: 100001;
}

/*メニュー　全体*/
  .overlayMenuBtn  {
    position: relative;
    display: block;
    top: 45%;
    left: 0;
    height: 30px;
    width: 80%;
    cursor: pointer;
    z-index: 100001;
    text-align: center;
  }

/*メニュー　線*/
  .overlayMenuBtn span {
    position: relative;
    display: block;
    width: 80%;
    border: 1.5px solid #65cde8;
    transition: .5s;
      z-index: 100001;
  }

/*メニュー　配置*/
  .overlayMenuBtn span:nth-child(1) { top: 0; }
  .overlayMenuBtn span:nth-child(2) { top: 10px; }
  .overlayMenuBtn span:nth-child(3) { top: 20px; }

/*オーバーレイ　全体*/
  .overlayMenu {
    display: none;
    position: fixed;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-color: rgba(252, 252, 252, 1);
    z-index: 100000;
/*      transition: all .8s;*/
  }

.back{
    width: 94%;
    height: auto;
    position: absolute;
    top: 100vh;
    left: 6%;
}

/*内容*/
.container{
    position: fixed;
    top: 0;
    left: 0;
/*
    left: 6%;
    width: 94%;
*/
    width: 100%;
    height: 100vh;
    background-size: cover;
}

.background1{
/*    background-image: url(images/consept_blue.jpg);*/
/*    background-image: url(images/back_sub_yellow.jpg);*/
    background-image: url(images/suisai_concept.jpg);
}
.background2{
/*    background-image: url(images/sub_red.jpg);*/
    background-image: url(images/suisai_concept.jpg);
}
.background3{
/*    background-image: url(images/sub_yellow.jpg);*/
    background-image: url(images/suisai_red.jpg);
}
.background4{
/*    background-image: url(images/sub_mix.jpg);*/
    background-image: url(images/suisai_yellow.jpg);
}

.new{
    font-size: 1em;
    text-align: center;
    position: fixed;
    top: 5vh;
    left: 10%;
    width: 5%;
    height: auto;
    padding: 0.5em 0;
    background-color: rgba(101, 205, 232, 0.7);
    cursor: pointer;
    z-index: 1000;
    border-radius: 5%;
}

/*
.new a:hover{
    font-size: 1.1em;
}
*/

.new a{
    text-decoration: none;
    color: #ffffff;
}

.marquee {
    position: fixed;
    top: 4.8vh;
    left: 15.5%;
    width: 30%;
    padding:0.5em 0;
    overflow:hidden;
/*    background-color:#f6f6f6;*/
    margin-bottom:10px;
    position:relative;
    z-index: 1001;
    border-bottom: 1px solid #bcbcbc;
/*    box-sizing: border-box;*/
}

.marquee p:after {
    content:"";
    white-space:nowrap;
    padding-right:50px;
}

.marquee p {
    margin:0;
    padding-left:600px;
    display:inline-block;
    white-space:nowrap;
	-webkit-animation-name:marquee;
	-webkit-animation-timing-function:linear;
	-webkit-animation-duration:10s;
	-webkit-animation-iteration-count:infinite;
	-moz-animation-name:marquee;
	-moz-animation-timing-function:linear;
	-moz-animation-duration:10s;
	-moz-animation-iteration-count:infinite;
	-ms-animation-name:marquee;
	-ms-animation-timing-function:linear;
	-ms-animation-duration:10s;
	-ms-animation-iteration-count:infinite;
	-o-animation-name:marquee;
	-o-animation-timing-function:linear;
	-o-animation-duration:10s;
	-o-animation-iteration-count:infinite;
	animation-name:marquee;
	animation-timing-function:linear;
	animation-duration:10s;
	animation-iteration-count:infinite;
}
@-webkit-keyframes marquee {
  from   { -webkit-transform: translate(0%);}
  99%,to { -webkit-transform: translate(-100%);}
}
@-moz-keyframes marquee {
  from   { -moz-transform: translate(0%);}
  99%,to { -moz-transform: translate(-100%);}
}
@-ms-keyframes marquee {
  from   { -ms-transform: translate(0%);}
  99%,to { -ms-transform: translate(-100%);}
}
@-o-keyframes marquee {
  from   { -o-transform: translate(0%);}
  99%,to { -o-transform: translate(-100%);}
}
@keyframes marquee {
  from   { transform: translate(0%);}
  99%,to { transform: translate(-100%);}
}





/*
.logo_svg_top{
    position: absolute;
    top: 0;
    left: 0;F
    display: inline-block;
    width: 460px;
    height: 100px;
}

.logo_back{
    position:absolute;
    top: 0;
    left: 6%;
    display: inline-block;
    width: 94%;
    height: 110px;
    background-color: rgba(252,252,252,0.4);
    visibility: hidden;
    opacity: 0;
    z-index: 1000;
}

.fixed_logo{
    position: fixed;
    top: 0;
    left: 6%;
    visibility: visible;
    opacity: 1;
}
*/

.topban_back{
    position: absolute;
    top: 0;
    left: 6%;
    width: 94%;
    height: auto;
    z-index: 1001;
/*    background-color: rgba(101, 205, 232, .3);*/
}

.topban{
    position: absolute;
    top: 0;
    left: 12%;
    width: 85%;
    height: auto;
    margin: 20px 0;
    z-index: 1001;
}

.topban div a img{
    width: 80%;
    height: auto;
}

.topban div a img:hover{
    opacity: 0.8;
    transform: scale(0.99);
}

.prev-arrow{
    position: absolute;
    top: 45%;
    left: -10%;
    z-index: 100;
    cursor:pointer;
}

.next-arrow{
    position: absolute;
    top: 45%;
    right: 10%;
    z-index: 100;
    cursor: pointer;
}

.about{
    position: absolute; 
    top: 700px;
    left: 10%;
    width: 30%;
    height: auto;
/*    background-color: rgba(252,252,252,0.4);*/
/*    height: auto;*/
/*    background-color: rgba(101, 205, 232, 0.8);*/
    text-align: center;
    border-radius: 10%;
    border: 1px solid #707070;
/*    border: 1px solid #707070;*/
}

.about p:first-child{
    padding-bottom: 5px;
}

.about p{
    padding-top: 10px;
    font-size: 20px;
    line-height: 20px;
    box-sizing: border-box;
/*    border-bottom: 1px solid #eee;*/
    padding-bottom: 7px;
    color: #707070;
}

.about p:last-child{
/*    border-bottom: none;*/
    padding-bottom: 10px;
}

iframe{
    position: absolute;
    top: 700px;
    right: 10%;
}

/*
.web_map{
    display: block;
    width: 100%;
    height: auto;
    position: absolute;
    top: 1200px;
    left: 0;
    z-index: 199;
}
*/

.map_con{
    position: absolute;
    top: 2000px;
    left: 0;
    display: block;
    width: 100%;
    height: auto;
    background-color: rgba(101, 205, 232, 0.85);
    padding-bottom: 20px;
}
.map_con ul{
    margin-left: 6%;
/*    text-indent: 10px;*/
}



.map_con .pro_li li:first-child{
    border-left: none;
    text-indent: -30px;
}

.map_con .pro_li li:nth-child(2){
    border-left: .2px solid #ffffff;
    transform: translateX(-20px);
}

.map_con .pro_li li:nth-child(6){
    transform: translateX(-20px);
}

/*
.map_con .pro_li li{
    text-indent: 10px;!important
}
*/
.footer_eff{
    transform: translateX(15px);
}

footer div li:hover > a{
    color: #707070;
}

/*
footer .footer_none:hover > a{
    color: #ffffff;
    pointer-events: none;
}
*/

.map_con div{
    width: 19%;
    height: auto;
   float: left;
    text-decoration: none;
    list-style-type: none;
}

.map_con div li{
    list-style-type: none;
    display: block;
    border-left: .2px solid #ffffff;
    text-indent: 10px;
}

.map_con div li:first-child{
    border-left: none;
    text-indent: -10px;
}



.map_con div li a{
    text-decoration: none;
    list-style-type: none;
    display: block;
    color: #ffffff;
}


.copy{
    position: absolute;
    bottom: 10px;
    left: 42%;
    color: #ffffff;
}

@keyframes fadeout{
    0%{
        opacity: 1;
    }
/*
    90%{
        opacity: 1;
    }
*/
    95%{
        opacity: 1;
    }
    100%{
        opacity: 0;
    }
}

.fadeout{
    animation-name: fadeout;
    animation-duration: 2s;
    animation-timing-function: ease;
}

.banner{
    opacity: 0;
    visibility: hidden;
}

@media(min-width:1600px ){
    .about{
        position: absolute;
        top: 850px;
    }
    iframe{
        position: absolute;
        top: 850px;
    }
    .map_con{
        position: absolute;
        top: 2000px;
    }
}

@media(min-width:1500px ){
    .about{
        position: absolute;
        top: 750px;
    }
    iframe{
        position: absolute;
        top: 750px;
    }
    .map_con{
        position: absolute;
        top: 1900px;
    }
}


@media(max-width:1300px ){
    .about{
        position: absolute;
        top: 620px;
    }
    iframe{
        position: absolute;
        top: 620px;
    }
    .map_con{
        position: absolute;
        top: 1820px;
    }
}

@media(max-width:1200px ){
    .about{
        position: absolute;
        top: 600px;
    }
    iframe{
        position: absolute;
        top: 600px;
    }
    .map_con{
        position: absolute;
        top: 1850px;
    }
}

@media(max-width:1100px ){
    .about{
        position: absolute;
        top: 550px;
    }
    iframe{
        position: absolute;
        top: 550px;
    }
    .map_con{
        position: absolute;
        top: 1800px;
    }
}

@media(max-width:1000px ){
    .about{
        position: absolute;
        top: 500px;
    }
    iframe{
        position: absolute;
        top: 500px;
    }
    .map_con{
        position: absolute;
        top: 1750px;
    }
}

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

.fade{
    animation-name: fade;
    animation-timing-function: all 2s ease;
}

.pcnone{
    position: fixed;
    top: 0;
    left: 0;
    display: none;
    width: 100%;
    height: 100vh;
    z-index: 1000000;
    background-color: rgba(0,0,0,0.4);
}

.pcnone p{
    position: absolute;
    top: 37vh;
    left: 25%;
    font-size: 2rem;
    color: #eee;
}

@media(max-width:1000px ){
    .pcnone{
    display: block;
}
}

.page_hide{
    opacity: 0;
    visibility: visible;
    transition: all 0.5s ease;
}

canvas {
        display: inline-block;
        position: fixed;
        top: 0;
        left: 0;
        z-index: 1000;
        opacity: 0.8;
    }

.map_con div li:last-child{
    margin-bottom: 150px;
}
