@charset "UTF-8";
/* CSS Document */
html {
  font-size: 62.5%; /* 16px * 62.5% = 10px */
  width: 100%;
  scroll-behavior: smooth;
}
body {
  background-color: #fffdf7; /* RGB */
  font-family: 'Zen Maru Gothic', serif;
  font-weight: 500;
  font-size: 1.6em;
  color: #636363;
  line-height: 1.5;
  text-align: left;
  font-feature-settings: "palt";
  word-break: break-all;
}
button {
  font-family: "Zen Maru Gothic";
}
.main {
  overflow: hidden;
}
.none {
  display: none;
}
.max-width_inner {
  max-width: 1240px;
  width: calc(100% - 80px);
  margin: auto;
}
.header {
  position: fixed;
  top: 0;
  z-index: 999;
  display: flex;
  width: 100%;
  height: 80px;
  background-color: rgba(221, 185, 185, 0.76);
}
.line-1 {
  position: absolute;
  top: 0;
  width: 100%;
  height: 2px;
  background-color: #d59898;
}
.line-2 {
  position: absolute;
  top: 2px;
  width: 100%;
  height: 2px;
  background-color: #fff;
}
.header_container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  justify-content: flex-end;
  padding: 0 6.9%;
  align-items: center;
  margin-top: 4px;
}
.header_logo {
  width: 10%;
  min-width: 100px;
  margin-right: auto;
  align-self: flex-start;
  height: auto;
  z-index: 9;
}
.header img {
  width: 100%;
}
.header__navigation ul {
  margin: 0 0 0 auto;
}
.header ul {
  display: flex;
}
.header ul li {
  margin: 0 0 0 clamp(2.4rem, 3vw, 5.4rem);
  font-family: Courier Prime;
  font-size: clamp(1.6rem, 2vw, 2.4rem);
  letter-spacing: 0.1rem;
}
.header ul li {
  text-decoration: none;
  color: #fff;
}
.header ul li a {
  position: relative;
  text-decoration: none;
  color: #fff
} 
.header ul li a:hover {
  color: #fff;
}
.header ul li a::after{
  position: absolute;
  bottom: -5px;
  left: 0;
  content: '';
  width: 100%;
  height: 2px;
  background: #d59898;
  transform: scale(0, 1);
  transform-origin: right top;
  transition: transform .3s;
}
.header ul li a:hover::after {
  transform-origin: left top;
  transform: scale(1,1);
}
.order-button a {
  position: relative;
  text-decoration: none;
  transition: 0.4s;
  margin-left: clamp(2.4rem, 3vw, 4.8rem);
  background-color: #fff;
  font-size: clamp(2.0rem, 2vw, 2.6rem);
  font-family: "Zen Maru Gothic";
  letter-spacing: 0.3rem;
  border: 2px solid #d59898;
  padding: 7px 27px;
  border-radius: 40px;
  color: #7D9E90;
}
.order-button a::before {
  content: "";
  position: absolute;
  top: -5px;
  left: -5px;
  bottom: -5px;
  right: -5px;
  border: 3px solid #f3e7e7;
  border-radius: 40px;
  z-index: -1;
}
.order-button a:hover {
  background-color: #d6aaaa;
  border: 2px solid #d6aaaa;
  color: #fff;
}
@media (min-width: 335px) and (max-width: 850px) {
  .header {
    height: 65px;
  }
  .none {
    display: none;
  }
  #nav-open {
    cursor: pointer;
    display: inline-block;
    height: 50px;
    position: relative;
    width: 45px;
  }
  #nav-open span {
    background: #fff;
    border-radius: 4px;
    display: block;
    height: 5px;
    left: 50%;
    margin: -8% 0 0 -42%;
    position: absolute;
    top: 50%;
    transition: all 0.3s ease-in-out;
    width: 84%;
  }
  #nav-open span::before, #nav-open span::after {
    -webkit-transform: rotate(0);
    background: #fff;
    border-radius: 4px;
    content: "";
    display: block;
    height: 100%;
    left: 50%;
    margin: -8% 0 0 -50%;
    position: absolute;
    top: 50%;
    transform: rotate(0);
    transition: all 0.3s ease-in-out;
    width: 100%;
  }
  #nav-open span::before {
    margin-top: -13px;
  }
  #nav-open span::after {
    margin-top: 9px;
  }
  #nav-input:checked ~ #nav-open span {
    background: rgba(255, 255, 255, 0);
  }
  #nav-input:checked ~ #nav-open span::before, #nav-input:checked ~ #nav-open span::after {
    content: "";
    display: block;
    height: 100%;
    left: 50%;
    margin: -8% 0 0 -42%;
    position: absolute;
    top: 50%;
    width: 100%;
  }
  #nav-input:checked ~ #nav-open span::before {
    transform: rotate(-45deg);
  }
  #nav-input:checked ~ #nav-open span::after {
    transform: rotate(45deg);
  }
  #nav-open {
    display: inline-block;
    vertical-align: middle;
    position: relative;
    z-index: 1000000;
  }
  #nav-content {
    position: fixed;
    opacity: 0;
    top: 0;
    left: 0;
    z-index: 9999;
    width: 100%;
    height: 100%;
    background-color: rgba(207, 158, 158, 0.80);
    text-align: left;
    padding: 0;
    /*    transform: translateX(-110%);*/
    transition: 0.5s;
    visibility: hidden;
  }
  #nav-content.open {
    opacity: 1;
    transition: 0.5s;
    visibility: visible;
  }
  .header_logo {
    order: 1;
  }
  .nav-drawer {
    order: 3
  }
  .order-button {
    order: 2;
    z-index: 1000000;
  }
  .nav-drawer__title img {
    width: 30%;
  }
  .header ul {
    display: block;
    text-align: center;
    margin-top: 50%;
  }
  .header ul li {
    font-size: clamp(2.0rem, 4vw, 3.4rem);
    margin-bottom: 6%;
  }
  .order-button {
    margin-right: clamp(1.0rem, 2vw, 4.6rem);
  }
  .order-button a {
    font-size: clamp(1.8rem, 2vw, 2.0rem);
    font-weight: 500;
    letter-spacing: 0.3rem;
    border: 2px solid #d59898;
    padding: 6px 20px;
    border-radius: 40px;
    color: #7D9E90;
  }
  .order-button a::before {
    content: "";
    position: absolute;
    top: -4px;
    left: -4px;
    bottom: -4px;
    right: -4px;
    border: 2px solid #f3e7e7;
    border-radius: 40px;
    z-index: -1;
  }
  .order-button a:hover {
    background-color: #d6aaaa;
    border: 2px solid #d6aaaa;
    color: #fff;
  }
}
@media (max-width:335px) {
  .header {
    height: 65px;
  }
  .header_logo {
  width: 10%;
  min-width: 70px;
  margin-right: auto;
  align-self: flex-start;
  height: auto;
  z-index: 9;
}
  .none {
    display: none;
  }
  #nav-open {
    cursor: pointer;
    display: inline-block;
    height: 50px;
    position: relative;
    width: 45px;
  }
  #nav-open span {
    background: #fff;
    border-radius: 4px;
    display: block;
    height: 5px;
    left: 50%;
    margin: -8% 0 0 -42%;
    position: absolute;
    top: 50%;
    transition: all 0.3s ease-in-out;
    width: 84%;
  }
  #nav-open span::before, #nav-open span::after {
    -webkit-transform: rotate(0);
    background: #fff;
    border-radius: 4px;
    content: "";
    display: block;
    height: 100%;
    left: 50%;
    margin: -8% 0 0 -50%;
    position: absolute;
    top: 50%;
    transform: rotate(0);
    transition: all 0.3s ease-in-out;
    width: 100%;
  }
  #nav-open span::before {
    margin-top: -13px;
  }
  #nav-open span::after {
    margin-top: 9px;
  }
  #nav-input:checked ~ #nav-open span {
    background: rgba(255, 255, 255, 0);
  }
  #nav-input:checked ~ #nav-open span::before, #nav-input:checked ~ #nav-open span::after {
    content: "";
    display: block;
    height: 100%;
    left: 50%;
    margin: -8% 0 0 -42%;
    position: absolute;
    top: 50%;
    width: 100%;
  }
  #nav-input:checked ~ #nav-open span::before {
    transform: rotate(-45deg);
  }
  #nav-input:checked ~ #nav-open span::after {
    transform: rotate(45deg);
  }
  #nav-open {
    display: inline-block;
    vertical-align: middle;
    position: relative;
    z-index: 1000000;
  }
  #nav-content {
    position: fixed;
    opacity: 0;
    top: 0;
    left: 0;
    z-index: 9999;
    width: 100%;
    height: 100%;
    background-color: rgba(207, 158, 158, 0.80);
    text-align: left;
    padding: 0;
    /*    transform: translateX(-110%);*/
    transition: 0.5s;
    visibility: hidden;
  }
  #nav-content.open {
    opacity: 1;
    transition: 0.5s;
    visibility: visible;
  }
  .header_logo {
    order: 1;
  }
  .nav-drawer {
    order: 3
  }
  .order-button {
    order: 2;
    z-index: 1000000;
  }
  .nav-drawer__title img {
    width: 30%;
  }
  .header ul {
    display: block;
    text-align: center;
    margin-top: 50%;
  }
  .header ul li {
    font-size: clamp(2.0rem, 4vw, 3.4rem);
    margin-bottom: 6%;
  }
  .order-button {
    margin-right: clamp(1.0rem, 2vw, 4.6rem);
  }
  .order-button a {
    font-size: 1.6rem;
    font-weight: 500;
    letter-spacing: 0.1rem;
    border: 2px solid #d59898;
    padding: 6px 10px;
    border-radius: 40px;
    color: #7D9E90;
  }
  .order-button a::before {
    content: "";
    position: absolute;
    top: -4px;
    left: -4px;
    bottom: -4px;
    right: -4px;
    border: 2px solid #f3e7e7;
    border-radius: 40px;
    z-index: -1;
  }
  .order-button a:hover {
    background-color: #d6aaaa;
    border: 2px solid #d6aaaa;
    color: #fff;
  }
}
.contact {
  text-align: center;
  position: relative;
  margin: 0 auto min(17%, 200px);
}
.contact h2 {
  font-family: Courier Prime;
  font-size: clamp(3.6rem, 5vw, 5.0rem);
  font-weight: 400;
  color: #7D9E90;
  letter-spacing: 0.2rem;
}
.contact p {
  font-size: clamp(1.6rem, 2vw, 2.2rem);
  font-weight: 300;
  color: #ceb739;
  letter-spacing: 0.3rem;
  margin-top: -10px;
  margin-bottom: 5%;
}
.contact_comment {
  position: absolute;
  top: 0;
  left: 66%;
  width: 30%;
  max-width: 400px;
  min-width: 170px;
}
.contact_link-wrap {
  display: flex;
  justify-content: center;
  column-gap: 10%;
}
.contact_line {
  width: 90%;
  margin: 0 auto;
}
.contact_line img {
  width: 100%;
  transition: 0.7s;
}
.contact_line img:hover {
  transform: scale(1.1);
}
.contact_instagram {
  width: 90%;
  margin: 0 auto;
}
.contact_instagram img {
  width: 100%;
  transition: 0.7s;
}
.contact_instagram img:hover {
  transform: scale(1.1);
}
@media (min-width: 580px) and (max-width: 1150px) {
  .contact h2 {
    font-size: clamp(3.2rem, 5vw, 3.8rem);
  }
  .contact p {
    font-size: clamp(1.6rem, 2vw, 1.8rem);
  }
}
@media (max-width:580px) {
  .contact {
    margin: 0 auto min(38%, 240px);
  }
  .contact-inner {
    width: calc(100% - 90px);
  } 
  .contact h2 {
    font-size: clamp(3.2rem, 3vw, 3.6rem);
    margin-bottom: -11px;
  }
  .contact p {
    font-size: clamp(1.4rem, 2vw, 1.7rem);
    letter-spacing: 0.1rem;
    margin-bottom: 30px;
  }
  .contact_comment {
    display: none;
  }
  .contact_comment-sp {
    display: block;
    position: absolute;
    bottom: -18%;
    left: 10%;
    width: 40%;
    max-width: 400px;
  }
  .contact_link-wrap {
    display: block
  }

  .line-pc {
    display: none;
  }
  .instagram-pc {
    display: none;
  }
  .line-sp {
    display: block;
    width: 90%;
    max-width: 420px;
    margin: 0 auto 20px;
  }
  .instagram-sp {
    display: block;
    width: 90%;
    max-width: 420px;
    margin: 0 auto;
  }
  .contact_line {
    width: 80%;
  }
  .contact_line img:hover {
  transform: scale(1.0);
}
  .contact_line-sp img {
    width: 93%;
  }
  .contact_line-sp img:hover {
  transform: scale(1.0);
  }
  .contact_instagram {
    width: 80%;
  }
  .contact_instagram img:hover {
  transform: scale(1.0);
}
  .contact_instagram-sp img {
    width: 93%;
  }
}
.footer {
  background-color: #edcdcd;
  border-top-right-radius: 143px;
  margin-right: clamp(40px, 9vw, 100px);
}
.footer a {
  text-decoration: none;
  color: #fff;
}
.footer_wrap {
  display: flex;
  justify-content: space-between;
  max-width: 1440px;
  margin: 0 auto;
}
.footer_logo {
  width: 15%;
  min-width: 135px;
  margin-top: 3%;
  margin-left: 7%;
}
.footer_logo img {
  width: 100%;
}
.footer__site-map_container {
  display: flex;
  color: #fff;
  padding-top: clamp(170px, 13vw, 185px);
  padding-bottom: clamp(95px, 10vw, 100px);
  padding-left: 0;
  padding-right: 5%;
  column-gap: clamp(25px, 3vw, 50px);
  line-height: 3.8rem;
  letter-spacing: 0.1rem;
  justify-content: flex-end;
}
.footer__site-map {
  list-style: none;
}
.footer__site-map p {
  font-size: clamp(1.8rem, 2.2vw, 2.0rem);
  font-weight: 600;
}
.footer__site-map ul {
  font-size: clamp(14px, 1.8vw, 17px);
}
.home {
  font-family: Courier Prime;
}
.lesson p {
  font-family: Courier Prime;
}
.instructor {
  font-family: Courier Prime;
}
.access p {
  font-family: Courier Prime;
}
.footer small {
  display: block;
  text-align: center;
  color: #fff;
  letter-spacing: 0.2rem;
  font-weight: 300;
  font-size: 1.3rem;
  padding-bottom: 15px;
}
@media (max-width:850px) {
  .footer_wrap {
    display: block;
  }
  .footer_logo {
    width: 30%;
    max-width: 150px;
    padding-top: 10%;
    margin-left: 7%;
  }
  .footer_logo img {
    width: 100%;
  }
  .footer__site-map_container {
    display: block;
    color: #fff;
    padding-top: 5%;
    padding-bottom: 8%;
    padding-left: 0;
    padding-right: 0;
    column-gap: clamp(20px, 5vw, 60px);
    line-height: 3.2rem;
    letter-spacing: 0.1rem;
    justify-content: flex-end;
  }
  .footer__site-map {
    display: none;
  }
  .footer-sp {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    column-gap: 20px;
    margin-bottom: 30px;
  }
  .footer__site-map-sp {
    display: block;
    list-style: none;
    width: 35%;
  }
  .footer__site-map-sp p {
    font-size: clamp(16px, 2vw, 18px);
  }
  .footer__site-map-sp ul {
    font-size: clamp(14px, 2vw, 16px);
    letter-spacing: 0.1rem;
    font-weight: 500;
  }
  .home-sp {
    font-family: Courier Prime;
    margin-bottom: 8%;
  }
  .lesson-sp {
    margin-bottom: 8%;
  }
  .lesson-sp p {
    font-family: Courier Prime;
  }
  .lesson-sp ul {
    font-size: clamp(13px, 2vw, 15px);
  }
  .instructor-sp {
    font-family: Courier Prime;
  }
  .access-sp p {
    font-family: Courier Prime;
  }
  .access-sp ul {
    font-size: clamp(13px, 2vw, 15px);
  }
}
/*サイドボタン*/
.side-box {
    position: fixed;
    top: 20%;
    right: 0;
    width: 6%;
  max-width: 70px; 
  min-width: 48px;
}
.instagram-side img {
  width: 100%;
  margin-bottom: 8%;
}
.instagram-side:hover {
  opacity: 0.7;
}
.blog-side img {
  width: 100%;
}
.blog-side:hover {
  opacity: 0.7;
}
@media (max-width:580px) {
  .side-box {
    top: 15%;
    width: 12%;
    max-width: 55px;
}
}

/* ページトップへ戻るボタン */
#page-top {
  display: none;
  position: fixed;
  right: clamp(15px, 3vw, 35px);
  bottom: clamp(20px, 4vw, 30px);
  margin: 0;
}
#move-page-top {
  opacity: 1.0; /* ふだんのボタンの透明度 */
  display: block;
  cursor: pointer;
}
/* ポインタを重ねた時 */
#move-page-top a:hover {
  opacity: 0.5; /* ポインタを重ねたときの透明度 */
}
#page-top img {
  width: clamp(14px, 2vw, 18px);
  height: auto;
}
@media (max-width:580px) {
  .max-width_inner {
    width: calc(100% - 40px);
  }
  #page-top {
    bottom: 60px;
  }
  #page-top img {
    width: clamp(13px, 2vw, 16px);
  }
}