/* 全体のスタイル */
:root {
	--primary-color: #732b33; /* メインカラー（えんじ） */
	--accent-color: #ff8c00;  /* アクセントカラー（オレンジ系） */
	--text-color: #333333;
	--background-color: #f0f2f5; /* ページ全体の背景 */
	--white-bg: #ffffff;
	scroll-behavior: smooth; /* スムーズスクロール */
}

body {
	font-family: 'Helvetica Neue', 'Arial', 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', 'Meiryo', sans-serif;
	margin: 0;
	color: var(--text-color);
	background-color: var(--background-color);
	line-height: 1.7;
}

/* スマホでのみ改行させるためのクラス（PCでは非表示） */
.br-sp {
	display: none;
}

.page-wrapper {
	max-width: 2000px;
	margin: 0 auto;
	background-color: var(--white-bg);
	box-shadow: 0 0 25px rgba(0,0,0,0.1);
}

.container {
	max-width: 960px;
	margin: 0 auto;
	padding: 0 20px;
}

.section-title {
	text-align: center;
	font-size: 3em;
	margin-bottom: 35px;
	font-weight: bold;
}

.highlight {
	color: var(--primary-color);
	font-weight: bold;
}

/* 1. ファーストビュー (画像のみ) */
.hero {
	line-height: 0;
}

.hero img {
	width: 100%;
	height: auto;
	display: block;
}

/* 2. 導入・CTAエリア */
.intro {
	background-color: var(--white-bg);
	text-align: center;
	padding: 35px 20px;
}

.catchphrase {
	font-size: 1.6em;
	font-weight: bold;
	color: var(--primary-color);
}

.main-title {
	font-size: 2.8em;
	margin: 15px 0;
	line-height: 1.4;
	font-weight: bold;
}

.subtitle {
	font-size: 1.2em;
	margin-bottom: 40px;
}

/* 汎用CTAボタン */
.cta-button {
	display: inline-block;
	padding: 18px 50px;
	background-color: var(--accent-color);
	color: white;
	text-decoration: none;
	font-size: 1.3em;
	font-weight: bold;
	border-radius: 8px;
	transition: all 0.3s ease;
	box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.cta-button:hover {
	background-color: #ff9d2a;
	transform: translateY(-3px);
	box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.cta-button.primary .button-main-text {
	display: block;
	font-size: 1.2em;
}
.cta-button.primary .button-sub-text {
	display: block;
	font-size: 0.8em;
	margin-top: 5px;
	opacity: 0.9;
}

/* 3. 問題提起・共感エリア */
.problems {
	background-color: var(--light-gray-bg);
}

.problem-list {
	padding-left: 20px;
	max-width: 800px;
	margin: 0 auto;
}

.problem-list li {
	background-color: #fff;
	padding: 25px;
	margin-bottom: 20px;
	font-size: 1.5em;
	border-radius: 8px;
	box-shadow: 0 2px 8px rgba(0,0,0,0.05);
	border-left: 5px solid var(--primary-color);
}

/* 4. 解決策・ボディコピーエリア */
.solution {
	padding: 30px 0;
	background-color: var(--white-bg);
}

.solution-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 50px;
	align-items: center;
}

.solution-image {
	width: 100%;
	border-radius: 12px;
	box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.solution-text h3 {
	font-size: 1.8em;
	color: var(--primary-color);
	margin-top: 0;
}

.solution-text p {
	font-size: 1.5em;
}

/* 5. 最終CTAエリア */
.cta-section {
	background-color: var(--primary-color);
	color: white;
	padding: 80px 20px;
	text-align: center;
}

.cta-title {
	color: white;
}

.cta-description {
	font-size: 1.2em;
	margin-bottom: 40px;
	line-height: 1.8;
}

.cta-button-container {
	text-align: center;
}

/*----------------------------------------
    Footer
----------------------------------------*/
.footer {
  background: #1E1E1E;
  padding: 20px;
  text-align: center;
  margin-top: 60px;
}
.footer a {
  display: block;
  color: #ffffff;
  text-decoration: none;
  font-size: 12px;
}
.footer img {
  width: 240px;
  display: block;
  margin: 0 auto 10px auto;
}
.footer address {
  font-size: 10px;
  font-style: normal;
  color: #ffffff;
  margin-top: 20px;
}

/* ▼▼▼ サンクスページ用のスタイル（ここから追加） ▼▼▼ */
.thankyou-wrapper {
    max-width: 960px;
    margin: 0 auto;
    padding: 0 20px;
    background-color: #fff;
}
.thankyou-header {
    padding: 20px 0;
    border-bottom: 1px solid #eee;
}
.thankyou-header img {
    height: 40px;
    width: auto;
}
.thankyou-main {
    text-align: center;
}
.message-bar {
    margin-top: 3rem;
    color: #fff;
    background-color: #000;
    padding: 1em;
    font-size: 1.2rem;
    font-weight: bold;
}
.thankyou-body-text {
    font-size: 1.2rem;
    margin: 3rem 0;
    line-height: 1.8;
    text-align: left;
    display: inline-block;
}
.thankyou-image {
    width: 100%;
    height: auto;
    margin-top: 1rem;
}
.info-box {
    max-width: 960px;
    margin: 3rem auto 5rem;
    text-align: left;
    line-height: 1.7;
    border: 1px solid #ccc;
    padding: 30px;
    box-sizing: border-box;
}
.info-box a {
    color: #0F198F;
    text-decoration: underline;
}
.sp-only { display: none; }
/* ▲▲▲ サンクスページ用のスタイル（ここまで追加） ▲▲▲ */


/* レスポンシブ対応 */
@media (max-width: 768px) {
	/* LP用 */
	.section-title { font-size: 1.8em; }
	.main-title { font-size: 2.2em; }
	.solution-grid { grid-template-columns: 1fr; }
	.br-sp {
		display: block;
	}

	/* サンクスページ用 */
    .pc-only { display: none; }
    .sp-only { display: block; }
    .thankyou-body-text {
        font-size: 1rem;
    }
}