@charset "utf-8";

:root {
  --easing: cubic-bezier(0.2, 1, 0.2, 1);
  --transition: 0.8s var(--easing);
  --maincolor: #c11732;
  --subcolor01: #d75b3b;
  --subcolor02: #fff3f3;
}

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video,
picture {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  /*font: inherit;*/
  vertical-align: baseline;
  line-height: 1.8em;
  font-style: inherit;
}
ol,
ul {
  list-style: none;
}
blockquote,
q {
  quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

table {
  margin: 0;
  border-collapse: collapse;
  border-spacing: 0;
  empty-cells: show;
}

img {
  vertical-align: bottom;
  border: none;
}
picture {
  display: block;
}

/* ----------------------------------------------

 * 設定をしなおす

---------------------------------------------- */
body {
  margin: 0 auto;
  padding: 0;
  font-size: 16px;
  line-height: 1.8em;
  -webkit-text-size-adjust: 100%;
  font-family: "Roboto", "Noto Sans JP", "游ゴシック Medium", "Yu Gothic Medium",
    "游ゴシック体", "YuGothic", "ヒラギノ角ゴ ProN W3",
    "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", "verdana", sans-serif;
  font-weight: 400;
  color: #231815;
  font-feature-settings: "palt";
  letter-spacing: 0.05em;
}

@media only screen and (max-width: 767px) {
  body {
    font-size: 14px;
  }
}

table {
  margin: 0;
  border-collapse: collapse;
  border-spacing: 0;
  empty-cells: show;
}

img {
  vertical-align: bottom;
  border: none;
}

/* ----------------------------------------------

 * アンカータグの設定

---------------------------------------------- */
a {
  outline: none;
  color: #000;
}

a:hover {
  text-decoration: none;
}

a,
a:hover,
a:hover img {
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
  text-decoration: none;
}

a:hover {
  filter: alpha(opacity=80);
  -moz-opacity: 0.8;
  opacity: 0.8;
}

.clr {
  zoom: 1;
  display: inline-table;
}
.clr:after {
  content: ".";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
  font-size: 0;
  line-height: 0;
}

* html .clr {
  height: 1%;
  display: inline-table;
  display: block;
  height: 1%;
}
.clr {
  display: block;
}
* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

@media (max-width: 767px) {
  .sp_none {
    display: none !important;
  }
}
@media print, screen and (min-width: 768px) {
  .sp {
    display: none !important;
  }
}

/* -----------------------------------------------
 * base.css
----------------------------------------------- */

main {
  display: block;
}
img {
  max-width: 100%;
  height: auto;
  -webkit-backface-visibility: hidden;
}

@media only screen and (max-width: 991px) {
  .box {
    margin-bottom: 50px;
  }
  .sbox {
    margin-bottom: 25px;
  }
  .sp_box {
    margin-bottom: 50px;
  }
  .br_pc {
    display: none;
  }
  .sec {
    padding: 70px 0;
  }
}

@media print, screen and (min-width: 992px) {
  .box {
    margin-bottom: 60px;
  }
  .sbox {
    margin-bottom: 30px;
  }
  .br_sp {
    display: none;
  }
  .sec {
    padding: 120px 0;
  }
}

/* ---------------------------------------------------------------------------------------------

　   HEADER

--------------------------------------------------------------------------------------------- */
#header {
  height: 60px;
  background: #fff;
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99;
}
.nav li a {
  font-weight: 700;
}
#header_logo img {
  display: block;
}

@media only screen and (max-width: 991px) {
  #header {
    padding: 0 20px;
  }
  #header_logo {
    width: 74%;
    max-width: 220px;
  }
  #menu_btn {
    top: 0;
    right: 20px;
    transition: 0.3s;
    cursor: pointer;
    position: fixed;
    z-index: 9999;
    width: 40px;
    height: 60px;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .overlay {
    content: "";
    display: block;
    width: 0;
    height: 0;
    background-color: rgba(0, 0, 0, 0.5);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    opacity: 0;
    transition: opacity 0.5s;
  }
  .overlay.open {
    width: 100%;
    height: 100%;
    opacity: 1;
  }
  #main {
    height: 100%;
    transition: all 0.5s;
  }
  .menu-trigger {
    display: inline-block;
    width: 40px;
    height: 15px;
    vertical-align: middle;
    text-align: center;
    position: relative;
  }
  .menu-trigger span {
    display: inline-block;
    box-sizing: border-box;
    position: absolute;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #000;
    transition: all 0.5s;
  }
  #header.header_fixed .menu-trigger span {
    background-color: #000;
  }
  #menu_btn.active .menu-trigger span {
    background-color: #000;
  }
  .menu-trigger span:nth-of-type(1) {
    top: 0;
  }
  .menu-trigger span:nth-of-type(3) {
  }
  #menu_btn.active .menu-trigger span:nth-of-type(1) {
    transform: translateY(7px) rotate(-45deg);
    width: 80%;
    top: 10px;
  }
  .menu-trigger span:nth-of-type(2) {
    top: 7px;
  }
  #menu_btn.active .menu-trigger span:nth-of-type(2) {
    opacity: 0;
  }
  .menu-trigger span:nth-of-type(3) {
    bottom: 0;
  }
  #menu_btn.active .menu-trigger span:nth-of-type(3) {
    transform: translateY(-7px) rotate(45deg);
    width: 80%;
    bottom: -10px;
  }
  nav#gNav {
    width: 300px;
    height: 100%;
    overflow: auto;
    padding: 90px 0 40px;
    background: rgba(255, 255, 255, 0.95);
    position: fixed;
    top: 0;
    right: 0;
    z-index: 101;
    right: -300px;
    transition: all 0.3s;
  }
  nav#gNav li {
  }
  nav#gNav li a {
    position: relative;
    padding: 15px 20px;
    display: block;
    font-size: 22px;
    color: #000;
    text-align: center;
  }
  #gNav ul li a {
    position: relative;
    font-weight: 700;
  }
}
@media only screen and (max-width: 320px) {
}
@media print, screen and (min-width: 992px) {
  #header {
    padding: 0 20px;
  }
  .nav li {
    margin-right: 30px;
    display: flex;
    align-items: center;
  }
  .nav li:last-child {
    margin-right: 0;
  }
}
@media print, screen and (min-width: 1200px) {
  #header {
    padding: 0 40px;
  }
}

/* ---------------------------------------------------------------------------------------------

　   COMMON

--------------------------------------------------------------------------------------------- */
main {
  overflow: hidden;
}
.sec_tit {
  text-align: center;
  line-height: 1.4em;
}
.sec_tit_en {
  display: block;
  margin: 0 auto;
}
.sec_tit_jp {
  display: block;
  text-align: center;
  color: var(--maincolor);
  letter-spacing: 0.1em;
  line-height: 1.3;
}
.sec_tit02 {
  text-align: center;
  letter-spacing: 0.15em;
}
.sec_tit02 span {
  border-bottom: 8px solid var(--maincolor);
  display: inline-block;
}

#fixed_btn {
  position: fixed;
  z-index: 90;
  right: 0;
  border-radius: 5px 0 0 5px;
  overflow: hidden;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
  bottom: 10%;
}
#pageTop {
  position: fixed;
  right: 0;
  bottom: 0;
  z-index: 90;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
  border-radius: 5px 0 0 5px;
  overflow: hidden;
  cursor: pointer;
}
.sec_subtit {
  text-align: center;
}
.sec_subtit .sec_subtit_jp {
  display: block;
}
.sec_subtit_en {
  line-height: 1;
}
.sec_subtit_color {
  color: #c11732;
}

@media only screen and (max-width: 991px) {
  .sec_tit {
    margin-bottom: 20px;
  }
  .sec_tit .sec_tit_en {
    width: 80%;
    max-width: 380px;
  }
  .sec_tit .sec_tit_jp {
    font-size: 24px;
    margin-top: 15px;
  }
  .sec_tit02 {
    font-size: 24px;
    margin-bottom: 40px;
  }
  #fixed_btn {
    width: 60px;
  }
  #pageTop {
    width: 60px;
  }
  .sec_subtit {
    margin-bottom: 30px;
  }
  .sec_subtit_en {
    font-size: 34px;
  }
}

@media print, screen and (min-width: 992px) {
  .sec_tit {
    margin-bottom: 50px;
  }
  .sec_tit .sec_tit_en {
  }
  .sec_tit .sec_tit_jp {
    font-size: 40px;
    margin-top: 20px;
  }
  .sec_tit02 {
    font-size: 32px;
    margin-bottom: 60px;
  }
  .sec_subtit {
    margin-bottom: 50px;
  }
  .sec_subtit_en {
    font-size: 44px;
  }
}

/* ---------------------------------------------------------------------------------------------

　   CAMPAIGN

--------------------------------------------------------------------------------------------- */
#campaign img {
  width: 100%;
}

#intro_ph img {
  width: 100%;
}

.cta_btn_area a {
  display: block;
  margin: 0 auto;
  max-width: 600px;
}
@media only screen and (max-width: 991px) {
  .cta_btn_area {
    padding: 30px 0;
  }
}
@media print, screen and (min-width: 992px) {
  .cta_btn_area {
    padding: 60px 0;
  }
}
/* ---------------------------------------------------------------------------------------------

　   MERIT

--------------------------------------------------------------------------------------------- */

.bg_photo_wrapper {
  overflow: hidden;
  position: relative;
  background-color: #ccc;
}
.bg_photo {
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: center;
}
#point01 .bg_photo {
  background-image: url(../img/merit01_main.jpg);
}
#point02 .bg_photo {
  background-image: url(../img/merit02_main.jpg);
}
#point03 .bg_photo {
  background-image: url(../img/merit03_main.jpg);
}
.point_txt h3 {
  font-weight: bold;
  line-height: 1.3em;
}
.point_txt h3 .marker {
  line-height: 1.5em;
  background: linear-gradient(transparent 80%, var(--subcolor01) 80%);
}
.point_photo img {
  position: relative;
  display: block;
  width: 100%;
}

.point_one_column {
  text-align: center;
}
.point_one_column .point_txt {
  width: 100%;
}
.plan_wrapper {
  max-width: 1366px;
  margin: 0 auto;
  position: relative;
}
.plan_container {
  max-width: 1100px;
  margin: 0 auto;
}
.plan_box {
  position: relative;
  z-index: 10;
}
.plan_box01 {
  background: #cdeef6;
}
.plan_box02 {
  background: #fcfacb;
}
.cutout_ph {
  position: absolute;
  z-index: 11;
}
.plan_price {
  background: url(../img/bg_gra.jpg) no-repeat center / cover;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.16);
  position: relative;
  z-index: 10;
}
.plan_price_box {
  position: relative;
}
.plan_price_img {
  text-align: center;
}
.plan_price_box h4 {
  text-align: center;
  font-weight: 700;
  line-height: 1.4em;
}
.plan_price_box p {
  text-align: center;
}
.plan_price_box p span {
  display: block;
  margin-top: 1.5em;
}
.plan_name {
  text-align: center;
  font-weight: bold;
  margin-bottom: 1em;
}
.plan_service_list {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.plan_service_list li {
  width: 32%;
  margin-right: 2%;
  margin-top: 2%;
  background: #000;
  color: #fff;
  text-align: center;
}
.plan_service_list li:nth-child(-n + 3) {
  margin-top: 0;
}
.plan_service_list li:nth-child(3n) {
  margin-right: 0;
}
.plan_price_wrapper {
  position: relative;
}
.plan_price_inner {
  background: #fff;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.16);
  max-width: 600px;
  margin: 0 auto;
  position: relative;
  z-index: 10;
}
.plan_price_wrapper:before {
  content: "";
  background: #F5F054;
  opacity: 0.3;
  position: absolute;
  z-index: 1;
  width: 100%;
  left: 0;
  top: 0;
}
.cutout_man_ph,
.cutout_woman_ph {
  position: absolute;
  z-index: 2;
}
@media only screen and (max-width: 991px) {
  #point04 .point_content {
    padding-top: 0;
  }
  .plan_price_wrapper {
    padding: 20px 20px 0;
  }
  .plan_price_inner {
    padding: 20px;
  }
  .plan_price_wrapper:before {
    height: 80%;
  }
  .bg_photo {
    height: 40vw;
  }
  .plan_wrapper {
    margin-top: 100px;
  }
  .point04_plan_img {
    margin-top: -52px;
  }
  .point_content {
    padding: 70px 0;
  }
  .plan_box {
    margin-bottom: 100px;
  }
  .plan_box:last-child {
    margin-bottom: 20px;
  }
  .point_txt {
    font-size: 16px;
    margin-bottom: 30px;
  }
  .point_txt h3 {
    font-size: 30px;
    margin: 20px 0 20px;
  }
  .point_num img {
    width: auto;
    height: 40px;
  }
  .plan_wrapper {
    max-width: 480px;
  }
  .cutout_man_ph {
    width: 18%;
    left: -3.5vw;
    bottom: -2vw;
  }
  .cutout_woman_ph {
    width: 36%;
    right: -7vw;
    bottom: -2vw;
  }
  .plan_price {
    padding: 30px 20px;
    display: none;
  }
  .plan_price_box {
    padding: 0 20px 20px;
  }
  .plan_price_box h4 {
    font-size: 20px;
    margin-bottom: 1em;
  }
  .plan_price_box p span {
    font-size: 12px;
  }
  .plan_name {
    font-size: 17px;
  }
}
@media print, screen and (min-width: 992px) {
  .plan_price_wrapper {
    padding: 30px 0 0 0;
    margin-top: 60px;
  }
  .plan_price_inner {
    padding: 40px;
    margin-top: 40px;
  }
  .plan_price_wrapper:before {
    height: 80%;
  }
  .plan_price_box_sp {
    display: none;
  }
  .plan_wrapper {
    background: #cdeef6;
    margin-top: 100px;
  }
  .plan_wrapper:before {
    content: "";
    width: 100%;
    height: 14.8vw;
    background: #fff;
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 10;
  }
  .plan_wrapper:after {
    content: "";
    width: 50%;
    position: absolute;
    right: 0;
    top: 0;
    background: #fcfacb;
    height: 100%;
    z-index: 1;
  }
  .point04_plan_img {
    margin-top: -52px;
  }
  .point_content {
    padding: 100px 0;
  }
  .bg_photo {
    height: 30vw;
  }

  .point_txt {
    width: 50%;
    font-size: 18px;
  }
  .point_photo {
    width: 46%;
  }
  .point_txt h3 {
    font-size: 46px;
    margin: 20px 0 20px;
  }
  .plan_box {
    flex: 1;
    padding-bottom: 380px;
  }
  .plan_price {
    padding: 45px 0;
    width: 90%;
    margin: -380px auto 0;
    display: flex;
    max-width: 1000px;
  }
  .plan_price_box {
    flex: 1;
    padding: 0 2vw;
    font-size: 1.5vw;
  }
  /* .plan_price_box:after {
    content: "";
    width: 1px;
    height: 100%;
    background: #707070;
    position: absolute;
    top: 0;
    right: -0.5px;
  }
  .plan_price_box:last-child:after {
    content: none;
  } */
  .plan_price_box h4 {
    font-size: 2.6vw;
    margin: 15px 0 20px;
  }
  .plan_price_box p span {
    font-size: 1.2vw;
  }
  .cutout_man_ph {
    width: 7vw;
    left: -2vw;
    bottom: -2vw;
  }
  .cutout_woman_ph {
    width: 14vw;
    right: -4vw;
    bottom: -2vw;
  }
  .plan_name {
    font-size: 24px;
  }
}
@media print, screen and (min-width: 1200px) {
  .plan_wrapper:before {
    height: 112px;
  }
  .plan_price_box {
    font-size: 18px;
    padding: 0 50px;
  }
  .plan_price_box h4 {
    font-size: 34px;
    margin: 15px 0 20px;
  }
  .plan_price_box p span {
    font-size: 14px;
  }
  .cutout_man_ph {
    width: 100px;
    left: -30px;
    bottom: -30px;
  }
  .cutout_woman_ph {
    width: 200px;
    right: -100px;
    bottom: -30px;
  }
}
/* ---------------------------------------------------------------------------------------------

　   MRTIT 02

--------------------------------------------------------------------------------------------- */

#app_merit {
  position: relative;
}
#app_merit:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  background: #fafafa;
  width: 100%;
  z-index: 1;
}
#app_merit .container {
  position: relative;
  z-index: 2;
}
:root {
  --easing: cubic-bezier(0.2, 1, 0.2, 1);
  --transition: 0.8s var(--easing);
  --color-gray: #aaaaaa;
  --color-theme: #c11732;
}
/* slider */
#app_merit .splide {
  z-index: 0;
}

/* 前へ / 次へボタン */
#app_merit .splide__arrow > svg {
  display: none;
}

#app_merit .splide__arrow--prev {
  background: url(../img/prev.png) no-repeat center / 100%;
}
#app_merit .splide__arrow--next {
  background: url(../img/next.png) no-repeat center / 100%;
}
#app_merit .splide__arrow--prev,
#app_merit .splide__arrow--next {
  position: absolute;
  z-index: 10;
  top: 0;
  bottom: 0;
  margin: auto;
  border-radius: 0;
}

#app_merit .splide__pagination {
  font-size: 0;
  bottom: auto;
}

#app_merit .splide__pagination__page:focus-visible {
  outline: 3px solid rgba(180, 233, 0, 0.8);
  outline-offset: 3px;
  z-index: 1;
  transition: none;
}

#app_merit .splide__slide:focus-visible {
  outline: 3px solid rgba(180, 233, 0, 0.8);
  outline-offset: 3px;
  z-index: 1;
  transition: none;
}

#app_merit .splide-wrapper {
  position: relative;
}

#app_merit .splide__arrow > svg {
  display: none;
}

.flow01 {
  /* コンテナ */
  overflow: hidden;
}

.flow01 .splide-secondary .splide__track-main {
  overflow: visible;
}

.flow01 .splide-secondary {
  max-width: 840px;
  margin: auto;
}

.flow01 .splide__pagination-secondary {
  max-width: 600px;
  margin: auto;
}

.flow01 .splide__pagination-secondary {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  /*padding-bottom: 300px;*/
}

.flow01 .splide__pagination-secondary > li {
  flex: 1;
  text-align: center;
  position: relative;
}

.flow01 .splide__pagination-secondary .splide__pagination__page {
  font-weight: bold;
  line-height: 1;
  position: relative;
  padding-bottom: 50px;
  cursor: pointer;
  -webkit-transition: var(--transition);
  transition: var(--transition);
  color: var(--color-gray);
  background: none;
  width: 100%;
  height: 0;
  opacity: 1;
}

.flow01 .splide__pagination-secondary .splide__pagination__page::before,
.flow01 .splide__pagination-secondary > li::after {
  position: absolute;
  content: "";
  -webkit-transition: var(--transition);
  transition: var(--transition);
  background-color: var(--color-theme);
}

.flow01 .splide__pagination-secondary .splide__pagination__page::before {
  z-index: 1;
  right: 0;
  bottom: -14px;
  left: 0;
  width: 16px;
  height: 16px;
  margin: auto;
  border-radius: 100px;
}

.flow01 .splide__pagination-secondary > li::after {
  right: 50%;
  bottom: -4px;
  width: 100%;
  height: 1px;
  z-index: -1;
}

.flow01 .splide__pagination-secondary > li:first-child::after {
  display: none;
}

.flow01 .splide__pagination-secondary .splide__pagination__page.is-active {
  color: var(--color-theme);
  transform: scale(1);
}

.flow01
  .splide__pagination-secondary
  .splide__pagination__page.is-active::after {
  content: "";
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1px solid var(--color-theme);
  position: absolute;
  bottom: -19px;
  left: 50%;
  transform: translateX(-50%);
}

.flow01 .splide__pagination-secondary > li.is-active ~ *::before,
.flow01 .splide__pagination-secondary > li.is-active ~ *::after {
  background-color: var(--color-gray);
}

.flow01 .splide__slide {
  height: auto;
}

.flow01 .mainslide {
  width: 100%;
  height: 100%;
}
.merit_slide_tit {
  font-weight: bold;
  margin-bottom: 0.5em;
  line-height: 1.3em;
}
.merit_slide_tit .marker {
  line-height: 1.3em;
  background: linear-gradient(transparent 80%, #d75b3b 80%);
}

@media only screen and (max-width: 991px) {
  .flow01 .mainslide {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    background: #fafafa;
    padding: 20px;
  }
  #app_merit .splide__arrow--prev,
  #app_merit .splide__arrow--next {
    width: 28px;
    height: auto;
    transform: translateY(0);
    bottom: 0;
    top: 0;
  }
  #app_merit .splide__arrow--prev {
    left: 0;
  }
  #app_merit .splide__arrow--next {
    right: 0;
  }
  .merit_slide_tit {
    font-size: 24px;
  }
  .flow01 .mainslide .merit_slide_txt_area {
    width: 100%;
  }
  .flow01 .splide-secondary .splide__track-secondary {
    margin-top: 100px;
  }
  #app_merit .splide__pagination {
    top: -100px;
  }
  .flow01 .splide__pagination-secondary .splide__pagination__page {
    font-size: 18px;
  }
  .flow01 .splide__pagination-secondary .splide__pagination__page .step {
    font-size: 12px;
  }
  .merit_slide_num img {
    width: auto;
    height: 70px;
  }
  #app_merit .merit_slide_img_area {
    width: 50%;
  }
  #app_merit .flow01 .mainslide .merit_slide_txt_area {
    padding-top: 0;
  }
  #app_merit .merit_slide_num {
    margin-bottom: 5px;
  }
  #app_merit .flow01 .mainslide {
    padding-top: 10px;
  }
}

@media print, screen and (min-width: 992px) {
  #app_merit {
    margin-top: 100px;
  }
  #app_merit:after {
    height: 420px;
  }
  .flow01 .mainslide {
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
  }
  .flow01 .mainslide .merit_slide_img_area {
    width: 35%;
  }
  .flow01 .mainslide .merit_slide_txt_area {
    width: 61%;
    font-size: 16px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-bottom: 30px;
  }
  .merit_slide_tit {
    font-size: 40px;
  }

  #app_merit .splide__arrow--prev,
  #app_merit .splide__arrow--next {
    width: 39px;
    height: 111px;
  }
  #app_merit .splide__arrow--prev {
    left: -80px;
  }

  #app_merit .splide__arrow--next {
    right: -80px;
  }

  .flow01 .splide-secondary .splide__track-secondary {
    margin-top: 150px;
  }

  #app_merit .splide__pagination {
    top: -150px;
  }
  .flow01 .splide__pagination-secondary .splide__pagination__page {
    font-size: 26px;
  }
  .flow01 .splide__pagination-secondary .splide__pagination__page .step {
    font-size: 15px;
  }
}

/* ---------------------------------------------------------------------------------------------

　   DOWNLOAD

--------------------------------------------------------------------------------------------- */
#download {
  background: var(--color-theme);
  color: #fff;
}
.kakko_title {
  text-align: center;
}
.kakko_title_inner {
  display: inline-block;
  position: relative;
}
.kakko_title_inner:before,
.kakko_title_inner:after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 13px;
  height: 78px;
}

.kakko_title_inner:before {
  background: url(../img/kakkoL.png) no-repeat center / 100%;
  left: 0;
}
.kakko_title_inner:after {
  background: url(../img/kakkoR.png) no-repeat center / 100%;
  right: 0;
}
.kakko_title span {
  display: block;
}
.kakko_title_en {
  line-height: 1.3;
}
.download_lead_text {
  text-align: center;
  font-weight: 700;
}
@media only screen and (max-width: 991px) {
  #download {
    padding: 40px 0;
  }
  .kakko_title {
    margin-bottom: 30px;
  }
  .kakko_title_en {
    font-size: 30px;
  }
  .kakko_title_jp {
    font-size: 14px;
  }
  .kakko_title_inner {
    padding: 0 30px;
  }
  .download_lead_text {
    font-size: 16px;
    margin-bottom: 20px;
  }
  .app_links {
    max-width: 300px;
    margin: 0 auto;
  }
  .app_links li {
    margin-bottom: 15px;
  }
  .app_links li:last-child {
    margin-bottom: 0;
  }
}
@media print, screen and (min-width: 992px) {
  #download {
    padding: 60px 0;
  }
  .kakko_title {
    margin-bottom: 40px;
  }
  .kakko_title_en {
    font-size: 40px;
  }
  .kakko_title_jp {
    font-size: 15px;
  }
  .kakko_title_inner {
    padding: 0 50px;
  }
  .download_lead_text {
    font-size: 18px;
    margin-bottom: 40px;
  }
  .app_links li {
    margin-right: 20px;
  }
  .app_links li:last-child {
    margin-right: 0;
  }
}

/* ---------------------------------------------------------------------------------------------

　   ENJOY POINT

--------------------------------------------------------------------------------------------- */
.enjoy_point_content {
  background: #e1004f;
}
.enjoy_point_title {
  color: #fff;
}
.enjoy_point_title p {
  font-weight: 700;
}
.enjoy_point_use {
  background: #fff;
  border-radius: 10px;
}
.enjoy_point_slider .splide__slide {
  margin-right: 0 !important;
}
.enjoy_point_use_text h4 {
  color: #cf004f;
}
.enjoy_point_img {
  text-align: center;
}
@media only screen and (max-width: 991px) {
  .enjoy_point_content {
    margin: 40px 0;
    padding: 55px 35px 35px;
  }
  .enjoy_point_title {
    margin-bottom: 35px;
  }
  .enjoy_point_title h3 {
    text-align: center;
    margin-bottom: 20px;
  }
  .enjoy_point_title h3 img {
    max-width: 80%;
  }
  .enjoy_point_use {
    margin: 20px 0;
    padding: 15px;
  }
  .enjoy_point_use_text h4 {
    font-size: 20px;
    text-align: center;
  }
  .enjoy_point_use_img {
    text-align: center;
  }
}
@media print, screen and (min-width: 992px) {
  .enjoy_point_content {
    margin: 80px 0;
    padding: 75px 30px 35px;
  }
  .enjoy_point_title {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    margin-bottom: 40px;
  }
  .enjoy_point_title h3,
  .enjoy_point_title p {
    width: 44%;
    margin-right: -24px;
  }
  .enjoy_point_title p {
    font-size: 18px;
    padding-left: 30px;
  }
  .enjoy_point_use {
    margin: 45px 0;
    display: flex;
    align-items: center;
    flex-direction: row-reverse;
    justify-content: space-between;
    padding: 25px;
  }
  .enjoy_point_use .enjoy_point_use_img {
    width: 36%;
    text-align: right;
  }
  .enjoy_point_use .enjoy_point_use_text {
    width: 58%;
  }
  .enjoy_point_use .enjoy_point_use_img img {
    margin-top: -50px;
  }
  .enjoy_point_use_text h4 {
    font-size: 24px;
  }
}

/* ---------------------------------------------------------------------------------------------

　   NEWS

--------------------------------------------------------------------------------------------- */
#news .splide__arrow:disabled {
  opacity: 0;
}
#news {
  background: #f5f5f5;
}
#news .splide__arrow > svg {
  display: none;
}
/* 前へ / 次へボタン */
#news .splide__arrow--prev,
#news .splide__arrow--next {
  display: grid;
  place-content: center;
  cursor: pointer;
  transition: 0.8s cubic-bezier(0.2, 1, 0.2, 1);
  background-color: none;
  border-radius: 0;
}
#news .splide__arrow--prev {
  background: url(../img/prev.png) no-repeat center / 100%;
}
#news .splide__arrow--next {
  background: url(../img/next.png) no-repeat center / 100%;
}
#news .splide__arrow--prev,
#news .splide__arrow--next {
  position: absolute;
  z-index: 10;
  top: 50%;
}
#news .splide__pagination__page {
  margin: 3px 8px;
}
#news h3 {
  margin-bottom: 0.5em;
}
.news_date {
  background: var(--maincolor);
  color: #fff;
  max-width: 90px;
  text-align: center;
  padding: 0 10px;
  margin-bottom: 10px;
}
@media only screen and (max-width: 991px) {
  #news {
    padding-bottom: 120px;
  }
  #news .sec_tit img {
    margin-top: -20px;
  }
  .news_slider {
    max-width: 260px;
    margin: 0 auto;
  }
  #news .splide__arrow--prev,
  #news .splide__arrow--next {
    width: 15px;
    height: 43px;
    transform: translateY(0);
    bottom: -60px;
    top: auto;
  }
  #news .splide__arrow--prev {
    left: 0;
  }
  #news .splide__arrow--next {
    right: 0;
  }
  #news .splide__pagination {
    bottom: -50px;
  }
  .news_thumb {
    margin-bottom: 20px;
  }
}
@media print, screen and (min-width: 992px) {
  .news_slider {
    max-width: 790px;
    margin: 0 auto;
  }
  #news .splide__arrow--prev,
  #news .splide__arrow--next {
    width: 39px;
    height: 111px;
  }
  #news .splide__arrow--prev {
    left: -100px;
  }

  #news .splide__arrow--next {
    right: -100px;
  }
  #news .splide__pagination {
    bottom: -40px;
  }
  #news .sec_tit img {
    margin-top: -40px;
  }
  .news_content {
    display: flex;
    align-items: center;
  }
  .news_thumb {
    width: 260px;
    margin-right: 30px;
  }
  .news_text {
    width: calc(100% - 290px);
  }
  #news h3 {
    font-size: 20px;
  }
}

/* ---------------------------------------------------------------------------------------------

　   ゆるかつ

--------------------------------------------------------------------------------------------- */
#yurukatsu {
  background: #5ac6e2;
}
#yurukatsu h2 {
  text-align: center;
  margin-bottom: 25px;
}

#yurukatsu .splide__arrow > svg {
  display: none;
}

/* 前へ / 次へボタン */
#yurukatsu .splide__arrow--prev,
#yurukatsu .splide__arrow--next {
  display: grid;
  place-content: center;
  cursor: pointer;
  transition: 0.8s cubic-bezier(0.2, 1, 0.2, 1);
  background-color: none;
  border-radius: 0;
}
#yurukatsu .splide__arrow--prev {
  background: url(../img/prev.png) no-repeat center / 100%;
}
#yurukatsu .splide__arrow--next {
  background: url(../img/next.png) no-repeat center / 100%;
}
#yurukatsu .splide__arrow--prev,
#yurukatsu .splide__arrow--next {
  position: absolute;
  z-index: 10;
  top: 0;
  bottom: 0;
  margin: auto;
}
#yurukatsu .splide__pagination__page {
  margin: 3px 8px;
}

#yurukatsu .splide__slide img {
  border-radius: 20px;
}

.yurukatsu_lead_txt {
  text-align: center;
  margin-top: 100px;
}

@media only screen and (max-width: 991px) {
  #yurukatsu {
    padding: 60px 0;
  }
  #yurukatsu .splide__arrow--prev,
  #yurukatsu .splide__arrow--next {
    width: 15px;
    height: 43px;
    transform: translateY(0);
    bottom: -60px;
    top: auto;
  }
  #yurukatsu .splide__arrow--prev {
    left: 0;
  }
  #yurukatsu .splide__arrow--next {
    right: 0;
  }
  #yurukatsu .splide__pagination {
    bottom: -50px;
  }
}
@media print, screen and (min-width: 992px) {
  #yurukatsu {
    padding: 120px 0;
    /*margin-top: -9vw;*/
  }
  .yurukatsu_slider {
    max-width: 790px;
    margin: 0 auto;
  }
  #yurukatsu .splide__arrow--prev,
  #yurukatsu .splide__arrow--next {
    width: 39px;
    height: 111px;
  }
  #yurukatsu .splide__arrow--prev {
    left: -100px;
  }

  #yurukatsu .splide__arrow--next {
    right: -100px;
  }
  #yurukatsu .splide__pagination {
    bottom: -40px;
  }
}

/* ---------------------------------------------------------------------------------------------

　   FACILITY

--------------------------------------------------------------------------------------------- */
:root {
  --easing: cubic-bezier(0.2, 1, 0.2, 1);
  --transition: 0.8s var(--easing);
}
/* slider */
#facility .slide-media,
#facility .thumb-media {
  position: relative;
  overflow: hidden;
}

#facility .slide-media img,
#facility .thumb-media img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#facility .splide {
  z-index: 0;
}
#facility .splide__track--nav > .splide__list > .splide__slide.is-active {
  border: none;
}
/* 前へ / 次へボタン */
#facility .splide__arrow--prev,
#facility .splide__arrow--next {
  display: grid;
  place-content: center;
  width: 50px;
  height: 50px;
  cursor: pointer;
  transition: var(--transition);
  background: none;
  border: none;
}

#facility .splide__arrow--prev::after,
#facility .splide__arrow--next::after {
  width: 1.2rem;
  height: 1.2rem;
  content: "";
  border: solid #2c2c2c;
  border-width: 1px 1px 0 0;
}

#facility .splide__arrow--prev::after {
  margin-left: 0.4rem;
  transform: rotate(-135deg);
}

#facility .splide__arrow--next::after {
  margin-right: 0.4rem;
  transform: rotate(45deg);
}

#facility .splide__arrow:disabled {
  pointer-events: none;
  opacity: 0;
}

#facility .splide__arrow:focus-visible {
  outline: 3px solid rgba(180, 233, 0, 0.8);
  outline-offset: 3px;
  z-index: 1;
  transition: none;
}

#facility .splide__pagination {
  font-size: 0;
}

#facility .splide__pagination__page:focus-visible {
  outline: 3px solid rgba(180, 233, 0, 0.8);
  outline-offset: 3px;
  z-index: 1;
  transition: none;
}

#facility .splide__slide:focus-visible {
  outline: 3px solid rgba(180, 233, 0, 0.8);
  outline-offset: 3px;
  z-index: 1;
  transition: none;
}

#facility .splide-wrapper {
  position: relative;
}

#facility .splide__arrow > svg {
  display: none;
}

#facility .splide-main {
  overflow: visible;
}

#facility .splide-thumb {
  /*padding-top: 8px;*/
  overflow: hidden;
  width: 90%;
  margin: 0 auto;
}

#facility .splide-thumb .splide__track {
  overflow: visible;
  margin-top: 20px;
}

#facility .splide__track--fade .splide__slide.is-active {
  pointer-events: auto;
}

#facility .splide__arrows {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding-top: 62.5%;
  pointer-events: none;
}

#facility .splide__arrow--prev,
#facility .splide__arrow--next {
  position: absolute;
  z-index: 1;
  margin: auto;
  pointer-events: auto;
}

#facility .splide__arrow--prev {
  left: 0;
}

#facility .splide__arrow--next {
  right: 0;
}

#facility .slide {
  display: block;
  overflow: hidden;
  position: relative;
}
#facility .slide figcaption {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  background: #000;
  color: #fff;
  padding: 3px 10px;
}

#facility .slide-media {
  padding-top: 100%;
}
#facility .thumb-media {
  padding-top: 100%;
  -webkit-transition: var(--transition);
  transition: var(--transition);
  background: #fff;
}

#facility .thumb-media img {
  -webkit-transition: var(--transition);
  /*height: calc(100% + 8px);
  transition: var(--transition);
  -webkit-transform: translateY(-8px);
  transform: translateY(-8px);*/
  opacity: 0.3;
}

#facility .splide-thumb .splide__slide:not(.is-active) {
  -webkit-transition: var(--transition);
  transition: var(--transition);
  /*opacity: 0.3;*/
}

#facility .splide-thumb .splide__slide.is-active .thumb-media {
  /*-webkit-transform: translateY(-8px);
  transform: translateY(-8px);*/
}

#facility .splide-thumb .splide__slide.is-active .thumb-media img {
  /*-webkit-transform: translateY(0);
  transform: translateY(0);*/
  opacity: 1;
}

#facility .my-carousel-progress {
  background: #ccc;
  margin-top: 1.6rem;
}

#facility .my-carousel-progress-bar {
  background: greenyellow;
  height: 4px;
  transition: width 400ms ease;
  width: 0;
}
#facility .splide-thumb .splide__list {
  /*justify-content: center;*/
  max-width: 730px;
}
@media only screen and (max-width: 991px) {
  #facility {
    padding-bottom: 120px;
  }
  .facility_gallery {
    margin-top: 40px;
  }
  #facility .splide__arrow--prev::before,
  #facility .splide__arrow--next::before {
    background-color: rgba(0, 0, 0, 0.3);
    -webkit-box-shadow: var(--box-shadow-dark);
    box-shadow: var(--box-shadow-dark);
  }

  #facility .splide__arrow--prev::after,
  #facility .splide__arrow--next::after {
    border-color: #fff;
  }

  #facility .splide__arrow--prev {
    right: calc(100% - 50px);
  }

  #facility .splide__arrow--next {
    left: calc(100% - 50px);
  }
  #facility .slide figcaption {
    font-size: 11px;
  }
}
@media print, screen and (min-width: 992px) {
  #facility {
    padding-bottom: 180px;
  }
  .facility_gallery {
    margin-top: 80px;
  }
  #facility .splide__arrow--prev::before,
  #facility .splide__arrow--next::before {
    transition: var(--transition);
  }

  #facility .splide__arrow--prev:hover::before,
  #facility .splide__arrow--next:hover::before {
    transform: scale(1.2);
  }
  .splide-thumb {
    max-width: 730px;
    margin: 0 auto;
  }
}

/* ---------------------------------------------------------------------------------------------

　   LESSON

--------------------------------------------------------------------------------------------- */
#lesson {
  background: var(--subcolor02);
}
.lesson_wrapper {
  max-width: 1366px;
  margin: 0 auto;
}
.lesson_panel {
  cursor: pointer;
  transition: 0.3s;
}
.lesson_panel:hover {
  opacity: 0.8;
}
/* モーダル */
.modal {
  display: none;
  position: fixed;
  top: 0;
  height: 100vh;
  width: 100%;
  z-index: 99999;
}
.modal-bg {
  position: absolute;
  height: 100vh;
  width: 100%;
  background: rgba(0, 0, 0, 0.6);
}
.modal-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  box-shadow: 0 3px 30px rgba(0, 0, 0, 0.16);
}
body.fixed {
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0;
}
.js-modal-close {
  width: 60px;
  height: 60px;
  background: var(--maincolor);
  border-radius: 50%;
  cursor: pointer;
  z-index: 99999;
}
.js-modal-close img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
}
.js-modal-close:hover {
  opacity: 0.9;
}
.course_img {
  width: 100%;
}
.modaltxt h3 {
  margin-bottom: 25px;
  font-size: 26px;
  font-weight: 700;
  text-align: center;
}
@media only screen and (max-width: 991px) {
  #lesson h2 img {
    margin-top: -20px;
  }
  .lesson_wrapper {
    margin-top: 40px;
  }
  /* modal */
  .modal-content {
    overflow-y: scroll;
    width: 90%;
    /* top: 27.5%; */
  }
  .js-modal-close {
    width: 50px;
    height: 50px;
    position: absolute;
    top: 10px;
    right: 10px;
  }
  .modaltxt {
    padding: 30px;
  }
  .modaltxt h3 {
    margin-bottom: 25px;
    padding: 0 20px 2px;
    font-size: 22px;
  }
  .modaltxt p {
    font-size: 16px;
  }
}
@media only screen and (max-width: 767px) {
  /* modal */
  .modaltxt h3 {
    margin-bottom: 20px;
    font-size: 20px;
  }
  .modaltxt p {
    font-size: 15px;
  }
}
@media print, screen and (min-width: 992px) {
  #lesson h2 img {
    margin-top: -40px;
  }
  .lesson_wrapper {
    display: flex;
    flex-wrap: wrap;
    margin-top: 80px;
  }
  .lesson_panel {
    width: 50%;
  }
  /* modal */
  .modal-content {
    width: 712px;
  }
  .js-modal-close {
    width: 60px;
    height: 60px;
    position: absolute;
    top: -20px;
    right: -20px;
  }
  .modaltxt {
    padding: 40px 100px;
  }
  .modaltxt h3 {
    margin-bottom: 25px;
    padding: 0 20px 2px;
    font-size: 26px;
  }
  .modaltxt p {
    font-size: 18px;
  }
}

/* ---------------------------------------------------------------------------------------------

　   100日チャレンジ

--------------------------------------------------------------------------------------------- */
.challenge_box {
  background: url(../img/bg_stripe.png) repeat top left / 30px;
  position: relative;
}
.challenge_copy {
  text-align: center;
  margin-bottom: 25px;
}
.challenge_balloon,
.challenge_img {
  position: absolute;
}
.challenge_balloon01 {
  left: -5px;
}
.challenge_balloon02 {
  right: -10px;
}
.challenge_box_inner {
  background: #fff;
}
.challenge_elongings {
  width: 680px;
  max-width: 100%;
  border: 1px solid #000;
  margin: 0 auto;
}
.challenge_elongings th,
.challenge_elongings td {
  vertical-align: middle;
  padding: 20px;
}
.challenge_elongings th {
  background: #f4f4f4;
  white-space: nowrap;
}
.disc li {
  position: relative;
  padding-left: 1.2em;
}
.disc li:before {
  content: "";
  width: 0.8em;
  height: 0.8em;
  background: #c11831;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 0.5em;
}
#challenge h3 {
  text-align: center;
}

@media only screen and (max-width: 991px) {
  #challenge {
    padding-top: 100px;
  }
  .challenge_box {
    padding: 80px 20px 20px;
    margin-bottom: 70px;
  }
  .challenge_box_inner {
    padding: 0 20px 80px;
  }
  .challenge_balloon01 {
    top: -30px;
    width: 140px;
  }
  .challenge_balloon02 {
    top: -20px;
    width: 140px;
  }
  .challenge_copy img {
    max-width: 210px;
  }
  #challenge h3 {
    margin-bottom: 20px;
  }
  #challenge h3 img {
    margin-top: -10px;
    max-width: 230px;
  }
  .challenge_img {
    right: -20px;
    width: 110px;
    bottom: -20px;
  }
  .step__box {
    display: flex;
  }
  .step__box .step_ico {
    width: 80px;
    margin-right: 20px;
  }
  .step__box .step__box_text {
    width: calc(100% - 100px);
  }
  .step_arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 50px;
  }
  .step_arrow img {
    width: 50px;
  }
  .flow__wrapper h4 {
    font-size: 18px;
    margin-bottom: 0.5em;
  }
  .challenge_elongings_small {
    font-size: 11px;
  }
  .challenge_elongings {
    margin-top: 40px;
  }
  .join_caption02 {
    margin-top: 25px;
    font-size: 13px;
  }
}
@media print, screen and (min-width: 992px) {
  .challenge_box {
    padding: 35px 55px 55px;
    margin-bottom: 130px;
  }
  .challenge_box_inner {
    padding: 0 60px 30px;
  }
  .challenge_balloon01 {
    top: -60px;
  }
  .challenge_balloon02 {
    top: -40px;
  }
  #challenge h3 {
    margin-bottom: 40px;
  }
  #challenge h3 img {
    margin-top: -20px;
  }
  #challenge .challenge_box_inner p {
    font-size: 20px;
  }
  .challenge_img {
    right: -60px;
    bottom: -30px;
  }
  .flow__wrapper {
    display: flex;
    justify-content: space-between;
    max-width: 840px;
    margin: 0 auto;
  }
  .step_arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100px;
  }
  .flow__wrapper h4 {
    font-size: 20px;
    text-align: center;
    margin: 1em 0 0.5em;
  }
  .flow__wrapper p {
    text-align: center;
  }
  .challenge_elongings_small {
    font-size: 13px;
  }
  .challenge_elongings {
    margin-top: 60px;
  }
  .join_caption02 {
    margin-top: 45px;
    font-size: 15px;
  }
}

/* ---------------------------------------------------------------------------------------------

　   personal_training

--------------------------------------------------------------------------------------------- */
#personal_training {
  position: relative;
  background: var(--subcolor02);
}
#personal_training h2,
#pilates_reformer h2 {
  text-align: center;
  color: #c11831;
  margin-bottom: 1em;
}
#personal_training .container {
  position: relative;
  z-index: 2;
}
:root {
  --easing: cubic-bezier(0.2, 1, 0.2, 1);
  --transition: 0.8s var(--easing);
  --color-gray: #aaaaaa;
  --color-theme: #c11732;
}
/* slider */
#personal_training .splide {
  z-index: 0;
}

/* 前へ / 次へボタン */
#personal_training .splide__arrow > svg {
  display: none;
}

#personal_training .splide__arrow--prev {
  background: url(../img/prev.png) no-repeat center / 100%;
}
#personal_training .splide__arrow--next {
  background: url(../img/next.png) no-repeat center / 100%;
}
#personal_training .splide__arrow--prev,
#personal_training .splide__arrow--next {
  position: absolute;
  z-index: 10;
  bottom: 0;
  top: 50%;
  border-radius: 0;
}

#personal_training .splide__pagination {
  font-size: 0;
  bottom: auto;
}

#personal_training .splide__pagination__page:focus-visible {
  outline: 3px solid rgba(180, 233, 0, 0.8);
  outline-offset: 3px;
  z-index: 1;
  transition: none;
}

#personal_training .splide__slide:focus-visible {
  outline: 3px solid rgba(180, 233, 0, 0.8);
  outline-offset: 3px;
  z-index: 1;
  transition: none;
}

#personal_training .splide-wrapper {
  position: relative;
}

#personal_training .splide__arrow > svg {
  display: none;
}

.flow01 {
  /* コンテナ */
  overflow: hidden;
}

.flow01 .splide-main .splide__track-main {
  overflow: visible;
}

.flow01 .splide-main {
  max-width: 840px;
  margin: auto;
}
.flow01 .splide__pagination-main {
  max-width: 600px;
  margin: auto;
}

.flow01 .splide__pagination-main {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  /*padding-bottom: 300px;*/
}

.flow01 .splide__pagination-main > li {
  flex: 1;
  text-align: center;
  position: relative;
}

.flow01 .splide__pagination-main .splide__pagination__page {
  font-weight: bold;
  line-height: 1;
  position: relative;
  padding-bottom: 50px;
  cursor: pointer;
  -webkit-transition: var(--transition);
  transition: var(--transition);
  color: var(--color-gray);
  background: none;
  width: 100%;
  height: 0;
  opacity: 1;
}

.flow01 .splide__pagination-main .splide__pagination__page::before,
.flow01 .splide__pagination-main > li::after {
  position: absolute;
  content: "";
  -webkit-transition: var(--transition);
  transition: var(--transition);
  background-color: var(--color-theme);
}

.flow01 .splide__pagination-main .splide__pagination__page::before {
  z-index: 1;
  right: 0;
  bottom: -14px;
  left: 0;
  width: 16px;
  height: 16px;
  margin: auto;
  border-radius: 100px;
}

.flow01 .splide__pagination-main > li::after {
  right: 50%;
  bottom: -4px;
  width: 100%;
  height: 1px;
  z-index: -1;
}

.flow01 .splide__pagination-main > li:first-child::after {
  display: none;
}

.flow01 .splide__pagination-main .splide__pagination__page.is-active {
  color: var(--color-theme);
  transform: scale(1);
}

.flow01 .splide__pagination-main .splide__pagination__page.is-active::after {
  content: "";
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1px solid var(--color-theme);
  position: absolute;
  bottom: -19px;
  left: 50%;
  transform: translateX(-50%);
}

.flow01 .splide__pagination-main > li.is-active ~ *::before,
.flow01 .splide__pagination-main > li.is-active ~ *::after {
  background-color: var(--color-gray);
}

.flow01 .splide__slide {
  height: auto;
}

.flow01 .mainslide {
  width: 100%;
  height: 100%;
}
.merit_slide_tit {
  font-weight: bold;
  margin-bottom: 0.5em;
  line-height: 1.3em;
}
.merit_slide_tit .marker {
  line-height: 1.3em;
  background: linear-gradient(transparent 80%, #d75b3b 80%);
}
.pt_price {
  text-align: center;
}
#personal_training h3 {
  text-align: center;
}
.pt_caption {
  margin-top: 2em;
  font-size: 12px;
}
@media only screen and (max-width: 991px) {
  #personal_training h2,
  #pilates_reformer h2 {
    font-size: 30px;
  }
  .pt_price {
    margin: 30px 0 60px;
  }
  #personal_training h3 {
    margin-bottom: 40px;
  }
  .flow01 .mainslide {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    background: #fafafa;
    padding: 20px 0 0;
  }
  #personal_training .splide__arrow--prev,
  #personal_training .splide__arrow--next {
    width: 15px;
    height: 43px;
    transform: translateY(0);
    bottom: 0;
    top: auto;
  }
  #personal_training .splide__arrow--prev {
    left: 0;
  }
  #personal_training .splide__arrow--next {
    right: 0;
  }
  .merit_slide_tit {
    font-size: 24px;
  }
  .flow01 .mainslide .merit_slide_txt_area {
    width: 100%;
    padding: 20px;
  }
  .flow01 .splide-main .splide__track-main {
    margin-top: 100px;
  }
  #personal_training .splide__pagination {
    top: -100px;
  }
  .flow01 .splide__pagination-main .splide__pagination__page {
    font-size: 18px;
  }
  .flow01 .splide__pagination-main .splide__pagination__page .step {
    font-size: 12px;
  }
  .merit_slide_num {
    margin-bottom: 15px;
  }
  .merit_slide_num img {
    width: 140px;
  }
}

@media print, screen and (min-width: 992px) {
  #personal_training h2,
  #pilates_reformer h2 {
    font-size: 52px;
  }
  .pt_price {
    margin: 60px 0 80px;
  }
  #personal_training h3 {
    margin-bottom: 70px;
  }
  .flow01 .mainslide {
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
  }
  .flow01 .mainslide .merit_slide_img_area {
    width: 35%;
  }
  .flow01 .mainslide .merit_slide_txt_area {
    width: 60%;
    font-size: 16px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-bottom: 30px;
  }
  .merit_slide_tit {
    font-size: 40px;
  }

  #personal_training .splide__arrow--prev,
  #personal_training .splide__arrow--next {
    width: 39px;
    height: 111px;
  }
  #personal_training .splide__arrow--prev {
    left: -80px;
  }

  #personal_training .splide__arrow--next {
    right: -80px;
  }

  .flow01 .splide-main .splide__track-main {
    margin-top: 150px;
  }

  #personal_training .splide__pagination {
    top: -150px;
  }
  .flow01 .splide__pagination-main .splide__pagination__page {
    font-size: 26px;
  }
  .flow01 .splide__pagination-main .splide__pagination__page .step {
    font-size: 15px;
  }
  .merit_slide_num {
    margin-bottom: 20px;
  }
}

/* ---------------------------------------------------------------------------------------------

　   ピラティスリフォーマー

--------------------------------------------------------------------------------------------- */
#pilates_reformer {
  background: #fafafa;
}
.pilates_session li {
  border: 2px solid #c11831;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  background: #fff;
}
.pilates_session li:last-child {
  margin-bottom: 0;
}
.pilates_session li .pilates_session_price {
  font-weight: bold;
}
.pilates_reformer_img img {
  width: 100%;
}
@media only screen and (max-width: 991px) {
  .pilates_reformer_img {
    margin-bottom: 30px;
  }
  .pilates_session {
    margin-top: 30px;
  }
  .pilates_session li {
    height: 70px;
    display: flex;
    align-items: center;
  }
  .pilates_session li .pilates_session_time {
    font-size: 16px;
    line-height: 1;
    margin-bottom: 0.3em;
  }
  .pilates_session li .pilates_session_price {
    font-size: 20px;
    line-height: 1;
  }
  .pilates_session li .pilates_session_price .pilates_session_small_t {
    font-size: 14px;
  }
  .pilates_session_time {
    display: block;
    text-align: center;
  }
}

@media print, screen and (min-width: 992px) {
  .pilates_reformer_img {
    width: 60%;
    margin-left: -10%;
    margin-right: 4%;
  }
  .pilates_reformer_content {
    width: 56%;
    font-size: 18px;
  }
  .pilates_session {
    margin-top: 70px;
  }
  .pilates_session li {
    height: 50px;
  }
  .pilates_session li .pilates_session_time {
    font-size: 18px;
  }
  .pilates_session li .pilates_session_price {
    font-size: 20px;
  }
  .pilates_session li .pilates_session_price .pilates_session_small_t {
    font-size: 14px;
  }
}

/* ---------------------------------------------------------------------------------------------

　   HOW TO JOIN

--------------------------------------------------------------------------------------------- */
#howto {
  background: #fff3f3;
}
#howto .scroll__inner {
  background: #fff3f3;
  padding: 0 0 20px 0;
  overflow-x: scroll;
  -ms-overflow-style: none;
  /* IE, Edge 対応 */
  scrollbar-width: none;
  /* Firefox 対応 */
}
#howto .scroll__inner::-webkit-scrollbar {
  /* Chrome, Safari 対応 */
  display: none;
}
#howto .simplebar-scrollbar::before {
  background: #d75b3b;
  border-radius: 0;
  height: 14px !important;
  /*margin-left: 2px;
  margin-top: 3px;*/
}
#howto .simplebar-scrollbar.simplebar-visible::before {
  opacity: 1;
}
#howto .simplebar-track {
  background: #e2e2e2;
  /*height: 15px !important;*/
}

#howto .simplebar-track.simplebar-horizontal {
  height: 10px;
}
#howto .simplebar-track.simplebar-horizontal .simplebar-scrollbar {
  top: 0;
  height: 10px;
}
#howto .simplebar-track.simplebar-horizontal .simplebar-scrollbar:before {
  left: 0;
  right: 0;
}

.step_wrap {
  margin-top: 30px;
}
.step_box {
  flex: 1;
  margin-right: 60px;
}
.step_box:last-child {
  margin-right: 0;
}
.step_box .step_tit {
  font-weight: bold;
  text-align: center;
  line-height: 1.5em;
  font-size: 18px;
  margin-bottom: 20px;
  letter-spacing: 0;
}
.step_box .download_app_link li {
  text-align: center;
  margin-bottom: 15px;
}
.step_box .download_app_link li:last-child {
  margin-bottom: 0;
}
.step_box .download_app_link li a {
  display: inline-block;
}
.step_box figure {
  text-align: center;
}

@media only screen and (max-width: 991px) {
  .step_wrap {
    width: 1200px;
  }
  .step_box {
    margin-right: 40px;
    font-size: 13px;
  }
  .step_box .step_num img {
    width: auto;
    height: 40px;
  }
  .step_box .step_num {
    margin-bottom: 20px;
  }
  .step_box figure {
    margin-bottom: 20px;
  }
  .step_box figure img {
    max-width: 120px;
  }
}
@media print, screen and (min-width: 992px) {
  .step_wrap {
    width: 1530px;
  }
  .step_box {
    font-size: 15px;
  }
  .step_box .step_num {
    margin-bottom: 35px;
  }
  .step_box figure {
    margin-bottom: 35px;
  }
}

/* ---------------------------------------------------------------------------------------------

　   Instagram

--------------------------------------------------------------------------------------------- */
#instagram {
  text-align: center;
}
#instagram .instagram_btn {
  display: block;
  max-width: 480px;
  width: 100%;
  margin: 0 auto;
}
@media only screen and (max-width: 991px) {
  #instagram {
    background: url(../img/instagram_bg_sp.jpg) no-repeat center / cover;
  }
}
@media print, screen and (min-width: 992px) {
  #instagram {
    background: url(../img/instagram_bg.jpg) no-repeat center / cover;
  }
  #instagram h3 {
    margin-bottom: 40px;
  }
}

/* ---------------------------------------------------------------------------------------------

　   SHOP INFORMATION

--------------------------------------------------------------------------------------------- */
#shop {
  background: #f0f2f4;
}
.shop_map iframe {
  width: 100%;
}
.shop_info {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
}
.shop_info dt,
.shop_info dd {
  margin-bottom: 30px;
}
.shop_info dt:last-of-type,
.shop_info dd:last-of-type {
  margin-bottom: 0;
}
.shop_info dt {
  background: var(--maincolor);
  color: #fff;
  width: 7.5em;
  text-align: center;
  margin-right: 1.5em;
}
.shop_info dd {
  width: calc(100% - 9em);
}
.shop_info dd .small_text {
  display: block;
  font-size: 13px;
}
.shop_info dd a {
  text-decoration: underline;
}
.sns_link li {
  margin-right: 15px;
}
.sns_link li:last-child {
  margin-right: 0;
}
@media only screen and (max-width: 991px) {
  .shop_map iframe {
    height: 250px;
  }
  .shop_txt {
    margin-bottom: 40px;
  }
}
@media print, screen and (min-width: 992px) {
  .shop_txt {
    width: 48%;
  }
  .shop_map {
    width: 48%;
  }
  .shop_map iframe {
    height: 400px;
  }
}

/* ---------------------------------------------------------------------------------------------

　   PRICE

--------------------------------------------------------------------------------------------- */
.table {
  width: 100%;
  margin-bottom: 45px;
}
.table:last-child {
  margin-bottom: 0;
}
.table th,
.table td {
  text-align: center;
  vertical-align: middle;
  border: 1px solid #bababa;
  line-height: 1.3em;
}
.table th {
  background: var(--maincolor);
  color: #fff;
  font-weight: 400;
  border-right: 1px solid #fff;
}
.table th:last-child {
  border-right: 1px solid #bababa;
}
.table td .small_text {
  display: inline-block;
  line-height: 1.3em;
}
.table_new_wrapper {
  position: relative;
}
.table_new {
  position: absolute;
  z-index: 10;
}
@media only screen and (max-width: 991px) {
  .table th,
  .table td {
    padding: 15px 10px;
    font-size: 13px;
  }
  .table td .small_text {
    font-size: 10px;
  }
  .table_new {
    width: 40px;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
  }
}
@media print, screen and (min-width: 992px) {
  .table th,
  .table td {
    font-size: 18px;
    padding: 20px;
  }
  .table td .small_text {
    font-size: 13px;
  }
  .table_new {
    top: -40px;
    left: 0;
  }
}
/* ---------------------------------------------------------------------------------------------

　   入会方法

--------------------------------------------------------------------------------------------- */
#how_to_join h3 {
  text-align: center;
  color: #c11831;
  margin-bottom: 1em;
}
.tab-group {
  display: flex;
}
.tab-group .tab {
  color: #fff;
  background: #bcbcbc;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  margin-right: 10px;
  cursor: pointer;
}
.tab-group .tab:last-child {
  margin-right: 0;
}
.tab-group .tab.is-s-active {
  background: #c11831;
}
.panel-group {
  border: 3px solid #c11831;
  background: #fff;
}
.panel {
  display: none;
}
.panel.is-s-show {
  display: block;
}
#how_to_join h4 {
  margin-bottom: 0;
}
#how_to_join .tab_flow__wrapper {
  border-bottom: 1px solid #d9d9d9;
}
.join_belongings h5 {
  text-align: center;
  margin-bottom: 1em;
}
.join_belongings_img {
  margin: 0 auto;
  display: block;
  text-align: center;
}
.join_caption_box {
  background: #fafafa;
}
.join_caption li {
  position: relative;
  padding-left: 3em;
}
.join_caption li span {
  position: absolute;
  left: 0;
  top: 0;
  width: 3em;
}
.tab_flow__wrapper {
  display: flex;
  justify-content: space-between;
}
.tab_step_arrow {
  display: flex;
  align-items: center;
  justify-content: center;
}
.tab_flow__wrapper h4 {
  text-align: center;
}

@media only screen and (max-width: 991px) {
  .tab-group .tab {
    height: 50px;
    padding: 0 15px;
    font-size: 15px;
  }
  .panel {
    padding: 30px 20px;
  }
  #how_to_join h3 {
    font-size: 24px;
  }
  #how_to_join .step__box_text {
    /*display: flex;
    align-items: center;*/
  }
  #how_to_join .tab_flow__wrapper {
    padding-bottom: 25px;
    margin-bottom: 25px;
  }
  .join_belongings_img {
    max-width: 280px;
  }
  .join_belongings h5 {
    font-size: 18px;
  }
  .join_caption_box {
    padding: 20px;
    margin-top: 20px;
  }
  .join_caption li {
    font-size: 12px;
  }
  .tab_step_arrow {
    width: 30px;
  }
  .tab_step_arrow img {
    width: 10px;
  }
  .tab_flow__wrapper h4 {
    line-height: 1.3em;
    margin-top: 0.5em;
  }
  .tab_step__box {
    width: calc(33.333333333333333% - 15px);
  }
  .tab_step__box .step_ico {
    text-align: center;
  }
  .tab_step__box .step_ico img {
    max-width: 70px;
  }
}
@media print, screen and (min-width: 992px) {
  .tab-group .tab {
    height: 70px;
    padding: 0 20px;
    font-size: 22px;
  }
  .panel {
    padding: 40px 60px;
  }
  #how_to_join h3 {
    font-size: 30px;
  }
  #how_to_join .tab_flow__wrapper {
    padding-bottom: 50px;
    margin-bottom: 50px;
  }
  .join_belongings_img {
    max-width: 816px;
  }
  .join_belongings h5 {
    font-size: 22px;
  }
  .join_caption_box {
    padding: 30px;
    display: flex;
    justify-content: center;
    margin-top: 30px;
  }
  .join_caption li {
    font-size: 14px;
  }
  .tab_flow__wrapper {
    max-width: 840px;
    margin: 0 auto;
  }
  .tab_step_arrow {
    width: 100px;
  }
  .tab_flow__wrapper h4 {
    font-size: 20px;
  }
}
/* ---------------------------------------------------------------------------------------------

　   XXX

--------------------------------------------------------------------------------------------- */

@media only screen and (max-width: 991px) {
}
@media print, screen and (min-width: 992px) {
}
