.pc-only{
	display:block;
}
.sp-only{
	display:none;
}





/*画面全体*/
#content{
	background-image:url(ヒーローエリア.jpg);
	background-size: cover;
	width:auto;
	padding:30px;
}
.entry-content {
  width: 750px;
  margin: 30px auto;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  padding: 20px;
  font-family: "Noto Sans JP", sans-serif;
}
/*料金見積もりシステム*/
#title{
  color:#000;
  text-shadow: 0 0 10px #fff,0 0 15px #fff;
  background-color: #fff;
  text-align: center;
}
/*計算テーブル*/
#main_area{
  background-color: #fff;
  padding: 10%;
  border: #000 double 5px;
}

#length{
	border:#000 solid 2px;
}
#total { font-size: 1.5em; font-weight: bold; color: #000; }
#minutes { 
  font-weight: bold;
  font-size:30px;
}
input[type="range"] { 
	width: 100%; 
}

.inputRange::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 24px;
  height: 24px;
  border: 2px solid #333333;
  border-radius: 9999px;
  background: #06b6d4;
  box-shadow: none;
}



.base_info{
  border-bottom:#000 double 4px;
  padding-bottom:10px;
  margin-top:10px;
}
.right{
	font-size:30px;

}

/*詳細表示、保存、お問い合わせボタン*/
#show_detail_btn{
	display:flex;
	justify-content: space-between;
}
/*お問い合わせボタングループ*/
.sim-btn {
  padding:20px 10px;
  border: 1px solid #333;
  background-color: #fff;
  color: #333;
  border-radius: 6px;
  cursor: pointer;
  transition: 0.3s;
  font-size: 15px;
}

.sim-btn:hover {
  background-color: #f2f2f2;
}

.sim-btn-primary {
  background-color: #4caf50;
  color: #fff;
  border: none;
}

.sim-btn-primary:hover {
  background-color: #43a047;
}


/*詳細表示ボタン*/
#showDetail{
	background: #0078ff;
  color: #fff;
  border: none;
  padding: 8px 16px;
  border-radius: 6px;
  cursor: pointer;
  transition: 0.2s;	
}

#showDetail:hover {
  background: #005ec2;
}

/*詳細表示全体*/
.detail{
    display: none;
	background: #fafafa;
  	border: 2px solid #ddd;
  	border-radius: 10px;
  	padding: 15px;
  	margin-top: 10px;
  	font-size: 0.95rem;
  	box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}
.detail.show {
  display: block; /* showクラスが付いたときだけ表示 */
}
.no-dis{
	display:none;
}
.detail ul{
  list-style: none;
  text-align:right;
}
.detail p{
  display: flex;
  justify-content: space-between;
  margin: 5px 0;
  padding-bottom: 3px;
  
}
.option_label{
	margin:10px;
}
#sum_div{
	border-top:#000 solid 3px;
	font-size: 2rem;
  	font-weight: bold;
  	color: #0078ff; 
}



@media screen and (max-width: 480px) {
	/* 480px以下に適用されるCSS（スマホ用） */
	.entry-content{
	 	width:auto;
		 margin: 0 auto;
	}
	.pc-only{
		display:none;
	}
	.sp-only{
		display:block;
	}
	#showDetailsp{
		margin-top:10px;
		background: #0078ff;
		color: #fff;
  		border: none;
  		padding: 2px 8px;
  		border-radius: 6px;
  		cursor: pointer;
  		transition: 0.2s;	
		height:60px;
	}
	#sum_div{
		border-top:#000 solid 3px;
		font-size: 20px;
  		font-weight: bold;
  		color: #0078ff; 
	}
		
	
}