html,
body {
	background: #f4cdca;
}
h1 {
	text-shadow: 1px 2px 3px #f4cdca;
}
h3 {
	color: ##E15297;
}
h3::before {
	background: #f4cdca; /* 色 */
}
h3::after {
	background: #e15297; /* 色 */
}
.mainTop {
	margin: 0;
	padding: 20px 0 160px;
	width: 100%;
	min-height: 100vh;
	text-align: center;
	position: relative;
	overflow: hidden;
}
.mainTop::before {
	content: '';
	position: absolute;
	right: 0;
	left: -15%;
	bottom: 0;
	z-index: 10;
	display: block;
	height: 140px;
	background-image: linear-gradient(315deg, #f4cdca 25%, transparent 25%), linear-gradient(45deg, #f4cdca 25%, transparent 25%);
	background-size: 140px 100%;
	background-position: 0 0;
}
@keyframes rotate{
	0% {
		transform: rotateZ(0);
	}
	100% {
		transform: rotateZ(360deg);
	}
}
.bg-img {
	width: 200%;
	height: 200%;
	background: repeating-conic-gradient(transparent,transparent 6deg,rgba(255,255,255,0.4) 6deg 12deg);
	background-size: cover;
	position: absolute;
	top: 0;
	left: 0;
	margin-left: -50%;
	margin-top: -25%;
	animation-name: rotate;
	animation-duration: 10s;
	animation-timing-function: cubic-bezier(0.5, 0.51, 0.51, 0.52);
	animation-iteration-count: infinite;
	z-index: 1;
	border-radius: 50%;
}

.mainTop h2 {
	color: #fff;
	position: relative;
	z-index: 5;
}
.twitter-tweet {
	margin: 0 auto;
	margin-top: 0 !important;
	margin-bottom: 0 !important;
	padding: 0 !important;
	width: auto !important;
	position: relative;
	z-index: 10;
}
.mainArea {
	margin: 126px auto 0;
}
/* Loading背景画面設定　*/
#splash {
    /*fixedで全面に固定*/
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 999;
  text-align:center;
  color:#fff;
}

/* Loading画像中央配置　*/
#splash_text {
  position: absolute;
  top: 50%;
  left: 50%;
    z-index: 999;
  transform: translate(-50%, -50%);
  color: #fff;
  width: 100%;
	font-size: 4.0rem;
}

/*IE11対策用バーの線の高さ※対応しなければ削除してください*/
#splash_text svg{
    height: 2px;
}

/*割れる画面のアニメーション*/
.loader_cover {
    width: 100%;
    height: 50%;
    background-color: #f4cdca;
    transition: all .2s cubic-bezier(.04, .435, .315, .9);
    transform: scaleY(1);
}
/*上の画面*/
.loader_cover-up {
    transform-origin: center top;
}

/*下の画面*/
.loader_cover-down {
    position: absolute;
    bottom: 0;
    transform-origin: center bottom;
}
/*クラス名がついたらY軸方向に0*/
.coveranime {
    transform: scaleY(0);
}
@media screen and (max-width: 1000px) {
	h1{
		padding: 10px;
		position: relative;
		text-align:left;
		background: #f4cdca;
		display: block;
		top: 0;
		left: 0;
	}
	.mainTop {
		padding: 85px 10px 80px;
		background: repeating-conic-gradient(transparent,transparent 6deg,rgba(255,255,255,0.4) 6deg 12deg);
	}
	.mainTop::before {
		height: 70px;
		background-size: 70px 100%;
	}
	.bg-img {
		display: none;
	}
	.mainArea {
		margin: 53px auto 0;
		border: 10px solid #f4cdca;
	}
}