<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "utf-8";


/*レッスン タブ*/
.tab-wrapper {
	margin: 0 auto;
}
.tab-wrapper .tab-button {
	margin: 0;
	padding: 0;
	list-style: none;
	margin-left:5px;
}
.tab-wrapper .tab-button li {
	float: left;
	width: 329px;
	border-right:#FFFFFF 1px solid;
}
.tab-wrapper .tab-button li:last-child {
	border-right:none;
}

.tab-wrapper .tab-button li a {
	position: relative;
	display: block;
	padding: 10px 0;
	text-decoration: none;
	text-align: center;
	font-size: 1.8rem;
	color: #fff;
	background: #b8b8b8;
	-webkit-transition: all 0.6s ease;
	-moz-transition: all 0.6s ease;
	-ms-transition: all 0.6s ease;
	-o-transition: all 0.6s ease;
	transition: all 0.6s ease;
}
.tab-wrapper .tab-button li a:hover, .tab-wrapper .tab-button li.selected a {
	background: #f06598;
}
.tab-wrapper .tab-button li:not(.selected) a:after {
	opacity: 0;
}
.tab-wrapper .tab-button li a:after {
	content: '';
	position: absolute;
	bottom: -10px;
	left: 50%;
	opacity: 1;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 10px 10px 0 10px;
	border-color: #f06598 transparent transparent transparent;

	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;

	-webkit-transform: translateX(-50%);
	-moz-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	-o-transform: translateX(-50%);
	transform: translateX(-50%);
}
.tab-wrapper .tab-content {
	clear: both;
	margin-top: 15px;
}



/*体験レッスン タブ*/
.tab-wrapper-ex {
	margin: 0 auto;
}
.tab-wrapper-ex .tab-button-ex {
	margin: 0;
	padding: 0;
	list-style: none;
	text-align: center;
}
.tab-wrapper-ex .tab-button-ex li {
	display: inline-block;
	width: 31%;
	border-right:#FFFFFF 1px solid;
}
.tab-wrapper-ex .tab-button-ex li:nth-child(2) {
	margin: 0 1%;
}
.tab-wrapper-ex .tab-button-ex li a {
	position: relative;
	display: block;
	height: 60px;
	line-height: 60px;
	text-decoration: none;
	text-align: center;
	font-size: 16px;
	color: #666;
	background: #fff;
	-webkit-transition: all 0.6s ease;
	-moz-transition: all 0.6s ease;
	-ms-transition: all 0.6s ease;
	-o-transition: all 0.6s ease;
	transition: all 0.6s ease;
}
.tab-wrapper-ex .tab-button-ex li.selected a {
	color: #fff;
}
.tab-wrapper-ex .tab-button-ex li a[href="#regular"] {
	box-shadow: 0 0 0 1px #EF6E95 inset;
}
.tab-wrapper-ex .tab-button-ex li a[href="#senior"] {
	box-shadow: 0 0 0 1px #9D84AC inset;
}
.tab-wrapper-ex .tab-button-ex li a[href="#kids"] {
	box-shadow: 0 0 0 1px #F0C44D inset;
}
.tab-wrapper-ex .tab-button-ex li a[href="#regular"]:hover {
	color: #fff;
	background: #EF6E95;
}
.tab-wrapper-ex .tab-button-ex li a[href="#senior"]:hover {
	color: #fff;
	background: #9D84AC;
}
.tab-wrapper-ex .tab-button-ex li a[href="#kids"]:hover {
	color: #fff;
	background: #F0C44D;
}


.tab-wrapper-ex .tab-button-ex li.selected a[href="#regular"] {
	background: #EF6E95;
}
.tab-wrapper-ex .tab-button-ex li.selected a[href="#senior"] {
	background: #9D84AC;
}
.tab-wrapper-ex .tab-button-ex li.selected a[href="#kids"] {
	background: #F0C44D;
}

.tab-wrapper-ex .tab-content-ex {
	clear: both;
	margin-top: 15px;
}


</pre></body></html>