@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; /* 水平方向の中央揃え */
}

/* リスト */
.list01 {
	list-style: none;
	padding-left: 0px;
	margin-top: 1rem;
}

.list01 li {
	position: relative;
	padding-left: 2em; /* 中黒分の余白 */
	line-height: 1.7;
}

.list01 li::before {
	content: "・";
	position: absolute;
	left: 0;
	top: -0.45em;
	font-size: 2em; /* 中黒を大きめに */
	font-weight: 600; /* 少し太く */
	color: var(--main-color);
}


/* 背景括り */
.contentsbg {
	background: rgba(255, 255, 255, 0.8);
	padding: 60px 40px;
}
@media screen and (max-width: 568px) {
	.contentsbg {
		padding: 40px 15px 15px 15px;
	}
}

/* ===== spot-heading01（英語＋日本語サブ） ===== */
.spot-heading01{
	font-size: clamp(25px, 4vw, 42px);
	line-height: 1.05;
	font-style: italic;
	font-weight: 700;
	text-align: center;
	letter-spacing: 0.02em;
	color: rgba(6, 40, 61, 0.1); /* 濃ネイビー */

	margin: 0 auto 14px;
	position: relative;
}

/* 下線アクセント（ゴールド） */
.spot-heading01::after{
	content: "";
	display: block;
	width: min(240px, 62%);
	height: 3px;
	margin: 14px auto 0;
	background: linear-gradient(90deg, transparent, var(--accent-color1), transparent);
	border-radius: 10px;
	opacity: 0.95;
}

/* 日本語サブ */
.spot-heading01 span{
	display: block;
	margin-top: -10px;
	font-size: clamp(16px, 2.2vw, 22px);
	line-height: 1.5;
	font-style: normal;
	font-weight: 600;
	letter-spacing: 0.06em;

	color: var(--main-color); /* メインネイビー */
}



/*======= TOPページ ======*/
/*ご挨拶*/
.greeting {
	padding: clamp(40px, 6vw, 90px) 0 var(--v-space);
	background-color: #fff;

	position: relative; /* sectionの位置を相対的にする*/ 
	z-index: 1; /* 背景画像より上に表示 */ 
}

.greeting-haba{
	margin: 0 auto;
	max-width: 900px;
	padding: 2% 0 0 0;
	margin-bottom: 3rem;
}


/*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;
	}
}


.sec1{
	padding: var(--v-space) 0;
	position: relative;
	z-index: 1;
}
/* 印刷時は固定背景を出力する */
@media print{
	.sec1{
		background-image: url(../img/bg_01.jpg);		
		background-size: cover;
	}
}


/* ===== WORKS / sec3 ===== */
.sec3{
	padding: var(--v-space) 0;
	background-color: #f7f7f7;
	position: relative;
	z-index: 1;
}

.works-gallery{
	display: grid;
	gap: 12px;
	padding-top: 3rem;
}

@media (min-width: 568px){
	.works-gallery{
		grid-template-columns: repeat(2, 1fr);
		gap: 14px;
	}
}

@media (min-width: 1024px){
	.works-gallery{
		grid-template-columns: repeat(3, 1fr);
		gap: 16px;
	}
}

.works-item{
	background: rgba(255,255,255,0.85);
	border: 1px solid rgba(6,40,61,0.10);
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 6px 18px rgba(0,0,0,0.06);
}

.works-item img{
	width: 100%;
	aspect-ratio: 3 / 2;
	object-fit: cover;
	transition: transform .25s ease;
}

.works-item a:hover img{
	transform: scale(1.03);
}

.sec4{
	padding: var(--v-space) 0;
	height: 20vh;
	position: relative;
	z-index: 1;
}
/* 印刷時は固定背景を出力する */
@media print{
	.sec4{
		background-image: url(../img/bg_01.jpg);
		background-size: cover;
	}
}

/*======= FAQ ======*/
.faq_sec1 {
	padding: var(--v-space) 0;
	background-color: #fff;

	position: relative;
	z-index: 1;
}

.faq-item {
	display: grid;
	grid-template-columns: 1.5em 1fr;
	column-gap: 10px;
	row-gap: 5px;
}

.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: var(--v-space) 0 ;
	position: relative;
	z-index: 1;
}
@media print, screen and (min-width: 768px) {
	.info_sec1 {
		background-image: url(../img/bg_02.jpg);
		background-repeat: no-repeat;
		background-position: center;
		background-size: cover;
	}
}
@media only screen and (max-width: 767px) {
	.info_sec1 {
		background-image: url(../img/bg_02_sp.jpg);
		background-repeat: no-repeat;
		background-position: center;
		background-size: cover;
	}
}



/* 概要部分のテーブル */
.info1 {
	font-weight: bold;
	border-bottom: 1px dashed #999;
	color: var(--txt-color);
	padding: 5px;
	/* width: 5.25em; */
	width: 170px;
	text-align: left;
}

.info2 {
	border-bottom: 1px dashed #999;
	padding: 5px;
	/* width: 400px; */
}

@media screen and (max-width: 568px) {
	.info1 {
		display: block;
		padding: 8px 2px 2px 2px;
		width: 100%;
		border-bottom: 1px solid rgba(255, 255, 255, 0);
	}

	.info2 {
		display: block;
		padding: 2px;
		width: 99%;
	}
}



/*会社概要*/
.bg_b {
	background: rgba(255, 255, 255, 0.8);
	padding: 40px;
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.bg_b:hover {
	transform: translateY(-5px);
	box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}

@media screen and (max-width: 568px) {
	.bg_b {
		padding: 20px;
	}
}



.access_sec1 {
	padding: var(--v-space) 0;
	background-color: #FFF;

	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%;
	}
}