@charset "utf-8";




.all {
	margin: 150px 0;
}
@media only screen and (max-width: 640px) {
	.all {
		margin-top: 80px;
		margin-bottom: 80px;
	}
	
}



/*---------------------------
          メイン画像
---------------------------*/
.main_bg {
	background-image: url(../../images/second/contact/main_bg.png);
}

@media screen and (max-width: 640px) {
	.main_bg {
		background-image: url(../../images/second/contact/main_bg_sp.png);
	}
}


/*---------------------------
         インデックス
---------------------------*/
/*--セクション1--*/
h3 {
  color: #175684;
	font-size: 24px;
	font-weight: 500;
	text-align: center;
  line-height: 3rem;
  letter-spacing: .01rem;
}
h3 span {
  max-width: 720px;
  margin: 0 auto;
	padding-bottom: 8px;
  border-bottom: solid 2px #175684;
}


.ind_1_txt_1 {
  margin-top: 86.2978px;
	font-size: 18px;
	line-height: 1.8em;
}
.ind_1_txt_2 {
	font-size: 14px;
	font-weight: 300;
	letter-spacing: .01rem;
	line-height: 1.5rem;

	margin-top: 20px;
}
.ind_1 a {
	font-size: 20px;
	font-weight: 500;
	letter-spacing: .01rem;
	color: #175684;

	display: block;
	margin: 50px 0 0 25px;

	text-decoration: none;
	transition: .3s;
	position: relative;
}
.ind_1 a:before {
    content: "";
    position: absolute;
    top: 5px;
    left: -25px;
    width: 7px;
    height: 7px;
    border: 0.13rem solid;
    border-color:  transparent transparent #175684 #175684;
    transform: rotate(225deg);
}
.ind_1 a:hover {
	opacity: .6;
}


/*--セクション2--*/
.ind_2 {
	background-color: #F0F8FC;
	margin-top: 100px;
	padding: 100px 0 60px;
}

.ind_2_grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 4%;
}

.ind_2_grid a{
	transition: .3s;
}
.ind_2_grid a:hover {
	opacity: .6;
}


/*--セクション3--*/
.ind_3 {
	margin-top: 100px;
}
.ind_3_cat {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 4%;

	margin-top: 100px;
}


.caption_box {
	position: relative;

	padding: 15%;
	border: 1px solid;
}
.caption {
	position:absolute;
	top:0;
	left:50%;

	transform:translate(-50%,-50%);
	background-color: #fff;
	padding: 0 30px;

	font-size: 24px;
}

.caption_box ul {
	max-width: 280px;
	margin: 0 auto;
}
.caption_box_li {
	margin-bottom: 8%;
}

.caption_box_li a {
	transition: .3s;
}
.caption_box_li a:hover {
	opacity: .6;
}



@media only screen and (max-width: 640px) {
	/*--セクション1--*/
	h3 {
		font-size: 20px;
		letter-spacing: 0rem;
		line-height: 3rem;
	}
	h3 span {
		border-bottom: solid 2px #175684;
		padding-bottom: 7px;

		max-width: 720px;
		margin: 0 auto;
	}


	.ind_1_txt_1 {
    margin-top: 40px;
		font-size: 18px;
		letter-spacing: 0rem;
		line-height: 1.5rem;
	}
	.ind_1_txt_2 {
		font-size: 12px;
		letter-spacing: 0rem;
		line-height: 1.2rem;

		margin-top: 20px;
	}
	.ind_1 a {
		font-size: 18px;
		letter-spacing: .01rem;

		margin: 40px 0 0 25px;
	}
	.ind_1 a:before {
	    top: 4px;
	    width: 6px;
	    height: 6px;
	}


	/*--セクション2--*/
	.ind_2 {
		margin-top: 70px;
		padding: 70px 0 150px;
	}

	.ind_2_grid {
		grid-template-columns: repeat(1, 1fr);
		gap: 2%;
	}


	/*--セクション3--*/
	.ind_3 {
		margin-top: 50px;
	}
	.ind_3_cat {
		display: grid;
		grid-template-columns: repeat(1, 1fr);
		gap: 40px;

		margin-top: 50px;
	}

	.caption {
		font-size: 20px;
	}
}




/*---------------------------
        	共通
---------------------------*/
input::placeholder, textarea::placeholder {
  color: #ccc;
}

/*--先頭テキスト--*/
h4 {
	font-size: 16px;
	font-weight: 400;
  text-align: center;
	letter-spacing: .1em;
	line-height: 2rem;
}

/*--お問い合わせの内容--*/
h5 {
	font-size: 24px;
	font-weight: 500;
	letter-spacing: .05rem;

	text-align: center;
	margin-top: 150px;
}

/*--table--*/
.contact-table {
	width: 100%;
	margin-top: 50px;
}

/*--th td--*/
.contact-item {
	font-size: 16px;
	font-weight: 500;
	letter-spacing: .01rem;
	line-height: 1.5rem;
}
.vat {
  vertical-align: top !important;
}
.contact-item span {
	color: #006652;
}
.contact-item {
	padding: 20px;
    text-align: left;
    width: 30%;
}

.contact-body {
	padding: 20px;
  width: 70%;
}
.contact-item, .contact-body {
	vertical-align: middle;
}

/*--input--*/
.form-text {
	table-layout: fixed;
	box-sizing: border-box;
    width: 100%;
    padding: 15px 0 15px 15px;
    border: 1px solid #ccc;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

/*--select アコーディオン--*/
.form-select {
	width: 100%;
  padding: 15px 0 15px 15px;
  border: 1px solid #ccc;
}

/*--textarea--*/
.form-textarea {
	table-layout: fixed;
	box-sizing: border-box;
  width: 100%;
  padding: 15px 0 15px 15px;
  height: 200px;
  border: 1px solid #ccc;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

/*-- radio --*/
.contact-yesno + .contact-yesno {
  margin-left: 20px;
}

label {
  position: relative;
  display: inline;
  width: 100px !important;
  margin: 0.5em 0;
  padding-left: 28px;
  cursor: pointer;
  user-select: none;
}
label input {
  display: none;
}
.mwform-radio-field-text {
  font-size: 16px;
}
.mwform-radio-field-text:before {
  content: "";
  position: absolute;
  top: 5px;
  left: 0;
  height: 18px;
  width: 18px;
  border: solid 1px #555;
  border-radius: 50%;
  box-sizing: border-box;
}
.mwform-radio-field-text:after {
  content: "";
  position: absolute;
  background: #555;
  border-radius: 50%;
  height: 18px;
  width: 18px;
  top: 5px;
  bottom: 0;
  left: 0;
  right: 0;
  opacity: 0;
}
label input:checked + .mwform-radio-field-text:after {
  opacity: 1;
}
textarea {
  line-height: 1.6em;
}

/*-- check box --*/
label input[type=checkbox] {
  display: none;
}
.mwform-checkbox-field-text {
  box-sizing: border-box;
  cursor: pointer;
  display: inline-block;
  padding: 5px 0;
  position: relative;
  width: auto;
}
.mwform-checkbox-field-text::before {
  background: #fff;
  border: 1px solid #175684;
  content: '';
  display: block;
  height: 16px;
  margin-top: -8px;
  position: absolute;
  top: 50%;
  left: -1.7em;
  width: 16px;
}
.mwform-checkbox-field-text::after {
  border-right: 3px solid #175684;
  border-bottom: 3px solid #175684;
  content: '';
  display: block;
  height: 9px;
  left: -1.4em;
  margin-top: -7px;
  opacity: 0;
  position: absolute;
  top: 50%;
  transform: rotate(45deg);
  width: 5px;
}
label input[type=checkbox]:checked + .mwform-checkbox-field-text::after {
    opacity: 1;
}

/*--確認ボタン--*/
.cnt_btn {
	margin-top: 80px;
}

input[type="submit"] {

}
.submitBtnOther {
  transition: all 0.2s 0s ease !important;
  position: relative;
  display: block;
  width: 413px !important;
  margin: 0 auto !important;
  padding: 1.3em 0 !important;
  color: #fff;
  font-size: 20px;
  text-align: center;
  line-height: 1em;
  background-color: #ff7c80 !important;
  border: 1px solid #ff7c80 !important;
  border-radius: 6px !important; 
}
.submitBtnOther:hover {
  color: #ff7c80 !important;
  background: #fff !important;
}
.backBtn {
  transition: all 0.2s 0s ease !important;
  position: relative;
  display: block;
  width: 413px !important;
  margin: 1em auto 0 !important;
  padding: 1.3em 0 !important;
  color: #555;
  font-size: 20px;
  text-align: center;
  line-height: 1em;
  background-color: #ccc !important;
  border: 1px solid #ccc !important;
  border-radius: 6px !important; 
}
.backBtn:hover {
  background: #eee !important;
}

.btnNavy {
  background-color: #7030a0 !important;
  border: solid 1px #7030a0 !important;
}
.btnNavy:hover {
  color: #7030a0 !important;
  background-color: #fff !important;
}
.btnOrange {
  background-color: #F5A20B !important;
  border: solid 1px #F5A20B !important;
}
.btnOrange:hover {
  color: #F5A20B !important;
  background-color: #fff !important;
}
.btnDarkGreen {
  background-color: #175684 !important;
  border: solid 1px #175684 !important;
}
.btnDarkGreen:hover {
  color: #175684 !important;
  background-color: #fff !important;
}
.btnGreen {
  background-color: #006652 !important;
  border: solid 1px #006652 !important;
}
.btnGreen:hover {
  color: #006652 !important;
  background-color: #fff !important;
}

span.error {
  margin-top: 10px;
  color: #FF7C80 !important;
}



@media only screen and (max-width: 640px) {
	/*--先頭テキスト--*/
	h4 {
		font-size: 14px;
		letter-spacing: 0rem;
		line-height: 1.5rem;
	}

	/*--お問い合わせの内容--*/
	h5 {
		font-size: 20px;
		letter-spacing: .05rem;

		margin-top: 70px;
	}

	/*--table--*/
	.contact-table {
		margin-top: 30px;
	}

	/*--th td--*/
	.contact-item {
		font-size: 14px;
		letter-spacing: 0rem;
	}
	.contact-item {
	    width: 100%;

	    margin-bottom: 10px;
	}
	.contact-body {
	    width: 100%;

	    margin-bottom: 30px;
	}
	.contact-item, .contact-body {
		display: block;
	    padding: 0;
	}

	/*--確認ボタン--*/
	.cnt_btn {
		margin-top: 25px;
	}
  .submitBtnOther {
    width: 100% !important;
  }
}


/*---------------------------
        製品 products
---------------------------*/




/*---------------------------
      受託製造 prod_tech
---------------------------*/
.contact-radio {
	display: block;
}
.contact-radio + .contact-radio {
    margin-top: 10px;
}

.form-textarea-2 {
	margin-top: 10px;

	table-layout: fixed;
	box-sizing: border-box;
    width: 100%;
    height: 100px;
    padding: 15px 0 15px 15px;
    border: 1px solid #ccc;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

.contact-radio-flex {
	display: block;
  line-height: 2em;
}
.contact-radio-flex + .contact-radio-flex {
    margin-top: 10px;
}
.contact-radio-flex label {
	margin-left: 20px;
}
.contact-radio-2 {
	border: 1px solid #ccc;
}

.contact-radio-flex-2 {
	vertical-align: middle;
}

.form-textarea-3 {
	table-layout: fixed;
	box-sizing: border-box;
    width: 100%;
    height: 100px;
    padding: 15px 0 15px 15px;
    border: 1px solid #ccc;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}
.inner-contact-table {
  line-height: 3em;
}
.inner-contact-table th {
  width: 18%;
  text-align: left;
}
.inner-contact-table td {
  vertical-align: middle;
}
.form-radio-line {
  position: relative;
  line-height: 3em;
}
.form-radio-other {
  position: absolute;
  top: 0;
  right: 14%;
  width: 70%;
}
.form-radio-otherBottom {
  position: absolute;
  bottom: 0;
  right: 14%;
  width: 70%;
}
.form-radio-otherBottom02 {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 68%;  
}
.form-textarea-other {
  resize: none;
  width: 100%;
}


@media only screen and (max-width: 640px) {
	.contact-radio-flex label {
		display: block;
	}
  .form-radio-other {
    position: static;
    display: block;
    width: auto;
  }
  .form-radio-otherBottom {
    position: static;
    display: block;
    width: auto;
  }
  .form-radio-otherBottom02 {
    position: static;
    display: block;
    width: auto;
  }
}




/*---------------------------
  一般消費者向け商品 org_prod
---------------------------*/
.contact-skill {
    display: block;
}

.contact-skill + .contact-skill {
    margin-top: 10px;
}

.contact-skill-txt {
    margin-left: 5px;
}





/*---------------------------
  お問い合わせ インデックスページ
---------------------------*/
.contactList {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.contactListBox {
  position: relative;
  width: calc(50% - 20px);
  margin: 0 0 60px;
  padding: 60px 30px;
  text-align: center;
  background-color: #fff;
}
.contactListBox a {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.contactListBox:hover {
  opacity: .7;
  transition: .3s;
}
.list01 {
  border: solid 1px #006652;
  border-top: solid 8px #006652;
  box-sizing: border-box;
}
.list02 {
  border: solid 1px #7030a0;
  border-top: solid 8px #7030a0;
  box-sizing: border-box;
}
.list03 {
  border: solid 1px #175684;
  border-top: solid 8px #175684;
  box-sizing: border-box;
}
.list04 {
  border: solid 1px #f5a20b;
  border-top: solid 8px #f5a20b;
  box-sizing: border-box;
}
.list05 {
  height: 330px;
  border: solid 1px #ff7c80;
  border-top: solid 8px #ff7c80;
  box-sizing: border-box;
}
.contactListBox h3 {
  font-size: 24px;
  font-weight: 500;
  line-height: 1.4em;
}
@media only screen and (max-width: 640px) {
  .contactListBox {
    width: 100%;
    margin: 0 0 20px;
  }
  .list04 {
    height: 330px;
  }
}


.title01 {color: #006652;}
.title02 {color: #7030a0;}
.title03 {color: #175684;}
.title04 {color: #f5a20b;}
.title05 {color: #ff7c80;}

.contactListSubTitle01,.contactListSubTitle02,.contactListSubTitle03,.contactListSubTitle04,.contactListSubTitle05 {
  position: relative;
  display: block;
  font-size: 14px;
  font-weight: 300;
  text-align: center;
  margin: 20px 0 0;
  letter-spacing: .1em;
}
.contactListSubTitle01:before {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -27px;
  display: inline-block;
  width: 52.8172px;
  height: 4px;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  background-color: #006652;
  border-radius: 2px;
}
.contactListSubTitle02:before {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -27px;
  display: inline-block;
  width: 52.8172px;
  height: 4px;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  background-color: #7030a0;
  border-radius: 2px;
}
.contactListSubTitle03:before {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -27px;
  display: inline-block;
  width: 52.8172px;
  height: 4px;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  background-color: #175684;
  border-radius: 2px;
}
.contactListSubTitle04:before {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -27px;
  display: inline-block;
  width: 52.8172px;
  height: 4px;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  background-color: #f5a20b;
  border-radius: 2px;
}
.contactListSubTitle05:before {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -27px;
  display: inline-block;
  width: 52.8172px;
  height: 4px;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  background-color: #ff7c80;
  border-radius: 2px;
}
.contactListSubTxt {
  display: inline-block;
  margin: 55px auto 0;
  padding: 0;
  text-align: left;
  line-height: 1.8em;
}
.contactListBoxInner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  -webkit- transform: translateY(-50%) translateX(-50%);
  width: 100%;
}

.len30p {
  width: 30%;
  margin: 0 0 1em;
}
.len50p {
  width: 50%;
  margin: 0;
}
.inq-subtxt {
  margin: 0 0 5px;
  font-size: .8em;
  line-height: .8em;
}
@media only screen and (max-width: 640px) {
  .len30p {
    width: 100%;
    margin: 0 0 10px;
  }
  .len50p {
    width: 100%;
    margin: 0;
  }
}



































