@charset "UTF-8";
/* CSS Document */

/*---font-size---*/
h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; } 
h3 { font-size: 1.8rem; } 
h4 { font-size: 1.4rem; } 
h5 { font-size: 1.2rem; } 

@media (min-width: 900px){
	h1 { font-size: 5rem; }
	h2 { font-size: 5rem; } 
	h3 { font-size: 2.5rem; } 
	h4 { font-size: 2rem; } 
	h5 { font-size: 1.8rem; } 
}

/*-----------------------------------
	
   スマホ版

-----------------------------------*/
.access-set{
	padding: 40px 20px;
}

.access-content h2{
	text-align: center;
	margin-bottom: 30px;
}

/* Google Map */
.map-set{
	margin-bottom: 30px;
}
.map-set iframe{
	width: 100% !important;
	height: 300px;
	border-radius: 8px;
}

/* 住所情報 */
.address-info{
	margin: 50px 0;
}

.address-table{
	width: 100%;
	border-collapse: collapse;
	border-top: 1.5px solid #333333;
}
.address-table th,
.address-table td{
	padding: 25px 10px;
	border-bottom: 1px solid #DDDDDD;
	text-align: left;
	vertical-align: top;
}
.address-table th{
	width: 30%;
	font-weight: bold;
	white-space: nowrap;
}
.address-table td{
	width: 70%;
	line-height: 1.8;
}

/* アクセス方法 */
.transport-item{
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	margin-bottom: 40px;
}

.access-icon{
	width: 80px;
	height: 80px;
	background-color: #333333;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-bottom: 15px;
}
.access-icon img{
	width: 50%;
	height: auto;
}

.access-text h3{
	margin-bottom: 10px;
	font-size: 1.2rem;
}

/*-----------------------------------
	
   PC版

-----------------------------------*/
@media (min-width: 900px){
	.access-content{
		max-width: 900px;
		margin: 0 auto;
	}
	
	.map-set iframe{
		height: 450px;
	}
	
	/* 住所情報 */
	.address-table th{
		width: 25%;
		padding-left: 20px;
	}
	.address-table td{
		padding-left: 50px;
	}
	
	/* アクセス方法 */
	.transport-list{
		max-width: 800px;
		margin: 0 auto;
		padding: 40px 0;
	}
	
	.transport-item{
		flex-direction: row;
		text-align: left;
		align-items: center;
		justify-content: center;
		gap: 20px;
		margin-bottom: 60px;
	}
	
	.access-text{
		width: 500px;
	}
	
	.access-icon{
		margin-right: 0;
		flex-shrink: 0;
	}
}










