@charset "UTF-8";

/*all*/
html{
    scroll-behavior: smooth;
}
body{
    font-family: 'Natsumemozi-o',"ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN";
    background-color: #fcfbf0;
}
main{
    margin-left: 10%;
    margin-right: 10%;
    padding-bottom: 100px;
}
h2{
    font-size: 48px;
    text-align: center;
    padding-top: 30px;
    padding-bottom: 30px;
}
h3{
    font-size: 36px;
    text-align: center;
    padding-top: 20px;
    padding-bottom: 20px;
}
p{
    font-size: 24px;
}
header{
    background-color: #f2e9f1;
}
footer{
    text-align: center;
    color: #fff;
    background-color: #c998ae;
    padding: 10px;
}
.section{
    margin-top: 50px;
}
.flex{
    display: flex;
}
.center{
    text-align: center;
}
.right{
    text-align: right;
}
.left{
    text-align: left;
}
.iframe{
    position : relative;
    height : 0;
    padding-bottom : 56.25%; /* 縦横比の指定 */
    overflow : hidden;
}
iframe{
    position : absolute;
    top : 0;
    left : 0;
    width : 100%;
    height : 100%;
}
.mainvisual{
    border-radius: 20px;
}
/*underline*/
.orange-underline{
    background:linear-gradient(transparent 75%, #ffce9e 75%);
    font-weight:bold;
}
.blue-underline{
    background:linear-gradient(transparent 75%, #D6E1FC 75%);
    font-weight:bold;
}
.pink-underline{
    background:linear-gradient(transparent 75%, #ffc0cb 75%);
    font-weight:bold;
}
.yellow-underline{
    font-weight: bold;
    background: linear-gradient(transparent 60%, #ffff66 60%);
}
/*underline*/
.underline {
    position: relative;
    padding: .3em 0 .2em 1em;
    border-bottom: 5px solid #bf8dd7b7;
}

.underline::before {
    position: absolute;
    top: 0;
    left: .3em;
    transform: rotate(55deg);
    height: 11px;
    width: 12px;
    background: #ba82d3;
    content: '';
}

.underline::after {
    position: absolute;
    transform: rotate(15deg);
    top: .6em;
    left: 0;
    height: 8px;
    width: 8px;
    background: #ba82d3;
    content: '';
}
/*box*/
.box {
    position: relative;
    max-width: 500px;
    margin: 1em auto;
    padding: 1em 1.5em;
    border: 2px solid #c998ae;
    background-color: #fff;
    border-radius: 3px;
    color: #333;
}
/*box-none*/
.box-none {
    position: relative;
    max-width: 500px;
    margin: 1em auto;
    padding: 1em 1.5em;
    color: #333;
}

/*balloon*/
.balloon-right {
    display: flex;
    justify-content: center;
    align-items: start;
    gap: 0 22px;
    margin-right: 10%;
}

.balloon-right img {
    margin-top: 30px;
    max-width: 70px;
    height: 100%;
    border: 3px solid #f3eaf5;
    border-radius: 50%;
    background-color: #fff;
}

.balloon-right p {
    position: relative;
    max-width: 800px;
    margin: 30px 0 0;
    padding: .8em 1em;
    border-radius: 5px;
    background-color: #f2e2f3;
    color: #525252;
}

.balloon-right p::before {
    position: absolute;
    left: -15px;
    width: 15px;
    height: 30px;
    background-color: #f2e2f3;
    clip-path: polygon(0 50%, 100% 0, 100% 100%);
    content: '';
}

.balloon-left {
    display: flex;
    justify-content: center;
    align-items: start;
    gap: 0 22px;
    margin-left: 10%;
}

.balloon-left img {
    margin-top: 30px;
    max-width: 70px;
    height: 100%;
    border: 3px solid #e6edf3;
    border-radius: 50%;
    background-color: #fff;
}

.balloon-left p {
    position: relative;
    max-width: 800px;
    margin: 30px 0 0;
    padding: .8em 1em;
    border-radius: 5px;
    background-color: #e0efff;
    color: #333333;
}

.balloon-left p::before {
    position: absolute;
    right: -15px;
    width: 15px;
    height: 30px;
    background-color: #e0efff;
    clip-path: polygon(0 0, 100% 50%, 0 100%);
    content: '';
}



/*header*/
.header-top-menu{
    display: flex;
    justify-content: space-evenly;
    align-items: center;
}
/*logo*/
.header-top-menu img{
    position: relative;
    max-width: 110px;
    align-items: center;
}
.header-img img{
    max-width: 1500px;
}

/*contact*/
.button {
    text-align: center;
}

.button div {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    transform: translateY(7px);
    width: 150px;
    padding:10px;
    margin: 0 auto;
    border-radius: 10px;
    color: #666;
    font-size: .8em;
}

.button div::before,
.button div::after {
    position: absolute;
    top: 100%;
    content: '';
    clip-path: polygon(0 0, 100% 0%, 50% 100%);
}


.button div::before {
    width: 16px;
    height: 8px;
    background-color: #c883e1;
}

.button div::after {
    width: 12px;
    height: 6px;
    background-color: #fff;
}

.button button {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    padding: 1em 2em;
    border: none;
    border-radius: 25px;
    background-color: #C998AE;
    color: #fff;
    font-weight: 600;
    font-size: 1em;
}

.button button::after {
    transform: rotate(45deg);
    width: 5px;
    height: 5px;
    margin-left: 10px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    content: '';
}

.button button:hover {
    background-color: #c8a3d6;
    cursor: pointer;
}
/*menu*/
.menu{
    padding-top: 20px;
}
.menu ul {
    justify-content: space-around;
	margin: 0;
    width: 100%;
    display: flex;
    background-color: #fff;
}
.menu ul li{
    display: flex;
    align-items: center;
    list-style: none;

}
.menu ul li a {
	display: block;
	text-decoration: none;
	color: #605B5B;
    transition: all .3s ease 0s;
    text-decoration: none;
    color: #fff;
}

.menu ul li a img{
    max-width: 150px;
}

/*slider*/
.slider {
    position:relative;
    z-index: 1;
/*↑z-indexの値をh1のz-indexの値よりも小さくして背景に回す*/
}
.slider img{
    max-height: 500px;
    width: 100%;
}
/*矢印の設定*/
/*戻る、次へ矢印の位置*/
.slick-prev, 
.slick-next {
    position: absolute;/*絶対配置にする*/
	z-index: 3;
    top: 42%;
    cursor: pointer;/*マウスカーソルを指マークに*/
    outline: none;/*クリックをしたら出てくる枠線を消す*/
    border-top: 2px solid #ccc;/*矢印の色*/
    border-right: 2px solid #ccc;/*矢印の色*/
    height: 25px;
    width: 25px;
}

.slick-prev {/*戻る矢印の位置と形状*/
    left:2.5%;
    transform: rotate(-135deg);
}

.slick-next {/*次へ矢印の位置と形状*/
    right:2.5%;
    transform: rotate(45deg);
}

/*ドットナビゲーションの設定*/
.slick-dots {
	position: relative;
	z-index: 3;
    text-align:center;
	margin:-50px 0 0 0;
}

.slick-dots li {
    display:inline-block;
	margin:0 5px;
}

.slick-dots button {
    color: transparent;
    outline: none;
    width:8px;/*ドットボタンのサイズ*/
    height:8px;/*ドットボタンのサイズ*/
    display:block;
    border-radius:50%;
    background:#ccc;/*ドットボタンの色*/
}

.slick-dots .slick-active button{
    background:#333;/*ドットボタンの現在地表示の色*/
}
.slick-dots {
    display: none;
}



/*Loading*/
#splash {
    /*fixedで全面に固定*/
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 999;
    background:#fffcff;
}
    
/* Loading画像中央配置　*/
#splash_logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
    
/* Loading アイコンの大きさ設定　*/
#splash_logo img {
    width:120px;
}
.teacher-img{
    max-width: 150px;
}
.teacher-small-text{
    font-size: 16px;
}
.teacher{
    margin-left: 25%;
    margin-right: 25%;
    justify-content: space-between;
    align-items: end;
}
.teacher h3{
    padding-bottom: 30px;
}
.lesson-h3{
    margin-left: 25%;
}

.yurupiano{
    margin-top:5%;
    margin-left: 5%;
}
/*table*/
.table *, .table *:before, .table *:after {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
.table {
	width: 50%;
    margin-left: 25%;
    margin-top: 5%;
    margin-bottom: 5%;
	border-collapse: collapse;
}
.table td {
	padding: 10px;
	border: 1px solid #c998ae;
    background-color: #fff;
    text-align: center;
}
.table td:first-child{
    text-align: left;
}
.table th {
	padding: 10px;
	border: 1px solid #c998ae;
}
.table td:first-child {
	vertical-align: middle;
	font-weight: bold;
    background-color: #f2e9f1;
}

.table th:nth-child(2) {
    background-color: #D6E1FC;
}
.table th:nth-child(3) {
    background-color: #fcf8d6;
}

.access-box{
    max-width: 100%;
}
.tel{
    color: blue;
    text-decoration: underline;
}
/*pagetop*/
#pagetop {
    position: fixed;
    right: 10px;
    bottom: 10px;
    margin: 0;
    
}
#pagetop a {
    position: relative;
    display: flex;
    width: 65px;
    height: 65px;
    justify-content: center;
    background-color: #C998AE;
    transition: opacity .6s ease;
    color: #FFF;
    align-items: center;
    text-decoration: none;
    font-size: 32px;
    border-radius: 100%;
}
#pagetop a:hover {
    opacity: .3;
}


@media screen and (max-width:767px) {
main{
    margin: 0;
    padding-bottom: 10px;
}
body{
    width: 100%;
}
h2{
    font-size: 24px;
    padding-top: 30px;
    padding-bottom: 30px;
}
h3{
    font-size: 24px;
    padding-top: 10px;
    padding-bottom: 10px;
}
.box{
    margin-left: 10px;
    margin-right: 10px;
    margin-top: 30px;
    margin-bottom: 30px;
}
p{
    font-size: 16px;
}
.no-flex{
    display: block;
}
#pagetop a {
    width: 45px;
    height: 45px;
}
header{
    width: 100%;
}
.header-top-menu img{
    max-width: 70px;
}
.table{
    margin-left: 5%;
    margin-right: 5%;
    width: 90%;
}
.teacher{
    margin: 10px;
}
.header-img img{
    display: none;
}
.menu ul li a img{
    max-width: 100%;
}
.lesson-h3{
    margin: 5px;
}
}
