/* A Modern CSS Reset */
*, *::before, *::after {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  line-height: 1;
}

body, h1, h2, h3, h4, p, figure, blockquote, dl, dd {
  margin: 0;
}

ul, ol {
  list-style-type: none;
}

em, strong {
  font-style: normal;
  font-weight: normal;
}

html:focus-within {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
}

a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

img, picture {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

input, button, textarea, select {
  font: inherit;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
}

@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
  }
}
html {
  font-size: 62.5%;
}

a {
  text-decoration: none;
}

img {
  box-sizing: border-box;
}

body {
  background-color: #fff;
  font-family: "Noto Sans JP", sans-serif;
}

.price-body {
  background-color: #fdfcfb;
}

header {
  position: sticky;
  top: 0;
  left: 0;
  z-index: 990;
  width: 100%;
}
header .header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
header .header h1 {
  padding-left: 20px;
  position: relative;
  z-index: 1001;
}
header .header h1 a img {
  min-width: 70px;
  max-width: 300px;
  width: 100%;
  height: auto;
}
header .header .right {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 60px;
  padding-right: 20px;
}
header .header .right nav.header-btn {
  position: relative;
  z-index: 1001;
}
header .header .right nav.header-btn a {
  display: block;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #009b77;
  padding: 22px 8px;
  border-radius: 0 0 10px 10px;
  transition: 0.5s;
}
header .header .right nav.header-btn a p {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  color: #666;
  text-align: justify;
  text-align: center;
  line-height: 1.5;
  color: #fff;
  padding-right: 10px;
  white-space: nowrap;
}

.header .hamburger-morph {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1002;
  width: 48px;
  height: 48px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  color: #988f76;
  font-weight: 600;
}
.header .hamburger-morph__icon {
  width: 100%;
  height: 100%;
}
.header .hamburger-morph__line {
  fill: none;
  stroke: #000;
  stroke-width: 6;
  transition: stroke-dasharray 600ms cubic-bezier(0.4, 0, 0.2, 1), stroke-dashoffset 600ms cubic-bezier(0.4, 0, 0.2, 1);
}
.header .hamburger-morph__line:nth-child(1) {
  stroke-dasharray: 60 207;
}
.header .hamburger-morph__line:nth-child(2) {
  stroke-dasharray: 60 60;
}
.header .hamburger-morph__line:nth-child(3) {
  stroke-dasharray: 60 207;
}
.header .hamburger-morph.active .hamburger-morph__line:nth-child(1), .header .hamburger-morph.active .hamburger-morph__line:nth-child(3) {
  stroke-dasharray: 90 207;
  stroke-dashoffset: -134;
}
.header .hamburger-morph.active .hamburger-morph__line:nth-child(2) {
  stroke-dasharray: 1 60;
  stroke-dashoffset: -30;
}
.header .nav-morph {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-image: url(../images/burgermenu.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  clip-path: circle(0% at calc(100% - 30px) 30px);
  transition: clip-path 0.7s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1000;
}
.header .nav-morph.active {
  clip-path: circle(150% at calc(100% - 30px) 30px);
}
.header .nav-morph.active .nav-morph__item {
  opacity: 1;
  transform: translateY(0);
}
.header .nav-morph.active .nav-morph__item:nth-child(1) {
  transition-delay: 0.3s;
}
.header .nav-morph.active .nav-morph__item:nth-child(2) {
  transition-delay: 0.4s;
}
.header .nav-morph.active .nav-morph__item:nth-child(3) {
  transition-delay: 0.5s;
}
.header .nav-morph.active .nav-morph__item:nth-child(4) {
  transition-delay: 0.6s;
}
.header .nav-morph.active .nav-morph__item:nth-child(5) {
  transition-delay: 0.7s;
}
.header .nav-morph__wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}
.header .nav-morph__list {
  margin: 0;
  padding: 0;
  list-style: none;
  text-align: center;
}
.header .nav-morph__item {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.header .nav-morph__link {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
  color: #666;
  text-decoration: none;
  overflow: hidden;
  transition: none;
}
.header .nav-morph__link:hover {
  color: #988f76;
  transition: none;
}
.header .nav-morph__link .nav-morph__text {
  font-family: "Montserrat", sans-serif;
  font-size: 2.4rem;
  text-transform: uppercase;
  margin-bottom: 0.5em;
  border-bottom: 2px solid #988f76;
  color: #988f76;
  padding-bottom: 0.5em;
}
.header .nav-morph__link .japanese {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
}

main .main-visual {
  position: relative;
}
main .main-visual .pc {
  width: 100%;
  height: auto;
}
main .main-visual .sp {
  display: none;
}
main .main-visual .first-content {
  position: absolute;
  top: 85%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  justify-content: center;
  width: 100%;
  max-width: 1000px;
  padding: 0 20px;
  align-items: center;
}
main .main-visual .first-content p img {
  border-right: 2px solid #fff;
  padding-right: 30px;
  max-width: 400px;
  width: 100%;
  min-width: 200px;
}
main .main-visual .first-content .main-content p:nth-child(1) {
  font-size: clamp(1.6rem, 1.091rem + 2.55vw, 3rem);
  font-family: "Noto Serif JP", serif;
  color: #fff;
  padding: 0 0 30px 30px;
  white-space: nowrap;
}
main .main-visual .first-content .main-content p:nth-child(2),
main .main-visual .first-content .main-content p:nth-child(3) {
  font-size: clamp(1rem, 0.782rem + 1.09vw, 1.6rem);
  font-family: "Noto Serif JP", serif;
  color: #fff;
  padding: 0 0 10px 30px;
  white-space: nowrap;
}
main .sec1 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 50px;
}
main .sec1 .fadeIn {
  opacity: 0;
  transition: 5s;
}
main .sec1 .fadeIn.is-show {
  opacity: 1;
}
main .sec1 .sp {
  display: none;
}
main .sec1 .imgBox {
  width: 50vw;
  margin: 0;
  z-index: 2;
}
main .sec1 .imgBox img {
  width: 100%;
  height: auto;
  display: block;
  margin: 0;
}
main .sec1 .txtBox {
  text-align: center;
}
main .sec1 .txtBox p {
  font-size: 60px;
  font-weight: bold;
  padding: 2em 0;
  margin: 0;
}
main .sec1 .section {
  max-width: 100%;
  overflow-x: hidden;
}
main .sec1 .section p._a {
  font-size: 12px;
  font-weight: bold;
  margin: 30px 0 0;
}
main .sec1 .section p._a .link {
  display: inline-block;
  color: #607D8B;
  padding-left: 1.3em;
  text-indent: -1.3em;
}
main .sec1 .section p._a .link:before {
  content: "";
  display: inline-block;
  width: 5px;
  height: 5px;
  border-top: 2px solid #607D8B;
  border-right: 2px solid #607D8B;
  transform: rotate(45deg);
  margin-right: 10px;
}
main .sec1-content {
  margin-right: auto;
  max-width: 500px;
  padding: 100px 0;
}
main .sec1-content h2 {
  font-family: "Noto Serif JP", serif;
  font-weight: 400;
  font-size: 3rem;
  color: #BCB297;
  text-align: justify;
  line-height: 1.5;
  text-align: center;
  padding-bottom: 100px;
}
main .sec1-content p {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  color: #666;
  text-align: justify;
  padding-bottom: 50px;
  width: calc(100% - 122px);
  line-height: 1.6;
  margin: 0 auto;
}
main .sec1-content span {
  color: #BCB297;
}
main .sec1-content .theport {
  text-transform: uppercase;
  font-family: "Noto Serif JP", serif;
  font-size: 3rem;
  color: #bcb297;
  font-size: 1.6rem;
  font-family: Arial, Helvetica, sans-serif;
}
main .sec2 {
  background-image: url(../images/haikei.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  padding: 0 20px;
}
main .sec2 .wrapper {
  max-width: 700px;
  margin: 0 auto;
}
main .sec2 .wrapper h2 {
  font-family: "Noto Serif JP", serif;
  font-weight: 400;
  font-size: 3rem;
  color: #BCB297;
  text-align: justify;
  line-height: 1.5;
  padding: 250px 0 0 0;
  text-align: center;
}
main .sec2 .wrapper h2 span {
  color: #666;
  font-size: 1.6rem;
  font-family: "Noto Sans JP", sans-serif;
}
main .sec2 .wrapper .sp-shine {
  display: none;
}
main .sec2 .wrapper .sec2-content1 {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  color: #666;
  text-align: justify;
  font-size: 1.6rem;
  padding-top: 50px;
  font-feature-settings: "palt";
}
main .sec2 .wrapper .sec2-content2 {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  color: #666;
  text-align: justify;
  font-size: 1.6rem;
  padding-top: 20px;
}
main .sec2 .wrapper .sec2-content3 {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  color: #666;
  text-align: justify;
  font-size: 1.6rem;
  padding-top: 50px;
  width: calc(100% - 453px);
  line-height: 2.3;
}
main .sec2 .wrapper .other-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 50px;
  padding: 100px 0 250px 0;
}
main .sec2 .wrapper .other-content .fadeIn {
  opacity: 0;
  transition: 2.5s;
}
main .sec2 .wrapper .other-content .fadeIn.is-show {
  opacity: 1;
}
main .sec2 .wrapper .other-content .imgBox {
  width: 50vw;
  margin: 0;
  z-index: 1;
}
main .sec2 .wrapper .other-content .imgBox img {
  height: auto;
  display: block;
  margin: 0;
}
main .sec2 .wrapper .other-content .txtBox {
  text-align: center;
}
main .sec2 .wrapper .other-content .txtBox p {
  font-size: 60px;
  font-weight: bold;
  padding: 2em 0;
  margin: 0;
}
main .sec2 .wrapper .other-content .section {
  max-width: 100%;
  overflow-x: hidden;
}
main .sec2 .wrapper .other-content .section p._a {
  font-size: 12px;
  font-weight: bold;
  margin: 30px 0 0;
}
main .sec2 .wrapper .other-content .section p._a .link {
  display: inline-block;
  color: #607D8B;
  padding-left: 1.3em;
  text-indent: -1.3em;
}
main .sec2 .wrapper .other-content .section p._a .link:before {
  content: "";
  display: inline-block;
  width: 5px;
  height: 5px;
  border-top: 2px solid #607D8B;
  border-right: 2px solid #607D8B;
  transform: rotate(45deg);
  margin-right: 10px;
}
main .sec2 .wrapper .other-content .shine-wrap {
  position: relative;
  display: inline-block;
  overflow: hidden;
  border: 3px solid #bcb297;
  border-radius: 220px;
  padding: 5px;
}
main .sec2 .wrapper .other-content .shine-wrap img {
  display: block;
  height: auto;
  border-radius: 160px;
}
main .sec2 .wrapper .other-content .shine-wrap::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.4) 100%);
  transform: skewX(-25deg);
  animation: shine 3s linear infinite;
  pointer-events: none;
}
@keyframes shine {
  0% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}
main .sec3 {
  background-image: url(../images/sen.png);
  background-position: center center;
  background-size: 100% 100%;
  background-repeat: no-repeat;
}
main .sec3 h2 {
  font-family: "Noto Serif JP", serif;
  font-weight: 400;
  font-size: 3rem;
  color: #BCB297;
  text-align: justify;
  line-height: 1.5;
  padding: 150px 0 0 0;
  text-align: center;
  padding-bottom: 175px;
}
main .sec3 h2 .theport {
  text-transform: uppercase;
  font-family: "Noto Serif JP", serif;
  font-size: 3rem;
  color: #bcb297;
}
main .sec3 h2 span {
  color: #666;
  font-size: 1.6rem;
  font-family: "Noto Sans JP", sans-serif;
}
main .sec3 .sec3-content {
  position: relative;
  padding-bottom: 250px;
}
main .sec3 .sec3-content .number {
  font-family: "Lustria", serif;
  font-size: 15.8rem;
  color: #EFE8DE;
  position: absolute;
  top: -13%;
  left: 38%;
}
main .sec3 .sec3-content .sec3-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 60px;
  padding-right: 20px;
}
main .sec3 .sec3-content .sec3-flex img {
  max-width: 600px;
  width: 100%;
  height: auto;
  min-width: 250px;
}
main .sec3 .sec3-content .sec3-flex .text {
  margin-right: auto;
}
main .sec3 .sec3-content .sec3-flex .text h3 {
  font-family: "Noto Serif JP", serif;
  font-weight: 400;
  font-size: 3rem;
  color: #BCB297;
  text-align: justify;
  line-height: 1.5;
  font-size: 2.4rem;
  padding-bottom: 50px;
}
main .sec3 .sec3-content .sec3-flex .text p {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  color: #666;
  text-align: justify;
  line-height: 2;
}
main .sec3 .sec3-content2 {
  position: relative;
  padding-bottom: 250px;
}
main .sec3 .sec3-content2 .number {
  font-family: "Lustria", serif;
  font-size: 15.8rem;
  color: #EFE8DE;
  position: absolute;
  top: -8%;
  left: 50%;
}
main .sec3 .sec3-content2 .sec3-flex2 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 60px;
  flex-direction: row-reverse;
  padding-left: 20px;
}
main .sec3 .sec3-content2 .sec3-flex2 img {
  max-width: 600px;
  width: 100%;
  height: auto;
  min-width: 200px;
}
main .sec3 .sec3-content2 .sec3-flex2 .text {
  margin-left: auto;
}
main .sec3 .sec3-content2 .sec3-flex2 .text h3 {
  font-family: "Noto Serif JP", serif;
  font-weight: 400;
  font-size: 3rem;
  color: #BCB297;
  text-align: justify;
  line-height: 1.5;
  font-size: 2.4rem;
  padding-bottom: 50px;
}
main .sec3 .sec3-content2 .sec3-flex2 .text p {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  color: #666;
  text-align: justify;
  line-height: 2;
}
main .location {
  background-image: url(../images/location.png);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
main .location .wrapper {
  max-width: 700px;
  margin: 0 auto;
  padding: 0 20px;
}
main .location .wrapper h3 {
  font-family: "Noto Serif JP", serif;
  font-weight: 400;
  font-size: 3rem;
  color: #BCB297;
  text-align: justify;
  line-height: 1.5;
  font-family: "Montserrat", sans-serif;
  text-align: center;
  padding: 250px 0 50px 0;
  color: #fff;
}
main .location .wrapper h3 span {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  color: #666;
  text-align: justify;
  color: #fff;
}
main .location .wrapper .location-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 608px;
}
main .location .wrapper .location-flex li {
  border: 1px solid #fff;
  border-radius: 10px;
  margin: 0 auto;
}
main .location .wrapper .location-flex li a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  padding: 13px 110px;
  font-size: 1.6rem;
  color: #fff;
  transition: 0.5s;
}

footer {
  background-image: url(../images/footer-background.png);
  background-size: 100% 100%;
  background-position: center center;
  background-repeat: no-repeat;
  margin-top: -50vh;
}
footer .wrapper-footer {
  max-width: 700px;
  margin: 0 auto;
  padding: 310px 0 100px 0;
}
footer .wrapper-footer nav .footer-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  gap: 50px;
  width: calc(100% - 100px);
  margin: 0 auto;
}
footer .wrapper-footer nav .footer-flex li a {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  color: #666;
  text-align: justify;
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase;
  transition: 0.3s;
}
footer .wrapper-footer .flex-area-sns p img {
  display: block;
  padding: 0 20px;
  margin: 50px auto 0;
}
footer .wrapper-footer .flex-area-sns .sns {
  display: flex;
  justify-content: space-between;
  align-items: center;
  justify-content: center;
  padding-top: 50px;
  gap: 50px;
}

main .mainvisual {
  position: relative;
}
main .mainvisual .sp {
  display: none;
}
main .mainvisual .pan {
  position: absolute;
  top: 10%;
  left: 15%;
}
main .mainvisual .pan ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}
main .mainvisual .pan ul li a {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  color: #666;
  text-align: justify;
  font-family: "Montserrat", sans-serif;
  color: #fff;
  text-transform: uppercase;
}
main .mainvisual .pan ul li .faq {
  color: #666;
  text-transform: uppercase;
}
main .mainvisual .pan ul .arrow {
  color: #fff;
  font-size: 1.8rem;
}
main .mainvisual .pan ul .faq {
  color: #666;
}
main .mainvisual h2 {
  position: absolute;
  top: 26%;
  left: 15%;
  font-family: "Lustria", serif;
  font-weight: 100;
  font-size: 9rem;
  color: #fff;
  text-align: center;
  text-transform: uppercase;
  padding: 50px 0;
  font-size: clamp(1rem, -0.818rem + 9.09vw, 9rem);
  padding: 0;
}
main .mainvisual h2 .line {
  display: block;
  border-bottom: 2px solid #fff;
}
main .mainvisual h2.faq {
  color: #666;
  font-size: clamp(1rem, -0.818rem + 9.09vw, 9rem);
  border-bottom: 3px solid #666;
}
main .mainvisual p {
  position: absolute;
  top: 43%;
  left: 15%;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  color: #666;
  text-align: justify;
  color: #fff;
}
main .mainvisual p.faq {
  position: absolute;
  top: 58%;
  left: 15%;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  color: #666;
  text-align: justify;
  color: #666;
}
main .con-sec1 {
  max-width: 520px;
  margin: 0 auto;
  padding: 250px 20px 0 20px;
  background-image: url(../images/sen.png);
  background-position: center center;
  background-size: contain;
  background-repeat: no-repeat;
}
main .con-sec1 .con-sec1-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 150px;
}
main .con-sec1 .con-sec1-flex img:nth-child(1) {
  transform: translateY(-10px);
}
main .con-sec1 .con-sec1-flex img:nth-child(3) {
  transform: translateY(10px);
}
main .con-sec1 .con-sec1-flex h3 {
  font-family: "Noto Serif JP", serif;
  font-weight: 400;
  font-size: 3rem;
  color: #BCB297;
  text-align: justify;
  line-height: 1.5;
  color: #666;
  text-align: center;
}
main .con-sec1 .con-sec1-flex h3 span {
  color: #BCB297;
}
main .con-sec1 .fadeIn_up {
  opacity: 0;
  transform: translate(0, 50%);
  transition: 2s;
}
main .con-sec1 .fadeIn_up.is-show {
  transform: translate(0, 0);
  opacity: 1;
}
main .con-sec1 .imgBox {
  text-align: center;
}
main .con-sec1 .imgBox img {
  max-width: 100%;
  height: auto;
  vertical-align: top;
}
main .con-sec1 p {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  color: #666;
  text-align: justify;
  line-height: 2.5;
  width: calc(100% - 203px);
  margin: 0 auto;
}
main .con-sec1 p span {
  color: #BCB297;
}
main .con-sec1 p:nth-child(2) {
  padding-bottom: 250px;
}
main .con-sec2 {
  background-image: url(../images/concept-backgroud.png);
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
}
main .con-sec2 .wrapper-con {
  max-width: 1050px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 50px;
  padding: 250px 20px 250px 20px;
}
main .con-sec2 .wrapper-con .sec2-content {
  width: 45%;
  flex-shrink: 0;
}
main .con-sec2 .wrapper-con .sec2-content h3 {
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 100;
  font-size: 3rem;
  text-align: center;
  text-transform: uppercase;
  color: #fff;
  padding-bottom: 50px;
}
main .con-sec2 .wrapper-con .sec2-content h4 {
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 100;
  font-size: 3rem;
  text-align: center;
  text-transform: uppercase;
  color: #fff;
  padding-bottom: 50px;
  text-transform: none;
  font-size: 2.4rem;
}
main .con-sec2 .wrapper-con .sec2-content p {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  color: #666;
  text-align: justify;
  color: #fff;
  line-height: 1.7;
  font-weight: 400;
  padding-bottom: 30px;
}
main .con-sec2 .wrapper-con .sec2-img {
  width: 55%;
  position: relative;
  aspect-ratio: 573/710;
}
main .con-sec2 .wrapper-con .sec2-img img {
  position: absolute;
  height: auto;
  transition: all 0.3s ease;
}
main .con-sec2 .wrapper-con .sec2-img img:nth-child(1) {
  width: 70%;
  top: 0;
  left: 0;
}
main .con-sec2 .wrapper-con .sec2-img img:nth-child(2) {
  width: 36%;
  bottom: -12%;
  left: -2%;
}
main .con-sec2 .wrapper-con .sec2-img img:nth-child(3) {
  width: 40%;
  bottom: -3%;
  right: 2%;
}

.footer {
  background-image: url(../images/footer-image.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  margin-top: 0;
  padding: 0 20px;
}
.footer .wrapper-footer2 {
  max-width: 700px;
  margin: 0 auto;
  padding: 100px 0 100px 0;
}
.footer .wrapper-footer2 nav .footer-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 50px;
  width: calc(100% - 100px);
  margin: 0 auto;
}
.footer .wrapper-footer2 nav .footer-flex li a {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  color: #666;
  text-align: justify;
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase;
  transition: 0.3s;
}
.footer .wrapper-footer2 p img {
  display: block;
  margin: 50px auto 0;
}
.footer .wrapper-footer2 .sns {
  display: flex;
  justify-content: space-between;
  align-items: center;
  justify-content: center;
  padding-top: 50px;
  gap: 50px;
}

.lesson {
  padding-top: 100px;
}

.Withdrawal {
  padding-bottom: 100px;
}

.content-faq {
  padding: 0 20px;
}

.lesson,
.experience,
.start,
.pay,
.reservation,
.Withdrawal {
  max-width: 900px;
  margin: 0 auto;
  padding-bottom: 80px;
}
.lesson h3,
.experience h3,
.start h3,
.pay h3,
.reservation h3,
.Withdrawal h3 {
  font-family: "Noto Serif JP", serif;
  font-weight: 400;
  font-size: 3rem;
  color: #BCB297;
  text-align: justify;
  line-height: 1.5;
  font-size: 2.8rem;
  text-align: center;
  padding-bottom: 30px;
  border-bottom: 1px solid #BCB297;
  margin-bottom: 20px;
}
.lesson .details,
.experience .details,
.start .details,
.pay .details,
.reservation .details,
.Withdrawal .details {
  border-bottom: 1px solid #BCB297;
}
.lesson .details .details-summary,
.experience .details .details-summary,
.start .details .details-summary,
.pay .details .details-summary,
.reservation .details .details-summary,
.Withdrawal .details .details-summary {
  position: relative;
  list-style: none;
  cursor: pointer;
  padding: 30px 50px 30px 40px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  color: #666;
  text-align: justify;
  line-height: 1.3;
  letter-spacing: 0.05em;
}
.lesson .details .details-summary::-webkit-details-marker,
.experience .details .details-summary::-webkit-details-marker,
.start .details .details-summary::-webkit-details-marker,
.pay .details .details-summary::-webkit-details-marker,
.reservation .details .details-summary::-webkit-details-marker,
.Withdrawal .details .details-summary::-webkit-details-marker {
  display: none;
}
.lesson .details .details-summary::before,
.experience .details .details-summary::before,
.start .details .details-summary::before,
.pay .details .details-summary::before,
.reservation .details .details-summary::before,
.Withdrawal .details .details-summary::before {
  content: "Q";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  color: #BCB297;
  font-family: "Lustria", serif;
  font-size: 2.4rem;
  font-weight: bold;
}
.lesson .details .details-summary .btn,
.experience .details .details-summary .btn,
.start .details .details-summary .btn,
.pay .details .details-summary .btn,
.reservation .details .details-summary .btn,
.Withdrawal .details .details-summary .btn {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
}
.lesson .details .details-summary .btn::before, .lesson .details .details-summary .btn::after,
.experience .details .details-summary .btn::before,
.experience .details .details-summary .btn::after,
.start .details .details-summary .btn::before,
.start .details .details-summary .btn::after,
.pay .details .details-summary .btn::before,
.pay .details .details-summary .btn::after,
.reservation .details .details-summary .btn::before,
.reservation .details .details-summary .btn::after,
.Withdrawal .details .details-summary .btn::before,
.Withdrawal .details .details-summary .btn::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background-color: #BCB297;
  transition: transform 0.3s ease;
}
.lesson .details .details-summary .btn::before,
.experience .details .details-summary .btn::before,
.start .details .details-summary .btn::before,
.pay .details .details-summary .btn::before,
.reservation .details .details-summary .btn::before,
.Withdrawal .details .details-summary .btn::before {
  width: 100%;
  height: 2px;
  transform: translate(-50%, -50%);
}
.lesson .details .details-summary .btn::after,
.experience .details .details-summary .btn::after,
.start .details .details-summary .btn::after,
.pay .details .details-summary .btn::after,
.reservation .details .details-summary .btn::after,
.Withdrawal .details .details-summary .btn::after {
  width: 2px;
  height: 100%;
  transform: translate(-50%, -50%);
}
.lesson .details .details-summary.is-active .btn::after,
.experience .details .details-summary.is-active .btn::after,
.start .details .details-summary.is-active .btn::after,
.pay .details .details-summary.is-active .btn::after,
.reservation .details .details-summary.is-active .btn::after,
.Withdrawal .details .details-summary.is-active .btn::after {
  transform: translate(-50%, -50%) rotate(90deg);
}
.lesson .details .details-content,
.experience .details .details-content,
.start .details .details-content,
.pay .details .details-content,
.reservation .details .details-content,
.Withdrawal .details .details-content {
  position: relative;
  padding: 0 20px 30px 40px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  color: #666;
  text-align: justify;
}
.lesson .details .details-content::before,
.experience .details .details-content::before,
.start .details .details-content::before,
.pay .details .details-content::before,
.reservation .details .details-content::before,
.Withdrawal .details .details-content::before {
  content: "A";
  position: absolute;
  left: 0;
  top: 0;
  color: #D3723E;
  font-family: "Lustria", serif;
  font-size: 2.4rem;
  font-weight: bold;
}
.lesson .details .details-content p,
.experience .details .details-content p,
.start .details .details-content p,
.pay .details .details-content p,
.reservation .details .details-content p,
.Withdrawal .details .details-content p {
  line-height: 1.5;
}
.lesson .details .details-content dl dt,
.experience .details .details-content dl dt,
.start .details .details-content dl dt,
.pay .details .details-content dl dt,
.reservation .details .details-content dl dt,
.Withdrawal .details .details-content dl dt {
  line-height: 1.5;
}
.lesson .details .details-content dl dd,
.experience .details .details-content dl dd,
.start .details .details-content dl dd,
.pay .details .details-content dl dd,
.reservation .details .details-content dl dd,
.Withdrawal .details .details-content dl dd {
  line-height: 1.5;
  padding-bottom: 20px;
}
.lesson .details .details-content ul li,
.experience .details .details-content ul li,
.start .details .details-content ul li,
.pay .details .details-content ul li,
.reservation .details .details-content ul li,
.Withdrawal .details .details-content ul li {
  line-height: 1.5;
}

.price-sec1 {
  padding: 250px 0;
  background-image: url(../images/price-background.png);
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
}
.price-sec1 p {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  color: #666;
  text-align: justify;
  text-align: center;
  line-height: 2.5;
}
.price-sec1 p:not(:last-child) {
  margin-bottom: 50px;
}

.price-wrapper {
  background-image: url("../images/Background.png");
  background-position: top;
  background-size: 100% auto;
  background-repeat: no-repeat;
}
.price-wrapper .price-sec2 {
  padding: 150px 0;
  margin: 0 auto;
}
.price-wrapper .price-sec2 h3 {
  max-width: 940px;
  font-family: "Noto Serif JP", serif;
  font-weight: 400;
  font-size: 3rem;
  color: #BCB297;
  text-align: justify;
  line-height: 1.5;
  font-family: "Lustria", serif;
  text-align: center;
  padding-top: 100px;
  text-transform: capitalize;
  display: flex;
  align-items: center;
  gap: 1em;
  margin: 0 auto;
  background-color: #fcfaf7;
}
.price-wrapper .price-sec2 h3 span {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  color: #666;
  text-align: justify;
  display: block;
  margin-top: 10px;
  text-align: center;
}
.price-wrapper .price-sec2 h3::before, .price-wrapper .price-sec2 h3::after {
  background-color: #ae987b;
  content: "";
  flex-grow: 1;
  height: 1px;
  transform: translateY(3px);
}
.price-wrapper .price-sec2 h3::before::before, .price-wrapper .price-sec2 h3::after::before {
  margin-left: 1rem;
}
.price-wrapper .price-sec2 h3::before::after, .price-wrapper .price-sec2 h3::after::after {
  margin-right: 1rem;
}
.price-wrapper .price-sec2 .other-h3 {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  color: #666;
  text-align: justify;
  text-align: center;
  padding-bottom: 100px;
  background-color: #fcfaf7;
}
.price-wrapper .price-sec2 h4 {
  font-family: "Noto Serif JP", serif;
  font-weight: 400;
  font-size: 3rem;
  color: #BCB297;
  text-align: justify;
  line-height: 1.5;
  color: #988f76;
  text-align: center;
  padding: 10px 0;
  text-transform: capitalize;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  gap: 20px;
}
.price-wrapper .price-sec2 h4::before, .price-wrapper .price-sec2 h4::after {
  content: "";
  background-color: #ae987b;
  flex-grow: 1;
  height: 1px;
  display: block;
  transform: translateY(3px);
}
.price-wrapper .price-sec2 h4::before {
  margin-left: 1rem;
}
.price-wrapper .price-sec2 h4::after {
  margin-right: 1rem;
}
.price-wrapper .price-sec2 .sec2-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  justify-content: center;
  align-items: flex-start;
  margin: 0 auto;
  padding-right: 20px;
  background: linear-gradient(to bottom, #fcfaf7 60%, #ffffff 100%);
}
.price-wrapper .price-sec2 .sec2-content .price-img {
  overflow: hidden;
  margin-right: 50px;
}
.price-wrapper .price-sec2 .sec2-content .price-img img {
  max-width: 1000px;
  margin-right: auto;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: auto;
}
.price-wrapper .price-sec2 .sec2-content .price-img .sp-price-img {
  display: none;
}
.price-wrapper .price-sec2 .sec2-content .price {
  margin-right: auto;
  flex-shrink: 0;
}
.price-wrapper .price-sec2 .sec2-content .price .content {
  border: 1px solid #988f76;
  max-width: 440px;
  margin-bottom: 30px;
  padding: 7.5px 0;
  background-color: #fff;
}
.price-wrapper .price-sec2 .sec2-content .price .content .price-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.price-wrapper .price-sec2 .sec2-content .price .content .price-flex p:nth-child(1) {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  color: #666;
  text-align: justify;
  color: #BCB297;
  background-color: #F6F3F0;
  border-radius: 50%;
  padding: 23px 10px;
}
.price-wrapper .price-sec2 .sec2-content .price .content .price-flex p:nth-child(2) {
  font-size: 4rem;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 600;
  color: #988f76;
}
.price-wrapper .price-sec2 .sec2-content .price .content .price-flex p:nth-child(2) span {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  color: #666;
  text-align: justify;
  color: #BCB297;
  padding-right: 5px;
}
.price-wrapper .price-sec2 .sec2-content .price .content .price-flex p.allyoucan {
  padding: 15px;
}
.price-wrapper .price-sec2 .sec2-content .price .content .price-flex p.addlesson {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  color: #666;
  text-align: justify;
  color: #BCB297;
  background-color: none;
  background-color: transparent;
  padding: 23px 0 23px 10px;
}
.price-wrapper .price-sec2 .sec2-content .price .content .price-flex p.first {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  color: #666;
  text-align: justify;
  padding: 23px 19px;
  background-color: #F6F3F0;
  color: #BCB297;
  border-radius: 50px;
  white-space: nowrap;
}
.price-wrapper .price-sec2 .sec2-content .price .content .price-flex p.price2 {
  font-size: 4rem;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 600;
  color: #988f76;
  margin-right: 0;
  white-space: nowrap;
}
.price-wrapper .price-sec2 .sec2-content .price .content .price-flex p.price2 span {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  color: #666;
  text-align: justify;
  color: #BCB297;
  padding-right: 5px;
}
.price-wrapper .price-sec2 .sec2-content .price .content p:nth-child(3) {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  color: #666;
  text-align: justify;
  text-align: center;
  padding: 10px 0;
}

.price-wrapper2 {
  background-image: url("../images/Background2.png");
  background-position: top;
  background-size: 100% auto;
  background-repeat: no-repeat;
}
.price-wrapper2 .price-sec2 {
  padding: 150px 0;
  margin: 0 auto;
  position: relative;
}
.price-wrapper2 .price-sec2 h3 {
  max-width: 940px;
  margin: 0 auto;
  font-family: "Noto Serif JP", serif;
  font-weight: 400;
  font-size: 3rem;
  color: #BCB297;
  text-align: justify;
  line-height: 1.5;
  font-family: "Lustria", serif;
  text-align: center;
  padding-top: 100px;
  text-transform: capitalize;
  display: flex;
  align-items: center;
  gap: 1em;
  background-color: #fcfaf7;
}
.price-wrapper2 .price-sec2 h3 span {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  color: #666;
  text-align: justify;
  display: block;
  margin-top: 10px;
  text-align: center;
}
.price-wrapper2 .price-sec2 h3::before, .price-wrapper2 .price-sec2 h3::after {
  content: "";
  background-color: #ae987b;
  flex-grow: 1;
  height: 1px;
  display: block;
  transform: translateY(3px);
}
.price-wrapper2 .price-sec2 h3::before {
  margin-left: 1rem;
}
.price-wrapper2 .price-sec2 h3::after {
  margin-right: 1rem;
}
.price-wrapper2 .price-sec2 .other-h3 {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  color: #666;
  text-align: justify;
  text-align: center;
  padding-bottom: 100px;
  background-color: #fcfaf7;
}
.price-wrapper2 .price-sec2 h4 {
  font-family: "Noto Serif JP", serif;
  font-weight: 400;
  font-size: 3rem;
  color: #BCB297;
  text-align: justify;
  line-height: 1.5;
  color: #988f76;
  text-align: center;
  padding: 10px 0;
  text-transform: capitalize;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  gap: 1em;
}
.price-wrapper2 .price-sec2 h4::before, .price-wrapper2 .price-sec2 h4::after {
  content: "";
  background-color: #ae987b;
  flex-grow: 1;
  height: 1px;
  display: block;
  transform: translateY(3px);
}
.price-wrapper2 .price-sec2 h4::before {
  margin-left: 1rem;
}
.price-wrapper2 .price-sec2 h4::after {
  margin-right: 1rem;
}
.price-wrapper2 .price-sec2 .sec2-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  justify-content: center;
  align-items: flex-start;
  margin: 0 auto;
  background: linear-gradient(to bottom, #fcfaf7 60%, #ffffff 100%);
}
.price-wrapper2 .price-sec2 .sec2-content .price-img {
  overflow: hidden;
  margin-left: 50px;
}
.price-wrapper2 .price-sec2 .sec2-content .price-img img {
  max-width: 1000px;
  margin-right: auto;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: auto;
}
.price-wrapper2 .price-sec2 .sec2-content .price-img .sp-price-img {
  display: none;
}
.price-wrapper2 .price-sec2 .sec2-content .price {
  flex-shrink: 0;
  margin-left: auto;
  padding-left: 20px;
}
.price-wrapper2 .price-sec2 .sec2-content .price .content {
  border: 1px solid #988f76;
  max-width: 440px;
  margin-bottom: 30px;
  padding: 7.5px 0;
  background-color: #fff;
}
.price-wrapper2 .price-sec2 .sec2-content .price .content .price-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.price-wrapper2 .price-sec2 .sec2-content .price .content .price-flex p:nth-child(1) {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  color: #666;
  text-align: justify;
  color: #BCB297;
  background-color: #F6F3F0;
  border-radius: 50%;
  padding: 23px 10px;
}
.price-wrapper2 .price-sec2 .sec2-content .price .content .price-flex p:nth-child(2) {
  font-size: 4rem;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 600;
  color: #988f76;
}
.price-wrapper2 .price-sec2 .sec2-content .price .content .price-flex p:nth-child(2) span {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  color: #666;
  text-align: justify;
  color: #BCB297;
  padding-right: 5px;
}
.price-wrapper2 .price-sec2 .sec2-content .price .content .price-flex p.allyoucan {
  padding: 15px;
}
.price-wrapper2 .price-sec2 .sec2-content .price .content .price-flex p.addlesson {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  color: #666;
  text-align: justify;
  color: #BCB297;
  background-color: none;
  background-color: transparent;
  padding: 23px 0 23px 10px;
}
.price-wrapper2 .price-sec2 .sec2-content .price .content .price-flex p.first {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  color: #666;
  text-align: justify;
  padding: 23px 19px;
  background-color: #F6F3F0;
  color: #BCB297;
  border-radius: 50px;
  white-space: nowrap;
}
.price-wrapper2 .price-sec2 .sec2-content .price .content .price-flex p.price2 {
  font-size: 4rem;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 600;
  color: #988f76;
  margin-left: 0;
  white-space: nowrap;
}
.price-wrapper2 .price-sec2 .sec2-content .price .content .price-flex p.price2 span {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  color: #666;
  text-align: justify;
  color: #BCB297;
  padding-right: 5px;
}
.price-wrapper2 .price-sec2 .sec2-content .price .content p:nth-child(3) {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  color: #666;
  text-align: justify;
  text-align: center;
  padding: 10px 0;
}

.price-wrapper3 {
  background-image: url("../images/Background.png");
  background-position: top;
  background-size: 100% auto;
  background-repeat: no-repeat;
}
.price-wrapper3 .price-sec2 {
  padding: 150px 0;
  margin: 0 auto;
}
.price-wrapper3 .price-sec2 h3 {
  max-width: 940px;
  margin: 0 auto;
  font-family: "Noto Serif JP", serif;
  font-weight: 400;
  font-size: 3rem;
  color: #BCB297;
  text-align: justify;
  line-height: 1.5;
  font-family: "Lustria", serif;
  text-align: center;
  padding-top: 100px;
  text-transform: capitalize;
  display: flex;
  align-items: center;
  gap: 1em;
  background-color: #fcfaf7;
}
.price-wrapper3 .price-sec2 h3 span {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  color: #666;
  text-align: justify;
  display: block;
  margin-top: 10px;
  text-align: center;
}
.price-wrapper3 .price-sec2 h3::before, .price-wrapper3 .price-sec2 h3::after {
  content: "";
  background-color: #ae987b;
  flex-grow: 1;
  height: 1px;
  display: block;
  transform: translateY(3px);
}
.price-wrapper3 .price-sec2 h3::before {
  margin-left: 1rem;
}
.price-wrapper3 .price-sec2 h3::after {
  margin-right: 1rem;
}
.price-wrapper3 .price-sec2 .other-h3 {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  color: #666;
  text-align: justify;
  text-align: center;
  padding-bottom: 100px;
  background-color: #fcfaf7;
}
.price-wrapper3 .price-sec2 h4 {
  font-family: "Noto Serif JP", serif;
  font-weight: 400;
  font-size: 3rem;
  color: #BCB297;
  text-align: justify;
  line-height: 1.5;
  color: #988f76;
  text-align: center;
  padding: 10px 0;
  text-transform: capitalize;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  gap: 1em;
}
.price-wrapper3 .price-sec2 h4::before, .price-wrapper3 .price-sec2 h4::after {
  content: "";
  background-color: #ae987b;
  flex-grow: 1;
  height: 1px;
  display: block;
}
.price-wrapper3 .price-sec2 h4::before {
  margin-left: 1rem;
}
.price-wrapper3 .price-sec2 h4::after {
  margin-right: 1rem;
}
.price-wrapper3 .price-sec2 .sec2-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  justify-content: center;
  align-items: flex-start;
  margin: 0 auto;
  padding-right: 20px;
  background: linear-gradient(to bottom, #fcfaf7 60%, #ffffff 100%);
}
.price-wrapper3 .price-sec2 .sec2-content .price-img {
  overflow: hidden;
  margin-right: 50px;
}
.price-wrapper3 .price-sec2 .sec2-content .price-img img {
  max-width: 1000px;
  margin-right: auto;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: auto;
}
.price-wrapper3 .price-sec2 .sec2-content .price-img .sp-price-img {
  display: none;
}
.price-wrapper3 .price-sec2 .sec2-content .price {
  margin-right: auto;
  flex-shrink: 0;
}
.price-wrapper3 .price-sec2 .sec2-content .price .content {
  border: 1px solid #988f76;
  width: 440px;
  margin-bottom: 30px;
  padding: 7.5px 0;
  background-color: #fff;
}
.price-wrapper3 .price-sec2 .sec2-content .price .content .price-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.price-wrapper3 .price-sec2 .sec2-content .price .content .price-flex p:nth-child(1) {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  color: #666;
  text-align: justify;
  color: #BCB297;
  background-color: #F6F3F0;
  border-radius: 50%;
  padding: 23px 10px;
}
.price-wrapper3 .price-sec2 .sec2-content .price .content .price-flex p:nth-child(2) {
  font-size: 4rem;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 600;
  color: #988f76;
}
.price-wrapper3 .price-sec2 .sec2-content .price .content .price-flex p:nth-child(2) span {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  color: #666;
  text-align: justify;
  color: #BCB297;
  padding-right: 5px;
}
.price-wrapper3 .price-sec2 .sec2-content .price .content .price-flex p.allyoucan {
  padding: 15px;
}
.price-wrapper3 .price-sec2 .sec2-content .price .content .price-flex p.addlesson {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  color: #666;
  text-align: justify;
  color: #BCB297;
  background-color: none;
  background-color: transparent;
}
.price-wrapper3 .price-sec2 .sec2-content .price .content .price-flex p.first {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  color: #666;
  text-align: justify;
  padding: 23px 19px;
  background-color: #F6F3F0;
  color: #BCB297;
  border-radius: 50px;
}
.price-wrapper3 .price-sec2 .sec2-content .price .content .price-flex p.price {
  font-size: 4rem;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 600;
  color: #988f76;
  background-color: transparent;
  margin: 0 auto;
}
.price-wrapper3 .price-sec2 .sec2-content .price .content .price-flex p.price span {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  color: #666;
  text-align: justify;
  color: #BCB297;
  padding-right: 5px;
}
.price-wrapper3 .price-sec2 .sec2-content .price .content p:nth-child(3) {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  color: #666;
  text-align: justify;
  text-align: center;
  padding: 10px 0;
}

.access {
  background-color: #eee;
}
.access .mainvisual .access-sp {
  display: none;
}
.access .access {
  max-width: 750px;
  margin: 0 auto;
  padding: 250px 20px;
}
.access .access h3 {
  font-family: "Noto Serif JP", serif;
  font-weight: 400;
  font-size: 3rem;
  color: #BCB297;
  text-align: justify;
  line-height: 1.5;
  font-family: Arial, Helvetica, sans-serif;
  text-align: center;
  text-transform: uppercase;
  display: flex;
  justify-content: space-between;
  width: calc(100% - 100px);
  margin: 0 auto;
}
.access .access h3::before, .access .access h3::after {
  content: "";
  background-color: #ae987b;
  flex-grow: 1;
  height: 1px;
  display: block;
  transform: translateY(23px);
}
.access .access h3::before {
  margin-right: 1em;
}
.access .access h3::after {
  margin-left: 1em;
}
.access .access h3 span {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  color: #666;
  text-align: justify;
}
.access .access p {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  color: #666;
  text-align: justify;
  text-align: center;
  padding-bottom: 50px;
  width: calc(100% - 100px);
  margin: 0 auto;
}
.access .access p .theport {
  text-transform: uppercase;
  font-family: "Noto Serif JP", serif;
  font-size: 3rem;
  color: #bcb297;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1.6rem;
  color: #666;
  padding-right: 5px;
}
.access .access .line {
  border-top: 1px solid #666;
  height: 1px;
  display: inline-block;
  width: 100%;
  margin: 30px 0;
}
.access .access .access-map {
  width: calc(100% - 100px);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  justify-content: start;
  gap: 50px;
}
.access .access .access-map .map-img {
  max-width: 150px;
}
.access .access .access-map .map-img img {
  width: 100%;
  min-width: 50px;
}
.access .access .access-map .map {
  margin: 0 auto;
}
.access .access .access-map .map h4 {
  font-family: "Noto Serif JP", serif;
  font-weight: 400;
  font-size: 3rem;
  color: #BCB297;
  text-align: justify;
  line-height: 1.5;
  font-size: clamp(1.6rem, 1.309rem + 1.45vw, 2.4rem);
  text-transform: uppercase;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 100;
  text-decoration: underline;
  text-align: left;
  word-spacing: normal;
  transition: 0.2s;
}
.access .access .access-map .map h4 .shopname {
  font-family: "Noto Sans JP", serif;
  font-weight: 350;
  font-size: clamp(1.6rem, 1.309rem + 1.45vw, 2.4rem);
}
.access .access .access-map .map .adress {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  color: #666;
  text-align: justify;
  margin: 0;
  font-size: 1.4rem;
  padding: 30px 0 0 0;
}
.access .access .access-map .map address {
  padding-top: 10px;
}
.access .access .access-map .map address p {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  color: #666;
  text-align: justify;
  font-size: 1.4rem;
  font-style: normal;
  padding: 0;
  margin: 0;
  white-space: nowrap;
}

main .wrapper-access {
  max-width: 960px;
  margin: 0 auto;
  padding: 250px 20px;
}
main .wrapper-access p img {
  border-radius: 50px 50px;
  margin-bottom: 100px;
}
main .wrapper-access article h3 {
  font-family: "Noto Serif JP", serif;
  font-weight: 400;
  font-size: 3rem;
  color: #BCB297;
  text-align: justify;
  line-height: 1.5;
  text-transform: capitalize;
  text-align: center;
  line-height: 1;
}
main .wrapper-access article h3 .theport {
  text-transform: uppercase;
  font-family: "Noto Serif JP", serif;
  font-size: 3rem;
  color: #bcb297;
  font-size: 1.6rem;
  color: #666;
  font-family: Arial, Helvetica, sans-serif;
}
main .wrapper-access article h3 .theport .shopname {
  font-family: "Noto Sans JP", serif;
  font-weight: 350;
}
main .wrapper-access article .access-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 100px 20px 0 20px;
  align-items: flex-start;
  gap: 50px;
}
main .wrapper-access article .access-flex h4 {
  font-family: "Noto Serif JP", serif;
  font-weight: 400;
  font-size: 3rem;
  color: #BCB297;
  text-align: justify;
  line-height: 1.5;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  padding-bottom: 10px;
}
main .wrapper-access article .access-flex address {
  padding-bottom: 20px;
}
main .wrapper-access article .access-flex address p {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  color: #666;
  text-align: justify;
  font-style: normal;
}
main .wrapper-access article .access-flex .station,
main .wrapper-access article .access-flex .time {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  color: #666;
  text-align: justify;
}
main .wrapper-access article .access-flex .station p,
main .wrapper-access article .access-flex .time p {
  padding-bottom: 10px;
}

.timed-banner {
  position: fixed;
  top: 50%;
  right: 20px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-50%) translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease, visibility 0.5s;
  pointer-events: none;
  z-index: 1000;
  border-radius: 8px;
  overflow: hidden;
}
.timed-banner.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(-50%);
  pointer-events: auto;
}
.timed-banner a {
  display: block;
}
.timed-banner a img {
  display: block;
  max-width: 400px;
  height: auto;
}
.timed-banner__close {
  position: absolute;
  top: 5px;
  right: 5px;
  width: 24px;
  height: 24px;
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: none;
  border-radius: 50%;
  font-size: 20px;
  line-height: 24px;
  text-align: center;
  transition: background-color 0.3s;
}
.timed-banner__close:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

@media (hover: hover) {
  header .header .right nav.header-btn a:hover {
    background-color: #1bb390;
  }
  footer .wrapper-footer nav .footer-flex li a:hover,
  .footer .wrapper-footer2 nav .footer-flex li a:hover,
  .access .access .access-map .map h4:hover {
    color: #988f76;
  }
  main .location .wrapper .location-flex li a:hover {
    background-color: rgba(255, 255, 255, 0.1);
  }
}
@media screen and (max-width: 768px) {
  .timed-banner {
    bottom: 15px;
    right: 15px;
  }
  .timed-banner a img {
    max-width: 300px;
  }
}
.loading-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}
.loading-screen .loading-content {
  text-align: center;
  color: var(--white);
}
.loading-screen .loading-logo {
  margin-bottom: var(--spacing-8);
  position: relative;
}
.loading-screen .loading-logo .logo-icon {
  width: 80px;
  height: 80px;
  background: var(--primary-gradient);
  border-radius: var(--border-radius-2xl);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  animation: pulse 2s infinite;
}
.loading-screen .loading-logo .logo-icon svg {
  width: 40px;
  height: 40px;
  color: var(--white);
}
.loading-screen .loading-logo::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--primary-gradient);
  border-radius: var(--border-radius-2xl);
  animation: ping 2s infinite;
  opacity: 0.3;
}
.loading-screen .loading-title {
  font-size: var(--font-size-4xl);
  font-weight: var(--font-weight-bold);
  margin-bottom: var(--spacing-8);
  letter-spacing: 0.1em;
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.loading-screen .progress-bar {
  width: 256px;
  height: 8px;
  background: var(--gray-800);
  border-radius: var(--border-radius-full);
  overflow: hidden;
  margin: 0 auto var(--spacing-4);
}
.loading-screen .progress-bar .progress-fill {
  height: 100%;
  background: var(--primary-gradient);
  width: 0%;
  transition: width 0.2s ease-out;
}
.loading-screen .loading-text {
  font-size: var(--font-size-sm);
  color: var(--gray-400);
  letter-spacing: 0.05em;
}

@keyframes pulse {
  50% {
    transform: scale(1.1);
  }
}
@keyframes ping {
  75%, 100% {
    transform: scale(2);
    opacity: 0;
  }
}
main .content-contact {
  max-width: 920px;
  margin: 0 auto;
  padding: 100px 20px 0 20px;
}
main .content-contact h2 {
  font-family: "Noto Serif JP", serif;
  font-weight: 400;
  font-size: 3rem;
  color: #BCB297;
  text-align: justify;
  line-height: 1.5;
  text-align: center;
  padding-bottom: 50px;
}
main .content-contact p {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  color: #666;
  text-align: justify;
  text-align: center;
  padding: 20px 0;
  font-weight: 400;
}
main .content-contact .contact-notes {
  padding-top: 50px;
  margin: 0 auto;
}
main .content-contact .contact-notes li {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  color: #666;
  text-align: justify;
  text-align: center;
  padding: 20px 0;
}
main .content-contact .contact-notes li strong {
  font-weight: 400;
}
main .form {
  max-width: 920px;
  margin: 0 auto;
  padding: 100px 20px;
}
main .form h2 {
  font-family: "Noto Serif JP", serif;
  font-weight: 400;
  font-size: 3rem;
  color: #BCB297;
  text-align: justify;
  line-height: 1.5;
  text-align: center;
  padding-bottom: 50px;
}
main .form .contact-form {
  display: flex;
  flex-direction: column;
  gap: 30px;
  max-width: 700px;
  margin: 0 auto;
}
main .form p {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  color: #666;
  text-align: justify;
}
main .form p a {
  color: #009b77;
}
main .form .form-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
main .form .form-group label {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  color: #666;
  text-align: justify;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
}
main .form .form-group .required {
  background-color: #BCB297;
  color: #fff;
  font-size: 1.2rem;
  padding: 2px 8px;
  border-radius: 4px;
  font-weight: 400;
}
main .form .form-group input[type=text],
main .form .form-group input[type=email],
main .form .form-group input[type=tel],
main .form .form-group select {
  width: 100%;
  padding: 15px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 1.6rem;
  background-color: #fdfcfb;
  transition: border-color 0.3s;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  color: #666;
}
main .form .form-group input[type=text]:focus,
main .form .form-group input[type=email]:focus,
main .form .form-group input[type=tel]:focus,
main .form .form-group select:focus {
  outline: none;
  border-color: #BCB297;
  box-shadow: 0 0 5px rgba(188, 178, 151, 0.5);
}
main .form .form-group input[type=date] {
  width: 100%;
  padding: 15px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 1.6rem;
  background-color: #fdfcfb;
  transition: border-color 0.3s;
  position: relative;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23BCB297' viewBox='0 0 16 16'%3E%3Cpath d='M3.5 0a.5.5 0 0 1 .5.5V1h8V.5a.5.5 0 0 1 1 0V1h1a2 2 0 0 1 2 2v11a2 2 0 0 1-2 2H2a2 2 0 0 1-2-2V3a2 2 0 0 1 2-2h1V.5a.5.5 0 0 1 .5-.5zM1 4v10a1 1 0 0 0 1 1h12a1 1 0 0 0 1-1V4H1z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 15px center;
  background-size: 1.8rem;
  color: #666;
}
main .form .form-group input[type=date]:focus {
  outline: none;
  border-color: #BCB297;
  box-shadow: 0 0 5px rgba(188, 178, 151, 0.5);
}
main .form .form-group input[type=date]::-webkit-calendar-picker-indicator {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  color: transparent;
  cursor: pointer;
}
main .form .form-group .select-wrapper {
  position: relative;
}
main .form .form-group .select-wrapper::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 8px solid #BCB297;
  pointer-events: none;
}
main .form .form-group .radio-group {
  display: flex;
  gap: 20px;
  padding-top: 10px;
}
main .form .form-group .radio-item {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-weight: 400;
}
main .form .form-group .radio-item input[type=radio] {
  display: none;
}
main .form .form-group .radio-item .radio-custom {
  width: 20px;
  height: 20px;
  border: 2px solid #BCB297;
  border-radius: 50%;
  position: relative;
  transition: background-color 0.3s;
}
main .form .form-group .radio-item .radio-custom::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  width: 10px;
  height: 10px;
  background-color: #BCB297;
  border-radius: 50%;
  transition: transform 0.3s;
}
main .form .form-group .radio-item input[type=radio]:checked + .radio-custom::after {
  transform: translate(-50%, -50%) scale(1);
}
main .form .form-submit {
  text-align: center;
  padding-top: 30px;
}
main .form .submit-btn {
  background-color: #009b77;
  color: #fff;
  border: none;
  padding: 15px 60px;
  border-radius: 50px;
  font-size: 1.8rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s, transform 0.3s;
}
main .form .submit-btn:hover {
  background-color: rgb(0, 104, 79.8451612903);
  transform: translateY(-2px);
}

@media screen and (max-width: 1024px) {
  main .sec1 {
    flex-direction: column;
    -moz-column-gap: 50px;
         column-gap: 50px;
  }
  main .sec1 .section {
    display: none;
  }
  main .sec1 .sec1-content {
    max-width: 360px;
    margin: 0 auto;
  }
  main .sec1 .sec1-content h2 {
    padding: 100px 0 50px 0;
  }
  main .sec1 .sec1-content p {
    width: calc(100% - 72px);
    letter-spacing: 1px;
  }
  main .sec1 .sec1-content p br {
    display: none;
  }
  main .sec1 .imgBox {
    width: 100vw;
    max-width: 100%;
  }
  main .sec1 .sp {
    display: block;
  }
}
@media screen and (max-width: 768px) {
  header .header h1 {
    padding-left: 5px;
  }
  header .header h1 a img {
    max-width: 250px;
  }
  header .header .right {
    padding-right: 5px;
  }
  header .header .right nav.header-btn a {
    padding: 14px 6.5px;
  }
  header .header .right nav.header-btn a p {
    font-size: 1.4rem;
    padding-right: 5px;
  }
  header .header .right nav.header-btn a img {
    display: none;
  }
  .header .nav-morph__link .nav-morph__text {
    font-size: 2rem;
  }
  .header .nav-morph__link .japanese {
    font-size: 1.4rem;
  }
  .header .nav-morph {
    height: 100vh;
    background-size: cover;
  }
  .header .hamburger-morph {
    right: 10px;
    top: 15px;
  }
  .header .right nav.header-btn a {
    padding: 14px 6.5px;
  }
  main .main-visual .sp {
    display: block;
    width: 100%;
    height: auto;
  }
  main .main-visual .pc {
    display: none;
  }
  main .main-visual .first-content {
    flex-direction: column;
    top: 80%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 400px;
    width: 90%;
  }
  main .main-visual .first-content p {
    max-width: 300px;
    width: 100%;
    margin: 0 auto;
  }
  main .main-visual .first-content p img {
    border-right: none;
    padding-right: 0;
    padding-bottom: 20px;
  }
  main .main-visual .first-content .main-content {
    border-top: 2px solid #fff;
  }
  main .main-visual .first-content .main-content p:nth-child(1) {
    padding: 0;
    padding-top: 20px;
    max-width: 400px;
    width: 100%;
  }
  main .main-visual .first-content .main-content p:nth-child(2),
  main .main-visual .first-content .main-content p:nth-child(3) {
    font-size: 1.4rem;
    padding: 0;
    padding-top: 10px;
    max-width: 400px;
    width: 100%;
    white-space: normal;
    line-height: 1.3;
  }
  main .sec1-content {
    padding: 0;
  }
  main .sec2 {
    background-image: url(../images/haikei-sp.png);
    background-size: 100% 100%;
  }
  main .sec2 .wrapper {
    max-width: 360px;
    display: flex;
    flex-direction: column;
  }
  main .sec2 .wrapper h2 {
    padding: 100px 0 50px 0;
  }
  main .sec2 .wrapper .sec2-content1 {
    line-height: 2;
  }
  main .sec2 .wrapper .sec2-content2 {
    line-height: 2;
  }
  main .sec2 .wrapper .sec2-content3 {
    width: 100%;
    line-height: 2;
  }
  main .sec2 .wrapper .other-content {
    padding: 100px 0 150px 0;
  }
  main .sec2 .wrapper .other-content .shine-wrap {
    display: none;
  }
  main .sec2 .wrapper .other-content .shine-wrap::after {
    display: none;
  }
  main .sec2 .wrapper .other-content .imgBox {
    width: 100%;
  }
  main .sec2 .wrapper .other-content .imgBox img {
    margin: 0 auto;
  }
  main .sec2 .wrapper .sp-shine {
    display: block;
    position: relative;
    overflow: hidden;
    border: 3px solid #bcb297;
    border-radius: 220px;
    padding: 5px;
    max-width: 300px;
    width: 100%;
    min-width: 150px;
    margin: 0 auto;
  }
  main .sec2 .wrapper .sp-shine img {
    display: block;
    height: auto;
    border-radius: 160px;
  }
  main .sec2 .wrapper .sp-shine::after {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.4) 100%);
    transform: skewX(-25deg);
    animation: shine 3s linear infinite;
    pointer-events: none;
  }
  @keyframes shine {
    0% {
      left: -100%;
    }
    100% {
      left: 100%;
    }
  }
  main .sec3 h2 {
    padding: 100px 0 150px 0;
  }
  main .sec3 .sec3-content .number {
    top: -8%;
    left: 18%;
    font-size: 10rem;
  }
  main .sec3 .sec3-content .sec3-flex {
    flex-direction: column;
    gap: 30px;
  }
  main .sec3 .sec3-content .sec3-flex img {
    margin-right: auto;
    max-width: 540px;
    width: 100%;
  }
  main .sec3 .sec3-content .sec3-flex .text {
    max-width: 550px;
    margin: 0 auto;
    padding-left: 20px;
  }
  main .sec3 .sec3-content .sec3-flex .text h3 {
    padding-bottom: 30px;
  }
  main .sec3 .sec3-content2 .number {
    top: -9%;
    left: 65%;
    font-size: 10rem;
  }
  main .sec3 .sec3-content2 .sec3-flex2 {
    flex-direction: column;
    gap: 30px;
  }
  main .sec3 .sec3-content2 .sec3-flex2 img {
    margin-left: auto;
    max-width: 540px;
    width: 100%;
  }
  main .sec3 .sec3-content2 .sec3-flex2 .text {
    max-width: 540px;
    width: 100%;
    padding-right: 20px;
  }
  main .sec3 .sec3-content2 .sec3-flex2 .text h3 {
    padding-bottom: 30px;
  }
  main .location .wrapper h3 {
    padding: 200px 0 25px;
  }
  main .location .wrapper .location-flex {
    padding-bottom: 550px;
  }
  main .location .wrapper .location-flex li a {
    padding: 10px 85px;
  }
  footer {
    background-image: url(../images/footer-sp.png);
  }
  footer .wrapper-footer {
    display: flex;
    flex-direction: column-reverse;
    padding: 100px 20px 100px;
  }
  footer .wrapper-footer nav .footer-flex {
    flex-direction: column;
    padding-top: 50px;
    gap: 40px;
  }
  footer .wrapper-footer .flex-area-sns p img {
    padding: 100px 0 0 0;
    max-width: 250px;
    width: 100%;
    min-width: 150px;
    margin: 0 auto;
  }
  main .mainvisual .sp {
    display: block;
  }
  main .mainvisual .pc {
    display: none;
  }
  main .mainvisual .pan {
    left: 10%;
  }
  main .mainvisual h2 {
    font-size: clamp(4.5rem, 3.955rem + 2.73vw, 6rem);
    top: 26%;
    left: 10%;
    padding: 0;
  }
  main .mainvisual p.faq {
    top: 40%;
    left: 10%;
  }
  main .mainvisual p {
    top: 35%;
    left: 10%;
  }
  main .con-sec1 .con-sec1-flex {
    padding-bottom: 100px;
  }
  main .con-sec1 .con-sec1-flex img:nth-child(1) {
    transform: translateY(10px);
  }
  main .con-sec1 p {
    width: calc(100% - 40px);
  }
  main .con-sec2 {
    background-image: url(../images/concept-backgroud-sp.png);
  }
  main .con-sec2 .wrapper-con {
    flex-direction: column;
    padding-top: 100px;
    padding-bottom: 150px;
    gap: 80px;
  }
  main .con-sec2 .wrapper-con .sec2-content {
    width: 100%;
    max-width: 500px;
  }
  main .con-sec2 .wrapper-con .sec2-content p {
    line-height: 1.4;
    font-weight: 500;
  }
  main .con-sec2 .wrapper-con .sec2-img {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
  }
  main .con-sec2 .wrapper-con .sec2-img img:nth-child(1) {
    width: 73%;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
  }
  main .con-sec2 .wrapper-con .sec2-img img:nth-child(2) {
    width: 39%;
    bottom: -5%;
    left: 0;
  }
  main .con-sec2 .wrapper-con .sec2-img img:nth-child(3) {
    width: 45%;
    bottom: -23%;
    right: 0;
  }
  .footer {
    background-image: url(../images/footer-sp2.png);
  }
  .footer .wrapper-footer2 {
    display: flex;
    flex-direction: column-reverse;
    padding: 100px 0;
  }
  .footer .wrapper-footer2 p img {
    margin: 0 auto;
    max-width: 250px;
    width: 100%;
    min-width: 150px;
  }
  .footer .wrapper-footer2 nav .footer-flex {
    flex-direction: column;
    padding-top: 50px;
  }
  .price-wrapper .price-sec2 {
    padding: 150px 0 70px;
  }
  .price-wrapper .price-sec2 h3 {
    padding-top: 0;
    max-width: 550px;
    padding: 0 20px;
  }
	.price-wrapper .price-sec2 .other-h3{
		padding-bottom: 50px;
	}
  .price-wrapper .price-sec2 h4 {
    font-size: 2.4rem;
    padding: 5px 0;
  }
  .price-wrapper .price-sec2 .sec2-content {
    flex-direction: column;
    padding-right: 0;
  }
  .price-wrapper .price-sec2 .sec2-content .price {
    max-width: 550px;
    width: 100%;
    margin: 0 auto;
  }
  .price-wrapper .price-sec2 .sec2-content .price .content {
    max-width: none;
  }
  .price-wrapper .price-sec2 .sec2-content .price .content p:nth-child(3) {
    font-size: 1.4rem;
    padding: 5px;
  }
  .price-wrapper .price-sec2 .sec2-content .price .content .price-flex {
    gap: 10px;
  }
  .price-wrapper .price-sec2 .sec2-content .price .content .price-flex p:nth-child(1) {
    font-size: 1.4rem;
    padding: 23px 12.11px;
  }
  .price-wrapper .price-sec2 .sec2-content .price .content .price-flex p:nth-child(2) {
    font-size: 3rem;
  }
  .price-wrapper .price-sec2 .sec2-content .price .content .price-flex p:nth-child(2) span {
    font-size: 1.4rem;
  }
  .price-wrapper .price-sec2 .sec2-content .price .content .price-flex p.allyoucan {
    padding: 16px;
  }
  .price-wrapper .price-sec2 .sec2-content .price .content .price-flex p.first {
    font-size: 1.4rem;
  }
  .price-wrapper .price-sec2 .sec2-content .price .content .price-flex p.price2 {
    font-size: 3rem;
  }
  .price-wrapper .price-sec2 .sec2-content .price .content .price-flex p.price2 span {
    font-size: 1.4rem;
  }
  .price-wrapper .price-sec2 .sec2-content .price-img {
    margin-right: 0;
  }
  .price-wrapper .price-sec2 .sec2-content .price-img img {
    display: none;
  }
  .price-wrapper .price-sec2 .sec2-content .price-img .sp-price-img {
    display: block;
  }
  .price-wrapper .price-sec2 .price {
    margin: 0 auto;
    padding: 50px 20px;
  }
  .price-wrapper2 .price-sec2 {
    padding: 150px 0 120px;
  }
  .price-wrapper2 .price-sec2 h3 {
    padding-top: 0;
    max-width: 550px;
    padding: 0 20px;
  }
	.price-wrapper2 .price-sec2 .other-h3{
		padding-bottom: 50px;
	}
  .price-wrapper2 .price-sec2 h4 {
    font-size: 2.4rem;
    padding: 5px 0;
  }
  .price-wrapper2 .price-sec2 .sec2-content {
    flex-direction: column-reverse;
    padding-right: 0;
  }
  .price-wrapper2 .price-sec2 .sec2-content .price {
    max-width: 550px;
    width: 100%;
    margin: 0 auto;
  }
  .price-wrapper2 .price-sec2 .sec2-content .price .content {
    width: 100%;
    max-width: none;
  }
  .price-wrapper2 .price-sec2 .sec2-content .price .content p:nth-child(3) {
    font-size: 1.4rem;
    padding: 5px;
  }
  .price-wrapper2 .price-sec2 .sec2-content .price .content .price-flex {
    gap: 10px;
  }
  .price-wrapper2 .price-sec2 .sec2-content .price .content .price-flex p:nth-child(1) {
    font-size: 1.4rem;
    padding: 23px 12.11px;
  }
  .price-wrapper2 .price-sec2 .sec2-content .price .content .price-flex p:nth-child(2) {
    font-size: 3rem;
  }
  .price-wrapper2 .price-sec2 .sec2-content .price .content .price-flex p:nth-child(2) span {
    font-size: 1.4rem;
  }
  .price-wrapper2 .price-sec2 .sec2-content .price .content .price-flex p.allyoucan {
    padding: 16px;
  }
  .price-wrapper2 .price-sec2 .sec2-content .price .content .price-flex p.first {
    font-size: 1.4rem;
  }
  .price-wrapper2 .price-sec2 .sec2-content .price .content .price-flex p.price2 {
    font-size: 3rem;
  }
  .price-wrapper2 .price-sec2 .sec2-content .price .content .price-flex p.price2 span {
    font-size: 1.4rem;
  }
  .price-wrapper2 .price-sec2 .sec2-content .price-img {
    margin-left: 0;
  }
  .price-wrapper2 .price-sec2 .sec2-content .price-img img {
    display: none;
  }
  .price-wrapper2 .price-sec2 .sec2-content .price-img .sp-price-img {
    display: block;
  }
  .price-wrapper2 .price-sec2 .price {
    margin: 0 auto;
    padding: 50px 20px 0 20px;
  }
  .price-wrapper3 .price-sec2 {
    padding: 150px 0 70px;
  }
  .price-wrapper3 .price-sec2 h3 {
    padding-top: 0;
    max-width: 550px;
    padding: 0 20px;
  }
	.price-wrapper3 .price-sec2 .other-h3{
		padding-bottom: 50px;
	}
  .price-wrapper3 .price-sec2 h4 {
    font-size: 2.4rem;
    padding: 5px 0;
  }
  .price-wrapper3 .price-sec2 .sec2-content {
    flex-direction: column;
    padding-right: 0;
  }
  .price-wrapper3 .price-sec2 .sec2-content .price {
    max-width: 550px;
    width: 100%;
    margin: 0 auto;
  }
  .price-wrapper3 .price-sec2 .sec2-content .price .content {
    width: 100%;
    max-width: none;
  }
  .price-wrapper3 .price-sec2 .sec2-content .price .content p:nth-child(3) {
    font-size: 1.4rem;
    padding: 5px;
  }
  .price-wrapper3 .price-sec2 .sec2-content .price .content .price-flex {
    gap: 10px;
  }
  .price-wrapper3 .price-sec2 .sec2-content .price .content .price-flex p:nth-child(1) {
    font-size: 3rem;
    text-align: center;
  }
  .price-wrapper3 .price-sec2 .sec2-content .price .content .price-flex p:nth-child(1) span {
    font-size: 1.4rem;
  }
  .price-wrapper3 .price-sec2 .sec2-content .price-img {
    margin-right: 0;
  }
  .price-wrapper3 .price-sec2 .sec2-content .price-img img {
    display: none;
  }
  .price-wrapper3 .price-sec2 .sec2-content .price-img .sp-price-img {
    display: block;
  }
  .price-wrapper3 .price-sec2 .price {
    margin: 0 auto;
    padding: 50px 20px;
  }
  .content-faq .details .details-content p,
  .content-faq .details .details-content ul li,
  .content-faq .details .details-content dl dt,
  .content-faq .details .details-content dl dd {
    line-height: 1.3;
  }
  .lesson .details .details-summary .btn,
  .experience .details .details-summary .btn,
  .start .details .details-summary .btn,
  .pay .details .details-summary .btn,
  .reservation .details .details-summary .btn,
  .Withdrawal .details .details-summary .btn {
    width: 15px;
    height: 15px;
  }
  .access .access {
    max-width: 490px;
    padding: 100px 20px;
  }
  .access .access h3 {
    width: 100%;
  }
  .access .access .access-map {
    gap: 15px;
    width: calc(100% - 10px);
  }
  .access .access .access-map .map h4 {
    font-size: clamp(1.4rem, 1.255rem + 0.73vw, 1.8rem);
  }
  .access .access .access-map .map h4 .shopname {
    font-size: clamp(1.4rem, 1.255rem + 0.73vw, 1.8rem);
  }
  .access .access .access-map .map .adress {
    min-width: 200px;
    padding: 10px 0 0 0;
  }
  .access .mainvisual .access-sp {
    display: block;
    height: 60vh;
  }
  .access .mainvisual .pc {
    display: none;
  }
  .access .mainvisual h2.faq {
    font-size: clamp(4rem, 3.273rem + 3.64vw, 6rem);
  }
  main .wrapper-access {
    padding: 100px 20px;
    max-width: 600px;
  }
  main .wrapper-access p img {
    margin-bottom: 50px;
  }
  main .wrapper-access article {
    max-width: 300px;
    margin: 0 auto;
  }
  main .wrapper-access article .access-flex {
    flex-direction: column-reverse;
    padding: 50px 0 0 0;
  }
  main .wrapper-access article .access-flex iframe {
    max-width: 250px;
    max-height: 250px;
    min-width: 200px;
    min-height: 200px;
    margin: 0 auto;
  }
  main .content-contact {
    padding: 50px 20px 0 20px;
    max-width: 500px;
  }
  main .content-contact p {
    padding: 10px 0 0 0;
    text-align: justify;
    line-height: 1.3;
  }
  main .content-contact .contact-notes {
    padding-top: 40px;
  }
  main .content-contact .contact-notes li {
    text-align: justify;
    line-height: 1.3;
    padding: 20px 0 0 0;
  }
  main .content-contact .form {
    padding: 50px 20px;
  }
  main .content-contact .form .form-group .radio-group {
    flex-direction: column;
    gap: 15px;
  }
}
@media screen and (max-width: 390px) {
  .header .hamburger-morph {
    top: 15px;
  }
  main .sec3 .sec3-content,
  main .sec3 .sec3-content2 {
    padding-bottom: 150px;
  }
  main .location .wrapper .location-flex {
    padding-bottom: 570px;
  }
  main .con-sec1 {
    padding: 150px 20px 0 20px;
  }
  main .con-sec1 p:nth-child(2) {
    padding-bottom: 150px;
  }
  main .mainvisual p {
    top: 38%;
  }
  .price-wrapper .price-sec2,
  .price-wrapper3 .price-sec2 {
    padding: 100px 0 20px;
  }
  .price-wrapper2 .price-sec2 {
    padding: 100px 0 70px;
  }
}
.access .access .access-map .map-img img {
  width: 80%;
}

html,
body {
  cursor: none;
}

a,
button,
.details-summary,
.hamburger-morph {
  cursor: none;
}

.cursor {
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 9999;
  mix-blend-mode: difference;
}

.cursor__ball {
  position: absolute;
  border-radius: 50%;
}
.cursor__ball--small {
  width: 10px;
  height: 10px;
  background-color: #677089;
}
.cursor__ball--big {
  width: 40px;
  height: 40px;
  border: 1px solid #677089;
  background-color: transparent;
  background-color: transparent;
}/*# sourceMappingURL=style.css.map */