@charset "UTF-8";
/* ==============================================================
   maker.css - メーカー個別ページ (single-maker.php) 専用スタイル
   2026/6/5 作成
   ============================================================== */
/* ============================================================
   タブレット
   ============================================================ */
/* ============================================================
   SP
   ============================================================ */
/* ============================================================
   MV（メインビジュアル）
   PC: 100vh - ヘッダー100px
   SP: 第二階層と同じ 400px
   ============================================================ */
.single-maker .mv {
	width: 100%;
	height: calc(100vh - 100px);
	min-height: 800px;
	max-height: 1100px;
	margin-top: 100px;
	background-image: url("/img/maker/bg_mv.jpg");
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
}

@media only screen and (max-width: 767px) {
	.single-maker .mv {
		height: 400px;
		min-height: 400px;
		max-height: none;
		margin-top: 60px;
	}
}


/* ============================================================
   maker__section : 赤背景 + 白角丸（OVERVIEW / PURCHASE RESULTS 共通）
   第二階層 .list と同じパターン、横幅を少し広めに
   ============================================================ */

/* OVERVIEW 縦1カラム（2026/7/11: 3カラム→縦並びに変更） */
.maker__overview-box {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	        flex-direction: column;
	gap: 50px;
	margin-bottom: 60px;
}

.maker__overview-item {
	width: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	        flex-direction: column;
}

/* ボタンは幅を絞って左寄せ or 中央 (最大440px) */
.maker__overview-btn {
	max-width: 440px;
	align-self: flex-start;
}

.maker__overview-h3 {
	font-size: 18px;
	font-weight: 700;
	color: #000;
	margin-bottom: 15px;
	padding-left: 12px;
	border-left: 4px solid #be001f;
	line-height: 1.4;
}

.maker__overview-txt {
	font-size: 16px;
	line-height: 1.8;
	color: #333;
	margin-bottom: 30px;
	-webkit-box-flex: 1;
	    -ms-flex-positive: 1;
	        flex-grow: 1;
}

.maker__overview-btn {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	background-color: #be001f;
	color: #FFF;
	font-size: 15px;
	font-weight: 600;
	padding: 16px 20px;
	border-radius: 5px;
	text-decoration: none;
	position: relative;
	transition: 0.2s;
}

.maker__overview-btn span {
	display: inline-block;
	width: 8px;
	height: 8px;
	border-top: 2px solid #FFF;
	border-right: 2px solid #FFF;
	-webkit-transform: rotate(45deg);
	    -ms-transform: rotate(45deg);
	        transform: rotate(45deg);
	margin-left: 10px;
}

/* 1024px 中間段階も縦並び前提のため gap のみ調整 */
@media only screen and (max-width: 1024px) {
	.maker__overview-box {
		gap: 40px;
	}
}

@media only screen and (max-width: 767px) {
	.maker__overview-box {
		gap: 30px;
	}
	.maker__overview-item {
		width: 100%;
	}
	.maker__overview-btn {
		max-width: 100%;
		align-self: stretch;
	}
	.maker__overview-h3 {
		font-size: 16px;
	}
	.maker__overview-txt {
		font-size: 14px;
		margin-bottom: 20px;
	}
	.maker__overview-btn {
		font-size: 14px;
		padding: 14px 16px;
	}
}


/* ============================================================
   MV h1 フォントサイズ復元（single.cssの上書きを.single-makerで打ち消し）
   secondary.cssの値と同じ
   ============================================================ */
.single-maker .mv__h1 {
	font-family: "RocknRoll One", sans-serif;
	font-weight: 400;
	font-style: normal;
	color: #FFF;
	text-align: center;
	font-size: 75px;
	line-height: 1.3;
	margin-bottom: 0;
	text-shadow: 4px 4px 0 #000;
}

.single-maker .mv__h1-japan {
	font-size: 40px;
}

.single-maker .mv__h1-small {
	font-size: 50px;
}

.single-maker .mv__h1-medium {
	font-size: 65px;
}

@media screen and (max-width: 1099px) {
	.single-maker .mv__h1 { font-size: 65px; }
	.single-maker .mv__h1-small { font-size: 45px; }
	.single-maker .mv__h1-medium { font-size: 55px; }
}

@media screen and (max-width: 959px) {
	.single-maker .mv__h1 { font-size: 50px; }
	.single-maker .mv__h1-small { font-size: 35px; }
	.single-maker .mv__h1-medium { font-size: 45px; }
}

@media screen and (max-width: 767px) {
	.single-maker .mv__h1 {
		font-size: 24px;
		text-shadow: 3px 3px 0 #000;
		line-height: 1.6;
		margin-bottom: 20px;
	}
	.single-maker .mv__h1-japan { font-size: 16px; }
	.single-maker .mv__h1-small { font-size: 16px; }
	.single-maker .mv__h1-medium { font-size: 20px; }
}


/* ============================================================
   OVERVIEW 見出し色（日本語=赤、英語=黒）
   .h2 は secondary.css で #be001f（赤）→ そのまま
   .h2 span は secondary.css で #333（濃グレー）→ 黒に
   ============================================================ */
.single-maker .list__h2 span {
	color: #000;
}


/* ============================================================
   .wrapper の上書き打ち消し
   single.cssが.wrapper { max-width: 1100px } と再定義してるため、
   .list__wrapper や .cta02__wrapper の max-width: 1300px が負ける。
   .single-maker スコープで specificity 上げて再設定
   ============================================================ */
.single-maker .list__wrapper {
	max-width: 1300px;
}

.single-maker .cta02__wrapper {
	max-width: 1300px;
}

.single-maker .cta02__headLine {
	max-width: 1150px;
}

/* ============================================================
   SP時 MV〜.list間 完全余白カット
   ============================================================ */
@media only screen and (max-width: 767px) {
	/* breadcrumb & cta 完全非表示 */
	.single-maker .breadcrumb,
	.single-maker > .cta,
	.single-maker > section.cta {
		display: none !important;
		height: 0 !important;
		margin: 0 !important;
		padding: 0 !important;
		visibility: hidden;
	}
	/* cta02 内の cta は復活 */
	.single-maker .cta02 .cta {
		display: block !important;
		visibility: visible;
		height: auto !important;
		padding: 30px 0 35px 0 !important;
	}
	/* MV margin-bottom 0 */
	.single-maker .mv {
		margin-bottom: 0 !important;
	}
	/* list margin-top 0 */
	.single-maker .list {
		margin-top: 0 !important;
	}
	/* body 赤背景ハックは list_closing 追加で不要になったため削除 */
}

/* ============================================================
   single.css の .about { margin-bottom: 170px } 打ち消し
   ※ 第二階層 page-purchase.php と同じ余白感に統一
   ============================================================ */
.single-maker .about {
	margin-bottom: 0;
}

@media only screen and (max-width: 767px) {
	.single-maker .about {
		margin-bottom: 0;
	}
}

/* ============================================================
   .sec04（FLOW）上余白 - 第二階層 .is-purchase .sec04 と統一
   ============================================================ */
.single-maker .sec04 {
	padding-top: 120px;
}

@media only screen and (max-width: 767px) {
	.single-maker .sec04 {
		padding-top: 60px;
	}
}


/* ============================================================
   2026/7/15 achievement__h3 (メーカー別の最新買取実績タイトル)
   第二階層 (secondary.css) と同サイズに (single.cssの20px上書きを打ち消し)
   ============================================================ */
.single-maker .achievement__h3 {
	text-align: center;
	font-size: 44px;
	font-weight: bold;
	margin-bottom: 40px;
	line-height: 1.6;
	color: #333;   /* secondary.cssと同じ (single.cssの赤を打ち消し) */
}

.single-maker .achievement__h3 span {
	display: block;
	font-size: 24px;
	color: #be001f;
	font-weight: bold;
}

@media only screen and (max-width: 767px) {
	.single-maker .achievement__h3 {
		font-size: 24px !important;
		margin-bottom: 20px;
	}
	.single-maker .achievement__h3 span {
		font-size: 16px !important;
	}
}
