@charset "UTF-8";
/* ======================================================================
 reset
====================================================================== */
/*
  Josh's Custom CSS Reset
  https://www.joshwcomeau.com/css/custom-css-reset/
*/
*, *::before, *::after {
  box-sizing: border-box;
}

* {
  margin: 0;
}

html {
  overflow-y: scroll;
}

body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}

input, button, textarea, select {
  font: inherit;
}

p, h1, h2, h3, h4, h5, h6 {
  overflow-wrap: break-word;
}

ul {
  list-style: none;
  padding-left: 0;
}

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video,
input, select, textarea {
  box-sizing: border-box;
}

html {
  /* Sets a specific default `font-size` for user with `rem` type scales.*/
  font-size: 62.5%;
  /* Changes the default tap highlight to be completely transparent in iOS.*/
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

body {
  color: #222222;
  line-height: 1.6;
  background: #fff;
  font-family: "Noto Sans JP", 游ゴシック体, "Yu Gothic", YuGothic, "ヒラギノ角ゴシック Pro", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", Avenir, "Helvetica Neue", Helvetica, Arial, Verdana, Roboto, sans-serif;
  font-weight: 400;
  word-wrap: break-word;
  word-break: break-all;
  min-width: 1200px;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  body {
    min-width: inherit;
  }
}

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

strong {
  font-weight: bold;
}

a:link {
  color: #222222;
  text-decoration: none;
  cursor: pointer;
}
a:visited {
  color: #222222;
  text-decoration: none;
}
a:hover {
  color: #222222;
  text-decoration: none;
}
a:active {
  color: #222222;
  text-decoration: none;
}

a[href^=tel] {
  color: #222222;
}

:focus-ring {
  outline: none;
}

.contain {
  width: 1200px;
  min-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* input */
input, textarea, select {
  display: block;
  margin: 0;
  padding: 0;
  outline: none;
  border: none;
  -o-border-image: none;
     border-image: none;
  background: transparent;
  font-family: inherit;
  border-radius: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
input::-ms-expand, textarea::-ms-expand, select::-ms-expand {
  display: none;
}

textarea {
  resize: vertical;
}

input:-moz-placeholder-shown, textarea:-moz-placeholder-shown {
  color: #222222;
}

input:placeholder-shown, textarea:placeholder-shown {
  color: #222222;
}
input::-moz-placeholder, textarea::-moz-placeholder {
  color: #222222;
}
input::placeholder, textarea::placeholder {
  color: #222222;
}
input:focus:-moz-placeholder-shown, textarea:focus:-moz-placeholder-shown {
  color: #222222;
}
input:focus:placeholder-shown, textarea:focus:placeholder-shown {
  color: #222222;
}
input:focus::-moz-placeholder, textarea:focus::-moz-placeholder {
  color: #222222;
}
input:focus::placeholder, textarea:focus::placeholder {
  color: #222222;
}

/* ======================================================================
 layout
====================================================================== */
/* =================================
 l-footer
================================= */
.l-footer {
  padding-block: 48px;
}
@media screen and (max-width: 768px) {
  .l-footer {
    padding-block: calc(72 /750*100vw) calc(220 /750*100vw);
  }
}
.l-footer__logo {
  display: flex;
  justify-content: center;
  margin-bottom: 32px;
}
@media screen and (max-width: 768px) {
  .l-footer__logo {
    width: calc(234 /750*100vw);
    margin-bottom: calc(58 /750*100vw);
    margin-inline: auto;
  }
}
.l-footer__nav {
  display: flex;
  justify-content: center;
  margin-bottom: 50px;
}
@media screen and (max-width: 768px) {
  .l-footer__nav {
    display: block;
    margin-bottom: calc(76 /750*100vw);
  }
}
.l-footer__nav li {
  font-size: 1.5rem;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .l-footer__nav li {
    font-size: calc(30 /750*100vw);
    text-align: center;
  }
}
@media screen and (max-width: 768px) {
  .l-footer__nav li + li {
    margin-top: calc(40 /750*100vw);
  }
}
.l-footer__nav li + li:before {
  content: "｜";
  margin-inline: 1em;
}
@media screen and (max-width: 768px) {
  .l-footer__nav li + li:before {
    display: none;
  }
}
.l-footer__copy {
  font-size: 1.2rem;
  color: #9fa0a0;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .l-footer__copy {
    font-size: calc(22 /750*100vw);
  }
}

.l-footer_icon {
  text-align: center;
}

.l-footer .insta {
  display: inline-block;
  margin-bottom: 40px;
}

.l-footer .insta img {
  width: 30px;
  height: auto;
  margin: auto;
}

/* ======================================================================
 layout
====================================================================== */
/* =================================
 l-content__size
================================= */
.l-content__size-sp-1 {
  padding: 0 4%;
}
@media screen and (min-width: 1025px) {
  .l-content__size-sp-1 {
    max-width: 1200px;
    margin: 0 auto;
  }
}

.l-content__size-pc-1 {
  width: 1200px;
  margin: 0 auto;
  padding-inline: 25px;
}
@media screen and (max-width: 768px) {
  .l-content__size-pc-1 {
    width: auto;
    padding: 0 calc(30 /750*100vw);
  }
}

/* =================================
 l-header
================================= */
.l-header {
  z-index: 999;
  margin-bottom: -60px;
}
@media screen and (max-width: 768px) {
  .l-header {
    display: none;
  }
}
.l-header__top {
  display: flex;
  justify-content: space-between;
  padding-inline: 30px;
}
.l-header__top-left {
  display: flex;
  align-items: center;
}
.l-header__txt {
  font-size: 1.6rem;
  font-weight: 500;
}
.l-header__line {
  margin-top: 21px;
  display: flex;
  align-items: center;
  gap: 0 20px;
}
.l-header__line a {
  border: 3px solid #3ac3dc;
  background: linear-gradient(to bottom, #3ac3dc, #3ac3dc);
  box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.3);
  color: #fff;
  font-size: 2rem;
  font-weight: 700;
  display: flex;
  border-radius: 10px;
  position: relative;
  width: 300px;
  height: 60px;
  padding-left: 16px;
  padding-right: 16px;
  transition: 0.2s background;
}
.l-header__line a:hover {
  background: linear-gradient(to top, #3ac3dc, #3ac3dc);
}

.l-header__line a.out_link {
  width: auto;
}

.l-header__line .insta {
  border: none;
  background: none;
  box-shadow: none;
  display: block;
  width: auto;
  height: auto;
}

.l-header__line .insta:hover {
  background: none;
  opacity: 0.8;
}

.l-header__line .insta img {
  width: 30px;
  height: auto;
}

.l-header__line-balloon {
  position: absolute;
  top: -13px;
  left: 50%;
  background: #fff;
  border: 3px solid #06c755;
  border-radius: 13px;
  margin-left: -60px;
  color: #01c74b;
  width: 120px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  font-weight: 500;
}
.l-header__line-flex {
  display: flex;
  align-items: center;
}
.l-header__line-flex i {
  margin-left: 40px;
}

.l-header__line-flex i:before {
  content: "";
  display: inline-block;
  width: 15px;
  height: 15px;
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
  transform: rotate(45deg);
}

.l-header__bottom {
  background: rgba(255, 255, 255, 0.8);
  position: relative;
  z-index: 1;
}
.l-header__nav {
  display: flex;
  justify-content: center;
  margin-inline: -30px;
}
.l-header__nav a {
  height: 60px;
  display: flex;
  align-items: center;
  padding-inline: 30px;
  font-size: 1.6rem;
  font-weight: 500;
  transition: 0.2s color;
}
.l-header__nav a:hover {
  background: #0db9d9;
  color: #fff;
  transition: 0.2s background;
}
.l-header__nav-access a {
  /* background: #0db9d9;
  color: #fff;
  transition: 0.2s background; */
}
.l-header__nav-access a:hover {
  background: #16a5c0;
  color: #fff;
}

/* =================================
 l-header__sp
================================= */
.l-header__sp {
  z-index: 999;
  display: none;
  position: relative;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .l-header__sp {
    display: block;
  }
}
.l-header__sp-top {
  height: calc(120 /750*100vw);
}
.l-header__sp-logo {
  width: calc(234 /750*100vw);
  margin-inline: auto;
  padding-top: calc(10 /750*100vw);
}
.l-header__sp-toggle {
  position: relative;
  cursor: pointer;
  width: calc(120 /750*100vw);
  height: calc(120 /750*100vw);
  background: #49cae2;
}
.l-header__sp-toggle-wrap {
  position: absolute;
  top: 0;
  right: 0;
}
.l-header__sp-toggle span {
  width: calc(50 /750*100vw);
  height: 2px;
  background: #fff;
  display: block;
  position: absolute;
  left: 10px;
  transition: transform 0.6s ease-in-out, top 0.5s ease;
}
@media screen and (max-width: 768px) {
  .l-header__sp-toggle span {
    left: calc(35 /750*100vw);
  }
}
.l-header__sp-toggle span:nth-of-type(1) {
  top: calc(44 /750*100vw);
}
.l-header__sp-toggle span:nth-of-type(2) {
  top: calc(59 /750*100vw);
}
.l-header__sp-toggle span:nth-of-type(3) {
  top: calc(74 /750*100vw);
}
.l-header__sp-bottom {
  background: #d4f0f5;
  padding-block: calc(20 /750*100vw);
}
.l-header__sp-txt {
  font-size: calc(26 /750*100vw);
  font-weight: 500;
  text-align: center;
}
.l-header__sp.active {
  position: fixed;
  top: 0;
  left: 0;
  background: #fff;
}
.l-header__sp.active .l-header__sp-toggle span:nth-of-type(1) {
  top: calc(59 /750*100vw);
  transform: rotate(45deg);
}
.l-header__sp.active .l-header__sp-toggle span:nth-of-type(2) {
  top: calc(59 /750*100vw);
  width: 0;
  left: 50%;
}
.l-header__sp.active .l-header__sp-toggle span:nth-of-type(3) {
  top: calc(59 /750*100vw);
  transform: rotate(-45deg);
}

/* =================================
 l-menu__sp
================================= */
.l-menu__sp {
  z-index: 998;
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  height: 100svh;
  overflow-y: auto;
  background: #fff;
  padding-top: calc(314 /750*100vw);
}
.l-menu__sp-nav {
  text-align: center;
  font-size: calc(40 /750*100vw);
  font-weight: 500;
}
.l-menu__sp-nav li {
  margin-bottom: calc(50 /750*100vw);
}
.l-menu__sp-line {
  margin-top: calc(85 /750*100vw);
}
.l-menu__sp-line a {
  border: 3px solid #3ac3dc;
  background: linear-gradient(to bottom, #3ac3dc, #3ac3dc);
  box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.3);
  color: #fff;
  font-size: calc(30 /750*100vw);
  font-weight: 700;
  display: flex;
  border-radius: calc(10 /750*100vw);
  position: relative;
  width: calc(690 /750*100vw);
  height: calc(110 /750*100vw);
  padding-left: calc(15 /750*100vw);
  margin-inline: auto;
}

.l-menu__sp-line a.out_link {
  margin-bottom: 20px;
}

.l-menu__sp-line-balloon {
  position: absolute;
  top: calc(-21 /750*100vw);
  left: 50%;
  background: #fff;
  border: 1px solid #06c755;
  border-radius: calc(20 /750*100vw);
  margin-left: calc(-100 /750*100vw);
  color: #01c74b;
  width: calc(200 /750*100vw);
  height: calc(40 /750*100vw);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: calc(26 /750*100vw);
  font-weight: 500;
}
.l-menu__sp-line-flex {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 100%;
}
.l-menu__sp-line-flex i {
  position: absolute;
  top: calc(50% - (23 /750*100vw));
  right: calc(50% - (282 /750*100vw));
  /* width: calc(57 /750*100vw); */
}

.l-menu__sp-line-flex i:before {
  content: "";
  display: inline-block;
  width: 15px;
  height: 15px;
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
  transform: rotate(45deg);
}

.l-menu__sp-copy {
  font-size: calc(20 /750*100vw);
  text-align: center;
  color: #9fa0a0;
  margin-top: calc(39 /750*100vw);
  padding-bottom: calc(39 /750*100vw);
}

/* ======================================================================
 layout
====================================================================== */
/* =================================
 l-loader
================================= */
.l-loader {
  z-index: 1000;
  position: fixed;
  top: 0;
  left: 0;
  background: #fff;
  width: 100%;
  height: 100vh;
  height: 100svh;
  display: flex;
  justify-content: center;
  align-items: center;
}
.l-loader.hide {
  pointer-events: none;
  opacity: 0;
  transition: opacity 500ms;
}
.l-loader__logo {
  position: absolute;
  top: calc(50% - 50px);
  left: calc(50% - 117px);
}
.l-loader .spinner-box {
  width: 300px;
  height: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: transparent;
}
.l-loader .pulse-container {
  width: 120px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.l-loader .pulse-bubble {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: #0db9d9;
}
.l-loader .pulse-bubble-1 {
  animation: pulse 0.4s ease 0s infinite alternate;
}
.l-loader .pulse-bubble-2 {
  animation: pulse 0.4s ease 0.2s infinite alternate;
}
.l-loader .pulse-bubble-3 {
  animation: pulse 0.4s ease 0.4s infinite alternate;
}

/* =================================
 l-breadcrumbs
================================= */
/* =================================
 l-main__visual
================================= */
.l-main__visual {
  background: url(../img/fitness/bg_mv.jpg) center top/cover no-repeat;
  height: 840px;
}
@media screen and (max-width: 768px) {
  .l-main__visual {
    background: url(../img/fitness/sp/bg_mv.jpg) center top/cover no-repeat;
    height: calc(1100 /750*100vw);
    position: relative;
  }
}
.l-main__visual .l-content__size-pc-1 {
  position: relative;
}
@media screen and (max-width: 768px) {
  .l-main__visual .l-content__size-pc-1 {
    position: static;
  }
}
.l-main__visual-img {
  position: absolute;
  top: 0;
  left: -200px;
  margin-right: -293px;
}
@media screen and (max-width: 768px) {
  .l-main__visual-img {
    top: inherit;
    left: 0;
    bottom: 0;
    margin-right: calc(-30 /750*100vw);
  }
}
.l-main__visual-catch-wrap {
  padding-top: 166px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .l-main__visual-catch-wrap {
    padding-top: calc(53 /750*100vw);
  }
}
.l-main__visual-catch-1 {
  color: #fff;
  font-size: 20.8rem;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-style: italic;
  line-height: 0.8;
  margin-bottom: 60px;
  margin-left: 186px;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .l-main__visual-catch-1 {
    font-size: calc(170 /750*100vw);
    line-height: 0.86;
    margin-bottom: calc(48 /750*100vw);
    margin-left: calc(30 /750*100vw);
  }
}
.l-main__visual-catch-1 .left {
  margin-left: 158px;
}
@media screen and (max-width: 768px) {
  .l-main__visual-catch-1 .left {
    margin-left: auto;
    margin-right: calc(30 /750*100vw);
    text-align: right;
    display: block;
  }
}
.l-main__visual-catch-2 {
  color: #fff;
  font-size: 4rem;
  font-weight: 700;
  line-height: 1.3;
  margin-left: 185px;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .l-main__visual-catch-2 {
    font-size: calc(35 /750*100vw);
    margin-left: inherit;
    margin-bottom: calc(20 /750*100vw);
    text-align: center;
  }
}
.l-main__visual-catch-3 {
  font-size: 6rem;
  font-weight: 700;
  color: #3ac3dc;
  background: #fff;
  border-radius: 10px;
  display: inline-block;
  padding-inline: 60px;
  margin-left: 175px;
  position: relative;
  z-index: 1;
}

.l-main__visual-catch-4 {
  font-size: 3rem;
  margin-top: 15px;
  margin-left: 0px;
  background: transparent;
  display: flex;
  justify-content: center;
}

.l-main__visual-catch-4 span {
  background: #fefe56;
  padding: 0 30px;
  border-radius: 10px;
}

@media screen and (max-width: 768px) {
  .l-main__visual-catch-3 {
    font-size: calc(50 /750*100vw);
    border-radius: calc(10 /750*100vw);
    padding: calc(10 /750*100vw) 0;
    margin-left: inherit;
    text-align: center;
    display: block;
    position: static;
  }

  .l-main__visual-catch-4 {
    font-size: calc(35 /750*100vw);
  }

  .l-main__visual-catch-4 span {
    display: block;
    margin-bottom: 10px;
  }
}



.l-main__visual-open {
  position: absolute;
  top: 156px;
  left: 729px;
}
@media screen and (max-width: 768px) {
  .l-main__visual-open {
    top: calc(30 /750*100vw);
    left: calc(466 /750*100vw);
  }
}
.l-main__visual-open-inner {
  background: #fefe56;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  color: #3ac3dc;
  font-weight: 600;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .l-main__visual-open-inner {
    width: calc(200 /750*100vw);
    height: calc(200 /750*100vw);
  }
}
.l-main__visual-open-inner:after {
  content: "";
  height: 100%;
  width: 30px;
  position: absolute;
  top: -180px;
  left: 0;
  background-color: #fff;
  opacity: 0;
  transform: rotate(45deg);
  animation: reflection 2s ease-in-out infinite;
}
.l-main__visual-open .year {
  font-size: 3.2rem;
  font-family: "Poppins", sans-serif;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .l-main__visual-open .year {
    font-size: calc(32 /750*100vw);
  }
}
.l-main__visual-open .month {
  font-size: 4.8rem;
  font-weight: 900;
  line-height: 1;
  display: flex;
  align-items: anchor-center;
}
@media screen and (max-width: 768px) {
  .l-main__visual-open .month {
    font-size: calc(48 /750*100vw);
  }
}
.l-main__visual-open .month .num {
  font-size: 4.2rem;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  .l-main__visual-open .month .num {
    font-size: calc(44 /750*100vw);
  }
}
.l-main__visual-open .txt {
  font-size: 4rem;
  font-family: "Poppins", sans-serif;
  line-height: 1;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .l-main__visual-open .txt {
    font-size: calc(36 /750*100vw);
  }
}
.l-main__visual-scroll {
  position: absolute;
  bottom: -136px;
  left: -125px;
}
@media screen and (max-width: 768px) {
  .l-main__visual-scroll {
    bottom: 0;
    left: calc(10 /750*100vw);
  }
}
.l-main__visual-scroll p {
  font-family: "Poppins", sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
  transform: rotate(90deg);
  letter-spacing: 0.2em;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .l-main__visual-scroll p {
    font-size: calc(18 /750*100vw);
    margin-bottom: calc(40 /750*100vw);
  }
}
.l-main__visual-scroll-line {
  content: "";
  width: 2px;
  height: 162px;
  background: #fff;
  position: relative;
  margin-left: 34px;
  margin-top: -4px;
}
@media screen and (max-width: 768px) {
  .l-main__visual-scroll-line {
    width: calc(2 /750*100vw);
    height: calc(162 /750*100vw);
    margin-left: calc(44 /750*100vw);
    margin-top: calc(-4 /750*100vw);
  }
}
.l-main__visual-scroll-line:before {
  position: absolute;
  content: "〇";
  color: #fff;
  font-size: 2.2rem;
  top: -22px;
  left: -10px;
  animation: scroll 1000ms infinite forwards;
}
@media screen and (max-width: 768px) {
  .l-main__visual-scroll-line:before {
    font-size: calc(30 /750*100vw);
    top: calc(-22 /750*100vw);
    left: calc(-14 /750*100vw);
    animation: scrollSp 1000ms infinite forwards;
  }
}

/* =================================
 l-main
================================= */
/* =================================
 l-fixed
================================= */
.l-fixed {
  opacity: 0;
  pointer-events: none;
  background: rgba(255, 255, 255, 0.8);
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 900;
  width: 100%;
  padding-block: calc(40 /750*100vw) calc(30 /750*100vw);
}
@media screen and (max-width: 768px) {
  .l-fixed.fade-in {
    opacity: 1;
    transition: opacity 1s;
    pointer-events: visible;
  }
}
.l-fixed .l-menu__sp-line {
  margin-top: 0;
}

/* ======================================================================
 layout
====================================================================== */
/* =================================
 l-side
================================= */
.l-side {
  z-index: 996;
}

@keyframes up {
  0% {
    transform: translateY(20px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes down {
  0% {
    transform: translateY(-20px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes left {
  0% {
    transform: translateX(-20px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes right {
  0% {
    transform: translateX(20px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes bound {
  0% {
    transform: translateY(0);
  }
  5% {
    transform: translateY(0);
  }
  10% {
    transform: translateY(0);
  }
  20% {
    transform: translateY(-15px);
  }
  25% {
    transform: translateY(0);
  }
  30% {
    transform: translateY(-5px);
  }
  50% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes pulse {
  from {
    opacity: 1;
    transform: scale(1);
  }
  to {
    opacity: 0.25;
    transform: scale(0.75);
  }
}
@keyframes big4-1 {
  0% {
    transform: scale(4);
  }
  70% {
    transform: scale(0.8);
  }
  80% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes reflection {
  0% {
    -webkit-transform: scale(0) rotate(45deg);
    opacity: 0;
  }
  80% {
    -webkit-transform: scale(0) rotate(45deg);
    opacity: 0.5;
  }
  81% {
    -webkit-transform: scale(4) rotate(45deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(50) rotate(45deg);
    opacity: 0;
  }
}
/* アニメーション */
.animation {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 5%;
  box-sizing: border-box;
}
.animation div {
  width: 23%;
  height: 300px;
  margin: 0 0 2.5vw;
  padding: 3%;
  box-sizing: border-box;
  background: #09c;
}

.c-sa {
  opacity: 0;
}
.c-sa.show {
  opacity: 1;
}

.c-sa__up.show {
  animation: up 1s ease-in-out;
}

.c-sa__down.show {
  animation: down 1s ease-in-out;
}

.c-sa__left.show {
  animation: left 1s ease-in-out;
}

.c-sa__right.show {
  animation: right 1s ease-in-out;
}

.c-sa__big4.show {
  animation: big4-1 0.3s ease-in-out;
}

/* トップに戻るボタン */
#c-toTop {
  background-color: #0db9d9;
  border-radius: 50%;
  border: 2px solid #fff;
  color: #fff;
  font-size: 3rem;
  height: 90px;
  line-height: 90px;
  outline: 0;
  position: fixed;
  bottom: 100px;
  right: 100px;
  text-align: center;
  width: 90px;
  opacity: 0;
  transition: 0.2s opacity;
  cursor: pointer;
  pointer-events: none;
}
#c-toTop.fade-in {
  opacity: 1;
  transition: opacity 1s;
  pointer-events: visible;
}
@media screen and (max-width: 768px) {
  #c-toTop.fade-in {
    opacity: 0;
    pointer-events: none;
  }
}
#c-toTop:hover {
  opacity: 0.7;
}

@keyframes scroll {
  0% {
    transform: translateY(0);
  }
  70% {
    opacity: 1;
  }
  100% {
    transform: translateY(162px);
    opacity: 0;
  }
}
@keyframes scrollSp {
  0% {
    transform: translateY(0);
  }
  70% {
    opacity: 1;
  }
  100% {
    transform: translateY(calc(162 /750*100vw));
    opacity: 0;
  }
}
.c-ttl {
  font-size: 5rem;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 48px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .c-ttl {
    font-size: calc(46 /750*100vw);
    margin-bottom: calc(48 /750*100vw);
  }
}
.c-ttl__en {
  font-size: 12rem;
  font-weight: 700;
  font-family: "Poppins", sans-serif;
  line-height: 1;
  margin-bottom: -50px;
  color: #eaf5f7;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .c-ttl__en {
    font-size: calc(120 /750*100vw);
    margin-bottom: calc(-50 /750*100vw);
  }
}

.c-txt {
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  .c-txt {
    font-size: calc(28 /750*100vw);
    line-height: 1.64;
  }
}

.c-catch {
  font-size: 3.4rem;
  font-weight: 700;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .c-catch {
    font-size: calc(40 /750*100vw);
  }
}

.c-ashirai__en {
  color: rgba(94, 204, 227, 0.2);
  font-size: 10.4rem;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  margin-inline: -220px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .c-ashirai__en {
    font-size: calc(70 /750*100vw);
    margin-inline: 0;
    padding-top: calc(50 /750*100vw);
    -moz-text-align-last: left;
         text-align-last: left;
    letter-spacing: -0.02em;
    line-height: 1;
  }
}

.pink {
  color: #fa3e80;
}

.blue {
  color: #0db9d9;
}

.yellow {
  color: #fefe56;
}

.p-index__2column {
  padding-bottom: 99px;
}
@media screen and (max-width: 768px) {
  .p-index__2column {
    padding-bottom: calc(70 /750*100vw);
  }
}
.p-index__2column-inner {
  display: flex;
}
@media screen and (max-width: 768px) {
  .p-index__2column-inner {
    display: block;
  }
}
.p-index__2column .c-ttl {
  text-align: left;
}
@media screen and (max-width: 768px) {
  .p-index__2column .c-ttl {
    text-align: center;
  }
}
.p-index__2column-subttl {
  font-size: 11rem;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  line-height: 1;
  margin-bottom: -60px;
}
@media screen and (max-width: 768px) {
  .p-index__2column-subttl {
    font-size: calc(110 /750*100vw);
    margin-bottom: calc(-60 /750*100vw);
  }
}
@media screen and (max-width: 768px) {
  .p-index__2column-img {
    margin-bottom: calc(40 /750*100vw);
  }
}
.p-index__2column-list li {
  font-size: 2rem;
  font-weight: 500;
  display: flex;
}
@media screen and (max-width: 768px) {
  .p-index__2column-list li {
    font-size: calc(30 /750*100vw);
  }
}
.p-index__2column-list li .pink {
  font-weight: 700;
}
.p-index__2column-list li:before {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: #fff;
  border-radius: 50%;
  background: linear-gradient(to bottom right, #59ddf5, #16a5c0);
  width: 36px;
  height: 36px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 20px;
}
@media screen and (max-width: 768px) {
  .p-index__2column-list li:before {
    font-size: calc(20 /750*100vw);
    width: calc(36 /750*100vw);
    height: calc(36 /750*100vw);
    margin-right: calc(20 /750*100vw);
    margin-top: calc(10 /750*100vw);
  }
}
.p-index__2column-list li + li {
  margin-top: 20px;
}
@media screen and (max-width: 768px) {
  .p-index__2column-list li + li {
    margin-top: calc(20 /750*100vw);
  }
}
@media screen and (max-width: 768px) {
  .p-index__2column-item {
    width: calc(100% - (56 /750*100vw));
  }
}
.p-index__beginner {
  padding-top: 29px;
}
@media screen and (max-width: 768px) {
  .p-index__beginner {
    padding-top: calc(57 /750*100vw);
  }
}
.p-index__beginner .p-index__2column-img {
  margin-left: -225px;
}
@media screen and (max-width: 768px) {
  .p-index__beginner .p-index__2column-img {
    margin-left: calc(-30 /750*100vw);
    width: calc(650 /750*100vw);
  }
}
.p-index__beginner .p-index__2column-info {
  margin-left: 60px;
}
@media screen and (max-width: 768px) {
  .p-index__beginner .p-index__2column-info {
    margin-left: calc(30 /750*100vw);
  }
}
.p-index__beginner .p-index__2column-subttl {
  color: #eaf5f7;
  text-align: right;
  margin-right: -30px;
}
@media screen and (max-width: 768px) {
  .p-index__beginner .p-index__2column-subttl {
    margin-right: 0;
  }
}
.p-index__sports {
  background: #effbfd;
  padding-top: 18px;
}
.p-index__sports .p-index__2column-inner {
  flex-direction: row-reverse;
  justify-content: space-between;
}
.p-index__sports .p-index__2column-img {
  margin-right: -225px;
}
@media screen and (max-width: 768px) {
  .p-index__sports .p-index__2column-img {
    margin-right: calc(-30 /750*100vw);
    margin-left: auto;
    width: calc(650 /750*100vw);
  }
}
.p-index__sports .p-index__2column-info {
  margin-right: 0px;
}
@media screen and (max-width: 768px) {
  .p-index__sports .p-index__2column-info {
    margin-left: calc(30 /750*100vw);
  }
}
.p-index__sports .p-index__2column-subttl {
  color: #fff;
  margin-left: -33px;
}
@media screen and (max-width: 768px) {
  .p-index__sports .p-index__2column-subttl {
    text-align: right;
    margin-right: calc(30 /750*100vw);
  }
}
.p-index .splide__infinite {
  margin-top: 60px;
}
@media screen and (max-width: 768px) {
  .p-index .splide__infinite {
    margin-top: calc(60 /750*100vw);
  }
}
.p-index .splide__infinite .splide__slide img {
  border-radius: 20px;
}
@media screen and (max-width: 768px) {
  .p-index .splide__infinite .splide__slide img {
    border-radius: calc(20 /750*100vw);
  }
}
.p-index__feature {
  padding-block: 100px 120px;
  background: linear-gradient(to top, #effbfd 708px, #fff 708px);
}
@media screen and (max-width: 768px) {
  .p-index__feature {
    padding-block: calc(56 /750*100vw) calc(100 /750*100vw);
    background: linear-gradient(to top, #effbfd calc(1500 /750*100vw), #fff calc(1500 /750*100vw));
  }
}
.p-index__feature-point {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .p-index__feature-point {
    display: block;
  }
}
.p-index__feature-item {
  width: 330px;
}
@media screen and (max-width: 768px) {
  .p-index__feature-item {
    width: inherit;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .p-index__feature-item + .p-index__feature-item {
    margin-top: calc(30 /750*100vw);
  }
}
.p-index__feature-item-img {
  margin-bottom: 50px;
}
@media screen and (max-width: 768px) {
  .p-index__feature-item-img {
    width: calc(300 /750*100vw);
    margin-bottom: 0;
  }
}
@media screen and (max-width: 768px) {
  .p-index__feature-item-info {
    width: calc(345 /750*100vw);
  }
}
.p-index__feature-item-txt {
  font-size: 1.8rem;
  font-weight: 700;
  text-align: center;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  .p-index__feature-item-txt {
    font-size: calc(28 /750*100vw);
    text-align: left;
  }
}
.p-index__feature-item-attend {
  font-size: 1.8rem;
  color: #595858;
  text-align: center;
  margin-top: 8px;
}
@media screen and (max-width: 768px) {
  .p-index__feature-item-attend {
    font-size: calc(28 /750*100vw);
    text-align: left;
    margin-top: calc(18 /750*100vw);
  }
}
.p-index__feature-box {
  background: #0db9d9;
  border-radius: 20px;
  position: relative;
  margin-block: 110px 50px;
}
@media screen and (max-width: 768px) {
  .p-index__feature-box {
    border-radius: 0;
    margin-inline: calc(-30 /750*100vw);
    margin-block: calc(80 /750*100vw);
  }
}
.p-index__feature-box .c-ttl {
  color: #fff;
  margin-bottom: 0;
  text-align: left;
  padding: 45px 77px;
}
@media screen and (max-width: 768px) {
  .p-index__feature-box .c-ttl {
    padding: calc(60 /750*100vw) calc(30 /750*100vw) calc(30 /750*100vw);
    text-align: center;
  }
}
.p-index__feature-box-balloon {
  position: absolute;
  bottom: 115px;
  right: 55px;
  width: 180px;
  height: 180px;
  background: #fefe56;
  color: #0db9d9;
  font-size: 2rem;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .p-index__feature-box-balloon {
    bottom: calc(36 /750*100vw);
    right: calc(59 /750*100vw);
    width: calc(240 /750*100vw);
    height: calc(240 /750*100vw);
    font-size: calc(30 /750*100vw);
  }
}
.p-index__feature-box-img {
  position: absolute;
  bottom: 0;
  right: 174px;
}
@media screen and (max-width: 768px) {
  .p-index__feature-box-img {
    position: relative;
    bottom: inherit;
    right: inherit;
    width: calc(269 /750*100vw);
    margin-inline: auto;
  }
}
.p-index__feature .c-txt {
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-index__feature .c-txt {
    text-align: left;
  }
}
.p-index__feature-list {
  display: flex;
  justify-content: space-between;
  margin-top: 40px;
}
@media screen and (max-width: 768px) {
  .p-index__feature-list {
    display: block;
    margin-top: calc(50 /750*100vw);
  }
}
.p-index__feature-list dl {
  width: 366px;
  background: #fff;
  border: 3px solid #0db9d9;
  border-radius: 20px;
  text-align: center;
  padding: 35px 20px;
}
@media screen and (max-width: 768px) {
  .p-index__feature-list dl {
    width: 100%;
    border-radius: calc(20 /750*100vw);
    padding: calc(30 /750*100vw) calc(20 /750*100vw);
  }
  .p-index__feature-list dl + dl {
    margin-top: calc(20 /750*100vw);
  }
}
.p-index__feature-list dt {
  font-size: 2.4rem;
  font-weight: 700;
  color: #0db9d9;
  margin-bottom: 14px;
}
@media screen and (max-width: 768px) {
  .p-index__feature-list dt {
    font-size: calc(34 /750*100vw);
    margin-bottom: calc(0 /750*100vw);
  }
}
.p-index__feature-list dd {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  .p-index__feature-list dd {
    font-size: calc(28 /750*100vw);
  }
}
.p-index__line-top {
  background: url(../img/fitness/bg_gym.jpg) center bottom/cover no-repeat;
  padding-block: 40px 56px;
}
@media screen and (max-width: 768px) {
  .p-index__line-top {
    background: url(../img/fitness/sp/bg_gym.jpg) center bottom/cover no-repeat;
    padding-block: calc(60 /750*100vw) calc(54 /750*100vw);
  }
}
.p-index__line-top-inner {
  position: relative;
}
.p-index__line-top-catch-1 {
  color: #fefe56;
  font-size: 4rem;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  .p-index__line-top-catch-1 {
    font-size: calc(40 /750*100vw);
  }
}
.p-index__line-top-catch-2 {
  color: #fff;
  font-size: 5rem;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .p-index__line-top-catch-2 {
    font-size: calc(50 /750*100vw);
  }
}
.p-index__line-top-catch-2 .marker {
  background: #fff;
  color: #f4813f;
  padding-inline: 10px;
  margin-right: 10px;
}
@media screen and (max-width: 768px) {
  .p-index__line-top-catch-2 .marker {
    padding-inline: calc(20 /750*100vw);
    margin-right: calc(10 /750*100vw);
  }
}
.p-index__line-top-img {
  position: absolute;
  top: -104px;
  right: 0;
  margin-right: -64px;
}
@media screen and (max-width: 768px) {
  .p-index__line-top-img {
    top: calc(8 /750*100vw);
    margin-right: calc(-30 /750*100vw);
    width: calc(271 /750*100vw);
  }
}
.p-index__line-bottom {
  background: #3ac3dc;
  position: relative;
  padding-block: 62px 48px;
}
@media screen and (max-width: 768px) {
  .p-index__line-bottom {
    padding-block: calc(80 /750*100vw) calc(60 /750*100vw);
  }
}
.p-index__line-bottom-balloon {
  position: absolute;
  top: -34px;
  left: 50%;
  margin-left: -150px;
  animation: bound 3s infinite;
}
@media screen and (max-width: 768px) {
  .p-index__line-bottom-balloon {
    top: calc(-34 /750*100vw);
    margin-left: calc(-200 /750*100vw);
  }
}
.p-index__line-bottom-balloon p {
  background: #fefe56;
  width: 300px;
  height: 64px;
  border-radius: 32px;
  border: 3px solid #06c755;
  color: #06c755;
  font-size: 2rem;
  font-weight: 700;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-index__line-bottom-balloon p {
    width: calc(400 /750*100vw);
    height: calc(64 /750*100vw);
    border-radius: calc(32 /750*100vw);
    font-size: calc(30 /750*100vw);
  }
}
.p-index__line-bottom-balloon p:before {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -8px;
  border: 8px solid transparent;
  border-top: 15px solid #fefe56;
}
@media screen and (max-width: 768px) {
  .p-index__line-bottom-balloon p:before {
    margin-left: calc(-8 /750*100vw);
    border: calc(8 /750*100vw) solid transparent;
    border-top: calc(15 /750*100vw) solid #fefe56;
  }
}
.p-index__line-bottom-flex {
  display: flex;
  justify-content: center;
  gap: 0 38px;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .p-index__line-bottom-flex {
    display: block;
    margin-bottom: calc(20 /750*100vw);
  }
}
.p-index__line-bottom-btn a {
  background: #fff;
  border-radius: 10px;
  width: 600px;
  height: 120px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.3);
  font-size: 3.4rem;
  font-weight: bold;
  color: #3ac3dc;
  transition: 0.2s color;
  padding: 0 40px;
}
@media screen and (max-width: 768px) {
  .p-index__line-bottom-btn a {
    border-radius: calc(10 /750*100vw);
    width: 100%;
    height: calc(120 /750*100vw);
    font-size: calc(44 /750*100vw);
    position: relative;
  }
}
.p-index__line-bottom-btn a .black {
  font-weight: 900;
}
.p-index__line-bottom-btn a i {
  /* margin-right: 27px;
  font-size: 6rem; */
}

.p-index__line-bottom-btn a i:before {
  content: "";
  display: inline-block;
  width: 30px;
  height: 30px;
  border-top: solid 3px #3ac3dc;
  border-right: solid 3px #3ac3dc;
  transform: rotate(45deg);
}

@media screen and (max-width: 768px) {
  .p-index__line-bottom-btn a i {
    margin-right: 0;
    /* font-size: calc(60 /750*100vw); */
    position: absolute;
    top: calc(50% - (30 /750*100vw));
    right: calc(42 /750*100vw);
  }

  .p-index__line-bottom-btn a i:before {
    content: "";
    width: 20px;
    height: 20px;
  }
}
.p-index__line-bottom-btn a:hover {
  color: #3ac3dc;
}
@media screen and (max-width: 768px) {
  .p-index__line-bottom-qr {
    display: none;
  }
}
.p-index__line-bottom-txt {
  color: #fefe56;
  font-size: 2.6rem;
  font-weight: 700;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-index__line-bottom-txt {
    font-size: calc(34 /750*100vw);
  }
}
.p-index__line-bottom .c-catch {
  color: #fff;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .p-index__line-bottom .c-catch {
    margin-bottom: calc(30 /750*100vw);
    font-size: calc(44 /750*100vw);
  }
}
.p-index__worry {
  padding-block: 45px 90px;
}
@media screen and (max-width: 768px) {
  .p-index__worry {
    padding-block: calc(70 /750*100vw) calc(100 /750*100vw);
  }
}
.p-index__worry-ttl {
  text-align: center;
  font-size: 4rem;
  font-weight: 700;
  margin-bottom: 54px;
}
@media screen and (max-width: 768px) {
  .p-index__worry-ttl {
    font-size: calc(40 /750*100vw);
    margin-bottom: calc(60 /750*100vw);
  }
}
.p-index__3column-list {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .p-index__3column-list {
    display: block;
  }
}
.p-index__3column-item {
  width: 366px;
}
@media screen and (max-width: 768px) {
  .p-index__3column-item {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
}
.p-index__3column-item-img {
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .p-index__3column-item-img {
    width: calc(345 /750*100vw);
    margin-bottom: 0;
  }
}
.p-index__3column-item-img img {
  border-radius: 20px;
}
@media screen and (max-width: 768px) {
  .p-index__3column-item-img img {
    border-radius: calc(20 /750*100vw);
  }
}
.p-index__3column-item-txt {
  font-size: 2.4rem;
  font-weight: 700;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-index__3column-item-txt {
    width: calc(345 /750*100vw);
    font-size: calc(30 /750*100vw);
    text-align: left;
    padding-inline: calc(40 /750*100vw) calc(30 /750*100vw);
  }
}
@media screen and (max-width: 768px) {
  .p-index__3column-item + .p-index__3column-item {
    margin-top: calc(30 /750*100vw);
  }
  .p-index__3column-item:nth-of-type(even) {
    flex-direction: row-reverse;
  }
  .p-index__3column-item:nth-of-type(even) .p-index__3column-item-txt {
    padding-left: calc(30 /750*100vw);
  }
}
.p-index__comic {
  background: url(../img/fitness/bg_comic.jpg) center center/cover no-repeat;
  padding-block: 80px 100px;
}
@media screen and (max-width: 768px) {
  .p-index__comic {
    background: url(../img/fitness/sp/bg_comic.jpg) center center/cover no-repeat;
    padding-block: calc(80 /750*100vw) calc(100 /750*100vw);
  }
}
.p-index__comic .c-ttl {
  color: #fff;
}
.p-index__comic .c-catch {
  color: #0db9d9;
  margin-bottom: 52px;
}
@media screen and (max-width: 768px) {
  .p-index__comic .c-catch {
    margin-bottom: calc(50 /750*100vw);
  }
}
.p-index__comic-box {
  background: #fff;
  border-radius: 30px;
  padding-block: 78px 39px;
}
@media screen and (max-width: 768px) {
  .p-index__comic-box {
    border-radius: calc(30 /750*100vw);
    padding-block: calc(84 /750*100vw) calc(60 /750*100vw);
  }
}
.p-index__comic .splide__slide {
  display: flex;
  justify-content: center;
  opacity: 0.2;
}
.p-index__comic .splide__slide.is-visible {
  opacity: 1;
}
.p-index__comic .splide__arrow {
  width: 50px;
  height: 50px;
  background: #0db9d9;
  opacity: 1;
  top: calc(100% - 15px);
}
@media screen and (max-width: 768px) {
  .p-index__comic .splide__arrow {
    width: calc(50 /750*100vw);
    height: calc(50 /750*100vw);
    top: calc(100% - (15 /750*100vw));
  }
}
.p-index__comic .splide__arrow svg {
  fill: #fff;
  width: 2em;
  height: 2em;
}
@media screen and (max-width: 768px) {
  .p-index__comic .splide__arrow svg {
    width: 1.2em;
    height: 1.2em;
  }
}
.p-index__comic .splide__arrow--prev {
  left: 445px;
}
@media screen and (max-width: 768px) {
  .p-index__comic .splide__arrow--prev {
    left: calc(230 /750*100vw);
  }
}
.p-index__comic .splide__arrow--next {
  right: 445px;
}
@media screen and (max-width: 768px) {
  .p-index__comic .splide__arrow--next {
    right: calc(230 /750*100vw);
  }
}
.p-index__comic .pagination {
  display: flex;
  justify-content: center;
  gap: 0 10px;
  font-size: 2rem;
  font-weight: 700;
  color: #0db9d9;
}
@media screen and (max-width: 768px) {
  .p-index__comic .pagination {
    gap: 0 calc(10 /750*100vw);
    font-size: calc(20 /750*100vw);
    margin-top: calc(30 /750*100vw);
  }
}
.p-index__floor {
  padding-bottom: 100px;
  
}
@media screen and (max-width: 768px) {
  .p-index__floor {
    padding-bottom: calc(100 /750*100vw);
  }
}
.p-index__floor-inner {
  display: flex;
  flex-direction: row-reverse;
  margin-bottom: 120px;
}
@media screen and (max-width: 768px) {
  .p-index__floor-inner {
    display: block;
    margin-bottom: calc(78 /750*100vw);
  }
}
.p-index__floor-img {
  margin-right: -225px;
  margin-top: -120px;
}
@media screen and (max-width: 768px) {
  .p-index__floor-img {
    margin: calc(-74 /750*100vw) calc(-30 /750*100vw) calc(50 /750*100vw) auto;
    width: calc(675 /750*100vw);
  }
}
.p-index__floor .c-ttl {
  text-align: left;
  color: #0db9d9;
}
@media screen and (max-width: 768px) {
  .p-index__floor .c-ttl {
    text-align: center;
  }
}
.p-index__floor .c-txt .pink {
  font-weight: 700;
}
.p-index__floor-info {
  margin-right: -30px;
}
@media screen and (max-width: 768px) {
  .p-index__floor-info {
    margin-right: 0;
  }
}
.p-index__floor-list {
  display: flex;
  justify-content: space-between;
}
.p-index__floor-item {
  width: 366px;
}
@media screen and (max-width: 768px) {
  .p-index__floor-item {
    width: calc(210 /750*100vw);
  }
}
.p-index__floor-item-img {
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .p-index__floor-item-img {
    margin-bottom: calc(20 /750*100vw);
  }
}
.p-index__floor-item-img img {
  border-radius: 20px;
}
@media screen and (max-width: 768px) {
  .p-index__floor-item-img img {
    border-radius: calc(20 /750*100vw);
  }
}
.p-index__floor-item-txt {
  font-size: 2.4rem;
  font-weight: 700;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-index__floor-item-txt {
    font-size: calc(24 /750*100vw);
  }
}
.p-index__floor-map {
  display: flex;
  justify-content: center;
  margin-block: 30px;
}
@media screen and (max-width: 768px) {
  .p-index__floor-map {
    margin-block: calc(40 /750*100vw);
  }
}
.p-index__oxy {
  background: url(../img/fitness/bg_oxy.jpg) center center/cover no-repeat;
  padding-block: 80px 100px;
}
@media screen and (max-width: 768px) {
  .p-index__oxy {
    background: url(../img/fitness/sp/bg_oxy.jpg) center center/cover no-repeat;
    padding-block: calc(80 /750*100vw) calc(100 /750*100vw);
  }
}
.p-index__oxy .c-ttl {
  color: #fff;
}
.p-index__oxy-box {
  background: #fff;
  border-radius: 30px;
  padding: 70px 100px;
}
@media screen and (max-width: 768px) {
  .p-index__oxy-box {
    border-radius: calc(30 /750*100vw);
    padding: calc(80 /750*100vw) calc(30 /750*100vw) calc(60 /750*100vw);
  }
}
.p-index__oxy-ttl {
  color: #0db9d9;
  margin-bottom: 60px;
}
@media screen and (max-width: 768px) {
  .p-index__oxy-ttl {
    margin-bottom: calc(60 /750*100vw);
  }
}
.p-index__oxy-img {
  margin-bottom: -110px;
}
@media screen and (max-width: 768px) {
  .p-index__oxy-img {
    margin-bottom: calc(-110 /750*100vw);
  }
}
.p-index__oxy-img img {
  border-radius: 30px;
}
@media screen and (max-width: 768px) {
  .p-index__oxy-img img {
    border-radius: calc(30 /750*100vw);
  }
}
.p-index__oxy-logo {
  display: flex;
  justify-content: center;
  margin-bottom: -41px;
}
@media screen and (max-width: 768px) {
  .p-index__oxy-logo {
    width: calc(220 /750*100vw);
    margin-inline: auto;
    margin-bottom: calc(-40 /750*100vw);
  }
}
.p-index__oxy-catch {
  margin-block: 20px;
  background: #0db9d9;
  color: #fff;
  border-radius: 30px;
  font-size: 2.4rem;
  font-weight: 700;
  display: inline-block;
  padding: 12px 0;
  width: 650px;
  margin-inline: auto;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-index__oxy-catch {
    margin-block: calc(40 /750*100vw) calc(50 /750*100vw);
    border-radius: calc(30 /750*100vw);
    font-size: calc(30 /750*100vw);
    padding: calc(10 /750*100vw);
    width: 100%;
  }
}
.p-index__oxy-catch-wrap {
  display: flex;
  justify-content: center;
}
.p-index__oxy .c-txt {
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-index__oxy .c-txt {
    text-align: left;
  }
}
.p-index__oxy .c-txt .pink {
  font-weight: 700;
}
.p-index__oxy-list {
  display: flex;
  justify-content: space-between;
  margin-top: 40px;
}
@media screen and (max-width: 768px) {
  .p-index__oxy-list {
    display: block;
    margin-top: calc(50 /750*100vw);
  }
  .p-index__oxy-list li + li {
    margin-top: calc(30 /750*100vw);
  }
}
.p-index__pdca {
  padding-bottom: 100px;
}
@media screen and (max-width: 768px) {
  .p-index__pdca {
    padding-bottom: calc(100 /750*100vw);
  }
}
.p-index__pdca .c-ttl {
  color: #0db9d9;
}
@media screen and (max-width: 768px) {
  .p-index__pdca .c-ttl {
    margin-top: calc(-50 /750*100vw);
    margin-inline: calc(-30 /750*100vw);
  }
}
.p-index__pdca-img {
  display: flex;
  justify-content: center;
}
.p-index__pdca-img-bg {
  background: url(../img/fitness/img_pdca01.jpg) calc(50% + 59px) top/auto no-repeat;
  padding-bottom: 59px;
}
@media screen and (max-width: 768px) {
  .p-index__pdca-img-bg {
    background: url(../img/fitness/sp/img_pdca01.jpg) right top/calc(731 /750*100vw) no-repeat;
    padding-bottom: calc(59 /750*100vw);
  }
}
.p-index__pdca .c-txt {
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-index__pdca .c-txt {
    text-align: left;
  }
}
.p-index__pdca .c-txt .pink {
  font-weight: 700;
}
.p-index__staff {
  background: #d1f1f6;
  padding-block: 70px 90px;
}
@media screen and (max-width: 768px) {
  .p-index__staff {
    padding-block: calc(90 /750*100vw) calc(100 /750*100vw);
  }
}
.p-index__staff .c-ttl__en {
  color: #fff;
}
.p-index__staff-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px 0;
}
@media screen and (max-width: 768px) {
  .p-index__staff-list {
    display: block;
  }
}
.p-index__staff-item {
  width: 560px;
  display: flex;
  border-radius: 20px;
  overflow: hidden;
  background: #fff;
}
@media screen and (max-width: 768px) {
  .p-index__staff-item {
    width: 100%;
    border-radius: calc(20 /750*100vw);
  }
  .p-index__staff-item + .p-index__staff-item {
    margin-top: calc(30 /750*100vw);
  }
}
.p-index__staff-item-img {
  width: 250px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-index__staff-item-img {
    width: calc(250 /750*100vw);
    min-height: calc(440 /750*100vw);
  }
}
.p-index__staff-item-img img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-index__staff-item-ttl {
  font-size: 1.4rem;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  color: #0db9d9;
  margin-bottom: 12px;
}
@media screen and (max-width: 768px) {
  .p-index__staff-item-ttl {
    font-size: calc(24 /750*100vw);
    margin-bottom: calc(12 /750*100vw);
  }
}
.p-index__staff-item-txt {
  font-size: 2rem;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .p-index__staff-item-txt {
    font-size: calc(30 /750*100vw);
  }
}
.p-index__staff-item-subttl {
  font-size: 1.4rem;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .p-index__staff-item-subttl {
    font-size: calc(24 /750*100vw);
  }
}
.p-index__staff-item-name {
  font-size: 3rem;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .p-index__staff-item-name {
    font-size: calc(30 /750*100vw);
  }
}
.p-index__staff-item-info {
  position: relative;
  width: 310px;
}
@media screen and (max-width: 768px) {
  .p-index__staff-item-info {
    width: calc(100% - (250 /750*100vw));
  }
}
.p-index__staff-item-info-top {
  padding: 50px 35px 136px;
}
@media screen and (max-width: 768px) {
  .p-index__staff-item-info-top {
    padding: calc(40 /750*100vw) calc(40 /750*100vw) calc(40 /750*100vw);
  }
}
.p-index__staff-item-info-bottom {
  background: #0db9d9;
  width: 100%;
  position: absolute;
  bottom: 0;
  right: 0;
  padding: 20px 35px;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .p-index__staff-item-info-bottom {
    padding: calc(20 /750*100vw) calc(40 /750*100vw);
    position: initial;
  }
}
.p-index__campaign {
  padding-block: 120px;
}
@media screen and (max-width: 768px) {
  .p-index__campaign {
    padding-block: 0 calc(100 /750*100vw);
  }
}
.p-index__campaign-box {
  background: url(../img/fitness/bg_campaign.jpg) center center/cover no-repeat;
  border-radius: 30px;
  padding-top: 30px;
  margin-bottom: 48px;
  overflow: hidden;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-index__campaign-box {
    background: url(../img/fitness/sp/bg_campaign.jpg) center center/cover no-repeat;
    border-radius: 0;
    padding-top: calc(40 /750*100vw);
    margin-bottom: calc(56 /750*100vw);
    margin-inline: calc(-30 /750*100vw);
  }
}
.p-index__campaign-box-inner {
  display: flex;
  margin-bottom: -360px;
  margin-bottom: 14px;
}
@media screen and (max-width: 768px) {
  .p-index__campaign-box-inner {
    margin-bottom: calc(25 /750*100vw);
  }
}
.p-index__campaign-box-bottom {
  background: #06c755;
  margin-top: 30px;
  position: relative;
  padding-block: 4px 12px;
}
@media screen and (max-width: 768px) {
  .p-index__campaign-box-bottom {
    margin-top: calc(40 /750*100vw);
    padding-block: calc(20 /750*100vw);
  }
}
.p-index__campaign-box-bottom-txt {
  font-size: 3rem;
  font-weight: 900;
  color: #fff;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-index__campaign-box-bottom-txt {
    font-size: calc(30 /750*100vw);
    line-height: 1;
  }
}
.p-index__campaign-box-bottom-txt .yellow {
  font-size: 4.5rem;
  margin-left: 20px;
}
@media screen and (max-width: 768px) {
  .p-index__campaign-box-bottom-txt .yellow {
    font-size: calc(45 /750*100vw);
    margin-left: calc(20 /750*100vw);
  }
}
.p-index__campaign-period {
  background: #fff;
  display: inline-flex;
  align-items: center;
}
.p-index__campaign-period dt {
  background: #0db9d9;
  color: #fff;
  font-size: 3rem;
  font-weight: 700;
  padding: 10px 23px;
}
@media screen and (max-width: 768px) {
  .p-index__campaign-period dt {
    font-size: calc(30 /750*100vw);
    padding: calc(10 /750*100vw) calc(18 /750*100vw);
  }
}
.p-index__campaign-period dd {
  font-size: 3rem;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  padding: 12px 23px 8px;
}
@media screen and (max-width: 768px) {
  .p-index__campaign-period dd {
    font-size: calc(30 /750*100vw);
    padding: calc(10 /750*100vw) calc(25 /750*100vw) calc(8 /750*100vw);
  }
}
.p-index__campaign-img {
  position: absolute;
  top: 23px;
  right: 15px;
}
@media screen and (max-width: 768px) {
  .p-index__campaign-img {
    top: calc(65 /750*100vw);
    right: 0;
    width: calc(337 /750*100vw);
  }
}
.p-index__campaign-subttl {
  font-size: 8rem;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  font-style: italic;
  color: #fff;
  margin-left: 323px;
  margin-right: -60px;
  margin-bottom: -65px;
  margin-top: -14px;
}
@media screen and (max-width: 768px) {
  .p-index__campaign-subttl {
    font-size: calc(78 /750*100vw);
    margin: 0 calc(-50 /750*100vw) calc(-36 /750*100vw) calc(100 /750*100vw);
  }
}
.p-index__campaign-ttl {
  font-size: 10rem;
  font-weight: 900;
  font-style: italic;
  color: #0db9d9;
  text-shadow: 0px 2px 0px rgb(255, 255, 255);
  margin-left: 94px;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .p-index__campaign-ttl {
    font-size: calc(90 /750*100vw);
    margin-left: calc(30 /750*100vw);
    position: relative;
    z-index: 1;
  }
}
.p-index__campaign-ttl span {
  font-size: 9rem;
}
@media screen and (max-width: 768px) {
  .p-index__campaign-ttl span {
    font-size: calc(77 /750*100vw);
  }
}
.p-index__campaign-balloon {
  display: flex;
  justify-content: center;
  margin-bottom: -10px;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .p-index__campaign-balloon {
    margin-bottom: calc(-10 /750*100vw);
  }
}
.p-index__campaign-balloon p {
  background: #ed6394;
  border-radius: 36px;
  color: #fff;
  font-size: 3.5rem;
  font-weight: 700;
  position: relative;
  display: inline-block;
  padding: 6px 55px;
  line-height: 1;
  box-shadow: 0px 5px 10px 0px rgba(250, 62, 128, 0.3);
}
@media screen and (max-width: 768px) {
  .p-index__campaign-balloon p {
    font-size: calc(26 /750*100vw);
    padding: calc(10 /750*100vw) calc(40 /750*100vw);
  }
}
.p-index__campaign-balloon p .num {
  font-size: 5.5rem;
  font-weight: 700;
  font-family: "Poppins", sans-serif;
}
@media screen and (max-width: 768px) {
  .p-index__campaign-balloon p .num {
    font-size: calc(40 /750*100vw);
  }
}
.p-index__campaign-balloon p:before {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -8px;
  border: 8px solid transparent;
  border-top: 15px solid #ed6394;
  padding-bottom: 4px;
}
@media screen and (max-width: 768px) {
  .p-index__campaign-balloon p:before {
    margin-left: calc(-8 /750*100vw);
    border: calc(8 /750*100vw) solid transparent;
    border-top: calc(15 /750*100vw) solid #ed6394;
    padding-bottom: calc(4 /750*100vw);
  }
}
.p-index__campaign-list {
  display: flex;
  justify-content: center;
  gap: 0 25px;
}
@media screen and (max-width: 768px) {
  .p-index__campaign-list {
    gap: 0 calc(18 /750*100vw);
  }
}
.p-index__campaign-item {
  background: #fff;
  border-radius: 20px;
  width: 300px;
  padding: 30px 30px 0;
  text-align: center;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-index__campaign-item {
    border-radius: calc(20 /750*100vw);
    width: calc(218 /750*100vw);
    padding: calc(28 /750*100vw) calc(28 /750*100vw) calc(10 /750*100vw);
  }
}
.p-index__campaign-item + .p-index__campaign-item {
  position: relative;
}
.p-index__campaign-item + .p-index__campaign-item:before {
  content: "＋";
  width: 60px;
  height: 60px;
  position: absolute;
  top: calc(50% - 30px);
  left: -43px;
  background: #000;
  border-radius: 50%;
  color: #fff;
  font-size: 4rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .p-index__campaign-item + .p-index__campaign-item:before {
    width: calc(46 /750*100vw);
    height: calc(46 /750*100vw);
    top: calc(50% - (23 /750*100vw));
    left: calc(-32 /750*100vw);
    font-size: calc(22 /750*100vw);
  }
}
.p-index__campaign-item-ttl {
  font-size: 3.4rem;
  font-weight: 700;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .p-index__campaign-item-ttl {
    font-size: calc(26 /750*100vw);
  }
}
.p-index__campaign-item-price {
  color: #ed6394;
  font-size: 8rem;
  font-weight: 700;
  line-height: 1;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .p-index__campaign-item-price {
    font-size: calc(58 /750*100vw);
  }
}
.p-index__campaign-item-price .num {
  font-size: 15rem;
  font-family: "Poppins", sans-serif;
}
@media screen and (max-width: 768px) {
  .p-index__campaign-item-price .num {
    font-size: calc(108 /750*100vw);
  }
}
.p-index__campaign-item-circle {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: #fefe56;
  color: #0db9d9;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 80px;
  left: 50px;
  font-size: 2.3rem;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .p-index__campaign-item-circle {
    width: calc(66 /750*100vw);
    height: calc(66 /750*100vw);
    top: calc(58 /750*100vw);
    left: calc(37 /750*100vw);
    font-size: calc(17 /750*100vw);
  }
}
.p-index__campaign-item-circle .num {
  font-size: 3rem;
}
@media screen and (max-width: 768px) {
  .p-index__campaign-item-circle .num {
    font-size: calc(22 /750*100vw);
  }
}
.p-index__campaign-attend {
  text-align: right;
  color: #595858;
  font-size: 1.6rem;
  margin-bottom: 18px;
}
@media screen and (max-width: 768px) {
  .p-index__campaign-attend {
    font-size: calc(26 /750*100vw);
    margin-bottom: calc(20 /750*100vw);
  }
}
.p-index__campaign-table {
  width: 100%;
  border-top: 1px solid #222222;
  border-bottom: 1px solid #222222;
  border-collapse: collapse;
  margin-bottom: 27px;
}
@media screen and (max-width: 768px) {
  .p-index__campaign-table {
    margin-bottom: calc(40 /750*100vw);
  }
}
.p-index__campaign-table th {
  background: #eaf5f7;
  width: 450px;
  font-size: 2rem;
  font-weight: 700;
  border-bottom: 1px solid #222222;
  padding-block: 20px;
}
@media screen and (max-width: 768px) {
  .p-index__campaign-table th {
    width: calc(345 /750*100vw);
    font-size: calc(26 /750*100vw);
    padding-block: calc(20 /750*100vw);
  }
}
.p-index__campaign-table th[rowspan*="4"] {
  background: #0db9d9;
  color: #fff;
  width: 250px;
  font-size: 3.4rem;
}
@media screen and (max-width: 768px) {
  .p-index__campaign-table th[rowspan*="4"] {
    display: none;
  }
}
.p-index__campaign-table td {
  width: calc(100% - 700px);
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  border-bottom: 1px solid #222222;
  padding-block: 20px;
}
@media screen and (max-width: 768px) {
  .p-index__campaign-table td {
    width: calc(345 /750*100vw);
    font-size: calc(20 /750*100vw);
    padding-block: calc(20 /750*100vw);
  }
}
.p-index__campaign-table td .num {
  font-size: 3rem;
  font-family: "Poppins", sans-serif;
  margin-right: 5px;
}
@media screen and (max-width: 768px) {
  .p-index__campaign-table td .num {
    font-size: calc(30 /750*100vw);
    margin-right: calc(5 /750*100vw);
  }
}
.p-index__campaign-table-ttl {
  width: 100%;
  text-align: center;
  font-size: calc(40 /750*100vw);
  font-weight: 700;
  background: #0db9d9;
  color: #fff;
  border-top: 1px solid #222222;
  padding-block: calc(16 /750*100vw);
}
.p-index__campaign-txt {
  font-size: 2.4rem;
  font-weight: 700;
  color: #0db9d9;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-index__campaign-txt {
    font-size: calc(40 /750*100vw);
  }
}
.p-index__ashirai img {
  width: 100%;
}
.p-index__access {
  padding-block: 45px 120px;
}

.p-index__access-info a {
  pointer-events: none;
}

@media screen and (max-width: 768px) {
  .p-index__access {
    padding-block: calc(100 /750*100vw);
  }

  .p-index__access-info a {
    text-decoration: underline;
    pointer-events: all;
  }
}
.p-index__access .c-catch {
  color: #0db9d9;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .p-index__access .c-catch {
    margin-bottom: calc(60 /750*100vw);
  }
}
.p-index__access-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
@media screen and (max-width: 768px) {
  .p-index__access-inner {
    display: block;
  }
}
.p-index__access-map {
  width: 525px;
}
@media screen and (max-width: 768px) {
  .p-index__access-map {
    width: 100%;
    margin-bottom: calc(40 /750*100vw);
  }
}
.p-index__access-map iframe {
  width: 100%;
  height: 525px;
  border-radius: 20px;
}
@media screen and (max-width: 768px) {
  .p-index__access-map iframe {
    height: calc(525 /750*100vw);
    border-radius: calc(20 /750*100vw);
  }
}
.p-index__access-info {
  width: 575px;
}
@media screen and (max-width: 768px) {
  .p-index__access-info {
    width: inherit;
    margin-inline: calc(30 /750*100vw);
  }
}
.p-index__access-info-ttl {
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .p-index__access-info-ttl {
    font-size: calc(34 /750*100vw);
    margin-bottom: calc(40 /750*100vw);
    text-align: center;
  }
}
.p-index__access-info-txt {
  font-size: 1.8rem;
}
@media screen and (max-width: 768px) {
  .p-index__access-info-txt {
    font-size: calc(28 /750*100vw);
  }
}
.p-index__access-info-txt:last-of-type {
  margin-bottom: 34px;
}
@media screen and (max-width: 768px) {
  .p-index__access-info-txt:last-of-type {
    margin-bottom: calc(50 /750*100vw);
  }
}
.p-index__access .splide__slide img {
  border-radius: 10px;
}
@media screen and (max-width: 768px) {
  .p-index__access .splide__slide img {
    border-radius: calc(10 /750*100vw);
  }
}
.p-index__access .splide__arrow {
  width: 50px;
  height: 50px;
  background: #0db9d9;
  opacity: 1;
}
@media screen and (max-width: 768px) {
  .p-index__access .splide__arrow {
    width: calc(60 /750*100vw);
    height: calc(60 /750*100vw);
  }
}
.p-index__access .splide__arrow svg {
  fill: #fff;
  width: 2em;
  height: 2em;
}
@media screen and (max-width: 768px) {
  .p-index__access .splide__arrow svg {
    width: 1.5em;
    height: 1.5em;
  }
}
.p-index__access .splide__arrow--prev {
  left: -25px;
}
@media screen and (max-width: 768px) {
  .p-index__access .splide__arrow--prev {
    left: calc(-30 /750*100vw);
  }
}
.p-index__access .splide__arrow--next {
  right: -25px;
}
@media screen and (max-width: 768px) {
  .p-index__access .splide__arrow--next {
    right: calc(-30 /750*100vw);
  }
}
.p-index__qa {
  padding-block: 45px 120px;
  background: #ebf1f3;
}
@media screen and (max-width: 768px) {
  .p-index__qa {
    padding-block: calc(100 /750*100vw);
  }
}
.p-index__qa .c-ttl__en {
  color: #fff;
}
.p-index__qa-item {
  background: #fff;
  padding: 20px;
}
@media screen and (max-width: 768px) {
  .p-index__qa-item {
    padding: calc(20 /750*100vw);
  }
}
.p-index__qa-item + .p-index__qa-item {
  margin-top: 20px;
}
@media screen and (max-width: 768px) {
  .p-index__qa-item + .p-index__qa-item {
    margin-top: calc(20 /750*100vw);
  }
}
.p-index__qa-item dt, .p-index__qa-item dd {
  display: flex;
  gap: 0 30px;
}
@media screen and (max-width: 768px) {
  .p-index__qa-item dt, .p-index__qa-item dd {
    gap: 0 calc(30 /750*100vw);
  }
}
.p-index__qa-item dt {
  cursor: pointer;
  position: relative;
}
.p-index__qa-item dt:before {
  content: "";
  position: absolute;
  top: 30px;
  right: 0;
  width: 40px;
  height: 2px;
  transform: rotate(90deg);
  background: #16a5c0;
  transition: transform 0.3s ease-in-out;
}
@media screen and (max-width: 768px) {
  .p-index__qa-item dt:before {
    top: calc(30 /750*100vw);
    width: calc(40 /750*100vw);
  }
}
.p-index__qa-item dt:after {
  content: "";
  position: absolute;
  top: 30px;
  right: 0;
  width: 40px;
  height: 2px;
  background: #16a5c0;
  transition: opacity 0.2s ease-in-out;
}
@media screen and (max-width: 768px) {
  .p-index__qa-item dt:after {
    top: calc(30 /750*100vw);
    width: calc(40 /750*100vw);
  }
}
.p-index__qa-item dt.open:before {
  opacity: 0;
}
.p-index__qa-item dd {
  opacity: 0;
  height: 0;
  transition: height 0.4s, padding 0.4s, opacity 0.4s;
  pointer-events: none;
}
.p-index__qa-item dd.open {
  opacity: 1;
  margin-top: 30px;
  height: auto;
  pointer-events: inherit;
}
@media screen and (max-width: 768px) {
  .p-index__qa-item dd.open {
    margin-top: calc(30 /750*100vw);
  }
}
.p-index__qa-item-icon {
  width: 60px;
  height: 60px;
  font-size: 3rem;
  font-weight: 700;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .p-index__qa-item-icon {
    width: calc(60 /750*100vw);
    height: calc(60 /750*100vw);
    font-size: calc(30 /750*100vw);
  }
}
.p-index__qa-item-icon.question {
  background: #0db9d9;
}
.p-index__qa-item-icon.answer {
  background: #b4b4b4;
}
.p-index__qa-item-txt {
  width: calc(100% - 150px);
  font-size: 2rem;
  margin-top: 14px;
}
@media screen and (max-width: 768px) {
  .p-index__qa-item-txt {
    width: calc(100% - (165 /750*100vw));
    font-size: calc(28 /750*100vw);
    margin-top: calc(10 /750*100vw);
  }
}
.p-index__qa-item-txt.question {
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .p-index__qa-item-txt.question {
    font-size: calc(30 /750*100vw);
  }
}

@media screen and (min-width: 769px) {
  .u-pc {
    display: block;
  }
  .u-sp {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .u-pc {
    display: none;
  }
  .u-sp {
    display: block;
  }
}




/* 0321 */

.p-index__campaign {
  background: #effbfd;
}

.note {
  color: #595858;
  font-size: 2rem;
  margin-bottom: 18px;
}

@media screen and (max-width: 768px) {
  .note {
    font-size: calc(28 /750*100vw);
  }
}

.p-index__access .splide__arrow {
  display: none;
}

.p-index__line-bottom-green {
  background: #06c755;
}

.p-index__line-bottom-btn a.p-index__line-bottom-line {
  color: #06c755;
  justify-content: center;
  gap: 0 30px;
}

@media screen and (max-width: 768px) {
  .p-index__line-bottom-btn a.p-index__line-bottom-line {
    gap: 0 15px;
    font-size: calc(42 /750*100vw);
  } 
}

.p-index__line-bottom-line img {
  background: #06c755;
  padding: 8px;
  border-radius: 8px;
}

@media screen and (max-width: 768px) {
  .p-index__line-bottom-line img {
    padding: 6px;
    width: 32px;
  }
}

.p-index__campaign-box-bottom a {
  position: relative;
}

.p-index__campaign-box-bottom a:after {
  content: "";
  width: 30px;
  height: 30px;
  display: inline-block;
  border-top: solid 3px #fff;
  border-right: solid 3px #fff;
  transform: translate(-50%, -50% ) rotate(45deg);
  position: absolute;
  top: 50%;
  right: 20px;
}

@media screen and (max-width: 768px) {
  .p-index__campaign-box-bottom a:after {
    width: 20px;
    height: 20px;
    border-top: solid 2px #fff;
    border-right: solid 2px #fff;
  } 
}

.l-footer_link {
  text-align: center;
  margin-bottom: 30px;
}

.l-footer_link a {
  display: inline-block;
  font-size: 1.5rem;
  font-weight: 500;
}


/* 0526 */

.p-index__campaign-item-circle {
  position: initial;
  height: auto;
  margin: auto;
  border-radius: 13px; 
  margin-top: 8px;
  margin-bottom: 8px;
}


.p-index__campaign-item-price_03 {
  font-size: 6.5em;
}


@media screen and (max-width: 768px)  {
  .p-index__campaign-item-circle {
    width: calc(90 /750*100vw);
    margin-top: 4px;
    margin-bottom: 4px;
  }


  .p-index__campaign-item-price_03 {
    font-size: calc(43 /750*100vw);
  }
}



/* 0625 */

.p-index__campaign-box {
  padding-top: 60px;
}


.p-index__campaign-box-inner {
  margin-bottom: 120px;
}

.p-index__campaign-ttl {
  font-size: 11rem;
}

.p-index__campaign-subttl {
  color: #ffdc1c;
  writing-mode: vertical-rl;
  position: absolute;
  right: 85px;
  font-size: 40px;
  margin-left: 0;
  top: 85px;
}


.p-index__campaign-img {
  top: 40px;
}


.p-index__campaign-item {
  padding: 30px 30px 10px;
}

.p-index__campaign-ttl {
  color: #fff;
}

.p-index__campaign-balloon p {
  background: #ff4d1c;
}

.p-index__campaign-item-price {
  color: #ff4d1c;
}

.p-index__campaign-item-circle {
  width: auto;
  background: none;
  gap: 0 8px;
  align-items: center;
  margin: 0;
}


.p-index__campaign-item-circle p {
  background: #fefe56;
  padding: 5px 20px;
  border-radius: 8px;
  color: #ff4d1c;
  letter-spacing: -1px;
  width: 120px;
}

.p-index__campaign-item-circle span {
  font-size: 5rem;
  color: #ff4d1c;
}


@media screen and (max-width: 768px) {

  .p-index__campaign-box {
    padding-top: calc(55 /750*100vw);
  }

  .p-index__campaign-box-inner {
    margin-bottom: calc(120 / 750 * 100vw);
  }

  .p-index__campaign-ttl {
    font-size: calc(90 / 750 * 100vw);
  }


  .p-index__campaign-subttl {
    display: none;
  }

  .p-index__campaign-img {
    top: calc(65 / 750 * 100vw);
  }

  .p-index__campaign-item {
    padding: calc(28 /750*100vw) calc(15 /750*100vw) calc(10 /750*100vw);
  }

  .p-index__campaign-item-circle {
    /* flex-direction: column; */
    gap: 0 5px;
  }

  .p-index__campaign-item-circle p {
    width: 50px;
    font-size: calc(15 / 750 * 100vw);
    padding: 4px 4px;
  }

  .p-index__campaign-item-circle span {
    font-size: calc(35 /750*100vw);
  }

}


.l-header__line-txt {
  font-size: 18px;
}


@media screen and (max-width: 768px) {
  .l-main {
    padding-top: 0;
  }
}




@media screen and (min-width: 769px) {
  .p-index__line-top-img {
    top: -120px;
  }


  .p-index__line-top-img img {
    height: 400px;
  }
}

@media screen and (max-width: 768px) {
  .p-index__worry,
  .l-footer {
    position: relative;
    background: #fff;
  }

  .p-index__qa {
    position: relative;
    background: #ebf1f3;
  }
}



.p-index__campaign-list_fitness {
  margin-bottom: 100px;
}

@media screen and (max-width: 768px) {
  .p-index__campaign-list_fitness {
    margin-bottom: 60px;
  }
}


.p-fitness__campaign .p-tennis__ttl {
  margin-bottom: 30px;
}

.p-fitness__campaign-list {
  gap: 0 50px;
  justify-content: center;
}

.p-fitness__campaign-list02 .p-tennis__campaign-item {
  width: 560px;
}

@media screen and (max-width: 768px) {
  .p-fitness__campaign {
    margin-bottom: 40px;
  }

  

  .p-fitness__campaign-list02 .p-tennis__campaign-item {
    width: 100%;
  }

  .p-fitness__campaign-list02 .p-tennis__campaign-item .p-tennis__campaign-item-ttl {
    font-size: 2rem;
  }
}