/****************************************/
/********** ArtLab-Tokyo [CSS] **********/
/****************************************/

/****************************** Global Navigation  ******************************/

/* ベース */
.site-header {
	position: fixed;
	z-index: 10;
	top: 0;
	left: 0;
	width: 100%;
	background-color: #FFEBD4;
	box-shadow: 0 0.125rem 0.625rem rgba(0, 0, 0, 0.2);
	padding: 10px 0;  /* 上下のパディングを追加 */
}

@media (min-width: 48em) {
	.site-header {
		position: relative;
		padding: 0;  /* PC版ではパディングをリセット */
	}
}
/* ヘッダーコンテナ */
.site-header__container {
	padding: 0;
	position: relative;
	display: flex;
	justify-content: center;  /* ロゴを中央に */
	align-items: center;
}

@media (min-width: 48em) {
	.site-header__container {
		padding: 0 15px;
		display: block;  /* PC版は通常表示 */
	}
}


/* 上部リンク列 */
.site-header__link-row {
	background-color: var(--color-secondary);
}

.site-header__link-row ul {
	margin-top: 8px;
	font-size: 0;
}

.site-header__link-row li {
	display: inline-block;
	line-height: 1.8;
}

.site-header__link-row li a {
	padding-left: 1.5em;
	font-size: 0.875rem;
	color: #FF5463;
	transition: none;
}

.site-header__link-row li a:hover {
	color: #874C93;
}

/* ロゴ */
.site-header__logo {
	flex: none;
	color: var(--color-text);
	/* スマホ版：position指定なし（Flexboxに従う） */
	z-index: 1;
}

@media (min-width: 48em) {
	.site-header__logo {
		position: absolute;
		top: -80px;
		left: 0;
	}
}

.site-header__logo img {
	height: 70px;
	padding-left: 0;  /* 中央揃え時はパディング不要 */
}

@media (min-width: 48em) {
	.site-header__logo img {
		height: 80px;
		padding-left: 0;
	}
}

.site-header__logo span {
	display: block;
	padding-left: 0;  /* スマホ版でもパディング削除 */
	font-size: 1.25rem;
}

@media (min-width: 48em) {
	.site-header__logo span {
		padding-left: 0;
		font-size: 1.75rem;
	}
}

/* ===== スマホ版レイアウト調整 ===== */
@media (max-width: 767px) {
	.site-header__menu-row {
		position: relative;
		height: 50px;  /* ヘッダーの高さ */
	}
	
	.site-header__container {
		display: flex;
		justify-content: center;
		align-items: center;
		height: 100%;
	}
	

}

/* メニュー行 */
/* =========================================
   スマホ・共通設定（ここを追加）
   ========================================= */
.site-header__input-area {
  display: flex;
  flex-direction: column; /* スマホは縦並びにする */
  gap: 10px;              /* ボタン同士の間隔 */
  margin-top: 10px;       /* 必要に応じて余白調整 */
}

/* スマホでは検索ボックスやボタンを横幅いっぱいに広げる */
.site-header__input-area .btn,
.site-header__input-area form {
  width: 100%;
}

/* 検索バーの中のボタン（虫眼鏡）だけは、幅100%にせず横並びを維持する */
.site-header__input-area .input-group .btn {
  width: auto; /* 幅を自動に戻す */
}

/* 検索バー自体は横並びレイアウトを保つ */
.site-header__input-area .input-group {
  display: flex;
  flex-wrap: nowrap; /* 折り返し禁止（念のため） */
  width: 100%;
}

/* =========================================
   PC用設定（既存のコードを少し調整）
   ========================================= */
@media (min-width: 48em) {
  .site-header__menu-row {
    height: 180px;

	 
  }

  .site-header__menu-row > .site-header__container {
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
  }

  .site-header__input-area {
    /* スマホ用の縦並び設定を、PCでは横並びに上書きする */
    flex-direction: row; 
    align-items: center; /* 上下の中心を揃える */
    
    position: absolute;
    gap: 20px;
    top: -60px;
    right: 0;
    margin-top: 0; /* スマホ用の余白をリセット */
  }

  /* PCでは幅指定（100%から固定幅に戻す） */
  .site-header__input-area .form-control {
    width: 250px;
    border-color: #FFB800;
  }
  
  /* PCではボタン幅をなりゆき（自動）に戻す */
  .site-header__input-area .btn,
  .site-header__input-area form {
    width: auto;
  }
}

/*===== StellarNav.js(desktop) =====*/
/* - StellarNavの高さは[.stellarnav ul li a]の[padding(X)][line-height]の合計値にて設定 - */

/* - メニュー(1階層目)のスタイル - */
.stellarnav.desktop > ul {
	position: relative;
	z-index: 1000;
	display: flex;
	align-items: center;
	justify-content: center;
}

.stellarnav.desktop > ul > li {
	flex: 1;
	max-width: 200px;
	padding: 10px 0;
}

.stellarnav.desktop > ul > li > a {
	padding: 2px 0 !important;
	transition: background 0.5s ease-out;
	color: var(--color-text);
	border-left: 1px solid #FFB800;
	
	font-size: 0.9rem;
	font-weight: 600;
	letter-spacing: 0.1em;
}

.stellarnav.desktop > ul > li:last-of-type > a {
	border-right: 1px solid #FFB800;
}

@media (any-hover: hover) {
	.stellarnav.desktop > ul > li > a:hover {
		color: #874C93;
	}
}

.stellarnav.desktop > ul > li > a > img {
	display: block;
	height: 50px;
	margin: auto;
}

/* - メニュー(2階層目以降)のスタイル - */
.stellarnav.desktop > ul > li > ul {
	position: absolute;
	top: 96px;
	left: calc(50% + 2px);
	transform: translateX(-50%);
	border-radius: 20px;
	background-color: #eeeeee;
}

.stellarnav.desktop > ul > li > ul > li > a {
	padding: 15px 20px !important;
	color: var(--color-text);
	font-size: 0.875rem;
	font-weight: normal;
}

@media (any-hover: hover) {
	.stellarnav.desktop > ul > li > ul > li > a:hover {
		color: #874C93;
	}
}

/*===== StellarNav.js(mobile ~768px) =====*/

/* - メニュー(1階層目)のスタイル - */
.stellarnav.mobile > ul {
	background-color: #FFF4DC;
	
}

.stellarnav.mobile > ul > li > a:not(.dd-toggle) {
	padding: 15px;
	transition-property: none;
	color: var(--color-text);
	border-bottom: none;
	font-size: 1rem;
	font-weight: normal;
	line-height: 20px;
}

.stellarnav.mobile > ul > li > a > img {
	height: 40px;
	padding-right: 1em;
}

/* - メニュー(2階層目)のスタイル - */
.stellarnav.mobile > ul > li > ul {
	background-color: rgb(0, 0, 0, 0.25);
}

.stellarnav.mobile > ul > li > ul > li > a:not(.dd-toggle) {
	padding-left: 70px;
	color: #ffffff;
	font-size: 0.9375rem;
}

.stellarnav.mobile .site-header__input-area {
	display: flex;
	flex-direction: column;
	padding: 0 10px;
}

.stellarnav.mobile .site-header__input-area .form-control {
	width: 90%;
	/* margin: 2rem auto; */
	border-color: #cccccc;
}


.stellarnav.mobile .site-header__input-area a {
	margin: auto;
	border-radius: 20px;
	color: var(--color-text);
}


.stellarnav.mobile .site-header__input-area a.site-header__entry-btn {
		background-color: var(--color-primary)!important;
}
.stellarnav.mobile .site-header__input-area a.site-header__myschool-btn {
	background-color: var(--color-secondary) !important;
}


/* - MENUトグルボタンのスタイル - */
.stellarnav.mobile a.menu-toggle {
	color: #FFF;
	font-size: 11px;
	line-height: 1.2;
	font-weight: normal;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	width: 60px;
	height: 60px;
	background-color: #FFB800;
	border-radius: 50%;
	padding: 8px;
	/* 右端固定 */
	position: absolute;
	right: 10px;
	top: 50%;
	transform: translateY(-50%);
	z-index: 2;  /* ロゴより前面 */
	box-shadow: 0 2px 8px rgba(255, 184, 0, 0.3);
	transition: all 0.3s ease;
}
.stellarnav.mobile a.menu-toggle:hover {
	background-color: #dca60e;
}
.stellarnav.mobile a.menu-toggle span.bars {
	margin-bottom: 3px;
}

.stellarnav.mobile a.menu-toggle span.bars span {
	width: 24px;
	height: 3px;
	background-color: #FFF;
}

/* - StellarNav.js position:'left'or'right'時のボタンエリアスタイル - */
.stellarnav.mobile.right {
	text-align: right;
}

.stellarnav.mobile.right > ul {
	top: 70px !important;
}

.stellarnav.mobile.right.active > ul {
	-webkit-animation: fadeInRight 0.3s;
	animation: fadeInRight 0.3s;
}

/* - CLOSEボタン非表示 - */
.stellarnav.mobile a.close-menu {
	display: none !important;
}

/* - ドロップダウンボタンのスタイル - */
.stellarnav.mobile li a.dd-toggle {
	width: 50px;
	height: 70px;
}

.stellarnav.mobile li a.dd-toggle .icon-plus::before,
.stellarnav.mobile li a.dd-toggle .icon-plus::after {
	top: 50%;
	border-bottom: 2px solid #ffffff;
}

/*===== StellarNav.js(カスタムボタン等) =====*/

/* - SNSリンクのスタイル - */
.stellarnav .nav-sns-link {
	display: flex;
	justify-content: center;
	margin-top: 2rem;
	margin-bottom: 2rem;
}

.stellarnav .nav-sns-link a {
	padding: 0 0.5em;
	color: #aaaaaa;
	font-size: 2rem;
}

@media (any-hover: hover) {
	.stellarnav .nav-sns-link a.fb-link:hover {
		color: #1877f2;
	}

	.stellarnav .nav-sns-link a.tw-link:hover {
		color: #1da1f2;
	}

	.stellarnav .nav-sns-link a.ig-link:hover {
		color: #cf2e92;
	}
}

/* - iOS Safari[position:fixed;] バグフィックス - */
@media (max-width : 768px) {
	.stellarnav {
		overflow: visible;
	}
}

/****************************** Global Navigation End ******************************/


/****************************** Heading ******************************/

/* - 見出しのスタイル - */
.subtitle {
	margin-bottom: 1.75rem;
	text-align: center;
}

@media (min-width: 48em) {
	.subtitle {
		margin-bottom: 3rem;
	}
}

.subtitle h2 {
	margin-bottom: 0.75rem;
	font-size: 1.85rem;
	letter-spacing: 0.1em;
}

.subtitle p {
	margin-top: 0.5rem;
	margin-bottom: 0;
	letter-spacing: 0.05em;
	font-size: 1rem;
	
}

/* - アンダーラインのスタイル - */
.underline {
	width: 100px;
	height: 1px;
	margin: auto;
	border-radius: 1.5px;
	background-color: var(--color-primary);
}

/****************************** Heading End ******************************/


/****************************** Background ******************************/

.bg-base {
	position: relative;
	display: flex;
	overflow: hidden;
	align-items: center;
}

@media (min-width: 48em) {
	.bg-base {
		height: 13vh;/* - PC時の背景の高さ - */
	}
}

.bg-inner {
	z-index: 1;
}

.bg-inner .page-banner-title {
	margin: 0;
	padding-left: 1em;
	color: var(--color-text);
	font-size: 1.25rem;
	letter-spacing: 0.1em;
}

/****************************** Background End ******************************/


/****************************** Utility ******************************/

/* - 蛍光ペン - */
.highlighter.blue {
	background: linear-gradient(transparent 70%, #aaffff 70%);
	font-weight: bold;
}

.highlighter.yellow {
	background: linear-gradient(transparent 70%, #ffffaa 70%);
	font-weight: bold;
}

.highlighter.orange {
	background: linear-gradient(transparent 70%, #ffddaa 70%);
	font-weight: bold;
}

.highlighter.pink {
	background: linear-gradient(transparent 70%, #ffdddd 70%);
	font-weight: bold;
}

.highlighter.green {
	background: linear-gradient(transparent 70%, #ddffdd 70%);
	font-weight: bold;
}

.highlighter.purple {
	background: linear-gradient(transparent 70%, #ffddff 70%);
	font-weight: bold;
}


/* ボタンデザイン */
a.btn_04 {
	display: block;
	text-align: center;
	vertical-align: middle;
	text-decoration: none;
	width: 150px;
	margin: auto;
	margin-top: 1rem;
	padding: 0.5rem 0.5rem;
	font-weight: bold;
	border: 1px solid var(--color-accent-orange);
	background: #fff;
	color: var(--color-accent-orange);
	border-radius: 100vh;
	transition: 0.5s;
	font-size: 0.7rem;
	float: left;
}

a.btn_04:hover {
	color: #fff;
	background: var(--color-accent-orange);
}



/****************************** Footer ******************************/
.site-footer__button-area {
	background-color: var(--color-primary);
}

.site-footer__button-area p {
	margin-bottom: 0.5rem;
	letter-spacing: 0.125em;
	font-size: 1.4rem;
}

.site-footer__button-area .btn-transparent {
	width: 220px;
	color: #333;
	border-color: #aaa;
	background-color: transparent;
	font-size: 1.15rem;
}

.site-footer__button-area .btn-transparent:hover {
	color: #fff;
	border-color: #000;
	background-color: #000;
}

.site-footer__slide {
	padding: 20px 0;
	background-color: #b4f0dc;
}

.site-footer__slide .swiper-container {
	height: 150px;
}

.site-footer__link {
	background-color: var(--color-primary);
}

.site-footer__link ul {
	text-align: center;
	font-size: 0;
	padding: 1rem 0;
}

.site-footer__link ul li {
	display: inline-block;
	line-height: 2;
}

.site-footer__link ul li a {
	padding: 0 1em;
	color: #fff;
	font-size: 0.875rem;
	border-right: 1px solid #fff;
}

.site-footer__link ul li a:hover {
	text-decoration: underline;
}

.site-footer__link ul li:last-child a {
	border-right: none;
}

.site-footer__underline {
	width: 90%;
	height: 1px;
	margin: auto;
	border-radius: 2px;
	background-color: #fff;
}

.site-footer__copyright {
	padding: 0 1rem;
	letter-spacing: 0.1em;
	color: #fff;
	font-size: 0.75rem;
}

@media (min-width: 48em) {
	.site-footer__copyright {
		font-size: 0.875rem;
	}
}

/*- ページトップボタン -*/
#pagetop {
	position: fixed;
	z-index: 1000;
	right: 5%;
	bottom: 5%;
}

#pagetop a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 35px;
	height: 35px;
	color: #ffffff;
	border: 1px solid #ffffff;
	border-radius: 50%;
	background-color: #000000;
	font-size: 1.3rem;
}

@media (any-hover: hover) {
	#pagetop a:hover {
		background-color: #333333;
	}
}

/****************************** Footer End ******************************/


/****************************** Print ******************************/

@media print {
	.site-header {
		position: relative !important;
	}
}

/****************************** Print End ******************************/




/****************************** card ******************************/

/* グリッド内のカード共通 */
.card-grid .card {
	border: var(--color-accent-coral) solid 1px;
  border-radius: 1rem;            /* 角丸（rounded-3 相当） */
  background-color: var(--color-bg-card);	/* ==============カード背景============== */
  box-shadow: 0 2px 8px rgba(0,0,0,.06); /* ポップ寄りの軽い影 */
  transition: transform .15s ease, box-shadow .15s ease;
  height: 100%;
}


/* 画像サムネイル */
.card-grid .card-thumb {
  display: block;
  width: 100%;
  aspect-ratio: 16/9;             /* サムネイル比率を統一（対応外ブラウザは高さ自動） */
  object-fit: cover;
  border-top-left-radius: inherit;
  border-top-right-radius: inherit;
	padding: 2px 10px;
	border-radius: 20px;
}

/* 本文余白 */
.card-grid .card-body {
  padding: 0.9rem 1rem;
}

/* 日付（上にうっすら） */
.card-grid .card-meta {
  display: block;
  font-size: .85rem;
  color: #6c757d;                 /* .text-muted 相当 */
  margin-bottom: .25rem;
}

/* タイトル（2行で省略） */
.card-grid .card-title {
  font-size: 0.8rem;
	font-weight: bold;
  margin: 0 0 .7rem;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;          /* 2行で省略 */
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media (min-width: 768px) {
	.card-grid .card-title {
		font-size: 0.9rem;
	}
}


/* 投稿者名（目立たせるデザイン） */
.card-grid .card-author,header .card-author {
  display: inline-block;
  font-size: .7rem;
  font-weight: bold;
  background: #ffcc00;   /* ポップな黄色 */
  color: #000;
  padding: .25rem .6rem;
  border-radius: 1rem;   /* バッジ風 */
  margin-bottom: .5rem;
}

/* メタ情報（日付＋投稿者）の行 */
.row.card-grid .card-meta-row {
  display: flex;
  flex-direction: column;       /* デフォルトは縦並び（スマホ用） */
  gap: .25rem;
	padding: 0.9rem 1rem 0 1rem;
}

/* md以上（PCサイズ）では横並びで両端 */
@media (min-width: 768px) {
  .row.card-grid .card-meta-row {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
		padding: 0.9rem 1rem 0 1rem;
		margin-bottom: 0;
  }
}

/* 本文（2行で省略） */
.card-grid .card-text {
  font-size: .8rem;
  color: #333;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;          /* 2行で省略 */
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media (min-width: 768px) {
	.card-grid .card-text {
		font-size: .9rem;
	}
}



/* ホバーで少し浮かせる */
.card-grid .card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0,0,0,.10);
}

/* キーボードフォーカス時の可視化（stretched-link用） */
.card-grid .stretched-link:focus-visible {
  outline: 0;
  box-shadow: 0 0 0 .2rem rgba(13,110,253,.25); /* .focus-ring の代替 */
  border-radius: inherit;
}


/* ===== リスト版（縦並び） ===== */
.row.card-list .card {
	border: 0;
	border-radius: 1rem;
	background-color: var(--color-secondary);
	box-shadow: 0 2px 8px rgba(0, 0, 0, .06);
	transition: transform .15s ease, box-shadow .15s ease;
	overflow: hidden;
	/* 角丸にサムネを沿わせる */
}

/* カード内レイアウト：SPは縦積み、md以上で横並び */
.row.card-list .card-inner {
	display: flex;
	flex-direction: column;
}

@media (min-width: 768px) {
	.row.card-list .card-inner {
		flex-direction: row;
	}
}

/* サムネイル */
.row.card-list .thumb {
	flex: 0 0 auto;
	width: 100%;
}

@media (min-width: 768px) {
	.row.card-list .thumb {
		width: 40%;
		/* 1:2 くらいの比率に */
		max-width: 360px;
		/* 大きくなりすぎ防止 */
	}
}

/* 比率キープ（SP: 16:9 / PC: 3:2） */
.row.card-list .thumb .thumb-box {
	position: relative;
	width: 100%;
	aspect-ratio: 16 / 9;
}

@media (min-width: 768px) {
	.row.card-list .thumb .thumb-box {
		aspect-ratio: 3 / 2;
	}
}

.row.card-list .thumb img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* 本文側 */
.row.card-list .body {
	flex: 1 1 auto;
	padding: 0.9rem 1rem;
	display: flex;
	flex-direction: column;
	gap: .4rem;
}

@media (min-width: 768px) {
	.row.card-list .body {
		padding: 1rem 1.1rem;
	}
}

/* メタ（日時・著者） */
.row.card-list .card-meta {
	display: block;
	font-size: .85rem;
	color: #6c757d;
}

.row.card-list .card-author {
	display: inline-block;
	font-size: .85rem;
	font-weight: 700;
	background: #ffcc00;
	color: #000;
	padding: .25rem .6rem;
	border-radius: 1rem;
}

/* 日付と著者をSPは縦/PCは両端に */
.row.card-list .card-meta-row {
	display: flex;
	flex-direction: column;
	gap: .25rem;
}

@media (min-width: 768px) {
	.row.card-list .card-meta-row {
		flex-direction: row;
		justify-content: space-between;
		align-items: center;
	}
}

/* タイトル・本文（2行省略） */
.row.card-list .card-title {
	font-size: 1.05rem;
	margin: 0;
	line-height: 1.35;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.row.card-list .card-text {
	font-size: .95rem;
	color: #333;
	margin: 0;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

/* hover（stretched-link があるカードのみ適用） */
.row.card-list .card:has(.stretched-link):hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 18px rgba(0, 0, 0, .10);
}

/* フォーカス可視化（stretched-link用） */
.row.card-list .stretched-link:focus-visible {
	outline: 0;
	box-shadow: 0 0 0 .2rem rgba(13, 110, 253, .25);
	border-radius: inherit;
}








.article-narrow {
	max-width: 860px;
}




.heading__has-icon {
	font-size: 1.75rem;
  display: flex;
  align-items: center;   /* アイコンとテキストを縦方向中央揃え */
  gap: .5rem;            /* アイコンと文字の間隔 */
	margin-bottom: 3rem;   /* ← タイトルの下に余白を追加 */
}

.heading__has-icon .icon img {
  height: 2rem;           /* テキストの高さ */
  width: auto;
  vertical-align: middle;
}



/****************************** box ******************************/

.area-search-box {
  background-color: var(--color-bg-card);
  border-radius: 1rem;      /* 角丸 */
  box-shadow: 0 4px 12px rgba(0,0,0,0.08); /* ポップな軽い影 */
  padding: 2rem 1.5rem;
}

.filter-local-box {
	background-color: var(--color-bg-card);
	border-radius: 1rem;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
	padding: 1.5rem;
}

.result-summary-row {
}


/****************************** result-card ******************************/
.result-card, .school-card {
	display: block;
	border-radius: 1rem;
	box-shadow: 0 4px 12px rgba(0, 0, 0, .06);
	overflow: hidden;
	transition: transform .2s ease, box-shadow .2s ease;
	color: inherit;
	text-decoration: none;
	background: #fff;
	margin-bottom: 1.5rem;
}
.school-card .result-card {
  box-shadow: none !important;
  border: none; /* 必要なら境界線も消す */
}

.result-card:has(.stretched-link):hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 24px rgba(0, 0, 0, .12);
	text-decoration: none;
}

.result-card .card-body {
	display: flex;
	flex-direction: column;
}

@media (min-width: 768px) {
	.result-card .card-body {
		flex-direction: row;
		gap: 1.5rem;
	}
}

/* 画像部分（左） */
.result-card .thumb-wrapper {
	flex: 1;
	aspect-ratio: 3 / 2;
	background: #f8f9fa;
	position: relative;
}

.result-card .thumb-wrapper img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: .5rem;
}

/* 本文部分（右） */
.result-card .content {
	flex: 2;
	display: flex;
	flex-direction: column;
}

/* PRバッジ */
.result-card .pr-list {
	display: flex;
	flex-wrap: wrap;
	gap: .35rem;
	list-style: none;
	margin: .25rem 0 .75rem;
	padding: 0;
}

.result-card .pr-list li {
	font-size: .75rem;
	font-weight: 700;
	padding: .2rem .55rem;
	border-radius: 999px;
	background: #ffde59;
	color: #000;
}

.result-card .pr-list .publish-pr {
	background: #ffd03b;
}

.result-card .pr-list .contact {
	background: #d1ecf1;
	color: #0c5460;
}

/* 基本情報 */
.result-card .info-item {
	display: flex;
	gap: .5rem;
	align-items: flex-start;
	margin-bottom: .5rem;
}

.result-card .info-item i {
	color: var(--color-primary);
	font-size: 1rem;
	margin-top: .2rem;
}

/* 特徴リスト */
.result-card .features, .result-card .features2 {
	list-style: none;
	margin: 1rem 0 0;
	padding: 1rem;
	border-top: 1px solid #eee;
	background-color: #EEE;
	display: block;
}
.result-card .features2 {
	background-color: var(--color-secondary);

}

.result-card .features li {
	display: flex;
	gap: .5rem;
	margin: .5rem 0;
}

.result-card .features i {
	color: var(--bs-success);
}

.result-card .footer-cta {
	text-align: right;
	font-weight: 700;
	color: var(--bs-primary);
	padding: 0 1rem 1rem;
}


.features2 {
  list-style: none;     /* リストマーカーを消す */
  padding: 0;
  margin: 0;
  display: inline;      /* インラインで扱う */
}

.features2 li {
  display: inline;      /* 横並び */
}

.features2 li::after {
  content: " / ";       /* 区切り記号を追加 */
}

.features2 li:last-child::after {
  content: "";          /* 最後の要素だけ「/」を消す */
}



/* スライダー */
/* 画像のトリミングを整える（カバー表示） */
#gallerySlider .carousel-item img {
	object-fit: cover;
}

/* もし 3:2 比率にしたい場合（BSのratioユーティリティ代替） */
.ratio-3x2 {
	aspect-ratio: 3 / 2;
}


/* テーブル */
.school-card .table {
	overflow: hidden;
	border: none!important;
}

/* 見出し */
.school-card .table th {
	color: var(--bs-secondary);
	font-weight: 600;
	text-align: center;
	padding: 0.75rem;
	background-color: var(--color-bg-card) !important;
	max-width: 80px;
}

/* セル */
.school-card .table td {
	padding: 0.75rem;
	vertical-align: middle;
	
}

/* ストライプ */
.school-card .table.custom-striped,.school-card .table.custom-striped td,.school-card .table.custom-striped th {
	border: none!important;
}

.school-card .table.custom-striped td,
.school-card .table.custom-striped th {
	border: none !important;
}

.table.custom-striped tbody tr:nth-of-type(odd) td,
.table.custom-striped tbody tr:nth-of-type(odd) th {
	background-color: var(--color-bg-card)!important;
}

.table.custom-striped tbody tr:nth-of-type(even) td,
.table.custom-striped tbody tr:nth-of-type(even) th {
	background-color: #fff !important;
}







.contents-card h2{
	font-size: 1.5rem;
	color: var(--color-primary);
}
.contents-card__body {
	margin-bottom: 2.5rem;
}



.message-card {
	background-color: var(--color-bg-card);
	border: none;
	border-radius: 1rem;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
	overflow: hidden;
}

.message-card-header {
	background: var(--color-secondary);
	color: var(--bs-secondary);
	font-weight: bold;
	padding: 0.75rem 1rem;
	font-size: 1.1rem;
	border-bottom: 2px solid rgba(0, 0, 0, 0.05);
}

.message-card-body {
	padding: 1.5rem;
}

.message-card-body p {
	margin-bottom: 0;
	line-height: 1.7;
	color: #555;
}




/* フル幅・ポップボタン */
.btn-contact-pop {
  background-color: var(--color-primary);
  color: #FFF;
  font-weight: bold;
  border-radius: 1rem;
  border: none;
  box-shadow: 0 4px 8px rgba(0,0,0,0.12);
  transition: all .2s ease;
  font-size: 1.2rem;
  display: block;
  text-align: center;
}

/* hover時 */
.btn-contact-pop:hover {
  background-color:var(--color-primary-hover); /* --color-primary より濃いめ */
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(0,0,0,0.16);
}


/* お問い合わせフォーム */
.contact-form {
	background-color: var(--color-bg-card);
	border-radius: 1rem;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

/* ラベル */
.contact-form .col-form-label {
	font-weight: 600;
	color: #444;
}

/* 入力欄 */
.contact-form .form-control {
	border-radius: .5rem;
	border: 1px solid #e0bfb0;
}

.contact-form .form-control:focus {
	border-color: var(--color-primary-hover);
	box-shadow: 0 0 0 .25rem rgba(252, 228, 214, .6);
}

/* ボタン（前に作ったものを再利用） */
.btn-contact-pop {
	background-color: var(--color-primary);
	color: #FFF;
	font-weight: bold;
	border-radius: 1rem;
	border: none;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.12);
	transition: all .2s ease;
	font-size: 1.1rem;
}

.btn-contact-pop:hover {
	background-color:var(--color-primary-hover);
	color: #FFF;
	transform: translateY(-2px);
	box-shadow: 0 6px 14px rgba(0, 0, 0, 0.16);
}





.cta-card {
	background: var(--color-primary-light);
	border-radius: 1rem;
	box-shadow: 0 6px 16px rgba(0, 0, 0, .08);
	transition: transform .15s ease, box-shadow .15s ease;
}

.cta-card:hover {
	transform: translateY(-2px);
	box-shadow: 0 10px 24px rgba(0, 0, 0, .12);
}

.cta-card-header {
	font-size: 1.5rem;
	background: var(--color-primary);
	border-radius: 1rem 1rem 0 0;
	font-weight: 700;
	color: #FFF;
	padding: .9rem 1rem;
	border-bottom: 2px solid rgba(0, 0, 0, .05);
}

.cta-card-body {
	padding: 1.5rem 2.5rem;
}

.cta-points {
	list-style: none;
	padding: 0;
	margin: 0 0 1rem;
}

.cta-points li {
	margin: .35rem 0;
	font-size: 1.1rem;
}
.cta-points li i {
	color: var(--bs-success);
	margin-right: 0.5rem;
}

/* 有料会員登録（赤系・目立つ） */
.btn-paid {
  background: #e74c3c;       /* 赤系 */
  color: #fff;
  font-weight: 700;
  border: none;
  border-radius: .8rem;
  box-shadow: 0 4px 8px rgba(0,0,0,.12);
  transition: all .2s ease;
}
.btn-paid:hover {
  background: #c0392b;       /* 濃い赤 */
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(0,0,0,.16);
}

/* 無料会員登録（青系・控えめ） */
.btn-free {
  background: #f8f9fa;       /* 薄グレー背景 */
  color: #0d6efd;            /* 青文字 */
  border: 2px solid #0d6efd; /* 青枠 */
  border-radius: .8rem;
  font-weight: 600;
  transition: all .2s ease;
}
.btn-free:hover {
  background: #e9f2ff;       /* 薄い青背景 */
  color: #0b5ed7;
}




/* 検索結果 */
.custom-tabs .nav-link {
  display: flex;
  align-items: center;
  gap: .4rem;
  font-weight: 600;
  color: #555;
  border: none;
  border-radius: .75rem .75rem 0 0;
  padding: .6rem 1.6rem;
  transition: all .2s ease;
}
.custom-tabs .nav-link:hover {
  background-color: #fce4d6;
  color: #222;
}
.custom-tabs .nav-link.active {
  background-color: #fff;
  border: 2px solid #fce4d6;
  border-bottom: none;
  color: #000;
  box-shadow: 0 -2px 8px rgba(0,0,0,.05);
}
.custom-tabs .tab-icon {
  width: 30px;
  height: 30px;
  object-fit: contain;
}


/* メールフォーム */
main.mail_confirm .input-group-text {
	padding: 0 1rem;
	background: none!important;
	border:none !important;
}
