@charset "utf-8";
/*reset-------------------------------------------------*/
body,div,h1,h2,h3,h4,h5,h6,p,dl,dt,dd {
  margin: 0;
  padding: 0;
	font-weight:inherit;
	font-size:inherit;
}

* {
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -ms-box-sizing: border-box;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

img {
  border: none;
  vertical-align: top;
}

header,section,article,aside,footer,nav {
 display: block;
}

a {
  text-decoration: none;
  cursor: pointer;
  display: block;
	color:inherit;
}

ul,li,ol {
  margin: 0px;
  padding: 0px;
  list-style: none;
}
/*-------------------------------------------------reset*/


/*common-------------------------------------------------*/
html {
  font-size: 10px;
}

body {
	font-size:1.4em;
  color: #333;
	font-family: YuGothic, 'Yu Gothic Medium', 'Yu Gothic', sans-serif;
}

*::selection {
	background:#d71a28;
	color:#fff;
}
/*-------------------------------------------------common*/


/*------------------------------------------------------------------------------------------------
  header
--------------------------------------------------------------------------------------------------*/
header .top {
	position:relative;
}

header .top .container {
    width: 100%;
    height: 98px;
}

header h1 {
	display:inline;
}

header .logo {
	display:inline-block;
	margin:1.7em 0 0 10px;
}

header .h-contact {
	position:absolute;
	right:0;
	top:0;
	display:table;
	height:100%;
}

header .h-contact a {
	padding: 0.7em 2em;
	text-align:center;
	font-weight:bold;
	line-height:1.4;
	display: table-cell;
	vertical-align: middle;
}

header .h-contact a:first-child {
	background:#EEE;
}

header .h-contact a:nth-child(2) {
	background:#FFF;
}

header .h-contact a:nth-child(3) {
	background:#EEE;
}

header .h-contact a:last-child {
	background:#ba1420;
	color:#fff;
}

header .h-contact a span {
	color:#d71a28;
	display:block;
	font-size:2em;
}

header .h-contact a:nth-child(-n+3) span {
	font-family:'Noto Sans Mono Bold', YuGothic, 'Yu Gothic Medium', 'Yu Gothic', sans-serif;
}

header .h-contact a:last-child span {
	background:#fff;
	border-radius:5em;
	font-size:1.28em;
	padding:.2em 0;
}

header .h-contact a:last-child span::after {
	content:url(../image/arrow.png);
	margin-left:.5em;
}

header .h-contact a span img {
	vertical-align:middle;
}

header .h-contact a:last-child span img {
	margin-right:.5em;
}

header nav ul {
	display:flex;
	justify-content:center;
	background:#d71a28;
	color:#fff;
}

header nav li {
	display:flex;
	align-items:center;
}

header nav li:nth-child(6) a,
header nav li:nth-child(7) a,
header nav li:nth-child(8) a {
    padding: 1em 1.4em 1em 0;
}

header nav li:nth-child(6) img,
header nav li:nth-child(7) img, {
    width: 38px;
}

header nav li:nth-child(8) img {
    height: 36px;
}

header nav li:nth-child(5)::after,
header nav li:nth-child(6)::after {
    display: none;
}

@media all and (min-width: 1025px) {
	header nav li:nth-child(1)::after,
	header nav li:nth-child(2)::after,
	header nav li:nth-child(3)::after,
	header nav li:nth-child(4)::after,
	header nav li:nth-child(5)::after {
		content:'/';
		font-size:1.5em;
	}
}

header nav a {
	font-size:1.28em;
	padding:1em 2em;
	text-align:center;
	font-weight:bold;
	line-height:1.2;
}

header nav a span {
	display:block;
	font-size:.77em;
	font-weight:normal;
	font-family:'Noto Sans Mono Regular', YuGothic, 'Yu Gothic Medium', 'Yu Gothic', sans-serif;
}

/*------------------------------------------------------------------------------------------------
  content
--------------------------------------------------------------------------------------------------*/
.container {
	width:1080px;
	margin:0 auto;
}

.notosans {
	font-family: 'Noto Sans Mono Bold', YuGothic, 'Yu Gothic Medium', 'Yu Gothic', sans-serif;
}

.bg-pattern {
  background-image:radial-gradient(#aaa 10%, transparent 10%);
  background-size: 5px 5px;
}

.breadcrumb {
	background:#eee;
	padding:.5em 0;
}

.breadcrumb ol {
	width:960px;
	margin:0 auto;
	display:flex;
	font-size:.85em;
	font-weight:bold;
}

.breadcrumb li:not(:last-child)::after {
	content:'　＞　';
}

.breadcrumb a {
	color:#d71a28;
	text-decoration:underline;
	display:inline;
}

h2,
#service.outsourcing .business h3,
#service.outsourcing .dispatch h3 {
	font-size:1.25em;
	font-weight:bold;
	line-height:1;
}

h2 span,
#service.outsourcing .business h3 span,
#service.outsourcing .dispatch h3 span {
	font-family:'Noto Sans Mono Bold', YuGothic, 'Yu Gothic Medium', 'Yu Gothic', sans-serif;
	font-size:4em;
	text-transform:uppercase;
	vertical-align:middle;
}

.button {
	width:240px;
	padding:.5em 0;
	margin:0 auto;
	color:#d71a28;
	background:#fff;
	border:solid 2px #d71a28;
	font-size:1.14em;
	text-align:center;
	font-weight:bold;
	box-shadow:5px 5px 0 rgba(0,0,0,.25);
	position:relative;
}

.button.red {
	color:#fff;
	background:#d71a28;
}

.button::after {
	content:'';
	width:9px;
	height:11px;
	background:url(../image/arrow.png) no-repeat center / cover;
	position:absolute;
	right:1em;
	top:50%;
	transform:translateY(-50%);
}

.button.red::after,
.button:not(.red):not(.nohover):hover::after {
	background-image:url(../image/arrow-white.png);
}

.button:not(.red):not(.nohover):hover {
	color:#fff;
	background:#d71a28;
}

.contact {
	background:#d71a28;
	color:#fff;
	padding:3em 0;
	text-align:center;
}

.contact h2 span {
	display:block;
}

.contact img {
	margin:1.5em 0 ;
}

.contact .button {
	border-radius:5em;
	width:290px;
	border:none;
	margin-top:1em;
}

.quotation {
	background:#eee;
	color:#d71a28;
	padding:3em 0;
	text-align:center;
}

.quotation h2 span {
	display:block;
	margin-right:.2em;
}

.quotation .container > div {
	display:flex;
	justify-content:center;
	margin-top:2em;
}

.quotation p {
	font-weight:bold;
	margin:.5em 0;
}

.quotation .button {
	width:290px;
	border-radius:5em;
	border:none;
}

.quotation .line {
	width:67px;
	height:114px;
	background:linear-gradient(to right bottom, transparent 49%, #d71a28 49.5%, #d71a28 51%, transparent 51.5%);
	margin:0 2.6em;
}

main h1 {
	font-size:1.25em;
	font-weight:bold;
	line-height:1;
	width:960px;
	margin:1em auto;
}

main h1 span {
	font-family:'Noto Sans Mono Bold', YuGothic, 'Yu Gothic Medium', 'Yu Gothic', sans-serif;
	font-size:4em;
	text-transform:uppercase;
	vertical-align:middle;
	color:#d71a28;
	margin-right:.2em;
}



/*------------------------------------------------------------------------------------------------
  footer
--------------------------------------------------------------------------------------------------*/
footer {
	background:#313131;
	color:#fff;
	padding-top:2.85em;
}

footer .container {
	display:flex;
	justify-content:space-between;
}

footer .mail {
	font-weight:bold;
	text-align:center;
	margin-top:-2px;
}

footer .mail a {
	background:#fff;
	color:#d71a28;
	font-size:1.14em;
	display:inline-block;
	padding:.25em 2em;
	border-radius:5em;
	margin-top: 4px;
}

footer .mail a::after {
	content:url(../image/arrow.png);
	margin-left:.5em;
}

footer .mail a img {
	vertical-align:middle;
	margin-right:.5em;
}

footer .address {
	display:flex;
}

footer .address div {
	margin-right:2.85em;
}

footer ul {
	display:flex;
	margin-top:2em;
	justify-content: center;
}

footer ul li {
	margin-right:1em;
	font-size:1.14em;
	font-weight:bold;
}

footer ul li::before {
	content:'- ';
}

footer ul li a {
	display:inline-block;
}

footer small {
	display:block;
	background:#d71a28;
	font-size:inherit;
	margin-top:2em;
	text-align:center;
	padding:.5em 0;
}

.contactTels {
	background:#eee;
	color:#d71a28;
	padding:3em 0;
	text-align:center;
}

.contactTels h2 span {
	display:block;
	margin-right:.2em;
	margin-bottom: .1em;
}

.contactTels .container .number {
	display:flex;
	justify-content: space-between;
	margin-top:2em;
}

.contactTels .container .number div {
width: 294px;
display: flex;
}

.contactTels .container .number div dl {
display: flex;
flex-direction: column;
width: 294px;
}

.contactTels .container .number div dt {
display: flex;
flex-grow: 1;
height: 76px;
color: #FFF;
font-weight: bold;
background: url(../image/contact_tel_back.png) no-repeat 0 0;
justify-content: center;
align-items: center;
margin: 0 0 8px;
}

.contactTels .container .number div dd {
font-size: 40px;
font-weight: 500;
font-family: 'Noto Sans Mono Bold', YuGothic, 'Yu Gothic Medium', 'Yu Gothic', sans-serif;
}

.contactTels .container .number div dd img {
vertical-align: -10px;
margin-right: 4px;
}

footer .snsbtn {
margin: 10px 0 0;
text-align: right;
}

footer .snsbtn a {
display: inline-block;
margin-right: 10px;
}

