/* IMPORT CSS */
@import url("style.css");


/* スライドショー
-------------------------------------*/
.slide {
	overflow: hidden;
	position: relative;
}

.slide .text {
	position:absolute;
	top: 55%;
	transform: translateY(-55%);
	-webkit- transform: translateY(-55%);
	left:20px;
	right:0;
	bottom:0;
	z-index:10;
	color:#FFF;
	font-size: 5.3rem;
	line-height: 1.3;
	font-weight :bold;
	text-shadow:1px 1px 0 #7A5D29,-1px 1px 0 #7A5D29,1px -1px 0 #7A5D29,-1px -1px 0 #7A5D29;
	max-width:1200px;
	margin:0 auto;
	text-align:left;
}

@media screen and (max-width:1024px) {
	.slide .text { font-size: 3.6rem;}
}

@media screen and (max-width:480px) {
	.slide .text { font-size: 1.6rem;}
}


.slideInner {
	list-style: none;
	margin: 0;
	padding: 0;
}
.slideInner li {
	position: absolute;
	width: 100%;
	margin: 0;
	padding: 0;
	background-position: 50% 0;
	background-repeat: no-repeat;
}


/* スマホ用3分割の場合のレイアウト補足 */

@media screen and (max-width:480px) {
	.img-50 { width:48%; float:left;}
	.f-right { width:48%; float:right; font-size:12px;}
	.f-right p.title { font-size:12px; margin:0 0 0.4rem 0;}
	.f-right .btn a { padding: 5px 10px;}
	.f-right p { margin:0 0 0.4rem 0;}
}

/* 写真ズーム
-----------------------------------*/
.zoom {
	overflow: hidden;
}
.zoom img {
	display: block;
	-moz-transition: -moz-transform 0.8s linear;
	-webkit-transition: -webkit-transform 0.8s linear;
	-o-transition: -o-transform 0.8s linear;
	-ms-transition: -ms-transform 0.8s linear;
	transition: transform 0.8s linear;
}
.zoom img:hover {
	-webkit-transform: scale(1.05);
	-moz-transform: scale(1.05);
	-o-transform: scale(1.05);
	-ms-transform: scale(1.05);
	transform: scale(1.05);
}

/* ご家庭でできること
-----------------------------------*/
.musiba-box {
	margin:0 10%;
}

h3.yobo {
	background:#060;
	padding:0.5em 0;
	margin:1em  0 1em 0;
	border-radius:5px;
	color:#FFF;
	width:100%;
	text-align:center;
}


ol.yobo { float:left; font-size:14px;}
.img-yobo { width:38%; float:right;}
