/*ボーダーの幅計算対策*/
* {
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
}

/*基本セット*/

img {
	border:none;
}



/*floatクリア*/
.clear-l{
	clear:left;
}
.clear-r{
	clear:right;
}



/*ここからbody*/
body {
	text-align: left;
	margin: 0px auto;
	padding : 0px;
	width:100%;
	color: #000000;
	font-size:77%;
	background-color: #ffffff;
	line-height: 1.5;
	margin: 0px;
	padding : 0px;
	font-weight: 400;
	font-style: normal;
	letter-spacing : 1px;
}

/*ここまでbody*/



#copyright {
	color: #f7fa63;
	font-size: 16px;
	font-weight: bold;
	margin: 0px 0px 0px 0px;
	padding: 20px 10px 20px 00px;
	background-color: #11749d;

}




/* ↓メニュー部分ここから↓ */

#header {
	display: block;
	height: 200px;
	width: 1140px;
	padding: 0px 0px 0px 0px;
	margin: 0px auto;
	background-color: #ffffff;
	background-image: url(./img/header_bg.png);
	background-repeat:  no-repeat;  
	background-size:  cover;
	background-position: top;
}


#header-menu {
	display: block;
	height: 50px;
	width: 1140px;
	padding: 0px 0px 0px 0px;
	margin: 0px auto;
	background-color: #11749d;
}



/* ナビゲーションメニュー */
.nav-menu {
	width: 100%;
  background-color: #11749d; /* メニューの背景色 */
  color: #f7fa63; /* メニューテキストの色 */
	height: 50px;
}
.menu-list {
	width: 100%;
	height: 50px;
	list-style: none;
  display: flex;
  justify-content: right; /* メニューアイテムを中央揃えに */
}
.menu-item {
	height: 50px;
	font-size: 20px;
  background-color: #11749d; /* メニューアイテムの背景色 */
/*   border-left: 1px solid #fff; メニューアイテムの左ボーダー */
  position: relative;
  transition: background-color .3s; /* 背景色の変化をアニメーション化 */
}
.menu-item:last-child {
/*   border-right: 1px solid #fff; 最後のメニューアイテムの右ボーダー */
}

/* メニューアイテムのホバースタイル */
.menu-item:hover .drop-menu-list {
  transform: scaleY(1); /* ドロップダウンメニューの表示 */
}
.menu-item:hover {
  background-color: #2598c7; /* メニューアイテムのホバー時の背景色 */
  transition: background-color .3s; /* 背景色の変化をアニメーション化 */
}
.drop-menu-item:hover {
  opacity: .8; /* ドロップダウンメニューアイテムのホバー時の不透明度 */
  transition: opacity .3s; /* 不透明度の変化をアニメーション化 */
}

.menu-item a {
  align-items: center;
  color: #f7fa63; /* メニューアイテム内のリンクテキストの色 */
  display: flex;
	width: fit-content;
  height: 55px;
	padding: 0px 20px 0px 20px;
  justify-content: center;
  text-decoration: none; /* リンクの下線を非表示 */
}

/* ドロップダウンメニュー */
.drop-menu {
  position: relative;
}
.drop-menu-list {
  left: 0;
  position: absolute;
  top: 100%;
  transform: scaleY(0); /* ドロップダウンメニューの非表示 */
  transform-origin: center top; /* 変形を適応する基準を設定 */
  transition: transform .3s; /* 表示の変化をアニメーション化 */
  width: 350px;
padding: 0px;
  z-index: 1;
}
.drop-menu-item {
	list-style: none;
  background-color: #2598c7; /* ドロップダウンメニューの背景色 */
  transition: opacity .5s; /* 不透明度の変化をアニメーション化 */
}











/* カルーセルスライダーここから */
.css-carousel-slider {
    width: 1140px;
    /* max-width: 800px */ /* サイズ設定をする場合はここ(*1) */
    overflow: hidden;
    position: relative;
	margin: 0px auto 0px auto;
}
.css-carousel-slider img {
    width: 100%;
	height: 648px;
    vertical-align: top;
}

/* スライド設定 */
.css-carousel-slider .slide-wrap {
    width: 300%; /* 画像の合計数*100%を設定(*2) */
    position: absolute;
    display: flex;
    top: 0;
    left: 0;
    z-index: 0;
    animation: css-carousel-slider 40s infinite; /* スライダーアニメーション全体の時間(*3) */
    animation-delay: 2s; /* スライダーが始まるまでの時間(*4) */
}
.css-carousel-slider .slide-wrap-main {
    width: 100%;
    z-index: 1;
    animation: css-carousel-slider-main 40s infinite; /* (*3)と同じ内容を設定 */
    animation-delay: 2s; /* (*4)と同じ内容を設定 */
}
.css-carousel-slider .slide {
    width: 100%;
}

/* スライダーアニメーションの設定(*5) */
@keyframes css-carousel-slider {
    0% { transform: translateX(0); }

    13% { transform: translateX(calc(1 / 3 * -100%)); }
    33% { transform: translateX(calc(1 / 3 * -100%)); }

    46% { transform: translateX(calc(2 / 3 * -100%)); }
    66% { transform: translateX(calc(2 / 3 * -100%)); }

    80% { transform: translateX(calc(3 / 3 * -100%)); }
    100% { transform: translateX(calc(3 / 3 * -100%)); }
}

@keyframes css-carousel-slider-main {
    0% { transform: translateX(100%); }
    66% { transform: translateX(100%); }
    80% { transform: translateX(0%);}
}

/* カルーセルスライダーここまで */





/* ↑メニュー部分ここまで↑ */




.txt_yellow{
	color: #f7fa63;
}

.txt_gray{
	color: #333333;
}




#container {
	text-align: left;
	margin: 0px auto 0px auto;
	height: auto;
	width: 1140px;
	padding: 0px 0px 0px 0px;
}




#top_content_1 {
	display: flex;
	flex-flow: wrap;
	width: 1140px;
	background: #ebf7fc;
	margin: 0px 0px 0px 0px;
	padding: 30px 40px 0px 60px;
}

#top_content_1 .box_course {
	flex: 1;
	position: relative;
	width: 235px;
	height: 300px;
	font-size: 18px;
	text-align: center;
	font-weight: normal;
	background: #11749d;
	margin: 0px 25px 25px 0px;
	padding: 5px;
	color: #f7fa63;
	border-radius: 10px;  
}

#top_content_1 .box_course img {
	width: 225px;
	height: 225px;
	background: #11749d;
	margin: 0px;
	padding: 0px;
	border-radius: 6px 6px 0px 0px;
}

#top_content_1 .box_course .corsename {
	width: auto;
	height: 65px;
	margin: 3px 0px 0px 0px;
	padding: 0px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	line-height: 22px;
}

#top_content_1 .box_course a {
	position: absolute;
	width: 100%;
	height: 100%;
	top:0;
	left: 0;
	text-indent: 100%; /*テキスト非表示*/
	white-space: nowrap; /*テキスト非表示*/
	overflow: hidden; /*テキスト非表示*/
}

#top_content_1 .box_course a:hover {
        opacity:0.6;
        filter: alpha(opacity=60);
        -ms-filter: "alpha( opacity=60 )";
        background: #fff;
}




#top_content_2 {
	width: 1140px;
	height: auto;
	background: #11749d;
	margin: 0px 0px 0px 0px;
	padding: 0px;
	color: #ffffff;
	position: relative;
}

#top_content_2 .header {
	color: #11749d;
	font-size: 24px;
	font-weight: normal;
	width: fit-content;
	height: 40px;
	background: #f7fa63;
	margin: 0px;
	padding: 5px 30px 0px 20px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: left;
	clip-path:polygon(0%0%,100%0%,96%100%,0%100%);
}

#top_content_2 .txtbox {
	color: #FFFFFF;
	font-size: 16px;
	font-weight: 400;
	height: auto;
	margin: 0px;
	padding: 50px 50px 50px 140px;
}

#top_content_2 .fotter {
  display: flex;
  justify-content: flex-end;
	width: auto;
	height: 40px;
	margin: 0px;
}

#top_content_2 .fotter .box {
	color: #11749d;
	font-size: 24px;
	font-weight: normal;
	width: fit-content;
	height: 40px;
	background: #f7fa63;
	margin: 0px;
	padding: 4px 20px 0px 50px;
	flex-direction: column;
	justify-content: center;
	align-items: right;
	clip-path:polygon(4%0%,100%0%,100%100%,0%100%);
}

#top_content_2 a {
	position: absolute;
	width: 100%;
	height: 100%;
	top:0;
	left: 0;
	text-indent: 100%; /*テキスト非表示*/
	white-space: nowrap; /*テキスト非表示*/
	overflow: hidden; /*テキスト非表示*/
}

#top_content_2 a:hover {
        opacity:0.6;
        filter: alpha(opacity=60);
        -ms-filter: "alpha( opacity=60 )";
        background: #fff;
}





#top_content_3 {
	display: flex;
	flex-flow: wrap;
	width: 100%;
	background: #ebf7fc;
	margin: 0px 0px 0px 0px;
	padding: 40px 0px 40px 0px;
}

#top_content_3 .box_explanation {
	flex: 1;
	height: 355px;
	font-size: 16px;
	text-align: center;
	font-weight: normal;
	margin: 0px;
	padding: 0px;
	color: #333333;
}

#top_content_3 .box_explanation img {
	width: 200px;
	height: 200px;
	margin: 0px;
	padding: 0px;
}

#top_content_3 .box_explanation .txtbox {
	width: auto;
	height: 155px;
	margin: 3px 0px 0px 0px;
	padding: 0px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}





#top_content_4 {
	width: 1140px;
	height: auto;
	background: #f7fa63;
	margin: 0px;
	padding: 0px;
	color: #ffffff;
	position: relative;
	background-image: url(./img/top_content_4_img_1.png);
	background-repeat:  no-repeat;  
	background-size:  contain;
	background-position: right top;
}

#top_content_4 .header {
	color: #f7fa63;
	font-size: 24px;
	font-weight: normal;
	width: fit-content;
	height: 40px;
	background: #11749d;
	margin: 0px;
	padding: 5px 50px 0px 20px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: left;
	clip-path:polygon(0%0%,100%0%,96%100%,0%100%);
}

#top_content_4 .txtbox {
	height: auto;
	margin: 0px;
	padding: 50px 50px 50px 40px;
}


#top_content_4 ul {
	height: auto;
}

#top_content_4 ul li {
	color: #11749d;
	font-size: 16px;
	font-weight: normal;
	list-style-type: circle;
	margin: 0px 0px 16px 0px;
}

#top_content_4 .fotter {
	width: auto;
	height: auto;
	margin: 0px;
	padding: 0px;
	position: relative;
}

#top_content_4 .fotter .box {
	color: #f7fa63;
	font-size: 30px;
	font-weight: normal;
	width: 100%;
	height: auto;
	background: #11749d;
	margin: 0px;
	padding: 20px 0px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;text-align: center;
}

#top_content_4 a {
	position: absolute;
	width: 100%;
	height: 100%;
	top:0;
	left: 0;
	text-indent: 100%; /*テキスト非表示*/
	white-space: nowrap; /*テキスト非表示*/
	overflow: hidden; /*テキスト非表示*/
}

#top_content_4 a:hover {
        opacity:0.6;
        filter: alpha(opacity=60);
        -ms-filter: "alpha( opacity=60 )";
        background: #fff;
}




/* ↓マップ↓ */


#fotter_map {
	width: 1140px;
	height: auto;
	background: #f7fa63;
	margin: 0px auto;
	padding: 0px;
	color: #11749d;
	display: -webkit-flex;
	display: flex;
 	justify-content: left;

}


#fotter_map  .map {
	width: 600px;
	height: 600px;
	margin: 0px 0px 0px 0px;
	padding: 0px;
}

#fotter_map  .address {
	width: auto;
	height: auto;
	margin: 30px 0px 0px 30px;
	padding: 0px 0px 0px 0px;
	color: #11749d;;
}


#fotter_map  .address img {
	max-width: 100%;
	height: auto;
	display: block;
	margin: 0px 0px 60px 0px;
}

#fotter_map  .address .course_txtbox1 {
	width: auto;
	word-break: normal;
	font-size: 22px;
	line-height:28px;
	font-weight: normal;
	margin: 0px 0px 30px 0px;
}

#fotter_map  .address .course_txtbox2 {
	display: flex;
	flex-wrap: wrap;
	width: auto;
	word-break: normal;
	font-size: 22px;
	line-height:28px;
	font-weight: normal;
	margin: 0px 0px 15px 0px;
}

#fotter_map  .address .course_txtbox2 .mark {
	width: auto;
	height: 46px;
	padding: 0px 10px 0px 0px;
}

#fotter_map  .address .course_txtbox2 .txt {
	word-break: normal;
	font-size: 24px;
	line-height:23px;
	font-weight: normal;
	padding: 0px 0px 0px 0px;
}

#fotter_map  .address .course_txtbox2 .txt .fonts {
	word-break: normal;
	font-size: 17px;
	font-weight: normal;
}






#fotter_map  .address .contact_button_box{
  display: flex;
  justify-content: center;
    flex-wrap: wrap;
	margin: 45px 0px 0px 0px;
}


#fotter_map  .address .contact_button_box .button{
	border-radius: 10px;
	display: block;
	width: auto;
	padding: 15px;
	box-sizing: border-box;
	background: #11749d;
	color: #f7fa63;
	font-size: 30px;
	text-decoration: none;
	text-align: center;
	margin: 10px 5px 10px 5px;
	border-style:none;
	cursor: pointer;

}

#fotter_map  .address .contact_button_box .button:hover{
	background: #2a9dcd;
}


/* ↑マップ↑ */











#other_content_yellowtab {
	width: 1140px;
	height: auto;
	background: #d8f3ff;
	margin: 0px 0px 0px 0px;
	padding: 0px 0px 30px 0px;
}

#other_content_yellowtab .header {
	color: #11749d;
	font-size: 24px;
	font-weight: normal;
	width: fit-content;
	height: 40px;
	background: #f7fa63;
	margin: 0px;
	padding: 5px 30px 0px 20px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: left;
	clip-path:polygon(0%0%,100%0%,96%100%,0%100%);
}

#other_content_yellowtab .txtbox {
	color: #11749d;
	font-size: 15px;
	font-weight: normal;
	height: auto;
	margin: 0px;
	padding: 20px 30px 20px 30px;
}

#other_content_yellowtab .cpbanner {
	position: relative;
	width: 1082px;
	height: 277px;
	margin: 0px auto 0px auto;
	background-image: url(./img/cp_banner_002.png);
	background-repeat:  no-repeat;  
	background-size:  cover;
	background-position: top;
}

#other_content_yellowtab .cpbanner a {
	position: absolute;
	width: 100%;
	height: 100%;
	top:0;
	left: 0;
	text-indent: 100%; /*テキスト非表示*/
	white-space: nowrap; /*テキスト非表示*/
	overflow: hidden; /*テキスト非表示*/
}

#other_content_yellowtab .cpbanner a:hover {
        opacity:0.6;
        filter: alpha(opacity=60);
        -ms-filter: "alpha( opacity=60 )";
        background: #fff;
}

.cm_movie {
	width: 464px;
	height: 261px;
	margin: 8px 8px 0px 610px;

}




#other_content_worries {
	width: 100%;
	background: #ffffff;
	margin: 0px 0px 40px 0px;
	padding: 0px;
}

#other_content_worries .header {
	color: #f7fa63;
	font-size: 26px;
	font-weight: normal;
	width: 100%;
	height: 70px;
	background: #11749d;
	margin: 0px 0px 40px 0px;
	padding: 5px 30px 0px 20px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

#other_content_worries .worries_box {
	display: flex;
	flex-flow: wrap;
	width: 100%;
	margin: 0px;
	padding: 0px 0px 0px 10px;
}

#other_content_worries .worries_box .box_explanation {
	flex: 1;
	height: auto;
	font-size: 14px;
	text-align: left;
	font-weight: normal;
	padding: 0px 20px 0px 20px;
	color: #333333;
}

#other_content_worries .worries_box .box_explanation img {
	width: 326px;
	height: 295px;
	margin: 0px;
	padding: 0px;
}

#other_content_worries .worries_box .box_explanation .txtbox {
	width: auto;
	height: auto;
	margin: 20px 0px 0px 0px;
	padding: 0px;
}


#other_content_voice_vo {
	width: 1140px;
	height: 555px;
	background: #ffffff;
	margin: 0px 0px 0px 0px;
	padding: 0px 0px 0px 0px;
	background-image: url(./img/other_content_voice_vo.png);
	background-repeat:  no-repeat;  
	background-size:  contain;
	background-position: top;
}


#other_content_voice_gu {
	width: 1140px;
	height: 555px;
	background: #ffffff;
	margin: 0px 0px 0px 0px;
	padding: 0px 0px 0px 0px;
	background-image: url(./img/other_content_voice_gu.png);
	background-repeat:  no-repeat;  
	background-size:  contain;
	background-position: top;
}


#other_content_voice_ba {
	width: 1140px;
	height: 555px;
	background: #ffffff;
	margin: 0px 0px 0px 0px;
	padding: 0px 0px 0px 0px;
	background-image: url(./img/other_content_voice_ba.png);
	background-repeat:  no-repeat;  
	background-size:  contain;
	background-position: top;
}


#other_content_voice_dr {
	width: 1140px;
	height: 555px;
	background: #ffffff;
	margin: 0px 0px 0px 0px;
	padding: 0px 0px 0px 0px;
	background-image: url(./img/other_content_voice_dr.png);
	background-repeat:  no-repeat;  
	background-size:  contain;
	background-position: top;
}


#other_content_voice_piano {
	width: 1140px;
	height: 555px;
	background: #ffffff;
	margin: 0px 0px 0px 0px;
	padding: 0px 0px 0px 0px;
	background-image: url(./img/other_content_voice_piano.png);
	background-repeat:  no-repeat;  
	background-size:  contain;
	background-position: top;
}


#other_content_voice_flute {
	width: 1140px;
	height: 555px;
	background: #ffffff;
	margin: 0px 0px 0px 0px;
	padding: 0px 0px 0px 0px;
	background-image: url(./img/other_content_voice_flute.png);
	background-repeat:  no-repeat;  
	background-size:  contain;
	background-position: top;
}


#other_content_voice_hikigatari {
	width: 1140px;
	height: 555px;
	background: #ffffff;
	margin: 0px 0px 0px 0px;
	padding: 0px 0px 0px 0px;
	background-image: url(./img/other_content_voice_hikigatari.png);
	background-repeat:  no-repeat;  
	background-size:  contain;
	background-position: top;
}


#other_content_voice_combi {
	width: 1140px;
	height: 555px;
	background: #ffffff;
	margin: 0px 0px 0px 0px;
	padding: 0px 0px 0px 0px;
	background-image: url(./img/other_content_voice_combi.png);
	background-repeat:  no-repeat;  
	background-size:  contain;
	background-position: top;
}


#other_content_fee {
	width: 100%;
	background: #ffffff;
	margin: 0px 0px 0px 0px;
	padding: 0px;
}

#other_content_fee .header {
	color: #f7fa63;
	font-size: 28px;
	font-weight: normal;
	width: 100%;
	height: 70px;
	background: #11749d;
	margin: 0px 0px 40px 0px;
	padding: 0px 30px 0px 20px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

#other_content_fee .admissionfee {
	color: #11749d;
	font-size: 38px;
	font-weight: bold;
	width: 100%;
	height: 80px;
	border-width: 2px;
	border-color: #11749d;
	border-bottom-style: dotted;
	margin: 0px 0px 40px 0px;
	padding: 0px 0px 0px 0px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

#other_content_fee .fee_box {
	display: flex;
	flex-flow: wrap;
	width: 100%;
	margin: 0px;
	padding: 0px;
}

#other_content_fee .fee_box .box_course {
	flex: 1;
	background: #d8f3ff;
	height: auto;
	font-size: 16px;
	text-align: left;
	font-weight: 600;
	border-width: 2px;
	border-color: #11749d;
	border-style: solid;
 	border-radius: 10px;
	margin: 0px 5px 0px 5px;
	padding: 0px;
	color: #333333;
}

#other_content_fee .fee_box .box_course .coursename {
	font-size: 20px;
	color: #11749d;
	text-align: center;
	width: auto;
	height: 100px;
	margin: 0px;
	padding: 0px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

#other_content_fee .fee_box .box_course .coursefee {
	font-size: 34px;
	color: #33333;
	width: auto;
	height: 50px;
	margin: 0px;
	padding: 0px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

#other_content_fee .fee_box .box_course .coursetime {
	font-size: 18px;
	color: #33333;
	text-align: center;
	width: auto;
	height: 50px;
	margin: 20px 0px 20px 0px;
	padding: 0px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

#other_content_fee .fee_box .box_course .coursetime .sfont {
	font-size: 14px;
}

#other_content_fee .fee_box .box_course .txtbox {
	background: #ffffff;
	font-size: 14px;
	font-weight: normal;
	width: auto;
	height: 330px;
	margin: 8px;
	padding: 10px;
	border-width: 2px;
	border-color: #11749d;
	border-style: solid;
 	border-radius: 6px;
}

#other_content_fee .footer {
	color: #11749d;
	font-size: 24px;
	font-weight: bold;
	text-align: center;
	width: 100%;
	height: auto;
	margin: 40px 0px 40px 0px;
	padding: 0px 0px 0px 0px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}





#other_content_instructor {
	width: 1140px;
	height: auto;
	background: #f7fa63;
	margin: 0px;
	padding: 0px;
	color: #ffffff;
	position: relative;
}

#other_content_instructor .header {
	color: #f7fa63;
	font-size: 24px;
	font-weight: normal;
	width: fit-content;
	height: 40px;
	background: #11749d;
	margin: 0px;
	padding: 5px 50px 0px 20px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: left;
	clip-path:polygon(0%0%,100%0%,96%100%,0%100%);
}

#other_content_instructor .instructorbox {
	display: flex;
	flex-flow: wrap;
	height: auto;
	width: 100%;
	margin: 0px;
	padding: 40px 20px 40px 20px;
}

#other_content_instructor .instructorbox .txtbox {
	color: #11749d;
	flex: 1;
	background: #ffffff;
	max-width: 465px;
	height: auto;
	text-align: left;
	border-width: 2px;
	border-color: #11749d;
	border-style: solid;
 	border-radius: 10px;
	margin: 20px auto 0px auto;
/*	margin: 0px 15px 0px 15px;*/
	padding: 0px 0px 20px 0px;
	background-repeat:  no-repeat;  
	background-size:  contain;
	background-position: center top;
}

#other_content_instructor .instructorbox .txtbox  .instructorname {
	font-size: 28px;
	font-weight: normal;
	color: #333333;
	background: #ffffff;
	text-align: center;
	width: auto;
	height: 100px;
	margin: 500px 0px 0px 0px;
	padding: 0px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

#other_content_instructor .instructorbox .txtbox  .txt {
	font-size: 16px;
	color: #333333;
	width: auto;
	height: auto;
	background: #ffffff;
	margin: 0px;
	padding: 0px 20px 20px 20px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

#other_content_instructor .fotter {
	width: auto;
	height: auto;
	margin: 0px;
	padding: 0px;
	position: relative;
}

#other_content_instructor .fotter .box {
	color: #f7fa63;
	font-size: 30px;
	font-weight: normal;
	width: 100%;
	height: auto;
	background: #11749d;
	margin: 0px;
	padding: 20px 0px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;text-align: center;
}


#other_content_instructor .fotter a {
	position: absolute;
	width: 100%;
	height: 100%;
	top:0;
	left: 0;
	text-indent: 100%; /*テキスト非表示*/
	white-space: nowrap; /*テキスト非表示*/
	overflow: hidden; /*テキスト非表示*/
}

#other_content_instructor .fotter a:hover {
        opacity:0.6;
        filter: alpha(opacity=60);
        -ms-filter: "alpha( opacity=60 )";
        background: #fff;
}










/* ↓Q&Aページここから↓ */



#other_content_qanda {
	width: 1140px;
	height: auto;
	background: #d8f3ff;
	margin: 0px 0px 0px 0px;
	padding: 0px 0px 30px 0px;
}

#other_content_qanda .header {
	color: #11749d;
	font-size: 24px;
	font-weight: normal;
	line-height: 30px;
	width: fit-content;
	height: 68px;
	background: #f7fa63;
	margin: 0px;
	padding: 5px 30px 0px 20px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: left;
	clip-path:polygon(0%0%,100%0%,96%100%,0%100%);
}

#other_content_qanda .header .sub {
	color: #11749d;
	font-size: 18px;
	font-weight: normal;
}

#other_content_qanda .txtbox {
	color: #11749d;
	font-size: 15px;
	font-weight: normal;
	height: auto;
	margin: 0px;
	padding: 10px 30px 20px 30px;
}





.qanda_content_title {
	width: 100%;
	margin: 30px 0px 5px 0px;
	padding: 0px 0px 0px 0px;
	font-size: 20px;
	font-weight: norml;
	color: #11749d;
}





#qanda_footer {
	width: auto;
	height: auto;
	margin: 0px;
	padding: 0px;
	position: relative;
}

#qanda_footer .box {
	color: #f7fa63;
	font-size: 30px;
	font-weight: normal;
	width: 100%;
	height: auto;
	background: #11749d;
	margin: 0px;
	padding: 20px 0px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;text-align: center;
}


#qanda_footer  a {
	position: absolute;
	width: 100%;
	height: 100%;
	top:0;
	left: 0;
	text-indent: 100%; /*テキスト非表示*/
	white-space: nowrap; /*テキスト非表示*/
	overflow: hidden; /*テキスト非表示*/
}

#qanda_footer  a:hover {
        opacity:0.6;
        filter: alpha(opacity=60);
        -ms-filter: "alpha( opacity=60 )";
        background: #fff;
}









.accordion {
  width: 100%;
}

/* inputのチェックボックスを非表示 */
.accordion-hidden {
  display: none;
}

/* 見出しボタン部分 */
.accordion-open {
	height: 65px;
  display: block;
  padding: 10px 80px 10px 10px;
  background: #11749d;
	border-radius: 20px;
  cursor: pointer;
  margin: 5px 0;
  position: relative;
}

/* ＋アイコン */
.accordion-open::before,
.accordion-open::after {
  content: '';
  width: 20px;
  height: 3px;
  background: #ffffff;
  position: absolute;
  top: 50%;
  right: 5%;
  transform: translateY(-50%);
}

/* アイコンのー */
.accordion-open::after {
  transform: translateY(-50%) rotate(90deg);
  transition: .5s;
}

/* アコーディオンが開いたらーに */
.accordion-hidden:checked+.accordion-open:after {
  transform: translateY(-50%) rotate(0);
}

/* アコーディオン中身部分 */
.accordion-inner {
  display: block;
  height: 0px;
  background: #ffffff;
	border-radius: 20px;
  overflow: hidden;
  padding: 0;
  opacity: 0;
  transition: 0.5s;
  /* 表示速度の設定 */
  cursor: pointer;
}

/* チェックボックスにチェックが入ったら中身部分を表示する */
.accordion-hidden:checked+.accordion-open+.accordion-inner {
  height: auto;
  opacity: 1;
  padding: 0px;
}
/* ↑ここまで共通 */


/* Q&A追加 */
.accordion_qa .Q,
.accordion_qa .A {
  position: relative;
}

.accordion_qa .Q::before,
.accordion_qa .A::before {
  font-size: 1.5em;
  display: block;
  position: absolute;
  top: -10px;
  left: -35px;
	font-weight: bold;
}

.accordion_qa .Q::before {
  content: 'Q';
	color: #ffffff;
  font-size: 30px;
}

.accordion_qa .A::before {
  content: 'A';
  font-size: 30px;
}

.accordion_qa .accordion-open {
  padding-left: 60px;
	color: #ffffff;
  font-size: 16px;
  padding: 10px 50px 10px  61px;
}

.accordion_qa .accordion-hidden:checked+.accordion-open+.accordion-inner {
  height: auto;
  opacity: 1;
  font-size: 14px;
  padding: 10px 10px 10px  62px;
}




/* ↓お問い合わせページここから↓ */



#other_content_contact {
	width: 1140px;
	height: auto;
	background: #d8f3ff;
	margin: 0px 0px 0px 0px;
	padding: 0px 0px 0px 0px;
}

#other_content_contact .header {
	color: #11749d;
	font-size: 24px;
	font-weight: normal;
	line-height: 30px;
	width: fit-content;
	height: 100px;
	background: #f7fa63;
	margin: 0px;
	padding: 5px 30px 0px 20px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: left;
	clip-path:polygon(0%0%,100%0%,96%100%,0%100%);
}

#other_content_contact .header .sub {
	color: #11749d;
	font-size: 18px;
	font-weight: normal;
}

#other_content_contact .txtbox {
	color: #11749d;
	font-size: 15px;
	font-weight: normal;
	width: 100%;
	height: auto;
	margin: 20px 0px 0px 0px;
	padding: 10px 30px 20px 30px;
}





.contact_content_title {
	width: 100%;
	margin: 30px 0px 5px 0px;
	padding: 0px 0px 0px 0px;
	font-size: 20px;
	font-weight: norml;
	color: #11749d;
}





.contact_footer {
	width: 100%;
	height: auto;
	margin: 0px;
	padding: 0px 0px 40px 0px;
	background: #d8f3ff;
}




.contact_button_box{
  display: flex;
  justify-content: center;
    flex-wrap: wrap;
}

.contact_button{
	border-radius: 100px;
	display: block;
	width: 200px;
	padding: 15px;
	box-sizing: border-box;
	background: #dcbd24;
	color: #ffffff;
	font-size: 16px;
	text-decoration: none;
	text-align: center;
	margin: 10px 5px 10px 5px;
	border-style:none;
	cursor: pointer;

}

.contact_button:hover{
	background: #fbdc46;
}








.contact_button_box2{
  display: flex;
  justify-content: center;
    flex-wrap: wrap;
}

.contact_button2{
	border-radius: 100px;
	display: block;
	width: auto;
	padding: 15px;
	box-sizing: border-box;
	background: #dcbd24;
	color: #ffffff;
	font-size: 30px;
	text-decoration: none;
	text-align: center;
	margin: 10px 5px 10px 5px;
	border-style:none;
	cursor: pointer;

}

.contact_button2:hover{
	background: #fbdc46;
}





#personalinfo {
	margin: 0px auto;
  display: -webkit-flex;
  display: flex;
  justify-content: center;
	background-color: #d8f3ff;

}




#personalinfo .personalinfo_box {
	display: block;
	height: 400px;
	width: auto;
	margin: 50px 50px 50px 50px;
	padding: 50px 50px 0px 50px;
	border: solid 1px #333333;
	border-radius: 20px;
	background-color: #ffffff;
	height: fit-content;
}

#personalinfo .personalinfo_box .personalinfo_txt {
	margin: 0px 0px 10px 0px;
	color: #333333;
	font-size:16px;
	font-weight: bold;
}


#personalinfo .personalinfo_box .personalinfo_txt2 {
	margin: 0px 0px 50px 0px;
	color: #333333;
	font-size:14px;
	font-weight: normal;
}






/* ↓体験レッスンページここから↓ */

#other_content_trial {
	margin: 0px auto;
	padding: 20px 0px 0px 0px;
  justify-content: center;
	background-color: #d8f3ff;

}



#other_content_trial .trial_box {
	display: block;
	height: 400px;
	width: auto;
	margin: 0px 50px 40px 50px;
	padding: 50px 100px 0px 100px;
	border: solid 1px #333333;
	border-radius: 20px;
	background-color: #ffffff;
	height: fit-content;
}


#other_content_trial .trial_box .trial_txt {
	margin: 0px 0px 50px 0px;
	color: #ff3f5a;
	font-size:30px;
	font-weight: normal;
	text-align: center;
}


#other_content_trial .trial_box .trial_txt2 {
	margin: 0px 0px 90px 0px;
	color: #333333;
	font-size:14px;
	font-weight: normal;
}


#other_content_trial .trial_box .trial_txt_title {
	border-radius: 100px;
	width: auto;
	padding: 5px;
	box-sizing: border-box;
	background: #dcbd24;
	color: #ffffff;
	font-size: 24px;
	font-weight: bold;
	text-decoration: none;
	text-align: center;\
	border-style:none;
	margin: 0px auto 30px auto;
}




#other_content_trial .fotter {
	width: auto;
	height: auto;
	margin: 0px;
	padding: 0px;
	position: relative;
}

#other_content_trial .fotter .box {
	color: #f7fa63;
	font-size: 30px;
	font-weight: normal;
	width: 100%;
	height: auto;
	background: #11749d;
	margin: 0px;
	padding: 20px 0px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;text-align: center;
}


#other_content_trial .fotter a {
	position: absolute;
	width: 100%;
	height: 100%;
	top:0;
	left: 0;
	text-indent: 100%; /*テキスト非表示*/
	white-space: nowrap; /*テキスト非表示*/
	overflow: hidden; /*テキスト非表示*/
}

#other_content_trial .fotter a:hover {
        opacity:0.6;
        filter: alpha(opacity=60);
        -ms-filter: "alpha( opacity=60 )";
        background: #fff;
}



/*　↓ フライヤー用　↓ */



#other_content_trial2 {
	margin: 0px auto;
	padding: 10px 0px 0px 0px;
  justify-content: center;
	background-color: #d8f3ff;

}


#other_content_trial2 .trial_box {
	display: block;
	height: 400px;
	width: auto;
	margin: 0px 50px 50px 50px;
	padding: 20px 100px 40px 100px;
	border: solid 1px #333333;
	border-radius: 20px;
	background-color: #ffffff;
	height: fit-content;
}





#other_content_trial2 .trial_box .trial_txt {
	margin: 0px 0px 50px 0px;
	color: #ff3f5a;
	font-size:30px;
	font-weight: normal;
	text-align: center;
}


#other_content_trial2 .trial_box .trial_txt2 {
	margin: 0px 0px 90px 0px;
	color: #333333;
	font-size:14px;
	font-weight: normal;
}


#other_content_trial2 .trial_box .trial_txt_title {
	border-radius: 100px;
	width: auto;
	padding: 5px;
	box-sizing: border-box;
	background: #dcbd24;
	color: #ffffff;
	font-size: 24px;
	font-weight: bold;
	text-decoration: none;
	text-align: center;\
	border-style:none;
	margin: 0px auto 30px auto;
}




#other_content_trial2 .fotter {
	width: auto;
	height: auto;
	margin: 0px;
	padding: 0px;
	position: relative;
}

#other_content_trial2 .fotter .box {
	color: #f7fa63;
	font-size: 30px;
	font-weight: normal;
	width: 100%;
	height: auto;
	background: #11749d;
	margin: 0px;
	padding: 20px 0px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;text-align: center;
}


#other_content_trial2 .fotter a {
	position: absolute;
	width: 100%;
	height: 100%;
	top:0;
	left: 0;
	text-indent: 100%; /*テキスト非表示*/
	white-space: nowrap; /*テキスト非表示*/
	overflow: hidden; /*テキスト非表示*/
}

#other_content_trial2 .fotter a:hover {
        opacity:0.6;
        filter: alpha(opacity=60);
        -ms-filter: "alpha( opacity=60 )";
        background: #fff;
}



/*　↑ フライヤー用　↑ */

































































































