@charset "UTF-8";


/*=======================================================*/
/*					セクション毎のCSS					  */
/*======================================================*/

/*============ 共通 =========== */

/* 親要素からはみ出して画面いっぱいに */
.full {
	margin: 0 calc(50% - 50vw);
	width: 100vw;
}
@media print {
	.full {
		margin: 0;
		width: 100%;
	}
}
.spot-heading01{
	font-size: clamp(40px,6vw,60px);
	font-style: italic;
	text-align: center;
	line-height: 1.2;
	font-family: "Zen Old Mincho", "Hiragino Mincho ProN", "Yu Mincho", serif;
}
.spot-heading02{
	font-size: clamp(18px, 2.7vw, 25px);
	line-height: 1em;
	font-weight: 700;
	text-align: center;
	font-family: "Zen Old Mincho", "Hiragino Mincho ProN", "Yu Mincho", serif;
}
.spot-heading02+p{
	display: block;
	margin-top: 0.5em;
	margin-bottom: 1em;
	font-size: clamp(14px,2vw,16px);
	font-weight: 400;
	inline-size: fit-content;
	margin-inline: auto;
	text-align: center;
	font-family: 'YakuHanJPs','Noto Sans Japanese',sans-serif,"ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka, "MS Pゴシック", "MS PGothic", Arial,Helvetica, Verdana;
}
@media only screen and (max-width: 767px) {
	.br768{
		display:none;
	}
}
.line{
	width: 1px;
	height: auto;
	padding-top: 35px;
	background-color: #222222;
	margin: 1.1% auto;	/*今回のみ*/
}
@media only screen and (max-width: 767px) {
	.line {
		padding-top: 10%;
	}
}
.line2{
	width: 1px;
	height: auto;
	padding-top: 5.8%;
	background-color: #FFF;
	margin: 1.9607% auto;
}
@media only screen and (max-width: 767px) {
	.line2 {
		padding-top: 10%;
	}
}
.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;
}

/*タグ*/
/* タグ（左右が揃う）  */
.kakomi-tag01 {
	display: flex;
	flex-wrap: wrap; /* 子要素を折り返す */
	gap: 10px;
	width: 100%;
	justify-content: space-between; /* 左右のボックスを揃える */
}
.kakomi-tag01 p {
	background-color: var(--main-color);
	color: #FFF;
	padding: 5px;
	font-size: clamp(14px, 1.3vw, 14px);
	font-family: Arial, sans-serif;
	flex-grow: 1; /* ボックスのサイズを自動調整 */
	min-width: 50px; /* ボックスの最小幅を設定 */
	box-sizing: border-box;
	text-align: center; /* 水平方向の中央揃え */
	border-radius: 5px;
}
.kakomi-tag01 .end{		/* などを末尾につけたい場合に */
	background-color:transparent;
	color:var(--txt-color);
	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; /* 水平方向の中央揃え */
}

/* section遷移ナビ */
nav.section-nav {
	box-sizing: border-box;
	padding: 15px 30px;
	margin: 20px auto 0;
	width: fit-content;
	text-align: center;
	border: 1px solid #ddd;
	background-color: rgba(255, 255, 255, 0.9);
}

/* リスト（以前の .link-menu 相当） */
.section-nav__list {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	list-style: none;
	margin: 0;
	padding: 0;
}

.section-nav__list li {
	position: relative;
}

/* 区切り線（PC） */
.section-nav__list li::after {
	content: "|";
	color: #aaa;
	padding: 0 1em;
}

.section-nav__list li:last-child::after {
	content: none;
}

/* リンク */
.section-nav__list li a {
	display: inline-block;
	font-size: clamp(14px, 1.4vw, 15px);
	text-decoration: none;
	color: #333;
	transition: color 0.2s, background-color 0.15s;
	word-break: break-all;
	padding: 0; /* スマホ時は下で付け替え */
}

.section-nav__list li a:hover {
	color: var(--main-color);
}

/* スマホ対応（max-width:768px） */
@media screen and (max-width: 768px) {
	nav.section-nav {
		width: 98%;
		padding: 10px 15px;
	}

	.section-nav__list {
		flex-direction: column;
		align-items: stretch;
	}

	.section-nav__list li {
		width: 100%;
		padding: 0;
		border-bottom: 1px dashed #bbb; /* スマホの区切り線 */
		text-align: center;
	}

	.section-nav__list li:last-child {
		border-bottom: none;
	}

	/* PC用の縦線は無効化 */
	.section-nav__list li::after {
		content: none;
	}

	/* タップしやすくする */
	.section-nav__list li a {
		display: block;
		padding: 12px 0;
	}

	.section-nav__list li a:hover {
		background-color: rgba(0,0,0,0.03);
	}
}



/*======= TOPページ ======*/
/*ご挨拶*/
.greeting {
	padding: clamp(40px, 6vw, 90px) 0;
	background-color: #FFF;

	position: relative; /* sectionの位置を相対的にする*/ 
	z-index: 1; /* 背景画像より上に表示 */ 
}
.greeting-haba{
	margin: 0 auto;
	max-width: 900px;
	padding: 2% 0 0 0;
}


/*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: 568px) {
	.tel_bnr{
		grid-template-columns: repeat(1, 1fr);
		grid-row-gap: 10px;
	}
}

/*各ページ遷移バナー*/
.toplink_sec {
	padding: 50px 0 50px 0;
	position: relative;
	z-index: 1;
	background-color: #f4faff;
	background-size: 6px 6px;
	background-image: repeating-linear-gradient(0deg, #d7e6f5, #d7e6f5 1px, #f4faff 1px, #f4faff);
}

.toplink_sec-cards {
	display: grid;
	gap: 1.5rem;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	padding: 2rem 0;
}

@media only screen and (max-width: 330px) {
	.toplink_sec-cards {
		grid-template-columns: repeat(1, 1fr);
	}
}

.toplink_sec-cards .card {
	position: relative;
	display: block;
	/* border-radius: 1rem; */
	overflow: hidden;
	text-decoration: none;
	color: inherit;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
	transition: transform .3s ease, box-shadow .3s ease;
}

.toplink_sec-cards .card:hover {
	/* transform: translateY(-4px); */
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.toplink_sec-cards .card img {
	width: 100%;
	aspect-ratio: 3/4;
	object-fit: cover;
	vertical-align: middle;
	transition: transform .5s ease;
}
@media only screen and (max-width: 767px) {
	.toplink_sec-cards .card img {
		aspect-ratio: 4/3;
	}
}

.toplink_sec-cards .card:hover img {
	transform: scale(1.05);
}

.toplink_sec-cards-body {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	background: #3F3736e0;
	/* 70%白透過 */
	padding: 1rem;
	backdrop-filter: blur(2px);
	/* 少しぼかして高級感 */
	min-height: 80px;
}

.toplink_sec-cards-body h3 {
	font-size: 1rem;
	margin-bottom: .4rem;
	color: #FFF;
	border-left: 4px solid var(--accent-color2);
	padding-left: .5rem;
}

.toplink_sec-cards-body p {
	font-size: .9rem;
	color: #FFF;
	line-height: 1.5;
}


/*======= 新着情報 ======*/
.blog_sec1 {
	padding: var(--v-space2) 0;
	background-color: #f7e4ed;
	position: relative;
	z-index: 1;
}

/*======= お知らせ ======*/
.top_sec2{
	padding: var(--v-space2) 0;
	background:
		repeating-linear-gradient(
			135deg,
			rgba(255,255,255,0.9) 0,
			rgba(255,255,255,0.9) 12px,
			rgba(255,255,255,0.6) 12px,
			rgba(255,255,255,0.6) 24px
		),
		color-mix(in srgb, var(--accent-color1, #ffda9e) 35%, #fff 65%);

	position: relative; /* sectionの位置を相対的にする*/ 
	z-index: 1; /* 背景画像より上に表示 */ 
}

/*==============================*/
/*   お知らせページ用テーブル   */
/*==============================*/

.tbl-info {
	width: 100%;
	border-collapse: collapse;
	margin: 20px 0;
	font-size: clamp(14px, 1.4vw, 16px);
}

.tbl-info th,
.tbl-info td {
	padding: 10px 12px;
	border: 1px solid #e5e5e5; /* 薄いグレー線 */
}

.tbl-info th {
	width: 50px;
	white-space: nowrap;
	font-weight: 600;
	color: var(--txt-color);
	text-align: left;
	vertical-align: top;
}

.tbl-info td {
	text-align: left; /* 内容は左寄せ */
	line-height: 1.7;
}

/* SPで読みやすく */
/* @media (max-width: 568px) {
	.tbl-info th {
		display: block;
		width: 100%;
		text-align: left;
		margin-top: 12px;
	}
	.tbl-info td {
		display: block;
		width: 100%;
		padding-top: 4px;
	}
	.tbl-info tr {
		border-bottom: 1px solid #e5e5e5;
		padding-bottom: 10px;
	}
} */


/*======= 活動レポート ======*/
.top_sec1{
	padding: var(--v-space2) 0;
	background-color: #FFF;

	position: relative; /* sectionの位置を相対的にする*/ 
	z-index: 1; /* 背景画像より上に表示 */ 
}

/* 写真用コンテナ */
.top_sec1-container {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 10px;
}

@media only screen and (max-width: 767px) {
	.top_sec1-container {
		display: grid;
		grid-template-columns: repeat(1, 1fr);
		gap: 10px;
	}
}


/*======= ディプロマシステム ======*/
.ds_sec1{
	padding: var(--v-space) 0;
	background-color: #fff2f8;
	
	position: relative; /* sectionの位置を相対的にする*/ 
	z-index: 1; /* 背景画像より上に表示 */ 
}

/* コース表（course-table） */
.course-table {
	font-family: "Noto Sans JP", sans-serif;
	font-size: 14px;
}

.course-table table {
	width: 100%;
	border-collapse: collapse;
	background: #fff;
}

.course-table th,
.course-table td {
	border: 1px solid #ccc;
	padding: 0.8em 1em;
	text-align: left;
	vertical-align: top;
	line-height: 1.6;
}

.course-table th {
	background-color: #f7f7f7;
	font-weight: 600;
	white-space: nowrap;
}

.course-table tr:nth-child(even) {
	background-color: #fafafa;
}

.course-table .course-name {
	font-weight: 700;
	font-size: 1rem;
	line-height: 1.4;
}

.course-table .fee {
	margin-top: .4em;
	font-size: .9rem;
	opacity: .9;
}

.course-table .fee span {
	font-variant-numeric: tabular-nums;
}

/* ▼スマホ時はカード型に変化 ▼ */
@media (max-width: 768px) {

	.course-table table {
		background: initial;
	}

	.course-table table,
	.course-table thead,
	.course-table tbody,
	.course-table th,
	.course-table td,
	.course-table tr {
		display: block;
	}

	.course-table thead {
		display: none;
	}

	.course-table tr {
		border: 1px solid #ccc;
		border-radius: 10px;
		margin-bottom: 1.5em;
		background: #fff;
		overflow: hidden;
	}

	.course-table td {
		border: none;
		padding: 0;
	}

	.course-table td::before {
		content: attr(data-label);
		display: block;
		font-weight: 600;
		background-color: #f5f5f5;
		color: #333;
		padding: 0.6em 1em;
		border-bottom: 1px solid #ddd;
	}

	.course-table td {
		padding: 0.8em 0.8em;
	}

	.course-table p {
		padding: 0.6em 0 0 1em;
	}

	.course-table tr:nth-child(even) {
		background: #fff;
	}
}

/* sizeがバラバラな写真を高さだけそろえて中央に表示する */
.ds_photo-container {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 12px;
	padding: 20px;
	box-sizing: border-box;
}

/* 各画像の高さを揃えて、横幅は自動 */
.ds_photo-item {
	flex: 0 0 auto;
	line-height: 0;
}

.ds_photo-item img {
	height: 200px;		/* ← 高さを揃える */
	width: auto;		/* ← 横幅は画像比率に合わせて可変 */
	display: block;
	object-fit: cover;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
	background: #fafafa;
}

/* レスポンシブ：スマホ時は少し小さく */
@media (max-width: 600px) {
	.ds_photo-item img {
		height: 200px;
	}
}


.ds_sec2{
	padding: var(--v-space) 0;
	background-color: #FFF;
	
	position: relative; /* sectionの位置を相対的にする*/ 
	z-index: 1; /* 背景画像より上に表示 */ 
}


.ds_sec3{
	padding: var(--v-space) 0;
	background-color: #f7f7f7;
	
	position: relative; /* sectionの位置を相対的にする*/ 
	z-index: 1; /* 背景画像より上に表示 */ 
}

/* =========================
	ds_sec3_guide - Step Timeline Cards
========================= */
.ds_sec3_guide {
	font-family: "Noto Sans JP", sans-serif;
	color: var(--txt-color);
}

/* アクセシビリティ用隠し見出し */
.ds_sec3_guide .visually-hidden {
	position: absolute;
	width: 1px;
	height: 1px;
	margin: -1px;
	padding: 0;
	overflow: hidden;
	clip: rect(0 0 0 0);
	border: 0;
}

/* グリッド全体 */
.ds_sec3_guide .guide-steps {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(12, 1fr);
	gap: 20px;
}

/* 各ステップカード */
.ds_sec3_guide .step {
	grid-column: span 12;
	background: #FFF;
	border: 1px solid #e6e6e6;
	border-radius: 14px;
	padding: 16px 16px 16px 0;
	display: grid;
	grid-template-columns: 14px 1fr;
	grid-template-areas:
		"rail head"
		"rail desc";
	align-items: start;
	box-shadow: 0 2px 10px rgba(0,0,0,.04);
}

/* 2列→PCでは2列配置 */
@media (min-width: 1170px) {
	.ds_sec3_guide .step { grid-column: span 6; }
}


/* ヘッダ（番号・タイトル群・チップ） */
.ds_sec3_guide .step .head {
	grid-area: head;
	display: grid;
	grid-template-columns: auto 1fr auto;
	grid-template-areas: "num titles chip";
	align-items: center;
	column-gap: 12px;
	row-gap: 6px;
	padding: 2px 2px 0 0px;
}

/* 番号バッジ */
.ds_sec3_guide .step .num {
	grid-area: num;
	display: inline-grid;
	place-items: center;
	width: 34px;
	height: 34px;
	border-radius: 50%;
	background: var(--accent-color2);
	color: #fff;
	font-weight: 700;
	letter-spacing: .02em;
}

/* タイトル（日英） */
.ds_sec3_guide .step .titles { grid-area: titles; }
.ds_sec3_guide .step .titles .jp {
	display: inline-block;
	font-weight: 700;
	font-size: 1rem;
	margin-right: 10px;
}
.ds_sec3_guide .step .titles .en {
	display: inline-block;
	font-size: .9rem;
	color: #6e6e6e;
	background: #f3f5f8;
	padding: 2px 8px;
	border-radius: 999px;
	white-space: nowrap;
}

/* テーマ数チップ */
.ds_sec3_guide .step .chip {
	grid-area: chip;
	justify-self: end;
	font-weight: 700;
	font-size: .86rem;
	background: #ffefcf;
	color: #7a4a00;
	padding: 6px 10px;
	border-radius: 999px;
	white-space: nowrap;
}

/* 説明 */
.ds_sec3_guide .step .desc {
	grid-area: desc;
	margin: 10px 14px 2px 0px;
	color: var(--txt-color);
	line-height: 1.85;
}

/* ホバー効果 */
.ds_sec3_guide .step:hover {
	transform: translateY(-1px);
	box-shadow: 0 8px 20px rgba(0,0,0,.06);
	transition: transform .25s ease, box-shadow .25s ease;
}

/* きゅっと詰めたスマホ調整 */
@media (max-width: 580px) {

	.ds_sec3_guide .step .head {
		grid-template-columns: auto 1fr;
		grid-template-areas:
			"num titles"
			"chip chip";
		padding: 2px 2px 0 5px;
	}
	.ds_sec3_guide .step .chip {
		justify-self: end;
		margin-top: 6px;
	}
	.ds_sec3_guide .step .desc {
		margin: 10px 5px 2px 5px;
	}
}

.ds_sec4{
	padding: var(--v-space) 0;
	background-color: #FFF;
	
	position: relative; /* sectionの位置を相対的にする*/ 
	z-index: 1; /* 背景画像より上に表示 */ 
}

.ds_sec_stepup {
	font-family: "Noto Sans JP", sans-serif;
	color: #333;
}

/* アクセシビリティ用 */
.ds_sec_stepup .visually-hidden {
	position: absolute;
	width: 1px;
	height: 1px;
	margin: -1px;
	padding: 0;
	overflow: hidden;
	clip: rect(0 0 0 0);
	border: 0;
}

/* 全体レイアウト */
.stepup-system {
	display: grid;
	grid-template-columns: 1fr 2fr;
	gap: 20px;
	align-items: start;
}
@media (max-width: 900px) {
	.stepup-system { grid-template-columns: 1fr; }
}

/* 左：ラベル → ボックス＋＋（横並び） */
.side-course {
	display: grid;
	grid-template-rows: auto auto;
	row-gap: 10px;
}
.side-label {
	margin: 0;
	line-height: 1.6;
	font-weight: 700;
}
.side-wrap {
	display: grid;
	grid-template-columns: 1fr auto;
	align-items: center;
	column-gap: 12px;
}
.side-box {
	background: #1a8ed1;
	border: 2px solid #1a8ed1;
	border-radius: 10px;
	padding: 12px 18px;
	color: #fff;
	font-weight: 700;
	box-shadow: 0 2px 4px rgba(0,0,0,0.08);
}
.side-box p { margin: 0; }
.side-box .side-title { margin-bottom: 4px; }
.side-box .side-sub { opacity: .95; }

/* ＋はボックス右中央 */
.plus {
	width: 44px;
	height: 44px;
	display: grid;
	place-items: center;
	background: #fff;
	color: #1a8ed1;
	border: 3px solid #1a8ed1;
	border-radius: 50%;
	font-size: 24px;
	font-weight: 800;
}
@media (max-width: 900px) {
	.side-wrap {
		grid-template-columns: 1fr;
		row-gap: 10px;
	}
	.plus { justify-self: center; }
}

/* メインステップ */
.main-steps { display: flex; flex-direction: column; }
.step {
	display: flex;
	align-items: center;
	gap: 15px;
}
.left-box {
	min-width: 190px;
	padding: 10px 14px;
	border-radius: 6px;
	background: #1a8ed1;
	color: #fff;
	text-align: center;
	font-weight: 700;
	box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}.right-text {
	font-size: 16px;
	line-height: 1.2;
	font-weight: bold;
}
/* 下向き矢印 */
.arrow {
	width: 0;
	height: 0;
	margin: 8px 0 8px 90px;
	border-left: 12px solid transparent;
	border-right: 12px solid transparent;
	border-top: 18px solid #1a8ed1;
}

/* SP：縦積み */
@media (max-width: 600px) {
	.step {
		flex-direction: column;
		align-items: flex-start;
	}

	.arrow {
		margin: 12px auto;
	}

	.left-box {
		width: calc(100% - 0px);
		/* ← 安全マージン */
		box-sizing: border-box;
		margin: 0 auto;
		/* 中央寄せ */
	}

	.right-text,
	.side-label {
		inline-size: fit-content;
		margin-inline: auto;
	}
	.side-title,.side-sub{
		text-align: center;
	}
}


/*======= 認定校紹介 ======*/
.cs_sec1{
	padding: clamp(35px, 2vw, 50px) 0 clamp(15px, 2vw, 20px) 0 ;
	background-image: url(../img/heading-bk01.png);
	background-repeat: no-repeat;
	background-size: 50vh;
	background-position: right;
	position: relative;
	z-index: 1;
}
.cs_sec1_bk01{
	background-color: #dac8e4;
}
.cs_sec1_bk02{
	background-color: #b8c1d4;
}
.cs_sec1_bk03{
	background-color: #b2ccce;
}
.cs_sec1_bk04{
	background-color: #F5F0DF;
}

.cs_sec1-001{
	padding: var(--v-space2) 0;
	background-color: #FFF;
	position: relative;
	z-index: 1;
}


/* スクール情報 TBL */
.scool-info {
	width: 100%;
	border-collapse: collapse;
	margin: 0 auto;
	font-size: 15px;
	line-height: 1.6;
}

.scool-info th,
.scool-info td {
	border: 1px solid #ccc;
	padding: 8px 12px;
	vertical-align: top;
	background-color: #FFF;
}

.scool-info th {
	background-color: #f1f1f1;
	text-align: left;
	width: 30%;
	font-weight: 600;
	white-space: nowrap;
}

.scool-info td a {
	color: #0073aa;
	text-decoration: none;
}

.scool-info td a:hover {
	text-decoration: underline;
}

/* スマホ対応 */
@media screen and (max-width: 600px) {

	.scool-info th,
	.scool-info td {
		display: block;
	}

	.scool-info th {
		background-color: transparent;
		border: none;
		padding-top: 12px;
		font-weight: bold;
	}

	.scool-info td {
		border: none;
		border-bottom: 1px solid #ddd;
		padding-bottom: 12px;
		background-color:transparent;
	}

	.scool-info tr:last-child td {
		border-bottom: none;
	}
}

/* sizeがバラバラな写真を高さだけそろえて中央に表示する */
.cs_photo-container {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 12px;
	padding: 20px;
	box-sizing: border-box;
}

/* 各画像の高さを揃えて、横幅は自動 */
.cs_photo-item {
	flex: 0 0 auto;
	line-height: 0;
}

.cs_photo-item img {
	height: 345px;		/* ← 高さを揃える */
	width: auto;		/* ← 横幅は画像比率に合わせて可変 */
	display: block;
	object-fit: cover;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
	background: #fafafa;
}

/* レスポンシブ：スマホ時は少し小さく */
@media (max-width: 600px) {
	.cs_photo-item img {
		height: 180px;
	}
}


/*======= インストラクター・講師紹介 ======*/

.in_sec1{
	padding:  clamp(35px, 2vw, 50px) 0 clamp(15px, 2vw, 20px) 0 ;
	background-image: url(../img/heading-bk01.png);
	background-color: #FDDE87;
	background-repeat: no-repeat;
	background-size: 60vh;
	background-position: right;
	position: relative;
	z-index: 1;
}

.in_sec1-001{
	padding: clamp(15px, 2vw, 25px) 0 var(--v-space2) 0;
	background-color: #FBF2D9;
	position: relative;
	z-index: 1;
}

.in_sec1-002{
	padding:  clamp(15px, 2vw, 25px) 0 var(--v-space2) 0;
	background-color: #f7f7f7;
	position: relative;
	z-index: 1;
}

.in_sec1-003{
	padding:  clamp(15px, 2vw, 25px) 0 var(--v-space2) 0;
	background-color: #FBF2D9;
	position: relative;
	z-index: 1;
}

.in_sec1-004{
	padding:  clamp(15px, 2vw, 25px) 0 var(--v-space2) 0;
	background-color: #f7f7f7;
	position: relative;
	z-index: 1;
}

/* ========== Instructor List（横並び写真Ver） ========== */
.instructor_list {
	display: grid;
	grid-template-columns: 1fr;
	gap: 28px;
}

/* カード：左テキスト／右ギャラリー */
.instructor_list .instructor-card {
	display: grid;
	grid-template-areas:
		"head  gallery"
		"body  gallery";
	grid-template-columns: 1fr 420px;
	gap: 16px 28px;
	background: #fff;
	border-radius: 12px;
	box-shadow: 0 4px 14px rgba(0,0,0,0.06);
	padding: 20px;
	align-items: start;
}

/* Head */
.instructor_list .card-head { grid-area: head; }
.instructor_list .inst-name {
	margin: 0 0 4px;
	line-height: 1.3;
}
.instructor_list .inst-name .jp {
	display: inline-block;
	font-size: clamp(18px, 2.1vw, 22px);
	font-weight: 700;
	margin-right: 8px;
}
.instructor_list .inst-name .en {
	display: inline-block;
	font-size: clamp(13px, 1.6vw, 14px);
	color: #666;
	letter-spacing: 0.02em;
}
.instructor_list .inst-org {
	margin: 4px 0 0;
	font-weight: 600;
	font-size: clamp(15px,1.6vw,16px);
}

/* Body */
.instructor_list .card-body { grid-area: body; }
.instructor_list .inst-info {
	display: grid;
	grid-template-columns: 120px 1fr;
	row-gap: 8px;
	column-gap: 14px;
	margin: 6px 0 0;
}
.instructor_list .inst-info > div {
	display: contents;
}
.instructor_list .inst-info dt {
	grid-column: 1;
	color: #666;
	font-weight: 600;
}
.instructor_list .inst-info dd {
	grid-column: 2;
	margin: 0;
}
.instructor_list a { text-decoration: underline; }

/* Gallery（横並びver） */
.instructor_list .card-gallery {
	grid-area: gallery;
	display: flex;
	gap: 10px;
	justify-content: flex-start;
	flex-wrap: wrap;
}
.instructor_list .card-gallery figure {
	flex: 1 1 calc(50% - 10px);
	margin: 0;
	overflow: hidden;
}
.instructor_list .card-gallery img {
	width: 200px;
	height: 200px;
	display: block;
}

/* 画像が1枚のときは中央寄せ */
.instructor_list .card-gallery:has(> figure:nth-child(1)):not(:has(> figure:nth-child(2))) {
	justify-content: center;
}

/* メール・URLの折り返し対策 */
.instructor_list a {
	word-break: break-all;     /* 英単語やURLの途中でも改行可 */
	overflow-wrap: anywhere;   /* 長い文字列を強制的に折り返し */
	word-wrap: break-word;     /* 古いブラウザ互換 */
}

/* スマホ時：縦積み＋写真は横2枚固定 */
@media only screen and (max-width: 900px) {
	.instructor_list .instructor-card {
		grid-template-areas:
			"head"
			"gallery"
			"body";
		grid-template-columns: 1fr;
	}

	/* 横スクロールをやめて2列グリッドに */
	.instructor_list .card-gallery {
		display: grid;
		grid-template-columns: repeat(2, 1fr);
		grid-auto-rows: 1fr;
		gap: 12px;
		overflow: visible; /* スクロール無効 */
	}

	/* ★PC時の min/max-width を無効化して可変に */
	.instructor_list .card-gallery figure {
		margin: 0;
		min-width: 0;     /* ← これで縮められる */
		max-width: none;  /* ← 200px制限を解除 */
		max-height: none;
		width: 100%;
		overflow: hidden;
	}
	.instructor_list .card-gallery img {
		width: 100%;
		height: 100%;
		max-width: 180px;
		max-height: 180px;
		margin: 0 auto;
		/* object-fit: cover; */
		display: block;
	}

	/* 画像が1枚しかないケースは1列にして中央寄せ */
	.instructor_list .card-gallery:has(> figure:nth-child(1)):not(:has(> figure:nth-child(2))) {
		grid-template-columns: 1fr;
		justify-items: center;
	}

	.instructor_list .inst-info {
		grid-template-columns: 100px 1fr;
	}

	/*文字サイズ*/
	.instructor_list .inst-info dt {
		font-size: 14px;
	}
	.instructor_list .inst-info dd {
		font-size: 14px;
	}
}

/* ========== Instructor Profile（プロフィール部分） ========== */
.instructor_list .inst-profile {
	margin-top: 20px;
	padding-top: 15px;
	border-top: 1px dashed #ccc;
	font-size: 15px;
	line-height: 1.7;
	color: #333;
}

.instructor_list .inst-profile p {
	margin: 0 0 10px;
}

.instructor_list .inst-profile strong {
	display: inline-block;
	font-size: 16px;
	font-weight: 700;
	color: var(--main-color, #F49C14); /* 共通カラー対応 */
	margin-bottom: 8px;
}

/* 箇条書きリスト */
.instructor_list .inst-profile ul {
	margin: 0 0 10px 1.5em;
	padding: 0;
	list-style: disc;
}

.instructor_list .inst-profile li {
	margin-bottom: 4px;
}

/* スマホ調整 */
@media only screen and (max-width: 700px) {
	.instructor_list .inst-profile {
		font-size: 14px;
		line-height: 1.8;
		padding-top: 12px;
	}
}


/* 講師紹介 */
.in_sec2{
	padding:  clamp(35px, 2vw, 50px) 0 clamp(15px, 2vw, 20px) 0 ;
	background-image: url(../img/heading-bk01.png);
	background-color: #69BD83;
	background-repeat: no-repeat;
	background-size: 50vh;
	background-position: right;
	position: relative;
	z-index: 1;
}
@media only screen and (max-width: 767px) {
	.in_sec2{
		background-size: 30vh;
	}
}

.in_sec2-001{
	padding: clamp(15px, 2vw, 25px) 0 var(--v-space2) 0;
	background-color: #FBF2D9;
	position: relative;
	z-index: 1;
}

/* ========== AFCA講師セクション ========== */
.lecturers {
	display: block;
	margin-top: 40px;
}

.lecturers__title {
	font-size: clamp(20px, 2.5vw, 24px);
	font-weight: 700;
	margin-bottom: 20px;
	border-left: 6px solid var(--main-color, #F49C14);
	padding-left: 10px;
}

.lecturers__card {
	background: #fff;
	border-radius: 12px;
	box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
	padding: 20px;
	margin-bottom: 30px;
}

.lecturers__head {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 10px;
}

.lecturers__h3 {
	font-size: 18px;
	font-weight: 700;
	display: flex;
	align-items: baseline;
	gap: 8px;
}
.lecturers__h3 .en {
	color: #666;
	font-size: 0.9em;
}

.lecturers__count {
	background: var(--accent-color1, #ffda9e);
	color: #333;
	font-weight: 700;
	padding: 3px 10px;
	border-radius: 5px;
}

.lecturers__body {
	font-size: 15px;
	line-height: 1.7;
	color: #333;
}

/* 日本 都道府県内訳 */
.prefstats {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
	gap: 8px 20px;
	margin: 0;
	padding: 0;
}
.prefstats > div {
	display: flex;
	justify-content: space-between;
	border-bottom: 1px dotted var(--accent-color1);
	padding: 3px 0;
}
.prefstats dt {
	color: #555;
}
.prefstats dd {
	margin: 0;
	font-weight: 600;
}

/* 名前リスト */
.names {
	list-style: disc;
	padding-left: 1.2em;
	margin: 0;
}
.names li {
	margin: 2px 0;
	break-inside: avoid;
}
.names--cols {
	column-count: 2;
	column-gap: 30px;
}

/* レスポンシブ対応 */
@media only screen and (max-width: 768px) {
	.names--cols {
		column-count: 1;
	}
}



/*======= 当協会について ======*/
/* 当協会のご案内 */
.ab_sec1{
	padding: var(--v-space2) 0;
	background-color: #ffffee;
	position: relative;
	z-index: 1;
}
@media print, screen and (min-width: 768px) {
	.ab_sec1 {
		background-image: url(../img/heading-bk02.jpg);
		background-repeat: no-repeat;
		background-position: center;
		background-size: cover;
	}
}
@media only screen and (max-width: 767px) {
	.ab_sec1 {
		background-image: url(../img/heading-bk02_sp.jpg);
		background-repeat: no-repeat;
		background-position: center;
		background-size: cover;
	}
}
.ab_sec1-001{
	padding: var(--v-space2) 0;
	background-color: #FFF;
	position: relative;
	z-index: 1;
}

/* 会員資格 */
.ab_sec2{
	padding: var(--v-space2) 0;
	background-color: #ffffee;
	position: relative;
	z-index: 1;
}
@media print, screen and (min-width: 768px) {
	.ab_sec2 {
		background-image: url(../img/heading-bk03.jpg);
		background-repeat: no-repeat;
		background-position: center;
		background-size: cover;
	}
}
@media only screen and (max-width: 767px) {
	.ab_sec2 {
		background-image: url(../img/heading-bk03_sp.jpg);
		background-repeat: no-repeat;
		background-position: center;
		background-size: cover;
	}
}
.ab_sec2-001{
	padding: var(--v-space2) 0;
	background-color: #FFF;
	position: relative;
	z-index: 1;
}

/* 会員資格tbl */
.qualification-table {
	font-family: "Noto Sans JP", sans-serif;
	margin: 2em 0;
	font-size:14px;
}

.qualification-table table {
	width: 100%;
	border-collapse: collapse;
	background: #fff;
}

.qualification-table th,
.qualification-table td {
	border: 1px solid #ccc;
	padding: 0.8em 1em;
	text-align: left;
	vertical-align: top;
	line-height: 1.6;
}

.qualification-table th {
	background-color: #f7f7f7;
	font-weight: 600;
	white-space: nowrap;
}

.qualification-table tr:nth-child(even) {
	background-color: #fafafa;
}

/* ▼スマホ時はカード型に変化 ▼ */
@media (max-width: 768px) {

	.qualification-table table,
	.qualification-table thead,
	.qualification-table tbody,
	.qualification-table th,
	.qualification-table td,
	.qualification-table tr {
		display: block;
	}

	.qualification-table thead {
		display: none;
	}

	.qualification-table tr {
		border: 1px solid #ccc;
		border-radius: 10px;
		margin-bottom: 1.5em;
		background: #fff;
		overflow: hidden;
	}

	.qualification-table td {
		border: none;
		padding: 0;
	}

	.qualification-table td::before {
		content: attr(data-label);
		display: block;
		font-weight: 600;
		background-color: #f5f5f5;
		/* ← スマホ時の見出し背景色 */
		color: #333;
		padding: 0.6em 1em;
		border-bottom: 1px solid #ddd;
	}

	.qualification-table td {
		padding: 0.8em 0.8em;
	}
	.qualification-table p{
		padding: 0.6em 0em 0 1em;
	}

	.qualification-table tr:nth-child(even) {
		background: #fff;
	}
}

/* sizeがバラバラな写真を高さだけそろえて中央に表示する */
.ab_photo-container {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 12px;
	padding: 20px;
	box-sizing: border-box;
}

/* 各画像の高さを揃えて、横幅は自動 */
.ab_photo-item {
	flex: 0 0 auto;
	line-height: 0;
}

.ab_photo-item img {
	height: 200px;		/* ← 高さを揃える */
	width: auto;		/* ← 横幅は画像比率に合わせて可変 */
	display: block;
	object-fit: cover;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
	background: #fafafa;
}

/* レスポンシブ：スマホ時は少し小さく */
@media (max-width: 600px) {
	.ab_photo-item img {
		height: 150px;
	}
}


/* 役員一覧 */
.ab_sec3{
	padding: var(--v-space2) 0;
	background-color: #ffffee;
	position: relative;
	z-index: 1;
}
@media print, screen and (min-width: 768px) {
	.ab_sec3 {
		background-image: url(../img/heading-bk04.jpg);
		background-repeat: no-repeat;
		background-position: center;
		background-size: cover;
	}
}
@media only screen and (max-width: 767px) {
	.ab_sec3 {
		background-image: url(../img/heading-bk04_sp.jpg);
		background-repeat: no-repeat;
		background-position: center;
		background-size: cover;
	}
}
.ab_sec3-001{
	padding: var(--v-space2) 0;
	background-color: #FFF;
	position: relative;
	z-index: 1;
}

/* ===== 役員一覧セクション ===== */
/* ===============================
   役員一覧セクション（ab_sec3-container）
================================= */

.ab_sec3-list {
	max-width: 900px;
	margin: 0 auto;
	font-family: "Noto Sans JP", sans-serif;
	color: #333;
	line-height: 1.7;
}

/* 各役職ブロック */
.ab_sec3-block {
	margin-bottom: 2em;
}

.ab_sec3-block h3 {
	font-size: 1.2rem;
	background-color: #fafafa;
	padding: 0.5em 1em;
	border-left: 4px solid #777;
	margin-bottom: 1em;
	font-weight: 600;
}

/* リストの基本設定 */
.ab_sec3-block ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.ab_sec3-block li {
	display: flex;
	align-items: center;
	padding: 0.4em 0.6em;
	border-bottom: 1px solid #e5e5e5;
}

.ab_sec3-block li:last-child {
	border-bottom: none;
}

/* 左：役職 / 右：名前（半分位置から左揃え） */
.ab_sec3-block .position {
	width: 20%;
	font-weight: 600;
	color: #222;
	background-color: #a1e1ed5b;
	padding: 5px 7px;
}

.ab_sec3-block .name {
	flex: 1;
	text-align: left;
	padding-left: 1em;
	font-weight: 500;
	color: #222;
	margin-left: 10px;
}

/* 顧問ブロック（役職なしで中央寄せ） */
.ab_sec3-block:last-of-type .name {
	display: block;
	padding-left: 0;
}

/* ===============================
   レスポンシブ対応
================================= */

@media screen and (max-width: 600px) {
	.ab_sec3-block li {
		flex-direction: column;
		align-items: flex-start;
		padding: 0.6em 0;
	}

	.ab_sec3-block .position {
		width: 94%; /* ← 横幅いっぱいに */
		background-color: #a1e1ed5b; /* 背景色を維持 */
		padding: 6px 10px;
		margin-bottom: 0.3em;
	}

	.ab_sec3-block .name {
		padding-left: 0;
	}
}


.access_sec1{
	padding: var(--v-space) 0;
	background-color: #f5f5f5;

	position: relative; /* sectionの位置を相対的にする*/ 
	z-index: 1; /* 背景画像より上に表示 */ 
}
/* アクセス部分のテーブル */
.access1 {
	font-weight: bold;
	border-bottom: 1px dashed #999;
	padding: 5px;
	width: 5.25em;
}
.access2 {
	border-bottom: 1px dashed #999;
	padding: 5px;
	width: 400px;
}
@media screen and (max-width: 568px) {
	.access1 {
		display: block;
		padding: 8px 2px 2px 2px;
		width: 100%;
		border-bottom: 1px solid rgba(255,255,255,0);
	}
	.access2 {
		display: block;
		padding: 2px;
		width: 99%;
	}
}
