@charset "UTF-8";

/* -------------------
2026.05 renewal css
Forcle Inc.
----------------------*/

:root {
	--orange: #F07000;
	--orange-light: #FF8C1A;
	--orange-pale: #FFF3E8;
	--orange-bg: #FEE7C4;
	--dark: #1A1A1A;
	--gray-dark: #333333;
	--gray-mid: #666666;
	--gray-light: #F5F5F5;
	--white: #FFFFFF;
	--border: #E0E0E0;
	--shadow: 0 4px 24px rgba(0, 0, 0, 0.10);
	--shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.14);
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: 'Noto Sans JP', sans-serif;
	color: var(--dark);
	background: var(--white);
	line-height: 1.7;
}
header.page-header {
	padding: 0px;
}

/* ===== CONTENT WRAPPER (サイドメニュー・ヘッダー・フッターは既存のまま) ===== */
.content-area {
	max-width: 860px;
	margin: 0 auto;
	padding: 0 0 80px;
}
.content-area.crusher-area {
	max-width: 1140px;
	margin: 0 auto;
	padding: 0 0 80px;
	text-align: left;
}

/* ===== HERO ===== */
.hero {
	background: var(--orange-bg);
	color: var(--white);
	padding: 40px 40px 20px;
	position: relative;
	overflow: hidden;
	margin-bottom: 0;
}

.hero-label {
	display: inline-block;
	background: var(--orange);
	color: var(--white);
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.12em;
	padding: 4px 12px;
	border-radius: 2px;
	margin-bottom: 16px;
	text-transform: uppercase;
}

.hero h1 {
	font-family: 'Oswald', 'Noto Sans JP', sans-serif;
	font-size: 36px;
	font-weight: 700;
	line-height: 1.2;
	margin-bottom: 16px;
	letter-spacing: 0.02em;
}

.hero h1 span {
	color: var(--orange-light);
}

.hero-desc {
	font-size: 14px;
	color: #000;
	max-width: 560px;
	line-height: 1.8;
	margin-bottom: 32px;
}

.hero-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 32px;
}

.hero-tag {
	background: #fff;
	border: 1px solid var(--orange);
	color: var(--orange);
	font-size: 12px;
	padding: 4px 12px;
	border-radius: 40px;
}

/* ===== VIDEO SECTION ===== */
.video-section {
	padding: 0px 48px 40px;
	background: var(--orange-bg);
}

.video-label {
	font-size: 16px;
	color: #000;
	font-weight: 700;
	letter-spacing: 0.1em;
	margin-bottom: 12px;
	display: flex;
	align-items: center;
	gap: 8px;
}

.video-label::before {
	content: '▶';
	font-size: 10px;
}

.video-wrapper {
	position: relative;
	padding-bottom: 56.25%;
	height: 0;
	overflow: hidden;
	border-radius: 6px;
}

.video-wrapper iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border: none;
}

/* ===== SECTION BASE ===== */
.section {
	padding: 56px 48px;
}

.section+.section {
	border-top: 1px solid var(--border);
}

.section-eyebrow {
	font-size: 14px;
	font-weight: 700;
	color: var(--orange);
	letter-spacing: 0.15em;
	text-transform: uppercase;
	margin-bottom: 8px;
}

.section-title {
	font-size: 22px;
	font-weight: 900;
	color: var(--dark);
	line-height: 1.35;
	margin-bottom: 28px;
}

/* ===== PROBLEM SECTION ===== */
.problem-section {
	background: var(--gray-light);
	padding: 56px 48px;
}

.problem-grid {
	display: grid;
	gap: 12px;
	margin-top: 8px;
}

.problem-item {
	background: var(--white);
	border-left: 4px solid var(--orange);
	padding: 16px 20px;
	border-radius: 0 6px 6px 0;
	font-size: 14px;
	color: var(--gray-dark);
	display: flex;
	align-items: flex-start;
	gap: 10px;
}
.problem-item div {
	font-size: 16px;
	font-weight: bold;
}
.problem-item div strong {
	color: #FF8C1B;
}
.problem-item .icon {
	color: var(--orange);
	font-size: 16px;
	margin-top: 1px;
	flex-shrink: 0;
}

.problem-sub {
	margin-top: 6px;
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.problem-sub span {
	font-size: 13px;
	color: var(--gray-mid);
	padding-left: 16px;
	position: relative;
}

.problem-sub span::before {
	content: '─';
	position: absolute;
	left: 0;
	color: var(--orange);
	font-size: 11px;
	top: 3px;
}

/* ===== SOLUTION SECTION ===== */
.solution-section {
	background: #FF8C1B;
	padding: 48px;
	color: var(--white);
}

.solution-section .section-eyebrow {
	color: rgba(255, 255, 255, 0.7);
}

.solution-section .section-title {
	color: var(--white);
}

.solution-cards {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
	margin-top: 8px;
}

.solution-card {
	background: #FFFFFF;
	border-radius: 8px;
	padding: 20px;
}

.solution-card .num {
	font-family: 'Oswald', sans-serif;
	font-size: 32px;
	font-weight: 700;
	color: #FEE7C4;
	line-height: 1;
	margin-bottom: 8px;
}

.solution-card p {
	font-size: 14px;
	line-height: 1.65;
	color: #000;
}
.solution-card p strong {
	color: #FF8C1B;
}

/* ===== FLOW SECTION ===== */
.flow-section {
	background: var(--white);
	padding: 48px 48px;
}

.flow-row {
	display: flex;
	align-items: center;
	gap: 0;
	margin-top: 24px;
	flex-wrap: wrap;
}

.flow-item {
	flex: 1;
	min-width: 140px;
	text-align: center;
	background: #fff;
	border: 2px solid var(--orange);
	border-radius: 8px;
	padding: 15px 10px;
}

.flow-item .flow-icon {
	font-size: 28px;
	margin-bottom: 8px;
}

.flow-item .flow-label {
	font-size: 13px;
	font-weight: 700;
	color: var(--orange);
}

.flow-item .flow-sub {
	font-size: 14px;
	color: var(--gray-mid);
}

.flow-arrow {
	font-size: 22px;
	color: var(--orange);
	padding: 0 8px;
	font-weight: 700;
}

.flow-result {
	width: 100%;
	margin-top: 20px;
	background: #fff;
	color: var(--black);
	border-radius: 8px;
	padding: 10px;
	text-align: center;
	font-size: 18px;
	font-weight: 700;
	letter-spacing: 0.04em;
	border: 4px solid #FF8C1B;
}

.flow-result span {
	color: #FF0404;
}

/* ===== REASONS SECTION ===== */
.reasons-section {
	padding: 56px 48px;
	background: var(--white);
}

.reason-block {
	margin-bottom: 40px;
	clear: both;
}

.reason-block:last-child {
	margin-bottom: 0;
}

.reason-header {
	display: flex;
	align-items: flex-start;
	gap: 16px;
	margin-bottom: 16px;
}

.reason-num {
	font-family: 'Oswald', sans-serif;
	font-size: 40px;
	font-weight: 700;
	color: var(--orange);
	line-height: 1;
	flex-shrink: 0;
	width: 48px;
}

.reason-title {
	font-size: 17px;
	font-weight: 900;
	color: var(--dark);
	line-height: 1.4;
	padding-top: 6px;
	border-bottom: 2px solid var(--orange);
	padding-bottom: 8px;
	flex: 1;
}
h4.h4_reason-title {
	font-size: 17px;
	font-weight: 900;
	line-height: 1.4;
	padding-top: 6px;
	padding-bottom: 8px;
	flex: 1;
	padding-left: 15px;
	margin: 20px 0 15px 64px;
	clear: both;
	border-left: 6px solid var(--orange);
}
.reason-list {
	padding-left: 64px;
}
.reason-list li{
	padding: 0 0 0 20px;
    position: relative;
}
.reason-list li strong {
	font-weight: bold;
	color: #FF8C1B;
}
.reason-list li:before {
    content: "・";
    position: absolute;
    left: 0;
}

.reason-body {
	font-size: 14px;
	color: var(--gray-dark);
	line-height: 1.8;
	padding-left: 64px;
}
.reason-body strong {
	font-weight: bold;
	color: #FF8C1B;
}

.reason-modes {
	/* display: grid;
	grid-template-columns: 1fr 1fr; */
	gap: 12px;
	margin-top: 16px;
	padding-left: 64px;
	display: flex;
	flex-wrap: wrap;
}

.reason-mode-card {
	background: var(--orange-pale);
	border-radius: 6px;
	padding: 14px 16px;
	font-size: 13px;
	width: 48%;
}

.reason-mode-card strong {
	display: block;
	font-size: 14px;
	color: var(--orange);
	margin-bottom: 4px;
}
.reason-mode-card .video-wrapper-sm {
	margin-top: 15px;
}
.reason-mode-card .video-wrapper-sm iframe {
	width: 100%;

}
.note-box {
	background: var(--gray-light);
	border-radius: 6px;
	padding: 12px 16px;
	font-size: 13px;
	color: var(--gray-mid);
	margin-top: 12px;
	/* padding-left: 64px; */
	border-left: 3px solid var(--border);
	margin-left: 0;
}

.note-box.indent {
	margin-left: 64px;
}

/* ===== VIDEO GRID ===== */
.video-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
	margin-top: 16px;
	padding-left: 64px;
}

.video-card {
	border-radius: 8px;
	overflow: hidden;
	background: var(--dark);
}

.video-card .video-card-title {
	font-size: 12px;
	font-weight: 700;
	color: var(--white);
	padding: 8px 12px;
	background: var(--orange);
}

.video-card .video-wrapper-sm {
	position: relative;
	padding-bottom: 56.25%;
	height: 0;
	overflow: hidden;
	width: 100%;
	height: 230px;
}

.video-card .video-wrapper-sm iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border: none;
}

/* ===== SPEC SECTION ===== */
.spec-section {
	background: var(--gray-light);
	padding: 56px 48px;
}

.spec-tabs {
	display: flex;
	gap: 0;
	border-bottom: 2px solid var(--border);
	margin-bottom: 28px;
	overflow-x: auto;
}

.spec-tab {
	padding: 10px 20px;
	font-size: 13px;
	font-weight: 700;
	color: var(--gray-mid);
	cursor: pointer;
	white-space: nowrap;
	background: none;
	border: none;
	border-bottom: 2px solid transparent;
	margin-bottom: -2px;
	transition: color 0.2s, border-color 0.2s;
}

.spec-tab.active {
	color: var(--orange);
	border-bottom-color: var(--orange);
}

.spec-tab:hover {
	color: var(--orange);
}

.spec-panel {
	display: none;
}

.spec-panel.active {
	display: block;
}

.spec-note {
	font-size: 13px;
	color: var(--gray-mid);
	margin-bottom: 20px;
	line-height: 1.7;
	background: var(--white);
	padding: 14px 18px;
}

.spec-from-web {
	background: var(--white);
	border: 1px dashed var(--border);
	border-radius: 6px;
	padding: 24px;
	text-align: center;
	color: var(--gray-mid);
	font-size: 13px;
}

/* .spec-from-web span {
	display: block;
	font-size: 20px;
	margin-bottom: 8px;
} */

/* ===== VIDEO USES ===== */
.video-uses-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
	margin-top: 8px;
}

.video-use-item .video-wrapper-sm {
	position: relative;
	padding-bottom: 56.25%;
	height: 0;
	overflow: hidden;
	border-radius: 8px;
	overflow: hidden;
}

.video-use-item .video-wrapper-sm iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border: none;
}

/* ===== CTA SECTION ===== */
.cta-section {
	background: linear-gradient(135deg, #1A1A1A, #2D2D2D);
	padding: 48px;
	text-align: center;
	color: var(--white);
}

.cta-section h2 {
	font-size: 20px;
	font-weight: 900;
	margin-bottom: 8px;
}

.cta-section p {
	font-size: 14px;
	color: rgba(255, 255, 255, 0.7);
	margin-bottom: 28px;
}

.cta-btn {
	display: inline-block;
	background: var(--orange);
	color: var(--white);
	font-size: 15px;
	font-weight: 700;
	padding: 16px 40px;
	border-radius: 4px;
	text-decoration: none;
	letter-spacing: 0.04em;
	transition: background 0.2s, transform 0.2s;
	box-shadow: 0 4px 20px rgba(240, 112, 0, 0.4);
}

.cta-btn:hover {
	background: var(--orange-light);
	transform: translateY(-2px);
}

.cta-sub {
	font-size: 12px;
	color: rgba(255, 255, 255, 0.5);
	margin-top: 14px;
}

/* CTAセクション上書き */
.cta-section {
	background: #F07000;
	padding: 48px;
	text-align: center;
	color: #ffffff;
	position: relative;
  }
  
  /* 下の三角 */
  .cta-section::after {
	content: '';
	position: absolute;
	bottom: -30px;
	left: 50%;
	transform: translateX(-50%);
	width: 0;
	height: 0;
	border-left: 40px solid transparent;
	border-right: 40px solid transparent;
	border-top: 30px solid #F07000;
  }
  
  .cta-section h2 {
	font-size: 22px;
	font-weight: 900;
	color: #ffffff;
	margin-bottom: 12px;
  }
  
  .cta-section p {
	font-size: 15px;
	color: #ffffff;
	margin-bottom: 0;
	text-align: center;
  }


/* ===== DEMO BADGE ===== */
.demo-badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: var(--orange-pale);
	border: 1px solid var(--orange);
	border-radius: 20px;
	padding: 6px 16px;
	font-size: 13px;
	font-weight: 700;
	color: var(--orange);
	margin-top: 16px;
}

/* Divider */
.divider {
	height: 2px;
	background: #FEE7C4;
}
.divider::before {
	display: none;
}

/* タブボタン：丸ボタン型に上書き */
.spec-tabs {
	display: flex;
	flex-wrap: wrap; /* 2行に折り返す */
	gap: 10px;
	border-bottom: none; /* 既存の下線を消す */
	margin-bottom: 24px;
  }
  
  .spec-tab {
	padding: 10px 24px;
	font-size: 14px;
	font-weight: 700;
	color: #F07000;
	background: #ffffff;
	border: 2px solid #F07000;
	border-radius: 50px; /* 丸ボタン */
	cursor: pointer;
	white-space: nowrap;
	transition: background 0.2s, color 0.2s;
	margin-bottom: 0;
  }
  
  .spec-tab.active {
	background: #F07000;
	color: #ffffff;
	border-color: #F07000;
  }
  
  .spec-tab:hover:not(.active) {
	background: #FFF3E8;
  }

  .button-sm {
	display: block;
	padding: 10px;
  }

.img_area {
	text-align: center;
	margin-left: 64px;
	display: flex;
	justify-content: center;
	gap: 20px;
	margin: 10px 0 0;
}
.img_area li {
	width: 48%;
}

/* WHAT ISセクション */
.what-section {
	background: #ffffff;
	padding: 56px 48px;
	border-bottom: 1px solid #E0E0E0;
  }
  
  .what-body {
	font-size: 14px;
	color: #444444;
	line-height: 1.85;
	margin-bottom: 24px;
  }
  .what-body strong {
	color: #FF8C1B;
	font-weight: bold;
  }
  
  /* 使用用途グリッド */
  .use-cases {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 10px;
	margin-top: 12px;
  }
  
  .use-case-item {
	background: #FFF3E8;
	border: 1px solid #F8C490;
	border-radius: 6px;
	padding: 12px 5px;
	font-size: 10px;
	color: #444444;
	display: flex;
	align-items: center;
	gap: 8px;
  }
  
  .use-case-item::before {
	content: '▶';
	color: #F07000;
	font-size: 10px;
	flex-shrink: 0;
  }
  
  @media (max-width: 640px) {
	.use-cases {
	  grid-template-columns: 1fr 1fr;
	}
  }


  /* 製品カードグリッド */
.product-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 12px;
  }
  
  .product-card {
	display: flex;
	align-items: center;
	gap: 4px;
	border: 1px solid #E0E0E0;
	border-radius: 6px;
	padding: 5px;
	text-decoration: none;
	color: #333333;
	background: #ffffff;
	transition: border-color 0.2s, box-shadow 0.2s;
  }
  
  .product-card:hover {
	border-color: #F07000;
	box-shadow: 0 2px 12px rgba(240,112,0,0.15);
  }
  
  .product-card-img {
	width: 100px;
	height: 80px;
	display: flex;
	align-items: center;
	justify-content: center;
  }
  
  /* 実際の画像に差し替える場合 */
  .product-card-img img {
	width: 100%;
	height: auto;
  }
  
  .product-card-name {
	font-size: 12px;
	line-height: 1.5;
	color: #333333;
	font-weight: normal;
	text-align: left;
  }
  
  @media (max-width: 640px) {
	.product-grid {
	  grid-template-columns: 1fr;
	}
  }

/* crucher */
.isotope-wrap {
	background: #fff;
	padding: 15px;
}
.col-md-3 {
	max-width: 22%;
	padding: 0;
}
.row.isotope {
	margin-left: 10px;
}
.linkbtn {
	width: 340px;
	max-width: 75%;
	margin: 20px auto;
}
.linkbtn a {
	display: block;
	width: 100%;
	padding: 15px 20px;
	color: var(--white);
	background: #FF8C1B;
	font-size: 18px;
	font-weight: bold;
	text-align: center;
	border: 1px solid #FF8C1B;
	border-radius: 40px;
}
.linkbtn a:hover {
	background: #fff;
	color: #FF8C1B;
}
/* ===== 破砕対象物 ===== */
.targets-section {
	background: #F5F5F5;
	padding: 48px;
  }
  
  .targets-title {
	font-size: 20px;
	font-weight: 900;
	text-align: center;
	margin-bottom: 32px;
	color: #1A1A1A;
  }
  
  .targets-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px 16px;
  }
  
  .target-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
  }
  
  .target-label {
	font-size: 13px;
	font-weight: 700;
	color: #1A1A1A;
	text-align: center;
  }
  
  .target-img-placeholder {
	width: 100%;
	aspect-ratio: 4 / 3; /* 画像の縦横比 */
	background: #ffffff;
	border: 1px solid #E0E0E0;
	border-radius: 4px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 12px;
	color: #999999;
  }
  
  /* 実際の画像に差し替える場合 */
  .target-img-placeholder img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 4px;
  }
  
  .target-arrow {
	color: #F07000;
	font-size: 20px;
	line-height: 1;
  }
  
  @media (max-width: 640px) {
	.targets-grid {
	  grid-template-columns: repeat(2, 1fr);
	}
  }

  /* ===== 破砕機導入のメリット ===== */
  .merits-section {
    background: var(--white);
    padding: 48px;
    border-top: 1px solid var(--border);
  }
  .merits-title {
    font-size: 20px;
    font-weight: 900;
    text-align: center;
    margin-bottom: 28px;
    color: var(--dark);
  }
  .merits-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
  }
  .merit-card {
    background: var(--white);
    position: relative;
  }
  .merit-num {
    position: absolute;
    top: 8px;
    left: 8px;
    background: var(--orange);
    color: var(--white);
    font-size: 16px;
    font-weight: 700;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
  }
  .merit-img-placeholder {
    height: 130px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .merit-name {
    font-size: 16px;
    font-weight: 700;
    color: #FF8C1B;
    line-height: 1.4;
	margin-bottom: 15px;
  }
  .merit-card p {
    font-size: 14px;
    color: var(--gray-dark);
    line-height: 1.6;
  }
  .merits-note {
    font-size: 12px;
    color: var(--gray-mid);
    margin-top: 16px;
    text-align: center;
  }
.reason_img {
	float: right;
	width: 280px;
	margin: 0 0 15px 15px;
	text-align: center;
}
.reason_howto {
	border: 1px solid #FF8C1B;
	padding: 15px;
	margin: 20px 0 0 65px;
	clear: both;
	overflow: hidden;
}
.reason_howto strong {
	color: #FF8C1B;
	font-weight: bold;
}
.reason_howto.howto2 {
	background: #FFF3E8;
}
.reason_howto h4 {
	color: #FF8C1B;
	font-weight: bold;
	font-size: 16px;
	margin: 0 0 15px;
}
.reason_howto.howto2 em {
	font-style: normal;
	color: #ff0000;
	font-weight: bold;
}
.reason_howto ul li {
	padding: 0 0 0 20px;
	position: relative;
}
.reason_howto ul li:before {
	content: "・";
	position: absolute;
	left: 0;
}
.category-title {
	text-align: left;
}
.card-body {
	text-align: left;
}
.crusher_movie {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 0 20px;
}
.crusher_movie .box {
	width: 48%;
}

/* ===== テーブル デザイン刷新 ===== */
.table-series {
	width: 100%;
	border-collapse: collapse;
	font-size: 14px;
  }
  
  /* ヘッダー */
  .table-series thead tr {
	background: #F07000;
	color: #ffffff;
  }
  
  .table-series thead th {
	padding: 12px 16px;
	font-weight: 700;
	text-align: center;
	border: 1px solid rgba(255,255,255,0.2);
	white-space: nowrap;
	vertical-align: middle;
	background: #F07000;
	color: #fff;
  }
  
  /* ボディ：奇数行 */
  .table-series tbody tr:nth-child(odd) {
	background: #ffffff;
  }
  
  /* ボディ：偶数行 */
  .table-series tbody tr:nth-child(even) {
	background: #FFF6EE;
  }
  
  .table-series tbody td {
	padding: 10px 16px;
	border: 1px solid #E0E0E0;
	text-align: center;
	vertical-align: middle;
	color: #333333;
  }
  
  /* 型式列（左端）を強調 */
  .table-series tbody td.title {
	font-weight: 700;
	color: #F07000;
	background: #FFF3E8;
	border-left: 3px solid #F07000;
  }
  
  /* スマホ対応 */
  .table-responsive {
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
  }


/* ===== RESPONSIVE ===== */
@media (max-width: 640px) {

	.hero,
	.section,
	.problem-section,
	.solution-section,
	.flow-section,
	.reasons-section,
	.spec-section,
	.cta-section {
		padding-left: 10px;
		padding-right: 10px;
	}
	.page-header {
		padding: 0;
	}
	.content-area {
		max-width: 100%;
		padding: 0 0 40px;
	}
	.solution-cards {
		grid-template-columns: 1fr;
	}

	.reason-modes {
		grid-template-columns: 1fr;
		padding-left: 0;
	}

	.reason-body {
		padding-left: 0;
	}

	.video-grid {
		grid-template-columns: 1fr;
		padding-left: 0;
	}

	.video-uses-grid {
		grid-template-columns: 1fr;
	}

	.note-box.indent {
		margin-left: 0;
	}

	.hero h1 {
		font-size: 26px;
	}
	.flow-row {
		gap: 10px;
		justify-content: center;
	}
	.flow-item {
		width: 100%;
		min-width: 100%;
	}
	.reason-mode-card {
		width: 100%;
	}
	.spec-tab {
		padding: 5px 12px;
		font-size: 12px;
		border: 1px solid #F07000;
	}
	.cta-section h2 {
		font-size: 14px;
		margin-bottom: 10px;
	  }
	  
	  .cta-section p {
		font-size: 12px;
	  }
	  .spec-section {
		padding: 25px 12px;
	}
	.what-section {
		padding: 25px 12px;
	}
	.video-section {
		padding: 0px 10px 20px;
	}
	.section-title {
		font-size: 18px;
	}
	.problem-item div {
		font-size: 14px;
	}
	.product-card-img {
		width: 40%;
	}
	.product-card-name {
		width: 60%;
	}
	.spec-from-web {
		padding: 15px;
	}
	.crusher_movie .box {
		width: 100%;
	}
	.row.isotope {
		margin-left: 0;
		height: 100% !important;
	}
	.col-md-3 {
		max-width: 100%;
		position: relative !important;
        left: 0 !important;
		top: auto !important;
	}
	.content-area.crusher-area {
		padding: 0;
	}
}
@media (max-width: 767px) {
	.isotope-wrap .isotope-item {
	  position: static !important;
	  left: auto !important;
	  top: auto !important;
	  width: 50% !important;
	  max-width: 50% !important;
	  float: left;
	}
  
	.isotope-wrap .isotope {
	  height: auto !important;
	  overflow: hidden;
	}
	.thumbnail-lg {
		max-width: 95%;
	}
	.jirei-caption {
		height: auto;
	}
	.linkbtn {
		width: 80%;
		max-width: 80%;
		margin: 15px auto;
	}
	.linkbtn a {
		padding: 15px 20px;
		font-size: 14px;
	}
	.targets-section {;
		padding: 24px;
	}
	.merits-section {
		padding: 24px;
	}
	.merits-grid {
		grid-template-columns: repeat(2, 1fr);
        gap: 12px;
	}
	.merit-num {
		top: 20px;
	}
	.reason_img {
		float: none;
		width: 75%;
		margin: 0 auto 15px;
		text-align: center;
	}
	.reason_howto {
		padding: 10px;
		margin: 20px 0;
	}
	h4.h4_reason-title {
		margin: 20px 0;
	}
	.reason-list {
		padding-left: 0px;
	}
  }
  
  @media (max-width: 480px) {
	.isotope-wrap .isotope-item {
	  width: 100% !important;
	  max-width: 100% !important;
	}
  }
  @media (max-width: 767px) {
	.isotope-wrap .isotope-item {
	  height: auto !important;
	}
	
	.isotope-wrap .thumbnail-classic {
	  margin-bottom: 0;
	}
  }

  @media (max-width: 767px) {
	.isotope-wrap .isotope {
	  height: auto !important;
	  overflow: hidden;
	}
  
	.isotope-wrap .isotope-item {
	  position: static !important;
	  left: auto !important;
	  top: auto !important;
	  width: 50% !important;
	  max-width: 50% !important;
	  float: left;
	  height: auto !important;
	}
  
	.isotope-wrap .thumbnail-classic {
	  margin-bottom: 0;
	}
  
	/* floatの親要素の高さ崩れを防ぐ */
	.isotope-wrap .isotope::after {
	  content: '';
	  display: block;
	  clear: both;
	}
  }
  
  @media (max-width: 480px) {
	.isotope-wrap .isotope-item {
	  width: 100% !important;
	  max-width: 100% !important;
	}
  }
