@charset "UTF-8";
/* ====================================================
reset style
==================================================== */
@import url("https://fonts.googleapis.com/css?family=Noto+Sans+JP:100,300,400,500,700&subset=japanese");
@import url("https://fonts.googleapis.com/css?family=Noto+Serif:400,400i,700,700i&display=swap");
html {
  overflow-y: scroll;
  overflow-x: hidden;
  font-size: 13px;
 letter-spacing: 0!important;	
  /* Base font size, change to 14px or 16px if needed */
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
	font-family:sans-serif;
}

body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, code, form, fieldset, legend, input, textarea, p, blockquote, th, td {
  margin: 0;
  padding: 0;
font-family:sans-serif;
}
.container{max-width:100%; }

h1,h2,h3,h4,h5 {text-transform: lowercase!important; }

.t-blue{color:#0065a3; }
.t-rouge{color:#f17019;}

h1 {font-size:2rem; line-height:3rem;}

* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

fieldset, img {
  border: 0;
}

img {
  vertical-align: middle;
  max-width: 100%;
}

address, caption, cite, code, dfn, var {
  font-style: normal;
  font-weight: normal;
}

li {
  list-style: none;
}

caption, th {
  text-align: left;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: normal;
}

q:before, q:after {
  content: '';
}

abbr, acronym {
  border: 0;
  font-variant: normal;
}

sup {
  vertical-align: text-top;
}

sub {
  vertical-align: text-bottom;
}

input, textarea, select {
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
}

/*to enable resizing for IE*/
input, textarea, select {
  *font-size: 100%;
}

/*because legend doesn't inherit in IE */
legend {
  color: #000;
}

del, ins {
  text-decoration: none;
}

main {
  display: block;
}

section {
  position: relative;
}
.pc{display:block;}
/* ====================================================
Font
==================================================== */
/* ====================================================
Media Quary
==================================================== */
body {
  color: #333333;
  font-family: "ヒラギノ角ゴPro W3", "Hiragino Kaku Gothic Pro", Osaka, "Meiryo", "メイリオ", "MS Pゴシック", Arial, Helvetica, Verdana, sans-serif;
  font-size: 100%;
  -webkit-font-smoothing: antialiased;
  line-height: 1.4;
  overflow-x: hidden;
}

.is-locked {
  overflow: hidden;
  -ms-touch-action: none;
  touch-action: none;
}

.is-locked body {
  -webkit-overflow-scrolling: auto;
}

#header {
	background-color:#fff;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 99;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 24px 62px 32px 38px;
  -webkit-backface-visibility: hidden;
  -webkit-transition: all .3s ease;
  -o-transition: all .3s ease;
  transition: all .3s ease;
}

@media screen and (max-width: 1280px) {
  #header {
    padding: 15px;
  }
}

@media screen and (max-width: 1024px) {
  #header {
    padding: 14px 13px 23px;
  }
}

#header.fixed {
  padding-top: 14px;
  padding-bottom: 15px;
  background: white;
  -webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.32);
          box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.32);
}

#header .logo {
  display: inline-block;
}

@media screen and (max-width: 1280px) {
  #header .logo {
    max-width: 350px;
  }
}

#header .header-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

@media screen and (max-width: 1024px) {
  #header .header-item {
    padding-right: 60px;
  }
}

#header .header-item .item-orther {
  margin-left: 57px;
  padding: 11px 23px 11px 25px;
  letter-spacing: 1.5px;
  background: #f17019;
	border-radius:30px;
  font-size: 1.3rem;
  font-weight: 500;
  color: white;
}

@media screen and (max-width: 1280px) {
  #header .header-item .item-orther {
    margin-left: 15px;
  }
}

@media screen and (max-width: 1024px) {
  #header .header-item .item-orther {
    margin-left: 0;
    font-size: 12px;
    padding: 9px 17px;
    border-radius: 30px;
  }
}

@media screen and (max-width: 1024px) and (min-width: 0\0) {
  #header .header-item .item-orther {
    position: absolute;
    right: 65px;
    top: 14px;
  }
}

@media screen and (max-width: 1024px) {
  #header .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    height: 100vh;
    padding: 15px;
    overflow-y: scroll;
    background: white;
  }
  #header .nav-menu.active {
    display: block;
  }
}

#header .nav-menu .show-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#header .nav-menu .show-menu .item {
  margin-left: 6px;
}


@media screen and (max-width: 1024px) {
  #header .nav-menu .show-menu .item {
    width: 100%;
    margin: 0;
    text-align: center;
  }
}

#header .nav-menu .show-menu .item a {
  display: block;
  font-size: 1.3rem;
  font-weight: 500;
  color: #585656;
  padding: 15px 23px 9px 25px;
}

@media screen and (max-width: 1280px) {
  #header .nav-menu .show-menu .item a {
    padding: 15px 10px;
  }
}

#header .mobile-icon {
  width: 37px;
  height: 22px;
  -webkit-transition: background .5s;
  -o-transition: background .5s;
  transition: background .5s;
  position: absolute;
  right: 15px;
  top: 20px;
  z-index: 12;
  display: none;
}

@media screen and (max-width: 1024px) {
  #header .mobile-icon {
    display: block;
  }
}

#header .mobile-icon span {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  display: block;
  width: 100%;
  height: 1px;
  margin-top: -2px;
  background-color: #006eb0;
  font-size: 0;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transition: background-color 0.3s;
  -o-transition: background-color 0.3s;
  transition: background-color 0.3s;
  border-radius: 3px;
}

#header .mobile-icon span:before, #header .mobile-icon span:after {
  position: absolute;
  left: 0;
  width: 100%;
  height: 100%;
  background: #006eb0;
  content: '';
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  -o-transition: transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
  border-radius: 3px;
}

#header .mobile-icon span:before {
  -webkit-transform: translateY(-250%);
  -ms-transform: translateY(-250%);
      transform: translateY(-250%);
  top: -5px;
}

#header .mobile-icon span:after {
  -webkit-transform: translateY(250%);
  -ms-transform: translateY(250%);
      transform: translateY(250%);
  bottom: -5px;
}

#header .mobile-icon.mobile-close span {
  background-color: transparent;
}

#header .mobile-icon.mobile-close span:before, #header .mobile-icon.mobile-close span:after {
  width: 100%;
  background: #006eb0;
}

#header .mobile-icon.mobile-close span:before {
  -webkit-transform: translateY(0) rotate(45deg);
  -ms-transform: translateY(0) rotate(45deg);
      transform: translateY(0) rotate(45deg);
  top: 2px;
}

#header .mobile-icon.mobile-close span:after {
  -webkit-transform: translateY(0) rotate(-45deg);
  -ms-transform: translateY(0) rotate(-45deg);
      transform: translateY(0) rotate(-45deg);
  bottom: -2px;
}

#header.header-strong.fixed {
  background: rgba(11, 11, 11, 0.64);
  -webkit-box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.32);
          box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.32);
}

@media screen and (max-width: 1024px) {
  #header.header-strong .nav-menu {
    background: rgba(11, 11, 11, 0.64);
  }
}

#header.header-strong .nav-menu .show-menu a {
  color: white;
}

#header.header-strong .mobile-icon span {
  background-color: #ff623e;
}

#header.header-strong .mobile-icon span:before, #header.header-strong .mobile-icon span:after {
  background-color: #ff623e;
}

#header.header-strong .mobile-icon.mobile-close span {
  background-color: transparent;
}

.slick-prev, .slick-next {
  display: none !important;
}

.slick-dots {
  display: flex;
  justify-content: center;
margin-top:10px;
}

.slick-dots li {
  margin: 0 5px;
}

.slick-dots li button {
  border: none;
  border-radius: 0;
  width: 10px;
  height: 1px;
  background-color: #ccc;
  color: white;
  text-indent: -9999px;
}

.slick-dots .slick-active button {
  border: none;
  background-color: #ff623e;
}

#footer {
  background: black;
  padding: 55px 0 40px;
  font-size: 20px;
  font-size: 1.3rem;
  font-weight: bold;
  color: white;
}

@media screen and (max-width: 768px) {
  #footer {
    padding: 14px 0;
    font-size: 10px;
    font-size: 1rem;
  }
}

#footer .logo {
  display: inline-block;
  margin-bottom: 33px;
}

@media screen and (max-width: 576px) {
  #footer .logo {
    margin-bottom: 15px;
  }
  #footer .logo img {
    max-width: 160px;
  }
}

#footer span {
  font-size: 24px;
  font-size: 1.6rem;
  color: #ff7108;
  font-weight: 600;
}

@media screen and (max-width: 768px) {
  #footer span {
    font-size: 12px;
    font-size: 1.2rem;
  }
}

@media screen and (max-width: 380px) {
  #footer span {
    display: block;
    margin-bottom: 10px;
  }
}

#footer a {
  color: #ff7108;
  letter-spacing: 1px;
  display: inline-block;
}

#footer .menu-footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 37px;
}

@media screen and (max-width: 768px) {
  #footer .menu-footer {
    margin-top: 20px;
  }
}

#footer .menu-footer li {
  border-right: 1px solid #d0c9c9;
  padding: 0 28px;
}

@media screen and (max-width: 576px) {
  #footer .menu-footer li {
    padding: 0 15px;
  }
}

#footer .menu-footer li:last-child {
  border-right: none;
}

#footer .menu-footer li a {
  display: block;
  color: #d0c9c9;
  font-weight: 400;
  letter-spacing: 0;
}

#footer.footer-pilates {
  background: white;
  border-top: 4px solid #006eb0;
  color: #656565;
}

@media screen and (max-width: 768px) {
  #footer.footer-pilates {
    border-top: 3px solid #006eb0;
    padding-top: 22px;
  }
}

#footer.footer-pilates span {
  color: #006eb0;
}

#footer.footer-pilates a {
  color: #006eb0;
}

#footer.footer-pilates .menu-footer li a {
  color: #9a9a9a;
}

.inner {
  display: block;
  max-width: 1000px;
  padding: 0 15px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

@media screen and (max-width: 768px) {
  .inner {
    padding: 0 13px;
  }
}

.clearfix {
  *zoom: 1;
}

.clearfix:before {
  content: "";
  display: table;
}

.clearfix:after {
  clear: both;
  content: "";
  display: table;
}

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

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

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

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

@media screen and (min-width: 769px) {
  .ptpc-68 {
    padding-top: 68px !important;
  }
}

@media screen and (min-width: 769px) {
  .ptpc-40 {
    padding-top: 40px !important;
  }
}

a {
  text-decoration: none !important;
  -webkit-backface-visibility: hidden;
  -webkit-transition: all .3s ease;
  -o-transition: all .3s ease;
  transition: all .3s ease;
}

a:hover {
  opacity: 0.7;
}

@media screen and (min-width: 769px) {
  a[href^="tel"] {
    pointer-events: none;
  }
}

.heading-page {
  display: block;
  text-align: center;
  font-size: 5rem;
  line-height: 8rem;	
  color: #ff623e;
  font-weight: bold;
  position: relative;
  letter-spacing: 2px;
  padding: 32px 0;
}



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

}

@media screen and (max-width: 768px) {
  .heading-page {
    font-size: 30.5px;
    font-size: 3.5rem;
	  line-height:6rem;
  }
}

/*--
.heading-page.color-blue {
  -webkit-transform: rotate(-7deg);
      -ms-transform: rotate(-7deg);
          transform: rotate(-7deg);
}--*/

@media screen and (min-width: 769px) {
 
}

.heading-block {
  display: block;
  font-size: 40px;
  font-size: 4rem;
  color: #ff623e;
  text-align: center;
  position: relative;
  font-weight: bold;
  margin-bottom: 62px;
  padding-bottom: 20px;
}

@media screen and (max-width: 768px) {
  .heading-block {
    font-size: 30.5px;
    font-size: 3.05rem;
  }
	.newbie{display:block; margin:0 auto 20px auto; }
}

.heading-block:after {
  content: "";
  width: 155px;
  height: 3px;
  background: black;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
}

.btn-brand{border-radius: 5px; padding:15px!important; background-color:#006eb0; text-transform: lowercase;}
.shimaibrand h3{text-align: center;}


@media screen and (max-width: 768px) {
  .heading-block:after {
    height: 2px;
    max-width: 100px;
  }
	
	.shimaibrand h3{text-align: left;}

}

.heading-block-02 {
  display: block;
  font-size: 30px;
  font-size: 3rem;
  color: #f8d239;
  font-weight: bold;
  margin-bottom: 71px;
}

@media screen and (max-width: 768px) {
  .heading-block-02 {
    font-size: 27.5px;
    font-size: 2.75rem;
    margin-bottom: 70px;
  }
}

.heading-block-02 span {
  display: inline-block;
  border-bottom: 4px solid #f8d239;
  padding-bottom: 4px;
  position: relative;
}

@media screen and (max-width: 768px) {
  .heading-block-02 span {
    border-bottom: 2px solid #f8d239;
  }
}

.heading-item {
  display: block;
  font-size: 24px;
  font-size: 2.4rem;
  font-weight: bold;
  color: #ff623e;
  margin-bottom: 24px;
  line-height: 1.2;
}

@media screen and (max-width: 768px) {
  .heading-item {
    margin-bottom: 4px;
    font-size: 17.5px;
    font-size: 1.75rem;
    line-height: 1.4;
  }
}

.heading-item small {
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: bold;
}

@media screen and (max-width: 768px) {
  .heading-item small {
    font-size: 16px;
    font-size: 1.6rem;
  }
}

.heading-note {
  display: block;
  color: white;
  font-size: 30px;
  font-size: 3rem;
  line-height: 1;
  position: relative;
  font-weight: bold;
  letter-spacing: 1px;
  padding: 71px 0 32px 0;
  margin-bottom: 34px;
  text-align: center;
  font-family: "ヒラギノ角ゴPro W3", "Hiragino Kaku Gothic Pro", Osaka, "Meiryo", "メイリオ", "MS Pゴシック", Arial, Helvetica, Verdana, sans-serif;
}

@media screen and (max-width: 576px) {
  .heading-note {
    font-size: 22px;
    font-size: 2.2rem;
    padding: 50px 0 25px 0;
    margin-bottom: 26px;
    text-align: center;
  }
}

.heading-note:before {
  content: "";
  width: 67px;
  height: 37px;
  background: url("/lp/img/common/item-white.png") no-repeat;
  background-size: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
}

@media screen and (max-width: 576px) {
  .heading-note:before {
    width: 40px;
    height: 25px;
  }
}

.heading-note:after {
  content: "";
  width: 170px;
  height: 3px;
  background: white;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
}

@media screen and (max-width: 576px) {
  .heading-note:after {
    width: 88px;
    height: 2px;
  }
}

.heading-note-black {
  color: #0d0d0d;
}

@media screen and (min-width: 577px) {
  .heading-note-black {
    padding-bottom: 45px;
    margin-bottom: 49px;
  }
}

.heading-note-black:before {
  background: url("/lp/img/common/item-black.png") no-repeat;
  background-size: 100%;
}

.heading-note-black:after {
  background: #0d0d0d;
}

.heading-note--small {
  display: block;
  font-weight: bold;
  color: #f85d39;
  text-align: center;
  font-size: 24px;
  font-size: 2.4rem;
  line-height: 2.083;
}

@media screen and (max-width: 576px) {
  .heading-note--small {
    font-size: 27.5px;
    font-size: 2.5rem;
    line-height: 1.61;
  }
}

@media screen and (max-width: 330px) {
  .heading-note--small {
    font-size: 20px;
    font-size: 2rem;
  }
}

.heading-note-blue {
  color: #006eb0;
}

.heading-note-blue:before {
  background: url("/lp/img/common/item-blue.png") no-repeat;
  background-size: 100%;
}

.heading-note-blue:after {
  background: #006eb0;
}

.btn {
  position: relative;
  font-size: 15px;
  font-size: 1.5rem;
  padding: 9px 16px;
  color: white;
  border: none;
  border-radius: 100px;
  -webkit-backface-visibility: hidden;
  -webkit-transition: all .3s ease;
  -o-transition: all .3s ease;
  transition: all .3s ease;
}

.btn.btn-red {
font-family:sans-serif;
  background: #f17019;
  color: white;
  font-weight: 400;
  padding: 10px 0;
  min-width: 350px;
 border-bottom:solid 7px #a55502;
}

.btn:hover {
background: #f9a041;
opacity:1;
 margin-top: 4px;	
 border-bottom:solid 3px #a55502;
}

.btn.btn-red:before {
    content: "\f054";
    font-family: 'FontAwesome';
    width: 50px;
    height: 20px;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    margin: auto;
}

@media screen and (max-width: 576px) {
  .btn.btn-red {
   min-width:100%;
    width: 100%;
  }
}

@media screen and (max-width: 380px) {
  .btn.btn-red {
    min-width: 200px;
  }
}

.btn.btn-secondary {
  background: #585656;
}

.btn.btn-danger {
  background: #ff5a4d;
  padding: 9px 12px;
}

.btn.btn-blue {
	color:#fff;
  background: #006eb0;
}

.btn.btn-arrow-right:after {
  content: "";
  width: 15px;
  height: 20px;
  background: url("/lp/img/common/arrow-right.png") no-repeat;
  position: absolute;
  right: 20px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

@media screen and (max-width: 576px) {
  .btn.btn-arrow-right:after {
    background: url(/img/common/arrow-right-02.png) no-repeat;
    background-size: 100%;
    width: 16px;
    height: 21px;
  }
}

.btn span {
  padding-top: .5rem;
  display: block;
  font-size: 20px;
  font-size: 2rem;
  margin-bottom: 4px;
}

.btn small {
  display: block;
  font-size: 14px;
  font-size: 1.4rem;
  line-height:3rem;
}

@media screen and (max-width: 768px) {
  .btn small {
    font-size: 12px;
    font-size: 1.2rem;
  }
}

.bg-black {
  background: #0b0b0b !important;
}

.bg-grey {
  background: #f7f7f7!important;
}

.bg-blue {
  background: #006eb0 !important;
  color: white !important;
}

.bg-light-blue {
  background: #E6F5FF !important;
}

.color-orange {
  color: #ff623e !important;
}

.color-blue {
  color: #006eb0 !important;
}

.color-white {
  color: #fff !important;
}

@media screen and (max-width: 576px) {
  .mbsp-28 {
    margin-bottom: 28px;
  }
}

@media screen and (min-width: 769px) {
  .mbpc-18 {
    margin-bottom: 18px !important;
  }
}

.feature-output-heading {
  display: block;
  text-align: center;
  position: relative;
  font-size: 41px;
  font-size: 4.1rem;
  font-weight: bold;
  font-style: italic;
  color: white;
  letter-spacing: 3px;
  padding-bottom: 35px;
  margin-bottom: 115px;
}

@media screen and (max-width: 576px) {
  .feature-output-heading {
    font-size: 23.7px;
    font-size: 2.37rem;
    letter-spacing: 2px;
    margin-bottom: 90px;
    padding-bottom: 20px;
  }
}



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

}

.about-block .about-img {
  margin-bottom: 77px;
}

@media screen and (max-width: 768px) {
  .about-block .about-img {
    margin: 0 -13px 15px;
  }
}

.about-block .about-txt {
  color: white;
  font-size: 15px;
  font-size: 1.5rem;
  line-height: 2.06;
}

.about-block .about-note {
  max-width: 710px;
  margin: 100px auto;
}

@media screen and (max-width: 576px) {
  .about-block .about-note {
    margin: 50px auto;
    font-size: 13px;
    font-size: 1.3rem;
    line-height: 1.73;
    text-align: left;
  }
}

.about-block .about-note img {
  margin-bottom: 33px;
}

@media screen and (max-width: 576px) {
  .about-block .about-note img {
    max-width: 250px;
    display: block;
    margin: 0 auto 26px;
  }
}

.feature-block {
  max-width: 865px;
  margin: 0 auto 97px;
  line-height: 1.86;
  font-size: 15px;
  font-size: 1.5rem;
}
.feature-block2 {
  max-width: 865px;
  margin: 0 auto 97px;
  line-height: 1.86;
  font-size: 15px;
  font-size: 1.5rem;
}


@media screen and (max-width: 768px) {
  .feature-block {
    font-size: 13px;
    font-size: 1.3rem;
    line-height: 1.99;
    margin-bottom: 50px;
  }
	 .feature-block2 {
    font-size: 13px;
    font-size: 1.3rem;
    line-height: 1.99;
    margin-bottom: 50px;
  }
}

@media screen and (max-width: 330px) {
  .feature-block {
    font-size: 12px;
    font-size: 1.2rem;
    line-height: 1.6;
  }
	 .feature-block2 {
    font-size: 12px;
    font-size: 1.2rem;
    line-height: 1.6;
  }
}

.feature-block img {
  width: 100%;
}

@media screen and (max-width: 576px) {
  .feature-block img {
    max-width: 165px;
    margin: 0 auto;
    display: block;
  }
	 .feature-block img.portal-img {
    max-width: 300px;
    margin: 0 auto;
    display: block;
  }
}

.feature-block .row {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 55px;
}
.feature-block2 .row {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 55px;
}

@media screen and (max-width: 768px) {
  .feature-block .row {
    margin-bottom: 60px;
  }
  .feature-block .row .col-sm-8 {
    display: block;
    overflow: hidden;
  }
  .feature-block .row .col-sm-8 img {
    float: left;
    margin-left: 6px;
    margin-right: 17px;
  }
	.feature-block2 .row .col-sm-8 img {
    display:block;
	margin:10px auto;
	width:100%;
	max-width:600px;
  }
}

@media screen and (max-width: 330px) {
  .feature-block .row .col-sm-8 img {
    width: 130px;
    margin: 0 0 10px 10px;
  }
}

.feature-block .row:last-child {
  margin-bottom: 0;
}

@media screen and (min-width: 577px) {
  .feature-block .row:nth-child(even) .col-sm-8 {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .feature-block .row:nth-child(even) .col-sm-4 {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}

.feature-block p {
  margin-bottom: 30px;
}

@media screen and (max-width: 768px) {
  .feature-block p {
    margin-bottom: 25px;
  }
}

.feature-block p:last-child {
  margin-bottom: 0;
}

.feature-block-list {
  max-width: 817px;
  margin: 0 auto 119px;
  line-height: 1.86;
  font-size: 15px;
  font-size: 1.5rem;
}

@media screen and (max-width: 768px) {
  .feature-block-list {
    font-size: 13px;
    font-size: 1.3rem;
    line-height: 1.92;
    margin-bottom: 60px;
  }
}

.feature-block-list .row {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 40px;
}

.feature-block-list .row .col-12 {
  display: block;
  overflow: hidden;
}

@media screen and (max-width: 768px) {
  .feature-block-list .row .col-12 img {
    max-width: 165px;
    float: right;
    margin-left: 15px;
  }
}

.feature-block-list p {
  margin-bottom: 30px;
}

.feature-block-list p:last-child {
  margin-bottom: 0;
}

.firstly-block {
  max-width: 1000px;
  margin: 0 auto;
  font-size: 15px;
  font-size: 1.5rem;
  line-height: 2;
background: #fff;
	-webkit-box-shadow: -10px 0 30px rgba(0,0,0,.1);
    box-shadow: -10px 0 30px rgba(0,0,0,.1);
    padding: 50px 30px;	
}

@media screen and (max-width: 768px) {
  .firstly-block {
    line-height: 1.92;
    font-size: 13px;
    font-size: 1.3rem;
  }
}

@media screen and (max-width: 330px) {
  .firstly-block {
    font-size: 12px;
    font-size: 1.2rem;
    line-height: 1.6;
  }
}



.firstly-block .row {
  margin-bottom: 55px;
}

@media screen and (max-width: 768px) {
  .firstly-block .row {
    margin-bottom: 37px;
  }
}

.firstly-block .row:last-child {
  margin-bottom: 0;
}

@media screen and (max-width: 768px) {
  .firstly-block .row .col-sm-7 {
    overflow: hidden;
    padding: 0 20px;
  }
  .firstly-block .row .col-sm-7 img {
    float: left;
    width: 167px;
    margin-top: 6px;
	margin-right:15px; 
  }
 
}

@media screen and (max-width: 330px) {
  .firstly-block .row .col-sm-7 img {
    width: 130px;
  }
 
}

@media screen and (min-width: 577px) {
  .firstly-block .row:nth-child(odd) .col-sm-5 {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}

@media screen and (max-width: 768px) {
  .firstly-block .row:nth-child(odd) .col-sm-7 img {
    float: right;
    width: 177px;
	 margin-left:15px; 
  }
  .firstly-block .row:nth-child(odd) .col-sm-7 p {
    padding: 0 12px 0 0;
  }
}

@media screen and (max-width: 330px) {
  .firstly-block .row:nth-child(odd) .col-sm-7 img {
    width: 130px;
  }
  .firstly-block .row:nth-child(odd) .col-sm-7 p {
    width: calc(100% - 130px);
  }
}

.staff-block-heading {
  display: block;
  text-align: center;
  font-size: 30px;
  font-size: 3rem;
  font-weight: bold;
  color: #f85d39;
  position: relative;
  padding-bottom: 90px;
  margin-bottom: 88px;
}

  .staff-block-heading {
    background-color: #1e4969;
    color: #fff!important;
    margin: 0 0 50px 0;
    padding: 30px 0;
    font-size: 27.5px;
    font-size: 2.75rem;
  }

@media screen and (max-width: 768px) {
  .staff-block-heading {
    font-size: 27.5px;
    font-size: 2.75rem;
  }
}


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

}



@media screen and (max-width: 768px) {
  .staff-block-heading.color-blue {
    color: white !important;
  }
}

.staff-item {
  display: block;
  max-width: 700px;
  margin: 0 auto 60px;
  font-size: 15px;
  font-size: 1.5rem;
}

.staff-item p.p-text{
 font-size:1.3rem;
    line-height:2rem;
}

@media screen and (max-width: 768px) {
  .staff-item {
    font-size: 13px;
    font-size: 1.3rem;
    line-height: 1.92;
    margin-bottom: 40px;
  }
}

@media screen and (max-width: 330px) {
  .staff-item {
    font-size: 12px;
    font-size: 1.2rem;
    line-height: 1.6;
  }
}

.staff-item .staff-item-heading {
  display: block;
  color: #f85d39;
  font-size: 1.2rem;
    text-align:left;
  font-weight: bold;
  margin-bottom: 5px;
  line-height: 2.2;
}

@media screen and (max-width: 768px) {
  .staff-item .staff-item-heading {
  font-size: 1.2rem;
    margin-bottom: 4px;
    line-height: 1.92;
  }
}

.staff-item .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

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

.staff-item .item .img {
  width: 20%;
}

@media screen and (max-width: 380px) {
  .staff-item .item .img {
    width: 23%;
  }
}

.staff-item .item .txt {
  width: 75%;
  padding: 32px 0 0 11px;
  line-height: 1.67;
}

@media screen and (max-width: 768px) {
  .staff-item .item .txt {
    width: 75%;
    padding: 0 15px 0 23px;
    position: relative;
    top: -10px;
    line-height: 1.92;
  }
}

@media screen and (max-width: 380px) {
  .staff-item .item .txt {
    width: 77%;
    padding: 0 0 0 15px;
  }
}

@media screen and (max-width: 768px) {
  .staff-item .item.mbpc-18 .img {
    padding: 0 8px;
  }
}

.staff-item img {
  display: block;
  margin: 0 auto;
}

.staff-list {
  margin: 0 auto;
  max-width: 836px;
}

@media screen and (max-width: 576px) {
  .staff-list {
    padding: 0 10px;
  }
}

@media screen and (max-width: 330px) {
  .staff-list {
    padding: 0;
  }
}

.lesson-block {
  margin: 0 auto 76px;
  font-size: 15px;
  font-size: 1.5rem;
  line-height: 1.73;
}

@media screen and (max-width: 768px) {
  .lesson-block {
    font-size: 13px;
    font-size: 1.3rem;
    line-height: 1.5;
    margin-bottom: 27px;
  }

  .page-pilates-01 .lesson-block-list .item .step-list-arrow {
    padding-top: 30px;
  }
}

.lesson-block .step-list {
	font-weight: bold;
  font-size: 20px;
  font-size: 1.5rem;
  text-align: center;
  color: #0d0d0d;
  background: #f8d239;
  width: 377px;
  border-radius: 40px;
  letter-spacing: 1px;
  margin: 0 auto 37px;
  height: 44px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media screen and (max-width: 768px) {
  .lesson-block .step-list {
    font-size: 15px;
    font-size: 1.5rem;
    height: 38px;
    width: 280px;
    margin-bottom: 30px;
    letter-spacing: 0;
	  font-size:1.2rem;
  }
}

.lesson-block p {
  padding: 0 70px 0 46px;
  margin-bottom: 27px;
  letter-spacing: 1px;
}

@media screen and (max-width: 768px) {
  .lesson-block p {
    padding: 0;
    margin-bottom: 20px;
  }
}

.lesson-block p:last-child {
  margin-bottom: 0;
}

.lesson-block-list .item {
  margin-bottom: 64px;
}

@media screen and (max-width: 768px) {
  .lesson-block-list .item {
    margin-bottom: 50px;
  }
}

.lesson-block-list .item .block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.lesson-block-list .item:last-child {
  margin-bottom: 0;
}

.lesson-block-list .item .img {
  width: 24%;
  text-align: right;
}

.page-pilates-01 .lesson-block-list .item .step-list-arrow img {
  width: 43px;
}

@media screen and (max-width: 768px) {
  .lesson-block-list .item .img {
    width: 36.5%;
    padding-top: 8px;
  }
}

.lesson-block-list .item .txt {
  width: 76%;
  padding-left: 32px;
}

@media screen and (max-width: 768px) {
  .lesson-block-list .item .txt {
    width: 63.5%;
    padding-left: 15px;
  }
}

.lesson-bringings {
  display: flex;
  padding: 20px;
  margin-top: 30px;
}

.lesson-bringings dt {
  width: 30%;
  align-self: center;
}

.lesson-bringings dd {
  background-color: white;
  padding: 20px;
  width: 70%;
  font-weight: bold;
}

.movement-block {
  max-width: 822px;
  margin: 0 auto;
}

.movement-block .movement-img {
  margin-bottom: 40px;
}

@media screen and (max-width: 768px) {
  .movement-block .movement-img {
    margin-bottom: 25px;
  }
}

.movement-block .movement-txt {
  font-size: 15px;
  font-size: 1.5rem;
  color: #070707;
  line-height: 1.73;
  margin-bottom: 50px;
}

@media screen and (max-width: 768px) {
  .movement-block .movement-txt {
    font-size: 13px;
    font-size: 1.3rem;
    line-height: 2.42;
    margin-bottom: 30px;
  }
}

.movement-list {
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1.94;
}

@media screen and (max-width: 768px) {
  .movement-list {
    line-height: 1.57;
    font-size: 13px;
    font-size: 1.3rem;
    margin: 0 -7px;
  }
}

.movement-list .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 0 27px;
}

@media screen and (max-width: 576px) {
  .movement-list .item {
    margin-bottom: 5px;
  }
}

.movement-list .item:last-child {
  margin-bottom: 0;
}

.movement-list .item .img {
  width: 21%;
  padding-left: 10px;
}

@media screen and (max-width: 576px) {
  .movement-list .item .img {
    padding: 0;
    width: 32%;
  }
}

.movement-list .item .txt {
  width: 79%;
  padding-left: 24px;
}

@media screen and (max-width: 576px) {
  .movement-list .item .txt {
    width: 68%;
    padding: 0 7px 0 7px;
  }
}

.instructor-block {
  font-size: 15px;
  font-size: 1.5rem;
  line-height: 2;
  max-width: 800px;
  margin: 0 auto;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.instructor-block .instructor-heading {
  display: block;
  font-size: 24px;
  font-size: 2.4rem;
  font-weight: bold;
  margin-bottom: 13px;
}

@media screen and (max-width: 768px) {
  .instructor-block .instructor-heading {
    margin-bottom: 16px;
    font-size: 17.5px;
    font-size: 1.75rem;
  }
}

@media screen and (max-width: 768px) {
  .instructor-block {
    font-size: 13px;
    font-size: 1.3rem;
    line-height: 1.92;
  }
}

@media screen and (max-width: 330px) {
  .instructor-block {
    font-size: 12px;
    font-size: 1.2rem;
    line-height: 1.6;
  }
}

@media screen and (max-width: 576px) {
  .instructor-block .row .col-sm-8 {
    overflow: hidden;
  }
  .instructor-block .row .col-sm-8 img {
    float: left;
    width: 176px;
  }
  .instructor-block .row .col-sm-8 p {
    float: right;
    width: calc(100% - 176px);
    padding-left: 15px;
    text-align: justify;
  }
}

@media screen and (max-width: 330px) {
  .instructor-block .row .col-sm-8 img {
    width: 130px;
  }
  .instructor-block .row .col-sm-8 p {
    width: calc(100% - 130px);
    padding-left: 10px;
  }
}

.instructor-lesson {
  margin: 90px 0 70px;
}

@media screen and (max-width: 768px) {
  .instructor-lesson {
    margin: 27px 0 30px;
  }
}

.instructor-lesson .ttl {
  display: block;
  font-size: 24px;
  font-size: 2.4rem;
  font-weight: bold;
  margin-bottom: 33px;
}

@media screen and (max-width: 768px) {
  .instructor-lesson .ttl {
    font-size: 17.5px;
    font-size: 1.75rem;
    margin-bottom: 11px;
    line-height: 1.4;
    text-align: left !important;
  }
}

@media screen and (min-width: 769px) {
  .instructor-lesson .row {
    margin: 0 0 25px 0;
    padding: 0 27px;
  }
  .instructor-lesson .row div {
    padding: 0 10px;
  }
}

@media screen and (max-width: 768px) {
  .instructor-lesson .row {
    margin: 0 -7px;
  }
  .instructor-lesson .row div {
    padding: 0 7px 15px;
  }
  .instructor-lesson .row img {
    margin-bottom: 10px;
  }
  .instructor-lesson .row img:last-child {
    margin-bottom: 0;
  }
}

.instructor-lesson .instructor-lesson-sp {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.instructor-lesson .instructor-lesson-sp .img {
  width: 176px;
}

.instructor-lesson .instructor-lesson-sp .img img {
  margin-bottom: 10px;
}

.instructor-lesson .instructor-lesson-sp .img img:last-child {
  margin-bottom: 0;
}

@media screen and (max-width: 330px) {
  .instructor-lesson .instructor-lesson-sp .img {
    width: 130px;
  }
}

.instructor-lesson .instructor-lesson-sp .txt {
  width: calc(100% - 176px);
  padding-left: 15px;
}

@media screen and (max-width: 330px) {
  .instructor-lesson .instructor-lesson-sp .txt {
    width: calc(100% - 130px);
    padding-left: 10px;
  }
}

.instructor-lesson .instructor-lesson-sp .txt p {
  margin-bottom: 26px;
}

@media screen and (max-width: 330px) {
  .instructor-lesson .instructor-lesson-sp .txt p {
    margin-bottom: 10px;
  }
}

.instructor-lesson .instructor-lesson-sp .txt p:last-child {
  margin-bottom: 0;
}

.instructor-lesson p {
  font-size: 15px;
  font-size: 1.5rem;
  line-height: 2.2;
}

@media screen and (max-width: 768px) {
  .instructor-lesson p {
    font-size: 13px;
    font-size: 1.3rem;
    line-height: 1.92;
  }
}

.studio-block {
  max-width: 830px;
  margin: 0 auto;
}

.studio-heading {
	color:#333;
  display: block;
  position: relative;
  font-size: 30px;
  font-size: 3rem;
  font-weight: bold;
  text-align: center;
  padding-bottom: 33px;
  margin-bottom: 11px;
}

@media screen and (max-width: 768px) {
  .studio-heading {
    font-size: 22px;
    font-size: 2.2rem;
    padding-bottom: 28px;
    margin-bottom: 33px;
  }
}



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

}

.studio-list .item .studio-list-ttl {
  display: block;
  padding: 35px 0;
  border-bottom: 1px solid #b2b2b2;
  cursor: pointer;
}

@media screen and (max-width: 576px) {
  .studio-list .item .studio-list-ttl {
    padding: 16px 0;
  }
}

.studio-list .item .studio-list-ttl span {
  position: relative;
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: bold;
  color: #585656;
  padding-right: 20px;
  letter-spacing: 3px;
  display: inline-block;
  font-family: sans-serif;
}

@media screen and (max-width: 576px) {
  .studio-list .item .studio-list-ttl span {
    font-size: 15px;
    font-size: 1.5rem;
    padding-right: 30px;
    min-width: 76px;
  }
}

.studio-list .item .studio-list-ttl span:after {
 font-family: 'FontAwesome';
    content: '\f078';
    padding-left: 5px;
    font-size: 100%;
  position: absolute;
  right: -30px;
  top: 0;
  -webkit-backface-visibility: hidden;
  -webkit-transition: all .3s ease;
  -o-transition: all .3s ease;
  transition: all .3s ease;
}

@media screen and (max-width: 576px) {
	/*--
  .studio-list .item .studio-list-ttl span:after {
    width: 11px;
    height: 8px;
  }--*/
}

.studio-list .item .studio-list-ttl.active {
  border-bottom: none;
}

.studio-list .item .studio-list-ttl.active span:after {
	transform-origin: center;
  -webkit-transform: rotate(-180deg);
      -ms-transform: rotate(-180deg);
          transform: rotate(-180deg);
	  -webkit-backface-visibility: hidden;
  -webkit-transition: all .3s ease;
  -o-transition: all .3s ease;
  transition: all .3s ease;
}

.studio-list .item .studio-show {
  display: none;
}

.studio-list .item .studio-show li {
  margin-bottom: 15px;
}

@media screen and (max-width: 768px) {
  .studio-list .item .studio-show li {
    margin-bottom: 10px;
  }
}

.studio-list .item .studio-show li:last-child {
  margin-bottom: 0;
}

.studio-list .item .studio-show li .studio-show-ttl {
  display: block;
  background: #e6f6ff;
  padding: 17px 0;
  letter-spacing: 2px;
  cursor: pointer;
}

@media screen and (max-width: 576px) {
  .studio-list .item .studio-show li .studio-show-ttl {
    padding: 8px 0;
  }
}

.studio-list .item .studio-show li .studio-show-ttl span {
  position: relative;
  font-size: 15px;
  font-size: 1.5rem;
  font-weight: bold;
  color: #585656;
  padding: 0 20px;
  font-family: sans-serif;
}

@media screen and (max-width: 576px) {
  .studio-list .item .studio-show li .studio-show-ttl span {
    font-size: 1.2rem;
  }
}

.studio-list .item .studio-show li .studio-show-ttl span:after {
 font-family: 'FontAwesome';
    content: '\f078';
    padding-left: 5px;
    font-size: 100%;
  position: absolute;
  right: -20px;
  top: 0;
  -webkit-backface-visibility: hidden;
  -webkit-transition: all .3s ease;
  -o-transition: all .3s ease;
  transition: all .3s ease;
}

.studio-list .item .studio-show li .studio-show-ttl.active span:after {
	transform-origin: center;
  -webkit-transform: rotate(-180deg);
      -ms-transform: rotate(-180deg);
          transform: rotate(-180deg);
}

.studio-list .item .studio-show li .studio-show-item {
  display: none;
}

.studio-list .item .studio-show li .studio-show-item .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 20px;
  border-bottom: 1px solid #b2b2b2;
}

@media screen and (max-width: 576px) {
  .studio-list .item .studio-show li .studio-show-item .item {
    padding: 10px 0;
  }
}

.studio-list .item .studio-show li .studio-show-item .item:last-child {
  border-bottom: none;
}

.studio-list .item .studio-show li .studio-show-item--left {
  width: 65%;
  line-height: 20px;
  font-size: 13px;
  letter-spacing: 1px;
  color: #585656;
  font-family: sans-serif;
  padding-right: 5px;
}

@media screen and (max-width: 576px) {
  .studio-list .item .studio-show li .studio-show-item--left {
    line-height: 20px;
  }
}

.studio-list .item .studio-show li .studio-show-item--left strong {
  display: block;
  color: #585656;
  font-weight: 600;
  font-size: 15px;
}

.studio-list .item .studio-show li .studio-show-item--right {
  width: 35%;
}

.studio-list .item .studio-show li .studio-show-item--right .btn {
  margin-right: 18px;
  border-radius: 0;
  font-family: sans-serif;
  background: #f17019;
  display: block;
  padding: 15px 20px;
  border-radius: 30px;
}

@media screen and (max-width: 576px) {
  .studio-list .item .studio-show li .studio-show-item--right .btn {
    margin-right: 13px;
    padding: 8px 13px;
    font-size: 12.5px;
    font-size: 1.25rem;
  }
}

.studio-list .item .studio-show li .studio-show-item--right .btn:last-child {
  margin-right: 0;
}

.sec-about {
  padding: 141px 0;
}

@media screen and (max-width: 768px) {
  .sec-about {
    padding: 75px 0 45px;
  }
}

.sec-feature {
  margin-top: -36px;
  padding: 240px 0 146px;
  background: url("/lp/../img/pilateslp/bff.png") no-repeat;
  background-size: 100%;
}

@media screen and (max-width: 576px) {
  .sec-feature {
    margin-top: 0;
    padding: 100px 0 30px;
  }
}

.sec-feature .inner {
  position: relative;
  z-index: 1;
}

.sec-firstly {
  padding: 0;
}

.sec-staff {
  padding: 115px 0 168px;
}

@media screen and (max-width: 768px) {
  .sec-staff {
    padding: 0 0 73px;
  }
}

.sec-lesson {
  padding: 128px 0 60px;
}

@media screen and (max-width: 768px) {
  .sec-lesson {
    padding: 110px 0 25px;
  }

}

.sec-lesson .heading-block-02 {
  margin-bottom: 62px;
}

.sec-lesson .heading-block-02 span {
  border-bottom: none;
  padding-bottom: 17px;
}





.sec-movement {
  padding: 66px 0 104px;
}

@media screen and (min-width: 769px) {
  .sec-movement .heading-note {
    padding-bottom: 44px;
    margin-bottom: 50px;
  }
}

@media screen and (max-width: 768px) {
  .sec-movement {
    padding: 50px 0;
  }
  .sec-movement .heading-note {
    margin-bottom: 45px;
  }
}

.sec-feature-output {
  background: #ff5a4d;
  padding: 88px 0 0;
}

@media screen and (max-width: 768px) {
  .sec-feature-output {
    padding: 30px 0 0;
  }
}

.sec-feature-output .feature-heading {
  display: block;
  text-align: center;
  font-size: 41px;
  font-size: 4.1rem;
  font-weight: bold;
  color: white;
}

.sec-feature-output .heading {
  margin-bottom: 111px;
}

@media screen and (max-width: 768px) {
  .sec-feature-output .heading {
    margin-bottom: 80px;
  }
}

.sec-studio {
  padding: 115px 0 70px;
}

@media screen and (max-width: 768px) {
  .sec-studio {
    padding: 50px 0;
  }
}

@media screen and (min-width: 769px) {
  .page-pilates-01 .sec-about {
    padding: 100px 0 0;
  }
}

.page-pilates-01 .sec-feature {
  background: url("/lp/img/pilateslp/bff.png") no-repeat;
  background-size: 100%;
}

@media screen and (min-width: 769px) {
  .page-pilates-01 .sec-feature {
    margin-top: -50px;
    padding: 296px 0 30px;
  }
}

@media screen and (max-width: 768px) {
  .page-pilates-01 .sec-feature {
    background: white url("/lp/img/pilateslp/bf-spf.png") no-repeat;
    background-size: 100%;
  }
}

.page-pilates-01 .sec-firstly {
  padding: 30px 0 187px;
}

@media screen and (max-width: 768px) {
  .page-pilates-01 .sec-firstly {
    padding: 17px 0 80px;
  }
}



.page-pilates-01 .sec-firstly .heading-block-02 {
	color:#5a95a7;
	font-size:4rem;
  position: relative;
}


.page-pilates-01 .sec-firstly .heading-block-02 span {
  position: relative;
  border-bottom: none;
  z-index: 1;
}

.page-pilates-01 .sec-staff {
  padding: 0 0 67px;
}

@media screen and (max-width: 768px) {
  .page-pilates-01 .sec-staff {
    padding: 0 0 72px;
  }
	
.firstly-block {
    padding: 30px 20px;
	}
	
	.page-pilates-01 .sec-firstly .heading-block-02{
	color: #5a95a7;
    font-size: 3rem;
	letter-spacing: 0;
    margin-bottom: 40px;
    position: relative;
	}
}

	

.page-pilates-01 .sec-lesson {
  padding: 0;
}

@media screen and (max-width: 768px) {
  .page-pilates-01 .sec-lesson {
    padding: 0;
  }
}


.page-pilates-01 .sec-lesson .heading-block-02 {
    background-color: #006eb0;
    padding: 25px 10px 20px 10px;
    color: #fff!important;
    letter-spacing: 0;
    font-size: 3rem;
	margin-top:-50px;
}


@media screen and (max-width: 768px) {
  .page-pilates-01 .sec-lesson .heading-block-02 {
    font-size: 22px;
    font-size: 2.2rem;
    margin-left: 6px;
    letter-spacing: 0.5px;
  }
}

.page-pilates-01 .sec-lesson .heading-block-02 span {
  position: relative;
  z-index: 1;
}

.page-pilates-01 .sec-lesson .heading-block-02 span:after {
  display: none;
}

.page-pilates-01 .sec-feature-output {
  background: #f5f2e9;
  padding: 50px 0 0;
}

@media screen and (max-width: 768px) {
  .page-pilates-01 .sec-feature-output {
    background: #f5f2e9;
    padding: 25px 0 0;
  }
}

.page-pilates-01 .sec-studio {
  padding: 0 0 70px;
  margin-top: -9px;
}

.page-pilates-01 .sec-faq {
  padding: 40px 0;
  margin-bottom: 40px;
}

.page-pilates-01 .sec-faq .card-header {
  background-color: #fff;
  padding: 20px;
}

.page-pilates-01 .sec-faq h3 {
  font-family: sans-serif;
  font-weight: 700;
}

.page-pilates-01 .sec-faq .card-body {
  font-family: sans-serif;
  padding: 20px;
  font-size: 1.1rem;
  line-height: 1.75;
}

@media screen and (max-width: 768px) {
  .page-pilates-01 .sec-studio {
    padding: 5px 0 38px;
    margin-top: 0;
  }

  .page-pilates-01 .sec-faq h3 {
    font-size: 1.2rem;
  }
}

@media screen and (min-width: 769px) {
  .page-pilates-01 .feature-block {
    margin-bottom: 115px;
  }
  .page-pilates-01 .staff-item {
    margin-bottom: 0;
  }
  .page-pilates-01 .staff-item .item {
    margin-bottom: 38px;
  }
  .page-pilates-01 .staff-item .item:last-child {
    margin-bottom: 0;
  }
  .page-pilates-01 .staff-item .item .txt {
    line-height: 2;
  }
  .page-pilates-01 .lesson-block {
    margin: 0 auto 60px;
  }
  .page-pilates-01 .lesson-block .step-list {
    margin: 0 auto 15px;
    width: 100%;
    font-size: 1rem;
  }
  .page-pilates-01 .lesson-block-list {
    display: flex;
    flex-wrap: wrap;
  }
  .page-pilates-01 .lesson-block-list .item {
    margin-bottom: 57px;
    width: 25%;
    margin: 0 4%;
    position: relative;
  }
  .page-pilates-01 .lesson-block-list .item:last-child {
    margin-bottom: 0;
  }
  .page-pilates-01 .lesson-block-list .item:nth-child(2) {
    margin-bottom: 22px;
  }
  .page-pilates-01 .lesson-block-list .item:nth-child(3) .step-list {
    margin-bottom: 15px;
  }
  .page-pilates-01 .lesson-block-list .item .img {
    width: 100%;
    position: unset !important;
    left: auto !important;
  }
  .page-pilates-01 .lesson-block-list .item .img img {
    width: 100%;
  }
  .page-pilates-01 .lesson-block-list .item .txt {
    width: 100%;
    padding-left: 0;
  }
  .page-pilates-01 .lesson-block-list .item .txt p {
    padding: 15px 0 0 0;
    margin-bottom: 0;
    font-size: 1rem;
  }
  .page-pilates-01 .lesson-block-list .item .step-list-arrow {
    position: absolute;
    top: 28%;
    right: -23%;
  }
  .page-pilates-01 .lesson-block-list .item .step-list-arrow img {
    width: 30px;
    transform: rotate(-90deg);
  }
  .page-pilates-01 .instructor-block {
    max-width: 825px;
  }
	.page-pilates-01 .thirdplace {
	  margin-top:-100px;
  }
	
  .page-pilates-01 .instructor-block .row {
    margin-bottom: 45px;
  }
  .page-pilates-01 .instructor-block .row .col-sm-4 {
    max-width: 36.5%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 36.5%;
            flex: 0 0 36.5%;
  }
  .page-pilates-01 .instructor-block .row .col-sm-8 {
    max-width: 63.5%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 63.5%;
            flex: 0 0 63.5%;
    padding: 39px 0 0 30px;
  }
  .page-pilates-01 .instructor-lesson {
    margin: 60px 0 70px;
  }
  .page-pilates-01 .instructor-lesson .row {
    padding: 0 38px;
    margin-bottom: 23px;
  }
}

@media screen and (max-width: 768px) {
	.page-pilates-01 .thirdplace {
	  margin-top:-50px;
  }
	
  .page-pilates-01 .instructor-block .row {
    margin-bottom: 30px;
  }
  .page-pilates-01 .lesson-block-list .item:nth-child(2) {
    margin-bottom: 37px;
  }
}

.page-pilates-01 .ttl-img {
  margin-bottom: 50px;
}

@media screen and (max-width: 768px) {
  .page-pilates-01 .ttl-img {
    margin-bottom: 60px;
  }

	
}

.page-pilates-01 .movement-list {
  color: #06466c;
}

/*# sourceMappingURL=maps/common/styles.css.map */

/*--head design --*/
.color-gold {color: #ab9967;}
.color-rose{color: #d93352;}

p.main-message span.big-p{font-size:5rem;}
span.p-reason { color: #9d9274;
    display: block;
    padding-top: 15px;
    max-width: 320px;
    margin: 0 auto;
    padding-bottom: 5px;
    background: linear-gradient(transparent 70%, #f7efd9 70%);}

p.main-message{ font-size: 5rem;
    line-height: 6rem;
	letter-spacing: 0px; border-bottom:dotted 2px #333;}
p.main-message span{font-weight:bold; font-size:8rem; color:#e12726;}
p.main-message2{ font-size: 3rem;
    line-height: 4rem;
    letter-spacing: 0px;}
.newbiep {font-size:8rem; font-weight:bold; color:#363c92;}
.newbiep span{font-size:12rem; line-height: 12rem; display:block;}
ul.ul-steps{font-size:3rem; margin:0 auto; max-width:600px; font-family: "Noto Sans JP", sans-serif;}
ul.ul-steps img{max-width:300px; width:100%;}
ul.ul-steps li{padding:0 15px 15px 15px;
    background-color: #fff;
    margin: 30px auto; position:relative;}
ul.ul-steps li::before{content: "\f00c";
	font-size:50px;
    font-family: 'FontAwesome';
    width: 50px;
    height: 20px;
    position: absolute;
    top: -2px;
    left: 30px;
    margin: auto;
color:#fff;}
ul.ul-steps li span.li-steps{font-size:4rem; font-weight: bold; letter-spacing: 0;  background-color: #e12726;
   color:#fff;     padding: 5px 0;}
ul.ul-steps li span.li-res{padding: 10px  0; font-size: 3rem; letter-spacing: 0;font-weight: bold; color:#333; line-height: 4.8rem;}
.step-color{color:#e12726;}

@media screen and (max-width: 768px) {
p.main-message{ font-size: 3rem;
    line-height: 4rem;
    letter-spacing: 0px;}
p.main-message span.big-p{font-size:3rem;}
span.p-reason { 
	max-width: 240px;}
	
}

.enquete-block{
	background: #fff;
	-webkit-box-shadow: -10px 0 30px rgba(0,0,0,.1);
    box-shadow: -10px 0 30px rgba(0,0,0,.1);
    padding:0 0 50px 0;
	max-width:600px;
	border-radius:10px;
	margin: 50px auto;
}

.enquete-block h4{
	background-color:#6894a5; 
	color:#fff;
	font-weight:bold;
	font-size:3rem;
	padding:20px 10px;
	letter-spacing: 0;
	margin-bottom:20px;
	
}
.riyu-list {
	padding:0;
    max-width:550px;
}
.riyu-list li{ font-size:1.5rem; font-weight:bold;
	padding:15px 20px 15px 70px;
	position:relative;
    background-color:#e8f6ff;
    margin:15px auto;
    border-radius: 30px;
}

.riyu-list li:before{
content:"";
background: url("../../../img/pilates/01/check-icon.png") center no-repeat;
    background-size: 100%;
	position:absolute;
	top:20px; 
	left:25px;
	margin:0 auto;
	width:30px; 
	height:30px;
}

.pilates-point {position:relative;}
.pilates-point div.pic-txt {
	vertical-align: middle;
	position: relative;
	display:inline-block;
	z-index:3; 
	width:400px; 
	background: #fff;
	-webkit-box-shadow: -10px 0 30px rgba(0,0,0,.1);
    box-shadow: -10px 0 30px rgba(0,0,0,.1);
    padding: 50px 30px;
}
.pilates-point .pic-img { z-index:1; max-width:600px; width:100%}

.pilates-point div.pic-txt h3{font-size:2rem; line-height: 3.5rem; font-weight:bold; letter-spacing: 0; color:#ab9967; text-transform: uppercase!important;}
.pilates-point div.pic-txt p{font-size:1.5rem; line-height: 2.5rem; text-align: left; }
.pilates-point .txt-1{margin-left:-100px;}
.pilates-point .txt-2{ margin-right:-100px;}

.pc-i{display:inline-block;}
.sp-i{display:none;}

.pilates-no1 p.main-message{ font-size: 2.5rem;
    line-height: 6rem;
    letter-spacing: 0px;}
.pilates-no1 p.main-message span.big-p{font-size:5rem;}

@media screen and (max-width: 1200px) {
	
.pc-i{display:none}
.sp-i{display:inline-block;}	
.pilates-point .txt-1 {
    position: absolute!important;
    bottom: 0;
    right: 0;
}
.pilates-point .txt-2 {
    position: absolute!important;
    bottom: 0;
    left: 0;
}
}

@media screen and (max-width: 768px) {
	
	.pilates-point div.pic-txt {
	width:100%;
    max-width:600px; 
    padding: 50px 30px;
}

.pilates-point .txt-1{margin-left:auto;}
.pilates-point .txt-2{ margin-right:auto;}
	
	.pilates-point .txt-1 {
    position: relative!important;
  margin-left:auto;
}
.pilates-point .txt-2 {
    position: relative!important;
   margin-right:auto;
}
	
	.enquete-block h4{
	font-size:2rem;
}

	
}



.head-catch{color:#fff; text-align:center; background-color:#0065a3; font-family:sans-serif; font-size:2rem; }

/*--キャンペーン--*/	
.cp-info{background-color:#fff;}


/*--効果--*/	
.sec-benef .nayami{
background:url("../../../img/yoga/01/nayami_bg.jpg") center no-repeat;
background-size:cover;
color:#fff!important;
padding-left:30px;
}
.sec-benef .nayami .nayami-list li{ font-size:1.6rem; line-height:2.6rem;}
.sec-benef .kaiketsu{position:relative;background-color: #eaeaea;}
.sec-benef .kaiketsu .yoga-benef{background-color:#2e6eac; color:#fff; font-size:2rem;}

.sec-benef .benef-list{
  margin: 0 auto;
  width: 100%;
  max-width: 700px;
  text-align: center;
  padding-top: 48px;
}
.sec-benef .benef-list li{
	background-color: #fff;
  color: #2e6eac;
  font-weight: 700;
  padding: 15px;
  margin: 10px;
  display: inline-block;
  text-align: left;
  width: 100%;
  font-size: 22px;
  border-radius: 30px;
  position: relative;
  padding-left: 70px;
}

.sec-benef .benef-list li span {
  display: block;
}

.sec-benef .benef-list li span::before {
  display: block;
  content: "";
  background: url(../../../img/yoga/01/icn-check.png) no-repeat center top;
  background-size: contain;
  width: 22px;
  height: 19px;
  position: absolute;
  top: 23px;
  left: 25px;
}

.benef-list-text {
  display: none;
    color:#555;
  font-size: 16px;
  padding-top: 15px;
}

.sec-ranking h2{font-size:1.6rem; line-height:2.6rem; text-align:center;}

/*--初心者でも安心--*/	
.sec-firstly {position:relative; }
.sec-firstly .firstly-block{margin-top: 200px;}
.sec-firstly .newbiebg{position:absolute; top:0; }
.sec-firstly img.newbie{ max-width:300px; margin-top:-100px;}
.sec-firstly .firstly-block h2{ color: #0371b5; font-size: 2rem;}
.sec-firstly .firstly-block h2 span.big-span{ font-size: 3rem; line-height:4rem;}
.sec-firstly .firstly-block h3.newbie-catch{font-size: 1.3rem; max-width:650px;}
  .firstly-block .row .col-sm-7 {
    overflow: hidden;
    padding-top:0!important;
  }
.firstly-block .firstly-item-heading {
  display: block;
  font-size: 20px;
  font-size: 1.6rem;
  color: #0065a3;
  font-weight: bold;
  margin-bottom: 6px;
	letter-spacing: 1px;
}
.firstly-block .row  p {
  
	font-size:1.2rem;
	line-height:1.8rem;
}

/*--pilates no1--*/	
.pilates-number01{ background-color:#fff;}
.pilates-number01 p.t-blue{ font-size:5rem; line-height:6rem; padding-left:30px;}
.pilates-number01 p.ranking-ttl{color:#9a7a35; font-size:1.5rem; line-height:4rem; font-weight:bold; padding-top:40px;}

/*--about-zp--*/
h1{font-weight:bold;}
.about-zp{background-color:#eaeaea;}
.about-zp .zen-yoga h2{font-size:2.5rem; font-family:serif;}
.about-zp .zen-yoga p{font-size:1.6rem; line-height:3rem;}

.about-zp p.studio-p{font-size:1.6rem;}
.about-zp .cont-blue {background-color:#0065a3; color:#fff; max-width: 800px;}
.about-zp .cont-blue h3{font-size:2rem;}
.about-zp .cont-blue p {font-size:1.3rem;}
.hot-span{color: #fff;
    padding: 5px;
    background-color: #f3763e;
    font-size: 1rem;
    border-radius: 20px;
    margin-left: 5px;
    font-family: sans-serif;
}
.norm-span{color: #fff;
    padding: 5px;
    background-color: #6eb26f;
    font-size: 1rem;
    border-radius: 20px;
    margin-left: 5px;
    font-family: sans-serif;
}


/*--お客様の声--*/
.sec-staff{background-color:#0065a3;}
.sec-staff .staff-block{background-color:#fff; max-width:700px;}
.sec-staff h3.enquete-title{font-size:3rem;}
.staff-block h4{font-size:2rem;}
.sec-staff ul.riyu-list{display: block; max-width: 550px;}
.sec-staff ul.riyu-list li{font-size:1.5rem;     border-radius: 30px;}
.sec-staff .staff-item .txt p{font-size:1.2rem; line-height:1.8rem; text-align:left;}
.sec-movement .movement-list p{font-size:1.5rem; line-height:2.5rem;}
.sec-movement .movement-list .item{margin:20px auto;}

.sec-studio{letter-spacing: 0!important;}

/*--events--*/
.yoga-event{background:url("../../../img/yoga/01/event_bg.jpg") center no-repeat;
background-size:cover;}
.yoga-event .inner-block{max-width:800px;background-color:#fff; border-radius:10px;
padding:30px 20px; margin-top:30px; margin-bottom:30px;}
.yoga-event p{font-size:1.6rem;}
.yoga-event p.past-events{font-size:2rem;}



@media screen and (max-width: 768px) {
	
.head-catch{color:#fff; text-align:center; background-color:#0065a3; font-family:sans-serif; font-size:1.5rem; }
	
h1{font-size:1.5rem; line-height:2.5rem; letter-spacing: 1px;}
	
/*--効果--*/	
.sec-benef .nayami{
background:url("../../../img/yoga/01/nayami_bg.jpg") top right no-repeat;
background-size:200%;
	background-color:#838383;
padding-left:0;
}	
.sec-benef .nayami .nayami-list li{ font-size:1.5rem; line-height:2.5rem;}	
	
.sec-benef .benef-list{
position:relative; margin-top:-15px; display:block; width:100%; max-width:700px; text-align: center;}
.sec-benef .benef-list li{
	margin: 5px auto;
  width: 95%;
}
	
.sec-ranking h2{font-size:1.5rem; line-height:2.6rem; text-align:left;}
	
/*--初心者でも安心--*/	
.sec-firstly {position:relative; }
.sec-firstly .firstly-block{margin-top: 125px;}
.sec-firstly .newbiebg{position:absolute; top:0; }
.sec-firstly img.newbie{ max-width:250px; margin-top:-100px;}
.sec-firstly .firstly-block h2{ color: #0371b5; font-size: 1.7rem;}
.sec-firstly .firstly-block h2 span.big-span{ font-size: 2.8rem; line-height:4rem;}
.sec-firstly .firstly-block h3.newbie-catch{font-size: 1.3rem;}
.firstly-block .firstly-item-heading {
    margin-bottom: 10px;
    font-size: 1.6rem;
  }
	

    /*--zen place pilates no1--*/	
.pilates-number01 p.t-blue{ font-size:2.8rem; line-height:3.5rem; padding-left:0; letter-spacing: 0;}
.pilates-number01 p.ranking-ttl{color:#9a7a35; font-size:1.5rem; line-height:2.5rem; font-weight:bold; padding-top:20px;}    
.pilates-number01 .zenplace-catch{font-size:1.6rem; }

    
/*--zen place pilates--*/	
.zenplacepilates{ background-color:#eaeaea;}
.zenplacepilates h2{ font-size:2rem; line-height:4rem; letter-spacing:0!important;}
.zenplacepilates h2 span{ font-size:3rem; line-height:4rem; }
.zenplacepilates p.p-ttl{font-size:1.4rem; font-weight:bold;}
.zenplacepilates p.p-ttl span{font-size:2rem;}
.zenplacepilates p.p-desc{font-size:1.2rem; line-height:1.6rem;}
.zenplacepilates .zenplace-catch{font-size:1.5rem; text-align:center;}
    
/*--about-zp--*/
.about-zp{background-color:#eaeaea;}
.about-zp p.studio-p{font-size:1.6rem;}
 .about-zp .zen-yoga h2{font-size:1.8rem}
.about-zp .zen-yoga p{font-size:1.3rem; line-height:2.5rem;}

.about-zp .cont-blue {background-color:#0065a3; color:#fff; }
.about-zp .cont-blue h3{font-size:2.5rem;}
.about-zp .cont-blue p {font-size:1.3rem;}
    
    
		
/*--お客様の声--*/	
.staff-block ul.riyu-list{padding:0;}	
.staff-block ul.riyu-list li {
    font-size: 1.3rem;
}	
.staff-block h4{font-size:1.8rem;}	
	
.sec-movement .movement-list p{font-size:1.2rem; line-height:1.8rem;}
.sec-movement .movement-list .item{margin:20px auto;}
.sec-movement .movement-txt{font-size:1.3rem; line-height:2rem;}	
.riyu-list li{font-size:1.3rem;}	
	
/*--events--*/
.yoga-event{background:none;
background-size:cover;}
.yoga-event .inner-block{padding:0; margin-top:0; margin-bottom:0;}
 
    
    
}


/*---modal popup---*/

#info-modal .close {
    font-size: 4rem;
    font-weight: 100;
}

#info-modal {font-size:1.5rem; letter-spacing: 0;}
#info-modal .modal-dialog {
    max-width: 800px;
}
#info-modal .modal-header{border:none;}

.modal-backdrop{position:fixed;top:0;left:0;z-index:1040;width:100vw;height:100vh;background-color:#fff;} .modal-backdrop.fade{opacity:0}
.modal-backdrop.show{opacity:0.8}
.modal-content{border:none;}
#info-modal h4{font-size: 2.5rem; line-height: 3.5rem; color:#007daf; letter-spacing: 0;}
#info-modal h4 span{font-size:4rem; line-height:5rem; }
#info-modal .modal-body h5{font-size:2.5rem; color: #6585a0;}
#info-modal p {text-align: left;
    max-width: 300px;
    margin: 0 auto;
    font-weight: bold;
    line-height: 3.5rem;
    font-size: 2rem;}




#taisakublock {max-width:400px; font-family:sans-serif!important;}
#taisakublock .card{border:none; font-family:sans-serif!important;}
#taisakublock .card p{font-family:sans-serif!important;}
#taisakublock .card span{font-family:'sans-serif'!important; display:block; font-size:18px; color:#0065a3; padding-bottom:5px;}
#taisakublock .card-header{text-align:center; border:none; background-color:#fff;}
#taisakublock .card-body{background-color:#F1F1F1;}
#taisakublock .card-body .row{background-color: #fff; padding: 10px 0; margin: 0px; border-radius:10px;}



.sec-head{position:relative;}

.carousel{z-index: 0;}

/*--cp-info--*/
div.cta-btn {margin-top: -50px;}
a.cta-btn{
    width:95%;
    background: linear-gradient(30deg, #f57c00 30%,#ff9930);
    color: #fff;
    max-width: 340px;
    padding: 20px;
    border-radius: 100px;
    box-shadow: 0 5px 9px rgb(0 0 0 / 20%);
    z-index: 5;   
    cursor:pointer!important;
    transition:.6s linear;
    font-size:18px;
}
a.cta-btn:hover{
    background: linear-gradient(30deg, #ff9931 30%,#ff9931);
    color: #fff;
    opacity:1;  
}

/*Btest*/
.cp-info-b{
  padding-top:0;
   margin-top:-20%;
    z-index:9;
}
.cp-info-b img{
    width:100%;
    max-width:600px;
    
}

.cp-info-b div.cta-btn{
 margin-top:10px;
}



.ctaLower{
    display:none;
    position:fixed;
    bottom:15px;
    width:100%;
    z-index: 9999;
}

.ctaLower a{
    display:block; 
}

.ctaLower a:hover, .ctaLower a:focus, .ctaLower a:active{
    opacity:1;
}


@media screen and (max-width: 768px) {
    
/*Btest*/
.cp-info-b{
  padding-top:0;
   margin-top:-80%;
    z-index:9;
}

.cp-info-b div.cta-btn{
 margin-top:10px;
}
    
    
.cp-info .cp-block{ 
max-width:300px; margin:15px auto 15px auto; 
    }
.cp-info::before{
    content: "";
    display: block;
    margin-top: -160px;
    border-top: 100px solid transparent;
    border-bottom: 0px solid transparent;
    border-right: 800px solid #006db0;
}
.cp-info{margin-top: -120px;}    
.carousel{margin-top:-110px;}   
    
.cp-block.cp-taiken{
    position:relative;
    margin:20px auto!important;
}
    
}


.taiken-block{
    background-color:#006fb0;
}
.taiken-block p.taiken-ttl{
    font-size:1.5rem;
}

