@charset "UTF-8";

/*＝＝メイン*/
/*H１アアニメーション　画像ソース・色など以外は commonCSSに*/
#secTop {
	background: url(../img/main/access.jpg) no-repeat;
	background-size: cover;
	background-position: center;
}

#secTop > .topTitle h1{
	color: #fff;
	font-size: 4vw;
	font-weight: 100;
}

.container {
	padding-top: 6vw;
}

h2 {
	text-align: center;
	margin-bottom: 2vw;
	font-feature-settings: 'palt';
 }

/* 22px @ 390px increasing to 40px @ 1080px */
h2 {
  font-size: min(max(22px, calc(1.375rem + ((1vw - 3.9px) * 2.6087))), 40px);
  /* Note: The calc base value (1.375rem) MUST be stated in REM to maintain accessibility */
  /* Where: 2.6087 = 100 * font-size_difference / viewport_width_difference */

  /* Safari resize fix */
  min-height: 0vw;
}

h2 .subTitle{
	font-size: 22px;
}


h3 {
	font-size: 20px;
	font-weight: normal;
}

/*＝＝＝＝＝＝＝＝＝＝＝＝ここからスタート*/

.inner {
	padding: 0 2.5vw 6vw;
}

.gmap {
	display: block;
	margin: 6vw auto 0;
	border: 1px solid black;
}

.accessInfo {
	margin: 3vw auto;
}

.flex {
	display: flex;
	flex-direction: column;
	min-height: 8em;
}

.flex_item {
	display: flex;
	min-height: 8em;
	justify-content: flex-start;
	align-items: center;
}

.flex_item ~ .flex_item {
	margin-top: 2em;
	border-top: 1px solid #505050;
	padding-top: 2em;
}

.left_item {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	width: 20%;
}

.left_item img {
	display: block;
	width: 25%;
	height: ;
	margin-top: .2em;
}

.right_item {
	width: 80%;
}

.note {
	padding: 1em;
	background-color: hsl(0,0%,90%);
}

.note > h4 {
	color: red;
	font-weight: 400;
	margin-bottom: .75em;
}

.note p ~ p {
	display: inline-block;
	margin-top: 0.5em;
	border-bottom: 1px solid #505050;
}


/*
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
　　　スマホ
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
*/


@media handheld, only screen and (max-width: 767px) {

	/*#secTop {
		background: url(../img/main/access_sp.jpg) no-repeat;
		background-size: cover;
		background-position: center;
	}*/

	.flex_item {
		flex-direction: column;
	}

	.left_item,
	.right_item {
		width: 100%;
	}

	.left_item img {
		width: clamp(80px, 30%, 120px);
		margin-top: .5em;
	}

	.right_item {
		margin-top: 3em;
	}

	.right_item p ~ p {
		margin-top: .75em;
	}

}


@media handheld, only screen and (max-width: 480px) {

	

}