/* CSS Document */



.course__inner {
  position: relative;
    width: 65%;
  max-width: 1000px;
    margin: 0 auto;
  padding-top: 30px;
    
}
@media screen and (max-width: 1200px) {
    .course__inner {
        width: 80%;
    }
}
@media screen and (max-width: 640px) {
    .course__inner {
        width: 90%;
    } 
}
.course-menu {
  background-color: #fff;
    border-radius: 30px;
}


.course-content{
    width: 100%;
    height: auto;
    padding: 50px 80px;
}

.course-content-pic{
    width: 100%;
    height: auto;
    margin: 0 auto;
}

.course-content-pic img{
    width: 100%;
}


.course-content-recommend{
    width: 100%;
    height: auto;
    margin-top: 25px;
/*    border: solid 3px #E95312;*/
    background-color: #f5f5f5;
    padding: 25px 0;
    border-radius: 20px;
}
.course-title {
/*  position: absolute;*/
  display: block;
  font-size: 25px;
  font-weight: 600;
  text-align: center;
    color: #E95312;
}

.course-title::before {
    content: '';
/*    position: absolute;*/
    top: 50%;
    left: -50px;
    display: inline-block;
    width: 40px;
    height: 1px;
    border: 1px dashed;
    background-color: #fff;
    -webkit-transform: rotate(60deg);
    transform: rotate(60deg);
    color: #E95312;
}

.course-title::after {
    content: '';
/*    position: absolute;*/
    top: 50%;
    right: -50px;
    display: inline-block;
    width: 40px;
    height: 1px;
    border: 1px dashed;
    background-color: #fff;
    -webkit-transform: rotate(-60deg);
    transform: rotate(-60deg);
    color: #E95312;
}


.recommend-content{
    width: 80%;
    margin: 0 auto;
    margin-top: 25px;
}
.recommend-content ul{
    padding: 0;
    margin: 0;
    list-style: none;
}
.recommend-content ul li{
    position: relative;
    font-size: 18px;
    font-weight: bold;
    line-height: 25px;
    margin-bottom: 20px;
    word-break: keep-all;
  overflow-wrap: break-word;
    color: #57453C;
    
}

.recommend-content ul li i{
    color: #57453C;
    margin-right: 5px;
}

.course-content-sen{
    width: 100%;
    height: auto;
    margin-top: 20px;
}
.course-content-sen p{
    line-height: 1.8em;
}
@media screen and (max-width: 960px) {
    .course__inner{
        padding-top: 20px;
        padding-bottom: 50px;
    }
    .course-content{
        padding: 40px 50px;
    }
    .recommend-content{
        width: 85%;
    }
    .recommend-content ul li{
        font-size: 16px;
    }
    .course-content-sen p{
        font-size: 15px;
    }
	.course-content-sen li{
		font-size:15px;
	}
}

@media screen and (max-width: 768px) {
    .course__inner{
        width: 90%;
    }
    .course-title{
        font-size: 20px;
    }
    .recommend-content{
        width: 90%;
    }
    .recommend-content ul li{
        margin-bottom: 10px;
    }
}

@media screen and (max-width: 640px) {
    .recommend-content{
        width: 100%;
    } 
    .course-content{
        padding: 25px 30px;
    }
    .course-content-recommend{
        padding: 20px 30px;
    }
    .course-content-sen p{
        font-size: 14px;
        line-height: 25px;
    }
	.course-content-sen li{
        font-size: 14px;
        line-height: 28px;
    }
}
@media screen and (max-width: 480px) {
    
    .course-title{
        font-size: 16px;
    }
    .course-title::before,.course-title::after{
        width: 20px;
    }
    .course-menu{
        border-radius: 20px;
    }
    .course-content-recommend{
        border-radius: 15px;
        padding: 15px;
    }
    .recommend-content{
        margin-top: 15px;
    }
    .recommend-content ul li{
        font-size: 15px;
        margin-bottom: 10px;
        line-height: 1.5em;
        font-weight: 600;
    }
    .course__inner{
        padding-top: 0;
    }
}

/*コースの流れナンバリングと下線、タイトルについて*/

.course_flow .first{
    margin-top: 0;
}
.flow_border{
    font-weight: bold;
    display: inline-block;
    margin-top: 15px;
}
.course-title_2{
	font-weight:bold;
    color: #E95312;
    margin-bottom: 0;
    margin-top: 20px;
    
}

/*コースの流れナンバリングと下線、タイトルについてここまで*/

/*コースの注意書き*/
.caution{
	margin-top: 15px;
}
/*コースの注意書きここまで*/

.campaign-int {
  background-color: #f2f2f2;
}

.campaign-int-inner {
  background-color: #fff;
  max-width: 600px;
  margin-top: 50px;
  margin-bottom: 50px;
  padding: 20px;
}
@media screen and (min-width: 768px) {
     /*画面サイズが768px以上ならここを読み込む*/
    .campaign-int-inner {
      padding: 40px;
    }
}

.campaign-int-title {
  position: relative;
  display: block;
  font-size: 18px;
  line-height: 24px;
  font-weight: 600;
  text-align: center;
  left: 0;
  right: 0;
  margin-bottom: 20px;
}
@media screen and (min-width: 768px) {
     /*画面サイズが768px以上ならここを読み込む*/
    .campaign-int-title {
      font-size: 20px;
      line-height: 26px;
    }
}

.campaign-int-title::before {
  content: '';
    position: absolute;
    top: 50%;
    left: 0px;
    display: inline-block;
    width: 40px;
    height: 1px;
    border: 1px dashed;
    background-color: #fff;
    -webkit-transform: rotate(60deg);
    transform: rotate(60deg);
}
@media screen and (min-width: 768px) {
     /*画面サイズが768px以上ならここを読み込む*/
    .campaign-int-title::before {
      left: 100px;
    }
}

.campaign-int-title::after {
  content: '';
    position: absolute;
    top: 50%;
    right: 0px;
    display: inline-block;
    width: 40px;
    height: 1px;
    border: 1px dashed;
    background-color: #fff;
    -webkit-transform: rotate(-60deg);
    transform: rotate(-60deg);
}
@media screen and (min-width: 768px) {
     /*画面サイズが768px以上ならここを読み込む*/
    .campaign-int-title::after {
      right: 100px;
    }
}

.campaign-int dt {
  position: relative;
  color: #E95312;
}

.campaign-int dt::before {
  content:"";
	display:inline-block;
	width:1em;
	height:1em;
	background:url("../gym/img/fms-voice-q.png") no-repeat;
	background-size:contain;
    margin-right: 5px;
}

.campaign-int dd {
  font-size: 14px;
  line-height: 24px;
}
@media screen and (min-width: 768px) {
     /*画面サイズが768px以上ならここを読み込む*/
    .campaign-int dd {
      font-size: 16px;
      line-height: 28px;
    }
}


.campaing-int-person {
  padding: 20px;
  background-color: #fff;
  border-bottom: dotted 1px #000;
}

.campaing-int-person:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
/*あいのり割*/
.campaign-box {
    width: 100%;
    margin: 30px auto;
    margin-bottom: 80px;
}
.campaign-box a img{
    width: 100%;
    margin-bottom: 30px;
}
@media screen and (max-width: 520px) {
    .campaign-box {
        margin: 15px auto;
        margin-bottom: 50px;
    }
    .campaign-box a img{
        width: 100%;
        margin-bottom: 15px;
    }
}
.campaign-ainori {
  position: relative;
  border: solid 2px #000;
  padding: 30px 20px 20px 20px;
  background-color: #fff;
}

.campaign-ainori::after {
  content: '';
  position: absolute;
  border: solid 4px #fff000;
  width: 100%;
  height: 100%;
  bottom: -8px;
  right: -8px;
  z-index: -999;
}

.campaign-ainori-title {
  content: '';
  position: absolute;
  color: #000;
  font-weight: 600;
  background-color: #fff;
  width: 150px;
  height: auto;
  left: 50%;
  transform: translateX(-50%);
  top: -20px;
  text-align: center;
  font-size: 24px;
}

.campaign-ainori-target {
  position: relative;
  color: #fff;
  background-color: #C1272D;
  padding: 20px;
  border-radius: 20px;
  font-weight: 600;
  text-align: center;
  line-height: 26px;
}
.campaign-ainori-target::after {
  content: '';
  position: absolute;
  border-top: 10px solid #C1272D;
  border-left: 10px solid transparent ;
  border-botto: 10px solid transparent;
  border-right: 10px solid transparent;
  bottom: -10px;
  left: calc(50% - 5px);
}

.campaign-ainori-plice {
  text-align: center;
  font-size: 24px;
  margin: 20px auto;
  font-weight: 600;
  color: #000;
  background-color: #fff000;
  width: 200px;
  height: 50px;
  line-height: 50px;
}

.campaign-ainori-subtitle {
  text-align: center;
  font-weight: 600;
  margin: 0 auto;
}

.campaign-ainori-text {
  text-align: center;
  font-size: 14px;
  line-height: 22px;
}

.campaign-int {
  background-color: #f2f2f2;
}

.campaign-int-inner {
  background-color: #fff;
  max-width: 600px;
  margin-top: 50px;
  margin-bottom: 50px;
  padding: 20px;
}
@media screen and (min-width: 768px) {
     /*画面サイズが768px以上ならここを読み込む*/
    .campaign-int-inner {
      padding: 40px;
    }
}

.campaign-int-title {
  position: relative;
  display: block;
  font-size: 18px;
  line-height: 24px;
  font-weight: 600;
  text-align: center;
  left: 0;
  right: 0;
  margin-bottom: 20px;
}
@media screen and (min-width: 768px) {
     /*画面サイズが768px以上ならここを読み込む*/
    .campaign-int-title {
      font-size: 20px;
      line-height: 26px;
    }
}
.campaing-int-person {
  padding: 20px;
  background-color: #fff;
  border-bottom: dotted 1px #000;
}

.campaing-int-person:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

/*初めての筋トレコース・メニュー例*/

.course-title_3 {
	display:block;
	background-color:#E95312;
	color:#fff;
	text-align:center;
	padding:3px 0;
	margin:30px auto 10px auto;
	font-size:20px;
}
.effect-title{
	font-weight:bold;
	margin:18px 0 0 0;
	font-size:18px;
	display:flex;
	align-items:flex-end;
}
/*.effect-title .span1{
	background-color:#E95312;
	color:#fff;
	font-weight:bold;
	margin:0 5px 3px 0;
	display:inline-block;
	border-radius:50px;
	width:35px;
	height:35px;
}*/
.effect-title .span2{
	font-weight:bold;
	border-bottom:dotted 3px #E95312;
	padding:0 0 2px 0;
	color:#E95312;
}
.effect-sen1{
	margin-bottom:0px;
	margin-top:5px;
}
.example {
	color:#000;
	margin-bottom:0px;
	font-weight:bold;
}
@media(max-width:520px){
	.effect .course-title_3 {
	display:block;
	background-color:#E95312;
	color:#fff;
	text-align:center;
	padding:3px 0;
	margin:30px auto 10px auto;
	font-size:16px;
}
.effect-title{
	font-weight:bold;
	margin:22px 0 0 0;
	border-bottom:dotted 3px #E95312;
	display:flex;
	align-items:flex-end;
}
.effect-title .span2{
	font-weight:bold;
	border-bottom:none;
	padding:0 0 4px 0;
	width:100%;
	display:inline-block;
	line-height:20px;
	font-size:15px;
}
	.effect-sen1{
	margin-left:0px;
}
	.example {
	margin-left:0px;
}
	.course-menu span{
		display:inline-block;
}
}

/*お客様の声*/
.h2-span h2{
    font-size: 24px;
    color: #E95312;
    word-break: keep-all;
    overflow-wrap: break-word;
}
.voice{
    max-width: 1000px;
    width: 90%;
    padding: 50px 0 50px 0;
    margin: 0 auto;
}
.faq{
    padding: 0px 0 50px 0;
}
.voice-box{
    display: flex;
    flex-wrap: wrap;
    gap: 30px 2%;
}
.voice-box-1{
    width: 100%;
    background-color: #fff;
    padding: 30px 30px 20px 30px;
    border-radius: 20px;
}
.voice-box-1_1{
    width: 100%;
    background-color: #E95312;
    color: #fff;
    padding: 5px 10px;
}
.voice-box-1_1 p{
    color: #fff;
    font-size: 18px;
    font-weight: 600;
}
.voice-box-1_2{
    padding: 20px 0 0 0;
}
.voice-box-1_2 span{
    font-weight: 600;
}
.voice-box-1_2 p{
    margin: 5px 0 15px 0;
    line-height: 1.6em;
}
@media screen and (max-width:640px) {
    .h2-span{
        margin: 0 auto 20px auto;
    }
    .h2-span h2{
        font-size: 20px;
    }
    .voice{
        padding: 30px 0 0 0;
    }
    .voice-box-1{
        padding: 20px 20px 10px 20px;
        border-radius: 15px;
    }
    .voice-box-1_2 span,.voice-box-1_2 p{
        font-size: 14px;
    }
}
/*お客様の声ボタン*/
.casestudy-btn {
	display:flex;
	justify-content:space-between;
	flex-wrap:wrap;
}
.casestudy-btn a{
	display:block;
	width:49%;
	text-align:center;
	background-color:#fff;
	border:solid 1px #E95312;
	border-radius:50px;
	color:#E95312;
	margin:5px 0;
	padding:5px;
    font-size: 15px;
}
.casestudy-btn a:hover{
	background-color:#E95312;
	border:solid 1px #E95312;
	color:#fff;
	text-decoration:none;
}
.casestudy-btn .active{
	background-color:#E95312;
	border:solid 1px #E95312;
	color:#fff;
}
@media screen and (max-width: 768px) {
	.casestudy-btn a{
	display:block;
	width:100%;
	text-align:center;
	background-color:#fff;
	border:solid 1px #E95312;
	border-radius:50px;
	color:#E95312;
	margin:5px 0;
	padding:5px;
}
}
/*よくある質問*/
/*アコーディオン*/

#faq-list dl {
    margin: 0;
}

#faq-list dt {
    font-weight: 600;
    color: #57453C;
	
}

#faq-list dd {
    margin: 10px 10px 40px 10px;
    color: #57453C;
	
}

#faq-list a {
    width: auto;
    color: #57453C;
	
}

#faq-list a[data-toggle="collapse"]{
    display: block;
    text-decoration: none;
    position: relative;
   border-bottom:solid 2px #f2f2f2;
    padding: 10px 30px 10px 10px;
    margin: 20px 10px;
}
#faq-list a[data-toggle="collapse"] i{
    margin-right: 5px;
}

#faq-list a[data-toggle="collapse"]:hover{
    opacity: 0.8;
}

#faq-list a[data-toggle="collapse"]::after{
    content:'';
    position: absolute;
    display: block;
    width: 8px;
    height: 8px;
    border: 2px solid;
    border-color: transparent transparent #999 #999;
    transform: translateY(-50%) rotate(-45deg);
    right: 15px;
    top: calc(50% - 2px);
}
@media screen and (max-width:480px) {
    #faq-list dt,#faq-list dd {
        font-size: 14px;
    }
    #faq-list dd{
        margin: 10px 10px 20px 10px;
    }
    #faq-list a[data-toggle="collapse"]{
        margin: 15px 10px;
    }
}
/*よくある質問ここまで*/