*,
*::before,
*::after {
  box-sizing: border-box;
}

body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
form,
fieldset,
legend,
figure,
figcaption,
button,
input,
textarea,
p,
blockquote,
th,
td {
  margin: 0;
  padding: 0;
}

body {
  color: #000;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.875;
  letter-spacing: .05em;
  word-wrap: break-word;
  overflow-wrap: break-word;
}
@media screen and (min-width: 769px) {
  body {
    font-size: 15px;
    line-height: 2;
  }
}

body.passive {
  overflow: hidden;
}
@media screen and (min-width: 1183px) {
  body.passive {
    overflow: auto;
  }
}

main {
  margin-top: 70px;
}
@media screen and (min-width: 1183px) {
  main {
    margin-top: 130px;
  }
}

footer {
  margin-bottom: 80px;
}
@media screen and (min-width: 1183px) {
  footer {
    margin-bottom: 0;
  }
}

p {
  text-align: justify;
}

a {
  color: inherit;
  text-decoration: none;
}
a:hover {
  text-decoration: none;
}

button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  appearance: none;
}

li {
  list-style: none;
}

small,
em {
  font-style: normal;
}

img {
  border: 0;
  max-width: 100%;
  height: auto;
  vertical-align: top;
}

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

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

/* ヘッダー */
.gnav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 70px;
  background: #fff;
  z-index: 101;
}
@media screen and (min-width: 1183px) {
  .gnav {
    height: 130px;
  }
}

.gnav__conatiner {
  margin: 0 auto;
  width: 100%;
  height: 100%;
  max-width: 1400px;
}
@media screen and (min-width: 1183px) {
  .gnav__conatiner {
    display: flex;
    justify-content: space-between;
    padding-right: 25px;
  }
}

.gnav__logo {
  display: block;
  width: 39.466%;
  max-width: 148px;
}
@media screen and (min-width: 1183px) {
  .gnav__logo {
    width: 274px;
    max-width: none;
    transition: opacity .3s ease;
  }

  .gnav__logo:hover {
    opacity: .7;
  }
}

.gnav__btn {
  position: absolute;
  top: 0;
  right: 0;
  width: 55px;
  height: 100%;
  z-index: 100;
}
@media screen and (min-width: 1183px) {
  .gnav__btn {
    display: none;
  }
}

.gnav__btn span {
  position: absolute;
  left: 12px;
  width: 31px;
  height: 1px;
  background: #2750a1;
  -webkit-transition: transform .3s ease, opacity .3s ease;
  transition: transform .3s ease, opacity .3s ease;
  transform-origin: center;
}

.gnav__btn span:nth-last-of-type(1) {
  top: 29px;
}
.gnav__btn.open span:nth-last-of-type(1) {
  top: 34px;
  transform: rotate(225deg);
}

.gnav__btn span:nth-last-of-type(2) {
  top: 34px;
}
.gnav__btn.open span:nth-last-of-type(2) {
  opacity: 0;
}

.gnav__btn span:nth-last-of-type(3) {
  top: 39px;
}
.gnav__btn.open span:nth-last-of-type(3) {
  top: 34px;
  transform: rotate(-225deg);
}

.gnav__content {
  padding: 70px 0 54px;
  background: #fff;
}
@media screen and (min-width: 1183px) {
  .gnav__content {
    display: flex;
    padding: 0;
  }
}
@media screen and (max-width: 1182px) {
  .gnav__content {
    height: 100vh;
    opacity: 0;
    transition: opacity .3s ease;
    transform: translateY(-70px);
    pointer-events: none;
    overflow: scroll;
  }

  .gnav__content.open {
    opacity: 1;
    pointer-events: auto;
  }
}

@media screen and (min-width: 1183px) {
  .gnav__list {
    display: flex;
    justify-content: space-between;
    width: 62.5vw;
    max-width: 875px;
  }
}

.gnav__item {
  position: relative;
  border-top: 1px solid #ccc;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.25;
}
@media screen and (min-width: 1183px) {
  .gnav__item {
    flex: 1 0 auto;
    padding: 25px 0;
    border: none;
    font-size: 17px;
    line-height: 1.4;
  }

  .gnav__item:not(:last-of-type)::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    width: 1px;
    height: calc(100% - 50px);
    background-color: #ccc;
    transform: translateY(-50%);
  }

  .gnav__item.hover-action::before {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 25px;
    border-right: 2px solid #14b3ec;
    border-bottom: 2px solid #14b3ec;
    width: 7px;
    height: 7px;
    transform: translateX(-50%) rotate(45deg);
    transform-origin: center;
    transition: transform .3s ease;
  }

  .gnav__item.hover-action.open::before {
    transform: translateX(-50%) rotate(225deg);
  }
}

.gnav__item:last-of-type {
  border-bottom: 1px solid #ccc;
}
@media screen and (min-width: 1183px) {
  .gnav__item:last-of-type {
    border-bottom: none;
  }
}

.gnav__item a {
  display: flex;
  align-items: center;
  padding: 17px;
  width: 100%;
  height: 60px;
}
@media screen and (min-width: 1183px) {
  .gnav__item a {
    flex-direction: column;
    justify-content: space-between;
    padding: 0;
    height: 100%;
  }
}

.gnav__item > a img {
  width: 10%;
  max-width: 50px;
}
@media screen and (min-width: 1183px) {
  .gnav__item > a img {
    width: 50px;
  }
}

.gnav__item > a p {
  margin-left: 13px;
}
@media screen and (min-width: 1183px) {
  .gnav__item > a p {
    margin-left: 0;
    min-height: 2em;
    text-align: center;
  }
}

.gnav__item br {
  display: none;
}
@media screen and (min-width: 1183px) {
  .gnav__item br {
    display: block;
  }
}

.gnav__switch {
  position: absolute;
  top: 0;
  right: 0;
  width: 54px;
  height: 60px;
}
@media screen and (min-width: 1183px) {
  .gnav__switch {
    display: none;
  }
}

.gnav__switch span {
  display: inline-block;
  position: absolute;
  top: 29px;
  left: 20px;
  width: 14px;
  height: 2px;
  background: #14b3ec;
  -webkit-transition: transform .3s ease, opacity .3s ease;
  transition: transform .3s ease, opacity .3s ease;
  transform-origin: center;
}

.gnav__switch span:nth-of-type(2) {
  transform: rotate(90deg);
}

.gnav__switch.open span:nth-of-type(2) {
  transform: rotate(270deg);
  opacity: 0;
}

.gnav__hide-menu {
  display: none;
  width: 100%;
  background: #fff;
}
@media screen and (min-width: 1183px) {
  .gnav__hide-menu {
    position: fixed;
    top: 130px;
    left: 0;
    padding: 30px 0;
  }
}

@media screen and (min-width: 1183px) {
  .gnav__club-list {
    display: flex;
    justify-content: space-between;
    margin: 0 auto;
    width: 100%;
    max-width: 1075px;
  }
}

.gnav__club-list li {
  padding-left: calc(10% + 10px);
  border-top: 1px solid #ccc;
}
@media screen and (min-width: 549px) {
  .gnav__club-list li {
    padding-left: 63px;
  }
}
@media screen and (min-width: 1183px) {
  .gnav__club-list li {
    position: relative;
    padding-left: 0;
    border-top: none;
    width: 250px;
    height: 155px;
  }
}

@media screen and (min-width: 1183px) {
  .gnav__club-list li a {
    overflow: hidden;
  }
}

@media screen and (min-width: 1183px) {
  .gnav__club-list li img {
    transition: transform .3s ease;
  }

  .gnav__club-list li a:hover img {
    transform: scale(1.1);
  }
}
@media screen and (max-width: 1182px) {
  .gnav__club-list li img {
    display: none;
  }
}

@media screen and (min-width: 1183px) {
  .gnav__club-text {
    position: absolute !important;
    background: #fff;
    left: 0;
    bottom: 0;
    padding: 10px 50px 10px 25px;
    width: auto;
    height: auto;
    font-size: 22px;
    font-weight: 700;
  }

  .gnav__club-text span {
    display: none;
  }

  .gnav__club-text small {
    margin-left: 15px;
    color: #14b3ec;
    font-size: 11px;
  }
}
@media screen and (max-width: 1182px) {
  .gnav__club-text small {
    display: none;
  }
}

@media screen and (max-width: 1182px) {
  .gnav__club-list li .arrow::before, .gnav__club-list li .arrow::after {
    content: none;
  }
}

.gnav__links {
  margin: 20px 29px 0;
}
@media screen and (min-width: 1183px) {
  .gnav__links {
    padding: 25px 0;
    margin: 0 0 0 18px;
    max-width: 140px;
  }
}

.gnav__link {
  color: #666;
  font-size: 12px;
  font-weight: 500;
  line-height: 2.5;
  text-decoration: underline;
}
@media screen and (min-width: 1183px) {
  .gnav__link {
    display: none;
  }
}

.gnav__link--bnr {
  margin-top: 10px;
  max-width: 127px;
}
@media screen and (min-width: 1183px) {
  .gnav__link--bnr {
    display: block;
    margin-top: 0;
    max-width: none;
  }
}

.gnav__link--mt25 {
  margin-top: 25px;
}
@media screen and (min-width: 1183px) {
  .gnav__link--mt25 {
    margin-top: 0;
  }
}

/* フッター */
.footer-links {
  display: flex;
  padding: 0 25px;
  margin: 0 auto 20px;
  width: 100%;
  max-width: 1250px;
}

.footer-link {
  position: relative;
  padding-right: 25px;
  margin-right: 25px;
  color: #666;
  font-weight: 500;
}

.footer-link::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 0;
  width: 1px;
  height: 50%;
  background-color: #666;
  transform: translateY(-50%);
}

.footer-nav {
  padding: 40px 0;
  background: #2750a1;
  color: #fff;
  font-size: 11px;
  font-weight: 500;
  line-height: 2;
}
@media screen and (min-width: 769px) {
  .footer-nav {
    padding: 70px 0;
    font-size: 15px;
  }
}

.footer-nav__container {
  padding: 0 25px;
  margin: 0 auto;
  width: 100%;
  max-width: 1250px;
}
@media screen and (min-width: 769px) {
  .footer-nav__container {
    display: flex;
    align-items: flex-start;
  }
}

.footer-nav__about img {
  width: 32.307%;
  max-width: 150px;
}
@media screen and (min-width: 769px) {
  .footer-nav__about img {
    width: 140px;
    max-width: none;
  }
}

.footer-nav__about p {
  margin: 15px 0;
}
@media screen and (min-width: 769px) {
  .footer-nav__about p {
    margin: 20px 0;
    line-height: 1.6;
  }
}

.footer-nav__about em {
  font-size: 16px;
  font-weight: 700;
}
@media screen and (min-width: 769px) {
  .footer-nav__about em {
    font-size: 22px;
  }
}

.footer-nav__list {
  margin-top: 20px;
}
@media screen and (min-width: 769px) {
  .footer-nav__list {
    margin: 0 0 0 100px;
  }
}

.footer-nav__item {
  padding-left: 1em;
  text-indent: calc(-1em - 6px);
}
@media screen and (min-width: 769px) {
  .footer-nav__item {
    text-indent: calc(-1em - 8px);
  }
}

.footer-nav__item::before {
  content: "";
  display: inline-block;
  margin-right: 6px;
  width: 9px;
  height: 9px;
  background: url(../img/common/icon_arrow.svg) no-repeat center / contain;
}
@media screen and (min-width: 769px) {
  .footer-nav__item::before {
    margin-right: 8px;
    width: 12px;
    height: 12px;
  }
}

.copyright {
  padding: 10px 0;
  color: #666;
  font-size: 10px;
  text-align: center;
}
@media screen and (min-width: 769px) {
  .copyright {
    padding: 15px 0;
    font-size: 11px;
  }
}

@media screen and (max-width: 768px) {
  .copyright span {
    display: inline-block;
    transform: scale(.8);
  }
}

/* 共通 */
.nav-list {
  display: flex;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 100;
}
@media screen and (min-width: 1183px) {
  .nav-list {
    display: block;
    top: 200px;
    bottom: auto;
    left: auto;
    right: 0;
    width: 100px;
  }
}

.nav-list__item {
  width: calc(100% / 3);
  height: 80px;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
}
@media screen and (min-width: 1183px) {
  .nav-list__item {
    border-top: 3px solid #fff;
    border-left: 3px solid #fff;
    border-bottom: 3px solid #fff;
    border-radius: 15px 0 0 15px;
    margin-bottom: 10px;
    width: 100%;
    height: 100px;
    font-size: 15px;
  }
}

.nav-list__item--green {
  background: #00b900;
}

.nav-list__item--blue {
  background: #2750a1;
}

.nav-list__item--pink {
  background: #ff6d8d;
}

.nav-list__item a {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}

.nav-list__item img {
  width: 30px;
  margin-bottom: 5px;
}
@media screen and (min-width: 1183px) {
  .nav-list__item img {
    width: 40px;
  }
}

.eng-font {
  font-family: 'Lato', sans-serif;
  font-weight: 900;
}

.container {
  padding: 0 10px;
  margin: 0 auto;
  width: 100%;
  max-width: 1020px;
}

.container--large {
  max-width: 1260px;
}

.container--middle {
  max-width: 1120px;
}

.container--plr20 {
  padding: 0 20px;
  max-width: 1040px;
}

.heading {
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  margin-bottom: 28px;
  font-size: 35px;
  line-height: 1.2;
  letter-spacing: .1em;
  text-align: center;
  z-index: 1;
}
@media screen and (min-width: 769px) {
  .heading {
    margin-bottom: 50px;
    font-size: 56px;
  }
}

.heading span {
  display: inline-block;
  padding: 0 8px;
  margin: 10px auto 0;
  width: auto;
  background: #14b3ec;
  color: #fff;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: .2em;
}
@media screen and (min-width: 769px) {
  .heading span {
    padding: 0 10px;
    margin-top: 15px;
    font-size: 15px;
  }
}

.heading img {
  display: block;
  margin: 0 auto;
  width: 40px;
}

.heading--spaced {
  letter-spacing: .3em;
}

.heading--club {
  font-size: 20px; 
  font-weight: 700;
}
@media screen and (min-width: 769px) {
  .heading--club {
    font-size: 40px; 
  }
}

.heading--club span {
  background: transparent;
  color: #14b3ec;
  font-family: 'Lato', sans-serif;
  font-size: 14px;
  font-weight: 900;
}
@media screen and (min-width: 769px) {
  .heading--club span {
    font-size: 24px;
  }
}

.heading--group::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 79px;
  height: 23px;
}
@media screen and (min-width: 769px) {
  .heading--group::before {
    width: 174px;
    height: 50px;
  }
}

.heading--group-joyfit::before {
  background: url(../img/common/img_logo_joyfit24lite.jpg) no-repeat center top / contain;
  background-image: image-set(url(../img/common/img_logo_joyfit24lite.jpg) 1x, url(../img/common/img_logo_joyfit24lite@2x.jpg) 2x);
  background-image: -webkit-image-set(url(../img/common/img_logo_joyfit24lite.jpg) 1x, url(../img/common/img_logo_joyfit24lite@2x.jpg) 2x);
}
@media screen and (max-width: 768px) {
  .heading--group-joyfit {
    padding-top: 33px;
  }
  .heading--group-joyfit::before {
    left: 50%;
    right: auto;
    transform: translateX(-50%);
  }
}

.heading--group-fit365::before {
  background: url(../img/common/img_logo_fit365.jpg) no-repeat center top / contain;
  background-image: image-set(url(../img/common/img_logo_fit365.jpg) 1x, url(../img/common/img_logo_fit365@2x.jpg) 2x);
  background-image: -webkit-image-set(url(../img/common/img_logo_fit365.jpg) 1x, url(../img/common/img_logo_fit365@2x.jpg) 2x);
}

.heading--gym span {
  background-color: #16a2d9;
}

.heading--studio span {
  background-color: #29c491;
}

.heading--pool span {
  background-color: #276cba;
}

.heading--small {
  position: relative;
  padding-bottom: 15px;
  font-size: 22px;
}
@media screen and (min-width: 769px) {
  .heading--small {
    padding-bottom: 20px;
    font-size: 30px;
  }
}

.heading--small::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 46px;
  height: 2px;
  background: #14b3ec;
  transform: translateX(-50%);
}
@media screen and (min-width: 769px) {
  .heading--small::after {
    width: 62px;
  }
}

.heading--tiny {
  font-size: 18px;
}

.heading--mb0 {
  margin-bottom: 0;
}

.top-heading {
  color: #2750a1;
  font-size: 48px;
  line-height: 1.1;
  text-align: center;
}
@media screen and (min-width: 769px) {
  .top-heading {
    font-size: 85px;
  }
}

.top-heading small {
  display: block;
  margin: 15px auto 0;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 18px;
  font-weight: 700;
}
@media screen and (min-width: 769px) {
  .top-heading small {
    margin-top: 30px;
    font-size: 26px;
  }
}

.fv-heading {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 197px;
  background: url(../img/common/bg_heading_sp.jpg) no-repeat center / cover;
  color: #fff;
  font-size: 25px;
  font-weight: 700;
  text-align: center;
}
@media screen and (min-width: 769px) {
  .fv-heading {
    height: 250px;
    background-image: url(../img/common/bg_heading.jpg);
    background-image: image-set(url(../img/common/bg_heading.jpg) 1x, url(../img/common/bg_heading@2x.jpg) 2x);
    background-image: -webkit-image-set(url(../img/common/bg_heading.jpg) 1x, url(../img/common/bg_heading@2x.jpg) 2x);
    font-size: 40px;
  }
}

.fv-heading--pink {
  background-image: url(../img/common/bg_heading_pink_sp.jpg);
}
@media screen and (min-width: 769px) {
  .fv-heading--pink {
    background-image: url(../img/common/bg_heading_pink.jpg);
    background-image: image-set(url(../img/common/bg_heading_pink.jpg) 1x, url(../img/common/bg_heading_pink@2x.jpg) 2x);
    background-image: -webkit-image-set(url(../img/common/bg_heading_pink.jpg) 1x, url(../img/common/bg_heading_pink@2x.jpg) 2x);
  }
}

.sub-heading {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 5px 18px;
  min-height: 50px;
  background: #14b3ec;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
}
@media screen and (min-width: 769px) {
  .sub-heading {
    padding-left: 28px;
    padding-right: 28px;
    min-height: 70px;
    font-size: 24px;
  }
}

.sub-heading--left {
  justify-content: flex-start;
  text-align: left;
}

.sub-heading--navy {
  background-color: #2750a1;
}

@media screen and (max-width: 768px) {
  .heading--pt35sp  {
    padding-top: 35px;
  }
}

.sub-heading--mt25 {
  margin-top: 25px;
}
@media screen and (min-width: 769px) {
  .sub-heading--mt25 {
    margin-top: 40px;
  }
}

.heading--mt60 {
  margin-top: 60px;
}
@media screen and (min-width: 769px) {
  .heading--mt60 {
    margin-top: 100px;
  }
}

.sub-heading--mb30 {
  margin-bottom: 30px;
}
@media screen and (min-width: 769px) {
  .sub-heading--mb30 {
    margin-bottom: 50px;
  }
}

.sub-heading--step {
  position: relative;
  padding-left: 64px;
  font-size: 14px;
  letter-spacing: 0;
}
@media screen and (min-width: 769px) {
  .sub-heading--step {
    padding-left: 92px;
    min-height: 87px;
    font-size: 24px;
  }
}

.tab-list {
  display: flex;
  flex-wrap: wrap;
  padding-bottom: 6px;
  border-bottom: 2px solid #14b3ec;
}
@media screen and (min-width: 769px) {
  .tab-list {
    flex-wrap: nowrap;
    justify-content: space-between;
    padding-bottom: 0;
    border-bottom-width: 3px;
  }
}

.tab {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 6px 6px 0;
  width: calc(100% / 3 - 6px);
  height: 37px;
  background: #e5e5e5;
  color: #808080;
  font-weight: 700;
  cursor: pointer;
}
@media screen and (min-width: 769px) {
  .tab {
    margin: 0;
    width: 18.4%;
    height: 60px;
  }
}

.tab.active {
  background-color: #14b3ec;
  color: #fff;
}

.tab > span {
  display: flex;
  justify-content: space-between;
  min-width: 3em;
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

.news-list {
  margin-bottom: 30px;
}
@media screen and (min-width: 769px) {
  .news-list {
    margin-bottom: 50px;
  }
}

.news-list--independent {
  border-top: 1px solid #c4c4c4;
  margin: 60px 0;
}
@media screen and (min-width: 769px) {
  .news-list--independent {
    margin: 100px 0;
  }
}

.news-list__item {
  border-bottom: 1px solid #c4c4c4;
}

.news-list__item a {
  display: block;
  width: 100%;
  height: 100%;
  padding: 10px 0;
}
@media screen and (min-width: 769px) {
  .news-list__item a {
    display: flex;
    align-items: center;
    padding: 15px 0;
  }
}

.news-list__info {
  display: flex;
  align-items: center;
  font-size: 11px;
}
@media screen and (min-width: 769px) {
  .news-list__info {
    font-size: 15px;
  }
}

.news-list__info > span {
  margin-right: 20px;
}

.news-list__info em {
  font-weight: 700;
}

.news-list__category em {
  display: flex;
  justify-content: space-between;
  min-width: 3em;
  letter-spacing: 0;
}

.news-list__tag {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 83px;
  height: 20px;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
}
@media screen and (min-width: 769px) {
  .news-list__tag {
    width: 110px;
    height: 26px;
    font-size: 13px;
  }
}

.btn {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 40px;
  margin: 0 auto;
  width: 100%;
  max-width: 195px;
  height: 45px;
  background: #14b3ec;
  color: #fff;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
}
@media screen and (min-width: 769px) {
  .btn {
    padding: 0 41px;
    max-width: 260px;
    height: 60px;
    transition: opacity .3s ease;
  }

  .btn:hover {
    opacity: .7;
  }
}

.btn img {
  width: 24px;
  transform: translateX(-17px);
}
@media screen and (min-width: 769px) {
  .btn img {
    width: 32px;
  }
}

.btn--white {
  background: #fff;
  color: #000;
}

.btn--small {
  max-width: 135px;
}
@media screen and (min-width: 769px) {
  .btn--small {
    max-width: 180px;
  }
}

.btn--large {
  max-width: 337px;
}
@media screen and (min-width: 769px) {
  .btn--large {
    max-width: 450px;
    font-size: 16px;
  }
}

.btn--full {
  max-width: none;
}

.btn--answer {
  margin-top: 20px;
}
@media screen and (min-width: 769px) {
  .btn--answer {
    margin-top: 40px;
  }
}

.btn--fee {
  margin-bottom: 70px;
  height: 75px;
}
@media screen and (min-width: 769px) {
  .btn--fee {
    margin-bottom: 115px;
    height: 100px;
  }
}

.btn--fee img {
  width: 35px;
  transform: translateX(-27px);
}
@media screen and (min-width: 769px) {
  .btn--fee img {
    width: 47px;
    transform: translateX(-37px);
  }
}

.btn--swimming img {
  width: 28px;
  transform: translateX(-27px);
}
@media screen and (min-width: 769px) {
  .btn--swimming img {
    width: 37px;
    transform: translateX(-34px);
  }
}

.btn--app {
  height: 135px;
  background-color: #2750a1;
  font-size: 18px;
}
@media screen and (min-width: 769px) {
  .btn--app {
    height: 191px;
    font-size: 30px;
  }

  .btn--app img {
    transform: translateX(-56px);
  }
}

.btn--faq {
  height: 75px;
}
@media screen and (min-width: 769px) {
  .btn--faq {
    height: 100px;
  }
}

.btn--faq img {
  width: 35px;
  transform: translateX(-50px);
}
@media screen and (min-width: 769px) {
  .btn--faq img {
    width: 46px;
    transform: translateX(-70px);
  }
}

.btn--news {
  height: 75px;
}
@media screen and (min-width: 769px) {
  .btn--news {
    height: 100px;
  }
}

.btn--news img {
  width: 35px;
  transform: translateX(-50px);
}
@media screen and (min-width: 769px) {
  .btn--news img {
    width: 47px;
    transform: translateX(-55px);
  }
}

.btn-wrap {
  margin: 80px 0;
}
@media screen and (min-width: 769px) {
  .btn-wrap {
    margin-bottom: 110px;
  }
}

.btn-wrap--bo100 {
  margin-top: 0;
}
@media screen and (max-width: 768px) {
  .btn-wrap--bo100 {
    margin: 0 0 100px;
  }
}

.btn-wrap--95 {
  margin-top: 30px;
}
@media screen and (max-width: 768px) {
  .btn-wrap--95 {
    margin: 20px 0 100px;
  }
}

.arrow {
  position: relative;
}

.arrow::before, .arrow::after {
  content: "";
  position: absolute;
  top: 50%;
}

.arrow::before {
  right: 10px;
  width: 20px;
  height: 1px;
  background-color: #fff;
  transform: translateY(-50%);
}
@media screen and (min-width: 769px) {
  .arrow::before {
    right: 15px;
    width: 26px;
  }
}

.arrow--black::before {
  background-color: #000;
}

.arrow::after {
  right: 11px;
  width: 9px;
  height: 9px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  transform: translateY(-50%) rotate(45deg);
}
@media screen and (min-width: 769px) {
  .arrow::after {
    right: 16px;
    width: 12px;
    height: 12px;
  }
}

.arrow--black::after {
  border-top-color: #000;
  border-right-color: #000;
}

@media screen and (min-width: 769px) {
  .arrow--large::before {
    right: 30px;
    width: 40px;
  }

  .arrow--large::after {
    right: 32px;
    width: 17px;
    height: 17px;
  }
}

.arrow--small::before {
  right: 12px;
  width: 21px;
}

.arrow--small::after {
  right: 13px;
  width: 10px;
  height: 10px;
}

.arrow--reverse::before {
  left: 10px;
  right: auto;
}
@media screen and (min-width: 769px) {
  .arrow--reverse::before {
    left: 15px;
  }
}

.arrow--reverse::after {
  left: 11px;
  right: auto;
  transform: translateY(-50%) rotate(225deg);
}
@media screen and (min-width: 769px) {
  .arrow--reverse::after {
    left: 16px;
  }
}

.btn--app.arrow::before {
  right: 20px;
}
@media screen and (min-width: 769px) {
  .btn--app.arrow::before {
    right: 30px;
  }
}

.btn--app.arrow::after {
  right: 21px;
}
@media screen and (min-width: 769px) {
  .btn--app.arrow::after {
    right: 31px;
  }
}

.bg {
  position: relative;
  padding-bottom: 8.8vw;
  margin: 73px 0 60px;
  background: rgba(20, 179, 236, .2);
  overflow: hidden;
  z-index: 0;
}
@media screen and (min-width: 769px) {
  .bg {
    padding-bottom: 122px;
    margin: 120px 0 50px;
  }
}

.bg::before, .bg::after {
  content: "";
  position: absolute;
  left: 0;
  width: 0;
  height: 0;
  z-index: -1;
}

.bg::before {
  top: 0;
  border-top: 8.8vw solid #fff;
  border-right: 100vw solid transparent;
}
@media screen and (min-width: 769px) {
  .bg::before {
    border-top-width: 122px;
  }
}

.bg::after {
  bottom: 0;
  border-bottom: 8.8vw solid #fff;
  border-left: 100vw solid transparent;
}
@media screen and (min-width: 769px) {
  .bg::after {
    border-bottom-width: 122px;
  }
}

.bg--yellow {
  background: #fff769;
}

.bg--translucent-yellow {
  background-color: rgba(255, 255, 91, .5);
}

.bg--in {
  padding-top: 80px;
}
@media screen and (min-width: 769px) {
  .bg--in {
    padding-top: 170px;
  }
}

.bg--out {
  padding-top: 109px;
  padding-bottom: 0;
  margin-top: 45px;
  margin-bottom: 40px;
  background: linear-gradient(rgba(20, 179, 236, .2) 90%, #fff 90%);
}
@media screen and (min-width: 769px) {
  .bg--out {
    padding-top: 203px;
    margin-top: 63px;
    margin-bottom: 120px;
    background: linear-gradient(rgba(20, 179, 236, .2) 77%, #fff 77%);
  }
}

.bg--out-yellow {
  background: linear-gradient(#fff769 90%, #fff 90%);
}
@media screen and (min-width: 769px) {
  .bg--out-yellow  {
    background: linear-gradient(#fff769 77%, #fff 77%);
  }
}

.bg--out::after {
  bottom: 10%;
}
@media screen and (min-width: 769px) {
  .bg--out::after {
    bottom: calc(23% - 1px);
  }
}

.bg--reverse::before {
  border-left: 100vw solid transparent;
  border-right: none;
}

.bg--reverse::after {
  border-left: none;
  border-right: 100vw solid transparent;
}

.bg--insta {
  padding-top: 75px;
  margin: 63px 0;
}
@media screen and (min-width: 769px) {
  .bg--insta {
    padding-top: 160px;
    margin: 57px 0 80px;
  }
}

.bg--common {
  padding-top: 65px;
  margin: 25px 0 50px;
}
@media screen and (min-width: 769px) {
  .bg--common {
    padding-top: 170px;
    margin: 40px 0 80px;
  }
}

.bg--beginner {
   margin: 65px 0 30px;
}

.bg--group {
  margin-bottom: 25px;
  background: linear-gradient(rgba(20, 179, 236, .2) 92%, #fff 92%);
}
@media screen and (min-width: 769px) {
  .bg--group {
    margin-top: 37px;
    margin-bottom: 60px;
    background: linear-gradient(rgba(20, 179, 236, .2) 83%, #fff 83%);
  }
}

.bg--group::after {
  bottom: 8%;
}
@media screen and (min-width: 769px) {
  .bg--group::after {
    bottom: calc(17% - 1px);
  }
}

.bg--out-yellow.bg--group {
  background: linear-gradient(#fff769 92%, #fff 92%);
}
@media screen and (min-width: 769px) {
  .bg--out-yellow.bg--group  {
    background: linear-gradient(#fff769 83%, #fff 83%);
  }
}

.bg--mb80 {
  margin-bottom: 80px;
}
@media screen and (min-width: 769px) {
  .bg--mb80 {
    margin-bottom: 160px;
  }
}

.number-icon {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: absolute;
  background: url(../img/common/bg_point.png) no-repeat center / contain;
  background-image: image-set(url(../img/common/bg_point.png) 1x, url(../img/common/bg_point@2x.png) 2x);
  background-image: -webkit-image-set(url(../img/common/bg_point.png) 1x, url(../img/common/bg_point@2x.png) 2x);
  color: #2750a1;
  line-height: 1;
  text-align: center;
}

.sub-heading--step .number-icon {
  top: -5px;
  left: -2px;
  width: 59px;
  height: 59px;
  font-size: 10px;
}
@media screen and (min-width: 769px) {
  .sub-heading--step .number-icon {
    top: -9px;
    left: -33px;
    width: 105px;
    height: 105px;
    font-size: 17px;
  }
}

.sub-heading--step .number-icon em {
  font-size: 24px;
}
@media screen and (min-width: 769px) {
  .sub-heading--step .number-icon em {
    font-size: 43px;
  }
}

.deco {
  position: relative;
  z-index: 0;
}

.deco::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../img/common/bg_wave.png) no-repeat center top / 100%;
  background-image: image-set(url(../img/common/bg_wave.png) 1x, url(../img/common/bg_wave@2x.png) 2x);
  background-image: -webkit-image-set(url(../img/common/bg_wave.png) 1x, url(../img/common/bg_wave@2x.png) 2x);
  z-index: -1;
}
@media screen and (min-width: 769px) {
  .deco::before {
    top: -100px;
  }
}

.deco--yellow:before {
  top: -120px;
  background: url(../img/common/bg_wave_yellow.png) no-repeat center top / 100%;
  background-image: image-set(url(../img/common/bg_wave_yellow.png) 1x, url(../img/common/bg_wave_yellow@2x.png) 2x);
  background-image: -webkit-image-set(url(../img/common/bg_wave_yellow.png) 1x, url(../img/common/bg_wave_yellow@2x.png) 2x);
}
@media screen and (min-width: 769px) {
  .deco--yellow::before {
    top: -340px;
  }
}

.deco--club::before {
  top: 20px;
}
@media screen and (min-width: 769px) {
  .deco--club::before {
    top: -100px;
  }
}

.deco--reverse::before {
  transform: scale(-1, 1);
}

.deco--mb63 {
  margin-bottom: 63px;
}
@media screen and (min-width: 769px) {
  .deco--mb63 {
    margin-bottom: 100px;
  }
}

.deco--mb80 {
  margin-bottom: 80px;
}
@media screen and (min-width: 769px) {
  .deco--mb80 {
    margin-bottom: 160px;
  }
}

@media screen and (min-width: 769px) {
  .guide {
    display: flex;
  }
}

.guide--alone {
  margin: 50px 0 40px;
}
@media screen and (min-width: 769px) {
  .guide--alone {
    margin: 60px 0 30px;
    justify-content: center;
  }
}

.guide--alone2 {
  margin: 30px 0 55px;
}
@media screen and (min-width: 769px) {
  .guide--alone2 {
    margin: 50px 0 90px;
  }
}

.guide--club {
  margin-bottom: 80px;
}
@media screen and (min-width: 769px) {
  .guide--club {
    margin-bottom: 110px;
  }
}

.guide__link {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 100%;
  height: 134px;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  text-align: center;
  overflow: hidden;
  z-index: 0;
}
@media screen and (min-width: 769px) {
  .guide__link {
    width: 50%;
    height: 250px;
    font-size: 30px;
  }

  .guide--alone .guide__link {
    width: 100%;
    max-width: 700px;
  }
}
@media screen and (max-width: 768px) {
  .guide__link.arrow::before {
    right: 15px;
  }

  .guide__link.arrow::after {
    right: 16px;
  }
}

.guide__link img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  z-index: -1;
  transform: translateX(-50%) translateY(-50%);
}
@media screen and (min-width: 769px) {
  .guide__link img {
    min-width: 700px;
    min-height: 250px;
    transition: transform .3s ease;
  }

  .guide__link:hover img {
    transform: translateX(-50%) translateY(-50%) scale(1.1);
  }
}

.lead {
  margin-top: 40px;
  font-size: 13px;
  text-align: center;
}
@media screen and (min-width: 769px) {
  .lead {
    font-size: 17px;
  }
}

.lead--justify {
  text-align: justify;
}

.lead--mt0 {
  margin-top: 0;
}

.lead--mb30 {
  margin-bottom: 30px;
}
@media screen and (min-width: 769px) {
  .lead--mb30 {
    margin-bottom: 45px;
  }
}

.lead--mb40 {
  margin-bottom: 40px;
}
@media screen and (min-width: 769px) {
  .lead--mb40 {
    margin-bottom: 75px;
  }
}

.fee-link-list {
  margin: 35px 0 50px;
}
@media screen and (min-width: 769px) {
  .fee-link-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 70px 0 100px;
    gap: 50px 40px;
  }
}

.fee-link-list__item:not(:last-of-type) {
  margin-bottom: 15px;
}
@media screen and (min-width: 769px) {
  .fee-link-list__item {
    width: 480px;
  }

  .fee-link-list__item:not(:last-of-type) {
    margin-bottom: 0;
  }
}

.fee-link-list__text {
  margin-bottom: 5px;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: .5em;
  text-align: center;
}
@media screen and (min-width: 769px) {
  .fee-link-list__text {
    font-size: 24px;
  }
}

.fee-link-list__item .btn {
  font-size: 13px;
}
@media screen and (min-width: 769px) {
  .fee-link-list__item .btn {
    font-size: 15px;
  }
}

.fee-link-list__item .btn img {
  width: 30px;
  transform: translateX(-24px);
}
@media screen and (min-width: 769px) {
  .fee-link-list__item .btn img {
    width: 39px;
    transform: translateX(-32px);
  }
}

.step-list {
  margin: 45px 0 60px;
}
@media screen and (min-width: 769px) {
  .step-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    margin: 60px auto 40px;
  }
}

.step-list--quartering {
  margin-top: 60px;
  margin-bottom: 40px;
}
@media screen and (min-width: 769px) {
  .step-list--quartering {
    margin-top: 70px;
    margin-bottom: 20px;
    gap: 40px 104px;
  }
}

.step-list__item {
  position: relative;
  margin: 0 auto;
  width: 53.433%;
}
@media screen and (min-width: 769px) {
  .step-list__item {
    margin-left: 40px;
    margin-right: 40px;
    width: 217px;
  }

  .step-list--quartering .step-list__item {
    margin-left: 0;
    margin-right: 0;
    width: 172px;
  }
}

.step-list__item:not(:last-of-type) {
  margin-bottom: 70px;
}
@media screen and (min-width: 769px) {
  .step-list__item:not(:last-of-type) {
    margin-bottom: 40px;
  }

  .step-list--quartering .step-list__item:not(:last-of-type) {
    margin-bottom: 0;
  }
}

.step-list__item:not(:last-of-type)::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -43px;
  width: 18px;
  height: 18px;
  background: url(../img/common/icon_arrow_navy.svg) no-repeat center / contain;
  transform: translateX(-50%) rotate(90deg);
}
@media screen and (min-width: 769px) {
  .step-list__item:not(:last-of-type)::after {
    left: calc(100% + 28px);
    bottom: 50%;
    width: 22px;
    height: 22px;
    transform: translateY(-50%);
  }

  .step-list--quartering .step-list__item:not(:last-of-type)::after {
    left: calc(100% + 40px);
  }
}
@media screen and (max-width: 768px) {
  .step-list--quartering .step-list__item:not(:last-of-type)::after {
    bottom: -38px;
  }
}

.step-list__item img {
  display: block;
  margin: 0 auto 15px;
  width: 87.709%;
}
@media screen and (min-width: 769px) {
  .step-list__item img {
    margin-bottom: 20px;
    width: 192px;
  }
}

.step-list--quartering .step-list__item img {
  margin-bottom: 10px;
  width: 84.916%;
}

.step-list__item p {
  letter-spacing: 0;
}

.step-list__item a {
  text-decoration: underline;
}
@media screen and (min-width: 769px) {
  .step-list__item a:hover {
    text-decoration: none;
  }
}

.step-list__item .number-icon {
  top: -16px;
  right: calc(50% + 7.733vw);
  width: 70px;
  height: 70px;
}
@media screen and (min-width: 769px) {
  .step-list__item .number-icon {
    top: -22px;
    left: -20px;
    right: auto;
    width: 85px;
    height: 85px;
    font-size: 14px;
  }
}

.step-list--quartering .step-list__item .number-icon {
  width: 68px;
  height: 68px;
  font-size: 11px;
}
@media screen and (min-width: 769px) {
  .step-list--quartering .step-list__item .number-icon {
    width: 77px;
    height: 77px;
    font-size: 13px;
  }
}

.step-list__item .number-icon em {
  font-size: 29px;
}
@media screen and (min-width: 769px) {
  .step-list__item .number-icon em {
    font-size: 35px;
  }
}

.step-list--quartering .step-list__item .number-icon em {
  font-size: 28px;
}
@media screen and (min-width: 769px) {
  .step-list--quartering .step-list__item .number-icon em {
    font-size: 32px;
  }
}

.step-list__item--center p {
  text-align: center;
}

.caution {
  padding: 25px 10px;
  margin: 35px 0 60px;
  background: #fff;
}
@media screen and (min-width: 769px) {
  .caution {
    padding: 30px 60px;
    margin: 60px auto 90px;
    max-width: 733px;
  }

  .caution--mb30 {
    margin-bottom: 30px;
  }
}

.caution__heading {
  margin: 0 10px 10px;
  color: #2750a1;
  font-size: 15px;
  font-weight: 700;
}
@media screen and (min-width: 769px) {
  .caution__heading {
    margin: 0 0 20px;
    font-size: 20px;
    letter-spacing: 0;
  }
}

.caution__heading img {
  display: block;
  margin: 0 auto 15px;
  width: 35px;
}
@media screen and (min-width: 769px) {
  .caution__heading img {
    margin-bottom: 20px;
    width: 47px;
  }
}

.caution__list {
  margin-left: 10px;
  letter-spacing: 0;
}
@media screen and (min-width: 769px) {
  .caution__list {
    margin-left: 0;
  }
}

.caution__list {
  padding-left: 1em;
  text-indent: -.9em;
}

.attn {
  padding-left: 1em;
  margin: 20px 0 40px;
  font-size: 11px;
  line-height: 1.4;
  text-indent: -1em;
}
@media screen and (min-width: 769px) {
  .attn {
    margin: 30px 0 35px;
    font-size: 13px;
    line-height: 2;
  }
}

.attn span {
  display: block;
}

.attn--plan {
  margin: 10px 0 40px;
}
@media screen and (min-width: 769px) {
  .attn--plan {
    margin-bottom: 30px;
  }
}

.attn--visit {
  margin-top: -10px;
  margin-bottom: 20px;
  text-align: center;
}
@media screen and (min-width: 769px) {
  .attn--visit {
    margin-top: -35px;
    margin-bottom: 30px;
  }
}

.policy-list {
  margin-bottom: 70px;
}
@media screen and (min-width: 769px) {
  .policy-list {
    margin: 60px 0 100px;
  }
}

.policy-list dt {
  padding-bottom: 5px;
  border-bottom: 1px solid #ccc;
  margin: 45px 0 10px;
  color: #2750a1;
  font-size: 15px;
  font-weight: 700;
}
@media screen and (min-width: 769px) {
  .policy-list dt {
    padding-bottom: 10px;
    margin-bottom: 15px;
    font-size: 20px;
  }
}

.policy-list dd {
  text-align: justify;
}

@media screen and (max-width: 768px) {
  .policy-list--stop {
    margin-bottom: 90px;
  }
}

.policy-list--stop dt:first-of-type {
  margin-top: 0;
}

.gotop {
  position: fixed;
  right: 20px;
  bottom: 100px;
  width: 48px;
  height: 100px;
  background: url(../img/common/icon_gotop_active.svg) no-repeat center / contain;
  z-index: 100;
}
@media screen and (min-width: 1182px) {
  .gotop {
    bottom: 20px;
    width: 80px;
    height: 167px;
    background-image: url(../img/common/icon_gotop.svg);
  }

  .gotop:hover {
    background-image: url(../img/common/icon_gotop_active.svg);
  }
}

/* トップ */
.slider-for {
  margin: 0 auto;
  max-width: 1400px;
}

.slider-for__image[href=""] {
  pointer-events: none;
}

.slider-for__image img {
  width: 100%;
}
@media screen and (min-width: 769px) {
  .slider-for__image img {
    transition: opacity .3s ease;
  }

  .slider-for__image img:hover {
    opacity: .8;
  }
}

.slider-nav {
  margin: 30px auto 60px;
  width: 100%;
  max-width: 1002px;
}
@media screen and (min-width: 769px) {
  .slider-nav {
    padding: 0 71px;
    margin-top: 40px;
    margin-bottom: 80px;
  }
}

.slider-nav__image {
  margin: 0 6px;
}
@media screen and (min-width: 769px) {
  .slider-nav__image {
    margin: 0 5px;
  }
}

.slider-nav .slick-prev, .slider-nav .slick-next {
  width: 36px;
  height: 36px;
  z-index: 1;
}
@media screen and (min-width: 769px) {
  .slider-nav .slick-prev, .slider-nav .slick-next {
    width: 48px;
    height: 48px;
  }
}

.slider-nav .slick-prev {
  left: 7px;
}
@media screen and (min-width: 769px) {
  .slider-nav .slick-prev {
    left: 0;
  }
}

.slider-nav .slick-next {
  right: 7px;
}
@media screen and (min-width: 769px) {
  .slider-nav .slick-next {
    right: 0;
  }
}

.slider-nav .slick-next:before, .slider-nav .slick-prev:before{
  content:"";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 1;
}

.slider-nav .slick-next:before{
  background-image: url(../img/top/img_slider_arrow.png);
  background-size: contain;
  transform: scale(-1, 1);
}

.slider-nav .slick-prev:before{
  background-image: url(../img/top/img_slider_arrow.png);
  background-size: contain;
}

.announce {
  padding: 10px 0;
  margin: 0 auto;
  max-width: 1400px;
  background: #ff0000;
  color: #fff;
}
@media screen and (min-width: 769px) {
  .announce {
    padding: 15px 0;
  }
}

@media screen and (min-width: 769px) {
  .announce__inner {
    display: flex;
  }
}

.announce__heading {
  margin-bottom: 3px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .1em;
}
@media screen and (min-width: 769px) {
  .announce__heading {
    flex-shrink: 0;
    padding-right: 35px;
    border-right: 1px solid #fff;
    margin: 0 50px 0 0;
    width: auto;
    font-size: 20px;
  }
}

.announce__heading::before {
  content: "";
  display: inline-block;
  margin-right: 14px;
  width: 12px;
  height: 12px;
  background: url(../img/common/icon_arrow.svg) no-repeat center / contain;
}
@media screen and (min-width: 769px) {
  .announce__heading::before {
    margin-right: 19px;
    width: 16px;
    height: 16px;
  }
}

.announce__list {
  font-size: 11px;
  font-weight: 500;
  line-height: 1.5;
}
@media screen and (min-width: 769px) {
  .announce__list {
    padding-bottom: 10px;
    font-size: 15px;
  }
}

.announce__item {
  margin-bottom: 5px;
}
@media screen and (min-width: 769px) {
  .announce__item {
    margin: 10px 0 0;
  }
}

.announce__item a {
  display: flex;
}

.announce__item span {
  margin-right: 20px;
}
@media screen and (min-width: 769px) {
  .announce__item span {
    margin-right: 25px;
  }
}

.point-list {
  padding: 0 30px;
  margin: 35px 0 60px;
}
@media screen and (min-width: 769px) {
  .point-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 0;
    margin: 40px 0 50px;
  }
}

.point-list__item {
  position: relative;
  text-align: justify;
}
@media screen and (min-width: 769px) {
  .point-list__item {
    width: 290px;
  }
}

.point-list__item:not(:last-of-type) {
  margin-bottom: 45px;
}
@media screen and (min-width: 769px) {
  .point-list__item:not(:last-of-type) {
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 0;
  }
}
@media screen and (min-width: 1035px) {
  .point-list__item:not(:last-of-type) {
    margin-left: 0;
    margin-right: 65px;
  }
}

.point-list__item p {
  margin-top: 15px;
}
@media screen and (min-width: 769px) {
  .point-list__item p {
    margin-top: 20px;
  }
}

.point-list__item .number-icon {
  top: 0;
  right: calc(50% + 15.2vw);
  width: 73px;
  height: 73px;
}
@media screen and (min-width: 769px) {
  .point-list__item .number-icon {
    left: -25px;
    right: auto;
    width: 122px;
    height: 122px;
    font-size: 20px;
  }
}

.point-list__item .number-icon em {
  font-size: 30px;
}
@media screen and (min-width: 769px) {
  .point-list__item .number-icon em {
    font-size: 50px;
  }
}

.point-list__heading {
  font-size: 18px;
  font-weight: 700;
  text-align: center;
}
@media screen and (min-width: 769px) {
  .point-list__heading {
    font-size: 22px;
    letter-spacing: 0;
  }
}

.point-list__heading em {
  padding: 0 5px;
  background: #fff;
}
@media screen and (min-width: 769px) {
  .point-list__heading em {
    padding: 0 10px;
  }
}

.lineUp-list {
  margin-bottom: 60px;
}
@media screen and (min-width: 769px) {
  .lineUp-list {
    margin-bottom: 100px;
  }
}

.lineUp-list__item {
  position: relative;
}

.lineUp-list__item:not(:last-of-type) {
  margin-bottom: 20px;
}
@media screen and (min-width: 769px) {
  .lineUp-list__item:not(:last-of-type) {
    margin-bottom: 50px;
  }
}

.lineUp-list__item a {
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

@media screen and (min-width: 769px) {
  .lineUp-list__item img {
    min-width: 1240px;
    min-height: 340px;
    transition: transform .3s ease;
  }

  .lineUp-list__item a:hover img {
    transform: scale(1.1);
  }
}

.lineUp-list__content {
  display: flex;
  flex-direction: column;
  position: absolute;
  right: 0;
  bottom: 0;
  padding: 12px;
  width: 59.718%;
  min-height: 72px;
  background: #fff;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.3;
}
@media screen and (min-width: 769px) {
  .lineUp-list__content {
    padding: 30px 30px 15px 30px;
    width: 430px;
    min-height: 170px;
    font-size: 30px;
    font-weight: 700;
    line-height: 1.5;
  }
}
@media screen and (max-width: 768px) {
  .lineUp-list__content.arrow::before {
    width: 17px;
  }

  .lineUp-list__content.arrow::after {
    width: 7px;
    height: 7px;
  }
}

.lineUp-list__item:nth-of-type(2n) .lineUp-list__content {
  left: 0;
  right: auto;
}

.lineUp-list__content--adult {
  width: 62.535%;
}
@media screen and (min-width: 769px) {
  .lineUp-list__content--adult {
    width: 430px;
  }
}

.lineUp-list__content span {
  font-size: 11px;
  letter-spacing: -.05em;
}
@media screen and (min-width: 769px) {
  .lineUp-list__content span {
    font-size: 18px;
    letter-spacing: 0;
  }
}

.lineUp-list__content small {
  display: block;
  margin-top: 5px;
  color: #14b3ec;
  font-size: 11px;
}
@media screen and (min-width: 769px) {
  .lineUp-list__content small {
    margin-top: auto;
    font-size: 24px;
  }
}

.sns {
  padding: 0 38px;
  margin: 40px 0 47px;
}
@media screen and (min-width: 769px) {
  .sns {
    display: flex;
    padding: 0;
    margin: 50px 0 60px;
  }
}

.sns__line {
  padding-bottom: 30px;
  border-bottom: 1px solid #999;
  margin-bottom: 30px;
}
@media screen and (min-width: 769px) {
  .sns__line {
    flex-shrink: 0;
    padding-right: 34px;
    padding-bottom: 0;
    border-right: 1px solid #999;
    border-bottom: none;
    margin-right: 35px;
    margin-bottom: 0;
    width: 215px;
  }
}

.sns__heading {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
  font-size: 23px;
  text-align: center;
}
@media screen and (min-width: 769px) {
  .sns__heading {
    margin-bottom: 35px;
    font-size: 30px;
  }
}

.sns__heading img {
  display: inline-block;
  margin-right: 10px;
  width: 40px;
  height: 40px;
}
@media screen and (min-width: 769px) {
  .sns__heading img {
    margin-right: 14px;
  }
}

.sns__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 4%;
}
@media screen and (min-width: 769px) {
  .sns__list {
    gap: 10px 10px;
  }
}

.sns__item {
  width: 48%;
  max-width: 135px;
}
@media screen and (min-width: 769px) {
  .sns__item {
    width: 180px;
    max-width: none;
  }
}

.club-list {
  padding: 0 14px;
  margin: 40px 0 130px;
}
@media screen and (min-width: 769px) {
  .club-list {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 0;
    margin: 100px 0 280px;
    gap: 100px;
    z-index: 1;
  }

  .club-list--simple {
    gap: 60px 100px;
  }
}

.club-list--mtb0 {
  margin: 0;
}

.club-list__item:not(:last-of-type) {
  margin-bottom: 44px;
}
@media screen and (min-width: 769px)  {
  .club-list__item {
    width: 450px;
  }

  .club-list__item:not(:last-of-type) {
    margin-bottom: 0;
  }
}

.club-list__item--mb20:not(:last-of-type) {
  margin-bottom: 20px;
}
@media screen and (min-width: 769px)  {
  .club-list__item--mb20:not(:last-of-type) {
    margin-bottom: 0;
  }
}

.club-list__item .btn {
  font-size: 15px;
}

.club-list__link {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
@media screen and (min-width: 769px) {
  .club-list__link {
    height: 280px;
  }
}

.club-list__link img {
  transition: transform .3s ease;
}
@media screen and (min-width: 769px) {
  .club-list__link:hover img {
    transform: scale(1.1);
  }
}

.club-list__name {
  position: absolute;
  left: 0;
  bottom: 0;
  padding: 8px 45px 8px 23px;
  background: #fff;
  font-size: 21px;
  font-weight: 700;
  line-height: 1;
}
@media screen and (min-width: 769px) {
  .club-list__name {
    padding: 10px 60px 10px 30px;
    font-size: 28px;
  }
}

.club-list__name small {
  margin-left: 13px;
  color: #14b3ec;
  font-size: 12px;
}
@media screen and (min-width: 769px) {
  .club-list__name small {
    margin-left: 17px;
    font-size: 14px;
  }
}

.club-list__info {
  margin: 10px 0;
}
@media screen and (min-width: 769px) {
  .club-list__info {
    margin: 15px 0;
  }
  .club-list__info a {
    cursor: default;
    pointer-events: none;
  }
}
@media screen and (max-width: 768px) {
  .club-list__info a {
    color: #2750a1;
    font-weight: 500;
  }
}

.club-list__tag {
  display: flex;
  flex-wrap: wrap;
  margin-top: 14px;
}
@media screen and (min-width: 769px) {
  .club-list__tag {
    margin-top: 20px;
  }
}

.club-list__tag li {
  padding: 3px 9px;
  margin: 0 3px 3px 0;
  background: #e6e6e6;
  font-size: 10px;
}
@media screen and (min-width: 769px) {
  .club-list__tag li {
    margin: 0 4px 4px 0;
    font-size: 12px;
  }
}

.faq {
  margin: 40px 0 90px;
}
@media screen and (min-width: 769px) {
  .faq {
    margin-top: 70px;
  }
}

.faq dt, .faq dd {
  position: relative;
}

.faq dt::before, .faq dd::before {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  left: 15px;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  font-family: 'Lato', sans-serif;
  font-size: 17px;
  font-weight: 900;
}
@media screen and (min-width: 769px) {
  .faq dt::before, .faq dd::before {
    left: 20px;
    width: 40px;
    height: 40px;
    font-size: 22px;
  }
}

.faq dt {
  padding: 10px 40px 10px 55px;
  margin-top: 30px;
  background: #14b3ec;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
}
@media screen and (min-width: 769px) {
  .faq dt {
    padding: 15px 60px 15px 80px;
    margin-top: 55px;
    font-size: 18px;
    cursor: pointer;
  }
}

.faq dt::before {
  content: "Q";
  top: 50%;
  background-color: #fff;
  color: #000;
  transform: translateY(-50%);
}

.faq dt::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 10px;
  width: 15px;
  height: 15px;
  background: url(../img/common/icon_arrow.svg);
  transform: translateY(-50%) rotate(-90deg);
  transition: transform .3s ease;
}
@media screen and (min-width: 769px) {
  .faq dt::after {
    right: 20px;
    width: 20px;
    height: 20px;
  }
}

.faq dt.open::after {
  transform: translateY(-50%) rotate(90deg);
}

.faq dd {
  display: none;
  padding: 6px 18px 0 60px;
  margin-top: 10px;
  font-size: 11px;
  text-align: justify;
}
@media screen and (min-width: 769px) {
  .faq dd {
    padding: 6px 80px 0;
    margin-top: 20px;
    font-size: 15px;
  }
}

.faq dd::before {
  content: "A";
  top: 0;
  background-color: #14b3ec;
  color: #fff;
}

/* お知らせ */
.pagination {
  position: relative;
}

.pagination .screen-reader-text {
  position: absolute;
  top: 100%;
  left: 0;
  opacity: 0;
}

.pagination ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin: 0 auto 100px;
}
@media screen and (min-width: 769px) {
  .pagination ul {
    margin-bottom: 190px;
  }
}

.pagination li .page-numbers {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 8px;
  width: 25px;
  height: 25px;
  font-size: 11px;
  font-weight: 500;
  text-align: center;
}
@media screen and (min-width: 769px) {
  .pagination li .page-numbers {
    margin: 0 12px;
    width: 36px;
    height: 36px;
    font-size: 14px;
  }
}

.pagination li .next.page-numbers, .pagination li .prev.page-numbers {
  position: relative;
}

.pagination li .next.page-numbers::before, .pagination li .prev.page-numbers::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  border-top: 1px solid #000;
  width: 6px;
  height: 6px;
}
@media screen and (min-width: 769px) {
  .pagination li .next.page-numbers::before, .pagination li .prev.page-numbers::before {
    width: 8px;
    height: 8px;
  }
}

.pagination li .next.page-numbers::before {
  border-right: 1px solid #000;
  transform: translateX(-50%) translateY(-50%) rotate(45deg);
}

.pagination li .prev.page-numbers::before {
  border-left: 1px solid #000;
  transform: translateX(-50%) translateY(-50%) rotate(-45deg);
}

.pagination li .page-numbers.current {
  background: #2750a1;
  color: #fff;
}

.news {
  margin: 40px 10px 100px;
}
@media screen and (min-width: 769px) {
  .news {
    margin: 100px 0 190px;
  }
}

.news__heading {
  padding-bottom: 10px;
  border-bottom: 1px solid #c4c4c4;
  margin: 10px 0 30px;
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 0;
}
@media screen and (min-width: 769px) {
  .news__heading {
    padding-bottom: 15px;
    margin-bottom: 40px;
    font-size: 30px;
  }
}

.news__image {
  text-align: center;
}

.news__content {
  margin: 30px 0 80px;
}
@media screen and (min-width: 769px) {
  .news__content {
    margin: 40px 0 100px;
  }
}

.news__content a {
  text-decoration: underline;
}

.news__content a:hover {
  text-decoration: none;
}

/* 各店舗 */
.slider {
  margin: 0 auto;
  max-width: 1400px;
}

.slider__image img {
  width: 100%;
}
@media screen and (min-width: 769px) {
  .slider__image img {
    transition: opacity .3s ease;
  }

  .slider__image img:hover {
    opacity: .8;
  }
}

.slider__image[href=""] {
  pointer-events: none;
}

.slider.slick-dotted.slick-slider {
  margin-bottom: 0;
}

.slider .slick-arrow:before{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.slider .slick-prev, .slider .slick-next {
  top: auto;
  bottom: 15px;
  width: 15px;
  height: 15px;
  z-index: 1;
}
@media screen and (min-width: 769px) {
  .slider .slick-prev, .slider .slick-next {
    bottom: 14px;
    width: 22px;
    height: 22px;
  }
}

.slider .slick-prev::before, .slider .slick-next::before {
  background: url(../img/common/icon_arrow.svg) no-repeat center / contain;
}

.slider .slick-prev {
  left: auto;
  right: 50%;
}

.slider .slick-prev::before {
  transform: scale(-1, 1);
}

.slider .slick-next {
  left: 50%;
  right: auto;
}

.slider .slick-dots {
  left: 50%;
  bottom: 19px;
  width: auto;
  font-size: 0;
  transform: translateX(-50%);
}
@media screen and (min-width: 769px) {
  .slider .slick-dots {
    bottom: 20px;
  }
}

.slider .slick-dots li {
  margin: 0;
  width: 7px;
  height: 7px;
}
@media screen and (min-width: 769px) {
  .slider .slick-dots li {
    width: 10px;
    height: 10px;
  }
}

.slider .slick-dots li:not(:last-of-type) {
  margin-right: 6px;
}
@media screen and (min-width: 769px) {
  .slider .slick-dots li:not(:last-of-type) {
    margin-right: 8px;
  }
}

.slider .slick-dots li button {
  width: 7px;
  height: 7px;
}
@media screen and (min-width: 769px) {
  .slider .slick-dots li button {
    width: 10px;
    height: 10px;
  }
}

.slider .slick-dots li button:before {
  content: "";
  border: 1px solid #999;
  border-radius: 50%;
  width: 7px;
  height: 7px;
  background-color: #fff;
  opacity: 1;
  z-index: 1;
}
@media screen and (min-width: 769px) {
  .slider .slick-dots li button:before {
    width: 10px;
    height: 10px;
  }
}

.slider .slick-dots li.slick-active button:before {
  background-color: #999;
  opacity: 1;
}

.anker-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 63px 7.5px 55px;
  gap: 10px 2%;
  line-height: 1.3;
}
@media screen and (min-width: 769px) {
  .anker-list {
    margin: 70px 0 140px;
    gap: 10px 40px;
  }

  .anker-list--mb90pc {
    margin-bottom: 90px;
  }
}

.anker-list--fitness {
  margin: 25px 0 45px;
}
@media screen and (min-width: 769px) {
  .anker-list--fitness {
    margin: 35px 0 90px;
  }
}

.anker-list__item {
  width: 49%;
  max-width: 165px;
  height: 45px;
}
@media screen and (min-width: 769px) {
  .anker-list__item {
    width: 220px;
    height: 60px;
    max-width: none;
  }
}

@media screen and (max-width: 768px) {
  .anker-list--trichotomy .anker-list__item {
    width: 32%;
  }
}

.anker-list__item a {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 100%;
  height: 100%;
  background: #14b3ec;
  color: #fff;
  font-weight: 700;
  text-align: center;
}

.anker-list__item a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 14px;
  width: 15px;
  height: 15px;
  background: url(../img/common/icon_arrow.svg) no-repeat center / contain;
  transform: translateY(-50%) rotate(90deg);
}
@media screen and (min-width: 769px) {
  .anker-list__item a::after {
    right: 18px;
    width: 20px;
    height: 20px;
  }
}

@media screen and (max-width: 768px) {
  .anker-list--trichotomy .anker-list__item a {
    padding-right: 4px;
  }
  
  .anker-list--trichotomy .anker-list__item a::after {
    width: 12px;
    height: 12px;
    right: 6px;
  }
}

.anker-list--fitness  .anker-list__item:nth-of-type(1) a {
  background-color: #16a2d9;
}

.anker-list--fitness  .anker-list__item:nth-of-type(2) a {
  background-color: #29c491;
}

.anker-list--fitness  .anker-list__item:nth-of-type(3) a {
  background-color: #276cba;
}

.about-club {
  margin: 0 10px 60px;
}
@media screen and (min-width: 769px) {
  .about-club {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin: 0 0 130px;
  }

  .about-club--mb80pc {
    margin-bottom: 80px;
  }
}

.about-club__pic {
  width: 100%;
  margin-bottom: 22px;
}
@media screen and (min-width: 769px) {
  .about-club__pic {
    margin-bottom: 32px;
  }
}

.about-club__text {
  display: flex;
  flex-wrap: wrap;
  border-bottom: 1px solid #c1c1c1;
  margin-bottom: 23px;
}
@media screen and (min-width: 769px) {
  .about-club__text {
    margin-bottom: 0;
    width: 50%;
  }
}

.about-club__text dt {
  flex-shrink: 0;
  padding: 15px 0;
  border-top: 1px solid #c1c1c1;
  width: 27%;
  font-weight: 700;
}
@media screen and (min-width: 769px) {
  .about-club__text dt {
    padding: 20px 0;
    width: 120px;
  }
}

.about-club__text--term-wide dt {
  width: 29%;
}
@media screen and (min-width: 769px) {
  .about-club__text--term-wide dt {
    width: 150px;
  }
}

.about-club__text dd {
  padding: 15px 0;
  border-top: 1px solid #c1c1c1;
  width: 73%;
}
@media screen and (min-width: 769px) {
  .about-club__text dd {
    padding: 20px 0;
    width: calc(100% - 120px);
  }
}

.about-club__text--term-wide dd {
  width: 71%;
}
@media screen and (min-width: 769px) {
  .about-club__text--term-wide dd {
    width: calc(100% - 150px);
  }
}

.about-club__text small {
  display: block;
  margin-top: 10px;
  line-height: 1.5;
}

.about-club__image {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 10px 5%;
}
@media screen and (min-width: 769px) {
  .about-club__image {
    width: calc(50% - 50px);
    gap: 12px 18px;
  }
}

.about-club__icon {
  width: 16%;
  max-width: 55px;
}
@media screen and (min-width: 769px) {
  .about-club__icon {
    width: 72px;
    max-width: none;
  }
}

.about-club__option {
  margin-top: 20px;
  width: 100%;
  font-weight: 700;
}
@media screen and (min-width: 769px) {
  .about-club__option {
    margin-top: 12px;
  }
}

.club-feature {
  position: relative;
  margin-bottom: 55px;
}
@media screen and (min-width: 769px) {
  .club-feature {
    margin-bottom: 100px;
  }

  .club-feature--mb140 {
    margin-bottom: 140px;
  }

  .club-feature--mb115 {
    margin-bottom: 115px;
  }
}

.club-feature:last-of-type {
  margin-bottom: 100px;
}
@media screen and (min-width: 769px) {
  .club-feature:last-of-type {
    margin-bottom: 250px;
  }
}

.club-feature--mb70:last-of-type {
  margin-bottom: 70px;
}
@media screen and (min-width: 769px) {
  .club-feature--mb70:last-of-type {
    margin-bottom: 90px;
  }
}

.club-feature img {
  display: block;
} 
@media screen and (min-width: 769px) {
  .club-feature img {
    max-width: 704px;
  }

  .club-feature:nth-of-type(2n) img {
    margin-left: auto;
  }
}

.club-feature__text {
  margin-top: -10px;
}
@media screen and (min-width: 769px) {
  .club-feature__text {
    position: absolute;
    top: 60px;
    right: 0;
    margin-top: 0;
    width: 396px;
    letter-spacing: 0;
  }

  .club-feature:nth-of-type(2n) .club-feature__text {
    left: 0;
    right: auto;
  }

  .club-feature__text--bottom {
    top: auto;
    bottom: 0;
  }
}

.club-feature__text dt {
  color: #2750a1;
  font-size: 23px;
  font-weight: 700;
}
@media screen and (min-width: 769px) {
  .club-feature__text dt {
    font-size: 30px;
    white-space: nowrap;
  }
}

.club-feature__text dt span {
  padding: 0 14px;
  background: #ffff00;
}
@media screen and (min-width: 769px) {
  .club-feature__text dt span {
    padding-left: 19px;
  }
}

.club-feature__text--blue dt span {
  background: #d0f0fb;
}

.club-feature__text dd {
  padding: 13px 20px;
  margin-top: 20px;
  background: #fff;
  text-align: justify;
}
@media screen and (min-width: 769px) {
  .club-feature__text dd {
    padding: 25px 50px;
    margin-top: 25px;
  }
}

.club-inner {
  position: relative;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  z-index: 0;
}

.club-inner__text {
  position: absolute;
  bottom: calc(10% + 35px);
  left: 0;
  color: #fff;
  font-size: 84px;
  line-height: 1;
  writing-mode: vertical-rl;
  z-index: -1;
}
@media screen and (min-width: 769px) {
  .club-inner__text {
    bottom: calc(23% + 80px);
    font-size: 126px;
  }
}

.bg--group .club-inner__text {
  bottom:  calc(8% + 35px);
}
@media screen and (min-width: 769px) {
  .bg--group .club-inner__text {
    bottom:  calc(17% + 80px);
  }
}

.club-facility {
  margin-left: auto;
  width: calc(100% - 70px);
  overflow-x: scroll;
}
@media screen and (min-width: 769px) {
  .club-facility {
    padding: 0 10px;
    margin: 0 auto;
    width: 100%;
    max-width: 1020px;
  }
}
@media screen and (min-width: 1035px) {
  .club-facility {
    overflow: auto;
  }
}

.club-facility__inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  padding-right: 70px;
  width: 822px;
}
@media screen and (min-width: 769px) {
  .club-facility__inner {
    padding-right: 0;
    width: 1000px;
  }
}

.club-facility__inner figure {
  margin-bottom: 25px;
  width: 233px;
  text-align: center;
}
@media screen and (min-width: 769px) {
  .club-facility__inner figure {
    margin-bottom: 35px;
    width: 310px;
  }
}

.club-facility__inner figcaption {
  margin-top: 10px;
  font-size: 11px;
  font-weight: 700;
}
@media screen and (min-width: 769px) {
  .club-facility__inner figcaption {
    margin-top: 15px;
    font-size: 15px;
  }
}

.club-program{
  padding: 0 9px;
  margin: 46px 0 40px;
}
@media screen and (min-width: 769px) {
  .club-program {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 0;
    margin: 120px 0 60px;
    gap: 23px;
  }
}

.club-program__link {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  margin-bottom: 10px;
  height: 134px;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  text-align: center;
  overflow: hidden;
  z-index: 0;
}
@media screen and (min-width: 769px) {
  .club-program__link {
    margin-bottom: 0;
    width: 318px;
    height: 150px;
    font-size: 18px;
  }
}

.club-program__link[href=""] {
  pointer-events:none;
}

.club-program__link.arrow::before {
  right: 20px;
}

.club-program__link.arrow::after {
  right: 21px;
}

.club-program__curtain {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, .3);
  opacity: 0;
}

.club-program__link[href=""] .club-program__curtain {
  opacity: 1;
  z-index: 1;
}

.club-program__icon {
  width: 30px;
  transform: translateX(-23px);
}
@media screen and (min-width: 769px) {
  .club-program__icon {
    width: 32px;
    transform: translateX(-15px);
  }
}

.club-program__image {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  transform: translateX(-50%) translateY(-50%);
  transition: transform .3s ease;
  z-index: -1;
}
@media screen and (min-width: 769px) {
  .club-program__link:hover .club-program__image {
    transform: translateX(-50%) translateY(-50%) scale(1.1);
  }
}

.gmap {
  position: relative;
  padding-bottom: 500px;
  margin: 38px 0 28px;
  height: 0;
  overflow: hidden;
}
@media screen and (min-width: 769px) {
  .gmap {
    margin: 0 0 53px;
  }
}

.gmap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.instagram {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0 10px 59px;
  gap: 6px 2%;
}
@media screen and (min-width: 769px) {
  .instagram {
    margin: 0 0 48px;
    gap: 10px;
  }
}

.instagram li {
  width: 49%;
  max-width: 164px;
}
@media screen and (min-width: 769px) {
  .instagram li {
    width: 242px;
    max-width: none;
  }
}

.group-text {
  margin-top: 20px;
  text-align: center;
}
@media screen and (min-width: 769px) {
  .group-text {
    margin-top: 35px;
  }
}

/* 成人会員 */
.tutorial-list {
  padding: 0 48px;
  margin: 40px 0;
}
@media screen and (min-width: 769px) {
  .tutorial-list {
    display: flex;
    justify-content: center;
    padding: 0;
    margin: 73px 0 0;
  }
}

.tutorial-list__item {
  position: relative;
}
@media screen and (min-width: 769px) {
  .tutorial-list__item {
    margin: 0 55px;
    width: 290px;
  }
}

.tutorial-list__item:not(:last-of-type) {
  margin-bottom: 35px;
}
@media screen and (min-width: 769px) {
  .tutorial-list__item:not(:last-of-type) {
    margin-bottom: 0;
  }
}

.tutorial-list__item .number-icon {
  top: -25px;
  left: -19px;
  width: 61px;
  height: 61px;
  font-size: 25px;
}
@media screen and (min-width: 769px) {
  .tutorial-list__item .number-icon {
    top: -35px;
    left: -32px;
    width: 76px;
    height: 76px;
    font-size: 32px;
  }
}

.tutorial-list__text {
  margin-top: 21px;
}
@media screen and (min-width: 769px) {
  .tutorial-list__text {
    margin-top: 25px;
  }
}

.tutorial-list__text dt {
  margin-bottom: 13px;
  background: rgba(20, 179, 236, .2);
  font-size: 16px;
  font-weight: 700;
  text-align: center;
}
@media screen and (min-width: 769px) {
  .tutorial-list__text dt {
    margin-bottom: 15px;
    font-size: 20px;
  }
}

.tutorial-list__text dd small {
  display: block;
  padding-left: 1em;
  font-size: 86.667%;
  text-indent: -1em;
}

.fitness-facility {
  position: relative;
  padding: 7px 25px 25px;
  margin-bottom: 50px;
  background: #fff;
  text-align: center;
  z-index: 0;
}
@media screen and (min-width: 769px) {
  .fitness-facility {
    padding: 10px 65px 45px;
    margin-bottom: 100px;
  }
}

.fitness-facility::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 100%;
  width: 100%;
  height: 75px;
  background: #fff;
  z-index: -1;
}
@media screen and (min-width: 769px) {
  .fitness-facility::before {
    height: 110px;
  }
}

.fitness-facility .heading--small {
  margin-top: 42px;
}
@media screen and (min-width: 769px) {
  .fitness-facility .heading--small {
    margin-top: 52px;
    font-size: 25px;
  }
}

@media screen and (min-width: 769px) {
  .fitness-facility__content {
   display: flex;
   justify-content: space-between;
  }

  .fitness-facility__content--reverse {
    flex-direction: row-reverse;
  }
}

.fitness-facility__text {
  margin-top: 30px;
}
@media screen and (min-width: 769px) {
  .fitness-facility__text {
    position: relative;
    margin-top: 0;
    margin-left: 50px;
    width: 420px;
    letter-spacing: 0;
  }

  .fitness-facility__content--reverse .fitness-facility__text {
    margin-left: 0;
    margin-right: 50px;
  }
}

.fitness-facility__text--stretch {
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 769px) {
  .fitness-facility__text--stretch p {
    margin-bottom: 20px;
  }
}

.fitness-facility__text small {
  font-size: 10px;
}
@media screen and (min-width: 769px) {
  .fitness-facility__text small {
    font-size: 13px;
  }
}

.fitness-facility__links {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  margin-top: 20px;
  gap: 0 55px;
  text-align: left;
}
@media screen and (min-width: 769px) {
  .fitness-facility__links {
    margin-top: 40px;
    gap: 0 40px;
  }
}

.fitness-facility__links > div {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 0 40px;
}

.fitness-facility__link-item {
  margin-bottom: 10px;
  font-size: 13px;
  font-weight: 700;
}
@media screen and (min-width: 769px) {
  .fitness-facility__link-item {
    margin-bottom: 15px;
    font-size: 16px;
    letter-spacing: 0;
  }
}

.fitness-facility__link-item a {
  text-decoration: underline;
}
@media screen and (min-width: 769px) {
  .fitness-facility__link-item a:hover {
    text-decoration: none;
  }
}

.fitness-facility__link-item a::before {
  content: "";
  display: inline-block;
  margin-right: 5px;
  width: 13px;
  height: 13px;
  background: url(../img/common/icon_arrow_blue.svg) no-repeat center / contain;
  vertical-align: middle;
}
@media screen and (min-width: 769px) {
  .fitness-facility__link-item a::before {
    width: 16px;
    height: 16px;
  }
}

.fitness-facility__column {
  padding: 18px;
  margin-top: 20px;
  background: #ebf7f3;
  text-align: left;
}
@media screen and (min-width: 769px) {
  .fitness-facility__column {
    padding: 30px 19px;
    margin-top: auto;
  }
}

.fitness-facility__column small {
  display: block;
  padding-left: 1em;
  margin-top: 10px;
  font-size: 10px;
  text-indent: -1em;
}
@media screen and (min-width: 769px) {
  .fitness-facility__column small {
    font-size: 13px;
  }
}

.fitness-facility__column-list {
  padding-left: 1em;
  color: #29c491;
  font-weight: 700;
  text-indent: -1em;
}

.fitness-recommend-list {
  margin: 32px 0 10px;
}
@media screen and (min-width: 769px) {
  .fitness-recommend-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 55px 0 14px;
    gap: 14px 56px;
  }
}

.fitness-recommend-list--pool {
  margin: -9px 0 59px;
}
@media screen and (min-width: 769px) {
  .fitness-recommend-list--pool {
    margin: -20px 0 72px;
    gap: 14px 50px;
  }
}

.fitness-recommend-list__item {
  text-align: center;
}
@media screen and (min-width: 769px) {
  .fitness-recommend-list__item {
    width: 338px;
  }
}

.fitness-recommend-list__item:not(:last-of-type) {
  margin-bottom: 47px;
}
@media screen and (min-width: 769px) {
  .fitness-recommend-list__item:not(:last-of-type) {
    margin-bottom: 0;
  }
}

.fitness-recommend-list--pool .fitness-recommend-list__item:not(:last-of-type) {
  margin-bottom: 15px;
}
@media screen and (min-width: 769px) {
  .fitness-recommend-list--pool .fitness-recommend-list__item:not(:last-of-type) {
    margin-bottom: 0;
  }
}

@media screen and (min-width: 769px) {
  .fitness-recommend-list--trichotomy .fitness-recommend-list__item:nth-of-type(1) {
    width: 247px;
  }

  .fitness-recommend-list--trichotomy .fitness-recommend-list__item:nth-of-type(2) {
    width: 314px;
  }

  .fitness-recommend-list--trichotomy .fitness-recommend-list__item:nth-of-type(3) {
    width: 296px;
  }
}

.fitness-recommend-list__item img {
  max-height: 32vw;
}
@media screen and (min-width: 769px) {
  .fitness-recommend-list__item img {
    max-height: 150px;
  }
}

.fitness-recommend-list__text {
  margin-top: 11px;
}
@media screen and (min-width: 769px) {
  .fitness-recommend-list__text {
    margin-top: 14px;
  }
}

.fitness-recommend-list__text--pool {
  margin-top: 16px;
}
@media screen and (min-width: 769px) {
  .fitness-recommend-list__text--pool {
    margin-top: 18px;
  }
}

.fitness-recommend-list__text dt {
  padding: 5px 0;
  background: #29c491;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
}
@media screen and (min-width: 769px) {
  .fitness-recommend-list__text dt {
    font-size: 20px;
    letter-spacing: 0;
  }
}

.fitness-recommend-list__text--pool dt {
  background-color: #276cba;
}

.fitness-recommend-list__text dd {
  margin-top: 10px;
  text-align: left;
}

.fitness-recommend-list__text--pool dd em {
  color: #276cba;
  font-size: 14px;
  font-weight: 700;
}

.artjom-heading {
  display: inline-block;
  position: relative;
  margin: 0 auto 29px;
  color: #276cba;
  font-size: 16px;
  font-weight: 700;
  text-align: center;
}
@media screen and (min-width: 769px) {
  .artjom-heading {
    margin-bottom: 20px;
    font-size: 25px;
  }
}

.artjom-heading::before, .artjom-heading::after {
  content: "";
  position: absolute;
  bottom: 0;
  width: 2px;
  height: 48px;
  background: #276cba;
}
@media screen and (min-width: 769px) {
  .artjom-heading::before, .artjom-heading::after {
    height: 42px;
  }
}

.artjom-heading::before {
  right: calc(100% + 10px);
  transform: rotate(-20deg);
}
@media screen and (min-width: 769px) {
  .artjom-heading::before {
    right: calc(100% + 15px);
    transform: rotate(-36deg);
  }
}

.artjom-heading::after {
  left: calc(100% + 10px);
  transform: rotate(20deg);
}
@media screen and (min-width: 769px) {
  .artjom-heading::after {
    left: calc(100% + 15px);
    transform: rotate(36deg);
  }
}

.artjom-heading b {
  background: #fff469;
}

.artjom {
  padding: 25px 20px;
  border: 1px solid #276cba;
  border-radius: 7px;
}
@media screen and (min-width: 769px) {
  .artjom {
    display: flex;
    justify-content: space-between;
    padding: 43px 39px;
    border-radius: 8px;
    margin: 0 7px;
  }
}

.artjom__content {
  margin-bottom: 24px;
  color: #276cba;
}
@media screen and (min-width: 769px) {
  .artjom__content {
    margin: 0 35px 0 0;
    width: 57.078%;
  }
}

.artjom__content dt {
  padding-bottom: 15px;
  border-bottom: 1px solid #276cba;
  margin-bottom: 15px;
  font-size: 16px;
  font-weight: 700;
  text-align: left;
  line-height: 1.2;
}
@media screen and (min-width: 769px) {
  .artjom__content dt {
    font-size: 20px;
  }
}

.artjom__content dt em {
  font-size: 20px;
}
@media screen and (min-width: 769px) {
  .artjom__content dt em {
    font-size: 25px;
  }
}

.artjom__content dd {
  font-size: 13px;
  font-weight: 500;
  text-align: justify;
}
@media screen and (min-width: 769px) {
  .artjom__content dd {
    font-size: 16px;
  }
}

.artjom__content dd small {
  display: block;
  padding-left: 1em;
  color: #000;
  font-size: 10px;
  font-weight: 400;
  line-height: 1.6;
  text-indent: -1em;
}
@media screen and (min-width: 769px) {
  .artjom__content dd small {
    font-size: 13px;
  }
}

.artjom__content dd small:nth-of-type(1) {
  margin-top: 12px;
}

.refresh-text {
  text-align: center;
}

.refresh-text--mt-20 {
  margin-top: -20px;
}
@media screen and (min-width: 769px) {
  .refresh-text--mt-20 {
    margin-top: -50px;
  }
}

.refresh-text--mb70 {
  margin-bottom: 70px;
}
@media screen and (min-width: 769px) {
  .refresh-text--mb70 {
    margin-bottom: 90px;
  }
}

.refresh-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 20px 0;
}
@media screen and (min-width: 769px) {
  .refresh-list {
    margin: 30px 0;
  }
}

.refresh-list__item {
  margin: 0 1%;
  width: 48%;
}
@media screen and (min-width: 769px) {
  .refresh-list__item {
    margin: 0 11px;
    width: 326px;
  }
}

.plan {
  margin-left: auto;
  width: calc(100% - 20px);
  max-width: 1000px;
  overflow-x: scroll;
}
@media screen and (min-width: 769px) {
  .plan {
    margin: 0 auto;
  }
}
@media screen and (min-width: 1015px) {
  .plan {
    width: 100%;
    overflow-x: auto;
  }
}

.plan__table {
  border-collapse: collapse;
  margin-right: 20px;
  width: 1000px;
  table-layout: fixed;
  font-weight: 700;
}
@media screen and (min-width: 769px) {
  .plan__table {
    margin-right: 0;
  }
}

.plan__column th {
  padding: 5px 0;
  border-right: 2px solid #d0f0fb;
  background: rgba(20, 179, 236, .7);
}

.plan__column th:first-of-type {
  background-color: transparent;
}

.plan__column--day th {
  background-color: rgba(20, 179, 236, .5);
}

.plan__row {
  border-top: 9px solid #d0f0fb;
  border-bottom: 9px solid #d0f0fb;
}

.plan__row th, .plan__row td {
  padding: 15px;
  font-size: 18px;
  line-height: 1.2;
}

.plan__row th {
  padding-left: 30px;
  background: #14b3ec;
  color: #fff;
  text-align: left;
}

.plan__row:nth-of-type(2) th {
  background: #2750a1;
}

.plan__row:nth-of-type(3) th {
  background: #6e61a8;
}

.plan__row:nth-of-type(4) th {
  background: #1fbf8f;
}

.plan__row:nth-of-type(5) th {
  background: #82c480;
}

.plan__row:nth-of-type(6) th {
  background: #ff7f5e;
}

.plan__row:nth-of-type(7) th {
  background: #f5b34a;
}

.plan__row th small {
  display: inline-block;
  font-size: 13px;
  font-weight: 400;
}

.plan__row td {
  border-right: 2px solid #d0f0fb;
  background: #fff;
  text-align: center;
}

/* 入会案内 */
.membership-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 20px;
  gap: 10px 7px;
}
@media screen and (min-width: 769px) {
  .membership-list {
    margin-top: 30px;
    gap: 15px 17px;
  }
}

.membership-list__item {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 164px;
  height: 52px;
  background: #fff;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
}
@media screen and (min-width: 769px) {
  .membership-list__item {
    width: 322px;
    height: 69px;
    font-size: 15px;
  }
}

/* 見学・体験 */
.belongings {
  padding: 18px;
  border: 2px solid #fff;
  margin-top: -30px;
}
@media screen and (min-width: 769px) {
  .belongings {
    padding: 35px 45px;
    margin-top: -40px;
  }
}

.belongings__heading {
  margin-bottom: 15px;
  color: #2750a1;
  font-size: 18px;
  font-weight: 700;
  text-align: center;
}
@media screen and (min-width: 769px) {
  .belongings__heading {
    margin-bottom: 25px;
    font-size: 24px;
  }
}

@media screen and (min-width: 769px) {
  .belongings__wrap {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
  }
}

.belongings__block {
  margin-top: 10px;
}
@media screen and (min-width: 769px) {
  .belongings__block {
    margin-top: 0;
    min-width: 290px;
  }

  .belongings__block:first-of-type {
    margin-right: 10px;
  }
}

.belongings__category {
  margin-bottom: 15px;
  background-color: #fff;
  font-size: 14px;
  font-weight: 700;
  text-align: center;
}
@media screen and (min-width: 769px) {
  .belongings__category {
    font-size: 18px;
  }
}

.belongings__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
}

.belongings__item {
  width: calc(50% - 31.5px);
  margin-bottom: 15px;
  letter-spacing: 0;
  text-align: center;
}
@media screen and (min-width: 769px) {
  .belongings__item {
    width: 125px;
    margin: 0 auto;
  }
}
@media screen and (min-width: 949px) {
  .belongings__item:not(:last-of-type) {
    margin-right: auto;
  }
}

.belongings__item img {
  display: block;
  margin: 0 auto 10px;
  width: 69.828%;
}
@media screen and (min-width: 769px) {
  .belongings__item img {
    margin-bottom: 15px;
    width: 86.4%;
  }
}

.belongings__attn {
  font-size: 11px;
  line-height: 1.4;
}
@media screen and (min-width: 769px) {
  .belongings__attn {
    margin-top: 15px;
    font-size: 13px;
  }
}

.reception-time {
  display: flex;
  flex-wrap: wrap;
}

.reception-time div {
  display: flex;
  width: 100%;
}
@media screen and (min-width: 769px) {
  .reception-time div {
    display: block;
    width: calc(100% / 3);
  }
}

.reception-time dt, .reception-time dd {
  padding: 15px;
  border-top: 1px solid #d0f0fb;
  border-bottom: 1px solid #d0f0fb;
  width: 50%;
  font-size: 13px;
  font-weight: 700;
  text-align: center;
}
@media screen and (min-width: 769px) {
  .reception-time dt, .reception-time dd {
    border-top: none;
    border-left: 1px solid #d0f0fb;
    border-right: 1px solid #d0f0fb;
    border-bottom: none;
    width: 100%;
    font-size: 18px;
  }
}

.reception-time dt {
  background: #14b3ec;
  color: #fff;
}

.reception-time dd {
  background: #fff;
}

.club-tels {
  margin-bottom: 60px;
}
@media screen and (min-width: 769px) {
  .club-tels {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 100px;
    gap: 40px;
  }
}

.club-tel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  margin-bottom: 12px;
  width: 100%;
  height: 135px;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  text-align: center;
  cursor: auto;
}
@media screen and (min-width: 769px) {
  .club-tel {
    margin-bottom: 0;
    width: 480px;
    height: 191px;
    font-size: 26px;
  }
}

.club-tel--konan {
  background: url(../img/experience/bg_club_konan_sp.jpg) no-repeat center / cover;
}
@media screen and (min-width: 769px) {
  .club-tel--konan {
    background-image: url(../img/experience/bg_club_konan.jpg);
    background-image: image-set(url(../img/experience/bg_club_konan.jpg) 1x, url(../img/experience/bg_club_konan@2x.jpg) 2x);
    background-image: -webkit-image-set(url(../img/experience/bg_club_konan.jpg) 1x, url(../img/experience/bg_club_konan@2x.jpg) 2x);
  }
}

.club-tel--saidaiji {
  background: url(../img/experience/bg_club_saidaiji_sp.jpg?230630) no-repeat center / cover;
}
@media screen and (min-width: 769px) {
  .club-tel--konan {
    background-image: url(../img/experience/bg_club_saidaiji.jpg?230630);
    background-image: image-set(url(../img/experience/bg_club_saidaiji.jpg?230630) 1x, url(../img/experience/bg_club_saidaiji@2x.jpg?230630) 2x);
    background-image: -webkit-image-set(url(../img/experience/bg_club_saidaiji.jpg?230630) 1x, url(../img/experience/bg_club_saidaiji@2x.jpg?230630) 2x);
  }
}

.club-tel--kasaoka {
  background: url(../img/experience/bg_club_kasaoka_sp.jpg) no-repeat center / cover;
}
@media screen and (min-width: 769px) {
  .club-tel--konan {
    background-image: url(../img/experience/bg_club_kasaoka.jpg);
    background-image: image-set(url(../img/experience/bg_club_kasaoka.jpg) 1x, url(../img/experience/bg_club_kasaoka@2x.jpg) 2x);
    background-image: -webkit-image-set(url(../img/experience/bg_club_kasaoka.jpg) 1x, url(../img/experience/bg_club_kasaoka@2x.jpg) 2x);
  }
}

.club-tel--takehara {
  background: url(../img/experience/bg_club_takehara_sp.jpg) no-repeat center / cover;
}
@media screen and (min-width: 769px) {
  .club-tel--konan {
    background-image: url(../img/experience/bg_club_takehara.jpg);
    background-image: image-set(url(../img/experience/bg_club_takehara.jpg) 1x, url(../img/experience/bg_club_takehara@2x.jpg) 2x);
    background-image: -webkit-image-set(url(../img/experience/bg_club_takehara.jpg) 1x, url(../img/experience/bg_club_takehara@2x.jpg) 2x);
  }
}

.club-tel span {
  font-size: 21px;
}
@media screen and (min-width: 769px) {
  .club-tel span {
    font-size: 30px;
  }
}

.club-tel span::before {
  content: "";
  display: inline-block;
  margin-right: 8px;
  width: 24px;
  height: 29px;
  background: url(../img/experience/icon_tel.svg) no-repeat center / contain;
  vertical-align: middle;
}
@media screen and (min-width: 769px) {
  .club-tel span::before {
    margin-right: 11px;
    width: 34px;
    height: 41px;
  }
}

/* 初めての方 */
.beginner-text {
  margin: 35px 0 20px;
}
@media screen and (min-width: 769px) {
  .beginner-text {
    margin: 50px 0 60px;
  }
}

.examples {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 9px;
}
@media screen and (min-width: 769px) {
  .examples {
    gap: 30px 35px; 
  }
}

.examples figure {
  width: 48.657%;
}
@media screen and (min-width: 769px) {
  .examples figure {
    width: 310px;
  }
}

.examples figcaption {
  font-weight: 700;
  text-align: center;
}
@media screen and (min-width: 769px) {
  .examples figcaption {
    margin-top: 5px;
  }
}

.how-to-list {
  margin: -13px 0 50px;
}
@media screen and (min-width: 769px) {
  .how-to-list {
    margin: -20px auto 15px;
    max-width: 778px;
  }
}

.how-to-list__item {
  display: flex;
  align-items: center;
  position: relative;
}

.how-to-list__item:not(:last-of-type) {
  margin-bottom: 25px;
}
@media screen and (min-width: 769px) {
  .how-to-list__item:not(:last-of-type) {
    margin-bottom: 40px;
  }
}

.how-to-list__item:not(:last-of-type)::after {
  content: "";
  display: block;
  position: absolute;
  top: calc(100% + 5px);
  left: calc(34.4vw / 2 - 7.5px);
  width: 15px;
  height: 15px;
  background: url(../img/common/icon_arrow_navy.svg) no-repeat center / contain;
  transform: rotate(90deg);
}
@media screen and (min-width: 769px) {
  .how-to-list__item:not(:last-of-type)::after {
    top: calc(100% + 9px);
    left: calc(192px / 2 - 11px);
    width: 22px;
    height: 22px;
  }
}

.how-to-list__text {
  flex-shrink: 0;
  margin-left: 15px;
  width: calc(100% - 34.4vw - 15px);
}
@media screen and (min-width: 769px) {
  .how-to-list__text {
    margin-left: 40px;
    width: calc(100% - 192px - 40px);
  }
}

.how-to-list__text dt {
  margin-bottom: 10px;
  color: #2750a1;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.3;
}
@media screen and (min-width: 769px) {
  .how-to-list__text dt {
    margin-bottom: 15px;
    font-size: 24px;
  }
}

.how-to-list__text dd {
  font-size: 11px;
  line-height: 1.5;
}
@media screen and (min-width: 769px) {
  .how-to-list__text dd {
    font-size: 15px;
  }
}

.how-to-list__text dd small {
  font-size: 10px;
}
@media screen and (min-width: 769px) {
  .how-to-list__text dd small {
    font-size: 13px;
  }
}

@media screen and (min-width: 769px) {
  .center-pc-only {
    text-align: center;
  }
}

/* お問い合わせフォーム */
.contact__formlist {
  margin: 40px 0;
  font-size: 14px;
}
@media screen and (min-width: 769px) {
  .contact__formlist {
    display: flex;
    flex-wrap: wrap;
    margin: 80px auto 20px;
    max-width: 640px;
    font-size: 15px;
  }
}

.contact__formlist dt {
  padding: 0 10px;
  margin-bottom: 10px;
  font-weight: 700;
}
@media screen and (min-width: 769px) {
  .contact__formlist dt {
    padding: 0 0 0 10px;
    margin-bottom: 0;
    width: 218px;
  }

  .contact__formlist dt {
    padding-bottom: 20px;
    border-bottom: 1px solid #b3b3b3;
    margin-bottom: 20px;
  }

  .contact__formlist dt.border-dashed {
    border-bottom: 1px dashed #b3b3b3;
  }
}

.contact__formlist dt.border-none {
  border-bottom: none;
}

.contact__formlist dt .required {
  display: inline-block;
  padding: 0 10px;
  margin-left: 10px;
  border-radius: 5px;
  background-color: #e60012;
  color: #fff;
  font-size: 80%;
  text-align: center;
}
@media screen and (min-width: 769px) {
  .contact__formlist dt .required {
    display: block;
    margin-left: 0;
    max-width: 50px;
  }
}

.contact__formlist dt .required--not {
  background-color: #ccc;
}

.contact__formlist dd {
  padding: 0 10px;
}
@media screen and (min-width: 769px) {
  .contact__formlist dd {
    padding: 0;
    width: calc(100% - 218px);
  }

  .contact__formlist dd.full {
    padding-left: 10px;
    width: 100%;
  }

  .contact__formlist dd.vertical-center,
  .mw_wp_form_confirm .contact__formlist dd.vertical-top {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
  }
}

.contact__formlist dd:not(:last-of-type) {
  padding-bottom: 20px;
  border-bottom: 1px solid #b3b3b3;
  margin-bottom: 20px;
}

.contact__formlist .contact__tel dd {
  padding-bottom: 20px;
  border-bottom: 1px solid #b3b3b3;
  margin-bottom: 20px;
}

.contact__formlist dd.border-dashed {
  border-bottom: 1px dashed #b3b3b3;
}

.contact__formlist dd.border-none {
  border-bottom: none;
}

.contact__formlist--confirm dd.name {
  display: flex;
}

.contact__formlist--confirm dd.name span {
  width: 50%;
}

.contact__course > span,
.vertical-top > span {
  display: block;
  margin-left: 0 !important;
}

.contact__tel {
  width: 100%;
}
@media screen and (min-width: 769px) {
  .contact__tel {
    display: flex;
    flex-wrap: wrap;
  }
}

.contact__select {
  position: relative;
  width: 100%;
  max-width: calc(100% - 144px);
}
@media screen and (min-width: 769px) {
  .contact__select {
    max-width: 171px;
  }
}

.contact__select::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 7px;
  width: 0;
  height: 0;
  border-top: 7px solid #000;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  transform: translateY(-50%);
}

.contact__select select {
  -webkit-appearance: none;
  appearance: none;
}

.contact__inner {
  display: flex;
}
@media screen and (min-width: 769px) {
  .contact__inner {
    margin-left: -48px;
    width: 100%;
    max-width: 378px;
  }

  .mw_wp_form_confirm .contact__inner {
    margin-left: 0;
  }
}

.contact__inner--radiobtn {
  flex-wrap: wrap;
  align-items: center;
}
@media screen and (min-width: 769px) {
  .contact__inner--radiobtn {
    margin-left: 0;
    max-width: none;
  }
}

.contact__inner--radiobtn > span {
  margin-left: 0 !important;
  width: auto;
  min-width: 117px;
}
@media screen and (min-width: 769px) {
  .contact__inner--radiobtn > span {
    min-width: 121px;
  }
}

.contact__child {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  width: 50%;
}

.mw_wp_form_confirm .contact__child {
  justify-content: flex-start;
}

.mw_wp_form_confirm .contact__child span {
  display: none;
}

.contact__child--radiobtn {
  display: block;
  width: auto;
  min-width: 117px;
}
@media screen and (min-width: 769px) {
  .contact__child--radiobtn {
    min-width: 121px;
  }
}

.contact__textbox {
  padding: 6px 10px 7px;
  border: 1px solid #b3b3b3;
  border-radius: 5px;
  width: 100%;
}
@media screen and (min-width: 769px) {
  .contact__textbox {
    max-width: 341px;
  }
}

.is-error .contact__textbox {
  background-color: #ffe6ed;
}

.contact__child .contact__textbox {
  margin-left: 5px;
  max-width: calc(100% - 41.5px);
}
@media screen and (min-width: 769px) {
  .contact__child .contact__textbox {
    max-width: 141px;
  }
}

.contact__tel .contact__textbox {
  max-width: calc(100% / 3 - 10px);
}

.contact__select .contact__textbox, .contact__formlist dd.full .contact__textbox {
  max-width: 100%;
}

.contact__radiobtn {
  margin-right: 5px;
  vertical-align: middle;
}

.mw_wp_form .error {
  width: 100%;
  color: #e60000;
  font-size: 100%;
  font-weight: 500;
}

.contact__formlist dd.indent .error {
  margin-left: 41.5px;
}
@media screen and (min-width: 769px) {
  .contact__formlist dd.indent .error {
    margin-left: 0;
  }
}

.contact__mg-top {
  margin-top: 20px;
}
@media screen and (min-width: 769px) {
  .contact__mg-top {
    margin-top: 10px;
  }
}

.mw_wp_form_confirm .contact__select::after {
  content: none;
}

.contact__text {
  font-size: 14px;
  text-align: center;
}
@media screen and (min-width: 769px) {
  .contact__text {
    font-size: 15px;
  }
}

.contact__link {
  color: #ff6d8d;
  text-decoration: underline;
}

.contact__checkbox {
  margin-top: 15px;
}
@media screen and (min-width: 769px) {
  .contact__checkbox {
    margin-top: 20px;
  }
}

.contact__btn-wrap {
  margin: 40px auto 100px;
}
@media screen and (min-width: 769px) {
  .contact__btn-wrap {
    display: flex;
    justify-content: center;
    margin-top: 50px;
    margin-bottom: 90px;
  }
}

.contact__btn-wrap--complete {
  margin-top: 25px;
}
@media screen and (min-width: 769px) {
  .contact__btn-wrap--complete {
    margin-top: 65px;
    margin-bottom: 145px;
  }
}

.contact__btn {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  margin: 0 auto 10px;
  width: 100%;
  max-width: 240px;
  height: 50px;
  background: #14b3ec;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  text-align: center;
}
@media screen and (min-width: 769px) {
  .contact__btn {
    margin: 0 10px;
  }
}

.contact__btn::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 15px;
  width: 12px;
  height: 12px;
  background: url(../img/common/icon_arrow.svg) no-repeat center / contain;
  transform: translateY(-50%);
}

.contact__btn--return {
  background-color: #969696;
}

.contact__btn--return::after {
  left: 15px;
  right: auto;
  transform: translateY(-50%) scale(-1, 1);
}

.contact-complete__heading {
  margin: 40px 0 30px;
  color: #2750a1;
  font-size: 18px;
  font-weight: 700;
  text-align: center;
}
@media screen and (min-width: 769px) {
  .contact-complete__heading {
    margin: 110px 0 40px;
    font-size: 28px;
  }
}

.contact-complete__text {
  margin: 0 auto;
  width: 100%;
  max-width: 600px;
  font-size: 14px;
}
@media screen and (min-width: 769px) {
  .contact-complete__text {
    font-size: 15px;
  }
}

.contact__child-info {
  position: relative;
  border-bottom: 1px solid #b3b3b3;
  margin-bottom: 20px;
}
@media screen and (min-width: 769px) {
  .contact__child-info {
    display: flex;
    flex-wrap: wrap;
  }
}

.contact__child-info .child-number {
  padding: 0 10px;
  margin-bottom: 10px;
  width: 100%;
  font-size: 14px;
  font-weight: 700;
}
@media screen and (min-width: 769px) {
  .contact__child-info .child-number {
    position: absolute;
    top: 0;
    left: 0;
    padding-right: 0;
    margin-bottom: 0;
    width: auto;
    font-size: 15px;
  }
}

@media screen and (min-width: 769px) {
  .contact__child-info dt {
    margin-left: 68px;
    width: 150px;
  }

  .contact__child-info dt:last-of-type {
    margin-bottom: 0;
  }
}

.contact__child-info dd:last-of-type {
  padding-bottom: 20px;
}

.contact__more-child {
  padding-bottom: 20px;
  border-bottom: 1px solid #b3b3b3;
  margin-bottom: 20px;
  width: 100%;
}

.contact__more-child .contact__child-info {
  margin-top: 20px;
  border-bottom: none;
  margin-bottom: 0;
}

.contact__more-child .contact__child-info .child-number {
  display: none;
}

.mw_wp_form_confirm .contact__more-child .contact__child-info .child-number {
  display: block;
}

.more-child-btn {
  display: flex;
  align-items: center;
  position: relative;
  padding: 10px;
  border-radius: 5px;
  width: 100%;
  max-width: 335px;
  height: 55px;
  background-color: #b1b1b1;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  text-align: left;
}

.more-child-btn:not(:first-of-type) {
  margin-top: 15px;
}

.more-child-btn::before,
.more-child-btn::after {
  content: "";
  position: absolute;
  top: 27px;
  right: 10px;
  width: 20px;
  height: 1px;
  background-color: #fff;
  -webkit-transition: opacity .3s, transform .3s;
  transition: opacity .3s, transform .3s;
}

.more-child-btn::after {
  transform: rotate(90deg);
}

.more-child-btn.open::after {
  opacity: 0;
  transform: rotate(180deg);
}

.more-child-btn + div {
  display: none;
}

.mw_wp_form_confirm .more-child-btn {
  display: none;
}

.mw_wp_form_confirm .more-child-btn + div {
  display: block;
}

/* 採用情報 */
.recruit-list {
  margin: 15px 0 60px;
}
@media screen and (min-width: 769px) {
  .recruit-list {
    display: flex;
    flex-wrap: wrap;
    margin: 20px 0 80px;
  }
}

.recruit-list dt, .recruit-list dd {
  padding: 10px 20px;
}
@media screen and (min-width: 769px) {
  .recruit-list dt, .recruit-list dd {
    padding: 20px 25px;
  }
}

.recruit-list dt {
  border-top: 2px solid #d0f0fb;
  border-bottom: 2px solid #d0f0fb;
  background: #14b3ec;
  color: #fff;
  font-weight: 700;
}
@media screen and (min-width: 769px) {
  .recruit-list dt {
    display: flex;
    align-items: center;
    border-top: none;
    width: 200px;
    font-size: 16px;
  }
}

.recruit-list dd {
  background: #fff;
  font-weight: 500;
}
@media screen and (min-width: 769px) {
  .recruit-list dd {
    border-bottom: 2px solid #d0f0fb;
    width: calc(100% - 200px);
  }
}

.recruit-list dd:last-of-type {
  border-bottom: 2px solid #d0f0fb;
}

.recruit-list dd.stop {
  padding-top: 35px;
  padding-bottom: 35px;
  border: 2px solid #d0f0fb;
  width: 100%;
  text-align: center;
}

.recruit-list:last-of-type {
  margin-bottom: 100px;
}
@media screen and (min-width: 769px) {
  .recruit-list:last-of-type {
    margin-bottom: 110px;
  }
}

.error-messages {
  margin-top: 40px;
  text-align: center;
}

/* 404 */
.nf-heading {
  padding-top: 57px;
  margin-bottom: 25px;
  font-size: 16px;
  font-weight: 700;
  text-align: center;
}
@media screen and (min-width: 769px) {
  .nf-heading {
    padding-top: 100px;
    margin-bottom: 30px;
    font-size: 23px;
  }
}

.nf-heading img {
  display: block;
  margin: 0 auto 20px;
  width: 44.789%;
  max-width: 200px;
}
@media screen and (min-width: 769px) {
  .nf-heading img {
    margin-bottom: 25px;
    width: 200px;
  }
}

.nf-text {
  font-weight: 500;
  line-height: 1.68;
  text-align: center;
}
@media screen and (min-width: 769px) {
  .nf-text {
    font-size: 16px;
  }
}

.nf-btn-wrap {
  margin: 36px 0 72px;
}
@media screen and (min-width: 769px) {
  .nf-btn-wrap {
    margin: 49px 0 155px;
  }
}