@charset "UTF-8";

/* Basic font size */
/*html {
	font-size: 20px;
}

@media screen and (max-width: 1024px) {
	html {
		font-size: 18px;
	}
}
@media screen and (max-width: 600px) {
	html {
		font-size: 16px;
	}
}*/

/* default setting */
body {
  background: #fff;
  color: #333;
  font-family: "Noto Sans JP", sans-serif;
  font-feature-settings: "palt";
  letter-spacing: .05em;
}

a {
  color: #333;
  text-decoration: none;
}

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

li {
  list-style: none;
}

h1 {
  /* overflow-wrap: break-word; */
}
p {
  /* overflow-wrap: break-word; */
}

.ly-cont {
  font-family: "Noto Sans JP", sans-serif;
  font-style: normal;
  font-weight: normal;
  margin: 0 auto;
  max-width: 940px;
  width: 100%;
}
@media screen and (max-width: 1024px) {
  .ly-cont {
    margin: 0 3em;
    width: calc(100% - 6em);
  }
}
@media screen and (max-width: 834px) {
  .ly-cont {
    margin: 0 2em;
    width: calc(100% - 4em);
  }
}
@media screen and (max-width: 600px) {
  .ly-cont {
    margin: 0 1em;
    width: calc(100% - 2em);
  }
}

.header {
  height: 4.8rem;
  position: -webkit-sticky;
  position: sticky;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 90;
  background-color: #fff;
  transition: background-color 0.3s;
  box-shadow: 0px 3px 3px 0px rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 834px) {
  .header {
    height: 4rem;
  }
}
@media screen and (max-width: 600px) {
  .header {
    position: initial;
  }
}
.header__inner {
  margin: 0 auto;
  padding: 0;
  display: flex;
  height: inherit;
  align-items: center;
  justify-content: space-between;
}
.header__logo {
  transition: 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 2rem;
  height: inherit;
  padding-left: 2rem;
  position: relative;
  z-index: 110;
}
@media screen and (max-width: 1024px) {
  .header__logo {
  }
}
@media screen and (max-width: 834px) {
  .header__logo {
    padding-left: 1.125rem;
  }
}

.header__logo a {
  width: 6rem;
}
@media screen and (max-width: 834px) {
  .header__logo a {
    width: auto;
    height: 6vw;
    display: block;
  }
}

.header__logo img {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: contain;
  object-fit: contain;
}
.header__disc {
  display: block;
  font-size: 1rem;
  letter-spacing: 0.04em;
  font-weight: 400;
  height: inherit;
  display: inline-flex;
  align-items: center;
}
@media screen and (max-width: 1024px) {
  .header__disc {
    display: none;
  }
}
.header__btn {
  height: inherit;
  display: flex;
  margin-right: 4.8rem;
}
@media screen and (max-width: 834px) {
  .header__btn {
    margin-right: 4rem;
  }
}
.header__application {
  display: flex;
  justify-content: center;
  line-height: 100%;
  margin: 10px 10px 10px 0;
  text-decoration: none;
}
@media screen and (max-width: 430px) {
  .header__application {
    /* margin: auto 0.4rem; */
  }
}
@media screen and (max-width: 320px) {
  .header__application {
    /* margin: auto 0.5rem; */
  }
}
.header__application__inner {
  background-image: linear-gradient(90deg, #937fa8 0.12%, #dab7f2 100%);
  border-radius: 100vh;
  box-shadow: 0px 4px 4px 0px rgba(147, 127, 168, 0.25);
  color: #fff;
  cursor: pointer;
  font-family: "Noto Serif JP", serif;
  padding: 0.7rem 2rem;
  vertical-align: middle;
  display: flex;
  align-items: center;
  white-space: nowrap;
}
@media screen and (max-width: 600px) {
  .header__application__inner {
    padding: 0.8rem 1.2rem;
  }
}
@media screen and (max-width: 320px) {
  .header__application__inner {
    padding: 0.8rem;
  }
}
.header__application__inner:hover {
  background: linear-gradient(90deg, #99c7d0 0%, #bdd8dd 100%);
}
.header__application__inner span {
  font-size: 1.2rem;
  font-weight: bold;
  line-height: 1;
  padding-right: 1rem;
}
@media screen and (max-width: 600px) {
  .header__application__inner span {
    font-size: 3.2vw;
    line-height: 1.2;
    padding-right: 2vw;
  }
}
@media screen and (max-width: 430px) {
  .header__application__inner span {
    font-size: 4vw;
  }
}
@media screen and (max-width: 320px) {
  .header__application__inner span {
  }
}
.header__application__inner::after {
  content: "";
  width: 1.4rem;
  aspect-ratio: 1/1;
  background: url(../images/exercise/arrow-right.svg) no-repeat #fff;
  background-color: transparent;
  background-position: right 0px top 50%;
  display: inline-block;
  line-height: 1;
}
@media screen and (max-width: 600px) {
  .header__application__inner::after {
    width: 1.2rem;
  }
}
@media screen and (max-width: 430px) {
  .header__application__inner::after {
    width: 1.2rem;
  }
}
@media screen and (max-width: 320px) {
  .header__application__inner::after {
    width: 1rem;
  }
}

.header__menu {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 9999;
}

.header__menuButton {
  background-color: #eeecf4;
  cursor: pointer;
  width: 4.8rem;
  height: 4.8rem;
  aspect-ratio: 1/1;
  position: relative;
  z-index: 9999;
}
@media screen and (max-width: 834px) {
  .header__menuButton {
    width: 4rem;
    height: 4rem;
  }
}
.header__menuButton:hover {
  opacity: 1;
}
.header__menuButton span {
  display: inline-block;
  width: 2rem;
  height: 0.2rem;
  position: absolute;
  background-color: #937fa8;
  left: 50%;
  transform: translateX(-50%);
  transition: 0.3s;
}
@media screen and (max-width: 834px) {
  .header__menuButton span {
    width: 1.5rem;
  }
}
.header__menuButton span:nth-child(1) {
  top: 1.3rem;
}
@media screen and (max-width: 834px) {
  .header__menuButton span:nth-child(1) {
    top: 2rem;
  }
}
.header__menuButton span:nth-child(2) {
  top: 1.8rem;
}
@media screen and (max-width: 834px) {
  .header__menuButton span:nth-child(2) {
    top: 1.2rem;
  }
}
.header__menuButton span:nth-child(3) {
  top: 2.4rem;
}
@media screen and (max-width: 834px) {
  .header__menuButton span:nth-child(3) {
    top: 1.6rem;
  }
}
.header__menuButton span:nth-child(4) {
  color: #937fa8;
  background-color: #eeecf4;
  position: absolute;
  bottom: 1.5rem;
  font-size: 0.7rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: bold;
  text-transform: uppercase;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  width: 100%;
}
@media screen and (max-width: 834px) {
  .header__menuButton span:nth-child(4) {
    bottom: 1rem;
  }
}
.header__menuButton span:nth-child(4) strong {
  display: block;
  font-size: 0.8rem;
  margin-top: -0.2em;
  color: #937fa8;
  transition: 0.3s;
}
@media screen and (max-width: 834px) {
  .header__menuButton span:nth-child(4) strong {
    margin-top: -0.5em;
  }
}
.header__menuButton.is-active span:nth-child(1) {
  color: #fff;
  top: 2.2rem;
  transform: translateX(-50%) rotate(45deg);
}
@media screen and (max-width: 834px) {
  .header__menuButton.is-active span:nth-child(1) {
    top: 2rem;
  }
}
.header__menuButton.is-active span:nth-child(2) {
  opacity: 0;
}
.header__menuButton.is-active span:nth-child(3) {
  color: #fff;
  top: 2.2rem;
  transform: translateX(-50%) rotate(-45deg);
}
@media screen and (max-width: 834px) {
  .header__menuButton.is-active span:nth-child(3) {
    top: 2rem;
  }
}
.header__menuButton.is-active span:nth-child(4) strong {
  opacity: 0;
}
.header__nav {
  background:
    linear-gradient(
      0deg,
      rgba(147, 127, 168, 0.7) 0%,
      rgba(147, 127, 168, 0.7) 100%
    ),
    url(../images/exercise/message-img2.webp),
    center/cover no-repeat,
    lightgray;
  background-size: auto 100%;
  background-position: center;
  height: 100vh;
  width: 40%;
  overflow-y: auto;
  position: fixed;
  top: -120%;
  right: 0;
  z-index: 999;
  transition: all 0.6s;
}
@media screen and (max-width: 600px) {
  .header__nav {
    /* top: 0; */
    width: 100%;
  }
}
.header__nav.js-drawer {
  top: 0;
}
.header__nav__list {
  margin-left: auto;
  margin-right: auto;
  padding-top: 7em;
  padding-bottom: 10em;
  overflow: auto;
  height: 100%;
  width: 100%;
  position: relative;
  z-index: 999;
}
.header__nav__list__item {
  color: #fff;
  text-align: center;
  list-style: none;
  padding: 0 1.25em;
}
.header__nav__list__item a {
  color: #fff;
  border-bottom: 1px solid;
  display: block;
  font-size: 1rem;
  font-feature-settings: "palt";
  letter-spacing: -0.05em;
  padding: 1em 0;
}
@media screen and (max-width: 600px) {
  .header__nav__list__item a {
    padding: 0.5em 0;
  }
}
.header__nav__list__item:first-child a {
  border-top: 1px solid;
}

.mv,
.mv picture,
.mv picture img {
  width: 100%;
  height: auto;
}
.mv .pc {
  /* パソコンで見たときは"pc"のclassがついた画像が表示される */
  display: inline-block !important;
  /* スマートフォンで見たときは"sp"のclassがついた画像が表示される */
}
.mv-full__text {
  display: none;
}
@media screen and (max-width: 600px) {
  .mv .pc {
    display: none !important;
  }
  .mv-full {
    height: calc(100dvh - 6.2rem);
    position: relative;
    background: #d8cdde url('../images/exercise/lp-pilates_sp_warabi_bg.webp') repeat-x center/contain;
  }
  .mv-full picture {
    height: 100%;
    text-align: center;
  }
  .mv-full picture img {
    height: 100%;
    object-fit: contain;
    object-position: top;
  }
  .mv-full__text {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    height: 100%;
    object-fit: contain;
    display: block;
  }
}
@media screen and (max-width: 430px) {
  .mv-full__text {
    height: auto;
  }
}

.mv .sp {
  /* パソコンで見たときは"pc"のclassがついた画像が表示される */
  display: none !important;
  /* スマートフォンで見たときは"sp"のclassがついた画像が表示される */
}
@media screen and (max-width: 600px) {
  .mv .sp {
    display: block !important;
  }
}

/* br */
@media screen and (max-width: 1980px) {
  .nonePc {
    display: none !important;
  }
}
@media screen and (min-width: 1281px) {
  .nonePc2 {
    display: none !important;
  }
}
@media screen and (min-width: 834px) {
  .noneTab {
    display: none !important;
  }
}
@media screen and (min-width: 600px) {
  .noneSp {
    display: none !important;
  }
}
@media screen and (min-width: 430px) {
  .noneSp2 {
    display: none !important;
  }
}
  .sp-only {
    display: none;
  }

@media screen and (max-width: 600px) {
  .pc-only {
    display: none;
  }
  .sp-only {
    display: block;
  }
}
  .basic-margin {
    padding-top: 5rem;
    padding-bottom: 5rem;
    margin: 0 !important;
  }
  @media screen and (max-width: 600px) {
    .basic-margin {
      padding-top: 3rem;
      padding-bottom: 3rem;
    }
  }

  .bg-text {
    font-weight: bold;
    font-size: 150%;
    padding-left: 0.2rem;
  }

  .sm-text {
    color: #e6698f;
    font-size: 80%;
    line-height: 1.2;
  }

  .bg-italic {
    font-family: "Noto Serif JP", serif;
    font-size: 240%;
    font-style: italic;
    font-weight: bold;
    line-height: 100%;
    padding-right: 0.2em;
    text-shadow: 0.15rem 0.15rem 1px rgba(51, 51, 51, 0.4);
  }

  .important-text {
    color: #e6698f;
    font-weight: bold;
  }

  .italic {
    font-style: italic;
  }

  /* Section title */
  .sec-title {
    color: #937fa8;
    font-family: "Noto Serif JP", serif;
    font-size: 1.8rem;
    font-weight: bold;
    line-height: 1.5;
    margin-bottom: 3rem;
    text-align: center;
  }
  @media screen and (max-width: 834px) {
    .sec-title {
      font-size: 1.4rem;
      margin-bottom: 1rem;
    }
  }
  @media screen and (max-width: 430px) {
    .sec-title {
      font-size: 1.2rem;
    }
  }

  /* キャンペーン */
  .line-through {
    text-decoration: line-through 2px solid #e6698f;
  }
  .campaign {
    background-color: #ddf5f3;
    text-align: center;
  }
  .campaign__banner__desc {
    margin-bottom: 1rem;
  }
  .campaign__banner__item {
    align-items: center;
    align-self: stretch;
    background: url(../images/exercise/campaign-banner_back.webp) no-repeat
      center/cover;
    border: 3px solid #937fa8;
    border-radius: 1rem;
    box-shadow: 0px 0px 1.5rem 0px rgba(147, 127, 168, 0.5);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 3rem;
    padding: 2rem 3rem;
  }
  @media screen and (max-width: 1024px) {
    .campaign__banner__item {
      padding: 1.5rem;
    }
  }
  @media screen and (max-width: 834px) {
    .campaign__banner__item {
      padding: 3rem 1rem 1rem 1rem;
      gap: 1rem;
    }
  }
  .campaign__banner__item__top {
    align-items: center;
    display: flex;
    justify-content: space-between;
    width: 100%;
  }
  @media screen and (max-width: 834px) {
    .campaign__banner__item__top {
      flex-direction: column;
      align-items: flex-start;
      gap: 1rem;
    }
  }
  .campaign__banner__item__top .banner-title {
    background: #fff000;
    color: #e6698f;
    display: block;
    height: 4rem;
    padding: 0.8rem 0.8rem 0.8rem 2rem;
    text-align: center;
    position: relative;
  }
  .campaign__banner__item__top .banner-title:after {
    content: "";
    position: absolute;
    top: 0;
    width: 0px;
    height: 0px;
    border-color: #fff000 transparent;
    border-style: solid;
    right: -1.5rem;
    border-width: 2rem 1.5rem 2rem 0px;
  }
  @media screen and (max-width: 1024px) {
    .campaign__banner__item__top .banner-title {
      width: auto;
    }
  }
  @media screen and (max-width: 834px) {
    .campaign__banner__item__top .banner-title {
      height: 5rem;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 0.2rem 0.6rem;
      width: calc(100% - 1.5rem);
    }
    .campaign__banner__item__top .banner-title:after {
      border-width: 2.5rem 1.5rem 2.5rem 0px;
    }
  }
  .campaign__banner__item__top .banner-title .bg-italic {
    font-size: 150%;
  }
  .campaign__banner__item__top .banner-title .banner-title-point {
    position: absolute;
    top: -1.2rem;
    left: -1rem;

    aspect-ratio: 1 / 1;
    color: #fff;
    background-color: #e6698f;
    border-radius: 100vh;
    font-size: 0.8rem;
    line-height: 1.1;
    padding: 0.2rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 3.2rem;
  }
  @media screen and (max-width: 834px) {
    .campaign__banner__item__top .banner-title .banner-title-point {
      top: -2.1rem;
      left: -0.2rem;
      height: 3rem;
    }
  }

  .campaign__banner__item__top .banner-point {
    background-color: #e6698f;
    border-radius: 1rem;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 4rem;
    padding: 1rem;
    text-align: center;
  }
  @media screen and (max-width: 1024px) {
    .campaign__banner__item__top .banner-point {
      padding: 1rem;
    }
  }
  @media screen and (max-width: 834px) {
    .campaign__banner__item__top .banner-point {
      height: auto;
      padding: 0.5rem 2rem;
      width: 100%;
    }
  }
  .campaign__banner__item__top .banner-point p {
    display: flex;
    align-items: flex-end;
    font-size: 1rem;
    line-height: 1;
  }
  .campaign__banner__item__top .banner-point .bg-italic {
    font-size: 150%;
  }
  .campaign__banner__item__top .banner-title-text {
    font-size: 1rem;
    font-weight: bold;
  }
  @media screen and (max-width: 1024px) {
    .campaign__banner__item__top .banner-title-text {
      /* font-size: 1.3rem; */
    }
  }
  @media screen and (max-width: 834px) {
    .campaign__banner__item__top .banner-title-text {
      font-size: 0.9rem;
    }
  }

  .campaign__banner__item .banner-privilege {
    width: 100%;
  }
  .campaign__banner__item .banner-privilege__list {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 1.5rem;
    width: 100%;
    margin-bottom: 0.5rem;
  }
  @media screen and (max-width: 1024px) {
    .campaign__banner__item .banner-privilege__list {
      gap: 1rem;
    }
  }
  @media screen and (max-width: 834px) {
    .campaign__banner__item .banner-privilege__list {
      gap: 0.4rem;
    }
  }
  .campaign__banner__item .banner-privilege__wrap {
    display: flex;
    gap: 1rem;
  }
  @media screen and (max-width: 834px) {
    .campaign__banner__item .banner-privilege__wrap {
      gap: 0.6rem;
    }
  }

  .campaign__banner__item .banner-privilege__cont {
    background-color: #fff;
    border: 2px solid #937fa8;
    border-radius: 0.5rem;
    /* flex: 1 0 auto; */
    padding: 1rem;
    align-items: center;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    width: 100%;
  }
  @media screen and (max-width: 1024px) {
    .campaign__banner__item .banner-privilege__cont {
      padding: 1rem;
    }
  }
  @media screen and (max-width: 834px) {
    .campaign__banner__item .banner-privilege__cont {
      flex-direction: column;
      padding: 1rem 0.4rem;
    }
  }
  @media screen and (max-width: 430px) {
    .campaign__banner__item .banner-privilege__cont {
      padding: 0.5rem;
    }
  }
  .campaign__banner__item .banner-privilege__cont__title {
    color: #fff;
    background-color: #937fa8;
    font-size: 1rem;
    font-weight: bold;
    height: 2.6rem;
    line-height: 1;
    margin-bottom: 1rem;
    padding: 0.5rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
  }
  .campaign__banner__item .banner-privilege__cont__title::before {
    content: "";
    position: absolute;
    top: 0;
    width: 0.6rem;
    height: 100%;
    border-color: #937fa8 transparent;
    border-style: solid;
    left: -0.5rem;
    border-width: 1.3rem 0px 1.3rem 0.5rem;
  }
  .campaign__banner__item .banner-privilege__cont__title::after {
    content: "";
    position: absolute;
    top: 0;
    width: 0.6rem;
    height: 100%;
    border-color: #937fa8 transparent;
    border-style: solid;
    right: -0.5rem;
    border-width: 1.3rem 0.5rem 1.3rem 0px;
  }
  @media screen and (max-width: 834px) {
    .campaign__banner__item .banner-privilege__cont__title {
      height: 2.2rem;
      margin-bottom: 0.5rem;
      padding: 0.2rem 0.5rem;
    }
    .campaign__banner__item .banner-privilege__cont__title::before {
      border-width: 1.1rem 0px 1.1rem 0.5rem;
    }
    .campaign__banner__item .banner-privilege__cont__title::after {
      border-width: 1.1rem 0.5rem 1.1rem 0px;
    }
  }
  .campaign__banner__item .banner-privilege__cont__detail {
    align-items: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
  }
  /* @media screen and (max-width: 600px) {
	.campaign__banner__item .banner-privilege__cont__detail {
	}
	} */
  .campaign__banner__item .banner-privilege__cont__detail__text {
    font-size: 1.2rem;
    line-height: 1;
    position: relative;
    text-align: center;
  }
  @media screen and (max-width: 834px) {
    .campaign__banner__item .banner-privilege__cont__detail__text {
      font-size: 0.8rem;
      line-height: 1.2;
    }
  }
  .campaign__banner__item .banner-privilege__cont__detail__text::after {
    content: "";
    display: inline-block;
    border-style: solid;
    border-width: 1.2rem 0.7rem 0 0.7rem;
    border-color: #e6698f transparent transparent transparent;
    position: absolute;
    left: 50%;
    bottom: -1.8rem;
    transform: translate(-50%);
  }
  /* .campaign__banner__item .banner-privilege__cont:last-child .banner-privilege__cont__detail__text::after {
	display: none;
	} */

  .campaign__banner__item .banner-privilege__cont__detail__discount {
    color: #e6698f;
    font-size: 1.6rem;
  }
  @media screen and (max-width: 1024px) {
    .campaign__banner__item .banner-privilege__cont__detail__discount {
      font-size: 1.2rem;
    }
  }
  @media screen and (max-width: 834px) {
    .campaign__banner__item
      .banner-privilege__cont__detail__discount.c-font--small {
      font-size: 1rem;
    }
    .campaign__banner__item
      .banner-privilege__cont__detail__discount.c-font--small
      .bg-italic {
      font-size: 200%;
    }
  }
  .campaign__banner__item .point03 .banner-privilege__cont__detail {
    flex-direction: row;
    gap: 0.5rem;
  }
  .campaign__banner__item .point03 .banner-privilege__cont__detail .arrow {
    display: inline-block;
    border-style: solid;
    border-width: 0.7rem 0 0.7rem 1.2rem;
    border-color: transparent transparent transparent #e6698f;
  }
  .campaign__banner__item
    .point03
    .banner-privilege__cont__detail__text::after {
    display: none;
  }
  .campaign__banner__item .banner-privilege__add-point {
    color: #e6698f;
    font-size: 1.2rem;
    font-weight: bold;
  }

  .campaign__banner__item .banner-privilege__desc {
    color: #937fa8;
    font-size: 0.8rem;
    line-height: 1.2;
  }
  .campaign__application {
    background: #fff;
    border-radius: 1rem;
    box-shadow: 0px 0px 1.5rem 0px rgba(147, 127, 168, 0.5);
    align-items: center;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding: 2rem 4rem;
  }
  @media screen and (max-width: 834px) {
    .campaign__application {
      padding: 2rem;
    }
  }
  @media screen and (max-width: 600px) {
    .campaign__application {
      padding: 2rem 1.2rem;
      gap: 1.5rem;
    }
  }
  @media screen and (max-width: 376px) {
    .campaign__application {
      padding: 1rem 1rem;
    }
  }
  .campaign__application__headline {
  }
  .campaign__application__title {
    color: #937fa8;
    font-size: 2rem;
    line-height: 1.2;
  }
  @media screen and (max-width: 834px) {
    .campaign__application__title {
      font-size: 1.4rem;
      line-height: 1;
    }
    .campaign__application__title span {
      font-size: 70%;
    }
  }

  .campaign__application__desc {
    color: #937fa8;
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 1rem;
  }
  @media screen and (max-width: 600px) {
    .campaign__application__desc {
      font-size: 1rem;
    }
  }
  .campaign__application__img {
    border-radius: 1rem;
    width: 100%;
    height: auto;
  }
  .campaign__application .application-info__btn__inner {
    width: 100%;
  }

  .application-info {
    width: 100%;
  }
  .application-info__text {
    color: #e6698f;
    font-size: 1.4rem;
    font-weight: bold;
    line-height: 1.2;
    margin-bottom: 1rem;
  }
  .arrow-right {
    display: inline-block;
    border-style: solid;
    border-width: 0.5rem 0 0.5rem 0.9rem;
    border-color: transparent transparent transparent #e6698f;
    margin: 0 0.5rem;
  }
  @media screen and (max-width: 834px) {
    .application-info__text {
      font-size: 1.2rem;
    }
    .application-info__text .bg-italic {
      font-size: 200%;
    }
  }
  @media screen and (max-width: 600px) {
    .application-info__text {
      font-size: 1rem;
    }
  }
  .application-info__btn {
    display: flex;
    justify-content: center;
    width: 100%;
    position: relative;
  }
  .application-info__btn__inner {
    background-image: linear-gradient(90deg, #937fa8 0.12%, #dab7f2 100%);
    border-radius: 100vh;
    box-shadow: 0px 4px 4px 0px rgba(147, 127, 168, 0.25);
    color: #fff;
    font-family: "Noto Serif JP", serif;
    padding: 1rem;
    vertical-align: middle;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
    width: 100%;
  }
  @media screen and (max-width: 834px) {
    .application-info__btn__inner {
      padding: 2.398vw;
    }
  }
  /* @media screen and (max-width: 430px) {
	.application-info__btn__inner {
		padding: 1rem 1.6rem;
	}
	} */
  .application-info__btn__inner:hover {
    background: linear-gradient(90deg, #99c7d0 0%, #bdd8dd 100%);
  }
  .application-info__btn__inner span {
    font-size: 2rem;
    font-weight: bold;
    line-height: 1.3;
    letter-spacing: 0.1em;
  }
  @media screen and (max-width: 834px) {
    .application-info__btn__inner span {
      font-size: 24px;
    }
  }
  @media screen and (max-width: 600px) {
    .application-info__btn__inner span {
      font-size: max(4vw, 14px);
    }
  }
  .application-info__btn__inner::after {
    content: "";
    width: 2rem;
    aspect-ratio: 1/1;
    background: url(../images/exercise/arrow-right.svg) no-repeat #fff;
    background-color: transparent;
    background-position: right 0px top 50%;
    display: inline-block;
    font-size: 2rem;
    line-height: 1;
    position: absolute;
    right: 5rem;
  }
  @media screen and (max-width: 600px) {
    .application-info__btn__inner::after {
      width: max(5vw, 18px);
      height: max(5vw, 18px);
      right: 8.333vw;
    }
  }
  .application-info .contact__line-btn {
    margin-bottom: 1rem;
  }
  .application-info .contact__line-btn__inner {
    width: 100%;
  }

  /* お悩みありませんか */
  .worries {
    background-color: #f7f7f7;
    text-align: center;
  }
  .worries__img {
    box-shadow: 0px 0px 1.5rem 0px rgba(147, 127, 168, 0.5);
    width: 100%;
    height: auto;
  }

  /* toYou */
  .toYou {
    background-color: #eeecf4;
    text-align: center;
  }
  .toYou__wrap {
    margin-bottom: 2rem;
    text-align: center;
  }
  .toYou__sub-title {
    color: #fff;
    background-color: #937fa8;
    font-size: 1.8rem;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 1rem;
    padding: 0.8rem 2rem;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    position: relative;
  }
  @media screen and (max-width: 834px) {
    .toYou__sub-title {
      font-size: 1.4rem;
    }
  }
  @media screen and (max-width: 600px) {
    .toYou__sub-title {
      font-size: 1.2rem;
      padding: 0.5rem 1rem;
    }
  }
  .toYou__sub-title::after {
    content: "";
    border-color: #937fa8 transparent transparent transparent;
    border-style: solid;
    border-width: 1rem 1rem 0 1rem;
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1rem;
    width: 0px;
    height: 0px;
    margin: auto;
  }
  @media screen and (max-width: 600px) {
    .toYou__sub-title::after {
      bottom: -0.9rem;
    }
  }
  .toYou__title {
    color: #937fa8;
    font-family: "Noto Serif JP", serif;
    font-size: 1.8rem;
    font-weight: bold;
    line-height: 1.5;
    margin-bottom: 2rem;
  }
  .toYou__title span {
    font-size: 120%;
    -webkit-text-decoration-line: underline;
    text-decoration-line: underline;
  }
  @media screen and (max-width: 834px) {
    .toYou__title {
      font-size: 1.2rem;
      letter-spacing: -0.1em;
    }
  }
  @media screen and (max-width: 834px) {
    .toYou__title {
      font-size: 1.2rem;
    }
    .toYou__title span {
      font-size: 100%;
    }
  }
  .toYou__img {
    border-radius: 1rem;
    box-shadow: 0px 0px 30px 0px rgba(147, 127, 168, 0.5);
    margin-bottom: 2rem;
    width: 85%;
    height: auto;
  }
  .toYou__info {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
  }
  @media screen and (max-width: 600px) {
    .toYou__info--left {
      margin: auto;
      width: 85%;
      text-align: left;
    }
  }
  .toYou__point {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    -moz-column-gap: 2rem;
    column-gap: 2rem;
    row-gap: 1rem;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 2rem;
    width: 80%;
  }
  @media screen and (max-width: 1280px) {
    .toYou__point {
      -moz-column-gap: 1rem;
      column-gap: 1rem;
      row-gap: 0.5rem;
      width: 90%;
    }
  }
  @media screen and (max-width: 834px) {
    .toYou__point {
      -moz-column-gap: 1rem;
      column-gap: 1rem;
      row-gap: 0.5rem;
      width: 80%;
    }
  }
  @media screen and (max-width: 600px) {
    .toYou__point {
      -moz-column-gap: 1rem;
      column-gap: 1rem;
      row-gap: 0.5rem;
      width: 100%;
    }
  }
  .toYou__point__item {
    background: url(../images/exercise/toYou-point_back.webp) top left/13rem
      13rem no-repeat;
    background-color: transparent;
    width: 13rem;
    height: 13rem;
    position: relative;
  }
  .toYou__point__item:first-child .toYou__point__item__text {
    line-height: 1;
  }
  @media screen and (max-width: 834px) {
    .toYou__point__item {
      background-size: 8rem 8rem;
      width: 8rem;
      height: 8rem;
    }
  }
  @media screen and (max-width: 600px) {
    .toYou__point__item {
      background-size: 8rem 8rem;
      width: 8rem;
      height: 8rem;
    }
  }
  .toYou__point__item__text {
    color: #937fa8;
    font-family: "Noto Serif JP", serif;
    font-size: 1.2rem;
    font-weight: bold;
    line-height: 1.5;
    width: 100%;
    height: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  @media screen and (max-width: 1024px) {
    .toYou__point__item__text {
      font-size: 1rem;
    }
  }
  @media screen and (max-width: 600px) {
    .toYou__point__item__text {
      font-size: 0.8rem;
    }
  }

  /* 選ばれる5つの理由 */
  .strength {
    background-color: #f7f7f7;
    text-align: center;
  }
  .strength__title {
    background-color: transparent;
  }
  .strength__title .triangle-bottom {
    background: #f7f7f7;
    display: block;
    width: 100%;
    height: 7.5rem;
    padding-bottom: 2.5rem;
    position: relative;
  }
  .strength__title .triangle-bottom::after {
    content: "";
    background: linear-gradient(180deg, #937fa8 0%, #dab7f2 100%);
    -webkit-clip-path: polygon(0 0, 50% 100%, 100% 0);
    clip-path: polygon(0 0, 50% 100%, 100% 0);
    display: block;
    height: 5rem;
    width: 100%;
    position: absolute;
    top: -0.05vw;
  }
  @media screen and (max-width: 834px) {
    .strength__title .triangle-bottom::after {
      height: 3rem;
      top: -0.2vw;
    }
  }
  @media screen and (max-width: 600px) {
    .strength__title .triangle-bottom::after {
      top: -0.3vw;
    }
  }
  @media screen and (max-width: 834px) {
    .strength__title .triangle-bottom {
      height: 5rem;
    }
  }
  .strength__sec-title {
    color: #fff;
    background: #937fa8;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 0;
    padding-top: 5rem;
    position: relative;
    letter-spacing: .1em;
  }
  @media screen and (max-width: 600px) {
    .strength__sec-title {
      padding-top: 3rem;
    }
  }
  @media screen and (max-width: 430px) {
    .strength__sec-title {
      font-size: 1.2rem;
    }
  }
  .strength__sec-title .strength-bg {
    font-size: 200%;
    font-family: Playfair Display;
    font-family: "Noto Serif JP", serif;
    font-feature-settings: "calt" off;
    font-style: italic;
    line-height: 1;
    letter-spacing: 0.1em;
  }
  .strength__list {
    text-align: center;
  }
  .strength__list__item {
    padding-bottom: 10rem;
    position: relative;
    overflow: hidden;
    /* h3 */
  }
  .strength__list__item:nth-child(odd) {
    background-color: #f7f7f7;
  }
  .strength__list__item:nth-child(odd)::after {
    border-color: transparent transparent #fff transparent;
  }
  .strength__list__item:nth-child(even) {
    background-color: #fff;
  }
  .strength__list__item:nth-child(even)::after {
    border-color: transparent transparent #f7f7f7 transparent;
  }
  .strength__list__item:last-child::after {
    border-color: transparent transparent #eeecf4 transparent;
  }
  .strength__list__item:nth-of-type(5) .strength__list__item__cont,
  .strength__list__item .strength__list__item__cont.u-column {
    flex-direction: column;
  }
  .strength__list__item:nth-of-type(5) .strength__list__item__cont__img,
  .strength__list__item .strength__list__item__cont__img.swiper-wrapper {
    display: flex;
    justify-content: space-between;
    width: 100%;
  }
  .strength__list__item:nth-of-type(5)
    .strength__list__item__cont__img
    .strength-img,
  .strength__list__item
    .strength__list__item__cont__img.swiper-wrapper
    .strength-img {
    width: 31%;
  }
  @media screen and (max-width: 768px) {
    .strength__list__item:nth-of-type(5) .strength__list__item__cont__img,
    .strength__list__item.strength__list__item__cont__img.swiper-wrapper {
      flex: none;
      scroll-snap-align: start; /*横方向にスクロール、スナップポイント*/
    }
    .strength__list__item:nth-of-type(5)
      .strength__list__item__cont__img
      .strength-img,
    .strength__list__item
      .strength__list__item__cont__img.swiper-wrapper
      .strength-img {
      width: calc(100% - 0.5rem);
      margin-right: 0.5rem;
    }
  }
  .strength__list__item::after {
    content: "";
    border-style: solid;
    border-width: 0 0 5rem 100vw;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 0;
    transform-origin: bottom left;
  }
  @media screen and (max-width: 768px) {
    .strength__list__item::after {
      border-width: 0 0 3rem 100vw;
    }
  }
  @media screen and (max-width: 834px) {
    .strength__list__item {
      padding-bottom: 6rem;
    }
  }
  .strength__list__item__point {
    width: 6rem;
    height: 6rem;
    margin-bottom: 2rem;
  }
  @media screen and (max-width: 600px) {
    .strength__list__item__point {
      width: 5rem;
      height: 5rem;
      margin-bottom: 1rem;
    }
  }
  .strength__list__item__headline {
    background-color: #eadef0;
    color: #937fa8;
    font-size: 1.8rem;
    font-family: "Noto Serif JP", serif;
    font-weight: bold;
    line-height: 1.5;
    margin-bottom: 2rem;
    padding: 1rem;
    text-align: center;
    width: 100%;
    letter-spacing: .1em;
  }
  @media screen and (max-width: 834px) {
    .strength__list__item__headline {
      font-size: 1.4rem;
    }
  }
  @media screen and (max-width: 600px) {
    .strength__list__item__headline {
      font-size: 1.2rem;
      margin-bottom: 1rem;
    }
  }
  @media screen and (max-width: 430px) {
    .strength__list__item__headline {
      font-size: 1rem;
      margin-bottom: 1rem;
    }
  }
  .strength__list__item__cont {
    display: flex;
    gap: 2rem;
  }
  @media screen and (max-width: 834px) {
    .strength__list__item__cont {
      flex-direction: column;
    }
  }
  .strength__list__item__cont__img {
    width: 100%;
    height: auto;
  }
  .strength__list__item__cont__img .strength-img {
    box-shadow: 0.5rem 0.5rem 0px 0px rgba(230, 197, 207, 0.8);
  }
  @media screen and (max-width: 834px) {
    .strength__list__item__cont__img .strength-img {
      width: calc(100% - 0.5rem);
      margin-right: 0.5rem;
    }
  }
  .strength__list__item__cont__desc {
    font-size: 1rem;
    line-height: 1.8;
    text-align: start;
  }
  .strength__list__item__cont__desc p {
    padding-bottom: 1rem;
  }
  .strength__list__item__cont__desc p:last-child {
    padding-bottom: 0;
  }

  /* machine */
  .machine {
    background-color: #eeecf4;
  }
  .machine .sec-title span {
    font-size: 120%;
    border-bottom: 2px solid;
    padding-top: 1em;
    display: inline-block;
  }
  .machine .sec-title {
    margin-bottom: 2em;
  }
  .application2 {
    background-color: #ddf5f3;
    text-align: center;
    padding-bottom: 5rem;
  }
  @media screen and (max-width: 600px) {
    .application2 {
      padding-bottom: 3rem;
    }
  }
  .application2 .sec-title {
    padding-top: 2rem;
  }
  .application2__headline {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 3rem;
    position: relative;
  }
  @media screen and (max-width: 600px) {
    .application2__headline {
      flex-direction: column;
    }
  }
  .application2__headline__message {
    background: rgba(234, 222, 240, 0.6);
    border-radius: 0.5rem;
    color: #937fa8;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 1.2rem;
    font-weight: bold;
    line-height: 1.8;
    margin-top: 3rem;
    padding: 1rem;
    text-align: left;
    position: absolute;
    top: 0;
    left: 0;
  }
  @media screen and (max-width: 600px) {
    .application2__headline__message {
      border-radius: 1rem;
      font-size: 1rem;
      margin-top: 0;
      position: initial; /* position: absolute;打消し */
      margin-bottom: 1rem;
      text-align: center;
    }
  }
  @media screen and (max-width: 430px) {
    .application2__headline__message {
      font-size: 1rem;
      padding: 0.5rem;
    }
  }
  .application2__headline__img {
    border-radius: 1rem;
    box-shadow: 0px 0px 1.5rem 0px rgba(147, 127, 168, 0.5);
    width: 75%;
    height: auto;
  }
  @media screen and (max-width: 600px) {
    .application2__headline__img {
      width: 100%;
    }
  }
  .application2__message {
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 2rem;
  }

  .comparison {
    background-color: #f3f7f8;
  }
  .comparison__title-prima {
    font-size: 1.6rem;
    position: relative;
  }
  .comparison__title-prima::before {
    content: " ";
    height: 4.5rem;
    width: 4.5rem;
    background: url(../images/exercise/crown.svg);
    background-size: contain;
    background-repeat: no-repeat;
    flex-shrink: 0;
    position: absolute;
    top: -5rem;
    left: calc(50% - 2rem);
  }
  .comparison__title {
    font-size: 1.2rem;
  }
  @media screen and (max-width: 600px) {
    .comparison__title {
      font-size: 1.4rem;
    }
  }
  .comparison__list-prima {
    background: rgb(225, 225, 236);
    background: linear-gradient(
      224deg,
      rgb(225, 225, 236) 0%,
      rgb(226, 229, 239) 49%,
      rgb(236, 245, 247) 100%
    );
    background-size: cover;
    background-repeat: no-repeat;
    border-radius: 0.5rem;
    box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.3);
    box-sizing: border-box;
    flex-grow: 1;
    margin-bottom: 3rem;
    padding: 2rem 1rem 2rem 1rem;
    text-align: center;
    width: 30%;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
  @media screen and (max-width: 768px) {
    .comparison__list-prima {
      margin-top: 0;
      margin-left: 1rem;
      margin-right: 1rem;
      margin-bottom: 0;
      width: calc(100% - 2rem);
    }
  }
  .comparison__list-prima__item {
    align-items: center;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
  .comparison__list-prima__item .comp-title-prima {
    color: #fff;
    background-color: #937fa8;
    border-radius: 100vh;
    font-size: 1rem;
    font-weight: bold;
    padding: 0.5rem;
    width: 10rem;
    position: relative;
  }
  .comparison__list-prima__item .comp-title-prima::before {
    content: " ";
    background: url(../images/exercise/check_white.svg);
    background-size: contain;
    background-repeat: no-repeat;
    flex-shrink: 0;
    width: 1rem;
    height: 1rem;
    position: absolute;
    top: calc(50% - 0.5rem);
    left: 10%;
  }
  .comparison__list-prima__item .comp-text {
    font-size: 1rem;
  }
  .comparison__list {
    background-color: #fff;
    border-radius: 0.6rem;
    box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.3);
    box-sizing: border-box;
    height: 100%;
    margin-top: 2.6rem;
    padding: 2rem 1rem 2rem 1rem;
    text-align: center;
    width: 30%;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
  @media screen and (max-width: 768px) {
    .comparison__list {
      margin-top: 0;
      margin-left: 1rem;
      margin-right: 1rem;
      margin-bottom: 0;
      width: calc(100% - 2rem);
    }
  }
  .comparison__list__item {
    align-items: center;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
  .comparison__list__item .comp-title-blue {
    background-color: #ebf3f5;
    border-radius: 100vh;
    font-size: 0.8rem;
    font-weight: bold;
    padding: 0.4rem;
    width: 8rem;
    position: relative;
  }
  .comparison__list__item .comp-title-blue::before {
    content: " ";
    background: url(../images/exercise/check_blue.svg);
    background-size: contain;
    background-repeat: no-repeat;
    flex-shrink: 0;
    width: 0.8rem;
    height: 0.8rem;
    position: absolute;
    top: calc(50% - 0.5rem);
    left: 10%;
  }
  @media screen and (max-width: 600px) {
    .comparison__list__item .comp-title-blue::before {
      width: 1rem;
      height: 1rem;
    }
  }
  @media screen and (max-width: 600px) {
    .comparison__list__item .comp-title-blue {
      padding: 0.5rem;
    }
  }
  .comparison__list__item .comp-title-pink {
    background-color: #f7eef1;
    border-radius: 100vh;
    font-size: 0.8rem;
    font-weight: bold;
    padding: 0.4rem;
    width: 8rem;
    position: relative;
  }
  .comparison__list__item .comp-title-pink::before {
    content: " ";
    background: url(../images/exercise/check_pink.svg);
    background-size: contain;
    background-repeat: no-repeat;
    flex-shrink: 0;
    width: 0.8rem;
    height: 0.8rem;
    position: absolute;
    top: calc(50% - 0.5rem);
    left: 10%;
  }
  @media screen and (max-width: 600px) {
    .comparison__list__item .comp-title-pink::before {
      width: 1rem;
      height: 1rem;
    }
  }
  @media screen and (max-width: 600px) {
    .comparison__list__item .comp-title-pink {
      padding: 0.5rem;
    }
  }
  .comparison__list__item .comp-text {
    font-size: 0.8rem;
  }
  @media screen and (max-width: 600px) {
    .comparison__list__item .comp-text {
      font-size: 1rem;
    }
  }

  /* メディア掲載情報 */
  .media {
    text-align: center;
  }
  .media__img {
    width: 100%;
    height: auto;
  }

  /* about */
  .about {
    background-color: #eeecf4;
    text-align: center;
  }
  .about .representative {
    background: #fff;
    border-radius: 0.5rem;
    box-shadow: 0px 0px 1rem 0px rgba(147, 127, 168, 0.5);
    margin-bottom: 5rem;
    padding: 2rem;
    align-items: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1rem;
  }
  @media screen and (max-width: 600px) {
    .about .representative {
      margin-bottom: 3rem;
      padding: 1rem;
    }
  }
  .about .representative__headline {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  @media screen and (max-width: 600px) {
    .about .representative__headline {
      gap: 0.5rem;
    }
  }
  .about .representative__headline__img {
    width: 10rem;
    height: 10rem;
    border-radius: 100vh;
    overflow: hidden;
  }
  .about .representative__headline__name {
    color: #333;
    font-size: 1.2rem;
    font-style: normal;
    font-weight: bold;
    line-height: 1.2;
  }
  .about .representative__intro {
    border-radius: 0.5rem;
    background: #f7f8f8;
    margin-bottom: 15px;
    padding: 2rem 2rem;
    text-align: left;
    width: 100%;
    align-items: flex-start;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1rem;
  }
  @media screen and (max-width: 600px) {
    .about .representative__intro {
      padding: 2rem 1rem;
    }
  }
  .about .representative__intro__item {
    width: 100%;
  }
  .about .representative__intro__item .representative__title {
    margin-bottom: 0.5rem;
  }
  .about .representative__intro__item ul {
    text-align: center;
  }
  .about .representative__title {
    color: #a7bfc4;
    font-size: 1.2rem;
    font-weight: bold;
    line-height: 1.5;
    text-align: center;
    width: 100%;
  }
  .about .representative__desc {
    font-size: 1rem;
    line-height: 1.8;
    padding-bottom: 1rem;
  }
  .about .teacher {
    display: flex;
    gap: 2rem;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
  }
  @media screen and (max-width: 768px) {
    .about .teacher {
      flex-direction: initial;
      gap: initial;
      flex: none;
      scroll-snap-align: start;
    }
  }
  .about .teacher__item {
    background: #fff;
    border-radius: 0.5rem;
    box-shadow: 0px 0px 1rem 0px rgba(147, 127, 168, 0.5);
    padding: 2rem;
    width: 100%;
    margin-right: 1rem;
    box-sizing: border-box;
    align-items: center;
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  @media screen and (max-width: 600px) {
    .about .teacher__item {
      padding: 1rem;
      width: 100%;
    }
  }
  .about .teacher__item__headline {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  .about .teacher__item__headline__img {
    width: 10rem;
    height: 10rem;
    border-radius: 100vh;
    overflow: hidden;
  }
  .about .teacher__item__headline__name {
    color: #333;
    font-size: 1.2rem;
    font-style: normal;
    font-weight: bold;
    line-height: 1.2;
  }
  .about .teacher__item__headline__name .teacher_position {
    line-height: 2;
    font-size: 0.9em;
    color: #937fa8;
  }
  .about .teacher__item__info {
    font-size: 1rem;
    line-height: 1.8;
  }
  .about .teacher__item__desc {
    font-size: 1rem;
    line-height: 1.8;
    text-align: left;
  }
  .about .teacher__item__msg {
    background: rgba(230, 197, 207, 0.5);
    border-radius: 0.5rem;
    padding: 20px;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    width: 100%;
  }
  .about .teacher__item__msg__title {
    color: #cf98a8;
    font-size: 1rem;
    font-weight: bold;
    line-height: 1.5;
  }
  .about .teacher__item__msg__desc {
    font-size: 1rem;
    line-height: 1.8;
  }

  /* お客さまの声 */
  .voice {
    background-color: #f7f7f7;
    text-align: center;
  }
  .voice__list__cont {
    background: #fff;
    box-shadow: 0px 0px 1.5rem 0px rgba(147, 127, 168, 0.5);
    margin-bottom: 2rem;
    padding: 2rem;
    align-items: flex-start;
    display: flex;
    flex-direction: column;
  }
  .voice__list__cont:last-child {
    margin-bottom: 0;
  }
  @media screen and (max-width: 600px) {
    .voice__list__cont {
      box-shadow: 0px 0px 1rem 0px rgba(147, 127, 168, 0.5);
      padding: 1rem;
    }
  }
  .voice__list__cont__headline {
    color: #937fa8;
    background: #eeecf4;
    border-bottom: 3px solid #937fa8;
    font-size: 1.6rem;
    font-weight: bold;
    line-height: 1.5;
    margin-bottom: 2rem;
    padding: 1rem;
    text-align: left;
    width: 100%;
  }
  @media screen and (max-width: 600px) {
    .voice__list__cont__headline {
      font-size: 1.2rem;
    }
  }
  .voice__list__cont__headline .headline-sub {
    color: #333;
    font-size: 1.2rem;
    line-height: 1.5;
  }
  @media screen and (max-width: 600px) {
    .voice__list__cont__headline .headline-sub {
      font-size: 1rem;
    }
  }
  .voice__list__cont__item {
    display: flex;
    align-items: flex-start;
    flex-direction: row-reverse;
    gap: 2rem;
  }
  @media screen and (max-width: 600px) {
    .voice__list__cont__item {
      align-items: center;
      flex-direction: column;
      gap: 1rem;
    }
  }
  .voice__list__cont__item__desc {
    display: flex;
    flex-direction: column;
    gap: 5px;
    flex: 1 0 0;
  }
  .voice__list__cont__item__img {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
  }
  .voice__list__cont__item__img .voice-img {
    width: 12.5rem;
    height: 12.5rem;
    border-radius: 100vh;
  }
  @media screen and (max-width: 600px) {
    .voice__list__cont__item__img .voice-img {
      width: 8rem;
      height: 8rem;
    }
  }
  .voice__list__cont__item2__img {
    display: flex;
    gap: 2rem;
    margin-bottom: 1rem;
  }
  @media screen and (max-width: 600px) {
    .voice__list__cont__item2__img {
      flex-direction: column;
      margin-left: auto;
      margin-right: auto;
      margin-bottom: 0.5rem;
      width: 80%;
    }
  }
  .voice__list__cont__item2__img .voice-img-comp {
    padding: 1rem;
    text-align: center;
  }
  .voice__list__cont__item2__img .voice-img-comp__tag1 {
    font-size: 0.8rem;
    line-height: 1.5;
    margin-bottom: 0.3rem;
  }
  .voice__list__cont__item2__img .voice-img-comp__tag2 {
    font-size: 1rem;
    font-weight: bold;
    line-height: 1.5;
    margin-bottom: 0.5rem;
  }
  .voice__list__cont__item2__img .voice-before {
    background: #eadef0;
  }
  .voice__list__cont__item2__img .voice-before .voice-img-comp__tag1 {
    color: #333;
  }
  .voice__list__cont__item2__img .voice-before .voice-img-comp__tag2 {
    color: #333;
  }
  .voice__list__cont__item2__img .voice-after {
    background: #937fa8;
  }
  .voice__list__cont__item2__img .voice-after .voice-img-comp__tag1 {
    color: #fff;
  }
  .voice__list__cont__item2__img .voice-after .voice-img-comp__tag2 {
    color: #fff000;
  }
  .voice__list__cont__item2__img .voice-name {
    text-align: center;
    font-size: 0.8rem;
    line-height: 1.5;
  }
  .voice__list__cont__item2 .voice-name {
    margin-bottom: 1rem;
  }
  .voice .voice-text {
    font-size: 1rem;
    line-height: 1.8;
    text-align: left;
  }
  .voice .voice-notes {
    font-size: 0.8rem;
    line-height: 1.5rem;
    text-align: right;
  }
  .voice .voice-name {
    text-align: center;
    font-size: 0.8rem;
    line-height: 1.5;
  }

  /* 初回体験の流れ */
  .flow {
    background-color: #eeecf4;
    text-align: center;
  }
  .flow__item {
    background-color: #fff;
    border: 1px solid #937fa8;
    box-shadow: 0px 5px 5px 0px rgba(147, 127, 168, 0.5);
    margin-bottom: 3rem;
    display: flex;
    flex-direction: column;
    position: relative;
    /* 三角マーク */
    /* 最後のliにはbeforeなし */
  }
  .flow__item__title {
    color: #333;
    font-size: 1.6rem;
    font-weight: bold;
    line-height: 1.2;
    padding: 1rem;
    text-align: left;
  }
  @media screen and (max-width: 600px) {
    .flow__item__title {
      font-size: 1.2rem;
      padding: 0.5rem 1rem;
    }
  }
  .flow__item__title .flow-num {
    color: #937fa8;
    padding-right: 1rem;
  }
  .flow__item__img {
    width: 100%;
    height: auto;
  }
  .flow__item__desc {
    font-size: 1rem;
    line-height: 1.8;
    text-align: left;
    padding: 1rem;
  }
  @media screen and (max-width: 600px) {
    .flow__item__desc {
      padding: 0.5rem 1rem;
    }
  }
  .flow__item::before {
    content: "";
    border-color: #937fa8 transparent transparent transparent;
    border-style: solid;
    border-width: 1rem 1rem 0 1rem;
    width: 0px;
    height: 0px;
    margin: 1rem auto;
    position: absolute;
    left: 0;
    right: 0;
    bottom: -3rem;
  }
  .flow__item:last-child {
    margin-bottom: 0;
  }
  .flow__item:last-child::before {
    content: "";
    border-style: none;
    position: initial;
    margin: 0;
  }

  /* 安心の2つのサポート */
  .support {
    text-align: center;
  }
  .support__desc {
    font-size: 1.2rem;
    line-height: 1.2; /* 120% */
    margin-bottom: 1rem;
  }
  @media screen and (max-width: 430px) {
    .support__desc {
      font-size: 1rem;
    }
  }

  .support__list {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
  }
  @media screen and (max-width: 600px) {
    .support__list {
      flex-direction: column;
      gap: 1rem;
    }
  }
  .support__list__item {
    background: rgba(230, 197, 207, 0.5);
    border-radius: 1rem;
    box-shadow: 0px 5px 5px 0px rgba(207, 152, 168, 0.5);
    flex: 1;
    padding: 2rem;
  }
  @media screen and (max-width: 600px) {
    .support__list__item {
      padding: 1rem;
    }
  }
  .support__list__item__title {
    color: #cf98a8;
    font-size: 1.2rem;
    font-weight: bold;
    padding-bottom: 1rem;
  }
  @media screen and (max-width: 600px) {
    .support__list__item__title {
      padding-bottom: 0.5rem;
    }
  }
  .support__list__item__desc {
    font-size: 1rem;
    line-height: 1.8;
    text-align: left;
  }

  .method {
    background-color: #eeecf4;
    text-align: center;
  }
  .method__headline {
    font-family: "Noto Serif JP", serif;
    font-size: 1.4rem;
    font-weight: bold;
    line-height: 1.2;
    margin-bottom: 1rem;
  }
  .method__list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  .method__list__item {
    background-color: #fff;
    border-radius: 100vh;
    box-shadow: 5px 5px 5px 0px rgba(147, 127, 168, 0.5);
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    width: 100%;
    height: auto;
  }
  @media screen and (max-width: 600px) {
    .method__list__item {
      border-radius: 2rem;
      flex-direction: column;
      gap: 0.5rem;
    }
  }
  .method__list__item__headline {
    background-color: #937fa8;
    border-radius: 100vh;
    color: #fff;
    font-family: "Noto Serif JP", serif;
    font-weight: bold;
    line-height: 1;
    height: 6rem;
    width: 6rem;
    padding: 1rem;
    aspect-ratio: 1/1;
    align-items: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  @media screen and (max-width: 600px) {
    .method__list__item__headline {
      height: 4.5rem;
      width: 4.5rem;
    }
  }
  .method__list__item__headline__step {
    font-size: 1.2rem;
  }
  @media screen and (max-width: 600px) {
    .method__list__item__headline__step {
      font-size: 1rem;
    }
  }
  .method__list__item__headline__num {
    font-size: 1.8rem;
    padding-top: 0.2rem;
  }
  @media screen and (max-width: 600px) {
    .method__list__item__headline__num {
      font-size: 1.4rem;
    }
  }
  .method__list__item__message {
    width: 100%;
    align-items: center;
    display: flex;
    justify-content: center;
    flex-direction: column;
  }
  .method__list__item__message__title {
    font-size: 1.2rem;
    font-weight: bold;
    padding-bottom: 1rem;
  }
  @media screen and (max-width: 600px) {
    .method__list__item__message__title {
      padding-bottom: 0.4rem;
    }
  }
  .method__list__item__message__desc {
    font-size: 1rem;
  }

  /* 料金プラン */
  .prices {
    text-align: center;
  }
  .prices .p-cta-trial__container {
    max-width: 100%;
  }
  .prices__desc {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
  }
  .prices__headline {
    color: #e6698f;
    font-size: 1.2rem;
    font-weight: bold;
    line-height: 1.5;
    margin-bottom: 2rem;
    margin-block-start: 2rem;
  }
  @media screen and (max-width: 600px) {
    .prices__headline {
      font-size: 1rem;
      line-height: 2;
    }
  }
  .prices__admission {
    border: 2px solid #cf98a8;
    border-radius: 0.5rem;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
  }
  .prices__admission__headline {
    background-color: #cf98a8;
    color: #fff;
    font-size: 1.3rem;
    font-weight: bold;
    padding: 1rem;
    width: 8.4rem;
    align-items: center;
    align-self: stretch;
    display: flex;
    justify-content: center;
  }
  @media screen and (max-width: 600px) {
    .prices__admission__headline {
      font-size: 1.1rem;
      width: 5rem;
      padding: 0;
    }
  }
  .prices__admission__desc {
    background: #fcf9fa;
    border-radius: 0 0.5rem 0.5rem 0;
    font-weight: bold;
    line-height: 1;
    padding: 1rem 2rem;
    display: flex;
    flex-direction: column;
    width: calc(100% - 14rem);
  }
  @media screen and (max-width: 600px) {
    .prices__admission__desc {
      width: calc(100% - 5rem);
      padding: 1rem;
    }
  }
  .prices__admission__desc__price {
    padding-bottom: 0.5rem;
  }
  @media screen and (max-width: 600px) {
    .prices__admission__desc__price {
      padding-bottom: 1rem;
    }
  }
  .prices__admission__desc__sub {
    color: #e6698f;
    font-size: 1.2rem;
  }
  @media screen and (max-width: 600px) {
    .prices__admission__desc__sub {
      font-size: 1rem;
    }
  }

  /* 会員特典 */
  .privilege {
    background-color: #eeecf4;
    text-align: center;
  }
  .privilege__list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3rem;
  }
  .privilege__list__item {
    background-color: #f4e6ea;
    border-radius: 1rem;
    box-shadow: 0px 5px 0px 0px rgba(212, 167, 176, 0.5);
    padding: 1.5rem;
    width: 100%;
    display: flex;
    align-items: center;
    gap: 2rem;
  }
  @media screen and (max-width: 600px) {
    .privilege__list__item {
      flex-direction: column;
      gap: 1rem;
      padding: 1rem;
    }
  }
  .privilege__list__item__point {
    aspect-ratio: 1/1;
    width: 6rem;
    height: 6rem;
  }
  @media screen and (max-width: 600px) {
    .privilege__list__item__point {
      width: 4rem;
      height: 4rem;
    }
  }
  .privilege__list__item__desc {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: calc(100% - 8rem);
  }
  @media screen and (max-width: 600px) {
    .privilege__list__item__desc {
      width: 100%;
    }
  }
  .privilege__list__item__desc__title {
    color: #937fa8;
    font-size: 1.2rem;
    font-weight: bold;
    line-height: 1;
    margin-bottom: 1rem;
  }
  .privilege__list__item__desc__text {
    font-size: 1rem;
    line-height: 1.8;
  }
  @media screen and (max-width: 600px) {
    .privilege__list__item__desc__text {
      text-align: left;
    }
  }

  /* よくあるご質問 */
  .faq__list {
    display: flex;
    flex-direction: column;
  }
  .faq__list__item {
    margin-bottom: 1rem;
  }
  .faq__list__item__question {
    color: #fff;
    background-color: #937fa8;
    padding: 1rem 1rem 1rem 3rem;
    position: relative;
  }
  .faq__list__item__question .question-toggle {
    display: flex;
    align-items: center;
    gap: 1rem;
  }
  .faq__list__item__question .question-toggle::after {
    content: "+";
    color: #fff;
    font-size: 1.2rem;
    position: absolute;
    right: 1rem;
    transition: transform 0.3s;
  }
  @media screen and (max-width: 600px) {
    .faq__list__item__question .question-toggle::after {
      font-size: 2rem;
      right: 0;
    }
  }
  .faq__list__item__question .question-toggle.opened::after {
    /* ＋をclickしたら回転して－になる */
    content: "−";
    color: #fff;
    transform: rotate(360deg);
  }
  .faq__list__item__question .faq-q {
    font-family: "Amiri", serif;
    font-size: 1.8rem;
    font-weight: bold;
    line-height: 1;
    position: absolute;
    top: calc(55% - 1rem);
    left: 1rem;
  }
  @media screen and (max-width: 600px) {
    .faq__list__item__question .faq-q {
      top: calc(50% - 1rem);
    }
  }
  .faq__list__item__question__title {
    color: #fff;
    font-size: 1rem;
    font-weight: bold;
    line-height: 1.5;
    padding-right: 3rem;
    width: 100%;
    padding-left: 0.5rem;
  }
  .faq__list__item__answer {
    background: #eeecf4;
    color: #333;
    height: 0; /* 初期状態では高さ0 */
    margin: 0;
    overflow: hidden;
    transition: height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    justify-content: center;
    align-items: center;
  }
  .faq__list__item__answer.open {
    height: auto; /* 開いた状態では高さをautoにする */
  }
  .faq__list__item__answer__desc {
    font-size: 1rem;
    line-height: 1.5;
    margin: 0;
    padding: 1rem;
    flex: 1 0 0;
  }

  /* アクセスと営業日 */
  .access {
    background-color: #eeecf4;
    text-align: center;
  }
  .access__headline {
    font-size: 1.2rem;
    font-weight: bold;
    line-height: 1.5;
    margin-bottom: 2rem;
  }
  .access__list {
    margin-top: 2rem;
    width: 100%;
  }
  .access__list__item {
    border-top: 1px solid #937fa8;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
  }
  .access__list__item:last-child {
    border-bottom: 1px solid #937fa8;
  }
  .access__list__item__label {
    font-size: 1rem;
    line-height: 1.2;
    padding: 1rem;
    align-items: center;
    display: flex;
    justify-content: center;
    width: 12rem;
  }
  @media screen and (max-width: 600px) {
    .access__list__item__label {
      padding: 0.5rem 0.2rem;
      width: 25%;
    }
  }
  .access__list__item__detail {
    font-size: 1rem;
    line-height: 1.5;
    padding: 1rem;
    text-align: left;
    width: 75%;
  }

  .google-map {
    aspect-ratio: 5/2;
    width: 100%;
    height: auto;
  }
  @media screen and (max-width: 600px) {
    .google-map {
      aspect-ratio: 5/4;
    }
  }

  /* メッセージ */
  .message {
    background:
      linear-gradient(
        0deg,
        rgba(147, 127, 168, 0.7) 0%,
        rgba(147, 127, 168, 0.7) 100%
      ),
      url(../images/exercise/message-img.webp),
      center/cover no-repeat,
      lightgray;
    /* background-size: auto 100%; */
    background-size: 100% auto;
    background-position: top center;
    color: #fff;
    text-align: center;
  }
  @media screen and (max-width: 1024px) {
    .message {
      background-size: auto 100%;
    }
  }
  .message .sec-title {
    color: #fff;
  }
  .message__wrap {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  .message__headline {
    font-family: "Noto Serif JP", serif;
    font-size: 1.2rem;
    font-weight: bold;
    line-height: 1.5;
  }
  .message__content {
    font-size: 1rem;
    line-height: 1.8;
  }
  @media screen and (max-width: 430px) {
    .message__content {
      font-size: 0.9rem;
    }
  }

  /* 申込み */
  .contact {
    background-color: #f7f7f7;
    text-align: center;
  }
  .contact__headline {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 1rem;
  }
  @media screen and (max-width: 600px) {
    .contact__headline {
      font-size: 1.1rem;
    }
  }
  @media screen and (max-width: 430px) {
    .contact__headline {
      font-size: 1rem;
    }
  }
  .contact__desc {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
  }
  .lp-contact__buttons {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin: 5rem auto;
    align-items: center;
    justify-content: center;
    max-width: 610px;
  }
  @media screen and (max-width: 834px) {
    .lp-contact__buttons {
      margin: 6.995vw auto;
      gap: 4.597vw;
    }
  }
  .contact__line-btn__microcopy {
    position:relative;
    margin-bottom: .4em;
    font-size: 1.6em;
    font-weight: bold;
    color: #0abc34;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: .5em;
    letter-spacing: .1em;
  }
  @media screen and (max-width: 600px) {
    .contact__line-btn__microcopy {
      font-size: 1em;
    }
  }
  .contact__line-btn__microcopy:before,
  .contact__line-btn__microcopy:after {
    content: '';
    width: 2px;
    height: 1em;
    background-color: #0abc34;
  }
  .contact__line-btn__microcopy:before {
    transform: rotate(-30deg);
  }
  .contact__line-btn__microcopy:after {
    transform: rotate(30deg);
  }
  .contact__line-btn {
    width: 100%;
    position: relative;
  }
  .contact__line-btn__inner {
    background-image: linear-gradient(315deg, #00b92c 0%, #66d783 100%);
    border-radius: 100vh;
    box-shadow: 0px 4px 4px 0px rgba(147, 127, 168, 0.25);
    color: #fff;
    cursor: pointer;
    font-family: "Noto Serif JP", serif;
    padding: 1rem;
    vertical-align: middle;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
  }
  @media screen and (max-width: 834px) {
    .contact__line-btn__inner {
      padding: 2.398vw;
    }
  }
  .contact__line-btn__inner:hover {
    background: linear-gradient(90deg, #99c7d0 0%, #bdd8dd 100%);
  }
  .contact__line-btn__inner span {
    font-size: 2rem;
    font-weight: bold;
    line-height: 1.3;
    letter-spacing: 0.1em;
    padding-block: 2rem !important;
  }
  @media screen and (max-width: 834px) {
    .contact__line-btn__inner span {
      font-size: 24px;
    }
  }
  @media screen and (max-width: 600px) {
    .contact__line-btn__inner span {
      font-size: max(5vw, 14px);
    }
  }
  .contact__line-btn__inner::after {
    content: "";
    width: 2rem;
    height: 2rem;
    background: url(../images/exercise/arrow-right.svg) no-repeat #fff;
    background-color: transparent;
    background-position: right 0px top 50%;
    display: inline-block;
    font-size: 2rem;
    line-height: 1;
    position: absolute;
    right: 5rem;
  }
  @media screen and (max-width: 600px) {
    .contact__line-btn__inner::after {
      width: max(5vw, 18px);
      height: max(5vw, 18px);
      right: 8.333vw;
    }
  }

  .inquiry__list {
    margin-top: 2rem;
    text-align: left;
  }
  .inquiry__list__item {
    display: inline-block;
    margin: 0.8rem 2rem;
    width: calc(100% - 4rem);
    text-align: left;
  }
  @media screen and (max-width: 600px) {
    .inquiry__list__item {
      margin: 1rem 0;
      width: 100%;
    }
  }

  .check {
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 1 0 0;
    border-radius: var(--unnamed, 0px);
  }

  .inquiry__list__item__cont {
    font-size: 1rem;
    font-weight: bold;
    line-height: 1.8;
    margin-bottom: 0.8rem;
  }
  .inquiry__list__item .inquiry_req {
    color: #e6698f;
    font-size: 1rem;
    font-weight: bold;
    line-height: 1.8;
  }
  .inquiry__list__item .inquiry_input {
    background: #fff;
    border: 1px solid #937fa8;
    border-radius: 0.2rem;
    color: rgba(51, 51, 51, 0.7);
    font-size: 1rem;
    line-height: 1.8;
    padding: 0.5rem 1rem;
    width: 100%;
    display: flex;
    align-items: flex-start;
    align-self: stretch;
  }
  .inquiry__list__item .inquiry_textarea {
    background: #fff;
    border: 1px solid #937fa8;
    border-radius: 0.2rem;
    color: rgba(51, 51, 51, 0.7);
    font-size: 1rem;
    line-height: 1.8;
    padding: 0.5rem 1rem;
    width: 100%;
    display: flex;
    align-items: flex-start;
    align-self: stretch;
  }
  .inquiry__list__item .inquiry-chk-text {
    font-size: 1rem;
    line-height: 1;
  }
  .inquiry__send {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
  }
  .inquiry__send .submit-wrap {
    position: relative;
    border-radius: 100vh;
    background: linear-gradient(90deg, #937fa8 0.12%, #dab7f2 100%);
    box-shadow: 0px 4px 4px 0px rgba(147, 127, 168, 0.25);
    max-width: 300px;
    width: 100%;
    height: 4rem;
  }
  .inquiry__send .submit-wrap:hover {
    background: linear-gradient(90deg, #99c7d0 0%, #bdd8dd 100%);
  }
  /*@media screen and (max-width: 1024px) {
	.inquiry__send .submit-wrap {
		padding: 1rem 3rem;
	}
	}
	@media screen and (max-width: 600px) {
	.inquiry__send .submit-wrap {
		padding: 1rem 2rem;
	}
	}
	@media screen and (max-width: 430px) {
	.inquiry__send .submit-wrap {
		padding: 0.5rem 1rem;
	}
	}*/
  .inquiry__send .submit-wrap::after {
    content: "";
    width: 2rem;
    aspect-ratio: 1/1;
    background: url(../images/exercise/arrow-right.svg) no-repeat #fff;
    background-color: transparent;
    background-position: right 0px top 50%;
    display: inline-block;
    font-size: 2rem;
    line-height: 1;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 1em;
    margin: auto;
  }
  /*@media screen and (max-width: 1024px) {
	.inquiry__send .submit-wrap::after {
		width: 1.4rem;
		height: 1.4rem;
	}
	}
	@media screen and (max-width: 600px) {
	.inquiry__send .submit-wrap::after {
		width: 1.2rem;
	}
	}
	@media screen and (max-width: 600px) {
	.inquiry__send .submit-wrap::after {
		width: 1.5rem;
	}
	}*/

  .inquiry__send .submit-wrap p {
    width: 100%;
    height: 100%;
  }
  @media screen and (max-width: 1024px) {
    .inquiry__send .submit-wrap p {
      font-size: 1.6rem;
    }
  }
  @media screen and (max-width: 600px) {
    .inquiry__send .submit-wrap p {
      font-size: 1.2rem;
    }
  }
  /*.inquiry__send .submit-wrap p span {
	width: 0;
	height: 0;
	display: none;
	}*/
  .inquiry__send__btn {
    background-color: transparent;
    border: none;
    color: #fff;
    font-family: Noto Serif JP;
    font-size: 2rem;
    font-weight: bold;
    line-height: 1;
    text-align: center;
    cursor: pointer;
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
  }

  @media screen and (max-width: 1024px) {
    .inquiry__send__btn {
      font-size: 1.6rem;
    }
  }
  @media screen and (max-width: 600px) {
    .inquiry__send__btn {
      font-size: 1.2rem;
    }
  }
  /* .inquiry__send__btn::before {
	content: "";
	color: #937FA8;
	} */

  .footer {
    background-color: #937fa8;
    color: #fff;
    text-align: center;
    width: 100%;
  }
  /* @media screen and (max-width: 844px) {
	.footer {
		padding-bottom: 6rem;
	}
	} */
  @media screen and (max-width: 834px) {
    .footer {
      padding-bottom: 6.4rem;
    }
  }
  @media screen and (max-width: 600px) {
    .footer {
      padding-bottom: 8rem;
    }
  }

  .footer .copyright {
    font-size: 0.7rem;
    padding: 0.8rem 6rem;
    display: flex;
    justify-content: center;
  }
  @media screen and (max-width: 430px) {
    .footer .copyright {
      padding: 0.5rem 1rem;
    }
  }

  .price__headline {
    color: #fff;
    font-size: 1.3rem;
    font-style: normal;
    font-weight: bold;
    line-height: 1.5;
    margin-block: 2em 0.5em;
    padding: 0.6em;
    background: rgb(147 127 168);
    border-radius: 0.6rem;
  }
  .price__headline--new {
    position: relative;
  }
  .price__headline--new::before {
    content: "NEW！";
    background-color: #fff000;
    color: #e6698f;
    padding: 0.4em 1em;
    border-radius: 100vh;
    font-size: 0.8em;
    place-content: center;
    position: absolute;
    left: calc(50% - 12rem);
    top: -1rem;
    letter-spacing: 0.05em;
    font-weight: 800;
  }
  .price__headline--new::after {
    content: "";
    clip-path: polygon(0 0, 100% 100%, 100% 0);
    background-color: #fff000;
    width: 1rem;
    height: 1rem;
    position: absolute;
    left: calc(50% - 10rem);
    top: 1rem;
  }
  @media screen and (max-width: 834px) {
    .price__headline {
      border-radius: 0.3rem;
      font-size: 1rem;
    }
    .price__headline--new::before {
      left: 35%;
      top: -0.5rem;
    }
    .price__headline--new::after {
      left: calc(35% + 1.5rem);
    }
  }
  @media screen and (max-width: 768px) {
    .price__headline--new::before {
      left: calc(50% - 9rem);
    }
    .price__headline--new::after {
      left: calc(50% - 7rem);
    }
  }
  .price-wrapper {
    display: flex;
    flex-direction: column;
  }
  @media screen and (max-width: 768px) {
    .swiper-wrapper.price-wrapper {
      flex-direction: row;
    }
  }
  .c-price__beforePrice .u-small {
    font-size: 80%;
    display: inline-block;
  }

  @media screen and (min-width: 768px) {
    .c-premium__afterTotal .u-small {
    }
  }
  .u-small --sm {
    font-size: 2.6vw;
    display: inline-block;
  }

  .c-price + .c-price {
    margin-top: 0.625rem;
  }
  .c-price:nth-child(n + 2) .c-price__minutes {
    display: flex;
  }

  @media screen and (min-width: 768px) {
    .c-price:nth-child(n + 2) .c-price__minutes {
      display: flex;
    }
  }
  @media screen and (min-width: 768px) {
    .c-price:nth-child(n + 2) .c-price__box {
      margin-top: 0;
    }
  }
  .c-price:nth-child(n + 2) .c-price__month {
    height: auto;
  }
  @media screen and (min-width: 768px) {
    .c-price:nth-child(n + 2) .c-price__month {
      top: 0;
      height: calc(100% - 1rem);
      height: auto;
    }
  }
  .c-price__area {
    position: relative;
    text-align: left;
  }

  .c-price__group {
    display: contents;
    display: flex;
    gap: 0.4rem;
  }
  @media screen and (max-width: 834px) {
    .c-price__group {
      position: relative;
    }
  }

  .c-price__boxes {
    display: flex;
    position: relative;
    padding-left: 9.4rem;
    gap: 0.4em;
    flex-direction: column;
    padding: 0;
    flex: 1;
  }
  @media screen and (max-width: 834px) {
    .c-price__boxes {
      gap: 0.6rem;
    }
  }
  @media screen and (max-width: 600px) {
    .c-price__boxes {
      gap: 0.4rem;
      padding-left: 5.5rem;
      padding: 0;
    }
  }
  @media screen and (max-width: 430px) {
    .c-price__boxes {
      padding-left: 13vw;
      padding: 0;
    }
  }

  .c-price__box {
    background: none;
    flex: 1;
    position: relative;
    padding: 1.2rem 0.5rem 1.2rem 0.5rem;
    padding: 0;
    margin-top: 0;
    display: flex;
    align-items: stretch;
    justify-content: center;
    flex-direction: row;
    gap: 0.4rem;
  }
  /*@media screen and (max-width: 1024px) {
	.c-price__box {
		flex-direction: column;
		margin-top: 2rem;
		padding: 1rem;
	}
	}
	@media screen and (max-width: 834px) {
	.c-price__box {
		flex-direction: column;
		margin-top: 2rem;
		padding: 1rem;
	}
	}
	@media screen and (max-width: 600px) {
	.c-price__box {
		padding: 0.6rem;
	}
	}
	@media screen and (max-width: 430px) {
	.c-price__box {
		padding: 0.5rem;
	}
	}*/
  .c-price__item {
    display: flex;
    background-color: #e9e5ee;
    flex: 1;
    position: relative;
    padding: 1.2rem 1rem;
    margin-top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    gap: 4em;
  }
  @media screen and (max-width: 768px) {
    .c-price__item {
      gap: 1em;
    }
  }
  @media screen and (max-width: 430px) {
    .c-price__item {
      padding: 1vw 1vw 2vw;
    }
  }

  .c-price__minutes {
    background: #937fa8;
    color: #fff;
    position: static;
    left: 0;
    width: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1.5rem;
    line-height: 1;
    padding: 0.3rem 1rem;
    border-radius: 0.6rem;
    top: -2.625rem;
    text-align: center;
  }
  @media screen and (max-width: 834px) {
    .c-price__minutes {
      border-radius: 0.3rem;
      font-size: 1rem;
      padding: 0.3rem 0.6rem;
      top: -2em;
    }
  }

  .c-price__beforeText {
    text-align: center;
    line-height: 1;
  }

  .c-price__beforeText img {
    display: none;
  }
  @media screen and (max-width: 834px) {
    .c-price__beforeText img {
      width: 2.6rem;
      display: block;
      -o-object-fit: contain;
      object-fit: contain;
      margin-left: auto;
      margin-right: auto;
    }
  }

  .c-price__beforeText span {
    font-size: 1rem;
    font-weight: 500;
  }

  .c-price__beforeText span.--sm {
    font-size: 1rem;
    font-weight: 500;
  }

  .c-price__beforePrice {
    display: block;
    text-align: center;
    font-weight: 500;
    line-height: 1.4;
    font-size: 1.7rem;
    margin-top: 0.1em;
    margin-bottom: -0.2em;
  }
  @media screen and (max-width: 1280px) {
    .c-price__beforePrice {
      font-size: 1.7rem;
      margin-bottom: -0.3em;
    }
  }
  @media screen and (max-width: 834px) {
    .c-price__beforePrice {
      font-size: 2rem;
      margin-bottom: -0.3em;
    }
  }
  @media screen and (max-width: 600px) {
    .c-price__beforePrice {
      font-size: 4vw;
    }
  }
  @media screen and (max-width: 430px) {
    .c-price__beforePrice {
      font-size: 5w;
    }
  }
  /* @media screen and (max-width: 375px) {
	.c-price__beforePrice {
		font-size: 1.6rem;
	}
	} */

  .c-price__beforePrice .u-small {
    display: inline-block;
    font-weight: 500;
    font-size: 80%;
  }
  @media screen and (max-width: 834px) {
    .c-price__beforePrice .u-small {
    }
  }

  .c-price__beforeTotal {
    font-weight: 500;
    display: block;
    justify-content: center;
    align-items: center;
    line-height: 2;
    margin-top: 0.1rem;
    font-size: 1rem;
  }
  @media screen and (max-width: 834px) {
    .c-price__beforeTotal {
      font-size: 1rem;
    }
  }
  @media screen and (max-width: 600px) {
    .c-price__beforeTotal {
      font-size: 2.5vw;
    }
  }
  @media screen and (max-width: 430px) {
    .c-price__beforeTotal {
      font-size: 2.4vw;
    }
  }

  .c-price__beforeTotal img {
    display: inline-block;
    -o-object-fit: contain;
    object-fit: contain;
    width: 0.6rem;
    height: auto;
    aspect-ratio: 1/1;
    margin-top: 0.4rem;
  }
  @media screen and (max-width: 834px) {
    .c-price__beforeTotal img {
      width: 0.4rem;
    }
  }

  .c-price__arrow {
    -o-object-fit: contain;
    object-fit: contain;
    margin-left: 0;
    margin-right: 0;
    width: auto;
    height: 1.2rem;
    transform: rotate(-90deg);
    margin-top: 0;
    justify-content: center;
  }
  /*@media screen and (max-width: 1024px) {
	.c-price__arrow {
		transform: rotate(0deg);
	}
	}
	@media screen and (max-width: 834px) {
	.c-price__arrow {
		height: 1.5rem;
		transform: rotate(0deg);
	}
	}*/
  @media screen and (max-width: 600px) {
    .c-price__arrow {
      height: 1.2rem;
    }
  }
  .c-price__arrow img {
    height: 100%;
  }

  .c-price__after {
    flex-shrink: 0;
  }
  .c-price__afterText {
    font-weight: 500;
    display: block;
    text-align: center;
    font-size: 0.9rem;
    margin-top: -0.5em;
    line-height: 1;
  }
  @media screen and (max-width: 834px) {
    .c-price__afterText {
      margin-top: 0;
      font-size: 1.4rem;
      transform: translateY(0.5rem);
    }
  }
  @media screen and (max-width: 600px) {
    .c-price__afterText {
      font-size: 3.5vw;
      line-height: 2;
    }
  }

  .c-price__afterPrice {
    font-weight: 500;
    display: block;
    text-align: center;
    font-size: 2rem;
    line-height: 1.8;
  }
  @media screen and (max-width: 1280px) {
    .c-price__afterPrice {
      font-size: 2rem;
    }
  }
  @media screen and (max-width: 834px) {
    .c-price__afterPrice {
      font-size: 2.2rem;
    }
  }
  @media screen and (max-width: 600px) {
    .c-price__afterPrice {
      font-size: 6vw;
    }
  }
  /*@media screen and (max-width: 430px) {
	.c-price__afterPrice {
		font-size: 1.6rem;
	}
	}
	@media screen and (max-width: 320px) {
	.c-price__afterPrice {
		font-size: 1.4rem;
	}
	}*/

  .c-price__afterPrice .u-small {
    display: inline-block;
    font-weight: 500;
    text-align: center;
    font-size: 80%;
  }
  @media screen and (max-width: 1024px) {
    .c-price__afterPrice .u-small {
    }
  }
  @media screen and (max-width: 834px) {
    .c-price__afterPrice .u-small {
    }
  }

  .c-price__afterTotal {
    font-weight: 500;
    display: block;
    text-align: center;
    line-height: 1;
    font-size: 1.2rem;
  }
  @media screen and (max-width: 1024px) {
    .c-price__afterTotal {
      /* font-size: 1.2vw; */
    }
  }
  @media screen and (max-width: 834px) {
    .c-price__afterTotal {
      font-size: 1.2rem;
    }
  }
  @media screen and (max-width: 834px) {
    .c-price__afterTotal {
      font-size: 1rem;
    }
  }
  @media screen and (max-width: 375px) {
    .c-price__afterTotal {
      font-size: 0.8rem;
    }
  }

  .c-price__beforeTotal .u-small {
    display: inline-block;
    font-size: 80%;
    margin-top: 0.2em;
  }
  @media screen and (max-width: 834px) {
    .c-price__beforeTotal .u-small {
      margin-top: 0.4em;
    }
  }

  .c-price__afterTotal .u-small {
    display: inline-block;
    font-size: 80%;
  }
  @media screen and (max-width: 834px) {
    .c-price__afterTotal .u-small {
    }
  }
  .c-price__box.--red {
    border: none;
    background: none;
  }
  .c-price__box.--red::before {
    content: none;
  }
  .c-price__item.--red {
    border: 3px solid #c1272d;
    background-color: #f6dfdf;
    position: relative;
    padding: 1.2rem 1rem;
  }
  /*@media screen and (max-width: 834px) {
	.c-price__item.--red {
		padding: 4rem 1rem 1rem 1rem;
	}
	}
	@media screen and (max-width: 600px) {
	.c-price__item.--red {
		padding: 1rem 1rem 1rem 1rem;
	}
	}
	@media screen and (max-width: 430px) {
	.c-price__item.--red {
		padding: 2rem 0.5rem 1rem 0.5rem;
	}
	}*/

  .c-price__item.--red::before {
    content: "";
    display: block;
    position: absolute;
    background: url(../images/exercise/price_img-pc.svg) no-repeat
      center/contain;
    width: 7.1rem;
    height: 4rem;
    top: -0.4rem;
    left: 0.6rem;
  }
  @media screen and (max-width: 768px) {
    .c-price__item.--red::before {
      top: -3vw;
      left: 2vw;
      width: 9vw;
    }
  }
  @media screen and (max-width: 600px) {
    .c-price__item.--red::before {
      background: url(../images/exercise/price_img-sp.svg) no-repeat
        center/contain;
      width: 2.4rem;
      height: 2.8rem;
      top: -0.5em;
      left: 1vw;
    }
  }

  .c-price__item.--red .c-price__before {
    /* padding-left: 0.6rem; */
    margin-top: 0;
  }

  .c-price__before {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-left: 0;
    flex-shrink: 0;
  }

  .c-price__beforeText img {
    margin-left: 0;
  }

  .c-price__beforePrice {
    text-align: left;
    text-align: center;
  }

  .c-price__head {
    display: flex;
    padding-left: 8.4rem;
    width: 100%;
    margin-top: 0.6rem;
  }
  @media screen and (max-width: 834px) {
    .c-price__head {
      /* padding-left: 5.6rem; */
    }
  }
  @media screen and (max-width: 600px) {
    .c-price__head {
      padding-left: 5rem;
    }
  }
  @media screen and (max-width: 430px) {
    .c-price__head {
      padding-left: 4.2rem;
    }
  }

  .c-price__headLabel {
    color: #fff;
    background-color: #bdd8dd;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.3rem;
    writing-mode: vertical-lr;
    font-size: 1rem;
    font-weight: bold;
    letter-spacing: 0.2em;
  }
  @media screen and (max-width: 834px) {
    .c-price__headLabel {
      font-size: 0.8125rem;
      letter-spacing: 0.1em;
    }
  }

  .c-price__headLists {
    background-color: rgba(189, 216, 221, 0.2);
    flex: 1;
    padding: 1rem;
  }
  @media screen and (max-width: 430px) {
    .c-price__headLists {
      padding: 0.5rem;
    }
  }

  .c-price__headList {
    padding-left: 0.6rem;
    position: relative;
    font-size: 1rem;
    line-height: 2;
  }
  @media screen and (max-width: 834px) {
    .c-price__headList {
      font-size: 1rem;
      line-height: 1.6;
    }
  }
  @media screen and (max-width: 600px) {
    .c-price__headList {
      font-size: 0.8rem;
      line-height: 1.6;
    }
  }

  .c-price__headList::before {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    width: 0.2rem;
    height: 0.2rem;
    border-radius: 50%;
    background-color: #333;
    top: 0.8em;
  }
  @media screen and (max-width: 834px) {
    .c-price__headList::before {
      top: 0.6rem;
    }
  }
  .price-announce {
    padding: 2em 0;
    text-align: left;
  }
  span.del {
    -webkit-text-decoration-line: line-through;
    text-decoration-line: line-through;
    -webkit-text-decoration-style: solid;
    text-decoration-style: solid;
    -webkit-text-decoration-color: #545454;
    text-decoration-color: #545454;
  }

  /* フローティングバナー */
  #footer-banner {
    max-width: 360px;
    position: relative;
    position: fixed;
    bottom: 0.5rem;
    right: 0;
    z-index: 1;
  }
  @media screen and (max-width: 834px) {
    #footer-banner {
      max-width: none;
      left: 0;
      bottom: 0;
    }
  }
  #footer-banner .frame {
    background: linear-gradient(0deg, #e6c5cf 0%, #f4e6ea 100%);
    /* background: linear-gradient(0deg, #E6C5CF 0%, #E6BAC7 100%); */
    border: 0.2rem solid #e6698f;
    box-sizing: border-box;
    padding: 0.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
    gap: 1rem;
    width: 360px;
    height: auto;
  }
  @media screen and (max-width: 1280px) {
    #footer-banner .frame {
      /* width: 25vw; */
    }
  }
  @media screen and (max-width: 1024px) {
    #footer-banner .frame {
      padding: 0.4rem;
      /* gap: 0.6rem; */
    }
  }
  @media screen and (max-width: 834px) {
    #footer-banner .frame {
      /* flex-direction: row; */
      width: 100vw;
      gap: 0.4rem;
      padding: 0.6rem;
      padding-top: 0.2rem;
      height: 6.2rem;
    }
  }
  @media screen and (max-width: 600px) {
    /* #footer-banner .frame {
		height: 8rem;
		padding: 0.6rem;
	} */
  }
  @media screen and (max-width: 430px) {
    #footer-banner .frame {
      /* gap: 0.8rem; */
    }
  }
  @media screen and (max-width: 320px) {
    #footer-banner .frame {
      /* gap: 0.4rem; */
      padding: 0.4rem;
    }
  }
  #footer-banner .frame__desc {
    /* background-color: #fff; */
    /* border: 1px solid #E6698F; */
    /* border-radius: 1rem; */
    /* padding: 0.5rem; */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    align-self: stretch;
  }
  @media screen and (max-width: 1024px) {
    #footer-banner .frame__desc {
      /* padding: 0.4rem; */
    }
  }
  @media screen and (max-width: 834px) {
    #footer-banner .frame__desc {
      flex-direction: initial;
      align-items: flex-end;
    }
  }
  @media screen and (max-width: 600px) {
    #footer-banner .frame__desc {
    }
  }
  @media screen and (max-width: 430px) {
    #footer-banner .frame__desc {
      /* width: 50%; */
    }
  }
  #footer-banner .frame__desc__text {
    color: #e6698f;
    text-align: center;
    font-size: 0.9rem;
    font-weight: bold;
    line-height: 1.2;
    text-shadow: 0 0 1rem rgba(255, 255, 255, 1);
  }
  @media screen and (max-width: 1024px) {
    #footer-banner .frame__desc__text {
      font-size: 0.9rem;
    }
  }
  @media screen and (max-width: 600px) {
    #footer-banner .frame__desc__text {
      font-size: 0.9rem;
    }
  }
  @media screen and (max-width: 376px) {
    #footer-banner .frame__desc__text {
      font-size: 0.8rem;
    }
  }
  @media screen and (max-width: 320px) {
    #footer-banner .frame__desc__text {
      font-size: 0.7rem;
    }
  }
  #footer-banner .frame__desc__text .arrow-right {
    border-width: 0.4rem 0 0.4rem 0.7rem;
  }
  #footer-banner .frame__desc__text .bg-italic {
    font-size: 170%;
    text-shadow: 0.15rem 0.15rem 1px rgba(255, 255, 255, 0.4);
  }

  #footer-banner .frame__desc__text .sm-text {
    font-size: 60%;
  }
  #footer-banner .frame__application {
    display: flex;
    justify-content: space-around;
    align-items: center;
    align-self: stretch;
    position: relative;
  }

  #footer-banner .frame__application__btn {
    background: linear-gradient(180deg, #e6698f 0%, #e697af 100%);
    border: none;
    border-radius: 1rem;
    box-shadow: 5px 5px 4px 0px rgba(51, 51, 51, 0.5);
    color: #fff;
    font-size: 1.3rem;
    font-weight: bold;
    padding: 1rem;
    /*padding-top: 1.2rem;*/
    text-align: center;
    text-shadow: 0px 0px 5px rgba(51, 51, 51, 0.5);
    line-height: 1.2;
    width: 100%;
    display: inline-flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    position: relative;
  }
  @media screen and (max-width: 1024px) {
    #footer-banner .frame__application__btn {
      font-size: 1rem;
    }
  }
  @media screen and (max-width: 834px) {
    #footer-banner .frame__application__btn {
      box-shadow: 4px 4px 4px 0px rgba(51, 51, 51, 0.5);
      font-size: 1.5rem;
      padding: 0.4rem;
    }
  }
  @media screen and (max-width: 600px) {
    #footer-banner .frame__application__btn {
      padding: 0.4rem 1rem;
    }
  }
  @media screen and (max-width: 320px) {
    #footer-banner .frame__application__btn {
      font-size: 0.8rem;
    }
  }
  #footer-banner .frame__application__btn:hover {
    background-image: linear-gradient(90deg, #937fa8 0.12%, #dab7f2 100%);
  }

  #footer-banner .frame__application__btn span {
    position: absolute;
    top: -1rem;
    left: 0.6rem;

    color: #e6698f;
    border-radius: 0.1rem;
    font-size: 120%;
    font-weight: bold;
    padding: 0.2rem 0.6rem;
    text-shadow:
      4px 4px 4px #fff,
      -4px -4px 4px #fff,
      -4px 4px 4px #fff,
      4px -4px 4px #fff,
      4px 0 4px #fff,
      -4px 0 4px #fff,
      0 4px 4px #fff,
      0 -4px 4px #fff;
  }
  @media screen and (max-width: 834px) {
    #footer-banner .frame__application__btn span {
      top: -0.6rem;
      left: 0.4rem;
      font-size: 80%;
      text-shadow:
        2px 2px 0 #fff,
        -2px -2px 0 #fff,
        -2px 2px 0 #fff,
        2px -2px 0 #fff,
        2px 0 0 #fff,
        -2px 0 0 #fff,
        0 2px 0 #fff,
        0 -2px 0 #fff;
    }
  }

  #footer-banner .frame__application__btn::after {
    content: "";
    width: 1rem;
    height: auto;
    aspect-ratio: 1/1;
    background: url(../images/exercise/arrow-right.svg) no-repeat #fff;
    background-color: transparent;
    background-position: right 0px top 50%;
    display: inline-block;
    position: absolute;
    top: 50%;
    right: 1rem;
    /* transform: translateY(-50%); */
  }
  @media screen and (max-width: 834px) {
    #footer-banner .frame__application__btn::after {
      width: 1.6rem;
      transform: translateY(-50%);
    }
  }
  @media screen and (max-width: 600px) {
    #footer-banner .frame__application__btn::after {
      width: 1.4rem;
    }
  }
  @media screen and (max-width: 375px) {
    #footer-banner .frame__application__btn::after {
      width: 1.2rem;
    }
  }
  #footer-banner .close-btn {
    cursor: pointer;
    width: 40px;
    height: 3rem;
    background: transparent;
    position: relative;
    position: absolute;
    top: -2.56rem;
    right: 0;
    bottom: 9rem;
  }
  @media screen and (max-width: 1680px) {
    #footer-banner .close-btn {
      bottom: 9rem;
    }
  }
  @media screen and (max-width: 1440px) {
    #footer-banner .close-btn {
      bottom: 9rem;
    }
  }
  @media screen and (max-width: 1280px) {
    #footer-banner .close-btn {
      bottom: 9rem;
    }
  }
  @media screen and (max-width: 1181px) {
    #footer-banner .close-btn {
      bottom: 8rem;
    }
  }
  @media screen and (max-width: 844px) {
    #footer-banner .close-btn {
      bottom: 7rem;
    }
  }
  @media screen and (max-width: 834px) {
    #footer-banner .close-btn {
      bottom: 4rem;
      display: none;
    }
  }
  @media screen and (max-width: 600px) {
    #footer-banner .close-btn {
      bottom: 5rem;
    }
  }
  @media screen and (max-width: 430px) {
    #footer-banner .close-btn {
      bottom: 5rem;
    }
  }
  @media screen and (max-width: 320px) {
    #footer-banner .close-btn {
      bottom: 4rem;
    }
  }

  #footer-banner .close-btn .line {
    display: block;
    margin: 0 auto;
    border-radius: 10px;
    background: #e6698f;
    position: absolute;
    top: 50%;
    left: 50%;
    transition:
      transform 0.6s ease,
      top 0.6s ease;
  }
  #footer-banner .close-btn .line:nth-child(1) {
    width: 3px;
    height: 1.2em;
    transform-origin: center;
    transform: translate(-50%, -50%) rotate(-45deg);
  }
  #footer-banner .close-btn .line:nth-child(2) {
    width: 0.6em;
    height: 3px;
    transform: translate(0, -50%) rotate(-45deg);
    left: calc((40px - 1.2em) / 2);
    transform-origin: top right;
  }
  #footer-banner .close-btn .line:nth-child(3) {
    width: 0.6em;
    height: 3px;
    transform: translate(0, -50%) rotate(-45deg);
    right: calc((40px - 1.2em) / 2);
    transform-origin: top left;
  }

  /* Base styles for close button lines */
  /* #footer-banner .close-btn .line-1,
	#footer-banner .close-btn .line-2,
	#footer-banner .close-btn .line-3 {
	display: block;
	margin: 0 auto;
	border-radius: 10px;
	background: #fff;
	position: absolute;
	top: 50%;
	left: 50%;
	transition: transform .6s ease, top .6s ease; */
}
/* Specific styles for close button line-1 */
/* #footer-banner .close-btn .line-1 {
	width: 3px;
	height: 1.2em;
	transform-origin: center;
	transform: translate(-50%, -50%) rotate(-45deg);
	} */
/* Specific styles for close button line-2 and line-3 */
/* #footer-banner .close-btn .line-2,
	#footer-banner .close-btn .line-3 {
	width: calc(1.2em / 2);
	height: 3px;
	transform: translate(0, -50%) rotate(-45deg);
	}

	#footer-banner .close-btn .line-2 {
	left: calc((40px - 1.2em) / 2);
	transform-origin: top right;
	}

	#footer-banner .close-btn .line-3 {
	right: calc((40px - 1.2em) / 2);
	transform-origin: top left;
	}*/

#footer-banner .close-btn.open .line {
  transition:
    transform 0.6s ease,
    top 0.6s ease;
}
#footer-banner .close-btn.open .line:first-child {
  transform: translate(-50%, -50%) rotate(0);
}
#footer-banner .close-btn.open .line:nth-child(2) {
  transform: rotate(-45deg);
  top: 0.6em;
}
#footer-banner .close-btn.open .line:nth-child(3) {
  transform: rotate(45deg);
  top: 0.6em;
}

/* Styles for open state of the close button */
/* #footer-banner .close-btn.open .line-1,
	#footer-banner .close-btn.open .line-2,
	#footer-banner .close-btn.open .line-3 {
	transition: transform .6s ease, top .6s ease;
	}
	#footer-banner .close-btn.open .line-1 {
	transform: translate(-50%, -50%) rotate(0);
	}

	#footer-banner .close-btn.open .line-2 {
	transform: rotate(-45deg);
	top: 0;
	}

	#footer-banner .close-btn.open .line-3 {
	transform: rotate(45deg);
	top: 0;
	} */

button {
  background-color: transparent;
  border: none;
}

.div.wpforms-container-full {
  text-align: left;
}

/**
* Button
*/
.shiny__btn__inner {
  padding: 0;
}
.shiny__btn__inner span {
  width: 100%;
  height: 100%;
  display: block;
  text-align: center;
  background-size: 600% 100%;
  animation: shine 20s infinite;
  animation-delay: 0s;
  animation-timing-function: linear;
  border-radius: 100vh;
  padding: 1rem;
}
.contact__line-btn__inner span {
  background-image: linear-gradient(
    -45deg,
    rgba(255, 255, 255, 0) 50%,
    #66d783 60%,
    rgba(255, 255, 255, 0) 70%
  );
  animation-delay: 0s;
}
.application-info__btn__inner span {
  background-image: linear-gradient(
    -45deg,
    rgba(255, 255, 255, 0) 50%,
    #dab7f2 60%,
    rgba(255, 255, 255, 0) 70%
  );
  animation-delay: 1s;
}
.shiny__btn__inner span {
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.3;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 834px) {
  .shiny__btn__inner span {
    font-size: 24px;
    padding: 2.398vw;
  }
}
@media screen and (max-width: 600px) {
  .shiny__btn__inner span {
    font-size: max(5vw, 14px);
    animation-duration: 30s;
  }
}
.shiny__btn__inner::after {
  width: 2rem;
  height: 2rem;
  right: 5rem;
}
@media screen and (max-width: 600px) {
  .shiny__btn__inner::after {
    width: max(6vw, 18px);
    height: max(6vw, 18px);
    right: 8.333vw;
  }
}
@keyframes shine {
  0% {
    background-position-x: 400%;
  }
  50% {
    background-position-x: 0%;
  }
  100% {
    background-position-x: -400%;
  }
}

/**
  * CTA
  */
.p-cta__section .campaign__banner__item {
  margin-bottom: 0;
}
.p-cta__title {
  color: #937fa8;
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1.6;
  margin-bottom: 1rem;
  text-align: center;
  font-family: "Noto Serif JP", serif;
}
.p-cta__title > span {
  color: #fff;
  letter-spacing: 0.1em;
  font-size: 1.3em;
  background-color: #00bb2a;
  padding-inline: 0.2em;
  margin-inline-end: 0.1em;
  font-family: "Noto Sans JP", sans-serif;
}
.p-cta-trial__container {
  display: grid;
  grid-template-columns: repeat(2, auto);
  justify-content: center;
  align-items: center;
  gap: 2rem;
  background-color: #f7f8f8;
  padding: 1em;
  border: 2px solid #937fa8;
  border-radius: 0.5rem;
  width: 100%;
  max-width: 640px;
  margin: auto;
}
.p-cta-trial-prev__area {
  display: grid;
  justify-content: center;
  align-items: center;
  gap: 0.4rem;
}
.p-cta-trial-prev__text {
  background-color: #937fa8;
  color: #fff;
  padding: 0.2em 1em;
  font-weight: bold;
}
.p-cta-trial-prev__price {
  font-size: 240%;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.2em;
  align-items: end;
  color: #937fa8;
  line-height: 1.2;
}
.p-cta-trial-prev__price__tax {
  font-size: 70%;
  display: grid;
}
.p-cta-trial-prev__price__tax > span {
  font-size: 0.5em;
}
.p-cta-trial-after__area {
  display: grid;
  grid-template-columns: auto 1fr;
  justify-content: center;
  align-items: center;
  gap: 2rem;
}
.p-cta-trial-after__area::before {
  content: "";
  background-color: #e6698f;
  aspect-ratio: 1 / 1.7;
  height: 1.3rem;
  clip-path: polygon(0 0, 0% 100%, 100% 50%);
}
.p-cta-trial-after__price {
  font-size: 400%;
  color: #e6698f;
  font-weight: bold;
}
.p-cta-trial-after__price > span {
  font-size: 100%;
}
.p-cta-campaign__container {
  margin-block-start: 3rem;
  width: 100%;
  max-width: 640px;
  position: relative;
}
.p-cta-campaign__container .banner-privilege__cont {
  padding-block: 3rem 2rem;
}
.p-cta-campaign__container .banner-privilege__cont__detail__text {
  line-height: 1.5;
}
.p-cta-campaign__more {
  background-color: #fff000;
  color: #e6698f;
  margin-inline: auto;
  padding: 0.5em 2em;
  border-radius: 100vh;
  width: fit-content;
  font-weight: bold;
  font-size: 1.5rem;
  animation: none !important;
  top: -2em !important;
}
.p-cta-campaign-banner__wrap {
  margin-inline: auto;
  padding: 1em 2em 0.4em 2em;
  text-align: center;
  clip-path: polygon(0 0, 100% 0, 96% 50%, 100% 100%, 0 100%, 4% 50%);
  background-color: #937fa8;
  font-weight: bold;
  margin-block-end: -2rem;
  width: fit-content;
}
.p-cta-campaign-banner {
  color: #fff;
}
.p-cta-campaign__name {
  color: #e6698f;
  font-weight: bold;
  font-size: 150%;
  border-block-end: 2px solid;
  font-family: "Noto Serif JP", serif;
}
.p-cta-campaign-banner__sup {
  background-color: #e6698f;
  color: #fff;
  border-radius: 100vh;
  height: 4.2rem;
  aspect-ratio: 1 / 1;
  display: grid;
  place-items: center;
  z-index: 1;
  line-height: 1.1;
}
.p-cta-button {
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  width: 100%;
  max-width: 640px;
  margin: 2rem auto 0;
  border-radius: 1em;
  position: relative;
  z-index: 0;
  font-family: "Noto Serif JP", serif;
  background:
    linear-gradient(
        142deg,
        rgba(160, 120, 20, 1) 0%,
        rgba(220, 190, 60, 1) 45%,
        rgba(230, 200, 70, 1) 54%,
        rgba(160, 120, 20, 1) 100%
      )
      padding-box,
    linear-gradient(45deg, #b38e00, #d4af37, #f5e1a4, #8c6d1f) border-box;
  border: 2px solid transparent;
}
.p-cta-button > a {
  color: #fff;
  font-size: 2em;
  font-weight: bold;
  display: block;
  padding: 2.4rem 0 1.6rem;
  position: relative;
  text-shadow: 0px 0px 4px rgba(0, 0, 0, 0.5);
}
.p-cta-button > a > span {
  text-shadow: none;
  font-size: 1.5rem;
  font-family: "Noto sans JP", sans-serif;
}
.c-speech {
  background: #fff000;
  color: #e6698f;
  border-radius: 100vh;
  padding: 0.5em 1em;
  position: absolute;
  top: -1.5em;
  left: 0;
  right: 0;
  margin: auto;
  width: fit-content;
  z-index: 1;
  animation: bounce 1s infinite ease-in-out;
}
.c-speech::after {
  content: "";
  clip-path: polygon(50% 100%, 0 0, 100% 0);
  background-color: var(--fuki, #fff000);
  position: absolute;
  --pos: 14px;
  bottom: calc((var(--pos) - 1px) * -1);
  left: 0;
  right: 0;
  margin: auto;
  height: var(--pos);
  aspect-ratio: 1.3 / 1;
}
@media screen and (max-width: 600px) {
  .p-cta__title {
    font-size: clamp(12px, 6vw, 28px);
  }
  .p-cta-trial-after__price {
    font-size: 10vw;
  }
  .p-cta-trial__container {
    gap: 5vw;
  }
  .p-cta-trial-after__area {
    gap: 5vw;
  }
  .p-cta-trial-prev__price {
    font-size: 8vw;
  }
  .p-cta-campaign-banner__wrap {
    clip-path: polygon(0 0, 100% 0, 94% 50%, 100% 100%, 0 100%, 6% 50%);
  }
  .p-cta-campaign__name {
    font-size: 5vw;
  }
  .p-cta-button > a {
    font-size: 5vw;
    padding: 6vw 0 3vw;
  }
  .p-cta-button > a > span {
    font-size: 4vw;
  }
  .p-cta-campaign__more {
    font-size: 4vw;
  }
  .p-cta-campaign-banner__sup {
    font-size: max(2.5vw, 12px);
    height: max(11vw, 50px);
  }
  .c-speech::after {
    --pos: 2vw;
  }
}
@media screen and (max-width: 375px) {
  .p-cta-campaign-banner__sup {
    position: absolute;
    top: 7vw;
    font-size: 4vw;
    height: 15vw;
  }
}
@keyframes bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

/**
  * SHOP
  */
.shop.strength__list__item {
  padding-bottom: 5rem;
}
.shop.strength__list__item::after {
  content: none;
}







.c-price__before,
.c-price__after {
  flex-grow: 1;
}
.c-price__beforePrice .u-small {
  font-size: 2.6vw;
  display: inline-block;
}
.c-price + .c-price {
  margin-top: 0.625rem;
}
.c-price:nth-child(n + 2) .c-price__minutes {
  display: none;
}

.c-price:nth-child(n + 2) .c-price__box {
  margin-top: 0;
}
.c-price:nth-child(n + 2) .c-price__month {
  top: 0;
  height: 100%;
}
.c-price__area {
  position: relative;
}

.c-price__group {
  position: relative;
}

@media screen and (min-width: 768px) {
  .c-price__group {
    display: contents;
  }
}
.c-price__month {
  letter-spacing: .3em;
}
.c-price__boxes {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.625rem;
  padding-left: 5.625rem;
  position: relative;
}

@media screen and (min-width: 768px) {
  .c-price__boxes {
    padding-left: 15rem;
    gap: 1.25rem;
  }
}
.c-price__box__wrap {
  padding: 0.5rem 0.25rem;
  background-color: #e9e5ee;
  margin-top: 2.1875rem;
  position: relative;
  flex: 1;
  padding: 1.4rem 1.2rem 1.2rem 1.2rem;
  gap: 0.4rem;
  flex-direction: column;
  display: flex;
}

@media screen and (min-width: 768px) {
  .c-price__box__wrap {
    margin-top: 2.625rem;
  }
}
.c-price__box__wrap .c-price__box {
  margin: 0;
  padding: 0;
}
.c-price:nth-child(n + 2) .c-price__box__wrap {
  margin-top: 0;
}
.c-price__box {
  padding: 1.4rem 1.2rem 1.2rem 1.2rem;
  background-color: #e9e5ee;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  margin-top: 2.1875rem;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

@media screen and (min-width: 768px) {
  .c-price__box {
    margin-top: 2.625rem;
  }
}
.c-price__minutes {
  font-size: 1rem;
  line-height: 1;
  padding: 0.25rem 0.625rem;
  background: #937fa8;
  color: #fff;
  border-radius: 0.3125rem;
  position: absolute;
  top: -2em;
  left: 0;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-weight: 600;
}

@media screen and (min-width: 768px) {
  .c-price__minutes {
    font-size: 1.5rem;
    line-height: 0.9090909091;
    padding: 0.375rem 0.9375rem;
    border-radius: 0.625rem;
    top: -2.625rem;
  }
}

.c-price__description {
  font-weight: 500;
  font-size: 0.9rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .c-price__description {
    font-size: 1.1rem;
    top: 0.5rem;
  }
}

.c-price__exampleText {
  font-size: 0.9rem;
  font-weight: 500;
  width: fit-content;
  margin: 0 auto;
  text-align: center;
}
.c-price__exampleText > span {
  font-size: 1.2rem;
}
.c-price__beforeText {
  text-align: center;
  line-height: 1;
}

.c-price__beforeText img {
  width: 2.625rem;
  display: block;
  -o-object-fit: contain;
  object-fit: contain;
  margin-left: auto;
  margin-right: auto;
}

@media screen and (min-width: 768px) {
  .c-price__beforeText img {
    display: none;
  }
}
@media screen and (min-width: 768px) {
  .c-price__beforeText span {
    font-size: 1rem;
    font-weight: 500;
  }
}
.c-price__beforeText span.--sm {
  font-size: 1.05rem;
  font-weight: 500;
}

.c-price__beforePrice {
  font-size: 5vw;
  display: block;
  text-align: center;
  font-weight: 500;
  line-height: 1.363636;
  margin-bottom: -0.3em;
  margin-top: -0.2em;
}

@media screen and (min-width: 768px) {
  .c-price__beforePrice {
    font-size: 2rem;
    margin-top: 0.1em;
    margin-bottom: -0.2em;
  }
}
.c-price__beforePrice .u-small {
  font-size: 3.6vw;
  display: inline-block;
  font-weight: 500;
}

@media screen and (min-width: 768px) {
  .c-price__beforePrice .u-small {
    font-size: 1.2rem;
  }
}
.c-price__beforeTotal {
  font-size: 3.6vw;
  font-weight: 500;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  line-height: 1;
  margin-top: 0.0625rem;
  letter-spacing: initial;
}

@media screen and (min-width: 768px) {
  .c-price__beforeTotal {
    font-size: 1.1rem;
    font-weight: 500;
  }
}
.c-price__beforeTotal img {
  width: 0.4375rem;
  height: 0.4375rem;
  display: inline-block;
  -o-object-fit: contain;
  object-fit: contain;
}

@media screen and (min-width: 768px) {
  .c-price__beforeTotal img {
    width: 0.625rem;
    height: 0.625rem;
    margin-top: 0.4375rem;
  }
}
.c-price__arrow {
  width: 0.7rem;
  height: auto;
  display: block;
  -o-object-fit: contain;
  object-fit: contain;
  margin-left: auto;
  margin-right: auto;
  margin-top: 0.3125rem;
  -webkit-transform: rotate(-90deg);
  transform: rotate(-90deg);
}

@media screen and (min-width: 768px) {
  .c-price__arrow {
    width: 1.2rem;
    height: 1.2rem;
    margin-top: 0;
  }
}
.c-price__afterText {
  font-size: 4vw;
  font-weight: 500;
  display: block;
  text-align: center;
}

@media screen and (min-width: 768px) {
  .c-price__afterText {
    font-size: 1.25rem;
    margin-top: -0.5em;
    line-height: 1;
    -webkit-transform: translateY(0.5rem);
    transform: translateY(0.5rem);
  }
}
.c-price__afterPrice {
  font-size: 6.8vw;
  font-weight: 500;
  display: block;
  text-align: center;
  line-height: 1.5;
  letter-spacing: initial;
}

@media screen and (min-width: 768px) {
  .c-price__afterPrice {
    font-size: 2.6875rem;
    line-height: 1.3;
  }
}
.c-price__afterPrice .u-small {
  font-size: 1rem;
  display: inline-block;
  font-weight: 500;
  text-align: center;
}

@media screen and (min-width: 768px) {
  .c-price__afterPrice .u-small {
    font-size: 1.625rem;
  }
}
.c-price__afterTotal {
  font-size: 4.2vw;
  font-weight: 500;
  display: block;
  text-align: center;
  letter-spacing: initial;
}

@media screen and (min-width: 768px) {
  .c-price__afterTotal {
    line-height: 1;
    font-size: 1.375rem;
  }
}
.c-price__beforeTotal .u-small {
  font-size: 2.5vw;
  display: inline-block;
  margin-top: 0.4em;
}

.c-price__afterTotal .u-small {
  font-size: 2.5vw;
  display: inline-block;
}

@media screen and (min-width: 768px) {
  .c-price__afterTotal .u-small {
    font-size: 1rem;
  }
}
@media screen and (min-width: 768px) {
  .c-price__beforeTotal .u-small {
    font-size: 0.8rem;
    margin-top: 0.2em;
  }
}
.c-price__box.--red {
  border: 3px solid #c1272d;
  background-color: #f6dfdf;
  position: relative;
}

.c-price__box.--red::before {
  content: "";
  display: block;
  background: url(../images/price_img-sp.svg) no-repeat center/contain;
  width: 2rem;
  height: 2.8125rem;
  position: absolute;
  top: -0.5em;
  left: -0.5em;
}

@media screen and (min-width: 768px) {
  .c-price__box.--red::before {
    background: url(../images/price_img-pc.svg) no-repeat center/contain;
    width: 7.1rem;
    height: 4rem;
    top: -0.4375rem;
    left: 1.5625rem;
  }
}
/*.c-price__box.--red .c-price__before {
  padding-left: 0.625rem;
}*/

@media screen and (min-width: 768px) {
  .c-price__box.--red .c-price__before {
    margin-top: 2.1875rem;
  }
}
.c-price__box.--border {
  border: 3px solid #e9e5ee;
}

.c-price__before {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: .3em;
}

@media screen and (min-width: 768px) {
  .c-price__before {
    padding-left: 0;
  }
}
.c-price__beforeText img {
  margin-left: 0;
}

.c-price__beforePrice {
  text-align: left;
}

@media screen and (min-width: 768px) {
  .c-price__beforePrice {
    text-align: center;
  }
}
.c-price__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 0.625rem;
}

@media screen and (min-width: 768px) {
  .c-price__head {
    padding-left: 15rem;
    width: 100%;
    margin-top: 0.625rem;
  }
}
.c-price__headLabel {
  font-size: 0.8125rem;
  color: #fff;
  background-color: #bdd8dd;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 0.3125rem;
  -webkit-writing-mode: vertical-lr;
  -ms-writing-mode: tb-lr;
  writing-mode: vertical-lr;
  letter-spacing: 0.1em;
}

@media screen and (min-width: 768px) {
  .c-price__headLabel {
    font-size: 1rem;
    font-weight: bold;
    letter-spacing: 0.2em;
  }
}
.c-price__headLists {
  padding: 0.75rem 0.9375rem;
  background-color: rgba(189, 216, 221, 0.2);
  width: 100%;
}

@media screen and (min-width: 768px) {
  .c-price__headLists {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    padding: 1.125rem;
  }
}
.c-price__headList {
  font-size: 0.8rem;
  font-weight: 400;
  line-height: 1.6;
  padding-left: 0.625rem;
  position: relative;
}

@media screen and (min-width: 768px) {
  .c-price__headList {
    font-size: 1rem;
    line-height: 1.9230769231;
  }
}
.c-price__headList::before {
  content: "";
  display: block;
  position: absolute;
  top: 0.6rem;
  left: 0;
  width: 0.1875rem;
  height: 0.1875rem;
  border-radius: 50%;
  background-color: #333;
}

@media screen and (min-width: 768px) {
  .c-price__headList::before {
    content: "";
    position: absolute;
    top: 0.8em;
  }
}
.c-premium__note {
  font-size: .8rem;
  font-weight: 400;
  margin-top: 1rem;
  display: block;
  text-align: left;
}
.p-personal__head,
.p-personal__caption {
  text-align: left;
}
.p-personal__inner {
  padding: 0;
}