.st-container {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	font: normal 75% "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

/* メニュー制御 */
.st-container > input,
.st-container > a {
	font-family: "Bree Serif", Georgia, "Times New Roman", Times, serif;
	position: fixed;
	bottom: 0px;
	width: 20%;
	cursor: pointer;
	font-size: 16px;
	height: 34px;
	line-height: 34px;
}
.st-container > input {
	opacity: 0;
	z-index: 1000;
}
.st-container > a {
	z-index: 10;
	font-weight: 400;
	color: #fff;
	text-align: center;
	text-shadow: 1px 1px 1px rgba(151,24,64,0.2);
}
.st-container:before {
	content: '';
	position: fixed;
	width: 100%;
	height: 34px;
	z-index: 9;
	bottom: 0;
}
.st-container > a,
.st-container:before {
	background: #e23a6e;
}
#st-control-1, #st-control-1 + a {
	left: 0;
}
#st-control-2, #st-control-2 + a {
	left: 20%;
}
#st-control-3, #st-control-3 + a {
	left: 40%;
}
#st-control-4, #st-control-4 + a {
	left: 60%;
}
#st-control-5, #st-control-5 + a {
	left: 80%;
}
.st-container > input:checked + a:after,
.st-container > input:checked:hover + a:after{
	bottom: 100%;
	border: solid transparent;
	content: '';
	height: 0;
	width: 0;
	position: absolute;
	pointer-events: none;
	/* border-bottom-color: #821134; */
	border-width: 20px;
	left: 50%;
	margin-left: -20px;
}
.st-container > input:checked + a,
.st-container > input:checked:hover + a{
	background: #821134;
}
.st-container > input:checked + a:after,
.st-container > input:checked:hover + a:after{
	border-bottom-color: #821134;
}
.st-container > input:hover + a{
	background: #AD244F;
}
.st-container > input:hover + a:after {
	border-bottom-color: #AD244F;
}

/* スクロール制御 */
.st-scroll,
.st-panel {
	position: relative;
	width: 100%;
	height: 100%;
}
.st-scroll {
	top: 0;
	left: 0;
	-webkit-transition: all 0.6s ease-in-out;
	-moz-transition: all 0.6s ease-in-out;
	-o-transition: all 0.6s ease-in-out;
	-ms-transition: all 0.6s ease-in-out;
	transition: all 0.6s ease-in-out;
	
	/* Let's enforce some hardware acceleration */
	-webkit-transform: translate3d(0, 0, 0);
	-webkit-backface-visibility: hidden;
}
.st-panel{
	background: #fff;
	overflow: hidden;
} 
#st-control-1:checked ~ .st-scroll {
	-webkit-transform: translateY(0%);
	-moz-transform: translateY(0%);
	-o-transform: translateY(0%);
	-ms-transform: translateY(0%);
	transform: translateY(0%);
}
#st-control-2:checked ~ .st-scroll {
	-webkit-transform: translateY(-100%);
	-moz-transform: translateY(-100%);
	-o-transform: translateY(-100%);
	-ms-transform: translateY(-100%);
	transform: translateY(-100%);
}
#st-control-3:checked ~ .st-scroll {
	-webkit-transform: translateY(-200%);
	-moz-transform: translateY(-200%);
	-o-transform: translateY(-200%);
	-ms-transform: translateY(-200%);
	transform: translateY(-200%);
}
#st-control-4:checked ~ .st-scroll {
	-webkit-transform: translateY(-300%);
	-moz-transform: translateY(-300%);
	-o-transform: translateY(-300%);
	-ms-transform: translateY(-300%);
	transform: translateY(-300%);
}
#st-control-5:checked ~ .st-scroll {
	-webkit-transform: translateY(-400%);
	-moz-transform: translateY(-400%);
	-o-transform: translateY(-400%);
	-ms-transform: translateY(-400%);
	transform: translateY(-400%);
}

/* アイコン */
.st-deco{
	width: 200px;
	height: 200px;
	position: absolute;
	top: -100px;
	left: 50%;
	border-radius: 50%;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	margin-left: -100px;
	background: #fa96b5;
}
[data-icon]:after {
    content: attr(data-icon);
    font-family: 'RaphaelIcons';
    color: #fff;
	text-shadow: 1px 1px 1px rgba(151,24,64,0.2);
	width: 200px;
	height: 200px;
	position: absolute;
	top: 50%;
	left: 50%;
	line-height: 200px;
	text-align: center;
	font-size: 80px;
	margin: -55px 0 0 -100px;
}

/* タイトル */
.st-panel h2 {
	font-family: "Arbutus Slab", Georgia, "Times New Roman", Times, serif;
	color: #e23a6e;
	text-shadow: 1px 1px 1px rgba(151,24,64,0.2);
	position: absolute;
	font-size: 54px;
	font-weight: 900;
	width: 80%;
	left: 10%;
	text-align: center;
	line-height: 50px;
	margin: -70px 0 0 0;
	padding: 0;
	top: 40%;
	-webkit-backface-visibility: hidden;
}
.st-color h2 {
	color: #fff;
	text-shadow: 1px 1px 1px rgba(0,0,0,0.1);
}
.st-panel h2.title-L {
	width: 35%;
	left: 2%;
	text-align:left;
	top: 45%;
}
#st-control-1:checked ~ .st-scroll #st-panel-1 h2,
#st-control-2:checked ~ .st-scroll #st-panel-2 h2,
#st-control-3:checked ~ .st-scroll #st-panel-3 h2,
#st-control-4:checked ~ .st-scroll #st-panel-4 h2,
#st-control-5:checked ~ .st-scroll #st-panel-5 h2{
	-webkit-animation: moveDown 0.6s ease-in-out 0.2s backwards;
	-moz-animation: moveDown 0.6s ease-in-out 0.2s backwards;
	-o-animation: moveDown 0.6s ease-in-out 0.2s backwards;
	-ms-animation: moveDown 0.6s ease-in-out 0.2s backwards;
	animation: moveDown 0.6s ease-in-out 0.2s backwards;
}
@-webkit-keyframes moveDown{
	0% { 
		-webkit-transform: translateY(-40px); 
		opacity: 0;
	}
	100% { 
		-webkit-transform: translateY(0px);  
		opacity: 1;
	}
}
@-moz-keyframes moveDown{
	0% { 
		-moz-transform: translateY(-40px); 
		opacity: 0;
	}
	100% { 
		-moz-transform: translateY(0px);  
		opacity: 1;
	}
}
@-o-keyframes moveDown{
	0% { 
		-o-transform: translateY(-40px); 
		opacity: 0;
	}
	100% { 
		-o-transform: translateY(0px);  
		opacity: 1;
	}
}
@-ms-keyframes moveDown{
	0% { 
		-ms-transform: translateY(-40px); 
		opacity: 0;
	}
	100% { 
		-ms-transform: translateY(0px);  
		opacity: 1;
	}
}
@keyframes moveDown{
	0% { 
		transform: translateY(-40px); 
		opacity: 0;
	}
	100% { 
		transform: translateY(0px);  
		opacity: 1;
	}
}

/* テキスト関連 */
.st-panel div.text {
	position: absolute;
	text-align: center;
	line-height: 22px;
	color: #8b8b8b;
	z-index: 2;
	padding: 0;
	width: 70%;
	left: 15%;
	top: 40%;
	margin: 10px 0 0 0;
	-webkit-backface-visibility: hidden;
}
.st-color div.text {
	color: #fff;
	color: rgba(255,255,255,0.8);
}
.st-panel div.text .div,
.st-color div.text .div {
	float: none;
}
.st-panel #infor {
	position: absolute;
	text-align: left;
	line-height: 22px;
	color: #333;
	z-index: 2;
	width: 45%;
	top: 45%;
	left: 2%;
	-webkit-backface-visibility: hidden;
}
.st-panel #infor .infor_contents {
	line-height: 22px;
	padding: 10px;
	width: 100%;
	border: none;
	border-top: solid 1px #AD244F;
	border-bottom: solid 1px #AD244F;
	background-color: #FFF;
	opacity: 0.8;
}
.st-panel #infor .infor_banner {
	margin-top: 10px;
}
.infor_contents .ictitle_a {
	width: 100%;
	border: none;
	padding-bottom: 10px;
}
.infor_contents .ictitle_a .ictitle_aa {
	float: left;
	width: 30%;
	font-size: 115%;
	border-bottom: solid 4px #666;
}
.infor_contents .ictitle_a .ictitle_ab {
	float: left;
	width: 70%;
	font-size: 115%;
	border-bottom: solid 4px #CCC;
}
.infor_contents .ictext_a {
	width: 100%;
	font-weight: normal;
}
.infor_contents .ictext_b {
	width: 100%;
	border-bottom: dotted 1px #333;
	font-weight: normal;
	margin-bottom: 10px;
}
.infor_contents .ictext_b .ictext_ba {
	float: left;
	width: 31%;
	padding-right: 1%;
}
.infor_contents .ictext_b .ictext_bb {
	float: left;
	width: 68%;
}

.infor_contents .ictext_b .ictext_bb a {
	color: #1111cc;
}
.infor_contents .ictext_b .ictext_bb a:hover {
	text-decoration: underline;
}
.clearfix:after{
	content: "";
	clear: both;
	display: block;
}
#st-control-1:checked ~ .st-scroll #st-panel-1 .text,
#st-control-2:checked ~ .st-scroll #st-panel-2 .text,
#st-control-3:checked ~ .st-scroll #st-panel-3 .text,
#st-control-4:checked ~ .st-scroll #st-panel-4 .text,
#st-control-5:checked ~ .st-scroll #st-panel-5 .text,
#st-control-1:checked ~ .st-scroll #st-panel-1 .text-L,
#st-control-1:checked ~ .st-scroll #st-panel-1 #infor {
	-webkit-animation: moveUp 0.6s ease-in-out 0.2s backwards;
	-moz-animation: moveUp 0.6s ease-in-out 0.2s backwards;
	-o-animation: moveUp 0.6s ease-in-out 0.2s backwards;
	-ms-animation: moveUp 0.6s ease-in-out 0.2s backwards;
	animation: moveUp 0.6s ease-in-out 0.2s backwards;
}
@-webkit-keyframes moveUp{
	0% { 
		-webkit-transform: translateY(40px); 
		opacity: 0;
	}
	100% { 
		-webkit-transform: translateY(0px);  
		opacity: 1;
	}
}
@-moz-keyframes moveUp{
	0% { 
		-moz-transform: translateY(40px); 
		opacity: 0;
	}
	100% { 
		-moz-transform: translateY(0px);  
		opacity: 1;
	}
}
@-o-keyframes moveUp{
	0% { 
		-o-transform: translateY(40px); 
		opacity: 0;
	}
	100% { 
		-o-transform: translateY(0px);  
		opacity: 1;
	}
}
@-ms-keyframes moveUp{
	0% { 
		-ms-transform: translateY(40px); 
		opacity: 0;
	}
	100% { 
		-ms-transform: translateY(0px);  
		opacity: 1;
	}
}
@keyframes moveUp{
	0% { 
		transform: translateY(40px); 
		opacity: 0;
	}
	100% { 
		transform: translateY(0px);  
		opacity: 1;
	}
}

/* リンク・サークル */
.st-panel div.text a.circle_about {
	font-family: "Bree Serif", Georgia, "Times New Roman", Times, serif;
	cursor: pointer;
	font-size: 24px;
	color: #fa96b5;
	width: 27%;
	height: 25%;
	line-height: 100px;
	border-radius: 50%;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	margin: 0 3% 5% 3%;
	background: #fff;
	float: left;
	-webkit-backface-visibility: hidden;
}
.st-panel div.text a.circle_qaa {
	width: 40%;
	height: 25%;
	margin: 0 5% 5% 5%;
}
.st-panel div.text a.circle_goods {
	width: 50%;
	height: 25%;
	margin: 0 25% 5% 25%;
}
.st-panel div.text a.circle_qaa,
.st-panel div.text a.circle_goods {
	font-family: "Bree Serif", Georgia, "Times New Roman", Times, serif;
	cursor: pointer;
	font-size: 24px;
	color: #fff;
	background: #fa96b5;
	line-height: 100px;
	border-radius: 50%;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	float: left;
	-webkit-backface-visibility: hidden;
}
.st-panel div.text a.circle_about:hover,
.st-panel div.text a.circle_qaa:hover,
.st-panel div.text a.circle_goods:hover {
	color: #fff;
	background: #AD244F;
}

/* 背景色・画像 */
.st-img-BG1 {
	/* 背景画像動作 */
	-webkit-animation: moveDown 0.6s ease-in-out 0.2s backwards;
	-moz-animation: moveDown 0.6s ease-in-out 0.2s backwards;
	-o-animation: moveDown 0.6s ease-in-out 0.2s backwards;
	-ms-animation: moveDown 0.6s ease-in-out 0.2s backwards;
	animation: moveDown 0.6s ease-in-out 0.2s backwards;
	/* 背景画像 */
	background-image: url(../img/img_top_main.jpg);
	background-position: 95% 50%;
	background-repeat: no-repeat;
	background-size: auto 100%;
}
.st-color,
.st-deco {
	background: #fa96b5;
}
.st-color [data-icon]:after {
	color: #fa96b5;
}
.st-color .st-deco {
	background: #fff;
}

/* colorbox */
.inline_text {
	font: normal 75% "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}
.inline_text h3 {
	font-family: "Arbutus Slab", Georgia, "Times New Roman", Times, serif;
	color: #fa96b5;
	font-size: 24px;
	font-weight: 900;
	line-height: 36px;
	border-left: solid 8px #fa96b5;
	margin-left: 1%;
}
.inline_text div a:hover {
	text-decoration: underline;
}
.inline_text div.iltext_a {
	width: 100%;
	border: none;
	margin: 25px 0 10px 0;
}
.inline_text div.iltext_a div.iltext_aa {
	float: left;
	width: 25%;
	border-bottom: solid 2px #666;
	padding: 0 1%;
	text-align: left;
}
.inline_text div.iltext_a div.iltext_ab {
	float: left;
	width: 75%;
	border-bottom: solid 2px #CCC;
	padding: 0 1%;
	text-align: left;
}
.inline_text div.iltext_a div.iltext_ac {
	float: left;
	width: 100%;
	border-bottom: solid 2px #666;
	padding: 0 1%;
	text-align: left;
}
.inline_text div.iltext_b {
	width: 100%;
	border-bottom: dotted 1px #333;
	margin: 10px 0;
	font-weight: normal;
}
.inline_text div.iltext_b div.iltext_ba {
	float: left;
	width: 25%;
	padding: 0 1%;
}
.inline_text div.iltext_b div.iltext_bb {
	float: left;
	width: 75%;
	padding: 0 1%;
}
.inline_text div.iltext_c {
	width: 100%;
	border-bottom: dotted 1px #333;
	margin: 10px 0;
	font-weight: normal;
	padding: 0 1%;
}

/* その他 */
.st-panel div.text div img.banner {
	width: 200px;
	height: 40px;
}
img.banner_large {
	width: 400px;
	height: 100px;
}
@media screen and (max-height: 700px) {
	img.banner_large {
		width: 300px;
		height: 75px;
	}
	.st-panel div.text div img.banner {
		width: 150px;
		height: 30px;
	}
	.st-panel h2 {
		font-size: 42px;
		top: 35%;
	}
	.st-panel h2.title-L {
		top: 35%;
	}
	.st-panel #infor {
		top: 35%;
	}
	.st-panel div.text {
		width: 90%;
		left: 5%;
		margin-top: 0;
		top: 35%;
	}
	.st-img-BG1 {
		/* 背景画像 */
		background-image: url(../img/img_top_main.jpg);
		background-repeat: no-repeat;
		background-size: auto 120%;
}
}
@media screen and (max-width: 1100px) {
	img.banner_large {
		width: 300px;
		height: 75px;
	}
}
@media screen and (max-width: 1000px) {
	.st-container {
		font-size: 9px;
	}
	.st-img-BG1 {
		background-position: 50% 55%;
	}
	.st-panel h2.title-L {
		top: auto;
		left: 4%;
		top: 70%;
	}
	.st-container > a {
		font-size: 13px;
	}
	.st-panel div.text div img.banner {
		width: 150px;
		height: 30px;
	}
	.st-panel #infor {
		width: 92%;
		left: 4%;
		top: 70%;
	}
	.infor_contents .ictext_a {
		display: none;
	}
}
@media screen and (max-width: 700px) {
	.st-container {
		font-size: 10px;
	}
	.st-img-BG1 {
		background-position: 50% 55%;
	}
	.st-panel h2 {
		font-size: 42px;
		top: 35%;
	}
	.st-panel h2.title-L {
		top: auto;
		left: 4%;
		top: 70%;
		color: #fff;
		text-shadow: 1px 1px 1px rgba(0,0,0,0.2);
	}
	.st-container > a {
		font-size: 13px;
	}
	.st-panel div.text {
		width: 90%;
		left: 5%;
		margin-top: 0;
		top: 35%;
	}
	.st-panel div.text div img.banner {
		width: 150px;
		height: 30px;
	}
	.st-panel #infor {
		width: 96%;
		left: 2%;
		top: 70%;
	}
	.infor_contents .ictext_a {
		display: none;
	}
	.infor_banner {
		display: none;
	}
}
@media screen and (max-width: 350px) {
	.st-container > a {
		font-size: 10px;
	}
	.st-panel h2 {
		top: 30%;
	}
	.st-panel div.text {
		width: 90%;
		left: 5%;
		margin-top: 0;
		top: 30%;
	}
	.st-panel div.text div img.banner {
		width: 120px;
		height: 24px;
	}
	.st-deco{
		width: 150px;
		height: 150px;
		top: -75px;
		margin-left: -75px;
	}
	[data-icon]:after {
		line-height: 185px;
		font-size: 60px;
	}
	.st-panel div.text a.circle-1,
	.st-panel div.text a.circle-2 {
		font-size:14px;
		width: 31%;
		height: 25%;
		line-height: 100px;
		margin: 0 1% 10% 1%;
	}
	img.banner_large {
		width: 240px;
		height: 60px;
	}
}
