@charset "UTF-8";
:root {
	--color-text: #000;
	--color-white: #fff;
	--color-red: #DC1C1C;
	--color-gray: #F6F6F6;
	--color-dark-gray: #CCCCCC;
	--color-silver: #DFDFDF;
	--color-steel-blue: #3762AB;
	--color-light-blue: #ECF1FA;
	--color-ocean-blue: #4279D2;
	--color-aqua-stone: #4999AE;
	--color-harvest-gold: #9D7824;
	--color-dusty-rose: #A75566;
	--color-royal-purple: #A449A4;
	--color-forest-green: #328A4F;
	--color-light-gray: #F3F3F3;
	--color-brown: #BE5F0D;
	--font-gothic: 'Noto Sans JP', 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', '游ゴシック Medium', 'Yu Gothic Medium', '游ゴシック体', YuGothic, 'メイリオ', Meiryo, Osaka, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
	--font-oswald: "Oswald", sans-serif;
}
body {
	min-width: 320px;
	background-color: var(--color-white);
	font-family: var(--font-gothic);
	line-height: 1.75;
	font-size: 16px;
	font-weight: normal;
	color: var( --color-text)
}
a {
	color: var(--color-steel-blue);
}
th {
	font-weight: normal;
}
a[href^="tel:"] {
	text-decoration: none;
	color: inherit;
}
img {
	max-width: 100%;
	height: auto;
}
.u-ttl {
	font-size: 26px;
	font-weight: bold;
	text-align: center;
	line-height: 1;
	margin-bottom: 30px;
	font-weight: normal;
}
.u-ttl_main {
	display: block;
	margin-bottom: 7px;
}
.u-ttl_sub {
	display: block;
	font-family: var(--font-oswald);
	font-size: 60px;
}
.u-linkList {
	list-style: none;
	font-weight: bold;
	line-height: 24px;
	font-weight: normal;
}
.u-linkList > li {}
.u-linkList > li > a {
	display: block;
	position: relative;
	padding-left: 18px;
	color: inherit;
	transition-duration: .3s;
	transition-property: background-color, color;
}
.u-linkList > li > a::before {
	content: "";
	display: block;
	position: absolute;
	top: 12px;
	left: 0;
	width: 10px;
	height: 2px;
	background-color: var(--color-text);
	transform: translateY(-50%);
}
.u-inner {
	max-width: 1200px;
	padding-left: 25px;
	padding-right: 25px;
	margin-left: auto;
	margin-right: auto;
	box-sizing: content-box;
}
.u-btn {
	display: flex;
	min-height: 60px;
	box-sizing: border-box;
	padding: 10px 10px;
	border: 1px solid var(--color-text);
	font-size: 20px;
	font-weight: bold;
	align-items: center;
	justify-content: center;
	color: var(--color-text);
	transition-duration: .3s;
	transition-property: background-color, color;
	line-height: 30px;
	text-decoration: none;
	position: relative;
	height: 100%;
	font-weight: normal;
}
.u-msg {
	text-align: center;
	font-size: 20px;
	line-height: 1.45;
}
.u-btn-transp {
	border: 2px solid var(--color-white);
	background-color: rgba(255, 255, 255, 0.20);
	color: var(--color-white);
}
.u-lowResInline {
	display: none;
}
.u-tabletInline {
	display: none;
}
.u-spInline {
	display: none;
}
.u-switchImg > img:last-child {
	display: none;
}
.u-ttlLarge {
	font-size: 42px;
	line-height: 62px;
	margin-bottom: 80px;
	font-weight: bold;
}
.u-ttlMiddle {
	font-size: 30px;
	font-weight: bold;
	line-height: 45px;
	margin-bottom: 50px;
	font-weight: normal;
}
.u-ttlSmall {
	font-size: 26px;
	font-weight: bold;
	margin-bottom: 31px;
	line-height: 38px;
	font-weight: normal;
}
.u-ttlSmall-number {
	position: relative;
	padding-left: 30px;
}
.u-ttlSmall-numberWide {
	padding-left: 47px;
}
.u-ttlSmall-number_num {
	display: block;
	position: absolute;
	left: 0;
	top: 19px;
	transform: translateY(-50%);
}
.u-list {
	list-style: none;
	font-weight: normal;
}
.u-list > li {
	position: relative;
	padding-left: 10px;
	margin-top: 2px;
}
.u-list > li::before {
	content: "";
	display: block;
	width: 3px;
	height: 3px;
	border-radius: 50%;
	background-color: currentColor;
	position: absolute;
	left: 0;
	top: 0.875em;
	transform: translateY(-50%);
}
.u-list > li:first-child {
	margin-top: 0;
}
.u-list > li > a {
	display: block;
}
.u-list > li > a:hover {}
.u-list-large {
	font-size: 22px;
	line-height: 34px;
}
.u-list-large > li {
	margin-top: 19px;
	padding-left: 20px;
}
.u-list-large > li::before {
	width: 5px;
	height: 5px;
	top: 20px;
}
.u-oList {
	list-style: none;
	counter-reset: number;
	line-height: 28px;
	font-weight: normal;
}
.u-oList > li {
	counter-increment: number;
	position: relative;
	padding-left: 20px;
	margin-top: 5px;
}
.u-oList > li:first-child {
	margin-top: 0;
}
.u-oList > li:nth-child(n+10) {
	padding-left: 25px;
}
.u-oList > li::before {
	content: counter(number)".";
	display: block;
	position: absolute;
	top: 14px;
	left: 0;
	transform: translateY(-50%);
}
.u-tbl {
	width: 100%;
	border-top: 1px solid currentColor;
	border-bottom: 1px solid currentColor;
}
.u-tbl > thead {}
.u-tbl > thead > tr {
	border-bottom: 1px solid currentColor;
}
.u-tbl > thead > tr > th {
	background-color: var(--color-gray);
	padding: 28px 30px;
	font-weight: bold;
	border-left: 1px solid currentColor;
	font-weight: normal;
}
.u-tbl > thead > tr > th:first-child {
	border-left: none;
}
.u-tbl > tbody {}
.u-tbl > tbody > tr {
	border-top: 1px solid currentColor;
}
.u-tbl > tbody > tr:first-child {
	border-top: none;
}
.u-tbl > tbody > tr > th {
	font-weight: bold;
	background-color: var(--color-gray);
	padding: 28px 30px;
	width: 320px;
	box-sizing: border-box;
	vertical-align: middle;
	text-align: left;
	font-weight: normal;
}
.u-tbl > tbody > tr > td {
	padding: 28px 30px;
	vertical-align: middle;
	text-align: left;
	padding-right: 0;
	font-weight: normal;
}
.u-btn-arrowRight {
	padding-right: 48px;
	padding-left: 8px;
}
.u-btn-arrowRight > .icon-arrowRight {
	display: block;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	right: 24px;
	font-size: 18px;
}
.u-btn-small {
	font-size: 16px;
	min-height: 40px;
	padding: 5px 10px;
	line-height: 24px;
	font-weight: 500;
	font-weight: normal;
}
.u-btn-small > .icon {
	display: block;
	position: relative;
	transform: none;
	right: 0;
	font-size: 12px;
	margin-left: 7px;
}
.u-bizCat {
	color: var(--color-white);
	display: flex;
	align-items: flex-start;
}
.u-bizCat_txt {
	display: block;
	min-width: 130px;
	text-align: center;
	min-height: 30px;
	box-sizing: border-box;
	padding: 0 10px;
}
.u-bizCat_txt-trade {
	background-color: var(--color-ocean-blue);
}
.u-bizCat_txt-logistic {
	background-color: var(--color-aqua-stone);
}
.u-bizCat_txt-service {
	background-color: var(--color-forest-green);
}
.u-bizCat_txt-inspection {
	background-color: var(--color-royal-purple);
}
.u-bizCat_txt-sales {
	background-color: var(--color-dusty-rose);
}
.u-bizCat_txt-management {
	background-color: var(--color-harvest-gold);
}
.u-cat {
	font-size: 12px;
	font-weight: normal;
	border: 1px solid currentColor;
	text-align: center;
	line-height: 22px;
	box-sizing: border-box;
	width: 150px;
	position: relative;
	top: 2px;
}
.u-hiddenSVG {
	position: absolute;
	width: 0;
	height: 0;
	visibility: hidden;
	opacity: 0;
	pointer-events: none;
}
.u-hoverLine {
	background-image: linear-gradient(to top, currentColor 1px, rgba(255, 255, 255, 0) 1px);
	background-position: right bottom;
	background-size: 0% 100%;
	background-repeat: no-repeat;
	transition-duration: .3s;
	transition-property: background-size;
}
.u-new {
	display: inline-block;
	font-size: 14px;
	line-height: 20px;
	background-color: var(--color-red);
	color: var(--color-white);
	padding: 2px 10px;
	box-sizing: border-box;
	width: 60px;
	text-align: center;
	transition-duration: .3s;
	transition-property: opacity;
}
.u-btn-large {
	font-size: 22px;
	line-height: 39px;
	min-height: 73px;
}
.u-ttlLarge-en {
	font-family: var(--font-oswald);
	font-size: 46px;
}
.u-sect {
	margin-top: -90px;
	padding-top: 90px;
}
.u-tblWrap {
	overflow: auto;
}
.u-spsInline {
	display: none;
}
.u-ttlMini {
	font-size: 20px;
	font-weight: bold;
	line-height: 29px;
	margin-bottom: 20px;
}
.u-ttlMini_num {
	margin-right: 10px;
}
.u-txtCard {
	font-size: 22px;
	line-height: 33px;
	font-weight: bold;
	font-weight: normal;
}
.u-txtCard > .icon {
	display: inline-block;
	font-size: 18px;
	margin-left: 15px;
	top: -1px;
	position: relative;
}
.u-ttlMiddle-bar {
	padding-left: 28px;
	margin-bottom: 22px;
	position: relative;
}
.u-ttlMiddle-bar::before {
	content: "";
	display: block;
	width: 8px;
	height: calc(100% - 8px);
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	background-color: #4279D2;
}
.u-txtCard-large {
	font-size: 30px;
	line-height: 45px;
}
.u-fitImg {
	position: relative;
	z-index: 1;
	padding-bottom: 100%;
	overflow: hidden;
}
.u-fitImg > img {
	display: block;
	position: absolute;
	z-index: 0;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.u-ttlXSmall {
	font-weight: normal;
	font-size: 18px;
	line-height: 1.5;
	margin-bottom: 16px;
}
@media screen and (max-width:1249px) {
	.u-lowResInline {
		display: inline;
	}
	img {
		max-width: 100%;
		height: auto;
	}
}
@media screen and (min-width:1001px) and (hover:hover) {
	a:hover {
		text-decoration: none;
	}
	a:hover .u-hoverLine {
		background-position: left bottom;
		background-size: 100% 100%;
	}
	.u-linkList > li > a:hover {
		color: var(--color-red);
	}
	.u-btn:hover {
		background-color: var(--color-text);
		color: var(--color-white);
	}
	.u-btn-transp:hover {
		background-color: rgba(255, 255, 255, 0.10);
	}
	a:hover .u-new {
		opacity: 0.5;
	}
}
@media screen and (max-width: 1000px) {
	body {}
	a {}
	.u-ttl {
		font-size: 20px;
	}
	.u-ttl_main {}
	.u-ttl_sub {}
	.u-linkList {}
	.u-linkList > li {}
	.u-linkList > li > a {}
	.u-linkList > li > a::before {}
	.u-inner {
		padding-left: 20px;
		padding-right: 20px;
	}
	.u-btn {}
	.u-msg {}
	.u-btn-transp {}
	.u-lowResInline {}
	.u-tabletInline {
		display: inline;
	}
	.u-ttlLarge {
		margin-bottom: 60px;
	}
	.u-ttlMiddle {
		margin-bottom: 40px;
	}
	.u-ttlSmall {}
	.u-ttlSmall-number {}
	.u-ttlSmall-numberWide {}
	.u-ttlSmall-number_num {}
	.u-list {}
	.u-list > li {}
	.u-list > li:first-child {}
	.u-list-large {}
	.u-list-large > li {}
	.u-tbl {}
	.u-tbl > thead {}
	.u-tbl > thead > tr {}
	.u-tbl > thead > tr > th {}
	.u-tbl > thead > tr > th:first-child {}
	.u-tbl > tbody {}
	.u-tbl > tbody > tr {}
	.u-tbl > tbody > tr:first-child {}
	.u-tbl > tbody > tr:last-child {}
	.u-tbl > tbody > tr > th {
		width: 240px;
		padding: 28px 20px;
	}
	.u-tbl > tbody > tr > td {
		padding: 28px 20px;
	}
	.u-btn-arrowRight {
		padding-left: 20px;
	}
	.u-btn-arrowRight > .icon-arrowRight {
		font-size: 16px;
	}
	.u-btn-small {
		font-size: 14px;
	}
	.u-btn-small > .icon {
		font-size: 14px;
	}
	.u-bizCat {}
	.u-bizCat_txt {}
	.u-bizCat_txt-trade {}
	.u-bizCat_txt-logistic {}
	.u-bizCat_txt-service {}
	.u-bizCat_txt-inspection {}
	.u-bizCat_txt-sales {}
	.u-bizCat_txt-management {}
	.u-cat {}
	.u-new {}
	.u-btn-large {
		font-size: 20px;
	}
	.u-sect {}
	.u-tblWrap {}
	.u-list > li::before {}
	.u-list-large > li::before {
		top: 17px;
	}
	.u-ttlMini {}
	.u-ttlMini_num {}
	.u-txtCard {}
	.u-txtCard > .icon {}
	.u-ttlMiddle-bar {
		line-height: 59px;
	}
	.u-ttlMiddle-bar::before {
		height: calc(100% - 18px);
	}
	.u-txtCard-large {
		font-size: 22px;
		line-height: 33px;
	}
	.u-fitImg {}
	.u-fitImg > img {}
	.u-ttlXSmall {}
}
@media screen and (max-width: 767px) {
	body {}
	a {}
	.u-ttl {
		font-size: 18px;
	}
	.u-ttl_main {}
	.u-ttl_sub {
		font-size: 40px;
	}
	.u-linkList {}
	.u-linkList > li {}
	.u-linkList > li > a {}
	.u-linkList > li > a::before {}
	.u-inner {}
	.u-btn {}
	.u-msg {
		font-size: 16px;
		line-height: 1.75;
	}
	.u-btn-transp {}
	.u-lowResInline {}
	.u-spNone {
		display: none;
	}
	.u-spInline {
		display: inline;
	}
	.u-switchImg > img:first-child {
		display: none;
	}
	.u-switchImg > img:last-child {
		display: block;
	}
	.u-ttlLarge {
		font-size: 28px;
		line-height: 40px;
		margin-bottom: 40px;
	}
	.u-ttlLarge-en {
		font-size: 36px;
	}
	.u-ttlMiddle {
		font-size: 24px;
		line-height: 34px;
		margin-bottom: 30px;
	}
	.u-ttlSmall {
		font-size: 22px;
		margin-bottom: 20px;
		line-height: 32px;
	}
	.u-ttlSmall-number {
		padding-left: 27px;
	}
	.u-ttlSmall-numberWide {
		padding-left: 45px;
	}
	.u-ttlSmall-number_num {
		top: 16px;
	}
	.u-list {}
	.u-list > li {}
	.u-list > li:first-child {}
	.u-list-large {
		font-size: 20px;
		line-height: 30px;
	}
	.u-list-large > li {
		margin-top: 18px;
		padding-left: 16px;
	}
	.u-tbl {
		display: block;
	}
	.u-tbl > thead {
		display: block;
	}
	.u-tbl > thead > tr {
		display: block;
	}
	.u-tbl > thead > tr > th {
		padding: 20px;
		display: block;
	}
	.u-tbl > thead > tr > th:first-child {}
	.u-tbl > tbody {
		display: block;
	}
	.u-tbl > tbody > tr {
		display: block;
	}
	.u-tbl > tbody > tr:first-child {}
	.u-tbl > tbody > tr:last-child {}
	.u-tbl > tbody > tr > th {
		width: auto;
		padding: 18px 20px;
		display: block;
	}
	.u-tbl > tbody > tr > td {
		padding: 18px 20px;
		width: auto;
		display: block;
	}
	.u-btn-arrowRight {
		padding-left: 15px;
		padding-right: 35px;
	}
	.u-btn-arrowRight > .icon-arrowRight {
		right: 16px;
	}
	.u-btn-small {
		min-height: 40px;
		font-size: 16px;
	}
	.u-btn-small > .icon {
		font-size: 12px;
	}
	.u-bizCat {}
	.u-bizCat_txt {}
	.u-bizCat_txt-trade {}
	.u-bizCat_txt-logistic {}
	.u-bizCat_txt-service {}
	.u-bizCat_txt-inspection {}
	.u-bizCat_txt-sales {}
	.u-bizCat_txt-management {}
	.u-cat {}
	.u-new {}
	.u-btn-large {}
	.u-sect {
		margin-top: -70px;
		padding-top: 70px;
	}
	.u-tblWrap {}
	.u-list > li::before {}
	.u-list-large > li::before {
		top: 15px;
	}
	.u-ttlMini {
		font-size: 18px;
		line-height: 26px;
	}
	.u-ttlMini_num {}
	.u-txtCard {
		font-size: 18px;
		line-height: 27px;
	}
	.u-txtCard > .icon {
		font-size: 13px;
		margin-left: 8px;
	}
	.u-ttlMiddle-bar {
		padding-left: 15px;
		margin-bottom: 33px;
	}
	.u-ttlMiddle-bar::before {
		height: 100%;
		width: 5px;
	}
	.u-txtCard-large {}
	.u-fitImg {}
	.u-fitImg > img {}
	.u-ttlXSmall {
		font-size: 16px;
	}
}
@media screen and (max-width:374px) {
	.u-ttl_sub {
		font-size: 35px;
	}
	.u-spsInline {
		display: block;
	}
}
