html {
    scroll-behavior: smooth;
}

main {
	margin: 0;
	padding: 0;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	overflow: hidden;
}

h1, h2, h3 {
	font-weight: normal;
}

/*共通要素*/
article {
	margin: 0;
	padding: 0;
	width: 100%;
}
section {
	margin: 0 0 100px 0;
	padding: 0;
}
h1 {
	height: 20px;
	margin-top: .6rem;
	padding-left: .3rem;
	color: #000;
	font-family: 'Noto Serif JP', serif;
	font-size: 1.5rem;
	line-height: 1rem;
	background: #fff;
}
h2 {
	width: 100%;
	color: #444;
	font-family: 'Noto Serif JP', serif;
	font-size: 1.5rem;
	position: relative;
	margin: .6rem 0 0 0;
	padding: 1rem 0.6rem;
	background: #e0edff;
	scroll-margin-top: 50px;
}
/* h2::after {
	position: absolute;
	content: '';
	top: 100%;
	left: .5em;
	border: 15px solid transparent;
	border-top: 15px solid #e0edff;
	width: 0;
	height: 0;
} */
.class_articleTitleMain {
	color: #444;
	font-family: 'Noto Serif JP', serif;
	font-size: 1.2em;
}
.class_articleTitleSub {
	padding-left: 1em;
	color: #aaa;
	font-family: 'Noto Serif JP', serif;
	font-size: .7em;
}
@media screen and (min-width:600px) {
	h1 {
		font-size: 1.5rem;
		padding-left: .5rem;
	}	
	h2 {
		font-size: 1.2rem;
		scroll-margin-top: 50px;
	}
}
#id_pageTitleMenu ul {
	margin: 0;
	padding: 0;
}
#id_pageTitleMenu li {
	list-style: none;
	margin: 1rem 0;
	padding: 0;
	text-align: center;
}
#id_pageTitleMenu a {
	display: inline-block;
	padding: .8rem 0;
	width: 13rem;
	text-decoration: none;
	font-size: .9rem;
    color: #7accff;
    border: solid 1.5px #7accff;
    border-radius: 50px;
    transition: .4s;
}
#id_pageTitleMenu a:hover {
	background: #7accff;
    color: #fff;
}

.class_iconWalking {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translateX(-150%) translateY(-50%);
}
#id_iconSubway {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translateX(-150%) translateY(-50%);
}
.class_iconBus {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translateX(-150%) translateY(-50%) scale(-1, 1);
}
.class_flexContainer {
	margin: 20px 0;
}
.class_flexGroup {
	position: relative;
}
.class_flexGroup p {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translateX(25%) translateY(-80%);
	font-size: .7rem;
}
.class_course {
	margin-left: auto;
	margin-right: auto;
	height: 100px;
	width: 0;
	padding: 0;
	border: 0;
	border-left: 1px dashed #999;
	z-index:-1;
}
.class_start {
	margin-left: auto;
	margin-right: auto;
	height: 10px;
	width: 10px;
	border: solid 8px #999;
	border-radius: 50%;
	background: #fff;
}
.class_location {
	margin-left: auto;
	margin-right: auto;
	height: 100px;
	width: 100px;
	text-align: center;
	display: flex;
	flex-flow: column nowrap;
	justify-content: center;
	align-items: center;
	line-height: 1.2rem;
	border-radius: 100px;
	background: rgb(134,192,102);
}
.class_bus {
	background: #CB1B45;
}
.class_locationTop {
	font-size: .7rem;
	color: #fff;
}
.class_locationMiddle {
	width: 100%;
	padding: .4rem 0;
	background: #fff;
	font-weight: bold;
}
.class_locationBottom {
	font-size: .8rem;
	color: #fff;
}
.class_destination {
	position: absolute;
	top: 0;
	left: 50%;

	height: 35px;
	width: 100px;
	text-align: center;
	display: flex;
	flex-flow: column nowrap;
	justify-content: center;
	align-items: center;
	border-radius: 5px;
	background: rgb(51,166,184);
	font-size: .9rem;
	color: #fff;
	margin-top: 27px;
}
.class_iconOffice {
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-100%);
}

/*GoogleMap*/
iframe {
	width: 100%;
	height: calc(100vh - 150px);
	border: 0;
	overflow: hidden;
	margin: 0;
	padding: 0;
	display: block;
}

/*スクロールインしたら表示*/
.class_scrollAnimation {
	opacity: 0;	
}
.animation_fadeInShow {
	transition: all 1.5s 0s ease;
	opacity: 1;
}