@charset "UTF-8";

/*Googlefonts*/
@import url('https://fonts.googleapis.com/css2?family=Klee+One&display=swap');

*{
  padding: 0;
  margin: 0;
  text-align: center;
}
*, *:before, *:after {
	-webkit-box-sizing: border-box;
  box-sizing: border-box;
}
html {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-size: 100%;
  width: 100%;
  scroll-behavior: smooth;
}


/*font-setting*/
body{
  font-family: 'Zen Kaku Gothic Antique','Arial';
}

header{
  background: #f6f4f4;
  /*ヘッダー固定表示*/
  position: fixed;
  z-index: 999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100px;
}


main{
  background: #FAF8F5;
  padding-bottom: 0px;
  margin-top: 80px;
}

h2{
  font-size: 48px;
  margin-top: 60px;
  margin-bottom: 30px;
}

h3{
  text-align: left;
}

a{
  text-decoration: none;
  color: #000;
}

p{
  font-size: 20px;
}

nav ul{
  font-size: 16px;
}

td{
  background-color: white;
}

.small-excuse{
  font-size: 16px;
}
.small-title{
  font-size: 18px;
}
.title-img{
  max-width: 200px;
  margin-bottom: 10vh;
}

.excuse-img{
  padding-top: 100px;
  margin-bottom: 50px;
  width: 70vh;
}

.space{
  padding-bottom: 20px;
}
.flex{
  display: flex;
}
.left{
  text-align: left;
}
.center{
  text-align: center;
}
.right{
  text-align: right;
}
#lesson-course li{
  text-align: left;
}
.mobile{
  display: none;
}
.all{
  margin-left: 5%;
  margin-right: 5%;
}


/*underline*/
.blue-underline{
  background:linear-gradient(transparent 75%, #D6E1FC 75%);
  font-weight:bold;
}
.green-underline{
  background:linear-gradient(transparent 85%, #57BEAF 0);
  font-weight:bold;
}
.pink-underline{
  background:linear-gradient(transparent 75%, #F19495 75%);
  font-weight:bold;
}
.yellow-underline{
  font-weight: bold;
  background: linear-gradient(transparent 60%, #FFDE59 60%);
}


/*border*/
.border{
  color: #F19495;
  -webkit-text-stroke: 2px #605B5B;
  font-size: 64px;
}


/*price*/
.price-bold{
  font-weight: bold;
  font-size: calc(16px + 4 * (100vw - 500px) / 600);
}

.tax{
  font-size: calc(12px + 4 * (100vw - 500px) / 600);
}

/*header*/
.header-top-menu{
  display: flex;
  align-items: center;
  /*両端に表示*/
  justify-content: space-between;
}

/*logo*/
.header-top-menu img{
  margin-left: 50px;
  position: relative;
  max-width: 200px;
  align-items: center;
}

/*header a hover:下線アンダーライン*/
header ul li a {
  position: relative;
  display: inline-block;
  text-decoration: none;
}
header ul li a::after {
  position: absolute;
  bottom: -4px;
  left: 0;
  content: '';
  width: 100%;
  height: 3px;
  background: #F19495;
  transform: scale(0, 1);
  transform-origin: right top;
  transition: transform .3s;
}
header ul li a:hover {
  color: #F19495;
}
header ul li a:hover::after {
  transform-origin: left top;
  transform: scale(1, 1);
}

/*contact*/
.contact{
  background: #FF837F;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  padding: 15px;
  padding-left: 30px;
  padding-right: 30px;
  transition: all .1s ease;
  max-width: 150px;
  box-shadow: 2px 2px 4px #605B5B;
  color: #fff;
  margin-top: 10px;
  margin-right: 10px;
}
.contact a{
  color: #fff;
}

.contact:hover{
  background: #FF726E;
  box-shadow: 0 1px #605B5B;
}

/*menu*/
.menu{
  padding-top: 10px;
  display: block;
}
.menu ul {
	list-style: none;
	margin: 0;
  font-size: 18px;
  width: 100%;
}
.menu ul::after {
	content: "";
	display: block;
	clear: both;
}
.menu ul li {
	box-sizing: border-box;
  border-left: 2px solid;
  border-width: thin;
  border-color: #605B5B;
  display: inline-block;
  width: 32%;
}
.menu ul li:first-child {
	border-left: none;
}
.menu ul li a {
	display: block;
	text-decoration: none;
	color: #605B5B;
  transition: all .3s ease 0s;
  text-decoration: none;
}
.menu ul li a:hover {
  cursor: pointer;
	color: #FF726E;
}
.menu-contact{
  display: none;
}

/*slider*/

.slider {
  position:relative;
  z-index: 1;
/*↑z-indexの値をh1のz-indexの値よりも小さくして背景に回す*/
}
.slider img{
  width: 80%;
}
.center{
  margin-left: 20%;
}
/*dots-nav*/
.slick-dots {
position: relative;
z-index: 3;
margin:-24px 0 0 0;
}

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

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

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


/*lesson-course*/
#lesson-course{
  margin-top: 100px;
}
#lesson-course li a{
  text-decoration: underline;
}

/*policy*/
#policy{
  margin-top: 150px;
}
.policy-excuse{
  margin-top: 50px;
  margin-left: 15%;
  margin-right: 15%;
}
.policy-excuse p{
  padding-top: 10px;
}


/*private-table*/
.private-table *, .private-table *:before, .private-table *:after {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
.private-table {
	width: 100%;
	border-collapse: collapse;
}
.private-table td:first-child {
	vertical-align: middle;
	font-weight: bold;
  background-color: #FFE8E9;
}
.private-table th:first-child {
  border: none;
}
.private-table th:nth-child(2) {
  background-color: #FAE4C5;
}
.private-table th:nth-child(3) {
  background-color: #F1B394;
}
.private-table th:last-child {
  background-color: #f19494;
}
.private-table th, .private-table td {
	padding: 10px;
	border: 2px solid #F19495;
}




/*lessoncourse-table*/
.lessoncourse-table *, .lessoncourse-table *:before, .lessoncourse-table *:after {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
.lessoncourse-table {
	border-collapse: collapse;
  table-layout: auto;
  margin: 10px;
  display: inline-block;
}
.lessoncourse-table tr{
  background: #FAF8F5;
}
.lessoncourse-table th, .lessoncourse-table td {
	padding: 10px;
	border: 2px solid #F19495;
  width: 20vw;
	text-align: left;
}
.lessoncourse-table th {
	background: #FFE8E9;
}

/*teacher-profiles*/

#teacher-profiles{
  margin-top: 100px;
}
.teacher-excuse{
  background-color: #EBEBE5;
  border-radius: 10px;
  margin-top: 100px;
  margin-bottom: 100px;
  margin-left: 50px;
  margin-right: 50px;
  padding-top: 50px;
  justify-content: center;
  align-items: center;
  display: flex;
}
/*border*/
.teacher-excuse {
  background-image: repeating-linear-gradient(0deg, #666, #666 10px, transparent 10px, transparent 20px, #666 20px), repeating-linear-gradient(90deg, #666, #666 10px, transparent 10px, transparent 20px, #666 20px), repeating-linear-gradient(180deg, #666, #666 10px, transparent 10px, transparent 20px, #666 20px), repeating-linear-gradient(270deg, #666, #666 10px, transparent 10px, transparent 20px, #666 20px);
  background-size: 3px 100%, 100% 3px, 3px 100% , 100% 3px;
  background-position: 0 0, 0 0, 100% 0, 0 100%;
  background-repeat: no-repeat;
}
.teacher-excuse:nth-child(2n){
  flex-direction: row-reverse;
}
.teacher-excuse p{
  text-align: left;
}
.teacher-excuse li{
  text-align: left;
}
.teacher-excuse img{
  max-width: 280px;
}
.yuki img{
  max-width: 300px;
}
.yuki{
  padding-bottom: 5%;
}
.aimi{
  padding-left: 5%;
}
.text{
  padding: 20px;
}
.text-blue{
  background: #E0F7F8;
  padding: 16px;
  margin: 20px;
  border: 3px dashed #03989e;
}


/*icon-btn*/
.icon-btn{
  margin-right: 30%;
  margin-left: 30%;
  border-radius: 10px;
  border: 3px solid #51B1A2;
  padding: 20px;
}
.icon-btn:hover{
  cursor: pointer;
  background-color: #DCDEDC;
}
.icon-btn a{
  font-size: 32px;
}
.icon-btn p{
  font-size: 20px;
  padding-top: 10px;
}
.icon-img{
  width:100px;
  vertical-align: middle;
  margin-bottom: 10px;
}



/*access*/

#access{
  margin-top: 100px;
}

/*map*/

iframe {
  width: 100%;
  aspect-ratio: 16/9;
}


/*contact*/
#contact{
  margin-top: 80px;
  padding-bottom: 80px;
}
.icon{
  display: flex;
  justify-content: space-between;
}
.icon-img{
  width: 50px;
  vertical-align: middle;
  margin-bottom: 10px;
}
#contact a{
  font-size: 24px;
}
#contact p{
  font-size: 16px;
  padding-top: 10px;
}
.contact-btn{
  padding: 16px;
  margin: 20px;
  border: 3px solid #51B1A2;
  border-radius: 10px;
}
.contact-btn:hover{
  cursor: pointer;
  background-color: #DCDEDC;
}


/*footer*/
.footer-002 {
  display: flex;
  align-items: center;
  flex-direction: column;
  padding: 25px 10px 10px;
  background-color: #f6f4f4;
}
.footer-002 img{
  width: 150px;
}

.footer-002__logo {
  width: 130px;
  height: 30px;
}

.footer-002__list {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0 1.5em;
  list-style-type: none;
  margin: 0 0 .5em;
  padding: .5em;
}

.footer-002__sns-icon {
  width: 30px;
  height: 30px;
}

.footer-002__copyright {
  margin: 0;
  color: #fc81aa;
  font-weight: 200;
  font-size: .8em;
}


/*animation*/

/*page-top*/

/*リンクを右下に固定*/
#page-top {
	position: fixed;
	right: 10px;
	bottom:30px;
	z-index: 2;
    /*はじめは非表示*/
	opacity: 0;
	transform: translateY(150px);
}

/*　上に上がる動き　*/
#page-top.UpMove{
	animation: UpAnime 0.3s forwards;
}

@keyframes UpAnime{
  from {
    opacity: 0;
	transform: translateY(150px);
  }
  to {
    opacity: 1;
	transform: translateY(0);
  }
}

/*画像の切り替えと動き*/
#page-top a {
    /*aタグの形状*/
	display: block;
	width: 100px;
	height: 64px;
	color: #333;
	text-transform: uppercase;
	text-decoration: none;
	font-size:0.6rem;
}

/*Page Topと書かれたテキストの位置*/
#page-top span{
    position: absolute;
    bottom: -20px;
    right: 20px;
	color: #666;
}

/*fuwafuwa*/

.fuwafuwa {
  animation: fuwafuwa 3s infinite ease-in-out .8s alternate;
  display: inline-block;
  transition: 1.5s ease-in-out;
  height: 70px;
}

@keyframes fuwafuwa {
  0% {
    transform:translate(0, 0) rotate(-7deg);
  }
  50% {
    transform:translate(0, -7px) rotate(0deg);
  }
  100% {
    transform:translate(0, 0) rotate(7deg);
  }
}

/*Loading*/

/* Loading背景画面設定　*/
#splash {
/*fixedで全面に固定*/
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 999;
  background: #EBEBE5;
  color:#F19495;
}

/* Loading画像中央配置　*/
#splash_logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* Loading アイコンの大きさ設定　*/
#splash_logo img {
  width:120px;
}

/* fadeupをするアイコンの動き */
.fadeup{
animation-name: fadeupAnime;
animation-duration:0.5s;
animation-fill-mode:forwards;
opacity: 0;
}

@keyframes fadeupAnime{
  from {
    opacity: 0;
  transform: translateY(100px);
  }

  to {
    opacity: 1;
  transform: translateY(0);
  }
}
.onpu{
  width: 30px;
  height: 30px;
  margin: 10px;
}




/*mobile*/

@media only screen and (max-width: 480px) {

/*underline*/
  .blue-underline{
    background:linear-gradient(transparent 40%, #D6E1FC 75%);
    font-weight:bold;
  }
  .green-underline{
    background:linear-gradient(transparent 90%, #57BEAF 0);
    font-weight:bold;
  }
  .pink-underline{
    background:linear-gradient(transparent 40%, #F19495 75%);
    font-weight:bold;
  }
  .yellow-underline{
    font-weight: bold;
    background: linear-gradient(transparent 40%, #FFDE59 60%);
  }
  h2{
    font-size: 25px;
  }
  p{
    font-size: 14px;
  }
  li{
    font-size: 15px;
  }
  header li{
    font-size: 18px;
  }

/*lessoncourse-table*/
	.lessoncourse-table {
		width: 70%;
    margin: 50px;

	}
  .lessoncourse-table th, .lessoncourse-table td {
    display: block;
    width: 100%;
    text-align: center;
  }
  .lessoncourse-table tbody {
    display: block;
    width: 100%;
  }
  .lessoncourse-table tr {
    display: block;
    width: 100%;
  }
  .contact{
    margin-right: 0;
    padding: 10px;
  }
  .slick-dots button {
    width:10px;/*ドットボタンのサイズ*/
    height:10px;/*ドットボタンのサイズ*/

  }
  .slick-dots {
    margin:-24px 0 0 0;
  }
  #policy{
      margin-top: 50px;
  }
  .title-img{
      max-width: 150px;
  }
  .lessoncourse-table{
    margin-top: 20px;
  }
  .lessoncourse-table td {
    padding: 2px;
  }
  .lessoncourse-table th {
    padding: 2px;
  }
  iframe {
    width: 100%;
  }
  .teacher-excuse{
    flex-direction: column;
    margin-left: 0;
    margin-right: 0;
  }
  .teacher-excuse:nth-child(2n){
    flex-direction: column;
  }
  .text{
    margin-bottom: 30px;
  }
  .space{
    padding-bottom: 0;
  }
  .mobile-space{
    padding-bottom: 10px;
  }
  #teacher-profiles img{
    max-width: 50%;
  }
  .excuse-img{
    display: none;
  }
  .mobile{
    display: block;
  }
  .menu{
    padding-top: 20px;
  }
  .menu-contact{
    display: block;
  }
  .title-excuse{
    font-size: 16px;
  }
  /*音を、楽しむ。*/
  .title-h2{
    margin-top: 0px;
    font-size: 28px;
  }
  .border{
    font-size: 32px;
  }
  .timeline-002__content {
    display: flex;
    align-items: center;
    gap: 0 15px;
}

.timeline-002__img-wrap,
.timeline-002__balloon {
    flex-basis: 50%;
}

.timeline-002__balloon::before,
.timeline-002__balloon::after {
    top: unset;
    left: -15px;
    width: 15px;
    height: 30px;
    clip-path: polygon(0 50%, 100% 0, 100% 100%);
}

.timeline-002__balloon::after {
    top: unset;
    left: -11px;
}

.center{
  margin-left: 0;
}
.icon{
  display: block;
}
.icon div{
  padding-top: 30px;
}
.icon div:first-child {
  padding-top: 0px;
}
.icon-btn{
  margin: 0;
}
.icon-btn a{
  font-size: 28px;
}
.policy-excuse{
  margin-left: 10%;
  margin-right: 10%;
}
.header-top-menu img{
  max-width: 150px;
  margin-left: 20px;
}

.price{
  font-style: bold;
  text-align: center;
}





/*slider*/
.slider img{
  width: 100%;
}
.center{
  margin-left: 20%;
}
.slick-dots {
margin:-16px 0 0 0;
}
.slick-dots li {
  margin:0 4px;
}
.slick-dots button {
  width:12px;/*ドットボタンのサイズ*/
  height:12px;/*ドットボタンのサイズ*/
}
}