@charset "utf-8";
/* ========== ヘッダー ========== */

/* ヘッダーのラッパー：画面幅いっぱいの背景と追従機能を担当 */
.header-nav-wrapper {
    position: sticky; /* スクロールしても画面上部に固定 */
    top: 0;
    z-index: 10;
    background-color: rgba(255, 255, 255, 0.8); /* 半透明の背景 */
    backdrop-filter: blur(5px); /* 背景をぼかす */
    border-bottom: 1px solid #eee;
}

/* ヘッダーのコンテンツ部分：ロゴとナビを囲む */
.header-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    
    /* 以前のコードの仕様を適用 */
    width: 100%;
    max-width: 1180px; /* コンテンツの最大幅を制限 */
    margin: 0 auto; /* 中央寄せ */
    
    /* paddingは左右は不要になるので上下のみに */
    padding: 20px 0; 
}

/* ロゴ画像のサイズを指定 */
.logo img {
    display: block;
    /* 以前のコードのサイズ指定を適用 */
    width: 365px; 
    height: 68px;
    object-fit: cover;
}

/* グローバルナビゲーション */
.global-nav ul {
    display: flex;
    align-items: center;
    /* 以前のコードのgapを適用 */
    gap: 15px; 
    margin: 0;
    padding: 0;
    list-style: none;
}

.global-nav a {
    text-decoration: none;
    color: #000000;
    font-size: 16px;
    font-weight: 400;
}

.global-nav a:hover {
    text-decoration: underline;
}

.header-image-container img {
    display: block;
    width: 100%;
    height: auto;
}

/* ========== ヘッダーのレスポンシブ対応 ========== */

/* 以前のコードの仕様を適用 */
@media screen and (max-width: 1024px) {
    .header-nav {
        /* スマホ表示では左右に少し余白を持たせる */
        padding: 20px;
    }
    
    .global-nav {
        display: none; /* 画面が狭い場合はナビゲーションを非表示にする */
    }
    /* ここにハンバーガーメニューの表示ロジックなどを追加していくことになります */
}
.header-image-container{
	position: relative;
	height: 180px;
}

.header-image-container .pagetitle{
	position: absolute;
	width: 100%;
	text-align: center;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	font-size: 36px;
	font-weight: 800;
	opacity: 1;
}
.header-image-container img {
    display: block;
    width: 100%;
	height: 180px;
	object-fit: cover;
	opacity: .5;
}

/* ========== メインコンテンツ ========== */
.main-content {
    padding: 20px 128px 80px; /* 上下左右の余白 */
}
@media screen and (max-width: 1024px){
	.main-content {
		padding: 20px 1em 80px; /* 上下左右の余白 */
	}
}
.breadcrumb-container {
    padding-bottom: 20px;
    margin-bottom: 30px;
    border-bottom: 1px solid #e0e0e0; /* svgの線の代わりにボーダーを使用 */
}

.breadcrumb {
    display: flex;
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none;
    font-size: 14px;
    color: #000000;
}
.breadcrumb li:after{
	content: " > ";
}
.breadcrumb li:last-child:after{
	content: "";
}
.breadcrumb a {
    color: inherit;
    text-decoration: underline;
}

.content-body {
    display: flex;
    flex-direction: column;
    gap: 30px; /* コンテンツ要素間の余白 */
}

h1, h2, h3, h4, p {
    margin: 0; /* デフォルトマージンをリセット */
}

.lv_h1 {
    font-size: 32px;
    font-weight: 600;
    color: #000000;
    text-align: center;
    letter-spacing: -0.96px;
    padding-bottom: 15px;
    border-bottom: 1px solid #E50021; /* imgの代わりにborderを使用 */
    width: fit-content; /* 内容に合わせた幅 */
    margin: 0 auto 20px; /* 中央寄せ */
}

.lv_h2 {
    font-size: 28px;
    font-weight: 400;
    color: #000000;
    background-color: #f7ebeb;
    padding: 26px 24px;
    letter-spacing: -0.84px;
}

.lv_h3 {
    display: flex;
    align-items: center;
    gap: 13px; /* 線とテキストの間隔 */
    font-size: 24px;
    font-weight: 500;
    color: #000000;
    letter-spacing: -0.72px;
}

.lv_h3::before {
    content: '';
    display: block;
    width: 20px;
    height: 3px;
    background-color: #E50021;
}

.lv_h4 {
    font-size: 24px;
    font-weight: 500;
    color: #000000;
    letter-spacing: -0.72px;
}

/* ========== フッター ========== */
.footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 84px; /* 要素間の間隔 */
    padding: 68px 50px;
    background-color: #f0f0f0; /* 仮の背景色 */
}

.footer-banners {
    display: flex;
    flex-wrap: wrap; /* 画面が狭い場合に折り返す */
    justify-content: center;
    gap: 26px; /* バナー間の間隔 */
}

.banner-item {
    width: 227px;
    height: 100px;
    background-color: #d9d9d9;
}

.copyright {
    text-align: center;
    font-size: 14px;
    color: #333;
    max-width: 960px; /* 元の幅指定を参考に */
}

/*common
************************************************************************************/
.section{
	padding: 0px 0 40px;
	text-align: left;
	word-break: break-all;
	margin: auto;
	width: 100%;
	max-width: 1200px;
}
.section:after {
		content: "";
		display: block;
		clear: both;
		height: 1px;
		overflow: hidden;
}
/*\*/
* html .section{
		height: 1em;
}
.section{
		display: block;
}
/* ▲ */
/* for IE7 */
*:first-child+html .section{
	zoom:1;
}

.text{
	padding: 10px;
	line-height: 1.7;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-o-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
}
.text20{
	padding: 20px;
	line-height: 1.7;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-o-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
}
.text p,
.text20 p{
	padding-bottom:1em;
}
.text p:last-child,
.text20 p:last-child{
	padding-bottom: 0;
}
.text:after,
.text20:after{
		content: "";
		display: block;
		clear: both;
		height: 1px;
		overflow: hidden;
}
/*\*/
* html .text,
* html .text20{
		height: 1em;
}
.text,
.text20{
		display: block;
}
/* ▲ */
/* for IE7 */
*:first-child+html .text,
*:first-child+html .text20{
	zoom:1;
}

/*table
----------------------------------------------------------------------*/

table.normal,
.cms-posts table{
	margin: 5px auto 15px auto;
	border-collapse:collapse;
	width: 100%;
	border: 1px solid #8294A4;
	border-spacing: 0;
}
table.normal.auto,
.cms-posts table.auto{
	width: auto;
	margin: 5px 0 15px 0;
}
table.normal caption,
.cms-posts table caption{
	padding: 5px 0;
	text-align: left;
	display: block;
	font-weight: bold;
}
table.normal caption:before,
.cms-posts table caption:before{
	content: "■";
}

table.normal thead th,
.cms-posts table thead th,
table.normal tbody th,
.cms-posts table tbody th{
	font-weight:bold;
	text-align: center;
	color: #000;
}
table.normal thead,
.cms-posts table thead{
	border: 1px solid #8294A4;
}

table.normal thead th,
.cms-posts table thead th,
table.normal tbody th,
.cms-posts table tbody th,
table.normal tbody td,
.cms-posts table tbody td{
	border: 1px solid #8294A4;
	padding: 1em;
	word-break: break-all;
	border-radius: 0;
	-webkit-border-radius: 0;
	-moz-border-radius: 0;
}

table.normal thead th,
.cms-posts table thead th{
	background-color: #DFDFDF;
}
table.normal thead th a,
.cms-posts table th a{
	color:#000;
}
table.normal tbody th,
.cms-posts table tbody th{
	background-color: #CFE1EF;
}
table.normal tbody th a,
.cms-posts table tbody th a{
	color:#000;
}
table.normal.auto th,
.cms-posts table.auto th{
	padding: 1px 2em;
}

table.normal tbody td,
.cms-posts table tbody td{
	background: #FFF;
}

.cms-posts section.blue table tbody tr td,
.cms-posts section.beige table tbody tr td{
	background: #FFF;
}
table.normal.center td{
	text-align: center;
}

/******************************/
table.radius-table{
	margin: 5px auto 15px auto;
	border-collapse: separate;
	border-spacing: 5px;
	width: 100%;
	border: 0;
}
table.radius-table.auto{
	width: auto;
	margin: 5px 0 15px 0;
}
table.radius-table caption{
	padding: 5px 0;
	text-align: left;
	display: block;
	font-weight: bold;
}
table.radius-table caption:before{
	content: "■";
}

table.radius-table thead th,
table.radius-table tbody th{
	color: #FFF;
	font-weight:bold;
	text-align: center;
}

table.radius-table thead th,
table.radius-table tbody th,
table.radius-table tbody td{
	border: 0;
	border-radius: 15px;
	-webkit-border-radius: 15px;
	-moz-border-radius: 15px;
	padding: 1.5em;
	word-break: break-all;
}

table.radius-table thead th{
	background-color: #5a5b5e;
}
table.normal thead th a,
table.radius-table th a{
	color:#FFF;
}
table.radius-table tbody th{
	background-color: #002060;
}
table.radius-table tbody th a{
	color: #FFF;
}
table.radius-table.auto th{
	padding: 1px 2em;
}
table.radius-table tbody td{
	background: #f3f3f3;
}

/******************************/
table.line_btm{
	margin: 5px auto 45px auto;
	width: 100%;
	border-top: 1px solid #ccc;
	border-bottom: 1px solid #ccc;
}

table.line_btm th,
table.line_btm td{
	padding: .7em;
	border-bottom: 1px solid #ccc;
}
table.line_btm th{
	font-weight: bold;
	text-align: left;
}

/*スクロール*/

.table_scroll .sp_comment{
	display: none;
}
.table_scroll .scroll_body{}


@media screen and (max-width: 768px) {
	.table_scroll .sp_comment{
		display: block;
		padding: 10px;
		border: 1px solid #ededed;
		margin: 10px 0;
	}
	.table_scroll .sp_comment:after{
		content: "※表が見切れている場合は、横にスクロールしてご覧いただけます";
		color: #666;
		display: block;
	}
	.table_scroll .scroll_body{
		width: 97%;
		margin: auto;
		overflow-x: scroll;
		font-size: 14px !important;
	}
	.table_scroll .scroll_body table{
		width: 950px !important;
		font-size: 14px !important;
	}
	.table_scroll .scroll_body table th,
	.table_scroll .scroll_body table td,
	.table_scroll .scroll_body table.main th,
	.table_scroll .scroll_body table.main td,

	.table_scroll .scroll_body table.normal th,
	.table_scroll .scroll_body table.normal td{
		word-break: break-all;
		font-size: 14px !important;
	}
}


@media screen and (max-width: 768px) {
	table.smartphone{
		display: block;
		width: 100%;
		border: 0;
	}
	table.smartphone thead{
		display: none;
	}
	table.smartphone tbody{
		display: block;
		width: 100%;
	}
	table.smartphone tr{
		display: block;
		width: 100%;
	}
	table.smartphone th,
	table.smartphone td{
		display: list-item;
		width: 100% !important;
		padding: 1em !important;
		-webkit-box-sizing: border-box;
		-moz-box-sizing: border-box;
		-o-box-sizing: border-box;
		-ms-box-sizing: border-box;
		box-sizing: border-box;
		display: block;
		border: 0;
		border-radius: 0 !important;
	}
	table.smartphone th{
		list-style-type: none;
		display: block;
		background: #ededed;
	}

	table.smartphone td{
		margin-left: 0;
		list-style-type: none;
		border: 0;
		padding-left: 25px;
	}
}

.textCenter{
 text-align:center;
}
.textCenter img{
	max-width: 100%;
	height: auto;
}
.textRight{
 text-align:right;
}
.textLeft{
 text-align:left;
}
.smidashi{
	font-weight: bold;
	font-size: 17px;
	color: #ce4040;
}
.bold{
	font-weight: 700;
}

.red{color:#d80808;}
.important_box{
	border: 1px solid #d80808;
	padding: 20px;
	background: #FFF;
	margin: 1em auto;
}
.txt_s{
	font-size: 12px;
}
.txt_xxl{
	font-size: 25px;
}
.txt_xl{
	font-size: 21px;
}
.txt_l{
	font-size: 18px;
}

.disnon{display:none;}

.inline-b{
	display: inline-block;
	margin: 5px;
	vertical-align: middle;
	padding: 0 !important;
}

/* -- float -- */
.rf10{float:right; margin-left:10px;}
.rf15{float:right; margin-left:15px;}
.lf15{float:left; margin-right:15px;}
.rf10,
.rf15,
.lf15{
	display: inline-block !important;
	width:auto !important;
	min-width:auto !important;
	min-width:initial !important;
}
.rf{float:right;}
.lf{float:left;}

ul.baselink{}
span.br{}
a.tel{}
span.spbr{}

@media screen and (min-width: 980px) {
span.br{
	display: block;
	text-indent: -9999;
	font-size: 0;
}
a.tel{
	pointer-events: none;
	cursor: default;
	text-decoration: none;
	color: #000;
}
}

.mt15{ margin: 15px 0 0 0; }
.mt10{ margin: 10px 0 0 0; }
.pt15{ padding: 15px 0 0 0; }
.mt0{margin-top: 5px !important;}
.mb0{margin-bottom: 5px !important;}

/*list
----------------------------------------------------------------------*/

/*number circle*/
ol.number{
	margin: 15px 0;
	padding: 0;
	counter-reset:number;
	list-style:none;
}

ol.number > li{
	margin: 0 0 1em 2.5em;
	background: none;
	list-style-type: none;
}
ol.number > li:last-child{
	margin: 0 0 0 2.5em;
}
ol.number > li:before {
	counter-increment: number;
	content: counter(number);
	margin: -.3em 7px 0 -2.5em;
	width: 2em;
	height: 2em;
	background: #002060;
	
	color: #FFF;
	border-radius: 50%;
	text-align: center;
	line-height: 2em;
	float: left;
}
ol.number > li p{
	margin: 0;
	padding: 0;
	zoom: 1;
	overflow: auto;
	text-indent: 0;
}


ul.ar_blue_circle li,
a.ar_blue_circle{
	margin: 7px 0;
	padding: 0 0 0 23px;
	line-height: 30px;
	width: auto;
	background: url("../../img/ar_list_blue.svg") no-repeat left 0.3em;
	-moz-background-size: 18px auto;
	background-size: 18px auto;
	border: 0;
}
ul.ar_blue li,
a.ar_blue{
	margin: 12px 0;
	padding: 0 0 0 20px;
	width: auto;
	background: url("../../img/ar_blue.svg") no-repeat left 0.25em;
	-moz-background-size: 15px auto;
	background-size: 15px auto;
	line-height: 24px;
	border: 0;
}
ul.ar_blue_circle,
ul.ar_blue{
	margin: 0 0 0.9em 0;
}


/* まる */
ul.maru{
	list-style-type: none;
}
ul.maru li:before{
	margin-right:0.2em;
	display: marker;
	color:#2faa54;
	content: "●";
	float: left;
}
ul.maru li p{
	overflow: auto;
	zoom: 1;
	padding: 0;
	text-indent:0;
	color:#000;
}



a.pdf{
	background: url(../../img/icon_pdf.svg) no-repeat left 0.1em;
	-moz-background-size: 20px auto;
	background-size: 20px auto;
	padding: 0 0 0 25px; 
}
a.word{
	background: url(../../img/icon_word.svg) no-repeat left 0.1em;
	-moz-background-size: 20px auto;
	background-size: 20px auto;
	padding: 0 0 0 25px; 
}
a.excel{
	background: url(../../img/icon_excel.svg) no-repeat left 0.1em;
	-moz-background-size: 20px auto;
	background-size: 20px auto;
	padding: 0 0 0 25px;  
}
a.docs{
	background: url("../../img/icon_docs.svg") no-repeat left 0.1em;
	-moz-background-size: 20px auto;
	background-size: 20px auto;
	padding: 0 0 0 25px;  
}
a.out{
	background: url("../../img/icon_outlink.svg") no-repeat right 2px top 0.2em;
	-moz-background-size: 18px auto;
	background-size: 18px auto;
	padding: 0 21px 0 0;
}

ul.icoPdf li a{
	background: url(../../img/icon_pdf.svg) no-repeat left 0.1em;
	-moz-background-size: 17px auto;
	background-size: 17px auto;
	padding: 0 0 0 23px; 
	margin: 5px 0;
}


ul.inline li,
ol.inline li{
	display: inline-block !important;
	margin: 5px 1.5em 5px 0;
}

img.R5{
	border-radius: 5px;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
}

.valign_cnter{
	vertical-align: middle !important;
}
img.valign_cnter{
	margin: 0 5px;
}

.imp{
	border-bottom: 1px solid #ea4411;
	color: #ea4411;
}

.nowrap{
	white-space:nowrap;
}


/*clearfix
************************************************************************************/
.clearfix:after {
    content: "";
    display: block;
    clear: both;
    height: 1px;
    overflow: hidden;
}
* html .clearfix{
    height: 1em;
}
.clearfix{
    display: block;
}
*:first-child+html .clearfix{
	zoom:1;
}

/*buttons
************************************************************************************/
.btn_box{
	text-align: center;
	display: block;
	padding: 20px 0;
}
.btn_box p{
	display: inline-block;
}
.text p.btn_more,
.text p.btn_prev,
.text p.btn_normal,
.text20 p.btn_more,
.text20 p.btn_prev,
.text20 p.btn_normal{
	padding-bottom: 0 !important;
}
.btn_more a,
.btn_prev a{
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-o-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
	display: inline-block;
	border-radius: 30px;
	-webkit-border-radius: 30px;
	-moz-border-radius: 30px;
	color: #FFF;
    font-weight: 600;
	text-decoration: none;
	padding: 15px 25px;
	margin: 0;
	width: 250px;
}
.btn_more.long a,
.btn_prev.long a{
	width: 450px;
}
.btn_normal a,
.btn_normal span{
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-o-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
	display: inline-block;
    background: #002060;
	border-radius: 30px;
	-webkit-border-radius: 30px;
	-moz-border-radius: 30px;
	color: #FFF;
	text-decoration: none;
	padding: 15px 30px 15px 30px;
    font-weight: 600;
    text-align: center;
	margin: 0;
}
.btn_more a{
    background: url("../../img/ar_btn_next.svg") no-repeat right 20px center #e50021;
	color: #FFF;
	-moz-background-size: 15px auto;
	-webkit-background-size: 15px auto;
	background-size: 15px auto;
}

.btn_prev a{
	background: url("../../img/ar_btn_prev.svg") no-repeat left 20px center;
	-moz-background-size: 15px auto;
	-webkit-background-size: 15px auto;
	background-size: 15px auto;
    border: 1px solid #e50021;
    color: #e50021;
}

.btn_more a,
.btn_prev a,
.btn_normal a{
	-webkit-transition: 0.3s ease-in-out;
	-moz-transition: 0.3s ease-in-out;
	-o-transition: 0.3s ease-in-out;
	transition: 0.3s ease-in-out;
}
.btn_normal a:hover{
	background: #184194;
	color: #FFF;
}
.btn_more a:hover {
	background-position: right 10px center;
}
.btn_prev a:hover {
	background-position: left 10px center;
}

/*form
************************************************************************************/
.error_msg{
	color:#F00;
}
.err_msg{
	margin-top: 1.5em;
	color:#F00;
}
.privacyBox{
	padding: 2em 0;
	text-align: center;
}

.form span.hissu{
	border-radius: 3px;
	padding: 3px 1em;
	background: #FF9100;
	font-size: 0.713em;
	color: #FFF;
	margin-left: 1.5em;
	text-align: center;
	font-weight: normal;
}

/*form
----------------------------------------------------------------------*/
.form th {
	white-space: nowrap;
}
#page_inquiry .form table td {
	padding: 15px;
}
.form td li{
	display: inline-block;
	padding: 0 15px 0 0;
}

.form input{
	margin: 1px;
	padding: 15px;
	background: #f1f1f1;
	border: 0;
	outline: none;
}
.form input:focus,
.form select:focus,
.form textarea:focus{
	outline: none;
	box-shadow: 0px 0px 15px -5px #7a7a7a;
	background: #fff;
}

.form input[type=checkbox],
.form input[type=radio]{
	margin-right: 5px;
}

.form input[type=text],
.form input[type=tel],
.form input[type=email],
.form input[type=url]{
	width: 450px;
}

.form input.m[type=text],
.form input.m[type=tel]{
	width: 200px;
}

.form input.s[type=text],
.form input.s[type=tel]{
	width: 100px;
}

.form input.zip{
	width: 100px;
}

.form label{
	padding-right: 1em;
}

.form textarea{
	width: 100%;
	height: 150px;
	padding: 15px;
	background: #f1f1f1;
	border: 0;;
	box-sizing: border-box;
}

.form select{
	/*padding: 15px;*/
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	padding: 20px 40px 20px 15px;
	background: url("../../common/img/common/ar_black_dwn.svg") no-repeat right 15px center #e6f2f7;
	-moz-background-size: 10px auto;
	background-size: 10px auto;
	border: 0;
}

.btnSend{
	text-align: center;
	padding: 20px 0;
}

.btnSend input[type=submit]{
	padding: 15px 3em;
	background: #0552A9;
	color: #FFF;
	border: 1px;
	cursor: pointer;
	margin: 0 5px;
	font-family: "Noto Sans JP", serif;
	border-radius: 3px;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	font-size: 16px;
}

.screen-reader-response,
.wpcf7-not-valid-tip,
.wpcf7-response-output{
	color: #F00;
	display: block;
	padding: 0.3em 0;
}

.btnSend .btn a{
	padding: 15px 3em;
	background: #EEEEEE;
	color: #000;
	border: 1px;
	cursor: pointer;
	margin: 0 5px;
	font-family: "Noto Sans JP", serif;
	border-radius: 3px;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	font-size: 16px;
	text-decoration: none;
}

@media screen and (max-width: 979px) {
/*tablet*/
}

@media screen and (max-width: 768px){
.form input{
	padding: 15px 1%;
}

.form input[type=text],
.form input[type=tel],
.form input[type=email],
.form input[type=url]{
	width: 100%;
	font-size: 15px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-o-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
	/*background: #FFF;
	border: 1px solid #ededed;*/
}

.form input.m[type=text],
.form input.m[type=tel]{
	width: 50%;
	font-size: 15px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-o-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
}

.form input.s[type=text],
.form input.s[type=tel]{
	width: 30%;
	font-size: 15px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-o-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
}


.form textarea{
	width: 100%;
	padding: 5px 1%;
	height: 150px;
	font-size: 15px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-o-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
	/*background: #FFF;
	border: 1px solid #ededed;*/
}

.form select{
	padding: 15px;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	padding: 20px 40px 20px 15px;
	background: url("../../common/img/common/ar_black_dwn.svg") no-repeat right 15px center #e6f2f7;
	-moz-background-size: 10px auto;
	background-size: 10px auto;
	border: 0;
}
.btnSend input[type=submit]{
	padding: 15px 0;
	width: 95%;
	background: #3c962f;
	color: #FFF;
	border: 1px;
	cursor: pointer;
	margin: 3px;
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	border-radius: 3px;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	-webkit-appearance: none;
	border-radius: 0;
	font-size: 16px;
}
}
