@charset "utf-8";
/* CSS Document */
html,body {
  margin: 0;
  padding: 0;
  height: 100%; /* needed for container min-height */
  font-family:"serif", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}
table {
	border-collapse: collapse;
}
ul,ol ,li{
	margin: 0px;
	padding: 0px;
	list-style-type: none;
}
img {
	border: none;
}
em {
	font-style: normal;
}
strong {
	font-weight: normal;
}

a { 
	outline:none;
}
a:link {
	color: #666666;
	text-decoration: none;
}
a:visited {
	text-decoration: none;
	color: #666666;
}
a:hover {
	text-decoration: none;
	color: #FF0000;
}
a:active {
	text-decoration: none;
}
a img {
-webkit-transition: 0.3s ease-in-out;
-moz-transition: 0.3s ease-in-out;
-o-transition: 0.3s ease-in-out;
transition: 0.3s ease-in-out;
}
a:hover img{
opacity: 0.6;
filter: alpha(opacity=60);
-moz-opacity:0.6;
}

.js-fade {
    opacity: 0;
    visibility: hidden;
    transform: translateY(50px);
    transition: opacity 1s,visibility 1s, transform 1s;
}

.scroll {
    opacity: 1;
    visibility: visible;
    transform: translateY(0px);
}

.inner {
	max-width: auto;
	padding-top: 5px;
	padding-bottom: 5px;
	padding-right: 10%;
	padding-left: 10%;
	margin-top: 0;
	margin-right: auto;
	margin-bottom: 0;
	margin-left: auto;
}
.inner:after {
    content: "";
    clear: both;
    display: block;
}
 
/* header */
#top-head {
	top: -90px;
	position: absolute;
	width: 100%;
	margin: 90px auto 0;
	padding: 0;
	line-height: -1;
	z-index: 999;
}
#top-head {
	color: #000;
	text-decoration: none;
	box-shadow: 0 0px 5px 0 rgba(0, 0, 0, .3);
	background: #fff;
}
#top-head a {
	color: #fff;
	text-decoration: none;
}
#top-head .inner {
    position: relative;
	height:70px;
}
#top-head .logo {
    float: left;
    font-size: 36px;
	margin-top:10px;
}
#top-head .inner ul.contactBnr {
    float: right;
	width: 45%;
}
#top-head .inner ul.contactBnr li {
    float: right;
    font-size: 22px;
	width: 45%;
	margin-left: 3%;
	padding-top: 7px;
	text-align: center;
	height:60px;
	background:#9BABBF; 
	border: solid 1px #9BABBF;
    display: block;
}
#top-head .inner ul.contactBnr li span {
    font-size: 12px;
}
#top-head .inner ul.contactBnr li a {
	color: #ffffff;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all  0.3s ease;
}
#top-head .inner ul.contactBnr li a:hover {
	opacity: .5;
}
#top-head .inner ul.contactBnr li.bgW {
	background:#ffffff; 
	color: #000000;
	font-weight: bold;
}
#global-nav ul {
	list-style: none;
	position: absolute;
	right: 0;
	bottom: 10px;
	font-size: 14px;
	width: 93%;
	margin-right: auto;
	margin-left: auto;
	margin-bottom: 20px;
}
#global-nav ul li {
	float: left;
	width: 11%;
	font-size: 15px;
	text-align: center;
	margin-right: 0.5%;
	margin-left: 0.5%;
}
#global-nav ul li a {
	color: #000;
	padding-top: 2% !important;
	padding-right: 2%;
	padding-bottom: 2% !important;
	padding-left: 2%;
	display: block;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all  0.3s ease;
	border-bottom: 3px solid #9BABBF;
	font-style: italic;
}
#global-nav ul li a:hover {
	color: #999 !important;
	border-bottom: #D9D1C7 !important;
}
#global-nav ul li a span {
	background-color: rgba(255,255,255,0.8);
	padding-top: 1%;
	padding-right: 2%;
	padding-bottom: 1%;
	padding-left: 2%;
}
 
/* Fixed */
#top-head.fixed {
    margin-top: 0;
    top: 0;
    position: fixed;
    padding-bottom: 20px;
    height: 160px;
}
#top-head.fixed .logo {
    font-size: 24px;
    color: #333;
}
#top-head.fixed #global-nav ul li a {
    color: #000;
    padding: 0px;
}
 
/* Toggle Button */
#nav-toggle {
    display: none;
    position: absolute;
    right: 12px;
    top: 14px;
    width: 34px;
    height: 36px;
    cursor: pointer;
    z-index: 101;
}
#nav-toggle div {
    position: relative;
}
#nav-toggle span {
    display: block;
    position: absolute;
    height: 4px;
    width: 100%;
    background: #666;
    left: 0;
    -webkit-transition: .35s ease-in-out;
    -moz-transition: .35s ease-in-out;
    transition: .35s ease-in-out;
}
#nav-toggle span:nth-child(1) {
    top: 0;
}
#nav-toggle span:nth-child(2) {
    top: 11px;
}
#nav-toggle span:nth-child(3) {
    top: 22px;
}


@media screen and (max-width: 640px) {
    #top-head,
    .inner {
        width: 100%;
        padding: 0;
    }
    #top-head {
        top: 0;
        position: fixed;
        margin-top: 0;
    }
	#top-head .inner ul.contactBnr {
        float: none;
		width: 98%;
		margin-left: auto;
		margin-right: auto;
        padding-bottom: 10px;
}
	#top-head .inner ul.contactBnr li {
        font-size: 15px;
        margin-top: 2px;
		height: 40px;
		padding-top: 2px;
		float: none;
		width: 80%;
		margin-left: auto;
		margin-right: auto;
}
    /* Fixed reset */
    #top-head.fixed {
        padding-top: 0;
        background: transparent;
    }
    #mobile-head {
		background-color:rgba(255,255,255,0.8);
        width: 100%;
        height: 80px;
        z-index: 999;
        position: relative;
        box-shadow: 0 0px 5px 0 rgba(0, 0, 0, .3);
    }
    #top-head.fixed .logo,
    #top-head .logo {
        position: absolute;
        left: 13px;
        top: 13px;
        color: #333;
        font-size: 26px;
    }
#top-head .logo {
    margin-top:0px;
}
    #global-nav {
        position: absolute;
        /* 開いてないときは画面外に配置 */
        top: -500px;
		background-color:rgba(255,250,240,0.8);
        width: 100%;
        text-align: center;
        padding: 10px 0;
        -webkit-transition: .5s ease-in-out;
        -moz-transition: .5s ease-in-out;
        transition: .5s ease-in-out;
    }
    #global-nav ul {
        list-style: none;
        position: static;
        right: 0;
        bottom: 0;
        font-size: 14px;
		float:none;
		width:auto;
    }
    #global-nav ul li {
        float: none;
        position: static;
		width:auto;
		font-size:17px;
		margin-bottom:2px;
    }
    #top-head #global-nav ul li a,
    #top-head.fixed #global-nav ul li a {
        width: 100%;
        display: block;
        color: #333;
        padding: 10px 0;
    }
#global-nav ul li a:hover {
	color: #333 !important;
}
#global-nav ul li a {
	background-position: left center;
	text-decoration: none;
}
#global-nav ul li a:hover {
	background-position: right center;
}
    #nav-toggle {
        display: block;
    }
    /* #nav-toggle 切り替えアニメーション */
    .open #nav-toggle span:nth-child(1) {
        top: 11px;
        -webkit-transform: rotate(315deg);
        -moz-transform: rotate(315deg);
        transform: rotate(315deg);
    }
    .open #nav-toggle span:nth-child(2) {
        width: 0;
        left: 50%;
    }
    .open #nav-toggle span:nth-child(3) {
        top: 11px;
        -webkit-transform: rotate(-315deg);
        -moz-transform: rotate(-315deg);
        transform: rotate(-315deg);
    }
    /* #global-nav スライドアニメーション */
    .open #global-nav {
        /* #global-nav top + #mobile-head height */
        -moz-transform: translateY(600px);
        -webkit-transform: translateY(600px);
        transform: translateY(600px);
    }
}
.bgColorBnr {
	background: #556773 !important;
    border: solid 1px #556773 !important;
}

#topArea {
	height: auto;
	width: auto;
	padding-top: 160px;
	padding-right: 0px;
	padding-bottom: 30px;
	padding-left: 0px;
	margin-top: 40px;
	margin-bottom: 5px;
	margin-right: 5%;
	margin-left: 5%;
}
#topArea .waku {
	max-width: auto;
	min-height: 400px;
	margin-right: auto;
	margin-left: auto;
	background-size: contain;
}
#topArea .top-text {
	float: left;
	text-align: center;
	width: 40%;
	margin-right: auto;
	margin-left: auto;
	margin-top: 70px;
	font-size: 20px;
	margin-bottom: 0px;
	padding: 0%;
}
#topArea h1 {
	font-size: 30px;
	font-weight: normal;
	color: #000;
	text-align: center;
	width: auto;
	margin-top: 10px;
	margin-right: auto;
	margin-bottom: 20px;
	margin-left: auto;
	text-shadow: 1px 2px 3px #9BABBF;
	font-style: italic;
}
#topArea p {
	text-align: center;
	width: auto;
	margin-right: auto;
	margin-left: auto;
	margin-top: 25px;
	font-size: 20px;
	margin-bottom: 0px;
	font-style: italic;
}
#topArea .photo {
	float: right;
	text-align: center;
	width: 60%;
	margin-right: auto;
	margin-left: auto;
	margin-top: 25px;
	margin-bottom: 0px;
}
h2 {
	font-size: 30px;
	font-weight: normal;
	color: #333;
	text-align: left;
	width: auto;
	margin-top: 10px;
	margin-right: auto;
	margin-bottom: 10px;
	margin-left: auto;
	text-shadow: 1px 2px 3px #999;
	font-style: italic;
	padding: 0px;
}
h2.opt {
	color: #333;
	background: linear-gradient(transparent 60%, #E4EAF2 60%);
}

h4 {
	font-size: 16px;
	font-weight: normal;
	color: #708090;
	text-align: left;
	padding: 0px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 30px;
	margin-left: 0px;
}
h5 {
	font-size: 25px;
	font-weight: normal;
	text-align: left;
	width: auto;
	margin-top: 10px;
	margin-right: auto;
	margin-bottom: 10px;
	margin-left: auto;
	font-style: italic;
	padding: 0px;
	color: #333333;
}
h5:first-letter {
  font-size: 150%;
  color: #9BABBF;
}
#topArea .detailTop {
	text-align: left;
	width: 98%;
	margin-right: auto;
	margin-left: auto;
	font-size: 20px;
	margin-bottom: 0px;
	padding: 0%;
}
#topArea .detailTop h1 {
	font-size: 30px;
	text-align: left;
	text-shadow: 1px 2px 3px #999999;
	padding-bottom: 0px;
	margin-bottom: 0px;
	margin-top: 0px;
}
#topArea .detailTop p {
	text-align: left;
	font-size: 18px;
	margin-top: 10px;
	margin-bottom: 20px;
}

.waku2 {
	float: left;
	text-align: center;
	max-width: 48%;
	margin-right: 1%;
	margin-left: 1%;
}

.waku3 {
	float: right;
	text-align: center;
	max-width: 48%;
	margin-right: 1%;
	margin-left: 1%;
}
.merit {
	margin-top: 30px;
	margin-right: 10%;
	margin-left: 10%;
}
.merit img {
	float: left;
	margin-right: 20px;
}
.merit .textP {
	margin-left: 10px !important;
	padding-top: 30px !important;
	font-size: 18px !important;
}
#textArea {
	height: auto;
	width: 86%;
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
	margin-right: auto;
	margin-left: auto;
	margin-bottom: 30px;
	margin-top: 0px;
}
#textArea p {
	font-size: 18px;
	color: #666666;
}
#textArea2 {
	height: auto;
	width: 86%;
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
	margin-right: auto;
	margin-left: auto;
	margin-bottom: 30px;
	margin-top: 0px;
}
#textArea2 p {
	font-size: 18px;
	color: #666666;
}
#conArea {
	height: auto;
	width: auto;
	padding-top: 4%;
	padding-right: 0px;
	padding-bottom: 4%;
	padding-left: 0px;
	margin-right: 10%;
	margin-left: 10%;
	margin-bottom: 0px;
	margin-top: 0px;
}
#conArea p {
	font-size: 14px;
	color: #000;
	text-align: left;
	padding: 0px;
	margin-top: 30px;
	margin-right: auto;
	margin-bottom: 20px;
	margin-left: auto;
	line-height: 1.9em;
}
#conArea p a {
	color: #06C;
}
#conArea p a:hover {
	color: #999;
}
#conArea .contact {
	text-align: center;
	margin-right: 0px;
	margin-left: auto;
	font-size: 20px;
	margin-top: 30px;
	width: 30%;
}
#conArea .contact a {
	display: block;
	color: #333;
	text-decoration: none;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all  0.3s ease;
	font-weight: normal;
	border-bottom: 1px solid #9BABBF;
	font-style: italic;
	padding: 5%;
}
#conArea .contact a:hover {
	color: #999;
	border-bottom: 1px solid #E4EAF2;
}
#conArea .col2 {
	float: left;
	width: 48%;
	margin-top: 10px;
	margin-right: 1%;
	margin-bottom: 20px;
	margin-left: 1%;
}
#menuArea {
	height: auto;
	width: auto;
	padding-top: 4%;
	padding-right: 0px;
	padding-bottom: 4%;
	padding-left: 0px;
	margin-right: 10%;
	margin-left: 10%;
	margin-bottom: 0px;
	margin-top: 0px;
}
#menuArea p {
	font-size: 14px;
	color: #000;
	text-align: left;
	padding: 0px;
	margin-top: 30px;
	margin-right: auto;
	margin-bottom: 20px;
	margin-left: auto;
	line-height: 1.9em;
}
#menuArea p a {
	color: #06C;
}
#menuArea p a:hover {
	color: #999;
}
#menuArea .contact {
	text-align: center;
	margin-right: 0px;
	margin-left: auto;
	font-size: 20px;
	margin-top: 30px;
	width: 30%;
}
#menuArea .contact a {
	display: block;
	color: #333;
	text-decoration: none;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all  0.3s ease;
	font-weight: normal;
	border-bottom: 1px solid #AC9D33;
	font-style: italic;
	padding: 5%;
}
#menuArea .contact a:hover {
	color: #999;
	border-bottom: 1px solid #f0e68c;
}
#menuArea .col2 {
	float: left;
	width: 48%;
	margin-top: 10px;
	margin-right: 1%;
	margin-bottom: 20px;
	margin-left: 1%;
}
#menuArea .waku2 {
    width: 100% !important;
}
#menuArea ul {
    width: 90%;
	margin-top: 10px;
	margin-right: auto;
	margin-bottom: 20px;
	margin-left: auto;
}
#menuArea ul li {
	float: left;
	width: 30%;
	margin-top: 10px;
	margin-right: 1%;
	margin-bottom: 30px;
	margin-left: 2%;
	background: #E4EAF2;
    box-shadow: 3px 3px 5px 0 rgba(0, 0, 0, .3);
	height: 500px;
}
#menuArea ul li p {
	padding: 1%;
	font-size: 15px;
	margin: 0px;
}
#trainerArea {
	height: auto;
	width: auto;
	padding-top: 4%;
	padding-right: 0px;
	padding-bottom: 4%;
	padding-left: 0px;
	margin-right: 10%;
	margin-left: 10%;
	margin-bottom: 0px;
	margin-top: 0px;
}
#trainerArea p {
	font-size: 14px;
	color: #000;
	text-align: left;
	padding: 0px;
	margin-top: 30px;
	margin-right: auto;
	margin-bottom: 20px;
	margin-left: auto;
	line-height: 1.9em;
}
#trainerArea p a {
	color: #06C;
}
#trainerArea p a:hover {
	color: #999;
}
#trainerArea .contact {
	text-align: center;
	margin-right: 0px;
	margin-left: auto;
	font-size: 20px;
	margin-top: 30px;
	width: 30%;
}
#trainerArea .contact a {
	display: block;
	color: #333;
	text-decoration: none;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all  0.3s ease;
	font-weight: normal;
	border-bottom: 1px solid #AC9D33;
	font-style: italic;
	padding: 5%;
}
#trainerArea .contact a:hover {
	color: #999;
	border-bottom: 1px solid #f0e68c;
}
#trainerArea .col2 {
	float: left;
	width: 48%;
	margin-top: 10px;
	margin-right: 1%;
	margin-bottom: 20px;
	margin-left: 1%;
}
#customerArea {
	height: auto;
	width: auto;
	padding-top: 4%;
	padding-right: 0px;
	padding-bottom: 2%;
	padding-left: 0px;
	margin-right: 10%;
	margin-left: 10%;
	margin-bottom: 0px;
	margin-top: 0px;
}
#customerArea ul {
    width: 90%;
	margin-top: 10px;
	margin-right: auto;
	margin-bottom: 20px;
	margin-left: auto;
}
#customerArea ul li {
	float: left;
	width: 44%;
	margin-top: 10px;
	margin-right: 2%;
	margin-bottom: 30px;
	margin-left: 2%;
	padding: 1%;
	display: block;
	background: #DCE0F2;
    box-shadow: 3px 3px 5px 0 rgba(0, 0, 0, .3);
}
#customerArea ul li p {
	font-size: 15px;
	margin-top: 20px;
	margin-right: auto;
	margin-bottom: 10px;
	margin-left: auto;
}
.colorGray {
	color: #585858 !important;
}
#stafArea {
	height: auto;
	width: auto;
	padding-top: 4%;
	padding-right: 0px;
	padding-bottom: 4%;
	padding-left: 0px;
	margin-right: 10%;
	margin-left: 10%;
	margin-bottom: 0px;
	margin-top: 0px;
}
#stafArea p {
	font-size: 14px;
	color: #000;
	text-align: left;
	padding: 0px;
	margin-top: 30px;
	margin-right: auto;
	margin-bottom: 20px;
	margin-left: auto;
	line-height: 1.9em;
}
#stafArea p a {
	color: #06C;
}
#stafArea p a:hover {
	color: #999;
}
#stafArea .contact {
	text-align: center;
	margin-right: 0px;
	margin-left: auto;
	font-size: 20px;
	margin-top: 30px;
	width: 30%;
}
#stafArea .contact a {
	display: block;
	color: #333;
	text-decoration: none;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all  0.3s ease;
	font-weight: normal;
	border-bottom: 1px solid #AC9D33;
	font-style: italic;
	padding: 5%;
}
#stafArea .contact a:hover {
	color: #999;
	border-bottom: 1px solid #f0e68c;
}
#stafArea .col2 {
	float: left;
	width: 48%;
	margin-top: 10px;
	margin-right: 1%;
	margin-bottom: 20px;
	margin-left: 1%;
}
#newsArea {
	height: auto;
	width: auto;
	padding-top: 4%;
	padding-right: 0px;
	padding-bottom: 4%;
	padding-left: 0px;
	margin-right: 10%;
	margin-left: 10%;
	margin-bottom: 0px;
	margin-top: 0px;
}
#newsArea p {
	font-size: 14px;
	color: #000;
	text-align: left;
	padding: 0px;
	margin-top: 30px;
	margin-right: auto;
	margin-bottom: 20px;
	margin-left: auto;
	line-height: 1.9em;
}
#newsArea p a {
	color: #06C;
}
#newsArea p a:hover {
	color: #999;
}
#newsArea .contact {
	text-align: center;
	margin-right: 0px;
	margin-left: auto;
	font-size: 20px;
	margin-top: 30px;
	width: 30%;
}
#newsArea .contact a {
	display: block;
	color: #333;
	text-decoration: none;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all  0.3s ease;
	font-weight: normal;
	border-bottom: 1px solid #AC9D33;
	font-style: italic;
	padding: 5%;
}
#newsArea .contact a:hover {
	color: #999;
	border-bottom: 1px solid #f0e68c;
}
#newsArea .col2 {
	float: left;
	width: 48%;
	margin-top: 10px;
	margin-right: 1%;
	margin-bottom: 20px;
	margin-left: 1%;
}
#newsArea .news {
	width: auto;
	margin-top: 10px;
	margin-right: 4%;
	margin-bottom: 20px;
	margin-left: 4%;
	padding: 2%;
	background-color: #d6e7fa;
}
#newsArea .news p {
	border-bottom: dashed 1px #A4A4A4;
	padding-bottom: 10px;
	margin-bottom: 10px;
	margin-top: 20px;
}
.icon {
	background-color: #9BABBF;
	font-size: 11px;
	color: #FFFFFF;
	padding: 2px;
}

#accessArea {
	height: auto;
	width: auto;
	padding-top: 4%;
	padding-right: 0px;
	padding-bottom: 8%;
	padding-left: 0px;
	margin-right: 10%;
	margin-left: 10%;
	margin-bottom: 0px;
	margin-top: 0px;
}
#accessArea p {
	font-size: 16px;
	color: #000;
	text-align: left;
	padding: 0px;
	margin-top: 30px;
	margin-right: auto;
	margin-bottom: 20px;
	margin-left: auto;
	line-height: 1.9em;
}
#accessArea p a {
	color: #06C;
}
#accessArea p a:hover {
	color: #999;
}
#accessArea .waku3 {
    width: 100% !important;
}
#accessArea #gMap {
    width: 100% !important;
    height: 400px;
}
#contArea {
	margin: 0px;
	height: auto;
	width: auto;
	padding-top: 3%;
	padding-right: 0px;
	padding-bottom: 7%;
	padding-left: 0px;
	background-color: #f5f5f5;
}
#contArea .contact {
	text-align: center;
	margin-right: auto;
	margin-left: auto;
	font-size: 30px;
	margin-top: 40px;
	width: 80%;
}
#contArea .contact a {
	display: block;
	color: #000000;
	text-decoration: none;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all  0.3s ease;
	font-weight: bold;
}
#contArea .contact a:hover {
	color: #333;
}
#contArea p {
	font-size: 20px;
	font-weight: bold;
	color: #333;
	margin-top: 30px;
	margin-right: auto;
	margin-bottom: 30px;
	margin-left: auto;
	text-align: center;
}
#footer {
	background-color: #b7c5d6;
	margin: 0px;
	height: auto;
	width: auto;
	padding-top: 2%;
	padding-right: 0px;
	padding-bottom: 1%;
	padding-left: 0px;
}
#footer .toTop {
	text-align: center;
	margin-top: 10px;
	margin-right: auto;
	margin-bottom: 30px;
	margin-left: auto;
}
#footer .toTop a {
	font-size: 18px;
	color: #FFF;
	text-align: left;
	font-weight: bold;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all  0.3s ease;
	padding-top: 1%;
	padding-bottom: 0.5%;
	padding-left: 35px;
	width: 10%;
	text-decoration: underline;
}
#footer .toTop a:hover {
	color: #333;
}
#footer .text {
	font-size: 14px;
	color: #666;
	text-align: center;
	padding: 0px;
	width: auto;
	margin-top: 30px;
	margin-right: auto;
	margin-bottom: 0px;
	margin-left: auto;
}
#footer .text img {
	margin-bottom: 7px;
}
#footer .site {
	width: auto;
	margin-top: 0px;
	margin-right: auto;
	margin-bottom: 5px;
	margin-left: auto;
	font-size: 13px;
	text-align: center;
	padding: 0px;
}
#footer .site a {
	font-size: 13px;
	color: #333;
	text-decoration: none;
}
#footer .site a:hover {
	color: #666;
}
#footer p {
	font-size: 13px;
	color: #333;
	text-align: center;
	padding: 0px;
	width: auto;
	margin-top: 30px;
	margin-right: auto;
	margin-bottom: 0px;
	margin-left: auto;
}


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

.waku2 {
	float: none;
	text-align: center;
	max-width: 98%;
	margin-right: auto;
	margin-left: auto;
}

.waku3 {
	float: none;
	text-align: center;
	max-width: 98%;
	margin-right: auto;
	margin-left: auto;
}	
.merit {
	margin-right: auto;
	margin-left: auto;
}	
.merit img {
	float: none;
	margin-right: auto;
}
.merit .textP {
	padding-top: 0px !important;
	margin-top: 0px !important;
}
#menuArea ul {
	width: 98%;
}
#menuArea ul li {
	width: 46%;
	margin-right: 2%;
	margin-left: 2%;
}
#customerArea ul li {
	float: note;
	width: 97%;
	margin-right: auto;
	margin-left: auto;
}
	}
@media screen and (max-width: 480px){
	#topArea {
    padding-bottom: 5px;
    margin-bottom: 5px;
}
	#topArea .waku {
	min-height: auto !important;
}
	#topArea .top-text {
		margin-top: 20px;
		margin-right: auto;
		margin-left: auto;
		width: 98%;
		float: none;
	}
	#topArea .photo {
		margin-top: 20px;
		margin-right: auto;
		margin-left: auto;
		width: 98%;
		float: none;
	}
	#topPriArea .top-text {
		margin-top: 20px;
		margin-right: auto;
		margin-left: auto;
		width: 96%;
	}
	#topArea .contact {
		margin-right: auto;
		margin-left: auto;
		width: 80%;
	}
	#conArea .contact {
    text-align: right;
	margin-right: auto;
	margin-left: auto;
	margin-bottom: 10px;
	font-size: 14px;
	width: 80%;
	}
	#menuArea .contact {
    text-align: right;
	margin-right: auto;
	margin-left: auto;
	margin-bottom: 10px;
	font-size: 14px;
	width: 80%;
	}
	#trainerArea .contact {
    text-align: right;
	margin-right: auto;
	margin-left: auto;
	margin-bottom: 10px;
	font-size: 14px;
	width: 80%;
	}
#menuArea ul li {
	float: note;
	width: 97%;
	margin-right: auto;
	margin-left: auto;
}
}
.pc {
}
.smh{
	display: none;
}
@media screen and (max-width: 480px){
.pc {
	display: none;
}
.smh{
	display: block;
}
#conArea .col2 {
	float: none;
	width: 98%;
}
}