@charset "utf-8";
/*文字コード注意*/

/* 共通
=========================================*/
html {
	scroll-behavior: smooth;
}
h1 {
	line-height: 1.2;
}
h2 {
	padding: 0 0 5px 0;
}
.samplebox #contents {
	width: 460px;
	padding-top: 0;
	margin: 10px auto 0;
}

/*ぱんくず*/
.samplebox #panBox {
	margin: 0 auto;
	border: none;
}

/*一覧*/
.samplebox #z_container {
	margin-bottom: 50px;
}
#z_itemBox {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	background-color: #FAF7EF;
	padding: 20px;
}
.z_item {
	width: 200px;
	height: 350px;
	box-shadow: 0px 0px 5px rgb(0, 0, 0, 0.2);
	border-radius: 5px;
	overflow: hidden;
	background-color: #fff;
	position: relative;
}
.z_item a {
	display: block;
	width: 200px;
	height: 350px;
}
.z_item img {
	width: 200px;
	height: 200px;
}
.z_item .sample-name {
	margin: 10px;
	line-height: 1.5;
	color: #53392B;
	font-size: 15px;
	font-weight: bold;
}
.z_item .more_right {
	position: absolute;
	right: 10px;
	bottom: 10px;
}

/*サイドメニュー*/
#left_sidemenu {
	margin-bottom: 15px;
}
#left_sidemenu h3 {
	padding: 10px;
	margin: 10px 0 0 0;
	line-height: 1;
}
#left_sidemenu h3:last-child {
	margin-bottom: 10px;
}
#left_sidemenu h3 a {
	font-size: 16px;
	font-weight: bold;
}
#left_sidemenu ul {
	margin: 0 10px;
	padding: 0 10px 20px 10px;
	border-bottom: dashed 1px #C4C4C4;
	display: flex;
	flex-wrap: wrap;
	gap: 10px 20px;
}
#left_sidemenu li a {
	text-decoration: underline;
	font-size: 16px;
}
#left_sidemenu li span {
	color: #B4B4B4;
}
/*開閉動作*/
#left_sidemenu input {
	display: none;
}
#z_category_label {
	width: 440px;
	padding: 10px;
	transition: 0.5s;
	display: block;
	line-height: 26px;
	text-align: center;
	font-size: 18px;
	color: #6C6C6C;
	border: solid 1.5px #c4c4c4;
	background-color: #F5F5F5;
	border-radius: 10px;
	position: relative;
}
#hidden_show {
	height: 0;
	padding: 0;
	margin-top: 5px;
	overflow: hidden;
	opacity: 0;
	transition: 0.5s;
	box-shadow: 0px 0px 5px rgb(0, 0, 0, 0.2);
	border-radius: 10px;
	background-color: #fff;
}
#left_sidemenu input:checked ~ #hidden_show {
	padding: 0;
	height: auto;
	opacity: 1;
}
#z_category_label::before, #z_category_label::after {
	content: "";
	position: absolute;
	top: 13px;
	right: 30px;
	width: 1.5px;
	height: 20px;
	background-color: #6C6C6C;
}
#z_category_label::after {
	transform: rotate(90deg);
}
#z_category_label::before {
	transition: 0.4s;
}
#left_sidemenu input:checked + #z_category_label::before {
	transform: rotate(90deg);
	transition: 0.3s;
}

/*ページネーション*/
.pagination {
	margin: 10px 0;
}
.pagination p {
	font-size: 18px;
	color: #53392B;
	margin-bottom: 5px;
	line-height: 30px;
}
.pagination b {
	font-weight: bold;
}
.pagination ul {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}
.pagination li {
	text-align: center;
	border: solid 1px #53392B;
	background-color: #53392B;
	color: #fff;
	border-radius: 5px;
	width: 30px;
	height: 30px;
	line-height: 30px;
}
.pagination li a {
	font-size: 14px;
	color: #53392B;
	background-color: #fff;
	border-radius: 4px;
	display: block;
	width: 30px;
	height: 30px;
}
.pagination li a:hover {
	background: #53392B;
	color: #fff;
	border-radius: 4px;
	opacity: 1;
}
.pagination .nextpage, .pagination .nextpage a {
	width: 50px;
}

/*関連コンテンツ*/
#r_contents {
	margin-bottom: 100px;
}
#r_contents li {
	width: 460px;
	height: 170px;
	border: solid 1px #C4C4C4;
	border-radius: 5px;
	position: relative;
	margin-bottom: 20px;
}
#r_contents a {
	display: block;
	width: 460px;
	height: 170px;
}
#r_contents h3 {
	font-size: 17px;
	font-weight: bold;
	text-align: center;
	line-height: 1;
	padding-top: 15px;
	margin-bottom: 20px;
}
#r_contents p {
	margin: 0 20px 0 140px;
	color: #53392B;
}
#r_contents > div {
	position: relative;
}
#r_contents img {
	width: 100px;
	height: 100px;
	position: absolute;
	top: 50px;
	left: 20px;
	border-radius: 5px;
}
#r_contents .more_right {
	position: absolute;
	right: 10px;
	bottom: 10px;
	color: #159DD9;
}



/* 事例集トップページ
=========================================*/
#samplebox-top #h1_contents {
	margin: 0 auto 20px;
}
#samplebox-top #h1_contents h1 {
	font-size: 30px;
	text-align: center;
	margin-bottom: 10px;
}
#samplebox-top #h1_contents p {
	font-size: 15px;
}



/* 事例集大カテページ
=========================================*/
#samplebox-lcat h1 {
	font-size: 30px;
	font-weight: bold;
	border-bottom: solid 2px #DBBD94;
	padding: 0 0 5px 0;
	margin-bottom: 15px;
}
#samplebox-lcat h1 + p {
	margin-bottom: 20px;
}
#samplebox-lcat #right_block h2 {
	font-size: 23px;
	border-left: solid 10px #DBBD94;
	border-bottom: none;
	padding: 0 0 0 10px;
	margin: 0 0 15px;
}
#samplebox-lcat .mcat_box {
	background-color: #FAF7EF;
	padding: 30px 0;
	position: relative;
	margin-bottom: 50px;
}
#samplebox-lcat .mcat_box:last-child {
	margin-bottom: 0;
}
#samplebox-lcat .z_itemBox {
	width: 460px;
	overflow: scroll;
}
#samplebox-lcat .scroll_box {
	display: flex;
	gap: 15px;
	width: 2135px;
	margin: 0 20px;
}
#samplebox-lcat .z_item {
	;
	margin: 5px 0;
}
#samplebox-lcat .button-brown {
	position: relative;
	margin: 30px auto 0;
}



/* 事例集中カテページ
=========================================*/
#samplebox-mcat h1 {
	font-size: 30px;
	font-weight: bold;
	border-bottom: solid 2px #DBBD94;
	padding: 0 0 5px 0;
	margin-bottom: 15px;
}



/* 事例集詳細ページ
=========================================*/
#samplebox-detail h1 {
	font-weight: bold;
	border-bottom: solid 2px #DBBD94;
	padding: 0 0 5px 0;
	margin-bottom: 15px;
}
#nouki {
	border: 1px #E23619 solid;
	background: #FFF7F7;
	border-radius: 10px;
	padding: 5px 10px;
	height: 30px;
	line-height: 30px;
	font-size: 15px;
	display: inline-block;
	margin-bottom: 10px;
}
#nouki span {
	font-size: 20px;
	font-weight: bold;
	color: #E23619;
}

/*事例画像*/
#photoBox {
	width: 450px;
	margin: 0 auto 20px;
	position: relative;
}
#mainPhoto {
	width: 450px;
	height: 450px;
	margin: 0 auto 10px;
	overflow: hidden;
	position: relative;
	border: solid 1px #C4C4C4;
}
#mainPhoto ul {
	position: absolute;
	top: 0;
	left: 0;
	transition: all 0.5s ease-out;
}
#mainPhoto li {
	float: left;
}
#mainPhoto img {
	width: 450px;
	height: 450px;
}
#samplebox-detail .left_slide:before {
	top: 200px;
	left: 10px;
	margin: 0;
}
#samplebox-detail .right_slide:before {
	top: 200px;
	right: 10px;
	margin: 0;
}
#smallPhoto {
	width: 450px;
	display: flex;
	gap: 14px;
	flex-wrap: wrap;
	margin: 10px 0;
}
#smallPhoto li {
	width: 100px;
	height: 100px;
}
#smallPhoto li img {
	width: 100px;
	height: 100px;
	border: 4px transparent solid;
}
#smallPhoto li.select img {
	border: 4px #53392B solid;
	border-radius: 5px;
}

/*お客様のご要望・お声・箱職人の回答 共通*/
#samplebox-detail .text-block h2 {
	font-size: 22px;
	font-weight: normal;
	border: none;
	padding: 0;
	margin: 0 0 10px;
}
#samplebox-detail .text-block h3 {
	font-size: 20px;
	font-weight: bold;
	min-height: 40px;
	line-height: 1.2;
	margin-bottom: 10px;
}
.textBox {
	padding: 20px;
	border-radius: 5px;
}
.textBox .comment {
	background-color: #fff;
	padding: 15px;
	border-radius: 5px;
	font-size: 15px;
}

/*お客様のご要望・お声*/
#customer-request {
	margin-bottom: 40px;
}
#customer-request h3 {
	padding: 10px 0 10px 65px;
	background: url(/img/fixed-box_request.png) no-repeat left top;
}
#customer-voice h3 {
	padding: 10px 0 10px 65px;
	background: url(/img/fixed-box_Impressions.png) no-repeat left top;
}
#customer-request .textBox, #customer-voice .textBox {
	background-color: #FAF7EF;
}

/*箱職人の回答*/
#staff-answer {
	margin-bottom: 40px;
}
#staff-answer h3 {
	padding: 0 0 0 100px;
}
#staff-answer .textBox {
	background-color: #F2ECDB;
	padding: 20px;
}
#staff-top p {
	padding: 5px 0 0 100px;
	font-size: 18px;
}
#staff-top img {
	width: 80px;
	height: 80px;
	object-fit: cover;
	border-radius: 50%;
	float: left;
}
#staff-top rt {
	font-weight: bold;
}
#staff-top .more_right {
	width: 405px;
	text-align: right;
	margin-bottom: 10px;
}
#staff-answer b {
	display: block;
	font-size: 17px;
	color: #53392B;
	border-left: solid 10px #DBBD94;
	padding-left: 10px;
	line-height: 1.2;
	margin: 15px 0 10px;
}
#staff-answer b:first-child {
	margin: 0 0 10px;
}

/*参考データ*/
#data, #staffBox {
	border: solid 1px #53392B;
	border-radius: 10px;
	margin-top: 20px;
}
#data {
	margin-bottom: 20px;
}
#data h4, #staffBox h4 {
	background: #53392B;
	color: #fff;
	padding: 8px 10px;
	border-radius: 8px 8px 0 0;
	font-size: 16px;
	font-weight: bold;
	line-height: 1;
	height: 20px;
}
#data p {
	padding: 10px;
	line-height: 1.3;
	border-radius: 0 0 10px 10px;
	background: #fff;
}
#data dl {
	width: 418px;
	display: flex;
	flex-wrap: wrap;
	background-color: #fff;
}
#data dt, #data dd {
	padding: 8px 10px;
	font-size: 14px;
	border-bottom: solid 1px #53392B;
	margin: 0;
	line-height: 1;
}
#data dt {
	width: 78px;
}
#data dd {
	width: 300px;
}

/*担当事例*/
#staffBox {
	width: 420px !important;
	background: #fff;
}
#staffBox ul {
	height: 330px !important;
	overflow-y: scroll;
	padding: 0 0 0 15px;
	border-radius: 0 0 10px 10px;
	margin: 10px 0;
}
#staffBox ul li {
	width: 120px;
	float: left;
	margin: 0 15px 15px 0;
}
#staffBox img {
	width: 120px;
	height: 120px;
	display: block;
}

/*お問い合わせボタン*/
#photoBox + .button-brown {
	width: 380px;
	font-size: 20px;
	color: #fff;
	position: relative;
	margin: 0 auto 20px;
	box-shadow: 1px 1px 2px rgb(0, 0, 0, 0.2);
}
#photoBox + .add_arrow::after {
	transform: rotate(90deg);
}

/*事例集カテゴリ*/
#contents #category_item {
	margin-bottom: 50px;
}
#category_item h3 {
	font-size: 22px;
	font-weight: bold;
	border-left: solid 10px #DBBD94;
	border-bottom: none;
	padding: 0 0 0 10px;
	margin: 0 0 15px 20px;
}
#category_item .mcat_box {
	background-color: #FAF7EF;
	padding: 30px 0;
	position: relative;
	margin-bottom: 50px;
}
#category_item .mcat_box:last-child {
	margin-bottom: 0;
}
#category_item .z_itemBox {
	width: 460px;
	overflow: scroll;
}
#category_item .scroll_box {
	display: flex;
	gap: 15px;
	width: 2135px;
	margin: 0 20px;
}
#category_item .z_item {
	;
	margin: 5px 0;
}
#category_item .button-brown {
	position: relative;
	margin: 30px auto 0;
}

/*アースダンボールが選ばれる理由*/
#reasonBox ul {
	display: flex;
	flex-wrap: wrap;
}
#reasonBox li {
	width: 200px;
	padding: 10px;
	background: #FAF7EF;
	border-radius: 5px;
	margin: 5px;
}
#reasonBox span {
	display: block;
	margin: 0 auto;
	background: #DBBD94;
	border-radius: 50%;
	width: 40px;
	height: 40px;
	line-height: 40px;
	font-size: 20px;
	color: #fff;
	font-weight: bold;
	text-align: center;
}
#reasonBox h5 {
	text-align: center;
	margin: 15px auto;
	font-size: 16px;
	font-weight: bold;
	color: #53392B;
}
#reasonBox p {
	height: 140px;
}
#reasonBox img {
	width: 200px;
	height: auto;
	display: block;
	margin: 10px auto 0;
}

/*事例へのお問い合わせ*/
#contents #inqBox {
	margin-bottom: 50px;
}
#inqBox p {
	font-size: 16px;
}
#inqBox .red {
	font-weight: bold;
}
#inqBox h2 + p + ul {
	margin-top: 15px;
}
#inqBox h2 + p + ul li {
	color: #53392B;
	font-size: 18px;
	font-weight: bold;
}
#inqBox h2 + p + ul li + li {
	margin-top: 10px;
}
#inqBox h2 + p + ul span {
	display: inline-block;
	width: 100px;
	text-align: center;
	color: #fff;
	font-size: 18px;
	font-weight: bold;
	background-color: #53392B;
	border-radius: 5px;
	padding: 5px 10px;
	margin-right: 5px;
}
/* お電話・オンライン相談・LINE */
#contact_information {
	margin-top: 15px;
}
#contact_information li {
	padding: 20px;
	border-radius: 10px;
	background-color: #FAF7EF;
	text-align: center;
}
#contact_information li + li {
	margin-top: 15px;
}
#contact_information h3 {
	font-size: 22px;
	line-height: 30px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 10px;
	padding-left: 35px;
}
#contact_information li:nth-of-type(1) h3 {
	background: url(/img/icon/title-tel.svg) no-repeat top left 155px / 30px 30px;
}
#contact_information li:nth-of-type(2) h3 {
	background: url(/img/icon/title-onlinemeeting.svg) no-repeat top left 110px / 30px 30px;
}
#contact_information li:nth-of-type(3) h3 {
	background: url(/img/icon/title-line.svg) no-repeat top left 160px / 30px 30px;
}
#contact_information li:nth-of-type(1) a {
	display: block;
	color: #53392B;
	font-size: 50px;
	font-weight: bold;
	line-height: 1.2;
	font-family: "Arial";
}
#contact_information li:nth-of-type(2) .button-brown {
	position: relative;
	width: 300px;
	margin: 15px auto 0;
}
#contact_information li:nth-of-type(2) .button-brown::after {
	content: '';
	display: block;
	width: 14px;
	height: 14px;
	position: absolute;
	top: 0;
	bottom: 0;
	right: 10px;
	margin: auto;
	background: url(/img/icon/arrow-white.svg) no-repeat center / contain;
}
#contact_information li:nth-of-type(3) a {
	display: block;
}
#contact_information li:nth-of-type(3) img {
	width: 160px;
	margin: 0 auto;
}
/*お問い合わせフォーム*/
#formBox {
	background: #FAF7EF;
	padding: 30px;
	border-radius: 10px;
	margin-top: 20px;
}
#formBox h3 {
	font-size: 22px;
	line-height: 30px;
	font-weight: bold;
	text-align: center;
	margin-bottom: 10px;
	padding-left: 35px;
	background: url(/img/icon/title-mail.svg) no-repeat top left 65px / 30px 30px;
}
#formBox p {
	margin-bottom: 20px;
}
#formBox tr {
	margin-bottom: 20px;
	display: block;
}
#formBox td {
	height: 40px;
	font-size: 16px;
	font-weight: bold;
	color: #53392B;
	display: block;
}
#formBox .red {
	font-weight: normal;
}
#formBox td.info_titile {
	width: 200px;
	padding-right: 30px;
	line-height: 40px;
}
#formBox tr:first-child td {
	height: auto;
}
#formBox textarea {
	width: 380px;
	height: 250px;
	padding: 10px;
	resize: vertical;
	line-height: 1.5;
	border: solid 1px #C4C4C4;
	border-radius: 5px;
	font-size: 18px;
	display: block;
}
#formBox td input, #formBox td select {
	font-size: 18px;
	margin-bottom: 30px;
	border: solid 1px #C4C4C4;
	border-radius: 5px;
	padding: 5px 10px;
	width: 380px;
	height: 30px;
}
#formBox td .inputS {
	width: 60px;
	margin: 0 10px;
	text-align: center;
}
::placeholder {
	color: #C4C4C4;
}
#ERROR {
	color: #E23619;
	font-weight: bold;
	width: 500px;
	margin: 0 auto 30px;
}
#soushinBtn {
	position: relative;
	margin: 0 auto;
}
#soushinBtn:hover {
	opacity: 0.8;
}