@charset 'UTF-8';
/* CSS Document */

/* z-index

9999	nav ul li ul.sub

*/

/* -------------------------------------------------------- html &amp; body */

html {
	height: 100%;
}

body
{
	/* min-width: 1200px; */
	/* background: #f0f0f0; */
	height: 100%;
	width: 100%;
	/* overflow-x: hidden; */
	box-sizing: border-box;
}

div.wrapper {
	box-sizing: border-box;
	overflow: hidden;
}

div.inner
{
	min-width: 1000px;
    max-width: 1200px;
    margin: 0 auto;
}

/* ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- header */

header
{
	width: 100%;
	z-index: 9999;
	background: #fff;
}

header > div.inner
{
    overflow: hidden;
    max-height: 100px;
    padding: 0.8em 0 0;
}

header div.logo a
{
    display: block;

    padding: 0;
	margin-bottom: 0.8em;

}

header div.logo a img
{
    display: block;

    width: 400px; /* */
    height: 75px; /* */
	
	transition: all 0.4s ease 0s;
	max-width: 400px; /* */
}

/* --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- header div.search */

header div.search {
    width: 55%;
}

header div.search div.title {
    color: #333;
    padding: 0.3em 0.5em 0 0;
	font-size: 1.4rem;
	width: 25%;
	white-space: nowrap;
}

header div.search input#searchword {
    background: #eee;
    border: 1px solid #eee;
    border-radius: 5px;
    box-sizing: border-box;
    color: #333;
    font-size: 100%;
    height: 30px;
    padding: 0 0.5em;
    width: 45%;
	transition: all 0.4s ease 0s;
}

header div.search input#searchword:focus {
    background: #ffffff;
    border: 1px solid #ddd;
    box-shadow: 0 3px 5px rgba(0, 0, 0, 0.125) inset;
    outline: medium none;
}

header div.search input#searchword:active {
    background: #ffffff none repeat scroll 0 0;
    border: 1px solid #cccccc;
    box-shadow: 0 3px 5px rgba(0, 0, 0, 0.125) inset;
    outline: medium none;
}

header div.search input#btnSearch {
    background: #fbbe42;
    border: medium none;
    border-radius: 5px;
    box-sizing: border-box;
    color: #333;
    font-size: 100%;
    font-weight: bold;
    height: 30px;
	line-height: 30px;
    letter-spacing: 1px;
	width: 25%;
	cursor: pointer;
	vertical-align: top;
}

header div.search input#btnSearch:active {
    background: #f8d664;
    border: medium none;
    border-radius: 5px;
}

/* --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- header div.utility */

header div.utility {
	width: 45%;
}

header div.utility ul {
	float: right;
}

header div.utility ul li {
    display: inline;
}

header div.utility a {
    color: #333;
    font-size: 1.4rem;
    padding: 0 1em 0 0.8em;
    position: relative;
	transition: all 0.1s ease 0s;
}

header div.utility a:hover {
    color: #ff9f00;
}

header div.utility a::before {
    border-right: 1px solid #ff9f00;
    border-top: 1px solid #ff9f00;
    content: "";
    height: 5px;
    left: 0;
    margin: auto;
    position: absolute;
    top: 50%;
    transform: translate(0px, -50%) rotate(45deg);
	-webkit-transform: translate(0px, -50%) rotate(45deg);
    width: 5px;
}

/* ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- nav */

header div.menuButton
{
    display: none;
}

nav
{
    /* background: #ffffff; */
    position: relative;
    height: 100%;
}

nav ul
{
    display: table;
    width: 100%;
    height: 100%;
}

nav ul li
{
    position: relative;
    display: table-cell;
    /* height: 80px; */
    vertical-align: middle;
}

nav > div.inner > ul > li > a::after
{
    position: absolute;
    z-index: 9999;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    content: '';
    transition: all .1s ease-in-out;
    background: #003e6c;
}

nav > div.inner > ul > li > a:hover::after
{
    left: 0;
    width: 100%;
}

nav ul li a
{
    font-size: 1.6rem;
    position: relative;
    display: block;
    box-sizing: border-box;
    width: 100%;
    padding: 0.5em 1em;
    text-align: center;
    color: #333;
    transition: all .1s ease-in-out;
	white-space: nowrap;
}

nav ul li a.current
{
	color: #44aeeb;
}

nav ul li a.current:after
{
	position: absolute;
	content: "";
	bottom: 0;
	width: 25%;
	height: 3px;
	left: 50%;
	background: #44aeeb;
	-webkit-transform: translate(-50%, 0);	
	transform: translate(-50%, 0);
}

nav ul li a:hover
{
	color: #ff9f00;
}

nav ul li a::before
{
    position: absolute;
	top: 50%;
    left: 0;

    width: 1px;
    height: 15px;

    content: '';

    background: #eee;
	-webkit-transform: translate(0, -50%);	
	transform: translate(0, -50%);

}

nav ul li:last-child a::after
{
    position: absolute;
	top: 50%;
    right: 0;

    width: 1px;
    height: 15px;

    content: '';

    background: #eee;
	-webkit-transform: translate(0, -50%);	
	transform: translate(0, -50%);
}

/* ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ common */

img {
	max-width: 100%;
	height: auto;
}

a
{
    outline: none;
}

a[href^="tel:"] {
	cursor: default;
	color: #333 !important;
}

a.arrow {
	position: relative;
	padding: 0 0 0 1em;
	color: #343434;
	vertical-align: middle;
	text-decoration: none;
}

a.arrow::before {
	width: 4px;
	height: 4px;
	position: absolute;
	top: 50%;
	left: 3px;
	content: "";	
	border-top: 1px solid #343434;
	border-right: 1px solid #343434;


	
	-webkit-transform: translate(0, -50%) rotate(45deg);	
	transform: translate(0, -50%) rotate(45deg);	
	
    transition: all .2s ease-in;
}


a:focus,
*:focus
{
    outline: none;
}
.default
{
    display: inline-block;
}
.responsive
{
    display: none;
}

/* 
	centering position: absolute;
	
	-webkit-transform: translate(-50%, 0);
	transform: translate(-50%, 0);
*/

.fs1 { font-size: 0.8rem !important; }
.fs2 { font-size: 1.0rem !important; }
.fs3 { font-size: 1.2rem !important; }
.fs4 { font-size: 1.3rem !important; }
.fs5 { font-size: 1.4rem !important; }
.fs6 { font-size: 1.8rem !important; }
.fs7 { font-size: 2.4rem !important; }
.fs8 { font-size: 3.6rem !important; }
.fs9 { font-size: 4.8rem !important; }

.w5 { width: 5% !important; }
.w10 { width: 10% !important; }
.w15 { width: 15% !important; }
.w16 { width: 16% !important; }
.w20 { width: 20% !important; }
.w22 { width: 22% !important; }
.w24 { width: 24% !important; }
.w25 { width: 25% !important; }
.w28 { width: 28% !important; }
.w29 { width: 29% !important; }
.w30 { width: 30% !important; }
.w32 { width: 32% !important; }
.w38 { width: 38% !important; }
.w40 { width: 40% !important; }
.w45 { width: 45% !important; }
.w49 { width: 49% !important; }
.w50 { width: 50% !important; }
.w51 { width: 51% !important; }
.w55 { width: 55% !important; }
.w60 { width: 60% !important; }
.w65 { width: 65% !important; }
.w68 { width: 68% !important; }
.w70 { width: 70% !important; }
.w72 { width: 72% !important; }
.w75 { width: 75% !important; }
.w76 { width: 76% !important; }
.w78 { width: 78% !important; }
.w80 { width: 80% !important; }
.w84 { width: 84% !important; }
.w85 { width: 85% !important; }
.w90 { width: 90% !important; }
.w95 { width: 95% !important; }
.w100 { width: 100% !important; }

.tc {
	text-align: center !important;
}

.tl {
	text-align: left !important;
}

.tr {
	text-align: right !important;
}

.vt {
	vertical-align: top !important;
}
.vm {
	vertical-align: middle !important;
}

.vb {
	vertical-align: bottom !important;
}

.m_o0 { margin-top: 0 !important; }
.m_o1 { margin-top: 1% !important; }
.m_o2 { margin-top: 2% !important; }
.m_o4 { margin-top: 4% !important; }

.m_l0 { margin-left: 0 !important; }
.m_l1 { margin-left: 1% !important; }
.m_l2 { margin-left: 2% !important; }
.m_l4 { margin-left: 4% !important; }

.m_r0 { margin-right: 0 !important; }
.m_r1 { margin-right: 1% !important; }
.m_r2 { margin-right: 2% !important; }
.m_r4 { margin-right: 4% !important; }

.m_u0 { margin-bottom: 0 !important; }
.m_u5 { margin-bottom: 5px !important; }
.m_u10 { margin-bottom: 10px !important; }
.m_u20 { margin-bottom: 20px !important; }
.m_u30 { margin-bottom: 30px !important; }
.m_u40 { margin-bottom: 40px !important; }
.m_u50 { margin-bottom: 50px !important; }
.m_u60 { margin-bottom: 60px !important; }
.m_u80 { margin-bottom: 80px !important; }
.m_u100 { margin-bottom: 100px !important; }

.p_o0 { padding-top: 0 !important; }
.p_o1 { padding-top: 1% !important; }
.p_o2 { padding-top: 2% !important; }
.p_o4 { padding-top: 4% !important; }

.p_l0 { padding-left: 0 !important; }
.p_l1 { padding-left: 1% !important; }
.p_l2 { padding-left: 2% !important; }
.p_l4 { padding-left: 4% !important; }

.p_r0 { padding-right: 0 !important; }
.p_r1 { padding-right: 1% !important; }
.p_r2 { padding-right: 2% !important; }
.p_r4 { padding-right: 4% !important; }

.p_u0 { padding-bottom: 0 !important; }
.p_u5 { padding-bottom: 5px !important; }
.p_u10 { padding-bottom: 10px !important; }
.p_u20 { padding-bottom: 20px !important; }
.p_u30 { padding-bottom: 30px !important; }
.p_u40 { padding-bottom: 40px !important; }
.p_u50 { padding-bottom: 50px !important; }
.p_u60 { padding-bottom: 60px !important; }
.p_u80 { padding-bottom: 80px !important; }
.p_u100 { padding-bottom: 100px !important; }

.fl {
	float: left;
}

.fr {
	float: right;
}

.center {
	margin-right: auto;
	margin-left: auto;
}


/* 中央揃え */

.outbox {
	position: relative;
}

.outbox .inbox {
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);	
	transform: translate(-50%, -50%);
}

/* @end */

.caption {
	color:;
	font-size:;
}


/* ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- column Layout */

ul.column2, 
ul.column3, 
ul.column4, 
ul.column5, 
ul.column6, 
ul.column7, 
ul.column8, 
ul.column9 {
	margin: 0;
} 

ul.column2 li::before, 
ul.column3 li::before, 
ul.column4 li::before, 
ul.column5 li::before, 
ul.column6 li::before, 
ul.column7 li::before, 
ul.column8 li::before, 
ul.column9 li::before {
    background: none;
    border-radius: 0;
    content: "";
    height: 0;
    left: 0;
    margin: 0;
    position: relative;
    top: 0;
    transition: none;
    width: 0;
}

ul.column2 li, 
ul.column3 li, 
ul.column4 li, 
ul.column5 li, 
ul.column6 li, 
ul.column7 li, 
ul.column8 li, 
ul.column9 li {
    margin: 0;
    padding: 0;
    position: relative;
    float: left;
	margin-bottom: 2.87%;
}

/* .column2 */
ul.column2 li {  width: 48.56%;  margin-right: 2.88%;}
ul.column2 li:nth-child(2n) {  margin-right: 0;}
/* .column3 */
ul.column3 li {  width: 31.42%;  margin-right: 2.87%;}
ul.column3 li:nth-child(3n) {  margin-right: 0;}
/* .column4 */
ul.column4 li {  width: 22.84%;  margin-right: 2.88%;}
ul.column4 li:nth-child(4n) {  margin-right: 0;}
/* .column5 */
ul.column5 li {  width: 17.68%;  margin-right: 2.9%;}
ul.column5 li:nth-child(5n) {  margin-right: 0;}
/* .column6 */
ul.column6 li {  width: 14.25%;  margin-right: 2.9%;}
ul.column6 li:nth-child(6n) {  margin-right: 0;}
/* .column7 */
ul.column7 li{  width: 11.8%;  margin-right: 2.9%;}
ul.column7 li:nth-child(7n) {  margin-right: 0;}
/* .column8 */
ul.column8 li {  width: 9.98%;  margin-right: 2.88%;}
ul.column8 li:nth-child(8n) {  margin-right: 0;}
/* .column9 */
ul.column9 li {  width: 8.56%;  margin-right: 2.87%;}
ul.column9 li:nth-child(9n) {  margin-right: 0;}

/* @end column Layout */

/*
p {
	margin: 1em 0;
}
*/

.wrap {
	overflow: hidden;
}


/* ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- .btn */	
/* .btn .default */

.btn {
	background: #44aeeb;
	display: block;
	padding: 0.5em 1em;
	border-radius: 5px;
	box-sizing: border-box;
	text-decoration: none;
	text-align: center;
	transition: all 0.1s ease-in-out;
	
	cursor: pointer;
	
	
    position: relative;
    z-index: 2;
	
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	-webkit-transition: all .3s;
	transition: all .3s;
	
	border: none;
	/* white-space: nowrap; */
    

}


.btn.inline {
	display: inline-block;
}

/* btn color */
.btn.default {
	background: #eee;	
    color: #111;
}

.btn.red {
    background: #fff;
	border: 2px solid #ff2255;
	color: #ff2255;
}

.btn.purple {
    background: #cf8ae5;
	color: #fff;
}

.btn.blue {
    background: #4b8efa;
	color: #fff;
}

.btn.green {
    background: #6dcc54;
	color: #fff;
}

.btn.yellow {	
    background: #fbc800;
	color: #333;
	box-shadow: 0 4px 0 0 rgba(221,175,0,1);
}

.btn.orange {	
    background: #f39800;
	color: #333;
	box-shadow: 0 4px 0 0 rgba(213,133,0,1);
}

.btn.gray {
    background: #f1f1f1;
	color: #333;
	box-shadow: 0 4px 0 0 rgba(217,217,217,1);
}

.btn:hover {
	opacity: 0.9;
}

.btn:hover:active {
	box-shadow: 0 0 0 0;
	top: 4px;
}






p {
	margin: 1em 0;
	/* line-height: 2; */
}

h3 {
	font-size: 2.5rem;
	line-height: 1.5;
    font-weight: bold;
	padding: 0.5em 0; 
    margin: 2em 0 0.5em;
	display: block;
	position: relative;
}

/* h3:before {
	content: "";
	width: 5px;
	height: 1em;
	background: #ff2255;
	position: absolute;
		
	top: 50%;
	left: 0;
	-webkit-transform: translate(0, -50%);	
	transform: translate(0, -50%);
} */

h3:first-child {
    margin: 1em 0 1em;
}

h4 {
	font-size: 2.1rem;
	font-weight: bold;
	margin: 2em 0 1em;
	border-bottom: 3px solid #f0f0f0;
}

h3 + h4 {
    margin: 1em 0 1em;
}

h5 {
	font-size: 1.8rem;
	margin: 1em 0 0.5em;
	display: inline-block;
	/* border-bottom: 3px solid #fe5700; */
}

h4 + h5 {
	margin: 0;
}

/* ------------------------------------------------------------------------------------------------------------------------------------ ul */

ul.deco-list {
	margin: 10px 0 20px;
	padding: 0;
}

ul.deco-list li {
	margin: 0;
	padding: 0 0 0 15px;
	position: relative;
}

ul.deco-list li::before {
    background: #ccc none repeat scroll 0 0;
    border-radius: 50%;
    content: "";
    height: 8px;
    left: 0;
    margin-right: 0.5em;
    position: absolute;
    top: 10px;
    transition: all 0.3s ease-out 0s;
    width: 8px;
}

ul.deco-list li.list-unstyled {
	list-style: none;
	background: none;
	padding: 0;
}

ul.deco-list li ul li {
	list-style: none;
	background: none;
	margin: 0;
	padding: 0 0 0 15px;
}


ul.deco-list.inline {
	margin: 0;
}

ul.deco-list.inline li {
	display: block;
	white-space: nowrap;
	float: left;
	padding-right: 0.5em;
}

/* ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ ol.deco-list */

ol.deco-list {
	/* margin: 10px 0 20px 20px;
	padding: 0; */
	counter-reset: number;
	list-style: none;
	margin:0;
	padding:0;	
}

ol.deco-list li {
	margin: 0;
	padding: 0 0 1em;
	/* padding: 0; */	
}

ol.deco-list>li>ol>li {
	padding: 0 0 0 2em;
	text-indent: -1em;
}

ol.deco-list li:before{
	counter-increment: number;
	content: counter(number);
	
	background: #ccc;
	display: inline-block;
	width: 1em;
	height: 1em;
	text-align: center;
	/* border-radius: 50%; */
	color: #fff;
	margin-right: .3em;
	line-height: 1em;
	padding: 0.1em;	
}

ol.deco-list>li>ol>li:before {
	counter-increment: number;
	content: counter(number)".";	
	margin-right: 0em;
	background: none;
	color: #ba9975;
	font-weight: bold;
}

/* ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ table.deco-tb */

table.deco-tb {
    text-align: left;
    vertical-align: middle;
	border-collapse: collapse;
	border: 1px solid #f0f0f0;
	/* border-top: 3px solid #ccc; */
	border-left: none;
	border-right: none;
	
	background: #fff;
}

table.deco-tb th {
    border: 1px solid #44aeeb;
	border-left: none;
	border-right: none;
    padding: 0.8em 0.5em;
    text-align: left;
    /* vertical-align: middle; */
	/* background: #eee; */
	/* color: #ffffff; */
	
}

table.deco-tb td {
    border: 1px solid #f0f0f0;
	border-left: none;
	border-right: none;
    padding: 0.8em 0.5em;
    /* vertical-align: top; */
}

/* */

table.deco-tb.plain {
	border: none;
	background: none;
}

table.deco-tb.plain th {
    border: none;
    padding: 0.4em 0.2em;
	text-align: left;
}

table.deco-tb.plain td {
    border: none;
    padding: 0.4em 0.2em;
	text-align: left;
}




table.deco-tb.supplier {border: 1px solid #ddd;
	border-left: none;
	border-right: none;}
table.deco-tb.supplier th {border: 1px solid #ddd;
	border-left: none;
	border-right: none;}
table.deco-tb.supplier td {border: 1px solid #ddd;
	border-left: none;
	border-right: none;}

/* ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ .deco-box */

.deco-box {
	background: #f1f1ed;
	padding: 1em 2em;
	border: 1px solid #f1f1ed;
}

/* ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ form.form */


.form {
}

.form .line {
	display: inline;
	margin: 0;
}

.form th {
	/* min-width: 200px; */
}

.form td.sub {
	/* background: #eee; */
	/* width: 110px; */
	vertical-align: middle;
}

.alert {
	color: #ff100a;
}

label,
.postalcode {
	white-space: nowrap;
}

.form input[type="text"],
.form textarea {
	border-radius: 5px;
	border: none;
	border: 1px solid #ccc;
	background: #f9f9f9;
	transition: all 0.2s ease-in-out;
	padding: 0.5em;
	box-sizing: border-box;
}

input[type="text"]:focus,
textarea:focus {
	background: #ffffff;
	outline: none;
	border: none;
	border: 1px solid #ccc;
	box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset, 0 0 8px rgba(102, 175, 233, 0.6);
}

.form input[type="text"].err,
.form textarea.err
{
    border: 1px solid #a94442;
    background: #ffeeef;
}

input[type="text"]:focus,
textarea:focus
{
    border: none;
    border: 1px solid #eee;
    outline: none;
    background: #fff;
    box-shadow: 0 1px 1px rgba(0, 0, 0, .075) inset, 0 0 8px rgba(102, 175, 233, .6);
}

input[type="text"].err:focus,
textarea.err:focus
{
    border: none;
    border: 1px solid #eee;
    outline: none;
    background: #fff;
    box-shadow: 0 1px 1px rgba(0, 0, 0, .075) inset, 0 0 8px rgba(169, 68, 66, .075);
}

input[type="text"]:active,
textarea:active {
	background: #ffffff;		
	outline: none;
	border: none;
	border: 1px solid #ccc;
	box-shadow: 0 3px 5px rgba(0, 0, 0, 0.125) inset;
}

input[type="text"]::-moz-focus-inner,
textarea::-moz-focus-inner
{
    padding: 0;
    border: 0;
}

/* placeholder color */

::-webkit-input-placeholder {
	color: #ccc;
	opacity: 1;
}
:-moz-placeholder {
	color: #ccc;
}
::-moz-placeholder {
	color: #ccc;
	opacity: 1;
}
:-ms-input-placeholder {
	color: #ccc;
}
:placeholder-shown {
	color: #ccc
}

/* ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ select */

.form select {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	height: 38px;
	border-radius: 5px;
	border: 1px solid #ccc;
	padding: 0 0.5em;
	cursor: pointer;
	background: #fff;
}

.form select.err
{
    border: 1px solid #a94442;
    background: #ffeeef;
}


.form select::-ms-expand {
	display: none;
}

.form select:focus {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset, 0 0 8px rgba(102, 175, 233, 0.6);
}

.form select.err:focus
{
    box-shadow: 0 1px 1px rgba(0, 0, 0, .075) inset, 0 0 8px rgba(169, 68, 66, .2);

    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
}

.form div.selectWrap {
	position: relative;
	/* width: 50%; */
	height: 38px;
	display: inline-block;
}

.form div.selectWrap::after {
	position: absolute;
	top: 55%;
	right: 10px;
	display: block;
	content: '';
	width: 0;
	height: 0;
	margin-top: -4px;
	border: 4px solid transparent;
	border-top: 4px solid #888;
}

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

.form label:hover {
	color: #2b91fc;
}

/* ----------------------------------------------------------------------------------------------- radio checkbox */

.form input[type=radio],
.form input[type=checkbox] {
	/* display: none; */
	-webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.form .radio,
.form .checkbox {
	box-sizing: border-box;
	-webkit-transition: background-color 0.2s linear;
	transition: background-color 0.2s linear;
	position: relative;
	display: inline-block;
	padding: 6px 12px 6px 42px;
	border-radius: 4px;
	/* background-color: #f6f7f8; */
	vertical-align: middle;
	cursor: pointer;
	content: "1";
}

.form .radio.err,
.form .checkbox.err {
	/* background-color: #ffeeef; */
}

.form .radio:hover,
.form .checkbox:hover {
  /* background-color: #d7e5ed; */
}

.form .radio:hover:after,
.form .checkbox:hover:after {
  border-color: #0073aa;
}

.form .radio:after {
  -webkit-transition: border-color 0.2s linear;
  transition: border-color 0.2s linear;
  position: absolute;
  top: 50%;
  left: 15px;
  display: block;
  margin-top: -10px;
  width: 16px;
  height: 16px;
  border: 2px solid #ccc;
  border-radius: 50%;
  content: '';
}

.form .checkbox:after {
  -webkit-transition: border-color 0.2s linear;
  transition: border-color 0.2s linear;
  position: absolute;
  top: 50%;
  left: 15px;
  display: block;
  margin-top: -10px;
  width: 16px;
  height: 16px;
  border: 2px solid #ccc;
  border-radius: 4px;
  content: '';
}

.form .radio:before {
  /* -webkit-transition: opacity 0.2s linear; */
  /* transition: opacity 0.2s linear; */
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
  position: absolute;
  top: 65%;
  left: 25px;
  display: block;
  margin-top: -5px;
  width: 0;
  height: 0;
  border-radius: 50%;
  background-color: #0073aa;
  content: '';
  opacity: 1;
}

.form input[type=radio]:checked + .radio:before {
  opacity: 1;
  top: 50%;
  left: 20px;  
  width: 10px;
  height: 10px;
}

.form .checkbox:before {
  -webkit-transition: opacity 0.2s linear;
  transition: opacity 0.2s linear;
  position: absolute;
  top: 50%;
  left: 21px;
  display: block;
  margin-top: -7px;
  width: 5px;
  height: 9px;
  border-right: 3px solid #0073aa;
  border-bottom: 3px solid #0073aa;
  content: '';
  opacity: 0;
  -webkit-transform: rotate(45deg);  
  transform: rotate(45deg);
}

.form input[type=checkbox]:checked + .checkbox:before {
  opacity: 1;
}

/* ---------------------------------------------------------------------------------------------------------------------------------- print */
@media print {
	div.tabContents div.content {
		display: block;
	}
}





/* ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ section common */



section
{	
	position: relative;
	padding-bottom: 80px;
}

section div.titleWrap
{	
	margin-bottom: 20px;
}


section div.titleWrap div.icon 
{	
	width: 150px;
	height: 110px; /* 150px - 40px */
	margin: 0 auto;
	position: relative;
	z-index: 100;
}

section div.titleWrap div.icon img 
{	
	width: 150px;
	height: 150px;
	display: block;
	position: absolute;
	top: -40px;
	z-index: 1;
}


section div.titleWrap div.title h2 {
	font-size: 4.2rem;
	font-weight: normal;
	text-align: center;
	color: #303131;
}


section div.titleWrap + div.description {
	text-align: center;
	margin-bottom: 40px;
		
}





















/* ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ section.mainVisual */

section.mainVisual {
	height: 100%;
	padding-bottom: 0;
	height: 450px;
	padding: 0;
	position: relative;
	
}

section.mainVisual div.inner {
	overflow: hidden;
	width: 100%;
	max-width: 100%;
	height: 450px;
	
	position: absolute;
	z-index: 1;
	padding: 40px;
	box-sizing: border-box;
	top: 0;
	left: 0;
}

section.mainVisual div.copies {
	border: 3px solid #fff;
	display: block;
	box-sizing: border-box;
	
	z-index: 1;
	width: 100%;
	height: 100%;
	position: relative;
}

section.mainVisual div.copies div.catch {
	width: 300px;
	height: 300px;
	left: 50%;
	top: 50%;
	position: absolute;
	left: 50%;
	right: 50%;
	transform: translate( -50%, -50%);
	-webkit-transform: translate( -50%, -50%);
	
}

section.mainVisual div.flexslider {
	z-index: 0;
	height: 450px;
}

section.mainVisual div.flexslider ul.slides {
	height: 450px;
}

section.mainVisual div.flexslider li {
	height: 450px;
}

section.mainVisual div.flexslider li:nth-child(1) {
	background: url(../img/mainvisual_02.jpg) no-repeat;
	background-size: cover;
	background-position: center center;
}

section.mainVisual div.flexslider li:nth-child(2) {
	background: url(../img/mainvisual_01.jpg) no-repeat;
	background-size: cover;
	background-position: center center;
}

section.mainVisual div.link {
	position: absolute;
	bottom: -100px;
	right: 0;
	background: #fcc800;
	width: 200px;
	height: 200px;
	z-index: 1000;
	border-radius: 200px;
}

section.mainVisual div.link div {
	top: 50%;
	left: 50%;
	transform: translate( -50%, -50%);
	-webkit-transform: translate( -50%, -50%);
	position: absolute;
	width: 100%;
	text-align: center;
}

section.mainVisual div.link div a {
	color: #182d40;
	font-weight: bold;
	font-size: 2.4rem;
	line-height: 1.2;
	display: block;
}

section.mainVisual div.link div a img {
	width: 50px;
	height: 70px;
	display: block;
	margin: 0 auto;
	margin-bottom: 0.5em;
}


/* ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ section.about */

section.about {
	background: #faf9f4;
	border-bottom: 1px solid #ccc;
}

section.about .btn {
	font-size: 3.0rem;
	padding: 0.1em 1em;
}


/* ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ section.goods */

section.goods {

}

/* ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ div.spa 詳細ページと共有*/

div.spa {
	background: #faf9f4;
	border: 1px solid #ccc;
	padding: 2em 3em;
	box-sizing: border-box;
	
	margin-bottom: 80px;
	border-radius: 5px;
}

div.spa div.titleWrap img {
	width: 60px;
	height: 70px;
	vertical-align: top;
}


div.spa div.copy {
	font-size: 3.6rem;
	font-weight: bold;
}

div.spa div.sub {
	font-size: 2.0rem;
	background: #fbbe42;
	display: inline-block;
	padding: 0.1em 0.5em;
}

div.spa div.spot {
	border-radius: 5px;
	overflow: hidden;
}

div.spa div.spot img {
	display: block;
}

/* ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ div.list 一覧ページと共有 */

div.list {
	margin-bottom: 40px;
}

div.list div.priceTitle {
	font-size: 3.0rem;
	text-align: center;
	margin-bottom: 40px;
}

div.list div.priceTitle {
    position: relative;
    text-align: center;
    z-index: 1;
}

div.list div.priceTitle>div {
    background: #fff;
    padding: 0 1em;
	/* width: 100%; */
	box-sizing: border-box;
	white-space: nowrap;
	display: inline;
	position: relative;
	z-index: 1;
}

div.list div.priceTitle::after {
    background: #fbc800;
    content: "";
    display: block;
    height: 2px;
    left: 50%;
    position: absolute;
    top: 50%;
    transform: translate(-50%, 0px);
	-webkit-transform: translate(-50%, 0px);
    width: 100%;
    z-index: 0;
}

div.list div.priceTitle img {
	width: 60px;
	height: 70px;
	vertical-align: top;
	margin-right: 1%
}

div.list div.priceTitle span {
	font-size: 4.8rem;
	font-weight: bold;
}


div.list ul li {
    margin: 0;
    padding: 0;
    position: relative;
    float: left;
	margin-bottom: 2.9%;
	box-sizing: border-box;
	border: 1px solid #ccc;
	border-radius: 5px;
}

div.list ul li {  width: 17.68%;  margin-right: 2.9%; background: #faf9f4; }
div.list ul li:nth-child(5n) {  margin-right: 0;}

div.list ul li div.categoryLabel {
	position: absolute;
	top: -20px;
	left: -20px;
	width: 50px;
	height: 50px;
	background: #fff;
	display: block;
	z-index: 1000;
	border-radius: 100px;
	border: 2px solid #fff;
}

div.list ul li div.categoryLabel span {
	left: 50%;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
    width: 100%;
    z-index: 0;
	display: block;
	font-size: 1.1rem;
	line-height: 1.1;
	color: #fff;
	text-align: center;
}

div.list ul li div.categoryLabel.inn { background: #e7621d; }
div.list ul li div.categoryLabel.beauty { background: #d75171; }
/* div.list ul li div.categoryLabel.dairy { background: #e08e40; } */
div.list ul li div.categoryLabel.experience { background: #6a2c47; }
div.list ul li div.categoryLabel.car { background: #2e477a; }
div.list ul li div.categoryLabel.agri { background: #1a7a39; }
div.list ul li div.categoryLabel.gourmet { background: #55a43d; }
div.list ul li div.categoryLabel.service { background: #694a33; }


div.list ul li a {
	overflow: hidden;
	border-radius: 5px;
	display: block;
}

div.list ul li img {
	display: block;
	opacity: 1;
    transition: all 0.1s ease-in-out 0s;
}

div.list ul li a:hover img {
	opacity: 0.8;
}

div.list ul li div.thumbnail {
    display: table;
    height: 210px;
    overflow: hidden;
    position: relative;
    width: 100%;
	/* background: #ededed; */
}

div.list ul li div.thumbnail span {
    display: table-cell;
    height: 210px;
    text-align: center;
    vertical-align: middle;
    width: 100%;
	background: #fff;
}

div.list ul li div.thumbnail span img {
    display: inline;
    height: auto;
    max-height: 100%;
    max-width: 100%;
    position: relative;
    transition: all 0.1s ease-in-out 0s;
    vertical-align: middle;
    width: auto;
    z-index: 50;
}

div.list ul li a div.description {
	background: #faf9f4;
	padding: 0.5em;
	color: #333;
	border-top: 1px solid #ccc;
}

div.list ul li a div.description div.name {
	font-weight: bold;
	line-height: 1.5;
	margin-bottom: 0.2em;
	font-size: 1.4rem;
}

div.list ul li a div.description div.number {
	font-weight: bold;
	line-height: 1.5;
	font-size: 1.2rem;
	float: left;
	background: #fff;
	border-radius: 100px;
	padding: 0 1em;
	border: 1px solid #ccc;
	margin-right: 2%;
}


div.list ul li a div.description div.price {
	font-size: 1.4rem;
	float: left;
}







/* div.list @end */

section.goods .btn {
	font-size: 3.0rem;
	padding: 0.1em 1em;
}


/* ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ section.offers */

section.offers {
	background: #fafafa;
	border-top: 1px solid #ccc;
	border-bottom: 1px solid #ccc;
}

section.offers .btn {
	font-size: 2.1rem;
	padding: 0.5em;
	line-height: 1.2;
}

section.offers .btn img {
	width: 100px;
}

/* ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ section.news */

section.news ul {
}

section.news ul li a div.update {
	float: left;
	color: #333;
	margin-right: 2em;
	background: #fbbe42;
	padding: 0 1em; 
}

section.news ul li a div.headline {
	overflow: hidden;
}

section.news ul li a:hover {
	color: #ff9f00;
}

section.news ul li a {
	display: block;
	padding: 0.5em 0;
	color: #484949;
}

section.news .btn {
	font-size: 3.0rem;
	padding: 0.1em 1em;
}


/* ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ div.pageTop */

div.pageTop
{
    position: fixed;
    z-index: 500;
    right: 10px;
    bottom: 10px;

    display: block;

    width: 70px;
    height: 70px;
}

div.pageTop a {
    
    font-weight: bold;

    position: relative;

    display: block;

    width: 70px;
    height: 70px;
	border-radius: 100px;

    text-align: center;
    text-align: center;

    color: #fff;
    background: #182d40;
}

div.pageTop a::before
{
    position: absolute;
    top: 30px;
    left: 30px;

    display: block;

    width: 10px;
    height: 10px;

    content: '';
    transition: all .2s ease-in-out 0s;
    -webkit-transform: rotate(-45deg);
       -moz-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
         -o-transform: rotate(-45deg);
            transform: rotate(-45deg);

    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    background-size: 45px 45px;
}

div.pageTop a:hover
{
    opacity: .8;
}

/* ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ footer */

footer {
	border-top: 1px solid #ccc;
	padding: 40px 0 0;
}

footer div.clearfix {
	padding: 0 0 40px;
}

footer div.clearfix>div {
	width: 32%;
	margin-right: 2%;
	float: left;
}

footer div.logo
{
}

footer div.logo a
{
    /* display: block; */

    padding: 0;

    color: #003e6c;
}

footer div.logo a img
{
    display: block;

    width: 370px; /* */
    height: 70px; /* */
	
	transition: all 0.4s ease 0s;
	max-width: 350px; /* */	
}

footer div.information {
	line-height: 1.5;

}

footer div.clearfix>div.link {
	margin-right: 0;
}

footer div.link a {	
	color: #333;
    font-size: 1.6rem;
    padding: 0 1em 0 0.8em;
    position: relative;
	transition: all 0.1s ease 0s;
	display: block;
}

footer div.link a:hover {
    color: #ff9f00;
}

footer div.link a::before {
    border-right: 1px solid #ff9f00;
    border-top: 1px solid #ff9f00;
    content: "";
    height: 5px;
    left: 0;
    margin: auto;
    position: absolute;
    top: 50%;
    transform: translate(0px, -50%) rotate(45deg);
	-webkit-transform: translate(0px, -50%) rotate(45deg);
    width: 5px;
}

footer div.copyright {
	color: #333;
	background: #fcc800;
	text-align: center;
	
	padding: 0.5em 0;
}

footer div.attention {
	font-size: 1.2rem;
}

footer a
{
	color: #333;
}

/* detail */

div.detail
{
    box-sizing: border-box;
    width: 100%;
    margin: 0 auto;

    /* background: #fff; */
	border-radius: 5px;
}

/* -------------------------------------------------------- contents */

div.contents
{
    margin-bottom: 60px;
}

div.main
{
    float: none;
	margin-right: auto;
	margin-left: auto;

    width: 73%;
    margin-bottom: 40px;
}

aside
{
    position: relative;

    float: right;

    width: 22%;
	display: none;
}

/* -------------------------------------------------------- topicPath */

.topicPath
{
    font-size: 1.3rem;

    display: block;

    margin: 0 auto;
    margin-bottom: 40px;
	
	background: #faf9f4;
    border-top: 1px solid #ccc;
    border-bottom: 1px solid #ccc;

}

.topicPath ul
{
    padding: 0.5em 0;

    list-style: none;
}

.topicPath ul li
{
    display: inline;
}

.topicPath ul li a
{
    font-weight: bold;

    text-decoration: underline;

    color: #fbc800;
}

.topicPath ul li a:hover
{
    text-decoration: none;
}

/* -------------------------------------------------------- categoryheader */

div.categoryheader div.inner
{
    width: 100%;
	max-width: 100%;
	min-width: 100%;
	background: #fff;
	position: relative;
	
    padding: 2em 0em;
	border-top: 2px solid #303131;
	border-bottom: 2px solid #303131;
	
	box-sizing: border-box;
	text-align: center;
	margin-bottom: 2em;
}

div.categoryheader h1,
div.categoryheader span
{   
	color: #303131;
    font-size: 4.2rem;
	font-weight: normal;

    position: relative;
    z-index: 1;

    display: block;

}

div.categoryheader div.description
{
    width: 100%;
	position: relative;
	box-sizing: border-box;
	color: #303131;
}

div.categoryheader + div.banner {
	width: 30%;
	margin-left: auto;
	margin-right: auto;
	border: 1px solid #ccc;
	border-radius: 5px;
	overflow: hidden;
	margin-bottom: 30px;
}


/* -------------------------------------------------------- div.categoryList */

div.categoryList div.list {

}

div.categoryList div.list ul li {  width: 31.42%; margin-right: 2.87%; background: #faf9f4; }
div.categoryList div.list ul li:nth-child(5n) {  margin-right: 2.87%; }
div.categoryList div.list ul li:nth-child(3n) {  margin-right: 0;}

div.categoryList div.list ul li div.thumbnail {
	height: 273px;
}

div.categoryList div.list ul li div.thumbnail span {
	height: 273px;
	background: #fff;
}

/* pagination */

ul.pagination {
	clear: both;
	text-align: center;
	margin: 0;
	padding: 0;
	padding: 1em 0;	
	margin-bottom: 1em;
}

ul.pagination li {
	margin: 0;
	padding: 0;
		
	display: inline;
}

ul.pagination li::before {
	background: none;
	content: "";
	height: auto;
	left: 0;
	margin: 0;
	position: relative;
	top: 0;
	transition: none;
	width: auto;
}

ul.pagination li a,
ul.pagination li span {
	display: inline-block;
	padding: 0.3em 0.8em;
	margin: 0 0.1em 0.5em;
	border: 1px solid #ccc;
	/* background: #f0f0f0; */
	font-weight: bold;
	text-decoration: none;
	color: #333;
	
}

ul.pagination li a:hover,
ul.pagination li span {
	background: #fbc800;
}


/* -------------------------------------------------------- updateList */

div.updateList
{
    position: relative;
    z-index: 1;

    box-sizing: border-box;
    padding-top: 20px;
	margin-bottom: 40px;
}


div.updateList ul li
{

    transition: all .1s ease-in-out 0s;

    background: #fff;
	border-bottom: 1px solid #f0f0f0;
}

div.updateList ul li a
{
    position: relative;

    display: block;

    color: #333;
}


div.updateList ul li a::after
{
    position: absolute;
    top: 50%;
    right: 1em;

    width: 10px;
    height: 10px;
    margin: auto;

     content: '';
    transition: all .2s ease-in-out 0s;
    -webkit-transform: translate(0,-50%) rotate(45deg);
            transform: translate(0,-50%) rotate(45deg);

    border-top: 1px solid #ccc;
    border-right: 1px solid #ccc;
}

div.updateList ul li a:hover::after
{
    border-top: 1px solid #fcc800;
    border-right: 1px solid #fcc800;
}

div.updateList div.article
{
    box-sizing: border-box;
	padding: 1em 0;
}

div.updateList div.article div.wrap
{

    box-sizing: border-box;
}


div.updateList div.article div.new
{
	position: absolute;
	top: 0;
	left: -15px;
	background: #eb6463;
	border: 1px solid #eb6463; 
	font-size: 1.2rem;
	color: #333;
	width: 30px;
	height: 30px;
	border-radius: 1000px;
}

div.updateList div.article div.new span
{
	position: absolute;
	top: 50%;
	left: 50%;
	font-size: 1.0rem;
	color: #fff;
	font-weight: bold;
	transform: translate( -50%, -50%);
	-webkit-transform:( -50%, -50%);

}

/* div.updateList div.article div.new:before{
	content: "";
	position: absolute;
	top: 100%;
	left: 50%;
 	margin-left: -8px;
	border: 8px solid transparent;
	border-top: 8px solid #eb6463;
} */


div.updateList div.article div.headline {
	/* padding: 0 1em 0 0; */
	position: relative;
	overflow: hidden;
}

div.updateList a div.article div.headline h2
{
    font-size: 1.6rem;
    font-weight: normal;

    position: relative;

    /* margin-bottom: 10px;
    padding-bottom: .2em; */

    transition: all .1s ease-in-out;

    color: #333;
    /* border-bottom: 1px dotted #eee; */
}

div.updateList a:hover div.article div.headline h2
{
    color: #fbbe42;
}


div.updateList div.article div.description
{
    font-size: 1.4rem;

    margin-bottom: 0.2em;

    color: #6c6b6c;
}

div.updateList div.article div.update
{
	float: left;
	margin-right: 1em;
	background: #fbbe42;
	padding: 0 1em;
}

div.updateList div.article div.update span
{
   
	
	/* background: #f0f0f0; */
    /* border-bottom: 1px solid #d2be93; */
    display: inline;
    font-size: 1.4rem;
	color: #333;
}

/* -------------------------------------------------------- searchList */

div.searchList
{
    position: relative;
    z-index: 1;

    box-sizing: border-box;
    padding-top: 20px;
	margin-bottom: 40px;
}

div.searchList ul li
{

    transition: all .1s ease-in-out 0s;

    background: #fff;
	border-bottom: 1px solid #f0f0f0;
}

div.searchList ul li a
{
    position: relative;

    display: block;

    color: #333;
}

div.searchList ul li a::after
{
    position: absolute;
    top: 50%;
    right: 1em;

    width: 10px;
    height: 10px;
    margin: auto;

     content: '';
    transition: all .2s ease-in-out 0s;
    -webkit-transform: translate(0,-50%) rotate(45deg);
            transform: translate(0,-50%) rotate(45deg);

    border-top: 1px solid #ccc;
    border-right: 1px solid #ccc;
}

div.searchList ul li a:hover::after
{
    border-top: 1px solid #fcc800;
    border-right: 1px solid #fcc800;
}

div.searchList div.article
{
    box-sizing: border-box;
	padding: 1em 0;
}

div.searchList div.article div.wrap
{

    box-sizing: border-box;
}

div.searchList div.article div.headline {
	/* padding: 0 1em 0 0; */
	position: relative;
	overflow: hidden;
}

div.searchList a div.article div.headline h2
{
    font-size: 1.6rem;
    font-weight: normal;

    position: relative;

    /* margin-bottom: 10px;
    padding-bottom: .2em; */

    transition: all .1s ease-in-out;

    color: #333;
    /* border-bottom: 1px dotted #eee; */
}

div.searchList a:hover div.article div.headline h2
{
    color: #fbbe42;
}

/* -------------------------------------------------------- categorySeminar */




/* -------------------------------------------------------- aside */



aside div.title
{
    font-size: 2.0rem;

    position: relative;
    z-index: 1;

    display: block;

    padding: 20px;

    color: #333;
    background: #fbc800;
	border-bottom: 1px solid #fff;
	border-radius: 5px 5px 0 0;
}

aside div.title a
{
    color: #333;
}

aside ul
{
    margin-bottom: 20px;
}

aside ul li
{
    display: block;

    width: 100%;
}

aside ul li a
{
    font-size: 1.4rem;

    position: relative;

    display: block;

    padding: 1em 1em 1em 2em;

    transition: all .1s ease-in-out;

    color: #333;
    border-top: none;
    background: #fff;
	
	border-bottom: 1px solid #f0f0f0;
}

aside ul li:last-child a
{
	border-bottom: none;
}

aside ul li a:hover
{
    /* background: #faf9f4; */
	color: #ff9f00 !important;
}

aside ul li a::after
{
    position: absolute;
    top: 50%;
    right: 1em;

    display: block;

    width: 10px;
    height: 10px;

    content: '';
    transition: all .2s ease-in-out 0s;
    -webkit-transform: translate(0,-50%) rotate(45deg);
            transform: translate(0,-50%) rotate(45deg);

    border-top: 1px solid #ccc;
    border-right: 1px solid #ccc;
}

aside ul li a:hover::after
{
    border-top: 1px solid  #ff9f00;
    border-right: 1px solid  #ff9f00;
}

aside ul li a.contact
{
 	color: #564a3f;
    background: #f7f4ef;
	
	border: 2px solid #d2be93;
	border-radius: 5px;
}
