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

/*===============================================
共通
===============================================*/

html,body {
    height: 100%;
    margin: 0 auto;
    padding: 0;
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", "sans-serif";
	font-size: 0.625rem;
	font-weight: normal;
	background-color: #001947;
	position: relative;
	line-height: 1;
}

img{
	border: 0;
}

ul{
	margin:0;
	padding:0;
}

li{
	list-style: none;
}

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

a:hover{
	color: #C8C8C8;
}

table{
　　border-collapse: collapse;
}

.text{
	display: inline-block;
}
.sp-none {
    display: none;
}
/*===============================================
header
===============================================*/

.wrap{
	position: relative;
}
/*===============================================
コンテンツ
===============================================*/
.st0{
	fill: none;
	stroke: #fff;
	stroke-width: 70px;
}
.logo{
	width: 100%;
	text-align: center;
	position: relative;
}
.logo svg.draw{
	width: 100%;
	max-width: 800px;
	min-width: 320px;
	position: absolute;
	top: 40%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}
.foot{
	width: 580px;
	display: flex;
	justify-content: space-between;
	position: absolute;
	bottom: 32%;
	left: 50%;
	transform: translateX(-50%);
	align-items: center;
}
.foot .logotype{
	opacity: 0;
	animation: fade 1s ease 2.5s forwards;
}
.foot .face{
	margin-left: auto;
	opacity: 0;
	animation: fade 1s ease 2.6s forwards;
}
.foot .insta{
	margin-left: 60px;
	opacity: 0;
	animation: fade 1s ease 2.7s forwards;
}
.foot-sp{
	display: none;
}
@keyframes fade {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

/*==============================================
画面の横幅が1024pxまで
===============================================*/
@media only screen and (max-width:667px) {
	.foot{
		display: none;
	}
.logo svg.draw{
	width: 70%;
	max-width:400px;
	min-width:inherit;
	top: 50%;
	left: 48%;
}
.foot-sp{
	display: flex;
	height: 100vh;
	flex-flow: column;
	justify-content: space-between;
	position: absolute;
	top:0;
	bottom:inherit;
	left:inherit;
	transform:none;
	right: 8%;
	padding: 5% 0 30%;
	box-sizing: border-box;
	text-align: center;
}
.foot-sp .logotype{
	opacity: 0;
	animation: fade 1.4s ease 2.5s forwards;
}
.foot-sp .face{
	margin-left: 0;
	margin-top: auto;
	opacity: 0;
	animation: fade 1.2s ease 2.7s forwards;
}
.foot-sp .insta{
	margin-left: 0;
	margin-top: 40px;
	opacity: 0;
	animation: fade 1s ease 2.9s forwards;
}
}