@charset "utf-8";
/* ai-tel.css — AI電話ページ専用スタイル */
/* style.css のデザインシステムを継承 */
/* メインカラー: #ff717b（ピンク） / サブ: #fe7f47（オレンジ） / グリーン: #bcd843 */

/* ============================================================
   ① 導入バナー（intro）
   ============================================================ */
.ai-tel-intro {
	text-align: center;
	padding: 50px 10px 40px;
}

/* 大型バナー */
.ai-tel-intro__banner {
	display: block;
	max-width: 1000px;
	margin: 0 auto 30px;
	padding: 40px 40px 36px;
	background: #ff717b;
	border-radius: 20px;
	color: #ffffff;
	box-shadow: 0 8px 24px rgba(255, 113, 123, 0.4);
}

/* 日付行 */
.ai-tel-intro__date {
	font-size: 22px;
	font-weight: bold;
	letter-spacing: 0.08em;
	margin-bottom: 12px;
	opacity: 0.95;
}

/* 日付内の数字部分（タイトルと同サイズ） */
.ai-tel-intro__date--num {
	font-size: 44px;
	line-height: 1;
	vertical-align: baseline;
}

/* メイン見出し */
.ai-tel-intro__title {
	font-size: 44px;
	font-weight: bold;
	line-height: 1.35;
	letter-spacing: 0.04em;
	margin: 0;
}

.ai-tel-intro__lead {
	font-size: 18px;
	line-height: 1.8;
	color: #555;
	max-width: 1000px;
	margin: 0 auto;
}


/* ============================================================
   ② 電話番号・操作方法（phone）
   ============================================================ */
.ai-tel-phone {
	padding: 60px 10px;
}

/* 電話番号カード 2列 */
.ai-tel-phone__cards {
	display: flex;
	gap: 24px;
	justify-content: center;
	flex-wrap: wrap;
	max-width: 1000px;
	margin: 0 auto 30px;
}

.ai-tel-phone__card {
	flex: 1;
	min-width: 260px;
	padding: 28px 24px;
	border-radius: 12px;
	text-align: center;
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.ai-tel-phone__card--outpatient {
	background: #fff0f1;
	border: 2px solid #ff717b;
}

.ai-tel-phone__card--kenshin {
	background: #f0f8e8;
	border: 2px solid #bcd843;
}

.ai-tel-phone__card-label {
	font-size: 16px;
	font-weight: bold;
	margin-bottom: 10px;
	color: #555;
}

.ai-tel-phone__card--outpatient .ai-tel-phone__card-label {
	color: #ff717b;
}

.ai-tel-phone__card--kenshin .ai-tel-phone__card-label {
	color: #7aaa00;
}

.ai-tel-phone__card-num {
	font-size: 30px;
	font-weight: bold;
	margin-bottom: 14px;
	letter-spacing: 0.03em;
}

.ai-tel-phone__card--outpatient .ai-tel-phone__card-num a {
	color: #ff717b;
	text-decoration: none;
}

.ai-tel-phone__card--kenshin .ai-tel-phone__card-num a {
	color: #7aaa00;
	text-decoration: none;
}

.ai-tel-phone__card-num a:hover {
	text-decoration: underline;
}

.ai-tel-phone__card-key {
	font-size: 16px;
	color: #555;
}

/* 番号バッジ */
.ai-tel-key-badge {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	background: #ff717b;
	color: #ffffff;
	font-size: 18px;
	font-weight: bold;
	border-radius: 50%;
	margin: 0 4px;
	vertical-align: middle;
}

.ai-tel-phone__card--kenshin .ai-tel-key-badge {
	background: #bcd843;
}

/* ステップ */
.ai-tel-steps {
	display: flex;
	align-items: stretch;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 8px;
	margin: 30px auto;
	max-width: 1000px;
}

.ai-tel-steps__item {
	flex: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	background: #ffffff;
	border: 2px solid #ff717b;
	border-radius: 10px;
	padding: 16px 20px;
	min-width: 140px;
	text-align: center;
	box-shadow: 0 2px 8px rgba(255, 113, 123, 0.12);
}

.ai-tel-steps__num {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	background: #ff717b;
	color: #ffffff;
	font-size: 18px;
	font-weight: bold;
	border-radius: 50%;
	margin-bottom: 10px;
}

.ai-tel-steps__text {
	font-size: 16px;
	line-height: 1.6;
	color: #555;
}

.ai-tel-steps__text strong {
	color: #ff717b;
	font-size: 18px;
}

.ai-tel-steps__arrow {
	color: #ff717b;
	font-size: 20px;
	display: flex;
	align-items: center;
}

/* かんたん操作ガイド 見出し上マージン */
.ai-tel-phone .headline03 {
	margin-top: 50px;
}

/* ガイダンス音声イメージ */
.ai-tel-guidance {
	display: flex;
	align-items: flex-start;
	gap: 20px;
	max-width: 1000px;
	margin: 30px auto 0;
	background: #fff6df;
	border-left: 5px solid #fe7f47;
	border-radius: 8px;
	padding: 24px 28px;
}

.ai-tel-guidance__icon {
	flex-shrink: 0;
}

/* tel.png アイコン共通サイズ */
.ai-tel-icon {
	width: 40px;
	height: auto;
	vertical-align: middle;
}


.ai-tel-guidance__text p {
	margin: 0 0 8px;
	font-size: 16px;
	line-height: 1.8;
	max-width: 100%;
}

.ai-tel-guidance__text p:last-child {
	margin-bottom: 0;
}

.ai-tel-guidance__text strong {
	color: #fe7f47;
	font-size: 18px;
}

.ai-tel-scenario-body p strong {
	color: #fe7f47;
	font-size: 16px;
}

/* 手順例セクション 末尾注釈 */
.ai-tel-footnote {
	max-width: 1000px;
	margin: 0 auto;
	font-size: 14px;
	color: #888;
	line-height: 1.7;
}

/* ============================================================
   ③ AI電話で話せること（topics）
   ============================================================ */
.ai-tel-topics {
	padding: 60px 10px;
}

/* 1列リスト */
.ai-tel-topics__list {
	max-width: 1000px;
	margin: 10px auto 0;
}

/* 「など」テキスト */
.ai-tel-topics__etc {
	max-width: 1000px;
	margin: 0 auto 30px;
	padding-left: 1.5em;
	font-size: 16px;
	color: #6e6e6e;
}

/* スタッフへ注記（通常テキスト） */
.ai-tel-note-box {
	text-align: center;
	font-size: 16px;
	line-height: 1.8;
}

/* ============================================================
   ④ 会話例チャット（chat）
   ============================================================ */
.ai-tel-examples {
	padding: 60px 10px;
}

/* 見出しとチャットを同じ幅でまとめるグループ */
.ai-tel-chat__group {
	max-width: 1000px;
	margin: 40px auto 60px;
	padding-top: 40px;
	border-top: 1px solid #eeeeee;
}

/* グループ内の見出しは幅・余白をリセットしてグループに合わせる */
.ai-tel-chat__heading {
	max-width: 100%;
	margin-bottom: 16px;
}

/* 最初のグループは上のボーダー・マージン不要 */
.ai-tel-chat__group:first-of-type {
	margin-top: 0;
	padding-top: 0;
	border-top: none;
}

.ai-tel-chat {
	max-width: 1000px;
	margin: 0 auto 0;
	padding: 24px;
	background: #fafafa;
	border-radius: 12px;
	border: 1px solid #e8e8e8;
}

/* グループ内では余白なし（グループ側で管理） */
.ai-tel-chat__group .ai-tel-chat {
	margin: 0;
}

.ai-tel-chat__row {
	display: flex;
	align-items: flex-end;
	gap: 8px;
	margin-bottom: 18px;
}

.ai-tel-chat__row--user {
	flex-direction: row-reverse;
}

.ai-tel-chat__name {
	font-size: 16px;
	font-weight: bold;
	color: #888;
	flex-shrink: 0;
	margin-bottom: 2px;
}

.ai-tel-chat__bubble {
	max-width: 72%;
	padding: 14px 20px;
	border-radius: 18px;
	font-size: 16px;
	line-height: 1.75;
}

.ai-tel-chat__bubble--user {
	background: #ff717b;
	color: #ffffff;
	border-bottom-right-radius: 4px;
}

.ai-tel-chat__bubble--ai {
	background: #ffffff;
	color: #555;
	border: 1px solid #ddd;
	border-bottom-left-radius: 4px;
}

/* ============================================================
   電話番号不変 アンダーライン
   ============================================================ */
p.ai-tel-unchanged {
	max-width: 1000px;
	margin: 0 auto 30px;
	font-size: 18px;
	font-weight: bold;
	color: #444;
	text-align: center;
	line-height: 1.6;
}

p.ai-tel-unchanged .ai-tel-icon {
	width: 28px;
	margin-right: 8px;
	vertical-align: middle;
}

p.ai-tel-unchanged em {
	font-style: normal;
	color: #ff717b;
	text-decoration: underline;
	text-underline-offset: 3px;
}

/* ============================================================
   SPレスポンシブ（max-width: 640px）
   ============================================================ */
@media screen and (max-width: 640px) {

	.ai-tel-intro__banner {
		padding: 28px 20px;
		border-radius: 14px;
	}

	.ai-tel-intro__date {
		font-size: 17px;
	}

	/* 日付内の数字部分（タイトルと同サイズ） */
	.ai-tel-intro__date--num {
		font-size: 28px;
	}

	.ai-tel-intro__title {
		font-size: 20px;
	}

	.ai-tel-intro__lead {
		font-size: 16px;
	}

	.ai-tel-phone__cards {
		flex-direction: column;
		gap: 16px;
	}

	.ai-tel-phone__card {
		max-width: 100%;
	}

	.ai-tel-phone__card-num {
		font-size: 26px;
	}

	.ai-tel-steps {
		flex-direction: column;
		align-items: stretch;
	}

	.ai-tel-steps__item {
		flex-direction: row;
		text-align: left;
		gap: 14px;
		min-width: auto;
	}

	.ai-tel-steps__num {
		margin-bottom: 0;
		flex-shrink: 0;
	}

	.ai-tel-steps__arrow {
		transform: rotate(90deg);
		align-self: center;
	}

	.ai-tel-guidance {
		flex-direction: column;
		gap: 10px;
		padding: 18px;
	}

	.ai-tel-guidance__icon {
		display: none;
	}

	.ai-tel-chat {
		padding: 16px;
	}

	.ai-tel-chat__bubble {
		max-width: 85%;
		font-size: 16px;
	}

}