@charset "utf-8";
/* CSS Document */

.mainContents .h_estimate_top {
	color: #FFF;
	font-weight: bold;
	text-align: center;
	font-size: 30px;
	background: #f33;
	padding: 15px 20px;
	margin: 15px 0 20px;
}
.mainContents .h_estimate_top span {
	position: relative;
	padding-left: 75px;
}
.mainContents .h_estimate_top span:before {
	content: "";
	display: block;
	background: url("../../_images/estimate/esti-icon.gif");
	width: 46px;
	height: 59px;
	position: absolute;
	top: -15px;
	left: 0px;
}

/*----分岐ボタン----*/
.branch_btn {
	background: #e0e3fa;
	padding: 25px 5px 45px;
	margin-bottom: 30px;
	border: 1px solid #b8b9fb;
}
.branch_btn dt {
	font-size: 17px;
	font-weight: bold;
	text-align: center;
	letter-spacing: .06em;
}
.branch_btn dt:after {
	content: "";
	display: block;
	width: 600px;
	height: 1px;
	background: #000;
	margin: 7px auto 15px;
}

.branch_btn dd ul {
	font-size:0;
	display:flex;
	flex-flow: row wrap;
	justify-content: center;
}
.branch_btn dd ul li {
	width: 235px;
	border-radius: 3px;
	border: 1px solid #c7c7c7;
	background-image: -moz-linear-gradient( 90deg, rgb(215,215,215) 0%, rgb(255,255,255) 28%);
	background-image: -webkit-linear-gradient( 90deg, rgb(215,215,215) 0%, rgb(255,255,255) 28%);
	background-image: -ms-linear-gradient( 90deg, rgb(215,215,215) 0%, rgb(255,255,255) 28%);
	padding: 20px;
	box-sizing: border-box;
	text-align: center;
	font-weight: bold;
	font-size: 20px;
	color: #333333;
	cursor: pointer;
	display: inline-block;
	margin: 0 10px;
	position: relative;
	vertical-align: top;
}
.branch_btn dd ul li span { font-size: 23px; display: block; }
.branch_btn dd ul li:first-child span { color: #f00425; }
.branch_btn dd ul li:nth-child(2) span { color: #2d3480; }
.branch_btn dd ul li:last-child span { color: #13bb86; }

.branch_btn dd ul li:hover {
	background-image: -moz-linear-gradient( 90deg, rgb(255,204,155) 0%, rgb(255,241,217) 28%);
	background-image: -webkit-linear-gradient( 90deg, rgb(255,204,155) 0%, rgb(255,241,217) 28%);
	background-image: -ms-linear-gradient( 90deg, rgb(255,204,155) 0%, rgb(255,241,217) 28%);
}

.branch_btn dd ul li:after {
	content: "";
	display: block;
	position: absolute;
	bottom: -23px;
	left: 50%;
	transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 16px 13px 0 13px;
}

.branch_btn dd ul li:first-child:after {
	border-color: #f00425 transparent transparent transparent;
}
.branch_btn dd ul li:nth-child(2):after {
	border-color: #2d3480 transparent transparent transparent;
}
.branch_btn dd ul li:nth-child(3):after {
	border-color: #13bb86 transparent transparent transparent;
}

@media screen and (max-width: 786px) {
	.branch_btn dt:after {
		width: 80%;
	}

	.branch_btn dd ul {
		width: 100%;
	}
	.branch_btn dd ul li {
		width: 31%;
		margin: 0 1%;
	}
}

@media screen and (max-width: 480px) {
	.mainContents .h_estimate_top {
		font-size: 23px;
		padding: 15px 15px;
	}
	.mainContents .h_estimate_top span {
		padding-left: 50px;
	}
	.mainContents .h_estimate_top span:before {
		width: 37px;
		height: 47px;
		background-size: contain;
		top: 50%;
		transform: translateY(-50%);
		-webkit-transform: translateY(-50%);
		left: 0px;
	}
	
	/**/
	.branch_btn {
	    padding: 25px 5px 20px;
	}

	.branch_btn dt {
		font-size: 15px;
		padding: 0 10px;
		line-height: 1.2em;
	}

	.branch_btn dd ul li {
		width: 45%;
		margin: 0 2% 10px;
		font-size: 14px;
		padding: 15px 30px 15px 15px;
		line-height: 1.4em;
	}
	.branch_btn dd ul li span { font-size: 17px; }

	.branch_btn dd ul li:after {
		top: 50%;
		transform: translateY(-50%);
		-webkit-transform: translateY(-50%);
		left: auto;
		right: 15px;
		border-width: 10px 8px 0 8px;
	}
}


/*---エラー-------------*/
.error_text p {
	background: #ffe9e0;
	border-radius: 3px;
	color: #ff2914;
	font-weight: bold;
	line-height: 1.2em;
	padding: 10px 20px;
	font-size: 13px;
	display: inline-block;
	letter-spacing: .08em;
	margin-bottom: 10px;
	border: 1px solid #ff0b0b;
}
.customerBox .error_text {
	margin: 5px 0 0;
}
	
	
	

/*---独自エリア-------------*/
.estimate_cont .h_estimate {
	font-size: 22px;
	font-weight: bold;
	text-align: center;
	padding: 10px;	
	margin-bottom: 20px;
	color: #FFF;
	position: relative;
}
.estimate_cont .h_estimate:after {
	content: "";
	display: block;
	width: 100%;
	height: 2px;
	position: absolute;
	bottom: -4px;
	left: 0;
}

.estimateMain .switch-section:first-of-type .estimate_cont .h_estimate,
.estimateMain .switch-section:first-of-type .estimate_cont .h_estimate:after { background: #f00425; }
.estimateMain .switch-section:nth-of-type(2) .estimate_cont .h_estimate,
.estimateMain .switch-section:nth-of-type(2) .estimate_cont .h_estimate:after { background: #2d3480; }
.estimateMain .switch-section:nth-of-type(3) .estimate_cont .h_estimate,
.estimateMain .switch-section:nth-of-type(3) .estimate_cont .h_estimate:after { background: #13bb86; }


/*---見積-------------*/
.estimate_cont .estimate_box {
	background: #EAECF0;
	padding: 15px 25px;
	box-sizing: border-box;
	border-radius: 5px;
	margin-bottom: 20px;
}


.estimate_cont .estimate_box h4 {
	font-size: 17px;
	color: #1b2a5d;
	font-weight: bold;
	padding: 3px 10px;
	border-bottom: 1px solid #1b2a5d;
	margin-bottom: 15px;
	letter-spacing: .08em;
	line-height: 1.3em;
}
.estimate_cont .estimate_box > h4.required:before {
	content: "必須";
	font-size: 13px;
	padding: 1px 10px;
	border-radius: 30px;
	background: #ff1818;
	margin-right: 10px;
	color: #FFF;
}

.estimate_cont .estimate_box > dd {
	font-size: 17px;
	margin-bottom: 55px;
}

.estimate_cont .estimate_box > dd:after {  
  content: ".";   
  display: block;   
  height: 0;   
  clear: both;
  visibility: hidden;  
}  


@media screen and (max-width: 786px) {
	
	.estimate_cont .estimate_box {
		margin: 0 15px 20px;
	}
	
	.estimate_cont .estimate_box > dd {
		width: 94%;
		margin: 0 auto 55px;
	}
}

@media screen and (max-width: 480px) {
	.estimate_cont .estimate_box > dd{
		width: 90%;
		margin: 0 auto 40px;
		font-size: 14px;
	}
	
	.estimate_cont .estimate_box h4 {
		font-size: 15px;
		padding: 0 0 5px;
	}
}


/*---入力フォーム設定-------------*/

input,
select,
textarea {
	margin: 0 3px;
	padding: 10px;
	border: 1px solid #ababab;
	box-sizing: border-box;
	transition: all 0.1s ease-out;
	font-size: 15px;
}

input:focus,
select:focus,
textarea:focus {
	background-color: #ffe9c4;
	border: 1px solid #ffb83b;
	z-index: 10;
    outline: 0;
}

textarea {
	width: 80%;
}

input[type="tel"] {
	width: 20%!important;
}

::placeholder {
  color: #797979;
}


@media screen and (max-width: 480px) {
	/* iOSでのデフォルトスタイルをリセット */
	input[type="submit"],
	input[type="button"] {
	  border-radius: 0 !important;
	  -webkit-box-sizing: content-box;
	  -webkit-appearance: button;
	  appearance: button;
	  border: none;
	  box-sizing: border-box;
	  cursor: pointer;
	}
	input[type="submit"]::-webkit-search-decoration,
	input[type="button"]::-webkit-search-decoration {
	  display: none;
	}
	input[type="submit"]::focus,
	input[type="button"]::focus {
	  outline-offset: -2px;
	}
	input[type=text],
	input[type=select],
	input[type=textarea]{
	  font-size: 16px;
	}
}


/*-----ラジオボタン------------*/

.estimate_cont .type_radio img {
	margin-top: 15px;
}


.estimate_cont .estimate_box input[type="radio"]{
	border: none;
	vertical-align: middle;
}
.estimate_cont .estimate_box li label {
  display: inline-block;
  word-break: break-all;
	cursor: pointer;
}
input[type="radio"]:checked + span {
    color: #ff5312;
    font-weight: bold;
}

.estimate_cont .estimate_box li label input[type="radio"] + span {
  position: relative;
  padding: 0 0 0 30px;
  text-align: center;
	letter-spacing: 0;
}
.estimate_cont .estimate_box li label input[type="checkbox"] + span {
  position: relative;
  padding: 0 0 0 30px;
}
.estimate_cont .estimate_box li label input[type="radio"] + span::before {
  border: 1px solid #b1b1b1;
	background: #FFF;
}
.estimate_cont .estimate_box label input[type="radio"] {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}
.estimate_cont .estimate_box label input[type="radio"] + span::before {
  content: '';
  display: block;
  background-color: transparent;
  width: 20px;
  height: 20px;
  border: 2px #78909c solid;
  box-sizing: border-box;
  border-radius: 50%;
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
  margin: auto;
}
.estimate_cont .estimate_box li label input[type="radio"]:checked + span::after {
  content:"";
  display: block;
  box-sizing: border-box;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #f81212;
  position: absolute;
  top: 4px;
  left: 4px;
  margin: auto;
}

.estimate_cont .estimate_box li {
	font-size: 16px;
	line-height: 1.8em;
	margin-bottom: 5px;
	vertical-align: middle;
	position: relative;
}

/*カスタムラジオボタン*/
.estimate_cont .type_custom_radio .radio-input {
	display: block;
	margin-bottom: 5px;
}

.estimate_cont .type_custom_radio li > span,
.estimate_cont .type_radio li > span{
	background: #FFF;
	padding: 5px 20px;
	margin: 0 10px 7px 0;
	display: inline-block;
	border-radius: 5px;
	font-size: 15px;
}
.estimate_cont .type_custom_radio li > span input[type="text"] {
	width: 6em;
}

.estimate_cont .type_custom_radio li > span.material_name input[type="text"] {
	width: 20em;
}


@media screen and (max-width: 786px) {
	.estimate_cont .type_radio dd > ul {
		width: 53%;
		margin-left: 2%;
	}
	
	.estimate_cont .type_custom_radio li > span.material_name input[type="text"] {
		width: 60%;
	}
}

@media screen and (max-width: 480px) {
	.estimate_cont .type_radio dd > ul {
		width: 100%;
		float: none;
	}
	.estimate_cont .type_custom_radio li > span.material_name input[type="text"] {
		width: 70%;
	}
}




/*-----チェックボックス------------*/

.estimate_cont .type_check ul {
	margin: 0 0 10px;
	word-break: break-all;
}
.estimate_cont .type_check li {
	display: inline-block;
	margin: 0 15px 10px 0;
}
input[type="checkbox"]:checked + span {
    color: #345ca6;
    font-weight: bold;
}

.estimate_cont .type_check li label input[type="checkbox"] + span {
  position: relative;
  padding: 0 0 0 30px;
}
.estimate_cont .type_check li label input[type="checkbox"] + span::before {
  border: 1px solid #b1b1b1;
	background: #FFF;
}
.estimate_cont .type_check label input[type="checkbox"] {
  position: absolute;
	top: 0;
	left: 0;
	opacity: 0;
}
.estimate_cont .type_check label input[type="checkbox"] + span::before {
  content: '';
  display: block;
  background-color: transparent;
  width: 20px;
  height: 20px;
  border: 2px #78909c solid;
  box-sizing: border-box;
  position: absolute;
  z-index: 0;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
}
.estimate_cont .type_check li label input[type="checkbox"]:checked + span::after {
  content:"";
  display: block;
  box-sizing: border-box;
  width: 11px;
  height: 21px;
  border-bottom: 4px solid #f81212;
  border-right: 4px solid #f81212;
  transform: rotate(45deg);
  position: absolute;
  top: -10px;
  bottom: 0;
  left: 7px;
  margin: auto;
}



/*-----プルダウン------------*/

.estimate_cont .type_pull .formSelect{
	width: 360px;
	position: relative;
}
.estimate_cont .type_pull .formSelect:after {
	content: "";
	display: block;
	right: 20px;
	top: 50%;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 12px 8px 0 8px;
	border-color: #1d1d1d transparent transparent transparent;
	pointer-events: none;
	position: absolute;
}

.estimate_cont .type_pull select{
	width: 100%;
	padding-right: 1em;
	cursor: pointer;
	text-indent: 0.01px;
	text-overflow: ellipsis;
	border: none;
	outline: none;
	background: #fff;
	background-image: none;
	box-shadow: none;
	-webkit-appearance: none;
	appearance: none;
}
.estimate_cont .type_pull select::-ms-expand {
    display: none;
}

.estimate_cont .type_pull .selectBtn {
	border: 1px solid #bbbbbb;
	border-radius: 5px;
	position: relative;
	box-sizing: border-box;
	background: rgb(255,255,255);
	background: linear-gradient(180deg, rgba(255,255,255,1) 60%, rgba(226,226,226,1) 100%);
}


.estimate_cont .type_pull img {
	float: right;
}

@media screen and (max-width: 786px) {
	.estimate_cont .type_pull img {
		width: 40%;
	}
	.estimate_cont .type_pull .selectBtn {
		width: 53%;
	}
}

@media screen and (max-width: 480px) {
	
	.estimate_cont .type_pull .formSelect{
		width: 100%;
	}

	.estimate_cont .type_pull img {
		width: 100%;
		float: none;
		margin-top: 15px;
	}
	.estimate_cont .type_pull .selectBtn {
		width: 100%;
		float: none;
	}
}




/*-----テキストエリア------------*/

.estimate_cont .type_comment textarea {
	width: 745px;
	height: 8em;
	padding: 10px;
	box-sizing: border-box;
	margin: 0 auto;
	display: block;
}

@media screen and (max-width: 786px) {
	.estimate_cont .type_comment textarea {
		width: 100%;
	}
}



/*-----ファイルアップロード------------*/
.estimate_cont .type_upload input {
	margin-left: 20px;
	background: #FFF;
}
.estimate_cont .type_upload .caution {
	width: 90%;
	margin: 20px auto;
}
.estimate_cont .type_upload .caution dt {
	color: #FFF;
	font-size: 17px;
	font-weight: bold;
	background: #ff3d23;
	padding: 5px 30px;
	letter-spacing: .1em;
	box-sizing: border-box;
}
.estimate_cont .type_upload .caution dd {
	font-size: 13px;
	line-height: 1.5em;
	background: #FFF;
	padding: 15px 30px;
	box-sizing: border-box;
}


@media screen and (max-width: 786px) {
	.estimate_cont .type_upload input {
		margin: 0;
		width: 100%;
	}

	.estimate_cont .type_upload .caution {
		width: 90%;
		margin: 15px auto;
	}
	.estimate_cont .type_upload .caution dt {
		font-size: 14px;
		padding: 10px 10%;
		line-height: 1.4em;
	}
	.estimate_cont .type_upload .caution dd {
		font-size: 12px;
		padding: 15px 10%;
	}
}

@media screen and (max-width: 480px) {
	.estimate_cont .type_upload .caution {
		width: 100%;
	}
}




/*-----1行テキスト------------*/
.estimate_cont .type_text input {
	width: 450px;
	margin: 0 0 20px;
}


@media screen and (max-width: 786px) {
	.estimate_cont .type_text input {
		width: 80%;
		margin: 0 10px 0 0;
	}
}


/*--カレンダー--*/
.estimate_cont .type_calendar input {
	width: 15em;
}
.estimate_cont .type_calendar .calendarForm {
	position: relative;
	padding-left: 65px;
}
.estimate_cont .type_calendar .calendarForm label:before{
	content: "";
	display: block;
	width: 35px;
	height: 40px;
	background-image: url(../../_images/estimate/icon-calendar.gif);
	background-repeat: no-repeat;
	position: absolute;
	left: 20px;
	top: 0;
}

@media screen and (max-width: 480px) {
	.estimate_cont .type_calendar .calendarForm {
		padding-left: 18%;
	}
	.estimate_cont .type_calendar input {
		width: 90%;
	}
	.estimate_cont .type_calendar .calendarForm label:before{
		width: 20%;
		height: 96%;
		background-size: contain;
		left: 0;
	}
}


/*-----サイズ------------*/
.estimate_cont .estimate_box .size_box {
	width: 630px !important;
	margin: 20px auto 0 !important;
	background: #f3f5fe;
	border: 1px solid #5c67a2;
	box-sizing: border-box;
	display:flex;
	flex-flow: row wrap;
	justify-content: space-between;
}
.estimate_cont .estimate_box .size_box dl {
	width: 468px;
	padding: 20px 25px;
	box-sizing: border-box;
	font-family: "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "Yu Gothic", "游ゴシック", "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
	font-weight: bold;
	color: #1b1b1b;
	word-break: break-all;
}

.estimate_cont .estimate_box .size_box dl dt {
	font-size: 17px;
	color: #1E6AD0;
	margin-bottom: 10px;
	text-shadow: 
	#FFF 2px 0px,  #FFF -2px 0px,
	#FFF 0px -2px, #FFF 0px 2px,
	#FFF 2px 2px , #FFF -2px 2px,
	#FFF 2px -2px, #FFF -2px -2px,
	#FFF 1px 2px,  #FFF -1px 2px,
	#FFF 1px -2px, #FFF -1px -2px,
	#FFF 2px 1px,  #FFF -2px 1px,
	#FFF 2px -1px, #FFF -2px -1px;
}
.estimate_cont .estimate_box .size_box dl dd li span {
	background: #22416c;
	color: #FFF;
	line-height: 1.4em;
}

@media screen and (max-width: 786px) {
	.estimate_cont .estimate_box .size_box {
		width: 100% !important;
	}
	.estimate_cont .estimate_box .size_box img {
		width: 27%;
	}
	.estimate_cont .estimate_box .size_box dl {
		width: 70%;
		padding: 20px 25px;
	}
}

@media screen and (max-width: 480px) {
	.estimate_cont .estimate_box .size_box {
		padding: 0;
	}
	.estimate_cont .estimate_box .size_box img {
		padding: 0 22%;
		background: #fff;
		display: block;
		margin: 0 auto;
		width: 56%;
	}
	.estimate_cont .estimate_box .size_box dl {
		width: 100%;
		padding: 20px;
		line-height: 1.4em;
	}
	.estimate_cont .estimate_box .size_box dl dd {
		text-align: center;
	}
	.estimate_cont .estimate_box .size_box dl dd li {
		font-size: 14px;
	}
	.estimate_cont .estimate_box .size_box dl dd li span {
		display: block;
		margin: 0 0 5px;
	}
}


/*---メディアの色数-------------*/

@media screen and (max-width: 480px) {
	.estimate_cont .estimate_box .scroll {
		width: 100%;
		overflow: auto;
		margin-top: 15px;
	}
	.estimate_cont .estimate_box .scroll img {
		width: 700px;
		margin: 0;
	}
}

/*-----サイズ------------*/
.estimate_cont .estimate_box .linkBtn {
	float: left;
	width: 340px !important;
}
.estimate_cont .estimate_box .linkBtn a {
	margin: 20px auto 0;
	font-size: 17px;
	width: 100%;
	background: #31c588;
	border-color: #7fe8be;
}
.estimate_cont .estimate_box .linkBtn a {
	margin: 0 auto;
	font-size: 21px;
	padding: 15px 55px 15px 20px;
}
.estimate_cont .estimate_box .linkBtn a:after {
    right: 25px;
}

@media screen and (max-width: 786px) {
	.estimate_cont .estimate_box .linkBtn {
		margin: 0 auto;
		width: 43% !important;
	}
}

@media screen and (max-width: 480px) {
	.estimate_cont .estimate_box .linkBtn {
		margin: 20px auto 0 !important;
		width: 85% !important;
		float: none;
		font-size: 15px;
	}
}


/*----お客様情報---------------*/
.customerBox {
	margin-top: 50px;
}

.customerBox .h_line {
	color: #161616;
	font-weight: bold;
	font-size: 25px;
	letter-spacing: .08em;
	border-bottom: 1px solid #000;
	border-left: 7px solid #fb8404;
	padding: 10px 30px;
	margin-bottom: 25px;
}

.customerBox table {
	width: 100%;
	margin: 5px 0;
	border-collapse: separate;
	border-spacing: 0 10px;
}
.customerBox table th{
	background-color: #efefef;
	width: 270px;
	padding: 15px 20px;
	font-size: 16px;
	font-weight: bold;
	color: #3b4276;
	box-sizing: border-box;
}
.customerBox table th.required{
	padding-right: 35px;
	position: relative;
}
.customerBox table th.required:after{
	content: "必須";
	display: inline-block;
	background-color: #ff1818;
	color: #fff;
	padding: 5px 10px;
	line-height: 1em;
	border-radius: 30px;
	font-size: 13px;
	font-weight: bold;
	margin-left: 20px;
}

.customerBox table td {
	width: 580px;
	padding: 8px 20px;
	box-sizing: border-box;
}

.customerBox table td input {
	width: 70%;
}

.customerBox table .timeCaution td  input{
	width: 10em;
	margin: 0 10px 10px 0;
}
.customerBox table .timeCaution td p{
	margin: 10px 0 0;
	font-size: 12px;
	line-height: 1.4em;
}


@media screen and (max-width: 786px) {

	.customerBox h3 {
		font-size: 20px;
		padding: 10px 25px;
	}
	.customerBox table tr,
	.customerBox table th,
	.customerBox table td {
		display: block;
		width: 100%;
	}

	.customerBox table th{
		padding: 10px 25px;
	}
}

@media screen and (max-width: 480px) {
	.customerBox table td input {
		width: calc(100% - 6px);
	}
	
	.customerBox table .timeCaution td input {
		width: 5em;
	}
	
	.customerBox .h_line {
		font-size: 19px;
		padding: 10px 15px;
	}
}


/*--送信ボタン--*/
.formSendBtn{
	margin: 30px 0 100px;
}

.formSendBtn input{
	display: block;
	width: 80%;
	color: #fff;
	margin: auto;
	padding: 15px 10px;
	font-size: 28px;
	letter-spacing: .1em;
	font-weight: bold;
	text-align: center;
	box-sizing: border-box;
	font-family: "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "Yu Gothic", "游ゴシック", "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
}

.formSendBtn input[type="submit"]{
	background-color: #f22424;
	border: 5px solid #ff567a;
	margin-bottom: 20px;
}

.formSendBtn input[type="button"]{
	background-color: #888;
	border: 3px solid #b7b7b7;
	font-size: 22px;
	padding: 10px 10px;
	width: 60%;
}
.formSendBtn input[type="submit"]:hover,
.formSendBtn input[type="button"]:hover{
	opacity: 0.5;
}


@media screen and (max-width: 480px) {
	
	.formSendBtn input[type="submit"]{
		font-size: 22px;
	}
	.formSendBtn input[type="button"]{
		font-size: 18px;
	}
}



/*----確認画面-----------------------*/
.confirm_cont .estimate_box .inner > div {
	font-size: 16px;
}

.confirm_cont .estimate_box .inner > div span {
  background: #FFF;
  padding: 5px 20px;
  margin: 5px 10px 7px 0;
  display: inline-block;
  border-radius: 5px;
  font-size: 15px;
}


.confirm_cont .size_box img {
  margin-top: 0;
}

.confirm_cont .estimate_box.type_check ul li:after {
	content: ","
}
.confirm_cont .estimate_box.type_check ul li:last-child:after {
	content: none;
}


/*----送信完了-----------------------*/
.commitBox .addressBox {
	margin: 20px auto 30px;
	width: 80%;
	line-height: 1.6em;
}
.commitBox .addressBox dt {
	color: #FFF;
	background: #5F6791;
	padding: 10px 20px;
	font-size: 16px;
	font-weight: bold;
	letter-spacing: .08em;
}
.commitBox .addressBox dd {
	background: #E6E6E6;
	padding: 10px 20px;
	font-size: 15px;
}

@media screen and (max-width: 786px) {
	.commitBox .addressBox {
		width: 100%;
	}
}



/*-----------------------------------------------------------
  フリーエリア
------------------------------------------------------------*/
.item_cont .basic_cont {
	margin: 0 auto 35px;
	padding-bottom: 35px;
	border-bottom: 1px dotted #000000;
}

.item_cont .basic_cont > .clearfix {
	margin-bottom: 40px;
}

.item_cont .item_img {
	width: 420px;
	float: left;
	position: sticky;
	top: 20px;
}
.item_cont .basic_cont .item_data {
	width: 350px;
	float: right;
}

.item_cont .item_img .bxslider {
    height: 420px;
    background: #f7f7f7;
    border-radius: 10px;
}

.item_cont .item_img .bxslider li {
    display: none;
}
.item_cont .item_img .bx-viewport .bxslider li {
    display: block !important;
}

.item_cont .item_img .bx-controls {
	display: none;
}

.item_cont .item_img .bx-wrapper img {
	width: 100%;
	border: 1px solid #909090;
	box-sizing: border-box;
}
.item_cont .item_img .bx-pager {
	margin: 15px auto 30px;
}
.item_cont .item_img .bx-pager li {
	width: 76px;
	margin: 0 10px 8px 0;
	float: left;
	background-color: #ff2e2e;
}
.item_cont .item_img .bx-pager li:nth-child(5n) { margin-right: 0; }
.item_cont .item_img .bx-pager li img { 
	width: 100%;
	border: 1px solid #909090;
	box-sizing: border-box;
}
.item_cont .item_img .bx-pager li a.active {
	position: relative;
	display: block;
}
.item_cont .item_img .bx-pager li a.active img {
	opacity: .8;
	border: 1px solid #ff2e2e;
	box-shadow: 0px 0px 0px 2px #ff2e2e;
}


/*--お見積りフォームへ進む-------*/
.item_cont .item_img .estimate_link {
	width: 90%;
	margin: 0 auto;
}

.item_cont .item_img .estimate_link a {
	display: block;
	background: #1d2335;
	color: #FFF;
	border-radius: 5px;
	text-align: center;
	padding: 20px 65px 20px 20px;
	transition:0.3s all;
	font-size: 19px;
	letter-spacing: .1em;
	font-weight: bold;
	position: relative;
	box-shadow: 0px 1px 4px 1px rgba(0, 0, 0, 0.3);
}
.item_cont .item_img .estimate_link a:before {
	content: "";
	display: block;
	position: absolute;
	width: 30px;
	height: 30px;
	background: #FFF;
	border-radius: 50%;
	right: 30px;
	top: 50%;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
}
.item_cont .item_img .estimate_link a:after {
	content: "";
	display: block;
	position: absolute;
	right: 44px;
	width: 6px;
	height: 6px;
	border-bottom: 2px solid #606060;
	border-right: 2px solid #606060;
	-webkit-transform: rotate(45deg) translateY(-50%);
	transform: rotate(45deg) translateY(-50%);
	top: 47%;
}


/*--商品データ-------*/
.item_cont .item_data .item_data_h {
	font-size: 20px;
	font-weight: bold;
	color: #132253;
	border-left: 4px solid #132253;
	padding: 0 15px;
	line-height: 1.2em;
	margin-bottom: 25px;
}

.item_cont .item_data .grad-wrap {
	font-size: 13px;
	margin-bottom: 15px;
}

.item_cont .item_data .itemdata_list { 
	margin-bottom: 10px;
	font-size: 0;
}
.item_cont .item_data  .itemdata_list li {
	color: #FFF;
	font-size: 12px;
	padding: 6px 10px;
	display: inline-block;
	margin: 0 7px 5px 0;
	line-height: 1em;
}
.item_cont .item_data .itemdata_list li.xbanner { background: #ff2c0f; }
.item_cont .item_data  .itemdata_list li.lbanner { background: #00c432; }
.item_cont .item_data  .itemdata_list li.roll { background: #0722f8; }
.item_cont .item_data  .itemdata_list li.in { background: #ff8b0f; }
.item_cont .item_data  .itemdata_list li.out { background: #369500; }
.item_cont .item_data  .itemdata_list li.media_ok { background: #413c9a; }
.item_cont .item_data  .itemdata_list li.media_no { background: #91c70f; }
.item_cont .item_data  .itemdata_list li.double { background: #ff114d; }
.item_cont .item_data  .itemdata_list li.water { background: #0040d1; }



/*--table--*/
.item_cont .item_data .about_table table,
.item_cont .item_data .about_table table tbody,
.item_cont .item_data .about_table table tr {
	width: 100%;
}
.item_cont .item_data .about_table table tr {
	display: flex;
}
.item_cont .item_data .about_table table {
	border-top: 1px solid #d7d7d7;
	line-height: 1.3em;
}
.item_cont .item_data .about_table table th {
	width: 35%;
	background: #f7f7f7;
	color: #2331ae;
	padding: 10px 17px;
	font-weight: bold;
	box-sizing: border-box;
}
.item_cont .item_data .about_table table td {
	padding: 10px 17px;
	word-break: break-all;
	width: 65%;
	box-sizing: border-box;
	font-size: 13px;
}
.item_cont .item_data .about_table td ul li {
	margin-bottom: 5px;
}
.item_cont .item_data .about_table td ul.circle li {
	text-indent: -10px;
	padding-left: 10px;
}
.item_cont .item_data .about_table td ul.circle li:before {
	content: "";
	display: inline-block;
	width: 3px;
	height: 3px;
	background: #2E2E2E;
	border-radius: 50%;
	margin-right: 7px;
	vertical-align: middle;
}
.item_cont .item_data .about_table td ul.circle p {
	font-size: 12px;
	margin: 0 0 10px 15px;
	display: inline;
}

.item_cont .item_data .about_table td ul li:last-child {
	margin-bottom: 0;
}
.item_cont .item_data .about_table table tr {
	border-bottom: 1px solid #d7d7d7;
}

.item_cont .item_data .about_table {
	width: 100%;
	margin-bottom: 25px;
}


/*--同シリーズリンク--*/
.item_cont .item_data .about_table .series_link dl {
	margin-bottom: 15px;
}
.item_cont .item_data .about_table .series_link dl:last-child {
	margin-bottom: 0;
}

.item_cont .item_data .about_table .series_link dt {
	color: #424242;
	margin-bottom: 5px;
	font-weight: bold;
}
.item_cont .item_data .about_table .series_link dd ul {
	display:flex;
	flex-flow: row wrap;
	justify-content: space-between;
}
.item_cont .item_data .about_table .series_link dd ul li {
	width: 49%;
	text-align: center;
}
.item_cont .item_data .about_table .series_link dd a {
	padding: 6px 10px;
	display: block;
	border: 1px solid #a2a2a2;
	border-bottom: 2px solid #a2a2a2;
	border-radius: 3px;
	line-height: 1.2em;
	font-size: 13px;
}
.item_cont .item_data .about_table .series_link dd a:hover {
	opacity: 1;
	background: #647BE9;
	color: #FFF;
}

/**/
.item_cont .item_data .item_text {
	font-size: 13px;
	line-height: 1.8em;
}


/*other*/
.item_cont .item_other {
	margin-bottom: 40px;
	text-align: center;
}

.item_cont .item_other ul {
	display:flex;
	flex-flow: row wrap;
	justify-content: space-between;
	margin: 0 1%;
}

.item_cont .item_other li {
	width: 48%;
	margin-bottom: 35px;
}
.item_cont .item_other li img {
	width: 100%;
	border: 1px solid #909090;
	box-sizing: border-box;
	margin-bottom:10px;
}
.item_cont .item_other li p{
	font-size:13px;
	line-height:1.8em;
	text-align:left;
}


@media screen and (max-width: 786px) {
	.item_cont .basic_cont {
		width: 94%;
	}
	.item_cont .item_img {
		width: 48%;
        top: 70px;
	}

	.item_cont  .basic_cont .item_data {
		width: 48%;
	}
    
    .item_cont .item_img .bxslider {
        height: 300px;
    }

	.item_cont .item_img .bx-pager li {
		width: 16%;
		margin: 0 5% 8px 0;
	}
	
	
	/*--table--*/
	.item_cont .item_data .about_table {
		width: 100%;
	}
	
	
	/*other*/
	.item_cont .item_other {
		width: 94%;
		margin: 0 auto 60px;
	}
}


@media screen and (max-width: 480px) {
	.item_cont .basic_cont {
		width: 90%;
	}
	
	.item_cont .basic_cont > .clearfix {
		margin-bottom: 30px;
	}
	
	.item_cont .item_img {
		width: 90%;
		float: none;
		margin: 0 auto 15px;
		position: static;
	}
	
	.item_cont  .basic_cont .item_data {
		width: 100%;
		float: none;
	}
	
	.item_cont .item_data .grad-wrap {
		margin-bottom: 20px;
	}
	
	
	/*--お見積りフォームへ進む-------*/
	.item_cont .item_img .estimate_link {
		width: 100%;
		margin: 0 auto 40px;
	}

	.item_cont .item_img .estimate_link a {
		padding: 15px 65px 15px 20px;
		font-size: 17px;
	}
	.item_cont .item_img .estimate_link a:before {
		width: 25px;
		height: 25px;
	}
	.item_cont .item_img .estimate_link a:after {
		right: 42px;
		top: 48%;
	}
	
	
	/**/
	.item_cont .item_data .item_text {
		padding: 0 10px;
	}
	
	
	/*other*/
	.item_cont .item_other {
		width: 90%;
		margin: 0 auto 30px;
	}
	.item_cont .item_other li {
		width: 100%;
		margin-bottom:45px;
	}
	
}



/*---納期---------*/
.item_time {
	margin: 20px auto 0;
	width: 90%;
}
.item_time_box {
	padding: 15px 25px;
	border: 1px solid #d3d3d3;
	box-sizing: border-box;
	margin: 0 auto 7px;
}
.item_time .item_time_h {
	color: #1f1f1f;
	font-size: 16px;
	font-weight: bold;
	text-align: center;
}
.item_time .item_time_h:after {
	content: "";
	width: 80%;
	height: 1px;
	background: #1f1f1f;
	display: block;
	margin: 2px auto 10px;
}

.item_time_box ul {
	display:flex;
	flex-flow: row wrap;
	justify-content: space-between;
}

.item_time_box ul li {
	width: 49%;
	text-align: center;
}
.item_time_box ul li:first-child {
	margin-bottom: 10px;
}
.item_time_box dl dt { line-height: 1.2em; }
.item_time_box dl dt { 
	font-weight: bold;
	color: #FFF;
	padding: 5px 15px;
}
.item_time_box dl dd {
	font-size: 16px;
	font-weight: bold;
	color: #414141;
	padding: 5px 15px;
	background: #efefef;
}
.item_time_box dl.set dt { background: #fe1734; }
.item_time_box dl.single dt { background: #106af0; }

.item_time_box dl.set dd span { color: #fe1734; }
.item_time_box dl.single dd { color: #106af0; }

.item_time small { font-size: 12px; display: block; }


@media screen and (max-width: 786px) {
	.item_time {
		width: 100%;
	}
}

@media screen and (max-width: 480px) {
	
	.item_time .item_time_h {
		font-size: 14px;
	}
		
	.item_time_box {
		padding: 15px;
	}
	
	.item_time_box ul li {
		width: 100%;
	}
	.item_time_box li { margin-bottom: 10px; }
	.item_time_box li:last-child { margin-bottom: 0; }
	
	.item_time_box dl dt { 
		font-size: 13px;
		padding: 3px 15px;
	}
	.item_time_box dl dd {
		font-size: 14px;
	}
	
}


/*---完売対応---------*/
.item_cont.soldout + .estimateMain {
	display: none;
}

.item_cont.soldout .soldout_cont {
	width: 75%;
	margin: 0 auto 50px;
	border: 3px solid #EE2427;
	padding: 3px;
}

.item_cont.soldout .soldout_cont dl {
	border: 1px solid #EE2427;
	text-align: center;
}

.item_cont.soldout .soldout_cont dl dt {
	font-size: 30px;
	font-weight: 700;
	color: #FFF;
	background: #EE2427;
	padding: 15px 20px;
	letter-spacing: .1em;
}

.item_cont.soldout .soldout_cont dl dd {
	padding: 15px 25px;
}

.item_cont.soldout .soldout_cont dl dd p {
	font-weight: 700;
	font-size: 18px;
	letter-spacing: .1em;
	color: #373030;
}


.item_cont.soldout .soldout_cont dl dd .contact_btn {
	margin-top: 15px;
	display:flex;
	flex-flow: row wrap;
	justify-content: space-between;
}

.item_cont.soldout .soldout_cont dl dd .contact_btn img {
	width: 100%;
}

.item_cont.soldout .soldout_cont dl dd .mail {
	width: 40%;
}
.item_cont.soldout .soldout_cont dl dd .mail a {
	display: block;
	background: #ffef38;
	border-radius: 5px;
	text-align: center;
	padding: 25px 11%;
	box-shadow:0 8px 0 0 #b0a200;
	margin-top: 8px;
	transform: translateY(-8px);
	transition:0.3s all;
}
.item_cont.soldout .soldout_cont dl dd .mail a:hover {
	box-shadow:0 2px 0 0 #b0a200;
	transform: translateY(-2px);
	opacity: .6;
}

.item_cont.soldout .soldout_cont dl dd .coll {
	width: 57%;
	border: 1px solid #a4a4a4;
border-radius: 5px;
overflow: hidden;
}


.item_cont.soldout .estimate_link {
	background: #EE2427;
	color: #FFF;
	border-radius: 5px;
	text-align: center;
	padding: 20px;
	font-size: 22px;
	letter-spacing: .1em;
	font-weight: bold;
	position: relative;
	box-shadow: 0px 1px 4px 1px rgb(0 0 0 / 30%);
	box-sizing: border-box;
}


@media screen and (max-width: 786px) {
	.item_cont.soldout .soldout_cont dl dd .mail {
		width: 41%;
	}
	.item_cont.soldout .soldout_cont dl dd .mail a img {
		width: 80%;
	}
	
	.item_cont.soldout .soldout_cont dl dd .coll {
		width: 57%;
	}
}

@media screen and (max-width: 480px) {
	.item_cont.soldout .soldout_cont {
		width: 85%;
	}
	
	.item_cont.soldout .soldout_cont dl dt {
		font-size: 24px;
	}
	
	.item_cont.soldout .soldout_cont dl dd p {
		font-size: 16px;
	}
	
	
	.item_cont.soldout .soldout_cont dl dd .mail {
		width: 100%;
		margin-bottom: 15px;
	}
	.item_cont.soldout .soldout_cont dl dd .mail a {
		padding: 15px 5%;
	}
	.item_cont.soldout .soldout_cont dl dd .mail a img {
		width: 65%;
		max-width: 240px;
	}
	
	.item_cont.soldout .soldout_cont dl dd .coll {
		width: 100%;
	}
	
	
	.item_cont.soldout .estimate_link {
		font-size: 17px;
	}
	

}





/*----商品詳細修正後に消す　▼▼▼　----------------------------------------------*/

/*---納期---------*/
.item_data .item_time {
	margin: 20px auto 0;
	width: 100%;
}
.item_data .item_time_box {
	padding: 10px 15px;
	border: 1px solid #d3d3d3;
	box-sizing: border-box;
	margin: 0 auto 7px;
}
.item_data .item_time .item_time_h {
	color: #1f1f1f;
	font-size: 16px;
	font-weight: bold;
	text-align: center;
}
.item_data .item_time .item_time_h:after {
	content: "";
	width: 80%;
	height: 1px;
	background: #1f1f1f;
	display: block;
	margin: 2px auto 10px;
}

.item_data .item_time_box ul li {
	width: 100%;
	text-align: center;
}
.item_data .item_time_box ul li:first-child {
	margin-bottom: 10px;
}
.item_data .item_time_box dl dt { line-height: 1.2em; }
.item_data .item_time_box dl dt { 
	font-weight: bold;
	color: #FFF;
	padding: 5px 15px;
}
.item_data .item_time_box dl dd {
	font-size: 16px;
	font-weight: bold;
	color: #414141;
	padding: 5px 15px;
	background: #efefef;
}
.item_data .item_time_box dl.set dt { background: #fe1734; }
.item_data .item_time_box dl.single dt { background: #106af0; }

.item_data .item_time_box dl.set dd span { color: #fe1734; }
.item_data .item_time_box dl.single dd { color: #106af0; }

.item_data .item_time small { font-size: 12px; display: block; }


@media screen and (max-width: 786px) {
	.item_data .item_time {
		width: 100%;
	}
}

@media screen and (max-width: 480px) {
	
	.item_data .item_time .item_time_h {
		font-size: 14px;
	}
	
	.item_data .item_time_box ul li {
		width: 100%;
	}
	.item_data .item_time_box li { margin-bottom: 10px; }
	.item_data .item_time_box li:last-child { margin-bottom: 0; }
	
	.item_data .item_time_box dl dt { 
		font-size: 13px;
		padding: 3px 15px;
	}
	.item_data .item_time_box dl dd {
		font-size: 14px;
	}
	
}







/*----商品詳細修正後に消す　▲▲▲　----------------------------------------------*/





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

other-commit

-----------------------------------*/
.other-commit {
    margin: 80px auto;
    background: #fafafa;
    border-top: 7px solid #5353b6;
    padding: 55px 45px 45px;
}

.other-commit dt {
    text-align: center;
    font-weight: bold;
    margin-bottom: 30px;
    color: #353535;
    font-size: 18px;
    letter-spacing: .08em;
}
.other-commit dt em {
    font-size: 25px;
    font-weight: bold;
    display: block;
    margin-top: 5px;
}

.other-commit .other-commit-list {
    display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
    gap: 15px calc(8% / 3);
}

.other-commit .other-commit-list li {
    width: 23%;
}

.other-commit .other-commit-list li a {
    border: 1px solid #e1e1e1;
    background: #FFF;
    padding: 5px 5px 0;
    box-sizing: border-box;
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.other-commit .other-commit-list img {
    width: 100%;
    height: auto;
}

.other-commit .other-commit-list span {
    width: fit-content;
    max-width: calc(100% - 20px);
    padding: 12px 20px 12px 10px;
    color: #525252;
    font-weight: bold;
    font-size: 13px;
    position: relative;
    margin: 0 auto;
    line-height: 1.3;
    flex-grow: 1;
    display: flex;
    align-items: center;
    box-sizing: border-box;
}
.other-commit .other-commit-list span:before {
    content: "";
    display: block;
    width: 16px;
    height: 16px;
    background: url("../../../_images/common/other-item/circle-right.svg") no-repeat;
    filter: brightness(0) saturate(100%) invert(37%) sepia(15%) saturate(2471%) hue-rotate(201deg) brightness(90%) contrast(90%);
    position: absolute;
    right: 0;
    top: 50%;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
    transition: all 0.1s ease-out;
}

.other-commit .other-commit-list li a:hover {
    opacity: 1;
    box-shadow: rgba(0, 0, 0, 0.15) 0px 2px 8px;
}
.other-commit .other-commit-list li a:hover img {
    opacity: 1;
}
.other-commit .other-commit-list li a:hover span:before {
    filter: brightness(0) saturate(100%) invert(87%) sepia(46%) saturate(3381%) hue-rotate(332deg) brightness(101%) contrast(101%);
}


.other-commit .other-commit-list li.bannerstand {
    display: none;
}

@media screen and (max-width: 786px) {
    .other-commit {
        padding: 45px 30px 30px;
    }
	.other-commit .other-commit-list {
        gap: 15px calc((100% - 93%) / 2);
    }

    .other-commit .other-commit-list li {
        width: 31%;
    }
}

@media screen and (max-width: 480px) {
	
	.other-commit dt {
        margin-bottom: 20px;
        font-size: 13px;
    }
    .other-commit dt em {
        font-size: 18px;
        margin-top: 0;
    }
    
    .other-commit {
        padding: 40px 20px 20px;
    }
	.other-commit .other-commit-list {
        gap: 10px 4%;
    }

    .other-commit .other-commit-list li {
        width: 48%;
    }
    
    .other-commit .other-commit-list span {
        padding: 10px 20px 10px 10px;
        font-size: 12px;
    }
	
}


