:root {
	--cre-color-base: #FFFFFF;
	--cre-color-text: #333333;
	--cre-color-text-light: #FFFFFF;
	--cre-color-bg-light: #F7F7F7;
	--cre-color-accent-blue: #405796;
	--cre-color-accent-blue-dark: #2F6DA4;
	--cre-color-accent-blue-light: #6a91c1;
	--cre-color-accent-red: #A3455A;
	--cre-color-accent-orange: #E68A00;
	--cre-color-accent-sub-blue: #F0F6FF;
	--cre-color-accent-sub-orange: #FFF8E6;
	--cre-color-accent-sub-red: #F8E8EB;
	--cre-color-accent-green: #3A8F4E;
	--cre-color-accent-green-dark: #2E6F3B;
	--cre-color-accent-green-light: #6AC18A;
	--cre-font-size-base: 16px;
	--cre-line-height-base: 1.9;
	--cre-font-family-base: 'Noto Sans JP', sans-serif;
	--cre-color-bubble-left: var(--cre-color-accent-sub-blue);
	--cre-color-bubble-right: var(--cre-color-base);
	--cre-color-bubble-center: var(--cre-color-bg-light);
	--cre-color-bubble-border: #DDDDDD;

	--cre-color-accent: var(--cre-color-accent-green);
	--cre-color-accent-dark: var(--cre-color-accent-green-dark);
   --cre-color-accent-light: var(--cre-color-accent-green-light);
}

/* wordpress cyfons と干渉するときはコメントアウト*/
 /*
body {
	background-color: var(--cre-color-base);
	color: var(--cre-color-text);
	font-size: var(--cre-font-size-base);
	line-height: var(--cre-line-height-base);
	font-family: var(--cre-font-family-base);
	padding: 20px;
	max-width: 800px;
	margin: 0 auto;
}
*/

/* audioタグを幅いっぱいに */
audio {
    display: inline-block;
    vertical-align: middle;
    width: 100%;
    margin: 10px auto;
}



.no-wrap {
  white-space: nowrap;
}


/* スマホのときは改行なし */
.pc {
	display: none;
}

@media (min-width:768px) {
	.pc {
		display: inline;
	}

}

/* スマホのときは改行あり */
.sp {
	display: none;
}

@media (max-width:768px) {
	.sp {
		display: inline;
	}

}
/* -----------------------------------------------------
 * 1. 見出しスタイル
 * ----------------------------------------------------- */
.cyfons-Template_Main_Content h2 {
	font-size: 1.8rem;
	font-weight: bold;
	color: var(--cre-color-text);
	padding: 0.5em 0;
	margin: 4rem 0 2.5rem;
	border-bottom: 3px solid var(--cre-color-accent);
}
/*
.c-heading--2 {
	font-size: 1.5rem;
	font-weight: bold;
	color: var(--cre-color-text-light);
	padding: 0.5em 1.2em;
	margin: 4rem 0 2.5rem;
	background: linear-gradient(90deg, var(--cre-color-accent-dark), var(--cre-color-accent-light));
	border-radius: 5px;
	text-align: left;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
*/
.cyfons-Template_Main_Content h3{
	font-size: 1.3rem;
	font-weight: bold;
	color: var(--cre-color-text);
	display: flex;
	align-items: center;
	padding: 0.8em 1.2em;
	margin: 3.5rem 0 2rem;
	background-color: var(--cre-color-bg-light);
	border-radius: 3px;
}

.cyfons-Template_Main_Content h3::before {
	content: '';
	display: inline-block;
	width: 5px;
	height: 1.5em;
	margin-right: 0.8em;
	background-color: var(--cre-color-accent);
	flex-shrink: 0;
}

.cyfons-Template_Main_Content h4 {
	font-size: 1.1rem;
	font-weight: bold;
	color: var(--cre-color-text);
	margin: 3rem 0 1.5rem;
	padding: 0.5em 0;
	border-bottom: 4px solid var(--cre-color-accent);
	border-left: none;
	padding-left: 0;
}

.cyfons-Template_Main_Content h5 {
	font-size: 1rem;
	font-weight: bold;
	color: var(--cre-color-text);
	margin: 2rem 0 1rem;
	padding-left: 1.2em;
	position: relative;
}

.cyfons-Template_Main_Content h5::before {
	content: "●";
	font-size: 0.8rem;
	color: var(--cre-color-text);
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	line-height: 1;
}

/* -----------------------------------------------------
 * 2. リストスタイル
 * ----------------------------------------------------- */
ul.c-list--lg-disc, ul.c-list--check, ul.c-list--gray-box {
	padding-left: 1.5em;
	list-style: none;
}

.c-list--lg-disc li {
	position: relative;
	margin-bottom: 0.5em;
	padding-left: 0.2em;
}

.c-list--lg-disc li::before {
	content: "●";
	font-size: 0.9em;
	color: var(--cre-color-accent);
	position: absolute;
	left: -1em;
	top: 0;
	line-height: var(--cre-line-height-base);
}

.c-list--check li {
	position: relative;
	margin-bottom: 0.5em;
}

.c-list--check li::before {
	content: "\f00c";
	font-family: 'Font Awesome 5 Free';
	font-weight: 900;
	color: var(--cre-color-accent);
	position: absolute;
	left: -1.2em;
	top: 0;
	line-height: var(--cre-line-height-base);
}

/* -----------------------------------------------------
 * ネガティブ（共感・悩み）リスト（グレーボックス）
 * ----------------------------------------------------- */
.c-list--gray-box {
  list-style: none;
  margin: 2rem 0;
  padding: 1.5rem 1.8rem;
  border: 1px solid var(--cre-color-bubble-border); /* style-cre.css に合わせる */
  border-radius: 6px;
  background-color: var(--cre-color-bg-light); /* 統一感ある薄グレー背景 */
}

.c-list--gray-box li {
  position: relative;
  margin-bottom: 0.6em;
  padding-left: 1.2em;
  line-height: var(--cre-line-height-base);
}

.c-list--gray-box li::before {
  content: "●";
  font-size: 0.6em; /* 小さめの丸 */
  color: #999; /* 控えめグレー */
  position: absolute;
  left: 0;
  top: 0.4em;
  opacity: 0.8;
}


/* -----------------------------------------------------
 * 3. メッセージボックス
 * ----------------------------------------------------- */
/* -----------------------------------------------------
 * 角アイコン付きボックス（note / warning / danger）
 * ----------------------------------------------------- */
.c-box {
  position: relative;
  padding: 1.5em;
  margin: 4rem 0;
  border-radius: 5px;
}

/* --- note --- */
.c-box--note {
  background-color: var(--cre-color-accent-sub-blue);
  border: 1px solid var(--cre-color-accent-blue);
}
.c-box--note::before {
  content: "\f0eb"; 
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  background-color: var(--cre-color-accent-blue);
  color: #fff;
  position: absolute;
  top: -0.7rem;
  left: -0.7rem;
  width: 1.7rem;
  height: 1.7rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
  z-index: 2;
}

/* --- warning --- */
.c-box--warning {
  background-color: var(--cre-color-accent-sub-orange);
  border: 1px solid var(--cre-color-accent-orange);
}
.c-box--warning::before {
  content: "\f071"; /* ⚠️ fa-exclamation-triangle */
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  background-color: var(--cre-color-accent-orange);
  color: #fff;
  position: absolute;
  top: -0.7rem;
  left: -0.7rem;
  width: 1.7rem;
  height: 1.7rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
  z-index: 2;
}

/* --- danger --- */
.c-box--danger {
  background-color: var(--cre-color-accent-sub-red);
  border: 1px solid var(--cre-color-accent-red);
}
.c-box--danger::before {
  content: "\f06a"; /* ⛔ fa-exclamation-circle */
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  background-color: var(--cre-color-accent-red);
  color: #fff;
  position: absolute;
  top: -0.7rem;
  left: -0.7rem;
  width: 1.7rem;
  height: 1.7rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
  z-index: 2;
}


.c-box-memo {
  background-color: #f9f9f9; /* ごく薄いグレー */
  border: 1px solid #ddd; /* 薄いグレーの枠線 */
  border-radius: 6px;
  padding: 1.5em;
  margin: 3rem 0;
  color: var(--cre-color-text);
  line-height: 1.8;
  box-shadow: none; /* 他のc-boxとの差別化 */
}

.c-box-memo p {
  margin: 0;
}

@media (max-width: 599px) {
  .c-box-memo {
    padding: 1.2em;
  }
}

/* -----------------------------------------------------
 * 4. 画像スタイル
 * ----------------------------------------------------- */
.c-img {
	display: block;
	height: auto;
	margin: 4rem 0;
	max-width: 100%;
}

/* 中央寄せ */
.c-img--center {
	display: block;
	width: 60%;
	max-width: 100%;
	height: auto;
	object-fit: cover;
	margin: 4rem auto;
	position: relative;
	left: 50%;
	transform: translateX(-50%);
}

@media (max-width: 599px) {
	.c-img--center {
		width: 100%;
		left: 0;
		transform: none;
	}
}
/*コンテンツ幅いっぱい*/
.c-img--full-width {
	width: 100%;
	border-radius: 5px;
	/* box-shadow は削除。必要なら has-shadow を追加 */
}
/*ブラウザ全体（画面幅いっぱい）*/
.c-img--bleed {
	width: 100vw;
	position: relative;
	left: 50%;
	transform: translateX(-50%);
	max-width: none;
}

.c-img--center-box {
	display: block;
	width: 80%;
	margin: 4rem auto;
	border-radius: 5px;
	/* box-shadow は削除。必要なら has-shadow を追加 */
}

@media (max-width:599px) {
	.c-img--center-box {
		width: 100%;
		border-radius: 0;
		box-shadow: none;
		margin-left: 0;
		margin-right: 0;
	}
}

/* ✅ 影を付けたいときだけ追加 */
.has-shadow {
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.08);
}


/* -----------------------------------------------------
 * 5. 吹き出しスタイル
 * ----------------------------------------------------- */
.c-chat {
	margin: 4rem 0;
}

.c-chat__item {
	display: flex;
	margin-bottom: 0.5rem;
	align-items: flex-start;
}

.c-chat__item--right {
	flex-direction: row-reverse;
}

/* PC/Tablet連投時 */
.c-chat__item--left + .c-chat__item--left, .c-chat__item--right + .c-chat__item--right, .c-chat__item--center + .c-chat__item--center {
	margin-top: 0.5rem;
}

.c-chat__item--left + .c-chat__item--left .c-chat__avatar-area, .c-chat__item--right + .c-chat__item--right .c-chat__avatar-area, .c-chat__item--center + .c-chat__item--center .c-chat__avatar-area {
	visibility: hidden;
   height: 0;
}

.c-chat__avatar-area {
	width: 60px;
	margin-right: 15px;
	text-align: center;
	flex-shrink: 0;
	line-height: 1.2;
}

.c-chat__item--right .c-chat__avatar-area {
	margin-right: 0;
	margin-left: 15px;
}

.c-chat__avatar-area img {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	object-fit: cover;
	display: block;
	margin: 0 auto 5px;
	border: 2px solid var(--cre-color-bg-light);
}

.c-chat__name {
	font-size: 0.8rem;
	color: var(--cre-color-text);
	font-weight: bold;
}

.c-chat__bubble {
	position: relative;
	padding: 12px 15px;
	border-radius: 15px;
	font-size: 1rem;
	line-height: var(--cre-line-height-base);
	color: var(--cre-color-text);
	max-width: calc(100% - 75px);
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);     /* 影は控えめに */
   overflow-wrap: break-word;
   word-wrap: break-word;
   box-sizing: border-box;
   word-break: break-all;
}

/* 話者A (左) の吹き出し - 薄い青背景 */
.c-chat__item--left .c-chat__bubble {
	background-color: var(--cre-color-bubble-left);     /* 薄い青 */
	border: 1px solid var(--cre-color-accent-sub-blue);     /* 薄い青の枠線 */
	border-top-left-radius: 0;
}

/* 話者B (右) の吹き出し - 白背景 */
.c-chat__item--right .c-chat__bubble {
	background-color: var(--cre-color-bubble-right);     /* 白 */
	border: 1px solid var(--cre-color-bubble-border);     /* 控えめなグレーの枠線 */
	border-top-right-radius: 0;
}

.c-chat__item--center .c-chat__bubble {
	background-color: var(--cre-color-bubble-center);
	border: 1px solid var(--cre-color-bubble-border);
	border-top-left-radius: 0;
}

@media (max-width:599px) {

	/* スマホ対応の吹き出しスタイル (完全記述) */
	.c-chat__item {
		flex-direction: column;
		align-items: flex-start;
		margin-top: 1.5rem;
		margin-bottom: 0;
	}

	.c-chat__item--right {
		flex-direction: column;
		align-items: flex-end;
	}

	.c-chat__item--left + .c-chat__item--left, .c-chat__item--right + .c-chat__item--right, .c-chat__item--center + .c-chat__item--center {
		margin-top: 0.5rem;
	}

	.c-chat__item--right .c-chat__avatar-area {
		margin: 0 0 5px auto;
	}

	.c-chat__item--left .c-chat__avatar-area, .c-chat__item--center .c-chat__avatar-area {
		margin: 0 auto 5px 0;
	}

	.c-chat__item--right .c-chat__name {
		text-align: right;
	}

	.c-chat__item--left .c-chat__name, .c-chat__item--center .c-chat__name {
		text-align: left;
	}

	.c-chat__bubble {
		max-width: 100%;
		margin-top: 5px;
		padding: 12px 15px;
		border-radius: 15px;
		box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
	}

	/* スマホ時も新しい色に合わせて枠線を調整 */
	.c-chat__item--left .c-chat__bubble {
		border-top-left-radius: 0;
		border: 1px solid var(--cre-color-accent-sub-blue);
	}

	.c-chat__item--right .c-chat__bubble {
		border-top-right-radius: 0;
		border: 1px solid var(--cre-color-bubble-border);
	}

	.c-chat__item--center .c-chat__bubble {
		border-top-left-radius: 0;
	}

	.c-chat__bubble::after {
		content: none;
	}

}




/* -----------------------------------------------------
 * ChatGPTへの話しかけ例：白吹き出し＋💬アイコン付き
 * ----------------------------------------------------- */
.c-lines {
  margin: 3rem 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.c-line {
  position: relative;
  display: flex;
  align-items: flex-start;
  background-color: var(--cre-color-base); /* 白背景 */
  border: 1px solid var(--cre-color-bubble-border);
  border-radius: 14px;
  padding: 0.9em 1.2em 0.9em 2.6em; /* 左に余白を追加 */
  color: var(--cre-color-text);
  line-height: var(--cre-line-height-base);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  max-width: 100%;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

/* 💬アイコン */
.c-line::before {
  content: "💬";
  position: absolute;
  left: 1em;
  top: 0.7em;
  font-size: 1.1em;
  opacity: 0.75;
}

/* 吹き出しの“しっぽ” */
.c-line::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 28px;
  width: 14px;
  height: 14px;
  background: var(--cre-color-base);
  border-right: 1px solid var(--cre-color-bubble-border);
  border-bottom: 1px solid var(--cre-color-bubble-border);
  transform: rotate(45deg);
  box-shadow: 2px 2px 3px rgba(0, 0, 0, 0.02);
}

/* hover効果 */
.c-line:hover {
  transform: translateY(-2px);
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.08);
}

/* スマホ調整 */
@media (max-width: 599px) {
  .c-line {
    font-size: 0.95rem;
    padding: 0.8em 1em 0.8em 2.3em;
  }
  .c-line::after {
    left: 22px;
  }
}


/* -----------------------------------------------------
 * 6. 段落・テキストユーティリティ
 * ----------------------------------------------------- */
p {
	margin-top: 1.2rem;
	margin-bottom: 0;
}

.t2 {
	margin-top: 2rem;
}

/* フォント・文字色・配置 */
.bold {
	font-weight: bold;
}

.small {
	font-size: 0.85em;
}

.big {
	font-size: 1.2em;
	font-weight: bold;
}

.red {
	color: var(--cre-color-accent-red);
}

.blue {
	color: var(--cre-color-accent-blue);
}

.green {
	color: var(--cre-color-accent-green);
}

.orange {
	color: var(--cre-color-accent-orange);
}


.text-left {
	text-align: left !important;
}

.text-center {
	text-align: center !important;
}

.text-right {
	text-align: right !important;
}

/* リンクの統一 */
a {
	color: var(--cre-color-accent-blue);
	text-decoration: none;
}

a:hover {
	text-decoration: underline;
}

/* 通常：外部リンクアイコンを表示 */
a[target="_blank"]::after {
  font-family: "Font Awesome 5 Free";
  content: "\f35d"; /* fa-external-link-alt */
  font-weight: 900;
  font-size: 0.8em;
  margin-left: 0.3em;
  color: currentColor;
  opacity: 0.7;
  transition: opacity 0.2s;
}

/* hover時の透明度変化 */
a[target="_blank"]:hover::after {
  opacity: 1;
}

/* ✅ リンク内に画像がある場合はアイコンを非表示 */
a[target="_blank"]:has(img)::after {
  content: none;
}



/* 万年筆風下線 (SVG) - 最終設定 */
.c-penline--blue, .c-penline--red {
    position: relative; display: inline; box-decoration-break: clone; -webkit-box-decoration-break: clone;
    padding-bottom: 0.05em; 
    background-repeat: repeat-x;
}
/* URL全体を一つで囲み、内部の引用符問題を回避 (改行なしで記述) */
.c-penline--blue { 
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="120" height="12" viewBox="0 0 120 12"><path d="M0 8 Q20 7.5 40 8.2 T80 7.8 T120 8" stroke="%233E8DCF" stroke-width="2.6" fill="none" stroke-linecap="round" opacity="0.9"/><path d="M0 8 Q20 7.2 40 8 T80 7.7 T120 8" stroke="%233E8DCF" stroke-width="1.6" fill="none" stroke-linecap="round" opacity="0.4"/></svg>') repeat-x 0 1.1em / auto 7px;
}
.c-penline--red {
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="120" height="12" viewBox="0 0 120 12"><path d="M0 8 Q20 7.5 40 8.2 T80 7.8 T120 8" stroke="%23A3455A" stroke-width="2.6" fill="none" stroke-linecap="round" opacity="0.9"/><path d="M0 8 Q20 7.2 40 8 T80 7.7 T120 8" stroke="%23A3455A" stroke-width="1.6" fill="none" stroke-linecap="round" opacity="0.4"/></svg>') repeat-x 0 1.1em / auto 7px;
}

/* 通常のアンダーライン (少し太め) */
.u-line-black, .u-line-red, .u-line-blue {
	text-decoration: underline;
	text-decoration-thickness: 3px;
	text-underline-offset: 4px;
}

.u-line-black {
	text-decoration-color: var(--cre-color-text);
}

.u-line-red {
	text-decoration-color: var(--cre-color-accent-red);
}

.u-line-blue {
	text-decoration-color: var(--cre-color-accent-blue);
}

/* マーカーと囲み線 (中略) */
.c-mark--blue, .c-mark--red {
	position: relative;
	display: inline;
	box-decoration-break: clone;
	-webkit-box-decoration-break: clone;
	padding: 0.1em 0.2em;
	background-repeat: no-repeat;
	background-size: 100% 100%;
}

.c-mark--blue {
	background-image: linear-gradient(transparent 65%, rgba(62, 141, 207, 0.22) 0%, rgba(62, 141, 207, 0.28) 100%);
}

.c-mark--red {
	background-image: linear-gradient(transparent 65%, rgba(163, 69, 90, 0.22) 0%, rgba(163, 69, 90, 0.28) 100%);
}

/* -----------------------------------------------------
 * 7. 3つのポイントリスト (連番強調デザイン)
 * ----------------------------------------------------- */
.c-keys {
	display: flex;
	flex-direction: column;
	gap: 2rem;
	margin: 3rem 0 4.5rem;
}

.c-key {
	background: var(--cre-color-base);
	border-radius: 8px;
	padding: 1.5rem;
	border: 1px solid var(--cre-color-bubble-border);
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.03);
	transition: all 0.3s ease;
	position: relative;
	padding-top: 1rem;
}

.c-key:hover {
	border-color: var(--cre-color-accent);
	box-shadow: 0 4px 10px rgba(62, 141, 207, 0.1);
}

.c-key-title {
	font-weight: bold;
	font-size: 1.1rem;
	margin-bottom: 1rem;
	position: relative;
	display: block;
	padding-bottom: 0.4rem;
	margin-top: 0.2rem;
	color: var(--cre-color-accent-dark);
	padding-left: 3rem;
}

.c-key-title::before {
	content: attr(data-number);
	position: absolute;
	left: 0;
	top: -5px;
	width: 32px;
	height: 32px;
	line-height: 32px;
	text-align: center;
	border-radius: 50%;
	background-color: var(--cre-color-accent);
	color: var(--cre-color-text-light);
	font-size: 0.95rem;
	font-weight: bold;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
}

.c-key-title::after {
	content: none;
}

@media (max-width:768px) {
	.c-keys {
		gap: 1.5rem;
	}

	.c-key {
		padding: 1.2rem;
	}

	.c-key-title {
		font-size: 1rem;
		margin-bottom: 0.8rem;
		padding-left: 2.5rem;
	}

}


/* -----------------------------------------------------
 * コンパクトな3ポイントリスト（余白調整版）
 * ----------------------------------------------------- */
.c-points {
  display: flex;
  flex-direction: column;
  gap: 1.4rem; /* 各項目の間隔も少し広げる */
  margin: 3rem 0;
  counter-reset: point;
}

.c-point {
  position: relative;
  background: var(--cre-color-base);
  border: 1px solid var(--cre-color-bubble-border);
  border-left: 6px solid var(--cre-color-accent);
  border-radius: 8px;
  padding: 1rem 1.2rem 1rem 4.2rem;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.04);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.c-point::before {
  counter-increment: point;
  content: counter(point);
  position: absolute;
  left: 1.2rem;
  top: 50%;
  transform: translateY(-50%);
  width: 2rem;           /* 丸数字を少し大きく */
  height: 2rem;
  line-height: 2rem;
  text-align: center;
  font-weight: bold;
  color: var(--cre-color-text-light);
  background: var(--cre-color-accent);
  border-radius: 50%;
  box-shadow: 0 2px 4px rgba(62, 141, 207, 0.2);
  font-size: 1rem;
}

.c-point strong {
  display: block;
  font-weight: bold;
  font-size: 1.05rem;
  color: var(--cre-color-accent-dark);
  margin-bottom: 0.3rem;
}

.c-point p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.7;
}

.c-point:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(62, 141, 207, 0.1);
  border-left-color: var(--cre-color-accent-dark);
}

/* スマホ対応 */
@media (max-width: 599px) {
  .c-point {
    padding: 0.9rem 1rem 0.9rem 3.5rem;
  }
  .c-point::before {
    left: 1rem;
    width: 1.8rem;
    height: 1.8rem;
    line-height: 1.8rem;
    font-size: 0.9rem;
  }
}




/* -----------------------------------------------------
 * 8. AIコンテンツカード/テーブルスタイル (中略)
 * ----------------------------------------------------- */
section.ai-guide {
	margin: 4rem 0;
	padding: 0;
}

.ai-title {
	text-align: center;
	font-size: clamp(1.8rem, 4.5vw, 2.4rem);
	font-weight: bold;
	color: var(--cre-color-text);
	margin-bottom: 1.5rem;
	margin-top: 0;
	padding: 0 0.5rem;
}

.ai-subtitle {
	border-bottom: 3px solid var(--cre-color-accent);
	display: block;
	width: fit-content;
	margin: 4rem auto 2rem;
	padding-bottom: 0.5rem;
	font-size: clamp(1.3rem, 3.5vw, 1.8rem);
	font-weight: bold;
	color: var(--cre-color-text);
	text-align: center;
}

.ai-card-container {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 1.8rem;
	margin-top: 2rem;
}

.ai-card {
	background: var(--cre-color-base);
	border-radius: 12px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
	overflow: hidden;
	transition: transform 0.25s ease;
}

.ai-card:hover {
	transform: translateY(-6px);
}

.ai-card-header {
	display: flex;
	align-items: center;
	gap: 0.8rem;
	padding: 1rem;
	border-bottom: 1px solid var(--cre-color-border-light);
	background: var(--cre-color-bg-light);
}

.ai-card-header img.icon {
	width: 40px;
	height: 40px;
	object-fit: contain;
	flex-shrink: 0;
	border-radius: 5px;
}

.ai-card-header .ai-card-title {
	font-size: 1.2rem;
	font-weight: bold;
	color: var(--cre-color-text);
}

.ai-tagline {
	font-size: 1rem;
	text-align: center;
	color: var(--cre-color-text);
	font-weight: 600;
	padding: 0.6rem 0.8rem;
	background: var(--cre-color-accent-sub-blue);
	border-bottom: 1px solid var(--cre-color-accent);
}

.ai-sample {
	width: 100%;
	aspect-ratio: 1 / 1;
	object-fit: cover;
	display: block;
}

.ai-card-content {
	padding: 1.2rem;
}

.ai-card-content p {
	margin: 0.5rem 0;
	font-size: 0.95rem;
}

.ai-card-content strong {
	color: var(--cre-color-accent-dark);
}

/* テーブルの最終修正 */
.ai-table {
	width: 100%;
	border-collapse: collapse;
	margin-top: 2rem;
	font-size: 0.95rem;
	border: none;
}

.ai-table th, .ai-table td {
	padding: 0.8rem;
	text-align: left;
	border: none;
}

.ai-table thead th {
	background: none;
	color: var(--cre-color-text);
	font-weight: bold;
	border-bottom: 4px solid var(--cre-color-accent);
	border-top: none;
	padding-bottom: 0.5rem;
	position: sticky;
	top: 0;
	z-index: 10;
}

.ai-table tbody tr:nth-child(even) {
	background: var(--cre-color-bg-light);
}

.ai-table tbody tr {
	border-bottom: 1px solid var(--cre-color-bubble-border);
}

.ai-table tbody tr:last-child {
	border-bottom: 2px solid var(--cre-color-text);
}



/* -----------------------------------------------------
 * 各AIツール紹介セクション（スタイリッシュカード風）
 * ----------------------------------------------------- */
/* -----------------------------------------------------
 * AIツール紹介セクション（静かで知的なブロック）
 * ----------------------------------------------------- */
.ai-outline {
  border: 1px solid var(--cre-color-bubble-border);
  border-radius: 12px;
  background: var(--cre-color-base);
  padding: 2rem 2.4rem;
  margin: 3rem 0;
  box-shadow: 0 3px 8px rgba(0,0,0,0.04);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.ai-outline:hover {
  box-shadow: 0 5px 14px rgba(0,0,0,0.08);
  transform: translateY(-3px);
}

.ai-outline .ai-name {
  font-size: 1.4rem;
  font-weight: 700;
/*  color: var(--cre-color-accent-dark);*/
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 0.5rem;
}

.ai-outline .ai-name img {
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.ai-outline .ai-sub {
  margin-bottom: 1.5rem;
}

.ai-outline .ai-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

@media (max-width: 768px) {
  .ai-outline .ai-body {
    grid-template-columns: 1fr;
  }
}

.ai-outline .ai-col {
  border-left: 3px solid var(--cre-color-accent);
  padding-left: 1rem;
}

.ai-outline .ai-label {
  font-weight: 600;
  margin-bottom: 0.4rem;
  color: var(--cre-color-text);
}

.ai-outline ul {
  margin: 0.2rem 0 0.8rem;
  padding-left: 1.2rem;
}

.ai-outline li {
  margin-bottom: 0.3rem;
  line-height: 1.7;
}

.ai-outline li::marker {
  color: var(--cre-color-accent);
}



/* -----------------------------------------------------
 * プロンプト設計テーブル（改良版：ヘッダー明瞭表示）
 * ----------------------------------------------------- */
.c-table--prompt {
  width: 100%;
  border-collapse: collapse;
  margin: 2.5rem 0;
  font-size: 0.95rem;
  border: 1px solid var(--cre-color-bubble-border);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.04);
}

/* ヘッダー背景を明るめブルーグレーにして視認性UP */
.c-table--prompt thead {
  background-color: #f2f6fb; /* 明るく清潔感のあるグレー青 */
}

.c-table--prompt th,
.c-table--prompt td {
  padding: 1rem 1.2rem;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid var(--cre-color-bubble-border);
}

.c-table--prompt th {
  font-weight: bold;
  color: var(--cre-color-text);
  white-space: nowrap;
}

/* 交互背景 */
.c-table--prompt tbody tr:nth-child(even) {
  background-color: var(--cre-color-bg-light);
}

/* hover効果 */
.c-table--prompt tbody tr:hover {
  background-color: #f9fbfe;
  transition: 0.2s ease;
}

/* 例文（右列）だけ文字色とフォントを少し変える */
.c-table--prompt td:last-child {
  color: var(--cre-color-accent-dark);
}

/* スマホ対応 */
@media (max-width: 768px) {
  .c-table--prompt th,
  .c-table--prompt td {
    padding: 0.8rem 0.9rem;
    font-size: 0.9rem;
  }
}



/* -----------------------------------------------------
 * 8. 動画埋め込み（YouTube / Vimeo 共通）
 * ----------------------------------------------------- */
.video-frame {
	--ratio: 16/9;
	--frame-radius: 2px; /* 角丸を控えめに */
	--frame-border-color: var(--cre-color-bubble-border);
	--frame-bg: var(--cre-color-base);
	--frame-shadow: 0 3px 8px rgba(0, 0, 0, 0.06);
	position: relative;
	width: 100%;
	background: var(--frame-bg);
	border: 1px solid var(--frame-border-color);
	border-radius: var(--frame-radius);
	box-shadow: var(--frame-shadow);
	padding: 4px; /* 枠と動画の隙間を極小に */
	overflow: hidden;
	transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
	margin: 3rem auto;
}

/* アスペクト比でサイズを維持 */
.video-frame .video {
	position: relative;
	width: 100%;
	aspect-ratio: var(--ratio);
	overflow: hidden;
	border-radius: calc(var(--frame-radius) - 2px);
	background-color: var(--cre-color-bg-light);
}

/* iframe共通スタイル */
.video-frame iframe {
	width: 100%;
	height: 100%;
	border: none;
	display: block;
	border-radius: inherit;
}

/* -----------------------------------------------------
 * 9. Vimeo専用: 最大化ボタン
 * ----------------------------------------------------- */
.video-frame.vimeo .btn-fullscreen {
	position: absolute;
	right: 10px;
	bottom: 10px;
	font-size: 1.2rem;
	color: var(--cre-color-text-light);
	background: rgba(64, 87, 150, 0.8); /* var(--cre-color-accent-blue)系で統一 */
	border: none;
	border-radius: 5px;
	padding: 5px 9px;
	cursor: pointer;
	transition: background .2s ease;
	z-index: 2;
}

.video-frame.vimeo .btn-fullscreen:hover {
	background: rgba(47, 109, 164, 0.9);
}

/* PCでは最大化ボタンを非表示 */
@media (min-width:769px) {
	.video-frame.vimeo .btn-fullscreen {
		display: none;
	}
}

/* -----------------------------------------------------
 * 10. Vimeo 擬似フルスクリーン（iPhone WebView対応）
 * ----------------------------------------------------- */
.video-frame.fullscreen-sim {
	position: fixed !important;
	inset: 0;
	width: 100vw !important;
	height: 100dvh !important;
	z-index: 9999;
	background: #000;
	border-radius: 0;
	margin: 0;
	padding: 0;
	box-shadow: none;
	transition: none;
}

.video-frame.fullscreen-sim .video,
.video-frame.fullscreen-sim iframe {
	width: 100%;
	height: 100%;
	border-radius: 0;
}

/* 閉じるボタン（×） */
.video-frame.fullscreen-sim::after {
	content: "×";
	position: absolute;
	top: 10px;
	right: 18px;
	font-size: 2rem;
	font-weight: bold;
	color: var(--cre-color-text-light);
	text-shadow: 0 0 6px rgba(0, 0, 0, 0.8);
	cursor: pointer;
	z-index: 10000;
}

body.fullscreen-active {
	overflow: hidden; /* 背景スクロール禁止 */
}

/* -----------------------------------------------------
 * 11. 縦長動画対応（ショート・リールなど）
 * ----------------------------------------------------- */
.video-frame[width="120"] {
	max-width: min(500px, 90vw);
}

@media (max-width:768px) {
	.video-frame[height="12"] {
		max-width: 80vw;
	}
}

/* -----------------------------------------------------
 * 12. 縦型ショート動画用クラス
 * ----------------------------------------------------- */
.video-frame.short-vertical {
	max-width: 33.33%;
	margin-left: auto;
	margin-right: auto;
}

@media (max-width:768px) {
	.video-frame.short-vertical {
		max-width: 80vw;
	}
}


/* -----------------------------------------------------
 * プロンプト例（長文のみ折りたたみ）
 * ----------------------------------------------------- */
.c-prompt {
  background-color: #f9fafc;
  border: 1px solid var(--cre-color-bubble-border);
  border-radius: 8px;
  font-family: "Roboto Mono", "Menlo", "Consolas", monospace;
  font-size: 0.88rem;
  line-height: 1.7;
  color: #333;
  padding: 1rem 1.2rem;
  margin: 2rem 0;
  white-space: pre-wrap;
  overflow: hidden;
  position: relative;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
  transition: max-height 0.4s ease, box-shadow 0.3s ease;
  white-space: pre-line;
  text-indent: 0;
}

.c-prompt.collapsible {
  cursor: pointer;
}

.c-prompt__label {
  text-align: center;
  font-size: 0.8rem;
  color: var(--cre-color-accent-blue-dark);
  background: linear-gradient(to top, #f9fafc 65%, transparent);
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0.6rem 0 0.5rem;
  pointer-events: none; /* テキストをクリックしても邪魔しない */
}

.c-prompt.expanded {
  overflow: visible;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.07);
  padding-bottom: 3rem; /* 閉じるラベル分の余白を追加 */
}

.c-prompt.static {
  /* 短文は通常表示 */
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.03);
}

@media (max-width: 599px) {
  .c-prompt {
    font-size: 0.82rem;    /* 少し小さく */
    padding: 0.8rem 1rem;  /* 左右の余白を詰めすぎない */
  }

  .c-prompt__label {
    font-size: 0.75rem;
    padding: 0.5rem 0 0.4rem;
  }
}



/* -----------------------------------------------------
 * GPTs比較テーブルスタイル
 * ----------------------------------------------------- */
.c-table--compare {
  width: 100%;
  border-collapse: collapse;
  margin: 2.5rem 0;
  font-size: 0.95rem;
  border: 1px solid var(--cre-color-bubble-border);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.04);
}

.c-table--compare th,
.c-table--compare td {
  padding: 1rem 1.2rem;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid var(--cre-color-bubble-border);
}

.c-table--compare th {
  background-color: #f2f6fb;
  font-weight: bold;
  color: var(--cre-color-accent-dark);
  white-space: nowrap;
}

.c-table--compare tbody tr:nth-child(even) {
  background-color: var(--cre-color-bg-light);
}

.c-table--compare tbody tr:hover {
  background-color: #f9fbfe;
  transition: 0.2s ease;
}

@media (max-width: 768px) {
  .c-table--compare th,
  .c-table--compare td {
    padding: 0.8rem 0.9rem;
    font-size: 0.9rem;
  }
}




/* -----------------------------------------------------
 * タイムライン（グラデ背景見出し・丸なし番号）
 * ----------------------------------------------------- */
.c-timeline {
  position: relative;
  margin: 3rem 0 4rem;
  padding-left: 2.5rem;
}

/* 左の縦ライン */
.c-timeline::before {
  content: "";
  position: absolute;
  left: 1.1rem;
  top: 0;
  bottom: 0;
  width: 1.5px;
  background: #d7dbe6;
}

/* 各ステップブロック */
.c-timeline__item {
  position: relative;
  padding-bottom: 3rem;
  margin-bottom: 3rem;
}

/* ステップ見出し（横幅いっぱい・グラデ背景） */
.c-timeline__header {
  position: relative;
  margin-left: -2.5rem;
  padding: 0.9rem 1.5rem 0.9rem 3.2rem;
  color: var(--cre-color-text-light);
  font-weight: 700;
  font-size: 1.05rem;
  background: linear-gradient(90deg, var(--cre-color-accent-dark), var(--cre-color-accent-light));
  /*border-radius: 4px;*/
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

/* ステップ番号（シンプルテキスト） */
.c-timeline__step {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 2rem;
  text-align: center;
  font-weight: 700;
  color: var(--cre-color-text-light);
  font-size: 1.05rem;
  background: transparent;
}

/* ステップ本文 */
.c-timeline__desc {
  font-size: 0.94rem;
  line-height: 1.8;
  color: var(--cre-color-text);
  padding-left: 2.5rem;
  margin-top: 1.2rem;
}

/* タイムライン内の .c-prompt 左寄せ修正 */
.c-timeline__desc .c-prompt {
  margin-left: -2.5rem;  /* desc の padding-left を打ち消す */
  width: calc(100% + 2.5rem);
}


/* スマホ対応 */
@media (max-width: 599px) {
  .c-timeline {
    padding-left: 2rem;
  }
  .c-timeline__header {
    margin-left: -2rem;
    padding-left: 2.8rem;
    font-size: 1rem;
  }
  .c-timeline__step {
    font-size: 0.95rem;
    left: -0.1rem;
  }
}






   /* 画像生成AIページ専用タイムライン */
   .imgai-timeline {
      position: relative;
      margin: 2rem 0;
      padding-left: 1.5rem;
      border-left: 2px solid #e0e4ea;
   }

   .imgai-timeline-item {
      position: relative;
      margin-bottom: 2rem;
      padding-left: 1rem;
   }

   .imgai-timeline-item::before {
      content: "";
      position: absolute;
      left: -10px;
      top: 6px;
      width: 14px;
      height: 14px;
      background: #4a90e2;
      border-radius: 50%;
      border: 2px solid #fff;
      box-shadow: 0 0 0 2px #e0e4ea;
   }

   .imgai-timeline-year {
      font-weight: 700;
      color: #222;
      font-size: 1.05rem;
      margin-bottom: 0.25rem;
   }

   .imgai-timeline-content {
      color: #444;
      line-height: 1.8;
      font-size: 0.95rem;
   }

   @media (max-width: 768px) {
      .imgai-timeline {
         padding-left: 1rem;
         border-left: 1.5px solid #e6e8ec;
      }

      .imgai-timeline-item {
         margin-bottom: 1.5rem;
      }

      .imgai-timeline-year {
         font-size: 1rem;
      }

      .imgai-timeline-content {
         font-size: 0.9rem;
      }
   }




/* -----------------------------------------------------
 * 比較事例ボックス（△悪い例・○良い例）
 * ----------------------------------------------------- */
.c-compare {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin: 3rem 0;
}

.c-compare__item {
  flex: 1 1 48%;
  border-radius: 8px;
  padding: 1.2rem 1.5rem 1.2rem 2.8rem;
  position: relative;
  line-height: 1.8;
  border: 1px solid var(--cre-color-bubble-border);
  background: var(--cre-color-base);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.c-compare__item:hover {
  transform: translateY(-2px);
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.08);
}

/* アイコン共通 */
.c-compare__item::before {
  font-size: 1.2rem;
  font-weight: 700;
  position: absolute;
  top: 0.9rem;
  left: 1rem;
}

/* △悪い例 */
.c-compare__item--bad {
  background-color: #fff8f2; /* ごく薄いオレンジ */
  border: 1px solid #f2c198;
}
.c-compare__item--bad::before {
  content: "△";
  color: #f28b2d; /* オレンジ */
}

/* ○良い例 */
.c-compare__item--good {
  background-color: #f8fff8; /* ごく薄いグリーン */
  border: 1px solid #bde4b4;
}
.c-compare__item--good::before {
  content: "○";
  color: #39b56d; /* グリーン */
}

/* スマホ対応 */
@media (max-width: 768px) {
  .c-compare {
    flex-direction: column;
  }
  .c-compare__item {
    flex: 1 1 100%;
  }
}



/* -----------------------------------------------------
 * 吹き出しキャプション（右ライン補正最終版）
 * ----------------------------------------------------- */

.c-img-caption {
  position: relative;
  display: inline-block;
  background-color: var(--cre-color-bg-light);
  border: 1px solid var(--cre-color-bubble-border);
  border-radius: 10px;
  padding: 0.6em 1em;
  color: var(--cre-color-text);
  font-size: 0.85rem;
  line-height: 1.6;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  max-width: 80%;
  margin: 0.8rem auto 1rem;
}

/* ---------- 左寄せ ---------- */
.c-img-caption--left {
  text-align: left;
  margin-left: 0;
}
.c-img-caption--left::before {
  content: "";
  position: absolute;
  top: -6px;
  left: 26px;
  width: 12px;
  height: 12px;
  background: var(--cre-color-bg-light);
  transform: rotate(45deg);
  border-top: 1px solid var(--cre-color-bubble-border);
  border-left: 1px solid var(--cre-color-bubble-border);
  z-index: 1;
}


/* ---------- 右寄せ ---------- */
.c-img-caption--right {
  text-align: right;
  margin-left: auto;
  margin-right: 0;
  display: block;
}
.c-img-caption--right::before {
  /* 背景のしっぽ */
  content: "";
  position: absolute;
  top: -6px;
  right: 26px;
  width: 12px;
  height: 12px;
  background: var(--cre-color-bg-light);
  transform: rotate(45deg);
  border-top: 1px solid var(--cre-color-bubble-border);
  border-left: 1px solid var(--cre-color-bubble-border);
  z-index: 1; /* ← 背景を下に */
}


/* ---------- ラップ ---------- */
.c-img-caption-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-top: -0.5rem;
}

/* ---------- スマホ ---------- */
@media (max-width: 599px) {
  .c-img-caption {
    font-size: 0.8rem;
    max-width: 100%;
  }
  .c-img-caption--left::before,
  .c-img-caption--left::after {
    left: 16px;
  }
  .c-img-caption--right::before,
  .c-img-caption--right::after {
    right: 16px;
  }
}

/* -----------------------------------------------------
 * レスポンシブ2カラムレイアウト
 * PCでは横並び2つ、スマホでは縦並び
 * ----------------------------------------------------- */
.two-column {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin: 2rem 0;
}

/* スマホ対応：縦並びに変更 */
@media (max-width: 768px) {
  .two-column {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

/* -----------------------------------------------------
 * 高さ制限クラス（画像用・強制収束）
 * ----------------------------------------------------- */

/* 画像の高さを強制指定（幅は自動調整） */
.img-height-100 img { height: 100px !important; width: auto; object-fit: cover; }
.img-height-150 img { height: 150px !important; width: auto; object-fit: cover; }
.img-height-200 img { height: 200px !important; width: auto; object-fit: cover; }
.img-height-250 img { height: 250px !important; width: auto; object-fit: cover; }
.img-height-300 img { height: 300px !important; width: auto; object-fit: cover; }

/* コンテナ全体の高さを強制指定 */
.content-height-200 { height: 200px; }
.content-height-250 { height: 250px; }
.content-height-300 { height: 300px; }
.content-height-400 { height: 400px; }

/* 2カラム用：画像を強制高さ、コンテナも強制高さ */
.two-column .img-constrained {
  height: 300px;
}

.two-column .img-constrained img {
  height: 200px !important;
  width: 100%;
  object-fit: cover;
}


/* ベース：スマホなど狭い画面は幅100% */
.narrow-600 {
  width: 100%;
  margin: 0 auto; /* 中央寄せ（幅が狭いときも効いて問題なし） */
}

/* 画面がある程度広いときは最大600pxで中央に固定 */
@media (min-width: 768px) {
  .narrow-600 {
    max-width: 600px;
  }
}



/* -----------------------------------------------------
 * 7. Lightbox (Image Zoom)
 * ----------------------------------------------------- */
#lightbox-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

#lightbox-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

#lightbox-img {
    max-width: 95%;
    max-height: 95%;
    object-fit: contain;
    transition: transform 0.1s ease-out;
    user-select: none;
    -webkit-user-select: none;
    cursor: zoom-out;
}

/* Target images for zoom cursor */
.c-img, .c-img--center, .c-img--full-width, .c-img--bleed, .c-img--center-box {
    cursor: zoom-in;
}



/* -----------------------------------------------------
 * 13. ボタンスタイル
 * ----------------------------------------------------- */
.c-btn--regist {
   display: block;
   width: 80%;
   margin: 4rem auto;
   padding: 1.2rem 1rem;
   background-color: var(--cre-color-bg-light);
   color: var(--cre-color-accent);
   font-weight: bold;
   font-size: 1.1rem;
   text-align: center;
   border-radius: 8px;
   position: relative;
   transition: all 0.3s ease;
   box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
   text-decoration: none;
}

.c-btn--regist:hover {
   transform: translateY(-3px);
   box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
   text-decoration: none;
   opacity: 0.9;
}

/* スマホ対応 */
@media (max-width: 768px) {
   .c-btn--regist {
      width: 90%;
      font-size: 1rem;
   }
}

/* リンクアイコンの変更（右矢印のみを表示） */
a.c-btn--regist[target="_blank"]::after {
   font-family: "Font Awesome 5 Free";
   content: "\f054";
   /* fa-chevron-right */
   font-weight: 900;
   position: absolute;
   right: 1.5rem;
   top: 50%;
   transform: translateY(-50%);
   margin-left: 0;
   font-size: 1rem;
   color: var(--cre-color-accent);
   opacity: 1;
}