﻿@charset "UTF-8";


/*=======================================================*/
/*					セクション毎のCSS					  */
/*======================================================*/

/*============ 共通 =========== */

/* 親要素からはみ出して画面いっぱいに */
.full {
	margin: 0 calc(50% - 50vw);
	width: 100vw;
}
@media print {
	.full {
		margin: 0;
		width: 100%;
	}
}/* ===== 共通タイトル ===== */
.spot-heading {
	text-align: center;
}

/* 英語タイトル */
.spot-heading__en {
	font-size: clamp(37px, 4vw, 50px);
	line-height: 1.2;
	font-style: italic;
	font-weight: 400;
	font-family: "Montserrat", sans-serif;
}

/* 日本語 */
.spot-heading__ja {
	font-size: clamp(19px, 2vw, 21px);
	line-height: 1.2;
	font-weight: 400;
	margin-top: 5px;
}

/* ライン */
.spot-heading__line {
	width: 1px;
	padding-top: 2%;
	margin: 1.1% auto;
}

/* SP */
@media (max-width: 768px) {
	.spot-heading__line {
		padding-top: 7%;
	}
}
/* ダーク */
.is-dark .spot-heading__en { color: #555; }
.is-dark .spot-heading__ja { color: #7b7b7b; }
.is-dark .spot-heading__line { background: #2d2d2d; }

/* ライト */
.is-light .spot-heading__en { color: #fff; }
.is-light .spot-heading__ja { color: #ddc09c; }
.is-light .spot-heading__line { background: #fff; }

.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; /* 水平方向の中央揃え */
}


/* 背景括り */
.contentsbg {
	background: rgba(255, 255, 255, 0.8);
	padding: 60px 40px;
}
@media screen and (max-width: 568px) {
	.contentsbg {
		padding: 40px 15px 15px 15px;
	}
}

.contentsbg-b {
	background: rgba(0, 0, 0, 0.7);
	/*background: rgba(10, 24, 13, 0.7);*/
	padding: 50px;
}
@media screen and (max-width: 568px) {
	.contentsbg-b {
		padding: 30px 15px 25px 15px;
	}
}

/*======= TOPページ ======*/
/*ご挨拶*/
.greeting {
	padding: var(--v-space2) 0;
	background: #fff;
}

.greeting-inner {
	max-width: 1200px;
	margin: 5vh auto;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 120px;
	align-items: center;
	margin-bottom: 7vh;
}

/* ←ここ追加 */
.greeting-image {
	position: relative;
	margin-right: calc(50% - 50vw);	/* 画面右端まで広げる */
}

/* メイン画像をはみ出させる */
.img-main img {
	width: 100%;
	display: block;
	max-height: 700px;
	object-fit: cover;
}

/* ===== 見出し ===== */
.greeting-heading {
	margin-bottom: 20px;
}

/* 英語だけでライン作る */
.greeting-heading .en {
	display: flex;
	align-items: center;
	gap: 20px;

	font-size: clamp(25px,3.8vw,38px);
	font-weight: 500;
	color: var(--accent-color2);
	letter-spacing: 2px;
	line-height: 1;
}

/* 横線 */
.greeting-heading .en::after {
	content: "";
	flex: 1;
	height: 1px;
	background: var(--accent-color2);
}

/* 日本語はただの補足 */
.greeting-heading .ja {
	display: block;
	font-size: 12px;
	color: #999;
	margin-top: 6px;
}


/* キャッチ */
.greeting-catch {
	font-size: 24px;
	font-weight: 500;
	margin-bottom: 25px;
	line-height: 1.6;
	color:var(--main-color);
}

/* 本文 */
.greeting-text p {
	font-size: clamp(14px,1.6vw,16px);
	line-height: 2;
	color: #555;
	margin-bottom: 15px;
}

/* ===== 画像 ===== */
.greeting-image {
	position: relative;
}

/* メイン画像 */
.img-main img {
	width: 100%;
	display: block;
}

/* サブ画像（重ね） */
.img-sub {
	position: absolute;
	bottom: -80px;
	left: -90px;
	width: 25%;
}

.img-sub img {
	width: 100%;
	display: block;
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* ===== レスポンシブ ===== */
@media only screen and (max-width: 1100px) {

	.greeting-inner {
		grid-template-columns: 1fr;
		gap:30px;
	}

	/* 順番入れ替え（画像を上） */
	.greeting-image {
		order: -1;
		margin-right: 0;/* ←PC用のはみ出し解除 */
		margin-bottom: 40px;
	}

	/* 重なり維持 */
	.img-sub {
		position: absolute;
		bottom: -50px;
		left: auto;
		right: 20px;
		width: 30%;
	}

	.greeting-image {
		position: relative;
	}
}
@media only screen and (max-width: 767px) {
	.greeting-inner {
		margin-bottom: 0vh;
	}
}
/*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;
	background-color: #999;
	position: relative;
	z-index: 1;
	background-size: cover;
	background-repeat: no-repeat;
}

@media print, screen and (min-width: 768px) {
	.sec1 {
		background-image: url(../img/bg_01.jpg);
	}
}
@media only screen and (max-width: 767px) {
	.sec1 {
		background-image: url(../img/bg_01_sp.jpg);
	}
}

/* PCのみ fixed（iOS対策も兼ねてhover条件） */
@media screen and (min-width:1024px) and (hover:hover) and (pointer:fine){
	.sec1{
		background-attachment:fixed;
	}
}

/* ガイナの強み */
.strength-card-list {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: clamp(20px, 2.2vw, 30px);
	margin-top: 30px;
}

.strength-card {
	display: grid;
	grid-template-columns: 1fr;
	grid-template-rows: clamp(200px, 24vw, 225px) 1fr;
	background-color: #fff;
	border: 1px solid #ececec;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
	transition: transform 0.3s, box-shadow 0.3s;
}

.strength-card__photo {
	position: relative;
	overflow: hidden;
	background: linear-gradient(to bottom, #d9d9d9 0%, #bdbdbd 65%, #7d7d7d 100%);
}

.strength-card__photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.strength-card__photo::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 35%, rgba(0, 0, 0, 0.45) 100%);
}

.strength-card__number {
	position: absolute;
	right: clamp(14px, 1.5vw, 18px);
	bottom: clamp(8px, 0.8vw, 10px);
	z-index: 2;
	font-size: clamp(2.4rem, 3vw, 3rem);
	font-weight: 800;
	line-height: 1;
	letter-spacing: 0.04em;
	color: #fff;
	opacity: 0.95;
}

.strength-card__body {
	position: relative;
	padding:
		clamp(46px, 4vw, 54px)
		clamp(20px, 2.3vw, 30px)
		clamp(24px, 2.5vw, 30px);
}

.strength-card__icon {
	position: absolute;
	top: clamp(-28px, -2vw, -32px);
	left: clamp(20px, 2vw, 24px);
	width: clamp(56px, 5vw, 64px);
	height: clamp(56px, 5vw, 64px);
	display: grid;
	place-items: center;
	background-color: var(--accent-color1);
	border-radius: 14px;
	box-shadow: 0 6px 14px #2ec4b52d;
}

.strength-card__icon img {
	width: clamp(26px, 2.2vw, 30px);
	height: clamp(26px, 2.2vw, 30px);
	object-fit: contain;
	display: block;
}

.strength-card__title {
	margin-bottom: clamp(18px, 2vw, 24px);
	font-size: clamp(1rem, 1.1vw, 1.2rem);
	font-weight: 700;
	line-height: 1.4;
	color: #1f2a44;
}

.strength-card__list {
	display: grid;
	grid-template-columns: 1fr;
	gap: clamp(10px, 1.2vw, 14px);
}

.strength-card__list li {
	position: relative;
	padding-left: 22px;
	font-size: 1rem;
	font-weight: 500;
	line-height: 1.7;
	color: #24324a;
}

.strength-card__list li::before {
	content: "✓";
	position: absolute;
	top: 0;
	left: 0;
	font-size: clamp(1rem, 1.1vw, 1rem);
	font-weight: 700;
	line-height: 1.7;
	color: #ff0000;
}

.strength-card__list strong {
	font-weight: 700;
	color: #0f1a2d;
}

@media print, screen and (min-width: 768px) {
	.strength-card:hover {
		transform: translateY(-6px);
		box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
	}
}

@media only screen and (max-width: 991px) {
	.strength-card-list {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media only screen and (max-width: 767px) {
	.strength-card-list {
		grid-template-columns: 1fr;
	}
}

/* =========================
sec2 / 廃車買取の流れ
========================= */
.sec2{
	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;
	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-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%);
	}
}

/* LINE */
.line_cta {
	display: grid;
	grid-template-columns: 2fr 1fr;
	align-items: stretch;
	background-color: #06c755;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
	max-width: 960px;
	margin-inline: auto;
}

.line_cta__body {
	display: grid;
	grid-template-columns: auto 1fr;
	align-items: center;
	gap: 20px;
	padding: clamp(24px, 3vw, 36px);
}

.line_cta__icon {
	width: clamp(56px, 6vw, 72px);
	height: clamp(56px, 6vw, 72px);
	border-radius: 10px;
	background-color: #fff;
	display: grid;
	place-items: center;
	flex-shrink: 0;
	box-sizing: border-box;
}

.line_cta__icon img {
	width: 100%;
	height: 100%;
	display: block;
	object-fit: contain;
	border-radius: 50%;
}

.line_cta__text h3 {
	margin-bottom: 6px;
	font-size: clamp(1.2rem, 1.5vw, 1.5rem);
	font-weight: 700;
	line-height: 1.4;
	color: #fff;
}

.line_cta__text p {
	font-size: clamp(0.875rem, 1.2vw, 1rem);
	font-weight: 500;
	line-height: 1.7;
	color: rgba(255, 255, 255, 0.92);
}

.line_cta__action {
	display: grid;
	place-items: center;
	padding: clamp(24px, 3vw, 36px);
	background-color: rgba(255, 255, 255, 0.1);
}

.line_cta__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	max-width: 240px;
	min-height: 56px;
	padding: 14px 20px;
	background-color: #fff;
	border-radius: 999px;
	color: #06c755;
	font-size: clamp(1rem, 1.2vw, 1.2rem);
	font-weight: 700;
	line-height: 1.4;
	text-align: center;
	text-decoration: none;
	box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
	box-sizing: border-box;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

@media print, screen and (min-width: 768px) {
	.line_cta__btn:hover {
		transform: translateY(-2px);
		box-shadow: 0 8px 18px rgba(0, 0, 0, 0.16);
	}
}

@media only screen and (max-width: 767px) {
	.line_cta {
		grid-template-columns: 1fr;
	}

	.line_cta__body {
		grid-template-columns: 1fr;
		text-align: center;
		gap: 14px;
	}

	.line_cta__icon {
		margin-inline: auto;
	}
}

/* =========================
sec3 / メッセージ
========================= */
.sec3{
	padding: var(--v-space2) 0 var(--v-space);
	background: #fff;
	position: relative;
	z-index: 1;
}

.message_container {
	display: grid;
	grid-template-columns: 4fr 6fr;
	gap: clamp(24px, 4vw, 60px);
	align-items: center;
}

.message_photo {
	margin: 0;
	max-width: 700px;
	margin-inline: auto;
}

.message_photo img {
	width: 100%;
	height: auto;
	display: block;
	object-fit: cover;
}

.message_text p {
	margin-bottom: 1.4em;
	font-size: 16px;
	line-height: 1.7;
	color: #222;
}

.message_text p:last-child {
	margin-bottom: 0;
}

.message_name {
	text-align: right;
	font-weight: 700;
	font-size: clamp(1.7rem, 1.8vw, 2rem);
}

@media only screen and (max-width: 935px) {
	.message_container {
		grid-template-columns: 1fr;
		gap: 20px;
	}

	.message_text p {
		line-height: 1.9;
	}

	.message_name {
		margin-top: 10px;
	}
}

/*======= FAQ ======*/
.faq_sec1 {
	padding: var(--v-space) 0;
	/* ベースとなる背景色（薄いグレー） */
	background-color: #f1f1f1; 

	/* ドットの色（#d1d5db）と大きさ（1.5pxの円） */
	background-image: radial-gradient(#d1d5db 1.5px, transparent 1.5px);

	/* ドットが並ぶ間隔（16pxごとに配置） */
	background-size: 16px 16px;

	position: relative;
	z-index: 1;
}

.faq-item {
	display: grid;
	grid-template-columns: 1.5em 1fr;
	column-gap: 10px;
	row-gap: 5px;
	background-color: rgba(255, 255, 255, 0.95);
	border-radius: 7px;
	padding: 15px 20px 15px 20px;
	margin-bottom: 20px;
}

.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 {
	height: 0px;
	border-bottom: 1px dotted #7b7b7b;
	margin: 5px auto;
}

/*======= 会社案内ページ ======*/

/*会社案内*/
.info_sec1 {
	padding: var(--v-space) 0 var(--v-space2);
	position: relative;
	z-index: 1;
	border-bottom: solid 1px #eee;
}

.info_container {
	display: grid;
	grid-template-columns: repeat(2,1fr);
	background-color: #fff;
	margin-bottom: 2vh;
	gap:20px;
}

/* 会社情報 */
.info_card {
	box-sizing: border-box;
}

.info_card__row {
	display: grid;
	grid-template-columns: 90px 1fr;
	gap: 8px 12px;
	align-items: center;
	padding: 12px 0;	
	border-bottom: 1px dashed #8f8a84;
}

.info_card__label {
	padding: 3px 11px 3px 11px;
	margin: 2px 0;
	background-color: var(--accent-color1);
	border-radius: 5px;
	color: #fff;
	font-size: 0.9em;
	font-weight: 600;
	text-align: center;
	letter-spacing: 0.1em;
	display: block;	/*紙媒体でも使えるデザインにするための囲み*/
}

.info_card__text {
	font-size: 1rem;
	font-weight: 500;
	line-height: 1.6;
	color: #3f3229;
}

.info_card__row--tel {
	padding: 10px 0 12px;
}

.info_card__tel {
	font-size: 27px;
	line-height: 1;
	font-weight: 400;
	text-decoration: none;
}

.info_card__tel a {
	color: inherit;
	text-decoration: none;
}


/* 登録番号セクション */
.license_list {
	font-size: 0.85rem;
	color: #666;
	display: grid;
	grid-template-columns: repeat(2,1fr);
	row-gap: 5px;
	column-gap: 20px;
	margin-bottom: 20px;
}

.license_list p {
	margin-bottom: 4px;
	display: flex;
	justify-content: space-between;
	border-bottom: 1px dotted #ccc;
	padding-bottom: 2px;
}

.license_list span {
	font-weight: bold;
}

/* レスポンシブ */
@media only screen and (max-width: 920px) {
	.info_container {
		display: grid;
		grid-template-columns: 1fr;
	}
	.info_card__row {
		padding: 5px 0;
	}
	.license_list {
		grid-template-columns: 1fr;
	}
}

/* 動画エリア */
.video_placeholder {
	position: relative;
	width: 100%;
	aspect-ratio: 16 / 9;
}

.video_placeholder iframe {
	width: 100%;
	height: 100%;
	border: 0;
}

/* レスポンシブ */
@media only screen and (max-width: 920px) {
	.info_container {
		grid-template-columns: 1fr;
	}

	.info_card__row {
		padding: 5px 0;
	}

	.license_list {
		grid-template-columns: 1fr;
	}
}

.used-parts{
	padding: clamp(30px, 4vw, 40px) 0;
	position: relative;
	z-index: 1;
	background-color: #eee;
}
/*下部バナー*/
.used_bnr {
	display: grid;
	grid-template-columns: 2fr 1fr;
	grid-template-rows: 1fr;
	grid-column-gap: 20px;
	grid-row-gap: 10px;
}

@media only screen and (max-width: 767px) {
	.used_bnr {
		grid-template-columns: repeat(1, 1fr);
		grid-row-gap: 10px;
	}
}