@charset "UTF-8";
/*---------------------------------------------------------
	ピラティススタジオ LINO OLA / LP
---------------------------------------------------------*/
*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body,
div,
span,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
address,
em,
img,
small,
strong,
sub,
sup,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
table,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
figure,
figcaption,
footer,
header,
main,
nav,
section {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  font-size: 100%;
  vertical-align: baseline;
}

article,
aside,
figure,
figcaption,
footer,
header,
main,
nav,
section {
  display: block;
}

ol,
ul {
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
  border-style: none;
}

a {
  color: inherit;
  text-decoration: none;
  transition: opacity 0.3s, color 0.3s, background-color 0.3s, border-color 0.3s;
}

button {
  appearance: none;
  background: none;
  border: 0;
  cursor: pointer;
  font: inherit;
  color: inherit;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 20px;
}

body {
  background: #fffaf6;
  color: #5c3111;
  font-family: "Zen Maru Gothic", "Hiragino Maru Gothic ProN", "ヒラギノ丸ゴ ProN W4", "Hiragino Kaku Gothic ProN", "Yu Gothic", "メイリオ", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.67;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
}
@media screen and (max-width: 767px) {
  body {
    font-size: 14px;
  }
}

.l-main {
  overflow: hidden;
}

.l-container {
  width: 100%;
  max-width: 1248px;
  margin: 0 auto;
  padding: 0 24px;
}
@media screen and (max-width: 767px) {
  .l-container {
    max-width: none;
    padding: 0 20px;
  }
}

.l-section {
  position: relative;
  background: #fff6ee;
}

.l-section__inner {
  position: relative;
  z-index: 2;
  padding: 120px 0;
}
@media screen and (max-width: 767px) {
  .l-section__inner {
    padding: 60px 0;
  }
}

.c-h2 {
  text-align: center;
  margin-bottom: 72px;
}
@media screen and (max-width: 767px) {
  .c-h2 {
    margin-bottom: 32px;
  }
}
.c-h2__en {
  display: block;
  font-family: "Didot", "Bodoni Moda", "Bodoni 72", "Playfair Display", "Times New Roman", serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 1.1;
  color: #eb853c;
  margin-bottom: 16px;
}
@media screen and (max-width: 767px) {
  .c-h2__en {
    font-size: 12px;
    margin-bottom: 8px;
  }
}
.c-h2__ja {
  display: block;
  font-weight: 700;
  font-size: 32px;
  line-height: 1;
  letter-spacing: 0.14em;
  color: #5c3111;
}
@media screen and (max-width: 767px) {
  .c-h2__ja {
    font-size: 12px;
    line-height: 1.3;
    letter-spacing: 0.12em;
  }
}
.c-h2__ja .is-main {
  color: #eb853c;
}
.c-h2__ja .is-lg {
  font-size: 40px;
  letter-spacing: 0.2em;
}
@media screen and (max-width: 767px) {
  .c-h2__ja .is-lg {
    font-size: 12px;
  }
}

.c-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 560px;
  max-width: 100%;
  height: 106px;
  padding: 14px 24px;
  border: 2px solid #eb853c;
  border-radius: 16px;
  background: #eb853c;
  color: #fff;
  font-weight: 700;
  font-size: 30px;
  line-height: 1;
  letter-spacing: 0.053em;
  text-align: center;
  filter: drop-shadow(4px 4px 0 #d15900);
}
.c-btn::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 42px;
  width: 17px;
  height: 30px;
  margin-top: -15px;
  background: url(../img/icn_arrow.svg) no-repeat center/contain;
  transition: filter 0.3s;
}
@media (hover: hover) {
  .c-btn:hover {
    background: #fff;
    color: #eb853c;
  }
  .c-btn:hover::after {
    filter: brightness(0) saturate(100%) invert(63%) sepia(41%) saturate(1058%) hue-rotate(342deg) brightness(93%) contrast(90%);
  }
}
@media screen and (max-width: 767px) {
  .c-btn {
    width: 350px;
    height: 61px;
    padding: 16px 32px;
    border-radius: 8px;
    font-size: 16px;
    letter-spacing: 0.1em;
  }
  .c-btn::after {
    right: 24px;
    width: 11px;
    height: 18px;
    margin-top: -9px;
  }
}

.c-cta {
  position: relative;
  display: inline-block;
  padding-top: 16px;
}
.c-cta__speech {
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 2;
  width: 350px;
  height: 37px;
  margin-left: -175px;
  background: url(../img/speech.svg) no-repeat center/100% 100%;
  color: #eb853c;
  font-weight: 700;
  font-size: 20px;
  line-height: 37px;
  letter-spacing: 0.14em;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .c-cta__speech {
    width: 230px;
    height: 26px;
    margin-left: -115px;
    font-size: 14px;
    line-height: 26px;
  }
}
@media screen and (max-width: 767px) {
  .c-cta {
    padding-top: 12px;
  }
}

.c-checklist__item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 24px;
  line-height: 1.4;
  letter-spacing: 0.04em;
  white-space: nowrap;
}
.c-checklist__item + .c-checklist__item {
  margin-top: 24px;
}
.c-checklist__item::before {
  content: '';
  flex: 0 0 auto;
  width: 24px;
  height: 24px;
  margin-top: 0.2em;
  background: url(../img/icn_check.svg) no-repeat center/contain;
}
@media screen and (max-width: 767px) {
  .c-checklist__item {
    gap: 8px;
    font-size: 14px;
    white-space: normal;
  }
  .c-checklist__item + .c-checklist__item {
    margin-top: 14px;
  }
  .c-checklist__item::before {
    width: 16px;
    height: 16px;
  }
}
.c-checklist .is-point {
  color: #ff5131;
  font-weight: 700;
}
.c-checklist .is-main {
  color: #eb853c;
  font-weight: 700;
}

@media screen and (max-width: 767px) {
  .u-pc {
    display: none !important;
  }
}

@media screen and (min-width: 768px) {
  .u-sp {
    display: none !important;
  }
}

.u-fadein {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.u-fadein.is-show {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .u-fadein {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
.l-sidenav {
  position: fixed;
  top: 146px;
  right: 0;
  z-index: 100;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
@media screen and (max-width: 767px) {
  .l-sidenav {
    display: none;
  }
}
.l-sidenav__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 97px;
  padding: 24px 38px;
  border: 2px solid;
  border-radius: 8px 0 0 8px;
  color: #fff;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.28;
  letter-spacing: 0.02em;
  text-align: center;
  writing-mode: vertical-rl;
  font-feature-settings: 'vert' 1;
}
.l-sidenav__btn.is-schedule {
  background: #ff5131;
  border-color: #ff5131;
  line-height: 1.17;
}
@media (hover: hover) {
  .l-sidenav__btn.is-schedule:hover {
    background: #fff;
    color: #ff5131;
  }
}
.l-sidenav__btn.is-entry {
  background: #eb853c;
  border-color: #eb853c;
  height: 232px;
}
@media (hover: hover) {
  .l-sidenav__btn.is-entry:hover {
    background: #fff;
    color: #eb853c;
  }
}

.l-spcta {
  position: fixed;
  left: 0;
  bottom: 12px;
  z-index: 100;
  width: 100%;
  display: flex;
  justify-content: center;
  transition: opacity 0.3s, visibility 0.3s;
}
@media screen and (min-width: 768px) {
  .l-spcta {
    display: none;
  }
}
.l-spcta.is-hide {
  opacity: 0;
  visibility: hidden;
}

.l-footer {
  position: relative;
  z-index: 2;
  background: #fff;
  color: #1b1b1b;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", "メイリオ", sans-serif;
  font-weight: 500;
}
.l-footer__inner {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  max-width: 1248px;
  margin: 0 auto;
  padding: 40px 24px;
}
@media screen and (max-width: 767px) {
  .l-footer__inner {
    flex-direction: column;
    align-items: center;
    gap: 16px;
    padding: 24px 20px 76px;
  }
}
.l-footer__nav {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 15px;
  line-height: 1.5;
  letter-spacing: 0.03em;
  font-feature-settings: 'palt' 1;
}
@media (hover: hover) {
  .l-footer__nav a:hover {
    color: #eb853c;
  }
}
@media screen and (max-width: 767px) {
  .l-footer__nav {
    font-size: 13px;
  }
}
.l-footer__copyright {
  font-size: 12px;
  line-height: 1.5;
  letter-spacing: 0.03em;
  font-feature-settings: 'palt' 1;
}
@media screen and (max-width: 767px) {
  .l-footer__copyright {
    font-size: 10px;
  }
}

.p-fv {
  position: relative;
  background: #fffaf6;
  overflow: hidden;
}
.p-fv__bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.p-fv__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
@media screen and (max-width: 767px) {
  .p-fv__bg {
    overflow: hidden;
  }
  .p-fv__bg img {
    position: absolute;
    left: -55.13%;
    top: -0.7%;
    width: 167.44%;
    height: auto;
    max-width: none;
    object-fit: fill;
  }
}
.p-fv::after {
  content: '';
  display: none;
}
@media screen and (max-width: 767px) {
  .p-fv::after {
    display: block;
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 1;
    width: 100%;
    height: 50%;
    background: linear-gradient(to bottom, rgba(255, 243, 231, 0) 0%, #fff3e7 22%, #fff3e7 100%);
  }
}
.p-fv__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  aspect-ratio: 1440 / 765;
}
.p-fv__inner > * {
  position: absolute;
}
@media screen and (max-width: 767px) {
  .p-fv__inner {
    max-width: none;
    aspect-ratio: 390 / 860;
  }
}
.p-fv__flower {
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
.p-fv__flower img {
  display: block;
  width: 100%;
  height: 100%;
}
.p-fv__flower.is-r {
  left: 75.35%;
  top: 55.03%;
  width: 32.64%;
  aspect-ratio: 470.023 / 463.229;
}
.p-fv__flower.is-r img {
  width: 65.3%;
  height: 76.88%;
  transform: scaleY(-1) rotate(-129.4deg);
}
.p-fv__flower.is-l1 {
  left: -5.62%;
  top: 8.1%;
  width: 10%;
  aspect-ratio: 144 / 142.2;
}
.p-fv__flower.is-l1 img {
  width: 71.03%;
  height: 75.42%;
  transform: rotate(120deg);
}
.p-fv__flower.is-l2 {
  left: 3.96%;
  top: -11.37%;
  width: 10%;
  aspect-ratio: 144 / 142.2;
}
.p-fv__flower.is-l2 img {
  width: 71.03%;
  height: 75.42%;
  transform: rotate(-120deg);
}
.p-fv__flower.is-l3 {
  left: -2.78%;
  top: -5.88%;
  width: 10.75%;
  aspect-ratio: 154.8 / 160.3;
}
.p-fv__flower.is-l3 img {
  width: 63.2%;
  height: 79.24%;
  transform: scaleX(-1) rotate(142.66deg);
}
.p-fv__flower.is-sp1 {
  left: 0;
  top: 0;
  width: 33.33%;
}
.p-fv__flower.is-sp1 img {
  height: auto;
}
.p-fv__flower.is-sp2 {
  left: 28.72%;
  top: 0;
  width: 38.21%;
}
.p-fv__flower.is-sp2 img {
  height: auto;
}
.p-fv__logo {
  left: 6.94%;
  top: 5.49%;
  width: 11.25%;
  line-height: 0;
}
@media screen and (max-width: 767px) {
  .p-fv__logo {
    left: 2.05%;
    top: 4.65%;
    width: 26.15%;
  }
}
.p-fv__catch {
  left: 2.934%;
  top: 8.767%;
  width: 50.833%;
  line-height: 0;
}
@media screen and (max-width: 767px) {
  .p-fv__catch {
    left: 0;
    top: 5.204%;
    width: 100%;
  }
}
.p-fv__grandopen {
  left: 75.211%;
  top: 6.539%;
  width: 15.833%;
  line-height: 0;
}
@media screen and (max-width: 767px) {
  .p-fv__grandopen {
    left: 59.228%;
    top: 40.349%;
    width: 37.179%;
  }
}
.p-fv__lead {
  left: 8.33%;
  top: 43.74%;
  font-weight: 700;
  font-size: min(1.38889vw, 20px);
  line-height: 1.42;
  letter-spacing: 0.08em;
  color: #5c3111;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .p-fv__lead {
    left: 5.13%;
    top: 58.49%;
    font-size: min(3.84615vw, 21px);
    line-height: 1.53;
    letter-spacing: 0.02em;
  }
}
.p-fv__points {
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.p-fv__points li {
  position: absolute;
  top: 52.680%;
  width: 9.931%;
  line-height: 0;
}
.p-fv__points li.is-p1 {
  left: 11.736%;
}
.p-fv__points li.is-p2 {
  left: 22.847%;
  width: 9.861%;
}
.p-fv__points li.is-p3 {
  left: 33.819%;
}
@media screen and (max-width: 767px) {
  .p-fv__points li {
    top: 68.721%;
    width: 28.205%;
  }
  .p-fv__points li.is-p1 {
    left: 4.872%;
  }
  .p-fv__points li.is-p2 {
    left: 36.154%;
    width: 27.949%;
  }
  .p-fv__points li.is-p3 {
    left: 67.179%;
  }
}
.p-fv__cta {
  left: 8.75%;
  top: 75.817%;
  width: 38.889%;
}
.p-fv__cta .c-cta {
  display: block;
  width: 100%;
  padding-top: min(1.11111vw, 16px);
}
.p-fv__cta .c-cta__speech {
  width: min(24.30556vw, 350px);
  height: min(2.56944vw, 37px);
  margin-left: max(-12.15278vw, -175px);
  font-size: min(1.38889vw, 20px);
  line-height: min(2.56944vw, 37px);
}
.p-fv__cta .c-btn {
  width: 100%;
  height: min(7.36111vw, 106px);
  font-size: min(2.08333vw, 30px);
  border-radius: min(1.11111vw, 16px);
}
.p-fv__cta .c-btn::after {
  right: min(2.91667vw, 42px);
  width: min(1.18056vw, 17px);
  height: min(2.08333vw, 30px);
  margin-top: max(-1.04167vw, -15px);
}

.p-problems {
  position: relative;
  background: #fff6ee;
  overflow: hidden;
}
.p-problems__main {
  position: relative;
  z-index: 2;
  padding: 120px 0 100px;
}
.p-problems__main::before {
  content: '';
  position: absolute;
  z-index: -1;
  left: -1.25%;
  top: 0;
  width: 102.5%;
  height: calc(100% + 27px);
  background: url(../img/section2_bg.png) no-repeat top center;
  background-size: 100% 100%;
}
@media screen and (max-width: 767px) {
  .p-problems__main {
    padding: 60px 0 48px;
  }
}
.p-problems__content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
}
@media screen and (max-width: 767px) {
  .p-problems__content {
    flex-direction: column-reverse;
    gap: 32px;
  }
}
.p-problems__list {
  width: 533px;
  flex: 0 0 auto;
}
@media screen and (max-width: 767px) {
  .p-problems__list {
    width: 100%;
  }
}
.p-problems__fig {
  flex: 0 0 auto;
  width: 503px;
  line-height: 0;
}
.p-problems__fig img {
  width: 100%;
  height: 402px;
  object-fit: cover;
  object-position: center bottom;
  border-radius: 80px 0 80px 0;
}
@media screen and (max-width: 767px) {
  .p-problems__fig {
    width: 100%;
  }
  .p-problems__fig img {
    height: 232px;
    border-radius: 60px 0 60px 0;
  }
}
.p-problems__catch {
  margin-top: 72px;
  font-weight: 700;
  font-size: 32px;
  line-height: 1.49;
  letter-spacing: 0.08em;
  text-align: center;
}
.p-problems__catch .is-lg {
  font-size: 38px;
}
.p-problems__catch .is-slash {
  font-size: 40px;
}
.p-problems__catch .is-main {
  color: #eb853c;
  font-size: 38px;
}
@media screen and (max-width: 767px) {
  .p-problems__catch {
    margin-top: 40px;
    font-size: 17px;
  }
  .p-problems__catch .is-lg,
  .p-problems__catch .is-slash,
  .p-problems__catch .is-main {
    font-size: 19px;
  }
}
.p-problems__message {
  position: relative;
  z-index: 1;
  padding: 120px 0;
  text-align: center;
}
.p-problems__message::before {
  content: '';
  position: absolute;
  z-index: -1;
  left: -0.35%;
  top: -160px;
  width: 100.7%;
  height: calc(100% + 160px);
  background: url(../img/section2_img2.jpg) no-repeat center bottom;
  background-size: cover;
}
.p-problems__message p {
  font-weight: 700;
  font-size: 24px;
  line-height: 1.62;
  letter-spacing: 0.02em;
  text-shadow: 2px 2px 4px rgba(253, 253, 251, 0.15);
}
.p-problems__message .is-lg {
  font-size: 32px;
}
.p-problems__message .is-main {
  color: #eb853c;
}
@media screen and (max-width: 767px) {
  .p-problems__message {
    padding: 56px 0 64px;
  }
  .p-problems__message::before {
    top: -110px;
    height: calc(100% + 110px);
    background-position: 72% bottom;
  }
  .p-problems__message p {
    display: inline-block;
    padding: 16px 12px;
    background: rgba(255, 255, 255, 0.32);
    font-size: 15px;
  }
  .p-problems__message .is-lg {
    font-size: 18px;
  }
}

.p-beginners {
  position: relative;
  background: #fff6ee url(../img/section3_bg.jpg) no-repeat center/cover;
}
.p-beginners__lead {
  margin-bottom: 57px;
  font-size: 24px;
  line-height: 1.53;
  text-align: center;
}
.p-beginners__lead b {
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .p-beginners__lead {
    margin-bottom: 32px;
    font-size: 18px;
    line-height: 1.5;
  }
}
.p-beginners__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px 40px;
}
@media screen and (max-width: 767px) {
  .p-beginners__list {
    gap: 24px;
  }
}

.p-card {
  width: 418px;
  max-width: 100%;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.6);
  overflow: hidden;
}
.p-card__img {
  line-height: 0;
}
.p-card__img img {
  width: 100%;
  height: 228px;
  object-fit: cover;
}
.p-card__body {
  padding: 16px 24px 32px;
  text-align: center;
}
.p-card__title {
  margin-bottom: 16px;
  color: #ff5131;
  font-weight: 700;
  font-size: 24px;
  line-height: 1.2;
  letter-spacing: 0.05em;
}
.p-card__text {
  font-size: 16px;
  line-height: 1.67;
  letter-spacing: 0.02em;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .p-card {
    width: 100%;
  }
  .p-card__body {
    padding: 16px 24px 24px;
  }
  .p-card__title {
    margin-bottom: 8px;
    font-size: 20px;
  }
  .p-card__text {
    font-size: 14px;
  }
}

.p-reason__flower {
  position: absolute;
  z-index: 1;
  line-height: 0;
  pointer-events: none;
}
.p-reason__flower img {
  width: 100%;
  height: auto;
}
.p-reason__flower.is-lt {
  left: -4%;
  top: -1%;
  width: 24.1%;
}
.p-reason__flower.is-rm {
  right: -1%;
  top: 47%;
  width: 17.3%;
}
.p-reason__flower.is-rb {
  right: -1%;
  bottom: -3%;
  width: 31%;
}
@media screen and (max-width: 767px) {
  .p-reason__flower.is-lt {
    left: -12%;
    top: -1%;
    width: 52%;
  }
  .p-reason__flower.is-rm {
    right: -8%;
    top: 47%;
    width: 40%;
  }
  .p-reason__flower.is-rb {
    right: -6%;
    bottom: -2%;
    width: 62%;
  }
}
.p-reason__list {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
@media screen and (max-width: 767px) {
  .p-reason__list {
    gap: 40px;
  }
}
.p-reason__item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
}
.p-reason__item.is-rev {
  flex-direction: row-reverse;
}
@media screen and (max-width: 767px) {
  .p-reason__item {
    flex-direction: column;
    gap: 24px;
  }
  .p-reason__item.is-rev {
    flex-direction: column;
  }
}
.p-reason__body {
  width: 542px;
  flex: 0 0 auto;
}
@media screen and (max-width: 767px) {
  .p-reason__body {
    width: 294px;
    max-width: 100%;
  }
}
.p-reason__title {
  margin-bottom: 24px;
  font-weight: 700;
  font-size: 24px;
  line-height: 1.3;
  letter-spacing: 0.05em;
}
.p-reason__title .is-point {
  color: #ff5131;
}
@media screen and (max-width: 767px) {
  .p-reason__title {
    margin-bottom: 8px;
    font-size: 20px;
    text-align: center;
  }
  .p-reason__title .is-br::before {
    content: '\A';
    white-space: pre;
  }
}
.p-reason__text {
  font-size: 16px;
  line-height: 1.67;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 767px) {
  .p-reason__text {
    font-size: 14px;
  }
}
.p-reason__fig {
  flex: 0 0 auto;
  width: 388px;
  line-height: 0;
}
.p-reason__fig img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 8px 8px 4px 0 rgba(85, 85, 85, 0.15);
}
@media screen and (max-width: 767px) {
  .p-reason__fig {
    width: 294px;
    max-width: 100%;
  }
  .p-reason__fig img {
    height: 178px;
  }
}

.p-benefits {
  position: relative;
  background: #fff6ee url(../img/section5_bg.jpg) no-repeat center/cover;
}
.p-benefits .l-section__inner {
  padding: 120px 0 100px;
}
@media screen and (max-width: 767px) {
  .p-benefits .l-section__inner {
    padding: 56px 0;
  }
}
.p-benefits__content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
}
@media screen and (max-width: 767px) {
  .p-benefits__content {
    flex-direction: column;
    gap: 24px;
  }
}
.p-benefits__fig {
  flex: 0 0 auto;
  width: 503px;
  line-height: 0;
}
.p-benefits__fig img {
  width: 100%;
  height: 402px;
  object-fit: cover;
  border-radius: 0 80px 0 80px;
  transform: scaleX(-1);
}
@media screen and (max-width: 767px) {
  .p-benefits__fig {
    width: 100%;
  }
  .p-benefits__fig img {
    height: 245px;
    border-radius: 0 60px 0 60px;
  }
}
.p-benefits__list {
  width: 533px;
  flex: 0 0 auto;
}
@media screen and (max-width: 767px) {
  .p-benefits__list {
    width: 100%;
    padding: 20px 16px;
    background: rgba(255, 255, 255, 0.35);
  }
}

.p-features__flower {
  position: absolute;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
.p-features__flower img {
  display: block;
}
.p-features__flower.is-a1 {
  left: -5.21%;
  top: -46px;
  width: 19.42%;
  aspect-ratio: 279.597 / 226.338;
}
.p-features__flower.is-a1 img {
  width: 71.72%;
  height: 115.0%;
  transform: rotate(84.07deg);
}
.p-features__flower.is-a2 {
  left: 10.07%;
  top: -69px;
  width: 14.12%;
  aspect-ratio: 203.29 / 200.729;
}
.p-features__flower.is-a2 img {
  width: 67.88%;
  height: 75.06%;
  transform: rotate(126.78deg);
}
.p-features__flower.is-a3 {
  left: -4.44%;
  top: 133px;
  width: 12.78%;
  aspect-ratio: 183.981 / 191.056;
}
.p-features__flower.is-a3 img {
  width: 75.0%;
  height: 78.86%;
  transform: scaleY(-1) rotate(-21.74deg);
}
.p-features__flower.is-b1 {
  left: 85.21%;
  top: 570px;
  width: 19.42%;
  aspect-ratio: 279.597 / 226.338;
}
.p-features__flower.is-b1 img {
  width: 71.72%;
  height: 115.0%;
  transform: rotate(-95.93deg);
}
.p-features__flower.is-b2 {
  left: 76.81%;
  top: 618px;
  width: 14.12%;
  aspect-ratio: 203.29 / 200.729;
}
.p-features__flower.is-b2 img {
  width: 67.88%;
  height: 75.06%;
  transform: rotate(-53.22deg);
}
.p-features__flower.is-b3 {
  left: 92.66%;
  top: 426px;
  width: 12.78%;
  aspect-ratio: 183.981 / 191.056;
}
.p-features__flower.is-b3 img {
  width: 75.0%;
  height: 78.86%;
  transform: scaleY(-1) rotate(158.26deg);
}
@media screen and (max-width: 767px) {
  .p-features__flower.is-a1 {
    left: -22%;
    top: -30px;
    width: 62%;
  }
  .p-features__flower.is-a2 {
    left: 20%;
    top: -60px;
    width: 46%;
  }
  .p-features__flower.is-a3 {
    left: -20%;
    top: 90px;
    width: 42%;
  }
  .p-features__flower.is-b1 {
    left: 62%;
    top: auto;
    bottom: 40px;
    width: 62%;
  }
  .p-features__flower.is-b2 {
    left: 46%;
    top: auto;
    bottom: 100px;
    width: 46%;
  }
  .p-features__flower.is-b3 {
    left: 78%;
    top: auto;
    bottom: 220px;
    width: 42%;
  }
}
.p-features__list {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 29px;
}
@media screen and (max-width: 767px) {
  .p-features__list {
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }
}

.p-feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  width: 379px;
  height: 375px;
  max-width: 100%;
  padding: 32px;
  border-radius: 16px;
  background: #fff;
  filter: drop-shadow(8px 8px 2px rgba(85, 85, 85, 0.15));
}
.p-feature__img {
  width: 100%;
  line-height: 0;
}
.p-feature__img img {
  width: 100%;
  height: 187px;
  object-fit: cover;
  border-radius: 8px;
}
.p-feature__title {
  font-weight: 700;
  font-size: 24px;
  line-height: 1.2;
  letter-spacing: 0.02em;
  text-align: center;
  white-space: nowrap;
}
.p-feature__text {
  margin-top: -8px;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.25;
  letter-spacing: 0.02em;
}
.p-feature__text b {
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .p-feature {
    width: 350px;
    height: auto;
    gap: 16px;
    padding: 32px 24px;
  }
  .p-feature__title {
    font-size: 20px;
    white-space: normal;
  }
  .p-feature__text {
    margin-top: 0;
    font-size: 14px;
  }
}

.p-instructor {
  position: relative;
  background: #fff6ee url(../img/section7_bg.jpg) no-repeat center/cover;
  overflow: hidden;
}
.p-instructor__catch {
  margin-bottom: 64px;
  line-height: 0;
  text-align: center;
}
.p-instructor__catch img {
  width: 448px;
  max-width: 100%;
}
@media screen and (max-width: 767px) {
  .p-instructor__catch {
    margin-bottom: 40px;
  }
  .p-instructor__catch img {
    width: 290px;
  }
}
.p-instructor__list {
  margin-bottom: 64px;
}
.p-instructor__list:not(.slick-initialized) {
  display: flex;
  gap: 24px;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .p-instructor__list {
    margin-bottom: 32px;
  }
}
.p-instructor__list .slick-slide {
  margin: 0 12px;
}
.p-instructor__list .slick-list {
  overflow: visible;
}
.p-instructor__item {
  width: 281px;
  flex: 0 0 auto;
}
@media screen and (max-width: 767px) {
  .p-instructor__item {
    width: 235px;
  }
}
.p-instructor__ph {
  line-height: 0;
}
.p-instructor__ph img {
  width: 100%;
  height: auto;
}
.p-instructor__name {
  margin-top: 25px;
  padding: 8px;
  background: rgba(255, 255, 255, 0.2);
  font-weight: 700;
  font-size: 24px;
  line-height: 1.53;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-instructor__name {
    margin-top: 16px;
    font-size: 20px;
  }
}
.p-instructor__text {
  font-weight: 700;
  font-size: 20px;
  line-height: 1.74;
  text-align: center;
  text-shadow: 2px 2px 4px rgba(249, 246, 241, 0.2);
}
@media screen and (max-width: 767px) {
  .p-instructor__text {
    font-size: 15px;
  }
}

.p-flow__flower {
  position: absolute;
  z-index: 1;
  line-height: 0;
  pointer-events: none;
}
.p-flow__flower img {
  width: 100%;
  height: 100%;
}
.p-flow__flower.is-l1 {
  left: -4.51%;
  top: 0;
  width: 19.5%;
  height: 50%;
}
.p-flow__flower.is-l2 {
  left: -4.44%;
  top: 50%;
  width: 19.52%;
  height: 50%;
}
.p-flow__flower.is-r1 {
  left: 85.15%;
  top: 0;
  width: 19.36%;
  height: 50%;
  transform: scaleX(-1);
}
.p-flow__flower.is-r2 {
  left: 85.07%;
  top: 50%;
  width: 19.37%;
  height: 50%;
  transform: scaleX(-1);
}
@media screen and (max-width: 767px) {
  .p-flow__flower.is-l1, .p-flow__flower.is-l2 {
    left: -22%;
    width: 50%;
  }
  .p-flow__flower.is-r1, .p-flow__flower.is-r2 {
    left: 72%;
    width: 50%;
  }
}
.p-flow__list {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  max-width: 1172px;
  margin: 0 auto;
}
.p-flow__list::before {
  content: '';
  position: absolute;
  left: 8.7%;
  top: min(8.88889vw, 128px);
  width: 82.6%;
  height: 8px;
  margin-top: -4px;
  background: #eb853c;
}
@media screen and (max-width: 767px) {
  .p-flow__list {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    max-width: 320px;
  }
  .p-flow__list::before {
    left: 15.8%;
    top: 60px;
    bottom: 60px;
    width: 8px;
    height: auto;
    margin: 0 0 0 -4px;
  }
}
.p-flow__item {
  position: relative;
  z-index: 2;
  width: 17.4%;
}
@media screen and (max-width: 767px) {
  .p-flow__item {
    display: flex;
    align-items: center;
    gap: 8px;
    width: 100%;
  }
}
.p-flow__icon {
  position: relative;
  width: 100%;
  padding-top: min(1.80556vw, 26px);
}
.p-flow__icon::before {
  content: '';
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  background: #ffe7d1;
}
@media screen and (max-width: 767px) {
  .p-flow__icon {
    flex: 0 0 auto;
    width: 123px;
    padding-top: 16px;
  }
}
.p-flow__num {
  position: absolute;
  left: 50%;
  top: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(3.54167vw, 51px);
  height: min(3.54167vw, 51px);
  margin-left: max(-1.77083vw, -25.5px);
  border-radius: 50%;
  background: #eb853c;
  color: #fff;
  font-family: "Didot", "Bodoni Moda", "Bodoni 72", "Playfair Display", "Times New Roman", serif;
  font-weight: 700;
  font-size: min(2.22222vw, 32px);
  line-height: 1;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 767px) {
  .p-flow__num {
    width: 31px;
    height: 31px;
    margin-left: -15.5px;
    font-size: 20px;
  }
}
.p-flow__pict {
  position: absolute;
  left: 50%;
  top: min(5.55556vw, 80px);
  width: 47.06%;
  height: auto;
  margin-left: -23.53%;
}
@media screen and (max-width: 767px) {
  .p-flow__pict {
    top: 48px;
    width: 58px;
    margin-left: -29px;
  }
}
.p-flow__body {
  margin-top: min(1.875vw, 27px);
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-flow__body {
    flex: 1 1 auto;
    margin-top: 0;
    padding: 0 16px;
  }
}
.p-flow__title {
  color: #eb853c;
  font-weight: 700;
  font-size: min(1.66667vw, 24px);
  line-height: 1.35;
  letter-spacing: 0.02em;
}
.p-flow__title::after {
  content: '';
  display: block;
  width: 57px;
  height: 1px;
  margin: 16px auto;
  background: #5c3111;
}
@media screen and (max-width: 767px) {
  .p-flow__title {
    font-size: 20px;
  }
}
.p-flow__text {
  font-size: min(1.38889vw, 20px);
  line-height: 1.35;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 767px) {
  .p-flow__text {
    font-size: 16px;
  }
}

.p-price {
  position: relative;
  background: #fff6ee;
  overflow: hidden;
}
.p-price__bg {
  position: absolute;
  left: 0;
  top: 14px;
  z-index: 1;
  width: 100%;
  height: calc(100% - 14px);
}
@media screen and (max-width: 767px) {
  .p-price__bg {
    top: 8px;
    height: calc(100% - 8px);
  }
}
.p-price__open {
  margin-bottom: 24px;
  line-height: 0;
  text-align: center;
}
.p-price__open img {
  width: 716px;
  max-width: 100%;
}
@media screen and (max-width: 767px) {
  .p-price__open {
    margin-bottom: 16px;
  }
  .p-price__open img {
    width: 100%;
  }
}
.p-price__list {
  display: flex;
  justify-content: center;
  gap: 40px;
}
@media screen and (max-width: 767px) {
  .p-price__list {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }
}
.p-price__item {
  width: 395px;
  max-width: 100%;
  border: 2px solid #eb853c;
  border-radius: 8px;
  background: #fff;
  overflow: hidden;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-price__item {
    width: 100%;
    max-width: 350px;
  }
}
.p-price__title {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 103px;
  background: #eb853c;
  color: #fff;
  font-weight: 700;
  font-size: 30px;
  line-height: 1.32;
  letter-spacing: 0.05em;
}
.p-price__title .is-sm {
  font-size: 24px;
}
.p-price__title .is-num {
  font-size: 26px;
}
@media screen and (max-width: 767px) {
  .p-price__title {
    height: 88px;
    font-size: 24px;
  }
  .p-price__title .is-sm {
    font-size: 20px;
  }
  .p-price__title .is-num {
    font-size: 22px;
  }
}
.p-price__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 149px;
}
@media screen and (max-width: 767px) {
  .p-price__body {
    height: 110px;
  }
}
.p-price__fee {
  font-weight: 700;
  line-height: 1.53;
}
.p-price__fee .is-num {
  font-size: 40px;
  letter-spacing: 0.05em;
}
.p-price__fee .is-tax {
  font-size: 24px;
}
@media screen and (max-width: 767px) {
  .p-price__fee .is-num {
    font-size: 32px;
  }
  .p-price__fee .is-tax {
    font-size: 18px;
  }
}
.p-price__note {
  font-weight: 700;
  font-size: 16px;
  line-height: 1.53;
  letter-spacing: 0.02em;
}
.p-price__note .is-sm {
  font-size: 12px;
}
@media screen and (max-width: 767px) {
  .p-price__note {
    font-size: 14px;
  }
}
.p-price__caution {
  max-width: 830px;
  margin: 12px auto 0;
  font-size: 16px;
  line-height: 1;
  letter-spacing: 0.02em;
  text-align: right;
}
@media screen and (max-width: 767px) {
  .p-price__caution {
    max-width: 350px;
    font-size: 12px;
  }
}

.p-schedule {
  position: relative;
  background: #fff6ee;
  overflow: hidden;
}
.p-schedule__bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  transform: scaleY(-1);
}
.p-schedule__fig {
  line-height: 0;
  text-align: center;
}
.p-schedule__fig img {
  width: 1192px;
  max-width: 100%;
}

.p-faq__flower {
  position: absolute;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
.p-faq__flower img {
  display: block;
}
.p-faq__flower.is-f1 {
  left: -4.17%;
  top: -29px;
  width: 26.88%;
  aspect-ratio: 387.01 / 407.991;
}
.p-faq__flower.is-f1 img {
  width: 69.4%;
  height: 73.06%;
  transform: scaleY(-1) rotate(-53.99deg) skewX(-3.77deg);
}
.p-faq__flower.is-f2 {
  left: 86.93%;
  top: 634px;
  width: 23.9%;
  aspect-ratio: 344.185 / 333.775;
}
.p-faq__flower.is-f2 img {
  width: 77.66%;
  height: 88.48%;
  transform: scaleY(-1) rotate(102.53deg) skewX(-1.75deg);
}
.p-faq__flower.is-f3 {
  left: 77.29%;
  top: 884px;
  width: 23.63%;
  aspect-ratio: 340.278 / 441.684;
}
.p-faq__flower.is-f3 img {
  width: 100%;
  height: 100%;
  transform: scaleY(-1) rotate(180deg);
}
@media screen and (max-width: 767px) {
  .p-faq__flower.is-f1 {
    left: -16%;
    top: -20px;
    width: 70%;
  }
  .p-faq__flower.is-f2 {
    left: 62%;
    top: 46%;
    width: 62%;
  }
  .p-faq__flower.is-f3 {
    left: 52%;
    top: 62%;
    width: 62%;
  }
}
.p-faq__list {
  display: flex;
  flex-direction: column;
  gap: 32px;
  max-width: 904px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .p-faq__list {
    gap: 24px;
  }
}
.p-faq__item {
  display: flex;
  gap: 20px;
  padding: 24px 32px;
  border-radius: 8px;
  background: #fff;
}
@media screen and (max-width: 767px) {
  .p-faq__item {
    gap: 12px;
    padding: 16px 24px;
  }
}
.p-faq__mark {
  flex: 0 0 auto;
  width: 32px;
  padding: 24px 0;
  color: #5c3111;
  font-family: "Didot", "Bodoni Moda", "Bodoni 72", "Playfair Display", "Times New Roman", serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 1;
  text-align: center;
}
.p-faq__body {
  flex: 1 1 auto;
  min-width: 0;
}
.p-faq__q {
  padding: 24px 0;
  border-bottom: 1px solid #5c3111;
  color: #eb853c;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", "メイリオ", sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.5;
  letter-spacing: 0.1em;
  font-feature-settings: 'palt' 1;
}
@media screen and (max-width: 767px) {
  .p-faq__q {
    font-size: 16px;
  }
}
.p-faq__a {
  padding: 24px 0 0;
  margin: 0;
  color: #5c3111;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", "メイリオ", sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.5;
  letter-spacing: 0.1em;
  font-feature-settings: 'palt' 1;
}
@media screen and (max-width: 767px) {
  .p-faq__a {
    font-size: 16px;
  }
}

.p-last {
  position: relative;
  background: #fffaf6;
  overflow: hidden;
}
.p-last__bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: url(../img/section12_bg.jpg) no-repeat 1% 10%;
  background-size: 122.6% auto;
}
.p-last__bg img {
  display: none;
}
.p-last__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.65);
}
@media screen and (max-width: 767px) {
  .p-last__bg {
    background-position: 62% 8%;
    background-size: auto 118%;
  }
}
.p-last__inner {
  position: relative;
  z-index: 2;
  padding: 120px 0 100px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-last__inner {
    padding: 64px 0 56px;
  }
}
.p-last__title {
  margin-bottom: 56px;
  filter: drop-shadow(2px 2px 2px rgba(255, 255, 255, 0.25));
}
.p-last__title .is-lead {
  display: block;
  margin-bottom: 16px;
  color: #ff5131;
  font-size: 40px;
  line-height: 1.22;
  letter-spacing: 0.1em;
}
.p-last__title .is-sub {
  display: block;
  font-size: 24px;
  line-height: 1.53;
}
@media screen and (max-width: 767px) {
  .p-last__title {
    margin-bottom: 40px;
  }
  .p-last__title .is-lead {
    font-size: 28px;
    line-height: 1.35;
  }
  .p-last__title .is-sub {
    font-size: 17px;
  }
}
.p-last__text {
  margin-bottom: 40px;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.53;
  text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.25);
}
.p-last__text .is-main {
  color: #eb853c;
}
@media screen and (max-width: 767px) {
  .p-last__text {
    margin-bottom: 28px;
    font-size: 15px;
  }
}
.p-last__cta {
  margin-top: 56px;
}
@media screen and (max-width: 767px) {
  .p-last__cta {
    margin-top: 40px;
  }
}

@media screen and (min-width: 768px) and (max-width: 1439px) {
  .l-section__inner {
    padding: 80px 0;
  }

  .c-h2 {
    margin-bottom: 48px;
  }
  .c-h2__en {
    font-size: 16px;
    margin-bottom: 12px;
  }
  .c-h2__ja {
    font-size: 26px;
  }
  .c-h2__ja .is-lg {
    font-size: 32px;
  }

  .c-checklist__item {
    font-size: 18px;
    white-space: normal;
  }
  .c-checklist__item + .c-checklist__item {
    margin-top: 18px;
  }
  .c-checklist__item::before {
    width: 20px;
    height: 20px;
  }

  .l-sidenav {
    top: 120px;
  }
  .l-sidenav__btn {
    width: 76px;
    padding: 20px 28px;
    font-size: 16px;
  }
  .l-sidenav__btn.is-entry {
    height: 190px;
  }

  .p-problems__main {
    padding: 80px 0 72px;
  }
  .p-problems__content {
    gap: 24px;
  }
  .p-problems__list {
    flex: 1 1 auto;
    width: auto;
    min-width: 0;
  }
  .p-problems__fig {
    width: 40%;
  }
  .p-problems__fig img {
    height: 320px;
    border-radius: 60px 0 60px 0;
  }
  .p-problems__catch {
    margin-top: 48px;
    font-size: 24px;
  }
  .p-problems__catch .is-lg,
  .p-problems__catch .is-main {
    font-size: 28px;
  }
  .p-problems__catch .is-slash {
    font-size: 30px;
  }
  .p-problems__message {
    padding: 88px 0;
  }
  .p-problems__message p {
    font-size: 20px;
  }
  .p-problems__message .is-lg {
    font-size: 26px;
  }

  .p-beginners__lead {
    margin-bottom: 40px;
    font-size: 20px;
  }
  .p-beginners__list {
    gap: 24px;
  }

  .p-card {
    width: calc(50% - 12px);
  }
  .p-card__img img {
    height: 200px;
  }
  .p-card__title {
    font-size: 20px;
  }
  .p-card__text {
    font-size: 15px;
  }

  .p-reason__item {
    gap: 24px;
  }
  .p-reason__body {
    flex: 1 1 auto;
    width: auto;
    min-width: 0;
  }
  .p-reason__title {
    margin-bottom: 16px;
    font-size: 20px;
  }
  .p-reason__text {
    font-size: 15px;
  }
  .p-reason__fig {
    width: 36%;
  }
  .p-reason__fig img {
    height: 220px;
  }

  .p-benefits .l-section__inner {
    padding: 80px 0 72px;
  }
  .p-benefits__content {
    gap: 24px;
  }
  .p-benefits__fig {
    width: 42%;
  }
  .p-benefits__fig img {
    height: 320px;
    border-radius: 0 60px 0 60px;
  }
  .p-benefits__list {
    flex: 1 1 auto;
    width: auto;
    min-width: 0;
  }

  .p-features__list {
    gap: 20px;
  }

  .p-feature {
    flex: 1 1 0;
    width: auto;
    min-width: 0;
    height: auto;
    padding: 24px;
  }
  .p-feature__img img {
    height: 150px;
  }
  .p-feature__title {
    font-size: 18px;
    white-space: normal;
  }
  .p-feature__text {
    margin-top: 0;
    font-size: 14px;
  }

  .p-instructor__catch img {
    width: 380px;
  }
  .p-instructor__text {
    font-size: 17px;
  }

  .p-price__list {
    flex-wrap: wrap;
    gap: 24px;
  }
  .p-price__item {
    width: calc(50% - 12px);
  }
  .p-price__title {
    font-size: 24px;
  }
  .p-price__title .is-sm {
    font-size: 20px;
  }
  .p-price__title .is-num {
    font-size: 22px;
  }
  .p-price__fee .is-num {
    font-size: 34px;
  }
  .p-price__caution {
    max-width: 100%;
  }

  .p-faq__list {
    gap: 24px;
  }
  .p-faq__q, .p-faq__a {
    font-size: 18px;
  }

  .p-last__inner {
    padding: 80px 0 72px;
  }
  .p-last__title {
    margin-bottom: 40px;
  }
  .p-last__title .is-lead {
    font-size: 32px;
  }
  .p-last__title .is-sub {
    font-size: 20px;
  }
  .p-last__text {
    margin-bottom: 32px;
    font-size: 18px;
  }
}
