@charset "utf-8";
@import url('./reset.css');
@import url('./add.css');
body {
	display: flex;
	flex-direction: column;
	flex-wrap: nowrap;
	min-width: 320px;
	min-height: 100vh;
	background-color: #fbfbfb;
	color: #50656e;
	font-family:'Yu Gothic Medium','游ゴシック Medium', 'YuGothic','游ゴシック体','Hiragino Kaku Gothic Pro','ヒラギノ角ゴ Pro W3',Meiryo,'メイリオ',sans-serif;
}
/*header*/
#header {
	position: relative;
	flex: 0 0 auto;
	display: flex;
	flex-flow: row nowrap;
	justify-content: space-between;
	height: 80px;
	background-image: linear-gradient( to bottom, #00a2ff 0%, #19b4f4 100% );
	color: #fff;
}
#header > * {
	display: flex;
	align-items: center;
}
#header .in_ttl { flex: 1 1 auto; }
#header .in_menu { flex: 0 0 auto; }
#header .in_menu a:first-child { flex: 1 1 auto; }
#header .in_menu a:last-child { padding-right: 10px; }
#header .in_menu a:not(:first-child)::before {
	content: "/";
	padding: 0 3px;
}
@media screen and (max-width: 767px) {
	#header {
		flex-flow: column nowrap;
		justify-content: center;
	}
	#header .in_ttl { height: 60px; }
	#header .in_menu { align-self:  flex-end; }
}
/*footer*/
#footer {
	flex: 0 0 auto;
	background-color: #50656e;
	color: #fff;
	overflow: hidden;
}
#footer .ft_ctr {
	display: flex;
	flex-flow: row nowrap;
	min-height: 300px;
}
#footer .ft_img {
	flex: 0 1 auto;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 30%;
	max-width: 300px;
	padding: 10px;
	background-image: linear-gradient( to bottom, #00a2ff 0%, #19b4f4 100% );
}
#footer .jsTrig img { opacity: 0; }
#footer .onEve img {
	animation-name: fadeUpAnime;
	animation-duration: 1.0s;
	animation-fill-mode: forwards;
	opacity: 0;
}
#footer .ft_nav {
	flex: 1 1 auto;
	display: flex;
	flex-flow: column nowrap;
	justify-content: center;
	padding: 10px;
}
#footer .in_info { padding: 50px 0; }
#footer .in_info span {
	display: inline-block;
	padding-right: 1.0em;
	opacity: 0;
}
#footer .in_info span:not(:first-child) { animation-delay: 0.1s; }
#footer .in_info.onEve span {
	animation-name: fadeRightAnime;
	animation-duration: 1.0s;
	animation-fill-mode: forwards;
	opacity: 0;
}
#footer .in_menu a:not(:first-child)::before {
	content: "/";
	padding: 0 5px;
}
#footer .in_menu {
	opacity: 0;
	animation-delay: 0.3s;
}
#footer .in_menu.onEve {
	animation-name: fadeRightAnime;
	animation-duration: 1.0s;
	animation-fill-mode: forwards;
	opacity: 0;
}
#footer .in_menu a { display: inline-block; }
/* contents */
#contents {
	flex: 1 0 auto;
	background-color: inherit;
}
body:not(#pgTop) #contents { background-color: #fff; }
/*parts*/
.wrap,.is_wrap > * { max-width: 980px; }
#breadcrumb {
	height: 30px;
	padding: 0 10px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	line-height: 30px;
	font-size: 14px;
	color: #959595;
}
#breadcrumb > * { display: inline-block; }
#breadcrumb > *:not(:last-child) {
	position: relative;
	padding-right: 14px;
}
#breadcrumb a { color: #e5004f; }
#breadcrumb a:hover,#breadcrumbs a:active { color: #00a2ff; }
#breadcrumb > *:not(:last-child)::after {
	content: "";
	position:absolute;
	top: 0;
	bottom: 0;
	right: 5px;
	margin: auto;
	width: 8px;
	height: 8px;
	border-top: 1px solid #50656e;
	border-right: 1px solid #50656e;
	transform: rotate(45deg);
}
#goup {
	position: fixed;
	right: 10px;
	bottom: 10px;
	opacity: 0;
	visibility: hidden;
	transition: opacity 1s, visibility 1s, transform 1s;
	z-index: 1000;
}
#goup.isIn {
	opacity: 1;
	visibility: visible;
}
#goup a {
	position: relative;
	display: block;
	width: 40px;
	height: 40px;
	background-image: linear-gradient( to bottom, #00a2ff 0%, #19b4f4 100% );
	-webkit-border-radius: 5px;
	border-radius: 5px;
}
#goup a::after{
	content: "";
	position: absolute;
	top: 6px;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
	width: 12px;
	height: 12px;
	border-left: 2px solid #fbfbfb;
	border-top: 2px solid #fbfbfb;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}
/*element*/
.e_msg {
	display: flex;
	justify-content: center;
	color: #0075a9;
}
.e_ttl {
	position: relative;
	display: flex;
	align-items: center;
	min-height: 40px;
	padding: 0 10px;
	color: #fff;
	font-size: 1.2em;
	letter-spacing: 0.1em;
	overflow: hidden;
	opacity:0;
	transition: all .3s linear;
	z-index: 1;
}
.e_ttl::before {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: linear-gradient( to bottom, #00a2ff 0%, #19b4f4 100% );
	z-index: -1;
}
.onEve .e_ttl,
.onEve.e_ttl { opacity:1; }
.onEve .e_ttl::before,
.onEve.e_ttl::before {
	animation-name: fadeUpAnime;
	animation-duration: 1s;
	animation-fill-mode: forwards;
}
.e_subttl {
	position: relative;
	margin-bottom: 5px;
	padding: 2px 10px;
	border-left: 5px solid #50656e;
	letter-spacing: .1em;
	z-index: 0;
}
.e_subttl::before {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	width: 0;
	margin: auto;
	border-bottom: 1px solid #50656e;
	transition: all 1.0s linear;
	z-index: -1;
}
.onEve .e_subttl::before,
.onEve.e_subttl::before { width: 100%; }

.e_cont { opacity: 0; }
.onEve .e_cont,
.onEve.e_cont {
	animation-name: fadeUpAnime;
	animation-duration: 1.0s;
	animation-fill-mode: forwards;
	opacity: 0;
}
.e_li_disc { margin-left: 1.0em; }
.e_li_disc > li {
	display: list-item;
	list-style-type: disc;
}
.e_banner {
	display: flex;
	flex-flow: row wrap;
	justify-content: center;
	gap: 5px;
}
.e_pcclm {
	display: flex;
	flex-flow: column nowrap;
	gap: 10px;
}
@media screen and (min-width: 980px) {
	.e_pcclm {
		flex-flow: row nowrap;
	}
}
.e_pcclm > * { flex: 1 1 auto; }
.e_img {
	flex: 0 0 auto;
	display: flex;
	flex-flow: row wrap;
	justify-content: center;
	gap: 5px;
}
/* animation */
@keyframes fadeUpAnime {
	from {
		opacity: 0;
		transform: translateY(50px);
	}to {
		opacity: 1;
		transform: translateY(0);
	}
}
@keyframes fadeRightAnime {
	from {
		opacity: 0;
		transform: translateX(100px);
	}to {
		opacity: 1;
		transform: translateX(0);
	}
}
