@charset "utf-8";
/* CSS Document */
*{box-sizing: border-box;}
html {
  background-color: #294256;
}
body {
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
  background-color: #FFF;
  color: #000;
	font-size: 20px;
}
.container {
  margin: 0 auto;
  padding: 0;
}
.container:after {
  content: ".";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}
img {
  max-width: 100%;
}
.wrap {
  overflow: hidden;
}
@media (max-width: 599px) {
  body {
    font-size: 16px;
  }
  .hidden_sp {
    display: none;
  }
  .container {
    padding: 0;
    overflow: hidden;
  }
  .spWrap {
    width: 100%;
    overflow: hidden;
  }
}
@media (min-width: 600px) and (max-width: 1024px) {
  .container {
    width: 810px;
    padding: 0 15px;
  }
  .hidden_tb {
    display: none;
  }
}
@media (min-width: 1025px) {
  .container {
    width: 1280px;
    padding: 0;
  }
  .hidden_pc {
    display: none;
  }
}
#header {
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100%;
  background-color: #FFF;
	z-index: 9999;
}
#header .headWrap {
  display: flex;
  align-items: center;
}
#header .headWrap .sitename {
  display: flex;
  align-items: center;
  text-align: left;
}
#header .headWrap .sitename .logo {
  margin-right: 8px;
}
#header .headWrap .sitename h1 {
  font-weight: bold;
  line-height: 1.1;
}
@media (max-width: 599px) {
  #header .headWrap {
    height: 50px;
  }
  #header .headWrap .sitename {
    flex-basis: 80%;
  }
  #header .headWrap .sitename .logo {
    flex-basis: 20%;
    margin-left: 8px;
  }
  #header .headWrap .spBtn {
    margin-left: auto;
  }
}
@media (min-width: 600px) {
  #header .headWrap {
    width: 1280px;
    height: 120px;
    margin: 0 auto;
  }
  #header .headWrap .gNavi {
    margin-left: auto;
    display: flex;
    flex-direction: column;
  }
  #header .headWrap .gNavi ul {
    flex-grow: 2;
    display: flex;
    justify-content: flex-end;
		font-size: 18px;
  }
  #header .headWrap .gNavi ul li.none {
    display: none;
  }
  #header .headWrap .gNavi ul li a {
    display: block;
    color: #000;
    text-decoration: none;
    padding: 1em;
    font-weight: bold;
    border-radius: 4px;
  }
  #header .headWrap .gNavi ul li a:hover {
    background-color: rgba(239, 161, 35, 0.5);
  }
  #header .headWrap .sitename h1 {
    font-size: 20px;
  }
  #header .headWrap .sitename .logo {
    width: 120px;
    margin-right: 15px;
  }
}
@media (max-width: 599px) {
  .spBtn {
    position: fixed;
    right: 0px;
    top: 0px;
    background: #FFF;
    cursor: pointer;
    width: 50px;
    height: 50px;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
    z-index: 10000;
  }
  /*ボタン内側*/
  .spBtn span {
    display: inline-block;
    transition: all .4s; /*アニメーションの設定*/
    position: absolute;
    left: 14px;
    height: 3px;
    border-radius: 2px;
    background: rgba(239, 161, 35, 1);
  }
  .spBtn span:nth-of-type(1) {
    top: 15px;
    width: 45%;
  }
  .spBtn span:nth-of-type(2) {
    top: 23px;
    width: 35%;
  }
  .spBtn span:nth-of-type(3) {
    top: 31px;
    width: 20%;
  }
  /*activeクラスが付与されると線が回転して×になる*/
  .spBtn.active span:nth-of-type(1) {
    top: 18px;
    left: 18px;
    transform: translateY(6px) rotate(-135deg);
    width: 30%;
  }
  .spBtn.active span:nth-of-type(2) {
    opacity: 0;
  }
  .spBtn.active span:nth-of-type(3) {
    top: 30px;
    left: 18px;
    transform: translateY(-6px) rotate(135deg);
    width: 30%;
  }
  .open {
    right: -100%;
  }
  .open.on {
    right: 0px;
  }
  .move.on.spBtn {
    position: fixed;
    right: 0px;
    top: 0px;
  }
  .gNavi {
    background-color: rgba(239, 161, 35, 0.95);
    margin: 0;
    padding: 0;
    top: 0;
    z-index: 9998;
    height: 100%;
    -webkit-transition: .35s ease-in-out;
    -moz-transition: .35s ease-in-out;
    transition: .35s ease-in-out;
    overflow-y: scroll;
    position: fixed;
  }

  .gNavi .spNavi {
    width: 100vw; /*スライドで出てくる幅*/
    box-sizing: border-box;
    color: #FFF;
		padding: 0px 0 15px;
  }
  .gNavi .spNavi .sideAddr {
		background-color: #294256;
		padding: 60px 15px 15px;
  }
  .gNavi .spNavi .sideAddr h3 {
		font-weight: bold;
		font-size: 18px;
		margin-bottom: 0.5em;
  }
  .gNavi .spNavi .sideAddr p {
		font-size: 14px;
		margin-bottom: 15px;
  }
  .gNavi .spNavi ul {
		padding: 0 15px;
    margin-bottom: 15px;
		display: flex;
		flex-wrap: wrap;
  }
  .gNavi .spNavi ul li {
		flex-basis: 50%;
		border-bottom: 1px dotted #FFF;
  }
  .gNavi .spNavi ul li.leftLine {
		border-left: 1px dotted #FFF;
  }
  .gNavi .spNavi ul li.w100 {
		flex-basis: 100%;
  }
  .gNavi .spNavi ul li a {
    color: #FFF;
    display: block;
    padding: 1.5em 0;
    font-size: 14px;
		text-decoration: none;
		font-weight: bold;
  }
  .gNavi .spNavi ul li.sub a {
    padding-left: 1.5em;
   }
  .gNavi .spNavi .sideToi {
		padding: 8px;
   }
  .gNavi .spNavi .sideToi a {
		display: block;
		padding: 8px 0;
		border-radius: 8px;
		font-weight: bold;
		text-decoration: none;
		background-color: #FFF;
		color: #294256;
		font-size: 18px;
    }
  .gNavi .spNavi .sideToi a span {
		font-size: 80%;
		font-weight: inherit;
}
  .gNavi .spNavi .mark {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
}
@media (min-width: 600px) {
  .spBtn {
    display: none;
  }
}
.wrapper {
  margin-top: 50px;
}
@media (min-width: 600px) {
  .wrapper {
    margin-top: 120px;
  }
}
#footer {
  background-color: #294256;
	color: #FFF;
}
#footer .footWrap {
	display: flex;
	flex-direction: column;
}
#footer .footWrap .footText {
	flex-grow: 2;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}
#footer .footWrap .footText .copyright {
	margin-top: auto;
	font-size: 11px;
}
#footer .footWrap .footText .footContact {
	flex-grow: 2;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}
#footer .footWrap .footText .footContact .addr {
	text-align: left;
	font-size: 14px;
	flex-grow: 2;
	display: flex;
	flex-direction: column;
}
#footer .footWrap .footText .footContact .addr ul {
	margin-top: auto;
	display: flex;
	margin-bottom: 1em;
}
#footer .footWrap .footText .footContact .addr ul li a {
	color: #FFF;
	padding: 0 1em;
}
#footer .footWrap .footText .footContact .addr ul li:first-child a {
	padding-left: 0px;
}
#footer .footWrap .footText .footContact .addr ul li:last-child a {
	padding-right: 0px;
}
#footer .footWrap .footText .footContact .addr ul li + li{
	border-left: 1px solid #FFF;
}
#footer .footWrap .footText .footContact .addr p.phone {
	text-align: center;
}
#footer .footWrap .footText .footContact .addr p.phone a {
	color: #FFF;
	display: block;
	padding: 0 8px 1em;
	font-size: 18px;
	font-weight: bold;
}
#footer .footWrap .footText .footContact .addr dl {
	margin-bottom: 1em;
}
#footer .footWrap .footText .footContact .addr dl dt {
	float: left;
	width: 6em;
}
#footer .footWrap .footText .footContact .addr dl dd {
	padding-left: 6em;
}
#footer .footWrap .footText .footContact .footToi {
	display: flex;
	flex-direction: column;
}
#footer .footWrap .footText .footContact .footToi .phone a {
	font-size: 30px;
	font-weight: bold;
	color: #FFF;
	text-decoration: none;
	letter-spacing: -3px;
}
#footer .footWrap .footText .footContact .footToi .mail a {
	width: 100%;
	background-color: #ff8d00;
	color: #000;
	border-radius: 50px;
	display: block;
	padding: 1em 0;
	text-decoration: none;
	font-weight: bold;
}
@media (max-width: 599px) {
#footer {
	padding-bottom: 80px;
}
#footer .footWrap {
	padding: 20px 15px 0;
	align-items: center;
}
#footer .footWrap .sitename {
	margin-bottom: 15px;
}
#footer .footWrap .sitename .img {
	width: 50%;
	margin: auto;
}
#footer .footWrap .footText .footContact .addr ul {
	justify-content: center;
}
#footer .footWrap .footText .footContact .footToi {
	display: none;
}
}
@media (min-width: 600px) {
#footer .footWrap {
	flex-direction: row;
	padding-top: 50px;
}
#footer .footWrap .sitename {
	padding-right: 50px;
}
#footer .footWrap .footText {
	padding-left: 50px;
	border-left: 1px solid #FFF;
}
#footer .footWrap .footText .footContact {
	flex-direction: row;
}
#footer .footWrap .footText .footContact .addr {
	font-size: 16px;
}
#footer .footWrap .footText .footContact .footToi .phone a {
	font-size: 60px;
}
#footer .footWrap .footText .copyright {
	text-align: left;
}
}
#pageTop {
  position: fixed;
  left: 0;
  bottom: 0;
  opacity: 0.95;
	z-index: 9;
}
@media (max-width: 599px) {
  #pageTop {
    width: 50px;
    bottom: 75px;
  }
}

.flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.flex > li, .flex > div {
  box-sizing: border-box;
}
.flex.flex_reverce.row2 {
  flex-direction: row-reverse;
}
.flex.row2 > li, .flex.row2 > div {
  flex-basis: 50%;
}
.flex.row3 > li, .flex.row3 > div {
  flex-basis: 33.3%;
}
  .flex > .item {
    padding: 4px;
  }

.flex.imgC {
  flex-direction: column;
}
.flex.imgC .img {
  align-self: center;
  margin-bottom: 30px;
}
@media (min-width: 600px) {
  .flex.flex_reverce.row2_1 {
    flex-direction: row-reverse;
  }
  .flex > .item {
    padding: 15px;
  }
  .flex.row2_1 > li, .flex.row2_1 > div {
    flex-basis: 50%;
  }
  .flex.row3_1 > li, .flex.row3_2 > li, .flex.row3_1 > div, .flex.row3_2 > div, .flex.row3_2-1 > div {
    flex-basis: 33.3%;
  }
  .flex.row4_2 > div {
    flex-basis: 25%;
  }
  .flex.imgL {
    flex-direction: row;
  }
  .flex.imgL .img {
    flex-basis: 30%;
    box-sizing: border-box;
    padding: 0 15px 15px 0;
  }
  .flex.imgL .text {
    flex-basis: 70%;
    box-sizing: border-box;
    padding: 0 0 15px 15px;
  }
}
@media (max-width: 599px) {
  .flex {
    margin-bottom: 0px;
  }
  .flex.flex_reverce.row2_1 {
    flex-direction: column-reverse;
  }
  .flex.row3_1, .flex.row2_1 {
    flex-direction: column;
  }
  .flex.row4_2 > li, .flex.row3_2 > li, .flex.row4_2 > div, .flex.row3_2 > div {
    flex-basis: 50%;
  }
}
.imgR {
	float: right;
	padding: 0 0 8px 8px;
}
.imgL {
	float: left;
	padding: 0 8px 8px 0;
}
.clear {
	clear: both;
}
@media (max-width: 599px) {
  table.table_sp, table.table_sp tbody, table.table_sp thead, table.table_sp tfoot, table.table_sp tr, table.table_sp th, table.table_sp td {
    display: block;
  }
}
.video_wrap, .gmap_wrap {
  position: relative;
  padding-top: 56.25%;
  height: 0;
	width: 100%;
  overflow: hidden;
}
.video_wrap iframe, .gmap_wrap iframe, .gmap_wrap object, .gmap_wrap embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.more {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin: 30px 0;
}
.button {
  display: inline-flex;
  background-color: #294256;
  color: #FFF;
  text-transform: uppercase;
  text-decoration: none;
  letter-spacing: 1.5px;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.button a {
  color: #FFF;
  text-decoration: none;
  letter-spacing: 1px;
  position: relative;
  transition: all .35s ease-Out;
  padding: 0.5em 1em;
}
.button #slide {
  width: 100%;
  height: 100%;
  left: -100%;
  background: #BFC0C0;
  position: absolute;
  transition: all .35s ease-Out;
  bottom: 0;
}
.button:hover #slide {
  left: 0;
}
.button:hover a {
  color: #2D3142;
}
@media (max-width: 599px) {
}
.searchBox {
  text-align: center;
}
.searchBox .ttl {
  color: #8A5D3B;
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  font-weight: 900;
  font-size: 20px;
  margin-bottom: 15px;
}
.searchBox .area, .searchBox .case {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 15px;
  width: 100%;
}
.searchBox .area li, .searchBox .area label {
  flex-basis: 50%;
  padding: 4px;
}
.searchBox .case li, .searchBox .case label {
  padding: 4px;
}
.searchBox .area label input, .searchBox .case label input {
  display: none;
}
.searchBox .area li span, .searchBox .case li span, .searchBox .area label span, .searchBox .case label span {
  color: #323C48;
  font-size: 12px;
  font-weight: 900;
  border: 1px solid #323C48;
  border-radius: 8px;
  display: block;
  cursor: pointer;
  padding: 0.8em;
}
.searchBox .area li span.on, .searchBox .area label input:checked + span {
  color: #FFF;
  background: #323C48;
  border: 1px solid #323C48;
}
.searchBox .case li.case1 span, .searchBox .case label.case1 span {
  background-color: rgba(111, 75, 43, 0.1);
}
.searchBox .case li.case2 span, .searchBox .case label.case2 span {
  background-color: rgba(75, 110, 163, 0.1);
}
.searchBox .case li.case3 span, .searchBox .case label.case3 span {
  background-color: rgba(118, 152, 65, 0.1);
}
.searchBox .case li.case4 span, .searchBox .case label.case4 span {
  background-color: rgba(112, 75, 154, 0.1);
}
.searchBox .case li.case5 span, .searchBox .case label.case5 span {
  background-color: rgba(147, 70, 103, 0.1);
}
.searchBox .case li.case1 span.on, .searchBox .case label.case1 input:checked + span {
  color: #FFF;
  background-color: rgba(111, 75, 43, 1.00);
}
.searchBox .case li.case2 span.on, .searchBox .case label.case2 input:checked + span {
  color: #FFF;
  background-color: rgba(75, 110, 163, 1.00);
}
.searchBox .case li.case3 span.on, .searchBox .case label.case3 input:checked + span {
  color: #FFF;
  background-color: rgba(118, 152, 65, 1.00);
}
.searchBox .case li.case4 span.on, .searchBox .case label.case4 input:checked + span {
  color: #FFF;
  background-color: rgba(112, 75, 154, 1.00);
}
.searchBox .case li.case5 span.on, .searchBox .case label.case5 input:checked + span {
  color: #FFF;
  background-color: rgba(147, 70, 103, 1.00);
}
@media (max-width: 599px) {
  .searchBox .case li, .searchBox .case label {
    flex-basis: 50%;
  }
}
@media (min-width: 600px) {
  .searchBox .ttl {
    font-size: 36px;
  }
  .searchBox .area, .searchBox .case {
    margin-bottom: 30px;
  }
  .searchBox .area li, .searchBox .area label {
    flex-basis: 20%;
    padding: 8px;
  }
  .searchBox .case li, .searchBox .case label {
    padding: 8px;
    flex-grow: 2;
  }
  .searchBox .area li span, .searchBox .case li span, .searchBox .area label span, .searchBox .case label span {
    font-size: 18px; /* 文字サイズを14pxに */
  }
}
.scroll {}
@media (max-width: 750px) {
  .scroll {
    overflow: auto;
    white-space: nowrap;
    padding-bottom: 20px;
    margin-bottom: 20px;
  }
  .scroll::-webkit-scrollbar {
    height: 5px;
  }
  .scroll::-webkit-scrollbar-track {
    background: #F1F1F1;
  }
  .scroll::-webkit-scrollbar-thumb {
    background: #BCBCBC;
  }
}
@media (min-width: 751px) {
  br.pc_none {
    display: none;
  }
}
.fixBox {
	position: fixed;
	z-index: 999;
}
@media (max-width: 599px) {
.fixBox {
	bottom: 0px;
	left: 0px;
}
}
@media (min-width: 600px) {
.fixBox {
	top: 200px;
	right: 0px;
	width: 200px;
	opacity: 0.9;
}
.fixBox:hover {
	opacity: 1;
}
}
#second #contents {
}
#second .contsTtl {
	background-image: url(../images/title_bg.jpg);
	background-repeat: no-repeat;
	background-position: center center;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	margin-bottom: 50px;
}
#second.about .contsTtl {
	background-image: url(../images/title_bg.jpg);
}
#second.fitness .contsTtl {
	background-image: url(../images/title_bg_fitness.jpg);
}
#second.pro .contsTtl {
	background-image: url(../images/title_bg_pro.jpg);
}
#second.member .contsTtl {
	background-image: url(../images/title_bg_pryer.jpg);
}
#second.price .contsTtl {
	background-image: url(../images/title_bg_price.jpg);
}
#second.trial .contsTtl {
	background-image: url(../images/title_bg_trial.jpg);
}
#second.contact .contsTtl {
	background-image: url(../images/title_bg_contact.jpg);
}
#second.supporter .contsTtl {
	background-image: url(../images/title_bg_supporter.jpg);
}
#second.fujioka_f .contsTtl {
	background-image: url(../images/title_bg_fujioka.jpg);
}

#second .contsTtl .breadcrumb {
	align-self: flex-end;
}
#second .contsTtl .breadcrumb ul {
	display: flex;
	justify-content: flex-end;
	font-size: 70%;
}
#second .contsTtl .breadcrumb li a,
#second .contsTtl .breadcrumb li {
	color: #FFF;
}
#second .contsTtl .breadcrumb li + li:before {
	content: ">";
	padding: 0 1em;
}
#second .contsTtl .subTtl {
	flex-grow: 2;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}
#second .contsTtl .subTtl p {
	font-weight: bold;
	color: #FFF;
	font-size: 30px;
	margin-top: 0.5em;
}
#second .contsTtl h1 {
  transform: skewX(-10deg);
	padding: 1.5em 2.5em;
	background-color: #294256;
	margin-bottom: -1.5em;
}
#second .contsTtl h1 span {
	display: block;
 transform: skewX(10deg);
	color: #FFF;
	font-weight: bold;
}
@media (max-width: 599px) {
#second .contsTtl {
	background-size: auto 100%;
	height: 200px;
}
#second.fujioka_f .contsTtl {
	background-position: right bottom;
}
}
@media (min-width: 600px) {
#second .contsTtl {
	height: 380px;
}
#second .contsTtl .subTtl p {
	font-size: 60px;
}
}	
#second #contents section {
	text-align: left;
	clear: both;
}	
#second #contents section p {
	margin-bottom: 1em;
}
@media (max-width: 599px) {
#second #contents section {
	padding: 30px 15px;
	margin-bottom: 15px;
}
}
@media (min-width: 600px) {
#second #contents {
	padding: 50px 0px 80px;
}
#second #contents section {
	margin-bottom: 50px;
}
}
#contents section .leadTtl {
	color: #294256;
	font-weight: bold;
	font-size: 26px;
	margin-bottom: 1em;
}
@media (min-width: 600px) {
#contents section .leadTtl {
	font-size: 40px;
}
}
#contents section .secTtl h3.ttl {
  color: #294256;
  font-weight: bold;
  font-size: 26px;
}
#contents section .secTtl h2.borderTtl {
  display: flex;
  align-items: center;
  color: #294256;
  font-weight: bold;
  font-size: 26px;
  margin-bottom: 1em;
}
#contents section .secTtl h2.borderTtl:before, #contents section .secTtl h2.borderTtl:after {
  content: "";
  height: 1px;
  flex-grow: 1;
  background-color: #666;
}
#contents section .secTtl h2.borderTtl:before {
  margin-right: 1rem;
}
#contents section .secTtl h2.borderTtl:after {
  margin-left: 1rem;
}
#contents section .secTtl h3.lineR {
	border-left: 5px solid #FD8E00;
  font-weight: bold;
  font-size: 20px;
	padding: 0.5em;
	margin-bottom: 1em;
}

@media (max-width: 599px) {
#second #contents section.anchor {
  padding-top: 60px;
  margin-top:-60px;
}
}
@media (min-width: 600px) {
#contents section .secTtl h2.borderTtl {
	font-size: 40px;
	letter-spacing: 0.2em;
}
#contents section .secTtl h3.ttl {
	font-size: 40px;
}
#contents section .secTtl h3.lineR {
	font-size: 28px;
}
#second #contents section.anchor {
  padding-top: 150px;
  margin-top:-150px;
}
}
#contents section.lead {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}
@media (min-width: 600px) {
}
/************************************************************
　pager　.pager
*/
.pager {
	margin-bottom: 10px;
}
.pager .right ul {
	display: flex;
}
.pager .right ul li {
	display: flex;
	flex-direction: column;
}
.pager .right ul li + li {
	padding: 0 1px;
}
.pager .right ul li span {
	padding: 2px 0.5em;
	border: 1px solid #CCC;
	background-color: #EEEEF0;
	color: #999;
	align-self: stretch;
}
.pager .right ul li a {
	display: inline-block;
	padding: 2px 0.5em;
	border: 1px solid rgba(253,142,0,1.00);
	background-color:  rgba(253,142,0,0.05);
	color: rgba(253,142,0,1.00);
	font-weight: 900;
	text-decoration: none;
	align-self: stretch;
}
.pager .right ul li a:hover {
	background-color: rgba(253,142,0,0.2);
}
@media (max-width: 750px) {
.pager {
	font-size: 1.1rem;
	text-align: center;
}
.pager .right ul {
	justify-content: center;
}
}
@media (min-width: 751px) {
.pager {
	display: flex;
	justify-content: space-between;
}
.pager .right {
	margin-left: auto;
	}
.pager .right  ul {
	align-self: flex-end;
	justify-content: flex-end;
}
}
/*
　/pager　.pager
************************************************************/

