@charset "UTF-8";
/* CSS Document */
/* --------------- 共通 --------------- */

/* カラー設定 */
:root {
  --yl: #ffd800;
  --gd: #ab931f;
}

/* 見出し 43 SP */
.note-sub{
  text-align: center;
  font-size: 3.0rem;
  font-weight: bold;
  line-height: 1.5;
}

.note-sub::after{
  display: block;
  width: 20rem;
  margin: 0 auto;
  padding: 1rem 0 0 0;
  content: "";
  border-bottom: 0.3rem solid #ccc;
}

/* --------------- header --------------- */

header {
  padding: 2rem 0;
  background: #000;
  width: 100vw;
  height: 8.5rem;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
}
header h1 {
  position: fixed;
  top: 2rem;
  left: 1.5rem;
  z-index: 9999;
}
header h1 img {
  height: 4.5rem
}

/*------------- .gnavBtn -------------*/

/*   ボタンタグ設定   */
button.gnavBtn {
  display: block;
  background-color: transparent;
  border: none;
  padding: 0 1.5rem;
  cursor: pointer;
  position: fixed;
  top: 1.5rem;
  right: 1.5rem;
  z-index: 9999;
  outline: none;
  transition: 0.5s;
}

/*   ハンバーガーボタン3本線   */
button span.bar {
  display: block;
  width: 3.5rem;
  height: 0.2rem;
  background-color: var(--yl);
  margin: 1rem 0;
  transition: 0.3s;
  transform-origin: 0 0.1rem;
}

/*  メニューアクティブ時  */
button.active span.bar {
  width: 3.9rem;
} 
button.active .bar1 {
  transform: rotate(38deg);
}
button.active .bar2 {
  opacity: 0;
}
button.active .bar3 {
  transform: rotate(-38deg);
}

button.gnavBtn:hover {
  opacity: 0.6;
}

header nav.gNav.active ul {
  right: 0;
}


/*------------- .gnavBtn li -------------*/

header nav.gNav ul {
  background: #000;
  width: 100%;
  height: 100vh;
  padding: 12rem 1.5rem 0;
  position: fixed;
  top: 0;
  right: -100vw;
  transition: 0.5s;
  z-index: 999;
}

header nav.gNav li a {
  display: block;
  padding: 0 1.5rem;
  height: 50px;
  color: var(--yl);
  text-decoration: none;
  line-height: 50px;
  border-bottom: 1px #333 dotted;
  transition: 0.5s;
  position: relative;
}
header nav.gNav li a::after {
  content: "";
  display: block;
  width: 0.7rem;
  height: 0.7rem;
  border-top: 0.1rem var(--yl) solid;
  border-right: 0.1rem var(--yl) solid;
  position: absolute;
  top: 50%;
  right: 2rem;
  transform: translateY(-50%) rotate(135deg);
  transition: 0.5s;
}
header nav.gNav li a:hover {
  opacity: 0.6;
}
header nav.gNav li a:hover::after {
  transform: rotate(45deg);
}



/* --------------- main SP --------------- */

main {
  padding-top: 7rem;
}
.mainViz{
  text-align: center;
}



/* --------------- #reason --------------- */

#reason {
  padding: 5rem 0;
}
#reason .reason-title {
  text-align: center;
}
#reason h2 {
  display: inline-block;
  text-align: center;
  font-size: 2.4rem;
  font-weight: bold;
  color: #000;
  text-shadow:0 0 3px #fff,0 0 3px #fff,0 0 3px #fff,0 0 3px #fff,
    0 0 3px #fff,0 0 3px #fff,0 0 3px #fff,0 0 3px #fff,
    0 0 3px #fff,0 0 3px #fff,0 0 3px #fff,0 0 3px #fff,
    0 0 3px #fff,0 0 3px #fff,0 0 3px #fff,0 0 3px #fff;
  padding-bottom: 3rem;
  position: relative
}
#reason h2 img {
  width: 18.5rem;
}
#reason h2 > span {
  display: block;
}
#reason h2 > span > span {
  font-size: 2.1rem;
  padding-right: 0.5rem;
}
#reason h2::before,
#reason h2::after {
  content: "";
  display: block;
  width: 0.5rem;
  height: 7rem;
  background: var(--gd);
  position: absolute;
  top: 1rem;
  left: -3rem;
  transform: rotate(-15deg);
}
#reason h2::after {
  left: calc(100% + 2.5rem);
  transform: rotate(15deg);
}

#reason .list-pc {
  display: none;
}
#reason li {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: url("../img/icon_check.svg") no-repeat left 3rem;
  background-size: 2rem;
  font-size: 2rem;
  padding: 2rem 0.5rem;
  border-bottom: 0.2rem #bbb dashed;
  position: relative;
}
#reason li > span {
  padding-left: 3rem;
  text-shadow:0 0 3px #fff,0 0 3px #fff,0 0 3px #fff,0 0 3px #fff,
    0 0 3px #fff,0 0 3px #fff,0 0 3px #fff,0 0 3px #fff,
    0 0 3px #fff,0 0 3px #fff,0 0 3px #fff,0 0 3px #fff,
    0 0 3px #fff,0 0 3px #fff,0 0 3px #fff,0 0 3px #fff;
}
#reason li strong {
  display: inline-block;
  background: var(--yl);
  font-size: 2rem;
  text-shadow: none;
  padding: 0 3rem;
  line-height: 1.5;
}
#reason li:nth-child(1) strong,
#reason li:nth-child(2) strong {
  font-size: 1.8rem;
}
#reason li:nth-child(1) strong span,
#reason li:nth-child(2) strong span {
  font-size: 2.4rem;
}
#reason li:nth-child(5) {
  flex-wrap: wrap;
}
#reason li:nth-child(5) strong {
  padding: 0 1rem;
  margin-left: 0.5rem;
}
#reason li:nth-child(5) span.time {
  font-size: 1.4rem;
}

.everytime {
  padding-top: 2rem;
  text-align: center;
}
.everytime-txt {
  background: #000 url("../img/icon_clock24.svg") no-repeat -1.8rem -0.5rem;
  background-size: 33%;
  font-size: 2.1rem;
  font-weight: bold;
  font-style: oblique;
  color: var(--yl);
  text-align: left;
  line-height: 1.5;
  padding: 2rem 0 1.5rem 30%;
}
.everytime-txt span {
  font-size: 2.4rem;
  padding: 0 0.5rem;
}



/* --------------- #price --------------- */

#price {
  padding: 50px 0 0;
  background: #f5f5f5;
}
#price section h2 {
  padding: 2rem 0 3rem;
  text-align: center;
  font-size: 2.1rem;
  font-weight: bold;
}
#price section h2 img {
  width: 18.5rem;
}
#price section h2 span {
  display: block;
}

.price-list{
  padding: 0 1.5rem 3rem;
}
.price-list dl{
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 0 5px;
  background: #fff;
}

/* 費用 */
.price-list dl.price-ff7 dt{
  font-weight: bold;
  color: #333;
  background: #ffd200;
}
.price-list dl.price-ff7 dd{
  font-weight: bold;

}
.price-list dl dt,
.price-list dl dd{
  width:100%;
  text-align: center;
}
.price-list dl dt{
  padding: 10px 0;
  font-size: 1.8rem;
  position: relative;
  background: #e2e2e2;
}
.price-list dl dt span.price-ttl{
  display: block;
  font-size: 1.6rem;
}
.price-list dl dt span.price-ttl2{
  display: block;
  padding: 0 5px;
  font-size: 1.6rem;
}
.price-list dl dt span.price-ttl3{
  display: block;
  font-size: 1.4rem;
  color: #f00;
}
.price-list dl dd{
  padding: 20px 0;
  font-size: 1.6rem;
  background: #fff;
}

/* 金額 */
.price-list dl dd span{
  padding: 0 5px 0 0;
  font-size: 2.1rem;
}

/* オプション */
.price-op{
  display: block;
  width: 110px;
  line-height: 1.6;
  text-align: center;
  border-radius: 10px;
  color: #000;  
  background: #ffd200;
  font-size: 1.2rem;
  position: absolute;
  top:36%;
  right: 5px;
}

/* リスト　SP */
.price-join-sp{
  display: flex;
  flex-direction: column;
}
.price-join-sp p,.price-join-sp-in{
  width: auto;
}
.price-join-sp p{
  margin: 0 0 3px;
  padding: 10px 0;
  text-align: center;
  font-size: 1.8rem;
  background: #e2e2e2;
}
.price-join-in{
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  background: transparent;
}
.price-join-in ol{
  display: flex;
  flex-direction: column;  
  width: 49.5%;
  background: #e2e2e2;
}
.price-join-in ol li{
  text-align: center;
}
.price-join-in ol li:first-child{
  padding: 10px 0;
  font-size: 1.8rem;
}
.price-join-in ol li:last-child{
  padding: 20px 0;
  background: #fff;
}
.price-join-in ol li:last-child span{
  padding: 0 5px 0 0;
  font-size: 2.1rem; 
}

/* リスト PC用非表示 */
.price-join-pc{
  display: none;
}

.lineup {
  padding-top: 2rem;
  text-align: center;
  margin-bottom: 5rem;
}
.lineup-txt {
  display: flex;
  flex-direction: column;
  background: #000 url("../img/icon-lineup.png") no-repeat -0.8rem 55%;
  background-size: 20%;
  color: var(--yl);
  text-align: center;
  line-height: 1.2;
  padding: 2.5rem 0 1.5rem 5.5rem;
}
.lineup-txt > strong {
  font-size: 2.1rem;
}
.lineup-txt > strong > strong {
  font-size: 2.4rem;
  font-weight: bold;
  font-style: oblique;
  padding: 0 0.5rem;
}
.lineup-txt > span {
  color: #fff;
  font-size: 2.1rem;
}
.lineup-txt > span > strong {
  color: var(--yl);
}
.lineup-txt > span > strong > strong {
  font-size: 2.4rem;
  font-weight: bold;
  font-style: oblique;
  padding: 0 0.2rem;
}

.price-add {
  padding-bottom: 5rem;
}



/* --------------- .#machine --------------- */

#machine {
  background: #000;
  color: #fff;
}
#machine h2 {
  font-size: 2.4rem;
  font-weight: bold;
  text-align: center;
  line-height: 1;
  padding: 5rem 0 1.5rem;
}
#machine h2 img {
  width: 18.5rem;
}
#machine h2 span {
  display: block;
  padding-top: 1rem;
}

#machine figure {
  padding-bottom: 3rem;
}
#machine p.num {
  font-size: 1.6rem;
  font-weight: bold;
  color: #9c9c9c;
  text-align: right;
  line-height: 1;
  padding: 1rem 0 1.5rem;
  border-top: 1px #666 solid;
}
#machine h3 {
  font-size: 2.1rem;
  font-weight: bold;
  line-height: 1.3;
  padding: 0.2rem 0 0 8.5rem;
  position: relative;
}
#machine h3 span {
  display: block;
  font-size: 1.4rem;
  font-weight: normal;
  color: var(--yl);
}
#machine h3::before {
  content: "";
  display: block;
  width: 1px;
  height: 50px;
  background: #666;
  position: absolute;
  top: 0;
  left: 6.5rem;
}
.machine-txt {
  font-size: 1.4rem;
  padding: 5rem 0 3rem;
}
.machine-recommend p {
  font-size: 2.1rem;
  font-weight: bold;
  font-style: oblique;
  color: var(--yl);
  text-align: center;
}
.machine-recommend p span {
  display: inline-block;
  position: relative;
}
.machine-recommend p span::before,
.machine-recommend p span::after {
  content: "";
  display: block;
  width: 2px;
  height: 28px;
  background: var(--yl);
  position: absolute;
  top: 0.2rem;
  left: -1rem;
  transform: rotate(-20deg);
}
.machine-recommend p span::after {
  left: calc(100% + 0.5rem);
  transform: rotate(20deg);
}
.machine-recommend ul {
  padding: 1rem 0 1.5rem;
}
.machine-recommend li {
  background: var(--yl);
  font-size: 1.8rem;
  font-weight: bold;
  color: #000;
  line-height: 1;
  padding: 1rem 0 1rem 7rem; 
  border-radius: 1rem;
  margin-bottom: 1.5rem;
  position: relative;
}
.machine-recommend li::before {
  content: "";
  display: block;
  width: 4.8rem;
  height: 4.8rem;
  background: url("../img/icon_check-y.svg") no-repeat center center;
  position: absolute;
  bottom: 0;
  left: 0.2rem;
}
.machine-photo ul {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.machine-photo li {
  padding-bottom: 1rem;
  width: 49%;
}
.machine-photo li:first-child {
  width: 100%;
}

.aerobic-bg, .weight-bg {
  padding: 5rem 0;
}
.strength-bg {
  background: #222;
  padding: 5rem 0;
}

.aerobic h3 {
  background: url("../img/icon_aerobic.svg") no-repeat left center;
}
.strength h3 {
  background: url("../img/icon_strength.svg") no-repeat left center;
}
.weight h3 {
  background: url("../img/icon_weight.svg") no-repeat left center;
}



/* --------------- .other --------------- */

.other {
  background: url("../img/other-bg.png") no-repeat center top;
  background-size: cover;
  padding: 3rem 1.5rem;
}
.other .inner-block {
  background: url("../img/other-comment-sp.png") no-repeat center top;
  background-size: 360px;
  padding:21rem 0 0;
}
.other .inner-block li {
  background: #fff;
  padding: 1.5rem 1rem 1.5rem 8rem;
  margin-bottom: 1rem;
  position: relative;
}
.other .inner-block li:nth-child(2) span,
.other .inner-block li:nth-child(4) span {
  background: #ffd800;
  font-size: 1.4rem;
  color: #000;
  padding: 0 3px;
}
.other .inner-block li:nth-child(5) span {
  background: #fbe3e3;
  font-size: 1.4rem;
  color: #f00;
  padding: 0 3px;
}
.other .inner-block li:nth-child(6) span {
  background: none;
}
.other .inner-block li:nth-child(2),
.other .inner-block li:nth-child(4),
.other .inner-block li:nth-child(5) {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.other .inner-block li::before {
  content: "";
  display: block;
  background: #000;
  width: 7rem;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.other .inner-block li::after {
  content: "";
  display: block;
  width: 7rem;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.other .inner-block li:nth-child(1)::after {
  background: url("../img/other-icon01.png") no-repeat center center;
}
.other .inner-block li:nth-child(2)::after {
  background: url("../img/other-icon02.png") no-repeat center center;
}
.other .inner-block li:nth-child(3)::after {
  background: url("../img/other-icon03.png") no-repeat center center;
}
.other .inner-block li:nth-child(4)::after {
  background: url("../img/other-icon04.png") no-repeat center center;
}
.other .inner-block li:nth-child(5)::after {
  background: url("../img/other-icon05.png") no-repeat center center;
}
.other .inner-block li:nth-child(6)::after {
  background: url("../img/other-icon06.png") no-repeat center center;
}



/*------------------------------------
初めての方 SP
-------------------------------------*/
.first-wrap{
  padding: 0rem 1.5rem 5rem;
  background:none;
}

/* テキスト SP */
.first-ttl-block{
  max-width: 140rem;
  margin: 0 auto;
}
.first-ttl{
  max-width: auto;
  margin: 0;
  padding: 10rem 0 0;
  text-align: center;
  background: url(../img/first-icon.svg) no-repeat center top;
  background-size: 90px;
}
.first-catch-ttl{
  margin: 0 0 3.5rem;
  padding: 0 0 3.5rem;
  line-height: 1.6;
  font-size: 2.4rem;
  font-weight: bold;
  border-bottom: 5px solid #ffd800;
}
.first-catch-ttl span{
  padding: 0 4px;
  font-size: 4.2rem;
}

.first-text{
  font-size: 1.8rem;
  font-weight: bold;  
}
.first-text p:last-child{
  padding: 1rem 0;
  color: #c00;
}

/* 画像 SP */
.first-img{
  display: block;
  max-width: 68rem;
  margin: 0 auto;
  padding: 20px 0 0;
}


/*-------------------------------------------
店舗 SP
---------------------------------------------*/
.shop-list{
  padding: 5rem 1.5rem;
  background: #000;
  color: #f5f5f5;
}
.shop-list h2{
  padding: 0 0 5rem;
  text-align: center;
  font-size: 2.4rem;
  font-weight: bold; 
}
.shop-list h2 span{
  display: block;
  width: 18rem;
  margin: 0 auto;
  padding: 0 0 1rem;
}

/* アコーディオンメニュー SP
-----------------------  */
.s_02 .accordion_one .accordion_header {
  color: #fff;
  font-size: 1.8rem;
  padding: 2rem 0;
  text-align: center;
  position: relative;
  z-index: +1;
  cursor: pointer;
  transition-duration: 0.2s;
  border-top: 1px solid #777;
}
.s_02 .accordion_one .accordion_header:hover {
  opacity: .8;
}
.s_02 .accordion_one .accordion_header .i_box {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 50%;
  right: 5%;
  width: 40px;
  height: 40px;
 /* border: 1px solid #fff;*/
  margin-top: -20px;
  box-sizing: border-box;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transform-origin: center center;
  transition-duration: 0.2s;
}
.s_02 .accordion_one .accordion_header .i_box .one_i {
  display: block;
  width: 18px;
  height: 18px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transform-origin: center center;
  transition-duration: 0.2s;
  position: relative;
}
.s_02 .accordion_one .accordion_header.open .i_box {
  -webkit-transform: rotate(-360deg);
  transform: rotate(-360deg);
}
.s_02 .accordion_one .accordion_header .i_box .one_i:before, .s_02 .accordion_one .accordion_header .i_box .one_i:after {
  display: flex;
  content: '';
  background-color: #f5f5f5;
  border-radius: 10px;
  width: 18px;
  height: 4px;
  position: absolute;
  top: 7px;
  left: 0;
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
  transform-origin: center center;
}
.s_02 .accordion_one .accordion_header .i_box .one_i:before {
  width: 4px;
  height: 18px;
  top: 0;
  left: 7px;
}
.s_02 .accordion_one .accordion_header.open .i_box .one_i:before {
  content: none;
}
.s_02 .accordion_one .accordion_header.open .i_box .one_i:after {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

/* アコーディオンメニュー内 */
.s_02 .accordion_one .accordion_inner {
  display: none;
  padding: 3rem 1.5rem;
  color: #f5f5f5;
}


/* 店舗 切替 SP
-----------------------  */
.shop-list-sp{
  display: block;
  border-bottom: 1px solid #777;
  margin-bottom: 10rem;
}
.shop-list-pc{
  display: none;
}

/* 各店舗内容 SP
-----------------------  */
article.shop{
  display: flex;
  flex-direction: column;
  max-width: 42rem;
  margin: 0 auto; 
}

/* 店名 SNS　SP */
article.shop .shop-name{
  width: auto;
}
article.shop .shop-name > p{
  text-align: center;
}
article.shop .shop-name h4{
  padding: 2rem 0;
  font-size: 2.1rem;
}
article.shop .shop-name h4 span{
  padding: 0 2rem 0 0;
  color: var(--yl);
  font-size: 1.4rem;
}
article.shop .shop-name .shop-sns a{
  display: flex;
  align-items: flex-start;
  padding: 0 0.5rem;
  color: #fff;
}
article.shop .shop-name .shop-sns a p:first-child span{
  display: block;
  width: 36px;
  height: 36px;
  padding:8px 0 0 0;
  border-radius: 50%;
  text-align: center;
}
article.shop .shop-name .shop-sns a p.bg01:first-child span{
  background: #ff1a90;
}
article.shop .shop-name .shop-sns a p.bg02:first-child span{
  background: #444;
}


article.shop .shop-name .shop-sns a p:first-child img{
  display: block;
  width: 20px;
  margin: 0 auto;
}
article.shop .shop-name .shop-sns a p:last-child{
  padding: 0 3rem 0 1rem;
  line-height: 1.5;
  font-size: 1.4rem;
}


/* 店舗情報　SP */
article.shop .shop-info {
  width: auto;
  padding: 3rem 0 6rem;
}
article.shop .shop-info dl{
  display: flex;  
  padding: 1rem 0;
  border-bottom: 1px dashed #777;
  font-size: 1.4rem;  
}
article.shop .shop-info dl.noline{
  border-bottom: none;
}
article.shop .shop-info dt{
  width: 32%;
}
article.shop .shop-info dd{
  width: 68%;
}
article.shop .shop-info dd span{
  display: block;
}
article.shop .shop-info dd a{
  color: var(--yl);
  text-decoration: underline;
}

article.shop .shop-info ol{
  list-style: disc;
  margin: 0 0 0 1rem;
  font-size: 1.4rem;
}
article.shop .shop-info ol li span{
  font-size: 1.3rem;
}
article.shop .shop-info p.news {
  font-size: 1.4rem;
  color: #ff0;
}

#list .toBlog a {
  display: block;
  max-width: 100rem;
  width: 100%;
  padding: 3rem 0;
  margin: 1rem auto 9rem;
  font-size: 1.6rem;
  color: var(--yl);
  text-align: center;
  border: 1px var(--yl) solid;
  border-radius: 0.5rem;
}
#list .toBlog a span {
  position: relative;
}
#list .toBlog a span::after {
  content: "";
  display: block;
  width: 0.7rem;
  height: 0.7rem;
  border-top: 1px var(--yl) solid;
  border-right: 1px var(--yl) solid;
  transform: rotate(45deg);
  position: absolute;
  top: 28%;
  left: 103%;
}



/* --------------- footer --------------- */

footer {
  background: #000;
  color: #fff;
  text-align: center;
  padding: 3rem 0 13rem;
  font-size: 1.4rem;
}

/* TOPへ戻るボタン */

p.topback {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
}
p.topback img {
  width: 5rem;
}



/*----------------------------------------------------
SP用 375- 
----------------------------------------------------*/
@media screen and (max-width:374px) {

/* --------------- .other --------------- */

  .other .inner-block {
    background-size: 90%;
    padding-top: 16rem;
  }
  .other .inner-block li {
    font-size: 1.4rem;
  }
  .other .inner-block li span {
    font-size: 1rem;
  }



}



/*----------------------------------------------------
スマホ / タブレット用 400- 
----------------------------------------------------*/
@media screen and (min-width:400px) {

/* --------------- #reason --------------- */
  
  .everytime-txt {
    background-size: 28%;
  }



}


/*----------------------------------------------------
スマホ / タブレット用 450- 
----------------------------------------------------*/
@media screen and (min-width:450px) {

/* --------------- #reason --------------- */
  
  .everytime-txt {
    background-size: 25%;
  }



}


/*----------------------------------------------------
スマホ / タブレット用 560- 
----------------------------------------------------*/
@media screen and (min-width:560px) {

/* --------------- #reason --------------- */
  
  .lineup-txt {
    background-position: -0.8rem 55%;
    background-size: 15%;
  }



}





/*----------------------------------------------------
タブレット/ PC用 751- 
----------------------------------------------------*/
@media screen and (min-width:751px) {

/* --------------------- header --------------------- */
  header {
    width: 100%;
    height: 8rem;
    background: rgba(0, 0, 0, 0.6);
    position: fixed;
  }
  header .inner-block {
    display: flex;
    justify-content: space-between;
    align-content: center;
  }
  header h1 {
    position: static;
  }
  header h1 img{
    margin: 0;
    padding: 0.5rem 0 0;
  }

/*------------- .gnavBtn -------------*/

/*   ボタンタグ設定   */
  button.gnavBtn {
    display: none;
  }
  header nav.gNav ul {
    display: flex;
    width: auto;
    height: auto;
    background-color: inherit;
    font-size: 1.4rem;
    padding: 1rem 0 0;
    position: static;
  }
  header nav.gNav li {
    border-left: 1px #666 solid;
  }
  header nav.gNav li:first-child {
    border-left: none;
  }
  header nav.gNav li a {
    display: block;
    height: auto;
    line-height: 1;
    padding: 0.6rem 2rem;
    color: #ffd800;
    border: none;
  }
  header nav.gNav li a::after {
    display: none;
  }
  header nav.gNav li a::before {
    content: "";
    display: block;
    width: calc(100% - 4rem);
    height: 0.1rem;
    background: #ffd800;
    position: absolute;
    top: 107%;
    left: 2rem;
    opacity: 0;
    transition: 0.5s;
  }
  header nav.gNav li a:hover::before {
    opacity: 0.8;
  }



/* --------------- .mainViz TB  --------------- */
  
  main {
    padding-top: 0;
  }



/* --------------- #reason・TB --------------- */

  #reason {
    padding: 14rem 0 0;
    margin-bottom: 15rem;
    background: url("../img/pickup_bg.jpg") no-repeat right top;
  }
  #reason .reason-title {
    text-align: left;
  }
  #reason h2 {
    font-size: 3.6rem;
    padding-bottom: 10rem;
    margin-left: 5rem;
  }
  #reason h2 img {
    width: 23rem;
  }
  #reason h2 > span {
    display: inline;
    vertical-align: bottom;
    line-height: 1.2;
  }
  #reason h2 > span > span {
    font-size: 3.2rem;
    padding: 0 1rem;
  }
  #reason h2::before,
  #reason h2::after {
    height: 5.5rem;
  }

  #reason .list-sp {
    display: none;
  }
  #reason .list-pc {
    display: inline-block;
    padding-left: 1.5rem;
  }
  #reason li {
    flex-direction: row;
    background-position: left 2.5rem;
    background-size: 4rem;
    font-size: 2.4rem;
    padding-right: 5rem;
  }
  #reason li > span {
    padding-left: 6rem;
  }
  #reason li:nth-child(2) > span,
  #reason li:nth-child(3) > span,
  #reason li:nth-child(4) > span {
    padding-left: 1rem;
  }
  #reason li strong {
    font-size: 2.4rem;
    padding: 0 1rem;
    margin-left: 6rem;
  }
  #reason li:nth-child(1) > strong {
    margin-left: 1rem;
  }
  #reason li:nth-child(1) strong,
  #reason li:nth-child(2) strong {
    font-size: 2.4rem;
  }
  #reason li:nth-child(1) strong span,
  #reason li:nth-child(2) strong span {
    font-size: 2.8rem;
  }
  #reason li:nth-child(5) {
    display: block;
  }
  #reason li:nth-child(5) strong {
    margin-left: 1rem;
  }
  #reason li:nth-child(5) span.time {
    display: block;
  }
  
  #reason .list-pc {
    display: block;
  }
  .everytime-txt-wrap {
    max-width: 100rem;
    width: 100%;
    height: 8rem;
    margin: 0 0 0 auto;
    position: relative;
  }
  .everytime-txt {
    max-width: 100rem;
    width: 100%;
    background-position: 3% -1rem;
    background-size: 14%;
    font-size: 2.8rem;
    font-weight: bold;
    font-style: oblique;
    color: var(--yl);
    text-align: center;
    line-height: 1;
    padding: 2.5rem 0 2.5rem 10rem;
    border-radius: 0.5rem;
    position: absolute;
    top: 4rem;
    right: 0;
  }
  .everytime-txt span {
    font-size: 3.2rem;
  }



/* --------------- #price --------------- */
  #price{
    padding: 100px 10px 0;
  }
  #price section h2 {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 3rem;
    padding-bottom: 6.5rem;
  }
  #price section h2 img {
    width: 26rem;
  }
  #price section h2 span {
    padding-left: 2rem;
    border-left: 1px solid #ccc;
    margin-left: 2rem;
  }

  /* オプション TB */
  .price-op{
    right: 5%;
  }

  /* リスト TB */
  .price-list dl{
    flex-direction: row;
  }
  .price-list dl dt,.price-list dl dd{
    text-align: left;
  }
  .price-list dl dt{
    width: 45%;
    padding: 25px 40px;
  }
  .price-list dl dd{
    width: 55%;
    padding: 20px 60px;
    font-size: 1.8rem;
  }
  .price-list dl dd span{
    padding: 0 5px 0 0;
    font-size: 2.4rem;
  }
  
  .lineup {
    max-width: 120rem;
    margin: 0 auto 15rem;
  }
  .lineup-txt-wrap {
    max-width: 100rem;
    width: 100%;
    height: 8rem;
    margin: 0 auto 0 0;
    position: relative;
  }
  .lineup-txt {
    flex-direction: row;
    align-items: flex-end;
    justify-content: center;
    max-width: 100rem;
    width: 100%;
    background-position: 3% center;
    background-size: 12%;
    color: var(--yl);
    line-height: 1;
    padding: 2.5rem 0 2.5rem 5rem;
    border-radius: 0.5rem;
    position: absolute;
    top: 4rem;
    left: 0;
  }
  .lineup-txt > strong {
    font-size: 2.1rem;
    padding: 0 0 0.5rem 6rem;
  }
  .lineup-txt > strong > span {
    padding-left: 0.5em;
  }
  .lineup-txt > strong > strong {
    font-size: 3rem;
    font-weight: bold;
  }
  .lineup-txt > span {
    font-size: 1.8rem;
    padding: 0 0 0.5rem 2rem;
    border-left: 1px #5d5d5d solid;
    margin-left: 2rem;
  }
  .lineup-txt > span > strong > strong {
    font-size: 2.4rem;
  }

  .price-add {
    padding-bottom: 10rem;
  }



/* --------------- .#machine --------------- */

  #machine {
    background: #000 url("../img/machine_bg.png") no-repeat center top;
    background-size: 50%;
    padding: 10rem 0;
  }
  #machine h2 {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    padding-bottom: 7.5rem;
  }
  #machine h2 img {
    width: 23rem;
  }
  #machine h2 span {
    padding: 1.5rem 0 0.7rem 2.5rem;
    border-left: 1px #9c9c9c solid;
    margin-left: 2.5rem;
  }
  
  #machine figure {
    display: none;
  }
  #machine h3 {
    font-size: 4rem;
    padding: 0.5rem 0 0 13rem;
  }
  #machine h3 span {
    font-size: 1.4rem;
  }
  #machine h3::before {
    height: 65px;
    top: 0.5rem;
    left: 10rem;
  }
  
  .machine-txt {
    font-size: 1.6rem;
    padding: 5rem 0 7rem;
  }
  .machine-recommend {
    width: 50rem;
  }
  .strength .machine-txt,
  .strength .machine-recommend {
    width: 50rem;
    margin-left: auto;
  }
  .machine-recommend p {
    font-size: 2.4rem;
  }
  .machine-recommend ul {
    padding: 1rem 0 18rem;
  }
  .machine-recommend li {
    font-size: 2.1rem;
    border-radius: 3rem;
    padding: 1.3rem 0 1rem 8rem; 
  }
  .machine-recommend li::before {
    width: 5.8rem;
    height: 5.8rem;
  }
  
  .machine-photo {
    width: 80rem;
    border: 1rem #000 solid;
    border-radius: 1rem;
    position: absolute;
    bottom: -5rem;
    left: -1rem;
  }
  .strength .machine-photo {
    left: calc(100% - 79rem);
  }
  .machine-photo ul {
    flex-wrap: nowrap;
  }
  .machine-photo li,
  .machine-photo li:first-child {
    width: auto;
  }
  
  .aerobic-bg, .weight-bg {
    background: url("../img/aerobic_main-pc.png") no-repeat right center;
    background-size: 55%;
    padding: 0;
    margin-bottom: 12.5rem;
  }
  .aerobic, .weight {
    max-width: 57rem;
    position: relative;
  }
  .strength-bg {
    background: url("../img/strength_main-pc.png") no-repeat left center;
    background-size: 55%;
    padding: 0;
    margin-bottom: 12.5rem;
  }
  .strength {
    max-width: 57rem;
    margin-left: auto;
    position: relative;
  }
  .weight-bg {
    background: url("../img/weight_main-pc.png") no-repeat right center;
    background-size: 55%;
  }



/* --------------- .other --------------- */

  .other {
    padding: 5rem 0;
  }
  .other .inner-block ul {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  .other .inner-block li {
    width: 49%;
  }



  /* 各店舗内容 TB
  -----------------------  */
  article.shop{
    flex-direction: row;  
    max-width: 65rem;
  }

  article.shop .shop-name{
    width: 47%;
  }

  article.shop .shop-info{
    width: 53%;
    padding: 0 0 0 3rem;
    border-bottom: none;
  }



/* --------------- footer --------------- */

/* TOPへ戻るボタン */

p.topback {
  position: fixed;
  bottom: 7rem;
  right: 7rem;
}
p.topback img {
  width: 8rem;
}



}



/*----------------------------------------------------
タブレット/ PC用 880- 
----------------------------------------------------*/
@media screen and (min-width:880px) {
  
/* --------------- .#reason TAB --------------- */
  
  .everytime-txt {
    background-position: 7% -1rem;
    background-size: 12%;
  }



}



/*----------------------------------------------------
タブレット/ PC用 1000- 
----------------------------------------------------*/
@media screen and (min-width:1000px) {

/* --------------- header --------------- */
  header {
    padding: 1.5rem 0;
    height: 9.5rem;
  }
  header h1 img {
    height: 5.2rem
  }
  header nav.gNav ul {
    padding-top: 2rem;
  }


/* --------------- .#reason PC --------------- */

  #reason li {
    font-size: 2.8rem;
  }
  #reason li strong {
    font-size: 2.8rem;
  }
  #reason li:nth-child(1) strong,
  #reason li:nth-child(2) strong {
    font-size: 2.8rem;
  }
  #reason li:nth-child(1) strong span,
  #reason li:nth-child(2) strong span {
    font-size: 3.2rem;
  }

  .everytime-txt {
    background-position: 10% -1rem;
    background-size: 11%;
  }



/* --------------- .#price PC --------------- */

  .price-list{padding: 0 0 50px;}

  .price-list dl dt{
    width: 36%;
  }
  .price-list dl dd{
    width: 64%;
  }
  .price-list dl dt span.price-ttl2{
    display: inline;
    padding: 0 5px;
    font-size: 1.6rem;
  }

  /* オプション PC1000 */
  .price-op{
    display: block;
    width: 140px;
    font-size: 1.6rem;
    top:36%;
    right: 5%;
  }

  .lineup-txt {
    background-position: 3% center;
    background-size: 12%;
  }
  .lineup-txt > strong {
    font-size: 2.8rem;
    padding: 0 0 0.5rem 6rem;
  }
  .lineup-txt > strong > span {
    padding-left: 0.5em;
  }
  .lineup-txt > strong > strong {
    font-size: 4.2rem;
    font-weight: bold;
  }
  .lineup-txt > span {
    font-size: 2.4rem;
    padding: 0 0 0.5rem 2rem;
    border-left: 1px #5d5d5d solid;
    margin-left: 2rem;
  }
  .lineup-txt > span > strong > strong {
    font-size: 3.6rem;
  }



/* --------------- .other --------------- */

  .other {
    padding: 0;
  }
  .other .inner-block {
    background: url("../img/other-comment-pc.png") no-repeat 5% bottom;
    padding: 30rem 0 0 30%;
  }
  .other .inner-block ul {
    margin-left: auto;
    padding-bottom: 7rem;
  }
  .other .inner-block li {
    padding: 2rem 1rem 2rem 8rem;
    margin-bottom: 2rem;
  }



  /*------------------------------------
  初めての方 1000
  -------------------------------------*/
  .first-wrap{
    padding: 0;
    background: url(../img/first_photo.jpg) no-repeat left top;
    background-size:55rem;
  }

  .first-ttl{
    max-width: 40rem;
    margin: 0 0 0 auto;
    padding: 3rem 0;
    text-align: left;
    background: url(../img/first-icon.svg) no-repeat 84% 10%;
    background-size: 70px;
  }
  .first-catch-ttl{
    margin: 0 0 2rem;
    padding: 0 0 2rem;
  }
  .first-catch-ttl span{
    padding: 0 4px;
    font-size: 4.2rem;
  }

  /* 画像 1000 */
  .first-img {
    display: none;
  }


  /*------------------------------------
  店舗 1000
  -------------------------------------*/
  .shop-list-sp{
    display: none;
  }

  .shop-list-pc{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 140rem;
    margin: 0 auto;
  }
  .shop-block{
    width: 44%;
    margin-bottom: 10rem;
  }

  /* 各店舗内容 1000
  -----------------------  */
  .shop-list{
    padding: 10rem 1.5rem;
  }
  .shop-list h2{
    padding: 0 0 10rem;
    font-size: 3rem;
  }
  article.shop{
    flex-direction: column;  
    max-width: auto;
  }
  article.shop .shop-name{
    width: auto;
  }
  article.shop .shop-info{
    width: auto;
    padding: 0;
  }
/*   article.shop .shop-info span{
    display: block;
  } */
  article.shop .shop-name > p{
    text-align: left;
  }
  
  #list .toBlog a {
    font-size: 2.4rem;
  }
  #list .toBlog a span::after {
  width: 1rem;
  height: 1rem;
  border-top: 3px var(--yl) solid;
  border-right: 3px var(--yl) solid;
  }



}



/*----------------------------------------------------
PC用 1200- 
----------------------------------------------------*/
@media screen and (min-width:1200px) {

/* --------------- .#reason PC --------------- */
  
  .everytime-txt {
    background-position: 15% -1rem;
    background-size: 10%;
  }



/* --------------- .other --------------- */

  .br-tab {
    display: none;
  }
  .other .inner-block {
    padding: 30rem 0 0 35rem;
  }
  .other .inner-block ul {
    font-size: 2.1rem;
  }
  .other .inner-block li span {
    font-size: 1.8rem;
  }

  /*------------------------------------
  初めての方 1200
  -------------------------------------*/
  .first-wrap{
    background-size:64rem;
  }
  .first-ttl{
    max-width: 50rem;
    padding: 5rem 0;
    background: url(../img/first-icon.svg) no-repeat 84% 10%;
    background-size: 70px;
  }



}



/*----------------------------------------------------
PC用 1400- 
----------------------------------------------------*/
@media screen and (min-width:1400px) {

  /*------------------------------------
  初めての方 1400
  -------------------------------------*/
  .first-wrap{
    background-size:80rem;
  }
  .first-ttl{
    max-width: 55rem;
    padding: 10rem 0;
    background: url(../img/first-icon.svg) no-repeat 84% 10%;
    background-size: 70px;
  }
  .first-catch-ttl{
    font-size: 3.6rem;
    border-bottom: 10px solid #ffd800;
  }
  .first-catch-ttl span{
    font-size: 5.2rem;
  }


  /*------------------------------------
  店舗 1400
  -------------------------------------*/

  /* 各店舗内容 1000
  -----------------------  */
  .shop-list{
    padding: 10rem 0;
  }

  .shop-block{
    width: 46%;
  }
  /* 各店舗内容 1400
  -----------------------  */
  article.shop{
    flex-direction: row;  
  }

  article.shop .shop-name{
    width: 47%;
  }

  article.shop .shop-info{
    width: 53%;
    padding: 0 0 0 3rem;
  }



}



/*----------------------------------------------------
PC用 1600- 
----------------------------------------------------*/
@media screen and (min-width:1600px) {

  /*------------------------------------
  初めての方 1600
  -------------------------------------*/
  .first-ttl{
    max-width: 60rem;
    padding: 10rem 0;
    background: url(../img/first-icon.svg) no-repeat 70% 20%;
    background-size: 70px;
  }



}



/*----------------------------------------------------
PC用 1800- 
----------------------------------------------------*/
@media screen and (min-width:1800px) {

  /*------------------------------------
  初めての方 1800
  -------------------------------------*/
  .first-wrap{
    background-size:auto;
  }

  .first-ttl{
    max-width: 58rem;
    padding: 15rem 0 12rem;
    background: url(../img/first-icon.svg) no-repeat 84% 24%;
    background-size: 90px;
  }
  .first-catch-ttl{
    font-size: 4rem;
  }
  .first-catch-ttl span{
    font-size: 6rem;
  }



}


