@charset "utf-8";

/* 補助金セット 横並びカード */
.hojokin-set-title {
	border-bottom: 2px solid #1a3a5c;
	padding-bottom: 8px;
	margin-bottom: 10px;
}

.paster-hojo-note {
	background: #fffbe6;
	border-left: 4px solid #c0392b;
	padding: 10px 14px;
	margin: 0 0 12px;
	font-size: 13px;
	line-height: 1.8;
}

.paster-hojo-note p {
	margin: 0 0 4px;
}

.paster-hojo-note p:last-child {
	margin-bottom: 0;
}

.paster-hojo-note a {
	font-weight: bold;
	color: #005bac;
	text-decoration: underline;
}

.paster-card-wrap {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin: 10px 0 25px;
}

.paster-card {
	box-sizing: border-box;
	width: calc((100% - 20px) / 3);
	border: 1px solid #ddd;
	background: #fff;
	padding: 15px;
	font-size: 13px;
	line-height: 1.8;
}

.paster-card-feature {
	border: 1px solid #1a3a5c;
}

.paster-card-wide {
	width: calc((100% - 10px) / 2);
}

.paster-badge {
	display: inline-block;
	margin: 0 0 10px;
	padding: 2px 8px;
	border-radius: 2px;
	font-size: 11px;
	font-weight: bold;
	line-height: 1.5;
}

.paster-badge.red {
	background: #c0392b;
	color: #fff;
}

.paster-badge.blue {
	background: #e8f0fa;
	color: #1a3a5c;
}

.paster-card h3 {
	margin: 0 0 6px;
	padding: 0;
	border: none;
	font-size: 15px;
	font-weight: bold;
	line-height: 1.5;
	color: #000;
}

.paster-target {
	margin: 0 0 12px;
	padding-bottom: 8px;
	border-bottom: 1px dotted #ccc;
	font-size: 12px;
	color: #777;
}

.paster-card ul {
	margin: 0 0 12px;
	padding: 0;
	list-style: none;
}

.paster-card li {
	margin: 0 0 3px;
	padding-left: 1em;
	text-indent: -1em;
}

.paster-card li::before {
	content: "・";
}

.paster-price {
	margin: 10px 0 0;
	font-size: 22px;
	font-weight: bold;
	line-height: 1.4;
	color: #000;
}

.paster-price span {
	font-size: 11px;
	font-weight: normal;
	color: #777;
}

.paster-tax {
	margin: 0;
	font-size: 11px;
	color: #888;
}

.paster-subprice {
	margin: 0 0 8px;
	font-size: 12px;
	font-weight: bold;
	color: #333;
}

.paster-subprice span {
	font-weight: normal;
	color: #999;
}

.paster-support {
	margin: 8px 0 10px;
	padding: 8px 10px;
	background: #f5faf0;
	font-size: 12px;
	line-height: 1.7;
}

.paster-support strong {
	color: #c0392b;
}

.paster-btn {
	margin: 0;
}

.paster-btn a {
	display: block;
	background: #c0392b;
	color: #fff !important;
	text-align: center;
	text-decoration: none;
	font-weight: bold;
	padding: 9px 10px;
	border-radius: 2px;
}

.paster-btn.blue a {
	background: #1a3a5c;
}

.paster-btn a:hover {
	opacity: 0.85;
	text-decoration: none;
}

/* タブレット */
@media screen and (max-width: 900px) {
	.paster-card,
	.paster-card-wide {
		width: calc((100% - 10px) / 2);
	}
}

/* スマホ */
@media screen and (max-width: 600px) {
	.paster-card,
	.paster-card-wide {
		width: 100%;
	}
}
/* このページでわかること */
.hojokin-intro {
	background: #f7fbff;
	border: 1px solid #cce0f0;
	border-radius: 5px;
	padding: 16px 20px;
	margin: 16px 0 24px;
}

.hojokin-intro-title {
	margin: 0 0 10px;
	font-size: 13px;
	font-weight: bold;
	color: #1a3a5c;
	line-height: 1.6;
}

.hojokin-intro-title::before {
	content: "📖 ";
}

.hojokin-intro ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.hojokin-intro li {
	margin: 0;
	padding: 5px 0;
	border-bottom: 1px dotted #cce0f0;
	font-size: 13px;
	line-height: 1.6;
}

.hojokin-intro li:last-child {
	border-bottom: none;
}

.hojokin-intro li::before {
	content: "✅ ";
}
/* よくある質問 FAQ */
.faq-title {
	border-bottom: 2px solid #1a3a5c;
	padding-bottom: 8px;
	margin-top: 35px;
	margin-bottom: 16px;
}

.hojokin-faq-area {
	margin: 0 0 30px;
}

.hojokin-faq {
	border-bottom: 1px solid #e8e8e8;
}

.hojokin-faq summary {
	position: relative;
	display: block;
	padding: 13px 36px 13px 12px;
	font-size: 14px;
	font-weight: bold;
	line-height: 1.6;
	color: #1a3a5c;
	cursor: pointer;
	list-style: none;
}

.hojokin-faq summary::-webkit-details-marker {
	display: none;
}

.hojokin-faq summary::before {
	content: "Q. ";
	color: #c0392b;
	font-weight: bold;
}

.hojokin-faq summary::after {
	content: "▼";
	position: absolute;
	top: 50%;
	right: 12px;
	transform: translateY(-50%);
	font-size: 12px;
	color: #999;
}

.hojokin-faq[open] summary::after {
	content: "▲";
}

.hojokin-faq .faq-answer {
	margin: 0;
	padding: 12px 14px 16px 22px;
	background: #fafcff;
	border-left: 3px solid #1a3a5c;
	font-size: 13px;
	line-height: 1.9;
	color: #333;
}

.hojokin-faq .faq-answer::before {
	content: "A. ";
	font-weight: bold;
	color: #1a3a5c;
}

.hojokin-faq .faq-answer strong {
	font-weight: bold;
	color: #1a3a5c;
}
/* type-p.html 追加CSS：新規クラスは hojokin- 接頭辞 */
.hojokin-label {
	display: inline-block;
	margin-left: 8px;
	padding: 4px 10px;
	border-radius: 999px;
	background: #eaf6f1;
	color: #0a6e4f;
	font-size: 13px;
	font-weight: bold;
	vertical-align: middle;
}

.hojokin-catch {
	margin: 12px 0 18px;
	padding: 16px 18px;
	background: #111;
	color: #fff;
	font-size: 22px;
	font-weight: bold;
	text-align: center;
	line-height: 1.5;
}

.hojokin-mainvisual {
	display: flex;
	gap: 14px;
	margin: 16px 0 22px;
}

.hojokin-img-placeholder {
	box-sizing: border-box;
	flex: 1;
	min-height: 180px;
	padding: 22px 18px;
	border: 2px dashed #bbb;
	background: #f7f7f7;
	text-align: center;
	color: #666;
}

.hojokin-placeholder-title {
	margin: 0 0 8px;
	font-weight: bold;
	font-size: 18px;
	color: #333;
}

.hojokin-path {
	font-size: 12px;
	color: #999;
}

.hojokin-hero {
	margin: 18px 0;
	padding: 24px;
	background: #111;
	color: #fff;
}

.hojokin-hero-kicker {
	margin: 0 0 8px;
	color: #f6d365;
	font-weight: bold;
}

.hojokin-hero-title {
	margin: 0 0 12px;
	font-size: 26px;
	font-weight: bold;
	line-height: 1.4;
}

.hojokin-video-short {
	max-width: 320px;
	margin: 22px auto;
	aspect-ratio: 9 / 16;
	background: #000;
}

.hojokin-video-short iframe {
	width: 100%;
	height: 100%;
}

.hojokin-alert-red {
	margin: 18px 0;
	padding: 16px 18px;
	border: 2px solid #d93025;
	background: #fff7f6;
}

.hojokin-alert-title {
	margin: 0 0 8px;
	font-size: 18px;
	font-weight: bold;
	color: #d93025;
}

.hojokin-stats {
	display: flex;
	gap: 12px;
	margin: 18px 0;
}

.hojokin-stat {
	flex: 1;
	padding: 16px;
	border: 1px solid #ddd;
	background: #fafafa;
	text-align: center;
}

.hojokin-stat span {
	display: block;
	margin-bottom: 6px;
	font-size: 24px;
	font-weight: bold;
	color: #f60;
}

.hojokin-stat p {
	margin: 0;
	font-size: 13px;
}

.hojokin-photo-row {
	display: flex;
	gap: 10px;
	margin: 15px 0;
}

.hojokin-photo-row img {
	max-width: calc(50% - 5px);
	height: auto;
}

.hojokin-card-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 12px;
}

.hojokin-card {
	padding: 14px 16px;
	border: 1px solid #ddd;
	background: #fff;
	font-weight: bold;
}

.hojokin-card::before {
	content: "● ";
	color: #f60;
}

.hojokin-table-scroll {
	overflow-x: auto;
}

.hojokin-compare-table th,
.hojokin-compare-table td {
	vertical-align: middle;
}

.hojokin-fabric-grid {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 8px;
	margin: 15px 0;
}

.hojokin-fabric {
	padding: 12px 8px;
	border: 1px solid #ccc;
	text-align: center;
	background: #fff;
}

.hojokin-fabric span {
	display: block;
	font-size: 34px;
	font-weight: bold;
	color: #6c0;
	line-height: 1;
}

.hojokin-fabric strong {
	display: block;
	margin: 8px 0;
	font-size: 14px;
}

.hojokin-fabric p {
	margin: 0;
	font-size: 12px;
	line-height: 1.6;
}

.hojokin-ng span {
	color: #f33;
}

.hojokin-flow {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 12px;
	margin: 15px 0;
}

.hojokin-flow div {
	padding: 16px;
	border: 1px solid #ddd;
	background: #f7fbff;
}

.hojokin-flow span {
	display: inline-block;
	margin-bottom: 8px;
	padding: 3px 8px;
	background: #1a3a5c;
	color: #fff;
	font-weight: bold;
	font-size: 12px;
}

.hojokin-flow p {
	margin: 0;
}

.hojokin-faq-list details {
	border-bottom: 1px solid #e5e5e5;
	padding: 0;
}

.hojokin-faq-list summary {
	padding: 13px 12px;
	cursor: pointer;
	font-weight: bold;
	color: #1a3a5c;
}

.hojokin-faq-list summary::before {
	content: "Q. ";
	color: #c0392b;
}

.hojokin-faq-list details p {
	margin: 0 0 12px;
	padding: 12px 16px;
	border-left: 3px solid #1a3a5c;
	background: #fafcff;
}

.hojokin-faq-list details p::before {
	content: "A. ";
	font-weight: bold;
	color: #1a3a5c;
}

.hojokin-cart-placeholder {
	margin-top: 10px;
	padding: 10px;
	border: 1px dashed #d93025;
	background: #fff7f6;
	color: #d93025;
	font-size: 13px;
	font-weight: bold;
}

@media screen and (max-width: 800px) {
	.hojokin-mainvisual,
	.hojokin-stats,
	.hojokin-photo-row {
		flex-direction: column;
	}
	.hojokin-photo-row img {
		max-width: 100%;
	}
	.hojokin-card-grid,
	.hojokin-flow {
		grid-template-columns: 1fr;
	}
	.hojokin-fabric-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media screen and (max-width: 480px) {
	.hojokin-fabric-grid {
		grid-template-columns: 1fr;
	}
	.hojokin-catch {
		font-size: 18px;
	}
	.hojokin-hero-title {
		font-size: 21px;
	}
}

/* =========================================================
   0から始めるスタートセット fixed2 改修用
   css/style4.css の末尾に追記
   新規classは hojokin-ss- で統一
========================================================= */

/* 冒頭「このページでできること」の行間調整 */
.hojokin-ss-leadbox li {
  line-height: 1.9;
  margin-bottom: 4px;
}

.hojokin-ss-leadbox li:last-child {
  margin-bottom: 0;
}
.hojokin-ss-leadbox {
  background: #fffaf2;
  border: 2px solid #f3c56b;
  border-radius: 12px;
  padding: 18px 20px;
  margin: 18px 0;
}
.hojokin-ss-leadbox-title {
  display: inline-block;
  background: #f39800;
  color: #fff;
  font-weight: bold;
  border-radius: 999px;
  padding: 5px 14px;
  margin-bottom: 10px;
}
.hojokin-ss-leadbox ul {
  margin: 8px 0 0 1.2em;
  padding: 0;
}
.hojokin-ss-note-red {
  color: #c00;
  font-weight: bold;
}
.hojokin-ss-anchor-btn {
  display: inline-block;
  background: #0a74c9;
  color: #fff !important;
  text-decoration: none;
  font-weight: bold;
  border-radius: 999px;
  padding: 10px 22px;
  margin: 8px 0 16px;
}
.hojokin-ss-anchor-btn:hover {
  opacity: .85;
}
.hojokin-ss-menu {
  border: 1px solid #ddd;
  border-radius: 12px;
  background: #fff;
  padding: 16px;
  margin: 18px 0 28px;
}
.hojokin-ss-menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.hojokin-ss-menu-title {
  font-weight: bold;
  border-left: 6px solid #f39800;
  padding-left: 10px;
  margin: 0 0 8px;
}
.hojokin-ss-menu ul {
  margin: 0 0 0 1.1em;
  padding: 0;
}
.hojokin-ss-menu li {
  margin: 4px 0;
}
.hojokin-ss-section-title {
  background: #333;
  color: #fff;
  font-size: 20px;
  font-weight: bold;
  padding: 10px 14px;
  border-radius: 8px;
  margin: 32px 0 12px;
}
.hojokin-ss-section-title-orange {
  background: #f39800;
}
.hojokin-ss-for {
  background: #fff;
  border-left: 7px solid #f39800;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,.08);
  padding: 14px 16px;
  margin: 0 0 18px;
}
.hojokin-ss-for-blue {
  border-left-color: #0a74c9;
}
.hojokin-ss-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin: 14px 0 26px;
}
.hojokin-ss-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 190px;
  gap: 16px;
  align-items: stretch;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,.06);
}
.hojokin-ss-card-main {
  padding: 16px;
}
.hojokin-ss-card-title {
  font-size: 17px;
  font-weight: bold;
  line-height: 1.5;
  margin: 0 0 10px;
}
.hojokin-ss-badge {
  display: inline-block;
  background: #fff1d6;
  color: #b35c00;
  border: 1px solid #f3c56b;
  border-radius: 999px;
  font-size: 12px;
  font-weight: bold;
  padding: 3px 10px;
  margin: 0 0 8px;
}
.hojokin-ss-images {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin: 6px 0 10px;
}
.hojokin-ss-images img {
  width: 86px;
  max-width: 100%;
  height: auto;
  border: 1px solid #e5e5e5;
  border-radius: 6px;
  background: #fff;
}
.hojokin-ss-desc {
  color: #555;
  font-size: 13px;
  line-height: 1.7;
  margin: 8px 0 0;
}
.hojokin-ss-price {
  background: #f7f7f7;
  border-left: 1px solid #ddd;
  padding: 16px 12px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: right;
}
.hojokin-ss-price-label {
  display: block;
  color: #666;
  font-size: 12px;
  margin-bottom: 4px;
}
.hojokin-ss-price-main {
  display: block;
  color: #c00;
  font-size: 24px;
  font-weight: bold;
  line-height: 1.25;
}
.hojokin-ss-price-sub {
  display: block;
  color: #555;
  font-size: 12px;
  line-height: 1.5;
  margin-top: 5px;
}
.hojokin-ss-real {
  margin-top: 10px;
  background: #fff;
  border: 2px solid #f39800;
  border-radius: 8px;
  padding: 8px;
  text-align: center;
}
.hojokin-ss-real span {
  display: block;
  color: #c00;
  font-size: 22px;
  font-weight: bold;
}
.hojokin-ss-mini {
  color: #777;
  font-size: 11px;
}
.hojokin-ss-card-btn {
  display: inline-block;
  margin-top: 12px;
  background: #f39800;
  color: #fff !important;
  text-decoration: none;
  border-radius: 999px;
  padding: 8px 16px;
  font-weight: bold;
}
.hojokin-ss-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 14px 0 26px;
}
.hojokin-ss-grid .hojokin-ss-card {
  grid-template-columns: 1fr;
}
.hojokin-ss-grid .hojokin-ss-price {
  border-left: 0;
  border-top: 1px solid #ddd;
  text-align: left;
}
.hojokin-ss-info {
  background: #f5fbff;
  border: 1px solid #b6d9ef;
  border-left: 7px solid #0a74c9;
  border-radius: 10px;
  padding: 15px 18px;
  margin: 20px 0;
}
.hojokin-ss-info-title {
  font-weight: bold;
  font-size: 16px;
  margin-bottom: 6px;
}
.hojokin-ss-info-bad {
  color: #c00;
  font-weight: bold;
}
.hojokin-ss-info-good {
  color: #087a2f;
  font-weight: bold;
}
.hojokin-ss-faqs {
  margin: 18px 0 26px;
}
.hojokin-ss-faq {
  border: 1px solid #ddd;
  border-radius: 8px;
  background: #fff;
  margin: 8px 0;
  overflow: hidden;
}
.hojokin-ss-faq summary {
  cursor: pointer;
  font-weight: bold;
  padding: 12px 14px;
  background: #f7f7f7;
}
.hojokin-ss-answer {
  padding: 14px;
  line-height: 1.8;
}
.hojokin-ss-final {
  background: #fffaf2;
  border: 2px solid #f39800;
  border-radius: 14px;
  text-align: center;
  padding: 22px 18px;
  margin: 28px 0 10px;
}
.hojokin-ss-final h3 {
  margin-top: 0;
}
.hojokin-ss-final a {
  display: inline-block;
  background: #f39800;
  color: #fff !important;
  text-decoration: none;
  border-radius: 999px;
  padding: 11px 26px;
  font-weight: bold;
}
@media screen and (max-width: 760px) {
  .hojokin-ss-menu-grid,
  .hojokin-ss-grid {
    grid-template-columns: 1fr;
  }
  .hojokin-ss-card {
    grid-template-columns: 1fr;
  }
  .hojokin-ss-price {
    border-left: 0;
    border-top: 1px solid #ddd;
    text-align: left;
  }
}

/* =========================================================
   startset：フォーム上部カテゴリ枠の調整
   アイコン画像自体に枠があるため、外側の薄い枠は表示しない
========================================================= */

/* カテゴリ全体 */
.hojokin-ss-form-category {
  margin: 24px 0 32px;
  padding: 16px;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  background: #fff;
}

/* 3カラム */
.hojokin-ss-form-category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

/* 各カテゴリボックス */
.hojokin-ss-form-category-box {
  padding: 16px 16px 18px;
  border-radius: 12px;
  background: #f8fafc;
  border: none;
}

/* スタートセットだけ薄いクリーム */
.hojokin-ss-form-category-box:nth-child(2) {
  background: #fff8e8;
}

/* 補助金申請用セットだけ薄い水色 */
.hojokin-ss-form-category-box:nth-child(3) {
  background: #eef8ff;
}

/* 見出し */
.hojokin-ss-form-category-title {
  margin: 0 0 12px;
  padding-left: 10px;
  border-left: 5px solid #f59e0b;
  font-size: 16px;
  font-weight: bold;
  line-height: 1.4;
}

/* 補助金申請用セットの見出しアクセント */
.hojokin-ss-form-category-box:nth-child(3) .hojokin-ss-form-category-title {
  border-left-color: #0284c7;
}

/* リスト */
.hojokin-ss-form-category-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.hojokin-ss-form-category-list li {
  padding: 6px 0;
  line-height: 1.55;
  font-size: 14px;
  border-bottom: 1px dashed rgba(0, 0, 0, 0.12);
}

.hojokin-ss-form-category-list li:last-child {
  border-bottom: none;
}

/* アイコン画像まわりの外枠を消す */
.hojokin-ss-form-category img,
.hojokin-ss-form-category-box img,
.hojokin-ss-icon,
.hojokin-ss-icon img,
.hojokin-ss-item-image,
.hojokin-ss-item-image img {
  border: none !important;
  box-shadow: none !important;
}

/* アイコンを囲っている白背景カードがある場合も枠を消す */
.hojokin-ss-item-image {
  background: transparent;
}

/* スマホでは1カラム */
@media screen and (max-width: 768px) {
  .hojokin-ss-form-category-grid {
    grid-template-columns: 1fr;
  }
}
/* =========================================================
   startset：商品アイコン外枠を削除
   画像自体に枠があるため、CSS側の薄いグレー枠を消す
========================================================= */
.hojokin-ss-images img,
.hojokin-ss-card-main .hojokin-ss-images img,
.hojokin-ss-card .hojokin-ss-images img,
.hojokin-ss-grid .hojokin-ss-images img {
  border: none !important;
  box-shadow: none !important;
  background: transparent !important;
  border-radius: 0 !important;
}

.hojokin-ss-images a,
.hojokin-ss-card-main .hojokin-ss-images a {
  border: none !important;
  box-shadow: none !important;
  background: transparent !important;
  text-decoration: none !important;
}