@charset "UTF-8";
/* CSS Document */
/*英字フォント Cormorant+Infant:wght@500;600;700*/
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,500;0,600;0,700;1,600&display=swap');
html {
  font-size: 62.5%; /*16px * 62.5% = 10px */
  width: 100%;
  box-sizing: border-box;
  scroll-behavior: smooth;
}
body {
  background-color: #fcfffe;
  color: #000B22;
  font-family: '游明朝', 'Yu Mincho', YuMincho, 'Hiragino Mincho Pro', serif;
  font-weight: 500;
  font-size: 1.8rem;
  text-align: left;
}
.line-break-pc {
  display: none;
}
@media screen and (min-width: 770px) {
  .line-break {
    display: none;
  }
}
#header {
  position: fixed;
  top: 0;
  height: 5.56vw;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: center;
  width: 100%;
  padding: 0 5.56vw;
  z-index: 9999;
  background-color: rgba(252, 255, 254, 0.7);
}
#header-logo {
  text-decoration: none;
  color: #000B22;
}
@media screen and (max-width: 770px) {
  #header {
    height: 9.11vw;
  }
}
#header h1 {
  font-size: 2.22vw;
  font-family: 'Snell Roundhand', sans-serif;
}
@media screen and (max-width: 770px) {
  #header h1 {
    color: #000B22;
    font-size: 3.73vw;
  }
}
.hamburger {
  display: none;
}
@media screen and (max-width: 770px) {
  .hamburger {
    display: flex;
    width: 6vw;
    height: 5.33vw;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    cursor: pointer;
    margin-left: auto;
    position: relative;
    z-index: 100;
  }
  .hamburger .bar {
    height: 0.27vw;
    background: #000b22;
    display: block;
    position: absolute;
  }
  .hamburger .bar-top {
    width: 5.6vw;
    transform: translate(0, -1.4vw) rotate(0);
    transition: all 0.8s;
  }
  .hamburger .bar-bottom {
    width: 5.6vw;
    transform: translate(0, 0) rotate(0);
    transition: all 0.8s;
  }
  .checkbox:checked ~ .hamburger .bar-top {
    transform: translate(0, 0) rotate(-45deg);
    background: #FCFFFE;
    z-index: 9999;
  }
  .checkbox:checked ~ .hamburger .bar-bottom {
    transform: translate(0, 0) rotate(45deg);
    background: #FCFFFE;
    z-index: 9999;
  }
  .hamburger-text-menu {
    color: #000B22;
    font-size: 10px;
    position: absolute;
    bottom: -0.53vw;
    transition: all 0.8s;
  }
  .checkbox:checked ~ .hamburger .hamburger-text-menu {
    opacity: 0;
  }
  .hamburger-text-close {
    position: absolute;
    bottom: -2.67vw;
    color: #000B22;
    font-size: 10px;
    opacity: 0;
    transition: all 0.8s;
  }
  .checkbox:checked ~ .hamburger .hamburger-text-close {
    opacity: 1;
    color: #FCFFFE;
    z-index: 9999;
  }
}
.checkbox {
  display: none;
}
@media screen and (max-width: 770px) {
  .nav-menu {
    position: fixed;
    width: 100%;
    height: 100%;
    background: #000B22;
    opacity: 0.95;
    top: 0;
    left: -100%;
    transition: all 0.8s;
  }
}
.nav-menu ul {
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 770px) {
  .nav-menu ul {
    margin-top: 50px;
    display: block;
  }
}
.checkbox:checked ~ .nav-menu {
  left: 0;
}
.nav_btn_top {
  display: none;
}
.btn_lesson, .btn_qa, .btn_voice, .btn_gallery, .btn_order, .btn_contact, .btn_top {
  font-family: Cormorant Garamond, serif;
  display: block;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  margin-left: 1.39vw;
  height: 1.88vw;
  line-height: 1.88vw;
}
.btn_lesson {
  width: 10.21vw;
}
.btn_qa {
  width: 5.83vw;
}
.btn_voice {
  width: 6.67vw;
}
.btn_gallery {
  width: 6.67vw;
}
.btn_order {
  width: 6.67vw;
}
.btn_contact {
  width: 7.29vw;
}
.btn_top {
  width: 2.92vw;
  margin-left: 0;
}
.btn__text {
  position: absolute;
  left: 0;
  display: block;
  height: 100%;
  width: 100%;
  color: #000B22;
  text-align: center;
  transition: all 0.5s;
}
.btn__text:nth-child(1) {
  top: 0;
  font-size: 1.39vw;
}
.btn__text:nth-child(2) {
  top: 300%;
  font-size: 0.97vw;
}
.btn_lesson:hover .btn__text:nth-child(1) {
  top: -100%;
}
.btn_lesson:hover .btn__text:nth-child(2) {
  top: 0;
}
.btn_qa:hover .btn__text:nth-child(1) {
  top: -100%;
}
.btn_qa:hover .btn__text:nth-child(2) {
  top: 0;
}
.btn_voice:hover .btn__text:nth-child(1) {
  top: -100%;
}
.btn_voice:hover .btn__text:nth-child(2) {
  top: 0;
}
.btn_gallery:hover .btn__text:nth-child(1) {
  top: -100%;
}
.btn_gallery:hover .btn__text:nth-child(2) {
  top: 0;
}
.btn_order:hover .btn__text:nth-child(1) {
  top: -100%;
}
.btn_order:hover .btn__text:nth-child(2) {
  top: 0;
}
.btn_contact:hover .btn__text:nth-child(1) {
  top: -100%;
}
.btn_contact:hover .btn__text:nth-child(2) {
  top: 0;
}
.btn_top:hover .btn__text:nth-child(1) {
  top: -100%;
}
.btn_top:hover .btn__text:nth-child(2) {
  top: 0;
}
@media screen and (max-width: 770px) {
  .nav_btn_top, .btn_top, .btn_lesson, .btn_qa, .btn_voice, .btn_gallery, .btn_order, .btn_contact {
    margin: 8vw auto;
    font-family: Cormorant Garamond, serif;
    display: block;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    width: 53.33vw;
    height: 4vw;
    line-height: 4vw;
  }
  .btn__text {
    position: absolute;
    left: 0;
    display: block;
    height: 100%;
    width: 100%;
    color: #FCFFFE;
    text-align: center;
    transition: all 0.5s;
  }
  .btn__text:nth-child(1) {
    top: 0;
    font-size: 4vw;
  }
  .btn__text:nth-child(2) {
    top: 100%;
    font-size: 3.2vw;
  }
  .nav_btn_top:hover .btn__text:nth-child(1) {
    top: -100%;
  }
  .nav_btn_top:hover .btn__text:nth-child(2) {
    top: 0;
  }
  .btn_top:hover .btn__text:nth-child(1) {
    top: -100%;
  }
  .btn_top:hover .btn__text:nth-child(2) {
    top: 0;
  }
  .btn_lesson:hover .btn__text:nth-child(1) {
    top: -100%;
  }
  .btn_lesson:hover .btn__text:nth-child(2) {
    top: 0;
  }
  .btn_qa:hover .btn__text:nth-child(1) {
    top: -100%;
  }
  .btn_qa:hover .btn__text:nth-child(2) {
    top: 0;
  }
  .btn_voice:hover .btn__text:nth-child(1) {
    top: -100%;
  }
  .btn_voice:hover .btn__text:nth-child(2) {
    top: 0;
  }
  .btn_gallery:hover .btn__text:nth-child(1) {
    top: -100%;
  }
  .btn_gallery:hover .btn__text:nth-child(2) {
    top: 0;
  }
  .btn_order:hover .btn__text:nth-child(1) {
    top: -100%;
  }
  .btn_order:hover .btn__text:nth-child(2) {
    top: 0;
  }
  .btn_contact:hover .btn__text:nth-child(1) {
    top: -100%;
  }
  .btn_contact:hover .btn__text:nth-child(2) {
    top: 0;
  }
}
.fade {
	opacity: 0;
	transition: opacity 3s;
}
.fade.active {
	opacity: 1;
}
.sectiontitle-en {
  color: #000B22;
  font-family: Cormorant Garamond, serif;
  font-size: 4.86vw;
  font-weight: 600;
  letter-spacing: 0.49vw;
  margin-bottom: 0.69vw;
  line-height: normal;
}
.sectiontitle-jp {
  color: #000B22;
  font-size: 1.11vw;
  font-weight: 500;
  line-height: normal;
}
@media screen and (max-width: 770px) {
  .sectiontitle-en {
    color: #000B22;
    font-family: Cormorant Garamond, serif;
    font-size: 9.6vw;
    font-weight: 600;
    letter-spacing: 0.96vw;
    margin-bottom: 0;
    line-height: normal;
  }
  .sectiontitle-jp {
    color: #000B22;
    font-size: 3.73vw;
    font-weight: 500;
    line-height: normal;
  }
}
.arrow {
  width: 4.86vw;
  height: 4.86vw;
  border-radius: 50%;
  background-color: #FCFFFE;
  border: 1px solid #000B22;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-size: 1.39vw;
  color: #000B22;
  text-decoration: none;
  transition: background-color 0.5s;
}
.arrow::before {
  content: '→';
}
@media screen and (max-width: 770px) {
  .arrow {
    width: 13.33vw;
    height: 13.33vw;
    border-radius: 50%;
    background-color: #FCFFFE;
    border: 1px solid #000B22;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-size: 4.27vw;
    color: #000B22;
    text-decoration: none;
    transition: background-color 0.5s;
  }
  .arrow::before {
    content: '→';
  }
}
.contact {
  margin-bottom: 10.42vw;
  background-image: url("../Images/peony.jpg");
  background-repeat: no-repeat;
  background-size: 100% auto;
}
.contact-wrap {
  margin-left: 13.89vw;
  padding-bottom: 6.94vw;
}
.contact_title {
  padding-top: 6.94vw;
}
.contact_text {
  font-size: 1.25vw;
  font-style: normal;
  font-weight: 500;
  line-height: 180%;
  margin: 5.56vw 0 5.56vw 0;
}
.contact_list {
  display: flex;
  justify-content: flex-start;
}
.contact_list li {
  margin-right: 4.17vw;
}
.line-button, .tel-button, .form-button {
  border-radius: 50%;
  border: solid 1px #000B22;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 13.89vw;
  height: 13.89vw;
  background: #fcfffe;
  color: #000B22;
  text-decoration: none;
  text-align: center;
  transition: all 0.3s ease 0s;
}
.line-button:hover, .tel-button:hover, .form-button:hover {
  background-color: #901752;
  color: #FCFFFE;
  border-color: #901752;
}
.LINE, .TEL, .FORM {
  display: flex;
  justify-content: center;
  align-items: center;
}
.LINE img {
  width: 2.08vw;
  height: 2.08vw;
  object-fit: cover;
}
.TEL svg, .FORM svg {
  width: 2.08vw;
  height: 2.08vw;
  fill: #000B22;
}
.tel-button:hover .TEL svg {
  fill: #FCFFFE;
}
.form-button:hover .FORM svg {
  fill: #FCFFFE;
}
.LINE p, .TEL p, .FORM p {
  font-family: Cormorant Garamond, serif;
  font-size: 2.5vw;
  font-style: normal;
  font-weight: 700;
  margin-left: 0.35vw;
}
.line-button_text, .tel-button_text, .form-button_text {
  text-align: center;
  font-size: 1.11vw;
  font-style: normal;
  font-weight: 500;
  line-height: 100%;
  padding-top: 0.69vw;
}
.line-button_text-sp, .tel-button_text-sp, .form-button_text-sp {
  display: none;
}
@media screen and (max-width: 770px) {
  .contact {
    margin-bottom: 26.67vw;
    background-image: url("../Images/peony-sp.jpg");
    background-repeat: no-repeat;
    background-size: 100% auto;
  }
  .contact-wrap {
    margin: 0 6.4vw;
    padding-bottom: 16vw;
  }
  .contact_title {
    padding-top: 16vw;
  }
  .contact_text {
    font-size: 4vw;
    font-style: normal;
    font-weight: 500;
    line-height: 180%;
    margin: 8.8vw 0;
  }
  .contact_list {
    display: flex;
    justify-content: space-between;
  }
  .contact_list li {
    margin-right: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .line-button, .tel-button, .form-button {
    border-radius: 50%;
    border: solid 1px #000B22;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 26.67vw;
    height: 26.67vw;
    background: #fcfffe;
    color: #000B22;
    text-decoration: underline;
    text-align: center;
  }
  .line-button:hover, .tel-button:hover, .form-button:hover {
    background-color: #901752;
    color: #FCFFFE;
    border: none;
  }
  .LINE, .TEL, .FORM {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .LINE img {
    width: 5.33vw;
    height: 5.33vw;
    object-fit: cover;
  }
  .TEL svg, .FORM svg {
    width: 5.33vw;
    height: 5.33vw;
    fill: #000B22;
  }
  .LINE p, .TEL p, .FORM p {
    font-family: Cormorant Garamond, serif;
    font-size: 4.27vw;
    font-style: normal;
    font-weight: 700;
    margin-left: 1.33vw;
  }
  .line-button_text, .tel-button_text, .form-button_text {
    display: none;
  }
  .line-button_text-sp, .tel-button_text-sp, .form-button_text-sp {
    display: block;
    font-size: 3.73vw;
    font-style: normal;
    font-weight: 500;
    line-height: 120%;
    margin-top: 2.67vw;
    text-align: center;
  }
}
@media(min-width: 768px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}
.footer-wrap {
  margin: 0 13.89vw 8.33vw;
}
.footer_catch {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer_logo {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.footer_logo span {
  font-family: Snell Roundhand, sans-serif;
  font-size: 3.33vw;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
.footer_logo p {
  font-size: 1.25vw;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
.footer_line {
  width: 52.08vw;
  height: 1px;
  background: #000B22;
}
.footer_menu {
  display: flex;
  justify-content: space-between;
}
.footer_menu_left {
  margin: 2.08vw 0;
}
.footer_menu_left img {
  width: 17.22vw;
  height: 16.74vw;
  object-fit: cover;
}
.footer_menu_right {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  margin-top: 2.08vw;
}
.footer_menu_list-pc {
  display: flex;
  justify-content: space-between;
}
.footer_menu_list-sp {
  display: none;
}
.footer_SNS {
  margin-top: 6.94vw;
  margin-left: 34.31vw;
}
.footer_SNS span {
  font-family: Cormorant Garamond, serif;
  font-size: 2.5vw;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 0.25vw;
}
.footer_SNS p {
  font-size: 0.83vw;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
.footer_SNS_link {
  margin-top: 1.04vw;
}
.ig, .fb, .ab {
  color: #000B22;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  text-decoration: none;
}
.fb {
  margin: 0.69vw 0;
}
.ig:hover, .fb:hover, .ab:hover {
  opacity: 0.5;
}
.point {
  background-color: #000B22;
  width: 0.69vw;
  height: 1px;
}
.ig p, .fb p, .ab p {
  margin: 0 0.35vw 0 0.69vw;
  font-family: Cormorant Garamond, serif;
  font-size: 1.25vw;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}
.ig img, .fb img {
  width: 2.08vw;
  height: 2.08vw;
  object-fit: cover;
}
.footer_bottom {
  display: flex;
  justify-content: flex-start;
  margin-top: 3.47vw;
}
.caution {
  color: #444444;
  font-size: 0.69vw;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
.copyright {
  font-size: 1.25vw;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin-left: 3.13vw;
}
@media screen and (max-width: 770px) {
  .footer-wrap {
    margin: 0 0 10.67vw 6.4vw;
  }
  .footer_logo span {
    font-family: Snell Roundhand, sans-serif;
    font-size: 6.4vw;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
  }
  .footer_logo p {
    font-size: 2.93vw;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
  }
  .footer_line {
    width: 53.33vw;
    height: 1px;
    background: #000B22;
  }
  .footer_menu {
    display: block;
    position: relative;
  }
  .footer_menu_left {
    margin: 0;
  }
  .footer_menu_left img {
    width: 40vw;
    height: 38.93vw;
    object-fit: cover;
    position: absolute;
    right: 6.4vw;
    top: 52.5vw;
  }
  .footer_menu_right {
    display: block;
    margin-top: 10.67vw;
  }
  .footer_menu_list-pc {
    display: none;
  }
  .footer_menu_list-sp {
    display: block;
  }
  .footer_menu_list-sp li {
    padding-bottom: 4vw;
  }
  .footer_menu_list-sp li a {
    color: #000B22;
    font-family: Cormorant Garamond, serif;
    font-size: 4.27vw;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    text-decoration: none;
    letter-spacing: 0.43vw;
  }
  .menu_top::after, .menu_lesson::after, .menu_qa::after, .menu_voice::after, .menu_gallery::after, .menu_order::after, .menu_contact::after {
    color: #000B22;
    font-size: 2.67vw;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    padding-left: 2.67vw;
  }
  .menu_top::after {
    content: 'トップ';
  }
  .menu_lesson::after {
    content: 'レッスンメニュー';
  }
  .menu_qa::after {
    content: 'よくある質問';
  }
  .menu_voice::after {
    content: '生徒様のお声';
  }
  .menu_gallery::after {
    content: '講師作品';
  }
  .menu_order::after {
    content: '作品のご依頼';
  }
  .menu_contact::after {
    content: 'お問い合わせ';
  }
  .footer_SNS {
    margin-top: 6.67vw;
    margin-left: 0;
  }
  .footer_SNS span {
    font-family: Cormorant Garamond, serif;
    font-size: 5.33vw;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 0.53vw;
  }
  .footer_SNS p {
    font-size: 2.13vw;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
  }
  .footer_SNS_link {
    margin-top: 2.67vw;
  }
  .fb {
    margin: 2.67vw 0;
  }
  .point {
    background-color: #000B22;
    width: 2.67vw;
    height: 1px;
  }
  .ig p, .fb p, .ab p {
    margin: 0 1.33vw 0 2.67vw;
    font-family: Cormorant Garamond, serif;
    font-size: 3.73vw;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
  }
  .ig img, .fb img {
    width: 6.67vw;
    height: 6.67vw;
    object-fit: cover;
  }
  .footer_bottom {
    display: block;
    margin: 8vw 6.4vw 10.67vw 0;
    text-align: center;
  }
  .caution {
    color: #444444;
    font-size: 2.13vw;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-align: left;
  }
  .copyright {
    font-size: 3.73vw;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    margin: 0 auto;
    display: inline-block;
  }
}