@charset "utf-8";
/* CSS Document */
/* =====================
  common
===================== */


/* =====================
  tab切り替え
===================== */

.tab_wrap{
	width:100%; 
	margin:20px auto;
}
.tab_wrap input[type="radio"]{
	display:none;
}
.tab_area{
	font-size:0;
	display: block;
	margin: 0 auto;
	width: 90%;
}
.tab_area label{
	width: 19%;
    margin: 0 0.5%;
    display: inline-block;
    padding: 12px 0;
    border: solid 2px #00afcc;
	border-radius: 10px;
    text-align: center;
    font-size: 1.6rem;
	font-weight: bold;
    cursor: pointer;
    transition: ease 0.3s;
}
.tab_area label:hover{
	background:#00afcc; 
	color:#fff;
	transition: ease 0.3s;
}
.panel_area{
	background:#fff;
}
.tab_panel{
	width:100%; 
	padding:80px 0 0 0; 
	display:none;
}
.tab_panel p{
	font-size:14px; 
	letter-spacing:1px; 
	text-align:center;
}

.tab_wrap #tab1:checked ~ .tab_area .tab1_label,
.tab_wrap #tab2:checked ~ .tab_area .tab2_label,
.tab_wrap #tab3:checked ~ .tab_area .tab3_label,
.tab_wrap #tab4:checked ~ .tab_area .tab4_label,
.tab_wrap #tab5:checked ~ .tab_area .tab5_label{
	background:#00afcc; 
	color:#fff;
}
.tab_wrap #tab1:checked ~ .panel_area #panel1,
.tab_wrap #tab2:checked ~ .panel_area #panel2,
.tab_wrap #tab3:checked ~ .panel_area #panel3,
.tab_wrap #tab4:checked ~ .panel_area #panel4,
.tab_wrap #tab5:checked ~ .panel_area #panel5{
	display:block;
}

/* =====================
  detail-area
===================== */
.detail-area{
	background-color: #cfeaee;
	padding: 50px 0;
}
.detail-area h3{
	font-weight: bold;
	font-size: 2.4rem;
	letter-spacing: 0.1em;
}
.detail-area .price-ttl{
	font-size: 3.6rem;
	color: #00afcc;
	font-weight: bold;
	margin:0 0 20px 0;
	display: block;
}
.detail-area .other-price{
	border-bottom: 2px dotted #000;
	position: relative;
	top: -25px;
}
.detail-area .other-price::before{
}
.detail-area .other-price span{
	display: inline-block;
	background-color: #cfeaee;
	position: relative;
	z-index: 10;
	top: 17px;
	letter-spacing: 0.1em;
}
.detail-area .other-price .name{
	display: inline-block;
	padding-right: 10px;
	margin-bottom: 6px;
}
.detail-area .other-price .price{
	float: right;
	display: inline-block;
	padding-left: 10px;
}
.detail-area .place{
	margin: 30px 0;
	letter-spacing: 0.1em;
}
.detail-area .place .shozaichi{
	display: inline-block;
	position: relative;
	padding-left: 20px;
	margin-right: 10px;
}
.detail-area .place .shozaichi::before{
	content: url(../images/common/icon_place.png);
	position: absolute;
	left: 0;
	top: 8%;
}
.detail-area .place .address{
	display: inline-block;
}
.detail-area .left{
	width: 37%;
}
.detail-area .right{
	width: 50%;
	text-align: center;
}
/* =====================
 text-wrap
===================== */
.text-wrap{
	padding: 25px 0;
}
.text-wrap p{
	margin-bottom: 1em;
}
.gallery-area ul li{
	float: left;
	width: 23.5%;
	margin-right: 2%;
}
.gallery-area ul li:last-child{
	margin-right: 0;
}
.gallery-area span{
	display: block;
	text-align: center;
	font-weight: bold;
	margin: 50px 0;
	letter-spacing: 0.1em;
}

.btn{
	max-width: 150px!important;
	display: block;
	margin: 30px auto;
}
img {
    max-width: 100%;
    height: auto;
}
.search-ttl {
	display: block;
}
/* ====================================================================================
         ipad時
  ==================================================================================== */
/* 縦 */
@media only screen and (min-device-width : 768px) and (max-device-width : 1024px) and (orientation : portrait) {
	
}
/* 横 */
@media only screen and (min-device-width : 768px) and (max-device-width : 1024px) and (orientation : landscape) {
	
}


/* ====================================================================================
         SP時
  ==================================================================================== */
@media screen and (max-width: 768px) {

	/* =====================
	  detail-area
	===================== */
	.detail-area{
		padding: 20px 0;
	}
	.detail-area h3{
		font-size: 1.8rem;
	}
	.detail-area .price-ttl{
		font-size: 3rem;
		margin:10px 0 25px 0;
	}
	.detail-area .other-price{
		border-bottom: 2px dotted #000;
		position: relative;
		top: -25px;
	}
	.detail-area .other-price span{
		display: inline-block;
		background-color: #cfeaee;
		position: relative;
		z-index: 10;
		top: 17px;
		letter-spacing: 0.1em;
	}
	.detail-area .other-price .name{
		display: inline-block;
		padding-right: 10px;
		margin-bottom: 6px;
	}
	.detail-area .other-price .price{
		float: right;
		display: inline-block;
		padding-left: 10px;
	}
	.detail-area .place{
		margin: 10px 0 30px 0;
		letter-spacing: 0.1em;
	}
	.detail-area .place .ttl{
		display: inline-block;
		position: relative;
		padding-left: 20px;
		margin-right: 20px;
	}
	.detail-area .place .ttl::before{
		content: url(../images/common/icon_place.png);
		position: absolute;
		left: 0;
		top: 8%;
	}
	.detail-area .place .address{
		display: inline-block;
	}

	/* =====================
	 text-wrap
	===================== */
	
	.text-wrap{
		padding: 65px 0;
	}
	.text-wrap p{
		padding: 20px 0;
		line-height: 1.6;
	}
	.gallery-area ul li{
		float: none;
		width: 100%;
		margin-right: 0;
		margin-bottom: 10px;
	}
	.gallery-area ul li a {
		width: 90%;
		display: block;
		margin: 0 auto;
	}
	.gallery-area ul li:last-child{
		margin-right: 0;
	}
	.detail-area .left{
		width: 100%;
	}
	.detail-area .right{
		width: 100%;
	}

	.search-ttl {
		display: block!important;
	}
	
}/*  SP // */






