@charset "utf-8";
/* CSS Document */

/*=== 9-1-3 マウスが動いてスクロールを促す ====*/

/*スクロールダウン全体の場所*/
.scrolldown3{
    /*描画位置※位置は適宜調整してください*/
	position:absolute;
	bottom:10px;
	right:50%;
    /*マウスの動き1.6秒かけて動く永遠にループ*/
	animation:mousemove 1.6s ease-in-out infinite;
}

/*下からの距離が変化して上から下に動く*/
@keyframes mousemove{
      0%{bottom:10px;}
      50%{bottom:5px;}
     100%{bottom:10px;}
 }

/*Scrollテキストの描写*/
.scrolldown3 span{
    /*描画位置*/
	position: absolute;
	left:-15px;
	bottom:45px;
    /*テキストの形状*/
	color: #575757;
	font-size: 0.7rem;
	letter-spacing: 0.05em;
}

/*マウスの中の線描写 */
.scrolldown3 span::after{
	content: "";
    /*描画位置*/
	position: absolute;
	top:10px;
	left:17px;
    /*線の形状*/
	width: 1px;
	height: 15px;
	background: #575757;
    /*線の動き1.4秒かけて動く。永遠にループ*/
	animation: mousepathmove 1.4s linear infinite;
	opacity:0;
}

/*上からの距離・不透明度・高さが変化して上から下に流れる*/
@keyframes mousepathmove{
	0%{
		height:0;
		top:10px;
		opacity: 0;
	}
	50%{
		height:15px;
		opacity: 1;
	}
	100%{
		height:0;
		top:30px;
		opacity: 0;
	}
}

/*マウスの描写 */
.scrolldown3:before {
    content: "";
    /*描画位置*/
    position: absolute;
    bottom:0;
    left:-10px;
    /*マウスの形状*/
	width:25px;
	height:37px;
	border-radius: 10px;
	border:1px solid #575757;
}


/*マウスの中の丸の描写*/
.scrolldown3:after{
	content:"";
    /*描画位置*/
	position: absolute;
	bottom:26px;
	left:0;
    /*丸の形状*/
	width:5px;
	height: 5px;
	border-radius: 50%;
	border:1px solid #575757;
}

.scrolldown3 {
    margin: 0px -150px 180px 0;
}

@media screen and (max-width: 736px){
	#wrapper > section.intro > .content {
    height: 30vh;
}
	body.is-mobile #wrapper > section.intro > header {
    text-align: center;
}
	#wrapper > section > header {
    padding: 3rem 2rem 0;
    text-align: center;
}
}
.sp-only { display: block!important; }
.pc-only { display: none!important; }
@media  (min-width: 992px) {
    .sp-only { display: none!important; }
    .pc-only { display: block!important; }
}

h3 span{
	background: #CCC;
    width: fit-content;
    padding: 4px;
    font-size: 0.5rem;
    margin-right: 15px;
}

@media screen and (max-width: 736px){
#wrapper > section.intro > header {
    text-align: center;
}
#wrapper > section > header {
    border-top: 1px solid #e9e9e9;
    width: 90%;
    margin: 0 auto;
}
}


#wrapper .copyright {
    margin-top: 55px;
}

.bn3 {
      display: inline-block;
    padding: 0.5em 1.7em;
    margin: 0 auto;
    border: 0.16em solid rgb(255 255 255);
    border-radius: 2em;
    box-sizing: border-box;
    text-decoration: none;
    font-weight: 300;
    color: #ffffff;
    text-align: center;
    transition: all 0.2s;
    background: #000;
    font-size: 1rem;
    width: 60%;
}

.bn3:hover {
  color: black;
	background:#DBDBDB;
}


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

			#wrapper > section.intro > header {
				text-align: center;
			}
			#wrapper > section > header > *{
				max-width:none;
				
			}

		}