﻿@charset "utf-8";

/* ======================================================
 * form.css
 * ------------------------------------------------------
 * LAYOUT ***********************************************
 * Body
 * Header
 * Contents
 * Footer
 * CONTENTS *********************************************
 * Element
 * Unique
 * RESPONSIVE *******************************************
 * - width <= 1024px
 * PRINT ************************************************
 * ClearFix
====================================================== */

/********************************************************

  LAYOUT

********************************************************/

/* Body
------------------------------------------------------ */


/* Header
------------------------------------------------------ */
/*----- headerWrap01 -----*/
.headerWrap01 {
	width: 760px;
}


/* Contents
------------------------------------------------------ */
#globalContents {
	margin-top: 100px;
}

/*----- contentsWrap -----*/
.contentsWrap {
	width: 760px;
	padding-top: 0;
}


/* Footer
------------------------------------------------------ */
/*----- footerWrap02 -----*/
.footerWrap02 {
	width: 760px;
}
/* footerUtility */
.footerWrap02 #footerUtility .utilMenu > li {
	margin: 0 24px 0 0;
}
/* copyright */
.footerWrap02 #copyright {
	font-size: 9px;
	font-size: 0.9rem;
}


/********************************************************

  CONTENTS

********************************************************/

/* Element
------------------------------------------------------ */
/*----- Common -----*/
input[type="text"],
input[type="password"] {
	height: 36px;
	padding: 5px 10px;
	border: 1px solid transparent;
	border-radius: 0;
	background-color: #eeeeee;
	-webkit-appearance: none;
}
input[type="text"]:hover,
input[type="password"]:hover {
	border: 1px solid #cccccc;
	-webkit-transition: all 0.3s ease;
	   -moz-transition: all 0.3s ease;
	     -o-transition: all 0.3s ease;
	        transition: all 0.3s ease;
}
input[type="text"]:focus,
input[type="password"]:focus {
	border: 1px solid #cccccc;
}
textarea {
	padding: 5px 10px;
	border: 1px solid transparent;
	border-radius: 0;
	background-color: #eeeeee;
	-webkit-appearance: none;
}
textarea:hover {
	border: 1px solid #cccccc;
	-webkit-transition: all 0.3s ease;
	   -moz-transition: all 0.3s ease;
	     -o-transition: all 0.3s ease;
	        transition: all 0.3s ease;
}
textarea:focus {
	border: 1px solid #cccccc;
}

/*----- Heading -----*/
table td .heading01 {
	margin: 0;
}
#contents .heading01 + * {
	margin-top: 20px;
}

/*----- Table -----*/
table td .tableWrap01 {
	margin: 0;
}
.tableLayout03 th {
	padding: 15px 18px;
}
.tableLayout03 td {
	padding: 15px 23px;
}
.tableLayout03 thead th:first-child {
	border-right: 1px solid #cccccc;
}
.tableLayout03 tbody th {
	border-right: 1px solid #cccccc;
	vertical-align: middle;
}

/*----- Form -----*/
/* formFlow */
.formFlow {
	clear: both;
	margin: 30px 0;
}
table td .formFlow {
	margin-top: 0;
}
.formFlow > li {
	position: relative;
	float: left;
	padding: 0 30px;
	-webkit-box-sizing: border-box;
	   -moz-box-sizing: border-box;
	    -ms-box-sizing: border-box;
	     -o-box-sizing: border-box;
          box-sizing: border-box;
	background: #d8d8d8;
	color: #777777;
	font-size: 17px;
	font-size: 1.7rem;
	line-height: 50px;
	text-align: center;
}
.formFlow > li:before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: 21px;
	height: 50px;
	background: url(/common/images/form_fr01.png) no-repeat 0 0;
}
.formFlow > li:first-child:before {
	background: none !important;
}
.formFlow > li:after {
	content: "";
	position: absolute;
	right: 0;
	top: 0;
	width: 21px;
	height: 50px;
	background: url(/common/images/form_fr02.png) no-repeat 0 0;
}
.formFlow.step3 > li { width: 250px; }
.formFlow > li + li {
	margin-left: 5px;
}
.formFlow > li.on {
	background: #113366;
	color: #ffffff;
}
.formFlow > li.on:before {
	background: url(/common/images/form_fr01on.png) no-repeat 0 0;
}
.formFlow > li.on:after {
	background: url(/common/images/form_fr02on.png) no-repeat 0 0;
}
/* formPolicy */
.formPolicy {
	clear: both;
	margin: 20px 0 0 0;
	height: 300px;
	padding: 20px;
	border: 1px solid #d1d1d1;
	-webkit-box-sizing: border-box;
	   -moz-box-sizing: border-box;
	    -ms-box-sizing: border-box;
	     -o-box-sizing: border-box;
          box-sizing: border-box;
	background: #ffffff;
	overflow: auto;
}
.formPolicy > *:first-child {
	margin-top: 0;
}
.formPolicy > *:last-child {
	padding-bottom: 10px;
}
/* formSubmit */
.formSubmit {
	clear: both;
	margin: 30px 0 0 0;
	text-align: center;
}
.formSubmit > [class*="Btn"] {
	display: inline-block;
	margin-top: 0 !important;
}
.formSubmit > [class*="Btn"] + [class*="Btn"] {
	margin-left: 40px;
	min-height: 45px;
}
.formSubmit > .confirmBtn > a { min-width: 352px; }
.formSubmit > .correctBtn > a { min-width: 272px; }
.formSubmit > .submitBtn > a { min-width: 272px; }
.formSubmit > .toTopBtn > a { width: auto; }

/* inputEx01 */
.inputEx01 {
}
/* inputError */
.inputError {
	position: relative;
	margin: 15px 0 10px;
}
.inputError:before {
	content: "";
	position: absolute;
	left: 18px;
	top: -18px;
	width: 0;
	height: 0;
	border-width: 9px 6px;
	border-style: solid;
	border-color: transparent transparent #cc0000 transparent;
}
.inputError > .errorTxt {
	display: inline-block;
	padding: 10px 10px 7px;
	-webkit-box-sizing: border-box;
	   -moz-box-sizing: border-box;
	    -ms-box-sizing: border-box;
	     -o-box-sizing: border-box;
          box-sizing: border-box;
	background: #cc0000;
}
.inputError > .errorTxt > li {
	color: #ffffff;
	font-size: 12px;
	font-size: 1.2rem;
	font-weight: bold;
	line-height: 1.5;
}
.inputError > .errorTxt > li + li {
	margin-top: 0.5em;
}

/* labelTail */
.labelHead {
	margin: 0 0.5em 0 0;
}
.labelTail {
	margin: 0 0 0 0.5em;
}

/* zipList */
.zipList {
	display: table;
}
.zipList > li {
	display: table-cell
}
.zipList > li + li {
	padding-left: 15px;
}
.zipList > li.entry {
}
.zipList > li.reflect {
}
.zipList > li > *:first-child {
	margin-top: 0 !important;
}
.zipList > li.entry label {
	font-size: 18px;
	font-size: 1.8rem;
}
.zipList > li.reflect .btnLink01 a {
	font-size: 13px;
	font-size: 1.3rem;
}
.zipList > li.reflect .btnLink01 a > span {
	padding: 8px 14px 6px 14px;
}

/*----- Icon -----*/
/* requiredIcon */
.requiredIcon {
	position: relative;
	display: inline-block;
	min-width: 50px;
	-webkit-box-sizing: border-box;
	   -moz-box-sizing: border-box;
	    -ms-box-sizing: border-box;
	     -o-box-sizing: border-box;
          box-sizing: border-box;
	background-color: #cc0000;
	color: #ffffff !important;
	font-size: 11px !important;
	font-size: 1.1rem !important;
	font-weight: normal !important;
	line-height: 16px !important;
	text-align: center;
	vertical-align: middle;
}

/* btnSubmit */
.btnSubmit {
	border: 0;
	-webkit-box-sizing: border-box;
	   -moz-box-sizing: border-box;
	    -ms-box-sizing: border-box;
	     -o-box-sizing: border-box;
          box-sizing: border-box;
	background-color: transparent;
	cursor: pointer;
}


/* Unique
------------------------------------------------------ */
/*----- Form: procure -----*/
/*** procureForm ***/
#procureForm {
}
#procureForm #applySet {
}
#procureForm #companySet {
}
input[type="text"][data-item="capital"],
input[type="text"][data-item="establish"],
input[type="text"][data-item="employee"],
input[type="text"][data-item="sale"] {
	width: 125px;
}
input[type="text"][data-item="zip1"],
input[type="text"][data-item="zip2"] {
	width: 75px;
}
/* width */
input[type="text"][data-item="code"],
input[type="text"][data-item="name"],
input[type="text"][data-item="name-kana"],
input[type="text"][data-item="mail"],
input[type="text"][data-item="company"],
input[type="text"][data-item="department"],
input[type="text"][data-item="tel"],
input[type="text"][data-item="fax"],
input[type="text"][data-item="building"],
input[type="text"][data-item="city"],
input[type="text"][data-item="sales-product"],
input[type="text"][data-item="business"],
input[type="text"][data-item="product-line"],
input[type="text"][data-item="customer"],
input[type="file"] {
	width: 273px;
}
input[type="text"][data-item="address1"],
input[type="text"][data-item="address2"],
input[type="text"][data-item="website"] {
	width: 384px;
}
textarea[data-item="inquiry"] {
	width: 350px;
	height: 80px;
}
textarea[data-item="memo"] {
	width: 498px;
	height: 186px;
}
.thLinkBlock {
	position: relative;
}
.thLinkBlock .thLink {
	position: absolute;
	top: 50%;
	right: 20px;
	display: inline-block;
	margin-top: -.75em;
}
.thLinkBlock .thLink .type-pdf {
	position: relative;
	display: block;
	padding-right: 26px;
}
.thLinkBlock .thLink .type-pdf::after {
	content: "";
	position: absolute;
	top: 50%;
	right: 0;
	display: block;
	width: 19px;
	height: 14px;
	margin-top: -7px;
	background-image: url(/common/images/com_pdf_ic02.png);
	background-repeat: no-repeat;
	background-position: 0 0;
}
.product > .treeview > *:first-child {
  margin-top: 0 !important;
}
.product > .treeview > .group {
  margin-top: 16px;
  padding-left: 0;
}
.product > .treeview > .group > .item.categoryLable {
  padding-bottom: 0;
  cursor: default;
}
.product > .treeview > .group .item {
  position: relative;
  margin-top: 5px;
  margin-left: -15px;
  padding-bottom: 0;
  padding-left: 20px;
}
.product > .treeview > .group.tree_branch .group {
  padding-left: 120px;
}
.product > .treeview > .group.tree_branch .item {
  margin-top: 10px;
}
.product > .treeview > .group.tree_branch .group.tree_branch {
  padding-left: 20px;
}
.product > .treeview > .group.tree_branch .group.tree_branch .item .request {
  position: absolute;
  left: -100px;
  top: 0;
}
.product > .treeview > .group.tree_branch .request_on,
.product > .treeview > .group.tree_branch .request_off {
  margin: 0;
}
.product > .treeview > .group .item::before {
  display: block;
  content: "";
  position: absolute;
  top: .7em;
  left: 0;
  width: 12px;
  height: 12px;
  margin-top: -6px;
  border: 1px solid #8e8f8f;
}
.product > .treeview > .group .item[check-value="1"]::before {
  border: 1px solid #415fd2;
}
.product > .treeview > .group .item[check-value="1"]::after {
  display: block;
  content: "";
  position: absolute;
  top: .5em;
  left: 2px;
  width: 9px;
  height: 4px;
  border-left: 2px solid #415fd2;
  border-bottom: 2px solid #415fd2;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.product > .treeview > .group .item[data-status="2"] {
  cursor: default;
}
.product > .treeview > .group .item[data-status="2"]::before {
  border: 1px solid lightgray;
}
.product > .treeview > .group .item[data-status="2"]::after {
  display: block;
  content: "";
  position: absolute;
  top: .5em;
  left: 2px;
  width: 9px;
  height: 4px;
  border-left: 2px solid lightgray;
  border-bottom: 2px solid lightgray;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.product > .treeview > .group.tree_branch .item[check-value="1"] {
  color: #415fd2;
}
.product > .treeview .group > .item.categoryLable + .group > .item {
  margin-top: 10px;
}
.product > .treeview > .group .item.categoryLable {
  margin-top: 12px;
  margin-left: 0;
  padding-bottom: 4px;
  padding-left: 0;
}
.product > .treeview > .group > .item {
  margin-left: 0;
  cursor: default;
}
.product > .treeview > .group > .item::before,
.product > .treeview > .group .item.categoryLable::before,
.product > .treeview > .group .item.categoryLable::after,
.product > .treeview > .group > .item::after {
  content: none !important;
}
.product > .treeview > .group .item.categoryLable .fa-plus,
.product > .treeview > .group .item.categoryLable .fa-minus {
  position: relative;
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 1px solid #8b8b8b;
  margin-left: 5px;
  vertical-align: middle;
}
.product > .treeview > .group .item.categoryLable .fa-plus::before {
  position: absolute;
  top: 50%;
  left: 50%;
  content: "";
  width: 2px;
  height: 10px;
  margin-left: -1px;
  margin-top: -5px;
  padding: 0;
  background-color: #575e6e;
  border: none;
}
.product > .treeview > .group .item.categoryLable .fa-plus::after {
  position: absolute;
  top: 50%;
  left: 50%;
  content: "";
  width: 10px;
  height: 2px;
  margin-left: -5px;
  margin-top: -1px;
  padding: 0;
  background-color: #575e6e;
  border: none;
}
.product > .treeview > .group .item.categoryLable .fa-minus::before {
  position: absolute;
  top: 50%;
  left: 50%;
  content: "";
  width: 10px;
  height: 2px;
  margin-left: -5px;
  margin-top: -1px;
  padding: 0;
  background-color: #575e6e;
  border: none;
}
.positionWrap {
  position: relative;
}
.positionWrap .tdLink {
	position: absolute;
	top: 0;
	right: 0;
	display: inline-block;
}
.positionWrap .tdLink .type-pdf {
	position: relative;
	display: block;
	padding-right: 26px;
	font-weight: 700;
}
.positionWrap .tdLink .type-pdf::after {
	content: "";
	position: absolute;
	top: 50%;
	right: 0;
	display: block;
	width: 19px;
	height: 14px;
	margin-top: -7px;
	background-image: url(/common/images/com_pdf_ic02.png);
	background-repeat: no-repeat;
	background-position: 0 0;
}




/********************************************************

  RESPONSIVE

********************************************************/

@media screen and (max-width: 1024px) {
}



/********************************************************

  PRINT

********************************************************/

@media print {
	.formPolicy {
		height: auto;
		overflow: visible;
	}
}


/* ClearFix
------------------------------------------------------ */
.formFlow:after,
.inputError:after {
	content: "";
	clear: both;
	display: table;
	display: block\9;
}
