@charset "UTF-8";
@import url('./style.css');


/* --------------------------------------------------
	共通
-------------------------------------------------- */

@media screen and (min-width:960px) {
	.sp {
		display: none;
	}

	.pc {
		display: block;
	}

	.align-center {
		display: flex;
		justify-content: center;
	}
}


/* --------------------------------------------------
	グローバルヘッダ
-------------------------------------------------- */
header#globalHeader {
	position: fixed;
	top: 0;
	background-color: #5b79b2;
	width: 100%;
	height: 50px;
	z-index: 9999999;
}

header#globalHeader div.inner {
	display: flex;
	justify-content: space-between;
	padding: 5px 10px;
}

header#globalHeader h1 {
	font-size: 0em;
}

header#globalHeader h1 img {
	height: 30px;
	padding: 5px 0;
}

header#globalHeader a img {
	height: 40px;
}


header#globalHeader.fixed {
	display: block;
	animation: DownAnime 0.5s forwards;
}

header#globalHeader.up {
	display: block;
	animation: UpAnime 0.5s forwards;
}


@keyframes UpAnime {
	from {
		background-color: rgb(85, 122, 189, 0.7);
	}

	to {
		background-color: rgb(85, 122, 189, 1);
	}
}

@keyframes DownAnime {
	from {
		background-color: rgb(85, 122, 189, 1);
	}

	to {
		background-color: rgb(85, 122, 189, 0.7);
	}
}

@media screen and (min-width:600px) {
	header#globalHeader {
		height: 70px;
	}

	header#globalHeader h1 img {
		height: 50px;
		padding: 5px 0;
	}

	header#globalHeader a img {
		height: 60px;
	}
}


/* --------------------------------------------------
	globalNavi
-------------------------------------------------- */
nav#globalNavi {
	display: none;
}

/* --------------------------------------------------
	main-image
-------------------------------------------------- */
div.main-img img {
	width: 100%;
	/* margin-top: 50px; */
}

.sp {
	display: block;
}

.pc {
	display: none;
}

@media screen and (min-width:960px) {
	.sp {
		display: none;
	}

	.pc {
		display: block;
	}

	div.main-img-pc {
		/* margin: 20px auto 0; */
		margin: 0 auto;
		text-align: center;
	}

	div.main-img-pc img {
		width: 100%;
		max-width: 1600px;
		height: 100%;
		object-fit: cover;
	}
}

@media screen and (min-width:1601px) {
	div.main-img-pc img {
		width: 100%;
		max-width: 100%;
		height: 100%;
		object-fit: cover;
	}

	div.main-img-pc {
		margin: 0 auto 0;
		text-align: center;
	}

}

.special_holiday {
	padding: 50px 0 10px 0;
	background-color: #557abd;
	text-align: right;
}

.special_holiday p {
	color: #fff;
}

@media screen and (min-width:600px) {
	.special_holiday {
		padding: 70px 20px 10px 0;
	}
}


/* --------------------------------------------------
	section
-------------------------------------------------- */
section .inner {
	margin: 0 20px;
}

.font_12 {
	font-size: 1.2rem;
}


@media screen and (min-width:1040px) {
	section .inner {
		margin: 0 auto;
		max-width: 1000px;
	}
}

/* --------------------------------------------------
	#s01   2コース
-------------------------------------------------- */
section#s01 .inner {
	padding: 20px 0 40px;
	text-align: center;
}

section#s01 h2 {
	color: #557abd;
	background: linear-gradient(transparent 50%, #e0f1f2 50%);
	margin-bottom: 20px;
}

section#s01 ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	list-style: none;
	margin-bottom: 2.0rem;
}

section#s01 li {
	margin-bottom: 18px;
	padding: 0 10px;
}

section#s01 li p {
	position: relative;
	font-size: 1.1rem;
	color: #6a3906;
	padding: 0 10px;
	margin-bottom: 8px;
}

section#s01 li p:before {
	content: '';
	position: absolute;
	top: 50%;
	left: 10px;
	display: inline-block;
	width: 15px;
	height: 1px;
	background-color: #6a3906;
	transform: rotate(60deg)
}

section#s01 li p:after {
	content: '';
	position: absolute;
	top: 50%;
	right: 10px;
	display: inline-block;
	width: 15px;
	height: 1px;
	background-color: #6a3906;
	transform: rotate(-60deg)
}

/* ------ btn -------- */
section#s01 a.btn {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 275px;
	border-radius: 10px;
	line-height: normal;
	box-shadow: 0 3px 0 0 #959495;
	padding: 0 20px;
	box-sizing: border-box;
}

section#s01 a.btn i {
	font-size: 2.0rem;
}

section#s01 a.btn:before {
	content: '';
	width: 7.5px;
}

section#s01 a.btn_a {
	height: 60px;
	color: #fff;
	background-color: #F39800;
}

section#s01 a.btn_a.course {
	background-color: #6eb455;
}


section#s01 a.btn_b {
	height: 40px;
	color: #557abd;
	background-color: #fff;
	border: solid 1px #557abd;
	font-size: 1.4rem;
	margin: 0 auto;
}



@media screen and (min-width: 1040px) {
	section#s01 .inner {
		padding: 40px 0 60px;
		text-align: center;
	}

	section#s01 h2 {
		font-size: 2.8rem;
		margin-bottom: 40px;
	}

	section#s01 li p {
		font-size: 1.6rem;
	}

	section#s01 a.btn {
		font-size: 2.0rem;
	}

	section#s01 a.btn i {
		font-size: 2.4rem;
	}

	section#s01 a.btn_a {
		width: 460px;
		height: 80px;
	}

	section#s01 a.btn_b {
		width: 520px;
		height: 60px;
	}
}





/* --------------------------------------------------
	#s02   大人運動教室
-------------------------------------------------- */
section#s02 {
	background-color: rgb(255, 237, 63, 0.3);
}

section#s02 .inner {
	padding: 40px 0;
}

h3 {
	width: 100%;
	color: #fff;
	font-size: 2.0rem;
	font-weight: 500;
	text-align: center;
	padding: 10px 0;
	margin-bottom: 20px;
}

section#s02 h3 {
	background: #F39800;
}

section#s02 section.s02_1 {
	width: 100%;
	border: solid 2px #559dbd;
	border-radius: 10px;
	box-sizing: border-box;
	background-color: #fff;
	padding: 15px 10px;
}

section#s02 .price_inner {
	display: block;
}

section#s02 .price_inner img {
	width: 100%;
	max-width: 250px;
	padding: 0 0 2.5%;
}

section#s02 .price_area {
	background-color: #fcfbe0;
	margin: 2.5% auto;
	text-align: center;
}

@media screen and (min-width:960px) {
	section#s02 .price_inner {
		display: inline-table;
	}

	section#s02 .price_inner img {
		width: 100%;
		max-width: 250px;
		padding-top: 5%;
	}

}

section#s02 .price {
	text-align: center;
	font-size: 1.4rem;
	padding: 10px 20px;
	margin-bottom: 10px;
}

section#s02 dl.price div {
	display: flex;
	justify-content: space-between;
	width: auto;
	max-width: 300px;
	margin: 0 auto;
	font-size: 1.6rem;
}

section#s02 div dt .new_icon::before {
	content: '';
	display: inline-block;
	background-image: url(../img/icon_new.png);
	background-size: contain;
	background-repeat: no-repeat;
	vertical-align: middle;
	width: 40px;
	height: 40px;
	margin-left: -42px;
	margin-right: 2px;
}

section#s02 div dd {
	color: #e60012;
	font-weight: 500;
}

section#s02 div dd.new_icon_aj {
	margin-top: 2.5%;
}

@media screen and (min-width:960px) {
	section#s02 div dd.new_icon_aj {
		margin-top: 4.5px;
	}
}

section#s02 div dd span {
	font-size: 1.2rem;
}

section#s02 ul {
	list-style: none;
	font-size: 1.2rem;
	margin-bottom: 10px;
}

section#s02 ul li {
	padding-bottom: 4px;
}

section#s02 p.place {
	background-color: #cbcbcb;
	text-align: center;
}

@media screen and (min-width:1040px) {
	section#s02 section.s02_1 {
		padding: 15px 18px;
	}

	section#s02 dl.price {
		font-size: 1.6rem;
	}

	section#s02 dl.price div {
		font-size: 1.8rem;
	}

	section#s02 div dd span {
		font-size: 1.4rem;
	}

	section#s02 ul {
		font-size: 1.4rem;
	}
}




/* --------------------------------------------------
	#s03   タイムスケジュール
-------------------------------------------------- */
section#s03 {
	text-align: center;
}

section#s03 .inner {
	padding: 40px 0 10px;
}

section#s03 h5 {
	font-size: 1.6rem;
	margin-bottom: 10px;
}

section#s03 div.content01 {
	display: flex;
	background-color: #557abd;
	border-radius: 10px;
	font-size: 1.2rem;
	color: #fff;
	text-align: left;
	padding: 10px;
	margin-bottom: 20px;
}

section#s03 div.content01 img {
	width: 50px;
	height: 100%;
	margin-right: 10px;
}

section#s03 span.font-yellow {
	color: #fff940;
}

section#s03 div.content02 {
	background-color: #e0f1f2;
	width: calc(100% + 40px);
	margin: 0 -20px 20px;
	padding: 20px 0;
}

section#s03 div.content02 img.pc {
	width: 100%;
	max-width: 700px;
	padding: 0 20px;
	box-sizing: border-box;
	margin: 0 auto 16px;
}

section#s03 div.content02 p {
	font-size: 1.2rem;
	color: #e60012;
	font-weight: 500;
	/* text-align: left; */
	padding: 0 20px;
}

section#s03 div.content02 .notice {
	width: 90%;
	max-width: 700px;
	background-color: #fff;
	margin: 10px auto;
	padding: 5px 0;
	border: #6eb455 solid 1px;
}

section#s03 div.content02 .notice p {
	font-size: 1.2rem;
	color: #111;
	text-align: left;
}

section#s03 div.content02 .notice p span {
	color: #6eb455;
	font-weight: bold;
}

section#s03 div.content03 {
	margin-bottom: 30px;
}

section#s03 div.content03 img {
	width: 100%;
	height: auto;
	max-width: 660px;
	margin-bottom: 15px;
}

section#s03 div.content04 {
	border: solid 1px #e60012;
	border-radius: 10px;
	color: #e60012;
	padding: 10px;
}

section#s03 div.content04 ul {
	padding-top: 8px;
	padding-left: 20px;
}

section#s03 div.content04 li {
	text-align: left;
	font-size: 1.2rem;
	color: #000;
	width: 100%;
}

@media screen and (min-width:1040px) {
	section#s03 h5 {
		font-size: 2.0rem;
		margin-bottom: 30px;
	}

	section#s03 div.content01 {
		font-size: 1.6rem;
	}

	section#s03 div.content02 p {
		font-size: 1.6rem;
		text-align: center;
		padding: 10px 0;
	}

	section#s03 div.content02 .notice p {
		font-size: 1.6rem;
		color: #111;
		text-align: center;
		padding: 10px 0;
	}

	section#s03 div.content04 li {
		font-size: 1.5rem;
	}
}

@media screen and (max-width:960px) {
	section#s03 div.content02 {
		padding: 0 0 10px;
	}

	.schedule_inner .table-scroll {
		margin-top: 2vw;
	}

	.schedule_inner .table-scroll table {
		display: block;
		overflow-x: scroll;
		white-space: nowrap;
		-webkit-overflow-scrolling: touch;
	}

	.schedule_inner .table-scroll table .scroll {
		vertical-align: top;
	}

	.schedule_inner .table-scroll img {
		max-width: 100%;
		height: auto;
		vertical-align: middle;
	}

	.schedule_inner .table-scroll th img {
		max-width: initial;
		width: 10vw;
	}

	.schedule_inner .table-scroll td img {
		max-width: initial;
		width: 127vw !important;
	}
}

/* --------------------------------------------------
	#s04   コース型教室・スクール（大人/子ども）
-------------------------------------------------- */
section#s04 {
	background-color: rgb(110, 180, 85, 0.3);
}

section#s04 .inner {
	padding: 40px 0;
}

section#s04 h3 {
	background-color: #6eb455;
	font-size: 1.7rem;
}

section#s04 section.s04_1 {
	margin-bottom: 20px;
}

section#s04 section.s04_1, section.s04_2 {
	width: 100%;
	border: solid 2px #6eb455;
	border-radius: 10px;
	box-sizing: border-box;
	background-color: #fff;
	padding: 15px 10px;
}

section#s04 h4 {
	font-size: 2.0rem;
	color: #557adb;
	background: linear-gradient(transparent 50%, #fff940 50%);
	text-align: center;
}

section#s04 dl {}

section#s04 div.dl-block {
	display: flex;
	justify-content: space-between;
	padding: 15px 0 15px;
}

section#s04 div.dl-block dt {
	width: 64%;
}

section#s04 div.dl-block dd {
	width: 35%;
	text-align: center;
}

section#s04 h5 {
	color: #6eb455;
	font-size: 2.0rem;
	font-weight: 600;
	line-height: 1.4;
	margin-bottom: 15px;
}

section#s04 h5.cheer::after {
	content: '';
	display: inline-block;
	background-image: url(../img/icon_cheer.png);
	background-size: contain;
	background-repeat: no-repeat;
	vertical-align: middle;
	width: 10rem;
	height: 2.0rem;
	margin-left: 1%;
}

section#s04 .mt15 {
	margin-top: 15px;
}

section#s04 .red_p {
	color: red;
}

section#s04 dt div.schedule {
	margin-bottom: 10px;
}

section#s04 dt div.schedule span {
	display: inline-block;
	font-size: 1.4rem;
	letter-spacing: 2px;
	background-color: #fcfbe0;
	padding: 2px 5px;
	margin-bottom: 3px;
}

section#s04 dt div.schedule span.new {
	color: #e60012;
	background: none;
	letter-spacing: 0;
	padding: 0 0 0 5px;
	margin-bottom: 0;
}

section#s04 dt p.line {
	background: linear-gradient(transparent 60%, #d3e8cc 60%);
	display: inline-block;
	margin-bottom: 10px;
}

section#s04 dt img {
	width: 120px;
}

section#s04 dd img {
	width: 100%;
}

section#s04 p.announce {
	background-color: #e0f1f2;
	font-size: 1.4rem;
	border-radius: 10px;
	padding: 10px 15px;
	margin: 10px 0 16px;
}

section#s04 dl.price {
	background-color: #fcfbe0;
	text-align: center;
	font-size: 1.4rem;
	padding: 10px 20px;
	margin-bottom: 10px;
}

section#s04 dl.price span {
	font-size: 1.2rem;
}


section#s04 dl.price div {
	display: flex;
	justify-content: space-between;
	width: auto;
	max-width: 300px;
	margin: 0 auto;
	font-size: 1.6rem;
}

section#s04 dl.price dd {
	color: #e60012;
	font-weight: 500;
}

section#s04 dl.price dd span {
	font-size: 1.2rem;
}

section#s04 ul {
	list-style: none;
	font-size: 1.2rem;
	margin-bottom: 10px;
}

section#s04 ul li {
	padding-bottom: 4px;
}

section#s04 p.place {
	background-color: #cbcbcb;
	text-align: center;
}

/* ------ 月会費 -------- */
section#s04 div.container {}

section#s04 div.container.line-bottom {
	padding-bottom: 15px;
	border-bottom: dotted 2px #959495;
}

section#s04 p.container-title {
	background-color: #6eb455;
	color: #fff;
	font-size: 2.0rem;
	text-align: center;
	padding: 5px 0;
	margin-top: 15px;
}

section#s04 dt div.schedule span.schedule-course {
	background-color: #6eb455;
	color: #fff;
	display: block;
	width: 90%;
	padding: 0px 5px;
	margin-bottom: 5px;
}

section#s04 span.icon_course {
	display: block;
	width: 120px;
	text-align: center;
	background-color: #fff940;
	border-radius: 100vh;
	color: #557adb;
	font-size: 1.2rem;
	font-weight: 600;
	letter-spacing: 0.2rem;
}

/* ---- フラダンス ------ */

section#s04 dl.huladance {
	padding-top: 10px;
}

section#s04 dl.huladance h5 {
	margin-bottom: 5px;
}

section#s04 dl.huladance dd img {
	margin-bottom: 5px;
}

section#s04 p.huladance {
	font-size: 1.4rem;
}

section#s04 div.container div.dl-block {
	border-bottom: none;
}


@media screen and (min-width:600px) {
	section#s04 dd img {
		max-width: 200px;

	}
}

@media screen and (min-width:1040px) {
	section#s04 section.s04_1 {
		padding: 15px 18px;
	}

	section#s04 section.s04_2 {
		padding: 15px 18px;
	}

	section#s04 h3 {
		font-size: 2.0rem;
	}

	section#s04 div.schedule .font_12 {
		font-size: 1.4rem;
	}

	section#s04 dl.price {
		font-size: 1.6rem;
	}

	section#s04 dl.price div {
		font-size: 1.8rem;
	}

	section#s04 dl.price dd span {
		font-size: 1.4rem;
	}

	section#s04 ul {
		font-size: 1.4rem;
	}

	section#s04 p.place {
		padding: 5px 0;
	}
}

/* --------------------------------------------------
	#s05   子ども短期特別教室
-------------------------------------------------- */
section#s05 img.sp {
	width: 100%;
	display: block;
}

section#s05 div.pc {
	display: none;
}

@media screen and (min-width:750px) {
	section#s05 img.sp {
		display: none;
	}

	section#s05 div.pc {
		display: block;
		height: 440px;
		margin: 0 auto;
	}

	section#s05 div.pc img {
		width: 100%;
		height: 100%;
		object-fit: cover;
	}
}

/* --------------------------------------------------
	#tel   
-------------------------------------------------- */
div#tel {
	text-align: center;
	color: #6a3906;
	padding: 20px 0;
}

div#tel p {
	padding-bottom: 10px;
}

div#tel img {
	display: block;
	width: 80%;
	max-width: 300px;
	margin: 0 auto;
}

.shiny-btn {
	display: block;
	overflow: hidden;
	position: relative;
}

.shiny-btn::before {
	position: absolute;
	content: '';
	display: inline-block;
	top: -180px;
	left: 0;
	width: 30px;
	height: 100%;
	background-color: #fff;
	animation: shiny-btn 2.5s ease-in-out infinite;
}

@keyframes shiny-btn {
	0% {
		transform: scale(0) rotate(45deg);
		opacity: 0;
	}

	80% {
		transform: scale(0) rotate(45deg);
		opacity: 0.5;
	}

	81% {
		transform: scale(4) rotate(45deg);
		opacity: 1;
	}

	100% {
		transform: scale(50) rotate(45deg);
		opacity: 0;
	}

}





/* --------------------------------------------------
	#s06   トレーニング室
-------------------------------------------------- */
section#s06 {}

section#s06 .inner {
	background: #e0f1f2;
	margin: 60px 20px 50px;
}

section#s06 div.wrap {
	padding: 0 10px 40px;
}

section#s06 h3 {
	background-color: #557abd;
}

section#s06 p {
	color: #557abd;
	font-size: 1.6rem;
	font-weight: 500;
}

section#s06 div.trainingroomImg {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin-bottom: 20px;
}

section#s06 div.trainingroomImg img {
	width: 49%;
	height: auto;
	padding-top: 10px;
}

section#s06 div.list-outer {
	width: 100%;
	border: solid 2px #557abd;
	border-radius: 10px;
	box-sizing: border-box;
	background-color: #fff;
	padding: 20px 20px;
	margin-bottom: 20px;

}

section#s06 ul {
	list-style: none;
}

section#s06 ul.list01 {
	border-bottom: dotted 2px #959495;
	padding-bottom: 10px;
}

section#s06 ul.list02 {
	padding-top: 10px;
}

section#s06 ul p.list-title {
	color: #557abd;
	font-size: 1.6rem;
	font-weight: 500;
	display: inline-block;
	padding-bottom: 3px;
}

section#s06 ul li:before {
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	content: '\f00c';
	color: #557abd;
	padding-right: 3px;
}

section#s06 table {
	border-collapse: collapse;
	width: 100%;
	text-align: center;
	background-color: #fff;
	margin-top: 10px;
}

section#s06 th, td {
	width: 25%;
}

section#s06 th.w20, td.w20 {
	width: 20%;
}

section#s06 tr.glay {
	background-color: #e5e5e4;
}

section#s06 td.font_red {
	color: #e60012;
	font-weight: 600;
}

section#s06 td.yellow {
	background-color: #fcfbe0;
}

section#s06 span.font_sm {
	font-size: 1.3rem;
	color: #000;
	font-weight: 400;
}

@media screen and (min-width:1040px) {
	section#s06 .inner {
		margin: 60px auto 50px;
	}

	section#s06 div.wrap {
		padding: 0 20px 40px;
	}

	section#s06 p {
		text-align: center;
	}

	section#s06 ul {
		padding: 0 15px;
	}

	section#s06 table {
		font-size: 2.0rem;
	}
}



/* --------------------------------------------------
	#s07   感染対策
-------------------------------------------------- */
section#s07 {
	margin-top: 10vw;
}

section#s07 .inner {
	padding: 40px 0 30px;
}

section#s07 div.s07_01 {
	background-color: #e5e5e4;
	/* padding-bottom: 200px; */
}

section#s07 div.s07-title {
	margin-bottom: 20px;
	text-align: center;
}

section#s07 div.s07-title_01 {
	display: flex;
	align-items: center;
	justify-content: center;
}

section#s07 div.s07-title img {
	width: 12%;
	max-width: 80px;
	height: 100%;
	padding-right: 5px;
}

section#s07 div.s07-title p {
	color: #557abd;
	font-size: 1.6rem;
	font-weight: 600;
	line-height: 1.3;

}

section#s07 span.s07-title_02 {
	font-size: 1.0rem;
	padding-left: 5px;
}

section#s07 div.s07_01 ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-around;
	list-style: none;
	padding: 0 10px;
	margin-top: 20px;
	text-align: center;
}

section#s07 div.s07_01 li {
	width: 48%;
	margin-bottom: 15px;
}

section#s07 div.s07_01 li img {
	width: 100%;
	padding-bottom: 5px;
}

section#s07 div.s07_01 li p {
	display: inline-block;
	font-size: 1.0rem;
	background: linear-gradient(transparent 60%, rgb(255, 249, 64, 0.5) 60%);
}

section#s07 div.s07_02 {
	background-color: #fcfbe0;
	border-radius: 10px;
	border: solid 4px #fff;
	margin: 0px 30px 0;
	padding: 20px 15px 200px;
}

section#s07 div.s07_02 h4 {
	color: #557abd;
	font-size: 1.6rem;
	font-weight: 600;
	text-align: center;
	margin-bottom: 10px;
}

section#s07 div.s07_02-wrap {
	position: relative;
	overflow: visible;
}

section#s07 div.s07_02 img.sp {
	display: block;
	width: 48%;
	margin: 0 -35px 0 10px;
	padding-bottom: 20px;
	float: right;
}

section#s07 div.s07_02 img.pc {
	display: none;
}

section#s07 div.s07_02 p.text02 {
	padding: 20px 0 0;
}

.font_blue {
	color: #557abd;
	font-weight: 600;
}


section#s07 a.btn {
	display: flex;
	width: 100%;
	justify-content: space-between;
	align-items: center;
	border-radius: 10px;
	line-height: normal;
	box-shadow: 0 3px 0 0 #959495;
	padding: 0 10px;
	box-sizing: border-box;
}

section#s07 a.btn i {
	font-size: 2.0rem;
}

section#s07 a.btn:before {
	content: '';
	width: 7.5px;
}

section#s07 a.btn {
	height: 60px;
	color: #fff;
	background-color: #557abd;
}


@media screen and (min-width:600px) {
	section#s07 {
		margin-top: 10vw;
	}

	section#s07 div.s07_01 li {
		width: 30%;
	}

	section#s07 div.s07_01 li p {
		font-size: 1.2rem;
		white-space: nowrap;
	}

	section#s07 div.s07_02 {
		padding-bottom: 0;
	}

	section#s07 div.s07_02-wrap {
		overflow: hidden;
	}

	section#s07 div.s07_02 img.sp {
		display: none;
	}

	section#s07 div.s07_02 img.pc {
		display: block;
	}

	section#s07 div.s07_02 img {
		width: 30%;
		max-width: 240px;
		margin: 0 10px;
		float: right;
	}

	section#s07 div.s07_02 p {
		padding-top: 20px;
	}

	section#s07 div.s07_02 p.text02 {
		padding-top: 10px;
	}

	section#s07 a.btn {
		width: 65%;
		position: absolute;
		bottom: 20px;
	}

}


@media screen and (min-width:1040px) {
	section#s07 {
		margin-top: 300px;
	}

	section#s07 div.s07_01 {
		text-align: center;
	}

	section#s07 div.s07_01 li p {
		font-size: 1.5rem;
		white-space: nowrap;
	}

	section#s07 div.s07_02 {
		width: 960px;
		margin: -200px auto 0;
	}
}

@media screen and (min-width:1400px) {
	section#s07 {
		margin-top: 300px;
	}
}


/* --------------------------------------------------
	#s08   アクセス
-------------------------------------------------- */
section#s08 .inner {
	padding: 40px 0;
	text-align: center;
}

section#s08 h2 {
	text-align: center;
	font-size: 2.0rem;
	color: #557abd;
	padding-bottom: 20px;
}

section#s08 h2 span {
	border-bottom: solid 1px #557abd;
	padding-bottom: 3px;
}

section#s08 p.address {
	font-size: 1.6rem;
	font-weight: 500;
	padding-bottom: 15px;
}

section#s08 iframe {
	margin: 20px 0;
}

section#s08 img {
	width: 100%;
	height: auto;
}

@media screen and (min-width:1040px) {
	section#s08 .inner {
		padding: 80px 0;
	}
}



/* --------------------------------------------------
	globalFooter
-------------------------------------------------- */
footer#globalFooter {
	background-color: #e5e5e4;
	text-align: center;
}

footer#globalFooter .inner {
	padding: 30px 0 5px;
	margin: 20px 0 0;
}

footer#globalFooter h2 {
	font-size: 2.0rem;
	color: #557abd;
	padding-bottom: 30px;
}

footer#globalFooter h2 span {
	border-bottom: solid 1px #557abd;
	padding-bottom: 3px;
}

footer#globalFooter a {
	display: block;
	width: 100%;
	margin: 0 auto 20px;
}

footer#globalFooter img.btn_tel {
	width: 100%;
}

footer#globalFooter span {
	font-weight: 400;
}

footer#globalFooter img.logo {
	width: 80%;
	max-width: 300px;
	display: block;
	margin: 5px auto 20px;
}

footer#globalFooter p {
	margin-bottom: 20px;
}

footer#globalFooter p.address {
	font-size: 1.6rem;
	font-weight: 400;
	color: #111;
	padding-bottom: 0;
}

footer#globalFooter div.dl-outer {
	display: inline-block;
	margin-bottom: 10px;
}

footer#globalFooter div.dl-outer span {
	color: red;
}

footer#globalFooter dl {
	display: flex;
	justify-content: flex-start;
}

footer#globalFooter dt {
	width: 80px;
	height: 28px;
	line-height: 28px;
	background-color: #557abd;
	color: #fff;
	display: block;
	margin-right: 10px;
}

footer#globalFooter dd {
	text-align: left;
}

footer#globalFooter .note {
	width: 90%;
	margin: 0 auto 5%;
	color: #e60012;
	font-size: 1.2rem;
}

footer#globalFooter .copyright {
	font-size: 1.2rem;
	text-align: center;
	color: #000;
}

@media screen and (max-width: 767px) {}

/*---------------------------------------------------------------------
 cta01
-------------------------------------------------------------------- */
.cta01 {
	display: block;
	padding: 40px 0;
	width: 70%;
	max-width: 900px;
	margin: 0 auto;
	text-align: center;
}

.cta01 .cta_btn {
	margin-bottom: 1%;
}

.cta01 .cta_btn a {
	display: block;
	width: 100%;
	max-width: 800px;
	border-radius: 50px;
	box-shadow: 0 3px 0 0 #959495;
	box-sizing: border-box;
	text-decoration: none;
	font-size: 3rem;
	line-height: 1.4;
	color: #fff;
	margin: 0 auto;
	padding: 20px 0 20px 4rem;
	-webkit-transition: 0.3s;
	-moz-transition: 0.3s;
	transition: 0.3s;
	/* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#d04c4c+0,c31919+50,bc0000+50,c31919+100 */
	background: rgb(208, 76, 76);
	/* Old browsers */
	background: -moz-linear-gradient(top,
			rgba(208, 76, 76, 1) 0%,
			rgba(195, 25, 25, 1) 50%,
			rgba(188, 0, 0, 1) 50%,
			rgba(195, 25, 25, 1) 100%);
	/* FF3.6-15 */
	background: -webkit-linear-gradient(top,
			rgba(208, 76, 76, 1) 0%,
			rgba(195, 25, 25, 1) 50%,
			rgba(188, 0, 0, 1) 50%,
			rgba(195, 25, 25, 1) 100%);
	/* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(to bottom,
			rgba(208, 76, 76, 1) 0%,
			rgba(195, 25, 25, 1) 50%,
			rgba(188, 0, 0, 1) 50%,
			rgba(195, 25, 25, 1) 100%);
	/* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#d04c4c', endColorstr='#c31919', GradientType=0);
	/* IE6-9 */
}

/*   .cta01 .cta_btn a.btnbics{
	display: flex;
	justify-content: space-between;
	align-items: center;
  } */

.cta01 .cta_btn a i {
	font-size: 2.0rem;
	padding: 0 0 0 4rem;
}

.cta01 .cta_btn a:hover {
	cursor: pointer;
}

.cta01 .cta_btn>p {
	text-align: center;
	margin-bottom: 10px;
}

.cta01 .tel_btn p {
	text-align: center;
	margin: 0 auto;
}

.cta01 .tel_btn a {
	display: block;
	width: 100%;
	max-width: 800px;
	border-radius: 6px;
	box-sizing: border-box;
	text-decoration: none;
	font-size: 4rem;
	text-align: center;
	color: #CD020A;
	margin: 0 auto;
	padding: 0;
	-webkit-transition: 0.3s;
	-moz-transition: 0.3s;
	transition: 0.3s;
}

.cta01 .tel_btn a::before {
	content: '';
	display: inline-block;
	width: 31px;
	height: 41px;
	background-image: url(../img/etc/icon_tel.png);
	background-size: contain;
	background-repeat: no-repeat;
	vertical-align: middle;
	margin: 0 1% 1% 0;
}

/* MEDIA QUERIE ～1024px */
@media screen and (min-width: 1024px) {
	.cta01 .cta_btn a:hover {
		box-shadow: none;
		opacity: 0.7;
	}
}

/* MEDIA QUERIE ～767px */
@media screen and (max-width: 767px) {
	.cta01 {
		padding: 5% 0 0;
		max-width: 90%;
	}

	.cta01 .cta_btn a {
		width: 100%;
		max-width: initial;
		font-size: 2rem;
		padding: 20px 0 20px 20px;
	}

	.cta01 .tel_btn {
		width: 100%;
		margin: 0 auto;
	}

	.cta01 .tel_btn p {
		width: 70%;
		margin: 0 auto;
	}

	.cta01 .tel_btn img {
		width: 100%;
		margin: 0 auto;
	}

	.cta01 .tel_btn a {
		width: 100%;
		max-width: initial;
		font-size: 3rem;
		line-height: 1.4;
	}

	.cta01 .tel_btn a::before {
		content: '';
		display: inline-block;
		width: 20px;
		height: 26px;
		background-image: url(../img/etc/icon_tel.png);
		background-size: contain;
		background-repeat: no-repeat;
		vertical-align: middle;
		margin: 0 1% 1% 0;
	}

	.cta01 .cta_btn a i {
		font-size: 2.0rem;
		padding: 0 0 0 10px;
	}
}

/* MEDIA QUERIE ～480px */
@media screen and (max-width: 480px) {
	.cta01 {
		padding: 2% 0 0;
		width: 90%;
	}

	.cta01 .cta_btn a {
		font-size: 5vw;
		padding: 10px 0 10px 10px;
	}

	.cta01 .cta_btn a i {
		font-size: 2.0rem;
		padding: 0 0 0 10px;
	}
}

/*---------------------------------------------------------------------
 cta_footer
-------------------------------------------------------------------- */
.cta_footer {
	display: block;
	width: 70%;
	max-width: 900px;
	margin: 0 auto;
	text-align: center;
}

.cta_footer .tel_btn p {
	text-align: center;
	margin: 0 auto;
}

.cta_footer .tel_btn a {
	display: block;
	width: 100%;
	max-width: 800px;
	border-radius: 6px;
	box-sizing: border-box;
	text-decoration: none;
	font-size: 4rem;
	text-align: center;
	color: #557abd;
	margin: 0 auto;
	padding: 0;
	-webkit-transition: 0.3s;
	-moz-transition: 0.3s;
	transition: 0.3s;
}

.cta_footer .tel_btn a::before {
	content: '';
	display: inline-block;
	width: 31px;
	height: 41px;
	background-image: url(../img/etc/icon_tel_blue.png);
	background-size: contain;
	background-repeat: no-repeat;
	vertical-align: middle;
	margin: 0 1% 1% 0;
}

/* MEDIA QUERIE ～767px */
@media screen and (max-width: 767px) {
	.cta_footer {
		padding: 0;
		max-width: 90%;
	}

	.cta_footer .tel_btn {
		width: 100%;
		margin: 0 auto;
	}

	.cta_footer .tel_btn p {
		width: 70%;
		margin: 0 auto;
	}

	.cta_footer .tel_btn img {
		width: 100%;
		margin: 0 auto;
	}

	.cta_footer .tel_btn a {
		width: 100%;
		max-width: initial;
		font-size: 3rem;
		line-height: 1.4;
	}

	.cta_footer .tel_btn a::before {
		content: '';
		display: inline-block;
		width: 20px;
		height: 26px;
		background-image: url(../img/etc/icon_tel_blue.png);
		background-size: contain;
		background-repeat: no-repeat;
		vertical-align: middle;
		margin: 0 1% 1% 0;
	}

	.cta_footer .cta_btn a i {
		font-size: 2.0rem;
		padding: 0 0 0 10px;
	}
}

/* MEDIA QUERIE ～480px */
@media screen and (max-width: 480px) {
	.cta_footer {
		padding: 0;
		width: 90%;
	}
}

.pagetop {
	position: fixed;
	right: 30px;
	bottom: 30px;
	z-index: 10;
	cursor: pointer;
}

.pagetop a {
	display: block;
	background: #fff;
	border: solid 1px #777;
	border-radius: 5px;
	font-size: 1.4rem;
	text-decoration: none;
	color: #333;
	text-align: center;
	padding: 2rem 1rem;
	opacity: 0.7;
}

/* MEDIA QUERIE ～480px */
@media screen and (max-width: 480px) {
	.pagetop {
		right: 20px;
		bottom: 20px;
	}

	.pagetop a {
		font-size: 1.2rem;
	}
}

/* 220614 */
.se02_lesmills {
	display: block;
	width: 100%;
	max-width: 668px;
	margin: 30px auto 0;
}

.kids_school img {
	width: 100%;
	max-width: 1000px;
	margin: 0 auto 30px;
}

/* 220927 */
#s09 .inner {
	padding: 40px 0 0;
}

#s09 .inner img {
	width: 100%;
	height: auto;
}

/* 221004 */
#cp {
	padding: 100px 0 40px;
}

#cp img {
	width: 100%;
	height: auto;
}

#s10 .inner {
	padding: 40px 0 0;
}

#s10 .kodomo {
	width: 100%;
	height: auto;
}

#s10 .omachi {
	width: 80%;
	max-width: 1000px;
}

#s10 .yoyaku {
	background: #e50012;
	color: #fff;
	font-weight: bold;
	text-align: center;
	padding: 5px 0;
	font-size: 32px;
}

#s10 .buttons {
	padding: 23px 0;
	text-align: center;
	background: #4f2b0c;
	border-radius: 0 0 11px 11px;
}

#s10 .buttons ul {
	display: flex;
}

#s10 .buttons li {
	width: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
}

#s10 .buttons li:first-of-type {
	border-right: 1px dotted #fff;
}

@media screen and (max-width: 767px) {
	#cp {
		padding: 40px 0 0;
	}

	#s10 .buttons {
		padding: 15px 0;
	}

	#s10 .buttons ul li img {
		width: 75%;
	}

	#s10 .yoyaku {
		font-size: 16px;
	}
}

.temp_note {
	width: 90%;
	margin: 0 auto;
	color: red;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.temp_note p {
	margin: 0 auto;
	text-align: center;
}

@media screen and (max-width: 767px) {
	.temp_note {
		width: 96%;
		font-size: 1.1rem;
		letter-spacing: -0.1rem;
	}

	.temp_note p {
		text-align: left;
	}
}