@charset "UTF-8";


/*=======================================================*/
/*					セクション毎のCSS					  */
/*======================================================*/

/*============ 共通 =========== */

/* 親要素からはみ出して画面いっぱいに */
.full {
	margin: 0 calc(50% - 50vw);
	width: 100vw;
}
@media print {
	.full {
		margin: 0;
		width: 100%;
	}
}

.hline {
	display: inline-block;
	width: 40px; /* 横棒の長さ（調整可） */
	height: 1px; /* 横棒の太さ（調整可） */
	background-color: #2d2d2d; /* 横棒の色 */
	vertical-align: middle;
	margin: 0 0.1em; /* 文章と横棒の間隔 */
}

/*パンくず*/
.sec_pankuzu{
	padding: 0px;
	/* background-color: var(--base-color); */
	position: relative;
	z-index: 1;
}

/* タグ */
.kakomi01{
	text-align: center;
}
.kakomi01 span {
	padding: 3px 7px 2px 7px;
	margin: 0px 0px 5px;
	background-color: var(--main-color);
	border: 1px solid #eee;
	color:#FFF;
	border-radius: 5px;
	text-align: center;
	display: inline-block;
	font-size: clamp(12px, 1.3vw, 12px);
}

/* タグ（左右が揃う）  */
.kakomi-tag01 {
	display: flex;
	flex-wrap: wrap; /* 子要素を折り返す */
	gap: 10px;
	width: 100%;
	justify-content: space-between; /* 左右のボックスを揃える */
}
.kakomi-tag01 p {
	background-color: var(--accent-color3);
	padding: 5px 10px;
	font-size: clamp(14px, 1.6vw, 16px);
	font-family: Arial, sans-serif;
	flex-grow: 1; /* ボックスのサイズを自動調整 */
	min-width: 100px; /* ボックスの最小幅を設定 */
	box-sizing: border-box;
	text-align: center; /* 水平方向の中央揃え */
}
.kakomi-tag01 .end{		/* などを末尾につけたい場合に */
	background-color:transparent;
	padding: 5px;
	font-size: clamp(14px, 1.3vw, 14px);
	font-family: Arial, sans-serif;
	width: 20px;
	min-width: 40px; /* ボックスの最小幅を設定 */
	box-sizing: border-box;
	text-align: right; /* 水平方向の中央揃え */
}


/*======= TOPページ ======*/
/*ご挨拶*/
.greeting {
	padding: clamp(40px, 6vw, 90px) 0 var(--v-space2);
	/* background-color: #FFF; */

	position: relative; /* sectionの位置を相対的にする*/ 
	z-index: 1; /* 背景画像より上に表示 */ 
}

.greeting-haba{
	margin: 0 auto;
	max-width: 900px;
	padding: 2%;
	background-color: #ffffff9d;
}

/*TELバナー*/
.tel_bnr{
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-template-rows: 1fr;
	grid-column-gap: 20px;
	grid-row-gap: 10px;
}
@media only screen and (max-width: 767px) {
	.tel_bnr{
		grid-template-columns: repeat(1, 1fr);
		grid-row-gap: 10px;
	}
}

/*TOP 弊社が選ばれる理由*/
.top_sec1 {
	padding: var(--v-space) 0;
	background-color: #f3d2d26b;
	position: relative;
	z-index: 1;
}

/*カード（選ばれる理由） start*/

@media only screen and (max-width: 568px) {
	.top_sec1 .top_sec1-haba {
		margin: 0 auto;
	}
}

.top_sec1 .top_sec1-card__item {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}

@media only screen and (max-width: 768px) {
	.top_sec1 .top_sec1-card__item {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media only screen and (max-width: 568px) {
	.top_sec1 .top_sec1-card__item {
		grid-template-columns: repeat(1, 1fr);
	}
}

.top_sec1 .top_sec1-card__item>div {
	/*子要素のそれぞれのdivの高さを揃える記述*/
	display: grid;
	grid-template-rows: subgrid;
	grid-row: span 3;
	gap: 0px;
	/*ここまで*/

	background-color: #ffffffd7;
	border-radius: 15px;
	box-sizing: border-box;
	border: solid 1px var(--main-color);
	overflow: hidden;
}

.top_sec1 .top_sec1-card__item figure {
	margin: 0;
}

.top_sec1 .top_sec1-card__item img {
	width: 100%;
	height: auto;
	display: block;
	border-radius: 15px 15px 0px 0px;
}

.top_sec1 .top_sec1-card__item h4 {
	font-size: 20px;
	font-weight: bold;
	line-height: 1.3;
	text-align: center;
	color: var(--main-color);
	margin: 0;
	padding: 15px;
	position: relative;
	background-image: linear-gradient(135deg, var(--main-color) 12%, transparent 12%);
	z-index: 3;
}

.top_sec1 .top_sec1-card__item h4::before {
	content: attr(data-en);
	position: absolute;
	z-index: 2;
	top: 5%;
	left: 3%;
	color: #fff;
	font-size: clamp(17px, 2vw, 18px);
	font-family: "Montserrat", sans-serif;
}

.top_sec1 .top_sec1-card__item p {
	margin: 0;
	padding: 0 18px 20px 22px;
	font-size: clamp(14px, 1.4vw, 16px);
	line-height: 1.7;
	text-align: justify;
}

/*カード（選ばれる理由） end*/
/* =========================
業務内容（service）
========================= */

/* se_sec1: 強み */
.se_sec1 {
	padding: var(--v-space) 0;
	background-color: #2d2d2d59;
	position: relative;
	z-index: 1;
}

.se_sec1__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}

@media only screen and (max-width: 768px) {
	.se_sec1__grid {
		grid-template-columns: repeat(1, 1fr);
	}
}

.se_sec1__card {
	display: grid;
	grid-template-rows: subgrid;
	grid-row: span 3;

	background-color: #fff;
	border-radius: 15px;
	border: 1px solid #e6e6e6;
	padding: 22px;
	text-align: center;
	box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
	gap: 5px;
}

.se_sec1__icon {
	display: grid;
	place-items: center;
}

.se_sec1__icon img {
	width: 60px;
	height: 60px;
	display: block;
}

.se_sec1__ttl {
	font-size: clamp(1rem, 1.1vw, 1.125rem);
	font-weight: 700;
	color: var(--accent-color2);
}

.se_sec1__txt {
	font-size: clamp(0.875rem, 1.05vw, 1rem);
	line-height: 1.8;
}

/* se_sec2: 業務内容 */
.se_sec2 {
	padding: var(--v-space) 0;
	background-color: #ffffff62;
	position: relative;
	z-index: 1;
}

.se_sec2__unit {
	padding-top: 25px;
}

.se_sec2__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 28px;
	align-items: center;
}

@media only screen and (max-width: 768px) {
	.se_sec2__grid {
		grid-template-columns: 1fr;
	}
}

.se_sec2__grid.is-reverse {
	direction: rtl;
}

.se_sec2__grid.is-reverse>* {
	direction: ltr;
}

.se_sec2__num {
	font-size: clamp(3.5rem, 4vw, 4rem);
	font-weight: 900;
	color: var(--accent-color1);
	opacity: 0.25;
	line-height: 1;
	margin-bottom: -20px;
}

.se_sec2__ttl {
	font-size: clamp(1.25rem, 2vw, 1.625rem);
	font-weight: 800;
	margin-bottom: 10px;
}

.se_sec2__txt {
	font-size: clamp(0.875rem, 1.1vw, 1rem);
	line-height: 1.9;
}

.se_sec2__tag {
	margin-top: 14px;
	background-color: #f0dfdf;
	padding: 12px 14px;
	font-size: clamp(0.875rem, 1.1vw, 1rem);
	font-weight: 700;
}

.se_sec2__img {
	border-radius: 18px;
	overflow: hidden;
	box-shadow: 0 10px 28px rgba(0, 0, 0, 0.10);
}

.se_sec2__img img {
	width: 100%;
	height: auto;
	display: block;
}

/* =========================
業務内容（service） - se_sec3: 主な輸送品目
========================= */
.se_sec3 {
	padding: var(--v-space) 0;
	position: relative;
	z-index: 1;
}

/* カード群 */
.se_sec3__cards {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;

	/* subgrid用：段（画像／見出し／本文）を統一 */
	grid-template-rows: auto auto 1fr;
}

@media only screen and (max-width: 1100px) {
	.se_sec3__cards {
		grid-template-columns: repeat(3, 1fr);
	}
}

@media only screen and (max-width: 768px) {
	.se_sec3__cards {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media only screen and (max-width: 568px) {
	.se_sec3__cards {
		grid-template-columns: repeat(1, 1fr);
	}
}

/* カード（subgrid） */
.se_sec3__card {
	display: grid;
	grid-template-rows: subgrid;
	grid-row: span 3;
	gap:0px;
	background-color: #fff;
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 10px 26px rgba(0, 0, 0, 0.22);
}

/* 画像 */
.se_sec3__img {
	margin: 0;
	aspect-ratio: 4 / 3;
	overflow: hidden;
}

.se_sec3__img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

/* タイトル（品目名は丸めない） */
.se_sec3__ttl {
	font-size: clamp(1rem, 1.1vw, 1.125rem);
	font-weight: 800;
	line-height: 1.3;
	padding: 12px 14px 6px;
	margin: 0;
}

/* 説明 */
.se_sec3__txt {
	font-size: clamp(0.8125rem, 1vw, 0.875rem);
	line-height: 1.8;
	padding: 0 14px 14px;
	margin: 0;
	opacity: 0.95;
}


/* 〆の一文 */
.se_sec3__note {
	margin-top: 16px;
	font-size: clamp(0.875rem, 1vw, 1rem);
	margin-top: var(--space-md);
}

/* se_sec4: トラック保有台数 */
.se_sec4 {
	padding: var(--v-space) 0;
	background-color: #f3c0c06e;
	position: relative;
	z-index: 1;
}

.se_sec4__lead {
	font-size: clamp(0.875rem, 1vw, 1rem);
}

.se_sec4__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 12px;
	margin-top: 18px;
}
@media only screen and (max-width: 950px) {
	.se_sec4__grid {
		grid-template-columns: repeat(2, 1fr);
	}
}
@media only screen and (max-width: 767px) {
	.se_sec4__grid {
		grid-template-columns: repeat(1, 1fr);
	}
}

.se_sec4__row {
	display: grid;
	grid-template-columns: 1fr auto;
	align-items: center;
	gap: 10px;
	background-color: #f8f2e6;
	border-left: 4px solid var(--main-color);
	border-radius: 5px;
	padding: 12px 14px;
}

.se_sec4__badge {
	background-color: var(--main-color);
	color: #fff;
	border-radius: 10px;
	padding: 6px 10px;
	font-size: clamp(0.8125rem, 0.95vw, 0.875rem);
	font-weight: 700;
}

/* se_sec5: 写真紹介 */
.se_sec5 {
	padding: var(--v-space) 0;
	background-color: #27294252;
	position: relative;
	z-index: 1;
}

.se_sec5__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px;
}

@media only screen and (max-width: 768px) {
	.se_sec5__grid {
		grid-template-columns: repeat(1, 1fr);
	}
}

.se_sec5__item {
	margin: 0;
	background-color: #fff;
	border-radius: 14px;
	overflow: hidden;
	box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
}

.se_sec5__item img {
	width: 100%;
	height: auto;
	display: block;
}

.se_sec5__item figcaption {
	padding: 10px 12px;
	font-size: clamp(0.875rem, 1vw, 1rem);
	font-weight: 700;
	color: var(--accent-color2);
}

/* se_sec6: 安全 */
.se_sec6 {
	padding: var(--v-space) 0;
	background-color: #FFF;
	position: relative;
	z-index: 1;
	text-align: center;
}
@media print, screen and (min-width: 768px) {
	.se_sec6 {
		background-image: url(../img/bg_01.jpg);
		background-repeat: no-repeat;
		background-position: center;
		background-size: cover;
	}
}
@media only screen and (max-width: 767px) {
	.se_sec6 {
		background-image: url(../img/bg_01_sp.jpg);
		background-repeat: no-repeat;
		background-position: center;
		background-size: cover;
	}
}

.se_sec6_bg{
	padding: clamp(1.5rem, 4vw, 2.5rem);
	background-color: rgba(255, 255, 255, 0.8);
}

.se_sec6__ttl {
	font-size: clamp(1.25rem, 2.2vw, 1.75rem);
	font-weight: 600;
	margin-bottom: 14px;
}

.se_sec6__txt {
	max-width: 820px;
	margin: 0 auto 18px;
	font-size: clamp(0.875rem, 1.1vw, 1rem);
	line-height: 1.9;
	opacity: 0.95;
}

.se_sec6__btn a {
	background-color: var(--accent-color1);
	color: #fff;
	padding: 7px 15px;
}

.se_sec6__btn a:hover {
	background-color: var(--accent-color2);
	color: #fff;
}

/*======= FAQ ======*/
.faq_sec1 {
	padding: clamp(70px, 6vw, 90px) 0 var(--v-space) 0;

	position: relative;
	z-index: 1;
}

.faq-item {
	display: grid;
	grid-template-columns: 1.5em 1fr;
	column-gap: 10px;
	row-gap: 5px;
	padding: 15px 25px 15px 20px;
	background-color: #ffffff8a;
	margin-bottom: 1vh;
}

.faq-label {
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-weight: bold;
	font-size: 110%;
	line-height: 1.5;
	border-radius: 3px;
	width: 1.5em;
	text-align: center;
	align-self: start;
	/* lavelを上揃えに */
}

.faq-label.q {
	background-color: var(--main-color);
}

.faq-label.a {
	background-color: var(--accent-color1);
}

.faq-question,
.faq-answer {
	margin: 0;
	line-height: 1.6;
	text-align: justify;
}

.faq-question {
	font-weight: bold;
}

hr.faqHr {
	margin-top: 15px;
	margin-bottom: 15px;
	border-top: 1px solid #e9e9e9;
}

/*======= 会社案内ページ ======*/
/*会社案内*/
.info_sec1{
	padding: clamp(70px, 6vw, 90px) 0 var(--v-space) 0;

	position: relative; /* sectionの位置を相対的にする*/ 
	z-index: 1; /* 背景画像より上に表示 */ 
}

/* 概要部分のテーブル */

.info_sec1__haba{
	max-width: 850px;
	margin: 0 auto;
}
.info_sec1_container {
	display: grid;
	grid-template-columns: 1fr;
	gap: 10px;
	font-family: 'Arial', sans-serif;
}

.info_sec1_container .item {
	border: 1px solid #ddd;
	box-shadow: 0 2px 6px rgba(0,0,0,0.1);
	border-radius: 6px;
	background-color: #fff;
	padding: 12px 16px;
	display: grid;
	grid-template-columns: 180px 1fr;
	align-items: center;
	gap: 20px;
	align-items: stretch;
}

.info_sec1_container .label {
	display: flex;
	align-items: center;
	font-weight: 600;
	color: var(--txt-color);
	white-space: nowrap;
	background-color: #F3E6E6;
	padding: 5px 7px;
}

.info_sec1_container .content {
	/* display: flex; */
	align-items: center;
	color: #333;
	padding: 5px 7px;
}
.info_sec1_container .content a {
	display: inline-block;
	line-height: inherit;
}

.tel-label {
	display: inline-block;
	width: 48px;          /* ← 幅指定できる */
	margin: 0px 10px 0px 0px;
	font-size: 15px;
	font-weight: bold;
}
.mt4{
	margin-top: 4px;
}

/* レスポンシブ：568px以下で縦並び＋枠内レイアウトも縦に */
@media only screen and (max-width: 568px) {
	.info_sec1_container .item {
		grid-template-columns: 1fr;
		gap:0px;
		padding: 10px 14px;
	}

	.info_sec1_container .label {
		line-height: 1.6;
		font-size: 14px;
	}

	.info_sec1_container .content {
		font-size: 14px;
	}
}


.access_sec1{
	padding: var(--v-space) 0;
	background-color: #e9cacab0;

	position: relative; /* sectionの位置を相対的にする*/ 
	z-index: 1; /* 背景画像より上に表示 */ 
}
/* アクセス部分のテーブル */
.access1 {
	font-weight: bold;
	border-bottom: 1px dashed #999;
	padding: 5px;
	width: 5.25em;
}
.access2 {
	border-bottom: 1px dashed #999;
	padding: 5px;
	width: 400px;
}
@media screen and (max-width: 568px) {
	.access1 {
		display: block;
		padding: 8px 2px 2px 2px;
		width: 100%;
		border-bottom: 1px solid rgba(255,255,255,0);
	}
	.access2 {
		display: block;
		padding: 2px;
		width: 99%;
	}
}
