@charset "UTF-8";
/* ================================================================================
CSS information
 file name	: contents.css
 style info	: 個別ページ設定
 author		: SAHO+DESIGN
 author URI	: http://www.saho-design.com
================================================================================ */
#home{}
/* =========================================   TOP IMAGE SLIDER  ========================================= */
.slider div{
  position: relative;
	width:calc(100vw - 10px);
	height: 500px;
  margin: 0 auto;
  padding: 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom;
	border-radius: 10px;
}
.slider div.topImg01 {background-image: url(../images/home/topImg01_sp.png);}
.slider div.topImg02 {background-image: url(../images/home/topImg02_sp.png);}
.slider div.topImg03 {background-image: url(../images/home/topImg03_sp.png);}
.slider div.topImg04 {background-image: url(../images/home/topImg04_sp.png);}
/* =========================================   LOGO   ========================================= */
@media screen and (min-width: 600px) { /* ---------------   タブレット   --------------- */
  .slider div{
		width: calc(100vw - 20px);
		height: 500px;
  }
	.slider div.topImg01 {background-image: url(../images/home/topImg01_pc.png);}
	.slider div.topImg02 {background-image: url(../images/home/topImg02_pc.png);}
	.slider div.topImg03 {background-image: url(../images/home/topImg03_pc.png);}
	.slider div.topImg04 {background-image: url(../images/home/topImg04_pc.png);}
}
@media screen and (min-width: 1025px) {  /* ---------------   PC   --------------- */
  .slider div{
		width: calc(100vw - 80px);
		height: 850px;
  }
}

#home .newsLists {
	display: flex;
	flex-direction: column;
	width:100%;
}
#home .newsList {
	display: flex;
	flex-direction: column;
	margin-bottom: 10px;
}
#home .newsList .date {
	width:120px;
}
#home .newsList .title{
	flex: 1;
}
@media screen and (min-width: 600px) { /* ---------------   タブレット   --------------- */
	#home .newsLists {
		width:90%;
		margin:0 auto;
	}
	#home .newsList {
		flex-direction: row;
	}
}
@media screen and (min-width: 1025px) {  /* ---------------   PC   --------------- */
	#home .newsLists {
		width:60%;
	}
}

#message.container {
  padding-left: 0;
  padding-right: 0;
}
#message h3 {
	text-align:center;
}
#message p {
	line-height: 1.9;
}
#message .columns {
  margin: 0;
  padding: 0;
}
#message .is-left {
	padding-left: 20px;
  text-align: left;
}
#message .is-left p {
	padding-right: 30px;
}
#message .is-right {
  width: 100%;
  margin-top: 30px;
}
#message .is-right .messImg {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  height: 230px;
  background: url("../images/home/messBg.png") no-repeat right center;
  background-size: cover;
	border-radius: 0;
  z-index: -1;
}
@media screen and (min-width: 600px) { /* ---------------   タブレット   --------------- */
	#message h3 {
		text-align:left;
	}
	#message p {
		line-height: 2.0;
	}
	#message .columns {
		display: flex;
		align-items: flex-start; 
	}
  #message .is-left {
		flex: none;
		width: 400px;
    margin-left: 20px;
    padding: 0;
    text-align: left;
	}
	#message .is-left p {
		padding: 0;
	}
  #message .is-right {
		flex: none;
		width: calc(97% - 420px);
    margin: 0;
    margin-left: 3%;
	}
  #message .is-right .messImg {
		height: 400px;
		border-radius: 30px 0 0 30px;
  }
}
@media screen and (min-width: 1025px) {  /* ---------------   PC   --------------- */
  #message.container {
    max-width: 100%;
  }
	#message .columns {
		align-items: center; 
	}
	#message .is-left {
		width: 30%;
		margin-left: 12%;
	}
	#message .is-right {
		width: calc(95% - 42%);
    margin: 0;
    margin-left: 5%;
	}
	#message .is-right .messImg {
    height: 570px;
		border-radius: 40px 0 0 40px;
  }
}

#home .innerBoxRadius {
	margin: 15px 0;
	padding: 20px;
  background: #fff;
	border: 1px solid #DCD6D9;
	border-radius: 10px;
}



/* =========================================   ABOUT   ========================================= */
#about .topImg {
	background:url("../images/about/topImg_sp.png") no-repeat center;
	background-size:cover;
}
@media screen and (min-width: 600px) { /* ---------------   タブレット   --------------- */
	#about .topImg {
		background:url("../images/about/topImg_pc.png") no-repeat center;
		background-size:cover;
	}
}

#about .box {
  list-style: none;
  margin: 0;
  padding: 30px 20px;
	background:#EFF7FF;
  border-radius: 1rem;
}
#about ul.box li {
  position: relative;
  padding: 0 0 0 2em;
  margin: 0;
}
#about ul.box li::before {
	position: absolute;
	top: 50%;
  left: 0;
	transform: translateY(-50%);
	font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f04b";
  color: #00ACDB;
	vertical-align: middle;
}
#about .aboutColumns{
	display: block;
	margin: 10px 0;
	padding: 10px;
}
#about .aboutColumn{
	width:100%;
	margin: 0;
	padding: 5px 0;
}
@media screen and (min-width: 600px) { /* ---------------   タブレット   --------------- */
	#about .aboutColumns{
		display: flex;
		justify-content: space-between;
		flex-wrap:wrap;
    margin: 10px 0 20px;
		padding: 20px;
	}
	#about .aboutColumn{
		width:calc(50% - 30px);
		margin: 0;
		padding: 5px 0;
	}
}

#about .mediaList {
	position:relative;
	overflow:hidden;
	margin-bottom:30px;
}
#about .mediaList article {
	float: left;
	width: 100%;
}
#about .mediaList article a {
	display: -webkit-box;
	display: flex;
	-webkit-box-align: center;
	align-items: center;
	box-sizing: border-box;
	padding: 10px 0;
}
#about .mediaList figure {
	width: 25%;
}
#about .mediaList figure img {
	width: 100%;
	height: auto;
	border-radius: 6px;
	-webkit-border-radius: 6px;
	-moz-border-radius: 6px;
}
#about .mediaList .inner {
	box-sizing: border-box;
	width: 75%;
	padding-left: 4%;
}
#about .mediaList p {
	line-height: 1.5;
	letter-spacing: 0.1em;
}
@media screen and (min-width: 600px) { /* ---------------   タブレット   --------------- */
	#about .mediaList article {
		width: 50%;
	}
	#about .mediaList article a {
		padding: 20px 10px 10px;
	}
}



/* =========================================   MUSCLE   ========================================= */
#muscle .topImg {
	background:url("../images/muscle/topImg_sp.png") no-repeat center;
	background-size:cover;
}
@media screen and (min-width: 600px) { /* ---------------   タブレット   --------------- */
	#muscle .topImg {
		background:url("../images/muscle/topImg_pc.png") no-repeat center;
		background-size:cover;
	}
}

#muscle .innerBox-c {
	margin: 10px 0;
	padding: 20px 10px;
	background-color: #FCE462;
	border-radius: 8px;
}

#muscle .btn-m{
  position: relative;
  display: block;
  cursor: pointer;
  user-select: none;
	text-align: center;
  vertical-align: middle;
  text-decoration: none;
	color: #00365F;
	font-weight:600;
	letter-spacing: .1rem;
	width:90%;
	margin: 10px auto 0;
  padding: 1rem 20px;
	background: #fff;
  border-radius: 2.5rem;
}
#muscle .btn-m:hover{
}
#muscle .btn-m:after {
	position: absolute;
	top: 50%;
	right: 2rem;
	transform: translateY(-50%);
	font-family: "Font Awesome 5 Free";
  font-weight: 900;
	content: "\f0da";
}



/* =========================================   COURSE   ========================================= */
#course .topImg {
	background:url("../images/course/topImg_sp.png") no-repeat center;
	background-size:cover;
}
@media screen and (min-width: 600px) { /* ---------------   タブレット   --------------- */
	#course .topImg {
		background:url("../images/course/topImg_pc.png") no-repeat center;
		background-size:cover;
	}
}
#course .courseLists{
	display: block;
}
#course .courseList{
	width:100%;
	margin: 20px 0;
	padding: 20px;
	box-sizing: border-box;
	box-shadow: 0px 5px 15px 0 rgba(172, 163, 163, 0.35);
	border-radius: 2rem;
	text-align:center;
}
#course .courseList img{
	max-width: 30%;
}
#course p{
	text-align:left;
}
@media screen and (min-width: 600px) { /* ---------------   タブレット   --------------- */
	#course .courseLists{
		display: flex;
		justify-content: space-between;
		flex-wrap:wrap;
	}
	#course .courseList{
		width:calc(50% - 15px);
		margin: 15px 0;
		padding: 20px;
	}
	#course .courseList img{
		max-width:50%;
	}
}
@media screen and (min-width: 1025px) {  /* ---------------   PC   --------------- */
	#course .courseList{
		width:calc(50% - 30px);
		margin: 30px 0;
	}
	#course .courseList img{
		max-width:100%;
		padding-top:30px;
	}
}



/* =========================================   CLASS   ========================================= */
#class .topImg {
	background:url("../images/course/topImg_sp.png") no-repeat center;
	background-size:cover;
}
@media screen and (min-width: 600px) { /* ---------------   タブレット   --------------- */
	#class .topImg {
		background:url("../images/course/topImg_pc.png") no-repeat center;
		background-size:cover;
	}
}
#class h3{
	color:#281A14;
	font-size:115%;
	font-weight:600;
	margin-top:60px;
	margin-bottom:5px;
  border-bottom: 1px solid #00365F;
}
#class h4{
	color:#281A14;
	font-size:110%;
	font-weight:600;
	margin-top:30px;
	margin-bottom:5px;
	text-align:left;
}
#class .accordionTitle {
	text-align:left;
}
#class table, td, th {
	border: solid 1px #00365F;
	border-collapse: collapse;
	border-radius: 0;
}
#class th {
	color:#00365F;
	font-size:95%;
	margin:0;
	padding: 3px;
	text-align:center;
	background: #fff;
}
#class td {
	font-size:90%;
	padding: 3px;
	text-align:left;
}

#class .box {
  list-style: none;
  margin-top: 20px;
  padding: 20px;
	background:#EFF7FF;
  border-radius: 1rem;
}
#class ul.box li {
  position: relative;
  padding: 0 0 0 2em;
  margin: 0;
}
#class ul.box li:not(:first-child)::before {
	position: absolute;
	top: 50%;
  left: 0;
	transform: translateY(-50%);
	font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f14a";
  color: #00ACDB;
	vertical-align: middle;
}
#class ul.box li:first-child {
	font-size:105%;
	font-weight:600;
	padding-bottom:10px;
}

#class .courseLists{
	display: block;
}
#class .courseList{
	width:100%;
	margin: 20px 0;
	padding: 20px;
	background:#fff;
	border: solid 1px #d4dcda;
	border-radius: 2rem;
}
@media screen and (min-width: 600px) { /* ---------------   タブレット   --------------- */
	#class .courseLists{
		display: flex;
		justify-content: space-between;
		flex-wrap:wrap;
	}
	#class .courseList{
		width:calc(50% - 15px);
		margin: 15px 0;
		padding: 20px;
	}
}
@media screen and (min-width: 1025px) {  /* ---------------   PC   --------------- */
	#class .courseList{
		width:calc(50% - 20px);
		margin: 20px 0;
	}
}



/* =========================================   CLASS(fortherapist)   ========================================= */
#fortherapist .topImg {
	background:url("../images/course/topImg_sp.png") no-repeat center;
	background-size:cover;
}
@media screen and (min-width: 600px) { /* ---------------   タブレット   --------------- */
	#fortherapist .topImg {
		background:url("../images/course/topImg_pc.png") no-repeat center;
		background-size:cover;
	}
}
#fortherapist p{
	text-align:left;
	font-weight:400;
	margin-bottom:10px;
	padding-right:30px;
}
#fortherapist p.title{
	font-size:125%;
	font-weight:600;
	color:#00365F;
	margin-top:10px;
}
#fortherapist .btn.reverse:hover{
	color: #00365F;
	background: #fff;
	opacity:0.7;
	transition: all .5s ease-in-out;
}



/* =========================================   SELFCARE   ========================================= */
#selfcare .topImg {
	background:url("../images/selfcare/topImg_sp.png") no-repeat center;
	background-size:cover;
}
@media screen and (min-width: 600px) { /* ---------------   タブレット   --------------- */
	#selfcare .topImg {
		background:url("../images/selfcare/topImg_pc.png") no-repeat center top;
		background-size:cover;
	}
}



/* =========================================   SEITAT   ========================================= */
#seitai .topImg {
	background:url("../images/seitai/topImg_sp.png") no-repeat center;
	background-size:cover;
}
@media screen and (min-width: 600px) { /* ---------------   タブレット   --------------- */
	#seitai .topImg {
		background:url("../images/seitai/topImg_pc.png") no-repeat center;
		background-size:cover;
	}
}

#seitai h3.areaName{
	margin-top:50px;
	text-align:center;
}
#seitai .areaLists{
	display: flex;
	justify-content: center;
	align-items: center;
	margin:0 auto;
}
#seitai .areaList {
	width:700px;
}
#seitai .areaList .shop {
	position:relative;
	display: block;
	justify-content: center;
	margin-bottom: 10px;
	padding-bottom: 10px;
	border-bottom:1px solid #999;
}
#seitai h4.shopName{
	color: #00365F;
	padding-bottom:5px;
}
#seitai h4.shopName span{
	color:#281A14;
	font-size:70%;
}
#seitai .shop .shopSNS{
	text-align:center;
}
@media screen and (min-width: 600px) { /* ---------------   タブレット   --------------- */
	#seitai .areaList .shop {
		display: flex;
	}
	#seitai h4.shopName{
		color: #00365F;
		padding:0;
	}
	#seitai .shop .shopSNS{
		position:absolute;
		top:8px;
		right:0;
		text-align:right;
	}
}
#seitai h3.staffName{
	line-height:1.2;
}
#seitai h3 span{
	color: #281A14;
	font-size:1.5rem;
	font-weight:600;
}

#seitai .owner, #seitai .staff1 {
	display: flex;
	flex-direction: column;
  margin: 0;
  padding: 0;
}
#seitai .staff1 {
	margin:50px 0;
}
#seitai .owner p, #seitai .staff1 p {
	padding-top:20px;
}
#seitai .is-ownerL {
  width: 100%;
}
#seitai .is-ownerL .ownerImg {
  position: relative;
  top: 0;
  left: 0;
  width: 90%;
	margin: 0 auto;
  height: 300px;
  background: url("../images/seitai/owner-kobayashi_sp.png") no-repeat center;
	background-size: contain;
	border-radius: 20px;
  z-index: -1;
}
#seitai .is-ownerR {
	padding: 0 20px;
  text-align: left;
}
#seitai .staff1.is-reverse {
	flex-direction: column-reverse;
}
#seitai .is-staff1L {
	padding: 0 20px;
  text-align: left;
}
#seitai .is-staff1R {
  width: 100%;
}
#seitai .is-staff1R .staffImg {
  position: relative;
  top: 0;
  left: 0;
  width: 90%;
	margin: 0 auto;
  height: 300px;
	background: url("../images/seitai/staff-sato_sp.png") no-repeat top;
	background-size: contain;
	border-radius: 20px;
  z-index: -1;
}
@media screen and (min-width: 600px) { /* ---------------   タブレット   --------------- */
	#seitai	h3 span{
			font-size:1.6rem;
		}
	#seitai .owner, #seitai .staff1 {
		display: flex;
		align-items: flex-start;
		flex-direction: row;
	}
  #seitai .is-ownerL {
		flex: none;
		width: calc(97% - 420px);
    margin: 0;
    margin-right: 3%;
	}
  #seitai .is-ownerL .ownerImg {
	  width: 100%;
		height: 600px;
		background: url("../images/seitai/owner-kobayashi_pc.png") no-repeat center;
		background-size: cover;
		border-radius: 0 30px 30px 0;
  }
  #seitai .is-ownerR {
		flex: none;
		width: 400px;
    text-align: left;
	}
	#seitai .staff1.is-reverse {
		flex-direction: row;
	}
	#seitai .staff1 {
		margin:100px 0;
	}
  #seitai .is-staff1L {
		flex: none;
		width: 400px;
    text-align: left;
	}
  #seitai .is-right {
		flex: none;
		width: calc(97% - 420px);
    margin: 0;
    margin-left: 3%;
	}
  #seitai .is-staff1R .staffImg {
	  width: 100%;
		height: 600px;
		background: url("../images/seitai/staff-sato_pc.png") no-repeat top;
		background-size: cover;
		border-radius: 30px 0 0 30px;
  }
}
@media screen and (min-width: 1025px) {  /* ---------------   PC   --------------- */
	#seitai .owner, #seitai .staff1 {
		align-items: center; 
	}
	#seitai .is-ownerR {
		width: 55%;
		margin-right: 10%;
	}
	#seitai .is-ownerL {
		width: calc(95% - 65%);
    margin: 0;
    margin-right: 5%;
	}
	#seitai .is-ownerL .ownerImg {
    height: 570px;
		border-radius: 0 40px 40px 0;
  }
	#seitai .is-staff1L {
		width: 55%;
		margin-left: 10%;
	}
	#seitai .is-staff1R {
		width: calc(95% - 65%);
    margin: 0;
    margin-left: 5%;
	}
	#seitai .is-staff1R .staffImg {
    height: 570px;
		border-radius: 40px 0 0 40px;
  }
}



/* =========================================   CONTACT   ========================================= */
#contact {
	margin-top:50px;
}



/* =========================================   STUDENT   ========================================= */
#student .topImg {
	background:url("../images/student/topImg_sp.png") no-repeat center;
	background-size:cover;
}
@media screen and (min-width: 600px) { /* ---------------   タブレット   --------------- */
	#student .topImg {
		background:url("../images/student/topImg_pc.png") no-repeat center;
		background-size:cover;
	}
}
#student a:hover{
	text-decoration:underline;
}

#student h3{
	color:#281A14;
	font-size:115%;
	font-weight:600;
	margin-top:60px;
	margin-bottom:5px;
  border-bottom: 1px solid #00365F;
}
@media screen and (min-width: 1025px) {  /* ---------------   PC   --------------- */
	#student h3{
		margin-top:80px;
		text-align:center;
	}
}



/* =========================================   BLOG   ========================================= */
#blog {
	margin-top:50px;
}
#blog .blogWrap {
	display: block;
}
#blog img.aligncenter{
	text-align:center;
}
#blog h2.blogTitle {
	font-size: 130%;
	font-weight:600;
	margin:0;
	padding-bottom:3px;
	border-bottom: 2px solid #3f312b;
	text-align:left;
}
#blog h2.blogTitle a{
	color:#00365F;
}
#blog h2{
	font-size:140%;
	font-weight:600;
	color:#00365F;
	margin:0;
	padding:20px 0 0;
}
#blog h3{
	font-size:120%;
	font-weight:600;
	color:#00365F;
	margin:0;
	padding:15px 0 0;
}
#blog h4{
	font-size:110%;
	font-weight:400;
	color:#00365F;
	margin:0;
	padding:10px 0 0;
}
#blog p.blogDate{
	font-size: 80%;
	font-weight: 400;
	margin:0 0 10px;
	text-align:right;
}
#blog p {
	letter-spacing: 1px;
	padding:0 0 5px;
}
#blog hr.blogLine{
  border: none;
  display: block;
  height: 1px;
	margin: 50px 0;
  background-color:#F9FCFF;
}
@media screen and (min-width: 600px) { /* ---------------   タブレット   --------------- */
	#blog .blogWrap{
		display: flex;
  }
	#blog .blogWrap .blogWrap-main {
    width: 70%;
    padding-right: 5%
	}
	#blog .blogWrap .blogWrap-aside {
    width: 25%;
	}
}
@media screen and (min-width: 1025px) {  /* ---------------   PC   --------------- */
	#blog .blogWrap .blogWrap-main {
    width: 70%;
    padding-right: 10%;
	}
	#blog .blogWrap .blogWrap-aside {
    width: 25%;
	}
}
/* =========================================   MENU   ========================================= */
#blog .blogWrap-aside {
	display: block;
  padding-top: 50px;
}
#blog .blogWrap-aside a {
	display: block;
	border-radius: 2px;
}
#blog .blogWrap-aside a:hover {
	color: #fff;
	background-color: #0075C2;
}
#blog .blogWrap-aside ul {
	padding-bottom:25px;
}
#blog .blogWrap-aside li {
	list-style-type: none;
	padding: 3px 0;
}
#blog .blogWrap-aside ul li ul {
	margin-left: 10px;
	padding-bottom: 0;
}
#blog .blogWrap-aside ul li ul li {
	list-style-type: none;
	padding-left: 5px;
}
#blog h3.side-menu-label{
	font-size: 2.4rem;
	margin: 0;
	padding: 20px 0 0;
}
#blog h3.side-menu-label:first-child {
	padding: 0;
}
@media screen and (min-width: 600px) { /* ---------------   タブレット   --------------- */
  #blog .blogWrap-aside {
    padding-top: 0;
  }
}



/* =========================================   ERROR   ========================================= */
#error .topImg {
	background:url("../images/error/topImg_sp.png") no-repeat center;
	background-size:cover;
}
@media screen and (min-width: 600px) { /* ---------------   タブレット   --------------- */
	#error .topImg {
		background:url("../images/error/topImg_pc.png") no-repeat center;
		background-size:cover;
	}
}