:root {
  --japanese-font: "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo;
  --english-font: "Josefin Sans";
  --import-font-family: var(--english-font), var(--japanese-font);
  --base-color: #111111;
  --pink: #eb51c2;
  --wrapper-width: 1110px;
}

*,
:after,
:before {
  box-sizing: border-box;
  min-inline-size: 0;
  border-style: solid;
  border-width: 0;
}

:where(html) {
  line-height: 1.15;
  text-align: start;
  word-break: normal;
  overflow-wrap: anywhere;
  touch-action: manipulation;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
  line-break: strict;
  hyphens: auto;
  hanging-punctuation: first last allow-end;
}

:where(html):where(:lang(ja)) {
  font-kerning: none;
}

:where(body) {
  min-block-size: 100svb;
  margin: 0;
}

:where(p, table, blockquote, address, pre, iframe, form, figure, ul, ol, dl) {
  margin: 0;
}

:where(h1, h2, h3, h4, h5, h6) {
  margin: 0;
  font-size: inherit;
  font-weight: inherit;
}

:where(ul, ol):where([role=list]) {
  padding: 0;
  list-style: none;
}

:where(dt) {
  font-weight: 700;
}

:where(dd) {
  margin-inline-start: 0;
}

:where(a):where(:link, :visited, :hover, :active) {
  color: inherit;
  text-decoration: none;
  background-color: transparent;
}

:where(b, strong) {
  font-weight: 700;
}

:where(small) {
  font-size: 0.8em;
}

:where(i, cite, em, address):where(:lang(ja) *) {
  font-style: normal;
}

:where(pre, code) {
  font-family: monospace;
  font-size: inherit;
}

:where(img, svg) {
  max-inline-size: 100%;
  block-size: auto;
}

body {
  font-family: var(--import-font-family);
  color: var(--base-font-color);
  overflow-x: hidden;
  font-optical-sizing: auto;
  font-feature-settings: "palt";
}

.l-header {
  z-index: 10;
  width: 100%;
  height: 60px;
  position: fixed;
}
@media (width >= 765px) {
  .l-header {
    height: 80px;
  }
}
.l-header .l-header__wrapper {
  height: 100%;
  padding-left: 20px;
}
@media (width >= 765px) {
  .l-header .l-header__wrapper {
    padding-left: 35px;
  }
}
.l-header .l-header__container {
  display: flex;
  align-items: center;
  height: 100%;
}
.l-header .l-header__logo-link:hover {
  opacity: 0.7;
  transition: 0.7s;
}
.l-header .l-header__logo-inner {
  display: block;
  height: 12px;
}
@media (width >= 765px) {
  .l-header .l-header__logo-inner {
    height: 24px;
  }
}

.c-image-fluid {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.c-button {
  font-size: 13px;
  font-weight: 600;
  line-height: 13px;
  letter-spacing: 0.05em;
  text-align: center;
  background-color: var(--pink);
  color: #ffffff;
  padding: 20px 26px;
  display: block;
  width: fit-content;
  border-radius: 50px;
}
.c-button[data-size=full] {
  width: 100%;
}
@media (width >= 765px) {
  .c-button {
    font-size: 20px;
    line-height: 20px;
    padding: 32px 49px 28px 49px;
  }
}
.c-button:hover {
  background-color: var(--base-color);
  transition: 0.7s;
}

.c-person-card {
  background-color: #ffffff;
  box-shadow: 0px 10px 17px 0px rgba(0, 0, 0, 0.06);
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
@media (width >= 765px) {
  .c-person-card {
    height: 100%;
  }
}
.c-person-card .c-person-card__image-inner {
  display: block;
}
@media (width >= 765px) {
  .c-person-card .c-person-card__image-inner {
    margin-top: -3px;
  }
}
.c-person-card .c-person-card__text-inner {
  padding: 20px;
}
.c-person-card .c-person-card__text {
  font-size: 14px;
  font-weight: 300;
  line-height: 25.5px;
}
@media (width >= 765px) {
  .c-person-card .c-person-card__text {
    font-size: 15px;
  }
}

.c-price-card {
  text-align: center;
  padding: 34px 20px;
  position: relative;
}
.c-price-card .c-price-card__course-inner {
  font-size: 40px;
  font-weight: 400;
  line-height: 46px;
}
.c-price-card .c-price-card__course {
  font-size: 26px;
  font-weight: 600;
  line-height: 29.9px;
  color: var(--pink);
  display: block;
}
.c-price-card .c-price-card__price-inner {
  margin-top: 10px;
}
.c-price-card .c-price-card__price {
  font-size: 40px;
  font-weight: 400;
  line-height: 46px;
}
.c-price-card .c-price-card__entryfee {
  font-size: 16px;
  font-weight: 300;
  line-height: 18.4px;
  color: #111111;
  display: block;
}
.c-price-card .c-price-card__container {
  margin-top: 20px;
}
.c-price-card .c-price-card__list {
  border-top: 1px solid #d9d9d9;
  padding-top: 30px;
}
.c-price-card .c-price-card__list:not(:first-of-type) {
  margin-top: 30px;
}
.c-price-card .c-price-card__list-title {
  font-size: 18px;
  font-weight: 300;
  line-height: 20.7px;
}
.c-price-card .c-price-card__list-intro {
  font-size: 16px;
  font-weight: 600;
  line-height: 18.4px;
  display: block;
}
.c-price-card .c-price-card__pickup {
  font-size: 20px;
  font-weight: 700;
  line-height: 20px;
  color: var(--pink);
  padding: 10px 0;
  background-color: #ffffff;
  border: solid 2px;
  border-radius: 50em;
  display: block;
  width: 78%;
  margin-inline: auto;
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translate(-50%, 0);
}
.c-price-card .c-price-card__pickup:has(.c-price-card__pickup) {
  margin-top: 19.68px;
}

.c-faq-card {
  padding: 0px 0px 18.5px 0px;
  border-bottom: 1px solid;
  border-color: #cccccc;
}
.c-faq-card:not(:first-of-type) {
  padding: 19.5px 0px 18.5px 0px;
}
.c-faq-card[open] .c-faq-card__question-icon {
  rotate: 0deg;
}
.c-faq-card .c-faq-card__question {
  position: relative;
  display: flex;
  align-items: center;
  column-gap: 15px;
}
.c-faq-card .c-faq-card__question::-webkit-details-marker {
  display: none;
}
.c-faq-card .c-faq-card__question:hover {
  cursor: pointer;
}
.c-faq-card .c-faq-card__label {
  display: inline-block;
  font-size: 26px;
  font-weight: 700;
  color: var(--pink);
  vertical-align: top;
  line-height: 29.9px;
}
.c-faq-card .c-faq-card__label[data-faq=answer] {
  width: 8%;
  text-align: center;
}
.c-faq-card .c-faq-card__question-title {
  font-size: 15px;
  font-weight: 300;
  line-height: 25.5px;
}
.c-faq-card .c-faq-card__question-icon {
  aspect-ratio: 1/1;
  width: 24px;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  rotate: 180deg;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-block: auto;
}
.c-faq-card .c-faq-card__answer-inner {
  padding-top: 20px;
  display: flex;
  align-items: start;
  column-gap: 14px;
}
@media (width >= 765px) {
  .c-faq-card .c-faq-card__answer-inner {
    column-gap: 15px;
  }
}
.c-faq-card .c-faq-card__text {
  font-size: 15px;
  font-weight: 300;
  line-height: 26px;
  width: 84%;
}

.p-front-fv {
  position: relative;
}
.p-front-fv .p-front-fv__wrapper {
  max-width: var(--wrapper-width);
  margin-inline: auto;
  padding: 0 20px;
}
.p-front-fv .p-front-fv__hgroup {
  padding-top: 150px;
}
@media (width >= 765px) {
  .p-front-fv .p-front-fv__hgroup {
    padding-top: 220px;
  }
}
.p-front-fv .p-front-fv__image-inner {
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
  height: 410px;
  width: 70%;
}
@media (width >= 765px) {
  .p-front-fv .p-front-fv__image-inner {
    height: 680px;
  }
}
.p-front-fv .p-front-fv__image-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0px 0px 0px 50px;
}
@media (width >= 765px) {
  .p-front-fv .p-front-fv__image-inner img {
    border-radius: 0px 0px 0px 90px;
  }
}
.p-front-fv .p-front-fv__title {
  font-style: italic;
  font-weight: 400;
  width: fit-content;
}
.p-front-fv .p-front-fv__title-90 {
  font-size: 41.25px;
  line-height: 41.25px;
  display: block;
  background-color: #fff;
}
@media (width >= 765px) {
  .p-front-fv .p-front-fv__title-90 {
    font-size: 90px;
    line-height: 90px;
  }
}
.p-front-fv .p-front-fv__title-85 {
  font-size: 41.25px;
  line-height: 41.25px;
  background-color: #fff;
}
@media (width >= 765px) {
  .p-front-fv .p-front-fv__title-85 {
    font-size: 85px;
    line-height: 85px;
  }
}
.p-front-fv .p-front-fv__title-85.pink {
  color: var(--pink);
}
.p-front-fv .p-front-fv__subtitle-inner {
  margin-top: 11px;
}
@media (width >= 765px) {
  .p-front-fv .p-front-fv__subtitle-inner {
    margin-top: 20px;
  }
}
.p-front-fv .p-front-fv__subtitle {
  font-size: 13.13px;
  font-weight: 600;
  line-height: 13.13px;
  background-color: #fff;
  padding-top: 5px;
}
@media (width >= 765px) {
  .p-front-fv .p-front-fv__subtitle {
    font-size: 28px;
    line-height: 28px;
  }
}
.p-front-fv .p-front-fv__button-inner {
  margin-top: 20px;
}
@media (width >= 765px) {
  .p-front-fv .p-front-fv__button-inner {
    margin-top: 30px;
  }
}
.p-front-fv .p-front-fv__bottom-container {
  margin-top: 56px;
}
@media (width >= 765px) {
  .p-front-fv .p-front-fv__bottom-container {
    margin-top: 108px;
  }
}
.p-front-fv .p-front-fv__copy {
  font-style: italic;
  font-size: 56px;
  font-weight: 700;
  line-height: 56px;
  color: var(--pink);
  text-align: center;
}
@media (width >= 765px) {
  .p-front-fv .p-front-fv__copy {
    font-size: 108px;
    line-height: 108px;
  }
}
.p-front-fv .p-front-fv__sub-copy {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5px;
  letter-spacing: 0.1em;
  text-align: center;
  margin-top: 10px;
}
@media (width >= 765px) {
  .p-front-fv .p-front-fv__sub-copy {
    font-size: 32px;
    line-height: 37px;
  }
}
.p-front-fv .p-front-fv__sub-copy .pink {
  color: var(--pink);
}
.p-front-fv .p-front-fv__text-inner {
  margin-top: 26px;
}
@media (width >= 765px) {
  .p-front-fv .p-front-fv__text-inner {
    margin-top: 23px;
  }
}
.p-front-fv .p-front-fv__text {
  font-family: Hiragino Kaku Gothic ProN;
  font-size: 15px;
  font-weight: 300;
  line-height: 32px;
}
@media (width >= 765px) {
  .p-front-fv .p-front-fv__text {
    font-size: 16px;
    line-height: 32px;
    text-align: center;
  }
}

.p-front-intro {
  margin-top: 32px;
}
.p-front-intro .p-front-intro__wrapper {
  padding: 0 20px;
}
@media (width >= 765px) {
  .p-front-intro .p-front-intro__wrapper {
    padding: unset;
  }
}
.p-front-intro .p-front-intro__container {
  position: relative;
}
.p-front-intro .p-front-intro__container:last-of-type {
  margin-top: 30px;
}
@media (width >= 765px) {
  .p-front-intro .p-front-intro__container:last-of-type {
    margin-top: 100px;
  }
}
.p-front-intro .p-front-intro__column {
  width: 100vw;
  margin: 0 calc(50% - 50vw);
}
@media (width >= 765px) {
  .p-front-intro .p-front-intro__column {
    width: auto;
  }
  .p-front-intro .p-front-intro__column.right {
    margin-left: auto;
    width: fit-content;
  }
}
.p-front-intro .p-front-intro__column:last-of-type {
  background-color: #fff;
  width: 100%;
  border-radius: 8px;
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
  padding: 40px 30px 30px 30px;
  margin-inline: auto;
  margin-top: -1em;
  position: relative;
}
@media (width >= 765px) {
  .p-front-intro .p-front-intro__column:last-of-type {
    width: 38%;
    right: 1.6%;
    bottom: -1%;
    position: absolute;
    padding: 60px;
  }
}
@media (width >= 765px) {
  .p-front-intro .p-front-intro__column.left {
    left: 1.6%;
  }
}
.p-front-intro .p-front-intro__image-inner {
  width: 100%;
  display: block;
}
@media (width >= 765px) {
  .p-front-intro .p-front-intro__image-inner {
    width: 950px;
  }
}
.p-front-intro .p-front-intro__subtitle {
  color: var(--pink);
  font-size: 18px;
  font-weight: 400;
  line-height: 18px;
}
@media (width >= 765px) {
  .p-front-intro .p-front-intro__subtitle {
    font-size: 24px;
    line-height: 27.6px;
  }
}
.p-front-intro .p-front-intro__subtitle.green {
  color: #00b21b;
}
.p-front-intro .p-front-intro__title {
  font-family: "Kaku Gothic ProN";
  font-size: 22px;
  font-weight: 600;
  line-height: 33px;
  margin-top: 20px;
}
@media (width >= 765px) {
  .p-front-intro .p-front-intro__title {
    line-height: 48px;
    font-size: 32px;
  }
}
.p-front-intro .p-front-intro__inner {
  margin-top: 15px;
}
.p-front-intro .p-front-intro__text {
  font-size: 15px;
  font-weight: 300;
  line-height: 23.68px;
}
@media (width >= 765px) {
  .p-front-intro .p-front-intro__text {
    font-size: 14px;
    line-height: 27px;
    letter-spacing: 0.01em;
  }
}
.p-front-intro .p-front-intro__button-inner {
  margin-top: 40px;
  width: 80%;
  margin-inline: auto;
}
@media (width >= 765px) {
  .p-front-intro .p-front-intro__button-inner {
    margin-top: 70px;
  }
}

.p-front-trainer {
  margin-top: 40px;
}
@media (width >= 765px) {
  .p-front-trainer {
    margin-top: 60px;
  }
}
.p-front-trainer .p-front-trainer__wave {
  transform: translateY(6px);
}
.p-front-trainer .p-front-trainer__wave[data-rotate=rotate] {
  rotate: 180deg;
}
.p-front-trainer .p-front-trainer__bg {
  background-color: var(--pink);
  padding: 40px 0;
}
.p-front-trainer .p-front-trainer__wrapper {
  max-width: 1110px;
  margin-inline: auto;
  padding: 0 30px;
}
@media (width >= 765px) {
  .p-front-trainer .p-front-trainer__wrapper {
    padding: unset;
  }
}
.p-front-trainer .p-front-trainer__title {
  font-size: 14px;
  font-weight: 600;
  line-height: 14px;
  color: #ffffff;
}
@media (width >= 765px) {
  .p-front-trainer .p-front-trainer__title {
    font-size: 20px;
    line-height: 20px;
  }
}
.p-front-trainer .p-front-trainer__title-english {
  font-size: 40px;
  font-weight: 400;
  line-height: 40px;
  display: block;
  margin-bottom: 10px;
}
@media (width >= 765px) {
  .p-front-trainer .p-front-trainer__title-english {
    font-size: 64px;
    line-height: 64px;
  }
}
.p-front-trainer .p-front-trainer__container {
  margin-top: 30px;
}
@media (width >= 765px) {
  .p-front-trainer .p-front-trainer__container {
    margin-top: 33px;
  }
}
.p-front-trainer .p-front-trainer__tabs {
  display: flex;
  justify-content: center;
}
.p-front-trainer .p-front-trainer__button-inner {
  width: 50%;
}
.p-front-trainer .p-front-trainer__button {
  font-size: 16px;
  font-weight: 600;
  line-height: 20.7px;
  color: #ffffff;
  background: transparent;
  padding: 3px 0 12px;
  width: 100%;
}
@media (width >= 765px) {
  .p-front-trainer .p-front-trainer__button {
    font-size: 18px;
  }
}
.p-front-trainer .p-front-trainer__button.is-active {
  border-bottom: 2px solid;
}
.p-front-trainer .p-front-trainer__tabs-container {
  display: flex;
  margin-top: 20px;
  gap: 15px;
  flex-wrap: wrap;
}
.p-front-trainer .p-front-trainer__column {
  width: 100%;
}
@media (width >= 765px) {
  .p-front-trainer .p-front-trainer__column {
    width: calc((100% - 15px) / 3);
  }
}
.p-front-studio {
  margin-top: 40px;
}
@media (width >= 765px) {
  .p-front-studio {
    margin-top: 60px;
  }
}
.p-front-studio .p-front-studio__wrapper {
  padding: 0 30px;
  max-width: 1110px;
  margin-inline: auto;
}
@media (width >= 765px) {
  .p-front-studio .p-front-studio__wrapper {
    padding: unset;
  }
}
.p-front-studio .p-front-studio__title {
  font-size: 14px;
  font-weight: 600;
  line-height: 14px;
  color: var(--pink);
}
@media (width >= 765px) {
  .p-front-studio .p-front-studio__title {
    font-size: 20px;
    line-height: 20px;
  }
}
.p-front-studio .p-front-studio__title-english {
  font-size: 40px;
  font-weight: 400;
  line-height: 40px;
  display: block;
  color: #333333;
  margin-bottom: 10px;
}
@media (width >= 765px) {
  .p-front-studio .p-front-studio__title-english {
    line-height: 64px;
    font-size: 64px;
    margin-bottom: unset;
  }
}
.p-front-studio .p-front-studio__container {
  margin-top: 30px;
}
.p-front-price {
  margin-top: 20px;
}
@media (width >= 765px) {
  .p-front-price {
    margin-top: 60px;
  }
}
.p-front-price .p-front-price__wave {
  transform: translateY(6px);
}
@media (width >= 765px) {
  .p-front-price .p-front-price__wave {
    transform: translateY(12px);
  }
}
.p-front-price .p-front-price__wave[data-rotate=rotate] {
  rotate: 180deg;
  transform: translateY(10px);
}
.p-front-price .p-front-price__wrapper {
  background-color: var(--pink);
}
.p-front-price .p-front-price__hgroup {
  padding-left: 30px;
}
.p-front-price .p-front-price__title {
  font-size: 14px;
  font-weight: 600;
  line-height: 14px;
  color: #ffffff;
}
@media (width >= 765px) {
  .p-front-price .p-front-price__title {
    font-size: 20px;
    line-height: 20px;
  }
}
.p-front-price .p-front-price__title-english {
  font-size: 40px;
  line-height: 40px;
  font-weight: 400;
  color: #ffffff;
  display: block;
}
@media (width >= 765px) {
  .p-front-price .p-front-price__title-english {
    font-size: 64px;
    line-height: 64px;
  }
}
.p-front-price .p-front-price__container {
  display: flex;
  margin-top: 30px;
  gap: 15px;
  max-width: 1110px;
  overflow-x: scroll;
  padding: 40px 10px 40px 20px;
  position: relative;
}
@media (width >= 765px) {
  .p-front-price .p-front-price__container {
    margin-inline: auto;
    overflow-x: unset;
    padding: unset;
  }
}
.p-front-price .p-front-price__column {
  flex-shrink: 0;
  background-color: #ffffff;
  font-size: 15px;
  font-weight: 300;
  line-height: 25.5px;
  border-radius: 10px 10px 10px 10px;
  box-shadow: 0px 10px 17px 0px rgba(0, 0, 0, 0.06);
  width: 360px;
}
.p-front-price .p-front-price__xscroll {
  padding: 23px 10px;
  border-radius: 4px;
  background: rgba(0, 0, 0, 0.6);
  height: 74px;
  position: absolute;
  z-index: 5;
  top: 0;
  bottom: 0;
  margin: auto;
  right: 3px;
  width: fit-content;
}
@media (width >= 765px) {
  .p-front-price .p-front-price__xscroll {
    display: none;
  }
}
.p-front-price .p-front-price__xscroll .p-front-price__xscroll-icon {
  text-align: center;
  display: block;
}
.p-front-price .p-front-price__xscroll .p-front-price__xscroll-text {
  color: #fff;
  font-size: 12px;
  font-weight: 300;
  line-height: 13.8px;
  text-align: center;
  display: block;
}

.p-front-faq .p-front-faq__wrapper {
  max-width: 1110px;
  margin-inline: auto;
  padding: 0 30px;
}
@media (width >= 765px) {
  .p-front-faq .p-front-faq__wrapper {
    padding: unset;
  }
}
.p-front-faq .p-front-faq__title {
  font-size: 14px;
  font-weight: 600;
  line-height: 14px;
  color: var(--pink);
}
@media (width >= 765px) {
  .p-front-faq .p-front-faq__title {
    font-size: 20px;
    line-height: 20px;
  }
}
.p-front-faq .p-front-faq__title-english {
  font-size: 40px;
  font-weight: 400;
  line-height: 40px;
  color: #333333;
  display: block;
}
@media (width >= 765px) {
  .p-front-faq .p-front-faq__title-english {
    font-size: 64px;
    line-height: 64px;
  }
}
.p-front-faq .p-front-faq__container {
  margin-top: 30px;
}

.p-front-cta {
  margin-top: 50px;
}
@media (width >= 765px) {
  .p-front-cta {
    margin-top: 70px;
  }
}
.p-front-cta .p-front-cta__image-inner {
  display: block;
  height: 180px;
}
@media (width >= 765px) {
  .p-front-cta .p-front-cta__image-inner {
    height: 370px;
  }
}
.p-front-cta .p-front-cta__image-inner img {
  object-fit: cover;
}
.p-front-cta .p-front-cta__join {
  background-color: var(--pink);
  padding: 30px 0px;
}
@media (width >= 765px) {
  .p-front-cta .p-front-cta__join {
    padding: 50px 0px;
  }
}
.p-front-cta .p-front-cta__title {
  font-size: 26px;
  font-weight: 400;
  line-height: 26px;
  text-align: center;
  color: #ffffff;
}
@media (width >= 765px) {
  .p-front-cta .p-front-cta__title {
    font-size: 64px;
    line-height: 73.6px;
  }
}
.p-front-cta .p-front-cta__button-inner {
  margin-top: 10px;
  margin-inline: auto;
  width: fit-content;
}
@media (width >= 765px) {
  .p-front-cta .p-front-cta__button-inner {
    margin-top: 15px;
  }
}
.p-front-cta .p-front-cta__button {
  padding: 20px 61.5px;
  background-color: #fff;
  border-radius: 50em;
  display: inline-block;
  color: var(--pink);
  font-size: 13px;
  font-weight: 600;
  line-height: 13px;
  letter-spacing: 0.05em;
}
@media (width >= 765px) {
  .p-front-cta .p-front-cta__button {
    padding: 30px 44px;
    font-size: 20px;
    line-height: 20px;
  }
}

.l-footer {
  height: 223px;
  background-color: #111111;
}
.l-footer .l-footer__wrapper {
  max-width: 1110px;
  margin-inline: auto;
  height: 100%;
}
.l-footer .l-footer__container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: inherit;
}
.p-page-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
}

.c-page-top-button {
  aspect-ratio: 1/1;
  width: 40px;
  background-color: #fff;
  border-radius: 50%;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.2);
  display: inline-block;
}
@media (width >= 765px) {
  .c-page-top-button {
    width: 80px;
  }
}
.c-page-top-button:hover {
  cursor: pointer;
  opacity: 0.8;
}
.c-page-top-button .c-page-top-button__icon {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 12px;
  margin-inline: auto;
}
@media (width >= 765px) {
  .c-page-top-button .c-page-top-button__icon {
    width: auto;
  }
}
.c-page-top-button .c-page-top-button__text {
  display: none;
}

.u-zabuton {
  padding-bottom: 0.4rem;
  background: linear-gradient(transparent 60%, rgba(147, 39, 143, 0.2) 60%);
  -webkit-box-decoration-break: clone;
}
