@charset "UTF-8";
/* CSS Document */
/* Google Fonts
font-family: 'Noto Sans JP', sans-serif;
font-family: 'Shippori Mincho B1', serif;
*/ :root {
  --pink: #e3acae;
}
/*--------------------------------
	共通
--------------------------------*/
* {
  position: relative;
}
p, li, dt, dd, th, td {
  font-family: 'Shippori Mincho B1', serif;
  line-height: 160%;
}
h2 {
  font-family: 'Shippori Mincho B1', serif;
  font-size: 26px;
  letter-spacing: 2px;
  text-align: center;
  margin: 0 0 70px 0;
}
h2 span {
  font-size: 16px;
  display: block;
  letter-spacing: 1px;
  margin: 20px 0 0 0;
  color: #9d8e87;
}
img {
  width: 100%;
  height: auto;
}
.inner {
  width: 90%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 100px 0;
}
.pc-none {
  display: none;
}
.small-txt {
    font-size: 14px;
}
@media screen and (max-width:640px) {
  .pc-none {
    display: inherit;
  }
  .sp-none {
    display: none;
  }
}
/*--------------------------------
	ヘッダー
--------------------------------*/
header {
  width: 100%;
  background: #FFF;
  box-shadow: 0 2px 3px 0 rgba(0, 0, 0, 0.2);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 8;
}
.description {
  opacity: 0;
  height: 0;
}
h1 {
  font-family: 'Shippori Mincho B1', serif;
  font-size: 24px;
  letter-spacing: 2px;
  text-align: center;
  line-height: 60px;
}
/*---- ナビ ---*/
.menu-trigger, .menu-trigger span {
  display: inline-block;
  transition: all .4s;
  box-sizing: border-box;
}
.menu-trigger {
  position: fixed;
  top: 10px;
  left: 10px;
  width: 40px;
  height: 40px;
  z-index: 9999;
}
a.menu-trigger:hover {
  opacity: 0.5;
  transition: 0.3s;
}
.menu-trigger span {
  position: absolute;
  z-index: 9999;
  left: 4px;
  width: 32px;
  height: 2px;
  background-color: #000;
  border-radius: 2px;
}
.menu-trigger span:nth-of-type(1) {
  top: 9px;
}
.menu-trigger span:nth-of-type(2) {
  top: 19px;
}
.menu-trigger span:nth-of-type(3) {
  bottom: 9px;
}
.menu-trigger.active span:nth-of-type(1) {
  -webkit-transform: translateY(10px) rotate(-45deg);
  transform: translateY(10px) rotate(-45deg);
}
.menu-trigger.active span:nth-of-type(2) {
  opacity: 0;
}
.menu-trigger.active span:nth-of-type(3) {
  -webkit-transform: translateY(-10px) rotate(45deg);
  transform: translateY(-10px) rotate(45deg);
}
#overlay {
  display: none;
  width: 100%;
  height: 100%;
  text-align: center;
  position: fixed;
  top: 0;
  z-index: 9;
  /*background: rgba(255,255,255,0.9);*/
  background: rgba(227, 172, 174, 0.95);
  padding: 20px;
  box-sizing: border-box;
}
#overlay ul {}
#overlay ul li {
  margin: 30px 0 0 0;
}
#overlay ul li:nth-child(2) {
  margin: 50px 0 0 0;
}
#overlay ul li a {
  color: #000;
  font-size: 24px;
}
#overlay ul li a span {
  display: block;
  font-size: 14px;
  margin: 10px 0 0 0;
}
#overlay ul li a:hover {
  color: #FFF;
  transition: 0.5s;
}
@media screen and (max-width:640px) {}
/*--------------------------------
	メインビジュアル（main-visual）
--------------------------------*/
.main-visual {
  display: block;
  width: 100%;
  height: 100vh;
  position: relative;
}
.main-visual .slider {
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: -2;
}
.main-visual .slider .slick-list {
  margin: 60px 0 0 0;
}
.main-visual .slider img {
  width: 100%;
  height: 100vh;
  object-fit: cover;
}
.slick-dots {
  top: 70px;
  text-align: right;
  padding: 0 20px 0 0;
}
.main-visual .scroll {
  font-family: 'Shippori Mincho B1', serif;
  color: #FFF;
  letter-spacing: 2px;
  line-height: 16px;
  width: 270px;
  height: 16px;
  border-bottom: 1px solid #FFF;
  transform: rotate(90deg);
  position: absolute;
  bottom: 120px;
  left: calc(50% - 130px);
}
@media screen and (max-width:640px) {
  .main-visual {
    aspect-ratio: 1 / 1;
    height: 100%;
    position: relative;
    margin: 60px 0 0 0;
  }
  .main-visual .slider {
    height: 100%;
  }
  .main-visual .slider img {
    height: 100%;
  }
  .main-visual .scroll {
    width: 200px;
    bottom: 90px;
    left: calc(50% - 95px);
  }
}
/*--------------------------------
	ブログ（#box_feed）
--------------------------------*/
#box_feed {
  background: #eee9e6;
}
#box_feed .inner {
  max-width: 600px;
}
#box_feed h2 {
  margin: 0 0 40px 0;
}
#box_feed dl {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
#box_feed dt {
  width: 100px;
  font-size: 14px;
  letter-spacing: 2px;
  padding: 10px 0 0 10px;
  border-bottom: 1px solid #CCC;
}
#box_feed dd {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 300;
  width: calc(100% - 100px);
  padding: 10px 0 0 20px;
  letter-spacing: 1px;
  border-bottom: 1px solid #CCC;
}
@media screen and (max-width:640px) {}
/*--------------------------------
	コンセプト（concept）
--------------------------------*/
.concept {
  background: #FFF;
}
.concept .inner {
  padding: 100px 0 0 0;
}
.concept h3 {
  color: #9d8e87;
  font-size: 18px;
  margin: 0 0 50px 0;
  line-height: 160%;
  letter-spacing: 1px;
  border-left: 2px solid #9d8e87;
  padding: 0 0 0 15px;
}
.concept .box {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.concept .box + .box {
  margin: 20px 0 0 0;
}
.concept .txt-box {
  width: calc(100% - 430px);
}
.concept .txt-box p {
  letter-spacing: 1px;
  text-align: justify;
}
.concept .txt-box p + p {
  margin: 15px 0 0 0;
}
.concept .img-box {
  width: 400px;
}
@media screen and (max-width:640px) {
  .concept .box {
    flex-direction: column;
  }
  .concept .txt-box {
    width: 100%;
    margin: 0 0 20px 0;
  }
  .concept .img-box {
    width: 100%;
  }
}
/*--------------------------------
	プロフィール（profile）
--------------------------------*/
.profile {
  overflow: hidden;
  background: #FFF;
}
.profile .inner {
  padding: 0 0 100px 0;
}
.profile h2 {
  color: #FFF;
}
.profile .box-wrap {
  display: flex;
  justify-content: space-between;
  background: #eee9e6;
  padding: 20px;
}
.profile .img-box {
  width: 40%;
  max-width: 400px;
}
.profile .img-box img {
  border: 1px solid #FFF;
  padding: 3px;
}
.profile .txt-box {
  width: 55%;
}
.profile .profile-head {
  margin: 0 0 20px 0;
  line-height: 180%;
  letter-spacing: 2px;
}
.profile .profile-head strong {
  display: block;
  font-size: 20px;
}
.profile .profile-name {
  font-size: 20px;
  margin: 0 0 5px 0;
}
.profile .profile-name-en {
  font-size: 12px;
  letter-spacing: 2px;
  margin: 0 0 30px 0;
}
.profile .txt-box .txt {
  font-size: 14px;
  letter-spacing: 1px;
  line-height: 150%;
}
.profile .txt-box .txt + .txt {
  margin: 10px 0 0 0;
}
@media screen and (max-width:640px) {
  .profile .box-wrap {
    flex-direction: column-reverse;
  }
  .profile .img-box {
    width: 100%;
    margin: 0 auto;
  }
  .profile .txt-box {
    width: 100%;
    margin: 0 0 30px 0;
  }
}
/*--------------------------------
	レッスン（lesson）
--------------------------------*/
section.lesson {
  background: #FFF;
}
section.lesson dl {
  margin: 0 auto 30px auto;
  max-width: 700px;
  position: relative;
}
section.lesson dl a {
  display: block;
  padding: 20px 180px 20px 30px;
  background: #eee9e6;
  height: auto;
  min-height: 200px;
}
section.lesson dl a:hover {
  background: #dfdad8;
  transition: 0.3s;
}
section.lesson dt {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: normal;
  font-size: 18px;
  letter-spacing: 2px;
  color: #9d8e87;
  margin: 0 0 30px 0;
  position: relative;
}
section.lesson dt::after {
  content: "";
  width: calc(100% + 50px);
  height: 1px;
  background: #9d8e87;
  display: block;
  position: absolute;
  bottom: -10px;
  left: -50px;
}
section.lesson dd {
  line-height: 160%;
  letter-spacing: 1px;
  margin: 0 auto 0 auto;
  text-align: justify;
}
section.lesson dd .detail {
  display: inline-block;
}
section.lesson dd .detail {
  display: inline-block;
  color: #9d8e87;
}
section.lesson dd .detail::after {
  font-family: "Font Awesome 5 Free";
  content: "\f138";
  font-weight: bold;
  padding: 0 0 0 3px;
}
section.lesson .lesson-image {
  width: 180px;
  height: 180px;
  position: absolute;
  right: -30px;
  top: 0;
  transform: rotate(7deg);
  box-shadow: 1px 1px 2px 0 rgba(0, 0, 0, 0.3);
}
section.lesson .lesson-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
section.lesson .btn-more {
  max-width: 300px;
  margin: 50px auto 0 auto;
  text-align: center;
}
section.lesson .btn-more a {
  display: block;
  height: 60px;
  line-height: 60px;
  background: #eee9e6;
  border-radius: 3px;
}
section.lesson .btn-more a:hover {
  background: #dfdad8;
  color: #FFF;
  transition: 0.3s;
}
@media screen and (max-width:640px) {
  section.lesson dl a {
    padding: 20px 20px 180px 20px;
  }
  section.lesson .lesson-image {
    width: 240px;
    height: 180px;
    right: -5px;
    top: inherit;
    bottom: -15px;
    transform: rotate(0);
  }
}
/*--------------------------------
	セッション（session）
--------------------------------*/
section.session {
  background: #f4dedf url("../img/session-bk.png") repeat-x bottom center;
  padding: 0 0 250px 0;
}
section.session .lead-txt {
  text-align: center;
  margin: 0 0 50px 0;
}
section.session .lead-txt p {
  line-height: 200%;
  letter-spacing: 2px;
}
section.session .lead-txt p + p {
  margin: 20px 0 0 0;
}
section.session .btn-more {
  max-width: 300px;
  margin: 0 auto;
  text-align: center;
}
section.session .btn-more a {
  display: block;
  height: 60px;
  line-height: 60px;
  background: #FFF;
  border-radius: 3px;
}
section.session .btn-more a:hover {
  background: #dfdad8;
  color: #FFF;
  transition: 0.3s;
}
@media screen and (max-width:640px) {
  section.session {
    background: #f4dedf url("../img/session-bk-sp.png") repeat-x bottom left;
    padding: 0 0 150px 0;
  }
}
/*--------------------------------
	問い合わせ（contact）
--------------------------------*/
section.contact {
  background: #FFF;
}
section.contact .lead-txt {
  text-align: center;
  margin: 0 0 30px 0;
}
section.contact .txt {
  text-align: center;
  margin: 20px 0 0 0;
  font-size: 14px;
}
section.contact .txt a:hover {
  color: var(--pink);
  transition: 0.3s;
}
section.contact .txt a::after {
  font-family: "Font Awesome 5 Free";
  content: "\f138";
  font-weight: bold;
  margin: 0 0 0 5px;
}
section.contact .qr {
  width: 100px;
  height: auto;
  margin: 0 auto;
}
section.contact .qr a:hover {
  opacity: 0.7;
  transition: 0.3s;
}
@media screen and (max-width:640px) {}
/*--------------------------------
	フッター
--------------------------------*/
footer {
  padding: 30px 0 0 0;
  background: #FFF;
}
.insta-link {
  width: fit-content;
  text-align: center;
  margin: 0 auto 30px auto;
  display: flex;
}
.insta-link a {
  display: block;
  padding: 10px 20px;
  background: var(--pink);
  border-radius: 3px;
  color: #FFF;
}
.insta-link i {
  font-size: 30px;
  margin: 0 10px 0 0;
  vertical-align: middle;
}
.copyright {
  font-size: 12px;
  text-align: center;
  letter-spacing: 1px;
  padding: 20px 0;
  background: #eee9e6;
}
.page-top {
  display: block;
  width: 40px;
  line-height: 40px;
  padding: 20px 0;
  letter-spacing: 2px;
  background: var(--pink);
  color: #FFF;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  position: fixed;
  right: 0;
  bottom: 70px;
}
@media screen and (max-width:640px) {}
/*=====================================
    下層：個人セッション（page-session）
=====================================*/
#page-session .box {
  max-width: 600px;
  margin: 0 auto;
}
#page-session .box.price {
  background: #FFF;
  margin: 0 auto 50px auto;
  display: flex;
  justify-content: space-between;
}
#page-session .box.price dl {
  width: calc(100% - 150px);
  padding: 20px 25px;
}
#page-session .box.price dt {
  margin: 0 0 15px 0;
  font-size: 20px;
  line-height: 110%;
  letter-spacing: 2px;
  color: #9d8e87;
  border-bottom: 1px solid #9d8e87;
}
#page-session .box.price dd {
  text-align: left;
  font-size: 14px;
  color: #9d8e87;
}
#page-session .box.price dd:first-of-type {
  font-size: 18px;
  margin: 0 0 5px 0;
  color: #333;
}
#page-session .box.price dd.lead-txt {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 14px;
  color: #ee7800;
  line-height: 140%;
  margin: 10px 0 0 0;
}
#page-session .box.price .contact {
  background: #eee9e6;
  padding: 20px 25px;
  width: 150px;
}
#page-session .box.price .contact .txt {
  text-align: center;
  margin: 20px 0 0 0;
  font-size: 14px;
}
#page-session .box.price .contact .txt a:hover {
  color: var(--pink);
  transition: 0.3s;
}
#page-session .box.price .contact .txt a::after {
  font-family: "Font Awesome 5 Free";
  content: "\f138";
  font-weight: bold;
  margin: 0 0 0 5px;
}
#page-session .box.price .contact .qr {
  width: 100px;
  height: auto;
  margin: 0 auto;
}
#page-session .box.price .contact .qr a:hover {
  opacity: 0.7;
  transition: 0.3s;
}
#page-session .box.message p {
  text-align: center;
  letter-spacing: 2px;
  line-height: 180%;
}
#page-session .box.message p + p {
  margin: 20px 0 0 0;
}
@media screen and (max-width:640px) {
  #page-session .box.price {
    flex-direction: column;
  }
  #page-session .box.price dl {
    width: 100%;
  }
  #page-session .box.price .contact {
    width: 100%;
  }
  #page-session .box.message p {
    font-size: 14px;
    letter-spacing: 1px;
  }
}
/*=====================================
    下層：レッスン（page-lesson）
=====================================*/
#page-lesson {
  background: #eee9e6;
}
#page-lesson .lesson-menu {
  display: flex;
  justify-content: center;
  margin: 0 0 50px 0;
  z-index: 1;
}
#page-lesson .lesson-menu li {
  margin: 0 20px;
  font-family: 'Noto Sans JP', sans-serif;
  color: #9d8e87;
  position: relative;
}
#page-lesson .lesson-menu li::after {
  font-family: "Font Awesome 5 Free";
  content: "\f13a";
  font-weight: bold;
  padding: 0 0 0 5px;
}
#page-lesson .box-wrap {
  padding: 80px 0 0 0;
  margin: -80px auto 0 auto;
    max-width: 700px;
}
#page-lesson .lesson-box-top {
  border: 2px solid #9d8e87;
  padding: 20px 30px 200px 30px;
}
#page-lesson #menu01 .lesson-box-top {
background: #FFF url(../img/lesson-bk-01.png) repeat-x bottom center;
}
#page-lesson #menu02 .lesson-box-top {
background: #FFF url(../img/lesson-bk-02.png) repeat-x bottom center;
}
#page-lesson #menu03 .lesson-box-top {
background: #FFF url(../img/lesson-bk-03.png) repeat-x bottom center;
}
#page-lesson .lesson-box-top h3 {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: normal;
  font-size: 20px;
  letter-spacing: 2px;
  color: #9d8e87;
  margin: 0 0 30px 0;
  position: relative;
}
#page-lesson .lesson-box-top h3::after {
  content: "";
  width: calc(100% - 100px);
  height: 1px;
  background: #9d8e87;
  display: block;
  position: absolute;
  bottom: -10px;
  left: -50px;
}
#page-lesson .lesson-box-top .lead-txt {
  margin: 0 0 40px 0;
}
#page-lesson .lesson-box-top .lead-txt p {
    text-align: justify;
}

#page-lesson .lesson-box-top .lead-txt p:first-child {
  width: calc(100% - 180px);
}
#page-lesson .lesson-box-top .lead-txt p+p {
    margin: 15px 0 0 0;
}
#page-lesson .lesson-box-top .lesson-image {
  width: 180px;
  height: 180px;
  position: absolute;
  right: -30px;
  top: 0;
  transform: rotate(7deg);
  box-shadow: 1px 1px 2px 0 rgba(0, 0, 0, 0.3);
}
#page-lesson .lesson-box-top .lesson-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#page-lesson .lesson-box-bottom {
    padding: 30px;
    background: #9d8e87;
    margin: 0 0 100px 0;
}

#page-lesson .lesson-box-bottom .program {
  margin: 0 0 30px 0;
}
#page-lesson .lesson-box-bottom .midashi {
  color: #dfdad8;
  font-size: 20px;
  letter-spacing: 2px;
  line-height: 110%;
  border-bottom: 1px solid #dfdad8;
  margin: 0 0 7px 0;
}
#page-lesson .lesson-box-bottom .detail-midashi {
 background: #80736e;
    color: #FFF;
    margin: 0 0 10px 0;
    padding: 0 10px;
    font-family: 'Noto Sans JP', sans-serif;
    border-radius: 3px;
}
#page-lesson .lesson-box-bottom .detail-midashi+.detail-midashi {
    margin: 20px 0 10px 0;
}
#page-lesson .lesson-box-bottom .program li {
    letter-spacing: 1px;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 300;
    display: inline-block;
    margin: 0 10px 0 0;
    color: #FFF;
}
#page-lesson .lesson-box-bottom .program li::after {
    content: "/";
    color: #FFF;
    margin: 0 0 0 10px;
}
#page-lesson .lesson-box-bottom .program li:last-child::after {
    content: none;
}#page-lesson .lesson-box-bottom .price {
    margin: 0 0 30px 0;
}
#page-lesson .lesson-box-bottom .price dd {
    letter-spacing: 1px;
    font-family: 'Noto Sans JP', sans-serif;
  text-align: left;
  font-size: 14px;
  color: #dfdad8;
}
#page-lesson .lesson-box-bottom .price dd:first-of-type {
  font-size: 18px;
  margin: 0 0 5px 0;
  color: #FFF;
}
#page-lesson .lesson-box-bottom .btn-more {
  font-size: 18px;
  margin: 0 auto 0 auto;
  text-align: center;
}
#page-lesson .lesson-box-bottom .btn-more a {
  display: block;
  height: 60px;
  line-height: 60px;
  background: #FFF;
  color: #9d8e87;
  border-radius: 3px;
}
#page-lesson .lesson-box-bottom .btn-more a:hover {
  background: #dfdad8;
  transition: 0.3s;
}
@media screen and (max-width:640px) {
    #page-lesson .lesson-menu {
        flex-direction: column;
    }
    #page-lesson .lesson-menu li {
        text-align: center;
    }
    #page-lesson .lesson-menu li+li {
        margin: 10px 0 0 0;
    }
    #page-lesson .lesson-box-top .lesson-image {
        display: none;
    }
    #page-lesson .lesson-box-top {
        padding: 15px 20px 200px 20px
    }
    #page-lesson .lesson-box-top h3::after {
        width: calc(100% + 40px);
        left: -30px;
    }
    #page-lesson .lesson-box-top .lead-txt p:first-child {
        width: 100%;
    }
    #page-lesson .lesson-box-bottom {
        padding: 20px;
    }
}