@charset "utf-8";
.content-wrap img {
	width: 100%;
}
.content-wrap {
	padding-top: 160px;
	width: 810px;
	max-width: 80%;
	margin: 0 auto;
}
@media screen and ( max-width:991px ) {
.content-wrap {
	padding-top: 150px;
}
}
@media screen and ( max-width:480px ) {
.content-wrap {
	padding-top: 140px;
	max-width: 83%;
}
}
.content-wrap h2 {
	font-family:  'Cormorant Garamond', serif;
	font-size: 30px;
	color: #5087b4;
	margin-bottom: 40px;
}
.content-wrap h3 {
    font-size: 22px;
    color: #5087b4;
    border-top: 1px solid #5087b4;
	border-bottom: 1px solid #5087b4;
	margin-bottom: 40px;
	padding: 6px 0;
}
.yoga,.tsubo {
	margin-bottom: 80px;
}
/*------------
   about
-------------*/
.class-block {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding-bottom: 40px;
    margin-bottom: 40px;
    border-bottom: 1px solid #5087b4;
}
.class-block > div:nth-of-type(1) {
	width: 260px;
}
.class-block > div:nth-of-type(2) {
	width: calc(100% - 300px);
}
.class-block div h4, .syucyou h4 {
	font-size: 20px;
    color: #5087b4;
	margin-bottom: 15px;
}
@media screen and ( max-width:991px ) {
.class-block > div:nth-of-type(2) {
	width: calc(100% - 290px);
}
}
@media screen and ( max-width:480px ) {
.class-block > div:nth-of-type(1) {
	width: 100%;
	margin-bottom: 20px;
}
.class-block > div:nth-of-type(2) {
	width: 100%;
}
}
.sub-block {
	margin-bottom: 40px;
}
.sub-block h4 {
	font-size: 18px;
    color: #5087b4;
	margin-bottom: 10px;
}
.con-list li {
  padding-left: 1.8em;
  text-indent: -1.8em;
}
.sub-block.last {
    margin-bottom: 40px;
    border-bottom: 1px solid #5087b4;
	padding-bottom: 60px;
}
/*------------
   menu
-------------*/
.menu-block {
	display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	margin-bottom: 60px;
}
.menu-block > div:nth-of-type(1) {
	width: 35%;
}
.menu-block > div:nth-of-type(2) {
	width: calc(65% - 20px);
}
.menu-block div h5 {
  text-indent: -0.5em;
}
.yoga .menu-block:nth-of-type(1) div > div:not(:first-child) {
  margin-top: 30px;
}
@media screen and ( max-width:480px ) {
	.menu-block > div:nth-of-type(1) {
	width: 100%;
}
.menu-block > div:nth-of-type(2) {
	width: 100%;
}
.menu-block > div > h4 {
	margin-bottom: 30px;
	color:#5087b4;
}
}
.policy p {
  padding-left: 1em;
  text-indent: -1em;
}
.policy p:last-child {
	margin: 20px 0 80px;
}
/*------------
     Q&A
-------------*/
.content-wrap h2 span {
	font-family: YuMincho, "Yu Mincho", "Hiragino Mincho ProN", serif;	
	font-size: 25px;
}
/*---アコーディオン---*/
.accordion {
margin-bottom: 60px;
}
.toggle {
display: none;
}
.option {
position: relative;
margin-bottom: 20px;
}
.title,
.content {
-webkit-backface-visibility: hidden;
backface-visibility: hidden;
transform: translateZ(0);
transition: all 1s;/*展開した内容を閉じる時の速度*/
}
.title {
border: solid 1px #b0c9dd;
padding: 0.8em 2em 0.8em 3em;
display: block;
}
.title span {
	display: inline-block;
	color: #5087b4;
	text-indent: -1.8em;
}
.title::after,
.title::before {
content: "";
position: absolute;
right: 20px;
top: 18px;
width: 1px;
height: 17px;
background-color: #b0c9dd;
transition: all 0.3s;/*プラスアイコンアニメーション速度*/
}
.title::after {
transform: rotate(90deg);
}
.content {
max-height: 0;
overflow: hidden;
}
.content p {
margin: 0;
padding: 0.8em 0.8em 0.8em 3em;
background: #f3f1e6;
}
.content p span {
	display: inline-block;
	color: #5087b4;
	text-indent: -1.8em;
}
.toggle:checked + .title + .content {
max-height: 500px;/*展開した時の最大の高さ*/
transition: all 1.5s;/*展開する速度*/
}
.toggle:checked + .title::before {
transform: rotate(90deg);
}
/*---//アコーディオン---*/