@charset "UTF-8";

/* -----------------------------------------------
Table of Contents (common css) [Thought of SMACSS + original]
--------------------------------------------------
0. Foundation
	 0-1. Reset (normalize.css + original)
	 0-2. Base
	 0-3. Config
1. Layout
	 1-1. #l-document
	 1-2. #l-header
	 1-3. #l-container
				1-3-1. #l-main
				1-3-2. #l-sub
	 1-4. #l-footer
	 1-5. #l-nav-global
2. Object
	 2-1. Component a.k.a Module [Thought of BEM + original]
				2-1-1.  Wrap     [wrp-***]
				2-1-2.  Box      [box-***]
				2-1-3.  Table    [tbl-***]
				2-1-4.  Headings [hdg-lv*]
				2-1-5.  Nav      [nav-***]
				2-1-6.  List     [lst-***]
				2-1-7.  Button   [btn-***]
				2-1-8.  Anchor   [acr-***]
				2-1-9.  Text     [txt-***]
				2-1-10. Icon     [icn-***]
				2-1-11. Label    [lbl-***]
				2-1-12. Form     [frm-***]
				2-1-13. Error    [err-***]
				2-1-14. UI
	 2-2. Utility
				2-2-1. clearfix
				2-2-2. margin,padding [mb10,pt20]
				2-2-3. Object-Oriented CSS
				2-2-4. Grid System [grid-***]
				2-2-5. WebFont [FontAwesome] http://fortawesome.github.io/Font-Awesome/icons/
	 2-3. State [is-***]
	 2-4. OverLayerConfig [z-index]
	 2-5. Project

	 -------------------------------------------------- */

/* -----------------------------------------------
 [0. Foundation]
 -------------------------------------------------- */

/* 0-1. Reset
-------------------------------------------------- */
html{
	font-family: sans-serif;
}
body{
	margin: 0;
	padding: 0;
	-webkit-text-size-adjust: 100%;
}
a{
	background: transparent;
}
a:focus{
	outline: thin dotted;
}
a:active,
a:hover{
	outline: 0;
}
html,div,span,object,iframe,
h1,h2,h3,h4,h5,h6,p,blockquote,pre,
a,abbr,acronym,address,code,del,em,img,strong,
dl,dt,dd,ol,ul,li,
fieldset,form,label,
table,caption,tbody,tfoot,thead,tr,th,td{
	margin: 0;
	padding: 0;
	vertical-align: baseline;
}
article,aside,footer,header,small,nav,section,figure,figcaption,main{
	margin: 0;
	padding: 0;
	display: block;
	vertical-align: baseline;
	list-style: none;
	background-color: transparent;
	outline: none;
}
audio,canvas,video{
	display: inline-block;
}
ul,ol{
	list-style-type: none;
}
table{
	border: none;
	border-collapse: collapse;
	border-spacing: 0;
}
img{
	line-height: 1;
	vertical-align: baseline;
	outline: none;
}
a img{
	border: none;
	outline: none;
}
sub,sup{
	font-size: 75%;
	line-height: 1;
	position: relative;
	vertical-align: baseline;
}
hr{
	box-sizing: content-box;
	height: 0;
}
dt,dd,li,
th,td,
input,textarea{
	text-align: left;
	vertical-align: top;
}
button{
	border: none;
}
input,textarea,button{
	margin: 0;
	padding: 0;
}
input{
	border: 1px solid #dad7d3;
	padding: 2px 5px;
}
textarea{
	border: 1px solid #dad7d3;
	resize: none;
}
button,label{
	background-color: transparent;
	cursor: pointer;
}
button,select{
	text-transform: none;
}
button,
input[type="button"],
input[type="reset"],
input[type="submit"]{
	-webkit-appearance: button;
	cursor: pointer;
}
button[disabled],
input[disabled]{
	cursor: default;
}
input[type="checkbox"],
input[type="radio"]{
	box-sizing: content-box;
	padding: 0;
	vertical-align: middle;
}
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration{
	-webkit-appearance: none;
}
button::-moz-focus-inner,
input::-moz-focus-inner{
	padding: 0;
	border: 0;
}
textarea{
	overflow: auto;
	vertical-align: top;
}
small{
	font-size: 0.8em;
	display: inline;
}
:focus{
	outline: none;
}

/* 0-2. Base
-------------------------------------------------- */
html{
	overflow-y: scroll;
	font-size: 100%;
}
h1,h2,h3,h4,h5,h6{
	font-size: 100%;
	font-weight: bold;
}
table{
	width: 100%;
}
input,textarea,button,select{
	font-family: "ヒラギノ角ゴ ProN W3","HiraKakuProN-W3","ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro","メイリオ",Meiryo,"ＭＳ Ｐゴシック","helvetica","arial",sans-serif;
	font-size: 100%;
}
html[lang="en"] input,
html[lang="en"] textarea,
html[lang="en"] button,
html[lang="en"] select{
	font-family: Arial, Helvetica, sans-serif;
}
html[lang="zh-cn"] input,
html[lang="zh-cn"] textarea,
html[lang="zh-cn"] button,
html[lang="zh-cn"] select{
	font-family: STHeiti Light, Microsoft YaHei, SimHei, SimSun, sans-serif;
}
strong{
	font-weight: bold;
}
em{
	font-weight: bold;
}

/* 0-3. Config
-------------------------------------------------- */
body{
	font-size: 14px;
	color: #333;
	background-color: #fff;
	font-family: "ヒラギノ角ゴ ProN W3","HiraKakuProN-W3","ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro","メイリオ",Meiryo,"ＭＳ Ｐゴシック","helvetica","arial",sans-serif;
}
@media(max-width: 767px){
	body{
		overflow: hidden;
	}
}
a{
	color: #0066cc;				/* ベースのリンク文字の色を指定 */
	text-decoration: none;		/* ベースのリンク文字の下線の有無を指定 */
}
a:focus {
	outline: none;
}
h1,h2,h3,h4,h5,h6{
	line-height: 1.4;			/* ベースの行間を指定 */
}
p{
	line-height: 1.428;			/* ベースの行間を指定 */
}
dt,dd,li,
th,td,
input,
textarea,
button{
	line-height: 1.5;			/* ベースの行間を指定 */
}
@media(min-width: 768px){
	a:hover,
	a:active{
		text-decoration: underline;		/* ベースのリンク文字の下線の有無を指定 */
	}
	a:hover{
		opacity: 0.7;
	}
}

/* -----------------------------------------------
 [1. Layout]
 -------------------------------------------------- */
/* 1-1. #l-document
-------------------------------------------------- */
#l-document{

}
/* 2-2-6. Visibility [visible-***] */
@media only screen and (max-width : 767px){
	.visible-sp{
		display: block !important;
	}
	.visible-pc{
		display: none !important;
	}
	.visible-pc-ib{
		display: none !important;
	}
}
@media only screen and (min-width: 768px), print{
	.visible-sp{
		display: none !important;
	}
	.visible-pc{
		display: block !important;
	}
	.visible-pc-ib{
		display: inline-block !important;
	}
}

/* 1-2. #l-header
-------------------------------------------------- */
.header {
	border-bottom: 1px solid #ddd;
	background: #fff;
	position: relative;
	height: 99px;
}
.header__inner {
	max-width: 1180px;
	padding: 0 10px;
	margin: 0 auto;
}
.header__inner:after {
	content: "";
	display: block;
	clear: both;
}
.header__left {
	float: left;
}
.header__right {
	float: right;
	font-size: 0;
	padding: 20px 0 10px;
}
.header__sitelogo {
	padding: 26px 0 22px;
	position: relative;
	z-index: 3;
}
.header__sitelogo a {
	font-size: 0;
	display: block;
	width: 321px;
	height: 52px;
	background: url("/resource/img/cmn_logo_sitelogo01.png") no-repeat center;
}
.header__sitelogo02,
.header__other {
	display: inline-block;
	vertical-align: middle;
}
.header__sitelogo02 {
	margin-left: 20px;
}
.header__sitelogo02 a {
	display: block;
}
.header__favorite,
.header__search {
	font-size: 13px;
	display: inline-block;
	vertical-align: middle;
	margin-left: 10px;
}
.header__favorite a {
	display: inline-block;
	background: #009bc1;
	box-shadow: inset -1px -1px 0 0 #007c9a;
	color: #fff;
	text-decoration: none;
	border-radius: 11px;
	line-height: 24px;
	padding: 0 12px;
}
.header__favorite a .icn {
	padding-right: 5px;
}
.header__favorite a span {
	font-size: 14px;
	display: inline-block;
	vertical-align: middle;
	margin-left: 5px;
	font-family: 'Arial',sans-serif;
}
.header__search {
	overflow: hidden;
	border-radius: 11px;
	position: relative;
	max-width: 240px;
}
.header__search__input {
	border: 1px solid #ddd;
	border-radius: 11px;
	box-shadow: 0;
	width: 100%;
	padding: 2px 74px 2px 14px;
	box-sizing: border-box;
}
.header__search__input::-webkit-input-placeholder {
	color: #999;
}
.header__search__input::-moz-placeholder {
	color: #999;
}
.header__search__input:-ms-input-placeholder {
	color: #999;
}
.header__search__input:-moz-placeholder {
	color: #999;
}
.header__search__button {
	width: 60px;
	color: #fff;
	position: absolute;
	right: 0;
	top: 0;
	bottom: 0;
	text-align: center;
	background: #009bc1;
	box-shadow: inset -1px -1px 0 0 #007c9a;
	border-radius: 0 11px 11px 0;
}
.header__search__button .icn {
	padding-right: 5px;
}
.header__menu {
	display: none;
}
.header__nav {
	max-width: 1180px;
	padding: 0 10px;
	margin: -45px auto 0;
	text-align: right;
}
.header__nav .header__search {
	display: none;
}
#alert_jscookie{
	background: #aa965c;
	font-size: 14px;
	color: #fff;
}
#alert_jscookie > div{
	width: 1180px;
	margin: 0 auto;
}
@media(min-width: 768px) and (max-width: 954px) {
	.header__sitelogo {
		padding: 20px 0 10px;
	}
	.header__sitelogo a {
		width: 185px;
		height: 28px;
		background-size: 185px auto;
	}
	.header__nav {
		margin-top: 5px;
		text-align: center;
	}
}
@media(min-width: 768px){
	.header__nav {
		display: block !important;
	}
}
@media(max-width: 767px){
	#alert_jscookie{
		font-size: 12px;
	}
	#alert_jscookie > div{
		width: auto;
	}
	.header {
		height: 49px;
	}
	.header__inner {
		padding: 0;
	}
	.header__sitelogo {
		padding: 10px 0 9px 7px;
	}
	.header__sitelogo a {
		width: 160px;
		height: 30px;
		background: url("/resource/img/cmn_logo_sitelogo01_sp.png") no-repeat center;
		background-size: 160px auto;
	}
	.header__other .header__search {
		display: none;
	}
	.header__sitelogo02 {
		position: absolute;
		right: 100px;
		top: 9px;
	}
	.header__sitelogo02 img {
		width: 59px;
	}
	.header__other {
		position: absolute;
		right: 0;
		top: 0;
		bottom: 0;
		font-size: 0;
	}
	.header__favorite,
	.header__menu {
		display: inline-block;
		vertical-align: middle;
	}
	.header__favorite a,
	.header__menu a {
		font-size: 8px;
		font-weight: bold;
		display: block;
		text-align: center;
		width: 45px;
		height: 50px;
		border-radius: 0;
		padding: 10px 0 8px;
		line-height: 1;
		box-shadow: none;
		position: relative;
		box-sizing: border-box;
		color: #fff;
		text-decoration: none;
		margin: 0;
	}
	.header__menu a:after {
		content: "メニュー";
		text-align: center;
		display: block;
		position: absolute;
		left: 0;
		right: 0;
		bottom: 8px;
	}
	.header__menu.is-active a:after {
		content: "閉じる";
	}
	.header__favorite a {
		background: rgba(0,155,193,0.8);
		padding: 34px 0 8px;
	}
	.header__favorite a .icn {
		display: none;
	}
	.header__favorite a span {
		position: absolute;
		left: 0;
		right: 0;
		top: 11px;
		text-align: center;
		margin: 0;
		font-size: 18px;
	}
	.header__menu a {
		background: #009bc1;
	}
	.header__menu a:hover {
		opacity: 1;
	}
	.header__menu a span {
		content: "";
		display: block;
		width: 20px;
		height: 2px;
		position: absolute;
		top: 20px;
		left: 13px;
		margin-top: -1px;
		background: #fff;
		transition-property: -webkit-transform;
		transition-property: transform;
		transition-property: transform, -webkit-transform;
		transition-duration: 0.1s;
		transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
	}
	.header__menu a span:before, .header__menu a span:after {
		content: "";
		display: block;
		width: 100%;
		height: 2px;
		position: absolute;
		background: #fff;
		transition-property: -webkit-transform;
		transition-property: transform;
		transition-property: transform, -webkit-transform;
		transition-duration: 0.15s;
		transition-timing-function: ease;
	}
	.header__menu a span:before {
		top: -5px;
		transition: top 0.1s 0.14s ease,
		opacity 0.1s ease;
	}
	.header__menu a span:after {
		bottom: -5px;
		transition: bottom 0.1s 0.14s ease, -webkit-transform 0.1s cubic-bezier(0.55, 0.055, 0.675, 0.19);
		transition: bottom 0.1s 0.14s ease, transform 0.1s cubic-bezier(0.55, 0.055, 0.675, 0.19);
		transition: bottom 0.1s 0.14s ease, transform 0.1s cubic-bezier(0.55, 0.055, 0.675, 0.19), -webkit-transform 0.1s cubic-bezier(0.55, 0.055, 0.675, 0.19);
	}
	.header__menu.is-active a span {
		width: 20px;
		-webkit-transform: rotate(45deg);
		transform: rotate(45deg);
		transition-delay: 0.14s;
		transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
	}
	.header__menu.is-active a span:before {
		top: 0;
		opacity: 0;
		transition: top 0.1s ease,
		opacity 0.1s 0.14s ease;
	}
	.header__menu.is-active a span:after {
		bottom: 0;
		-webkit-transform: rotate(-90deg);
		transform: rotate(-90deg);
		transition: bottom 0.1s ease, -webkit-transform 0.1s 0.14s cubic-bezier(0.215, 0.61, 0.355, 1);
		transition: bottom 0.1s ease, transform 0.1s 0.14s cubic-bezier(0.215, 0.61, 0.355, 1);
		transition: bottom 0.1s ease, transform 0.1s 0.14s cubic-bezier(0.215, 0.61, 0.355, 1), -webkit-transform 0.1s 0.14s cubic-bezier(0.215, 0.61, 0.355, 1);
	}
	.header__nav {
		background: #009bc1;
		position: relative;
		z-index: 6;
		padding: 0 10px 15px;
		display: none;
		margin: 0;
	}
	.header__nav .header__search {
		display: block;
		margin: 0;
		max-width: none;
	}
	.header__search__input {
		padding: 5px 43px 5px 14px;
		font-size: 12px;
		border-radius: 15px;
		border: 0;
	}
	.header__search__button {
		width: 43px;
		font-size: 14px;
		border-radius: 0 15px 15px 0;
		background: transparent;
		color: #009bc1;
		box-shadow: none;
	}
	.header__search__button .icn {
		padding: 0;
	}
}

/* 1-3. #l-container
-------------------------------------------------- */


/* 1-3-1. #l-main
-------------------------------------------------- */
#l-main{
}

/* 1-3-2. #l-sub
-------------------------------------------------- */


/* 1-4. #l-footer
-------------------------------------------------- */
.box-footer-list{
	background: #ededdf url("/resource/img/bg-woods03.png") no-repeat bottom center;
	color: #ededdf;
	font-size: 12px;
	padding: 135px 0 35px;
	margin-bottom: -25px;
}
.box-footer-list p:first-child{
	padding-bottom: 10px;
}
.lst-footer {
	display: block;
	font-size: 0;
}
.lst-footer div{
	display: inline-block;
	width: 25%;
	box-sizing: border-box;
	padding: 0 15px;
	vertical-align: top;
	font-size: 12px;
}
.box-copyright{
	background: #2673b7;
	text-align: center;
	color: #fff;
	font-size: 12px;
	padding: 30px 0;
}
.box-copyright p:first-child{
	padding-bottom: 15px;
}
.lst-link{
	display: none;
}
.txt-copyright{
	margin-top: 15px;
}
@media(max-width: 767px){
	.box-copyright{
		padding: 22px 0;
	}
	.box-copyright__logo img {
		width: 120px;
	}
	.lst-link{
		display: table;
		width: 100%;
		margin-bottom: 25px;
	}
	.lst-link li{
		display: table-cell;
		vertical-align: middle;
	}
	.lst-link li a{
		color: #fff;
		font-size: 14px;
	}
	.lst-link li a:hover{
		text-decoration: none;
	}
	.txt-copyright{
		margin-top: 10px;
	}
}
@media(max-width: 801px){
	.box-footer-list{
		padding: 61px 0 10px;
		background-size: auto 150px;
		background-position: top center;
		background-color: #93c844;
		margin: 0;
		overflow: hidden;
	}
	.lst-footer {
		max-width: 199px;
		margin: 0 auto;
	}
	.lst-footer div{
		width: 100%;
		padding: 0;
	}
	.lst-footer .owl-stage-outer {
		overflow: visible;
	}
}
/* 1-5. .l-column
-------------------------------------------------- */
.l-column {
	height: 100%;
	position: relative;
}
.l-column__left,
.l-column__right {
	box-sizing: border-box;
}
.l-column__left {
	width: 25.424%;
	padding: 0 20px 0 0;
	height: 100%;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
}
.l-column__right {
	width: 100%;
	padding-left: 25.424%;
}
.l-column--flip .l-column__left {
	position: absolute;
	top: 0;
	bottom: 0;
	left: auto;
	right: 0;
	padding: 0 0 0 20px;
}
.l-column--flip .l-column__right {
	padding-left: 0;
	padding-right: 25.424%;
}
@media(max-width: 1200px){
	.l-column__left {
		width: 300px;
	}
	.l-column__right {
		padding-left: 300px;
	}
	.l-column--flip .l-column__right {
		padding-left: 0;
		padding-right: 300px;
	}
}
@media(max-width: 900px){
	.l-column__left {
		position: static;
		width: 100%;
		padding: 0;
	}
	.l-column__right {
		padding: 0;
	}
}
@media(min-width: 768px) and (max-width: 916px){
	.l-column--pc .l-column__left {
		width: 100%;
		position: static;
		padding: 0;
		margin-bottom: 20px;
	}
	.l-column--pc .l-column__right {
		padding: 0;
	}
}
@media(max-width: 900px){
	.l-column--pc .l-column__left {
		display: none;
	}
	.l-column--pc .l-column__right {
		padding: 0;
	}
}
/* 1-5. .has-popup
-------------------------------------------------- */
.has-popup {
	position: relative;
}

/* 1-6. #l-nav-global
-------------------------------------------------- */
.nav-global {
	font-size: 0;
	display: inline-block;
}
.nav-global li {
	display: inline-block;
	vertical-align: middle;
	position: relative;
}
.nav-global li:before {
	content: "";
	display: block;
	position: absolute;
	left: 0;
	top: 0;
	height: 18px;
	border-left: 1px dashed #666;
}
.nav-global li:last-child:after {
	content: "";
	display: block;
	position: absolute;
	right: 1px;
	top: 0;
	height: 18px;
	border-left: 1px dashed #666;
}
.nav-global li a {
	display: block;
	text-align: center;
	color: #333;
	text-decoration: none;
	font-size: 15px;
	line-height: 1.2;
	padding: 0 20px;
}
.nav-global li a .icn {
	display: none;
}
.nav-global li a span {
	position: relative;
}
.nav-global li a span:after {
	content: "";
	display: block;
	height: 2px;
	position: absolute;
	left: 0;
	right: 0;
	bottom: -8px;
	background: #009bc1;
	transition: all 0.3s ease;
	-webkit-transition: all 0.3s ease;
	transform: scale(0);
	-webkit-transform: scale(0);
}
.nav-global li a:hover span:after,
.nav-global li a.is-current span:after {
	transform: scale(1);
	-webkit-transform: scale(1);
}
@media(min-width: 768px) and (max-width: 954px) {
	.nav-global {
		display: block;
	}
}
@media (max-width: 767px){
	.nav-global {
		display: block;
		margin-bottom: 15px;
	}
	.nav-global li {
		display: block;
		border-bottom: 1px solid #33afcd;
	}
	.nav-global li:before,
	.nav-global li:last-child:after {
		display: none;
	}
	.nav-global li a {
		color: #fff;
		text-align: left;
		padding: 15px 0;
		font-size: 16px;
	}
	.nav-global li a .icn {
		display: inline-block;
	}
	.nav-global li a span:after {
		display: none;
	}
}

/* -----------------------------------------------
 [2. Object]
 -------------------------------------------------- */

/* 2-1. Component a.k.a Module
-------------------------------------------------- */
/*2-1-1.  Wrap     [wrp-***]*/
.wrp-container{
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 10px;
	position: relative;
	box-sizing: border-box;
}
.wrp-content{
	max-width: 1060px;
	padding: 0 10px;
	margin: 0 auto;
}
/*------------------------------------------------- */


/*2-1-2.  Box      [box-***]*/
.box{
	border-radius: 20px;
	background-color: #fff;
	box-shadow: 0 1px 2px rgba(0,0,0,.2);
}
@media (max-width: 767px){
	.box {
		border-radius: 10px;
	}
}

.box-introduce{
	background: #fff;
	border-radius: 20px;
	overflow: hidden;
}
.box-introduce__head{
	position: relative;
	height: 86px;
}
.box-introduce__title{
	position: relative;
	border-bottom: 1px solid #ddd;
	background-color: #fff;
	padding: 25px 30px 30px;
}
.box-introduce__head .btn-experiment {
	position: absolute;
	right: 30px;
	top: 50%;
	margin-top: -20px;
}
.box-introduce__image.grid-3{
	padding: 0 11px;
}
.box-introduce__container{
	margin: 0;
	padding: 30px;
	box-sizing: border-box;
}
.box-introduce__content{
	margin-top: -5px;
}
.box-introduce__text{
	font-size: 16px;
	line-height: 1.875;
	margin-bottom: 40px;
}
@media(max-width: 767px) {
	.box-introduce{
		border-radius: 0;
	}
	.box-introduce__head {
		height: 50px;
	}
	.box-introduce__head .hdg-lv2{
		text-align: left;
		font-size: 19px;
		line-height: 0.789;
		letter-spacing: 0;
		margin: 0;
		padding: 0;
	}
	.box-introduce__title {
		padding: 15px 10px;
	}
	.box-introduce__head .btn-experiment{
		margin-top: -12px;
		right: 15px;
	}
	.box-introduce__container{
		padding: 15px;
	}
	.box-introduce__image{
		margin-bottom: 15px;
	}
	.box-introduce__image.grid-3{
		padding: 0 7px;
	}
	.box-introduce__text{
		font-size: 14px;
		line-height: 1.43;
		margin-bottom: 20px;
	}
}

.box-page-heading{
	background: #ededdf url("/resource/img/bg-woods01.png") no-repeat center -29px;
	min-height: 151px;
	box-sizing: border-box;
	padding-bottom: 20px;
}
.box-page-heading__main{
	padding-left: 80px;
	position: relative;
}
.box-page-heading__main:before{
	content: '';
	position: absolute;
	width: 50px;
	height: 80px;
	z-index: 2;
	top: 12px;
	left: 12px;
	background: url("/resource/img/about_img_kurokokun01.png") center;
	background-size: cover;
}
.box-page-heading__head{
	color: #333;
	margin-bottom: 10px;
	line-height: 1;
}
.box-page-heading__head__inner {
	display: table;
	width: 100%;
	min-height: 40px;
}
.box-page-heading__label > span {
	font-size: 14px;
	border: 1px solid #ddd;
	padding: 8px 8px 6px;
	margin-right: 5px;
	letter-spacing: 0.001em;
	line-height: 1;
	position: relative;
	vertical-align: middle;
	display: inline-block;
	white-space: nowrap;
}
.box-page-heading__head .hdg__image {
	height: 36px;
	width: auto;
}
.box-page-heading__head--02{
	padding-right: 180px;
}
.box-page-heading__label{
	display: table-cell;
	vertical-align: top;
	padding-top: 7px;
}
.box-page-heading__button{
	font-size: 14px;
	border: 1px solid #ddd;
	border-radius: 15px;
	padding: 8px 15px 6px;
	color: #333;
	text-decoration: none;
	letter-spacing: -0.1em;
	line-height: 1;
	position: absolute;
	right: 0;
	top: 40px;
	background-color: #fff;
	width: 150px;
	box-sizing: border-box;
	white-space: nowrap;
	text-align: center;
}
.box-page-heading__button .icn{
	color: #ff9900;
}
.box-page-heading__button.checked,
.box-page-heading__button.checked .icn{
	background-color: #ff9900;
	border: 1px solid #ff9900;
	color: #fff;
}
.box-page-heading__button:hover{
	text-decoration: none;
}
.box-page-heading__head h1{
	display: table-cell;
	width: 100%;
	vertical-align: top;
	font-size: 30px;
	letter-spacing: -0.06em;
	line-height: 1;
	font-family: "新丸ゴ M","Shin Maru Go Medium","ヒラギノ角ゴ ProN W3","HiraKakuProN-W3","ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro","メイリオ",Meiryo,"ＭＳ Ｐゴシック","helvetica","arial",sans-serif;
	padding: 1px 0 0;
}
.box-page-heading__head h1 small{
	font-size: 18px;
	font-weight: normal;
	padding-left: 10px;
}
.box-page-heading__image img{
	border-radius: 18px;
	min-width: 500px;
}
.box-page-heading__image{
	margin-bottom: 10px;
	line-height: 1;
	border-radius: 18px;
	overflow: hidden;
	text-align: center;
}
.box-page-heading__note{
	font-size: 14px;
	margin-bottom: 25px;
	padding-right: 185px;
}
.box-page-heading__note em{
	font-size: 12px;
	font-style: normal;
}
.box-page-heading .lst-social {
	position: absolute;
	right: 10px;
	bottom: -33px;
}
@media screen and (min-width: 0px) and (max-width: 767px){
	.box-page-heading{
		background: url("/resource/img/bg-woods01.png") no-repeat bottom center;
		background-size: auto 90px;
		padding-bottom: 35px;
		min-height: 1px;
	}
	.box-page-heading.has-nav{
		padding-bottom: 0;
	}
	.box-page-heading__image img{
		border-radius: 9px;
		min-width: 100%;
	}
	.box-page-heading__image{
		border-radius: 9px;
	}
	.box-page-heading__main{
		padding-left: 35px;
	}
	.box-page-heading__main:before{
		width: 25px;
		height: 40px;
		top: 5px;
		left: 0;
	}
	.box-page-heading__head{
		margin-bottom: 5px;
		padding-top: 10px;
	}
	.box-page-heading__head h1{
		font-size: 16px;
		display: block;
	}
	.box-page-heading__label {
		display: block;
		margin-bottom: 7px;
		padding-top: 0;
	}
	.box-page-heading__label span{
		font-size: 10px;
		padding: 5px 5px 3px;
	}
	.box-page-heading__button{
		top: 10px;
		font-size: 10px;
		padding: 4px 10px 3px;
		width: auto;
	}
	.box-page-heading__head--02{
		padding-right: 0;
	}
	.box-page-heading__note {
		font-size: 10px;
		margin-bottom: 15px;
		padding: 0;
	}
	.box-page-heading__note em {
		font-size: 10px;
	}
	.box-page-heading__head .hdg__image {
		height: 16px;
		width: auto;
	}
}
.box-page-content{
	background-color: #ededdf;
}
/*------------------------------------------------- */
.box-main-visual {
	overflow: hidden;
	background: url("/resource/img/bg-woods02.png") no-repeat bottom center;
	padding: 20px 0 116px;
	position: relative;
}
.box-main-visual .owl-stage-outer {
	overflow: visible;
}
.box-main-visual__slide {
	max-width: 780px;
	margin: 0 auto;
}
.box-main-visual__slide__image {
	border-radius: 20px;
	overflow: hidden;
	display: block;
	font-size: 0;
}
.box-main-visual .owl-thumbs {
	display: none;
}
.box-main-visual__slide .owl-item {
	position: relative;
}
.box-main-visual__slide__ribbon {
	display: block;
	position: absolute;
	top: 10px;
	left: -5px;
	min-width: 155px;
	text-align: center;
}
.box-main-visual__slide__ribbon:after {
	content: "";
	display: block;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 0 5px 5px 0;
	border-color: transparent #b71c1c transparent transparent;
	position: absolute;
	bottom: -5px;
	left: 0;
}
.box-main-visual__slide__ribbon span {
	background: #f44336;
	display: block;
	position: relative;
	font-size: 14px;
	color: #ffff00;
	line-height: 30px;
	padding: 0 10px;
}
.box-main-visual__slide__ribbon span:before {
	content: "";
	display: block;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 14px 14px 0 0;
	border-color: #f44236 transparent transparent transparent;
	position: absolute;
	top: 0;
	right: -14px;
}
.box-main-visual__slide__ribbon span:after {
	content: "";
	display: block;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 14px 0 0 14px;
	border-color: transparent transparent transparent #f44236;
	position: absolute;
	bottom: 0;
	right: -14px;
}
.box-main-visual__slide__ribbon span em {
	font-style: normal;
	font-size: 16px;
}
.box-main-visual__char {
	max-width: 1200px;
	margin: 0 auto;
	position: relative;
	top: 117px;
}
.box-main-visual__char p{
	position: absolute;
	bottom: -2px;
	left: 10px;
	z-index: 5;
	text-align: center;
}
.box-main-visual__char small {
	display: block;
	font-size: 12px;
	margin-top: 10px;
}
.box-main-visual .lst-social {
	position: absolute;
	right: 10px;
	bottom: -78px;
}
@media(max-width: 780px) {
	.box-main-visual {
		padding: 10px 0 98px;
		background-size: auto 90px;
	}
	.box-main-visual__slide {
		max-width: 303px;
	}
	.box-main-visual__slide .owl-item {
		border-radius: 10px;
	}
	.box-main-visual__slide__ribbon {
		min-width: 78px;
		top: 5px;
		left: -2px;
	}
	.box-main-visual__slide__ribbon:after {
		border-width: 0 2px 2px 0;
		bottom: -2px;
	}
	.box-main-visual__slide__ribbon span {
		font-size: 7px;
		line-height: 15px;
		padding: 0 8px;
	}
	.box-main-visual__slide__ribbon span em {
		font-size: 8px;
	}
	.box-main-visual__slide__ribbon span:before {
		border-width: 7px 7px 0 0;
		right: -7px;
	}
	.box-main-visual__slide__ribbon span:after {
		border-width: 7px 0 0 7px;
		right: -7px;
	}
	.box-main-visual__char p {
		bottom: 32px;
		left: 5px;
	}
	.box-main-visual__char small {
		display: none;
	}
	.box-main-visual__char img {
		width: 51px;
		height: auto;
	}
	.box-main-visual__slide__image {
		border-radius: 10px;
	}
	.box-main-visual .lst-social {
		display: none;
	}
}
/*------------------------------------------------- */
.box-tab {
	position: relative;
}
.box-tab__head {
	width: 120px;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
}
.box-tab__trigger {
	height: 100%;
}
.box-tab__trigger li {
	height: 50%;
	border-radius: 10px 0 0 10px;
	box-shadow: -1px 1px 2px 0px rgba(0,0,0,0.2);
	background: #fff;
}
.box-tab__trigger li a {
	display: block;
	color: #fff;
	font-size: 16px;
	text-align: center;
	background: #7cb342;
	text-decoration: none;
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
	font-weight: bold;
	line-height: 1.125;
	height: 100%;
	border-radius: 10px 0 0 10px;
	padding-right: 20px;
}
.box-tab__trigger li a span {
	position: relative;
	top: 50%;
	-ms-transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	display: block;
}
.box-tab__trigger li a.is-active {
	color: #7cb342;
	background: #fff;
	position: relative;
}
.box-tab__trigger li a.is-active:after {
	content: "";
	display: block;
	width: 2px;
	position: absolute;
	right: 20px;
	top: 0;
	bottom: 0;
	z-index: 3;
	background: #fff;
}
.box-tab__trigger li a.is-active:hover:after {
	opacity: 1;
}
.box-tab__trigger li a .icn {
	display: block;
	font-size: 32px;
	padding: 0;
	min-height: 35px;
	margin-bottom: 5px;
}
.box-tab__wrap {
	background: #fff;
	box-shadow: 0 1px 2px rgba(0,0,0,.2);
	border-radius: 0 10px 10px 0;
	margin-left: 100px;
	position: relative;
	z-index: 2;
	padding: 0 25px 20px 20px;
	min-height: 295px;
}
@media(max-width: 767px){
	.box-tab {
		margin: 0 -10px;
	}
	.box-tab__head {
		width: auto;
		position: static;
		padding: 0 9px;
		border-radius: 5px;
	}
	.box-tab__trigger:after {
		content: "";
		display: block;
		clear: both;
	}
	.box-tab__trigger li {
		width: 50%;
		float: left;
		box-shadow: none;
		background: none;
		border-radius: 5px 5px 0 0;
	}
	.box-tab__trigger li a {
		font-size: 14px;
		padding: 13px 0;
		border-radius: 5px 5px 0 0;
	}
	.box-tab__trigger li a .icn {
		display: inline-block;
		font-size: 14px;
		margin: 0 5px 0 0;
		min-height: 0;
	}
	.box-tab__trigger li a.is-active {
		color: #333;
	}
	.box-tab__trigger li a.is-active .icn {
		color: #7cb342;
	}
	.box-tab__trigger li a.is-active:after {
		display: none;
	}
	.box-tab__trigger li a span {
		top: auto;
		-ms-transform: translateY(0);
		-webkit-transform: translateY(0);
		transform: translateY(0);
	}
	.box-tab__wrap {
		margin: 0;
		border-radius: 0;
		padding: 5px 14px 50px;
		overflow: hidden;
	}
}
/*------------------------------------------------- */
.box-social{
	padding: 25px 0 15px;
	text-align: center;
	border-top: 2px dashed #d2caab;
	border-bottom: 2px dashed #d2caab;
	margin: 30px 0 5px;
}
.box-social__head{
	margin: 0 auto 15px;
	font-size: 18px;
	font-weight: bold;
	color: #666600;
	font-family: "新丸ゴ M","Shin Maru Go Medium","ヒラギノ角ゴ ProN W3","HiraKakuProN-W3","ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro","メイリオ",Meiryo,"ＭＳ Ｐゴシック","helvetica","arial",sans-serif;
}
.box-social__link{
	position: relative;
	display: inline-block;
	min-width: 574px;
}
.box-social__link li {
	padding: 0 2px;
}
.box-social__link:before{
	content: "";
	width: 76px;
	height: 96px;
	background: url("/resource/img/cmn_img_kurokokun_social01.png") no-repeat center;
	background-size: cover;
	position: absolute;
	left: 0;
	bottom: -5px;
}
.box-social__link li{
}
.box-social__count{
	position: absolute;
	right: 20px;
	top: 50%;
	-ms-transform: translateY(-52%);
	-webkit-transform: translateY(-52%);
	transform: translateY(-52%);
	color: #fff;
	font-size: 14px;
}
.box-social__link .line-likes .btnWrap {
	display: block!important;
}
.box-social__link .line-likes .btnWrap > #button{
	width: 100% !important;
}
@media (max-width: 767px){
	.box-social{
		padding: 18px 0 25px;
		margin: 15px 0 10px;
	}
	.box-social__link{
		min-width: 0;
	}
	.box-social__link:before {
		width: 39px;
		height: 50px;
		left: -50px;
		bottom: 0;
	}
	.box-social__head {
		max-width: 235px;
		margin: 0 auto 22px;
	}
}
.box-social--index {
	border: 0;
	margin: 0;
	padding: 18px 0 6px;
}

.box-warning{
	border: 2px dashed #d2caab;
	display: table;
	width: 100%;
	box-sizing: border-box;
	padding:  15px 20px;
	margin: 40px 0 20px;
}
.box-warning > p{
	padding-bottom: 10px;
}
.box-warning_inner{
	display: table;
	width: 100%;
}
.box-warning__left,
.box-warning__right{
	display: table-cell;
	vertical-align: middle;
}
.box-warning__left{
	text-align: center;
	font-size: 16px;
	font-weight: bold;
	padding-right: 15px;
}
.box-warning__note{
	white-space: nowrap;
	margin-top: -6px;
}
.box-warning__left img {
	width: 78px;
}
.box-warning__right{
	color: #333;
	font-size: 14px;
}
@media (max-width: 767px){
	.box-warning{
		padding: 10px;
		margin-top: 0;
	}
	.box-warning__left{
		padding: 0 0 10px;
	}
	.box-warning__left img{
		width: 50px;
		height: 50px;
	}
	.box-warning__left,
	.box-warning__right{
		width: 100%;
		display: block;
	}
}
.box-step .wrp-grid {
	margin: 0 -9px 9px -9px;
}
.lst-step li{
	padding: 9px;
}
.lst-step__content{
	padding: 10px;
	border-radius: 20px;
	background-color: #fff;
	box-shadow: 0 1px 2px rgba(0,0,0,.2);
	position: relative;
}
.lst-step__image{
	position: relative;
	padding-top: 48px;
}
.lst-step__noimage{
	height: 45px;
}
.lst-step__image img{
	width: 100%;
}
.lst-step__text{
	font-size: 16px;
	margin-top: 10px;
	padding: 0 0 15px;
}
.type_txt{
	font-size: 16px;
	padding: 0 0 15px;
}
.lst-step-number-wrap{
	display: block;
	position: absolute;
	background: #fff;
	border-radius: 10px 10px 0 0;
	width: 100%;
	top: 0;
	left: 0;
	z-index: 1;
	padding: 10px 10px 0;
	box-sizing: border-box;
}
.lst-step-number{
	display: block;
	background: #90ad66;
	border-radius: 5px 5px 0 0;
	font-size: 24px;
	color: #fff;
	width: 100%;
	padding: 7px;
	text-align: center;
	box-sizing: border-box;
}
.lst-step__note{
	font-size: 14px;
	margin-top: 16px;
}
.type_img{
	widtn: 100%;
	box-sizing: border-box;
	padding: 0;
}
.type_img img{
	width: 100%;
}
.contents_table_box{
	padding: 0 0 5px;
}
@media (max-width: 767px){
	.lst-step-number{
		font-size: 16px;
		padding: 6px 12px;
	}
	.lst-step__image{
		padding-top: 35px;
	}
	.lst-step__image img{
		width: 100%;
	}
	.lst-step__text{
		font-size: 14px;
	}
	.type_txt{
		font-size: 14px;
	}
	.lst-step__note{
		font-size: 12px;
	}
	.lst-step__noimage{
		height: 30px;
	}
}
.box-hint{
	padding: 20px 15px;
	margin: 0 0 20px;
	display: table;
	box-sizing: border-box;
	width: 100%;
	border-radius: 20px;
	background-color: #fff;
	box-shadow: 0 1px 2px rgba(0,0,0,.2);
}
.box-hint__left,
.box-hint__right{
	display: table-cell;
}
.box-hint__left{
	width: 7%;
	vertical-align: middle;
}
.box-hint__right{
	vertical-align: top;
}
.box-hint-title{
	font-weight: bold;
	font-size: 20px;
	margin-bottom: 7px;
}
@media(max-width: 767px){
	.box-hint{
		padding: 12px 10px 12px 10px;
		margin: 0 0 10px;
	}
	.box-hint__left img{
		width: 50px;
		height: auto;
	}
	.box-hint-title{
		font-size: 16px;
	}
}
.box-popup {
	display: none;
	position: fixed;
	left: 50%;
	top: 50%;
	-webkit-transform: translate(-50%,-50%);
	-ms-transform: translate(-50%,-50%);
	transform: translate(-50%,-50%);
	margin: auto;
	z-index: 1001;
	max-width: 500px;
	max-height: 250px;
	box-shadow: 0px 0px 8px 4px rgba(0,0,0,0.2);
	border-radius: 20px;
	border: 2px solid #009bc1;
	background: #009bc1;
	overflow: hidden;
}
.box-popup__title {
	text-align: center;
	font-size: 18px;
	font-weight: bold;
	color: #fff;
	background: #009bc1;
	padding: 12px 0;
}
.box-popup__content {
	background: #fff;
	position: relative;
}
.box-popup-confirm {
	font-size: 16px;
	padding: 18px;
}
.box-popup-confirm .input-radiocheck {
	font-size: 14px;
	margin: 15px 0 20px;
}
.box-popup-confirm .btn-cancel,
.box-popup-confirm .btn-confirm {
	display: block;
	text-align: center;
	color: #333;
	text-decoration: none;
	border-radius: 15px;
	width: 140px;
	padding: 3px 0;
}
.box-popup__button {
	text-align: center;
}
.box-popup__button li {
	display: inline-block;
	padding: 0 4px;
}
.box-popup__image {
	text-align: center;
	font-size: 0;
}
.box-popup__character {
	position: absolute;
	bottom: 0;
	right: 63px;
	font-size: 0;
}
.box-popup-confirm .btn-cancel {
	border: 1px solid #ddd;
}
.box-popup-confirm .btn-confirm {
	background: #fdd835;
	box-shadow: 0 2px 4px rgba(0,0,0,.2), inset 0 -1px rgba(0,0,0,.2);
}
.box-popup-illust {
	width: 496px;
	padding-top: 30px;
}
@media (max-width: 767px){
	.box-popup {
		border-radius: 10px;
		box-shadow: 0px 0px 4px 2px rgba(0,0,0,0.2);
		width: 250px;
	}
	.box-popup__title {
		font-size: 14px;
	}
	.box-popup-confirm {
		font-size: 14px;
		padding: 8px;
	}
	.box-popup-confirm .input-radiocheck {
		font-size: 12px;
		margin: 15px 0 18px;
	}
	.box-popup__button {
		margin: 0 -5px;
	}
	.box-popup__button li a {
		font-size: 12px;
	}
	.box-popup-confirm .btn-cancel,
	.box-popup-confirm .btn-confirm {
		width: 109px;
	}
	.box-popup-confirm .btn-confirm {
		box-shadow: none;
	}
	.box-popup-illust {
		width: 100%;
		padding-top: 15px;
	}
	.box-popup-illust .box-popup__image img {
		width: 128px;
	}
	.box-popup-illust .box-popup__character {
		right: 13px;
	}
	.box-popup-illust .box-popup__character img {
		width: 58px;
		height: 74px;
	}
}

.box-search {
	font-size: 0;
}
.box-search .box-search__input {
	width: 79.761%;
}
.box-search .box-search__button {
	width: calc(20.238% - 10px);
	padding: 8px 0;
	box-shadow: inset 0 -1px rgba(0,0,0,.2);
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
	margin-left: 10px;
}
@media(max-width: 900px){
	.box-search .box-search__input {
		width: 75.352%;
		font-size: 12px;
		padding: 5px 15px;
	}
	.box-search .box-search__button {
		width: calc(24.648% - 5px);
		margin-left: 5px;
		padding: 7px 0;
		font-size: 12px;
		line-height: 15px;
	}
}

.box-search-count {
	background: #aa965c;
	color: #fff;
	font-size: 16px;
	border-radius: 25px;
	margin-bottom: 20px;
	padding: 14px 20px;
	box-shadow: inset 1px 1px 2px 0px rgba(0,0,0,0.2);
}
@media(max-width: 767px){
	.box-search-count {
		background: transparent;
		border-radius: 0;
		box-shadow: none;
		font-size: 14px;
		color: #333;
		padding: 0;
		margin-bottom: 15px;
	}
}

.box-preview {
	display: table;
	margin-bottom: 40px;
}
.box-preview__image,
.box-preview__content {
	display: table-cell;
	vertical-align: top;
}
.box-preview__image {
	padding-right: 20px;
	text-align: center;
	font-size: 0;
}
.box-preview__title {
	font-size: 16px;
	margin-bottom: 10px;
}
.box-preview__text {
	margin-bottom: 10px;
	line-height: 1.7;
}
.box-preview__date,
.box-preview__link {
	font-size: 12px;
}
.box-preview__link{
	word-break: break-all;
}
@media(max-width: 767px){
	.box-preview {
		margin-bottom: 10px;
	}
	.box-preview__image {
		padding: 0 10px 10px 0;
		width: 33%;
	}
	.box-preview__image img{
		max-width: 100%;
		height: auto;
	}
	.box-preview__title {
		font-size: 13px;
		margin-bottom: 5px;
	}
	.box-preview__text {
		display: none;
	}
	.box-preview__date,
	.box-preview__link {
		font-size: 10px;
	}
}

.box-pager {
	position: relative;
	text-align: center;
	padding: 0 105px;
	clear: both;
}
.box-pager:after {
	content: "";
	display: block;
	clear: both;
}
.box-pager__page {
	display: inline-block;
	color: #333;
}
.box-pager__page li {
	display: inline-block;
	vertical-align: middle;
	position: relative;
	padding: 0 20px;
	height: 50px;
	line-height: 50px;
}
.box-pager__page li:after {
	content: "";
	display: block;
	width: 2px;
	height: 15px;
	position: absolute;
	top: 50%;
	right: 1px;
	transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	background: #ccc;
	font-size: 16px;
}
.box-pager__page li:last-child:after {
	display: none;
}
.box-pager__page li a {
	display: block;
	height: 50px;
	line-height: 50px;
}
.box-pager__button {
	width: 100px;
}
.box-pager__button--prev {
	position: absolute;
	bottom: 0;
	left: 0;
}
.box-pager__button--next {
	position: absolute;
	bottom: 0;
	right: 0;
}
.box-pager__button a {
	font-size: 18px;
	display: block;
	color: #666600;
	text-align: center;
	border-radius: 25px;
	box-shadow: 0 2px 4px rgba(0,0,0,.2), inset 0 -1px rgba(0,0,0,.2);
	background: #fdd835;
	text-decoration: none;
	padding: 12px 10px;
	font-weight: bold;
}
.box-pager__button--next .icn {
	padding-right: 0;
	padding-left: 7px;
}
.box-pager__button a.is-disabled {
	color: #ccc;
	background: #ddd;
	cursor: not-allowed;
	pointer-events: none;
	box-shadow: none;
}
@media(max-width: 767px){
	.box-pager {
		padding: 0 75px;
	}
	.box-pager__page li {
		padding: 0 10px;
		font-size: 10px;
		height: 30px;
		line-height: 30px;
	}
	.box-pager__page li a {
		height: 30px;
		line-height: 30px;
	}
	.box-pager__button {
		width: 70px;
	}
	.box-pager__button--next {
		margin-left: 5px;
	}
	.box-pager__button--prev {
		margin-right: 5px;
	}
	.box-pager__button a {
		font-size: 12px;
		padding: 6px 7px;
		box-shadow: 0 1px 2px rgba(0,0,0,.2), inset 0 -1px rgba(0,0,0,.2);
	}
}
.frame01{
	position: relative;
	background: #fff;
	border-radius: 20px;
	box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.2);
	padding-left: 20px;
	padding-right: 20px;
}
.box__search01 .frm__submit{
	text-align: center;
	padding: 0 0 20px;
}
.box__search02{
	padding: 20px;
}
@media (max-width: 767px){
	.frame01{
		padding-left: 10px;
		padding-right: 10px;
	}
	.box__search01{
		padding-top: 5px;
		padding-bottom: 42px
	}
	.box__search01 .frm__submit{
		padding: 9px 0;
		border-radius: 0 0 20px 20px;
	}
	.box__search01 .input-radiocheck span{
		font-size: 12px;
	}
}

/*2-1-3.  Table    [tbl-***]*/



/*2-1-4.  Headings [hdg_lv*]*/
.hdg-lv2{
	line-height: 1;
	letter-spacing: 0.05em;
	position: relative;
	text-align: center;
	font-size: 28px;
	margin: 40px 0 28px;
	color: #666600;
	font-family: "新丸ゴ M","Shin Maru Go Medium","ヒラギノ角ゴ ProN W3","HiraKakuProN-W3","ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro","メイリオ",Meiryo,"ＭＳ Ｐゴシック","helvetica","arial",sans-serif;
}
.box-page-content .wrp-container:nth-of-type(1) .hdg-lv2:nth-of-type(1) {
	margin: 0 0 28px;
}
.hdg-lv2 .hdg__image {
	height: 27px;
	width: auto;
}
.hdg-lv2 .icn {
	padding-right: 8px;
}
.hdg-lv2 .icn-trophy:before {
	color: #fdd835;
}
.hdg-lv2 .icn-search:before{
	color: #cc6666;
}
.hdg-lv2 span {
	display: inline-block;
	position: relative;
	padding: 0 40px;
}
.hdg-lv2 em{
	font-style: normal;
	font-weight: normal;
}

.hdg-lv3 {
	font-size: 20px;
	border-bottom: 2px dashed #d2caab;
	line-height: 1.5;
	letter-spacing: 0.05em;
	padding-bottom: 10px;
	margin-bottom: 10px;
	font-family: "新丸ゴ M","Shin Maru Go Medium","ヒラギノ角ゴ ProN W3","HiraKakuProN-W3","ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro","メイリオ",Meiryo,"ＭＳ Ｐゴシック","helvetica","arial",sans-serif;
}
.hdg-lv3_2 {
	clear: both;
	font-size: 20px;
	line-height: 1;
	padding-bottom: 10px;
	font-family: "新丸ゴ M","Shin Maru Go Medium","ヒラギノ角ゴ ProN W3","HiraKakuProN-W3","ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro","メイリオ",Meiryo,"ＭＳ Ｐゴシック","helvetica","arial",sans-serif;
}
.box-step .wrp-grid .hdg-lv3_2 {
	padding: 15px 0 5px;
	margin: 0 9px 0;
}
.hdg-lv4{
	padding: 15px 0 5px;
	font-size: 16px;
}
@media(min-width: 0px) and (max-width: 767px){
	.hdg-lv2 {
		margin: 20px 0 10px;
		font-size: 22px;
	}
	.hdg-lv2 .hdg__image {
		margin: 20px 0 10px;
	}
	.box-page-content .wrp-container:nth-of-type(1) .hdg-lv2:nth-of-type(1) {
		margin: 0 0 10px;
	}
	.hdg-lv2 .hdg__image {
		height: 21px;
		width: auto;
	}
	.hdg-lv2 span {
		padding: 0 25px;
	}
	.hdg-lv2 span.icn {
		padding: 0;
	}
	.hdg-lv2 span:before {
		width: 18px;
		height: 16px;
		padding-right: 7px; 
	}
	.hdg-lv2 span:after {
		width: 20px;
		height: 15px;
		padding-left: 7px;
	}
	.hdg-lv2 span.hdg-lv2-flower {
		padding: 0 30px;
	}
	.hdg-lv3 {
		font-size: 15px;
		padding-bottom: 5px;
	}
	.hdg-lv3 .hdg__image {
		height: 15px;
		width: auto;
	}
	.hdg-lv3_2 {
		font-size: 15px;
		padding-bottom: 5px;
	}
	.hdg-lv4{
		padding: 15px 0 5px;
		font-size: 13px;
	}
}

.hdg-flag {
	text-align: center;
	color: #fff;
	margin-bottom: 20px;
	font-size: 18px;
	font-weight: normal;
	font-family: "新丸ゴ M","Shin Maru Go Medium","ヒラギノ角ゴ ProN W3","HiraKakuProN-W3","ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro","メイリオ",Meiryo,"ＭＳ Ｐゴシック","helvetica","arial",sans-serif;
}
.hdg-flag span img {
	height: 18px;
	width: auto;
	display: inline-block;
	vertical-align: middle;
}
.hdg-flag span {
	display: inline-block;
	line-height: 40px;
	position: relative;
	padding: 0 20px;
	width: 188px;
}
.hdg-flag--pink span {
	background: #cc6666;
}
.hdg-flag--green span {
	background: #509078;
}
.hdg-flag span:before,
.hdg-flag span:after {
	content: "";
	display: block;
	width: 16px;
	height: 40px;
	position: absolute;
	top: 0;
	bottom: 0;
}
.hdg-flag--pink span:before,
.hdg-flag--pink span:after {
	background: url("/resource/img/cmn_bg_flag01.png") no-repeat center;
}
.hdg-flag--green span:before,
.hdg-flag--green span:after {
	background: url("/resource/img/cmn_bg_flag02.png") no-repeat center;
}
.hdg-flag span:before {
	left: -16px;
}
.hdg-flag span:after {
	right: -15px;
	-webkit-transform: rotate(180deg);
	-ms-transform: rotate(180deg);
	transform: rotate(180deg);
}
@media(max-width: 767px){
	.section-other {
		padding-bottom: 35px;
	}
	.hdg-flag {
		margin-bottom: 15px;
		font-size: 16px;
	}
	.hdg-flag span {
		line-height: 37px;
		width: 179px;
		padding: 0 10px;
	}
	.hdg-flag span img {
		height: 16px;
		width: auto;
	}
	.hdg-flag span:before,
	.hdg-flag span:after {
		content: "";
		display: block;
		width: 16px;
		height: 37px;
		position: absolute;
		top: 0;
		bottom: 0;
	}
	.hdg-flag--pink span:before,
	.hdg-flag--pink span:after {
		background: url("/resource/img/cmn_bg_flag01_sp.png") no-repeat center;
		background-size: auto 37px;
	}
	.hdg-flag--green span:before,
	.hdg-flag--green span:after {
		background: url("/resource/img/cmn_bg_flag02_sp.png") no-repeat center;
		background-size: auto 37px;
	}
}
/*2-1-5.  Nav      [nav-***]*/
.nav-breadcrumb {
	line-height: 32px;
	padding-top: 10px;
}
.nav-breadcrumb li {
	color: #333;
	font-size: 12px;
	position: relative;
	display: inline-block;
	vertical-align: middle;
	letter-spacing: 0.05em;
}
.nav-breadcrumb li:after {
	content: "\f105";
	font-family: 'FontAwesome';
}
.nav-breadcrumb li:last-child:after {
	display: none;
}
.nav-breadcrumb li a {
	font-size: 12px;
	color: #333;
	text-decoration: none;
}
.nav-breadcrumb li a:hover {
	text-decoration: underline;
}
@media(min-width: 0px) and (max-width: 767px){
	.nav-breadcrumb {
		display: none;
	}
}
/*----------------------------------*/
.nav-footer{
	padding-top: 33px;
	text-align: center;
}
.nav-footer ul {
	position: relative;
	text-align: center;
}
.nav-footer ul li{
	display: inline-block;
}
.nav-footer__prev{
	position: absolute;
	top:0;
	left: 0;
}
.nav-footer__next{
	position: absolute;
	top: 0;
	right: 0
}
.nav-footer .btn {
	min-width: 200px;
	white-space: nowrap;
}
@media (max-width: 767px){
	.nav-footer .btn{
		min-width: auto;
	}
	.nav-footer{
		padding-top: 13px;
	}
	.nav-footer ul{
		position: relative;
		padding-bottom: 95px;
	}
	.nav-footer__search{
		position: absolute;
		bottom: 0;
		left: 0;
		right: 0;
		margin: auto;
		text-align: center;
	}
}
/*2-1-6.  List     [lst-***]*/
.lst-dot li{
	text-indent: -1em;
	padding-left: 1em;
}
.lst-dot li:before {
	content: "・";
}
/*------------------------------------------------- */
.lst-input li {
	display: inline-block;
	vertical-align: top;
	margin: 0 0 5px 10px;
	min-width: 63px;
}
.lst-input li + .lst-input__link {
	margin-left: 25px;
}
@media(max-width: 767px){
	.lst-input {
		font-size: 0;
		position: relative;
	}
	.lst-input li {
		width: 50%;
		border-bottom: 1px dashed #d2caab;
		margin: 0;
		padding: 9px 0;
		position: relative;
	}
	.lst-input li:last-child:nth-child(odd):after {
		content: "";
		display: block;
		width: 100%;
		border-bottom: 1px dashed #d2caab;
		position: absolute;
		right: -100%;
		bottom: -1px;
	}
	.lst-input li:nth-child(even) label {
		margin-left: 5px;
	}
	.lst-input li:nth-child(odd) label {
		margin-right: 5px;
	}
	.lst-input--3sp li {
		width: 33.3333333%;
	}
	.lst-input--3sp li label {
		margin-right: 5px;
	}
	.lst-input--3sp li + li label {
		margin-left: 5px;
	}
	.lst-input--3sp li:last-child label {
		margin-right: 0;
	}
	.lst-input--3sp li:last-child:nth-child(odd):after {
		display: none;
	}
	.lst-input li.lst-input__link {
		position: absolute;
		right: 0;
		width: auto;
		font-size: 14px;
		top: -30px;
		border-bottom: 0;
		padding: 0;
		margin: 0;
	}
}
/*------------------------------------------------- */
.lst-teacher {
	font-size: 0;
	margin: 0 -2px;
	border-bottom: 2px dashed #d2caab;
}
.lst-teacher li {
	display: inline-block;
	width: 50%;
	box-sizing: border-box;
	padding: 0 2px;
}
.lst-teacher li a {
	color: #333;
	font-size: 16px;
	text-decoration: none;
	display: block;
	padding: 12px 0;
	border-top: 2px dashed #d2caab;
}
.lst-teacher li a .icn {
	color: #0066cc;
}
.teacher-block .hdg-lv2{
	top: -9px;
}
@media(max-width: 767px){
	.lst-teacher {
		margin: 0 -1px;
		border-bottom: 1px dashed #d2caab;
	}
	.lst-teacher li {
		padding: 0 1px;
	}
	.lst-teacher li a {
		font-size: 14px;
		padding: 8px 0;
		border-top: 1px dashed #d2caab;
	}
	.lst-teacher li a .icn {
		padding-right: 3px;
	}
	.teacher-block .hdg-lv2{
		top: 0;
	}
}
/*------------------------------------------------- */
.lst-news {
	overflow: hidden;
	height: 38px;
	box-sizing: border-box;
}
.lst-news li {
	position: absolute;
	top: 0;
	left: 70px;
	right: 0;
	display: none;
}
.lst-news li:first-child{
	display: block;
}
.lst-news li a {
	display: block;
	line-height: 38px;
}
.lst-news li a span {
	display: inline-block;
}
@media(max-width: 767px){
	.lst-news {
		height: 30px;
	}
	.lst-news li {
	}
	.lst-news li a {
		line-height: 30px;
	}
}
/*------------------------------------------------- */
.lst-preview li {
	margin-bottom: 40px;
}
.lst-preview li:last-child {
	margin-bottom: 0;
}
@media(max-width: 767px){
	.lst-preview li {
		margin-bottom: 20px;
	}
	.lst-preview li:last-child {
		margin-bottom: 10px;
	}
}
/*------------------------------------------------- */
.lst-social {
	text-align: center;
}
.lst-social li {
	display: inline-block;
	padding: 0 3px;
}
.lst-social li a {
	font-size: 0;
	display: block;
}



/*2-1-7.  Button   [btn-***]*/
.btn {
	padding: 12px 20px;
	box-sizing: border-box;
	display: inline-block;
	vertical-align: middle;
	cursor: pointer;
	color: #fff;
	text-align: center;
	text-decoration: none;
	font-size: 16px;
	font-weight: bold;
	background-color: #fff;
	border-radius: 25px;
	box-shadow: 0 2px 4px rgba(0,0,0,.2), inset 0 -1px rgba(0,0,0,.2);
}
.btn:hover {
	text-decoration: none;
}
.btn--primary{
	background-color: #009bc1;
	color: #fff;
}
.btn--secondary{
	background-color: #fdd835;
	color: #666600;
}
@media (min-width: 0px) and (max-width: 767px){
	.btn {
		font-size: 14px;
		padding: 7px 20px;
		line-height: 15px;
	}
	.btn--primary{
		padding: 12px 17px;
	}
	.btn--secondary{
		padding: 12px 17px;
		background: #9b7b6c;
		color: #fff;
	}
}
/*2-1-8.  Anchor   [acr-***]*/
.arc-type01{
}

/*2-1-9.  Text     [txt-***]*/
.txt-lead {
	text-align: center;
	font-size: 16px;
	line-height: 30px;
}
@media(min-width: 0px) and (max-width: 767px){
	.txt-lead {
		font-size: 14px;
		line-height: 20px;
		text-align: left;
	}
}
.txt-blue{
	color: #0066cc;
}
/*2-1-10. Icon     [icn-***]*/
.icn--right{
	padding: 0 0 0 5px;
}
/*2-1-11. Label    [lbl-***]*/
label{
	cursor: default;
}
.lbl{
	padding: 7px 10px;
	display: inline-block;
	vertical-align: middle;
	line-height: 1;
	text-align: center;
	color: #fff;
	white-space: nowrap;
	margin-bottom: 10px;
}
.lbl-news {
	font-size: 14px;
	padding: 3px 8px;
	background: #f44336;
}
@media(max-width: 767px){
	.lbl-news {
		font-size: 9px;
		padding: 2px 4px;
	}
}


/*2-1-12. Form     [frm-***]*/
.frm__table {
	margin-bottom: 20px;
}
.frm__table__item {
	border-bottom: 2px dashed #d2caab;
	display: table;
	width: 100%;
}
.frm__table__title {
	width: 116px;
	font-weight: bold;
	display: table-cell;
	vertical-align: top;
	padding: 16px 0 10px;
	font-size: 16px;
}
.frm__table__content {
	display: table-cell;
	vertical-align: top;
	padding: 16px 0 10px;
}
.frm__submit {
	text-align: right;
}
.frm__submit .btn--primary {
	width: 160px;
	padding: 8px 0;
	box-shadow: inset 0 -1px rgba(0,0,0,.2);
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
}
.frm__submit .btn--primary:hover {
	opacity: 0.7;
}
@media (max-width: 767px){
	.frm__table {
		margin: 0;
	}
	.frm__table__item,
	.frm__table__content,
	.frm__table__title {
		display: block;
		width: auto;
	}
	.frm__table__item {
		border: 0;
	}
	.frm__table__title {
		border-bottom: 1px dashed #d2caab;
		padding: 5px 0;
	}
	.frm__table__content {
		padding: 0 0 15px;
	}
	.frm__submit {
		text-align: center;
		position: absolute;
		left: -1px;
		right: -1px;
		bottom: 0;
		background: #eee;
		padding: 9px 0;
		border: 1px solid #ddd;
		border-bottom: 0;
		-webkit-transition: all .5s ease-in-out;
		transition: all .5s ease-in-out;
	}
	.is-in-view .frm__submit {
		position: fixed;
		width: 100%;
		bottom: 0;
		left: 0;
		right: 0;
		z-index: 5;
		box-sizing: border-box;
		-ms-transform: translateY(100%);
		-webkit-transform: translateY(100%);
		transform: translateY(100%);
		z-index: 1000;
	}
	.is-in-view.has-checked .frm__submit,
	.has-checked .frm__submit {
		-ms-transform: translateY(0);
		-webkit-transform: translateY(0);
		transform: translateY(0);
	}
	.frm__submit .btn--primary {
		font-weight: bold;
		width: 147px;
	}
}
.input {
	border-radius: 20px;
	border: 1px solid #ddd;
	display: inline-block;
	padding: 9px 20px;
	box-sizing: border-box;
	font-size: 14px;
}
.input::-webkit-input-placeholder {
	color: #999;
}
.input::-moz-placeholder {
	color: #999;
}
.input:-ms-input-placeholder {
	color: #999;
}
.input:-moz-placeholder {
	color: #999;
}
@media(max-width: 767px){
	.input{
		font-size: 12px;
		padding: 5px 15px;
	}
}
.input-radiocheck {
	display: block;
	position: relative;
	padding-left: 23px;
	line-height: 1px;
}
.input-radiocheck span {
	display: inline-block;
	vertical-align: middle;
	line-height: 1.4;
	font-size: 16px;
	pointer-events: none;
}
.input-radiocheck span input {
	margin: 0;
	position: absolute;
	z-index: 2;
	cursor: pointer;
	outline: none;
	opacity: 0;
}
.input-radiocheck__radio, .input-radiocheck__check {
	width: 12px;
	height: 12px;
	position: absolute;
	left: 0;
	top: 4px;
}
.input-radiocheck__radio {
	border: 1px solid #d5d5d5;
	border-radius: 50%;
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
}
.input-radiocheck__check {
	border: 1px solid #d5d5d5;
	border-radius: 2px;
	background: #fff;
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
	cursor: pointer;
}
.input-radiocheck__check:after,
.input-radiocheck__radio:after {
	content: "\f00c";
	font-family: 'FontAwesome';
	display: inline-block;
	font: normal normal normal 14px/1 FontAwesome;
	font-size: inherit;
	text-rendering: auto;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	-ms-transform: scale(0);
	-webkit-transform: scale(0);
	transform: scale(0);
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
	color: #fff;
	position: absolute;
	font-size: 10px;
	line-height: 12px;
	left: 0;
	top: 0;
	width: 12px;
	height: 12px;
	text-align: center;
}
.input-radiocheck__radio:after {
	content: "\f111";
}
.input-radiocheck__check.is-checked,
.input-radiocheck__radio.is-checked {
	border: 1px solid #fd990f;
	background: #fd990f;
}
.input-radiocheck__check.is-checked:after,
.input-radiocheck__radio.is-checked:after {
	-ms-transform: scale(1);
	-webkit-transform: scale(1);
	transform: scale(1);
}
@media(max-width: 767px){
	.input-radiocheck {
		padding-left: 15px;
	}
	.input-radiocheck span {
		font-size: 14px;
	}
	.input-radiocheck__radio, .input-radiocheck__check {
		width: 9px;
		height: 9px;
	}
	.input-radiocheck__check:after,
	.input-radiocheck__radio:after {
		width: 8px;
		height: 8px;
		font-size: 9px;
		top: -1px;
	}
}

/*2-1-13. Error    [err-***]*/


/*2-1-14. UI*/
.overflow-hidden {
	overflow: hidden;
}


/* 2-2. Utility
-------------------------------------------------- */
/*2-2-1. clearfix [ModernType]*/
#l-header:after,.wrp-header:after,#l-container:after,#l-main:after,#l-sub:after,#l-footer:after,.nav ul:after,.wrp-container:after,
.clearfix:after{
	display: block;
	clear: both;
	content: "";
}

/*2-2-2. margin,padding [mb10,pt20]*/
/* margin  */.m0{margin:0!important;}.m5{margin: 5px!important;}.m10{margin: 10px!important;}.m15{margin: 15px!important;}.m20{margin: 20px!important;}.m25{margin: 25px!important;}.m30{margin: 30px!important;}.m35{margin: 35px!important;}.m40{margin: 40px!important;}.m45{margin: 45px!important;}.m50{margin: 50px!important;}.m55{margin: 55px!important;}.m60{margin: 60px!important;}.m65{margin: 65px!important;}.m70{margin: 70px!important;}.m75{margin: 75px!important;}.m80{margin: 80px!important;}.m85{margin: 85px!important;}.m90{margin: 90px!important;}.m95{margin: 95px!important;}.m100{margin: 100px!important;}/* margin-top */.mt0{margin-top:0!important;}.mt5{margin-top: 5px!important;}.mt10{margin-top: 10px!important;}.mt15{margin-top: 15px!important;}.mt20{margin-top: 20px!important;}.mt25{margin-top: 25px!important;}.mt30{margin-top: 30px!important;}.mt35{margin-top: 35px!important;}.mt40{margin-top: 40px!important;}.mt45{margin-top: 45px!important;}.mt50{margin-top: 50px!important;}.mt55{margin-top: 55px!important;}.mt60{margin-top: 60px!important;}.mt65{margin-top: 65px!important;}.mt70{margin-top: 70px!important;}.mt75{margin-top: 75px!important;}.mt80{margin-top: 80px!important;}.mt85{margin-top: 85px!important;}.mt90{margin-top: 90px!important;}.mt95{margin-top: 95px!important;}.mt100{margin-top: 100px!important;}/* margin-right */.mr0{margin-right:0!important;}.mr5{margin-right: 5px!important;}.mr10{margin-right: 10px!important;}.mr15{margin-right: 15px!important;}.mr20{margin-right: 20px!important;}.mr25{margin-right: 25px!important;}.mr30{margin-right: 30px!important;}.mr35{margin-right: 35px!important;}.mr40{margin-right: 40px!important;}.mr45{margin-right: 45px!important;}.mr50{margin-right: 50px!important;}.mr55{margin-right: 55px!important;}.mr60{margin-right: 60px!important;}.mr65{margin-right: 65px!important;}.mr70{margin-right: 70px!important;}.mr75{margin-right: 75px!important;}.mr80{margin-right: 80px!important;}.mr85{margin-right: 85px!important;}.mr90{margin-right: 90px!important;}.mr95{margin-right: 95px!important;}.mr100{margin-right: 100px!important;}/* margin-bottom */.mb0{margin-bottom:0!important;}.mb5{margin-bottom: 5px!important;}.mb10{margin-bottom: 10px!important;}.mb15{margin-bottom: 15px!important;}.mb20{margin-bottom: 20px!important;}.mb25{margin-bottom: 25px!important;}.mb30{margin-bottom: 30px!important;}.mb35{margin-bottom: 35px!important;}.mb40{margin-bottom: 40px!important;}.mb45{margin-bottom: 45px!important;}.mb50{margin-bottom: 50px!important;}.mb55{margin-bottom: 55px!important;}.mb60{margin-bottom: 60px!important;}.mb65{margin-bottom: 65px!important;}.mb70{margin-bottom: 70px!important;}.mb75{margin-bottom: 75px!important;}.mb80{margin-bottom: 80px!important;}.mb85{margin-bottom: 85px!important;}.mb90{margin-bottom: 90px!important;}.mb95{margin-bottom: 95px!important;}.mb100{margin-bottom: 100px!important;}/* margin-left */.ml0{margin-left:0!important;}.ml5{margin-left: 5px!important;}.ml10{margin-left: 10px!important;}.ml15{margin-left: 15px!important;}.ml20{margin-left: 20px!important;}.ml25{margin-left: 25px!important;}.ml30{margin-left: 30px!important;}.ml35{margin-left: 35px!important;}.ml40{margin-left: 40px!important;}.ml45{margin-left: 45px!important;}.ml50{margin-left: 50px!important;}.ml55{margin-left: 55px!important;}.ml60{margin-left: 60px!important;}.ml65{margin-left: 65px!important;}.ml70{margin-left: 70px!important;}.ml75{margin-left: 75px!important;}.ml80{margin-left: 80px!important;}.ml85{margin-left: 85px!important;}.ml90{margin-left: 90px!important;}.ml95{margin-left: 95px!important;}.ml100{margin-left: 100px!important;}
/* padding */.p0{padding:0!important;}.p5{padding: 5px!important;}.p10{padding: 10px!important;}.p15{padding: 15px!important;}.p20{padding: 20px!important;}.p25{padding: 25px!important;}.p30{padding: 30px!important;}.p35{padding: 35px!important;}.p40{padding: 40px!important;}.p45{padding: 45px!important;}.p50{padding: 50px!important;}.p55{padding: 55px!important;}.p60{padding: 60px!important;}.p65{padding: 65px!important;}.p70{padding: 70px!important;}.p75{padding: 75px!important;}.p80{padding: 80px!important;}.p85{padding: 85px!important;}.p90{padding: 90px!important;}.p95{padding: 95px!important;}.p100{padding: 100px!important;}/* padding-top */.pt0{padding-top:0!important;}.pt5{padding-top: 5px!important;}.pt10{padding-top: 10px!important;}.pt15{padding-top: 15px!important;}.pt20{padding-top: 20px!important;}.pt25{padding-top: 25px!important;}.pt30{padding-top: 30px!important;}.pt35{padding-top: 35px!important;}.pt40{padding-top: 40px!important;}.pt45{padding-top: 45px!important;}.pt50{padding-top: 50px!important;}.pt55{padding-top: 55px!important;}.pt60{padding-top: 60px!important;}.pt65{padding-top: 65px!important;}.pt70{padding-top: 70px!important;}.pt75{padding-top: 75px!important;}.pt80{padding-top: 80px!important;}.pt85{padding-top: 85px!important;}.pt90{padding-top: 90px!important;}.pt95{padding-top: 95px!important;}.pt100{padding-top: 100px!important;}/* padding-right */.pr0{padding-right:0!important;}.pr5{padding-right: 5px!important;}.pr10{padding-right: 10px!important;}.pr15{padding-right: 15px!important;}.pr20{padding-right: 20px!important;}.pr25{padding-right: 25px!important;}.pr30{padding-right: 30px!important;}.pr35{padding-right: 35px!important;}.pr40{padding-right: 40px!important;}.pr45{padding-right: 45px!important;}.pr50{padding-right: 50px!important;}.pr55{padding-right: 55px!important;}.pr60{padding-right: 60px!important;}.pr65{padding-right: 65px!important;}.pr70{padding-right: 70px!important;}.pr75{padding-right: 75px!important;}.pr80{padding-right: 80px!important;}.pr85{padding-right: 85px!important;}.pr90{padding-right: 90px!important;}.pr95{padding-right: 95px!important;}.pr100{padding-right: 100px!important;}/* padding-bottom */.pb0{padding-bottom:0!important;}.pb5{padding-bottom: 5px!important;}.pb10{padding-bottom: 10px!important;}.pb15{padding-bottom: 15px!important;}.pb20{padding-bottom: 20px!important;}.pb25{padding-bottom: 25px!important;}.pb30{padding-bottom: 30px!important;}.pb35{padding-bottom: 35px!important;}.pb40{padding-bottom: 40px!important;}.pb45{padding-bottom: 45px!important;}.pb50{padding-bottom: 50px!important;}.pb55{padding-bottom: 55px!important;}.pb60{padding-bottom: 60px!important;}.pb65{padding-bottom: 65px!important;}.pb70{padding-bottom: 70px!important;}.pb75{padding-bottom: 75px!important;}.pb80{padding-bottom: 80px!important;}.pb85{padding-bottom: 85px!important;}.pb90{padding-bottom: 90px!important;}.pb95{padding-bottom: 95px!important;}.pb100{padding-bottom: 100px!important;}/* padding-left */.pl0{padding-left:0!important;}.pl5{padding-left: 5px!important;}.pl10{padding-left: 10px!important;}.pl15{padding-left: 15px!important;}.pl20{padding-left: 20px!important;}.pl25{padding-left: 25px!important;}.pl30{padding-left: 30px!important;}.pl35{padding-left: 35px!important;}.pl40{padding-left: 40px!important;}.pl45{padding-left: 45px!important;}.pl50{padding-left: 50px!important;}.pl55{padding-left: 55px!important;}.pl60{padding-left: 60px!important;}.pl65{padding-left: 65px!important;}.pl70{padding-left: 70px!important;}.pl75{padding-left: 75px!important;}.pl80{padding-left: 80px!important;}.pl85{padding-left: 85px!important;}.pl90{padding-left: 90px!important;}.pl95{padding-left: 95px!important;}.pl100{padding-left: 100px!important;}
.mlrauto{margin-left: auto; margin-right: auto;}

@media screen and (max-width: 767px){
/* margin  */.m0-sp{margin:0!important;}.m5-sp{margin: 5px!important;}.m10-sp{margin: 10px!important;}.m15-sp{margin: 15px!important;}.m20-sp{margin: 20px!important;}.m25-sp{margin: 25px!important;}.m30-sp{margin: 30px!important;}.m35-sp{margin: 35px!important;}.m40-sp{margin: 40px!important;}.m45-sp{margin: 45px!important;}.m50-sp{margin: 50px!important;}.m55-sp{margin: 55px!important;}.m60-sp{margin: 60px!important;}.m65-sp{margin: 65px!important;}.m70-sp{margin: 70px!important;}.m75-sp{margin: 75px!important;}.m80-sp{margin: 80px!important;}.m85-sp{margin: 85px!important;}.m90-sp{margin: 90px!important;}.m95-sp{margin: 95px!important;}.m100-sp{margin: 100px!important;}/* margin-top */.mt0-sp{margin-top:0!important;}.mt-5-sp{margin-top: -5px!important;}.mt-10-sp{margin-top: -10px!important;}.mt-15-sp{margin-top: -15px!important;}.mt-20-sp{margin-top: -20px!important;}.mt-25-sp{margin-top: -25px!important;}.mt-30-sp{margin-top: -30px!important;}.mt-35-sp{margin-top: -35px!important;}.mt-40-sp{margin-top: -40px!important;}.mt-45-sp{margin-top: -45px!important;}.mt-50-sp{margin-top: -50px!important;}.mt-55-sp{margin-top: -55px!important;}.mt-60-sp{margin-top: -60px!important;}.mt-65-sp{margin-top: -65px!important;}.mt-70-sp{margin-top: -70px!important;}.mt-75-sp{margin-top: -75px!important;}.mt-80-sp{margin-top: -80px!important;}.mt-85-sp{margin-top: -85px!important;}.mt-90-sp{margin-top: -90px!important;}.mt-95-sp{margin-top: -95px!important;}.mt-100-sp{margin-top: -100px!important;}.mt5-sp{margin-top: 5px!important;}.mt10-sp{margin-top: 10px!important;}.mt15-sp{margin-top: 15px!important;}.mt20-sp{margin-top: 20px!important;}.mt25-sp{margin-top: 25px!important;}.mt30-sp{margin-top: 30px!important;}.mt35-sp{margin-top: 35px!important;}.mt40-sp{margin-top: 40px!important;}.mt45-sp{margin-top: 45px!important;}.mt50-sp{margin-top: 50px!important;}.mt55-sp{margin-top: 55px!important;}.mt60-sp{margin-top: 60px!important;}.mt65-sp{margin-top: 65px!important;}.mt70-sp{margin-top: 70px!important;}.mt75-sp{margin-top: 75px!important;}.mt80-sp{margin-top: 80px!important;}.mt85-sp{margin-top: 85px!important;}.mt90-sp{margin-top: 90px!important;}.mt95-sp{margin-top: 95px!important;}.mt100-sp{margin-top: 100px!important;}/* margin-right */.mr0-sp{margin-right:0!important;}.mr5-sp{margin-right: 5px!important;}.mr10-sp{margin-right: 10px!important;}.mr15-sp{margin-right: 15px!important;}.mr20-sp{margin-right: 20px!important;}.mr25-sp{margin-right: 25px!important;}.mr30-sp{margin-right: 30px!important;}.mr35-sp{margin-right: 35px!important;}.mr40-sp{margin-right: 40px!important;}.mr45-sp{margin-right: 45px!important;}.mr50-sp{margin-right: 50px!important;}.mr55-sp{margin-right: 55px!important;}.mr60-sp{margin-right: 60px!important;}.mr65-sp{margin-right: 65px!important;}.mr70-sp{margin-right: 70px!important;}.mr75-sp{margin-right: 75px!important;}.mr80-sp{margin-right: 80px!important;}.mr85-sp{margin-right: 85px!important;}.mr90-sp{margin-right: 90px!important;}.mr95-sp{margin-right: 95px!important;}.mr100-sp{margin-right: 100px!important;}/* margin-bottom */.mb0-sp{margin-bottom:0!important;}.mb5-sp{margin-bottom: 5px!important;}.mb10-sp{margin-bottom: 10px!important;}.mb15-sp{margin-bottom: 15px!important;}.mb20-sp{margin-bottom: 20px!important;}.mb25-sp{margin-bottom: 25px!important;}.mb30-sp{margin-bottom: 30px!important;}.mb35-sp{margin-bottom: 35px!important;}.mb40-sp{margin-bottom: 40px!important;}.mb45-sp{margin-bottom: 45px!important;}.mb50-sp{margin-bottom: 50px!important;}.mb55-sp{margin-bottom: 55px!important;}.mb60-sp{margin-bottom: 60px!important;}.mb65-sp{margin-bottom: 65px!important;}.mb70-sp{margin-bottom: 70px!important;}.mb75-sp{margin-bottom: 75px!important;}.mb80-sp{margin-bottom: 80px!important;}.mb85-sp{margin-bottom: 85px!important;}.mb90-sp{margin-bottom: 90px!important;}.mb95-sp{margin-bottom: 95px!important;}.mb100-sp{margin-bottom: 100px!important;}/* margin-left */.ml0-sp{margin-left:0!important;}.ml5-sp{margin-left: 5px!important;}.ml10-sp{margin-left: 10px!important;}.ml15-sp{margin-left: 15px!important;}.ml20-sp{margin-left: 20px!important;}.ml25-sp{margin-left: 25px!important;}.ml30-sp{margin-left: 30px!important;}.ml35-sp{margin-left: 35px!important;}.ml40-sp{margin-left: 40px!important;}.ml45-sp{margin-left: 45px!important;}.ml50-sp{margin-left: 50px!important;}.ml55-sp{margin-left: 55px!important;}.ml60-sp{margin-left: 60px!important;}.ml65-sp{margin-left: 65px!important;}.ml70-sp{margin-left: 70px!important;}.ml75-sp{margin-left: 75px!important;}.ml80-sp{margin-left: 80px!important;}.ml85-sp{margin-left: 85px!important;}.ml90-sp{margin-left: 90px!important;}.ml95-sp{margin-left: 95px!important;}.ml100-sp{margin-left: 100px!important;}
	/* padding */.p0-sp{padding:0!important;}.p5-sp{padding: 5px!important;}.p10-sp{padding: 10px!important;}.p15-sp{padding: 15px!important;}.p20-sp{padding: 20px!important;}.p25-sp{padding: 25px!important;}.p30-sp{padding: 30px!important;}.p35-sp{padding: 35px!important;}.p40-sp{padding: 40px!important;}.p45-sp{padding: 45px!important;}.p50-sp{padding: 50px!important;}.p55-sp{padding: 55px!important;}.p60-sp{padding: 60px!important;}.p65-sp{padding: 65px!important;}.p70-sp{padding: 70px!important;}.p75-sp{padding: 75px!important;}.p80-sp{padding: 80px!important;}.p85-sp{padding: 85px!important;}.p90-sp{padding: 90px!important;}.p95-sp{padding: 95px!important;}.p100-sp{padding: 100px!important;}/* padding-top */.pt0-sp{padding-top:0!important;}.pt5-sp{padding-top: 5px!important;}.pt10-sp{padding-top: 10px!important;}.pt15-sp{padding-top: 15px!important;}.pt20-sp{padding-top: 20px!important;}.pt25-sp{padding-top: 25px!important;}.pt30-sp{padding-top: 30px!important;}.pt35-sp{padding-top: 35px!important;}.pt40-sp{padding-top: 40px!important;}.pt45-sp{padding-top: 45px!important;}.pt50-sp{padding-top: 50px!important;}.pt55-sp{padding-top: 55px!important;}.pt60-sp{padding-top: 60px!important;}.pt65-sp{padding-top: 65px!important;}.pt70-sp{padding-top: 70px!important;}.pt75-sp{padding-top: 75px!important;}.pt80-sp{padding-top: 80px!important;}.pt85-sp{padding-top: 85px!important;}.pt90-sp{padding-top: 90px!important;}.pt95-sp{padding-top: 95px!important;}.pt100-sp{padding-top: 100px!important;}/* padding-right */.pr0-sp{padding-right:0!important;}.pr5-sp{padding-right: 5px!important;}.pr10-sp{padding-right: 10px!important;}.pr15-sp{padding-right: 15px!important;}.pr20-sp{padding-right: 20px!important;}.pr25-sp{padding-right: 25px!important;}.pr30-sp{padding-right: 30px!important;}.pr35-sp{padding-right: 35px!important;}.pr40-sp{padding-right: 40px!important;}.pr45-sp{padding-right: 45px!important;}.pr50-sp{padding-right: 50px!important;}.pr55-sp{padding-right: 55px!important;}.pr60-sp{padding-right: 60px!important;}.pr65-sp{padding-right: 65px!important;}.pr70-sp{padding-right: 70px!important;}.pr75-sp{padding-right: 75px!important;}.pr80-sp{padding-right: 80px!important;}.pr85-sp{padding-right: 85px!important;}.pr90-sp{padding-right: 90px!important;}.pr95-sp{padding-right: 95px!important;}.pr100-sp{padding-right: 100px!important;}/* padding-bottom */.pb0-sp{padding-bottom:0!important;}.pb5-sp{padding-bottom: 5px!important;}.pb10-sp{padding-bottom: 10px!important;}.pb15-sp{padding-bottom: 15px!important;}.pb20-sp{padding-bottom: 20px!important;}.pb25-sp{padding-bottom: 25px!important;}.pb30-sp{padding-bottom: 30px!important;}.pb35-sp{padding-bottom: 35px!important;}.pb40-sp{padding-bottom: 40px!important;}.pb45-sp{padding-bottom: 45px!important;}.pb50-sp{padding-bottom: 50px!important;}.pb55-sp{padding-bottom: 55px!important;}.pb60-sp{padding-bottom: 60px!important;}.pb65-sp{padding-bottom: 65px!important;}.pb70-sp{padding-bottom: 70px!important;}.pb75-sp{padding-bottom: 75px!important;}.pb80-sp{padding-bottom: 80px!important;}.pb85-sp{padding-bottom: 85px!important;}.pb90-sp{padding-bottom: 90px!important;}.pb95-sp{padding-bottom: 95px!important;}.pb100-sp{padding-bottom: 100px!important;}/* padding-left */.pl0-sp{padding-left:0!important;}.pl5-sp{padding-left: 5px!important;}.pl10-sp{padding-left: 10px!important;}.pl15-sp{padding-left: 15px!important;}.pl20-sp{padding-left: 20px!important;}.pl25-sp{padding-left: 25px!important;}.pl30-sp{padding-left: 30px!important;}.pl35-sp{padding-left: 35px!important;}.pl40-sp{padding-left: 40px!important;}.pl45-sp{padding-left: 45px!important;}.pl50-sp{padding-left: 50px!important;}.pl55-sp{padding-left: 55px!important;}.pl60-sp{padding-left: 60px!important;}.pl65-sp{padding-left: 65px!important;}.pl70-sp{padding-left: 70px!important;}.pl75-sp{padding-left: 75px!important;}.pl80-sp{padding-left: 80px!important;}.pl85-sp{padding-left: 85px!important;}.pl90-sp{padding-left: 90px!important;}.pl95-sp{padding-left: 95px!important;}.pl100-sp{padding-left: 100px!important;}
.mlrauto-sp{margin-left: auto; margin-right: auto;}
}

/* width */
.w1per  { width:  1% !important; }
.w2per  { width:  2% !important; }
.w3per  { width:  3% !important; }
.w4per  { width:  4% !important; }
.w5per  { width:  5% !important; }
.w6per  { width:  6% !important; }
.w7per  { width:  7% !important; }
.w8per  { width:  8% !important; }
.w9per  { width:  9% !important; }
.w10per { width: 10% !important; }
.w11per { width: 11% !important; }
.w12per { width: 12% !important; }
.w13per { width: 13% !important; }
.w14per { width: 14% !important; }
.w15per { width: 15% !important; }
.w16per { width: 16% !important; }
.w17per { width: 17% !important; }
.w18per { width: 18% !important; }
.w19per { width: 19% !important; }
.w20per { width: 20% !important; }
.w21per { width: 21% !important; }
.w22per { width: 22% !important; }
.w23per { width: 23% !important; }
.w24per { width: 24% !important; }
.w25per { width: 25% !important; }
.w26per { width: 26% !important; }
.w27per { width: 27% !important; }
.w28per { width: 28% !important; }
.w29per { width: 29% !important; }
.w30per { width: 30% !important; }
.w31per { width: 31% !important; }
.w32per { width: 32% !important; }
.w33per { width: 33% !important; }
.w34per { width: 34% !important; }
.w35per { width: 35% !important; }
.w36per { width: 36% !important; }
.w37per { width: 37% !important; }
.w38per { width: 38% !important; }
.w39per { width: 39% !important; }
.w40per { width: 40% !important; }
.w41per { width: 41% !important; }
.w42per { width: 42% !important; }
.w43per { width: 43% !important; }
.w44per { width: 44% !important; }
.w45per { width: 45% !important; }
.w46per { width: 46% !important; }
.w47per { width: 47% !important; }
.w48per { width: 48% !important; }
.w49per { width: 49% !important; }
.w50per { width: 50% !important; }
.w51per { width: 51% !important; }
.w52per { width: 52% !important; }
.w53per { width: 53% !important; }
.w54per { width: 54% !important; }
.w55per { width: 55% !important; }
.w56per { width: 56% !important; }
.w57per { width: 57% !important; }
.w58per { width: 58% !important; }
.w59per { width: 59% !important; }
.w60per { width: 60% !important; }
.w61per { width: 61% !important; }
.w62per { width: 62% !important; }
.w63per { width: 63% !important; }
.w64per { width: 64% !important; }
.w65per { width: 65% !important; }
.w66per { width: 66% !important; }
.w67per { width: 67% !important; }
.w68per { width: 68% !important; }
.w69per { width: 69% !important; }
.w70per { width: 70% !important; }
.w71per { width: 71% !important; }
.w72per { width: 72% !important; }
.w73per { width: 73% !important; }
.w74per { width: 74% !important; }
.w75per { width: 75% !important; }
.w76per { width: 76% !important; }
.w77per { width: 77% !important; }
.w78per { width: 78% !important; }
.w79per { width: 79% !important; }
.w80per { width: 80% !important; }
.w81per { width: 81% !important; }
.w82per { width: 82% !important; }
.w83per { width: 83% !important; }
.w84per { width: 84% !important; }
.w85per { width: 85% !important; }
.w86per { width: 86% !important; }
.w87per { width: 87% !important; }
.w88per { width: 88% !important; }
.w89per { width: 89% !important; }
.w90per { width: 90% !important; }
.w91per { width: 91% !important; }
.w92per { width: 92% !important; }
.w93per { width: 93% !important; }
.w94per { width: 94% !important; }
.w95per { width: 95% !important; }
.w96per { width: 96% !important; }
.w97per { width: 97% !important; }
.w98per { width: 98% !important; }
.w99per { width: 99% !important; }
.w100per{ width: 100% !important; }
.wauto  { width: auto !important; }

/*font size*/
.fS10{ font-size: 10px !important; }
.fS11{ font-size: 11px !important; }
.fS12{ font-size: 12px !important; }
.fS14{ font-size: 14px !important; }
.fS16{ font-size: 16px !important; }
.fS18{ font-size: 18px !important; }
.fS20{ font-size: 20px !important; }
.fS22{ font-size: 22px !important; }
.fS24{ font-size: 24px !important; }
.fS26{ font-size: 26px !important; }
.fS28{ font-size: 28px !important; }
.fS30{ font-size: 30px !important; }

/*2-2-3. Object-Oriented CSS [OOCSS]*/
.no-display{
	display: none;
}
.no-br{
	white-space: nowrap;
}
.no-line-height{
	line-height: 1!important;
}
.pull-left{
	float: left!important;
}
.pull-right{
	float: right!important;
}
.right{
	text-align: right!important;
}
.center{
	text-align: center!important;
}
.left{
	text-align: left!important;
}
.top{
	vertical-align: top!important;
}
.middle{
	vertical-align: middle!important;
}
.bottom{
	vertical-align: bottom!important;
}
.block-center {
	margin-left: auto !important;
	margin-right: auto !important;

}

/* for RWD */
.fluid-image{
	max-width: 100%;
	height: auto;
}
.full-image {
	width: 100%;
	height: auto;
}

/* 2-2-4. Grid System [grid-***] */
.wrp-grid, .row{
	box-sizing: border-box;
}
.wrp-grid:after, .row:after{
	clear: both;
	content: " ";
	display: table;
}

.grid-1, .grid-2, .grid-3, .grid-4, .grid-5, .grid-6, .grid-7, .grid-8, .grid-9, .grid-10, .grid-11, .grid-12,
.grid-1--sp, .grid-2--sp, .grid-3--sp, .grid-4--sp, .grid-5--sp, .grid-6--sp, .grid-7--sp, .grid-8--sp, .grid-9--sp, .grid-10--sp, .grid-11--sp, .grid-12--sp{
	box-sizing: border-box;
	float: left;
}


/* Column Grid 0px - 767px 
----------------------------------------------------------------------------- 

col 1:    8.33333333333%
col 2:    16.6666666667%
col 3:    25.0%
col 4:    33.3333333333%
col 5:    41.6666666667%
col 6:    50.0%
col 7:    58.3333333333%
col 8:    66.6666666667%
col 9:    75.0%
col 10:    83.3333333333%
col 11:    91.6666666667%
col 12:    100%

----------------------------------------------------------------------------- */
@media screen and (min-width: 0px) and (max-width: 767px){
	.wrp-grid{
		margin-left: -8px;
		margin-right: -7px;
	}
	.grid-1, .grid-2, .grid-3, .grid-4, .grid-5, .grid-6, .grid-7, .grid-8, .grid-9, .grid-10, .grid-11, .grid-12,
	.grid-1--sp, .grid-2--sp, .grid-3--sp, .grid-4--sp, .grid-5--sp, .grid-6--sp, .grid-7--sp, .grid-8--sp, .grid-9--sp, .grid-10--sp, .grid-11--sp, .grid-12--sp{
		width: 100%;
		padding: 0 7px 0 8px;
	}
	.grid-1--sp{
		width: 8.33333%;
	}
	.grid-2--sp{
		width: 16.66667%;
	}
	.grid-3--sp{
		width: 25%;
	}
	.grid-4--sp{
		width: 33.3333333%;
	}
	.grid-5--sp{
		width: 41.66667%;
	}
	.grid-6--sp{
		width: 50%;
	}
	.grid-7--sp{
		width: 58.33333%;
	}
	.grid-8--sp{
		width: 66.66667%;
	}
	.grid-9--sp{
		width: 75%;
	}
	.grid-10--sp{
		width: 83.33333%;
	}
	.grid-11--sp{
		width: 91.66667%;
	}
	.grid-12--sp{
		width: 100%;
	}
}
/*  Column Grid 768px - Infinity 
----------------------------------------------------------------------------- 

col 1:    8.33333333333%
col 2:    16.6666666667%
col 3:    25.0%
col 4:    33.3333333333%
col 5:    41.6666666667%
col 6:    50.0%
col 7:    58.3333333333%
col 8:    66.6666666667%
col 9:    75.0%
col 10:    83.3333333333%
col 11:    91.6666666667%
col 12:    100%

----------------------------------------------------------------------------- */
@media only screen and (min-width: 768px), print{
	.wrp-grid{
		margin-left: -15px;
		margin-right: -15px;
	}
	.grid-1, .grid-2, .grid-3, .grid-4, .grid-5, .grid-6, .grid-7, .grid-8, .grid-9, .grid-10, .grid-11, .grid-12{
		padding: 0 15px;
	}
	.grid-1{
		width: 8.33333333333%;
	}
	.grid-2{
		width: 16.6666666667%;
	}
	.grid-3{
		width: 25%;
	}
	.grid-4{
		width: 33.3333333333%;
	}
	.grid-5{
		width: 41.6666666667%;
	}
	.grid-6{
		width: 50%;
	}
	.grid-7{
		width: 58.3333333333%;
	}
	.grid-8{
		width: 66.6666666667%;
	}
	.grid-9{
		width: 75%;
	}
	.grid-10{
		width: 83.3333333333%;
	}
	.grid-11{
		width: 91.6666666667%;
	}
	.grid-12{
		width: 100%;
	}
}


/* 2-2-5. WebFont [FontAwesome] */
/*!
 *  Font Awesome 4.7.0 by @davegandy - http://fontawesome.io - @fontawesome
 *  License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
 */
/* FONT PATH
 * -------------------------- */
@font-face {
	font-family: 'FontAwesome';
	src: url('/resource/fonts/fontawesome-webfont.eot?v=4.7.0');
	src: url('/resource/fonts/fontawesome-webfont.eot?#iefix&v=4.7.0') format('embedded-opentype'),
	url('/resource/fonts/fontawesome-webfont.woff2?v=4.7.0') format('woff2'),
	url('/resource/fonts/fontawesome-webfont.woff?v=4.7.0') format('woff'),
	url('/resource/fonts/fontawesome-webfont.ttf?v=4.7.0') format('truetype'),
	url('/resource/fonts/fontawesome-webfont.svg?v=4.7.0#fontawesomeregular') format('svg');
	font-weight: normal;
	font-style: normal;
}
.icn {
	display: inline-block;
	font: normal normal normal 14px/1 FontAwesome;
	font-size: inherit;
	text-rendering: auto;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	padding-right: 7px;
}
.hdg-lv2 .icn{
	color: #7cb342;
}
.icn-glass:before {
	content: "\f000";
}
.icn-music:before {
	content: "\f001";
}
.icn-search:before {
	content: "\f002";
}
.icn-envelope-o:before {
	content: "\f003";
}
.icn-heart:before {
	content: "\f004";
}
.icn-star:before {
	content: "\f005";
}
.icn-star-o:before {
	content: "\f006";
}
.icn-user:before {
	content: "\f007";
}
.icn-film:before {
	content: "\f008";
}
.icn-th-large:before {
	content: "\f009";
}
.icn-th:before {
	content: "\f00a";
}
.icn-th-list:before {
	content: "\f00b";
}
.icn-check:before {
	content: "\f00c";
}
.icn-remove:before,
.icn-close:before,
.icn-times:before {
	content: "\f00d";
}
.icn-search-plus:before {
	content: "\f00e";
}
.icn-search-minus:before {
	content: "\f010";
}
.icn-power-off:before {
	content: "\f011";
}
.icn-signal:before {
	content: "\f012";
}
.icn-gear:before,
.icn-cog:before {
	content: "\f013";
}
.icn-trash-o:before {
	content: "\f014";
}
.icn-home:before {
	content: "\f015";
}
.icn-file-o:before {
	content: "\f016";
}
.icn-clock-o:before {
	content: "\f017";
}
.icn-road:before {
	content: "\f018";
}
.icn-download:before {
	content: "\f019";
}
.icn-arrow-circle-o-down:before {
	content: "\f01a";
}
.icn-arrow-circle-o-up:before {
	content: "\f01b";
}
.icn-inbox:before {
	content: "\f01c";
}
.icn-play-circle-o:before {
	content: "\f01d";
}
.icn-rotate-right:before,
.icn-repeat:before {
	content: "\f01e";
}
.icn-refresh:before {
	content: "\f021";
}
.icn-list-alt:before {
	content: "\f022";
}
.icn-lock:before {
	content: "\f023";
}
.icn-flag:before {
	content: "\f024";
}
.icn-headphones:before {
	content: "\f025";
}
.icn-volume-off:before {
	content: "\f026";
}
.icn-volume-down:before {
	content: "\f027";
}
.icn-volume-up:before {
	content: "\f028";
}
.icn-qrcode:before {
	content: "\f029";
}
.icn-barcode:before {
	content: "\f02a";
}
.icn-tag:before {
	content: "\f02b";
}
.icn-tags:before {
	content: "\f02c";
}
.icn-book:before {
	content: "\f02d";
}
.icn-bookmark:before {
	content: "\f02e";
}
.icn-print:before {
	content: "\f02f";
}
.icn-camera:before {
	content: "\f030";
}
.icn-font:before {
	content: "\f031";
}
.icn-bold:before {
	content: "\f032";
}
.icn-italic:before {
	content: "\f033";
}
.icn-text-height:before {
	content: "\f034";
}
.icn-text-width:before {
	content: "\f035";
}
.icn-align-left:before {
	content: "\f036";
}
.icn-align-center:before {
	content: "\f037";
}
.icn-align-right:before {
	content: "\f038";
}
.icn-align-justify:before {
	content: "\f039";
}
.icn-list:before {
	content: "\f03a";
}
.icn-dedent:before,
.icn-outdent:before {
	content: "\f03b";
}
.icn-indent:before {
	content: "\f03c";
}
.icn-video-camera:before {
	content: "\f03d";
}
.icn-photo:before,
.icn-image:before,
.icn-picture-o:before {
	content: "\f03e";
}
.icn-pencil:before {
	content: "\f040";
}
.icn-map-marker:before {
	content: "\f041";
}
.icn-adjust:before {
	content: "\f042";
}
.icn-tint:before {
	content: "\f043";
}
.icn-edit:before,
.icn-pencil-square-o:before {
	content: "\f044";
}
.icn-share-square-o:before {
	content: "\f045";
}
.icn-check-square-o:before {
	content: "\f046";
}
.icn-arrows:before {
	content: "\f047";
}
.icn-step-backward:before {
	content: "\f048";
}
.icn-fast-backward:before {
	content: "\f049";
}
.icn-backward:before {
	content: "\f04a";
}
.icn-play:before {
	content: "\f04b";
}
.icn-pause:before {
	content: "\f04c";
}
.icn-stop:before {
	content: "\f04d";
}
.icn-forward:before {
	content: "\f04e";
}
.icn-fast-forward:before {
	content: "\f050";
}
.icn-step-forward:before {
	content: "\f051";
}
.icn-eject:before {
	content: "\f052";
}
.icn-chevron-left:before {
	content: "\f053";
}
.icn-chevron-right:before {
	content: "\f054";
}
.icn-plus-circle:before {
	content: "\f055";
}
.icn-minus-circle:before {
	content: "\f056";
}
.icn-times-circle:before {
	content: "\f057";
}
.icn-check-circle:before {
	content: "\f058";
}
.icn-question-circle:before {
	content: "\f059";
}
.icn-info-circle:before {
	content: "\f05a";
}
.icn-crosshairs:before {
	content: "\f05b";
}
.icn-times-circle-o:before {
	content: "\f05c";
}
.icn-check-circle-o:before {
	content: "\f05d";
}
.icn-ban:before {
	content: "\f05e";
}
.icn-arrow-left:before {
	content: "\f060";
}
.icn-arrow-right:before {
	content: "\f061";
}
.icn-arrow-up:before {
	content: "\f062";
}
.icn-arrow-down:before {
	content: "\f063";
}
.icn-mail-forward:before,
.icn-share:before {
	content: "\f064";
}
.icn-expand:before {
	content: "\f065";
}
.icn-compress:before {
	content: "\f066";
}
.icn-plus:before {
	content: "\f067";
}
.icn-minus:before {
	content: "\f068";
}
.icn-asterisk:before {
	content: "\f069";
}
.icn-exclamation-circle:before {
	content: "\f06a";
}
.icn-gift:before {
	content: "\f06b";
}
.icn-leaf:before {
	content: "\f06c";
}
.icn-fire:before {
	content: "\f06d";
}
.icn-eye:before {
	content: "\f06e";
}
.icn-eye-slash:before {
	content: "\f070";
}
.icn-warning:before,
.icn-exclamation-triangle:before {
	content: "\f071";
}
.icn-plane:before {
	content: "\f072";
}
.icn-calendar:before {
	content: "\f073";
}
.icn-random:before {
	content: "\f074";
}
.icn-comment:before {
	content: "\f075";
}
.icn-magnet:before {
	content: "\f076";
}
.icn-chevron-up:before {
	content: "\f077";
}
.icn-chevron-down:before {
	content: "\f078";
}
.icn-retweet:before {
	content: "\f079";
}
.icn-shopping-cart:before {
	content: "\f07a";
}
.icn-folder:before {
	content: "\f07b";
}
.icn-folder-open:before {
	content: "\f07c";
}
.icn-arrows-v:before {
	content: "\f07d";
}
.icn-arrows-h:before {
	content: "\f07e";
}
.icn-bar-chart-o:before,
.icn-bar-chart:before {
	content: "\f080";
}
.icn-twitter-square:before {
	content: "\f081";
}
.icn-facebook-square:before {
	content: "\f082";
}
.icn-camera-retro:before {
	content: "\f083";
}
.icn-key:before {
	content: "\f084";
}
.icn-gears:before,
.icn-cogs:before {
	content: "\f085";
}
.icn-comments:before {
	content: "\f086";
}
.icn-thumbs-o-up:before {
	content: "\f087";
}
.icn-thumbs-o-down:before {
	content: "\f088";
}
.icn-star-half:before {
	content: "\f089";
}
.icn-heart-o:before {
	content: "\f08a";
}
.icn-sign-out:before {
	content: "\f08b";
}
.icn-linkedin-square:before {
	content: "\f08c";
}
.icn-thumb-tack:before {
	content: "\f08d";
}
.icn-external-link:before {
	content: "\f08e";
}
.icn-sign-in:before {
	content: "\f090";
}
.icn-trophy:before {
	content: "\f091";
}
.icn-github-square:before {
	content: "\f092";
}
.icn-upload:before {
	content: "\f093";
}
.icn-lemon-o:before {
	content: "\f094";
}
.icn-phone:before {
	content: "\f095";
}
.icn-square-o:before {
	content: "\f096";
}
.icn-bookmark-o:before {
	content: "\f097";
}
.icn-phone-square:before {
	content: "\f098";
}
.icn-twitter:before {
	content: "\f099";
}
.icn-facebook-f:before,
.icn-facebook:before {
	content: "\f09a";
}
.icn-github:before {
	content: "\f09b";
}
.icn-unlock:before {
	content: "\f09c";
}
.icn-credit-card:before {
	content: "\f09d";
}
.icn-feed:before,
.icn-rss:before {
	content: "\f09e";
}
.icn-hdd-o:before {
	content: "\f0a0";
}
.icn-bullhorn:before {
	content: "\f0a1";
}
.icn-bell:before {
	content: "\f0f3";
}
.icn-certificate:before {
	content: "\f0a3";
}
.icn-hand-o-right:before {
	content: "\f0a4";
}
.icn-hand-o-left:before {
	content: "\f0a5";
}
.icn-hand-o-up:before {
	content: "\f0a6";
}
.icn-hand-o-down:before {
	content: "\f0a7";
}
.icn-arrow-circle-left:before {
	content: "\f0a8";
}
.icn-arrow-circle-right:before {
	content: "\f0a9";
}
.icn-arrow-circle-up:before {
	content: "\f0aa";
}
.icn-arrow-circle-down:before {
	content: "\f0ab";
}
.icn-globe:before {
	content: "\f0ac";
}
.icn-wrench:before {
	content: "\f0ad";
}
.icn-tasks:before {
	content: "\f0ae";
}
.icn-filter:before {
	content: "\f0b0";
}
.icn-briefcase:before {
	content: "\f0b1";
}
.icn-arrows-alt:before {
	content: "\f0b2";
}
.icn-group:before,
.icn-users:before {
	content: "\f0c0";
}
.icn-chain:before,
.icn-link:before {
	content: "\f0c1";
}
.icn-cloud:before {
	content: "\f0c2";
}
.icn-flask:before {
	content: "\f0c3";
}
.icn-cut:before,
.icn-scissors:before {
	content: "\f0c4";
}
.icn-copy:before,
.icn-files-o:before {
	content: "\f0c5";
}
.icn-paperclip:before {
	content: "\f0c6";
}
.icn-save:before,
.icn-floppy-o:before {
	content: "\f0c7";
}
.icn-square:before {
	content: "\f0c8";
}
.icn-navicon:before,
.icn-reorder:before,
.icn-bars:before {
	content: "\f0c9";
}
.icn-list-ul:before {
	content: "\f0ca";
}
.icn-list-ol:before {
	content: "\f0cb";
}
.icn-strikethrough:before {
	content: "\f0cc";
}
.icn-underline:before {
	content: "\f0cd";
}
.icn-table:before {
	content: "\f0ce";
}
.icn-magic:before {
	content: "\f0d0";
}
.icn-truck:before {
	content: "\f0d1";
}
.icn-pinterest:before {
	content: "\f0d2";
}
.icn-pinterest-square:before {
	content: "\f0d3";
}
.icn-google-plus-square:before {
	content: "\f0d4";
}
.icn-google-plus:before {
	content: "\f0d5";
}
.icn-money:before {
	content: "\f0d6";
}
.icn-caret-down:before {
	content: "\f0d7";
}
.icn-caret-up:before {
	content: "\f0d8";
}
.icn-caret-left:before {
	content: "\f0d9";
}
.icn-caret-right:before {
	content: "\f0da";
}
.icn-columns:before {
	content: "\f0db";
}
.icn-unsorted:before,
.icn-sort:before {
	content: "\f0dc";
}
.icn-sort-down:before,
.icn-sort-desc:before {
	content: "\f0dd";
}
.icn-sort-up:before,
.icn-sort-asc:before {
	content: "\f0de";
}
.icn-envelope:before {
	content: "\f0e0";
}
.icn-linkedin:before {
	content: "\f0e1";
}
.icn-rotate-left:before,
.icn-undo:before {
	content: "\f0e2";
}
.icn-legal:before,
.icn-gavel:before {
	content: "\f0e3";
}
.icn-dashboard:before,
.icn-tachometer:before {
	content: "\f0e4";
}
.icn-comment-o:before {
	content: "\f0e5";
}
.icn-comments-o:before {
	content: "\f0e6";
}
.icn-flash:before,
.icn-bolt:before {
	content: "\f0e7";
}
.icn-sitemap:before {
	content: "\f0e8";
}
.icn-umbrella:before {
	content: "\f0e9";
}
.icn-paste:before,
.icn-clipboard:before {
	content: "\f0ea";
}
.icn-lightbulb-o:before {
	content: "\f0eb";
}
.icn-exchange:before {
	content: "\f0ec";
}
.icn-cloud-download:before {
	content: "\f0ed";
}
.icn-cloud-upload:before {
	content: "\f0ee";
}
.icn-user-md:before {
	content: "\f0f0";
}
.icn-stethoscope:before {
	content: "\f0f1";
}
.icn-suitcase:before {
	content: "\f0f2";
}
.icn-bell-o:before {
	content: "\f0a2";
}
.icn-coffee:before {
	content: "\f0f4";
}
.icn-cutlery:before {
	content: "\f0f5";
}
.icn-file-text-o:before {
	content: "\f0f6";
}
.icn-building-o:before {
	content: "\f0f7";
}
.icn-hospital-o:before {
	content: "\f0f8";
}
.icn-ambulance:before {
	content: "\f0f9";
}
.icn-medkit:before {
	content: "\f0fa";
}
.icn-fighter-jet:before {
	content: "\f0fb";
}
.icn-beer:before {
	content: "\f0fc";
}
.icn-h-square:before {
	content: "\f0fd";
}
.icn-plus-square:before {
	content: "\f0fe";
}
.icn-angle-double-left:before {
	content: "\f100";
}
.icn-angle-double-right:before {
	content: "\f101";
}
.icn-angle-double-up:before {
	content: "\f102";
}
.icn-angle-double-down:before {
	content: "\f103";
}
.icn-angle-left:before {
	content: "\f104";
}
.icn-angle-right:before {
	content: "\f105";
}
.icn-angle-up:before {
	content: "\f106";
}
.icn-angle-down:before {
	content: "\f107";
}
.icn-desktop:before {
	content: "\f108";
}
.icn-laptop:before {
	content: "\f109";
}
.icn-tablet:before {
	content: "\f10a";
}
.icn-mobile-phone:before,
.icn-mobile:before {
	content: "\f10b";
}
.icn-circle-o:before {
	content: "\f10c";
}
.icn-quote-left:before {
	content: "\f10d";
}
.icn-quote-right:before {
	content: "\f10e";
}
.icn-spinner:before {
	content: "\f110";
}
.icn-circle:before {
	content: "\f111";
}
.icn-mail-reply:before,
.icn-reply:before {
	content: "\f112";
}
.icn-github-alt:before {
	content: "\f113";
}
.icn-folder-o:before {
	content: "\f114";
}
.icn-folder-open-o:before {
	content: "\f115";
}
.icn-smile-o:before {
	content: "\f118";
}
.icn-frown-o:before {
	content: "\f119";
}
.icn-meh-o:before {
	content: "\f11a";
}
.icn-gamepad:before {
	content: "\f11b";
}
.icn-keyboard-o:before {
	content: "\f11c";
}
.icn-flag-o:before {
	content: "\f11d";
}
.icn-flag-checkered:before {
	content: "\f11e";
}
.icn-terminal:before {
	content: "\f120";
}
.icn-code:before {
	content: "\f121";
}
.icn-mail-reply-all:before,
.icn-reply-all:before {
	content: "\f122";
}
.icn-star-half-empty:before,
.icn-star-half-full:before,
.icn-star-half-o:before {
	content: "\f123";
}
.icn-location-arrow:before {
	content: "\f124";
}
.icn-crop:before {
	content: "\f125";
}
.icn-code-fork:before {
	content: "\f126";
}
.icn-unlink:before,
.icn-chain-broken:before {
	content: "\f127";
}
.icn-question:before {
	content: "\f128";
}
.icn-info:before {
	content: "\f129";
}
.icn-exclamation:before {
	content: "\f12a";
}
.icn-superscript:before {
	content: "\f12b";
}
.icn-subscript:before {
	content: "\f12c";
}
.icn-eraser:before {
	content: "\f12d";
}
.icn-puzzle-piece:before {
	content: "\f12e";
}
.icn-microphone:before {
	content: "\f130";
}
.icn-microphone-slash:before {
	content: "\f131";
}
.icn-shield:before {
	content: "\f132";
}
.icn-calendar-o:before {
	content: "\f133";
}
.icn-fire-extinguisher:before {
	content: "\f134";
}
.icn-rocket:before {
	content: "\f135";
}
.icn-maxcdn:before {
	content: "\f136";
}
.icn-chevron-circle-left:before {
	content: "\f137";
}
.icn-chevron-circle-right:before {
	content: "\f138";
}
.icn-chevron-circle-up:before {
	content: "\f139";
}
.icn-chevron-circle-down:before {
	content: "\f13a";
}
.icn-html5:before {
	content: "\f13b";
}
.icn-css3:before {
	content: "\f13c";
}
.icn-anchor:before {
	content: "\f13d";
}
.icn-unlock-alt:before {
	content: "\f13e";
}
.icn-bullseye:before {
	content: "\f140";
}
.icn-ellipsis-h:before {
	content: "\f141";
}
.icn-ellipsis-v:before {
	content: "\f142";
}
.icn-rss-square:before {
	content: "\f143";
}
.icn-play-circle:before {
	content: "\f144";
}
.icn-ticket:before {
	content: "\f145";
}
.icn-minus-square:before {
	content: "\f146";
}
.icn-minus-square-o:before {
	content: "\f147";
}
.icn-level-up:before {
	content: "\f148";
}
.icn-level-down:before {
	content: "\f149";
}
.icn-check-square:before {
	content: "\f14a";
}
.icn-pencil-square:before {
	content: "\f14b";
}
.icn-external-link-square:before {
	content: "\f14c";
}
.icn-share-square:before {
	content: "\f14d";
}
.icn-compass:before {
	content: "\f14e";
}
.icn-toggle-down:before,
.icn-caret-square-o-down:before {
	content: "\f150";
}
.icn-toggle-up:before,
.icn-caret-square-o-up:before {
	content: "\f151";
}
.icn-toggle-right:before,
.icn-caret-square-o-right:before {
	content: "\f152";
}
.icn-euro:before,
.icn-eur:before {
	content: "\f153";
}
.icn-gbp:before {
	content: "\f154";
}
.icn-dollar:before,
.icn-usd:before {
	content: "\f155";
}
.icn-rupee:before,
.icn-inr:before {
	content: "\f156";
}
.icn-cny:before,
.icn-rmb:before,
.icn-yen:before,
.icn-jpy:before {
	content: "\f157";
}
.icn-ruble:before,
.icn-rouble:before,
.icn-rub:before {
	content: "\f158";
}
.icn-won:before,
.icn-krw:before {
	content: "\f159";
}
.icn-bitcoin:before,
.icn-btc:before {
	content: "\f15a";
}
.icn-file:before {
	content: "\f15b";
}
.icn-file-text:before {
	content: "\f15c";
}
.icn-sort-alpha-asc:before {
	content: "\f15d";
}
.icn-sort-alpha-desc:before {
	content: "\f15e";
}
.icn-sort-amount-asc:before {
	content: "\f160";
}
.icn-sort-amount-desc:before {
	content: "\f161";
}
.icn-sort-numeric-asc:before {
	content: "\f162";
}
.icn-sort-numeric-desc:before {
	content: "\f163";
}
.icn-thumbs-up:before {
	content: "\f164";
}
.icn-thumbs-down:before {
	content: "\f165";
}
.icn-youtube-square:before {
	content: "\f166";
}
.icn-youtube:before {
	content: "\f167";
}
.icn-xing:before {
	content: "\f168";
}
.icn-xing-square:before {
	content: "\f169";
}
.icn-youtube-play:before {
	content: "\f16a";
}
.icn-dropbox:before {
	content: "\f16b";
}
.icn-stack-overflow:before {
	content: "\f16c";
}
.icn-instagram:before {
	content: "\f16d";
}
.icn-flickr:before {
	content: "\f16e";
}
.icn-adn:before {
	content: "\f170";
}
.icn-bitbucket:before {
	content: "\f171";
}
.icn-bitbucket-square:before {
	content: "\f172";
}
.icn-tumblr:before {
	content: "\f173";
}
.icn-tumblr-square:before {
	content: "\f174";
}
.icn-long-arrow-down:before {
	content: "\f175";
}
.icn-long-arrow-up:before {
	content: "\f176";
}
.icn-long-arrow-left:before {
	content: "\f177";
}
.icn-long-arrow-right:before {
	content: "\f178";
}
.icn-apple:before {
	content: "\f179";
}
.icn-windows:before {
	content: "\f17a";
}
.icn-android:before {
	content: "\f17b";
}
.icn-linux:before {
	content: "\f17c";
}
.icn-dribbble:before {
	content: "\f17d";
}
.icn-skype:before {
	content: "\f17e";
}
.icn-foursquare:before {
	content: "\f180";
}
.icn-trello:before {
	content: "\f181";
}
.icn-female:before {
	content: "\f182";
}
.icn-male:before {
	content: "\f183";
}
.icn-gittip:before,
.icn-gratipay:before {
	content: "\f184";
}
.icn-sun-o:before {
	content: "\f185";
}
.icn-moon-o:before {
	content: "\f186";
}
.icn-archive:before {
	content: "\f187";
}
.icn-bug:before {
	content: "\f188";
}
.icn-vk:before {
	content: "\f189";
}
.icn-weibo:before {
	content: "\f18a";
}
.icn-renren:before {
	content: "\f18b";
}
.icn-pagelines:before {
	content: "\f18c";
}
.icn-stack-exchange:before {
	content: "\f18d";
}
.icn-arrow-circle-o-right:before {
	content: "\f18e";
}
.icn-arrow-circle-o-left:before {
	content: "\f190";
}
.icn-toggle-left:before,
.icn-caret-square-o-left:before {
	content: "\f191";
}
.icn-dot-circle-o:before {
	content: "\f192";
}
.icn-wheelchair:before {
	content: "\f193";
}
.icn-vimeo-square:before {
	content: "\f194";
}
.icn-turkish-lira:before,
.icn-try:before {
	content: "\f195";
}
.icn-plus-square-o:before {
	content: "\f196";
}
.icn-space-shuttle:before {
	content: "\f197";
}
.icn-slack:before {
	content: "\f198";
}
.icn-envelope-square:before {
	content: "\f199";
}
.icn-wordpress:before {
	content: "\f19a";
}
.icn-openid:before {
	content: "\f19b";
}
.icn-institution:before,
.icn-bank:before,
.icn-university:before {
	content: "\f19c";
}
.icn-mortar-board:before,
.icn-graduation-cap:before {
	content: "\f19d";
}
.icn-yahoo:before {
	content: "\f19e";
}
.icn-google:before {
	content: "\f1a0";
}
.icn-reddit:before {
	content: "\f1a1";
}
.icn-reddit-square:before {
	content: "\f1a2";
}
.icn-stumbleupon-circle:before {
	content: "\f1a3";
}
.icn-stumbleupon:before {
	content: "\f1a4";
}
.icn-delicious:before {
	content: "\f1a5";
}
.icn-digg:before {
	content: "\f1a6";
}
.icn-pied-piper-pp:before {
	content: "\f1a7";
}
.icn-pied-piper-alt:before {
	content: "\f1a8";
}
.icn-drupal:before {
	content: "\f1a9";
}
.icn-joomla:before {
	content: "\f1aa";
}
.icn-language:before {
	content: "\f1ab";
}
.icn-fax:before {
	content: "\f1ac";
}
.icn-building:before {
	content: "\f1ad";
}
.icn-child:before {
	content: "\f1ae";
}
.icn-paw:before {
	content: "\f1b0";
}
.icn-spoon:before {
	content: "\f1b1";
}
.icn-cube:before {
	content: "\f1b2";
}
.icn-cubes:before {
	content: "\f1b3";
}
.icn-behance:before {
	content: "\f1b4";
}
.icn-behance-square:before {
	content: "\f1b5";
}
.icn-steam:before {
	content: "\f1b6";
}
.icn-steam-square:before {
	content: "\f1b7";
}
.icn-recycle:before {
	content: "\f1b8";
}
.icn-automobile:before,
.icn-car:before {
	content: "\f1b9";
}
.icn-cab:before,
.icn-taxi:before {
	content: "\f1ba";
}
.icn-tree:before {
	content: "\f1bb";
}
.icn-spotify:before {
	content: "\f1bc";
}
.icn-deviantart:before {
	content: "\f1bd";
}
.icn-soundcloud:before {
	content: "\f1be";
}
.icn-database:before {
	content: "\f1c0";
}
.icn-file-pdf-o:before {
	content: "\f1c1";
}
.icn-file-word-o:before {
	content: "\f1c2";
}
.icn-file-excel-o:before {
	content: "\f1c3";
}
.icn-file-powerpoint-o:before {
	content: "\f1c4";
}
.icn-file-photo-o:before,
.icn-file-picture-o:before,
.icn-file-image-o:before {
	content: "\f1c5";
}
.icn-file-zip-o:before,
.icn-file-archive-o:before {
	content: "\f1c6";
}
.icn-file-sound-o:before,
.icn-file-audio-o:before {
	content: "\f1c7";
}
.icn-file-movie-o:before,
.icn-file-video-o:before {
	content: "\f1c8";
}
.icn-file-code-o:before {
	content: "\f1c9";
}
.icn-vine:before {
	content: "\f1ca";
}
.icn-codepen:before {
	content: "\f1cb";
}
.icn-jsfiddle:before {
	content: "\f1cc";
}
.icn-life-bouy:before,
.icn-life-buoy:before,
.icn-life-saver:before,
.icn-support:before,
.icn-life-ring:before {
	content: "\f1cd";
}
.icn-circle-o-notch:before {
	content: "\f1ce";
}
.icn-ra:before,
.icn-resistance:before,
.icn-rebel:before {
	content: "\f1d0";
}
.icn-ge:before,
.icn-empire:before {
	content: "\f1d1";
}
.icn-git-square:before {
	content: "\f1d2";
}
.icn-git:before {
	content: "\f1d3";
}
.icn-y-combinator-square:before,
.icn-yc-square:before,
.icn-hacker-news:before {
	content: "\f1d4";
}
.icn-tencent-weibo:before {
	content: "\f1d5";
}
.icn-qq:before {
	content: "\f1d6";
}
.icn-wechat:before,
.icn-weixin:before {
	content: "\f1d7";
}
.icn-send:before,
.icn-paper-plane:before {
	content: "\f1d8";
}
.icn-send-o:before,
.icn-paper-plane-o:before {
	content: "\f1d9";
}
.icn-history:before {
	content: "\f1da";
}
.icn-circle-thin:before {
	content: "\f1db";
}
.icn-header:before {
	content: "\f1dc";
}
.icn-paragraph:before {
	content: "\f1dd";
}
.icn-sliders:before {
	content: "\f1de";
}
.icn-share-alt:before {
	content: "\f1e0";
}
.icn-share-alt-square:before {
	content: "\f1e1";
}
.icn-bomb:before {
	content: "\f1e2";
}
.icn-soccer-ball-o:before,
.icn-futbol-o:before {
	content: "\f1e3";
}
.icn-tty:before {
	content: "\f1e4";
}
.icn-binoculars:before {
	content: "\f1e5";
}
.icn-plug:before {
	content: "\f1e6";
}
.icn-slideshare:before {
	content: "\f1e7";
}
.icn-twitch:before {
	content: "\f1e8";
}
.icn-yelp:before {
	content: "\f1e9";
}
.icn-newspaper-o:before {
	content: "\f1ea";
}
.icn-wifi:before {
	content: "\f1eb";
}
.icn-calculator:before {
	content: "\f1ec";
}
.icn-paypal:before {
	content: "\f1ed";
}
.icn-google-wallet:before {
	content: "\f1ee";
}
.icn-cc-visa:before {
	content: "\f1f0";
}
.icn-cc-mastercard:before {
	content: "\f1f1";
}
.icn-cc-discover:before {
	content: "\f1f2";
}
.icn-cc-amex:before {
	content: "\f1f3";
}
.icn-cc-paypal:before {
	content: "\f1f4";
}
.icn-cc-stripe:before {
	content: "\f1f5";
}
.icn-bell-slash:before {
	content: "\f1f6";
}
.icn-bell-slash-o:before {
	content: "\f1f7";
}
.icn-trash:before {
	content: "\f1f8";
}
.icn-copyright:before {
	content: "\f1f9";
}
.icn-at:before {
	content: "\f1fa";
}
.icn-eyedropper:before {
	content: "\f1fb";
}
.icn-paint-brush:before {
	content: "\f1fc";
}
.icn-birthday-cake:before {
	content: "\f1fd";
}
.icn-area-chart:before {
	content: "\f1fe";
}
.icn-pie-chart:before {
	content: "\f200";
}
.icn-line-chart:before {
	content: "\f201";
}
.icn-lastfm:before {
	content: "\f202";
}
.icn-lastfm-square:before {
	content: "\f203";
}
.icn-toggle-off:before {
	content: "\f204";
}
.icn-toggle-on:before {
	content: "\f205";
}
.icn-bicycle:before {
	content: "\f206";
}
.icn-bus:before {
	content: "\f207";
}
.icn-ioxhost:before {
	content: "\f208";
}
.icn-angellist:before {
	content: "\f209";
}
.icn-cc:before {
	content: "\f20a";
}
.icn-shekel:before,
.icn-sheqel:before,
.icn-ils:before {
	content: "\f20b";
}
.icn-meanpath:before {
	content: "\f20c";
}
.icn-buysellads:before {
	content: "\f20d";
}
.icn-connectdevelop:before {
	content: "\f20e";
}
.icn-dashcube:before {
	content: "\f210";
}
.icn-forumbee:before {
	content: "\f211";
}
.icn-leanpub:before {
	content: "\f212";
}
.icn-sellsy:before {
	content: "\f213";
}
.icn-shirtsinbulk:before {
	content: "\f214";
}
.icn-simplybuilt:before {
	content: "\f215";
}
.icn-skyatlas:before {
	content: "\f216";
}
.icn-cart-plus:before {
	content: "\f217";
}
.icn-cart-arrow-down:before {
	content: "\f218";
}
.icn-diamond:before {
	content: "\f219";
}
.icn-ship:before {
	content: "\f21a";
}
.icn-user-secret:before {
	content: "\f21b";
}
.icn-motorcycle:before {
	content: "\f21c";
}
.icn-street-view:before {
	content: "\f21d";
}
.icn-heartbeat:before {
	content: "\f21e";
}
.icn-venus:before {
	content: "\f221";
}
.icn-mars:before {
	content: "\f222";
}
.icn-mercury:before {
	content: "\f223";
}
.icn-intersex:before,
.icn-transgender:before {
	content: "\f224";
}
.icn-transgender-alt:before {
	content: "\f225";
}
.icn-venus-double:before {
	content: "\f226";
}
.icn-mars-double:before {
	content: "\f227";
}
.icn-venus-mars:before {
	content: "\f228";
}
.icn-mars-stroke:before {
	content: "\f229";
}
.icn-mars-stroke-v:before {
	content: "\f22a";
}
.icn-mars-stroke-h:before {
	content: "\f22b";
}
.icn-neuter:before {
	content: "\f22c";
}
.icn-genderless:before {
	content: "\f22d";
}
.icn-facebook-official:before {
	content: "\f230";
}
.icn-pinterest-p:before {
	content: "\f231";
}
.icn-whatsapp:before {
	content: "\f232";
}
.icn-server:before {
	content: "\f233";
}
.icn-user-plus:before {
	content: "\f234";
}
.icn-user-times:before {
	content: "\f235";
}
.icn-hotel:before,
.icn-bed:before {
	content: "\f236";
}
.icn-viacoin:before {
	content: "\f237";
}
.icn-train:before {
	content: "\f238";
}
.icn-subway:before {
	content: "\f239";
}
.icn-medium:before {
	content: "\f23a";
}
.icn-yc:before,
.icn-y-combinator:before {
	content: "\f23b";
}
.icn-optin-monster:before {
	content: "\f23c";
}
.icn-opencart:before {
	content: "\f23d";
}
.icn-expeditedssl:before {
	content: "\f23e";
}
.icn-battery-4:before,
.icn-battery:before,
.icn-battery-full:before {
	content: "\f240";
}
.icn-battery-3:before,
.icn-battery-three-quarters:before {
	content: "\f241";
}
.icn-battery-2:before,
.icn-battery-half:before {
	content: "\f242";
}
.icn-battery-1:before,
.icn-battery-quarter:before {
	content: "\f243";
}
.icn-battery-0:before,
.icn-battery-empty:before {
	content: "\f244";
}
.icn-mouse-pointer:before {
	content: "\f245";
}
.icn-i-cursor:before {
	content: "\f246";
}
.icn-object-group:before {
	content: "\f247";
}
.icn-object-ungroup:before {
	content: "\f248";
}
.icn-sticky-note:before {
	content: "\f249";
}
.icn-sticky-note-o:before {
	content: "\f24a";
}
.icn-cc-jcb:before {
	content: "\f24b";
}
.icn-cc-diners-club:before {
	content: "\f24c";
}
.icn-clone:before {
	content: "\f24d";
}
.icn-balance-scale:before {
	content: "\f24e";
}
.icn-hourglass-o:before {
	content: "\f250";
}
.icn-hourglass-1:before,
.icn-hourglass-start:before {
	content: "\f251";
}
.icn-hourglass-2:before,
.icn-hourglass-half:before {
	content: "\f252";
}
.icn-hourglass-3:before,
.icn-hourglass-end:before {
	content: "\f253";
}
.icn-hourglass:before {
	content: "\f254";
}
.icn-hand-grab-o:before,
.icn-hand-rock-o:before {
	content: "\f255";
}
.icn-hand-stop-o:before,
.icn-hand-paper-o:before {
	content: "\f256";
}
.icn-hand-scissors-o:before {
	content: "\f257";
}
.icn-hand-lizard-o:before {
	content: "\f258";
}
.icn-hand-spock-o:before {
	content: "\f259";
}
.icn-hand-pointer-o:before {
	content: "\f25a";
}
.icn-hand-peace-o:before {
	content: "\f25b";
}
.icn-trademark:before {
	content: "\f25c";
}
.icn-registered:before {
	content: "\f25d";
}
.icn-creative-commons:before {
	content: "\f25e";
}
.icn-gg:before {
	content: "\f260";
}
.icn-gg-circle:before {
	content: "\f261";
}
.icn-tripadvisor:before {
	content: "\f262";
}
.icn-odnoklassniki:before {
	content: "\f263";
}
.icn-odnoklassniki-square:before {
	content: "\f264";
}
.icn-get-pocket:before {
	content: "\f265";
}
.icn-wikipedia-w:before {
	content: "\f266";
}
.icn-safari:before {
	content: "\f267";
}
.icn-chrome:before {
	content: "\f268";
}
.icn-firefox:before {
	content: "\f269";
}
.icn-opera:before {
	content: "\f26a";
}
.icn-internet-explorer:before {
	content: "\f26b";
}
.icn-tv:before,
.icn-television:before {
	content: "\f26c";
}
.icn-contao:before {
	content: "\f26d";
}
.icn-500px:before {
	content: "\f26e";
}
.icn-amazon:before {
	content: "\f270";
}
.icn-calendar-plus-o:before {
	content: "\f271";
}
.icn-calendar-minus-o:before {
	content: "\f272";
}
.icn-calendar-times-o:before {
	content: "\f273";
}
.icn-calendar-check-o:before {
	content: "\f274";
}
.icn-industry:before {
	content: "\f275";
}
.icn-map-pin:before {
	content: "\f276";
}
.icn-map-signs:before {
	content: "\f277";
}
.icn-map-o:before {
	content: "\f278";
}
.icn-map:before {
	content: "\f279";
}
.icn-commenting:before {
	content: "\f27a";
}
.icn-commenting-o:before {
	content: "\f27b";
}
.icn-houzz:before {
	content: "\f27c";
}
.icn-vimeo:before {
	content: "\f27d";
}
.icn-black-tie:before {
	content: "\f27e";
}
.icn-fonticons:before {
	content: "\f280";
}
.icn-reddit-alien:before {
	content: "\f281";
}
.icn-edge:before {
	content: "\f282";
}
.icn-credit-card-alt:before {
	content: "\f283";
}
.icn-codiepie:before {
	content: "\f284";
}
.icn-modx:before {
	content: "\f285";
}
.icn-fort-awesome:before {
	content: "\f286";
}
.icn-usb:before {
	content: "\f287";
}
.icn-product-hunt:before {
	content: "\f288";
}
.icn-mixcloud:before {
	content: "\f289";
}
.icn-scribd:before {
	content: "\f28a";
}
.icn-pause-circle:before {
	content: "\f28b";
}
.icn-pause-circle-o:before {
	content: "\f28c";
}
.icn-stop-circle:before {
	content: "\f28d";
}
.icn-stop-circle-o:before {
	content: "\f28e";
}
.icn-shopping-bag:before {
	content: "\f290";
}
.icn-shopping-basket:before {
	content: "\f291";
}
.icn-hashtag:before {
	content: "\f292";
}
.icn-bluetooth:before {
	content: "\f293";
}
.icn-bluetooth-b:before {
	content: "\f294";
}
.icn-percent:before {
	content: "\f295";
}
.icn-gitlab:before {
	content: "\f296";
}
.icn-wpbeginner:before {
	content: "\f297";
}
.icn-wpforms:before {
	content: "\f298";
}
.icn-envira:before {
	content: "\f299";
}
.icn-universal-access:before {
	content: "\f29a";
}
.icn-wheelchair-alt:before {
	content: "\f29b";
}
.icn-question-circle-o:before {
	content: "\f29c";
}
.icn-blind:before {
	content: "\f29d";
}
.icn-audio-description:before {
	content: "\f29e";
}
.icn-volume-control-phone:before {
	content: "\f2a0";
}
.icn-braille:before {
	content: "\f2a1";
}
.icn-assistive-listening-systems:before {
	content: "\f2a2";
}
.icn-asl-interpreting:before,
.icn-american-sign-language-interpreting:before {
	content: "\f2a3";
}
.icn-deafness:before,
.icn-hard-of-hearing:before,
.icn-deaf:before {
	content: "\f2a4";
}
.icn-glide:before {
	content: "\f2a5";
}
.icn-glide-g:before {
	content: "\f2a6";
}
.icn-signing:before,
.icn-sign-language:before {
	content: "\f2a7";
}
.icn-low-vision:before {
	content: "\f2a8";
}
.icn-viadeo:before {
	content: "\f2a9";
}
.icn-viadeo-square:before {
	content: "\f2aa";
}
.icn-snapchat:before {
	content: "\f2ab";
}
.icn-snapchat-ghost:before {
	content: "\f2ac";
}
.icn-snapchat-square:before {
	content: "\f2ad";
}
.icn-pied-piper:before {
	content: "\f2ae";
}
.icn-first-order:before {
	content: "\f2b0";
}
.icn-yoast:before {
	content: "\f2b1";
}
.icn-themeisle:before {
	content: "\f2b2";
}
.icn-google-plus-circle:before,
.icn-google-plus-official:before {
	content: "\f2b3";
}
.icn-fa:before,
.icn-font-awesome:before {
	content: "\f2b4";
}
.icn-handshake-o:before {
	content: "\f2b5";
}
.icn-envelope-open:before {
	content: "\f2b6";
}
.icn-envelope-open-o:before {
	content: "\f2b7";
}
.icn-linode:before {
	content: "\f2b8";
}
.icn-address-book:before {
	content: "\f2b9";
}
.icn-address-book-o:before {
	content: "\f2ba";
}
.icn-vcard:before,
.icn-address-card:before {
	content: "\f2bb";
}
.icn-vcard-o:before,
.icn-address-card-o:before {
	content: "\f2bc";
}
.icn-user-circle:before {
	content: "\f2bd";
}
.icn-user-circle-o:before {
	content: "\f2be";
}
.icn-user-o:before {
	content: "\f2c0";
}
.icn-id-badge:before {
	content: "\f2c1";
}
.icn-drivers-license:before,
.icn-id-card:before {
	content: "\f2c2";
}
.icn-drivers-license-o:before,
.icn-id-card-o:before {
	content: "\f2c3";
}
.icn-quora:before {
	content: "\f2c4";
}
.icn-free-code-camp:before {
	content: "\f2c5";
}
.icn-telegram:before {
	content: "\f2c6";
}
.icn-thermometer-4:before,
.icn-thermometer:before,
.icn-thermometer-full:before {
	content: "\f2c7";
}
.icn-thermometer-3:before,
.icn-thermometer-three-quarters:before {
	content: "\f2c8";
}
.icn-thermometer-2:before,
.icn-thermometer-half:before {
	content: "\f2c9";
}
.icn-thermometer-1:before,
.icn-thermometer-quarter:before {
	content: "\f2ca";
}
.icn-thermometer-0:before,
.icn-thermometer-empty:before {
	content: "\f2cb";
}
.icn-shower:before {
	content: "\f2cc";
}
.icn-bathtub:before,
.icn-s15:before,
.icn-bath:before {
	content: "\f2cd";
}
.icn-podcast:before {
	content: "\f2ce";
}
.icn-window-maximize:before {
	content: "\f2d0";
}
.icn-window-minimize:before {
	content: "\f2d1";
}
.icn-window-restore:before {
	content: "\f2d2";
}
.icn-times-rectangle:before,
.icn-window-close:before {
	content: "\f2d3";
}
.icn-times-rectangle-o:before,
.icn-window-close-o:before {
	content: "\f2d4";
}
.icn-bandcamp:before {
	content: "\f2d5";
}
.icn-grav:before {
	content: "\f2d6";
}
.icn-etsy:before {
	content: "\f2d7";
}
.icn-imdb:before {
	content: "\f2d8";
}
.icn-ravelry:before {
	content: "\f2d9";
}
.icn-eercast:before {
	content: "\f2da";
}
.icn-microchip:before {
	content: "\f2db";
}
.icn-snowflake-o:before {
	content: "\f2dc";
}
.icn-superpowers:before {
	content: "\f2dd";
}
.icn-wpexplorer:before {
	content: "\f2de";
}
.icn-meetup:before {
	content: "\f2e0";
}

.icn-angle-left:before {
	content: "\f104";
}
.icn-angle-right:before {
	content: "\f105";
}
.icn-angle-up:before {
	content: "\f106";
}
.icn-angle-down:before {
	content: "\f107";
}
.icn-caret-down:before {
	content: "\f0d7";
}
.icn-caret-up:before {
	content: "\f0d8";
}
.icn-caret-left:before {
	content: "\f0d9";
}
.icn-caret-right:before {
	content: "\f0da";
}
.icn-arrow-left:before {
	content: "\f060";
}
.icn-arrow-right:before {
	content: "\f061";
}
.icn-arrow-up:before {
	content: "\f062";
}
.icn-arrow-down:before {
	content: "\f063";
}
.icn-check:before {
	content: "\f00c";
}
.icn-check-square:before {
	content: "\f14a";
}
.icn-question-circle:before {
	content: "\f059";
}
.icn-search:before {
	content: "\f002";
}
.icn-trophy:before {
	content: "\f091";
}
.icn-keyboard-o:before {
	content: "\f11c";
}
.icn-star:before {
	content: "\f005";
}
.icn-star-o:before {
	content: "\f006";
}
.icn-twitter:before {
	content: "\f099";
}
.icn-facebook:before {
	content: "\f09a";
}
.icn-comment:before {
	content: "\f075";
}
.icn-warning:before {
	content: "\f071";
}
.icn-delete:before {
	content: "\f1f8";
}
.icn-leaf01{
	display: inline-block;
	width: 40px;
	height: 40px;
	background: url("/resource/img/icon/icon-leaf01.png") left top no-repeat;
}
.icn-leaf02{
	display: inline-block;
	width: 40px;
	height: 40px;
	background: url("/resource/img/icon/icon-leaf02.png") left top no-repeat;
}
.hdg-lv2 span.icn-leaf02,
.hdg-lv2 span.icn-leaf01{
	top: 10px;
	padding: 0;
}
.hdg-lv2 span.icn-leaf01{
	margin-right: 15px;
}
.hdg-lv2 span.icn-leaf02{
	margin-left: 15px;
}
@media(max-width: 767px) {
	.icn-leaf01{
		width: 20px;
		height: 20px;
		background-size: cover;
	}
	.icn-leaf02{
		width: 20px;
		height: 20px;
		background-size: cover;
	}
	.hdg-lv2 span.icn-leaf02,
	.hdg-lv2 span.icn-leaf01{
		top: 0;
	}
	.hdg-lv2 span.icn-leaf01{
		margin-right: 5px;
	}
	.hdg-lv2 span.icn-leaf02{
		margin-left: 5px;
	}
}

/*2-2-6. Backgrounds [bg-***]*/


/*2.2-7 Colors [cl-] */
.cl-yellow {
	color: #fdd835;
}
.cl-blue {
	color: #21ade5;
}
.cl-pink {
	color: #cc6666;
}

/*2-2-8. Font size [fs-***]*/
.fs-18 {
	font-size: 18px;
}
.fs-16 {
	font-size: 16px;
}
.fs-14 {
	font-size: 14px;
}
.fs-12 {
	font-size: 12px;
}



/* 2-3. State [is-***]
-------------------------------------------------- */
.is-open{
	display: block;
}
.is-error{
	background-color: #f9eceb;
}
.is-disabled{
	opacity: 0.45;
}
.is-show{
	visibility: visible;
	opacity: 1;
}


/* 2-4. OverLayerConfig [z-index]
-------------------------------------------------- */

.overlayBody{
	position: fixed;
	z-index: 1000;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
}






/* 2-5. Project--------------------------
-------------------------------------------------- */
.owl-nav {
	width: 100%;
	position: absolute;
	left: 0;
	right: 0;
	top: 48%;
	-ms-transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	margin: auto;
	z-index: 10;
	box-sizing: border-box;
	pointer-events: none;
}
.owl-nav.disabled,
.owl-dots.disabled {
	display: none;
}
.owl-nav div {
	background: #fdd835;
	border-radius: 50%;
	width: 50px;
	height: 50px;
	color: #21ade5;
	text-align: center;
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
	pointer-events: auto;
}
.owl-nav div i {
	padding: 0;
}
.owl-nav div i:before {
	line-height: 50px;
	font-size: 20px;
}
.owl-nav .owl-prev {
	float: left;
	margin-left: -36px;
}
.owl-nav .owl-next {
	float: right;
	margin-right: -36px;
}
@media(max-width: 780px) {
	.owl-nav div {
		width: 25px;
		height: 25px;
	}
	.owl-nav div i:before {
		line-height: 25px;
		font-size: 10px;
	}
	.owl-nav .owl-prev {
		float: left;
		margin-left: -9px;
	}
	.owl-nav .owl-next {
		float: right;
		margin-right: -9px;
	}
}

.owl-dots .owl-dot span {
	width: 10px;
	height: 10px;
	background: #b2e1ec;
	font-size: 0;
	border-radius: 50%;
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
	display: block;
}
.owl-dots {
	text-align: center;
	position: absolute;
	left: 0;
	right: 0;
	bottom: -28px;
}
.owl-dots .owl-dot {
	display: inline-block;
	vertical-align: middle;
	padding: 0 5px;
}
.owl-dots .owl-dot:hover span,
.owl-dots .active span {
	background: #fdd835;
}
@media (max-width: 780px) {
	.owl-dots {
		bottom: -20px;
	}
	.owl-dots .owl-dot {
		padding: 0 3px;
	}
	.owl-dots .owl-dot span {
		width: 5px;
		height: 5px;
	}
}
/*------------------------------------------------- */
.box-modal__title {
	font-size: 24px;
	margin-bottom: 20px;
	font-weight: normal;
	color: #fff;
}
.box-modal__title img {
	height: 24px;
	width: auto;
}
.box-modal__content {
	background: #fff;
	border-radius: 20px;
	color: #333;
	overflow: hidden;
	padding: 30px 30px 25px;
	font-size: 16px;
}
.box-modal__content__title {
	color: #e60012;
	margin-bottom: 30px;
}
.box-modal__content p {
	line-height: 1.8;
}
@media(max-width: 767px){
	.box-modal__content {
		border-radius: 10px;
		padding: 15px;
		font-size: 14px;
	}
	.box-modal__title {
		font-size: 16px;
		margin-bottom: 10px;
	}
	.box-modal__content__title {
		margin-bottom: 15px;
	}
	.box-modal__title img {
		height: 16px;
		width: auto;
	}
}

/* /index.html------------------------------------ */
.box-news-index {
	height: 38px;
	background: #eee;
	border-bottom: 1px solid #cecece;
	position: relative;
}
.box-news-index__label .lbl-news {
	position: absolute;
	top: 50%;
	-ms-transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}
.box-news-index .lst-news {
	padding-left: 60px;
	position: relative;
}
.box-news-index .lst-news li {
	padding-left: 10px;
	line-height: 38px;
}
.box-news-index .lst-news li a:before {
	display: inline-block;
	font: normal normal normal 14px/1 FontAwesome;
	font-size: inherit;
	text-rendering: auto;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	content: "\f0da";
	margin-right: 7px;
	position: absolute;
	top: 0;
	left: 0;
	line-height: 38px;
	color: #0066cc;
}
.box-news-index__label .lbl {
	margin-right: 10px;
	margin-bottom: 0;
}
@media(max-width: 767px){
	.box-news-index {
		height: 30px;
	}
	.box-news-index .lst-news {
		padding-left: 35px;
	}
	.box-news-index .lst-news li {
		left: 35px;
		line-height: 30px;
	}
	.box-news-index .lst-news:before{
		display: none;
	}
	.box-news-index .lst-news li a {
		color: #333;
		font-size: 12px;
	}
	.box-news-index .lst-news li a:before {
		display: none;
	}
}
.section-intro {
	position: relative;
	margin-bottom: 30px;
}
.section-intro .hdg-lv2 {
	padding: 20px 0 25px;
}
.section-intro .hdg-lv2 img {
	height: 29px;
	width: auto;
}
.section-intro__text {
	padding: 0 200px;
	line-height: 1.8;
	font-size: 16px;
}
.section-intro__image {
	position: absolute;
	right: 20px;
	top: 15px;
}
.section-intro__image img {
	width: 146px;
	height: auto;
}
@media(max-width: 767px){
	.section-intro {
		padding-top: 15px;
		margin-bottom: 0;
	}
	.section-intro .hdg-lv2 {
		padding: 10px 0 15px;
	}
	.section-intro .hdg-lv2 img {
		height: 21px;
		width: auto;
	}
	.section-intro__text {
		padding: 0;
		font-size: 14px;
	}
	.section-intro__image {
		position: static;
		float: right;
		margin: 0 0 0 10px;
	}
	.section-intro__image img {
		width: 116px;
	}
}

.section-ranking {
	overflow: hidden;
	padding-top: 40px;
}
.is-top .section-ranking {
	padding-top: 25px;
}
.section-ranking__head {
	position: relative;
	margin-bottom: 20px;
}
.section-ranking__head .hdg-lv2 {
	padding-bottom: 5px;
}
.section-ranking__time {
	position: absolute;
	right: 0;
	top: 50%;
	-ms-transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}
.section-ranking__slide {
	display: block;
	margin: 0 -10px;
	width: auto;
}
.section-ranking__slide:after {
	content: "";
	display: block;
	clear: both;
}
.section-ranking__slide div {
	width: 20%;
	padding: 0 10px;
	box-sizing: border-box;
	float: left;
	text-align: left;
}
@media(min-width: 786px) {
	.section-ranking__slide div:nth-of-type(5n+1) {
		clear: both;
	}
}
.section-ranking__slide div a {
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
}
.section-ranking__slide div a,
.section-ranking__slide div a span {
	display: block;
}
.section-ranking__slide__image {
	font-size: 0;
	overflow: hidden;
	border-radius: 10px;
}
.section-ranking__slide__text {
	position: relative;
	min-height: 50px;
	padding: 5px 0 0 50px;
}
.section-ranking__slide__text:before {
	content: "";
	display: block;
	width: 37px;
	height: 50px;
	position: absolute;
	top: 0;
	left: 0;
}
.section-ranking__slide .is-first .section-ranking__slide__text:before {
	background: url("/resource/img/icon/icon-no01.png") no-repeat top center;
	background-size: 37px auto;
}
.section-ranking__slide .is-second .section-ranking__slide__text:before {
	background: url("/resource/img/icon/icon-no02.png") no-repeat top center;
	background-size: 37px auto;
}
.section-ranking__slide .is-third .section-ranking__slide__text:before {
	background: url("/resource/img/icon/icon-no03.png") no-repeat top center;
	background-size: 37px auto;
}
.section-ranking__slide .is-fourth .section-ranking__slide__text:before {
	background: url("/resource/img/icon/icon-no04.png") no-repeat bottom center;
	background-size: 40px auto;
}
.section-ranking__slide .is-fifth .section-ranking__slide__text:before {
	background: url("/resource/img/icon/icon-no05.png") no-repeat bottom center;
	background-size: 40px auto;
}
@media(max-width: 785px) {
	.section-ranking {
		padding-top: 20px;
	}
	.is-top .section-ranking {
		padding-top: 10px;
	}
	.section-ranking__head {
		margin-bottom: 20px;
	}
	.section-ranking__head .hdg-lv2 {
		padding: 0;
	}
	.section-ranking__time {
		display: none;
	}
	.section-ranking__slide {
		margin: 0 auto;
		max-width: 260px;
	}
	.section-ranking__slide .owl-stage-outer {
		overflow: visible;
	}
	.section-ranking__slide div {
		width: 100%;
		padding: 0;
	}
	.section-ranking__slide__text  {
		padding: 10px 0 0 50px;
		line-height: 16px;
	}
}
/*-------------------------------*/
.section-ranking--02 .section-ranking__slide__text{
	padding-left: 0;
}
.section-ranking--02 .section-ranking__slide__text:before{
	content: none;
}
.section-ranking--02 .hdg-flag {
	margin-bottom: 30px;
}
.section-ranking--02 .hdg-flag span {
	width: 208px;
}
@media(max-width: 767px) {
	.section-ranking--02 .hdg-flag {
		margin-bottom: 20px;
	}
	.section-ranking--02 .hdg-flag span {
		width: 180px;
	}
}

.section-search {
	padding: 60px 0 30px;
}
.section-search .hdg-lv2 {
	margin-bottom: 20px;
}
.section-search .txt-lead {
	margin-bottom: 25px;
}
.box-tab__wrap .box-search {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	left: 20px;
	right: 25px;
}
@media(max-width: 767px){
	.section-search {
		padding: 20px 0 25px;
	}
	.section-search .hdg-lv2 {
		margin-bottom: 10px;
		padding: 0;
	}
	.section-search .txt-lead {
		margin-bottom: 15px;
	}
	.section-search .lst-input__link a .icn:before {
		content: "\f059";
	}
	.section-search .box-tab__wrap .box-search {
		left: 14px;
		right: 14px;
	}
}

.section-other {
	max-width: 780px;
	margin: 0 auto;
	overflow: hidden;
	padding-bottom: 25px;
}
.section-other__slide {
	display: block;
	text-align: center;
}
.section-other__slide div {
	display: inline-block;
	vertical-align: middle;
	padding: 0 5px;
}

@media(max-width: 767px){
	.section-other {
		padding-bottom: 40px;
	}
}
@media(max-width: 802px){
	.section-other {
		max-width: none;
		margin: 0 -10px;
	}
	.section-other__slide {
		max-width: 236px;
		margin: 0 auto;
	}
	.section-other__slide .owl-stage-outer {
		overflow: visible;
	}
	.section-other__slide div {
		padding: 0;
	}
}

.section-teacher {
	padding-bottom: 35px;
}
.section-teacher__content__inner {
	overflow: hidden;
}
@media(max-width: 767px){
	.section-teacher {
		padding-bottom: 10px;
	}
	.section-teacher__content {
		margin-top: 20px;
	}
	.section-teacher__title span img {
		height: 16px;
		width: auto;
	}
}



/* /feature/-------------------------------------
-------------------------------------------------- */
.lst-article.wrp-grid {
	margin: 0 -10px;
	padding-bottom: 30px;
}
.lst-article li {
	padding: 0 10px;
	margin-bottom: 20px;
}
.box-article {
	background-color: #fff;
	padding: 10px;
	border-radius: 20px;
	box-shadow: 0 1px 2px rgba(0,0,0,.2);
	box-sizing: border-box;
	-webkit-transition: background-color 0.3s;
	transition: background-color 0.3s;
	position: relative;
}
.box-article:hover {
	background-color: #ffffcc;
}
.box-article a{
	display: block;
	color: #333;
}
.box-article a:hover {
	text-decoration: none;
	opacity: 1;
}
.box-article a span {
	display: block;
}
.box-article__image {
	line-height: 1;
	text-align: center;
	display: block;
}
.box-article__image img{
	border-radius: 10px;
}
.box-article__text {
	font-size: 16px;
	line-height: 24px;
	padding: 20px 10px 10px;
}
.box-article__title {
	color: #0066cc;
	font-size: 16px;
	display: block;
	padding: 15px 10px 0;
	box-sizing: border-box;
}
.box-article__content {
	display: block;
	position: relative;
}
.box-article__ranking {
	display: table;
	width: 100%;
	position: relative;
	bottom: 0;
	padding: 5px 0 0 10px;
	box-sizing: border-box;
}
.box-article__ranking-button {
	display: table-cell;
	vertical-align: middle;
	width: 100px;
}
.box-article__ranking .lst-category {
	display: table-cell;
	vertical-align: top;
}
.box-article__ranking-button a {
	border: 1px solid #ddd;
	border-radius: 20px;
	text-align: center;
	background-color: #fff;
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
	padding: 3px 5px;
	box-sizing: border-box;
	white-space: nowrap;
}
.box-article__ranking-button a.checked,
.box-article__ranking-button a.checked .icn:before {
	background-color: #ff9900;
	border: 1px solid #ff9900;
	color: #fff;
}
.box-article__ranking-button a.is-disable{
	cursor: default;
}
.box-article__ranking-button a span {
	display: inline-block;
}
.box-article__ranking-button a:hover {
	background-color: #ff9900;
	color: #fff;
}
.box-article__ranking-button a .icn:before {
	color: #ff9900;
}
.box-article__ranking-button a:hover .icn:before {
	color: #fff;
}
@media screen and (min-width: 0px) and (max-width: 767px){
	.box-article{
		border-radius: 10px;
	}
	.box-article__title {
		font-size: 14px;
		line-height: 16px;
	}
	.box-article__ranking {
		padding: 5px 0 0;
	}
	.box-article__ranking-button {
		width: 80px;
	}
	.box-article__ranking-button a {
		font-size: 10px;
		line-height: 12px;
	}
}

/*-------------------------------------------*/
.lst-category {
	overflow: hidden;
	font-size: 0;
}
.lst-category li {
	display: inline-block;
	padding-right: 5px;
	margin-bottom: 5px;
}
.lst-category li:last-child {
	margin-bottom: 0;
}
.lst-category li img {
	width: 28px;
	height: auto;
}
@media screen and (min-width: 0px) and (max-width: 767px){
	.lst-article.wrp-grid {
		margin: 0;
	}
	.lst-article li {
		padding: 0;
		margin-bottom: 10px;
	}
	.box-article__text {
		font-size: 14px;
		padding: 15px 0 5px;
		line-height: 16px;
	}
	.lst-category li {
		margin-bottom: 0;
	}
	.lst-category li img {
		width: 20px;
		height: auto;
	}
}
/*----------------------------------------------------*/
.lst-rank.wrp-grid {
	margin: 20px -10px 0;
}

.lst-rank > li {
	padding: 0 10px;
	margin-bottom: 20px;
	position: relative;
	z-index: 2;
}
.lst-rank > li:nth-of-type(3n+2){
	clear: both;
}
.lst-rank__button {
	text-align: center;
	margin-top: 10px;
}
.lst-rank__button a {
	font-size: 18px;
	padding: 12px 25px;
}
.lst-rank .box-article:hover {
	box-shadow: 0 1px 10px rgba(0,0,0,.2);
}
@media screen and (min-width: 768px) {
	.lst-rank li .lst-rank-character__left {
		position: absolute;
		top: 0;
		bottom: 0;
		left: 0;
		right: 0;
		display: block;
		height: 100%;
		width: 100%;
		z-index: -1;
		cursor: auto;
	}
	.lst-rank li .lst-rank-character__left:before {
		content: "";
		background: url("/resource/img/cmn_img_kurokokun01.png") no-repeat left bottom;
		width: 112px;
		height: 136px;
		position: absolute;
		top: 50%;
		margin-top: 12px;
		-ms-transform: translateY(-50%) rotate(28deg);
		-webkit-transform: translateY(-50%) rotate(28deg);
		transform: translateY(-50%) rotate(28deg);
		left: 0;
		right: 0;
		bottom: 0;
		z-index: 100;
		-webkit-transition: all 0.2s ease-in-out;
		transition: all 0.2s ease-in-out;
	}
	.lst-rank .box-article:hover .lst-rank-character__left:before{
		left: -70px;
		-ms-transform: translateY(-50%) rotate(0deg);
		-webkit-transform: translateY(-50%) rotate(0deg);
		transform: translateY(-50%) rotate(0deg);
	}
	.box-article.remove-character:hover .lst-rank-character__left:before {
		left: 0;
		-ms-transform: translateY(-50%) rotate(0deg);
		-webkit-transform: translateY(-50%) rotate(0deg);
		transform: translateY(-50%) rotate(28deg);
	}
}
@media screen and (min-width: 0px) and (max-width: 767px){
	.lst-rank.wrp-grid {
		margin: 15px 0 0;
	}
	.lst-rank > li {
		padding: 0;
		margin-bottom: 10px;
	}
	.lst-rank .box-article {
		padding: 15px 10px 10px;
	}
	.lst-rank .box-article__content {
		display: table;
		width: 100%;
	}
	.lst-rank .box-article__image {
		display: table-cell;
		vertical-align: top;
		width: 50%;
	}
	.lst-rank .box-article__image img {
		border-radius: 0;
	}
	.lst-rank .box-article__title {
		display: table-cell;
		vertical-align: top;
		width: 50%;
		padding: 0 0 0 10px;
		box-sizing: border-box;
	}
	.lst-rank__button a {
		font-size: 14px;
	}
}


/* /feature/plusticcup/--------------------------
-------------------------------------------------- */
.page-feature .box-page-heading__main:before {
	content: "";
	background: url("/resource/img/feature_img_kurokokun01.png") center;
	width: 59px;
	height: 80px;
	background-size: cover;
	left: 8px;
	top: 17px;
}
.page-feature.page-lab-details .box-page-heading{
	padding-bottom: 105px;
}
.page-feature .box-page-heading__head {
	margin-bottom: 25px;
}
.page-feature .box-page-heading__head .hdg__image {
	height: 28px;
	width: auto;
}
.page-feature .hdg-lv2 {
	margin: 20px 0 28px;
}
.page-feature .box-page-content {
	overflow: hidden;
	margin-bottom: -25px;
}
.page-feature .lst-rank > li:nth-of-type(3n+2){
	clear: none;
}
.page-feature .lst-rank > li:nth-of-type(4n+2){
	clear: both;
}
@media screen and (min-width: 0px) and (max-width: 767px){
	.page-feature .hdg-lv2 {
		font-size: 19px;
		line-height: 15px;
		letter-spacing: 0;
		padding: 0;
		margin: 10px 0 20px;
	}
	.page-feature .hdg-lv2 .hdg__image {
		height: 19px;
		width: auto;
	}
	.page-feature .txt-lead {
		line-height: 16px;
	}
	.page-feature .box-page-heading {
		padding-bottom: 10px;
	}
	.page-feature.page-lab-details .box-page-heading{
		padding-bottom: 105px;
		padding-bottom: 93px;
	}
	.page-feature .box-page-heading__head .hdg__image {
		height: 15px;
		width: auto;
	}
	.page-feature .box-page-heading__main:before {
		width: 30px;
		height: 40px;
		top: 10px;
		left: 0;
	}
	.page-feature .box-page-heading__main {
		padding-left: 38px;
	}
	.page-feature .box-page-heading__head {
		padding-top: 18px;
		margin-bottom: 35px;
	}
}
@media (min-width: 768px){
	.lst-feature .grid-4{
		width: 25%;
	}
	.lst-feature .lst-rank > li:nth-of-type(3n+2){
		clear: none;
	}
	.lst-feature .lst-rank > li:nth-of-type(4n+2){
		clear: both;
	}
}

/* /lab/index.html------------------------------------ */
.page-lab-index .box-page-heading__main:before {
	width: 75px;
	height: 81px;
	background: url("/resource/img/lab_img_kurokokun01.png") center;
	background-size: cover;
	left: 0;
}
.page-lab-index .box-page-heading__head .hdg__image {
	height: 28px;
}
.page-lab-index .box-page-heading__head {
	margin-bottom: 20px;
}
.page-lab-index .lab-search-result {
	color: #fff;
	font-size: 16px;
	padding: 14px 10px;
}
.page-lab-index .local-navi-top {
	top: 0;
}
.page-lab-index .lst-rank.wrp-grid {
	margin-bottom: -20px;
}
.page-lab-index .l-column {
	top: -40px;
}
.page-lab-index .section-other {
	padding-bottom: 0;
}
@media(max-width: 767px){
	.page-lab-index .box-page-heading__main:before {
		width: 33px;
		height: 36px;
	}
	.page-lab-index .box-page-heading__head {
		margin-bottom: 5px;
	}
	.page-lab-index .box-page-heading__head .hdg__image {
		height: 16px;
	}
	.page-lab-index .l-column {
		top: -20px;
	}
	.page-lab-index .lst-rank.wrp-grid {
		margin-bottom: 0;
		margin-top: 0;
	}
	.page-lab-index .section-other {
		margin-top: -10px;
	}
}
.box-sidebar{
	background: #fff;
	border-radius: 20px;
	box-shadow: 0 1px 2px rgba(0,0,0,.2);
	height: 100%;
	padding: 0 15px;
	box-sizing: border-box;
	font-size: 16px;
}
.box-sidebar__inner{
	border-bottom: 1px solid #ddd;
	padding-bottom: 30px;
}
.box-sidebar__inner:first-child{
	padding-bottom: 15px;
}
.box-sidebar__inner:last-child{
	border-bottom: 0;
}
.box-sidebar__title{
	font-size: 18px;
	font-weight: bold;
	padding: 11px 0;
}
.box-sidebar__title a{
	color: #333;
	pointer-events: none;
}
.box-sidebar__title a:hover{
	text-decoration: none;
	opacity: 1;
}
.lst-lab-field{
	border-top: 1px solid #ddd;
	padding-top: 8px;
}
.lst-lab-field li a{
	display: block;
	padding: 7px 0;
	vertical-align: middle;
	color: #333;
}
.lst-lab-field li a:hover{
	text-decoration: none;
}
.lst-lab-field li:last-child a{
	padding-bottom: 0;
}
.lst-lab-field li span{
	display: inline-block;
	vertical-align: top;
	line-height: 1.32;
}
.lst-lab-field li img{
	width: 20px;
	height: auto;
}
.lst-lab-field li span:first-child{
	padding-right: 10px;
}
.box-select{
	position: relative;
	display: block;
	border: 1px solid #ccc;
	line-height: 1;
}
.box-select .select{
	width: 100%;
	box-sizing: border-box;
	padding: 6px 30px 6px 9px;
	border: 0;
	background: none;
	-webkit-appearance: textfield;
}
.box-select:after{
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
	z-index: 1;
	display: inline-block;
	font: normal normal normal 14px/1 FontAwesome;
	font-size: inherit;
	text-rendering: auto;
	-webkit-font-smoothing: antialiased;
	color: #0066cc;
	content: "\f0d7";
	pointer-events: none;
	background: #fff;
	box-sizing: border-box;
	padding: 7px 15px;
}
.box-select:before{
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	right: 25px;
	z-index: 1;
	background: #fff;
	padding: 10px 20px;
	pointer-events: none;
}
.lst-lab-teacher{
	border-top: 1px solid #ddd;
	padding-top: 10px;
}
.lst-lab-teacher li a{
	display: block;
	padding: 9px 0;
	color: #333;
}
.lst-lab-teacher li a .icn{
	padding-right: 0;
}
.lst-lab-teacher li a .icn:before{
	padding-right: 5px;
	color: #0066cc;
}
.box-sidebar__wrap__title {
	display: none;
}
.box-sidebar__title .icn{
	display: none;
}
@media(max-width: 900px){
	.page-lab-index .local-navi-top {
		display: none !important;
	}
	.box-sidebar__wrap__title{
		background: #fff;
		display: block;
		position: relative;
	}
	.box-sidebar__wrap__title .box-accordion__icon{
		color: #009bc1;
	}
	.box-sidebar__wrap__title.is-active .box-accordion__icon{
		color: #fff;
	}
	.box-sidebar__wrap__title a{
		padding: 10px;
		display: block;
		color: #333;
	}
	.box-sidebar__wrap__title.is-active a{
		background: #009bc1;
		color: #fff;
	}
	.box-sidebar__wrap__title a:hover{
		text-decoration: none;
	}
	.box-accordion__content {
		display: none;
	}
	.box-sidebar{
		padding: 0;
		font-size: 14px;
		overflow: hidden;
		border-radius: 10px;
		margin-bottom: 10px;
		border: 1px solid #ddd;
		box-shadow: none;
	}
	.box-sidebar__title{
		background: #e5f5f9;
		position: relative;
		font-weight: normal;
		font-size: 14px;
		padding: 0;
	}
	.box-sidebar__title .icn{
		display: block;
	}
	.box-accordion__icon {
		display: block;
		position: absolute;
		top: 11px;
		right: 5px;
	}
	.box-accordion__icon:before{
		font-size: 18px;
	}
	.box-sidebar__title a{
		color: #009bc1;
		pointer-events: auto;
		padding: 10px;
		display: block;
	}
	.lst-lab-field{
		padding-top: 0;
	}
	.lst-lab-field li{
		border-bottom: 1px solid #ddd;
		padding: 0 10px;
	}
	.lst-lab-field li:last-child{
		border-bottom: 0;
	}
	.lst-lab-field li a{
		padding: 10px 0 5px;
	}
	.lst-lab-field li:last-child a{
		padding-bottom: 5px;
	}
	.box-sidebar__inner{
		padding-bottom: 0;
	}
	.box-sidebar__inner:first-child{
		padding-bottom: 0;
	}
	#content02{
		border-top: 1px solid #ddd;
	}
	.box-select{
		margin: 10px;
	}
	.box-select:after{
		padding: 7px;
	}
	.box-select .select{
		padding: 8px 30px 8px 9px;
	}
	.lst-lab-teacher {
		padding-top: 0;
	}
	.lst-lab-teacher li{
		border-bottom: 1px solid #ddd;
		padding: 0 10px;
		box-sizing: border-box;
	}
	.lst-lab-teacher li:last-child{
		border-bottom: 0;
	}
}
@media(min-width: 901px){
	.box-accordion__content{
		display: block!important;
	}
	.page-lab-index .visible-pc {
		display: block !important
	}
}
/* /lab/xxx/------------------------------------
-------------------------------------------------- */
.page-lab-details .box-footer-list {
	padding: 100px 0 35px; 
}
.page-lab-details .box-page-heading__main:before{
	width: 75px;
	height: 81px;
	background: url(/resource/img/lab_img_kurokokun01.png) center;
	background-size: cover;
	left: 0;
}
.page-lab-details h1{

}
.page-lab-details h1 span{
	font-weight: normal;
	font-size: 18px;
}
.page-lab-tools h1 span{
	font-weight: normal;
	font-size: 18px;
}
.page-lab-details .box-page-content {
	padding-top: 20px;
}
.page-lab-details .box-page-heading__head .hdg__image {
	height: auto;
}
.page-lab-details .hdg-lv2 .hdg__image {
	height: 30px;
	width: auto;
}
.local-navi-top {
	padding: 10px 10px 0 10px;
	position: relative;
	top: 10px;
}
.local-navi-top.is-fixed{
	padding: 0;
}
.local-navi-top .local-navi-top__inner {
	width: 100%;
	max-width: 1180px;
	border-radius: 25px;
	background-color: #aa965c;
	box-shadow: inset 0 1px 2px #a28f58;
}
.local-navi-top .local-navi-top__inner:after{
	content: "";
	display: table;
	clear: both;
}
.local-navi-top__content{
	display: inline-block;
	box-sizing: border-box;
	padding-right: 150px;
	position: relative;
	width: 100%;
}
.local-navi-top__content li{
	font-size: 16px;
	display: inline-block;
}
.local-navi-top__content li a{
	color: #fff;
	padding: 15px;
	display: block;
}
.local-navi-top__content li.is-active a,
.local-navi-top__content li:hover a{
	color: #fdd835;
}
.local-navi-top__content li a:hover{
	text-decoration: none;
}
.local-navi-top__content li.local-navi-top__button{
	position: absolute;
	right: 10px;
	top: 50%;
	-ms-transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}
.local-navi-top__content .local-navi-top__button a{
	color: #666600;
	border-radius: 30px;
	background-color: #fff;
	padding: 5px 15px;
	font-size: 14px;
	box-sizing: border-box;
	white-space: nowrap;
	display: block;
	text-align: center;
}
.local-navi-top__button:hover a{
	text-decoration: none;
}
.box-movie{
	text-align: center;
	position: relative;
	line-height: 1;
}
.box-movie .hdg-lv2{
	padding: 25px 0 60px;
}
.box-movie:after{
	content: "";
	width: 98px;
	height: 167px;
	position: absolute;
	bottom: 0;
	right: 33px;
	background: url("/resource/img/lab_tool_img_kurokokun01.png") no-repeat center;
	background-size: cover;
}
.box-movie__content{
	width: 67.5%;
	padding-bottom: 38%;
	position: relative;
	display: inline-block;
}
.box-movie__content iframe{
	position: absolute;
	height: 100%;
	width: 100%;
	left: 0;
	top: 0;
	border: 0;
}
.main-content__detal__text{
	padding: 5px 30px 25px 40px;
}
.main-content__detal__text > .main-content__detal__head:first-child{
	margin: 0 0 20px;
}
.box-movie + .main-content__detal__text > .main-content__detal__head:first-child{
	margin: 45px 0 20px;
}
.main-content__detal__head{
	margin: 45px 0 20px;
	font-size: 24px;
	line-height: 1;
	letter-spacing: 0.05em;
	font-family: "新丸ゴ M","Shin Maru Go Medium","ヒラギノ角ゴ ProN W3","HiraKakuProN-W3","ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro","メイリオ",Meiryo,"ＭＳ Ｐゴシック","helvetica","arial",sans-serif;
}
.main-content__detal__head .hdg__image {
	height: 23px;
	width: auto;
}
.main-content__detal__head .icn:before{
	color: #009ac1;
}
.main-content__detal__head .icn.icn-exclamation-circle:before{
	color: #e74b4a;
}
.main-content__detal__text p{
	font-size: 16px;
	line-height: 1.875;
	letter-spacing: 0;
}
.swiper-slide{
	width: auto;
	height: auto;
}
@media (min-width: 768px) and (max-width: 980px){
	.local-navi-top__content:after{
		content: "";
		clear: both;
		display: block;
	}
	.local-navi-top__content li{
		float: left;
	}
	.local-navi-top__content li a{
		padding: 6px;
	}
	.box-footer-list{
		background: #ededdf url("/resource/img/bg-woods03.png") no-repeat top center;
	}
}

@media (max-width: 767px){
	.page-lab-details .box-page-heading__main:before{
		width: 33px;
		height: 36px;
		top: 10px;
	}
	.page-lab-details .box-page-heading__head h1{
		/*
		color: #656733;
		*/
		line-height: 17px;
		padding: 0;
	}
	.page-lab-details .box-page-heading__head {
		margin-bottom: 7px;
	}
	.page-lab-details .hdg-lv2 .hdg__image {
		height: 19px;
		width: auto;
	}
	.box-movie:after{
		content: none;
	}
	.box-movie .hdg-lv2{
		padding: 17px 0 20px;
	}
	.main-content__detal__head{
		margin: 17px 0 13px;
		padding-bottom: 12px;
		font-size: 16px;
		border-bottom: 1px dashed #d2caab;
	}
	.main-content__detal__text > .main-content__detal__head:first-child{
		margin: 0 0 13px;
	}
	.box-movie + .main-content__detal__text > .main-content__detal__head:first-child{
		margin: 17px 0 13px;
	}
	.main-content__detal__head .hdg__image {
		height: 15px;
		width: auto;
	}
	.page-lab-details .box-page-heading__image {
		border-radius: 0;
	}
	.page-lab-details .box-page-heading__image img{
		border-radius: 0;
	}
	.page-lab-details .section-ranking--02{
		margin: 0 -10px;
	}
	.box-movie__content{
		width: 100%;
		padding-bottom: 50%;
	}
	.main-content__detal__text{
		padding: 0 0 15px;
	}
	.local-navi-top{
		-webkit-transition: all .3s;
		transition: all .3s;
		top: 0;
		overflow-x:scroll;
		overflow-y:hidden;
		-webkit-overflow-scrolling: touch;
		padding: 0;
	}
	.local-navi-top.is-fixed{
		position: fixed;
		top: 0;
		left: 0;
		right: 0;
		z-index: 9;
		overflow-x:scroll;
	}
	.local-navi-top .local-navi-top__content{
		border-radius: 0;
		width: 100%;
		white-space: nowrap;
	}
	.local-navi-top .local-navi-top__inner {
		border-radius: 0;
	}
	.local-navi-top .wrp-container{
		min-width: 767px;
		position: relative;
		padding: 0;
	}
	.local-navi-top__content li{
		font-size: 12px;
	}
	.local-navi-top__content li a {
		padding: 11px;
	}
	.swiper-slide {
		text-align: left;
		display: -webkit-box;
		display: -ms-flexbox;
		display: -webkit-flex;
		display: flex;
		overflow: auto;
	}
	.main-content__detal__text p {
		font-size: 14px;
		line-height: 20px;
	}
	.page-lab-details .nav-footer{
		padding: 15px 0 5px;
	}
	.page-lab-details .nav-footer .btn{
		min-width: 147px;
	}
}



/* /lab/noxxx/tools.html--------------------------
-------------------------------------------------- */
.page-lab-details .hdg-lv2{
	padding: 20px 0 35px;
	font-size: 32px;
}
.main-content__detal {
	padding-top: 30px;
}
.page-lab-details .box-page-heading{
	background: #ffffff url("/resource/img/bg-woods01.png") no-repeat center bottom;
}
.page-lab-tools .box-page-heading__main:before {
	width: 75px;
	height: 81px;
	background: url("/resource/img/lab_img_kurokokun01.png") center;
	background-size: cover;
	left: 0;
}
.page-lab-tools .box-page-heading__head .hdg__image{
	height: auto;
}
.page-lab-tools .hdg-lv2{
	padding-top: 40px;
}
@media (max-width: 767px) {
	.page-lab-tools .box-page-heading__main:before {
		width: 33px;
		height: 36px;
		top: 10px;
	}
	.page-lab-details .hdg-lv2 {
		padding: 20px 0 15px;
		font-size: 16px;
		line-height: 20px;
	}
	.page-lab-tools .box-page-heading__head {
		padding-bottom: 16px;
	}
	.main-content__detal {
		margin: 0 -10px;
		border-radius: 0;
		padding-top: 10px;
	}
	.page-lab-tools .hdg-lv2{
		padding: 30px 0;
	}
	.page-lab-tools .section-ranking--02{
		margin: 0 -10px;
	}
}




/* /about/----------------------------------------
-------------------------------------------------- */
.page-about .hdg-lv2{
	letter-spacing: 0;
}
.page-about .box-page-heading__head .hdg__image {
	height: 26px;
	width: auto;
}
.box-about{
	background-color: #fff;
	box-shadow: 0 1px 2px rgba(0,0,0,0.2);
	border-radius: 20px;
	box-sizing: border-box;
	padding: 30px 200px;
	position: relative;
}
.box-about__image{
	position: absolute;
	width: 145px;
	height: 145px;
	line-height: 1;
	right: 40px;
	top: 50%;
	-ms-transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}
.box-about__text{
	text-align: center;
	font-size: 16px;
	margin: 30px 0 20px;
	line-height: 30px;
}
.box-about__button{
	text-align: center;
	padding-top: 5px;
}
.lst-about-info{
	padding: 0 0 10px;
	overflow: hidden;
}

.lst-about-info .hdg-lv3{
	padding: 28px 0 5px;
	margin-bottom: 15px;
}
.lst-about-info .wrp-grid{
	margin: 0 -10px;
}
.lst-about-info .grid-6{
	padding: 0 10px;
}
.lst-about-info p{
	line-height: 25px;
}
@media screen and (min-width: 0px) and (max-width: 767px){
	.page-about .box-page-content .wrp-container{
		padding: 0;
	}
	.page-about .hdg-lv2 {
		margin: 10px 0 20px;
		padding: 0;
	}
	.page-about .hdg-lv2 .hdg__image {
		height: auto;
	}
	.page-about .box-page-heading__head .hdg__image {
		height: 15px;
		width: auto;
	}
	.box-about{
		padding: 15px 15px;
		border-radius: 0;
	}
	.box-about__image{
		position: relative;
		top: auto;
		right: auto;
		float: right;
		width: 116px;
		height: 116px;
		-ms-transform: none;
		-webkit-transform: none;
		transform: none;
		padding: 0 0 15px 10px;
	}
	.box-about__text{
		text-align: left;
		font-size: 14px;
		margin: 15px 0 20px;
		line-height: 20px;
	}
	.box-about__button .btn--secondary{
		background-color: #fdd835;
		color: #666600;
		padding: 8px 17px;
	}
	.lst-about-info .hdg-lv3{
		font-size: 16px;
		padding: 25px 0 10px;
		margin-bottom: 10px;
	}
	.lst-about-info p{
		line-height: 20px;
	}
	.lst-about-info{
		padding: 0 10px 30px;
	}
}
/* /teacher/----------------------------------------
-------------------------------------------------- */
.page-teacher .box-page-heading__main:before{
	background: url("/resource/img/teacher_img_kurokokun01.png") center;
	width: 60px;
	height: 80px;
}
.page-teacher .box-page-content {
	padding-top: 30px;
}
.page-teacher .hdg-lv2{
	margin: 0 !important;
}
.box-introduce{
	margin-bottom: 20px;
}
.box-introduce_title{
	position: relative;
}
.box-introduce__text:last-child{
	margin-bottom: 25px;
}
.lst-page{
	display: block;
}
.lst-page.wrp-grid{
	margin: 0 -10px;
}
.lst-page .grid-6{
	padding: 0 10px;
}
.lst-page__item{
	background: #fff;
	border-radius: 20px;
	padding: 30px 20px 25px 15px;
	box-sizing: border-box;
	display: table;
	width: 100%;
}
.lst-page__item .hdg-lv2{
	text-align: left;
	display: table-cell;
	vertical-align: middle;
}
.lst-page__item .btn-experiment{
	display: table-cell;
	vertical-align: middle;
	float: right;
}
.box-page {
	display: table;
	background: #e0dcc5;
	padding: 15px 20px;
	box-sizing: border-box;
	border-radius: 20px;
}
.box-page__image,
.box-page__content{
	display: table-cell;
	vertical-align: top;
}
.box-page__image{
	width: 80px;
	height: 80px;
	padding-top: 5px;
	padding-right: 20px;
}
.box-page__title{
	font-size: 20px;
	margin-bottom: 10px;
	font-weight: bold;
}
.box-page__text{
	font-size: 16px;
	line-height: 1.56;
	letter-spacing: 0.1em;
}
.is-fixed {
	position: fixed;
	width: 100%;
	top: 0;
	left: 0;
	right: 0;
	z-index: 5;
	box-sizing: border-box;
}
.box-introduce__title.is-fixed{
	max-width: 1180px;
	margin: 0 auto;
	background: #fff;
}
.btn-experiment a{
	padding: 10px 20px;
	border-radius: 20px;
}
.btn-experiment a .icn {
	padding-right: 0;
}
@media screen and (min-width: 768px) and (max-width: 1200px){
	.box-introduce__title.is-fixed{
		left: 10px;
		right: 10px;
		width: auto;
	}
}
@media screen and (min-width: 0px) and (max-width: 767px){
	.page-teacher .box-page-heading__main:before{
		width: 30px;
		height: 40px;
		background-size: cover;
	}
	.page-teacher .box-page-heading__head .hdg__image {
		height: 18px;
	}
	.page-teacher .box-page-content {
		padding-top: 25px;
	}
	.page-teacher .local-navi-top {
		top: 15px;
	}
	.box-page__image,
	.box-page__content{
		display: block;
	}
	.box-page__image{
		text-align: center;
		margin: 0 auto;
		padding-top: 0;
		padding-right: 0;
	}
	.box-page__title{
		font-size: 18px;
		text-align: center;
	}
	.box-page__text{
		font-size: 14px;
	}
	.lst-page__item{
		border-radius: 0;
		margin-bottom: 10px;
		padding: 15px;
		box-shadow: 0 1px 2px rgba(0,0,0,0.2);
	}
	.lst-page__item .hdg-lv2{
		font-size: 19px;
		padding: 0;
	}
	 .btn-experiment a{
		font-size: 12px;
		padding: 5px 0;
		line-height: 1.25;
		background: #fdd835;
		color: #666600;
		min-width: 80px;
	}
	.page-teacher .hdg-lv2 .hdg__image{
		height: 19px;
		width: auto;
	}
	.page-teacher .box-page-content .wrp-container{
		padding: 0;
	}
	.page-teacher .lst-page.wrp-grid {
		margin: 0;
	}
	.page-teacher .lst-page .grid-6 {
		padding: 0;
	}
}

/* /favorite/index.html
-------------------------------------------------- */

/* ------------ common ------------- */
.no-favorite .no-favorite__content {
	display: block;
}
.no-favorite .has-favorite__content {
	display: none;
}
.has-favorite .no-favorite__content {
	display: none;
}
.has-favorite .has-favorite__content {
	display: block;
}
.page-favorite .box-page-heading__head {
	margin-bottom: 19px;
}
.page-favorite .box-page-heading__head .hdg__image {
	height: 27px;
}
.page-favorite .box-page-heading__main:before {
	background: url("/resource/img/favorite_img_kurokokun01.png") no-repeat center;
	width: 69px;
	height: 80px;
	left: 0;
}
.page-favorite .lst-rank > li:nth-of-type(4n+1){
	clear: both;
}
.page-favorite .lst-rank > li:nth-of-type(3n+2){
	clear: none;
}
@media(max-width: 767px){
	.page-favorite .box-page-heading {
		background-size: auto 85px;
	}
	.page-favorite .box-page-heading__head {
		margin-bottom: 10px;
	}
	.page-favorite .box-page-heading__main:before {
		width: 34px;
		height: 40px;
		background-size: 34px auto;
		left: -5px;
	}
	.page-favorite .box-page-heading__head .hdg__image {
		height: 16px;
	}
	.page-favorite .box-article__ranking-button a {
		pointer-events: none;
	}
}
/* ------------ .has-check ------------- */
.has-favorite .box-page-heading {
	padding-bottom: 0;
}
.has-favorite .local-navi-top__content {
	color: #fff;
	font-size: 16px;
	padding: 10px 10px 10px 20px;
}
.has-favorite .local-navi-top__content li {
	vertical-align: middle;
	padding: 0 15px;
	position: relative;
}
.has-favorite .local-navi-top__content li:nth-child(2):after {
	content: "";
	display: block;
	background: #bbab7d;
	width: 1px;
	height: 20px;
	position: absolute;
	right: 0;
	top: 0;
}
.has-favorite .local-navi-top__content li:first-child {
	padding-left: 0;
}
.has-favorite .local-navi-top__content .input-radiocheck {
	padding-left: 30px;
}
.has-favorite .local-navi-top__content li .visible-pc {
	display: inline-block !important;
}
.has-favorite .local-navi-top__content li a {
	max-width: 100px;
	color: #666600;
	background: #fdd835;
	text-align: center;
	display: inline-block;
	margin-left: 10px;
	border-radius: 15px;
	padding: 5px 13px;
	font-size: 14px;
}

.has-favorite .local-navi-top__content li a:hover {
	color: #666600;
}
.has-favorite .local-navi-top__content li a.is-disable:hover,
.has-favorite .local-navi-top__content li a.is-disable{
	background: #efefef;
	color: #666600;
	cursor: default;
	opacity: 1;
	pointer-events: none;
}
.has-favorite .local-navi-top__content li.local-navi-top__button{
	position: absolute;
	right: 0;
	top: 50%;
	-ms-transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	padding: 0;
}
.has-favorite .local-navi-top__content .local-navi-top__button a {
	min-width: 100px;
	background: #fff;
}
.has-favorite .lst-rank {
	padding-top: 40px;
}
.has-favorite .box-article {
	padding-top: 55px;
}
.has-favorite .box-article__check {
	background: #ccebf3;
	padding: 12px 20px;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	border-radius: 20px 20px 0 0;
}
@media(max-width: 767px){
	.has-favorite.page-favorite .box-page-heading__head {
		margin-bottom: 5px;
	}
	.has-favorite .local-navi-top {
		top: 25px;
		z-index: 4;
	}
	.has-favorite .local-navi-top .wrp-container {
		min-width: 0;
	}
	.has-favorite .local-navi-top__content {
		padding: 5px;
		font-size: 12px;
		max-width: 320px;
		margin: 0 auto;
		display: block;
	}
	.has-favorite .local-navi-top__content li {
		padding: 0;
	}
	.has-favorite .local-navi-top__content li:nth-child(2):after {
		display: none;
	}
	.has-favorite .local-navi-top__content li .visible-pc {
		display: none !important;
	}
	.has-favorite .local-navi-top__content li a {
		font-size: 12px;
		padding: 6px 7px;
		margin-left: 2px;
	}
	.has-favorite .local-navi-top__content li .input-radiocheck {
		background: #fff;
		color: #666600;
		text-align: center;
		display: inline-block;
		margin-left: 10px;
		border-radius: 15px;
		padding: 6px 7px 5px 24px;
		margin: 0 0 0 3px;
	}
	.has-favorite .local-navi-top__content li .input-radiocheck__check:after {
		transform: scale(1);
		-webkit-transform: scale(1);
		-ms-transform: scale(1);
		color: #666600;
		content: "\f096";
		font-size: 14px;
		width: 12px;
		height: 11px;
		top: 50%;
		left: 10px;
	}
	.has-favorite .local-navi-top__content li .input-radiocheck__check.is-checked:after{
		content: "\f046";
	}
	.has-favorite .local-navi-top__content li .input-radiocheck .input-radiocheck__check {
		background: none;
		border: 0;
		width: 12px;
		height: 11px;
	}
	.has-favorite .local-navi-top__content li.local-navi-top__button {
		position: static;
		top: auto;
		transform: translateY(0);
		-webkit-transform: translateY(0);
		-ms-transform: translateY(0);
	}
	.has-favorite .local-navi-top__content .local-navi-top__button a {
		margin: 0;
		min-width: 75px;
	}
	.has-favorite .lst-rank {
		padding: 35px 0 15px;
	}
	.has-favorite .box-article {
		padding: 10px 10px 10px 40px;
	}
	.has-favorite .box-article__check {
		border-radius: 10px 0 0 10px;
		right: auto;
		bottom: 0;
		padding: 0;
	}
	.has-favorite .box-article__check .input-radiocheck {
		padding: 0 5px 0 10px;
		height: 100%;
		box-sizing: border-box;
	}
	.has-favorite .box-article__check .input-radiocheck .input-radiocheck__check {
		position: relative;
		top: 50%;
		margin-top: -11px;
	}
}

/* ------------ .no-check ------------- */
.page-favorite .hdg-lv2 {
	margin-bottom: 30px;
}
.page-favorite .txt-lead {
	margin-bottom: 35px;
}
.lst-favorite-add {
	margin: 0 -10px;
}
.lst-favorite-add li {
	padding: 0 10px;
}
.box-favorite-add {
	padding: 15px 20px 20px;
	font-size: 16px;
}
.box-favorite-add__title {
	font-size: 20px;
	font-weight: bold;
	border-bottom: 2px dashed #d2caab;
	padding-bottom: 12px;
	margin-bottom: 35px;
}
.box-favorite-add__image {
	text-align: center;
	margin-bottom: 20px;
}
.box-favorite-add__text {
	line-height: 1.5;
}
@media(max-width: 767px){
	.page-favorite .hdg-lv2 {
		padding-top: 15px;
		margin-bottom: 20px;
	}
	.page-favorite .txt-lead {
		margin-bottom: 15px;
	}
	.lst-favorite-add li {
		margin-bottom: 10px;
	}
	.box-favorite-add {
		padding: 7px 10px 10px;
		font-size: 14px;
	}
	.box-favorite-add__title {
		font-size: 16px;
		margin-bottom: 10px;
		padding-bottom: 7px
	}
	.box-favorite-add__image {
		margin-bottom: 10px;
	}
}

/* /keyword/index.html------------------------------------ */
.page-keyword div#ss-main{
	width: auto;
}
.page-keyword div#ss-result{
	border-radius: 20px;
	padding: 20px;
	background-color: #fff;
	box-shadow: 0 1px 2px rgba(0,0,0,.2);
}
.page-keyword .ss-pagination{
	width: 100%;
}
.page-keyword .ss-pagination:after {
	content: "";
	clear: both;
	display: block;
}
.page-keyword .ss-pagination .ss-page-prev{
	float: left;
	width: 100px;
	margin: 0;
}
.page-keyword .ss-pagination .ss-page-next{
	float: right;
	width: 100px;
	margin: 0;
}
.page-keyword .ss-pagination .ss-page-prev span,
.page-keyword .ss-pagination .ss-page-next span{
	font-size: 18px;
	display: block;
	color: #666600;
	text-align: center;
	border-radius: 25px;
	box-shadow: 0 2px 4px rgba(0,0,0,.2), inset 0 -1px rgba(0,0,0,.2);
	background: #fdd835;
	text-decoration: none;
	margin: 0;
	padding: 12px 10px;
	font-weight: bold;
}
.page-keyword .ss-pagination .ss-page{
	display: inline-block;
	vertical-align: middle;
	position: relative;
	height: 50px;
	line-height: 50px;
	margin: 0;
	padding: 0 15px;
	font-size: 16px;
	border: none;
	width: 20px;
	color: #0076bf;
	cursor: pointer;
	background: none;
}
.page-keyword .ss-pagination .ss-page.ss-select-page{
	color: #333;
}
.page-keyword .ss-pagination .ss-page span{
	margin: 0;
}
.page-keyword .ss-pagination .ss-page:after {
	content: "";
	display: block;
	width: 2px;
	height: 15px;
	position: absolute;
	top: 50%;
	right: 1px;
	transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	background: #ccc;
}
.page-keyword .ss-pagination .ss-page:nth-last-of-type(1):after {
	display: none;
}
.page-keyword .ss-page-next .icn{
	padding-right: 0;
	padding-left: 7px;
}
@media(max-width: 767px){
	.page-keyword div#ss-result{
		border-radius: 10px;
		padding: 10px;
	}
	.page-keyword .ss-pagination{
		padding: 0 68px;
		box-sizing: border-box;
	}
	.page-keyword .ss-pagination .ss-page-prev{
		position: absolute;
		top: 0;
		left: 0;
		width: 65px;
	}
	.page-keyword .ss-pagination .ss-page-next{
		position: absolute;
		top: 0;
		right: 0;
		width: 65px;
	}
	.page-keyword .ss-pagination .ss-page-prev span,
	.page-keyword .ss-pagination .ss-page-next span{
		font-size: 12px;
		padding: 6px 7px;
		box-shadow: 0 1px 2px rgba(0,0,0,.2), inset 0 -1px rgba(0,0,0,.2);
	}
	.page-keyword .ss-pagination .ss-page{
		width: auto;
		height: 30px;
		line-height: 30px;
		padding: 0 10px;
		font-size: 10px;
	}
}
.page-keyword #l-document {
	background: #ededdf;
}
.page-keyword .box-page-heading__main:before {
	width: 75px;
	height: 81px;
	background: url("/resource/img/lab_img_kurokokun01.png") center;
	background-size: cover;
	left: 0;
}
.page-keyword .box-page-heading__head .hdg__image {
	height: 28px;
}
.page-keyword .box-page-heading__head {
	margin-bottom: 20px;
}
.page-keyword .lab-search-result {
	color: #fff;
	font-size: 16px;
	padding: 14px 10px;
}
.page-keyword .local-navi-top {
	top: 0;
}
.page-keyword .l-column {
	top: -40px;
}
.page-keyword .box-search-keyword {
	padding: 20px 20px 5px;
	margin-bottom: 20px;
}
.page-keyword .box-search-result {
	padding: 20px;
	position: relative;
	margin-bottom: 80px;
}
.page-keyword .box-search-result .box-pager {
	position: absolute;
	left: 0;
	right: 0;
	bottom: -80px;
}
.page-keyword .box-sidebar {
	height: calc(100% - 80px);
}
.is-ie.page-keyword .box-sidebar {
	height: 100%;
}
.page-keyword .box-page-content {
	margin-bottom: -30px;
}
.page-keyword .box-search-wrap__title {
	display: none;
}
.page-keyword .frm__table__title a {
	color: #333;
	pointer-events: none;
	text-decoration: none;
}
.page-keyword .frm__table__title a .icn {
	display: none;
}
@media(max-width: 900px){
	.page-keyword .box-search {
		padding: 10px;
		border-bottom: 1px solid #ddd;
	}
	.page-keyword .box-search-keyword {
		padding: 0;
		font-size: 14px;
		overflow: hidden;
		border-radius: 10px;
		margin-bottom: 15px;
		border: 1px solid #ddd;
		box-shadow: none;
	}
	.page-keyword .box-search-wrap__title {
		display: block;
	}
	.page-keyword .frm__table {
		margin-bottom: 0;
	}
	.page-keyword .frm__table__title a {
		pointer-events: auto;
	}
	.page-keyword .frm__table__title a .icn {
		display: block;
		color: #009bc1;
	}
	.box-search-wrap__title a {
		padding: 10px;
		display: block;
		color: #333;
		position: relative;
		text-decoration: none;
	}
	.box-search-wrap__title a:hover {
		opacity: 1;
	}
	.box-search-wrap__title.is-active a {
		background: #009bc1;
		color: #fff;
	}
	.box-search-wrap__title .box-accordion__icon {
		color: #009bc1;
	}
	.box-search-wrap__title.is-active .box-accordion__icon {
		color: #fff;
	}
	.box-accordion-table__item {
		border-bottom: 1px solid #ddd;
	}
	.box-accordion-table__item:last-child {
		border: 0;
	}
	.box-accordion-table__title a {
		color: #009bc1;
		pointer-events: auto;
		padding: 10px;
		display: block;
		text-decoration: none;
		position: relative;
	}
	.box-accordion-table__title a:hover {
		opacity: 1;
	}
	.box-accordion-table__title {
		background: #e5f5f9;
		position: relative;
		font-weight: normal;
		font-size: 14px;
		padding: 0;
		border-bottom: 0;
		display: block;
		width: auto;
	}
	.box-accordion-table__content {
		padding: 0;
	}
	.box-accordion-table__content.is-opened {
		display: block;
		position: relative;
	}
	.box-accordion-table__content.is-opened:after {
		content: "";
		display: block;
		background: #fff;
		position: absolute;
		left: 0;
		right: 0;
		bottom: 0;
		height: 1px;
	}
	.box-accordion-table__content .lst-input li {
		padding: 9px 0 9px 9px;
		box-sizing: border-box;
	}
	.box-accordion-table__content .lst-input li:nth-child(odd) label {
		margin-right: 0;
	}
	.box-accordion-table__content .lst-input li:nth-child(even) label {
		margin-left: 0;
	}
}
@media(max-width: 767px){
	.page-keyword .box-page-heading__main:before {
		width: 29px;
		height: 36px;
	}
	.page-keyword .box-page-heading__head {
		margin-bottom: 5px;
	}
	.page-keyword .box-page-heading__head .hdg__image {
		height: 16px;
	}
	.page-keyword .l-column {
		top: -20px;
	}
	.page-keyword .box-search-result {
		margin-bottom: 70px;
		padding: 10px;
	}
	.page-keyword .box-search-result .box-pager {
		bottom: -50px;
	}
	.box-accordion-table__content .lst-input li.lst-input__link {
		position: static;
		font-size: 13px;
		border-bottom: 1px dashed #d2caab;
		width: 50%;
	}
	.box-accordion-table__content .lst-input li.lst-input__link a {
		display: block;
	}
	.box-accordion-table__content .lst-input li.lst-input__link .icn {
		padding-right: 5px;
	}
}

/* /search/index.html------------------------------------ */
.page-search .box-page-heading__main:before {
	width: 50px;
	height: 81px;
	background: url("/resource/img/search_img_kurokokun01.png") center;
	background-size: cover;
	left: 0;
}
@media(max-width: 767px){
	.page-search .box-page-heading__main:before {
		width: 25px;
		height: 41px;
	}
}


#l-feature img{
	width: 240px;
	height: auto;
}
