html {
	font-family : "Hiragino Sans","sans-serif",'Shin Go Medium';
	font-size: 12pt;
	color: black;
}
.btn-square {
	font-size: 14pt;
	font-weight: 600;
	display: inline-block;
	padding: 0.5em 2em;
	text-decoration: none;
	background: #668ad8;/*ボタン色*/
	color: #FFF;
	border-bottom: solid 4px #627295;
	border-radius: 3px;
}
.btn-square:active {
  /*ボタンを押したとき*/
	-webkit-transform: translateY(4px);
	transform: translateY(4px);/*下に動く*/
	border-bottom: none;/*線を消す*/
}
.sawayakasou {
    text-align: center;
}
.sawayakasou img {
	padding: 30px;
    width : 50%;
}
.sawayakasou2 {
    text-align: center;
}
.sawayakasou2 img{
	padding: 30px;
    width : 90%;
}
.sawayakasoulist {
	font-family: 'Shin Go Regular';
	font-size : 11pt;
}
.sawayakasoulist ul {
	margin-bottom: 2em;
	list-style-type: none;
}
.sawayakasoulist li:before {
	font-family: "Font Awesome 5 Free";
	content: '\f0c8';
	font-weight: 900;
	padding-right: 4px;
}
.loose-leaf{
    font-family: 'Shin Go Medium';
	font-size : 12pt;
    background: #f8f0d7;
	border-left: 5px dotted rgba(0,0,0,.1);
	box-shadow: 0 0 0 5 #f8f0d7;
	padding: 1em;
	margin: 1em 5px;
}
.box {
	margin-left: auto;
	margin-right: auto;
	width: 70%;
	height: 120px;
	border-radius: 15px;
	box-shadow: 0 2px 30px rgba(0, 0, 0, 0.2);
	background: #fbfcee;
	position: relative;
	overflow: hidden;
	-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
}

.wave {
	opacity: .4;
	position: absolute;
	top: 3%;
	left: 50%;
	background: #77EC9F;
	width: 100%;
	height: 850px;
	margin-left: -50%;
	margin-top: -100%;
  -webkit-transform-origin: 50% 48%;
		transform-origin: 50% 48%;
	border-radius: 43%;
	-webkit-animation: drift 5000ms infinite linear;
		animation: drift 5000ms infinite linear;
}

.wave.-three {
	-webkit-animation: drift 6000ms infinite linear;
		animation: drift 6000ms infinite linear;
}

.wave.-two {
	-webkit-animation: drift 7000ms infinite linear;
		animation: drift 7000ms infinite linear;
	opacity: .1;
	background: yellow;
}

.box:after {
	content: '';
	display: block;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: -webkit-gradient(linear, left top, left bottom, from(#88E7EE), color-stop(55%, rgba(83,169,255,0.14)), to(rgba(255, 255, 255, 0.5)));
	background: linear-gradient(to bottom, #88E7EE, rgba(221, 238, 255, 0) 80%, rgba(255, 255, 255, 0.5));
	z-index: 11;
	-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
}

.title {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	z-index: 30;
	line-height: 120px;
	text-align: center;
	-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	color: white;
	text-transform: uppercase;
	font-family: 'Playfair Display', serif;
	letter-spacing: .4em;
	font-size: 24px;
	font-weight: 600;
	text-shadow: 0 1px 0 rgba(0, 0, 0, 0.2);
	text-indent: .3em;
}

@-webkit-keyframes drift {
  from {
	-webkit-transform: rotate(0deg);
			 transform: rotate(0deg);
  }
  from {
	-webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes drift {
  from {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  from {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

.loose-leaf p{
	margin: 0;
	padding: 0;
}