@charset "utf-8";


/**************************************************50
 * layout
 **************************************************/
body{
	color: #2E2E2E;
	font-size: 16px;
	line-height: 1.6;
	overflow-x: hidden;
	width: 100%;
}
#page-wrap {
	min-height: 100%;
	overflow-x: hidden;
	width: 100%;
}
#container{
	min-height: 100%;
	overflow: hidden;
	width: 100%;
}
.wrap{
	margin-left: auto;
	margin-right: auto;
	padding-left: -webkit-calc((100% - 1200px) / 2);
	padding-left: calc((100% - 1200px) / 2);
	padding-right: -webkit-calc((100% - 1200px) / 2);
	padding-right: calc((100% - 1200px) / 2);
	min-width: 1200px;
}
.wrap:after{
	clear: both;
	content: "";
	display: block;
}


/**************************************************50
 * common
 **************************************************/
/* -- color -- */
.gray.mdi-star{
	color: #DCDCDC;
}
.green{
	color: #259225;
}
.orange{
	color: #FF7C3C;
}

/* -- link -- */
a{
	color: #2E2E2E;
}
[class^="link_"]{
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	border-radius: 1005px;
	box-shadow: 0px 3px 6px -2px rgba(0,0,0,0.2);
	display: inline-block;
	height: 70px;
	line-height: 70px;
	position: relative;
	text-align: center !important;
	text-decoration: none;
	transition: box-shadow 0.2s ease-out 0s;
	width: 400px;
}
[class^="link_"]:hover{
	box-shadow: 0px 3px 6px 0px rgba(0,0,0,0.2);
}
[class^="link_"]:before,
[class^="link_"]:after{
	font-size: 150%;
	position: absolute;
	top: 50%;
	-ms-transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}
[class^="link_"]:before{
	left: 0.5em;
}
[class^="link_to"]{
	background-color: #00B9E6;
	color: #FFFFFF;
}
[class^="link_to"]:after{
	border-radius: 50%;
	content: "\F142";
	display: block;
	font-size: 150%;
	height: 1em;
	line-height: 1;
	width: 1em;
}
[class^="link_box"]{
	background-color: #FFFFFF;
	border: 1px solid #2E2E2E;
	border-radius: 5px;
	color: #2E2E2E;
}
.link_back:before{
	content: "\F142";
	font-size: 150%;
}
[class^="link_to"]:after{
	right: 1em;
}
[class^="link_box"]:after{
	content: "\F142";
	right: 1em;
}
.link_box_round{
	border-radius: 100px;
}

/* -- pager -- */
.pager{
	margin-top: 50px;
}
.pager_num{
	text-align: center;
}
.pager_link{
	margin: 5px auto;
	text-align: center;
}
.pager_link > *{
	border-style: solid;
	border-width: 1px;
	display: inline-block;
	height: 36px;
	line-height: 36px;
	vertical-align: middle;
	width: 36px;
}
.pager_link > strong{
	border: none;
}
.pager_link > a{
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	background-color: #FFFFFF;
	border-color: #00B9E6;
	border-radius: 5px;
	color: #00B9E6;
	text-decoration: none;
	transition: all 0.2s ease-out 0s;
}
.pager_link > a:hover{
	background-color: #00B9E6;
	border-color: #00B9E6;
	color: #FFFFFF;
}
.pager_link > a.mdi{
	font-size: 150%;
}
.pager_link > span{
	background-color: #00B9E6;
	border-color: #00B9E6;
	border-radius: 5px;
	color: #FFFFFF;
}
.pager_link > * + *{
	margin-left: 20px;
}

/* - form - */
label.select_box{
	display: inline-block;
	position: relative;
	vertical-align: sub;
}
label.select_box:after{
	content: "\F35D";
	font-size: 160%;
	height: 30px;
	line-height: 30px;
	pointer-events: none;
	position: absolute;
	top: 50%;
	right: 2px;
	-ms-transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}
select{
	background-color: #FFFFFF;
	border: 1px solid #C0C0C0;
	-webkit-appearance: none;
	border-radius: 0;
	color: #2E2E2E;
	cursor: pointer;
	font-size: 16px;
	height: 2em;
	line-height: 2em;
	padding: 0 2.1em 0 0.5em;
}
select::-ms-expand{
	display: none;
}
input[type="text"],
input[type="password"]{
	border: 1px solid #C0C0C0;
	-webkit-appearance: none;
	border-radius: 0;
	font-size: 16px;
	height: 2em;
	line-height: 2em;
	padding: 0 1em;
	transition: all 0.2s ease-out 0s;
	vertical-align: baseline;
	width: 100%;
}
input[type="text"]:hover,
input[type="password"]:hover,
textarea:hover{
	box-shadow: 0 10px 10px -10px rgba(0, 0, 0, 0.7);
}
input[type="text"]:focus,
input[type="password"]:focus,
textarea:focus{
	border-color: #424242;
}
textarea{
	border: 1px solid #C0C0C0;
	-webkit-appearance: none;
	border-radius: 0;
	font-size: 16px;
	min-height: 12em;
	margin: 0;
	padding: 0.5em 1em;
	resize: vertical;
	transition: all 0.3s ease-out 0s;
	width: 100%;
}

/** -- checkbox -- **/
input[type="checkbox"]{
	background: none;
	border: none;
	border-radius: 0;
	display: none;
	height: 0;
	margin: 0;
	outline: none;
	padding: 0;
	width: 0;
}
input[type="checkbox"] + label{
	cursor: pointer;
	display: inline-block;
	position: relative;
	padding: 0 1em 0 2.3em;
	margin-top: 3px;
	margin-bottom: 3px;
}
input[type="checkbox"] + label{
	position: relative;
	padding: 0 1em 0 2.3em;
	margin-top: 3px;
	margin-bottom: 3px;
}
input[type="checkbox"] + label:before,
input[type="checkbox"] + label:after{
	position: absolute;
	top: 50%;
	-ms-transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}
input[type="checkbox"] + label:before{
	content: "\F131";
	font-size: 160%;
	line-height: 1;
	left: 0.2em;
	z-index: 1;
}
input[type="checkbox"] + label:after{
	content: "\F132";
	color: transparent;
	font-size: 240%;
	line-height: 1;
	left: -0.05em;
	z-index: 2;
	transition: all 0.1s ease-out 0s;
}
.input_check[class*="error_"]{
	background-color: #FFEBEE;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none){
	input[type="checkbox"] + label:after{
		font-size: 40% !important;
	}
}
input[type="checkbox"]:checked + label:before{
	color: transparent !important;
}
input[type="checkbox"]:checked + label:after{
	color: #00B9E6;
	font-size: 160%;
	line-height: 1;
	left: 0.2em;
}
input[type="checkbox"]:disabled + label{
	background-color: #F5F5F5;
	color: #9E9E9E;
}
input[type="checkbox"]:focus + label{
	box-shadow: 0 10px 10px -10px rgba(0, 0, 0, 0.5);
}
input[type="checkbox"]:disabled + label:hover,
input[type="checkbox"]:disabled + label:focus{
	box-shadow: none;
	cursor: default;
}
/*
:-ms-input-placeholder{
	color: #616161;
}
:-webkit-input-placeholder{
	color: #616161;
}
:placeholder-shown{
	color: #616161;
}
*/

/** -- radio -- **/
input[type="radio"]{
	background: none;
	border: none;
	border-radius: 0;
	display: none;
	height: 0;
	margin: 0;
	outline: none;
	padding: 0;
	width: 0;
}
input[type="radio"] + label{
	cursor: pointer;
	display: inline-block;
	position: relative;
	padding: 0 1em 0 2.3em;
	margin-top: 3px;
	margin-bottom: 3px;
}
input[type="radio"] + label:before,
input[type="radio"] + label:after{
	position: absolute;
	top: 50%;
	-ms-transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}
input[type="radio"] + label:before{
	content: "\F43D";
	font-size: 160%;
	line-height: 1;
	left: 0.2em;
	z-index: 1;
}
input[type="radio"] + label:after{
	content: "\F43E";
	color: transparent;
	font-size: 240%;
	line-height: 1;
	left: -0.05em;
	z-index: 2;
	transition: all 0.1s ease-out 0s;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none){
	input[type="radio"]:checked + label:after{
		font-size: 40% !important;
	}
}
input[type="radio"]:checked + label:before{
	color: transparent !important;
}
input[type="radio"]:checked + label:after{
	color: #00B9E6;
	font-size: 160%;
	line-height: 1;
	left: 0.2em;
}
input[type="radio"]:disabled + label{
	background-color: #F5F5F5;
	color: #9E9E9E;
}
input[type="radio"]:focus + label{
	box-shadow: 0 10px 10px -10px rgba(0, 0, 0, 0.5);
}
input[type="radio"]:disabled + label:hover,
input[type="radio"]:disabled + label:focus{
	box-shadow: none;
	cursor: default;
}
.input_radio[class*="error_"]{
	background-color: #FFEBEE;
}

/* -- btn -- */
[class^="btn_"]{
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	background-color: #676767;
	border-radius: 100px;
	box-shadow:0px 3px 6px -2px rgba(0,0,0,0.4);
	color: #FFFFFF;
	cursor: pointer;
	display: inline-block;
	font-size: 100%;
	height: 40px;
	line-height: 40px;
	margin: 10px;
	text-align: center;
	text-decoration: none;
	transition: box-shadow 0.2s ease-out 0s;
	width: 160px;
}
[class^="btn_"]:hover,
[class^="btn_"]:focus{
	box-shadow: 0px 3px 6px 0px rgba(0,0,0,0.4);
}
[class^="btn_"]:active{
	position: relative;
}
[class^="btn_"]:before{
	margin-right: 0.3em;
}
.btn_confirm:before{
	content: "\F135";
	font-size: 140%;
	line-height: 1;
	vertical-align: sub;
}
.btn_reset{
	background-color: #E8F6FF;
	color: #6482DD;
}
.btn_reset:before{
	content: "\F459";
	font-size: 140%;
	line-height: 1;
	vertical-align: sub;
}
.btn_entry:before{
	content: "\F48A";
	font-size: 120%;
	line-height: 1;
	vertical-align: text-bottom;
}
.btn_back:before{
	content: "\F141";
	font-size: 160%;
	line-height: 1;
	vertical-align: sub;
}

/* -- list -- */
.list_num{
	counter-reset: num;
}
.list_num li{
	padding-left: 1.5em;
	text-indent: -1.5em;
}
.list_num li:before{
	content: counter(num) ".";
	counter-increment: num;
	display: inline-block;
	text-align: right;
	text-indent: 0;
	width: 1.5em;
}
.list_dot li{
	padding-left: 1em;
	text-indent: -1em;
}
.list_dot li:before{
	content: "\F44A";
	text-indent: 0;
}

.handling_shop{
	background-color: #EEEEEE;
	display: inline-block;
	font-size: 75%;
	height: 36px;
	line-height: 36px;
	text-align: center;
	vertical-align: middle;
	width: 240px;
}
.handling_shop:before{
	background: url("https://kasen.shop/images/user/icon/bottle.png") center center no-repeat;
	background-size: contain;
	content: "";
	display: inline-block;
	height: 1.5em;
	vertical-align: text-bottom;
	width: 1.5em;
}


/**************************************************50
 * header
 **************************************************/
header{
	padding-top: 140px;
	text-align: left;
}
#header_wrap{
	background-color: #FFFFFF;
	border-bottom: 1px solid #E5E5E5;
	height: 140px;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 1000;
}
#header_wrap:after{
	clear: both;
	content: "";
	display: block;
}
#header_wrap h1{
	color: #00B9E6;
	font-size: 75%;
	height: 35px;
	line-height: 35px;
}
#header_logo{
	float: left;
	width: 280px;
}
#header_info{
	float: right;
	margin-bottom: 20px;
	width: -webkit-calc(100% - 280px - 20px);
	width: calc(100% - 280px - 20px);
}
#header_info #header_info_hour{
	display: inline-block;
	font-size: 75%;
	margin-left: 20px;
	text-align: center;
	vertical-align: middle;
	width: 170px;
}
#header_info #header_info_hour p{
	background-color: #212121;
	color: #FFFFFF;
	height: 18px;
	line-height: 18px;
}
#header_info .mdi-cellphone-iphone{
	display: inline-block;
	font-size: 200%;
	line-height: 36px;
	margin-left: 20px;
	vertical-align: middle;
}
#header_info .link_box_round{
	height: 40px;
	line-height: 38px;
	margin-left: 20px;
	width: 160px;
}
header nav{
	float: right;
	width: -webkit-calc(100% - 280px - 20px);
	width: calc(100% - 280px - 20px);
}
header nav a{
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	display: inline-block;
	font-size: 87.5%;
	padding: 0 1.5em;
	position: relative;
	text-align: center;
	text-decoration: none;
	transition: color 0.2s ease-out 0s;
}
header nav a:before{
	content: "|";
	line-height: 1;
	position: absolute;
	top: 50%;
	left: 0;
	-ms-transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}
header nav a:last-child:after{
	content: "|";
	line-height: 1;
	position: absolute;
	top: 50%;
	right: 0;
	-ms-transform: translate(50%, -50%);
	-webkit-transform: translate(50%, -50%);
	transform: translate(50%, -50%);
}
header nav a:hover,
header nav a.active{
	color: #00B9E6;
}
header nav a:hover:before,
header nav a.active:before,
header nav a:hover:after,
header nav a.active:after{
	color: #212121;
}


/**************************************************50
 * middle
 **************************************************/
#middle_block{
	min-height: -webkit-calc(100vh - 140px - 120px);
	min-height: calc(100vh - 140px - 120px);
	text-align: center;
}
#contents{
	margin-left: auto;
	margin-right: auto;
}

/* -- title -- */
.title_section{
	text-align: center;
	font-size: 150%;
	line-height: 1.2;
	margin-bottom: 20px;
}
.title_section:after{
	background-color: #2E2E2E;
	content: "";
	display: block;
	height: 1px;
	margin: 5px auto 0;
	width: 2em;
}

/* -- breadcrumbs -- */
.breadcrumbs{
	background-color: #F1F1F1;
	font-size: 75%;
	padding-top: 5px;
	padding-bottom: 5px;
	text-align: left;
}
.breadcrumbs:before{
	content: "\F2DC";
	font-size: 125%;
	line-height: 1;
	vertical-align: middle;
}
.breadcrumbs > *{
	display: inline-block;
	position: relative;
}
.breadcrumbs > *:not(:first-child){
	margin-left: 2em;
}
.breadcrumbs > *:not(:first-child):before{
	content: "\F142";
	font-size: 150%;
	line-height: 1;
	position: absolute;
	top: 50%;
	left: -1em;
	-ms-transform: translate(-12%, -50%);
	-webkit-transform: translate(-12%, -50%);
	transform: translate(-12%, -50%);
}

.course_box{
	border: 4px solid #00B9E6;
	background-color: #FFFFFF;
	color: #00B9E6;
	font-size: 137.5%;
	height: 90px;
	line-height: 82px;
}
.course_box strong{
	font-size: 120%;
}
.course_box strong:before{
	content: "\F35F";
	padding: 0 1em;
}


/**************************************************50
 * slider
 **************************************************/
#slider{
	overflow-x: hidden;
	overflow-y: hidden;
	position: relative;
	height: 730px;
	margin: 0 auto 50px;
	width: 100%;
	min-width: 1200px;
	max-width: 1280px;
}
#slider li.slick-slide{
	width: 100%;
}
#slider li.slick-slide img{
	width: 100%;
}
#slider li.slick-slide > a > img{
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	transition: opacity 0.2s ease-out 0s;
}
#slider li.slick-slide > a:hover > img{
	opacity: 0.7;
}
#slider .slick-dots{
	bottom: 0;
}


/**************************************************50
 * intro
 **************************************************/
#intro{
	margin-bottom: 50px;
}
#intro strong{
	font-size: 225%;
	font-weight: normal;
	line-height: 1.2;
}


/**************************************************50
 * content_link
 **************************************************/
#content_link{
	background: url("https://kasen.shop/images/user/back/back_repeat.gif") center center repeat;
	padding-top: 50px;
	padding-bottom: 50px;
}
#content_link ul{
}
#content_link ul > li{
	display: inline-block;
	width: 350px;
}
#content_link ul > li:not(:nth-child(3n+1)){
	margin-left: 20px;
}
#content_link ul > li img{
	width: 100%;
}
#content_link ul > li a{
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	background-color: #FFFFFF;
	border: 1px solid #2E2E2E;
	box-shadow:0px 2px 6px -2px rgba(0,0,0,0.2);
	display: block;
	height: 70px;
	line-height:68px;
	position: relative;
	text-align: center;
	text-decoration: none;
	transition: box-shadow 0.2s ease-out 0s;
	width: 100%;
}
#content_link ul > li a:hover{
	box-shadow: 0px 3px 6px 0px rgba(0,0,0,0.2);
}
#content_link ul > li a:after{
	content: "\F142";
	font-size: 150%;
	line-height: 1;
	position: absolute;
	top: 50%;
	right: 0.5em;
	-ms-transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}


/**************************************************50
 * purpose
 **************************************************/
#purpose{
	background-color: #676767;
	color: #FFFFFF;
	font-size: 200%;
	line-height: 1.2;
	padding-top: 20px;
	padding-bottom: 20px;
	position: relative;
	text-align: center;
}
#purpose:after{
	border-color: #676767 transparent transparent transparent;
	border-style: solid;
	border-width: 30px 40px 0 40px;
	content: "";
	display: block;
	height: 0;
	position: absolute;
	bottom: 0;
	left: 50%;
	-ms-transform: translate(-50%, 100%);
	-webkit-transform: translate(-50%, 100%);
	transform: translate(-50%, 100%);
	width: 0;
	z-index: 1;
}


/**************************************************50
 * concept
 **************************************************/
#concept{
	background: #E1F5FC url("https://kasen.shop/images/user/back/water.png") center top no-repeat;
	background-size: 1400px auto;
	padding-top: 120px;
	padding-bottom: 50px;
	position: relative;
}
#concept:before,
#concept:after{
	background-position: center center ;
	background-repeat: no-repeat;
	background-size: contain;
	content: "";
	display: block;
	height: 320px;
	position: absolute;
	top: 300px;
	width: 34em;
}
#concept:before{
	background-image: url("https://kasen.shop/images/user/concept/img_010.png");
	right: -webkit-calc(50% + 200px);
	right: calc(50% + 200px);
}
#concept:after{
	background-image: url("https://kasen.shop/images/user/concept/img_020.png");
	left: -webkit-calc(50% + 200px);
	left: calc(50% + 200px);
}
#concept h3{
	color: #00B9E6;
	font-size: 200%;
	font-weight: bold;
	line-height: 1.2;
	margin-bottom: 10px;
}
#concept > strong.serif{
	font-size: 137.5%;
	line-height: 1.2;
}
#concept p{
	font-size: 87.5%;
	margin: 10px auto 0;
	text-align: left;
	width: 480px;
}
#concept p strong{
	color: #00B9E6;
}


/**************************************************50
 * suisonia
 **************************************************/
#suisonia{
	background: url("https://kasen.shop/images/user/suisonia/back.png") center top no-repeat;
	padding-top: 50px;
	padding-bottom: 50px;
}
#suisonia h2{
	font-size: 200%;
	font-weight: bold;
	line-height: 1.2;
	margin-bottom: 20px;
}
#suisonia figure{
	margin-left: 50px;
	margin-bottom: 130px;
	width: 460px;
}
#suisonia figure > *:not(:last-child){
	margin-bottom: 10px;
}
#suisonia figure > div img{
	width: 100%;
}
#suisonia figure figcaption p{
	font-size: 87.5%;
	text-align: left;
}
#suisonia .course_box{
	margin: -100px auto 30px;
	width: 640px;
}
#suisonia .course_box span{
	color: #2E2E2E;
	margin-right: 1em;
}


/**************************************************50
 * top_news
 **************************************************/
#top_news{
}
#top_news table{
	border: 1px solid #F0F0F0;
	border-collapse: collapse;
	margin-left: auto;
	margin-right: auto;
	table-layout: fixed;
	text-align: left;
	width: 1000px;
}
#top_news table + table{
	margin-top: 10px;
}
#top_news table tr td:first-child{
	color: #00B9E6;
	font-size: 87.5%;
	text-align: center;
	width: 10em;
}
#top_news table tr td:last-child{
	padding: 1em;
}
#top_news table tr th{
	color: #00B9E6;
	padding: 1em 0;
	width: 14em !important;
}
#top_news table tr th a{
	color: #00B9E6;
}


/**************************************************50
 * bnr_links
 **************************************************/
#bnr_links{
}
#bnr_links a img{
	margin: 0 10px 30px;
	width: 380px;
}


/**************************************************50
 * line_at
 **************************************************/
#line_at{
	margin-bottom: 50px;
}
#line_at figcaption{
	margin-top: 20px;
}
#line_at figcaption h2{
	color: #38C328;
	font-size: 175%;
	line-height: 1.2;
}
#line_at figcaption .link_to{
	margin-top: 20px;
}


/**************************************************50
 * shop_info
 **************************************************/
#shop_info{
	padding-top: 50px;
	margin-bottom: 50px;
}
#shop_info table{
	border-collapse: separate;
	border-spacing: 10px 0;
	text-align: left;
	margin: 0 auto;
}
#shop_info table tr td:first-child{
	width: 460px;
}
#shop_info table tr td:nth-child(2){
	width: 150px;
}
#shop_info table tr td img{
	width: 100%;
}
#shop_info table tr td h3{
	color: #00B9E6;
	line-height: 1.2;
	padding: 0 10px;
}
#shop_info table tr td h3 strong{
	font-size: 200%;
}
#shop_info table tr td h3 span{
	font-size: 125%;
}
#shop_info table tr td .mdi-cellphone-iphone{
	color: #00B9E6;
	font-size: 200%;
	line-height: 1.2;
	padding: 0 10px;
}
#shop_info table tr td hr{
	border-color: #00B9E6;
	margin: 5px 0 10px;
}
#shop_info table tr td .handling_shop{
	margin-left: 10px;
	margin-bottom: 5px;
}
#shop_info table tr td h4{
	background-color: #212121;
	color: #FFFFFF;
	display: inline-block;
	font-size: 87.5%;
	font-weight: normal;
	margin-left: 10px;
	margin-bottom: 3px;
	padding: 0 10px;
}
#shop_info table tr td dl{
	font-size: 87.5%;;
	padding: 0 10px;
}
#shop_info table tr td dl dd{
	padding-left: 1em;
}


/**************************************************50
 * shop_map
 **************************************************/
#shop_map{
	margin-bottom: 50px;
}
#shop_map iframe{
	border: none;
	height: 420px;
	vertical-align: middle;
	width: 100%;
}


/**************************************************50
 * hydrogen
 **************************************************/
#hydrogen{
	background: url("https://kasen.shop/images/user/hydrogen/back_010.png") center top no-repeat;
	margin-bottom: 50px;
	padding-top: 50px;
	padding-bottom: 50px;
	position: relative;
}
#hydrogen:before{
	background: url("https://kasen.shop/images/user/hydrogen/machine_010.png") center top no-repeat;
	background-size: contain;
	content: "";
	padding-top: 190px;
	position: absolute;
	top: 70px;
	right: -webkit-calc(50% + 90px);
	right: calc(50% + 90px);
	width: 120px;
}
#hydrogen > div{
	width: 440px;
}
#hydrogen > div h2{
}
#hydrogen > div > strong{
	display: block;
	font-size: 225%;
	line-height: 1.2;
	margin-bottom: 20px;
}
#hydrogen > div p{
	font-size: 87.5%;
	padding-right: 50px;
	text-align: left;
}
#hydrogen > div .course_box{
	margin-top: 20px;
}
#hydrogen > div p.font75p{
	margin-top: 20px;
	text-align: center;
}

/* -- effect -- */
#hydrogen_effect{
}
#hydrogen_effect strong{
	color: #00B9E6;
	font-size: 287.5%;
	line-height: 1.2;
}
#hydrogen_effect ul{
}
#hydrogen_effect ul > li{
	display: inline-block;
	margin-bottom: 20px;
	vertical-align: top;
	width: 200px;
}
#hydrogen_effect ul > li img{
	width: 100%;
}
#hydrogen_effect p.serif{
	font-size: 125%;
	margin-bottom: 20px;
}

/* -- point -- */
#hydrogen_point{
	background-color: #00B9E6;
	color: #FFFFFF;
	line-height: 1.2;
	margin-bottom: 50px;
	padding-top: 20px;
	padding-bottom: 20px;
	position: relative;
	text-align: center;
}
#hydrogen_point:after{
	border-color: #00B9E6 transparent transparent transparent;
	border-style: solid;
	border-width: 30px 40px 0 40px;
	content: "";
	display: block;
	height: 0;
	position: absolute;
	bottom: 0;
	left: 50%;
	-ms-transform: translate(-50%, 100%);
	-webkit-transform: translate(-50%, 100%);
	transform: translate(-50%, 100%);
	width: 0;
	z-index: 1;
}
#hydrogen_point .title_section{
	display: block;
}
#hydrogen_point .title_section:after{
	background-color: #FFFFFF;
}
#hydrogen_point strong{
	font-size: 200%;
}

[id^="hydrogen_point_"]{
	margin-bottom: 50px;
	padding-top: 150px;
}
[id^="hydrogen_point_"] h4{
	font-size: 200%;
	line-height: 1.2;
}
[id^="hydrogen_point_"] > p.serif{
	font-size: 125%;
}

#hydrogen_point_1{
	background: url("https://kasen.shop/images/user/hydrogen/point_01.png") center 50px no-repeat, url("https://kasen.shop/images/user/back/water_surface.png") center top no-repeat;
	background-size: 140px auto, auto auto;
	margin-top: -50px;
}
#hydrogen_point_1 h5{
	font-size: 125%;
}
#hydrogen_point_1 figure{
	background: url("https://kasen.shop/images/user/hydrogen/oxygen_010.png") left center no-repeat;
	margin-bottom: 30px;
	padding: 30px 100px 30px -webkit-calc(50% + 80px);
	padding: 30px 100px 30px calc(50% + 80px);
}
#hydrogen_point_1 figure figcaption{
	text-align: left;
}
#hydrogen_point_1 figure figcaption p{
	font-size: 87.5%;
}
#hydrogen_point_1 figure figcaption strong:last-child{
	color: #00B9E6;
	font-size: 125%;
}
#hydrogen_point_1 figure > div img{
	width: 420px;
}
#hydrogen_point_1 ul > li{
	display: inline-block;
	margin-top: 20px;
	vertical-align: top;
	width: 380px;
}
#hydrogen_point_1 ul > li:not(:nth-child(3n+1)){
	margin-left: 30px;
}
#hydrogen_point_1 ul > li img{
	width: 100%;
}

#hydrogen_point_2{
	background: url("https://kasen.shop/images/user/hydrogen/point_02.png") center top no-repeat;
	background-size: 140px auto;
}
#hydrogen_point_2:after{
	background: url("https://kasen.shop/images/user/hydrogen/vitamin_010.png") left center no-repeat, url("https://kasen.shop/images/user/hydrogen/vitamin_020.png") right center no-repeat;
	background-size: 460px auto, 210px auto;
	content: "";
	display: block;
	margin: 30px auto 0;
	padding-top: 246px;
	width: 680px;
}
#hydrogen_point_2 h4{
	margin-bottom: 10px;
}

#hydrogen_point_3{
	background: url("https://kasen.shop/images/user/hydrogen/point_03.png") center top no-repeat;
	background-size: 140px auto;
}
#hydrogen_point_3 > ul{
	margin-bottom: 30px;
}
#hydrogen_point_3 > ul > li{
	border: 1px solid #00B9E6;
	display: inline-block;
	margin-top: 30px;
	padding: 20px 30px;
	text-align: left;
	vertical-align: top;
	width: 520px;
}
#hydrogen_point_3 > ul > li:nth-child(even){
	margin-left: 30px;
}
#hydrogen_point_3 > ul > li h5{
	color: #00B9E6;
	font-size: 125%;
}
#hydrogen_point_3 > ul > li p{
	font-size: 87.5%;
}
#hydrogen_point_3 > ul > li ul{
	font-size: 87.5%;
}

/* -- effective -- */
#hydrogen_effective{
	background-color: #FAFAFA;
	margin-bottom: 50px;
	padding-top: 50px;
	padding-bottom: 50px;
}
#hydrogen_effective h3{
	font-size: 200%;
	line-height: 1.2;
	margin-bottom: 20px;
}
#hydrogen_effective figure{
	display: table;
	margin: 0 auto;
	width: 700px;
}
#hydrogen_effective figure > div{
	display: table-cell;
	vertical-align: middle;
	width: 180px;
}
#hydrogen_effective figure > div img{
	width: 100%;
}
#hydrogen_effective figure figcaption{
	display: table-cell;
	padding-left: 30px;
	text-align: left;
	vertical-align: middle;
}
#hydrogen_effective figure figcaption h4{
	font-size: 125%;
	line-height: 1.4;
	margin-bottom: 10px;
}
#hydrogen_effective figure figcaption p{
	font-size: 87.5%;
}

/* -- intake -- */
#hydrogen_intake{
	background: #E1F5FC url("https://kasen.shop/images/user/back/water.png") center top no-repeat;
	background-size: 1400px auto;
	margin-bottom: 50px;
	padding-top: 160px;
	padding-bottom: 50px;
}
#hydrogen_intake h3{
	font-size: 200%;
	line-height: 1.2;
	margin-bottom: 20px;
}
#hydrogen_intake ul{
	margin-top: 20px;
}
#hydrogen_intake ul > li{
	background-color: #FFFFFF;
	display: inline-block;
	margin-top: 10px;
	padding: 30px 0;
	vertical-align: top;
	width: 285px;
}
#hydrogen_intake ul > li:not(:nth-child(4n+1)){
	margin-left: 20px;
}
#hydrogen_intake ul > li h4{
	color: #00B9E6;
	font-size: 175%;
	font-weight: normal;
	line-height: 1.2;
}
#hydrogen_intake ul > li h5{
	font-size: 150%;
	font-weight: normal;
	line-height: 1.2;
}
#hydrogen_intake ul > li .mdi-star{
	font-size: 175%;
	line-height: 1.2;
}


/**************************************************50
 * neuron100
 **************************************************/
#neuron100{
	background: #000000 url("https://kasen.shop/images/user/neuron100/back_010.png") center top no-repeat;
	color: #FFFFFF;
	height: 680px;
	padding-top: 50px;
	padding-bottom: 50px;
}
#neuron100 > div{
	width: 540px;
}
#neuron100 > div  .title_section{
	margin-bottom: 380px;
}
#neuron100 > div  .title_section:after{
	background-color: #FFFFFF;
}
#neuron100 > div > strong{
	color: #D7B97F;
	display: block;
	font-size: 125%;
	line-height: 1.2;
	margin-bottom: 10px;
}
#neuron100 > div > strong span{
	display: block;
	font-size: 190%;
}
#neuron100 > div > p{
	font-size: 87.5%;
}

/* -- improvement -- */
#neuron100_improvement{
	background: url("https://kasen.shop/images/user/neuron100/back_020.png") center top no-repeat;
	padding-top: 40px;
	padding-bottom: 40px;
	margin-bottom: 50px;
}
#neuron100_improvement > strong{
	color: #A73235;
	display: block;
	font-size: 225%;
	line-height: 1.2;
	margin-top: 5px;
	margin-bottom: 30px;
	position: relative;
}
#neuron100_improvement > strong:after{
	color: #A73235;
	content: "\F140";
	font-size: 200%;
	line-height: 1;
	position: absolute;
	bottom: 0;
	left: 50%;
	-ms-transform: translate(-50%, 80%);
	-webkit-transform: translate(-50%, 80%);
	transform: translate(-50%, 80%);
}
#neuron100_improvement_symptoms{
}
#neuron100_improvement_symptoms > li{
	background-image: -webkit-linear-gradient(top, #A73235 0%, #752326 100%);
	background-image: linear-gradient(to bottom, #A73235 0%, #752326 100%);
	border-radius: 5px;
	color: #FFFFFF;
	display: inline-block;
	font-size: 125%;
	height: 42px;
	line-height: 42px;
	margin: 5px 10px;
	vertical-align: middle;
	width: 120px;
}
#neuron100_improvement_effect{
}
#neuron100_improvement_effect > li{
	background-color: #FFFFFF;
	border-radius: 50%;
	box-shadow: 0px 3px 6px -2px rgba(0,0,0,0.2);
	color: #A73235;
	display: inline-block;
	font-size: 125%;
	margin: 5px 10px;
	padding-top: 100px;
	position: relative;
	vertical-align: middle;
	width: 100px;
}
#neuron100_improvement_effect > li span{
	line-height: 1.2;
	position: absolute;
	top: 50%;
	left: 50%;
	-ms-transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	width: 100%;
}

/* -- list -- */
#neuron100_list{
	margin-bottom: 50px;
}
#neuron100_list p.serif{
	font-size: 125%;
	padding: 0 3.125%;
}
#neuron100_list h3{
	color: #A73235;
	font-size: 287.5%;
	line-height: 1.2;
	padding: 0 3.125%;
}
#neuron100_list ul{
}
#neuron100_list ul > li{
	display: inline-block;
	margin-top: 30px;
	vertical-align: top;
	width: 340px;
}
#neuron100_list ul > li:not(:nt-child(3n+1)){
	margin-left: 30px;
}
#neuron100_list ul > li > div{
}
#neuron100_list ul > li > div img{
	width: 240px;
}
#neuron100_list ul > li{
}
#neuron100_list ul > li p{
	font-size: 125%;
}
#neuron100_list ul > li h4{
	font-size: 137.5%;
	line-height: 1.2;
}
#neuron100_list ul > li span{
}

/* -- desc -- */
#neuron100_desc{
	background-color: #D6B366;
	display: table;
	padding-top: 30px;
	padding-bottom: 30px;
}
#neuron100_desc figcaption{
	display: table-cell;
	vertical-align: middle;
}
#neuron100_desc figcaption div{
	background-color: #000000;
	padding: 20px 10px;
}
#neuron100_desc figcaption div + div{
	margin-top: 20px;
}
#neuron100_desc figcaption div{
}
#neuron100_desc figcaption div strong{
	color: #D6B366;
	font-size: 87.5%;
}
#neuron100_desc figcaption div p{
	color: #FFFFFF;
	font-size: 75%;
	margin-top: 10px;
}
#neuron100_desc > div{
	display: table-cell;
	vertical-align: middle;
	padding-left: 20px;
	width: 500px;
}
#neuron100_desc > div img{
	width: 100%;
}

/* -- recommend -- */
#neuron100_recommend{
	padding-top: 50px;
	padding-bottom: 50px;
}
#neuron100_recommend h3{
	color: #A73235;
	font-size: 187.5%;
	line-height: 1.2;
	margin-bottom: 20px;
}
#neuron100_recommend div{
	background:		url("https://kasen.shop/images/user/neuron100/recommend_010.jpg") left top no-repeat,
					url("https://kasen.shop/images/user/neuron100/recommend_020.jpg") right top no-repeat,
					url("https://kasen.shop/images/user/neuron100/recommend_030.jpg") left bottom no-repeat,
					url("https://kasen.shop/images/user/neuron100/recommend_040.jpg") right bottom no-repeat;
	background-size: 560px auto, 560px auto, 560px auto, 560px auto;
	height: 436px;
	margin: 0 auto;
	width: 1120px;
}
#neuron100_recommend ul{
}
#neuron100_recommend ul > li{
	background-color: #FFFFFF;
	box-shadow: 0px 2px 4px 1px rgba(0,0,0,0.2);
	display: inline-block;
	font-size: 125%;
	margin: 42px 6px;
	padding-top: 134px;
	position: relative;
	vertical-align: middle;
	width: 180px;
}
#neuron100_recommend ul > li span{
	position: absolute;
	font-size: %;
	line-height: 1.2;
	position: absolute;
	top: 50%;
	left: 50%;
	-ms-transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	width: 100%;
}

/* -- type -- */
#neuron100_type{
	background-color: #2E2E2E;
	color: #FFFFFF;
	line-height: 1.2;
	margin-bottom: 50px;
	padding-top: 20px;
	padding-bottom: 20px;
	position: relative;
	text-align: center;
}
#neuron100_type:after{
	border-color: #2E2E2E transparent transparent transparent;
	border-style: solid;
	border-width: 30px 40px 0 40px;
	content: "";
	display: block;
	height: 0;
	position: absolute;
	bottom: 0;
	left: 50%;
	-ms-transform: translate(-50%, 100%);
	-webkit-transform: translate(-50%, 100%);
	transform: translate(-50%, 100%);
	width: 0;
	z-index: 1;
}
#neuron100_type .title_section{
	display: block;
}
#neuron100_type .title_section:after{
	background-color: #FFFFFF;
}
#neuron100_type strong{
	font-size: 200%;
}

[id^="neuron100_type_"]{
	padding-top: 50px;
	padding-bottom: 50px;
}
[id^="neuron100_type_"] h4 img{
	width: 140px;
	margin-bottom: 20px;
}
[id^="neuron100_type_"] figure{
	display: table;
	margin-top: 30px;
	margin-left: auto;
	margin-right: auto;
	width: 1060px;
}
[id^="neuron100_type_"] figure > div{
	display: table-cell;
	vertical-align: middle;
	width: 520px;
}
[id^="neuron100_type_"] figure > div img{
	width: 100%;
}
[id^="neuron100_type_"] figure > figcaption{
	display: table-cell;
	padding: 0 35px;
	text-align: left;
	vertical-align: middle;
}
[id^="neuron100_type_"] figure > figcaption h5{
	font-size: 200%;
	line-height: 1.2;
}
[id^="neuron100_type_"] figure > figcaption hr{
	margin: 10px 0;
}
[id^="neuron100_type_"] figure > figcaption p{
	font-size: 87.5%;
}

#neuron100_type_1{
	background: #E9F8FF url("https://kasen.shop/images/user/neuron100/back_030.png") center top no-repeat;
	background-size: 1400px auto;
	margin-top: -50px;
}
#neuron100_type_1 h4{
	margin-top: 20px;
}
#neuron100_type_1 > p.serif{
	font-size: 150%;
	line-height: 1.2;
	margin-bottom: 10px;
}
#neuron100_type_1 > p.serif span{
	color: #A73235
}
#neuron100_type_1 > strong.serif{
	color: #3663A8;
	font-size: 300%;
	line-height: 1.2;
}
#neuron100_type_1 p:last-child{
	margin-top: 30px;
}

#neuron100_type_2{
	background: #EEFEE9 url("https://kasen.shop/images/user/neuron100/back_040.png") center top no-repeat;
	background-size: 1400px auto;
}

#neuron100_type_3{
	background: #FCF7E7 url("https://kasen.shop/images/user/neuron100/back_050.png") center top no-repeat;
	background-size: 1400px auto;
}

/* -- future -- */
#neuron100_future{
	background: #E0EFF5 url("https://kasen.shop/images/user/back/water_surface.png") center top no-repeat;
	padding-top: 50px;
	padding-bottom: 50px;
}
#neuron100_future h3{
	color: #A73235;
	font-size: 300%;
	line-height: 1.2;
	margin-bottom: 10px;
}
#neuron100_future h4{
	font-size: 150%;
	line-height: 1.2;
	margin-bottom: 10px;
}
#neuron100_future > div{
	margin-bottom: 20px;
}
#neuron100_future > div img{
	margin: 0 20px;
	width: 440px;
}
#neuron100_future > p{
}

/* -- feel -- */
#neuron100_feel{
	background-color: #A73235;
	color: #FFFFFF;
	font-size: 200%;
	line-height: 1.2;
	margin-bottom: 50px;
	padding-top: 20px;
	padding-bottom: 20px;
	position: relative;
	text-align: center;
}

/* -- other -- */
#neuron100_other{
	margin-bottom: 50px;
}
#neuron100_other h3{
	color: #A73235;
	font-size: 150%;
	line-height: 1.2;
	margin-bottom: 20px;
}
#neuron100_other p{
}


/**************************************************50
 * fasting
 **************************************************/
#fasting{
	background: #000000 url("https://kasen.shop/images/user/fasting/img_010.jpg") center top no-repeat;
	color: #FFFFFF;
	display: block;
	padding-top: 730px;
	padding-bottom: 50px;
}
#fasting p.serif{
	font-size: 150%;
	line-height: 1.2;
	margin-bottom: 10px;
}
#fasting p.serif strong{
	font-size: 150%;
}
#fasting > strong.serif{
	color: #D3C17E;
	font-size: 300%;
	line-height: 1.2;
}

/* -- merit -- */
#fasting_merit{
	background: #000000 url("https://kasen.shop/images/user/fasting/back.png") center top no-repeat;
	color: #FFFFFF;
	height: 500px;
	padding-top: 50px;
	padding-bottom: 50px;
}
#fasting_merit > strong.serif{
	font-size: 225%;
	line-height: 1.2;
}
#fasting_merit > div.list_num{
	border :1px solid #D3C17E;
	background: rgba(0, 0, 0, 0.5);
	margin: 20px auto 0;
	padding: 40px 0;
	width: 960px;
}
#fasting_merit > div.list_num p{
	color: #D3C17E;
	font-size: 150%;
}
#fasting_merit > div.list_num ul{
	display: inline-block;
	font-size: 125%;
	text-align: left;
	width: 270px;
}
#fasting_merit > div.list_num ul li:before{
	color: #D3C17E;
}

/* -- step -- */
#fasting_step{
	background-color: #259225;
	color: #FFFFFF;
	line-height: 1.2;
	margin-bottom: 50px;
	padding-top: 20px;
	padding-bottom: 20px;
	position: relative;
	text-align: center;
}
#fasting_step:after{
	border-color: #259225 transparent transparent transparent;
	border-style: solid;
	border-width: 30px 40px 0 40px;
	content: "";
	display: block;
	height: 0;
	position: absolute;
	bottom: 0;
	left: 50%;
	-ms-transform: translate(-50%, 100%);
	-webkit-transform: translate(-50%, 100%);
	transform: translate(-50%, 100%);
	width: 0;
	z-index: 1;
}
#fasting_step .title_section{
	display: block;
}
#fasting_step .title_section:after{
	background-color: #FFFFFF;
}
#fasting_step strong{
	font-size: 200%;
}

[id^="fasting_step_"]{
	background: url("https://kasen.shop/images/user/back/back_repeat.gif") center center repeat;
	padding-top: 50px;
	padding-bottom: 50px;
	position: relative;
}
[id^="fasting_step_"] + [id^="fasting_step_"]:before{
	color: #259225;
	content: "\F140";
	font-size: 500%;
	line-height: 1;
	position: absolute;
	top: 0;
	left: 50%;
	-ms-transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}
[id^="fasting_step_"] h4{
	margin-bottom: 20px;
}
[id^="fasting_step_"] h4 img{
	width: 140px;
}
[id^="fasting_step_"] p.serif{
	font-size: 125%;
}
[id^="fasting_step_"] figure{
	margin-left: auto;
	margin-right: auto;
	width: 960px;
}
[id^="fasting_step_"] figure:after{
	clear: both;
	content: "";
	display: block;
}
[id^="fasting_step_"] figure figcaption:first-child,
[id^="fasting_step_"] figure > div:first-child{
	float: left;
}
[id^="fasting_step_"] figure figcaption:not(:first-child),
[id^="fasting_step_"] figure > div:not(:first-child){
	float: right;
}
[id^="fasting_step_"] figure figcaption{
	text-align: left;
	width: 460px;
}
[id^="fasting_step_"] figure figcaption h5{
	font-size: 200%;
	line-height: 1.2;
	margin-bottom: 10px;
}
[id^="fasting_step_"] figure figcaption p:not(.serif){
	font-size: 87.5%;
}
[id^="fasting_step_"] figure figcaption + div{
	background-color: #FFFFFF;
	border: 1px solid #259225;
	padding: 20px;
	text-align: left;
}
[id^="fasting_step_"] figure figcaption + div > strong{
	color: #259225;
	display: block;
	font-size: 150%;
	line-height: 1.2;
	margin-bottom: 10px;
}
[id^="fasting_step_"] figure figcaption + div p{
	font-size: 87.5%;
}
[id^="fasting_step_"] figure > div{
	width: 460px;
}

#fasting_step_1{
	margin-top: -50px;
	padding-bottom: 100px;
}
#fasting_step_1 > p.serif{
	font-size: 150%;
	line-height: 1.2;
}
#fasting_step_1 > p.serif span{
	color: #259225;
}
#fasting_step_1 ul{
	margin-bottom: 30px;
}
#fasting_step_1 > ul > li{
	background-color: #000000;
	border :1px solid #DAB766;
	display: inline-block;
	height: 212px;
	margin-top: 20px;
	padding: 20px 25px;
	vertical-align: top;
	width: 380px;
}
#fasting_step_1 > ul > li:not(:nth-child(3n+1)){
	margin-left: 20px;
}
#fasting_step_1 > ul > li strong{
	color: #DAB766;
	font-size: 125%;
	line-height: 1.4;
}
#fasting_step_1 > ul > li p{
	color: #FFFFFF;
	font-size: 87.5%;
	text-align: left;
}
#fasting_step_1 figure figcaption h5{
	color: #259225;
}
#fasting_step_1 figure > div .list_dot li{
	display: inline-block;
	font-size: 87.5%;
	margin-right: 1em;
}
#fasting_step_1 figure > div .list_dot li:before{
	color: #259225;
}
#fasting_step_1 > p.serif:last-child{
	margin-top: 20px;
}

#fasting_step_2 h4{
	margin: 0;
	position: absolute;
	top: 55px;
	left: 50%;
	-ms-transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}
#fasting_step_2 figure{
	background-color: #000000;
	color: #FFFFFF;
	padding: 120px -webkit-calc((100% - 960px) / 2) 50px;
	padding: 120px calc((100% - 960px) / 2) 50px;
	width: 100%;
}
#fasting_step_2:before{
	top: -50px;
}
#fasting_step_2 figure > div img{
	width: 400px;
}
#fasting_step_2 figure figcaption{
}
#fasting_step_2 figure figcaption h5{
	color: #7DEB02;
}
#fasting_step_2 figure figcaption p.serif{
	margin-top: 10px;
}
#fasting_step_2 ul{
	background-color: #E1F3E0;
	padding: 30px 0;
}
#fasting_step_2 ul > li{
	display: inline-block;
	vertical-align: top;
	width: 230px;
}
#fasting_step_2 ul > li:not(:nth-child(5n+1)){
	margin-left: 10px;
}
#fasting_step_2 ul > li h5{
	background-color: #2E2E2E;
	border-radius: 5px;
	color: #FFFFFF;
	font-size: 125%;
	height: 44px;
	line-height: 44px;
	margin-bottom: 10px;
}
#fasting_step_2 ul > li p{
	font-size: 87.5%;
	text-align: left;
	padding: 0 0.5em;
}

/* -- program -- */
#fasting_program{
	background-color: #EEFBF0;
	margin-bottom: 50px;
	padding-top: 50px;
	padding-bottom: 50px;
}
#fasting_program h3{
	font-size: 250%;
	line-height: 1.2;
	margin-bottom: 20px;
}
#fasting_program > p.serif{
	color: #259225;
	font-size: 150%;
	line-height: 1.2;
	margin-bottom: 20px;
}
#fasting_program > h4{
	margin-top: 30px;
}
#fasting_program h4 strong{
	display: block;
	font-size: 200%;
	line-height: 1.2;
}
#fasting_program h4 span{
	display: block;
	font-size: 300%;
	font-weight: normal;
	line-height: 1.2;
}
#fasting_program > div img{
	max-width: 100%;
}
#fasting_program > p +  div{
	margin-top: 10px;
}

/* -- not_suitable -- */
#fasting_program_not_suitable{
	background-color: #FFFFFF;
	border: 1px solid #259225;
	margin: 30px auto 0;
	padding: 19px 29px;
	text-align: left;
	width: 860px;
}
#fasting_program_not_suitable{
}
#fasting_program_not_suitable h4{
	color: #259225;
	font-size: 150%;
	line-height: 1.2;
	margin-bottom: 20px;
	text-align: center;
}
#fasting_program_not_suitable .list_dot{
	display: inline-block;
	margin-right: 2em;
	vertical-align: top;
}
#fasting_program_not_suitable .list_dot li{
	font-size: 87.5%;
}
#fasting_program_not_suitable .list_dot li:before{
	color: #259225;
}


/**************************************************50
 * voice
 **************************************************/
#voice{
	background: #E0EFF5 url("https://kasen.shop/images/user/back/water_surface.png") center top no-repeat;
	margin-bottom: 50px;
	padding-top: 50px;
	padding-bottom: 50px;
}
#voice h3{
	font-size: 200%;
	line-height: 1.2;
	margin-bottom: 10px;
}
#voice > p.serif{
	font-size: 150%;
	line-height: 1.2;
	margin-bottom: 20px;
}
#voice ul{
}
#voice ul > li{
	border: 1px solid #00B9E6;
	background-color: #FFFFFF;
	margin: 30px auto 0;
	padding: 20px 30px;
	text-align: left;
	width: 520px;
}
#voice ul > li h4{
	color: #00B9E6;
	font-size: 125%;
	font-weight: normal;
}
#voice ul > li h4:before{
	content: "\F366";
	font-size: 120%;
	line-height: 1;
	margin-right: 0.2em;
	vertical-align: middle;
}
#voice ul > li section{
	font-size: 87.5%;
}


/**************************************************50
 * news
 **************************************************/
#news{
	background: #E0EFF5 url("https://kasen.shop/images/user/back/water_surface.png") center top no-repeat;
	margin-bottom: 50px;
	padding-top: 50px;
	padding-bottom: 50px;
}
#news > ul{
}
#news > ul > li{
	background-color: #FFFFFF;
	border-radius: 5px;
	margin-left: auto;
	margin-right: auto;
	padding: 50px 70px;
	text-align: left;
	width: 1000px;
}
#news > ul > li + li{
	margin-top: 30px;
}
#news > ul > li > p time{
	color: #00B9E6;
}
#news > ul > li > h3{
	color: #00B9E6;
	font-size: 175%;
	line-height: 1.2;
	margin-bottom: 20px;
}
#news > ul > li > section{
	word-break: break-all;
}
#news > ul > li img{
	max-width: 100%;
}


/**************************************************50
 * contact
 **************************************************/
#contact{
	margin-bottom: 50px;
	padding-top: 50px;
}
#contact p.serif{
	font-size: 150%;
	line-height: 1.2;
	margin-bottom: 10px;
}
#contact strong.mdi-cellphone-iphone{
	color: #00B9E6;
	display: block;
	font-size: 250%;
	line-height: 1.2;
}

/* -- reservation -- */
#contact_reservation{
}
#contact_reservation{
	background-color: #00B9E6;
	color: #FFFFFF;
	line-height: 1.2;
	padding-top: 20px;
	padding-bottom: 20px;
	position: relative;
	text-align: center;
}
#contact_reservation:after{
	border-color: #00B9E6 transparent transparent transparent;
	border-style: solid;
	border-width: 30px 40px 0 40px;
	content: "";
	display: block;
	height: 0;
	position: absolute;
	bottom: 0;
	left: 50%;
	-ms-transform: translate(-50%, 100%);
	-webkit-transform: translate(-50%, 100%);
	transform: translate(-50%, 100%);
	width: 0;
	z-index: 1;
}
#contact_reservation strong{
	font-size: 200%;
}

/* -- entry -- */
#contact_entry{
	background: #E0EFF5 url("https://kasen.shop/images/user/back/water_surface.png") center top no-repeat;
	min-height: -webkit-calc(100vh - 140px - 120px - 78px);
	min-height: calc(100vh - 140px - 120px - 78px);
	padding-top: 50px;
	padding-bottom: 50px;
}
#contact_entry > div{
	background-color: #676767;
	color: #FFFFFF;
	height: 42px;
	line-height: 42px;
	margin: 20px auto 10px;
	width: 280px;
}
#contact_entry #form{
	padding-top: 30px;
}
#contact_entry table{
	background-color: #D5D5D5;
	border-collapse: separate;
	border-spacing: 1px;
	font-size: 87.5%;
	margin: 0 auto;
	width: 720px;
}
#contact_entry p + table{
	margin: 20px auto 0;
}
#contact_entry table tr th{
	background-color: #FFFFFF;
	padding: 0.5em 1em;
	width: 180px;
}
#contact_entry table tr th.required{
	position: relative;
}
#contact_entry table tr th.required:after{
	background-color: #EE1529;
	border-radius: 3px;
	color: #FFFFFF;
	content: "必須";
	display: inline-block;
	font-size: 75%;
	line-height: 1;
	padding: 0.3em 0.5em;
	position: absolute;
	top: 50%;
	right: 0.5em;
	-ms-transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}
#contact_entry table tr td{
	background-color: #FFFFFF;
	padding: 0.5em 1em;
	text-align :left;
}
#contact_entry table tr td .Zebra_DatePicker_Icon_Wrapper{
	margin-right: 10px;
	width: 10em;
}
#contact_entry table tr td input[name="tel"]{
	width: 10em;
}
#contact_entry table tr td > div:not(.error_notice){
	display: inline-block;
	width: 15em;
}
#contact_entry table tr td > div:not(.error_notice) +  div:not(.error_notice){
	margin-left: 20px;
}
#contact_entry table tr td label.select_box{
	margin-right: 10px;
}
#contact_entry .error,
#contact_entry .success,
#contact_entry .failed{
	margin: 0 auto 20px;
	width: 720px;
}
#contact_entry .error_notice + * + input[type="text"]{
	background-color: #FFFFFF;
	border-color: #C0C0C0 !important;
}
#contact_entry .error_notice + * + input[type="text"]:hover{
	border-color: #212121 !important;
}
#contact_entry .error_notice + input[type="text"]{
	background-color: #FFEBEE;
	border-color: #F44336 !important;
}
#contact_entry #contact_btn{
	margin-top: 30px;
}


/**************************************************50
 * footer
 **************************************************/
footer{
	color: #FFFFFF;
	text-align: center;
}
#footer_wrap{
	background-color: #00B9E6;
	padding-top: 10px;
	padding-bottom: 10px;
}
#footer_wrap:after{
	clear: both;
	content: "";
	display: block;
}
#footer_logo{
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	float: left;
	height: 100px;
	transition: opacity 0.2s ease-out 0s;
}
a:hover #footer_logo{
	opacity: 0.7;
}
footer nav{
	float: right;
	margin: 20px 0;
	width: -webkit-calc(100% - 80px - 10px);
	width: calc(100% - 80px - 10px);
}
footer nav a{
	color: #FFFFFF;
	display: inline-block;
	font-size: 87.5%;
	padding: 0 2em;
	position: relative;
	text-align: center;
}
footer nav a:before{
	content: "|";
	line-height: 1;
	position: absolute;
	top: 50%;
	left: 0;
	-ms-transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}
footer nav a:last-child:after{
	content: "|";
	line-height: 1;
	position: absolute;
	top: 50%;
	right: 0;
	-ms-transform: translate(50%, -50%);
	-webkit-transform: translate(50%, -50%);
	transform: translate(50%, -50%);
}
footer nav a:hover,
footer nav a.active{
	text-decoration: none;
}
#copyright{
	color: #FFFFFF;
	float: right;
	font-size: 75%;
	text-align: center;
	width: -webkit-calc(100% - 80px - 10px);
	width: calc(100% - 80px - 10px);
}
#btn_totop{
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	cursor: pointer;
	position: fixed;
	bottom: 0;
	left: -webkit-calc(50% + 600px + 60px);
	left: calc(50% + 600px + 60px);
	transition: opacity 0.2s ease-out 0s;
	width: 70px;
	z-index: 1000;
}
#btn_totop:hover{
	opacity: 0.7;
}


