@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(36, 36, 36, 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, #bb9f2c 40%, #d4c04a 50%, #b7ab2d 60%, 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(--accent-color2);
}



/*======= TOPページ ======*/
/*メインビジュアル(動画)*/
.mv-inner{
	display: grid;
	grid-template-columns: 0.2fr 1fr; /* 左右 */
	width: 100%;
}

/* =========================
   左（テキスト）
========================= */
.mv-left{
	display: flex;
	flex-direction: column;
	align-items: center;     /* 縦中央 */
	justify-content: center; /* 横中央 */
	text-align: left;      /* テキスト上揃え */
	padding: 30px 20px;
}

/* 縦書きコピー */
.mv-copy{
	writing-mode: vertical-rl;
	font-size: clamp(20px, 2vw, 28px);
	letter-spacing: 0.1em;
	line-height: 1.8;
	margin-bottom: 30px;
}

/* サブ */
.mv-sub{
	font-size: 12px;
	color: #666;
	display: flex;
	flex-wrap: wrap;   /* ←折り返し */
	gap: 3px;
	justify-content: center;
}

.mv-sub span::after{
	content: "｜";
	margin-left: 3px;
}

.mv-sub span:last-child::after{
	content: "";
}

/* =========================
   右（ビジュアル）
========================= */
.mv-right{
	width: 100%;
	height: auto;
	background: var(--base-color);
	display: flex;
	align-items: center;
	justify-content: center;
}

.mv-right video{
	width: 100%;
	height: auto;
	object-fit: cover;
	display: block;
}

/* =========================
   SP対応
========================= */
@media only screen and (max-width: 767px) {
	.mv-inner{
		grid-template-columns: 1fr;
	}
	.mv-left{
		text-align: center;      /* テキスト中央揃え */
	}
	.mv-right{
		order: -1;
	}
	.mv-copy{
		writing-mode: horizontal-tb;
	}
	.mv-right{
		height: 400px;   /* ←高さ固定 */
		overflow: hidden; /* ←はみ出しカット */
	}

	.mv-right video{
		width: 100%;
		height: 100%;
		object-fit: cover; /* ←左右切り落としの核心 */
	}
}
/*メインビジュアル(動画) ここまで*/

/*ご挨拶*/
.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;
	}
}

/* SNSバナー */
.sns_bnr {
	display: grid;
	grid-template-columns: 1fr 1fr 0.56fr;
	grid-template-rows: 1fr;
	grid-column-gap: 10px;
	grid-row-gap: 10px;
	margin-top: 20px;
}

@media (max-width: 568px) {
	.sns_bnr {
		grid-template-columns: repeat(1, 1fr);
	}
}

.sns_bnr img{
	border-radius: 10px;
}

/* サービス案内 */
.sec1{
	padding: var(--v-space) 0;
	background: #f7f7f7;
	position: relative;
	z-index: 1;
}
@media print, screen and (min-width: 768px) {
	.sec1 {
		background-image: url(../img/bg_01.jpg);
		background-repeat: repeat;
	}
}
@media only screen and (max-width: 767px) {
	.sec1 {
		background-image: url(../img/bg_01_sp.jpg);
		background-repeat: repeat;
	}
}
.service-list{
	margin-top: 10px;
	padding-left: 0;
	list-style: none;
}

.service-list li{
	position: relative;
	padding-left: 2.3em;
	margin-bottom: 6px;
	line-height: 1.7;
}

/* 大きい中黒 */
.service-list li::before{
	content: "・";
	position: absolute;
	left: 0;
	top: -0.25em;
	font-size: 3em;
	line-height: 1;
	color: var(--accent-color1);
}

/* =========================
sec2 / 施工事例
========================= */
.sec2{
	padding: var(--v-space) 0;
	background:#fff;
	position:relative;
	z-index:1;
}
.sec2_list{
	padding: var(--v-space2) 0;
	background-size: 6px 6px;
	background-image: repeating-linear-gradient(0deg, #eeeae4, #eeeae4 1px, #fff 1px, #fff);
	position:relative;
	z-index:1;
}

/* =====================================================
■ 施工事例セクション全体
===================================================== */

.sec_work__list {
	display: grid;
	gap: clamp(28px, 4vw, 48px);
}


/* =====================================================
■ 施工事例カード
===================================================== */
.sec_work__case {
	padding: clamp(20px, 3vw, 36px);
	background: #fff;
	border: 1px solid #e6e6e6;
	box-shadow: 0 12px 30px rgba(0, 0, 0, 0.04);
	box-sizing: border-box;
}


/* =====================================================
■ タイトル行
■ タグ＋タイトルを横並び
===================================================== */
.sec_work__meta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 12px 16px;
	padding-bottom: clamp(14px, 2vw, 18px);
	margin-bottom: clamp(18px, 2.5vw, 28px);
	border-bottom: 1px solid #e9e9e9;
}

.sec_work__tag {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 6px 10px;
	background: #249243;
	font-size: 11px;
	font-weight: 700;
	line-height: 1;
	letter-spacing: 0.08em;
	color: #fff;
}

.sec_work__tag--blue {
	background: #0d67c7;
}

.sec_work__title {
	font-size: clamp(17px, 2vw, 20px);
	line-height: 1.4;
}


/* =====================================================
■ 説明文
===================================================== */
.sec_work__text {
	margin-top: clamp(16px, 2vw, 24px);
	font-size: clamp(14px, 1.4vw, 16px);
	line-height: 1.9;
	color: #333;
}


/* =====================================================
■ ビフォーアフターの左右2カラム
===================================================== */
.sec_work__compare {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: clamp(16px, 2vw, 28px);
}


/* =====================================================
■ ギャラリー共通
===================================================== */
.sec_work__gallery {
	display: grid;
	gap: clamp(8px, 1vw, 14px);
}


/* =====================================================
■ gallery--1
■ 1枚
===================================================== */
.sec_work__gallery--1 {
	grid-template-columns: 1fr;
}


/* =====================================================
■ gallery--2
■ 2枚均等
===================================================== */
.sec_work__gallery--2 {
	grid-template-columns: repeat(2, minmax(0, 1fr));
}


/* =====================================================
■ gallery--3
■ 左に大きい1枚、右に2枚
===================================================== */
.sec_work__gallery--3 {
	grid-template-columns: minmax(0, 2fr) minmax(0, 1fr);
	grid-template-rows: repeat(2, 1fr);
}

.sec_work__gallery--3 .sec_work__photo--main {
	grid-row: 1 / 3;
}


/* =====================================================
■ gallery--4
■ 2列×2段
===================================================== */
.sec_work__gallery--4 {
	grid-template-columns: 2fr 1fr 1fr 1fr;
}


/* =====================================================
■ gallery--5
■ PCは横一列
===================================================== */
.sec_work__gallery--5 {
	grid-template-columns: repeat(5, minmax(0, 1fr));
}


/* =====================================================
■ 写真まわり
===================================================== */
.sec_work__photo {
	position: relative;
	overflow: hidden;
}

.sec_work__photo > a {
	display: block;
	width: 100%;
	height: 100%;
	text-decoration: none;
	color: inherit;
}

.sec_work__photo img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	aspect-ratio: 4 / 3;
	transition: transform .4s ease;
	cursor: zoom-in;
}

.sec_work__photo:hover img {
	transform: scale(1.03);
}
.sec_work__photo figcaption {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	margin: 0;
	padding: 8px 10px;
	background: rgba(0, 0, 0, 0.8);
	color: #fff;
	font-size: 13px;
	line-height: 1.4;
}

/* =====================================================
■ BEFORE / AFTER ラベル
■ 写真に重ねる
===================================================== */
.sec_work__label {
	position: absolute;
	top: 12px;
	left: 12px;
	z-index: 1;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 7px 12px;
	background: rgba(47, 47, 47, 0.9);
	font-size: 11px;
	font-weight: 700;
	line-height: 1;
	letter-spacing: 0.08em;
	color: #fff;
}

.sec_work__label--after {
	background: var(--main-color);
}
.sec_work__label--inprogress {
	background: var(--accent-color1);
}


/* =====================================================
■ パターンごとの画像比率
===================================================== */

/* 1枚は少し横長 */
.sec_work__gallery--1 .sec_work__photo img {
	aspect-ratio: 16 / 9;
}
/* 2枚の縦長 */
@media print, screen and (min-width: 768px) {
	.sec_work__gallery--2.vt .sec_work__photo img {
		aspect-ratio: 121 / 140;
	}
}

/* 3,4枚のメイン画像はやや横長 */
@media print, screen and (min-width: 768px) {
	.sec_work__gallery--3 img,.sec_work__gallery--4 img {
		aspect-ratio: 16 / 10;
	}

	/* 5枚は少し縦長 */
	.sec_work__gallery--5 .sec_work__photo img {
		aspect-ratio: 3 / 4;
	}
}


/* =====================================================
■ スマホ
===================================================== */
@media only screen and (max-width: 767px) {
	.sec_work .w-container {
		width: min(100% - 24px, 1200px);
	}

	.sec_work__case {
		padding: 18px;
	}

	.sec_work__meta {
		align-items: flex-start;
		gap: 10px 12px;
	}

	.sec_work__title {
		width: 100%;
	}

	/* ビフォーアフターは縦並び */
	.sec_work__compare {
		grid-template-columns: 1fr;
	}

	/* 2枚は1列 */
	/* .sec_work__gallery--2 {
		grid-template-columns: 1fr;
	} */

	/* 3枚は1列 */
	.sec_work__gallery--3 {
		grid-template-columns: 1fr;
		grid-template-rows: auto;
	}
	.sec_work__gallery--3 .sec_work__photo--main {
		grid-row: auto;
	}
	.sec_work__gallery--3 img{
		aspect-ratio: 16 / 8;
	}

	/* 4枚は2列維持 */
	.sec_work__gallery--4 {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	/* 5枚は2列 + 先頭だけ大きく */
	.sec_work__gallery--5 {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.sec_work__gallery--5 .sec_work__photo:first-child {
		grid-column: 1 / -1;
	}

	.sec_work__gallery--5 .sec_work__photo img {
		aspect-ratio: 4 / 3;
	}

	.sec_work__label {
		top: 10px;
		left: 10px;
		padding: 6px 10px;
	}
}

/* =========================
sec3 / 家づくりの流れ
========================= */
.sec3{
	padding: var(--v-space) 0;
	background:#f7f7f7;
	position:relative;
	z-index:1;
}

.flow-box{
	position: relative;
	margin: 0 auto;
	padding: 40px 40px;
	background: #fff;
	border: 1px solid #e8e8e8;
	box-shadow: 0 10px 30px rgba(0,0,0,0.05);
	box-sizing: border-box;
}
.flow-line{
	position: absolute;
	top: 90px;
	bottom: 50px;
	left: 75px;
	width: 2px;
	background: #ececec;
	z-index: 0;
}
.flow-item{
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: 72px 1fr;
	gap: 0 24px;
	align-items: start;
}
.flow-item + .flow-item{
	margin-top: 12px;
}
.flow-num{
	display: flex;
	align-items: center;
	justify-content: center;
	width: 56px;
	height: 56px;
	margin: 0 auto;
	border: 2px solid #d9d9d9;
	border-radius: 50%;
	background: #fff;
	color: #b1b1b1;
	font-size: 22px;
	font-weight: 700;
	line-height: 1;
	letter-spacing: 0.08em;
	box-sizing: border-box;
}
.flow-content{
	display: grid;
	grid-template-columns: 1fr 180px;
	gap: 24px;
	/* align-items: center; */
	padding: 10px 0 20px 0;
	border-bottom: 1px solid #ececec;
	transition: border-color 0.3s ease;
}
.flow-item:last-child .flow-content{
	border-bottom: none;
}
.flow-text h3{
	font-size: 22px;
	font-weight: 700;
	line-height: 1.5;
	margin-bottom: 8px;
}
.flow-text p{
	font-size: 15px;
	line-height: 1.8;
	color: #555;
}
.flow-img{
	overflow: hidden;
	border-radius: 4px;
}
.flow-img img{
	width: 100%;
	height: 120px;
	object-fit: cover;
	filter: grayscale(100%);
	transition: transform 0.4s ease, filter 0.4s ease;
	display: block;
}
.flow-item:hover .flow-num{
	border-color: var(--main-color);
	color: var(--main-color);
}
.flow-item:hover .flow-content{
	border-color: var(--main-color);
}
.flow-item:hover .flow-img img{
	filter: grayscale(0%);
	transform: scale(1.05);
}

@media only screen and (max-width: 767px) {
	.flow{
		padding: 70px 0;
	}
	.flow-box{
		padding: 24px 18px;
	}
	.flow-line{
		left: 45px;
		top: 60px;
		bottom: 50px;
	}
	.flow-item{
		grid-template-columns: 56px 1fr;
		gap: 0 14px;
	}
	.flow-num{
		width: 42px;
		height: 42px;
		font-size: 16px;
	}
	.flow-content{
		grid-template-columns: 1fr;
		gap: 12px;
		padding: 16px 0 20px;
	}
	.flow-text h3{
		font-size: 18px;
	}
	.flow-text p{
		font-size: 14px;
		line-height: 1.7;
	}
	.flow-img{
		order: -1;
	}
	.flow-img img{
		height: 160px;
		filter: grayscale(0%);
	}
}

/*======= 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(--accent-color2);
}

.faq-label.a {
	background-color: #666;
}

.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;
}

/*======= 会社案内ページ ======*/

/*---------------------------------
	message
---------------------------------*/
.message{
	padding: var(--v-space2) 0 var(--v-space);
	background: var(--accent-color2);
	color: #fff;
}
@media print, screen and (min-width: 768px) {
	.message {
		background-image: url(../img/bg_02.jpg);
		background-repeat: no-repeat;
		background-position: top;
		background-size: cover;
	}
}
@media only screen and (max-width: 767px) {
	.message {
		background-image: url(../img/bg_02_sp.jpg);
		background-repeat: no-repeat;
		background-position: top;
		background-size: cover;
	}
}
.message__wrap{
	display: grid;
	grid-template-columns: 1fr;
	gap: clamp(15px, 2vw, 20px);
	margin-top: clamp(32px, 4vw, 48px);
}
.message-card{
	position: relative;
	height: 100%;
	padding: clamp(28px, 4vw, 48px);
	background: #171717c9;
	border: 1px solid rgba(255,255,255,0.08);
	box-shadow: 0 12px 30px rgba(0,0,0,0.18);
	box-sizing: border-box;
}
.message-card img{
	display: block;
	margin-inline: auto;
	border-radius: 20px;
	max-width: 250px;
	margin-bottom: 10px;
}
.message-card__quote{
	position: absolute;
	top: clamp(10px, 2vw, 18px);
	left: clamp(14px, 2vw, 20px);
	font-size: clamp(64px, 9vw, 110px);
	line-height: 1;
	color: rgba(255,255,255,0.06);
	font-family: serif;
}
.message-card__body{
	position: relative;
	z-index: 1;
}
.message-card__body p{
	font-size: clamp(14px, 1.6vw, 16px);
	line-height: 2;
	color: rgba(255,255,255,0.78);
}
.message-card__body p + p{
	margin-top: 1.5em;
}
.message__feature{
	display: grid;
	grid-template-columns: 1fr;
	gap: clamp(18px, 2vw, 24px);
}
.feature-card{
	padding: clamp(22px, 3vw, 32px);
	background: #171717c9;
	border-left: 4px solid var(--accent-color1);
	box-sizing: border-box;
	transition: background-color 0.3s ease;
}
.feature-card--main{
	border-left-color: var(--main-color);
}
.feature-card__title{
	font-size: clamp(18px, 2vw, 24px);
	font-weight: 700;
	line-height: 1.5;
	margin-bottom: 10px;
}
.feature-card__text{
	font-size: clamp(14px, 1.6vw, 15px);
	line-height: 1.9;
	color: rgba(255,255,255,0.72);
}

@media print, screen and (min-width: 1200px) {
	.message__wrap{
		grid-template-columns: 1.3fr 0.8fr 0.7fr;
	}
}
@media only screen and (max-width: 1199px) {
	.feature-img{
		display: block;
		margin-inline: auto;
		border-radius: 20px;
		max-width: 400px;
		margin-bottom: 10px;
	}
}

/*---------------------------------
	company-profile
---------------------------------*/
.company-profile{
	padding: var(--v-space2) 0 var(--v-space);
	background: #fff;
}
.company-profile__wrap{
	display: grid;
	grid-template-columns: 1fr;
	gap: clamp(36px, 5vw, 72px);
	margin-top: clamp(32px, 4vw, 48px);
}
.company-table{
	width: 100%;
	border-collapse: collapse;
	table-layout: fixed;
}
.company-table tr{
	border-bottom: 1px solid #e5e5e5;
}
.company-table th,
.company-table td{
	padding: clamp(14px, 1.8vw, 20px) 0;
	vertical-align: top;
	font-size: clamp(14px, 1.6vw, 15px);
	line-height: 1.9;
}
.company-table th{
	width: 9em;
	font-weight: 700;
	color: var(--txt-color);
	padding-right: 20px;
}
.company-table td{
	color: #666;
}
.company-address span{
	display: inline-block;
	margin-right: 10px;
	padding: 2px 8px;
	font-size: 12px;
	line-height: 1.4;
	font-weight: 700;
	color: #222;
	background: #f3f3f3;
	width: 60px;
}
.company-profile__history{
	display: grid;
	grid-template-columns: 1fr;
	gap: clamp(28px, 4vw, 40px);
}
.history-block__title{
	font-size: clamp(18px, 2vw, 24px);
	font-weight: 700;
	line-height: 1.5;
	margin-bottom: 20px;
}
.history-list{
	position: relative;
	padding-left: 28px;
}
.history-list::before{
	content: "";
	position: absolute;
	top: 4px;
	bottom: 4px;
	left: 6px;
	width: 2px;
	background: #dddddd;
}
.history-item{
	position: relative;
	padding-bottom: 24px;
}
.history-item:last-child{
	padding-bottom: 0;
}
.history-item::before{
	content: "";
	position: absolute;
	top: 6px;
	left: -28px;
	width: 14px;
	height: 14px;
	border: 3px solid #fff;
	border-radius: 50%;
	background: #bfbfbf;
	box-shadow: 0 0 0 1px #d8d8d8;
	box-sizing: border-box;
}
.history-block--current .history-item::before{
	background: var(--main-color);
	box-shadow: 0 0 0 1px rgba(32,147,69,0.28);
}
.history-year{
	font-size: clamp(14px, 1.6vw, 15px);
	font-weight: 700;
	line-height: 1.6;
	color: #888;
	margin-bottom: 4px;
}
.history-text{
	font-size: clamp(14px, 1.7vw, 16px);
	line-height: 1.8;
	color: var(--txt-color);
}
.history-note{
	margin-top: 10px;
	padding: 12px 14px;
	font-size: clamp(13px, 1.5vw, 14px);
	line-height: 1.8;
	color: #666;
	background: #f7f7f7;
	border-radius: 4px;
}

@media print, screen and (min-width: 768px) {
	.company-profile__wrap{
		grid-template-columns: repeat(2, 1fr);
	}
}

@media only screen and (max-width: 767px) {
	.company-table th,
	.company-table td{
		display: block;
		width: 100%;
		text-align: left;
	}
	.company-table th{
		padding-bottom: 4px;
	}
	.company-table td{
		padding-top: 0;
		padding-bottom: 16px;
	}
}


/*---------------------------------
	access
---------------------------------*/
.access_sec1{
	padding: var(--v-space2) 0 var(--v-space);
	background: #fff;
	border-top: 1px solid #f0f0f0;
	border-bottom: 1px solid #f0f0f0;
}
.access__wrap{
	display: grid;
	grid-template-columns: 1fr;
	gap: clamp(28px, 4vw, 48px);
	margin-top: clamp(32px, 4vw, 48px);
}
.access-card__head{
	margin-bottom: 14px;
}
.access-card__head h3{
	font-size: clamp(20px, 2.2vw, 26px);
	font-weight: 700;
	line-height: 1.5;
	margin-bottom: 8px;
}
.access-card__head p{
	font-size: clamp(14px, 1.6vw, 15px);
	line-height: 1.9;
	color: #666;
}
.access-card__map{
	overflow: hidden;
	aspect-ratio: 16 / 10;
	border: 1px solid #e5e5e5;
	box-shadow: 0 6px 20px rgba(0,0,0,0.05);
	background: #eee;
}
.access-card__map iframe{
	width: 100%;
	height: 100%;
	border: 0;
	filter: grayscale(100%) contrast(1.05);
	transition: filter 0.5s ease, transform 0.5s ease;
}
.access-card:hover .access-card__map iframe{
	filter: grayscale(0%) contrast(1);
}

@media print, screen and (min-width: 768px) {
	.access__wrap{
		grid-template-columns: repeat(2, 1fr);
	}
}

@media print {
	.access-card__map iframe {
		filter: none !important;
	}
}

/*会社案内*/
.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;
	}
}
