@charset "UTF-8";
/*=========== variables =============*/
body {
  --base: rgba(221, 204, 182, 0.8);
  --green:#227A0F;
}

/*=========== mixins =============*/
/*=========== rem rem =============*/
html {
  font-size: 62.5%;
}
@media screen and (min-width: 320px) and (max-width: 768px) {
  html {
    font-size: 2.6666666667vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1400px) {
  html {
    font-size: 0.6944444444vw;
  }
}
@media screen and (min-width: 1440px) {
  html {
    font-size: 0.6944444444vw;
  }
}

@keyframes bodyReady {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
body {
  font-optical-sizing: auto;
  min-height: 100vh;
  background-color: var(--base);
  color: var(--black);
  font-family: "Noto Sans JP", serif;
  font-style: normal;
  font-size: 1.4rem;
  line-height: 1.8;
  letter-spacing: 0;
  padding: 0;
  margin: 0;
  position: relative;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  overflow-y: scroll;
  overscroll-behavior: none;
}
body::after {
  content: "";
  display: block;
  background-color: #DDCCB6;
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  pointer-events: none;
}
body.active::after {
  animation: bodyReady 0.3s forwards;
}
@media (max-width: 768px) {
  body {
    line-height: 1.6;
  }
}
body *, body *:before, body *:after {
  box-sizing: border-box;
  font-weight: 400;
}

.bold {
  font-weight: 700;
}

.medium {
  font-weight: 500;
}

::-moz-selection {
  color: #333d42;
  background-color: #000;
}

::selection {
  color: #333d42;
  background-color: #000;
}

h1, h2, h3, h4, h5, h6, p {
  margin: 0;
  color: var(--black);
}

a {
  text-decoration: none;
  color: var(--black);
  outline: none;
}

a:focus {
  outline: none;
}

a:hover {
  text-decoration: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  color: inherit;
}

a:visited {
  color: var(--black);
}

i {
  display: inline-block;
}

ul {
  padding: 0;
  margin: 0;
}

li {
  list-style: none;
}

figure {
  margin: 0;
}

img {
  width: 100%;
  backface-visibility: hidden;
  vertical-align: top;
  height: auto;
}

canvas, video {
  vertical-align: top;
}

button {
  display: inline-block;
  text-align: center;
  text-decoration: none;
  text-transform: inherit;
  white-space: normal;
  cursor: pointer;
}

input, button, textarea, select {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  font-family: inherit;
  font-weight: inherit;
  color: inherit;
  line-height: inherit;
  letter-spacing: inherit;
  backface-visibility: hidden;
}

input:focus, textarea:focus, input[type]:focus, .uneditable-input:focus {
  outline: 0;
  box-shadow: none;
  border: none;
  background-color: transparent;
}

select,
input[type=text],
input[type=search],
input[type=tel],
input[type=url],
input[type=email],
input[type=password],
input[type=number],
input[type=file],
input[type=date],
textarea,
select:focus,
input[type=text]:focus,
input[type=search]:focus,
input[type=tel]:focus,
input[type=url]:focus,
input[type=email]:focus,
input[type=password]:focus,
input[type=number]:focus,
input[type=file]:focus,
input[type=date]:focus,
textarea:focus {
  padding: 0 1rem;
  border: 2px solid #000;
  width: 335px;
  height: 56px;
  font-size: 15px;
  font-weight: bold;
}
@media (max-width: 768px) {
  select,
  input[type=text],
  input[type=search],
  input[type=tel],
  input[type=url],
  input[type=email],
  input[type=password],
  input[type=number],
  input[type=file],
  input[type=date],
  textarea,
  select:focus,
  input[type=text]:focus,
  input[type=search]:focus,
  input[type=tel]:focus,
  input[type=url]:focus,
  input[type=email]:focus,
  input[type=password]:focus,
  input[type=number]:focus,
  input[type=file]:focus,
  input[type=date]:focus,
  textarea:focus {
    padding: 0 15px;
    height: 42px;
    font-size: 12px;
    border: 1px solid #000;
    width: 100%;
  }
  html.ANDROID select,
  html.ANDROID input[type=text],
  html.ANDROID input[type=search],
  html.ANDROID input[type=tel],
  html.ANDROID input[type=url],
  html.ANDROID input[type=email],
  html.ANDROID input[type=password],
  html.ANDROID input[type=number],
  html.ANDROID input[type=file],
  html.ANDROID input[type=date],
  html.ANDROID textarea,
  html.ANDROID select:focus,
  html.ANDROID input[type=text]:focus,
  html.ANDROID input[type=search]:focus,
  html.ANDROID input[type=tel]:focus,
  html.ANDROID input[type=url]:focus,
  html.ANDROID input[type=email]:focus,
  html.ANDROID input[type=password]:focus,
  html.ANDROID input[type=number]:focus,
  html.ANDROID input[type=file]:focus,
  html.ANDROID input[type=date]:focus,
  html.ANDROID textarea:focus {
    padding: 0 15px;
  }
}

input[type=search]::-webkit-search-cancel-button {
  display: none;
}

select {
  cursor: pointer;
  font-weight: bold;
}
@media (max-width: 768px) {
  select {
    background-position: right 1.2rem top 50%;
    background-size: 1.2rem;
  }
}

textarea, textarea:focus {
  font-weight: bold;
  height: 135px;
}

input[type=checkbox],
input[type=radio],
input[type=checkbox]:focus,
input[type=radio]:focus {
  width: 20px;
  height: 20px;
  border: 1px solid #000;
  margin-right: 10px;
  position: relative;
}
input[type=checkbox][type=radio],
input[type=radio][type=radio],
input[type=checkbox]:focus[type=radio],
input[type=radio]:focus[type=radio] {
  border-radius: 20px;
}

input[type=checkbox]:checked:before,
input[type=radio]:checked:before {
  background-color: #000;
  content: "";
  position: absolute;
  top: 2px;
  left: 2px;
  width: calc(100% - 4px);
  height: calc(100% - 4px);
}
input[type=checkbox]:checked[type=radio],
input[type=radio]:checked[type=radio] {
  border-radius: 20px;
}
input[type=checkbox]:checked[type=radio]:before,
input[type=radio]:checked[type=radio]:before {
  border-radius: 20px;
}

* {
  -webkit-tap-highlight-color: transparent;
}

@media (min-width: 769px) {
  .spOnly {
    display: none !important;
  }
  .btn, a {
    display: inline-block;
    opacity: 1;
    transition: all 0.1s linear;
    text-decoration: none;
  }
  .btn svg, a svg {
    fill: var(--black);
    transition: all 0.1s linear;
  }
  .btn:hover, a:hover {
    color: var(--keyBlue);
  }
  .btn:hover svg, a:hover svg {
    fill: var(--keyBlue);
  }
}
@media (max-width: 768px) {
  .pcOnly {
    display: none !important;
  }
  svg {
    fill: var(--black);
  }
}
/*============ header ============*/
header.header {
  position: relative;
  z-index: 1;
}
@media all and (min-width: 769px) {
  header.header .header-inner {
    padding: 1.6rem 12.2rem;
  }
}
@media all and (max-width: 768px) {
  header.header .header-inner {
    padding: 1.6rem 1.6rem;
  }
}
@media (max-width: 768px) {
  header.header .header-inner {
    display: flex;
    justify-content: space-between;
  }
}
header.header .logo {
  line-height: 0;
}
@media all and (min-width: 769px) {
  header.header .logo {
    width: 39.7rem;
  }
  header.header .logo else {
    width: 397;
  }
}
@media all and (max-width: 768px) {
  header.header .logo {
    width: 19rem;
  }
  header.header .logo else {
    width: 190;
  }
}
@media (max-width: 768px) and (max-width: 768px) {
  header.header .sns-list-wrapper {
    margin-right: -0.6rem;
  }
  header.header .sns-list-wrapper else {
    margin-right: -6;
  }
}
@media (max-width: 768px) and (max-width: 768px) {
  header.header .sns-list-wrapper {
    margin-bottom: -0.6rem;
  }
  header.header .sns-list-wrapper else {
    margin-bottom: -6;
  }
}

@media (min-width: 769px) {
  .sns-list-wrapper {
    position: sticky;
    top: 0;
    z-index: 2;
  }
}
.sns-list-wrapper .sns-list {
  display: flex;
}
@media (min-width: 769px) {
  .sns-list-wrapper .sns-list {
    position: absolute;
    flex-direction: column;
  }
}
@media all and (min-width: 769px) {
  .sns-list-wrapper .sns-list {
    padding: 12.1rem 2.2rem;
  }
}
@media all and (max-width: 768px) {
  .sns-list-wrapper .sns-list {
    padding: 0rem 0rem;
  }
}
.sns-list-wrapper .icon {
  transition: opacity 0.2s;
}
@media all and (min-width: 769px) {
  .sns-list-wrapper .icon {
    width: 7rem;
  }
  .sns-list-wrapper .icon else {
    width: 70;
  }
}
@media all and (max-width: 768px) {
  .sns-list-wrapper .icon {
    width: 4.4rem;
  }
  .sns-list-wrapper .icon else {
    width: 44;
  }
}
@media all and (min-width: 769px) {
  .sns-list-wrapper .icon {
    padding: 1.2rem;
  }
  .sns-list-wrapper .icon else {
    padding: 12;
  }
}
@media all and (max-width: 768px) {
  .sns-list-wrapper .icon {
    padding: 0.6rem;
  }
  .sns-list-wrapper .icon else {
    padding: 6;
  }
}
@media (hover: hover) and (pointer: fine) {
  .sns-list-wrapper .icon:hover {
    opacity: 0.6;
  }
}

/*============ footer ============*/
footer.footer {
  position: relative;
  z-index: 1;
  transform: translateZ(1px); /* safariでsticky背面に回るのの回避手段 */
}
footer.footer .footer-inner {
  background-color: #fff;
}
@media all and (min-width: 769px) {
  footer.footer .footer-inner {
    padding: 2.4rem 12.2rem 2.4rem 12.2rem;
  }
}
@media all and (max-width: 768px) {
  footer.footer .footer-inner {
    padding: 1.6rem 1.6rem 0.9rem 1.6rem;
  }
}
@media (max-width: 768px) {
  footer.footer .footer-inner {
    display: flex;
    justify-content: space-between;
  }
}
footer.footer .logo {
  line-height: 0;
}
@media all and (min-width: 769px) {
  footer.footer .logo {
    width: 39.7rem;
  }
  footer.footer .logo else {
    width: 397;
  }
}
@media all and (max-width: 768px) {
  footer.footer .logo {
    width: 19rem;
  }
  footer.footer .logo else {
    width: 190;
  }
}
@media (max-width: 768px) and (max-width: 768px) {
  footer.footer .sns-list-wrapper {
    margin-right: -0.6rem;
  }
  footer.footer .sns-list-wrapper else {
    margin-right: -6;
  }
}
@media (max-width: 768px) and (max-width: 768px) {
  footer.footer .sns-list-wrapper {
    margin-top: -0.6rem;
  }
  footer.footer .sns-list-wrapper else {
    margin-top: -6;
  }
}
footer.footer .copy {
  color: #fff;
  font-weight: 400;
  width: 100%;
  text-align: center;
  background-color: #000;
}
@media all and (min-width: 769px) {
  footer.footer .copy {
    padding: 0.9rem 0rem;
  }
}
@media all and (max-width: 768px) {
  footer.footer .copy {
    padding: 0.9rem 0rem;
  }
}
@media all and (min-width: 769px) {
  footer.footer .copy {
    font-size: 1.2rem;
  }
  footer.footer .copy else {
    font-size: 12;
  }
}
@media all and (max-width: 768px) {
  footer.footer .copy {
    font-size: 1rem;
  }
  footer.footer .copy else {
    font-size: 10;
  }
}

.section.kv .video {
  margin-left: auto;
  position: relative;
}
@media all and (min-width: 769px) {
  .section.kv .video {
    width: 131.8rem;
  }
  .section.kv .video else {
    width: 1318;
  }
}
@media all and (max-width: 768px) {
  .section.kv .video {
    width: 34.2rem;
  }
  .section.kv .video else {
    width: 342;
  }
}
@media all and (min-width: 769px) {
  .section.kv .video {
    height: 74.1rem;
  }
  .section.kv .video else {
    height: 741;
  }
}
@media all and (max-width: 768px) {
  .section.kv .video {
    height: 34.2rem;
  }
  .section.kv .video else {
    height: 342;
  }
}
@media (max-width: 768px) {
  .section.kv .video {
    margin-right: auto;
  }
}
.section.kv #video {
  background-color: #000;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.section.kv .movie__btn {
  position: absolute;
  top: 0;
  left: 0;
}
.section.kv .movie__btn button {
  display: inline-block;
  cursor: pointer;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  background-image: url(../img/icon-sound-off.svg);
}
@media all and (min-width: 769px) {
  .section.kv .movie__btn button {
    margin: 4rem;
  }
  .section.kv .movie__btn button else {
    margin: 40;
  }
}
@media all and (max-width: 768px) {
  .section.kv .movie__btn button {
    margin: 1.6rem;
  }
  .section.kv .movie__btn button else {
    margin: 16;
  }
}
@media all and (min-width: 769px) {
  .section.kv .movie__btn button {
    width: 8rem;
  }
  .section.kv .movie__btn button else {
    width: 80;
  }
}
@media all and (max-width: 768px) {
  .section.kv .movie__btn button {
    width: 4rem;
  }
  .section.kv .movie__btn button else {
    width: 40;
  }
}
@media all and (min-width: 769px) {
  .section.kv .movie__btn button {
    height: 6.7rem;
  }
  .section.kv .movie__btn button else {
    height: 67;
  }
}
@media all and (max-width: 768px) {
  .section.kv .movie__btn button {
    height: 3.4rem;
  }
  .section.kv .movie__btn button else {
    height: 34;
  }
}
.section.kv .movie__btn button.on {
  background-image: url(../img/icon-sound-on.svg);
}

.section {
  position: relative;
  z-index: 1;
  transform: translateZ(1px); /* safariでsticky背面に回るのの回避手段 */
}

@media all and (min-width: 769px) {
  .section + .section {
    margin-top: 8rem;
  }
  .section + .section else {
    margin-top: 80;
  }
}
@media all and (max-width: 768px) {
  .section + .section {
    margin-top: 4rem;
  }
  .section + .section else {
    margin-top: 40;
  }
}

@media all and (min-width: 769px) {
  .section:last-child {
    padding-bottom: 7.8rem;
  }
  .section:last-child else {
    padding-bottom: 78;
  }
}
@media all and (max-width: 768px) {
  .section:last-child {
    padding-bottom: 3.4rem;
  }
  .section:last-child else {
    padding-bottom: 34;
  }
}

.container {
  margin-left: auto;
  margin-right: auto;
}
@media all and (min-width: 769px) {
  .container {
    width: 120rem;
  }
  .container else {
    width: 1200;
  }
}
@media all and (max-width: 768px) {
  .container {
    width: 29.5rem;
  }
  .container else {
    width: 295;
  }
}

.bg-container .bg {
  width: 100%;
  position: sticky;
  top: 0;
}
.bg-container .bg .img {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100vh;
  height: 100lvh;
}
.bg-container .bg .img img, .bg-container .bg .img picture {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top center;
     object-position: top center;
  height: 100%;
  width: 100%;
}
.bg-container .bg .img::after {
  content: "";
  background-color: var(--base);
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 0;
}

@media all and (min-width: 769px) {
  .t-primary {
    font-size: 1.6rem;
  }
  .t-primary else {
    font-size: 16;
  }
}
@media all and (max-width: 768px) {
  .t-primary {
    font-size: 1.4rem;
  }
  .t-primary else {
    font-size: 14;
  }
}

.t-secondary {
  font-weight: 500;
}
@media all and (min-width: 769px) {
  .t-secondary {
    font-size: 2rem;
  }
  .t-secondary else {
    font-size: 20;
  }
}
@media all and (max-width: 768px) {
  .t-secondary {
    font-size: 1.6rem;
  }
  .t-secondary else {
    font-size: 16;
  }
}

.c-green {
  color: var(--green);
}

@media all and (min-width: 769px) {
  .section.intro {
    padding-top: 10.7rem;
  }
  .section.intro else {
    padding-top: 107;
  }
}
@media all and (max-width: 768px) {
  .section.intro {
    padding-top: 2.6rem;
  }
  .section.intro else {
    padding-top: 26;
  }
}
.section.intro .introduction-wrapper .title {
  line-height: 1.5;
}
@media all and (min-width: 769px) {
  .section.intro .introduction-wrapper .title {
    width: 120rem;
  }
  .section.intro .introduction-wrapper .title else {
    width: 1200;
  }
}
@media all and (max-width: 768px) {
  .section.intro .introduction-wrapper .title {
    width: 29.5rem;
  }
  .section.intro .introduction-wrapper .title else {
    width: 295;
  }
}
@media all and (min-width: 769px) {
  .section.intro .introduction-wrapper .title {
    font-size: 4.5rem;
  }
  .section.intro .introduction-wrapper .title else {
    font-size: 45;
  }
}
@media all and (max-width: 768px) {
  .section.intro .introduction-wrapper .title {
    font-size: 2.4rem;
  }
  .section.intro .introduction-wrapper .title else {
    font-size: 24;
  }
}
@media all and (min-width: 769px) {
  .section.intro .introduction-wrapper .text {
    margin-top: 3.2rem;
  }
  .section.intro .introduction-wrapper .text else {
    margin-top: 32;
  }
}
@media all and (max-width: 768px) {
  .section.intro .introduction-wrapper .text {
    margin-top: 1.4rem;
  }
  .section.intro .introduction-wrapper .text else {
    margin-top: 14;
  }
}
.section.intro .profile-wrapper {
  display: flex;
}
@media all and (min-width: 769px) {
  .section.intro .profile-wrapper {
    width: 72.4rem;
  }
  .section.intro .profile-wrapper else {
    width: 724;
  }
}
@media all and (max-width: 768px) {
  .section.intro .profile-wrapper {
    width: 29.5rem;
  }
  .section.intro .profile-wrapper else {
    width: 295;
  }
}
@media all and (min-width: 769px) {
  .section.intro .profile-wrapper {
    gap: 2.4rem;
  }
  .section.intro .profile-wrapper else {
    gap: 24;
  }
}
@media all and (max-width: 768px) {
  .section.intro .profile-wrapper {
    gap: 1.6rem;
  }
  .section.intro .profile-wrapper else {
    gap: 16;
  }
}
@media all and (min-width: 769px) {
  .section.intro .profile-wrapper {
    margin-top: 8rem;
  }
  .section.intro .profile-wrapper else {
    margin-top: 80;
  }
}
@media all and (max-width: 768px) {
  .section.intro .profile-wrapper {
    margin-top: 2.4rem;
  }
  .section.intro .profile-wrapper else {
    margin-top: 24;
  }
}
@media (min-width: 769px) {
  .section.intro .profile-wrapper {
    margin-left: auto;
  }
}
@media (max-width: 768px) {
  .section.intro .profile-wrapper {
    flex-direction: column;
  }
}
.section.intro .profile-wrapper .pic-teacher {
  flex-shrink: 0;
}
@media all and (min-width: 769px) {
  .section.intro .profile-wrapper .pic-teacher {
    width: 30rem;
  }
  .section.intro .profile-wrapper .pic-teacher else {
    width: 300;
  }
}
@media all and (max-width: 768px) {
  .section.intro .profile-wrapper .pic-teacher {
    width: 24rem;
  }
  .section.intro .profile-wrapper .pic-teacher else {
    width: 240;
  }
}
@media (max-width: 768px) {
  .section.intro .profile-wrapper .pic-teacher {
    margin-left: auto;
    margin-right: auto;
  }
}
.section.intro .profile-wrapper .text-outer {
  display: flex;
  flex-direction: column;
}
@media all and (min-width: 769px) {
  .section.intro .profile-wrapper .text-outer {
    padding: 0rem 0rem 0.9rem;
  }
}
@media all and (max-width: 768px) {
  .section.intro .profile-wrapper .text-outer {
    padding: 0rem 0rem 0rem;
  }
}
@media all and (min-width: 769px) {
  .section.intro .profile-wrapper .text-outer {
    gap: 2.2rem;
  }
  .section.intro .profile-wrapper .text-outer else {
    gap: 22;
  }
}
@media all and (max-width: 768px) {
  .section.intro .profile-wrapper .text-outer {
    gap: 1.6rem;
  }
  .section.intro .profile-wrapper .text-outer else {
    gap: 16;
  }
}
@media all and (max-width: 768px) {
  .section.intro .profile-wrapper .name {
    font-size: 2rem;
  }
  .section.intro .profile-wrapper .name else {
    font-size: 20;
  }
}
.section.intro .profile-wrapper .name .c-green {
  display: inline-block;
}
@media all and (max-width: 768px) {
  .section.intro .profile-wrapper .name .c-green {
    font-size: 1.6rem;
  }
  .section.intro .profile-wrapper .name .c-green else {
    font-size: 16;
  }
}
@media all and (min-width: 769px) {
  .section.intro .profile-wrapper .name .c-green {
    margin-left: 0.8rem;
  }
  .section.intro .profile-wrapper .name .c-green else {
    margin-left: 8;
  }
}
@media all and (max-width: 768px) {
  .section.intro .profile-wrapper .name .c-green {
    margin-left: 0.8rem;
  }
  .section.intro .profile-wrapper .name .c-green else {
    margin-left: 8;
  }
}
@media (max-width: 768px) {
  .section.intro .profile-wrapper .name {
    text-align: center;
    line-height: 1.1;
  }
}
.section.intro .profile-wrapper .t-primary {
  line-height: 1.8;
}
@media all and (max-width: 768px) {
  .section.intro .profile-wrapper .t-primary {
    font-size: 1.2rem;
  }
  .section.intro .profile-wrapper .t-primary else {
    font-size: 12;
  }
}

.section.features .container {
  background-color: rgba(232, 228, 222, 0.8);
}
@media all and (max-width: 768px) {
  .section.features .container {
    width: 34.3rem;
  }
  .section.features .container else {
    width: 343;
  }
}
@media all and (min-width: 769px) {
  .section.features .features-wrapper {
    padding: 4rem 7rem;
  }
}
@media all and (max-width: 768px) {
  .section.features .features-wrapper {
    padding: 2.4rem 2.4rem;
  }
}
.section.features .title {
  line-height: 1;
  display: flex;
  align-items: flex-end;
}
@media all and (min-width: 769px) {
  .section.features .title {
    gap: 1.6rem;
  }
  .section.features .title else {
    gap: 16;
  }
}
@media all and (max-width: 768px) {
  .section.features .title {
    gap: 0.8rem;
  }
  .section.features .title else {
    gap: 8;
  }
}
@media (max-width: 768px) {
  .section.features .title {
    justify-content: center;
  }
}
.section.features .title .svg-features {
  display: block;
  flex-shrink: 0;
}
@media all and (min-width: 769px) {
  .section.features .title .svg-features {
    width: 22.7rem;
  }
  .section.features .title .svg-features else {
    width: 227;
  }
}
@media all and (max-width: 768px) {
  .section.features .title .svg-features {
    width: 16.3rem;
  }
  .section.features .title .svg-features else {
    width: 163;
  }
}
.section.features .title .title-text {
  white-space: nowrap;
}
@media all and (min-width: 769px) {
  .section.features .title .title-text {
    padding-bottom: 0.8rem;
  }
  .section.features .title .title-text else {
    padding-bottom: 8;
  }
}
@media all and (max-width: 768px) {
  .section.features .title .title-text {
    padding-bottom: 0.5rem;
  }
  .section.features .title .title-text else {
    padding-bottom: 5;
  }
}
@media all and (max-width: 768px) {
  .section.features .title .title-text {
    font-size: 1.2rem;
  }
  .section.features .title .title-text else {
    font-size: 12;
  }
}
.section.features .features-content {
  display: flex;
}
@media all and (min-width: 769px) {
  .section.features .features-content {
    margin-top: 1.6rem;
  }
  .section.features .features-content else {
    margin-top: 16;
  }
}
@media all and (max-width: 768px) {
  .section.features .features-content {
    margin-top: 1.6rem;
  }
  .section.features .features-content else {
    margin-top: 16;
  }
}
@media all and (min-width: 769px) {
  .section.features .features-content {
    gap: 4rem;
  }
  .section.features .features-content else {
    gap: 40;
  }
}
@media all and (max-width: 768px) {
  .section.features .features-content {
    gap: 1.6rem;
  }
  .section.features .features-content else {
    gap: 16;
  }
}
@media (max-width: 768px) {
  .section.features .features-content {
    flex-direction: column;
  }
}
.section.features .features-content .pic-features {
  flex-shrink: 0;
}
@media all and (min-width: 769px) {
  .section.features .features-content .pic-features {
    width: 40.6rem;
  }
  .section.features .features-content .pic-features else {
    width: 406;
  }
}
@media all and (max-width: 768px) {
  .section.features .features-content .pic-features {
    width: 29.5rem;
  }
  .section.features .features-content .pic-features else {
    width: 295;
  }
}
@media all and (max-width: 768px) {
  .section.features .features-content .text {
    margin-top: -1rem;
  }
  .section.features .features-content .text else {
    margin-top: -10;
  }
}
@media all and (max-width: 768px) {
  .section.features .features-content .t-secondary {
    margin-top: 1rem;
  }
  .section.features .features-content .t-secondary else {
    margin-top: 10;
  }
}
@media (max-width: 768px) {
  .section.features .features-content .t-secondary {
    display: inline-block;
  }
}

.section.studio .studio-wrapper .title {
  line-height: 1;
  display: flex;
  align-items: flex-end;
}
@media all and (min-width: 769px) {
  .section.studio .studio-wrapper .title {
    gap: 1.6rem;
  }
  .section.studio .studio-wrapper .title else {
    gap: 16;
  }
}
@media all and (max-width: 768px) {
  .section.studio .studio-wrapper .title {
    gap: 0.8rem;
  }
  .section.studio .studio-wrapper .title else {
    gap: 8;
  }
}
@media (max-width: 768px) {
  .section.studio .studio-wrapper .title {
    justify-content: center;
  }
}
.section.studio .studio-wrapper .title .svg-studio {
  display: block;
}
@media all and (min-width: 769px) {
  .section.studio .studio-wrapper .title .svg-studio {
    width: 16.8rem;
  }
  .section.studio .studio-wrapper .title .svg-studio else {
    width: 168;
  }
}
@media all and (max-width: 768px) {
  .section.studio .studio-wrapper .title .svg-studio {
    width: 12rem;
  }
  .section.studio .studio-wrapper .title .svg-studio else {
    width: 120;
  }
}
@media all and (min-width: 769px) {
  .section.studio .studio-wrapper .title .title-text {
    padding-bottom: 1.6rem;
  }
  .section.studio .studio-wrapper .title .title-text else {
    padding-bottom: 16;
  }
}
@media all and (max-width: 768px) {
  .section.studio .studio-wrapper .title .title-text {
    padding-bottom: 1rem;
  }
  .section.studio .studio-wrapper .title .title-text else {
    padding-bottom: 10;
  }
}
@media all and (max-width: 768px) {
  .section.studio .studio-wrapper .title .title-text {
    font-size: 1.2rem;
  }
  .section.studio .studio-wrapper .title .title-text else {
    font-size: 12;
  }
}
@media all and (min-width: 769px) {
  .section.studio .studio-head-text {
    margin-top: 0.6rem;
  }
  .section.studio .studio-head-text else {
    margin-top: 6;
  }
}
@media all and (max-width: 768px) {
  .section.studio .studio-head-text {
    margin-top: 1rem;
  }
  .section.studio .studio-head-text else {
    margin-top: 10;
  }
}
@media (max-width: 768px) {
  .section.studio .studio-head-text {
    text-align: center;
  }
}
.section.studio .studio-head-text .link {
  text-decoration: underline;
  transition: opacity 0.2s;
}
@media (hover: hover) and (pointer: fine) {
  .section.studio .studio-head-text .link:hover {
    opacity: 0.6;
  }
}
.section.studio .studio-list {
  display: flex;
}
@media all and (min-width: 769px) {
  .section.studio .studio-list {
    margin-top: 2rem;
  }
  .section.studio .studio-list else {
    margin-top: 20;
  }
}
@media all and (max-width: 768px) {
  .section.studio .studio-list {
    margin-top: 1.6rem;
  }
  .section.studio .studio-list else {
    margin-top: 16;
  }
}
@media all and (min-width: 769px) {
  .section.studio .studio-list {
    gap: 12rem;
  }
  .section.studio .studio-list else {
    gap: 120;
  }
}
@media all and (max-width: 768px) {
  .section.studio .studio-list {
    gap: 2.4rem;
  }
  .section.studio .studio-list else {
    gap: 24;
  }
}
@media (max-width: 768px) {
  .section.studio .studio-list {
    flex-direction: column;
  }
}
.section.studio .studio-item {
  display: flex;
  flex-direction: column;
}
@media all and (min-width: 769px) {
  .section.studio .studio-item {
    gap: 2.4rem;
  }
  .section.studio .studio-item else {
    gap: 24;
  }
}
@media all and (max-width: 768px) {
  .section.studio .studio-item {
    gap: 2.4rem;
  }
  .section.studio .studio-item else {
    gap: 24;
  }
}
@media all and (min-width: 769px) {
  .section.studio .studio-item {
    width: 32rem;
  }
  .section.studio .studio-item else {
    width: 320;
  }
}
@media all and (max-width: 768px) {
  .section.studio .studio-item {
    width: 29.5rem;
  }
  .section.studio .studio-item else {
    width: 295;
  }
}
.section.studio .text-outer .studio-name {
  line-height: 1.5;
}
@media all and (min-width: 769px) {
  .section.studio .text-outer .studio-address {
    margin-top: 1.6rem;
  }
  .section.studio .text-outer .studio-address else {
    margin-top: 16;
  }
}
@media all and (max-width: 768px) {
  .section.studio .text-outer .studio-address {
    margin-top: 0.1rem;
  }
  .section.studio .text-outer .studio-address else {
    margin-top: 1;
  }
}
.section.studio .text-outer .studio-address a {
  text-decoration: underline;
  transition: opacity 0.2s;
}
@media (hover: hover) and (pointer: fine) {
  .section.studio .text-outer .studio-address a:hover {
    opacity: 0.6;
  }
}
@media all and (min-width: 769px) {
  .section.studio .text-outer .studio-schedule {
    margin-top: 2.4rem;
  }
  .section.studio .text-outer .studio-schedule else {
    margin-top: 24;
  }
}
@media all and (max-width: 768px) {
  .section.studio .text-outer .studio-schedule {
    margin-top: 0.8rem;
  }
  .section.studio .text-outer .studio-schedule else {
    margin-top: 8;
  }
}
.section.studio .text-outer .icon-beginner {
  display: inline-block;
}
@media all and (min-width: 769px) {
  .section.studio .text-outer .icon-beginner {
    width: 1.6rem;
  }
  .section.studio .text-outer .icon-beginner else {
    width: 16;
  }
}
@media all and (max-width: 768px) {
  .section.studio .text-outer .icon-beginner {
    width: 1.4rem;
  }
  .section.studio .text-outer .icon-beginner else {
    width: 14;
  }
}
@media all and (max-width: 768px) {
  .section.studio .text-outer .icon-beginner {
    margin-left: 0.4rem;
  }
  .section.studio .text-outer .icon-beginner else {
    margin-left: 4;
  }
}
@media (max-width: 768px) {
  .section.studio .text-outer .icon-beginner {
    line-height: 0;
    position: absolute;
  }
}

@media all and (max-width: 768px) {
  .section.price .container {
    width: 34.3rem;
  }
  .section.price .container else {
    width: 343;
  }
}
@media all and (min-width: 769px) {
  .section.price {
    margin-top: -4.7rem;
  }
  .section.price else {
    margin-top: -47;
  }
}
.section.price .price-wrapper {
  background-color: rgba(232, 228, 222, 0.8);
  display: flex;
}
@media all and (min-width: 769px) {
  .section.price .price-wrapper {
    padding: 4rem 8rem 4rem 8rem;
  }
}
@media all and (max-width: 768px) {
  .section.price .price-wrapper {
    padding: 1.8rem 2.6rem 2.4rem 2.6rem;
  }
}
@media all and (min-width: 769px) {
  .section.price .price-wrapper {
    width: 67.3rem;
  }
  .section.price .price-wrapper else {
    width: 673;
  }
}
@media all and (max-width: 768px) {
  .section.price .price-wrapper {
    width: 34.3rem;
  }
  .section.price .price-wrapper else {
    width: 343;
  }
}
@media all and (min-width: 769px) {
  .section.price .price-wrapper {
    gap: 4rem;
  }
  .section.price .price-wrapper else {
    gap: 40;
  }
}
@media all and (max-width: 768px) {
  .section.price .price-wrapper {
    gap: 1rem;
  }
  .section.price .price-wrapper else {
    gap: 10;
  }
}
@media (min-width: 769px) {
  .section.price .price-wrapper {
    margin-left: auto;
  }
}
@media (max-width: 768px) {
  .section.price .price-wrapper {
    flex-direction: column;
  }
}
.section.price .title {
  line-height: 1;
  display: flex;
}
@media all and (min-width: 769px) {
  .section.price .title {
    gap: 0.1rem;
  }
  .section.price .title else {
    gap: 1;
  }
}
@media all and (max-width: 768px) {
  .section.price .title {
    gap: 0.8rem;
  }
  .section.price .title else {
    gap: 8;
  }
}
@media (min-width: 769px) {
  .section.price .title {
    flex-direction: column;
  }
}
@media (max-width: 768px) {
  .section.price .title {
    align-items: flex-end;
    justify-content: center;
  }
}
.section.price .title .svg-price {
  display: block;
}
@media all and (min-width: 769px) {
  .section.price .title .svg-price {
    width: 13.7rem;
  }
  .section.price .title .svg-price else {
    width: 137;
  }
}
@media all and (max-width: 768px) {
  .section.price .title .svg-price {
    width: 9.8rem;
  }
  .section.price .title .svg-price else {
    width: 98;
  }
}
@media all and (max-width: 768px) {
  .section.price .title .title-text {
    margin-bottom: 1rem;
  }
  .section.price .title .title-text else {
    margin-bottom: 10;
  }
}
@media all and (max-width: 768px) {
  .section.price .title .title-text {
    font-size: 1.2rem;
  }
  .section.price .title .title-text else {
    font-size: 12;
  }
}
@media all and (min-width: 769px) {
  .section.price .price-content {
    margin-top: 2.4rem;
  }
  .section.price .price-content else {
    margin-top: 24;
  }
}
.section.price .price-content .text {
  width: 100%;
}
.section.price .price-content .note {
  width: 100%;
}
@media all and (min-width: 769px) {
  .section.price .price-content .note {
    margin-top: 0.6rem;
  }
  .section.price .price-content .note else {
    margin-top: 6;
  }
}
@media all and (max-width: 768px) {
  .section.price .price-content .note {
    margin-top: 0.4rem;
  }
  .section.price .price-content .note else {
    margin-top: 4;
  }
}/*# sourceMappingURL=style.css.map */