@charset "UTF-8";
/*
html5doctor.com Reset Stylesheet
v1.6.1
Last Updated: 2010-09-17
Author: Richard Clark - http://richclarkdesign.com
Twitter: @rich_clark
*/
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

body {
  line-height: 1;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

/* change colours to suit your needs */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

/* change colours to suit your needs */
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title], dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* change border colour to suit your needs */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input, select, textarea {
  vertical-align: middle;
  -webkit-appearance: none;
}

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

input[type=submit] {
  cursor: pointer;
  -webkit-appearance: none;
}

button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

@font-face {
  font-family: "Trenda-Light";
  src: url("../static/fonts/Trenda-Light.woff");
}
/**
* header
*/
.header {
  width: 100%;
  height: 90px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  background: #C1E4F5;
  font-family: "Trenda-Light", sans-serif;
  font-weight: normal;
  letter-spacing: 1px;
}

.header__nav {
  width: 80%;
  max-width: 1000px;
  height: 100%;
  margin: 0 auto;
}
.header__nav ul {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.header__nav__list {
  width: 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 14px;
  line-height: 1.6;
}
.header__nav__list.logo img {
  width: auto;
  height: 60px;
  margin-top: 5px;
  vertical-align: middle;
}
.header__nav__list a {
  display: block;
  color: #635245;
  text-decoration: none;
}
.header__nav__list a:hover {
  border-bottom: 1px solid #635245;
}
.header__nav__list.logo a:hover {
  border-bottom: none;
}

.header__nav__sns-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: absolute;
  top: 35px;
  right: 30px;
}

.header__nav__sns {
  width: 20px;
  height: 20px;
}
.header__nav__sns:first-of-type {
  margin-right: 15px;
}
.header__nav__sns img {
  width: 100%;
}

.menu-trigger {
  display: none;
}

@media screen and (max-width: 800px) {
  .header {
    height: 70px;
  }

  .header__nav {
    width: 100%;
    height: 100vh;
    display: none;
    padding-top: 40%;
    background: #C1E4F5;
  }
  .header__nav ul {
    height: auto;
    display: block;
  }
  .header__nav__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 35%;
    margin: 0 auto;
    padding: 20px 0;
    font-size: 16px;
  }
  .header__nav__list:last-child {
    border-bottom: none;
  }
  .header__nav__list a {
    padding: 0;
    text-align: center;
  }
  .header__nav__list.logo {
    display: none;
  }

  .header__nav__sns-flex {
    position: relative;
    top: inherit;
    right: inherit;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-top: 20px;
  }

  .header__nav__sns {
    width: 30px;
    height: 30px;
  }
  .header__nav__sns:first-of-type {
    margin-right: 20px;
  }

  /* メニューの開閉ボタン */
  .menu-trigger,
.menu-trigger span {
    display: inline-block;
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }

  .menu-trigger {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 10;
    width: 30px;
    height: 28px;
  }

  .menu-trigger span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #635245;
    border-radius: 2px;
  }

  .menu-trigger span:nth-of-type(1) {
    top: 0;
  }

  .menu-trigger span:nth-of-type(2) {
    top: 13px;
  }

  .menu-trigger span:nth-of-type(3) {
    bottom: 0;
  }

  /* activeクラスがついた時の動き */
  .menu-trigger.active span:nth-of-type(1) {
    -webkit-transform: translateY(13px) rotate(-45deg);
    transform: translateY(13px) rotate(-45deg);
  }

  .menu-trigger.active span:nth-of-type(2) {
    opacity: 0;
  }

  .menu-trigger.active span:nth-of-type(3) {
    -webkit-transform: translateY(-13px) rotate(45deg);
    transform: translateY(-13px) rotate(45deg);
  }
}
@font-face {
  font-family: "Trenda-Light";
  src: url("../static/fonts/Trenda-Light.woff");
}
body, button {
  font-family: "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "Noto Sans JP", sans-serif;
  font-size: 14px;
  line-height: 28px;
  letter-spacing: 0.8px;
  color: #635245;
}

a {
  text-decoration: underline;
  color: #635245;
}

.fas {
  margin-left: 5px;
  font-size: 10px;
  text-decoration: none;
}

.trenda {
  font-family: "Trenda-Light", sans-serif;
  font-weight: normal;
  letter-spacing: 1px;
}

.container {
  width: 580px;
  margin: auto;
}
@media screen and (max-width: 800px) {
  .container {
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }
}

.section {
  padding-top: 120px;
  padding-bottom: 120px;
  background: #fff;
}
.section.bg-blue {
  background: #C1E4F5;
}
.section__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-family: "Trenda-Light", sans-serif;
  font-weight: normal;
  letter-spacing: 1px;
  font-size: 34px;
  letter-spacing: 2px;
}
.section__title span {
  position: relative;
}
.section__title img {
  position: absolute;
}
.section__title-line {
  display: block;
  width: 60px;
  height: 3px;
  margin: 60px auto;
  background: #fff;
}
.section__title-line.blue {
  background: #C1E4F5;
}
@media screen and (max-width: 800px) {
  .section {
    padding-top: 100px;
    padding-bottom: 100px;
  }
  .section__title {
    font-size: 26px;
    letter-spacing: 2px;
  }
  .section__title-line {
    width: 60px;
    height: 3px;
    margin: 40px auto;
  }
}

.section--small {
  margin-top: 100px;
}
.section--small__title {
  font-size: 14px;
  font-weight: bold;
  text-align: center;
  line-height: 16px;
}
.section--small__title-line {
  display: block;
  width: 60px;
  height: 1px;
  margin: 40px auto;
  background: #fff;
}
.section--small__title-line.blue {
  background: #C1E4F5;
}
@media screen and (max-width: 800px) {
  .section--small {
    margin-top: 80px;
  }
  .section--small__title-line {
    margin: 30px auto;
  }
}

/*
* first-view
*/
.first-view {
  width: 100%;
  height: 680px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: relative;
  background: url("../images/background.jpg") no-repeat center;
  background-size: cover;
}
.first-view__logo {
  padding-top: 60px;
}
.first-view__logo img {
  width: 275px;
}
.first-view__rec {
  position: absolute;
  background: #C1E4F5;
}
.first-view__rec.left, .first-view__rec.right {
  width: 30px;
  height: 100%;
  top: 0;
}
.first-view__rec.left {
  left: 0;
}
.first-view__rec.right {
  right: 0;
}
.first-view__rec.bottom {
  width: 100%;
  height: 50px;
  left: 0;
  bottom: 0;
}
.first-view__flower {
  position: absolute;
  left: 50px;
  bottom: 25px;
}
.first-view__flower img {
  width: 70px;
}
@media screen and (max-width: 800px) {
  .first-view {
    height: 100vh;
  }
  .first-view__logo img {
    width: 70vw;
    max-width: 275px;
  }
}

/*
* about
*/
.about .section__title img {
  height: 30px;
  left: -35px;
  bottom: 5px;
}
.about__teacher__photo {
  text-align: center;
}
.about__teacher__photo__img {
  width: 240px;
  height: 240px;
  margin: auto;
  background: url("../images/teacher.jpg") no-repeat center;
  background-size: cover;
  border-radius: 50%;
}
.about__teacher__photo__name {
  line-height: 14px;
  margin-top: 30px;
  font-weight: bold;
}
.about__teacher__photo__kana {
  margin-top: 5px;
  font-size: 10px;
}
@media screen and (max-width: 800px) {
  .about__teacher__photo__img {
    margin: auto auto 20px;
  }
}
.about__teacher__text__link {
  text-align: center;
}
.about__teacher__text__link a {
  display: block;
}
.about__teacher__text__link a:first-of-type {
  margin-bottom: 10px;
}
.about__teacher__text__link p {
  margin-top: 10px;
  text-align: left;
}
.about__teacher__text div {
  margin-top: 20px;
}
.about__teacher__text div:first-of-type {
  margin-top: 40px;
}

/*
* 新型コロナウイルス対策
*/
/*
* lesson
*/
.lesson .section__title img {
  height: 40px;
  right: -45px;
  bottom: 0;
}
.lesson__description__note {
  font-size: 12px;
}
.lesson__button {
  text-align: center;
}
.lesson__button button {
  height: 60px;
  margin-top: 60px;
  padding: 0 30px;
  border: 1px solid #635245;
  font-size: 14px;
  color: #635245;
}
.lesson__button button img {
  width: 7px;
  margin-right: 10px;
  display: none;
}
.lesson__button button img.down {
  width: inherit;
  height: 7px;
}
.lesson__button button img.active {
  display: inline;
}
.lesson__button button.active {
  border: none;
  border-bottom: 1px solid #635245;
}
.lesson .js-lesson-plan {
  display: none;
}
.lesson__plan {
  position: relative;
  width: calc(100% - 80px);
  max-width: 1000px;
  margin: 100px auto 0;
  padding: 40px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border: 1px solid #fff;
}
.lesson__plan.top {
  margin-top: 60px;
}
.lesson__plan__title {
  width: 200px;
  height: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: absolute;
  top: -15px;
  left: 0;
  right: 0;
  margin: auto;
  padding: 0 10px;
  background: #C1E4F5;
  font-weight: bold;
}
.lesson__plan__title img {
  width: 23px;
  margin-right: 10px;
}
.lesson__plan__description > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.lesson__plan__description p {
  line-height: 1.6;
}
.lesson__plan__description__detail {
  margin-top: 25px;
  line-height: 1.6;
}
.lesson__plan__description__detail span {
  font-weight: bold;
}
.lesson__plan__description__detail .note {
  font-size: 12px;
}
.lesson__plan__description__detail:nth-of-type(2) .note {
  margin-bottom: 10px;
}
.lesson__plan__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-top: 40px;
}
.lesson__plan__box {
  width: 30%;
  padding: 16px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border: 1px solid #fff;
}
.lesson__plan__box__bg {
  min-height: 250px;
  padding: 25px 20px;
  background: #fff;
}
.lesson__plan__box__bg.flute {
  min-height: 220px;
}
.lesson__plan__box__title, .lesson__plan__box__price, .lesson__plan__box__sub-title {
  text-align: center;
}
.lesson__plan__box__title {
  font-size: 16px;
  font-weight: bold;
}
.lesson__plan__box__line {
  display: block;
  width: 60px;
  height: 1px;
  margin: 16px auto;
  background: #C1E4F5;
}
.lesson__plan__box__price {
  margin-bottom: 10px;
  font-size: 16px;
}
.lesson__plan__box__price span {
  font-family: "Trenda-Light", sans-serif;
  font-weight: normal;
  letter-spacing: 1px;
}
.lesson__plan__box__sub-title {
  margin-bottom: 5px;
  font-weight: bold;
}
.lesson__plan__box__text {
  max-width: 120px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin: auto;
  font-size: 12px;
  line-height: 1.6;
}
@media screen and (max-width: 800px) {
  .lesson .section__title img {
    height: 40px;
    right: -45px;
    bottom: 0;
  }
  .lesson__plan {
    width: calc(100% - 40px);
    margin: 80px auto 0;
    padding: 20px;
  }
  .lesson__plan.top {
    margin-top: 80px;
  }
  .lesson__plan__description {
    margin-top: 20px;
  }
  .lesson__plan__flex {
    display: block;
    margin-top: 40px;
  }
  .lesson__plan__box {
    width: 100%;
    margin-top: 40px;
    background: #fff;
  }
  .lesson__plan__box:first-of-type {
    margin-top: 0;
  }
  .lesson__plan__box__bg {
    min-height: inherit;
    border: 1px solid #C1E4F5;
  }
  .lesson__plan__box__bg.flute {
    min-height: inherit;
  }
  .lesson__plan__box__price span {
    font-size: 18px;
  }
}

.lesson__events {
  max-width: 1000px;
  margin-right: auto;
  margin-left: auto;
  padding-left: 20px;
  padding-right: 20px;
}

.lesson__event-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 20px;
}
.lesson__event-list__box {
  width: 50%;
}
.lesson__event-list__box img {
  width: 100%;
}
.lesson__event-list__box img:nth-of-type(2) {
  margin-top: 10px;
}
.lesson__event-list__title {
  margin-bottom: 10px;
  font-weight: bold;
  text-align: center;
}
@media screen and (max-width: 800px) {
  .lesson__event-list {
    display: block;
  }
  .lesson__event-list__box {
    width: 100%;
  }
  .lesson__event-list__title {
    margin-top: 20px;
  }
}

/*
* location
*/
.location .section__title img {
  height: 40px;
  left: -35px;
  bottom: -5px;
}
.location__description p {
  margin-top: 20px;
}
.location__description p:first-of-type {
  margin-top: 0;
}
.location__map {
  position: relative;
  width: 100%;
  max-width: 580px;
  margin-top: 40px;
  margin-bottom: 40px;
  padding-top: 50%;
}
.location__map iframe {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.location__link {
  display: block;
  text-align: center;
}

/*
* contact
*/
.contact .section__title img {
  height: 40px;
  right: -50px;
  bottom: 0;
}
.contact__box-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 40px;
}
.contact__box {
  width: 100%;
  max-width: 300px;
  padding: 16px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border: 1px solid #fff;
}
.contact__box__bg {
  min-height: 250px;
  padding: 25px 20px;
  background: #fff;
}
.contact__box__title {
  font-size: 16px;
  font-weight: bold;
  text-align: center;
}
.contact__box__title:nth-of-type(2) {
  margin-top: 20px;
}
.contact__box__line {
  display: block;
  width: 60px;
  height: 1px;
  margin: 16px auto;
  background: #C1E4F5;
}
.contact__box__email {
  margin-bottom: 20px;
  text-align: center;
}
.contact__box__text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 12px;
  line-height: 1.6;
}