@charset "utf-8";

/* ============================================
   メインスタイルシート
   原稿サイト: https://www.life-management-tokai.com/
   ============================================ */

/* 基本設定 */
:root {
	--primary-color: #0073aa;
	--secondary-color: #005177;
	--accent-color: #3498db;
	--text-color: #333333;
	--text-dark: #2c3e50;
	--bg-color: #ffffff;
	--bg-light: #f8f9fa;
	--border-color: #dddddd;
	--shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
	--shadow-lg: 0 4px 12px rgba(0, 0, 0, 0.15);
	--transition: all 0.3s ease;
	--font-size-base: 1.4rem;
	--line-height-base: 1.6;
}

/* リセットと基本スタイル */
* {
	box-sizing: border-box;
}

body {
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Meiryo", "Yu Gothic", "MS PGothic", sans-serif;
	color: var(--text-color);
	line-height: var(--line-height-base);
	font-size: var(--font-size-base);
	background-color: var(--bg-color);
	/* PC版では固定フッターなし（padding-bottom不要） */
}

/* リンクスタイル */
a {
	color: var(--primary-color);
	text-decoration: none;
	transition: var(--transition);
}

a:hover,
a:focus {
	color: var(--secondary-color);
	text-decoration: underline;
}

/* 画像の基本スタイル */
img {
	max-width: 100%;
	height: auto;
	display: block;
}

/* コンテナ */
.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

.inner {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

.inner_min {
	max-width: 900px;
	margin: 0 auto;
}

/* ヘッダー */
header {
	background-color: var(--bg-color);
	border-bottom: 1px solid var(--border-color);
	padding: 20px 0;
	position: sticky;
	top: 0;
	z-index: 100;
	box-shadow: var(--shadow);
}

header .container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
}

header .logo {
	max-height: 50px;
	width: auto;
	height: auto;
}

/* モバイルメニュートグルボタン（デスクトップでは非表示） */
.mobile-menu-toggle {
	display: none;
}

header .header-nav {
	display: flex;
	align-items: center;
}

header .header-nav-list {
	display: flex;
	list-style: none;
	gap: 20px;
	margin: 0;
	padding: 0;
	align-items: center;
	flex-wrap: wrap;
}

header .header-nav-list li {
	margin: 0;
}

header .header-nav-list a {
	color: var(--text-color);
	text-decoration: none;
	font-size: 0.95rem;
	transition: var(--transition);
	padding: 5px 0;
	position: relative;
}

header .header-nav-list a::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0;
	height: 2px;
	background-color: var(--primary-color);
	transition: width 0.3s ease;
}

header .header-nav-list a:hover::after,
header .header-nav-list a:focus::after {
	width: 100%;
}

header .header-nav-list a:hover,
header .header-nav-list a:focus {
	color: var(--primary-color);
	text-decoration: none;
}

header .header-nav-list .btn-contact {
	background-color: var(--primary-color);
	color: var(--bg-color);
	padding: 8px 20px;
	border-radius: 4px;
	margin-left: 10px;
}

header .header-nav-list .btn-contact::after {
	display: none;
}

header .header-nav-list .btn-contact:hover {
	background-color: var(--secondary-color);
	color: var(--bg-color);
	text-decoration: none;
}

/* メインコンテンツ */
.main-contents {
	padding: 40px 0;
	min-height: 60vh;
}

/* トップページ - ヒーローセクション */
.hero-section {
	background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
	padding: 100px 0;
	text-align: center;
	position: relative;
	overflow: hidden;
}

.hero-section::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: url('../images/page/top/hero-bg.jpg') center/cover no-repeat;
	opacity: 0.1;
	z-index: 0;
}

.hero-section .container {
	position: relative;
	z-index: 1;
}

.hero-content {
	max-width: 900px;
	margin: 0 auto;
	padding: 20px;
}

.hero-image {
	margin-bottom: 30px;
}

.hero-image img {
	max-width: 100%;
	height: auto;
	margin: 0 auto;
	border-radius: 8px;
	box-shadow: var(--shadow-lg);
}

.hero-tagline {
	font-size: 1.2rem;
	color: var(--primary-color);
	margin-bottom: 20px;
	font-weight: 600;
	letter-spacing: 2px;
	text-transform: uppercase;
}

.hero-title {
	font-size: 3.5rem;
	font-weight: bold;
	margin-bottom: 20px;
	color: var(--text-dark);
	line-height: 1.3;
}

.hero-product-name {
	color: var(--primary-color);
	font-size: 4rem;
	display: block;
	margin-top: 10px;
}

.hero-subtitle {
	font-size: 1.6rem;
	margin-bottom: 20px;
	color: var(--text-dark);
	font-weight: 500;
}

.hero-catchcopy {
	font-size: 1.3rem;
	margin-top: 20px;
	margin-bottom: 30px;
	color: var(--text-color);
	line-height: 1.8;
}

.hero-cta {
	margin-top: 40px;
}

.btn-large {
	padding: 18px 50px;
	font-size: 1.2rem;
}

/* セクション共通 */
section {
	padding: 80px 0;
	position: relative;
}

.section-title {
	font-size: 2.5rem;
	font-weight: bold;
	margin-bottom: 40px;
	text-align: center;
	color: var(--text-dark);
	line-height: 1.3;
	position: relative;
	padding-bottom: 20px;
}

.section-title::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 80px;
	height: 4px;
	background-color: var(--primary-color);
	border-radius: 2px;
}

.section-description {
	text-align: center;
	font-size: 1.2rem;
	margin-bottom: 50px;
	color: var(--text-color);
	line-height: 1.8;
	max-width: 900px;
	margin-left: auto;
	margin-right: auto;
}

.large-text {
	font-size: 1.3rem;
	line-height: 1.8;
	font-weight: 500;
}

.emphasis-text {
	font-size: 1.8rem;
	font-weight: bold;
	color: var(--primary-color);
	text-align: center;
	margin-top: 30px;
}

.subsection-title {
	font-size: 2rem;
	margin-bottom: 25px;
	color: var(--text-dark);
	font-weight: 600;
}

.sub-subsection-title {
	font-size: 1.5rem;
	margin-bottom: 20px;
	color: var(--text-dark);
	font-weight: 500;
}

/* センシンレン®紹介セクション */
.senshinren-intro-section {
	background-color: var(--bg-color);
	padding: 100px 0;
}

.senshinren-intro-content {
	display: grid;
	grid-template-columns: 1fr 2fr;
	gap: 60px;
	align-items: start;
	max-width: 1100px;
	margin: 0 auto;
}

.senshinren-image {
	text-align: center;
}

.senshinren-image img {
	max-width: 100%;
	height: auto;
	border-radius: 12px;
	box-shadow: var(--shadow-lg);
}

.image-caption {
	margin-top: 15px;
	font-size: 0.95rem;
	color: var(--text-color);
	font-style: italic;
}

.senshinren-text {
	padding: 20px 0;
}

.senshinren-name {
	background-color: var(--bg-light);
	padding: 15px 20px;
	border-radius: 8px;
	margin-bottom: 25px;
	border-left: 4px solid var(--primary-color);
}

.senshinren-text p {
	margin-bottom: 20px;
	font-size: 1.1rem;
	line-height: 1.8;
}

/* センシンレン®効能セクション */
.senshinren-benefits-section {
	background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
	padding: 100px 0;
}

.benefits-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 40px;
	margin-top: 50px;
	margin-bottom: 60px;
}

.benefit-item {
	background-color: var(--bg-color);
	padding: 40px 30px;
	border-radius: 12px;
	text-align: center;
	transition: var(--transition);
	border: 2px solid transparent;
	box-shadow: var(--shadow);
}

.benefit-item:hover {
	border-color: var(--primary-color);
	transform: translateY(-10px);
	box-shadow: var(--shadow-lg);
}

.benefit-icon {
	font-size: 3rem;
	margin-bottom: 20px;
}

.benefit-title {
	font-size: 1.3rem;
	margin-bottom: 15px;
	color: var(--text-dark);
	font-weight: 600;
}

.benefit-description {
	font-size: 1rem;
	line-height: 1.7;
	color: var(--text-color);
}

.benefits-additional {
	text-align: center;
	max-width: 900px;
	margin: 60px auto 0;
	padding: 40px;
	background-color: var(--bg-color);
	border-radius: 12px;
	box-shadow: var(--shadow);
}

/* 特許セクション */
.patent-section {
	background-color: var(--bg-color);
	padding: 100px 0;
}

.patent-list {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
	gap: 40px;
	margin-top: 50px;
}

.patent-item {
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	color: var(--bg-color);
	padding: 40px 30px;
	border-radius: 12px;
	position: relative;
	overflow: hidden;
	transition: var(--transition);
}

.patent-item::before {
	content: '';
	position: absolute;
	top: -50%;
	right: -50%;
	width: 200%;
	height: 200%;
	background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
	transition: var(--transition);
}

.patent-item:hover {
	transform: translateY(-10px);
	box-shadow: 0 15px 30px rgba(102, 126, 234, 0.4);
}

.patent-item:hover::before {
	top: -25%;
	right: -25%;
}

.patent-badge {
	display: inline-block;
	background-color: rgba(255, 255, 255, 0.2);
	padding: 8px 20px;
	border-radius: 20px;
	font-size: 0.9rem;
	font-weight: 600;
	margin-bottom: 20px;
	border: 2px solid rgba(255, 255, 255, 0.3);
}

.patent-title {
	font-size: 1.5rem;
	margin-bottom: 15px;
	font-weight: bold;
	color: var(--bg-color);
	position: relative;
	z-index: 1;
}

.patent-description {
	font-size: 1.05rem;
	line-height: 1.7;
	color: rgba(255, 255, 255, 0.95);
	position: relative;
	z-index: 1;
}

/* 自然の力セクション */
.nature-power-section {
	background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
	color: var(--bg-color);
	padding: 100px 0;
	text-align: center;
}

.nature-power-section .section-title {
	color: var(--bg-color);
}

.nature-power-section .section-title::after {
	background-color: var(--bg-color);
}

.nature-content {
	max-width: 900px;
	margin: 0 auto;
	padding: 40px;
}

.nature-content p {
	font-size: 1.2rem;
	line-height: 1.9;
	margin-bottom: 25px;
	color: rgba(255, 255, 255, 0.95);
}

.nature-content .highlight-text {
	color: #3498db;
	font-weight: 600;
}

.nature-content .emphasis-text {
	color: var(--bg-color);
	font-size: 1.6rem;
	margin-top: 40px;
}

/* ESDセクション */
.esd-section {
	background-color: var(--bg-light);
	padding: 80px 0;
}

.esd-content {
	max-width: 900px;
	margin: 0 auto;
	text-align: center;
	padding: 40px;
	background-color: var(--bg-color);
	border-radius: 12px;
	box-shadow: var(--shadow);
}

.esd-content p {
	margin-bottom: 20px;
	font-size: 1.2rem;
	line-height: 1.8;
}

.esd-content strong {
	color: var(--primary-color);
	font-weight: 600;
}

/* メッセージセクション */
.message-section {
	background-color: var(--bg-color);
	padding: 80px 0;
}

.message-content {
	max-width: 900px;
	margin: 0 auto;
	padding: 40px;
}

.message-list {
	list-style: none;
	padding-left: 0;
	margin: 30px 0;
}

.message-list li {
	padding: 15px 0;
	padding-left: 40px;
	position: relative;
	font-size: 1.1rem;
	line-height: 1.8;
}

.message-list li::before {
	content: "✓";
	position: absolute;
	left: 0;
	color: var(--primary-color);
	font-weight: bold;
	font-size: 1.5rem;
	width: 30px;
	height: 30px;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: rgba(0, 115, 170, 0.1);
	border-radius: 50%;
}

.highlight-text {
	font-size: 1.5rem;
	margin-top: 30px;
	text-align: center;
	color: var(--primary-color);
	font-weight: 600;
}

.highlight-text strong {
	font-weight: 700;
}

/* トライアングルメッセージセクション */
.triangle-message-section {
	background: linear-gradient(135deg, var(--bg-light) 0%, #e9ecef 100%);
	padding: 80px 0;
}

.triangle-content {
	max-width: 900px;
	margin: 0 auto;
	text-align: center;
	padding: 40px;
	background-color: var(--bg-color);
	border-radius: 12px;
	box-shadow: var(--shadow);
}

.triangle-main {
	font-size: 2rem;
	margin: 30px 0;
	color: var(--primary-color);
	font-weight: 600;
}

.triangle-values p {
	font-size: 1.2rem;
	margin-bottom: 15px;
	line-height: 1.8;
}

.triangle-values strong {
	color: var(--primary-color);
	font-weight: 600;
}

/* 特徴セクション */
.features-section {
	background-color: var(--bg-color);
	padding: 80px 0;
}

.features-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 40px;
	margin-top: 50px;
}

.feature-item {
	background-color: var(--bg-light);
	padding: 40px 30px;
	border-radius: 12px;
	text-align: center;
	transition: var(--transition);
	border: 2px solid transparent;
}

.feature-item:hover {
	box-shadow: var(--shadow-lg);
	transform: translateY(-10px);
	border-color: var(--primary-color);
}

.feature-icon {
	margin-bottom: 25px;
}

.feature-icon img {
	max-width: 100px;
	height: auto;
	margin: 0 auto;
	border-radius: 50%;
}

.feature-title {
	font-size: 1.5rem;
	margin-bottom: 20px;
	color: var(--text-dark);
	font-weight: 600;
}

.feature-description {
	line-height: 1.8;
	font-size: 1.1rem;
	color: var(--text-color);
}

/* CTAセクション */
.cta-section {
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	color: var(--bg-color);
	text-align: center;
	padding: 100px 0;
	position: relative;
	overflow: hidden;
}

.cta-section::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: url('../images/page/top/cta-bg.jpg') center/cover no-repeat;
	opacity: 0.2;
	z-index: 0;
}

.cta-section .container {
	position: relative;
	z-index: 1;
}

.cta-title {
	color: var(--bg-color);
	margin-bottom: 40px;
	font-size: 2.5rem;
	font-weight: bold;
	text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.cta-buttons {
	display: flex;
	gap: 20px;
	justify-content: center;
	flex-wrap: wrap;
}

/* ボタンスタイル */
.btn {
	display: inline-block;
	padding: 15px 40px;
	border-radius: 6px;
	text-decoration: none;
	font-size: 1.1rem;
	font-weight: 600;
	transition: var(--transition);
	border: 2px solid transparent;
	cursor: pointer;
	text-align: center;
}

.btn-primary {
	background-color: var(--primary-color);
	color: var(--bg-color);
	border-color: var(--primary-color);
	box-shadow: 0 4px 12px rgba(0, 115, 170, 0.3);
}

.btn-primary:hover {
	background-color: var(--secondary-color);
	border-color: var(--secondary-color);
	box-shadow: 0 6px 16px rgba(0, 81, 119, 0.4);
	transform: translateY(-2px);
	text-decoration: none;
	color: var(--bg-color);
}

.btn-secondary {
	background-color: var(--bg-color);
	color: var(--primary-color);
	border-color: var(--bg-color);
	box-shadow: 0 4px 12px rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
	background-color: #f0f0f0;
	transform: translateY(-2px);
	box-shadow: 0 6px 16px rgba(255, 255, 255, 0.4);
	text-decoration: none;
	color: var(--primary-color);
}

.btn-outline {
	background-color: transparent;
	color: var(--bg-color);
	border-color: var(--bg-color);
	box-shadow: 0 4px 12px rgba(255, 255, 255, 0.2);
}

.btn-outline:hover {
	background-color: var(--bg-color);
	color: var(--primary-color);
	border-color: var(--bg-color);
	transform: translateY(-2px);
	box-shadow: 0 6px 16px rgba(255, 255, 255, 0.3);
	text-decoration: none;
}

/* 固定フッター */
.fixed-footer {
	/* PC版では固定しない（通常のフッターとして表示） */
	position: relative;
	background-color: #2c3e50;
	color: #ecf0f1;
	z-index: 99;
	box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
	margin-top: 60px; /* コンテンツとの間隔 */
}

.footer-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 40px 20px 25px;
}

.footer-main {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 40px;
	margin-bottom: 30px;
}

.footer-section {
	font-size: 0.95rem;
	line-height: 1.8;
}

.footer-title {
	font-size: 1.2rem;
	font-weight: bold;
	margin-bottom: 20px;
	color: #ecf0f1;
	padding-bottom: 10px;
	border-bottom: 2px solid #34495e;
}

.footer-address {
	font-style: normal;
	line-height: 1.8;
	color: #bdc3c7;
}

.footer-address p {
	margin-bottom: 8px;
}

.footer-email a {
	color: #3498db;
	text-decoration: none;
	transition: var(--transition);
}

.footer-email a:hover {
	color: #2980b9;
	text-decoration: underline;
}

.footer-nav-list {
	list-style: none;
	padding: 0;
}

.footer-nav-list li {
	margin-bottom: 10px;
}

.footer-nav-list a {
	color: #bdc3c7;
	text-decoration: none;
	transition: var(--transition);
	display: inline-block;
}

.footer-nav-list a:hover {
	color: #3498db;
	text-decoration: underline;
	padding-left: 5px;
}

.footer-bottom {
	border-top: 1px solid #34495e;
	padding-top: 20px;
	text-align: center;
}

.footer-copyright {
	font-size: 0.9rem;
	color: #95a5a6;
}

/* 追尾バナー（スティッキーバナー） */
.sticky-banner {
	position: fixed;
	bottom: 20px; /* PC版では固定フッターがないので、画面下部から少し上 */
	left: 0;
	right: 0;
	background-color: #34495e;
	color: #ecf0f1;
	z-index: 98;
	box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
	transform: translateY(100%);
	transition: transform 0.3s ease;
}

.sticky-banner.show {
	transform: translateY(0);
}

.sticky-banner.hidden {
	display: none;
}

.sticky-banner-content {
	max-width: 1200px;
	margin: 0 auto;
	padding: 15px 20px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 20px;
}

.sticky-banner-text {
	flex: 1;
}

.sticky-banner-text p {
	margin: 0;
	font-size: 1rem;
	font-weight: 500;
}

.sticky-banner-buttons {
	display: flex;
	gap: 10px;
	align-items: center;
}

.sticky-btn {
	padding: 10px 20px;
	border-radius: 4px;
	text-decoration: none;
	font-size: 0.9rem;
	font-weight: 600;
	transition: var(--transition);
	border: 2px solid transparent;
	white-space: nowrap;
}

.sticky-btn-primary {
	background-color: #3498db;
	color: #ecf0f1;
	border-color: #3498db;
}

.sticky-btn-primary:hover {
	background-color: #2980b9;
	text-decoration: none;
	color: #ecf0f1;
}

.sticky-btn-outline {
	background-color: transparent;
	color: #ecf0f1;
	border-color: #ecf0f1;
}

.sticky-btn-outline:hover {
	background-color: #ecf0f1;
	color: #34495e;
	text-decoration: none;
}

.sticky-btn-close {
	background: none;
	border: none;
	color: #ecf0f1;
	font-size: 1.8rem;
	line-height: 1;
	padding: 5px 10px;
	cursor: pointer;
	transition: var(--transition);
	font-weight: bold;
}

.sticky-btn-close:hover {
	color: #e74c3c;
	transform: scale(1.2);
}

/* 固定ページ共通スタイル */
.page-section {
	padding: 80px 0;
	background-color: var(--bg-color);
}

.page .main_title {
	margin-bottom: 50px;
	text-align: center;
	padding-bottom: 30px;
	border-bottom: 3px solid var(--primary-color);
}

.page .main_title h1,
.page .main_title h2 {
	font-size: 2.5rem;
	font-weight: bold;
	color: var(--text-dark);
	line-height: 1.3;
}

.page-content {
	max-width: 900px;
	margin: 0 auto;
	padding: 40px;
	background-color: var(--bg-color);
	border-radius: 12px;
	box-shadow: var(--shadow);
}

.page .entry-content {
	line-height: 1.8;
	font-size: 1.1rem;
}

.page .entry-content h2 {
	font-size: 2rem;
	margin-top: 50px;
	margin-bottom: 25px;
	color: var(--text-dark);
	font-weight: 600;
	padding-bottom: 15px;
	border-bottom: 2px solid var(--border-color);
}

.page .entry-content h3 {
	font-size: 1.6rem;
	margin-top: 40px;
	margin-bottom: 20px;
	color: var(--text-dark);
	font-weight: 600;
}
.page .entry-content h3.ea-header {
	margin-top: 0;
}

.page .entry-content h4 {
	font-size: 1.3rem;
	margin-top: 30px;
	margin-bottom: 15px;
	color: var(--text-color);
	font-weight: 500;
}

.page .entry-content p {
	margin-bottom: 20px;
	line-height: 1.8;
}

.page .entry-content ul,
.page .entry-content ol {
	margin-bottom: 30px;
	padding-left: 40px;
	line-height: 1.8;
}

.page .entry-content li {
	margin-bottom: 12px;
}

.page .entry-content img {
	margin: 30px auto;
	border-radius: 8px;
	box-shadow: var(--shadow);
}

/* パンくずリスト */
.breadcrumbs {
	margin-bottom: 30px;
	font-size: 0.9rem;
	padding: 15px;
	background-color: var(--bg-light);
	border-radius: 6px;
}

.breadcrumb-list {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	list-style: none;
	margin: 0;
	padding: 0;
	gap: 8px;
}

.breadcrumb-item {
	display: flex;
	align-items: center;
}

.breadcrumb-item::after {
	content: '›';
	margin-left: 8px;
	color: var(--text-color);
	opacity: 0.5;
}

.breadcrumb-item:last-child::after {
	content: '';
	margin-left: 0;
}

.breadcrumb-item a {
	color: var(--primary-color);
	text-decoration: none;
	transition: var(--transition);
}

.breadcrumb-item a:hover {
	color: var(--secondary-color);
	text-decoration: underline;
}

.breadcrumb-item.active {
	color: var(--text-color);
	font-weight: 500;
}

/* Breadcrumb NavXT用のスタイル */
.breadcrumbs .breadcrumb_last {
	color: var(--text-color);
	font-weight: 500;
}

.breadcrumbs span[property="itemListElement"] {
	display: inline;
}

.breadcrumbs span[property="itemListElement"]::after {
	content: '›';
	margin: 0 8px;
	color: var(--text-color);
	opacity: 0.5;
}

.breadcrumbs span[property="itemListElement"]:last-child::after {
	content: '';
	margin: 0;
}

/* 商品ラインナップページ */
.products-section {
	padding: 80px 0;
	background-color: var(--bg-color);
}

.products-intro {
	text-align: center;
	max-width: 800px;
	margin: 0 auto 60px;
}

.intro-text {
	font-size: 1.2rem;
	line-height: 1.8;
	color: var(--text-color);
}

.products-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
	gap: 40px;
	margin-top: 40px;
}

.product-item {
	background-color: var(--bg-color);
	border-radius: 12px;
	overflow: hidden;
	box-shadow: var(--shadow);
	transition: var(--transition);
	display: flex;
	flex-direction: column;
	border: 2px solid transparent;
}

.product-item:hover {
	transform: translateY(-10px);
	box-shadow: var(--shadow-lg);
	border-color: var(--primary-color);
}

.product-item.featured {
	border: 2px solid var(--primary-color);
	background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.product-image {
	position: relative;
	width: 100%;
	height: 280px;
	overflow: hidden;
	background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.product-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: var(--transition);
}

.product-item:hover .product-image img {
	transform: scale(1.1);
}

.product-badge {
	position: absolute;
	top: 15px;
	right: 15px;
	background-color: #e74c3c;
	color: var(--bg-color);
	padding: 6px 15px;
	border-radius: 20px;
	font-size: 0.85rem;
	font-weight: 600;
	box-shadow: 0 2px 8px rgba(231, 76, 60, 0.3);
}

.product-badge.premium {
	background: linear-gradient(135deg, #f39c12 0%, #e67e22 100%);
	box-shadow: 0 2px 8px rgba(243, 156, 18, 0.3);
}

.product-content {
	padding: 30px;
	flex: 1;
	display: flex;
	flex-direction: column;
}

.product-name {
	font-size: 1.4rem;
	font-weight: bold;
	margin-bottom: 15px;
	color: var(--text-dark);
	line-height: 1.4;
}

.product-description {
	font-size: 1.1rem;
	color: var(--primary-color);
	font-weight: 600;
	margin-bottom: 15px;
	line-height: 1.6;
}

.product-features {
	font-size: 1rem;
	line-height: 1.7;
	color: var(--text-color);
	margin-bottom: 20px;
}

.product-features-list {
	list-style: none;
	padding: 0;
	margin: 15px 0;
}

.product-features-list li {
	position: relative;
	padding-left: 25px;
	margin-bottom: 10px;
	font-size: 0.95rem;
	line-height: 1.6;
	color: var(--text-color);
}

.product-features-list li::before {
	content: '✓';
	position: absolute;
	left: 0;
	color: var(--primary-color);
	font-weight: bold;
	font-size: 1.1rem;
}

.product-specs {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-bottom: 20px;
}

.spec-item {
	display: inline-block;
	background-color: var(--bg-light);
	padding: 6px 15px;
	border-radius: 6px;
	font-size: 0.9rem;
	color: var(--text-color);
	border: 1px solid var(--border-color);
}

.spec-item.highlight {
	background-color: var(--primary-color);
	color: var(--bg-color);
	font-weight: 600;
	border-color: var(--primary-color);
}

.product-footer {
	margin-top: auto;
	padding-top: 20px;
	border-top: 1px solid var(--border-color);
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 15px;
}

.product-price {
	display: flex;
	flex-direction: column;
	gap: 5px;
}

.price-amount {
	font-size: 2rem;
	font-weight: bold;
	color: var(--text-dark);
}

.price-amount.premium {
	color: var(--primary-color);
	font-size: 2.2rem;
}

.price-note {
	font-size: 0.85rem;
	color: var(--text-color);
}

.btn-product {
	padding: 12px 30px;
	font-size: 1rem;
	white-space: nowrap;
}

/* 配送・支払い情報セクション */
.shipping-info-section {
	padding: 80px 0;
	background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.info-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 40px;
	margin-top: 50px;
}

.info-item {
	background-color: var(--bg-color);
	padding: 40px 30px;
	border-radius: 12px;
	text-align: center;
	box-shadow: var(--shadow);
	transition: var(--transition);
}

.info-item:hover {
	transform: translateY(-5px);
	box-shadow: var(--shadow-lg);
}

.info-icon {
	font-size: 3rem;
	margin-bottom: 20px;
}

.info-title {
	font-size: 1.3rem;
	font-weight: 600;
	margin-bottom: 20px;
	color: var(--text-dark);
}

.info-content {
	font-size: 1rem;
	line-height: 1.7;
	color: var(--text-color);
}

.info-content strong {
	display: block;
	color: var(--primary-color);
	font-size: 1.1rem;
	margin-bottom: 10px;
}

/* 商品ページCTAセクション */
.products-cta-section {
	padding: 80px 0;
	background: linear-gradient(135deg, #3498db 0%, #2c3e50 100%);
	color: var(--bg-color);
	text-align: center;
}

.products-cta-section .cta-title {
	font-size: 2.5rem;
	font-weight: bold;
	margin-bottom: 20px;
	color: var(--bg-color);
}

.products-cta-section .cta-text {
	font-size: 1.2rem;
	margin-bottom: 40px;
	color: rgba(255, 255, 255, 0.95);
	max-width: 700px;
	margin-left: auto;
	margin-right: auto;
}

.products-cta-section .btn {
	background-color: var(--bg-color);
	color: var(--primary-color);
	border: 2px solid var(--bg-color);
}

.products-cta-section .btn:hover {
	background-color: transparent;
	color: var(--bg-color);
	border-color: var(--bg-color);
}

/* レスポンシブ対応（商品ページ） */
@media screen and (max-width: 768px) {
	.products-grid {
		grid-template-columns: 1fr;
		gap: 30px;
	}

	.product-image {
		height: 220px;
	}

	.product-content {
		padding: 20px;
	}

	.product-name {
		font-size: 1.2rem;
	}

	.product-description {
		font-size: 1rem;
	}

	.product-footer {
		flex-direction: column;
		align-items: stretch;
	}

	.btn-product {
		width: 100%;
		text-align: center;
	}

	.info-grid {
		grid-template-columns: 1fr;
		gap: 30px;
	}

	.products-cta-section .cta-title {
		font-size: 1.8rem;
	}

	.products-cta-section .cta-text {
		font-size: 1rem;
	}
}

/* お問い合わせページ */
.contact-section {
	padding: 80px 0;
	background: linear-gradient(135deg, var(--bg-light) 0%, #e9ecef 100%);
}

.contact-content {
	max-width: 900px;
	margin: 0 auto;
}

.contact-info {
	margin-bottom: 50px;
	text-align: center;
	padding: 40px;
	background-color: var(--bg-color);
	border-radius: 12px;
	box-shadow: var(--shadow);
}

.contact-form-wrapper {
	background-color: var(--bg-color);
	padding: 50px;
	border-radius: 12px;
	box-shadow: var(--shadow-lg);
}
/* Contact Form 7 スタイル */
.contact-form-wrapper {
	max-width: 800px;
	margin: 0 auto;
	padding: 40px 20px;
}

.form-section {
	margin-bottom: 30px;
}

.form-section label {
	display: block;
	font-weight: 600;
	margin-bottom: 10px;
	color: var(--text-dark);
	font-size: 1.1rem;
}

.form-section .required {
	display: inline-block;
	background-color: #e74c3c;
	color: #fff;
	font-size: 0.75rem;
	padding: 2px 8px;
	border-radius: 3px;
	margin-left: 8px;
	font-weight: normal;
}

.form-section .optional {
	display: inline-block;
	background-color: #95a5a6;
	color: #fff;
	font-size: 0.75rem;
	padding: 2px 8px;
	border-radius: 3px;
	margin-left: 8px;
	font-weight: normal;
}

.form-control {
	width: 100%;
	padding: 12px 15px;
	border: 2px solid var(--border-color);
	border-radius: 8px;
	font-size: 1rem;
	transition: var(--transition);
	font-family: inherit;
}

.form-control:focus {
	outline: none;
	border-color: var(--primary-color);
	box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}

textarea.form-control {
	resize: vertical;
	min-height: 150px;
}

.privacy-policy {
	background-color: var(--bg-light);
	padding: 20px;
	border-radius: 8px;
	border-left: 4px solid var(--primary-color);
}

.privacy-policy label {
	display: flex;
	align-items: flex-start;
	cursor: pointer;
	font-weight: normal;
}

.form-checkbox {
	margin-right: 10px;
	margin-top: 3px;
	cursor: pointer;
}

.privacy-policy a {
	color: var(--primary-color);
	text-decoration: underline;
}

.privacy-policy a:hover {
	text-decoration: none;
}

.form-submit {
	text-align: center;
	margin-top: 40px;
}

.form-submit .btn {
	min-width: 250px;
	padding: 15px 40px;
	font-size: 1.1rem;
}

/* エラーメッセージ */
.wpcf7-not-valid-tip {
	color: #e74c3c;
	font-size: 0.9rem;
	margin-top: 5px;
	display: block;
}

.wpcf7-validation-errors {
	background-color: #fff3cd;
	border: 2px solid #ffc107;
	color: #856404;
	padding: 15px 20px;
	border-radius: 8px;
	margin: 20px 0;
}

.wpcf7-mail-sent-ok {
	background-color: #d4edda;
	border: 2px solid #28a745;
	color: #155724;
	padding: 15px 20px;
	border-radius: 8px;
	margin: 20px 0;
}

/* サンクスページ */
.contact-thanks {
	max-width: 700px;
	margin: 60px auto;
	padding: 60px 40px;
	text-align: center;
	background-color: var(--bg-light);
	border-radius: 12px;
	box-shadow: var(--shadow);
}

.contact-thanks h2 {
	font-size: 2rem;
	color: var(--primary-color);
	margin-bottom: 30px;
}

.contact-thanks p {
	font-size: 1.1rem;
	line-height: 1.8;
	margin-bottom: 20px;
}

.contact-thanks .btn-group {
	margin-top: 40px;
}

/* レスポンシブ対応 */
@media screen and (max-width: 768px) {
	.contact-form-wrapper {
		padding: 20px 15px;
	}

	.form-section label {
		font-size: 1rem;
	}

	.form-submit .btn {
		width: 100%;
		min-width: auto;
	}

	.contact-thanks {
		padding: 40px 20px;
		margin: 40px 20px;
	}

	.contact-thanks h2 {
		font-size: 1.5rem;
	}

	.contact-thanks p {
		font-size: 1rem;
	}
}

/* 効果セクション */
.effects-section {
	margin-top: 50px;
}

.effects-list {
	list-style: none;
	padding: 0;
}

.effects-list li {
	background-color: var(--bg-light);
	padding: 25px;
	margin-bottom: 20px;
	border-radius: 8px;
	border-left: 5px solid var(--primary-color);
	transition: var(--transition);
}

.effects-list li:hover {
	box-shadow: var(--shadow);
	transform: translateX(5px);
}

.effects-list li strong {
	font-size: 1.3rem;
	color: var(--primary-color);
	display: block;
	margin-bottom: 15px;
	font-weight: 600;
}

.effects-list li p {
	margin: 0;
	line-height: 1.8;
	font-size: 1.1rem;
}

/* テーブルスタイル */
table {
	width: 100%;
	border-collapse: collapse;
	margin: 30px 0;
}

table th,
table td {
	padding: 12px 15px;
	text-align: left;
	border-bottom: 1px solid var(--border-color);
}

table th {
	background-color: var(--bg-light);
	font-weight: 600;
	color: var(--text-dark);
}

table tr:hover {
	background-color: #f9f9f9;
}

/* 引用スタイル */
blockquote {
	border-left: 4px solid var(--primary-color);
	padding-left: 30px;
	margin: 30px 0;
	font-style: italic;
	color: var(--text-color);
	background-color: var(--bg-light);
	padding: 20px 30px;
	border-radius: 6px;
}

/* コードスタイル */
code {
	background-color: var(--bg-light);
	padding: 2px 6px;
	border-radius: 4px;
	font-family: "Courier New", Courier, monospace;
	font-size: 0.9em;
	color: var(--primary-color);
}

pre {
	background-color: var(--bg-light);
	padding: 20px;
	border-radius: 8px;
	overflow-x: auto;
	border: 1px solid var(--border-color);
}

/* ユーティリティクラス */
.text-center {
	text-align: center;
}

.text-left {
	text-align: left;
}

.text-right {
	text-align: right;
}

.mt-1 { margin-top: 10px; }
.mt-2 { margin-top: 20px; }
.mt-3 { margin-top: 30px; }
.mb-1 { margin-bottom: 10px; }
.mb-2 { margin-bottom: 20px; }
.mb-3 { margin-bottom: 30px; }
