@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Kosugi+Maru&family=Mochiy+Pop+P+One&display=swap');
@import url('https://fonts.googleapis.com/css2?family=M+PLUS+1p:wght@300;400;500&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Yomogi&display=swap');



html {
  font-size: 100%;

  @media screen and (max-width: 480px) {
    font-size: 12px;
  }

  scroll-padding-top: 120px;
}


body {

  background-image: url(images/img/background_img2.jpg);

  color: #5a5a5a;

  font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif,
    Verdana, "メイリオ", "Meiryo", "ＭＳ Ｐゴシック", "MS PGothic", Sans-Serif,
    "yosugara ver12", "ads-aozora, sans-serif";

  line-height: 1.6;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  margin: 0 auto;


}

a {
  transition: 0.3s;
}

a:hover {
  opacity: 0.6;
}

/* ==============================

ここからindex.html

============================== */


/* ここからヘッダー */
body {
  font-family: "M PLUS 1p", sans-serif;
  font-weight: 300;
  font-style: normal;
}

.pc-only {
  display: block;
}

.sp-only {
  display: none;
}

header {
  background-image: url(images/illust/header_haikei.jpg);
  height: 130px;
  max-width: 1400px;
  margin: 0 auto;
  position: sticky;
  top: 0;
  z-index: 1;

}

.header_inner {

  display: flex;
  height: 100px;


}

.header_text {
  color: #555454;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.2em;
  max-width: 1400px;
  margin: 0 8%;
}


.header_logo {
  margin: 0 3%;


}

.header_logo img {
  width: 200px;
  height: auto;
}



.header_nav {
  align-items: center;
  display: flex;
  height: 100px;

  margin: 0 auto;

}

.header_nav li {
  border-right: 1px solid #a7a5a5;
  line-height: 1em;
  padding: 0 20px;
  text-align: center;
  width: 140px;
}

.header_nav li:first-child {
  border-left: 1px solid #a7a5a5;
}

.header_nav li a {
  font-family: "M PLUS 1p", sans-serif;
  font-weight: bold;
  font-style: normal;
  font-size: 13px;
  text-decoration: none;
  color: #5a5a5a;
}

.header_nav_en {
  color: #929191;
  font-family: Verdana;
  font-size: 12px;
}




.header_nav li a:hover {
  color: #f87e9c;
}

.header_nav_en:hover {
  color: #f4a8bb;
}

.info_btn {
  margin: 0 auto;
  height: 150px;

}

.info_btn img {
  height: 100%;
}

.info_btn:hover {
  box-shadow: none;
  margin-top: 5px;
}


@media screen and (max-width: 480px) {
  header {
    position: relative;
    height: fit-content;
    position: sticky;
    top: 0;
    z-index: 1;
  }

  .pc-only {
    display: none;
  }

  .sp-only {
    display: block;
    max-width: 480px;

  }

  .header_text_sp {
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.2em;
    max-width: 480px;
    text-align: center;
  }

  .header_text_sp p {
    display: inline-block;
  }

  .header_inner_sp {
    margin: 0 auto;
    max-width: 480px;
    height: fit-content;
    display: flex;
  }

  .header_logo {
    margin: 0 auto;
    width: 200px;
  }

  .header_logo img {
    width: 100%;
  }

  .hamburger {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 100;
    width: 48px;
    height: 48px;
    border: none;
    background: transparent;
    cursor: pointer;
  }

  .hamburger__line {
    position: absolute;
    left: 11px;
    width: 26px;
    height: 2px;
    background-color: #333;
    transition: all .4s;
  }

  .hamburger__line:nth-of-type(1) {
    top: 14px;
  }

  .hamburger__line:nth-of-type(2) {
    top: 23px;
  }

  .hamburger__line:nth-of-type(3) {
    top: 32px;
  }

  /* メニューオープン時 */
  .hamburger.active .hamburger__line:nth-of-type(1) {
    transform: translateY(9px) rotate(-45deg);
  }

  .hamburger.active .hamburger__line:nth-of-type(2) {
    opacity: 0;
  }

  .hamburger.active .hamburger__line:nth-of-type(3) {
    transform: translateY(-9px) rotate(45deg);
  }

  .nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 300px;
    height: 100vh;
    background-color: #fff;
    box-shadow: 2px 0 4px rgba(0, 0, 0, .1);
    transform: translateX(-100%);
    transition: transform .4s;
    z-index: 90;
  }

  .nav.active {
    transform: translateX(0);
  }

  .header_nav_sp {
    margin: 0;
    padding: 100px 0 0;
    list-style: none;
  }

  .header_nav_sp li {
    padding: 0 20px;
  }

  .nav__link {
    display: block;
    padding: 15px 0;
    color: #333;
    text-decoration: none;
    border-bottom: 1px solid #eee;
  }

  .info_btn {
    display: none;
  }

  .taiken_banner_sp {
    margin: 0 auto;
    width: fit-content;
    text-align: center;
  }

  .taiken_banner_sp img {
    width: 100%;
  }

  .taiken_banner_sp_suv {
    width: fit-content;
  }

  .taiken_banner_sp_suv img {
    width: 70%;
  }
}

.goto_top {
  max-width: 1400px;
  text-align: right;
}

.goto_top a {
  border: 1px solid #a7a6a6;
  border-radius: 20px;
  display: inline-block;
  color: #5a5a5a;
  padding: 10px 20px;
  text-decoration: none;

}

.goto_home {
  max-width: 1400px;
  text-align: center;
}

.goto_home a {
  border: 1px solid #989797;
  border-radius: 20px;
  display: inline-block;
  color: #5a5a5a;
  padding: 10px 20px;
  text-decoration: none;

}

/* ここからメイン */
.main {
  background-image: url(images/illust/mv_back.png);
  background-repeat: no-repeat;
  max-width: 1400px;
  height: 700px;
  margin-inline: auto;
  display: flex;
  justify-content: center;

}


.mv {
  position: relative;
  max-width: 700px;
  height: 500px;
  display: block;
  padding: 1.5em 1.5em 10px;

}


.mv .slider-container {
  margin: 0;
  padding: 0;

}


.slider-container {
  box-shadow: 10px 10px 4px #ccc;
  width: 700px;
  height: 500px;
  overflow: hidden;
  position: relative;
  max-width: 100%;
}

.slideimg {
  position: absolute;
  inset: 0;
  opacity: 0;
  background-size: cover;
  animation: slideAnime 25s infinite;
}

@media screen and (max-width: 480px) {
  .main {
    background-image: none;
    display: flex;
    flex-flow: column;
    max-width: 480px;
    height: auto;
    margin-inline: auto;
    margin-top: 10px;
    margin-bottom: 10px;

  }

  .mv {
    position: relative;
    max-width: 480px;
    height: 300px;
    display: block;
    padding: 1.5em 1.5em 10px;
  }

  .slider-container {
    box-shadow: 10px 10px 4px #ccc;
    width: 480px;
    height: 300px;
    overflow: hidden;
    position: relative;
    max-width: 100%;
  }
}

@keyframes slideAnime {

  0%,
  30%,
  100% {
    opacity: 0;
  }

  10%,
  20% {
    opacity: 1;
  }
}

.slideimg:nth-of-type(1) {
  background-image: url(images/img/01index/img_5441.jpg);
  animation-delay: 0s;
  background-position: 100%;
}

.slideimg:nth-of-type(2) {
  background-image: url(images/img/01index/mv_slide2piano.jpg);
  animation-delay: 5s;
  background-position: 10%;
}

.slideimg:nth-of-type(3) {
  background-image: url(images/img/01index/temoto_img.jpg);
  animation-delay: 10s;
  background-position: 0%;
}

.slideimg:nth-of-type(4) {
  background-image: url(images/img/01index/mv_piannoroom1.jpg);
  animation-delay: 15s;
  background-position: 60%;
}

.slideimg:nth-of-type(5) {
  background-image: url(images/img/01index/mv_kanban2.jpg);
  animation-delay: 20s;
  background-position: 90%;
}




.mv_text {
  flex-direction: column;
  align-content: center;
  height: 550px;
  padding: 0 30px 40px;
  max-width: 600PX;
}

.mv_text img {
  width: fit-content;
}

@media screen and (max-width: 480px) {
  .mv_text_sp {
    max-width: 480px;
    height: auto;
    margin: 20px 0 0;
  }

  .mv_text_sp img {
    width: 100%;
  }
}




/* ==========================
ここからコース紹介
============================= */

.lesson_wrapper {
  background-image: url(images/illust/lesson_wrapper_back.png);
  background-repeat: no-repeat;
  max-width: 1400px;
  margin: 80px auto;
  padding-bottom: 100px;

}

@media screen and (max-width: 480px) {
  .lesson_wrapper {
    background-image: none;
    max-width: 480px;
    margin: 0 auto 50px;
    padding-bottom: 0;
  }
}





/* ここからリトミックコース */
.rythmic_box {
  max-width: 1400px;
  margin: 0 auto 50px;
  padding: 0 10%;
}

.rythmic_box h3 {
  color: #5a5a5a;
  margin: 0 auto;
  text-decoration: none;
}

h3::after {
  background-size: contain;
  content: "";
  display: block;
  position: absolute;
  background-image: url(images/illust/midashimaru.png);
  width: 80px;
  height: 80px;
  top: -20px;
  left: -50px;

  z-index: -1;
}

.rythmic_contents {
  align-items: flex-start;
  margin: 50px auto 30px;
  display: flex;
  padding: 0 15%;
  justify-content: space-between;
  /* width: 1080px; */
}


.contents_name {
  font-family: "M PLUS 1p", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 22px;
  border-bottom: solid 0.5px #5a5a5a;
  letter-spacing: 0.01em;
  position: relative;
  display: inline-block;
  margin: 0 auto;
  text-decoration: none;

}

.link_btn {
  background-color: #86d2d3;
  border-radius: 20px;
  box-shadow: 0 4px 0 #217d80;
  color: #555454;
  display: inline-block;
  font-weight: 400;
  margin-left: 100px;
  padding: 10px 50px;
  position: relative;
  text-decoration: none;
}

.link_btn::after {
  content: '';
  border: 0;
  border-top: solid 2px #5a5a5a;
  border-right: solid 2px #5a5a5a;
  display: inline-block;
  width: 10px;
  height: 10px;
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%) rotate(45deg);

}

.link_btn:active {
  top: 4px;
  box-shadow: 0 0 0 #217d80;
}

.rythmic_box_fukidashi {
  display: inline-block;
  position: relative;
  margin: 2em 0 2em 70px;
  padding: 30px;
  background: #f7b1b1;
  border-radius: 50px;
}

.rythmic_box_fukidashi::before {
  content: "";
  position: absolute;
  left: -38px;
  width: 13px;
  height: 12px;
  bottom: 0;
  background: #f7b1b1;
  border-radius: 50%;
}

.rythmic_box_fukidashi::after {
  content: "";
  position: absolute;
  left: -24px;
  width: 20px;
  height: 18px;
  bottom: 3px;
  background: #f7b1b1;
  border-radius: 50%;
}

.rythmic_box_hosoku {
  color: #fff;
  font-family: "Kosugi Maru", sans-serif;
  font-size: large;
}



.cource_img {
  display: block;
  width: 180px;
  height: 180px;
  border: solid 3px #f4a8bb;
  border-radius: 50%;
  object-fit: cover;

}

.youji_cource {
  position: relative;
  padding: 0 50px;
  text-align: center;

}

.youji_cource a {
  display: inline-block;
  margin: 0 auto;
}



.primary_item {
  background-image: url(images/illust/line_marker_pink.png);
  background-repeat: repeat-x;
  background-size: 100% 100%;
  padding-bottom: 0.5em;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.1em;
  margin-top: 20px;
  text-align: center;
}

.primary_item_text_a {
  font-weight: 500;
  text-align: center;
}

.primary_item_text_b {
  font-weight: 500;
  text-align: left;
}

@media screen and (max-width: 480px) {
  .rythmic_box {
    max-width: 480px;
  }

  .contents_name {
    border-bottom: none;
    font-family: "M PLUS 1p", sans-serif;
    font-weight: 500;
    font-style: normal;
    font-size: 16px;
    letter-spacing: 0.01em;
    position: relative;
    display: inline-block;
    margin: 0 auto;
    text-decoration: none;
    width: 100%
  }

  h3::after {
    width: 50px;
    height: 50px;
    top: -10px;
    left: -20px;

  }

  .rythmic_link a {
    display: flex;
    justify-content: space-between;
    text-decoration: none;
  }

  .link_btn {
    font-size: 10px;
    margin: 0;
    padding: 10px;
    width: 150px;

  }

  .link_btn::after {
    width: 6px;
    height: 6px;
    right: 10px;

  }

  .rythmic_contents {
    max-width: 480px;
    display: flex;
    justify-content: center;
    padding: 0;
  }

  .youji_cource {
    padding: 0 10px;
  }

  .cource_img {
    display: block;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;

  }

  .primary_item {
    background-image: url(images/illust/line_marker_pink.png);
    background-repeat: repeat-x;
    background-size: 100% 100%;
    padding-bottom: 0.5em;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.1em;
    margin-top: 5px;
    text-align: center;
  }

  .taiken_box_index_sp {
    display: flex;
    justify-content: center;
    text-align: center;
    margin: 0 auto;
    width: fit-content;
  }

  .taiken_box_index_sp img {
    width: 110%;
  }
}



/* ここからピアノコース */
.piano_box {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 10%;
}

.piano_link h3 {
  color: #5a5a5a;
  text-decoration: none;
}

.piano_contents1 {
  margin: 50px auto;
  padding: 0 3%;
  display: flex;
  justify-content: space-between;
  /* align-items: center; */

}

.cource_p_img {
  display: block;
  width: 150px;
  height: 150px;
  border: solid 3px #fab6b6;
  border-radius: 50%;
  object-fit: cover;
}

.cource_p1_img {
  display: block;
  width: 150px;
  height: 150px;
  border: solid 3px #f1eaba;
  border-radius: 50%;
  object-fit: cover;
}

.cource_p2_img {
  display: block;
  width: 150px;
  height: 150px;
  border: solid 3px #baf1d0;
  border-radius: 50%;
  object-fit: cover;
}

.cource_p3_img {
  display: block;
  width: 150px;
  height: 150px;
  border: solid 3px #f1d4ba;
  border-radius: 50%;
  object-fit: cover;
}

.cource_p4_img {
  display: block;
  width: 150px;
  height: 150px;
  border: solid 3px #bad2f1;
  border-radius: 50%;
  object-fit: cover;
}

@media screen and (max-width: 480px) {
  .piano_box {
    max-width: 480px;
  }

  .piano_link a {
    display: flex;
    justify-content: space-between;
    text-decoration: none;

  }

  .piano_contents1 {
    align-items: flex-start;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;

  }

  .cource_p_img {
    width: 100%;
    height: 100%;
  }

  .illust .cource_p_img {
    border-radius: 1px;
  }

  .illust {
    width: 150px;
    height: 150px;
  }

  .cource_p_illust {
    width: 100%;
  }

}



/* ==========================
ここから教室案内
============================= */

.kyoshitu_contents {
  max-width: 1400px;
  margin: 50px auto;
  padding: 0 10%;
}



.plof_unit {
  display: flex;
  margin: 0 auto;
  width: 1000px;
}

.plof_ìmg {
  margin-top: 100px;
  width: 250px;


}

.plof_ìmg img {
  border-radius: 50px;
  box-shadow: 10px 10px 4px #ccc;
  width: 100%;
}

.plof_text {
  margin: 5% 0 5% 3%;
  text-align: justify;
  width: fit-content;
}

.teacher_name {
  font-size: 24px;
  margin-bottom: 20px;
  letter-spacing: 0.1em;
  line-height: 1;

}

.teacher_name_eng {
  color: #929191;
  font-size: 14px;
  font-family: Verdana;

}

.teacher_text {
  line-height: 1.8em;
  letter-spacing: 0.06em;
}

@media screen and (max-width: 480px) {
  .kyoshitu_contents {
    max-width: 480px;
    margin: 30px auto;
    padding: 0 10%;
  }

  .plof_unit {
    width: 100%;
    margin: 20px auto;
    display: flex;
    flex-direction: column;
  }

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

  .plof_ìmg {
    margin-top: 0;
    max-width: 180px;
    height: 150px;
  }

  .plof_ìmg img {
    width: 80%;

  }

  .plof_text_sp {
    align-content: center;
  }

  .teacher_name {
    font-size: 16px;
    align-content: center;
    font-weight: 400;

  }

  .teacher_name_eng {
    font-size: 11px;
  }

  .teacher_text {
    font-weight: 400;
    margin: 20px auto;
    width: 100%;
  }

  .goto_top {
    text-align: center;

  }



}



/* ==========================
ここからフッター
============================= */
footer {
  background-image: url(images/illust/footer_haikei.jpg);
}

.footer_inner {
  max-width: 1400px;
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
  padding: 0 5%;
}

.footer_logo {
  padding-top: 40px;
  width: 200px;
  margin: 0 5%;
  height: auto;
  text-align: center;
}

.footer_logo_hosoku {
  display: inline-block;
  width: 100%;
  font-size: 12px;
  letter-spacing: 0.1em;

}

.footer_logo img {
  width: 200px;
}

.footer_info {
  padding-top: 40px;
}

.footer_copy {
  margin: 20px auto 0;
  text-align: center;
}

.footer_add_wrapper {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  height: 180px;
}

.footer_add_content {
  display: flex;
  align-items: center;
  width: 250px
}

.footer_map {
  width: 300px;
  position: relative;
  padding-top: 56.25%;
}

.footer_map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 60%;
}


.footer_tel {
  margin: 10px auto;
}

.footer_tel::before {
  content: '';
  display: inline-block;
  width: 15px;
  height: 15px;
  background-image: url(images/illust/call_24dp_1F1F1F_FILL0_wght400_GRAD0_opsz24.png);
  background-size: contain;
  vertical-align: middle;
}

.footer_insta {
  font-size: 15px;
  font-weight: 400;
  margin: 0 5%;
  padding: 50px 50px 0;
  text-align: center;
  width: 200px;
}

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

.insta_img img {
  width: 70%;
}

@media screen and (max-width: 480px) {
  footer {
    background-image: url(images/illust/footer_haikei.jpg);
    height: 300px;
    max-width: 480px;
    margin: 0 auto;
  }

  .footer_inner {
    max-width: 480px;
    height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin: 0 auto;

  }

  .footer_logo_sp {
    display: flex;
    height: 100px;
    padding: 0;
    margin: 0 auto;
    max-width: fit-content;

  }


  .footer_logo_img_sp {
    max-width: 180px;
    margin: 20px auto;
  }

  .footer_logo_img_sp img {
    width: 100%;
    height: 100%;
  }

  .footer_insta {
    font-size: 10px;
    height: 100px;
    margin: 20px;
    padding: 0;
    max-width: 50px;

  }

  .footer_insta a img {
    height: 100%;
  }

  .footer_info {
    margin: 0 auto;
    padding: 0;
    text-align: center;
  }

  .footer_add_wrapper {
    display: flex;
    height: 200px;
    text-align: center;
  }

  .footer_add_content {
    width: 100px;
    height: 100%;
    display: flex;
    flex-direction: column;
    margin: 50px 10px;
    text-align: center;
  }

  .footer_add_content p {
    font-size: 10px;
    display: inline-block;
    margin: 0 auto;
  }

  .footer_map {
    max-width: 230px;
    max-height: 190px;
    position: relative;
    padding-top: 56.25%;
    margin: 0 auto;
  }

  .footer_map iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }

}


/* ==================================

ここからrythmiclesson.html

=================================== */

/* メインページ以外共通ヘッダー */
.header_inner_suv {
  height: 120px;
  display: flex;
  justify-content: space-between;
  font-weight: bold;
  align-items: center;
  padding: 60px auto;
  position: relative;
  max-width: 1400px;
  margin: 30px auto 30px;
  z-index: 999;
}

.header_logo_suv {
  margin: 0 3%;


}

.header_logo_suv img {
  width: 180px;
  height: auto;
}

.header_nav_suv {
  display: flex;
  margin: 0 auto;
  padding-right: 3%;
}



.header_nav_suv li {
  border-right: 1px solid #a7a5a5;
  padding: 0 15px;
  text-align: center;
  width: 150px;

}

.header_nav_suv li:first-child {
  border-left: 1px solid #a7a5a5;
}

.header_nav_suv li a {
  font-family: "M PLUS 1p", sans-serif;
  font-weight: bold;
  font-style: normal;
  font-size: 13px;
  text-decoration: none;
  color: #5a5a5a;
}

.header_nav_suv li a:hover {
  color: #ab5115;
}

.info_btn_suv {
  margin: 0 auto;
  height: 150px;

}

.info_btn_suv img {
  height: 100%;
}

.info_btn_suv:hover {
  box-shadow: none;
  margin-top: 5px;
}


/* ここからリトミックとは */

#rythmic_lesson {
  background-image: url(images/illust/rythmic_lesson_back.png);
  background-repeat: no-repeat;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 8%;
  font-weight: 400;
}


.rythmic_about_midashi {

  font-size: 26px;
  font-weight: 500;
  letter-spacing: 0.1em;
  padding: 50px 0;
  position: relative;
  text-align: center;
  background-image: url(images/illust/rythmic_about_midashi_back.png);
  background-repeat: no-repeat;
  background-position: center;
  /* background-size: 30% 100%; */


}

.rythmic_about {

  margin-bottom: 100px;
  display: flex;
  justify-content: space-between;
}

.rythmic_lbox1 {
  margin: 0 20px;
}

.rythmic_lbox2 {
  margin: 0 30px;
}


.rythmicimg_box4 {
  width: 250px;
  position: relative;
  margin: 0;
}

.img_out1 {
  border: 1px solid #F9D6CB;
  width: 103%;
  height: 70%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  box-sizing: border-box;
  z-index: 1;
  border-radius: 57% 43% 65% 35% / 42% 57% 43% 58%;
}

.img_out2 {
  border: 1px solid #afeeee;
  width: 100%;
  height: 70%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  box-sizing: border-box;
  z-index: 1;
  border-radius: 57% 43% 65% 35% / 42% 57% 43% 58%;
}



.rythmicimg4 {
  border-radius: 500px;
  width: 100%;

}

.img_out3 {
  border: 1px solid #F9D6CB;
  width: 103%;
  height: 102%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  box-sizing: border-box;
  z-index: 2;
  border-radius: 57% 43% 65% 35% / 42% 57% 43% 58%;
}

.img_out4 {
  border: 1px solid #afeeee;
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  box-sizing: border-box;
  z-index: 2;
  border-radius: 57% 43% 65% 35% / 42% 57% 43% 58%;
}

.rythmicimg_box2 {
  width: 250px;

  position: relative;
  margin: 0;
}

.rythmicimg2 {
  border-radius: 500px;
  width: 100%;
}

.img_out3 {
  border: 1px solid #F9D6CB;
  width: 103%;
  height: 102%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  box-sizing: border-box;
  z-index: 2;
  border-radius: 57% 43% 65% 35% / 42% 57% 43% 58%;
}

.img_out4 {
  border: 1px solid #afeeee;
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  box-sizing: border-box;
  z-index: 2;
  border-radius: 57% 43% 65% 35% / 42% 57% 43% 58%;
}

.rythmicimg_box3 {
  width: 250px;
  position: relative;
  margin: 50px 0;
}

.rythmicimg3 {
  border-radius: 500px;
  width: 100%;
}

.img_out5 {
  border: 1px solid #F9D6CB;
  width: 103%;
  height: 102%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  box-sizing: border-box;
  z-index: 2;
  border-radius: 57% 43% 65% 35% / 42% 57% 43% 58%;
}

.img_out6 {
  border: 1px solid #afeeee;
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  box-sizing: border-box;
  z-index: 2;
  border-radius: 57% 43% 65% 35% / 42% 57% 43% 58%;
}


.rysmic_1 {

  letter-spacing: 0.1em;
  line-height: 1.8;
  margin: 0 auto 10px;
  max-width: 400px;
  padding: 0 10px;
  text-align: justify;
}

.rysmic_2 {
  letter-spacing: 0.1em;
  margin: 0 auto 10px;
  max-width: 400px;
  padding: 0 10px;
  text-align: justify;
}

@media screen and (max-width: 480px) {
  #rythmic_lesson {
    background-image: none;
  }

  .rythmic_about_sp {
    max-width: 480px;
    text-align: center;
    margin-bottom: 80px;
  }

  .rythmic_about_midashi {
    display: inline-block;
    font-size: 20px;
    font-weight: 500;
    letter-spacing: 0.1em;
    padding: 0;
    margin: 30px auto;
    position: relative;
    background-image: url(images/illust/line_marker_pink.png);
    background-repeat: no-repeat;
    background-size: cover;
  }

  .rythmic_about1 {
    /* display: flex;
    justify-content: center; */
    margin-bottom: 30px;
  }

  .rythmic_lbox1 {
    float: right;
    min-width: 100px;
    max-width: 150px;
    margin: 0;
  }

  .rythmic_about_text {
    min-width: 140px;


  }



  .img_out1 {
    border: 1px solid #F9D6CB;
    width: 103%;
    height: 102%;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    box-sizing: border-box;
    /* z-index: 1; */
    border-radius: 57% 43% 65% 35% / 42% 57% 43% 58%;
  }

  .img_out2 {
    border: 1px solid #afeeee;
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    box-sizing: border-box;
    /* z-index: 2; */
    border-radius: 57% 43% 65% 35% / 42% 57% 43% 58%;
  }

  .rythmicimg_box4 {

    width: 100%;
    position: relative;
    margin: 0;
  }

  .rysmic_1 {
    letter-spacing: 0.1em;
    line-height: 1.8;
    margin: 0;
    width: 100%;
    padding: 0 10px;
    text-align: justify;
  }

  .rythmic_about2 {
    display: flex;
    justify-content: center;
    margin-bottom: 50px;
  }

  .rysmic_2 {
    letter-spacing: 0.1em;
    line-height: 1.8;
    margin: 0 auto 10px;
    max-width: 280px;
    padding: 0 10px;
    text-align: justify;
  }

  .rythmic_lbox2 {
    min-width: 100px;
    max-width: 150px;
    margin: 0 auto;
  }

  .rythmicimg_box2 {
    width: 100%;
    position: relative;
    margin: 0 0 20px 0;
  }

  .img_out3 {
    border: 1px solid #F9D6CB;
    width: 103%;
    height: 102%;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    box-sizing: border-box;
    /* z-index: 2; */
    border-radius: 57% 43% 65% 35% / 42% 57% 43% 58%;
  }

  .img_out4 {
    border: 1px solid #afeeee;
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    box-sizing: border-box;
    /* z-index: 3; */
    border-radius: 57% 43% 65% 35% / 42% 57% 43% 58%;

  }

  .rythmicimg_box3 {
    width: 100%;
    position: relative;
    margin: 0;

  }

  .img_out5 {
    border: 1px solid #F9D6CB;
    width: 103%;
    height: 102%;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    box-sizing: border-box;
    /* z-index: 2; */
    border-radius: 57% 43% 65% 35% / 42% 57% 43% 58%;
  }

  .img_out6 {
    border: 1px solid #afeeee;
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    box-sizing: border-box;
    /* z-index: 3; */
    border-radius: 57% 43% 65% 35% / 42% 57% 43% 58%;
  }

}




/* ここまでリトミックとは */



/* ここからレッスン案内 */
#rythmic_youji {
  margin: 150px auto;
}

.rythmic_lesson_about {
  max-width: 1400px;
}

.boxname {
  background-image: url(images/illust/line_marker_pink.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% 100%;
  display: inline-block;
  font-size: 24px;
  font-weight: 500;
  padding: 10px;
}

.rythmic_box_youji {
  display: flex;
  margin-top: 10px;

}

.youjirythmic_box_contents {
  margin-top: 30px;
  margin-left: 30px;
  line-height: 1.8em;
}

.rythmic_youji_contents li {
  font-weight: bold;
  letter-spacing: 0.1em;
  line-height: 2em;
}

.rythmic_youji_contents_hosoku {
  letter-spacing: 0.1em;
  text-align: justify;
}


#rythmic_1-2saiji {
  margin: 150px auto;

}

.rythmic_box_1-2saiji {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
}



.youjirythmic_img2 {
  width: 400px;
  margin-top: 30px;
  /* padding-right: 50px; */
}


.youjirythmic_img2 img {
  border: 3px solid #ffaaaa;
  border-radius: 500px;
  width: 100%;

}

.rythmic_box_1-2saiji2 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 auto;
  max-width: 800px;
}

.doremi-img {
  width: 250px;

}

.doremi-img img {
  border: 3px solid #ffaaaa;
  border-radius: 500px;
  width: 250px;
}

.rythmic_box_youji2 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 50px auto 0;
  max-width: 800px;
  height: 240px;
  position: relative;
}

.rythmic-info {
  max-width: 1400px;
  margin-top: 20px;
  text-align: center;
}

.rythmic-info img {
  width: 80%;
}

.rythmic_caption1 {
  position: absolute;
  top: -40px;
  right: -80px;

}

.melody-img {
  width: 300px;

}

.melody-img img {
  border: 3px solid #ffaaaa;
  border-radius: 500px;
  width: 300px;
}




@media screen and (max-width: 480px) {
  #rythmic_youji {
    height: fit-content;
    margin: 40px auto;
    max-width: 480px;

  }

  .boxname {
    font-size: 18px;
    padding: 0;
  }

  .rythmic_box_youji {
    display: flex;
    flex-direction: column;
    position: relative;
    text-align: center;
  }

  .rythmic_box_youji2_sp {
    max-width: 480px;
    margin: 20px auto 100px;
    position: relative;
  }

  .melody-img_sp {
    max-width: 180px;
    position: absolute;
    top: 70px;
    right: -20px;
  }

  .melody-img_sp img {
    border: 3px solid #ffaaaa;
    border-radius: 500px;
    width: 100%;
  }

  .rythmic_caption1 {
    width: 130px;
    position: absolute;
    top: 20px;
    right: -30px;
  }

  .rythmic_caption1_sp img {
    width: 100%;
  }

  .rythmic_caption1 img {
    width: 100%;
  }


  #rythmic_1-2saiji {
    margin: 40px auto;
    position: relative;

  }

  .rythmic_box_1-2saiji {
    display: flex;
    flex-direction: column;
    text-align: center;
  }

  .youjirythmic_img2_sp {
    width: 300px;
    display: inline-block;
    margin: 0 auto;
    padding: 0;
  }

  .youjirythmic_img2_sp img {
    border: 3px solid #ffaaaa;
    border-radius: 500px;
    width: 100%;

  }

  .youjirythmic_box_contents {
    margin: 0 auto;
  }

  .rythmic_box_1-2saiji2 {
    max-width: 480px;
    margin: 20px auto;

  }

  .doremi-img {
    max-width: 150px;
  }

  .doremi-img img {
    width: 100%;
  }

  .rythmic-info img {
    width: 110%;
  }
}


/* ここまでレッスン案内 */


/* ==================================

ここからpianolesson.html

=================================== */

#piano_lesson {
  /* max-height: 4000px; */
  max-width: 1400px;
  margin: 50px auto;
  padding: 0 10%;
}


.piano_lesson_info_box {
  display: flex;
  margin: 30px auto;
  position: relative;
  width: 1200px;
}

.piano_lesson_backimg {
  position: absolute;
  top: 0px;
  right: 0;
}

.piano_lesson_info {
  margin-bottom: 50px;
  text-align: center;

}

.piano_lesson_info_01 {
  font-weight: 400;
  /* font-size: large; */
  line-height: 2em;
  margin: 20px auto;
  text-align: justify;
  max-width: 500px;

}

.recital_btn_box {
  text-align: center;
  margin: 30px auto;
}

.recital_btn {
  background: linear-gradient(#fed6e3 0%, #ffaaaa 100%);
  border-radius: 50px;
  font-weight: 500;
  display: inline-block;
  position: relative;
  padding: 10px 20px;
  margin: 10px auto;
  box-shadow: 0 1px 1px #00000047;
}

.recital_btn a {
  color: #fbf7f7;
  font-weight: 500;
  text-decoration: none;
}

.piano_lesson_fee {
  font-weight: 600;

  line-height: 2em;
  margin: 10px auto;
  text-align: justify;
  max-width: 500px;

}


.lesson_fee_hosoku {
  /* font-size: 14px; */
  font-weight: 400;

}

.lesson_fee_btn_text {
  font-weight: 400;
  line-height: 2em;
  margin: 0 auto;
  text-align: center;
  max-width: 500px;
}

.lesson_fee_btn {
  background: linear-gradient(#fed6e3 0%, #ffaaaa 100%);
  border-radius: 50px;
  font-weight: 500;
  display: inline-block;
  position: relative;
  padding: 10px 20px;
  margin: 10px auto;
  box-shadow: 0 1px 1px #00000047;

}

.lesson_fee_btn a {
  color: #fbf7f7;
  font-weight: 500;
  text-decoration: none;
}

.lesson_fee_btn:active {
  -webkit-transform: translateY(4px);
  transform: translateY(4px);
  box-shadow: 0px 0px 1px rgba(0, 0, 0, 0.2);
  border-bottom: none;
}


.piano_lesson_info_img {
  width: 300px;
  margin: auto 30px;
}

.piano_lesson_info_img img {
  width: 100%;
}

@media screen and (max-width: 480px) {
  #piano_lesson {
    max-width: 480px;
    margin: 50px auto;
  }

  .piano_lesson_wrap {
    max-width: 480px;
    height: fit-content;
  }

  .piano_lesson_info_box {
    margin-bottom: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;

  }

  .piano_lesson_info_01 {
    letter-spacing: 0.01em;
    margin-bottom: 0;

  }

  .piano_lesson_info {
    margin-bottom: 0;
    text-align: center;
    width: 250px;
  }


  .piano_lesson_info_img {
    margin: 20px 0;
    width: 150px;
  }

  .piano_lesson_fee_sp {
    width: 100%;
    text-align: center;
  }

}


/* ここからクラス案内 */
.piano_lesson_l_box {
  font-weight: 400;
  height: 2600px;
  position: relative;
  margin: 0 auto;
  padding: 50px 10%;
  max-width: 1400px;
}

#content-youji {
  height: 500px;
  margin: 80px auto;
  width: 1000px;
  position: absolute;
  top: 0;
  left: 0;

}

#content-syougakusei {
  height: 300px;
  margin: 50px auto;
  width: 1000px;
  position: absolute;
  top: 650px;
  right: 0;
}

#content-tyuugakusei {
  height: 300px;
  margin: 50px auto;
  width: 1000px;
  position: absolute;
  top: 1150px;
  left: 0;

}

#content-sinia {
  height: 300px;
  margin: 50px auto;
  width: 1000px;
  position: absolute;
  top: 1650px;
  right: 0;

}

#content-onelesson {
  height: 300px;
  margin: 50px auto;
  width: 1000px;
  position: absolute;
  top: 2150px;
  left: 0;

}


.piano_lesson_about_box {
  display: flex;
  margin-top: 30px;

}

.piano_youji_lesson_extra {
  background-color: #e3f5eb;
  display: inline-block;
  padding: 20px;
  margin-left: 5%;
}


.one_lesson_fee {
  font-size: large;
  font-weight: bold;
  margin-bottom: 10px;
}

.piano_lesson_img {
  width: 330px;
  height: 300px;
  margin: 0 0 40px 5%;
  box-shadow: 10px 10px 4px #ccc;

}

.piano_lesson_img img {

  width: 100%;
  height: 100%;
}


.piano_lesson_about {
  letter-spacing: 0.04em;
  line-height: 2em;
  align-content: center;
  max-width: 600px;
  height: fit-content;
  margin-left: 30px;
  padding: 0 20px;
  text-align: justify;

}

@media screen and (max-width: 480px) {
  .piano_lesson_l_box {
    max-width: 480px;
    margin: 0 auto;
    height: fit-content;
    padding: 0;
  }

  #content-youji {
    width: 100%;
    margin: 30px auto;
    height: fit-content;
    position: static;
  }



  .piano_lesson_about_box {
    display: block;
    width: 100%;
  }

  .piano_lesson_img {

    width: 200px;
    height: 200px;
    /* box-shadow: none; */
    margin: 0 15px 15px 0;
  }

  .piano_lesson_img img {
    /* border-radius: 500px; */
    width: 100%;
  }

  .piano_lesson_about {
    height: auto;
    margin: 0 auto;
  }

  #content-syougakusei {
    height: 650px;
    width: 100%;
    margin: 30px auto;
    position: static;
  }



  #content-tyuugakusei {
    height: fit-content;
    width: 100%;
    margin: 30px auto;
    position: static;
  }



  #content-sinia {
    height: fit-content;
    width: 100%;
    position: static;
  }



  #content-onelesson {
    height: fit-content;
    width: 100%;
    position: static;
  }



}




/* ここからお月謝について */

#lesson_fee {
  margin-top: 200px;
}

.lesson_fee_table {
  margin: 100px auto;
  text-align: center;
}

.lesson_fee_table_box {
  margin: 0 auto;
  border-collapse: collapse;
  table-layout: fixed;
  width: 95%;
  font-weight: 400;
  text-align: center;
}

.lesson_fee_table_box thead th {
  padding: 1em .8em;
  border-right: 2px solid#fff;

}

.lesson_fee_table_box thead th:not(:first-child) {
  background: #fad4f0;
  font-size: 1.1rem;
  border-radius: 15px 15px 0 0;
  padding: 0.5em;
  justify-content: center;
  vertical-align: middle;
}


.lesson_fee_table_box tbody td:not(:first-child) {
  background-color: #fdfdfd;
  border-left: 2px solid #babcbc;
  border-bottom: 2px solid #babcbc;
  /* font-size: 0.9rem; */
  padding: 10px 3px;
  vertical-align: middle;
}

.lesson_fee_table_box tbody td {
  height: 80px;
}


.lesson_fee_table_box tbody td:first-child {
  background: #fad4f0;

  font-size: 1.1rem;
  font-weight: bold;
  border-bottom: 2px solid#fff;
  border-right: 2px solid#fff;
  border-radius: 15px 0 0 0;
  padding: 0.5em;
  justify-content: center;
  vertical-align: middle;

}

.lesson_fee_table_box tbody td:last-child {
  border-right: 2px solid#babcbc;
}

.lesson_fee_table_hosoku {

  font-weight: 400;
  display: inline-block;
  text-align: left;
  width: 800px;
}

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


.piano_lesson_extra {
  font-size: large;
  margin: 100px auto;
  text-align: left;
  line-height: 2em;
  font-weight: bold;
}

.piano_lesson_extra_01 {
  display: inline-block;
}

@media screen and (max-width: 480px) {
  #lesson_fee {
    margin-top: 50px;
  }

  .lesson_fee_table_box_sp {
    margin: 20px auto 0;
    border-collapse: collapse;
    table-layout: fixed;
    width: 95%;
    font-size: 11px;
    font-weight: 400;
    text-align: center;
  }

  .lesson_fee_table_box_sp thead th {
    padding: 1em .8em;
    border-right: 2px solid#fff;

  }

  .lesson_fee_table_box_sp thead th:not(:first-child) {
    background: #fad4f0;
    font-size: 10px;
    border-radius: 15px 15px 0 0;
    padding: 1.5em 0.5em;
    justify-content: center;
    vertical-align: middle;
  }


  .lesson_fee_table_box_sp tbody td:not(:first-child) {
    background-color: #fdfdfd;
    border-left: 2px solid #babcbc;
    border-bottom: 2px solid #babcbc;
    font-size: 10px;
    padding: 10px 3px;
    vertical-align: middle;
  }

  .lesson_fee_table_box_sp tbody td:first-child {
    background: #fad4f0;

    font-size: 10px;
    font-weight: bold;
    border-bottom: 2px solid#fff;
    border-right: 2px solid#fff;
    border-radius: 15px 0 0 0;
    padding: 0.5em;
    justify-content: center;
    vertical-align: middle;

  }

  .lesson_fee_table_box_sp tbody td:last-child {
    border-right: 2px solid#babcbc;
  }



}

/* =======================================

ここからrecital.html（発表会）

======================================= */



.happyoukai_contents {

  max-width: 1200px;
  margin: 50px auto;

}



.happyoukai_box {

  display: flex;
  justify-content: center;
  height: 500px;
  position: relative;
  margin: 10px auto;
  width: 1200px;
}

.happyoukai_box_text {
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 2em;
  max-width: 500px;
  margin: 50px 50px 10px 0;
  padding: 0 5%;
  text-align: justify;

}


.happyoukai_box_textimg1 {
  margin: 30px 50px 0;
  width: 500px;
  height: fit-content;
  position: relative;

}

.happyoukai_box_textimg1 img {
  border-radius: 30px;
  width: 100%;

}

/* .piano_img_out1 {
  border: 2px solid #dac269;
  width: 95%;
  height: 93%;
  display: block;
  position: absolute;
  top: 8px;
  left: 8px;
  box-sizing: border-box;
  z-index: 0;
  border-radius: 25px;
} */


.happyoukai_box_textimg2 {
  position: relative;
  bottom: 150px;
  left: 300px;
  width: 250px;
}

.img_out7 {
  border: 1px solid #F9D6CB;
  width: 103%;
  height: 102%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  box-sizing: border-box;
  /* z-index: 1; */
  border-radius: 57% 43% 65% 35% / 42% 57% 43% 58%;
}

.img_out8 {
  border: 1px solid #afeeee;
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  box-sizing: border-box;
  /* z-index: 2; */
  border-radius: 57% 43% 65% 35% / 42% 57% 43% 58%;
}



.happyoukai_box_textimg2 img {
  border-radius: 500px;
  width: 100%;
}

@media screen and (max-width: 480px) {
  .happyoukai_contents {
    font-weight: 400;
    font-size: 11px;
    letter-spacing: 0.02em;
    line-height: 1.5em;
    max-width: 480px;
    margin: 50px 20px 50px;
  }

  .happyoukai_box_sp {
    width: 100%;
    display: flex;
    flex-direction: column;
    margin: 20px;
  }

  .contents_name_sp {
    border-bottom: none;
    font-family: "M PLUS 1p", sans-serif;
    font-weight: 500;
    font-style: normal;
    font-size: 18px;
    letter-spacing: 0.01em;
    position: relative;
    display: inline-block;
    margin-left: 30px;
    text-decoration: none;

  }

  .happyoukai_box_text_sp {

    /* max-width: 240px; */
    margin-right: 20px;
    text-align: justify;

  }

  .happyoukai_box_img_wrap {
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .happyoukai_box_textimg1_sp {
    position: relative;
    height: auto;
    margin: 5%;
    width: 100%
  }

  .happyoukai_box_textimg1_sp img {
    border-radius: 20px;
    width: 120%;
  }

  /* .piano_img_out1_sp {
    border: 1px solid #dac269;
    width: 93%;
    height: 86%;
    display: block;
    position: absolute;
    top: 4px;
    left: 4px;
    box-sizing: border-box;
    z-index: 0;
    border-radius: 15px;
  } */

  .happyoukai_box_textimg2_sp {
    position: relative;
    height: auto;
    margin: 5%;
    width: 100%;

  }

  .happyoukai_box_textimg2_sp img {
    border-radius: 500px;
    width: 100%;
  }

}


/* ここからピアノ演奏 */


.happyoukai_piano_box {
  font-weight: 400;
  line-height: 2em;
  letter-spacing: 0.02em;
  height: 700px;
  margin: 10px auto 150px;
  max-width: 1200px;
  position: relative;
  text-align: justify;

}

.happyoukai_piano_text {

  position: absolute;
  width: 400px;
}

.happyoukai_title {
  background-image: url(images/illust/line_marker_pink.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: bottom;
  display: inline-block;
  font-size: x-large;
  font-weight: 400;
  padding: 10px;
  margin-bottom: 20px;

}



.piano_youji {
  position: absolute;
  right: 450px;
  top: 170px;
  width: 350px;
}

.piano_youji img {
  width: 100%;
  border-radius: 500px;

}

.piano_rendan {
  position: absolute;
  bottom: -150px;
  right: 150px;
  width: 400px;
}

.piano_rendan img {
  width: 100%;
  /* border-radius: 500px; */
}


.piano_kojin02 {
  position: absolute;
  bottom: 10px;
  left: 0px;

  width: 350px;
}

.piano_kojin02 img {
  width: 100%;
  border-radius: 500px;
}

.piano_kojin03 {
  position: absolute;
  top: 50px;
  right: 50px;

  width: 350px;
}

.piano_kojin03 img {
  width: 100%;
  /* border-radius: 500px; */
}

@media screen and (max-width: 480px) {
  .happyoukai_piano_box {
    position: static;
    max-width: 480px;
    margin: 50px auto;
    height: auto;
  }

  .happyoukai_title {
    font-size: large;
    margin-bottom: 0;
  }

  .happyoukai_box_spwrap {
    margin: 5%;
    width: 100%;
  }

  .happyoukai_piano_box_sp1 {
    width: 100%;

  }



  .piano_youji {
    position: static;
    width: 100%;

  }



  .happyoukai_piano_box_sp2 {
    max-width: 480px;
    display: grid;
    grid-template-columns: 1fr 1fr;

  }


  .piano_rendan {
    position: static;
    width: 100%;
  }

  .piano_kojin02 {
    position: static;
    width: 100%;
  }

  .piano_kojin03 {
    position: static;
    width: 100%;
  }

}

/* ここから合奏・合唱 */


.happyoukai_gassou_box {
  height: 900px;
  margin: 0 auto;
  max-width: 1200px;
  padding-top: 100px;
  position: relative;
}

.happyoukai_gassou_text {
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 2em;
  position: absolute;
  text-align: justify;
  width: 400px;

}

.gassou_img {
  position: absolute;
  top: 150px;
  right: 100px;
  max-width: 550px;
}

.gassou_img img {
  border-radius: 500px;
  width: 100%;
}

.gassyou_img {
  position: absolute;
  bottom: 50px;
  left: 150px;
  max-width: 500px;
}

.gassyou_img img {
  border-radius: 500px;
  width: 100%;
}

@media screen and (max-width: 480px) {
  .happyoukai_gassou_box {
    position: static;
    max-width: 480px;
    margin: 50px auto;
    height: auto;
    padding-top: 0;
  }

  .happyoukai_gassou_text {
    margin: 0 auto;
    position: static;
    width: 100%;
  }

  .happyoukai_gassou_title_suv {
    width: 100%;
  }

  .gassou_img_wrap_sp {
    max-width: 480px;
    display: flex;
    flex-direction: column;
    text-align: center;

  }

  .gassou_img_sp {
    padding-top: 20px;
    max-width: fit-content;
  }

  .gassou_img_sp img {
    width: 80%;
  }

  .gassyou_img_sp {
    max-width: fit-content;
  }

  .gassyou_img_sp img {
    width: 80%;
  }
}


/* ここからリトミック */
.happyoukai_rythmic_box {
  height: 600px;
  margin: 100px auto 0;
  max-width: 1200px;
  position: relative;
}

.happyoukai_rythmic_text {
  font-weight: 400;
  line-height: 2em;
  position: absolute;
  text-align: justify;
  width: 400px;

}

.happyoukai_rythmic_title_suv {
  font-weight: 400;
  line-height: 2em;
  position: absolute;
  text-align: justify;
  width: 400px;

}


.rythmic_youji1 {
  position: absolute;
  right: 350px;
  top: 30px;
  width: 350px;
}

.rythmic_youji1 img {
  width: 100%;
  border-radius: 500px;

}

.rythmic_youji2 {
  position: absolute;
  bottom: 0px;
  right: 0px;
  width: 350px;
}

.rythmic_youji2 img {
  width: 100%;
}


.rythmic_youji3 {
  position: absolute;
  bottom: -60px;
  left: 150px;
  width: 350px;
}

.rythmic_youji3 img {
  width: 100%;

}

@media screen and (max-width: 480px) {
  .happyoukai_rythmic_box {
    display: flex;
    flex-direction: column;
    position: static;
    max-width: 480px;
    margin: 50px auto;
    height: auto;
    padding-top: 0;
  }

  .happyoukai_rythmic_text {
    width: 100%;
    position: static;

  }

  .happyoukai_rythmic_title_suv {
    position: static;
    width: 100%;
  }

  .happyoukai_rithmic_img_sp {
    max-width: 480px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 200px 200px;
    margin-top: 20px;

  }

  .rythmic_youji1sp {
    width: 100%;
  }

  .rythmic_youji1sp img {
    width: 100%;
  }

  .rythmic_youji2sp {
    width: 100%;
  }

  .rythmic_youji2sp img {
    width: 100%;
  }

  .rythmic_youji3sp {

    grid-column: 1/3;
    height: 200px;
    margin: 0 auto;

  }

  .rythmic_youji3sp img {
    height: 100%;
  }
}



/* ここから表彰式 */
.happyoukai_hyousyousiki_box {
  display: flex;
  justify-content: space-between;
  max-width: 1200px;
  margin: 200px auto 0;
  position: relative;
}

.happyoukai_hyousyousiki_text {
  width: 400px;
}

.happyoukai_hyousyousiki_title_suv {
  font-weight: 400;
  line-height: 2em;

  text-align: justify;
  width: 400px;
}

.gakuhu_img {
  position: absolute;
  bottom: -70px;
  left: 400px;
  width: 400px;
}

.gakuhu_img img {
  width: 100%;
}

.hyousyousiki_img {
  max-width: 450px;
  margin-right: 50px;
}

.hyousyousiki_img img {

  width: 100%;
}

@media screen and (max-width: 480px) {
  .happyoukai_hyousyousiki_box {
    display: flex;
    flex-direction: column;
    position: static;
    max-width: 480px;
    margin: 0 auto;
  }

  .happyoukai_hyousyousiki_text {
    width: 100%;
  }

  .happyoukai_hyousyousiki_title_suv {
    width: 100%;
  }

  .hyousyousiki_img_sp {
    width: 100%;
  }

  .hyousyousiki_img_sp img {
    width: 100%;
  }
}

/* ここから手話 */
.happyoukai_syuwa_box {
  display: flex;
  justify-content: space-between;
  max-width: 1200px;
  margin: 200px auto 0;

}

.happyoukai_syuwa_text {
  width: 400px;
}

.happyoukai_syuwa_title_suv {
  font-weight: 400;
  line-height: 2em;
  text-align: justify;
  width: 400px;
}

.syuwa_img {
  margin: 0 150px 0 50px;
  width: 500px;
}

.syuwa_img img {

  width: 100%;
}

@media screen and (max-width: 480px) {
  .happyoukai_syuwa_box {
    display: flex;
    flex-direction: column;
    position: static;
    max-width: 480px;
    margin: 0 auto;
  }

  .happyoukai_syuwa_text {
    width: 100%;
  }

  .happyoukai_syuwa_title_suv {
    width: 100%;
  }

  .syuwa_img {
    width: 100%;
    margin: 0 auto;
  }

  .syuwa_img img {
    width: 100%;
  }
}

/* ==================================

ここからreview.html(生徒さんの声）

================================== */


.review {
  margin: 30px auto;
  width: 1080px;
}

.review_box {
  background-image: url(images/illust/suv_back.png);
  background-size: contain;
  margin: 30px auto;
}

.review_01 {
  background-color: #fafaf4;
  border-radius: 30px;
  padding: 30px;
  margin: 10px auto;
  width: 800px;
}

.review_01_name {
  background: linear-gradient(transparent 60%, #cce5e3 0%);
  border-radius: 6px;
  display: inline-block;
  font-size: 20px;
  font-weight: 500;
}

.review_01_text {
  font-weight: 400;
  margin: 30px;
}

@media screen and (max-width: 480px) {
  .review_sp {
    max-width: 480px;
    margin: 20px auto;

  }

  .review_box {
    max-width: fit-content;
  }

  .review_01 {
    width: 100%;
  }

  .review_01_name {
    font-size: large;
  }

  .review_01_text {
    margin: 10px;
  }
}

/* ===============================

ここからcontact.html(お問い合わせ)

================================ */

.wrapper {
  padding: 0 10%;
  margin: 100px auto;
}

.subv {
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
}

.subv h1 {
  font-size: x-large;
}

.contact_text {
  font-weight: 400;
  margin: 0 auto;
  width: 800px;
  text-align: justify;
}

.contact_text_01 {
  display: inline-block;
  line-height: 2em;
  letter-spacing: 0.1em;

}

.contact_text_02 {
  line-height: 2em;
  letter-spacing: 0.1em;
  margin-top: 20px;

}

.contact_text_03 {
  background-color: #fbc7b1;
  display: inline-block;
  font-weight: 600;
  line-height: 2em;
  letter-spacing: 0.1em;
  margin: 20px 100px;
  padding: 10px 20px;
  text-align: center;
  width: 600px;

}

.contact_text_04 {
  display: inline-block;
  line-height: 2em;
  letter-spacing: 0.1em;
  margin-top: 20px;

}

.Form {
  margin-top: 80px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 80px;
  max-width: 720px;
}

@media screen and (max-width: 480px) {
  .wrapper {
    max-width: fit-content;
    margin: 30px auto;
  }

  .contact_page {
    max-width: fit-content;
  }

  .Form {
    margin-top: 40px;
    max-width: 480px;
  }

  .Form iframe {
    width: 100%;
  }

  .contact_text {
    width: 100%;
    font-size: 10px;
  }

  .contact_text_03 {
    margin: 0 auto;
    width: 100%;
  }
}

.Form-Item {
  /* border-top: 1px solid #ddd; */
  padding-top: 24px;
  padding-bottom: 24px;
  width: 100%;
  display: flex;
  align-items: center;
}

@media screen and (max-width: 480px) {
  .Form-Item {
    padding-left: 14px;
    padding-right: 14px;
    padding-top: 16px;
    padding-bottom: 16px;
    flex-wrap: wrap;
  }
}

/* .Form-Item:nth-child(5) {
  border-bottom: 1px solid #ddd;
} */

.Form-Item-Label {
  width: 100%;
  max-width: 248px;
  letter-spacing: 0.05em;
  font-weight: bold;
  font-size: 18px;
}

@media screen and (max-width: 480px) {
  .Form-Item-Label {
    max-width: inherit;
    display: flex;
    align-items: center;
    font-size: 15px;
  }
}

.Form-Item-Label.isMsg {
  margin-top: 8px;
  margin-bottom: auto;
}

@media screen and (max-width: 480px) {
  .Form-Item-Label.isMsg {
    margin-top: 0;
  }
}

.Form-Item-Label-Required {
  border-radius: 6px;
  margin-right: 8px;
  padding-top: 8px;
  padding-bottom: 8px;
  width: 48px;
  display: inline-block;
  text-align: center;
  background: #ca8787;
  color: #fff;
  font-size: 14px;
}

@media screen and (max-width: 480px) {
  .Form-Item-Label-Required {
    border-radius: 4px;
    padding-top: 4px;
    padding-bottom: 4px;
    width: 32px;
    font-size: 10px;
  }
}

.Form-Item-Input {
  border: 1px solid #adabab;
  border-radius: 6px;
  margin-left: 40px;
  padding-left: 1em;
  padding-right: 1em;
  height: 48px;
  flex: 1;
  width: 100%;
  max-width: 410px;
  background: #efefef;
  font-size: 18px;
}

@media screen and (max-width: 480px) {
  .Form-Item-Input {
    margin-left: 0;
    margin-top: 18px;
    height: 40px;
    flex: inherit;
    font-size: 15px;
  }
}

.Form-Item-Textarea {
  border: 1px solid #adabab;
  border-radius: 6px;
  margin-left: 40px;
  padding-left: 1em;
  padding-right: 1em;
  height: 216px;
  flex: 1;
  width: 100%;
  max-width: 410px;
  background: #efefef;
  font-size: 18px;
}

@media screen and (max-width: 480px) {
  .Form-Item-Textarea {
    margin-top: 18px;
    margin-left: 0;
    height: 200px;
    flex: inherit;
    font-size: 15px;
  }
}

.Form-Btn {
  border: #87BFCA;
  border-radius: 6px;
  margin-top: 32px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 20px;
  padding-bottom: 20px;
  width: 280px;
  display: block;
  letter-spacing: 0.05em;
  background: #87BFCA;
  color: #fff;
  font-weight: bold;
  font-size: 20px;
}

@media screen and (max-width: 480px) {
  .Form-Btn {
    margin-top: 24px;
    padding-top: 8px;
    padding-bottom: 8px;
    width: 160px;
    font-size: 16px;
  }
}

.Form-Btn:active {
  -webkit-transform: translateY(2px);
  transform: translateY(2px);
  box-shadow: 0 0 1px #00000026;
  background-image: linear-gradient(#caeff6 0%, #9be7f6 100%);
}


/* =================================

ここからq&a.html

================================== */

.faq_box {
  width: 1000px;
  margin: 100px auto;
}




.faq_box_inner {
  margin: 50px auto;
  font-weight: 400;
}

.faq_ttl_suv_box {
  width: 1000px;
  height: 100px;
  display: flex;
  justify-content: center;
  position: relative;

}

.faq_backimg {
  position: absolute;
  right: 200px;
}


.faq_ttl_suv {
  display: inline-block;

}

.faq dt::before {
  content: 'Q';
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #87BFCA;
  background-size: 40px;
  color: #fff;
  position: absolute;
  top: 0;
  left: 0;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  line-height: 40px;
}


.faq dt {
  margin-bottom: 20px;
  position: relative;
  padding-left: 50px;
  font-size: 16px;
  line-height: 24px;
  padding-top: 8px;
}

.faq dd::before {
  content: 'A';
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #e58585;
  background-size: 40px;
  color: #fff;
  position: absolute;
  top: 0;
  left: 0;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  line-height: 40px;
}

.faq dd {
  margin-left: 10px;
  margin-bottom: 30px;
  position: relative;
  padding-left: 50px;
  padding-top: 8px;
  font-size: 14px;
  line-height: 24px;
  min-height: 40px;
}

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

.contact_btn_box {
  background: linear-gradient(#fed6e3 0%, #ffaaaa 100%);
  border-radius: 50px;
  font-weight: 500;
  display: inline-block;
  position: relative;
  padding: 20px;
  margin: 30px auto;
  box-shadow: 0 1px 1px #00000047;

}

.contact_btn {
  color: #faf8f8;
  text-decoration: none;
}

.contact_btn:active {
  -webkit-transform: translateY(2px);
  transform: translateY(2px);
  box-shadow: 0 0 1px #00000026;
  background-image: linear-gradient(#fed6e3 0%, #ffbcbc 100%);
}

@media screen and (max-width: 480px) {
  .faq_box {
    max-width: fit-content;
    margin: 20px auto;
    padding: 0 5%;
  }

  .faq_box_inner {
    max-width: fit-content;
    margin: 0 auto;
  }

  .faq_ttl_suv_box {
    width: 100%;
    height: auto;
    margin: 20px auto;

  }

  .faq_ttl_suv {
    width: 100%;
  }

  .faq_backimg {
    display: none;
  }

  .faq {
    max-width: fit-content;
    margin: 0 auto;
  }

  .faq dt {
    font-size: 12px;
    width: 100%;
  }

  .faq dd {
    font-size: 11px;
    width: 100%;
  }

  .extra_faq {
    font-size: 11px;
    width: 100%;
  }

  /* .contact_btn_box {
    width: 100%;
  } */
}

/* ===================================

ここからthanks.html

=================================== */
header {
  max-width: 1400px;
}

.header_logo_th {
  max-width: 200px;
  margin: 0 auto;
}

.header_logo_th img {
  width: 100%;
}

.thanks_box {
  max-width: 1400px;
}

.thanks {
  margin-top: 100px;
  text-align: center;
}

.thanks p {
  font-size: large;
}

.thanks_suv {
  margin-top: 30px;
  text-align: center;
}

.goto_home_th {
  margin: 100px auto;
  text-align: center;
}

.goto_home_th a {
  border: 1px solid #5a5a5a;
  border-radius: 20px;
  display: inline-block;
  color: #5a5a5a;
  padding: 10px 20px;
  text-decoration: none;

}