﻿@charset "UTF-8";

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

[reset]

[base]
	font
	anchor
	add class

.body_common set-up]
	h
	pagetop link

[lower.body_common]

[each page]

.body_common contents]
	container
	header
	main contents
	footer
	print

[clearfix]

[cms setting]

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

/* CSS Document */
/*===============================================
●style.css
===============================================*/
* {
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-ms-box-sizing: border-box;
	-o-box-sizing: border-box;
}

.container {
	width: 100%;
}
/*:::::::::::::::::::::::::::::::::::::::::::::::::::::::::: reset */
body,div,dl,dt,dd,li,h1,h2,h3,h4,h5,h6,pre,form,fieldset,input,textarea,p,blockquote {
	margin: 0;
	padding: 0;
}
ul,ol{
	margin: 0;
}

header,nav,section,aside,footer {
	display: block;
}

table {
	border-spacing: 0;
}

fieldset,img,a img,abbr,acronym {
	border: 0;
}

li img,dt img {
	vertical-align: top;
}

address,caption,cite,code,dfn,th,var {
	font-style: normal;
	font-weight: normal;
}

caption,th {
	text-align: left;
}

h1,h2,h3,h4,h5,h6 {
	font-weight: normal;
}

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

a {
	outline: none;
}
a:hover img{
	opacity:0.9;
}
button, fieldset, form, input, label, legend, select, textarea {
	font-family: inherit;
	font-size: 100%;
	font-style: inherit;
	font-weight: inherit;
	margin: 0;
	padding: 0;
	vertical-align: middle;
}
@media all and (-ms-high-contrast: none) {/* ieのみ画像サイズ */
	img{
		width:100%;
	}
}
/*:::::::::::::::::::::::::::::::::::::::::::::::::::::::::: base */

/*--------------------------------------- font */
html {
	font-size: 62.5%;
}

body {
	font-family: 'Open Sans', Verdana,"ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ",Meiryo, sans-serif;
	font-feature-settings: "palt";
	line-height: 1.5;
	color: #495057;
	-webkit-text-size-adjust: 100%;
	font-size: 1.5em;
}
nav#side li a:before {
	font: normal normal normal 14px/1 FontAwesome;
	font-size: inherit;
	text-rendering: auto;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}
@media screen and (max-width:779px) {
	html,body {
		-webkit-text-size-adjust: 100%;
		-webkit-overflow-scrolling: touch;
	}
	iframe{
		max-width:100%;
	}
}
/*----------------------- color */
/* red */
.red {
	color: #FF0000;
}

/* white */
.white {
	color: #FFFFFF;
}

/* aqua */
.aqua {
	color: #2C3D93;
}

/* blue */
.blue {
	color: #334f99;
}

/* black */
.black {
	color: #0b0b0b;
}
/*----------------------- size */
/* size10px */
.size10 {
	font-size: 0.71em;
}

/* size12px */
.size12 {
	font-size: 0.85em;
}

/* size14px */
.size14 {
	font-size: 1.0em;
}

/* size16px */
.size14 {
	font-size: 1.14em;
}

/* size18px */
.size18 {
	font-size: 1.28em;
}

/* size22px */
.size22 {
	font-size: 1.57em;
}

/* size24px */
.size22 {
	font-size: 1.71em;
}


/*--------------------------------------- anchor */

a {
	color: #364c9a;
}

a:hover {
	color: #364c9a;
}
.body_common .column_right a[href] {
	text-decoration:none;
}
.body_common .column_right a[href]:hover {
	opacity:0.8;
	text-decoration:none;
}

/* btn */
.btn {
	text-align: center;
	display: block;
	padding: 0.5em 20px;
}

.btn a {
	border-radius: 5px;
	padding: 0.8em 2em;
	line-height: 1.5;
	color: #FFFFFF;
	width: 100%;
	max-width: 220px;
	text-align: center;
	position: relative;
	background: #2c3dcf;
	background: -moz-linear-gradient(-45deg,  #2c3dcf 0%, #2c3d93 100%);
	background: -webkit-linear-gradient(-45deg,  #2c3dcf 0%,#2c3d93 100%);
	background: linear-gradient(135deg,  #2c3dcf 0%,#2c3d93 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#2c3dcf', endColorstr='#2c3d93',GradientType=1 );
	text-decoration: none;
	display: inline-block;
	box-shadow: 0 0 5px rgb(44 61 147 / 50%);
	transition: box-shadow 0.2s;
}
.btn a:hover {
	box-shadow: 0 0 10px rgb(44 61 147 / 50%);
}
.btn a:after {
	content:"";
	display: block;
	background-image: url(img/icon_arrow_white.png);
	position: absolute;
	right: 10px;
	top: 50%;
	width: 6px;
	height: 10px;
	margin-top: -5px;
}
.btn_basic {
	text-align: center;
	display: block;
	padding: 0.5em 20px;
}

.btn_basic a {
	border-radius: 5px;
	padding: 0.8em 2em;
	line-height: 1.5;
	color: #FFFFFF;
	width: 100%;
	max-width: 220px;
	text-align: center;
	position: relative;
	background: #2c3dcf;
	background: -moz-linear-gradient(-45deg,  #2c3dcf 0%, #2c3d93 100%);
	background: -webkit-linear-gradient(-45deg,  #2c3dcf 0%,#2c3d93 100%);
	background: linear-gradient(135deg,  #2c3dcf 0%,#2c3d93 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#2c3dcf', endColorstr='#2c3d93',GradientType=1 );
	text-decoration: none;
	display: inline-block;
	box-shadow: 0 0 5px rgb(44 61 147 / 50%);
	transition: box-shadow 0.2s;
}
.btn_basic a:hover {
	box-shadow: 0 0 10px rgb(44 61 147 / 50%);
}
/* エディター：スタイル */
.editor-style-btn1 {
	text-align: center;
}
.editor-style-btn1 a {
	border-radius: 5px;
	padding: 0.8em 2em;
	line-height: 1.5;
	color: #FFFFFF;
	text-align: center;
	position: relative;
	background: #2c3dcf;
	background: -moz-linear-gradient(-45deg,  #2c3dcf 0%, #2c3d93 100%);
	background: -webkit-linear-gradient(-45deg,  #2c3dcf 0%,#2c3d93 100%);
	background: linear-gradient(135deg,  #2c3dcf 0%,#2c3d93 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#2c3dcf', endColorstr='#2c3d93',GradientType=1 );
	text-decoration: none;
	display: inline-block;
	box-shadow: 0 0 5px rgb(44 61 147 / 50%);
	transition: box-shadow 0.2s;
}
.editor-style-btn1 a:after {
	content:"";
	display: block;
	background-image: url(img/icon_arrow_white.png);
	position: absolute;
	right: 10px;
	top: 50%;
	width: 6px;
	height: 10px;
	margin-top: -5px;
}
.editor-style-btn1 a:hover {
	box-shadow: 0 0 10px rgb(44 61 147 / 50%);
}

.editor-style-text1 {
	color: #ffffff;
	text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.3),-1px -1px 5px rgba(0, 0, 0, 0.3);
}
/*--------------------------------------- add class */

.floatL {
	float: left;
}

.floatR {
	float: right;
}

.clearB {
	clear: both;
}

.center {
	text-align: center;
}

.right {
	text-align: right;
}

.bold {
	font-weight: bold;
}
.margin_t0 {
	margin-top: 0!important;
}
.width_1000{
	max-width: 1040px;
}

/*--------------------------------------- columnBox */
.columnBox .column {
	padding:1em 20px;
}
@media screen and (min-width: 780px), print {
	.columnBox {
		display: table;
		table-layout: fixed;
		width: 100%;
	}
	.columnBox .column {
		display: table-cell;
		vertical-align: top;
	}
	.columnBox .v_middle {
		vertical-align: middle;
	}
	.columnBox .v_bottom {
		vertical-align: bottom;
	}
	.w20 {
		width: 20%;
	}
	.w30 {
		width: 30%;
	}
	.w40 {
		width: 40%;
	}
	.w50 {
		width: 50%;
	}
	.w60 {
		width: 60%;
	}
	.w70 {
		width: 70%;
	}
	.w80 {
		width: 80%;
	}
	.padr3 {
		padding-right: 3%;
	}
	.padL3 {
		padding-left: 3%;
	}
	.padt3 {
		padding-top: 3%;
	}
	.padt6 {
		padding-top: 6%;
	}
}
/*--------------------------------------- columnBox */
.column_left_extra {
	padding-top: 30px;
}

@media screen and (min-width: 780px), print {
	.columnBox_2 {
		display: table;
		table-layout: fixed;
		width: 100%;
	}
	.columnBox_2 .column_left,
	.columnBox_2 .column_right {
		display: table-cell;
		vertical-align: top;
	}
	.columnBox_2 .column_left {
		width: 300px;
		padding-right: 20px;
	}
	.columnBox_2 .column_right {
		padding-left: 20px;
	}
}
@media screen and (max-width: 779px) {
	.columnBox_2 .column_right {
		padding-top: 20px;
	}
}
/*--------------------------------------- list_text */
.list_text,
.list_text li {
	display: block;
	padding: 0;
	margin: 0;
}
.list_text {
	padding: 1em 0;
	border-bottom: 1px solid #DDDDDD;
	margin-bottom: 10px;
}
.list_text li {
	background-color: #FAFAFA;
	border-top: 1px solid #DDDDDD;
}
.list_text li:nth-child(2n) {
	background-color: #ffffff;
}

.list_text li a {
	text-decoration:none;
	display: block;
	color: #495057;
}
.list_text li .listBox {
	width: 100%;
	padding: 20px;
	display: block;
}
.list_text li .date,
.list_text li .text {
	display: block;
}
.list_text li .date {
	font-size: 0.9em;
}
.list_text li .text {
	padding-top: 5px;
}
.list_text li .new {
	font-size: 0.9em;
	margin: 5px;
}
@media screen and (min-width: 780px), print {
	.list_text li .text {
		font-size: 1.2em;
	}
}
/*--------------------------------------- list_thumbnail */
.list_thumbnail {
	width:100%;
	padding: 0 0 2em;
	margin: 0;
}

.list_thumbnail li{
	display: inline-block;
	vertical-align: top;
	margin: 0;
	padding: 5px;
}
.list_thumbnail li a {
	display: block;
	text-decoration: none;
	color: #495057;
}
.list_thumbnail .listBox {
	display: block;
	padding: 20px 10px;
	border: 1px solid #CCCCCC;
	position: relative;
	background-color: #fff;
}
.list_thumbnail .thumbnail {
	display: block;
	overflow: hidden;
	text-align: center;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	position: relative;
	transition: transform linear 0.2s;
}
.list_thumbnail .thumbnail span{
	padding: 27% 0;
	display: block;
	height: 100%;
	background-position: center;
	background-size: contain;
	background-repeat: no-repeat;
}
.list_thumbnail .dateBox {
	display: block;
	padding: 0 10px;
	background-color: #f4f4f4;
	font-size: 0.9em;
}
.list_thumbnail .date,
.list_thumbnail .new {
	margin: 5px;
	display: inline-block;
	vertical-align: middle;
}
.list_thumbnail .date {
	padding: 0.1em 0;
}
.new {
	color: #3ba5eb;
	padding: 0.01em 0.5em;
	border: 1px solid;
	border-radius: 100em;
}
.list_thumbnail .title {
	color: #2C3D93;
	font-size: 1.1em;
	display: block;
	padding-top: 15px;
}
.list_thumbnail .text {
	display: block;
	padding-top: 15px;
}
.container_products_list a:hover .listBox {
	opacity:0.8;
}
@media screen and (min-width: 1200px) {
	.list_thumbnailC5 li{
		width: 20%;
	}
	.list_thumbnailC6 li{
		width: 16%;
	}
}
@media screen and (min-width: 780px) {
	.list_thumbnailC1 li{
		width: 100%;
		display:block;
	}
	.list_thumbnailC2 li{
		width: 50%;
	}
	.list_thumbnailC3 li{
		width: 33%;
	}
	.list_thumbnailC4 li{
		width: 25%;
	}
	.list_thumbnailC5 li{
		width: 20%;
	}
	.list_thumbnailC6 li{
		width: 16%;
	}
}

@media screen and (max-width: 779px) {
	.list_thumbnailC2 .listBox {
		padding: 0 0 2em;
	}
	.column_thumbnail {
		width: 35.2%;
	}
	.list_thumbnail li{
		width: 50%;
	}
	.list_thumbnailC1 li{
		width: 100%;
		display:block;
	}
	.list_thumbnailC4 li{
		width: 50%;
	}
	.list_thumbnailC5 li{
		width: 50%;
	}
	.list_thumbnailC6 li{
		width: 50%;
	}
}

@media screen and (min-width: 480px) {
	.list_thumbnailC2 li .listBox {
		padding: 1em 2em 1em 0;
	}
	.list_thumbnailC2 li:nth-child(2n) .listBox {
		padding: 1em 0 1em 2em;
	}
}
@media screen and (max-width: 479px) {
	.list_thumbnail li{
		width: 100%;
	}
}
/*::::::::::::::::::::::::::::::::::::::::::::::::::::::::::.body_common set-up */
h1, h2, h3, h4, h5, h6 {
	clear: both;
	position: relative;
}
.lower h1,
h2 {
	max-width: 1200px;
	margin: 0 auto;
	text-align: center;
	font-weight: bold;
}
/* h:変更した場合はstyle_editor.cssにも反映すること */
h3 {
	font-weight: bold;
	margin: 20px 0;
	padding: 4px 15px;
	color: #495057;
	background-color: #F4F4F4;
	border-left: 5px solid #2C3D93;
}
h4{
	padding: 0 1em;
	margin: 1em 0;
	border-left: 7px solid #2C3D93;
}

h5 {
	margin: 1.5em 0 1em;
	padding: 0 10px 0 30px;
}
h5:before {
	content: "";
	width: 7px;
	height: 7px;
	border-radius: 50%;
	display: inline-block;
	vertical-align: middle;
	border: 6px solid #2ba0ed;
	position: absolute;
	left: 0;
	top: 6px;
}
h6 {
	color: #2C3D93;
	font-weight: bold;
	margin: 1em 0;
}
.page_title_1{
	font-weight: bold;
	margin: 20px 0;
	padding: 4px 15px;
	color: #495057;
	background-color: #F4F4F4;
	border-left: 5px solid #2C3D93;
}
@media screen and (min-width: 780px), print {
	.lower h1,
	h2 {
		font-size: 2.2em;
	}
	h3 {
		font-size: 1.2em;
	}
	h4 {
		font-size: 1.1em;
	}
	h5 {
		font-size: 1.1em;
	}
	h6 {
		font-size: 1em;
	}
	.page_title_1{
		font-size: 1.2em;
	}
}
@media screen and (max-width: 779px) {
	.lower h1,
	h2 {
		font-size: 1.2em;
	}
	h3 {
		font-size: 1.1em;
	}
	h4 {
		font-size: 1.1em;
	}
	h5,h6 {
		font-size: 1em;
	}
}

/* table */
table {
	border-collapse: collapse;
}

table th,
table td {
	padding: 12px;
	border: 1px solid #CCCCCC;
}

table th {
	background: #eeeeee;
	text-align: center;
}

table[border="0"],
table[border="0"] th,
table[border="0"] td {
	border: none;
}
table[border="1"],
table[border="1"] th,
table[border="1"] td {
	border: 1px solid #CCCCCC;
}
@media screen and (max-width:479px) {
	table th {
		width: auto !important;
	}
	table.responsive tr{
		display: block;
	}
	table.responsive th,
	table.responsive td{
		text-align:left;
		width:96% !important;
		display: list-item;
		list-style:none;
	}
	table.responsive tr table{
		display: table;
	}
	table.responsive th table th,
	table.responsive td table td{
		width:auto !important;
		display: table-cell;
	}
	table.noresponsive tr{
		display: table-row;
	}
	table.noresponsive th,
	table.noresponsive td{
		text-align:left;
		width:100% !important;
		display: table-cell;
		list-style:none;
	}
	table.noresponsive tr table{
		display: table;
	}
	table.noresponsive th table th,
	table.noresponsive td table td{
		width:auto !important;
		display: table-cell;
	}
}

/* contact form */
.form_flow {
	width: 100%;
	margin: 20px auto 0;
	padding: 0;
	display: table;
	table-layout: fixed;
}

.form_flow li {
	display: table-cell;
	vertical-align: middle;
	text-align: center;
	border-left: 10px solid #ffffff;
	padding: 0 5px;
	width: 34%;
	background-color: #adadad;
}

.form_flow li:first-child {
	border-left: none;
}

.form_flow li.current {
	background-color: #2C3D93;
}

.form_flow li span {
	color: #ffffff;
	font-size: 0.9em;
	padding: 10px;
	width: 100%;
	display: block;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-ms-box-sizing: border-box;
	-o-box-sizing: border-box;
}

.contact_msg {
	font-size: 0.9em;
	margin: 0 auto;
}

.contact_msg_complete {
	padding: 40px;
	box-shadow: inset 0 0 0 2px #f0f0f0;
}

.contact_msg .editor-style-btn1 {
	float: right;
}

.contact_msg .editor-style-btn1:after {
	content: "";
	display: block;
	width: 100%;
	clear: both;
}

.error_box {
	font-size: 0.95em;
	margin: 0 auto;
	background-color: #fff7f6;
	box-shadow: 1px 0px #e5e5e5,-1px 0px #e5e5e5;
	padding: 20px 5%;
}

.error_box .error {
	color: #e72719;
	font-weight: bold;
	padding-bottom: 10px;
	border-bottom: 2px solid #e72719;
}

.error_box .error_msg {
	margin-top: 20px;
}

.contact form {
	text-align: center;
}

#input-table {
	display: block;
	width: 100%;
	max-width: 100%;
}

#input-table table {
	width: 100%;
	padding: 5px;
	margin: 0 auto 20px;
	border: none;
	box-shadow: inset 0 0 0 2px #f0f0f0;
	background-color: #ffffff;
}

#input-table table li {
	margin-left: 0;
}

#input-table table th {
	width: 35%;
	padding: 20px 60px 20px 30px;
	color: #3f4242;
	background: rgba(0, 0, 0, 0);
	text-align: left;
	border: none;
	position: relative;
	vertical-align: top;
}

#input-table table td {
	padding-left: 10px;
}

#input-table table tr {
	transition: background-color linear 0.2s;
	border-top: 1px solid #ccc;
}

#input-table table tr:hover {
	background-color: rgba(0, 0, 0, 0.05);
}

#input-table table tr:first-child {
	border-top: 5px solid #f0f0f0;
}

#input-table table tr:last-child {
	border-top: 2px solid #f0f0f0;
}

.input_required,
.input_not_required:before {
	font-size: 0.9em;
	padding: 2px 6px;
	display: inline-block;
	background-color: #2C3D93;
	color: #ffffff;
	position: absolute;
	right: 10px;
	top: 20px;
}

.input_not_required:before {
	content: "任意";
	background-color: #adadad;
	text-align: center;
}

#input-table table td {
	padding: 20px 30px;
	border: none;
	text-align: left;
}

#input-table table tr:last-child td {
	text-align: center;
}

#input-table div.formcomment {
	clear: both;
	margin-left: 7px;
	margin-top: 3px;
}

#input-table table td ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

input[type="text"],
input[type="password"] {
	border: 0;
	padding: 4px;
	border: solid 1px #ccc;
	max-width: 100% !important;
	resize: none;
	border-radius: 5px;
}

.body_textbook_form input[type="text"] {
	margin-bottom: 10px;
}

#input-table table .form_input_addnumber {
	width: 40% !important;
}

#input-table table textarea {
	padding: 10px;
	width: 96% !important;
	border: solid 1px #ccc;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
}

input:focus,
input:textarea {
	border: solid 1px #3ba5eb;
}

#input-table .input_button {
	border-radius: 5px;
	padding: 0.8em 2em;
	line-height: 1.5;
	color: #FFFFFF;
	width: 100%;
	max-width: 220px;
	text-align: center;
	position: relative;
	background: #2c3dcf;
	background: -moz-linear-gradient(-45deg,  #2c3dcf 0%, #2c3d93 100%);
	background: -webkit-linear-gradient(-45deg,  #2c3dcf 0%,#2c3d93 100%);
	background: linear-gradient(135deg,  #2c3dcf 0%,#2c3d93 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#2c3dcf', endColorstr='#2c3d93',GradientType=1 );
	text-decoration: none;
	display: inline-block;
	box-shadow: 0 0 5px rgb(44 61 147 / 50%);
	cursor: pointer;
	border: none;
	transition: box-shadow 0.2s;
}
#input-table .input_button:after {
	content:"";
	display: block;
	background-image: url(img/icon_arrow_white.png);
	position: absolute;
	right: 10px;
	top: 50%;
	width: 6px;
	height: 10px;
	margin-top: -5px;
}
#input-table .input_button:hover {
	box-shadow: 0 0 10px rgb(44 61 147 / 50%);
}

#input-table .submit_button {
	text-align: center;
	padding-top: 20px;
}

#input-table .privacy {
	font-size: 0.9em;
	height: 200px;
	overflow: auto;
	border: 1px solid #ddd;
	padding: 10px;
	background: #ffffff;
	border-radius: 3px;
}

/* セパレーター */
#input-table table tr.input-formgroup-blank th{
	background:#F0F0F0;
	border:none;
}
#input-table table tr.input-formgroup{
	padding-top:20px;
}
#input-table table tr.input-formgroup th{
	text-align:left;
	border:none;
	padding:10px 0 5px 50px;
	background-image:url(./img/icon_arrow_down.png);
	background-repeat:no-repeat;
	background-position: 5px 10px;
	background-color:#074D93;/* セパレーターth背景色 */
	border-top:2px solid #EEEEEE;
	border-left:2px solid #EEEEEE;
	border-right:2px solid #EEEEEE;
	border-bottom:1px solid #EEEEEE;
	border-radius: 5px 5px 0 0 / 5px 5px 0 0;
	-webkit-border-radius: 5px 5px 0 0 / 5px 5px 0 0;
	-moz-border-radius: 5px 5px 0 0 / 5px 5px 0 0;
}
#input-table table tr.input-formgroup th.formgroup-closed{
	background-image:url(./img/icon_arrow_down.png);
	background-repeat:no-repeat;
	background-position: 5px 10px;
	border-bottom:2px solid #EEEEEE;
	border-radius: 5px;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
}
#input-table table tr.input-formgroup th:hover{
	cursor:pointer;
	filter: alpha(opacity=90);
	opacity:0.90;
	-moz-opacity:0.90;
	-ms-filter: "alpha(opacity=90)";
}
#input-table table tr.input-formgroup span.input-formgroup-title{
	display:block;
	color:#FFFFFF;/* セパレータータイトル文字色 */
	font-size:1.3em;/* セパレータータイトル文字サイズ */
	padding-bottom:5px;
}
#input-table table tr.input-formgroup span.input-formgroup-text{
	position: relative;
	display:block;
	color:#FFFFFF;/* セパレーター説明文文字色 */
	padding:0 5px 0 1em;
	margin:5px 10px 10px 10px;
	border-radius: 2px;
	-webkit-border-radius: 2px;
	-moz-border-radius: 2px;
}
#input-table table tr.input-formgroup span.input-formgroup-text:before{
	position: absolute;
	top: 0.5em;
	left: 0;
	width: 0.5em;
	height: 0.5em;
	background: #FFFFFF;
	content:"";
	border-radius: 1px;
	-webkit-border-radius: 1px;
	-moz-border-radius: 1px;
}
#input-table table tr.input-formgroup span.input-formgroup-text a:visited,
#input-table table tr.input-formgroup span.input-formgroup-text a:link{
	color:#FFFFFF;/* セパレーター説明文内リンク色1 */
	text-decoration:underline;
}
#input-table table tr.input-formgroup span.input-formgroup-text a:hover,
#input-table table tr.input-formgroup span.input-formgroup-text a:active{
	color:#66FFFF;/* セパレーター説明文内リンク色2 */
	text-decoration:underline;
}
@media screen and (max-width:779px) {
	#input-table table {
		width: 100%;
		border-collapse: collapse;
		border-bottom: 1px solid #CCCCCC;
	}

	#input-table table th ,
		#input-table table td {
		width: 100%;
		display: block;
		border-top: none;
		text-align: left;
	}

	#input-table table th {
		padding: 6px 45px 6px 12px;
		background: #eeeeee none repeat scroll 0 0;
		font-weight: normal;
	}
	#input-table table td {
		padding-bottom: 20px;
	}
	#input-table table td:after {
		content:"";
		display:block;
		clear:both;
	}
	input[type="text"], input[type="password"] {
		width: 100%!important;
	}
	#input-table table textarea {
		width: 96%;
		max-height: 24vw;
		font-size: 110%;
	}
	.input_required,
	.input_not_required:before {
		position: absolute;
		right: 10px;
		font-size: 0.8em;
		top: 6px;
	}
}
@media screen and (max-width:479px) {
	.form_flow li {
		display: block;
		width: 100%;
		border-left: 10px solid #cccccc;
		border-top: 1px dotted #ccc;
		text-align: left;
	}
	.form_flow li:first-child {
		border-top: none;
	}
}

/*::::::::::::::::::::::::::::::::::::::::::::::::::::::::::.body_common contents */

/*--------------------------------------- container */

html {
	height: 100%;
	margin: 0;
	padding: 0;
}

body {
	height: 100%;
	margin: 0;
	padding: 0;
}

header #header_inner,
.breadCrumb ul,
.layout02,
.copy div,
article {
	max-width: 1240px;
	width: 100%;
	margin: 0 auto;
}

/*--------------------------------------- header */
header {
	position: relative;
	z-index: 10;
}
header #header_inner {
	padding: 25px 20px;
}
header a {
	color: #333;
	text-decoration: none;
	display: block;
}

header a:hover {
	text-decoration: underline;
}
header #header_logo {
	font-size: 1em;
}
header div {
	position: relative;
}

header #header_logo img,
header #header_logo span {
	display: inline-block;
	vertical-align: middle;
}
header #header_logo img {
	max-height: 40px;
	width: auto;
}
header #header_logo,
.header_search_box {
	display: inline-block;
	vertical-align: middle;
}
.header_search_box {
	float: right;
}
.header_search_box input[type="text"] {
	box-shadow: 0 0 5px rgb(0 0 0 / 30%);
}
.header_search_box .input_button {
	border-radius: 5px;
	padding: 0.25em 1em;
	line-height: 1.5;
	color: #FFFFFF;
	text-align: center;
	position: relative;
	border: none;
	cursor: pointer;
	background: #2c3dcf;
	background: -moz-linear-gradient(-45deg,  #2c3dcf 0%, #2c3d93 100%);
	background: -webkit-linear-gradient(-45deg,  #2c3dcf 0%,#2c3d93 100%);
	background: linear-gradient(135deg,  #2c3dcf 0%,#2c3d93 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#2c3dcf', endColorstr='#2c3d93',GradientType=1 );
	text-decoration: none;
	display: inline-block;
	box-shadow: 0 0 5px rgb(44 61 147 / 50%);
	transition: box-shadow 0.2s;
}
.header_search_box .input_button:hover {
	box-shadow: 0 0 10px rgb(44 61 147 / 50%);
}

.header_search_box_sp {
	padding-top: 20px;
	border-top: 1px solid #ddd;
}
.header_search_box_sp input[type="text"] {
	box-shadow: 0 0 5px rgb(0 0 0 / 30%);
}
.header_search_box_sp .input_button {
	border-radius: 5px;
	margin-top: 10px;
	padding:0.5em 1em;
	line-height: 1.5;
	color: #FFFFFF;
	text-align: center;
	position: relative;
	border: none;
	width: 100%;
	cursor: pointer;
	background: #2c3dcf;
	background: -moz-linear-gradient(-45deg,  #2c3dcf 0%, #2c3d93 100%);
	background: -webkit-linear-gradient(-45deg,  #2c3dcf 0%,#2c3d93 100%);
	background: linear-gradient(135deg,  #2c3dcf 0%,#2c3d93 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#2c3dcf', endColorstr='#2c3d93',GradientType=1 );
	text-decoration: none;
	display: inline-block;
	box-shadow: 0 0 5px rgb(44 61 147 / 50%);
	transition: box-shadow 0.2s;
}
.header_search_box_sp .input_button:hover {
	box-shadow: 0 0 10px rgb(44 61 147 / 50%);
}
@media screen and (min-width: 780px), print {

}
@media screen and (max-width: 779px) {
	.header_search_box {
		display: none;
	}
}
/* global navigation */

nav.gNavi {
	border-top: 4px solid #DDDDDD;
	background-color:#2C3D93;
}
nav.gNavi ul {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	display: table;
	padding: 0;
	border-right: 1px solid #DDDDDD;
}
nav.gNavi li {
	border-bottom: none;
	display: table-cell;
	vertical-align: middle;
	border-left: 1px solid #DDDDDD;
}
nav.gNavi li a {
	color:#FFFFFF;
	text-decoration: none;
	display: block;
	padding: 14px 12px;
	text-align: center;
}
nav.gNavi li a:hover {
	background:rgba(255,255,255,0.2);
}
nav.gNavi li .dropdown_mark,
.sp_menu_navi li .dropdown_mark {
	padding-left: 5px;
	color: #FFFFFF;
}
nav.gNavi li .header_sub_nav{
	display: none;
	font-size:0.85em;
	font-size: 0.9em;
	max-width: 300px;
	padding: 0px;
	position: absolute;
	z-index: 1000;
	margin-top:0;
	border-bottom: 1px solid #EEEEEE;
	box-shadow: 0 5px 5px 0 rgba(0, 0, 0, 0.2);
}
nav.gNavi li .header_sub_nav li{
	display:block;
	width: 100%;
	border-top:1px solid #EEEEEE;
	background-color: #FFFFFF;
	background-color: #2C3D93;
	max-width:300px;
	padding:0;
}
nav.gNavi li ul.header_sub_nav li a{
	display:block;
	padding:10px 15px;
	text-align: left;
}
nav.gNavi li .header_sub_nav li.menulevel3{
	padding-left:7px;
}
nav.gNavi li .header_sub_nav li.menulevel4{
	padding-left:14px;
}
nav.gNavi li .header_sub_nav li.menulevel5{
	padding-left:21px;
}
nav.sp_menu_navi li .header_sub_nav{
	display: none;
}
nav.sp_menu_navi .dropdown_mark{
	display: none;
}

@media screen and (min-width: 780px), print {
	.sp_menu,
	.sp_menu_btn {
		display: none;
	}
	nav.gNavi li {
		font-size: 1.1em;
	}
}
@media screen and (max-width:779px) {
	nav.gNavi {
		display: none;
	}
	header #header_inner {
		padding: 10px 60px 10px 10px;
	}
	header #header_logo {

	}
	header #header_logo a {
		display: inline-block;
		padding: 5px;
	}
	header #header_logo img {
		max-height: 35px;
		max-width: 100%;
	}
	header #header_logo span {
		margin-top: 1em;
		display: block;
		clear: both;
		float: none;
		padding-left: 0;
	}
	.gNavi {
		display: none;
	}
	.sp_menu_bg {
		position: fixed;
		left: 0;
		top: 0;
		z-index: 20;
		width: 100%;
		height: 100%;
		background-color: rgba(255, 255, 255, 0.5);
		display: none;
	}
	.sp_menu_bg.bg_fixed {
		display: block;
	}
	.sp_menu_btn {
		position: fixed;
		top: 10px;
		right: 10px;
		width: 40px;
		height: 40px;
		border: 1px solid #5F6060;
		z-index: 500;
		background-color: rgba(255, 255, 255, 0.7);
		background-image: url(./img/icon_menu_btn_open.png);
		background-position: center;
		background-repeat: no-repeat;
	}
	.sp_menu_btn.close {
		background-color: #f7f7f7;
		background-image: url(./img/icon_menu_btn_close.png);
	}
	.sp_menu {
		position: fixed;
		z-index: 60;
		right: -100%;
		top: 0;
		width: 100%;
		max-width: 280px;
		height: 100%;
		padding: 60px 20px;
		background-color: #ffffff;
		box-shadow: -3px 0 10px rgba(95, 96, 96, 0.3);
		overflow-y: auto;
		opacity:0;
	}
	.sp_menu_navi ul {
		list-style: none;
		padding: 0;
	}
	.sp_menu_navi ul li {
		border-top: 1px solid #dddddd;
	}
	.sp_menu_navi li a {
		color: #333;
		display: block;
		text-decoration: none;
		padding: 10px 0;
	}
	.sp_menu_navi li.header_mail {
		text-align: center;
		padding-top: 20px;
	}
	.sp_menu_navi li.header_mail a {
		border: 1px solid;
	}
	.sp_menu.menu_fixed {
		right: 0;
		opacity: 10;
	}
}
@media screen and (max-width:479px) {
	header #header_inner {
		padding: 10px 60px 10px 10px;
	}
}
/*--------------------------------------- kayFrame */

/*--------------------------------------- mainContaints */
.container {
	padding: 30px 0;
}

.bg_gray {
	background-color: #f4f4f4;
}

.container article {
	padding: 0 20px;
}
.container_main_title {
	background-color: #2C3D93;
	color: #ffffff;
}
.container_main_title h1 {
	font-weight: bold;
}
.container_products_list {
	background-color: #f4f4f4;
}
.container_products_list article {
	background-color: ;
}
.container_products_detail {
	background-color: #f4f4f4;
}
.container_products_detail article {
	background-color: #ffffff;
	padding: 3% 20px 0;
}

/*:::::::::::::::::::::::::::::::::::::::::::::::::::::::::: main.body_common */
.entry {
	padding-bottom: 50px;
}

.entry li {
	margin-left: 2em;
}
@media screen and (max-width:779px) {
	.container {
		padding: 30px 0;
	}
}
/*--------------------------------------- category_products */
.category_products {
	padding: 0;
	margin: 0;
	list-style: none;
	border: 1px solid #CCCCCC;
	border-top: none;
}
.category_products li {
	color: #2c3d93;
	border-top: 1px solid #CCCCCC;
	background: -moz-linear-gradient(top,  rgba(240,240,240,0) 0%, rgba(240,240,240,1) 100%);
	background: -webkit-linear-gradient(top,  rgba(240,240,240,0) 0%,rgba(240,240,240,1) 100%);
	background: linear-gradient(to bottom,  rgba(240,240,240,0) 0%,rgba(240,240,240,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00f0f0f0', endColorstr='#f0f0f0',GradientType=0 );
}
.category_products li a {
	display: block;
	text-decoration: none;
}
.category_products li a:hover {
	background:rgba(0,0,255,0.1);
}
.category_products li .list_box {
	display: table;
}
.category_products li .icon,
.category_products li .title {
	display: table-cell;
	vertical-align: middle;
}
.category_products li .icon {
	background-color: #2C3D93;
	padding: 7px;
	width: 54px;
}
.category_products li .title {
	padding: 15px 0 15px 15px;
}
@media screen and (min-width: 780px), print {
	.category_products li {
		font-size: 1.1em;
	}
}
/*--------------------------------------- sideContaints */
#side {
	padding: 10px;
	border: 1px solid #ddd;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-ms-box-sizing: border-box;
	-o-box-sizing: border-box;
}
#side .menu_title {
	background-color: #f4f4f4;
	font-size: 1.1em;
	padding: 1em 20px;
	word-wrap: break-word;
	overflow-wrap: break-word;
	box-sizing: border-box;
}

#side ul {
	padding: 10px 0 0 0;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-ms-box-sizing: border-box;
	-o-box-sizing: border-box;
}

#side ul li {
	border-top: 1px solid #dddddd;
	position: relative;
}
#side ul li:first-child {
	border-top: none;
}
#side li a {
	color: #333;
	font-size: 0.95em;
	text-decoration: none;
	display: block;
	padding: 0.5em 0.5em 0.5em 2em;
	transition: color linear 0.2s;
}
#side li a:before {
	content: "\f105";
	position: absolute;
	left: 1em;
	top: 50%;
	margin-top: -0.5em;
}

#side li a:hover {
	color: #2C3D93;
}
#side li.current a {
	color: #ffffff;
	background-color: #2C3D93;
}
#side li.current a:before {
	content: "\f0da";
}
@media screen and (min-width:780px) {
	.columnBox .column_side {
		width:320px;
	}
}
@media screen and (max-width: 779px) {
	.columnBox .column_side {
		padding: 1em 0 0;
	}
}
/*:::::::::::::::::::::::::::::::::::::::::::::::::::::::::: lower.body_common */
/* breadCrumb */
.breadCrumb {
	font-size: 0.9em;
	color: #969696;
	background-color: #f4f4f4;
}
.breadCrumb ul {
	padding: 10px 20px;
}
.breadCrumb li {
	display: inline;
}
.breadCrumb li a {
	background: transparent url(img/breadcrumb.png) no-repeat scroll right center;
	margin-right: 2px;
	padding-right: 16px;
	text-decoration: none;
}
.msg {
	font-size: 1.1em;
	padding: 10px 0 20px;
	line-height: 1.8;
}
.msg a[href]:hover{
	opacity:0.8;
}
.msg_top {
	font-size: 1.1em;
	padding: 0 0 20px;
	line-height: 1.8;
}
.msg_top h3 {
	margin-top: 0;
}

/*--------------------------------------- detail photo */
.photo_area{
	display: flex;
}
.photo_area.photo_only{
	display:block;
	width:500px;
	max-width:100%;
	margin:0 auto;
}

.photo_area .photo_area_left{
	width:500px;
}
.photo_area .photo_area_right{
	width:100%;
	padding-top:20px;
}
.photo_area .photo_box{
	/*width:100%;*/
	width:500px;
	max-width:100%;
	padding:0 10px;
	background:#FFFFFF;
	margin: 0 auto;
}
.photo_area .photo_box.photo_and_text{
	
}
.photo_area .slider_box{
	margin-left:5%;
	width: 90% !important;
}
.photo_area .photo_main_wrapper {
	display: flex !important;
	justify-content: center;
	align-items: center;
	height: 400px;
	text-align: center;
	margin-bottom:20px;
}
.photo_area .photo_main_wrapper img {
	/*width: 100%;*/
	max-width: 400px;
	max-height: 400px;
}
.photo_area .photo_main_wrapper span {
	display:block;
	position: absolute;
	bottom: 0;
	left: 0;
	background-color: rgba(255,255,255,0.5);
	font-size:90%;
	width:100%;
	/*max-width: 450px;*/
	text-align:center;
}
.photo_area .photo_main_box{
	cursor:pointer;
}
.photo_area #gallery_main{
	width:470px;
	max-width:100%;
	margin: 15px 15px 20px;
	padding:0 10px;
}
.photo_area .slider_gallery_box {
}
.photo_area #gallery_main .slick-list {
	max-width: 460px;
	margin: 0 auto;
}
.photo_area .gallery_image_wrapper{
	display: flex !important;
	justify-content: center;
	align-items: center;
	max-width: 110px;
	min-height:100px !important;
	padding:0 10px;
	cursor:pointer;
	margin: 0 5px;
	background-color: #ffffff;
	border: 1px solid #ddd;
}
.photo_area .slick-slide .gallery_image_wrapper img{
	max-width: 100%;
	max-height: 100%;
}
.photo_area #gallery_main .slick-slide{
	height:90px !important;
}
.photo_area .imagezoom-view img{
	vertical-align: baseline !important;
	max-width: none !important;
}
@media screen and (max-width:779px){
	.photo_area{
		display:block;
		width:100%;
	}
	.photo_area .photo_area_left{
		width:100%;
	}
	.photo_area #gallery_main{
		margin:15px auto 20px;
	}
}

/*--------------------------------------- pagetop link */
#pgtp {
	border-bottom: solid 1px #b5c3df;
}

#pgtp p {
	text-align: right;
	padding: 20px 0 16px;
}
/*--------------------------------------- page_navi */
.page_navi {
	border-bottom: 1px solid #ddd;
	background-color: #b7bee4;
}
.page_navi ul {
	max-width: 1200px;
	margin: 0 auto;
	padding: 6px;
	list-style: none;
}
.page_navi ul li {
	padding: 2px;
}
.page_navi ul li a {
	text-decoration: none;
	display: block;
	font-weight: bold;
	width: 100%;
	background-color: #fff;
	border-radius: 3px;
	box-shadow: 0 0 5px rgb(44 61 147 / 50%);
}
.page_navi ul li a:hover {
	background-color: #ECEEFB;
}
.page_navi ul li .li_inner {
	display: block;
	padding: 10px 20px;
}
@media screen and (min-width:780px) {
	.page_navi ul li {
		text-align: center;
		display: inline-block;
		vertical-align: middle;
	}
}
@media screen and (max-width: 779px) {

}
/*--------------------------------------- bnr_contact */
.bnr_contact {
	text-align: center;
	padding: 3% 20px 0;
}
.bnr_contact .inner_box {
	max-width: 750px;
	margin: 0 auto;
}
.bnr_contact .inner_box a {
	display: block;
	padding: 20px;
	border: 2px solid;
	background-image: url(img/bnr_contact_bg.png);
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	border-radius: 5px;
	box-shadow: 0 0 5px rgb(44 61 147 / 50%);
	transition: box-shadow 0.2s;
}
.bnr_contact .inner_box a:hover {
	box-shadow: 0 0 10px rgb(44 61 147 / 50%);
}

/*--------------------------------------- pageprev/next link */
.page_link {
	clear: both;
	width: 100%;
	margin: 0;
	padding: 20px 0;
	text-align: center;
}

.page_link .btn a:after {
	display: none;
}

.page_link a.page_link_left {
	margin: 0 10px 0 0;
	padding: 0 0 0 12px;
	background: url(img/icon_page_link_left.gif) no-repeat left center;
}

.page_link a.page_link_right {
	margin: 0 0 0 10px;
	padding: 0 12px 0 0;
	background: url(img/icon_page_link_right.gif) no-repeat right center;
}
/*--------------------------------------- table_link */
.table_link {
	border: none!important;

}
.table_link td {
	padding: 2px;
	border: none!important;
}
.table_link a {
	color: #fff;
	font-weight: bold;
	text-decoration: none;
	padding: 8px;
	padding-left: 35px;
	display: block;
	background-color: #364c9a;
	background-image: url(img/icon_arrow_white.png);
	background-repeat: no-repeat;
	background-position: center left 12px;
	transition: 0.2s background-color;
}
.table_link a:hover {
	background-color: #132565;
}
/*--------------------------------------- pager */
.pager_box{
	clear:both;
	text-align:center;
	margin-top:15px;
}
.pager_box .pager{
	width:2.5em;
	display:inline-block;
	border:1px solid #BFBFBE;
	border-radius:3px;
}
.pager_box .pager a{
	display:block;
	width:100%;
	padding-top:0.5em;
	padding-bottom:0.5em;
}
.pager_box .pager a:link,
.pager_box .pager a:visited{
	color:#333333;
	text-decoration:none;
}
.pager_box .pager a:hover,
.pager_box .pager a:active{
	background:#F1F1F1;
	text-decoration:none;
}
.pager_box .pager_current{
	background:#F1F1F1;
	padding-top:0.5em;
	padding-bottom:0.5em;
}
.pager_box .pager_dot{
	width:1.5em;
	display:inline-block;
}
.pager_box .pager_space{
	width:1em;
	display:inline-block;
	padding-left:0.2em;
	padding-right:0.2em;
}
.pager_box .pager_first{
	display:inline-block;
}
.pager_box .pager_last{
	display:inline-block;
}

/*--------------------------------------- footer */
footer {
}


footer article {
	width: 100%;
}
footer .footerBox_1 {
	padding: 20px 0;
	background-color: #F4F4F4;
	border-top: 4px solid #DDDDDD;
	text-align: center;
}
footer .footerBox_1 ul {
	padding: 0;
}
footer .footerBox_1 a{
	color: #495057;
}
footer nav{
	text-align:left;
}
footer nav li {
	font-size: 0.9em;
	list-style: none;
	clear: both;
	display: inline-block;
	vertical-align: top;
	font-weight:bold;
	text-align:left;
	width: 150px;
}
footer nav li:first-child {
	width:120px;
}
footer nav li .header_sub_nav {
	display: inline-block;
	text-align:left;
	width: 160px;
}
footer nav li .header_sub_nav li{
	font-weight:normal;
	display: inline-block;
	width: 100%;
}
footer nav li .dropdown_mark{
	display: none;
}

footer nav li a {
	text-decoration: none;
	padding: 5px 10px;
	display: block;
}

footer .footerBox_2 {
	color: #ffffff;
	background-color: #2C3D93;
	padding: 20px;
	text-align: center;
}
footer .fLogo a {
	display: inline-block;
	transition: opacity linear 0.2s;
	opacity: 0.8;
}
footer .fLogo a:hover {
	opacity: 1;
}
footer .fLogo img {
	max-height: 40px;
	width: auto;
}
footer .copyright {
	font-size: 0.85em;
}
@media screen and (max-width:779px) {
	footer {
		text-align: center;
	}

}
/*:::::::::::::::::::::::::::::::::::::::::::::::::::::::::: clear */
.entry:after,
article:after,
ul:after,
section:after,
header:after,
header div:after,
footer:after,
.clearFix:after {
	content: "";
	display: block;
	clear: both;
}



/*:::::::::::::::::::::::::::::::::::::::::::::::::::::::::: cms setting */

/* フォームツールチップ */
.invisible {
	display: none;
}

a.tooltiplink {
	display: inline-block;
	margin: 1px 3px 0;
	padding: 1px 3px 0;
	border: 2px solid #C7C7C7;
	background-color: #075698;
	border-radius: 5px;
	-moz-border-radius: 5px;
	text-decoration: none;
	color: #FFFFFF;
	font-size: 1.0em;
	font-weight: bold;
}

#input-table a.tooltiplink:link,
#input-table a.tooltiplink:visited {
	font-weight: bold;
	color: #FFFFFF;
	text-decoration: none;
}

#input-table a.tooltiplink:hover,
#input-table a.tooltiplink:active {
	font-weight: bold;
	color: #DDDDDD;
	text-decoration: none;
}

a.tooltiplink:link,
a.tooltiplink:visited {
	font-weight: bold;
	color: #FFFFFF;
	text-decoration: none;
}

a.tooltiplink:hover,
a.tooltiplink:active {
	font-weight: bold;
	color: #DDDDDD;
	text-decoration: none;
}

p.tooltipbox {
	position: absolute;
	top: 100px;
	left: 20px;
	font-size: 1.0em;
	margin: 0;
	padding: 10px;
	min-width: 100px;
	min-height: 30px;
	color: #FFFFFF;
	background: #075698;
	border: 2px solid #075698;
	border-radius: 5px;
	-moz-border-radius: 5px;
}

#input-table p.tooltipbox a:link,
#input-table p.tooltipbox a:visited {
	font-weight: bold;
	color: #FFFFFF;
	text-decoration: underline;
}

#input-table p.tooltipbox a:hover,
#input-table p.tooltipbox a:active {
	font-weight: bold;
	color: #DDDDDD;
	text-decoration: underline;
}

p.tooltipbox a:link,
p.tooltipbox a:visited {
	font-weight: bold;
	color: #FFFFFF;
	text-decoration: underline;
}

p.tooltipbox a:hover,
p.tooltipbox a:active {
	font-weight: bold;
	color: #DDDDDD;
	text-decoration: underline;
}

/* comment form */
.comment_box {
	width: 100%;
	margin: 0 0 15px;
	padding: 0;
	border-collapse: collapse;
	border: solid 1px #cccccc;
	background: #eeeeee;
}

.comment_box th,
.comment_box td {
	padding: 10px;
}

.comment_id {
	width: 10%;
	text-align: left;
	white-space: nowrap;
}

.comment_name {
	width: 70%;
	text-align: left;
}

.comment_regist {
	width: 20%;
	text-align: right;
	vertical-align: bottom;
	white-space: nowrap;
	font-size: 0.8em;
	color: #aaaaaa;
}

.comment_box td {
	padding-top: 0;
}

.comment_text {
	padding: 15px;
	background: #ffffff;
}

.icon_comment {
	text-align: right;
}

.icon_comment a {
	padding-left: 30px;
	background: url(./icon_comment.gif) no-repeat left center;
}

/* twitter widget */
#twtr-hd h3,
#twtr-hd h4,
.twtr-widget h3,
.twtr-widget h4,
.twtr-widget p,
.twtr-widget-profile h3,
.twtr-widget-profile h4 {
	clear: none;
	margin: auto;
	padding: auto;
	font-size: auto;
	color: auto;
	border: none;
	background-image: none;
}
/* twitter tweet button */
iframe.twitter-share-button {
	width: 115px!important;
}

/* フォームエラー */
.error_msg,
.error_msg_js {
	padding : 5px 5px 5px 20px;
	background: url(./img/form_error.gif) left 10px no-repeat;
}
/*:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: main */

/*--------------------------------------- index.html */
#section_main_img {
	background: #f4f4f4;
	position: relative;
}
.top_main_img  {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0;
}
@media screen and (max-width:779px) {
	/*次矢印のアイコンフォント*/
	.slick-prev,
	.slick-next {
			display: none;
			opacity: 0;
			visibility: hidden;
		}
}
.info_box_red {
	color: #495057;
	padding: 15px 20px;
	border: 1px solid #FF979F;
	background: #ffffff;
	background: -moz-linear-gradient(-45deg,  #ffffff 0%, #ffe9ec 47%);
	background: -webkit-linear-gradient(-45deg,  #ffffff 0%,#ffe9ec 47%);
	background: linear-gradient(135deg,  #ffffff 0%,#ffe9ec 47%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#ffe9ec',GradientType=1 );
}
.info_box {
	padding-top: 20px;
}
.info_3_box {
	padding-bottom: 20px;
}
.info_3_box table {
	border-bottom: 1px solid #DDDDDD;
}
.info_3_box table tr {
	border-top: 1px solid #DDDDDD;
	background-color: #FAFAFA;
}
.info_3_box table tr:nth-child(2n) {
	background-color: #ffffff;
}
.info_3_box table td {
	padding: 20px;
}

/*--------------------------------------- news/index_detail.html */
.columnBox h2 {
	text-align: left;
	padding: 0 0 1em 0;
}

.containerInner_news .thumbnail {
	display: block;
	text-align: center;
}
.containerInner_news .date {
	display: block;
	margin-bottom: 20px;
	padding: 0 0 10px;
	font-size: 0.9em;
	border-bottom: 1px solid #ddd;
}
/*--------------------------------------- contact/index.html */
.contact p {
	margin-bottom: 2em;
}
/*--------------------------------------- 製品情報ページ /index_detail.html */
.inner_main_img {

}
.inner_main_img .img {
	padding: 20px;
	border: 1px solid #CCCCCC;
	text-align: center;
}
.inner_main_img .caption {
	padding: 20px;
	display: block;
	text-align: center;
}
.inner_main_img_box .slick-prev,
.inner_main_img_box .slick-next {
	display: none;
	opacity: 0;
}
.thumb li {
	padding: 5px;
}
.thumb .img {
	border: 1px solid #CCCCCC;
}
.products_related {
	text-align: center;
	padding: 36px 0 40px;
	border-top: 4px solid #2C3D93;
	background-color: #F4F4F4;
	background-image: url(./img/products_related_bg.png);
	background-repeat: no-repeat;
	background-position: center top;
}
.products_related .content_title {
	color: #2C3D93;
	font-weight: bold;
}
.products_related .msg {

}
.products_related_list {
	
}
.products_related_list ul {
	padding: 0;
	list-style: none;
}
.products_related_list li {
	display: inline-block;
	vertical-align: top;
	width: 100%;
	max-width: 146px;
	padding: 5px;
}
.products_related_list li span,
.products_related_list li a {
	display: block;
}
.products_related_list li a {
	text-decoration: none;
	color: #495057;
}
.products_related_list li .list_box {
	background-color: #fff;
	padding: 10px;
	border: 1px solid #CCCCCC;
}
.products_related_list li .list_box .title {
	padding-top: 10px;
	text-align: left;
}
@media screen and (min-width: 780px), print {
	.products_related .content_title {
		font-size: 1.5em;
	}
	.products_related_list li .list_box .title {
		font-size: 1.1em;
	}
}
/*--------------------------------------- search/index.html */
.search_box {
	text-align: center;
	margin-bottom: 40px;
	padding: 20px;
	background-color: #f4f4f4;
	border: 3px solid #ddd;
}
.search_box input[type="text"],
.search_box .input_button {
	margin: 2px;
}
.search_box input[type="text"] {
	box-shadow: 0 0 5px rgb(0 0 0 / 30%);
}
.search_box .input_button {
	border-radius: 5px;
	padding: 0.25em 1em;
	line-height: 1.5;
	color: #FFFFFF;
	text-align: center;
	position: relative;
	border: none;
	cursor: pointer;
	background: #2c3dcf;
	background: -moz-linear-gradient(-45deg,  #2c3dcf 0%, #2c3d93 100%);
	background: -webkit-linear-gradient(-45deg,  #2c3dcf 0%,#2c3d93 100%);
	background: linear-gradient(135deg,  #2c3dcf 0%,#2c3d93 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#2c3dcf', endColorstr='#2c3d93',GradientType=1 );
	text-decoration: none;
	display: inline-block;
	box-shadow: 0 0 5px rgb(44 61 147 / 50%);
	transition: box-shadow 0.2s;
}
.search_box .input_button:hover {
	box-shadow: 0 0 10px rgb(44 61 147 / 50%);
}
.search_list {
	margin-top: 20px;
	padding: 0;
	list-style: none;
	border-bottom: 1px solid #ddd;
}
.search_list li {
	padding: 20px;
	background-color: #FAFAFA;
	border-top: 1px solid #DDDDDD;
}
.search_list li:nth-child(2n) {
	background-color: #ffffff;
}
.with_nav{
	max-width:1200px;
	display:flex;
	flex-start;
	flex-direction : row-reverse;
	margin:0 auto;
}
.with_nav nav{
	width:200px;
}
.with_nav article{
	flex:1;
	margin-left: 20px;
}
.with_nav nav .list_thumbnailC4 li{
	width:33%;
}
@media screen and (max-width:779px) {
	.with_nav{
		display:block;
	}
	.with_nav nav{
		width:96%;
		margin:10px 2%;
	}
	.with_nav article{
		margin-left: 0;
	}
}
.with_nav nav ul{
	list-style:none;
	margin:0;
	padding:0;
	min-width: 200px;
}
.with_nav nav ul:first-child{
	margin:0.5em 0 0;
}
.with_nav nav ul:first-child li{
	width:100%;
	border:1px solid #CCCCCC;
	background:#FFFFFF;
	cursor:pointer;
}
.with_nav nav ul li div.nav_title{
	color:#FFFFFF;
	padding: 0.2em 0.5em;
	background:#2C3D93;
}
.with_nav nav ul li a{
	display:inline-block;
	width:100%;
	font-size:16px;
	padding:1.0em 0.1em 1.0em 0.6em;
	border-left:5px solid #2C3D93;
}
.with_nav nav ul li a .dropdown_mark{
	float:right;
	margin-right:10px;
	font-size:15px;
}
.with_nav nav ul.header_sub_nav{
	border-top:1px solid #CCCCCC;
}
.with_nav nav ul.header_sub_nav li{
	border:none;
	border-bottom:1px solid #999;
	/*border-right:1px solid #CCCCCC;*/
}
.with_nav nav ul.header_sub_nav li:last-child{
	border-bottom:none;
}
.with_nav nav ul.header_sub_nav li a{
	line-height:1.2;
	font-size:15px;
	padding:0.8em 0.1em 0.8em 0.8em;
	border-left:10px solid #7384DA;
	text-decoration:none;
}
.with_nav nav ul.header_sub_nav li a:hover{
	text-decoration:underline;
}