@charset "utf-8";

/*====================================================================

common.css

======================================================================

	01.format
	02.body
	03.header
	04.navigation
	05.main
	06.footer
	07.common elements
	08.template（box）
	09.template（news）
	10.template（table）

=====================================================================*/


/*--------------------------------------------------------------------/
	01.format
/--------------------------------------------------------------------*/

/* html5reset-1.6.1.css */
html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	font-size: 100%;
	vertical-align: baseline;
	background: transparent;
	border-collapse: collapse;
	/* added */
	-webkit-text-size-adjust: none;
	/* added */
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
	display: block;
}

nav ul {
	list-style: none;
}

ul li {
	list-style: none;
}

/* added */

blockquote,
q {
	quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
	content: '';
	content: none;
}

a {
	margin: 0;
	padding: 0;
	font-size: 100%;
	vertical-align: baseline;
	background: transparent;
}

/* change colours to suit your needs */
ins {
	background-color: #ff9;
	color: #000;
	text-decoration: none;
}

/* change colours to suit your needs */
mark {
	background-color: #ff9;
	color: #000;
	font-style: italic;
	font-weight: bold;
}

del {
	text-decoration: line-through;
}

abbr[title],
dfn[title] {
	border-bottom: 1px dotted;
	cursor: help;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

/* change border colour to suit your needs */
hr {
	display: block;
	height: 1px;
	border: 0;
	border-top: 1px solid #cccccc;
	margin: 1em 0;
	padding: 0;
}

input,
select {
	vertical-align: middle;
}


[hidden],
command,
datalist,
menu[type=context],
rp,
source {
	display: none;
}

img {
	display: block;
}

/*a
----------------------------------------------------------------*/
a:link,
a:visited,
a:hover,
a:active {
	color: #0eab1d;
	outline: none;
}

a:link {
	text-decoration: underline;
}

a:visited {
	text-decoration: underline;
}

a:hover {
	text-decoration: none;
}

a:active {
	text-decoration: none;
}



/*--------------------------------------------------------------------/
	02.body
/--------------------------------------------------------------------*/
body {
	background: #f0efef url(img/common_body.gif) repeat-x;
	text-align: center;
	font: normal normal normal 12px/1.6 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', 'メイリオ', Meiryo, 'ＭＳ Ｐゴシック', sans-serif;
	color: #303030;
}

div#wrapper {
	margin: 0 auto;
	width: 902px;
	background: #ffffff url(img/common_wrapper.gif) repeat-y;
	text-align: left;
}

header,
nav,
section#main {
	margin-left: 1px;
	width: 900px;
}


/*--------------------------------------------------------------------/
	03.header
/--------------------------------------------------------------------*/
header {
	height: 80px;
	background: url(img/common_header.gif) no-repeat;
	position: relative;
}

header::after {
	content: "";
	position: absolute;
	top: 1px;
	right: 0;
	width: 330px;
	height: 79px;
	background-color: #eefaee;
	background: linear-gradient(to bottom, #f4faf4 0%, #eefaee 50%, #f9fff9 100%);
}

header h1 {
	margin: 0 15px 0 250px;
	padding-top: 14px;
	text-align: right;
	line-height: 1;
	position: relative;
	z-index: 1;
	font-size: 10px;
	font-weight: normal;
	color: #000000;
}

header div {
	margin-top: -13px;
	width: 300px;
	height: 55px;
}

header div a {
	display: block;
	margin-left: 10px;
	width: 300px;
	height: 55px;
	overflow: hidden;
	text-indent: -9999px;
}

/*--------------------------------------------------------------------/
	04.navigation
/--------------------------------------------------------------------*/
nav#global {
	height: 50px;
	background: #ffffff;
}

nav#global li,
nav#global li a {
	display: block;
	width: 300px;
	height: 50px;
}

nav#global li {
	float: left;
}

nav#global li a {
	background: #44c450;
	/* Old browsers */
	background: linear-gradient(to bottom, #44c450 0%, #29c037 50%, #10c622 100%);
	overflow: visible;
	text-indent: 0;
	color: #ffffff;
	text-decoration: none;
	text-align: center;
	font-weight: bold;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	line-height: 1.2;
	border-right: 1px solid rgba(255, 255, 255, 0.3);
	box-sizing: border-box;
}

nav#global li a .jp {
	font-size: 16px;
	display: flex;
	align-items: center;
}

nav#global li a .jp::before {
	content: "▶";
	font-size: 8px;
	color: #10c622;
	background: #fff;
	width: 12px;
	height: 12px;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-right: 8px;
	border-radius: 1px;
}

nav#global li a .en {
	font-size: 10px;
	font-weight: normal;
	opacity: 0.9;
	font-family: Arial, sans-serif;
}




/*--------------------------------------------------------------------/
	05.main
/--------------------------------------------------------------------*/
section#main {
	background: url(img/common_main.gif) repeat-y left top;
	padding-bottom: 10px;
}

section#main:after {
	content: ".";
	display: block;
	visibility: hidden;
	height: 0.1px;
	font-size: 0.1em;
	line-height: 0;
	clear: both;
}

/* h2
--------------------------------------------------------------------*/
section#main h2 {
	background: url(img/common_h2.jpg) no-repeat;
	padding: 75px 0 0 25px;
	height: 45px;
	font-size: 20px;
	font-weight: bold;
}

section#main h2#index {
	padding: 0;
	background: none;
	height: 280px;
}

/* contents
--------------------------------------------------------------------*/
div#contents {
	float: right;
	width: 675px;
	overflow: hidden;
}

/* aside
--------------------------------------------------------------------*/
aside {
	float: left;
	width: 225px;
}

aside article.box {
	margin: 10px 0 0 10px;
	padding-bottom: 10px;
	width: 205px;
	background: url(img/common_aside-box.gif) repeat-y;
	border-bottom: solid 1px #ddd6c6;
}

aside article.box p {
	margin: 10px 15px 0;
	width: 150px;
}

aside article.box p strong {
	font-weight: normal;
	color: #bd3294;
}

/* aside banner
--------------------------------------------------------------------*/
#bnrs {
	margin: 10px 0 0 10px;
	width: 205px;
	overflow: hidden;
}

#bnrs a {
	display: block;
	margin-top: 7px;
}

/*--------------------------------------------------------------------/
	06.footer
/--------------------------------------------------------------------*/
footer {
	clear: both;
	padding-bottom: 5px;
	height: 80px;
	border-bottom: solid 1px #e9edd9;
	line-height: 1;
	font-size: 10px;
}

footer nav ul {
	display: block;
	padding-left: 10px;
	height: 20px;
	background: #0eab1d;
}

footer nav ul:after {
	content: ".";
	display: block;
	visibility: hidden;
	height: 0.1px;
	font-size: 0.1em;
	line-height: 0;
	clear: both;
}

footer nav ul a:link,
footer nav ul a:visited,
footer nav ul a:hover,
footer nav ul a:active {
	color: #fff;
}

footer ul li {
	display: block;
	float: left;
	margin: 4px 10px 0 0;
	padding-right: 10px;
	border-right: solid 1px #fff;
	height: 12px;
}

footer p {
	margin-left: 10px;
	padding: 10px 0;
	letter-spacing: 1px;
	color: #ffffff;
}


/*--------------------------------------------------------------------/
	07.common elements
/--------------------------------------------------------------------*/
p.red {
	color: #dd0000;
}

.right {
	float: right;
}

.left {
	float: left;
}

.clear {
	clear: both;
}

.clearfix:after {
	content: ".";
	display: block;
	visibility: hidden;
	height: 0.1px;
	font-size: 0.1em;
	line-height: 0;
	clear: both;
}

.clearfix {
	zoom: 1;
}

.hover a:hover img {
	opacity: 0.8;
	filter: alpha(opacity=80);
}

/* pagetop */
.pagetop {
	clear: both;
	margin: 0 0 10px;
	width: 665px;
	text-align: right;
	font-size: 10px;
}

/*--------------------------------------------------------------------/
	article, section
/--------------------------------------------------------------------*/
section:after,
article:after {
	content: ".";
	display: block;
	visibility: hidden;
	height: 0.1px;
	font-size: 0.1em;
	line-height: 0;
	clear: both;
}

/*--------------------------------------------------------------------/
	h3
/--------------------------------------------------------------------*/
div#contents article h3 {
	margin-bottom: 8px;
	padding-left: 25px;
	background: url(img/common_h3.gif) no-repeat;
	line-height: 37px;
	font-size: 15px;
	font-weight: bold;
	color: #fff;
}

div#contents h4 {
	margin: 0 5px 10px;
	padding: 2px 15px;
	background: #ddd;
	color: #333;
	font-size: 15px;
	font-weight: bold;
}

/*--------------------------------------------------------------------/
	08.template（box）
/--------------------------------------------------------------------*/
/* p 設定
/----------------------------------------------------*/
div#contents article p {
	padding: 0 15px 15px;
	line-height: 1.6;
}

div#contents article div p {
	padding: 0 5px 15px;
}

/* type a （テキスト、左画像1+テキスト、画像1+テキスト）
/----------------------------------------------------*/
article.type_a,
article.type_aL,
article.type_aR {
	width: 675px;
}

article.type_aL figure {
	float: left;
	margin: 0 15px 10px 0;
	padding-left: 5px;
}

article.type_aR figure {
	float: right;
	padding-right: 5px;
	margin: 0 0 15px 10px;
}

/* type b（画像2+テキスト）
/----------------------------------------------------*/
article.type_b {
	width: 675px;
}

article.type_b div figure {
	float: left;
	margin-bottom: 15px;
	width: 330px;
}

article.type_b div figure a {
	display: block;
	margin: 0 auto;
	width: 240px !important;
	/* toolでアップロード画像のサイズ設定を変えた場合、ここのwidthも変える */
}

article.type_b div figure img {
	display: inline;
}

article.type_b div figcaption {
	margin: 0 auto;
	width: 240px;
	/* toolでアップロード画像のサイズ設定を変えた場合、ここのwidthも変える */
}

/* type b（画像3+テキスト）
/----------------------------------------------------*/
article.type_c {
	width: 675px;
}

article.type_c div figure {
	float: left;
	margin-bottom: 10px;
	width: 220px;
}

article.type_c div figure img {
	display: block;
	margin: 0 auto;
	width: 205px !important;
	/* toolでアップロード画像のサイズ設定を変えた場合、ここのwidthも変える */
}

article.type_c div figure figcaption {
	padding-left: 7px;
}

article.type_c div figure a {
	display: block;
	margin: 0 auto;
	width: 205px !important;
	/* toolでアップロード画像のサイズ設定を変えた場合、ここのwidthも変える */
}

/* type d(before and after)
/----------------------------------------------------*/
article.type_d {
	width: 675px;
}

article.type_d div figure.ktI-T7_img1 {
	float: left;
	margin-bottom: 15px;
	background: url(img/common_vector.gif) no-repeat 100% 45%;
	width: 330px;
}

article.type_d div figure.ktI-T7_img2 {
	float: right;
	margin-bottom: 15px;
	background: url(img/common_vector.gif) no-repeat 0 45%;
	width: 330px;
}

article.type_d div figure a {
	display: block;
	margin: 0 auto;
	width: 240px !important;
	/* toolでアップロード画像のサイズ設定を変えた場合、ここのwidthも変える */
}

article.type_d div figure img {
	display: inline;
}

article.type_d div figcaption {
	margin: 0 auto;
	width: 240px;
	/* toolでアップロード画像のサイズ設定を変えた場合、ここのwidthも変える */
}

/* tool_box common
/----------------------------------------------------*/
div.ktI-T2,
div.ktI-T3,
div.ktI-T4,
div.ktI-T5,
div.ktI-T6,
div.ktI-T7,
div.ktI-T8,
div.ktI-T9,
div.ktI-T10 {
	margin: 0 auto 15px;
	width: 660px;
}

article.type_a div figure figcaption,
article.type_aL div figure figcaption,
article.type_aR div figure figcaption,
article.type_b div figure figcaption,
article.type_c div figure figcaption,
article.type_d div figure figcaption {
	font-size: 11px;
	padding-top: 5px;
}

article.type_b div p,
article.type_c div p,
article.type_d div p {
	clear: both;
}

/* clearfix */
article.type_a:after,
article.type_aL:after,
article.type_aR:after,
article.type_b:after,
article.type_c:after,
article.type_d:after,
article.type_d div:after {
	content: ".";
	display: block;
	visibility: hidden;
	height: 0.1px;
	font-size: 0.1em;
	line-height: 0;
	clear: both;
}

div.ktI-T2:after,
div.ktI-T3:after,
div.ktI-T4:after,
div.ktI-T5:after,
div.ktI-T6:after,
div.ktI-T7:after,
div.ktI-T8:after,
div.ktI-T9:after,
div.ktI-T10:after {
	content: ".";
	display: block;
	visibility: hidden;
	height: 0.1px;
	font-size: 0.1em;
	line-height: 0;
	clear: both;
}


/*--------------------------------------------------------------------/
	09.template（news）
/--------------------------------------------------------------------*/
article#news {
	margin-bottom: 15px;
	width: 675px;
}

article#news div {
	margin: 0 auto;
	width: 670px;
	height: 100px;
	overflow: auto;
}

article#news table {
	margin-left: 10px;
	width: 640px;
	border-top: solid 1px #e1e1e1;
}

article#news table th,
article#news table td {
	padding: 6px 5px;
	border-bottom: solid 1px #e1e1e1;
	line-height: 1.2;
	text-align: left;
	vertical-align: top;
}

article#news table th {
	width: 110px;
	color: #0eab1d;
	font-weight: normal;
}


/*--------------------------------------------------------------------/
	10.template（table）
/--------------------------------------------------------------------*/
article.type_e {
	margin-bottom: 15px;
	width: 675px;
	zoom: 1;
}

article.type_e article {
	width: 650px;
}

article.type_e table {
	margin: 0 auto 10px;
	width: 650px;
	border-top: solid 1px #e6e6e6;
}

article.type_e th,
article.type_e td {
	padding: 7px 8px;
	border-bottom: solid 1px #e6e6e6;
	text-align: left;
	line-height: 1.4;
	vertical-align: middle;
}

article.type_e th {
	white-space: nowrap;
}

/* contact */
article.type_e th span {
	padding-left: 5px;
	color: #dd0000;
	font-size: 11px;
}

input.sub_btn {
	margin: 3px 0 5px;
	font-size: 16px;
}

/*--------------------------------------------------------------------/
	access
/--------------------------------------------------------------------*/
div#access {
	margin-top: 20px;
	margin-bottom: 20px;
	margin-left: 10px;
	margin-right: 10px;
	text-align: left;
}

div#access iframe {
	margin-top: 0;
	margin-bottom: 15px;
	padding: 5px;
	background: #ffffff;
	border: solid 1px #dfccc5;
}