@charset "utf-8";

/***********************************************************************

------------------------------------------------------------------------
共通パーツ
***********************************************************************/

/* 背景色
========================================== */

.bgGray {
	background-color: #eeeeef;
}

/* 見出し
========================================== */

/* ---------------------------
ページ見出し
----------------------------- */

.tit_page {
	font-size: 18px;
	text-align: center;
	margin-top: 60px;
}
@media only screen and (max-width: 767px) {
	.tit_page {
		font-size: 16px;
		margin-top: 40px;
	}
}

/* ---------------------------
セクション見出し
----------------------------- */

.tit_sec {
	width: 100%;
	padding: 10px 0 8px;
	text-align: center;
	color: #fff;
	font-weight: bold;
	font-size: 25px;
	line-height: 1.2;
	background-color: #6385C2;
	margin: 60px 0 50px;
	position: relative;
}
.tit_sec::after {
	content: "";
	display: inline-block;
	position: absolute;
	left: 50%;
	bottom: -19px;
	transform: translateX(-50%);
	background-color: #6385C2;
	height: calc(40px / 2);
	width: 36px;
	clip-path: polygon(0 0, 100% 0, 50% 100%);
}
@media only screen and (max-width: 767px) {
	.tit_sec {
		padding: 10px 0;
		font-size: 20px;
		margin: 60px 0 30px;
	}
	.tit_sec::after {
		bottom: -14px;
		height: calc(30px / 2);
		width: 30px;
	}
}

/* テーブル
========================================== */

/* ---------------------------
基本形
----------------------------- */

table.tblBasic {
	width: 100%;
	font-size: 14px;
}
table.tblBasic th,
table.tblBasic td {
	border-bottom: dotted 1px #d0d0d0;
}
table.tblBasic th {
	width: 135px;
	background-color: #ededef;
	text-align: center;
	padding: 15px 5px;
}
table.tblBasic tbody tr:nth-of-type(even) th {
	background-color: #dadada;
}
table.tblBasic td {
	padding: 15px 20px 15px 40px;
}
@media only screen and (min-width: 768px) {
/* 採用情報 */
	body.recruit table.tblBasic th {
		width: 150px;
		text-align: left;
		padding-left: 20px;
	}
	body.recruit table.tblBasic td {
		padding: 15px 0 15px 30px;
	}
}
@media only screen and (max-width: 767px) {
	table.tblBasic {
		border-bottom: 1px solid #d5d5d5;
	}
	table.tblBasic th,
	table.tblBasic td {
		display: block;
		width: 100%;
		border-bottom: none;
		padding: 7px 15px;
		text-align: left;
		border-radius: 4px;
	}
	table.tblBasic td {
		padding: 15px;
	}
	
/* 会社案内（事業内容/営業所一覧）*/
	body.company #bizconts table.tblBasic tbody tr:not(:last-of-type) td,
	body.company #office table.tblBasic tbody tr:not(:last-of-type) td {
		border-bottom: dotted 1px #d0d0d0;
	}
}

/***********************************************************************

------------------------------------------------------------------------
HOME
***********************************************************************/

body.home {
}
body.home .picup {
	margin-top: 50px;
	padding: 50px 0;
}
body.home .picup ul {
	display: flex;
	justify-content: space-between;
}
body.home .picup ul li a {
	display: block;
	background-color: #fff;
}
body.home .picup ul li a p {
	text-align: center;
	font-size: 18px;
	padding: 10px;
}
body.home .banner {
	margin-top: 70px;
}
body.home .banner > ul {
	display: flex;
	justify-content: center;
	column-gap: 40px;
}
body.home .banner > ul > li {
}
body.home .banner > ul > li > a {
	height: 110px;
	text-align: center;
	display: flex;
	justify-content: center;
	align-items: center;
}
body.home .banner > ul > li.contact > a {
	width: 520px;
	background-color: #004da0;
	color: #fff;
	font-size: 25px;
	font-weight: bold;
	line-height: 1.25;
}
body.home .banner > ul > li.maruzenshowa > a {
	width: 525px;
	border: 4px solid #888;
}
@media only screen and (max-width: 767px) {
	body.home .picup {
		margin-top: 40px;
		padding: 40px 0;
	}
	body.home .picup ul {
		justify-content: center;
		flex-wrap: wrap;
		gap: 20px;
	}
	body.home .picup ul li a p {
		font-size: 14px;
	}
	body.home .banner {
		margin-top: 30px;
	}
	body.home .banner > ul {
		display: block;
	}
	body.home .banner > ul > li > a {
		height: auto;
	}
	body.home .banner > ul > li.contact {
		background-color: #004da0;
		color: #fff;
		padding: 10px;
	}
	body.home .banner > ul > li.contact .contactBox p {
		text-align: center;
		font-size: 15px;
	}
	body.home .banner > ul > li.contact .contactBox ul li {
		margin-top: 10px;
	}
	body.home .banner > ul > li.contact .contactBox ul li a {
		display: block;
		text-align: center;
		border: 1px solid #fff;
		border-radius: 5px;
		padding: 5px;
		font-size: 17px;
		font-weight: bold;
	}
	body.home .banner > ul > li.maruzenshowa {
		margin-top: 15px;
	}
	body.home .banner > ul > li.maruzenshowa > a {
		width: 100%;
		padding: 10px 15px;
	}
}

/***********************************************************************

------------------------------------------------------------------------
会社案内
***********************************************************************/

body.company {
}

/* ご挨拶
========================================== */

body.company #message {
}
body.company #message p.txtMsg {
	padding: 40px 110px 0;
	line-height: 2;
}
body.company #message p.name {
	text-align: right;
	padding: 70px 50px 40px;
	font-size: 18px;
}
body.company #message p.name em {
	font-weight: bold;
	font-size: 25px;
}
@media only screen and (max-width: 767px) {
	body.company #message p.txtMsg {
		padding: 40px 15px 0;
	}
	body.company #message p.name {
		padding: 30px 15px;
		font-size: 15px;
	}
	body.company #message p.name em {
		font-size: 21px;
	}
}

/* 会社概要
========================================== */

body.company #data {
}

/* 事業内容
========================================== */

body.company #bizconts {
}

/* 営業所一覧
========================================== */

body.company #office {
}
body.company #office .office_add {
	margin-left: 1em;
	display: flex;
	justify-content: space-between;
}
@media only screen and (max-width: 767px) {
	body.company #office .office_add {
		display: block;
	}
}

/***********************************************************************

------------------------------------------------------------------------
業務内容
***********************************************************************/

body.service {
}
body.service .service_box + p.outline {
	margin-top: 50px;
}
body.service .service_box {
	display: flex;
	justify-content: space-between;
	margin-top: 30px;
}
body.service .service_box .service_data {
	width: 560px;
	background-color: #eaeaeb;
	border: 1px solid #a3a3a3;
	border-radius: 10px;
	padding: 40px 30px 10px;
}
body.service .service_box .service_data table {
}
body.service .service_box .service_data table th {
	font-size: 18px;
	font-weight: bold;
}
body.service .service_box .service_data table td {
	padding-left: 1.5em;
}
body.service .service_box .service_data ul.car_list {
	font-size: 18px;
	width: 300px;
}
body.service .service_box .service_data ul.car_list li {
	display: flex;
	justify-content: space-between;
	padding: 0 10px;
}
body.service .service_box .service_data ul.car_list li:last-of-type {
	border-top: 1px solid #a0a0a2;
}
body.service .service_box .service_data ul.car_list li span {
	font-weight: bold;
}
body.service .service_box .service_data ul.car_list li:last-of-type span {
	padding-left: 3em;
}
@media only screen and (max-width: 767px) {
	body.service .service_box {
		display: block;
		margin-top: 20px;
	}
	body.service .service_box .service_data {
		width: 100%;
		padding: 20px;
	}
	body.service .service_box .service_data table th,
	body.service .service_box .service_data table td {
		display: block;
		width: 100%;
	}
	body.service .service_box .service_data table th {
		font-size: 16px;
	}
	body.service .service_box .service_data table td {
		padding-left: 0;
	}
	body.service .service_box > img {
		display: block;
		margin: 20px auto 0;
	}
	body.service .service_box .service_data ul.car_list {
		font-size: 16px;
		width: 100%;
	}
}

/***********************************************************************

------------------------------------------------------------------------
採用情報
***********************************************************************/

body.recruit {
}
body.recruit p.req_msg {
	text-align: center;
	font-weight: bold;
	font-size: 17px;
}
body.recruit h3 {
	font-weight: bold;
	font-size: 20px;
	margin-top: 60px;
}
body.recruit h4 {
	margin-top: 10px;
	margin-left: 50px;
	position: relative;
}
body.recruit .req_info + h4 {
	margin-top: 50px;
}
body.recruit h4::after {
	content: "";
	display: block;
	width: 100%;
	height: 1px;
	background-color: #918c89;
	position: absolute;
	top: 50%;
	right: 0;
	transform: translateY(-50%);
}
body.recruit h4 span {
	display: inline-block;
	background-color: #fff;
	font-size: 18px;
	padding-right: 15px;
	position: relative;
	z-index: 1;
}
body.recruit .req_info {
	margin-top: 20px;
	text-align: right;
}
body.recruit .req_info .job_photo {
	margin-top: 10px;
}
body.recruit .req_info .job_contact {
	display: inline-flex;
	margin-top: 30px;
	border: 2px solid #004da0;
}
body.recruit .req_info .job_contact a {
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 22px;
	width: 190px;
	padding-top: 3px;
	font-weight: bold;
	color: #fff;
	background-color: #004da0;
}
body.recruit .req_info .job_contact p {
	font-size: 9px;
	line-height: 1.5;
	padding: 7px 10px 5px 20px;
}
body.recruit .req_info .job_contact p em {
	font-size: 13px;
	font-weight: bold;
}
body.recruit .req_info .job_contact p em span {
	font-weight: bold;
	color: #004da0;
}
@media only screen and (max-width: 767px) {
	body.recruit p.req_msg {
		font-size: 14px;
	}
	body.recruit h3 {
		text-align: center;
		margin-top: 50px;
	}
	body.recruit h4 {
		margin-left: 0;
		text-align: center;
	}
	body.recruit h4 span {
		font-size: 16px;
		padding-left: 15px;
	}
	body.recruit .req_info .job_contact {
		display: block;
		margin-top: 20px;
	}
	body.recruit .req_info .job_contact a {
		width: 100%;
	}
	body.recruit .req_info .job_contact p {
		text-align: center;
		font-size: 10px;
		line-height: 1.6;
		padding: 10px;
	}
	body.recruit .req_info .job_contact p em {
		font-size: 14px;
	}
}

/***********************************************************************

------------------------------------------------------------------------
お問合せフォーム
***********************************************************************/

body.contact {
}
body.contact p.lead {
	text-align: center;
}
body.contact p.lead a {
	text-decoration: underline;
}
@media only screen and (max-width: 767px) {
	body.contact p.lead {
		text-align: left;
	}
}

/* フォーム
========================================== */

body.contact form {
}
body.contact form p.txtNext {
	text-align: center;
	padding-top: 17px;
	border-top: 1px solid #ccc;
	line-height: 1.4;
}
body.contact form .agree_check {
	text-align: center;
	margin-top: 30px;
}
body.contact form .agree_check > span {
	display: inline-block;
	position: relative;
}
body.contact form .agree_check > span em {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	width: 40px;
	height: 30px;
	padding-top: 2px;
	font-size: 13px;
	color: #fff;
	border-radius: 4px;
	background-color: #e40012;
	font-weight: bold;
	margin-left: 10px;
	position: relative;
	top: -2px;
}
body.contact form p.txtNext a {
	text-decoration: underline;
	color: #d7000f;
}
@media only screen and (max-width: 767px) {
	body.contact form p.txtNext {
		text-align: left;
	}
	body.contact form .agree_check {
		margin-top: 20px;
		padding-bottom: 10px;
	}
	body.contact form .agree_check > span em {
		height: 22px;
		font-size: 12px;
	}
}

/* ---------------------------
入力エリア
----------------------------- */

body.contact form .inputArea {
	background-color: #fff;
	border: 5px solid #eeeeef;
	margin-top: 30px;
	padding: 50px 30px;
	border-radius: 20px;
}
body.contact form .inputArea dl {
	padding: 17px 0;
	display: flex;
}
body.contact form .inputArea dl + dl {
	border-top: 1px solid #ccc;
}
body.contact form .inputArea dl dt {
	width: 230px;
	padding-left: 15px;
	position: relative;
	font-weight: bold;
}
body.contact form .inputArea dl dt em {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 40px;
	height: 30px;
	padding-top: 2px;
	font-size: 13px;
	color: #fff;
	border-radius: 4px;
	background-color: #e40012;
	font-weight: bold;
	position: absolute;
	top: 0;
	right: 20px;
}
body.contact form .inputArea dl dd {
	width: calc(100% - 230px);
	padding-right: 15px;
}
body.contact form .inputArea dl dd p {
	line-height: 1.4;
	margin-top: 20px;
}
body.contact form .inputArea p.error {
	margin-top: 10px;
	background-color: #fff43e;
	padding: 5px 15px;
	color: #d7000f;
	width: 70%;
}
@media only screen and (max-width: 767px) {
	body.contact form .inputArea {
		padding: 5px;
		border: none;
		border-top: 1px solid #ccc;
		border-bottom: 1px solid #ccc;
		border-radius: 0;
	}
	body.contact form .inputArea dl {
		display: block;
	}
	body.contact form .inputArea dl dt {
		width: 100%;
		padding: 0 10px 10px;
	}
	body.contact form .inputArea dl dt em {
		height: 22px;
		font-size: 12px;
	}
	body.contact form .inputArea dl dd {
		width: 100%;
		padding: 0 10px;
	}
	body.contact form .inputArea dl dd p {
		margin-top: 5px;
		font-size: 13px;
	}
	body.contact form .inputArea p.error {
		width: 100%;
		margin-top: 0;
	}
	body.contact form .inputArea p.error + p.error {
		margin-top: 5px;
	}
}

/* フォーム装飾 */
body.contact form .inputArea dl dd input {
	display: inline-block;
}
body.contact form .inputArea dl dd input.iptWdSS {width: 80px;}
body.contact form .inputArea dl dd input.iptWdS  {width: 150px;}
body.contact form .inputArea dl dd input.iptWdM  {width: 320px;}
body.contact form .inputArea dl dd input.iptWdL  {width: 100%;}

body.contact form .inputArea dl dd select {
	display: inline-block;
	margin-bottom: 15px;
}
body.contact form .inputArea dl dd textarea {
	width: 100%;
	height: 150px;
	resize: vertical;
}
body.contact form .inputArea dl dd input + input {
	margin-left: 10px;
}
@media only screen and (max-width: 767px) {
	body.contact form .inputArea dl dd input,
	body.contact form .inputArea dl dd textarea {
		margin-bottom: 15px;
	}
	body.contact form .inputArea dl dd input.iptWdM,
	body.contact form .inputArea dl dd input.iptWdL {width: 100%;}

	body.contact form .inputArea dl dd input + input {
		margin-left: 0;
	}
}

/* チェックボックス */
body.contact form .inputArea input[type="checkbox"] {
  position: absolute;
  width: 20px;
  height: 20px;
  border: 1px solid #000;
  vertical-align: -5px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
	top: 0;
	left: 0;
}
body.contact form .inputArea input[type="checkbox"]:checked:before {
  position: absolute;
  top: 0;
  left: 5px;
  transform: rotate(50deg);
  width: 6px;
  height: 10px;
  border-right: 3px solid #004da0;
  border-bottom: 3px solid #004da0;
  content: '';
}
body.contact form .inputArea label.checkbox-parts {
	padding-left: 30px;
}
@media only screen and (max-width: 767px) {
	body.contact form .inputArea input[type="checkbox"] {
		top: -2px;
	}
}

/* ---------------------------
ボタン
----------------------------- */

body.contact form .btnForm {
	text-align: center;
	margin-top: 30px;
}
body.contact form .btnForm .btnSubmit {
	padding: 0 45px;
    height: 70px;
    line-height: 70px;
	background-color: #004da0;
	color: #fff;
	font-size: 20px;
	font-weight: bold;
	text-align: center;
	border-radius: 15px;
	border: none;
	cursor: pointer;
	display: inline-block;
	min-width: 200px;
}
body.contact form .btnForm .btnSubmit.back {
	background-color: #595757;
}
@media only screen and (max-width: 767px) {
	body.contact form .btnForm .btnSubmit {
		font-size: 18px;
		width: 100%;
		height: 50px;
		line-height: 50px;
		padding: 0;
		margin: 5px auto;
		min-width: auto;
	}
}
body.contact form .btnForm a.btnSubmit:hover {
	opacity: 1;
}
body.contact form .btnForm .btnSubmit:disabled {
	background-color: #ccc;
}
/* 送信完了
========================================== */

body.contact .sent {
	background-color: #fff;
	margin-top: 30px;
	padding: 12px 30px 40px;
}
body.contact .sent p.fin {
	font-size: 30px;
	text-align: center;
	margin-top: 30px;
}
@media only screen and (max-width: 767px) {
	body.contact .sent {
		padding: 10px 15px 30px;
	}
	body.contact .sent p.fin {
		font-size: 22px;
	}
}

/***********************************************************************

------------------------------------------------------------------------
プライバシーポリシー
***********************************************************************/

body.privacy {
}
body.privacy .intro {
	margin-top: 15px;
	padding: 30px 40px;
	line-height: 2;
}
body.privacy .intro h2 {
	text-align: center;
	font-size: 18px;
	margin-bottom: 10px;
}
body.privacy .privacy_list {
	font-size: 14px;
}
body.privacy .privacy_list > dl {
}
body.privacy .privacy_list > dl > dt {
	font-weight: bold;
	margin-top: 30px;
}
body.privacy .privacy_list > dl > dd {
	padding-left: 1em;
	margin-top: 5px;
}
body.privacy .privacy_list > dl > dd ol {
}
body.privacy .privacy_list > dl > dd ol li {
	text-indent: -0.5em;
	padding-left: 0.5em;
}
body.privacy .privacy_list > dl > dd ol li + li {
	margin-top: 5px;
}
body.privacy .privacy_list p.sign {
	text-align: right;
	margin-top: 60px;
}
body.privacy .privacy_list .customer {
	border-top: 1px solid #b4b4b4;
	margin-top: 20px;
	padding-top: 25px;
	text-indent: -0.5em;
	padding-left: 0.5em;
}
@media only screen and (max-width: 767px) {
	body.privacy .intro {
		padding: 30px 15px;
	}
	body.privacy .intro h2 {
		font-size: 16px;
	}
	body.privacy .privacy_list p.sign {
		margin-top: 30px;
	}
}
