@charset "UTF-8";

/* =========================================================
   COMPONENTS CSS
   - トップページ
   - 個別ページ
   - 投稿ページ
   - 投稿（おしごと紹介、弟子入り場紹介、プレおしごと道場）
   - カテゴリーページ
   - カテゴリーページ（個別）
   - 固定ページ
   - フォーム
   - 共通アイテム
   - 外部コンテンツ
   - その他プログラム
   ========================================================= */

/* ===== トップページ ===== */

/* メインカバー */
.main-cover {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	background-size: cover;
	background-position: 50%;
	min-height: 350px;
	margin-bottom: 50px;
	color: #fff;
	font-size: 0.9rem;
	line-height: 1.8;
}

.main-cover img {
	position: absolute;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: 50% 70%;
	z-index: 0;
}

.main-cover-overlay {
	position: absolute;
	inset: 0;
	background-color: rgba(0, 0, 0, 0.2);
	z-index: 1;
}

.main-cover-inner-container {
	position: relative;
	z-index: 2;
	width: 100%;
	text-align: center;
	padding: 0 1rem;
	color: inherit;
}

.main-cover-inner {
	text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
	font-weight: 700;
	font-size: 0.9rem;
	line-height: 1.8;
	word-break: break-word;
}

.main-cover-button {
	display: inline-block;
	margin-top: 20px;
	padding: 1em 1.8em;
	background-color: #fff;
	border-radius: 24px;
	font-size: 0.9rem;
	line-height: 1;
	text-align: center;
	font-weight: 400;
	transition: background-color 0.3s ease, transform 0.3s ease;
}

.main-cover-button a {
	color: #333;
	text-decoration: none;
}

.main-cover-button:hover {
	background-color: #f4f4f4;
	transform: translateY(-2px);
}

@media (min-width: 740px) {

	.main-cover {
		min-height: 530px;
		font-size: 1.25rem;
		line-height: 1.9;
	}

	.main-cover-inner-container {
		text-align: left;
		padding: 0;
		max-width: 980px;
		margin: 0 auto;
	}

	.main-cover-inner {
		font-size: 1.1rem;
		line-height: 1.9;
	}

	.main-cover-button {
		margin-top: 40px;
		font-size: 1rem;
	}

}

/* プログラム */
.program {
	text-align: center;
	margin: 2rem auto;
	padding: 0 1rem;
	max-width: 420px;
}

.program h2 {
	position: relative;
	color: var(--color-main);
	font-size: 1.4rem;
	text-align: center;
	font-weight: 600;
	margin: 2rem 0 1.8rem;
	line-height: 1.5;
	z-index: 1;
}

.program h2::before {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 220px;
	height: 60px;
	background: #fff3f2;
	border-radius: 50%;
	z-index: -1;
}

.program h2 span.break {
	display: block;
}

.program .flexbox {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 1.5rem;
}

.program .narikiridojo,
.program .deshiiridojo {
	width: 100%;
	padding: 0.9rem 1rem;
	border-radius: 8px;
}

.program .narikiridojo {
	background: #ecf4d9;
}

.program .deshiiridojo {
	background: #fffada;
}

.program h3 {
	font-size: 1.2rem;
	color: var(--color-main);
	margin-bottom: 0.8rem;
}

.program h3 a {
	color: var(--color-main);
	text-decoration: none;
	font-weight: 600;
	transition: color 0.2s ease;
}

.program h3 a:hover {
	color: #ff7150;
}

.program p {
	font-size: 0.95rem;
	line-height: 1.7;
	margin-bottom: 0.8rem;
}

.program img {
	width: 100%;
	height: auto;
	border-radius: 8px;
	box-shadow: 0 3px 6px rgba(0,0,0,0.08);
	transition: transform 0.3s ease;
}

.program img:hover {
	transform: scale(1.02);
}

.program p a {
	color: #007acc;
	font-weight: normal;
	text-decoration: none;
	transition: color 0.2s ease;
}

.program p a:hover {
	color: #005a99;
}

@media (min-width: 740px) {

	.program {
		max-width: 980px;
		margin: 3rem auto;
		padding: 0;
	}

	.program h2 {
		font-size: 1.6rem;
		margin: 3rem 0 2rem;
	}

	.program h2::before {
		width: 260px;
		height: 70px;
	}

	.program h2 span.break {
		display: inline;
	}

	.program .flexbox {
		flex-direction: row;
		justify-content: space-between;
		gap: 2rem;
	}

	.program .narikiridojo,
	.program .deshiiridojo {
		flex: 1 1 46%;
		text-align: center;
	}

}

/* お知らせ */
.news {
	background-color: #f5f5f5;
	margin: 2rem 0;
}

.news-inner {
	padding: 1rem 1.5rem 1.5rem;
	margin: 0 auto;
	max-width: 980px;
}

.news-inner h2 {
	position: relative;
	margin-bottom: 1.5rem;
	font-size: 1.25rem;
	text-align: center;
	color: var(--color-main);
	font-weight: 600;
	line-height: 1.6;
}

.news-inner h2::after {
	content: "";
	position: absolute;
	bottom: -8px;
	left: 50%;
	transform: translateX(-50%);
	width: 80px;
	height: 2px;
	background-color: var(--color-main);
	border-radius: 1px;
	opacity: 0.7;
}

.news-inner ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.news-inner li {
	padding: 10px 0 8px;
	border-bottom: 1px solid #ddd;
}

.news-inner li:last-child {
	border-bottom: none;
}

.news-inner li a {
	color: #333;
	text-decoration: none;
	transition: color 0.2s ease;
}

.news-inner li a:hover {
	color: var(--color-main);
}

.news-inner li .date {
	display: inline-block;
	width: 100px;
	color: #666;
	font-size: 0.75rem;
	margin-right: 0.6em;
}

.news-inner li .cat a {
	display: inline-block;
	margin-right: 10px;
	padding: 2px 0;
	width: 100px;
	color: #fff;
	font-size: 0.7rem;
	text-align: center;
	background-color: #3498db;
	border-radius: 2px;
}

.news-inner li .cat a:hover {
	background-color: #007acc;
	transition: background-color 0.2s ease;
}

.news-inner li .title {
	display: inline-block;
	padding-top: 5px;
	font-size: 0.8rem;
	line-height: 1.6;
}

@media (min-width: 740px) {
	.news-inner {
		padding: 1.5rem 10%;
	}

	.news-inner h2 {
		font-size: 1.25rem;
	}

	.news-inner li .title {
		padding-top: 0;
		font-size: 0.9rem;
	}
}

/* イベント情報 */
.eventinfo {
	margin-bottom: 30px;
	padding-left: 20px;
	padding-right: 20px;
	border-bottom: solid 1px var(--color-main);
	box-sizing: border-box;
	padding-bottom: 1.5rem;
}

.eventinfo h2 {
	margin: 30px 0 16px;
	padding-bottom: 8px;
	font-size: 1.125em;
	text-align: center;
	color: var(--color-main);
	border-bottom: dotted 1px var(--color-main);
}

.eventlist {
	display: flex;
	gap: 16px;
	align-items: flex-start;
	padding: 14px 0;
	border-bottom: 1px solid #e5e5e5;
}

.eventtext {
	flex: 1;
}

.eventtext .title {
	margin: 0;
	font-size: 1em;
	line-height: 1.4;
}

.eventtext .title a {
	color: #333;
	transition: color 0.2s ease;
}

.eventtext .title a:hover {
	color: var(--color-main);
}

.eventtext p {
	margin: 5px 0 0;
	font-size: 0.75em;
	color: #666;
	line-height: 1.8;
}

.eventlist .thumb {
	display: none;
}

.onlinetag {
	display: inline-block;
	margin-left: 5px;
	padding: 0 8px;
	background-color: #27ae60;
	border-radius: 2px;
	font-size: 0.625em;
	font-weight: normal;
	color: #fff;
	text-align: center;
}

.no-events {
	text-align: center;
	color: #555;
	margin: 1.5rem 0 2rem;
	font-size: 0.9rem;
}

@media (min-width: 740px) {

	.eventinfo {
		width: 66%;
		padding-right: 1rem;
		border-bottom: none;
		float: left;
	}

	.eventlist {
		justify-content: space-between;
	}

	.eventlist .thumb {
		display: block;
	}

	.eventlist .thumb img {
		width: 160px;
		height: auto;
		border-radius: 4px;
		box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
	}

	.eventtext .title {
		font-size: 1.125em;
	}

	.eventtext p {
		font-size: 0.875em;
	}

}

/* アクセスランキング */
.ranking {
	margin-bottom: 10px;
	padding-left: 20px;
	padding-right: 20px;
	box-sizing: border-box;
}

.ranking h2 {
	margin: 30px 0 10px;
	padding-bottom: 10px;
	font-size: 1.125em;
	text-align: center;
	color: var(--color-main);
	border-bottom: dotted 1px var(--color-main);
}

.ranking ol {
	margin: 0;
	padding-left: 0;
	list-style: none;
	text-align: left;
	counter-reset: mycount;
}

.ranking li {
	display: flex;
	align-items: center;
	gap: 0.8rem;
	padding: 12px 0 6px;
	font-size: 0.9rem;
	counter-increment: mycount;
	border-bottom: 1px dotted #ddd;
}

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

.ranking li::before {
	content: counter(mycount);
	display: flex;
	align-items: center;
	justify-content: center;
	width: 1.8em;
	height: 1.8em;
	font-weight: 600;
	border-radius: 50%;
	font-size: 0.9rem;
	color: #fff;
	background: var(--color-main);
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
	border: 2px solid rgba(255, 255, 255, 0.5);
}

.ranking li:nth-child(1)::before {
	background: linear-gradient(145deg, #FFD700, #E6BE00);
	color: #333;
}
.ranking li:nth-child(2)::before {
	background: linear-gradient(145deg, #C0C0C0, #A8A8A8);
	color: #333;
}
.ranking li:nth-child(3)::before {
	background: linear-gradient(145deg, #CD7F32, #B87333);
	color: #fff;
}

.ranking li a {
	color: #333;
	text-decoration: none;
	transition: color 0.2s ease;
}

.ranking li a:hover {
	color: var(--color-main);
}

.ranking p {
	margin-top: 12px;
	font-size: 0.875em;
	text-align: right;
}


@media (min-width: 740px) {

	.ranking {
		width: 32%;
		padding-left: 1rem;
		float: right;
	}

	.eventinfo h2,
	.ranking h2 {
		font-size: 1.25em;
		margin-top: 30px;
	}

	.support {
		clear: both;
		border-top: 1px solid var(--color-main);
		margin-top: 2rem;
	}

}

/* サポート */
.support {
	border-top: 1px solid var(--color-main);
	margin-top: 2rem;
}

.support-inner {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	width: 100%;
	margin: 0 auto;
	padding: 1.5rem 0;
}

.support-item {
	flex: 1 1 30%;
	text-align: center;
}

.support-item h2::before {
	content: attr(data-subtitle);
	display: block;
	font-size: 0.95rem;
	color: var(--color-green);
	margin-bottom: 0.55rem;
	line-height: 1.55;
	font-weight: normal;
}

.support-item h2 {
	font-size: 1.25rem;
	margin: 0.6rem 0 0.35rem;
	line-height: 1.7;
}

.support-item h2 a {
	color: var(--color-main);
	text-decoration: none;
	font-weight: 600;
	transition: color 0.2s ease;
}

.support-item h2 a:hover {
	color: #ff7150;
}

.support-item p {
	font-size: 0.875rem;
	line-height: 1.6;
	margin-top: 0.5rem;
}

.support-item {
	border-bottom: 1px dotted var(--color-main);
	padding-bottom: 1.6rem;
	margin-bottom: 1.6rem;
	width: 85%;
	max-width: none;
	margin-left: auto;
	margin-right: auto;
}

.support-item:last-child {
	border-bottom: none;
	margin-bottom: 0;
	padding-bottom: 0;
}

@media (min-width: 740px) {

	.support-inner {
		flex-direction: row;
		justify-content: space-between;
		flex-wrap: wrap;
		text-align: center;
		max-width: 980px;
	}

	.support-item {
		flex: 1 1 30%;
		width: auto;
		margin: 0;
		padding: 0;
		border-bottom: none;
	}

}

/* SMPウィジェット */
.smp-widget-area img:hover {
	cursor: pointer;
}

.smp-widget-header {
	min-height: 5px !important;
}

.smp-widget-title-text {
	display: none;
}

.smp-widget-image {
	margin-bottom: 0 !important;
}

.smp-widget-close-button {
	z-index: 100000;
}

@media (max-width: 739px)  {

	.smpWebWidget {
		display: none;
	}

}

/* ===== 個別ページ ===== */

article {
	margin: 0 10px 40px;
}

@media (min-width: 740px) {

	article {
		margin-inline: 0;
	}

}

article {
	color: var(--color-text);
	line-height: 1.8;
}

@media (min-width: 740px) {

	article {
		line-height: 2;
	}

}

article h1,
article h2,
article h3 {
	position: relative;
	font-weight: normal;
	margin: 30px 0 20px;
}

article h1 {
	text-align: center;
	font-size: clamp(1.75rem, 2vw + 1rem, 2.25rem);
	margin-bottom: 50px;
}
article h1::before {
	content: '';
	position: absolute;
	bottom: -15px;
	left: 50%;
	transform: translateX(-50%);
	width: 60px;
	height: 5px;
	background: var(--color-main);
	border-radius: 2px;
}

article h2 {
	border-left: 8px solid var(--color-main);
	padding-left: 10px;
	font-size: clamp(1.25rem, 1.5vw + 0.8rem, 1.625rem);
}

article h3 {
	border-bottom: 3px solid #f8c9c4;
}
article h3::after {
	content: "";
	position: absolute;
	bottom: -3px;
	left: 0;
	width: 20%;
	border-bottom: 3px solid var(--color-main);
}

article ul,
article ol {
	padding-left: 30px;
	font-size: 1em;
}
article ul {
	list-style: none;
}
article ul li {
	position: relative;
	padding-left: 18px;
}
article ul li::before {
	position: absolute;
	left: 0;
	top: 0.45em;
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	content: "\f0da";
	color: var(--color-main);
	margin-right: 5px;
	line-height: 1;
}

/* アイキャッチ */
.attachment-post-thumbnail {
	display: block;
	margin: 0 auto 30px;
	max-width: 100%;
	height: auto;
}

/* ===== 投稿ページ ===== */

/* 記事の付加情報 */
.postdate {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 6px;
	margin-top: 10px;
	font-size: 0.875rem;
	color: var(--color-light);
}

.postdate i {
	color: var(--color-mid);
}

@media (min-width: 740px) {

	.postdate {
		font-size: 0.95rem;
		margin-top: 15px;
	}

}

/* 記事が属するカテゴリー */
.post-categories {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 6px;
	margin: 10px 0 0;
	padding: 0;
	list-style: none;
}

.post-categories li {
	padding: 0;
}

.post-categories li::before {
	content: none;
}

.post-categories a {
	display: inline-block;
	padding: 4px 12px;
	border: 1px solid var(--color-green);
	border-radius: 20px;
	color: var(--color-green);
	font-size: 0.85rem;
	line-height: 1.6;
	transition: all 0.2s ease;
	background-color: #fff;
}

.post-categories a:hover {
	background-color: var(--color-green);
	color: #fff;
	text-decoration: none;
	transform: translateY(-1px);
}


@media (min-width: 740px) {

	.post-categories {
		gap: 10px;
		margin: 15px 0 5px;
	}

	.post-categories a {
		font-size: 0.9rem;
		padding: 5px 14px;
	}

}

/* 囲み枠 */
.section {
	margin: 28px 0;
	padding: 18px 20px;
	border: 2px solid var(--color-green);
	border-radius: 6px;
	background-color: #f8fff9;
	font-size: 0.95rem;
	line-height: 1.8;
	color: var(--color-text);
	overflow: hidden;
}

.section h3,
.section h4 {
	margin-bottom: 0.6em;
	font-size: 1.05em;
	color: var(--color-green);
}

.section img {
	max-width: 100%;
	height: auto;
	margin: 10px 0 0;
}

.section p + p {
	margin-top: 0.8em;
}

@media (min-width: 740px) {

	.section {
		margin: 35px 0;
		padding: 25px 35px;
		border-width: 3px;
		font-size: 1rem;
		line-height: 1.9;
	}

	.section img.alignright {
		float: right;
		margin: 0 0 10px 25px;
		max-width: 40%;
	}

	.section img.alignleft {
		float: left;
		margin: 0 25px 10px 0;
		max-width: 40%;
	}

}

/* 吹き出し */
.balloon {
	position: relative;
	display: inline-block;
	margin: 20px auto;
	padding: 18px 22px;
	min-width: 180px;
	max-width: 100%;
	color: var(--color-text);
	background: #e8f1ff;
	border-radius: 12px;
	line-height: 1.9;
	font-size: 0.95rem;
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.balloon::before {
	content: "";
	position: absolute;
	top: -14px;
	left: 50%;
	transform: translateX(-50%);
	border-left: 26px solid transparent;
	border-right: 26px solid transparent;
	border-bottom: 18px solid #e8f1ff;
}

@media (min-width: 740px) {

	.balloon {
		display: block;
		margin: 15px auto 30px;
		padding: 22px 30px;
		border-radius: 14px;
		font-size: 1rem;
	}

	.balloon::before {
		top: 22px;
		left: -42px;
		transform: none;
		border-top: 22px solid transparent;
		border-bottom: 22px solid transparent;
		border-right: 20px solid #e8f1ff;

	}

}

/* ===== 投稿（イベント開催情報） ===== */

/* 囲み枠 */
.category-eventinfo .section {
	margin: 40px auto;
	padding: 25px 20px;
	background: #f7fff8;
	border: 2px solid #2ecc71;
	border-radius: 8px;
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.03);
}

.category-eventinfo .section h3 {
	margin-top: 0;
	margin-bottom: 1em;
	color: #27ae60;
	font-size: 1.1rem;
	font-weight: 600;
	border-left: none;
	border-bottom: 3px solid #f8c9c4;
	padding-left: 0;
	position: relative;
}

.category-eventinfo .section h3::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: -3px;
	width: 50px;
	height: 3px;
	background: var(--color-main);
}

@media (min-width: 740px) {

	.category-eventinfo .section {
		max-width: 780px;
		margin: 60px auto;
		padding: 35px 40px;
	}

}

/* ===== 投稿（おしごと紹介、弟子入り場紹介、プレおしごと道場） ===== */

/* 道場を体験した感想 */
.voice {
	border: 1px solid #aaa;
	padding: 1.25rem;
	margin: 2rem 0;
	max-height: 250px;
	overflow-y: auto;
	background-color: #fafafa;
	border-radius: 6px;
}

.voice p:not(:last-child) {
	margin: 0 0 1rem;
	padding: 0 0 1rem;
	border-bottom: 1px dotted #bbb;
}

/* 補足情報 */
.point {
	position: relative;
	margin: 2.5rem 0;
	padding: 2rem 1.5rem 1rem;
	border-radius: 10px;
	background-color: #cfedb7;
	clear: both;
	box-shadow: 0 3px 6px rgba(0, 0, 0, 0.05);
}

.point::before {
	content: "\f0eb  POINT";
	position: absolute;
	left: 15px;
	top: -12px;
	z-index: 2;
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 4px 12px;
	border-radius: 24px;
	background-color: #5ab80e;
	color: #fff;
	font-family: "Font Awesome 5 Free", Verdana, Helvetica, sans-serif;
	font-weight: 900;
	font-size: 0.95rem;
	letter-spacing: 0.05em;
	line-height: 1;
}

/* 注意書き */
.attention {
	position: relative;
	margin: 40px 0 30px;
	padding: 20px 20px 10px;
	border: 2px dotted #ff0000;
	border-radius: 10px;
	background-color: #ffefef;
	clear: both;
}

.attention::before {
	content: "\f071";
	position: absolute;
	left: 20px;
	top: -12px;
	background: #fff;
	color: #ff0000;
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	font-size: 1.4rem;
	line-height: 1;
	padding: 0px 1px;
	border-radius: 2px;
}

.attention p {
	margin: 0;
}

/* エリア */
.areacat {
	display: inline-block;
	padding: 2px 10px;
	border-radius: 5px;
	font-size: 0.8rem;
	color: #fff;
	margin-right: 0.4em;
}

.hokkaido-tohoku { background-color: #3498db; }
.kanto { background-color: #2ecc71; }
.chubu { background-color: #1abc9c; }
.kinki {background-color: #f1c40f; } 
.chugoku-shikoku { background-color: #e67e22; }
.kyushu { background-color: #e74c3c; }

/* 弟子入り場紹介 */
.gaiyo {
  background-color: #ecf0f1;
  border-radius: 5px;
  padding: 12px 16px;
  margin: 1.5rem 0;
}

@media (max-width: 739px)  {

	.category-workplace .alignright,
	.category-online .alignright {
		display: block;
		float: none;
		margin: 20px auto;
		width: 80%;
	}

}

/* 調査レポート */
.topics {
	position: relative;
	margin: 60px 0;
	padding: 2.2rem 2rem 2rem;
	border: 3px solid var(--color-green);
	border-radius: 8px;
	background: #fff;
}

.topics-title {
	position: absolute;
	top: -0.6em;
	left: 1em;
	padding: 0 0.6em;
	background: #fff;
	color: var(--color-green);
	font-weight: 700;
	font-size: 1.2rem;
	line-height: 1.2;
	margin: 0;
}

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

.topics li {
	position: relative;
	padding: 6px 0 6px 1.8em;
	line-height: 1.8;
	font-size: 1rem;
	color: var(--color-text);
}

.topics li::before {
	content: "\f00c";
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	color: var(--color-main);
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-55%);
	font-size: 0.95em;
	line-height: 1;
}

@media (min-width: 740px) {

	.topics {
		margin-left: 10%;
		margin-right: 10%;
		padding: 2.5rem 2.5rem 2.2rem;
	}

}

/* ===== カテゴリーページ ===== */

/* カラムレイアウト：全ページ汎用 */
.layout-columns {
	display: flex;
	flex-direction: column;
	gap: 2rem;
	margin: 2rem 0;
}

.layout-column {
	width: 100%;
}

@media (min-width: 740px) {
	.layout-columns {
		flex-direction: row;
		flex-wrap: wrap;
		justify-content: space-between;
	}
	.layout-column {
		flex: 1 1 calc(50% - 1rem);
		min-width: 300px;
	}
}

/* カテゴリー2カラムレイアウト */
.category-columns {
	display: flex;
	flex-direction: column;
	gap: 2rem;
	margin: 2rem 0;
}

.main-column,
.side-column {
	width: 100%;
	max-width: 100%;
}

@media (min-width: 740px) {
	.category-columns {
		flex-direction: row;
		align-items: flex-start;
		flex-wrap: wrap;
	}
	.main-column {
		flex: 0 0 65%;
	}
	.side-column {
		flex: 0 0 30%;
	}
}

/* 画像ブロック */
.block-image img {
	display: block;
	width: 100%;
	height: auto;
	border-radius: 4px;
}

/* メッセージブロック */
.section-message {
	text-align: center;
	margin: 2rem 0;
}

.section-message p {
	font-size: 0.95rem;
	margin-bottom: 1rem;
}

.section-message p.text-md {
	font-size: 1.1rem;
}

.section-message strong {
  font-weight: 700;
}

@media (min-width: 740px) {
	
	.section-message p {
		font-size: 1rem;
	}

	.section-message p.text-md {
		font-size: 1.125rem;
	}

}

/* 見出し（記事タイトル） */
.category-news .title,
.category-report .title,
.category-media .title,
.category-research .title {
	font-size: 1.375rem;
}

.category-news .title a,
.category-report .title a,
.category-media .title a,
.category-research .title a {
	color: var(--color-text);
	text-decoration: none;
	transition: color 0.2s ease;
}

.category-news .title a:hover,
.category-report .title a:hover,
.category-media .title a:hover,
.category-research .title a:hover {
	color: var(--color-main);
}

@media (min-width: 740px) {

	.category-news .title,
	.category-report .title,
	.category-media .title,
	.category-research .title {
		font-size: 1.75rem;
	}

}

/* サイドメニュー */
.catmenu .widget {
	margin-bottom: 2rem;
	padding: 1.5rem;
	background: #ecf0f1;
	border-radius: 6px;
}

.catmenu .widgettitle {
	margin: 0 0 1rem;
	padding-left: 0.5rem;
	border-left: 6px solid var(--color-dark);
	color: var(--color-dark);
	font-size: 0.9rem;
	font-weight: 700;
}

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

.catmenu li {
	margin-bottom: 0.25rem;
}

.catmenu li a {
	display: block;
	padding: 0.75em 0.5em 0.5em;
	color: var(--color-text-light);
	font-size: 0.9rem;
	line-height: 1.5;
	text-decoration: none;
	border-bottom: 1px solid #ccc;
	transition: color 0.2s ease, border-color 0.2s ease;
}

.catmenu li a:hover {
	color: var(--color-dark);
	border-bottom-color: var(--color-dark);
}

.catmenu li::before {
	display: none;
}

@media (min-width: 740px) {

	.catmenu .widget {
		padding: 1.25rem 1.5rem;
	}

}

/* ページネーション */
.navigation.pagination {
	text-align: center;
	margin-top: 2.5rem;
}

.navigation.pagination .nav-links {
	display: inline-flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 0.5rem;
}

.page-numbers {
	display: inline-block;
	padding: 0.5em 0.9em;
	font-size: 0.875rem;
	color: var(--color-text);
	border: 1px solid #ccc;
	border-radius: 4px;
	text-decoration: none;
	transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.page-numbers.current {
	background: var(--color-dark);
	color: #fff;
	border-color: var(--color-dark);
	cursor: default;
}

.page-numbers:hover {
	background: var(--color-dark);
	color: #fff;
	border-color: var(--color-dark);
}

.page-numbers.prev,
.page-numbers.next {
	font-size: 0.9rem;
	padding: 0.5em 0.8em;
}

/* ===== カテゴリーページ（個別） ===== */

/* おしごと紹介 */
.oshigoto {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 0.8rem;
	margin: 2rem 0;
}

.oshigoto-cat {
	margin-bottom: 2rem;
	background: #fff;
	border-radius: 10px;
	box-shadow: 0 3px 8px rgba(0, 0, 0, 0.05);
	overflow: hidden;
	transition: transform 0.25s ease, box-shadow 0.25s ease;
	display: flex;
	flex-direction: column;
}

.oshigoto-cat:hover {
	transform: translateY(-4px);
	box-shadow: 0 6px 14px rgba(0, 0, 0, 0.08);
}

.oshigoto-cat-header {
	position: relative;
	overflow: hidden;
}

.oshigoto-cat-header img {
	width: 100%;
	height: auto;
	display: block;
	border-radius: inherit;
	transition: transform 0.4s ease;
}

.oshigoto-cat:hover .oshigoto-cat-header img {
	transform: scale(1.05);
}

.oshigoto-cat-header span {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	padding: 0.6em 1em;
	background: linear-gradient(to top, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0));
	color: #fff;
	font-size: 1.1rem;
	font-weight: 600;
	letter-spacing: 0.02em;
}

.oshigoto ul {
	list-style: none;
	margin: 0;
	padding: 1rem 1.2rem;
}

.oshigoto li {
	position: relative;
	padding: 0.6em 0 0.6em 1.5em;
	border-bottom: 1px dotted #bbb;
	font-size: 0.92rem;
	line-height: 1.8;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.oshigoto li:last-child {
	border-bottom: 1px dotted #bbb;
}

.oshigoto li::before {
	content: "\f005";
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-35%);
	color: var(--color-main);
	font-size: 0.85em;
}

.oshigoto li a {
	color: #333;
	text-decoration: none;
	transition: color 0.2s ease;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	vertical-align: middle;
}

.oshigoto li a:hover {
	color: var(--color-main);
}

.oshigoto li span {
	color: #666;
	font-size: 0.8rem;
	margin-left: 0.3em;
	vertical-align: middle;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

@media (min-width: 740px) {

	.oshigoto-cat {
		width: 48%;
	}

}

/* イベント開催情報 */
.content-event {
	position: relative;
	margin-bottom: 70px;
	padding-bottom: 2rem;
	border-bottom: 1px solid #eee;
}

.content-event .eventdate {
	float: left;
	width: 70px;
	margin-right: 20px;
}

.content-event .title,
.content-event p {
	display: block;
	margin-left: 90px;
}

.content-event .title {
	margin-bottom: 0.6em;
	font-size: 1.25em;
	line-height: 1.45;
	font-weight: 500;
}

.content-event .title a {
	color: #333;
	text-decoration: none;
}

.content-event .title a:hover {
	color: var(--color-main);
}

.content-event p {
	margin-top: 0;
	font-size: 0.9rem;
	color: #777;
	line-height: 1.9;
}

.content-event .thumb {
	display: none;
}

@media (min-width: 740px) {

	.content-event .title {
		font-size: 1.9rem;
		line-height: 1.35;
	}

	.content-event p {
		font-size: 1rem;
	}

	.content-event .thumb {
		display: block;
		position: absolute;
		top: 0;
		right: 0;
		width: 280px;
	}

	.content-event .thumb img {
		width: 100%;
		height: auto;
		border-radius: 6px;
		box-shadow: 0 2px 6px rgba(0,0,0,0.1);
	}

}

/* プレおしごと道場、弟子入り場紹介 */
.content-box {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.archive-item {
	width: 48%;
	margin-bottom: 32px;
}

.content-box::after {
	content: "";
	display: block;
	width: 48%;
}

.archive-item .thumb {
	margin: 0 0 10px;
	overflow: hidden;
	border-radius: 6px;
}

.archive-item img {
	display: block;
	width: 100%;
	height: 180px;
	object-fit: cover;
	transition: transform 0.25s ease;
}

.archive-item a:hover img {
	transform: scale(1.03);
}

.archive-item .title {
	margin: 8px 0 4px;
	padding: 0;
	font-size: 1.1em;
	font-weight: 600;
	line-height: 1.4;
	color: #333;
}

.archive-item .title a {
	color: #333;
	text-decoration: none;
}

.archive-item .title a:hover {
	color: var(--color-main);
}

.archive-item p {
	margin: 0;
	padding: 0;
	line-height: 1.7;
	font-size: 0.875em;
	color: #666;
}

@media (min-width: 740px) {

	.archive-item {
		width: 32%;
		margin-bottom: 40px;
	}

	.content-box::after {
		width: 32%;
	}

}

/* 農しごと弟子入り道場 */
.tag-noushigoto .text-red {
	font-size: 24px;
	margin: 15px 0 30px;
	line-height: 1.4;
}

.tag-noushigoto .main-text {
	flex: 0 0 50%;
	line-height: 1.8;
}

.tag-noushigoto .noujyoshi {
	flex: 0 0 45%;
	border: 5px solid #ec008c;
	border-radius: 10px;
	padding: 20px;
	background: #fff;
	align-self: flex-start;
	overflow: hidden;
}

.tag-noushigoto .noujyoshi h3 {
	color: #ec008c;
	margin-top: 0;
	font-size: 18px;
	font-weight: 700;
	border-left: none;
	padding-left: 0;
}

.tag-noushigoto .noujyoshi img {
	float: right;
	margin: 0 0 10px 10px;
	border-radius: 6px;
}

/* 今後の開催予定 */
.plans {
	margin-top: 2.5rem;
}

.plan-item {
	position: relative;
	margin-bottom: 70px;
	padding-bottom: 0;
	border-bottom: 1px solid #eee;
}

.plan-item .eventdate {
	float: left;
	width: 70px;
	margin-right: 20px;
}

.plan-item .title,
.plan-item p {
	display: block;
	margin-left: 90px;
}

.plan-item .title {
	margin-bottom: 0.6em;
	font-size: 1.25em;
	line-height: 1.45;
	font-weight: 500;
}

.plan-item .title a {
	color: #333;
	text-decoration: none;
}

.plan-item .title a:hover {
	color: var(--color-main);
}

.plan-item p {
	margin-top: 0;
	font-size: 0.9rem;
	color: #777;
	line-height: 1.9;
}

.plan-item .thumb {
	display: none;
}

.plans .plans-empty {
	margin: 4rem 0 6rem;
	text-align: center;
	font-size: 0.95rem;
	line-height: 1.8;
	color: #777;
}

@media (min-width: 740px) {

	.plan-item {
		  padding-bottom: 6rem;
	}

	.plan-item .title {
		font-size: 1.9rem;
		line-height: 1.35;
	}

	.plan-item p {
		font-size: 1rem;
	}

	.plan-item .thumb {
		display: block;
		position: absolute;
		top: 0;
		right: 0;
		width: 280px;
	}

	.plan-item .thumb img {
		width: 100%;
		height: auto;
		border-radius: 6px;
		box-shadow: 0 2px 6px rgba(0,0,0,0.1);
	}

}

/* 出前道場レポート */
.category-demaereport .archive-item {
	margin-bottom: 1.2rem;
}

.category-demaereport .demaedate {
	margin-bottom: 0;
	font-size: 0.875em;
	color: var(--color-green);
}

.category-demaereport .archive-item .title {
	margin-top: 0.1rem;
	margin-bottom: 0.6rem;
	line-height: 1.4;
}

.category-demaereport .archive-item .thumb {
	margin-top: 0.2rem;
}

/* ===== 固定ページ ===== */

/* 弟子入り道場 */
.deshiiri-item {
	--size: 200px;

	margin: 40px auto 20px;
	width: var(--size);
	aspect-ratio: 1 / 1;
	border-radius: 50%;

	display: flex;
	align-items: center;
	justify-content: center;

	font-size: 1.5rem;
	color: #fff;
	text-align: center;
}

.deshiiri-yellow { background-color: #f39c12; }
.deshiiri-green  { background-color: var(--color-green); }
.deshiiri-blue   { background-color: var(--color-blue); }

.deshiiri p {
	margin: 0;
	text-align: center;
}

@media (min-width: 740px) {

	.deshiiri-item {
		--size: 240px;
		font-size: 1.6rem;
	}

}

/* 企業のみなさまへ */
.support-list {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 10px;
	padding-left: 5px;
	margin: 0;
	list-style: none;
}

.support-list li {
	position: relative;
	padding-left: 20px;
}

.support-list li::before {
	content: "\f13a";
	position: absolute;
	left: 0;
	top: 0.45em;
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	color: var(--color-blue);
	line-height: 1;
}

.support-list li a {
	display: inline-block;
}

@media (min-width: 740px) {

	.support-list {
		gap: 25px;
	}

}

.case {
	margin: 0;
	padding-left: 15px;
	list-style: none;
	font-size: 0.875rem;
	line-height: 1.8;
}

.case li {
	position: relative;
	padding-left: 25px;
}

.case li::before {
	content: "\f005";
	position: absolute;
	left: 0;
	top: 0.45em;
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	color: var(--color-main);
	line-height: 1;
}

.case li span {
	margin-left: 0.3em;
	font-size: 0.8rem;
	color: var(--color-mid);
}

@media (min-width: 740px) {

	.case {
		padding-left: 30px;
		font-size: 1rem;
		line-height: 2;
	}

}

/* おしごと場募集 */
.example figure {
	position: relative;
	margin: 0;
}

.example figcaption {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	margin: 0;
	padding: 0.5em 1em;
	box-sizing: border-box;
	background-color: rgba(255, 255, 255, 0.85);
	color: var(--color-text);
	font-size: 1.05rem;
	line-height: 1.5;
	text-align: left;
}

/* 学校関係のみなさまへ */
.post-12591 .case {
	margin: 1em 0;
}

@media (max-width: 739px)  {

	.post-12591 .alignright {
		float: none;
		margin: 20px auto;
		width: 80%;
		height: auto;
	}

}

/* 人気おしごとランキング */
.rankingpage ol {
	margin: 0 10px;
	padding: 0;
	list-style: none;
	counter-reset: mycount;
}

.rankingpage li {
	padding: 8px 0;
	counter-increment: mycount;
	font-size: 1rem;
	break-inside: avoid;
}

.rankingpage li::before {
	content: counter(mycount) "位";
	margin-right: 10px;
	color: var(--color-main);
	font-weight: 600;
}

.rankingpage li a {
	color: inherit;
}

@media (min-width: 740px) {
	.rankingpage ol {
		column-count: 2;
		column-gap: 40px;
	}
}

/* 寄付のお願い */
.donation-message {
	margin: 3rem 0;
	padding: 2rem 1.5rem;
	background-color: #fff5f4;
	border-left: 6px solid var(--color-main);
	line-height: 1.9;
}

.donation-message h3 {
	margin-top: 0;
	margin-bottom: 1rem;
	font-size: 1.25rem;
	text-align: left;
}

.donation-message p {
	margin: 0;
}

.donation-wrap {
	display: flex;
	justify-content: center;
}

@media (min-width: 740px) {

	.donation-message {
		margin: 4rem auto;
		padding: 2.5rem 3rem;
		max-width: 720px;
	}

}

@media (max-width: 739px) {

	.center-items-sp {
		display: grid;
		grid-auto-flow: column;
		align-items: center;
		justify-content: center;
		column-gap: 10px;
	}

	.center-items-sp .wp-block-image {
		width: auto;
		margin: 0;
	}

	.center-items-sp figure {
		float: none;
		margin: 0;
	}

	.center-items-sp p {
		margin: 0;
	}

	.no-wrap-image .alignleft {
		float: none;
		margin: 20px auto;
		height: auto;
	}

}

/* ===== フォーム ===== */

/* Contact Form 7 */
.contact {
	padding: 0 10px;
	border-bottom: 1px solid #c0c0c0;
}

.wpcf7-form {
	padding: 20px;
}

.wpcf7-form .req {
	color: #aa0000;
	font-size: smaller;
}

.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form input[type="url"],
.wpcf7-form input[type="tel"],
.wpcf7-form textarea {
	width: 100%;
	font-size: 0.875em;
	border: 1px solid #c0c0c0;
	border-radius: 3px;
	-webkit-appearance: none;
}

.wpcf7-form textarea {
	min-height: 6em;
}

.wpcf7-form .wpcf7-list-item {
	display: inline-block;
	margin-right: 24px;
}

.wpcf7-form .submit {
	text-align: center;
}

.wpcf7-form input[type="submit"] {
	width: 80%;
	height: 48px;
	background: #fff;
	border: 2px solid #e67e22;
	border-radius: 24px;
	color: #e67e22;
	font-size: 1.125em;
	cursor: pointer;
}

.wpcf7-form input[type="submit"]:hover {
	background-color: #e67e22;
	color: #fff;
}

@media (min-width: 740px) {

	.contact {
		display: flex;
	}

	.item {
		width: 34%;
	}

	.input {
		width: 66%;
	}

	.wpcf7-form input[type="text"],
	.wpcf7-form input[type="email"],
	.wpcf7-form input[type="url"],
	.wpcf7-form input[type="tel"] {
		width: 50%;
	}

	.wpcf7-form input[type="submit"] {
		width: 20%;
	}

}


/* SMPフォーム */
.smp .ss_contents {
	padding: 20px;
}

.smp .ss_field,
.smp .ss_enquete_field {
	padding: 20px 10px;
	border: none;
	border-bottom: 1px solid #c0c0c0;
}

.smp .ss_form_title,
.smp .ss_enquete_title {
	display: inline-block;
	vertical-align: middle;
	width: 100%;
}

.smp .ss_grid,
.smp .ss_input {
	display: inline-block;
	vertical-align: middle;
}

.smp .ss_input {
	margin-right: 14px;
}

.smp .ss_input input[type="text"],
.smp .ss_input input[type="email"],
.smp .ss_input input[type="tel"],
.smp .ss_input input[type="date"] {
	width: 100%;
	height: 25px;
	font-size: 0.875em;
	border-width: 1px;
	border-style: solid;
	border-radius: 3px;
	-webkit-appearance: none;
}

.smp #ss_name input[type="text"] {
	width: 80%;
}

.smp2 #ss_name input[type="text"] {
	width: 100%;
}

.smp .ss_input textarea,
.smp .ss_input select {
	width: 100%;
	font-size: 0.875em;
	border-radius: 3px;
}

.smp .ss_btnArea {
	text-align: center;
}

.smp .ss_btnArea input[type="button"] {
	width: 80%;
	height: 48px;
	margin-top: 10px;
	border: 2px solid #e67e22;
	border-radius: 24px;
	background-color: #fff;
	color: #e67e22;
	font-size: 1.125em;
	cursor: pointer;
	-webkit-appearance: none;	
}

.smp .ss_btnArea input[type="button"]:hover {
	background-color: #e67e22;
	color: #fff;
}

.smp .ss_btnArea p {
	margin-top: 10px;
}

.smp .ss_user_notnull,
.smp .ss_warning_label,
.smp .ss_error_msg {
	margin-left: 3px;
	font-size: 0.875em;
	color: red;  
}

.smp .ss_user_notnull:after {
	content: "必須";
}

.smp .ss_rightComment {
	font-size: 0.875em;
	color: #999;
}

.smpForm .spinner::before {
	content: "";
	position: absolute;
	left: 50%;
	width: 15px;
	height: 15px;
	margin-top: -72px;
	margin-left: 100px;
	border-radius: 50%;
	border: 0.15em solid #666;
	border-top-color: transparent;
	animation: spinner 1s linear infinite;
}

.mail .smpForm .spinner::before {
	margin-top: -65px;
	margin-left: 65px;
}

@keyframes spinner {
	to {
		transform: rotate(360deg);
	}
}

@media (min-width: 740px) {

	.smp .ss_form_title,
	.smp .ss_enquete_title {
		width: 34%;
	}

	.smp .ss_btnArea input[type="button"] {
		width: 20%;
	}
	
	.smp2 .ss_form_title,
	.smp2 .ss_enquete_title {
		width: 100%;
	}

	.smp2 .ss_btnArea input[type="button"] {
		width: 80%;
	}

}

/* メール配信登録 */
.mail {
	text-align: center;
}

.mail .ss_contents {
	padding: 20px;
}

.mail fieldset {
	padding-bottom: 5px;
	border: none;
}

.mail .ss_form_title {
	display: inline-block;
	vertical-align: middle;
	margin-right: 3px;
}

.mail .ss_grid {
	display: inline-block;
	vertical-align: middle;
	margin-left: 3px;
}

.mail .ss_grid input[type="email"] {
	width: 100%;
	height: 36px;
	font-size: 1em;
	border: 1px solid;
	border-radius: 3px;
	-webkit-appearance: none;
}

.mail .ss_btnArea {
	text-align: center;
}

.mail .ss_btnArea input[type="button"] {
	width: 120px;
	height: 36px;
	padding: 0;
	border: none;
	border-radius: 18px;
	background-color: #27ae60;
	color: #fff;
	font-size: 1em;
	cursor: pointer;
	-webkit-appearance: none;
}

.mail .ss_btnArea input[type="button"]:hover {
	opacity: 0.7;
}

.mail .ss_btnArea p {
	margin-top: 10px;
}

.mail .ss_user_notnull,
.mail .ss_warning_label,
.mail .ss_error_msg {
	margin-left: 3px;
	font-size: 0.875em;
	color: red;  
}

.mail .ss_user_notnull:after {
	content: "必須";
	font-size: 0.875em;
}

@media (min-width: 740px) {

	.mail .ss_grid input[type="email"] {
		width: 300px;
	}

}

/* ===== 共通アイテム ===== */

/* キャプション */
.wp-caption {
	max-width: 100%;
}

.wp-caption-text,
figcaption {
	margin: 0;
	font-size: 0.875em;
	line-height: 1.6;
	text-align: center;
	color: var(--color-mid);
}

figcaption span {
	display: inline-block;
	margin-bottom: 0.25em;
	font-size: 0.975rem;
	color: var(--color-dark);
}

/* NextGEN Gallery */
.ngg-gallery-thumbnail img {
	border-radius: 0;
}

.ngg-navigation span.current {
	display: none !important;
}

/* 表 */
table {
	margin: 20px 0;
	width: 100%;
	font-size: 0.875em;
	line-height: 1.8;
}

.about table th,
.about table td {
	display: block;
	width: 100%;
	text-align: center;
}

@media (min-width: 740px) {

	table {
		font-size: 1em;
		line-height: 2;
	}

	.about table th,
	.about table td {
		display: table-cell;
	}

	.about table th {
		width: 20%;
	}

	.about table td {
		width: 80%;
		text-align: left;
	}

}

/* ボタン */
.wp-block-button.is-style-outline .wp-block-button__link,
.btn-outline {
	border: 2px solid var(--color-green);
	color: var(--color-green);
	background-color: transparent;
}

.wp-block-button.is-style-outline .wp-block-button__link:hover,
.btn-outline:hover {
	background-color: var(--color-green);
	color: #fff;
	text-decoration: none;
}

/* 引用 */
.quote {
	position: relative;
	margin: 3rem auto;
	padding: 1.5rem 2rem;
	max-width: 720px;
	border: 2px solid var(--color-main);
	border-radius: 4px;
	background-color: #fff;
	line-height: 1.9;
}

/* 引用 */
.quote::before {
	content: "";
	position: absolute;
	top: -10px;
	left: -10px;
	width: 10px;
	height: 10px;
	border: 2px solid var(--color-main);
	border-radius: 50%;
}

.quote h3 {
	margin-top: 0;
	margin-bottom: 1rem;
	font-size: 1.15rem;
	text-align: center;
}

.quote p {
	margin: 0;
}

/* イベントカレンダー */
.eventdate {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	width: 70px;
	height: 70px;
	border: 2px solid #4fa8de;
	border-radius: 8px;
	background: #f8fbfd;
	color: #2c7bb6;
	text-align: center;
	font-family: "Helvetica Neue", "Noto Sans JP", sans-serif;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
	transition: all 0.25s ease;
}

.eventdate:hover {
	transform: translateY(-2px);
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.08);
	border-color: #3e97d8;
}

.eventdate .year {
	font-size: 0.75rem;
	opacity: 0.75;
	margin-bottom: 2px;
	line-height: 1.25;
}

.eventdate .day {
	font-size: 1.2rem;
	font-weight: 700;
	color: #1d6fa5;
	line-height: 1.2;
	margin-bottom: 2px;
}

.eventdate .week {
	font-size: 0.75rem;
	color: #4fa8de;
	font-weight: 500;
	line-height: 1.25;
}

/* 注意事項リスト */
.note {
	margin: 1.5rem 0;
	padding: 0;
	list-style: none;
	font-size: 0.8em;
	line-height: 1.6;
}

.note li {
	position: relative;
	padding-left: 26px;
}

.note li::before {
	position: absolute;
	left: 0;
	top: 0.45em;
	font-family: "Font Awesome 5 Free";
	font-weight: 400;
	content: "\f058";
	color: var(--color-dark);
	line-height: 1;
}

@media (min-width: 740px) {

	.note {
		padding-left: 20px;
		font-size: 0.9em;
		line-height: 1.8;
	}

}

/* バナー */
.banner img {
	display: block;
	width: 100%;
	height: auto;
	border-radius: 6px;
	border: 1px solid #ddd;
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.banner a:hover img {
	transform: translateY(-2px);
	box-shadow: 0 4px 8px rgba(0,0,0,0.08);
}

.banner-group {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1rem;
	margin: 2rem 0;
}

@media (min-width: 740px) {

	.banner-group {
		grid-template-columns: repeat(2, 1fr);
		gap: 1.5rem;
	}

}

/* シェアボタン */
.share {
	margin: 60px 0 40px;
}

.share h2 {
	margin: 0 0 10px;
	padding: 0;
	border: none;
	color: var(--color-green);
	font-size: 1em;
	text-align: center;
	line-height: 1.2;
}

.sharelist {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 4px;
}

.share a {
	width: 32.5%;
	padding: 10px;
	border: 1px solid var(--share-color);
	color: var(--share-color);
	line-height: 1;
	text-align: center;
	text-decoration: none;
	transition: background-color 0.2s ease, color 0.2s ease;
}

.share a:hover {
	background-color: var(--share-color);
	color: #fff;
}

.share .facebook  { --share-color: #1877f2; }
.share .x-twitter { --share-color: #000; }
.share .line      { --share-color: #00b900; }

/* タイムライン */
.timeline {
	--timeline-offset: 30px;
	--timeline-line: var(--color-light);
}

.timeline p {
	margin: 5px 0;
}

.timeline h4 {
	margin: 5px 0 10px;
	font-size: 1.25em;
	font-weight: normal;
}

.timeline .step {
	margin-left: var(--timeline-offset);
	border-left: 3px solid var(--timeline-line);
}

.timeline .step > *,
.timeline .wp-block-group__inner-container {
	margin-left: var(--timeline-offset);
	padding: 10px 0;
}


/* ===== 外部コンテンツ ===== */

/* 追従バナー */
.contactBtn,
.downloadBtn {
	position: fixed;
	right: 0;
	z-index: 900;
}

.contactBtn {
	top: 132px;
}

.downloadBtn {
	top: 317px;
}

.forPC {
	display: block;
	width: 60px;
	height: 180px;
}

.forSP {
	display: none;
}

@media (max-width: 739px) {

	.contactBtn,
	.downloadBtn {
		right: 10px;
		opacity: 0.7;
	}

	.contactBtn {
		top: auto;
		bottom: 90px;
	}

	.downloadBtn {
		top: auto;
		bottom: 10px;
	}

	.forPC {
		display: none;
	}

	.forSP {
		display: inline-block;
		width: 72px;
		height: 72px;
	}

}
