@charset "UTF-8";
/* CSS Document */
/* reset*/
html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, small, strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary, time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	font-size: 100%;
	vertical-align: baseline;
	background: transparent;
	font-feature-settings: "palt";
}
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
	display: block;
}
ul, dl, ol, li, dt, dd {
	list-style: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
/*
Colors----
 Main Red #EE002B
 Main Red Dark #C20023
 Sub Blue #00A9D9
 Sub Orange #F38D04

Font-size-----


Common style
border:6px solid #EE002B;
border-radius: 20px;
box-shadow: 0 5px 10px 0 #BB8C94;


*/
/* fream work */
html {
	font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", "游ゴシック Medium", YuGothic, YuGothicM, "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
	font-size: 15px;
	line-height: 1.3rem;
	scroll-behavior: smooth;
	word-break: break-all;
	color: #191721;
}
body {
	margin: 0;
	background: url("../img/common/bg-pinkdots.png") repeat center top;
}
header, footer {
	width: 100%;
	padding: 10px 0;
	background: #EE002B;
	position: relative;
	box-shadow: 0 0 5px 0 #BB8C94;
}
header::after, header::before, footer::after, footer::before {
	content: '';
	display: block;
	width: 30px;
	height: 50px;
	top: 20%;
	position: absolute;
	z-index: 99;
	margin-top: 5px;
	animation-name: jump;
	animation-duration: 4s;
	animation-timing-function: linear;
	animation-delay: 0;
	animation-iteration-count: infinite;
}
@keyframes jump {
	0% {
		margin-top: 5px;
	}
	10% {
		margin-top: 0;
	}
	20% {
		margin-top: 5px;
	}
	30% {
		margin-top: 0;
	}
	90% {
		margin-top: 0;
	}
	100% {
		margin-top: 5px;
	}
}
header::before, footer::before {
	background: url("../img/common/illust-boy.png") no-repeat center top;
	background-size: 100% auto;
	left: 2%;
}
header::after, footer::after {
	background: url("../img/common/illust-girl.png") no-repeat center top;
	background-size: 100% auto;
	right: 2%;
	top: 10%;
}
header .inner, footer .inner {
	padding: 0;
}
header h1 a, footer h1 a {
	display: block;
	width: 45%;
	max-width: 250px;
	margin: 0 auto;
}
.inner {
	width: 96%;
	max-width: 768px;
	margin: 0 auto;
	padding: 1rem 0;
	box-sizing: border-box;
}
#breadcrumbs{
	position: relative;
	left: -2%;
	margin: 0 0 10px 0;
}
#breadcrumbs li{
	float: left;
	font-size: .8rem;
}
#breadcrumbs li a{
	background: #EE002B;
	color: #FFF;
	display: inline-block;
	position: relative;
	padding: .3rem 1rem .3rem 1.3rem;
	text-decoration: none;	
}
#breadcrumbs li a:hover{
	opacity: 1;
	text-decoration: underline;
}
#breadcrumbs li a::before{
	content: "";
	display: block;
	width: 1.3rem;
	height: 1.3rem;
	transform: rotate(45deg);
	background: #EE002B;
	position: absolute;
	right: -.7rem;
	top:.25rem;
	z-index: 99;
}
#breadcrumbs li:nth-child(even) a,
#breadcrumbs li:nth-child(even) a::before{
	background: #C20023;
}
#breadcrumbs li:nth-last-child(1) a::before{
	content: none;
}
#pageHead h1b{
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 5px 10px 0 #BB8C94;
}

#footerAction {
	margin: 30px auto;
	max-width: 360px;
	width: 90%;
	background: #FFF;
	border-radius: 20px;
}
#sitemap {
	background: #FFF;
	border: 6px solid #EE002B;
	border-radius: 20px;
	box-shadow: 0 5px 10px 0 #BB8C94;
	padding: 0;
	margin-bottom: 2rem;
	overflow: hidden;
}
#sitemap li {
	border-bottom: 1px solid #EE002B;
	width: 100%;
	overflow: hidden;
	position: relative;
}
#sitemap li a {
	display: block;
	padding: 10px 0 10px;
}
#sitemap li a:hover {
	opacity: 1;
	background: rgba(238, 0, 43, .15);
}
#sitemap li a img {
	max-width: 260px;
	display: block;
}
.news #sitemap .news a::before, .event #sitemap .event a::before, .access #sitemap .access a::before, .kids #sitemap .kids a::before, .bus #sitemap .bus a::before, .offer #sitemap .offer a::before, .report #sitemap .report a::before, .privacy #sitemap .privacy a::before, .home #sitemap .home a::before {
	content: "";
	display: block;
	position: absolute;
	background: #EE002B;
	width: 13px;
	height: 13px;
	top: 23px;
	right: 10px;
	border-radius: 50%;
}
footer {
	padding: 25px 0 5px 0;
}
footer .copyright {
	color: #FFF;
	font-family: Arial, Helvetica, "sans-serif";
	font-size: .8rem;
	text-align: center;
	letter-spacing: .05rem;
	margin: 20px 0 5px 0;
}
/* plugin */
body .sp-horizontal .sp-arrows {
	margin-top: -50px;
}
body .sp-arrow {
	background: url("../img/common/icon-arrow-left.svg") no-repeat center 28px #EE002B;
	background-size: 90% auto;
	border-radius: 12px;
	border-bottom: 5px solid #C20023;
	display: block;
	cursor: pointer;
	height: 30px;
	padding: 30px 5px;
	position: absolute;
	width: 30px;
	box-shadow: 0 0 5px 0 #BB8C94;
}
body .sp-arrow::before,body .sp-arrow::after,
body .sp-previous-arrow::after{
	content: none!important;
}
body .sp-next-arrow {
	-webkit-transform: rotate(180deg);
	-ms-transform: rotate(180deg);
	transform: rotate(180deg);
}
body .sp-next-arrow {
	-webkit-transform: rotate(0deg);
	-ms-transform: rotate(0deg);
	transform: rotate(0deg);
	background: url("../img/common/icon-arrow-right.svg") no-repeat center 28px #EE002B;
	background-size: 90% auto;
	right: 5px !important;
}
body .sp-previous-arrow {
	left: 5px !important;
}
#fingerNav {
	width: 60px;
	position: fixed;
	right: 5px;
	bottom: 130px;
	z-index: 9999;
	box-shadow: 0 0 5px 0 #BB8C94;
	border-radius: 10px;
	overflow: hidden;
	background: #FFF;
}
#fingerNav a:hover {
	opacity: 1;
}
#fingerNav a img {
	display: block;
	transition-duration: .3s;
}
#fingerNav a:hover img {
	opacity: .7;
}
/* Tags and classes */
.inner img {
	width: 100%;
}
#pageHead h1{
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 5px 10px 0 #BB8C94;
}
#pageHead h1 img{
	display: block;
}
.normalInner {
	background: #FFF;
	border: 6px solid #EE002B;
	border-radius: 20px;
	box-shadow: 0 5px 10px 0 #BB8C94;
	padding: 0;
	margin-bottom: 2rem;
}
.normalInner p,
.normalInner h2,
.blankNormalInner{
	margin: 0 4% 20px;
}
.hBorderhead {
	background: #EE002B;
	padding: 3px 3px 5px 3px;
	border-radius: 10px 10px 0 0;
	color: #FFF;
	font-size: 1.3rem;
	margin: -1px 0 20px;
	text-align: center;
	position: relative;

}
.hBorderhead img {
	height: 2.2rem;
	max-width: 350px;
	display: block;
	margin: 0 auto;
}
.normalLists{
	clear: both;
	margin: 0 auto 2rem;
	width: 96%;
}
.normalLists li {
	display: inline-block;
	padding: 0 .4rem .2rem 1.1rem;
	position: relative;
}
.normalLists li::before {
	content: "";
	width: .8rem;
	height: .8rem;
	display: inline-block;
	border-radius: 50%;
	background: #EE002B;
	position: absolute;
	left: 0;
	top: .3rem;
}
.normalTable{
	font-size: .9rem;
	margin: 0 auto 15px;
	width: 96%;
	min-width: 200px;
	border:4px solid #EE002B;
	box-sizing: border-box;
}
.normalTable th,.normalTable td{
	padding: 10px;
	vertical-align: middle;
}
.normalTable th{
	background: #EE002B;
	border-bottom: 2px solid #FFF;
	color: #FFF;
	text-align: left;
	font-weight: bold;
}
.normalTable .borderL {
	border-left: 2px solid #FFF;
}

.normalTable td{
	border: 2px solid #B8B8B8;
	border-left: none;
}

.normalTable tr:nth-child(1) td{
	border-top: none;	
}
.normalTable tr:nth-last-child(1) td{
	border-bottom: none;	
}
strong{
	color: #EE002B;
	font-weight: bold;
}
a {
	transition-duration: .3s;
	color: #2F1694;
	outline: none;
	cursor: pointer;
}
a:hover {
	opacity: .8;
}
.pushButton{
	background:url("../img/common/icon-arrow-right.svg") no-repeat 10px 10px #EE002B;
	background-size: 20px auto;
	color: #FFF;
	font-weight: bold;
	border-bottom: 4px solid #C20023;
	border-radius: 12px;
	padding: 10px;
	text-align: center;
	display: block;
	width: 80%;
	max-width: 320px;
	margin: 0 auto;
	text-decoration: none;
}
.pc{
	display: none;
}
.clearfix::after, .inner::after, #sitemap ul::after,#breadcrumbs::after {
	content: "";
	display: block;
	clear: both;
}
@media screen and (min-width: 768px) {
	html {}
	#sitemap li {
		border-bottom: 1px solid #EE002B;
		border-right: 1px solid #EE002B;
		width: 33.3%;
		float: left;
		box-sizing: border-box;
	}
	#sitemap li a {
		padding: 15px 0 15px 5px;
	}
	#sitemap li:nth-child(3n+3) {
		border-right: none;
	}
	
	#sitemap li:nth-last-child(1), 
	#sitemap li:nth-last-child(2),
	#sitemap li:nth-last-child(3){
		border-bottom: none;
	}
	
	.sp{
		display: none;
	}
	.pc{
		display: block;
	}
}

/* text-align */
.tac { text-align: center; }
.tal { text-align: left; }
.tar { text-align: right; }

/* 募集要項 角丸見出し
-----------------------------*/
.hRoundhead {
	background: #EE002B;
	padding: .7rem .3rem .7rem .6rem!important;
	border-radius: 20px;
	color: #FFF!important;
	font-size: 1.3rem;
	margin: -1px 0 20px;
	text-align: center;
}

#offerIndex .hRoundhead {
	margin: 30px 4% 20px;
}