/* 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%;
}

p.green {
	background:#060;
	padding:1em;
	margin:1em  0 0.5em 0;
	border-radius:5px;
	color:#FFF;
}

.btn-hp a {
	position: relative;
	display: inline-block;
	color: #fff !important;
	text-align: center;
	text-decoration: none;
	-moz-transition: 0.5s;
	-webkit-transition: 0.5s;
	-o-transition: 0.5s;
	-ms-transition: 0.5s;
	transition: 0.5s;
	z-index: 1;
	background:#E00000;
	border-radius:5px;
	padding:1em;
	margin:0.5em 0;
	width:100%;
}
.btn-hp a:hover {
	color: #fff;
	background: #666;
}

.arrow-bottom {
  display: inline-block;
  width: 18px;
  height: 18px;
  margin: 0 10px;
  border-bottom: 4px solid #000;
  border-right: 4px solid #000;
  transform: rotate(45deg);
}
