@charset "utf-8";

/*リセットCSS（sanitize.css）の読み込み
---------------------------------------------------------------------------*/
@import url("https://unpkg.com/sanitize.css");

/*Google Fontsの読み込み
---------------------------------------------------------------------------*/
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;500;700&display=swap');

/*slick.cssの読み込み
---------------------------------------------------------------------------*/
@import url("https://cdn.jsdelivr.net/npm/slick-carousel@1.8.1/slick/slick.css");

/*テンプレート専用cssファイルの読み込み
---------------------------------------------------------------------------*/
@import url("animation.css");
@import url("inview.css");

/*===========================================
  カラーパレット - 3色構成（青・白・ゴールド）
===========================================*/
:root {
	--primary-dark: #1a4b6d;
	--primary: #3498db;
	--primary-light: #74b9ff;
	--primary-pale: rgba(52, 152, 219, 0.1);
	--accent: #c9a84c;
	--accent-light: #d4b85c;
	--accent-pale: rgba(201, 168, 76, 0.1);
	--text-dark: #2d3436;
	--text-medium: #636e72;
	--text-light: #b2bec3;
	--bg-light: #f8f9fa;
	--bg-gradient: linear-gradient(135deg, #f5f7fa 0%, #e4e8ec 100%);
	--white: #ffffff;
	--glass-bg: rgba(255, 255, 255, 0.7);
	--glass-border: rgba(255, 255, 255, 0.3);
	--shadow-soft: 0 4px 30px rgba(0, 0, 0, 0.05);
	--shadow-medium: 0 8px 40px rgba(0, 0, 0, 0.08);
	--shadow-glass: 0 8px 32px rgba(52, 152, 219, 0.15);
}

/*全体の設定
---------------------------------------------------------------------------*/
html,body {
	margin: 0;
	padding: 0;
	font-size: 14px;
	overflow-x: hidden;
	font-family: 'Noto Sans JP', "Hiragino Sans", "Hiragino Kaku Gothic ProN", sans-serif;
	scroll-behavior: smooth;
}

body {
	-webkit-text-size-adjust: none;
	letter-spacing: 0.03em;
	background: var(--white);
	color: var(--text-dark);
	font-weight: 400;
	line-height: 1.9;
}

/*リセット*/
figure {margin: 0;}
dd {margin: 0;}
nav {margin: 0;padding: 0;}

/*table全般の設定*/
table {border-collapse:collapse;}

/*画像全般の設定*/
img {border: none;max-width: 100%;height: auto;vertical-align: middle;}

/*videoタグ*/
video {max-width: 100%;}

/*iframeタグ*/
iframe {width: 100%;}

/*ul,olタグ*/
ul, ol {margin-bottom: 30px;}


/*リンクテキスト全般の設定
---------------------------------------------------------------------------*/
a {
	color: var(--primary);
	text-decoration: none;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

a:hover {
	color: var(--primary-light);
}


/*sectionタグと、詳細ページの共通設定
---------------------------------------------------------------------------*/
section,
main > article {
	margin: 0 auto;
	padding: 80px 5%;
}


/*２カラムブロック
---------------------------------------------------------------------------*/
.c2 {
	display: flex;
	flex-direction: column;
}

.c2 h2 {
	font-size: 2em;
}

.c2 .image {
	order: -1;
}


/*===========================================
  header - 洗練されたナビゲーション
===========================================*/
header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	background: rgba(255, 255, 255, 0.98);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	position: fixed;
	z-index: 100;
	width: 100%;
	padding: 0 4%;
	height: 80px;
	box-shadow: 0 2px 30px var(--shadow-soft);
	transition: all 0.4s ease;
}

header.scrolled {
	height: 65px;
	box-shadow: 0 4px 40px var(--shadow-medium);
}

header a {
	color: var(--text-dark);
}

header #logo {
	margin: 0;
	font-size: 22px;
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 700;
	width: 280px;
}

header #logo img {
	max-height: 55px;
	height: auto;
	width: auto;
	transition: transform 0.3s ease;
}

header #logo img:hover {
	transform: scale(1.02);
}


/*===========================================
  メインビジュアル - 透明感と動きのあるヒーロー
===========================================*/
#mainimg {
	width: 100%;
	height: 100vh;
	min-height: 600px;
	max-height: 900px;
	position: relative;
	top: 80px;
	overflow: hidden;
	background: url('http://will-sport-group.com/wp-content/uploads/2025/12/shoudan.jpg') center center / cover no-repeat;
	color: var(--white);
	display: flex;
	align-items: center;
	margin-bottom: 0;
	padding: 0;
}

/* オーバーレイ削除済み */

@keyframes floatBg {
	0%, 100% { transform: translate(0, 0) rotate(0deg); }
	25% { transform: translate(5%, 5%) rotate(90deg); }
	50% { transform: translate(0, 10%) rotate(180deg); }
	75% { transform: translate(-5%, 5%) rotate(270deg); }
}

#mainimg::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 250px;
	background: linear-gradient(to top, var(--white), transparent);
	pointer-events: none;
}

#mainimg #text {
	position: relative;
	z-index: 2;
	padding: 0 8%;
	width: 100%;
	animation: fadeInUp 1s ease-out;
}

#mainimg #text > div {
	background: rgba(255, 255, 255, 0.92);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	padding: 25px 30px;
	border-radius: 14px;
	max-width: 480px;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
	border: 1px solid rgba(255, 255, 255, 0.6);
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	animation: floatCard 6s ease-in-out infinite;
}

#mainimg #text > div:hover {
	transform: translateY(-5px);
	box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

@keyframes floatCard {
	0%, 100% { transform: translateY(0); }
	50% { transform: translateY(-8px); }
}

@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(40px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.br-smartphone {
	display: none;
}

#mainimg #text h2 {
	margin: 0 0 15px;
	font-weight: 700;
	font-size: clamp(18px, 2.8vw, 28px);
	font-family: 'Noto Sans JP', sans-serif;
	line-height: 1.5;
	letter-spacing: 0.02em;
	color: var(--text-dark);
	white-space: nowrap;
}

.jc {
	color: var(--text-dark);
	display: inline-block;
}

.am {
	color: var(--primary);
	display: inline-block;
	position: relative;
	transition: all 0.3s ease;
}

.am:hover {
	color: var(--primary-light);
	transform: scale(1.02);
}

.no-wrap {
	white-space: nowrap;
	display: inline-block;
}

.am::after {
	content: '';
	position: absolute;
	bottom: -3px;
	left: 0;
	width: 100%;
	height: 2px;
	background: linear-gradient(90deg, var(--primary), var(--primary-light));
	transform: scaleX(0);
	animation: underlineExpand 0.8s ease-out 0.5s forwards;
}

@keyframes underlineExpand {
	to {
		transform: scaleX(1);
	}
}

#mainimg #text p.text {
	font-size: clamp(13px, 1.6vw, 15px);
	margin: 0 0 18px;
	color: var(--text-medium);
	font-weight: 400;
	line-height: 1.8;
	max-width: 420px;
}

#mainimg #text p.text span {
	font-weight: 600;
	font-size: clamp(16px, 2.2vw, 22px);
	color: var(--primary);
	display: block;
	margin-top: 10px;
	animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
	0%, 100% { opacity: 1; }
	50% { opacity: 0.8; }
}

#mainimg .pc {
	display: inline-block;
	margin-right: 15px;
	margin-bottom: 15px;
}


/*===========================================
  menubar設定
===========================================*/
#menubar ul {list-style: none;margin: 0;padding: 0;}
#menubar {display: none;}
#menubar.db {display: block;}
#menubar.dn {display: none;}

#menubar a {
	display: block;
	text-decoration: none;
	text-align: center;
	letter-spacing: 0.1em;
	padding: 15px 20px;
	font-weight: 500;
	position: relative;
}

#menubar a::after {
	content: '';
	position: absolute;
	bottom: 10px;
	left: 50%;
	width: 0;
	height: 2px;
	background: var(--primary);
	transition: all 0.3s ease;
	transform: translateX(-50%);
}

#menubar a:hover::after {
	width: 80%;
}

/*小さな端末用の開閉ブロック*/
.s #menubar.db {
	position: fixed;
	overflow: auto;
	z-index: 100;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	padding: 100px 30px;
	background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
	animation: slideIn 0.3s ease-out;
	text-align: center;
	color: var(--white);
}

@keyframes slideIn {
	from {
		opacity: 0;
		transform: translateX(100%);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

.s #menubar.db a {
	display: block;
	color: var(--white);
	font-size: 1.2em;
	padding: 20px;
	border-bottom: 1px solid rgba(255,255,255,0.1);
}


/*３本バー（ハンバーガー）アイコン
---------------------------------------------------------------------------*/
#menubar_hdr.db {display: flex;}
#menubar_hdr.dn {display: none;}

#menubar_hdr {
	position: fixed;
	z-index: 101;
	cursor: pointer;
	right: 20px;
	top: 20px;
	padding: 15px;
	width: 50px;
	height: 50px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	background: var(--primary);
	border-radius: 12px;
	box-shadow: 0 4px 15px var(--shadow-medium);
	transition: all 0.3s ease;
}

#menubar_hdr:hover {
	background: var(--primary-light);
	transform: scale(1.05);
}

#menubar_hdr span {
	display: block;
	transition: 0.3s;
	border-top: 2px solid var(--white);
}

#menubar_hdr.ham span:nth-of-type(1),
#menubar_hdr.ham span:nth-of-type(3) {
	transform-origin: center center;
	width: 20px;
}

#menubar_hdr.ham span:nth-of-type(1){
	transform: rotate(45deg) translate(3.8px, 5px);
}

#menubar_hdr.ham span:nth-of-type(3){
	transform: rotate(-45deg) translate(3.8px, -5px);
}

#menubar_hdr.ham span:nth-of-type(2){
	display: none;
}


/*===========================================
  mainブロック設定
===========================================*/
main {
	padding-top: 80px;
}

main h2 {
	margin: 0 0 50px;
	line-height: 1.4;
	font-size: clamp(28px, 4vw, 42px);
	text-align: center;
	letter-spacing: 0.1em;
	color: var(--text-dark);
	font-family: 'Noto Serif JP', serif;
	font-weight: 600;
	position: relative;
}

main h2::after {
	content: '';
	display: block;
	width: 60px;
	height: 3px;
	background: var(--primary);
	margin: 20px auto 0;
	border-radius: 2px;
}

main h2 span {
	display: block;
	font-weight: 400;
	color: var(--text-light);
	font-size: 14px;
	font-family: 'Noto Sans JP', sans-serif;
	letter-spacing: 0.2em;
	margin-top: 10px;
}

main h3 {
	margin: 0 0 1.5em;
	color: var(--text-dark);
	font-size: 1.4em;
	font-weight: 600;
}

main p {
	margin: 0 20px 30px;
	color: var(--text-medium);
	line-height: 2;
}

main p + p {
	margin-top: -10px;
}


/*===========================================
  フッター設定
===========================================*/
footer small {font-size: 100%;}

footer {
	font-size: 0.85rem;
	text-align: center;
	padding: 40px 20px;
	background: var(--primary-dark);
	color: rgba(255,255,255,0.8);
}

footer a {
	text-decoration: none;
	color: rgba(255,255,255,0.8);
}

footer a:hover {
	color: var(--primary-light);
}

footer .pr {
	display: block;
	margin-top: 15px;
	font-size: 0.75rem;
	opacity: 0.6;
}


/*フッターメニュー設定
---------------------------------------------------------------------------*/
#footermenu {
	background: var(--primary);
	color: rgba(255,255,255,0.7);
	font-size: 0.85em;
	padding: 50px 5%;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 30px;
}

#footermenu a {
	text-decoration: none;
	color: rgba(255,255,255,0.7);
	transition: all 0.3s ease;
}

#footermenu a:hover {
	color: var(--primary-light);
}

#footermenu ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

#footermenu ul li {
	padding: 8px 15px;
}

#footermenu .title {
	font-weight: 600;
	color: var(--white);
}

li.title {
	display: flex;
}

.footer-menu {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}


/*===========================================
  お知らせブロック
===========================================*/
#new {
	margin: 0;
	display: flex;
	flex-wrap: wrap;
	padding: 0 20px;
	max-width: 900px;
	margin: 0 auto;
}

#new dt,
#new dd {
	padding: 20px 0;
	border-bottom: 1px solid rgba(0,0,0,0.08);
}

#new dt {
	width: 10em;
	font-weight: 600;
	color: var(--primary);
}

#new dt span {
	display: none;
}

#new dd {
	width: calc(100% - 10em);
	color: var(--text-medium);
}


/*===========================================
  スライドショー
===========================================*/
.list-slide .list {
	margin: 15px;
	border-radius: 15px;
	overflow: hidden;
	box-shadow: 0 10px 40px var(--shadow-soft);
	transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.list-slide .list:hover {
	transform: translateY(-10px);
	box-shadow: 0 20px 60px var(--shadow-medium);
}

.list-slide .list img {
	transition: transform 0.6s ease;
}

.list-slide .list:hover img {
	transform: scale(1.08);
}


/*===========================================
  3つの強みセクション
===========================================*/
.strengths-section {
	background: var(--white);
	padding: 100px 5%;
}

.strengths-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 40px;
	max-width: 1200px;
	margin: 0 auto;
}

.strength-card {
	background: var(--glass-bg);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	padding: 50px 35px;
	border-radius: 24px;
	text-align: center;
	transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
	position: relative;
	overflow: hidden;
	border: 1px solid var(--glass-border);
	box-shadow: var(--shadow-glass);
}

.strength-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(135deg, var(--primary-pale) 0%, transparent 50%);
	opacity: 0;
	transition: opacity 0.5s ease;
}

.strength-card:hover {
	transform: translateY(-12px) scale(1.02);
	box-shadow: var(--shadow-medium), 0 0 60px rgba(52, 152, 219, 0.15);
}

.strength-card:hover::before {
	opacity: 1;
}

.strength-number {
	font-size: 4rem;
	font-weight: 700;
	background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	line-height: 1;
	margin-bottom: 20px;
	opacity: 0.8;
	transition: all 0.4s ease;
}

.strength-card:hover .strength-number {
	transform: scale(1.1);
	opacity: 1;
}

.strength-card h3 {
	font-size: 1.4em;
	margin-bottom: 15px;
	color: var(--text-dark);
	font-weight: 600;
}

.strength-card p {
	margin: 0;
	color: var(--text-medium);
	line-height: 1.8;
	font-size: 0.95em;
}


/*===========================================
  ボタンスタイル - 透明感のあるデザイン
===========================================*/
a.btn1, a.btn2 {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	text-decoration: none;
	letter-spacing: 0.08em;
	border-radius: 50px;
	padding: 16px 40px;
	font-size: 1em;
	font-weight: 500;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	position: relative;
	overflow: hidden;
}

a.btn1 {
	background: var(--glass-bg);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	color: var(--primary);
	border: 2px solid var(--primary);
	box-shadow: var(--shadow-soft);
}

a.btn2 {
	background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
	color: var(--white);
	border: none;
	box-shadow: 0 8px 30px rgba(52, 152, 219, 0.3);
}

a.btn1::after, a.btn2::after {
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background: linear-gradient(135deg, transparent, rgba(255,255,255,0.2), transparent);
	transform: translateX(-100%);
	transition: transform 0.6s ease;
}

a.btn1:hover::after, a.btn2:hover::after {
	transform: translateX(100%);
}

.radius {
	border-radius: 50px !important;
}

a:hover.btn1 {
	background: var(--primary);
	color: var(--white);
	transform: translateY(-3px);
	box-shadow: 0 12px 35px rgba(52, 152, 219, 0.4);
}

a:hover.btn2 {
	transform: translateY(-3px);
	box-shadow: 0 15px 45px rgba(52, 152, 219, 0.5);
}

.block-2 {
	width: 80%;
	justify-content: center;
}

.wpcf7-submit {
	border: none;
	background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
	color: var(--white);
	border-radius: 50px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	letter-spacing: 0.1em;
	padding: 18px 50px;
	font-size: 1.1em;
	font-weight: 600;
	box-shadow: 0 8px 25px var(--shadow-soft);
	cursor: pointer;
	transition: all 0.4s ease;
}

.wpcf7-submit:hover {
	transform: translateY(-3px);
	box-shadow: 0 15px 40px var(--shadow-medium);
}


/*===========================================
  背景色パターン
===========================================*/
.bg1 {
	background: var(--white);
}

.bg2 {
	background: var(--bg-light);
}

.bg3 {
	background: linear-gradient(180deg, var(--bg-light) 0%, var(--white) 100%);
}

.bg3 h2 {
	color: var(--text-dark);
}


/*===========================================
  PAGE TOP設定
===========================================*/
.pagetop-show {display: block;}

.pagetop a {
	display: flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	z-index: 99;
	position: fixed;
	right: 25px;
	bottom: 25px;
	color: var(--white);
	font-size: 1.3em;
	background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
	width: 55px;
	height: 55px;
	border-radius: 50%;
	box-shadow: 0 8px 25px var(--shadow-medium);
	transition: all 0.4s ease;
}

.pagetop a:hover {
	transform: translateY(-5px);
	box-shadow: 0 12px 35px var(--shadow-strong);
}


/*===========================================
  テキスト・画像スタイル
===========================================*/
.l {text-align: center;}
.t {text-align: left;}
.customer {width: 80%;text-align: left;margin: 0 auto;}
.customer-1 {width: 90%;text-align: left;margin: 0 auto;}
.text-image {
	width: 60%;
	margin-bottom: 30px;
	border-radius: 20px;
	box-shadow: 0 20px 60px var(--shadow-soft);
	transition: all 0.5s ease;
}
.text-image:hover {
	transform: scale(1.02);
	box-shadow: 0 30px 80px var(--shadow-medium);
}
.clearfix::after {content: "";display: block;clear: both;}
.color-theme, .color-theme a {color: var(--primary) !important;}
.color-check, .color-check a {color: #e74c3c !important;}
.c {text-align: center !important;}
.ws {width: 95%;display: block;}
.wl {width: 95%;display: block;}
.mb30 {margin-bottom: 30px !important;}
.mt30 {margin-top: 30px !important;}
.look {display: inline-block;padding: 0px 15px;background: var(--bg-light);border: 1px solid #ddd;border-radius: 8px;margin: 2px 0;word-break: break-all;}
.small {font-size: 0.6em;letter-spacing: normal !important;}
.large {font-size: 1.8em !important;}
.block {display: block !important;}
.sh {display: block;}
.hidden {position: absolute;top: -9999px;left: -9999px;}
.privacy .text {text-align: center;width: 100%;padding: 0 3%;}


/*===========================================
  テーブルスタイル
===========================================*/
.cf1 {
	margin: 0 auto;
	padding: 5%;
}

.cf1 h2 {
	line-height: 1.5;
	font-size: 2.5em;
	text-align: center;
	letter-spacing: 0.1em;
	color: var(--text-dark);
	font-family: 'Noto Serif JP', serif;
	font-weight: 600;
}

.ta1 caption {
	font-weight: 600;
	padding: 15px 10px;
	background: var(--bg-light);
	margin-bottom: 20px;
	border-radius: 8px;
}

.ta1 {
	border-top: 2px solid var(--primary);
	width: 100%;
	margin: 0 auto 40px;
	text-align: center;
}

.ta1 tr {
	border-bottom: 1px solid #e0e0e0;
	text-align: center;
	transition: background 0.3s ease;
}

.ta1 tr:hover {
	background: var(--bg-light);
}

.ta1 th, .ta1 td {
	padding: 18px 15px;
	word-break: break-all;
	text-align: center;
}

.ta1 th {
	width: 30%;
	text-align: center;
	background: var(--bg-light);
	font-weight: 600;
	color: var(--text-dark);
}


/*===========================================
  ページヒーローセクション - おしゃれなデザイン
===========================================*/
.page-hero {
	background: linear-gradient(135deg, #e8f4fc 0%, #d4edfc 30%, #bde4fc 60%, #a8dcff 100%);
	color: var(--text-dark);
	text-align: center;
	padding: 160px 5% 100px;
	position: relative;
	overflow: hidden;
	min-height: 280px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.page-hero::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background:
		radial-gradient(circle at 20% 30%, rgba(255,255,255,0.8) 0%, transparent 40%),
		radial-gradient(circle at 80% 70%, rgba(255,255,255,0.6) 0%, transparent 35%),
		radial-gradient(circle at 50% 50%, rgba(52, 152, 219, 0.08) 0%, transparent 50%);
	animation: heroFloat 25s ease-in-out infinite;
	pointer-events: none;
}

.page-hero::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 80px;
	background: linear-gradient(to top, var(--white), transparent);
	pointer-events: none;
}

@keyframes heroFloat {
	0%, 100% { transform: scale(1) rotate(0deg); opacity: 1; }
	33% { transform: scale(1.05) rotate(1deg); opacity: 0.9; }
	66% { transform: scale(0.98) rotate(-0.5deg); opacity: 1; }
}

.page-hero .container {
	position: relative;
	z-index: 2;
}

.page-hero .page-title {
	font-size: clamp(32px, 5vw, 48px);
	color: var(--primary-dark);
	font-weight: 700;
	font-family: 'Noto Sans JP', sans-serif;
	margin: 0 0 20px;
	position: relative;
	animation: fadeInUp 0.8s ease-out;
	text-shadow: 0 2px 15px rgba(255, 255, 255, 0.5);
	letter-spacing: 0.05em;
}

.page-hero .page-title::after {
	content: '';
	display: block;
	width: 60px;
	height: 3px;
	background: linear-gradient(90deg, var(--primary), var(--primary-light));
	margin: 20px auto 0;
	border-radius: 2px;
	animation: fadeInUp 0.8s ease-out 0.3s both;
}

.page-hero .page-subtitle {
	font-size: clamp(14px, 2vw, 17px);
	color: var(--text-medium);
	font-weight: 400;
	margin: 0;
	position: relative;
	animation: fadeInUp 0.8s ease-out 0.4s both;
	letter-spacing: 0.06em;
	line-height: 1.8;
}


/*===========================================
  サービスセクション
===========================================*/
.service-overview {
	padding: 80px 5%;
	background: var(--white);
}

.service-intro-card {
	max-width: 900px;
	margin: 0 auto;
	padding: 50px;
	background: var(--glass-bg);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	border-radius: 24px;
	box-shadow: var(--shadow-glass);
	border: 1px solid var(--glass-border);
	position: relative;
	overflow: hidden;
}

.service-intro-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 5px;
	height: 100%;
	background: var(--primary);
}

.service-intro-card p {
	margin: 0 0 15px;
	font-size: 1.1em;
	line-height: 2;
	color: var(--text-medium);
}


/*===========================================
  会社概要ページ
===========================================*/
.company-overview {
	padding: 80px 5%;
}

.company-intro {
	text-align: center;
	margin-bottom: 60px;
}

.company-message {
	font-size: 1.2em;
	line-height: 2;
	color: var(--text-medium);
	max-width: 800px;
	margin: 0 auto;
}

.company-details {
	margin-bottom: 60px;
}

.company-info-grid {
	display: grid;
	gap: 40px;
	max-width: 900px;
	margin: 0 auto;
}

.info-card {
	background: var(--white);
	padding: 40px;
	border-radius: 20px;
	box-shadow: 0 10px 40px var(--shadow-soft);
}

.company-table {
	width: 100%;
}

.company-table tr {
	border-bottom: 1px solid #eee;
}

.company-table th,
.company-table td {
	padding: 20px 15px;
	text-align: left;
}

.company-table th {
	width: 30%;
	color: var(--primary-dark);
	font-weight: 600;
	background: linear-gradient(135deg, #f8fbfe 0%, #f0f7fc 100%);
}

.company-mission {
	margin-bottom: 60px;
	text-align: center;
}

.mission-content {
	max-width: 800px;
	margin: 0 auto;
	padding: 50px;
	background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
	border-radius: 20px;
	color: var(--white);
}

.mission-content blockquote {
	font-size: 1.4em;
	font-family: 'Noto Serif JP', serif;
	font-weight: 500;
	margin: 0 0 25px;
	line-height: 1.8;
}

.mission-content p {
	margin: 0;
	opacity: 0.9;
	font-size: 1em;
	color: rgba(255,255,255,0.9);
}

.office-location {
	margin-bottom: 40px;
}

.location-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 40px;
	max-width: 1100px;
	margin: 0 auto;
}

.map-container {
	border-radius: 15px;
	overflow: hidden;
	box-shadow: 0 10px 40px var(--shadow-soft);
}

.map-container iframe {
	display: block;
}

.access-info {
	padding: 30px;
	background: var(--bg-light);
	border-radius: 15px;
}

.access-info h4 {
	color: var(--primary);
	margin: 0 0 20px;
	font-size: 1.2em;
}

.access-info ul {
	margin: 0 0 20px;
	padding-left: 20px;
}

.access-info li {
	margin-bottom: 10px;
	color: var(--text-medium);
}

.parking-info {
	font-size: 0.9em;
	color: var(--text-light);
	margin: 0;
}

.company-overview h3,
.company-details h3,
.company-mission h3,
.office-location h3 {
	font-size: 1.4em;
	color: var(--primary-dark);
	text-align: center;
	margin: 0 0 25px;
	font-weight: 600;
	position: relative;
}

.company-overview h3::after,
.company-details h3::after,
.company-mission h3::after,
.office-location h3::after {
	content: '';
	display: block;
	width: 40px;
	height: 2px;
	background: linear-gradient(90deg, var(--primary), var(--primary-light));
	margin: 15px auto 0;
	border-radius: 2px;
}


/*===========================================
  お問い合わせページ - 刷新デザイン
===========================================*/
.contact-content {
	padding: 80px 5%;
	background: linear-gradient(180deg, var(--white) 0%, #f0f8ff 50%, #e8f4fc 100%);
}

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

.contact-intro {
	text-align: center;
	margin-bottom: 50px;
	animation: fadeInUp 0.8s ease-out;
}

.contact-intro h2 {
	color: var(--primary-dark);
	font-size: clamp(22px, 3.5vw, 32px);
	margin-bottom: 15px;
	font-weight: 600;
}

.contact-intro h2::after {
	content: '';
	display: block;
	width: 50px;
	height: 2px;
	background: linear-gradient(90deg, var(--primary), var(--primary-light));
	margin: 20px auto 0;
	border-radius: 2px;
}

.contact-intro p {
	color: var(--text-medium);
	font-size: 1em;
	line-height: 1.9;
	max-width: 550px;
	margin: 0 auto;
}

.contact-form-section {
	background: var(--white);
	padding: 50px;
	border-radius: 20px;
	box-shadow: 0 10px 40px rgba(52, 152, 219, 0.08);
	margin-bottom: 50px;
	border: 1px solid rgba(52, 152, 219, 0.1);
	max-width: 800px;
	margin-left: auto;
	margin-right: auto;
	position: relative;
	overflow: hidden;
}

.contact-form-section::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(90deg, var(--primary), var(--primary-light));
}

/* Contact Form 7 フォームスタイル */
.wpcf7-form {
	max-width: 100%;
}

.wpcf7-form p {
	margin: 0 0 25px;
	color: var(--text-dark);
}

.wpcf7-form label {
	display: block;
	font-weight: 500;
	color: var(--primary-dark);
	font-size: 0.95em;
	margin-bottom: 8px;
}

.wpcf7-form-control-wrap {
	display: block;
	margin-top: 8px;
}

.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form textarea {
	width: 100%;
	padding: 15px 18px;
	border: 1px solid rgba(52, 152, 219, 0.2);
	border-radius: 12px;
	font-size: 1em;
	font-family: 'Noto Sans JP', sans-serif;
	background: linear-gradient(135deg, #fafcfe 0%, #f5f9fc 100%);
	color: var(--text-dark);
	transition: all 0.3s ease;
	box-sizing: border-box;
}

.wpcf7-form input[type="text"]:focus,
.wpcf7-form input[type="email"]:focus,
.wpcf7-form textarea:focus {
	outline: none;
	border-color: var(--primary);
	background: var(--white);
	box-shadow: 0 0 0 4px rgba(52, 152, 219, 0.1);
}

.wpcf7-form input[type="text"]::placeholder,
.wpcf7-form input[type="email"]::placeholder,
.wpcf7-form textarea::placeholder {
	color: var(--text-light);
}

.wpcf7-form textarea {
	min-height: 180px;
	resize: vertical;
	line-height: 1.8;
}

.wpcf7-form input[type="submit"],
.wpcf7-submit {
	display: block;
	width: 100%;
	max-width: 320px;
	margin: 30px auto 0;
	padding: 18px 40px;
	background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
	color: var(--white);
	border: none;
	border-radius: 50px;
	font-size: 1.1em;
	font-weight: 600;
	font-family: 'Noto Sans JP', sans-serif;
	cursor: pointer;
	transition: all 0.4s ease;
	box-shadow: 0 8px 25px rgba(52, 152, 219, 0.25);
	letter-spacing: 0.08em;
}

.wpcf7-form input[type="submit"]:hover,
.wpcf7-submit:hover {
	transform: translateY(-3px);
	box-shadow: 0 12px 35px rgba(52, 152, 219, 0.35);
}

.wpcf7-spinner {
	display: none;
}

.wpcf7-response-output {
	margin: 20px 0 0;
	padding: 15px 20px;
	border-radius: 10px;
	font-size: 0.95em;
	text-align: center;
}

.wpcf7-form.sent .wpcf7-response-output {
	background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
	color: #155724;
	border: 1px solid #c3e6cb;
}

.wpcf7-form.failed .wpcf7-response-output,
.wpcf7-form.invalid .wpcf7-response-output {
	background: linear-gradient(135deg, #f8d7da 0%, #f5c6cb 100%);
	color: #721c24;
	border: 1px solid #f5c6cb;
}

.wpcf7-not-valid-tip {
	color: #e74c3c;
	font-size: 0.85em;
	margin-top: 8px;
	display: block;
}

.wpcf7-not-valid {
	border-color: #e74c3c !important;
}

/* 連絡先カードセクション */
.contact-cards-section {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 25px;
	max-width: 900px;
	margin: 0 auto 50px;
	animation: fadeInUp 0.8s ease-out 0.2s both;
}

.contact-card {
	background: var(--white);
	padding: 40px 30px;
	border-radius: 16px;
	text-align: center;
	box-shadow: 0 8px 30px rgba(52, 152, 219, 0.06);
	border: 1px solid rgba(52, 152, 219, 0.08);
	transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
	position: relative;
	overflow: hidden;
}

.contact-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 5px;
	background: linear-gradient(90deg, var(--primary), var(--primary-light));
	transform: scaleX(0);
	transition: transform 0.4s ease;
}

.contact-card:hover::before {
	transform: scaleX(1);
}

.contact-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 15px 45px rgba(52, 152, 219, 0.12);
	border-color: rgba(52, 152, 219, 0.15);
}

.contact-card h4 {
	font-size: 1.1em;
	color: var(--primary-dark);
	margin: 0 0 20px;
	font-weight: 600;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
}

.contact-card h4::before {
	content: '';
	width: 40px;
	height: 40px;
	background: linear-gradient(135deg, var(--primary-pale), var(--primary-light));
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.contact-card .contact-main {
	margin: 0 0 10px;
	font-size: 1.2em;
	font-weight: 600;
	color: var(--text-dark);
}

.contact-card .contact-sub {
	margin: 0;
	color: var(--text-light);
	font-size: 0.9em;
}

.contact-card a {
	color: var(--primary);
	font-weight: 600;
	transition: all 0.3s ease;
	text-decoration: none;
}

.contact-card a:hover {
	color: var(--primary-light);
}

/* FAQセクション */
.faq-section {
	margin-top: 0;
	padding: 50px;
	background: var(--white);
	border-radius: 20px;
	box-shadow: 0 10px 40px rgba(52, 152, 219, 0.06);
	max-width: 800px;
	margin-left: auto;
	margin-right: auto;
	border: 1px solid rgba(52, 152, 219, 0.08);
	animation: fadeInUp 0.8s ease-out 0.4s both;
}

.faq-section h3 {
	font-size: 1.4em;
	color: var(--primary-dark);
	text-align: center;
	margin-bottom: 35px;
	font-weight: 600;
	position: relative;
}

.faq-section h3::after {
	content: '';
	display: block;
	width: 40px;
	height: 2px;
	background: linear-gradient(90deg, var(--primary), var(--primary-light));
	margin: 12px auto 0;
	border-radius: 2px;
}

.faq-items {
	display: grid;
	gap: 15px;
}

.faq-item {
	background: linear-gradient(135deg, #f8fbfe 0%, #f0f7fc 100%);
	padding: 25px 30px;
	border-radius: 12px;
	transition: all 0.3s ease;
	border: 1px solid rgba(52, 152, 219, 0.08);
	position: relative;
	overflow: hidden;
}

.faq-item::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	width: 3px;
	background: linear-gradient(180deg, var(--primary-light), var(--primary));
	border-radius: 0 3px 3px 0;
}

.faq-item:hover {
	transform: translateX(5px);
	box-shadow: 0 8px 25px rgba(52, 152, 219, 0.08);
	background: var(--white);
}

.faq-item h4 {
	font-size: 1em;
	color: var(--primary-dark);
	margin: 0 0 10px;
	font-weight: 600;
}

.faq-item p {
	color: var(--text-medium);
	margin: 0;
	line-height: 1.8;
	font-size: 0.9em;
}


/*===========================================
  アニメーション効果
===========================================*/
.blur {
	animation: fadeInUp 0.8s ease-out;
}

@keyframes pulse {
	0%, 100% {
		transform: scale(1);
	}
	50% {
		transform: scale(1.05);
	}
}

.icon-bg1 {
	display: inline-block;
	padding: 3px 12px;
	background: var(--primary);
	color: var(--white);
	border-radius: 20px;
	font-size: 0.75em;
	margin-left: 10px;
	font-weight: 500;
}


/*===========================================
  768px未満の追加指定
===========================================*/
@media screen and (max-width:767px) {

header {
	height: 65px;
	padding: 0 3%;
}

header #logo {
	width: 180px;
}

header #logo img {
	max-height: 40px;
}

#mainimg {
	height: 90vh;
	min-height: 500px;
	top: 65px;
}

#mainimg #text {
	padding: 0 5%;
}

#mainimg #text h2 {
	font-size: clamp(24px, 6vw, 36px);
	margin-bottom: 20px;
}

#mainimg #text p.text {
	font-size: 14px;
	margin-bottom: 25px;
}

#mainimg #text p.text span {
	font-size: 20px;
}

.br-smartphone {
	display: block;
}

#mainimg .pc {
	display: block;
	margin: 10px 0;
}

section, main > article {
	padding: 50px 4%;
}

main {
	padding-top: 65px;
}

main h2 {
	font-size: 1.6em;
	margin-bottom: 30px;
}

.strengths-grid {
	grid-template-columns: 1fr;
	gap: 25px;
}

.strength-card {
	padding: 35px 25px;
}

.strength-number {
	font-size: 3rem;
}

a.btn1, a.btn2 {
	padding: 12px 25px;
	font-size: 0.9em;
	width: 100%;
	justify-content: center;
}

.block-2 {
	width: 100%;
}

.text-image {
	width: 100%;
	margin-bottom: 20px;
}

.customer {
	width: 100%;
}

.contact-cards-section {
	grid-template-columns: 1fr;
	gap: 20px;
}

.contact-card {
	padding: 35px 25px;
}

.location-content {
	grid-template-columns: 1fr;
}

.page-hero {
	padding: 100px 5% 60px;
}

.page-hero .page-title {
	font-size: 1.8em;
}

.service-intro-card {
	padding: 30px 20px;
}

.info-card {
	padding: 25px 20px;
}

.company-table th,
.company-table td {
	display: block;
	width: 100%;
	padding: 12px 15px;
}

.company-table th {
	border-bottom: none;
}

.mission-content {
	padding: 35px 25px;
}

.mission-content blockquote {
	font-size: 1.1em;
}

.faq-section {
	padding: 30px 20px;
	margin-top: 50px;
}

#menubar_hdr {
	right: 15px;
	top: 10px;
	width: 45px;
	height: 45px;
}

}


/*===========================================
  900px以上の追加指定
===========================================*/
@media screen and (min-width:900px) {

html,body {
	font-size: 15px;
}

header {
	height: 90px;
}

header #logo {
	width: 320px;
}

header #logo img {
	max-height: 65px;
}

#mainimg {
	top: 90px;
}

main {
	padding-top: 90px;
}

#menubar {
	display: flex !important;
	align-items: center;
}

#menubar ul {
	display: flex;
	list-style: none;
	margin: 0;
	padding: 0;
}

#menubar ul li {
	margin: 0 5px;
}

#menubar a {
	padding: 10px 18px;
	font-size: 0.95em;
	color: var(--text-dark);
	font-weight: 500;
}

#menubar_hdr {
	display: none !important;
}

.c2 {
	flex-direction: row;
	gap: 60px;
}

.c2 > * {
	flex: 1;
}

.c2 .image {
	order: 0;
}

#new dt {
	width: 12em;
}

#new dd {
	width: calc(100% - 12em);
}

#new dt span {
	display: inline-block;
}

}


/*===========================================
  1200px以上の追加指定
===========================================*/
@media screen and (min-width:1200px) {

section, main > article {
	padding: 100px 8%;
}

.strengths-grid {
	gap: 50px;
}

.strength-card {
	padding: 60px 40px;
}

}


/*===========================================
  事業紹介ページ - サービスセクション
===========================================*/
.career-service,
.investment-service {
	padding: 80px 5%;
}

.career-service {
	background: var(--white);
}

.investment-service {
	background: var(--bg-light);
}

.service-split {
	display: flex;
	align-items: center;
	gap: 60px;
	max-width: 1200px;
	margin: 0 auto;
}

.service-split.reverse {
	flex-direction: row-reverse;
}

.service-content {
	flex: 1;
}

.service-content h2 {
	font-size: 1.8em;
	color: var(--primary);
	margin: 0 0 15px;
	font-weight: 600;
}

.service-content h3 {
	font-size: 1.3em;
	color: var(--text-dark);
	margin: 0 0 20px;
	font-weight: 500;
}

.service-content p {
	color: var(--text-medium);
	line-height: 2;
	margin: 0 0 15px;
}

.service-image {
	flex: 1;
	max-width: 500px;
}

.service-image img {
	width: 100%;
	border-radius: 20px;
	box-shadow: var(--shadow-medium);
	transition: transform 0.5s ease;
}

.service-image img:hover {
	transform: scale(1.02);
}

.service-benefits {
	margin-top: 25px;
}

.service-benefits ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.service-benefits li {
	padding: 12px 0;
	padding-left: 20px;
	position: relative;
	color: var(--text-medium);
	border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.service-benefits li::before {
	content: '';
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 8px;
	height: 8px;
	background: var(--primary);
	border-radius: 50%;
}


/*===========================================
  投資商品グリッド
===========================================*/
.investment-products {
	padding: 80px 5%;
	background: var(--white);
}

.section-intro {
	text-align: center;
	color: var(--text-medium);
	font-size: 1.1em;
	margin-bottom: 50px;
}

.products-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 30px;
	max-width: 1400px;
	margin: 0 auto;
}

.product-card {
	background: var(--glass-bg);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	padding: 35px 25px;
	border-radius: 20px;
	border: 1px solid var(--glass-border);
	box-shadow: var(--shadow-glass);
	transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
	position: relative;
	overflow: hidden;
}

.product-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(135deg, var(--primary-pale) 0%, transparent 60%);
	opacity: 0;
	transition: opacity 0.4s ease;
}

.product-card:hover {
	transform: translateY(-10px);
	box-shadow: var(--shadow-medium), 0 0 40px rgba(102, 126, 234, 0.1);
}

.product-card:hover::before {
	opacity: 1;
}

.product-card h4 {
	font-size: 1.2em;
	color: var(--primary);
	margin: 0 0 15px;
	font-weight: 600;
	position: relative;
}

.product-card p {
	font-size: 0.9em;
	color: var(--text-medium);
	line-height: 1.8;
	margin: 0;
	position: relative;
}


/*===========================================
  CTA セクション
===========================================*/
.service-cta {
	padding: 100px 5%;
	background: linear-gradient(135deg, #3498db 0%, #74b9ff 100%);
	position: relative;
	overflow: hidden;
}

.service-cta::before {
	content: '';
	position: absolute;
	top: -50%;
	left: -50%;
	width: 200%;
	height: 200%;
	background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 50%);
	animation: floatBg 20s ease-in-out infinite;
}

.cta-content {
	max-width: 800px;
	margin: 0 auto;
	text-align: center;
	position: relative;
	z-index: 1;
}

.cta-content h2 {
	font-size: 2em;
	color: var(--white);
	margin: 0 0 20px;
	font-weight: 600;
}

.cta-content h2::after {
	display: none;
}

.cta-content p {
	color: rgba(255,255,255,0.9);
	font-size: 1.1em;
	line-height: 1.8;
	margin: 0 0 35px;
}

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

.btn-primary,
.btn-secondary {
	display: inline-block;
	padding: 16px 40px;
	border-radius: 50px;
	font-weight: 500;
	text-decoration: none;
	transition: all 0.4s ease;
}

.btn-primary {
	background: var(--white);
	color: #3498db;
	box-shadow: 0 8px 30px rgba(0,0,0,0.2);
}

.btn-primary:hover {
	transform: translateY(-3px);
	box-shadow: 0 12px 40px rgba(0,0,0,0.3);
	color: #74b9ff;
}

.btn-secondary {
	background: transparent;
	color: var(--white);
	border: 2px solid rgba(255,255,255,0.5);
}

.btn-secondary:hover {
	background: rgba(255,255,255,0.1);
	border-color: var(--white);
	transform: translateY(-3px);
	color: var(--white);
}


/*===========================================
  お客様の声ページ - 刷新デザイン
===========================================*/
.customer-testimonials {
	padding: 80px 5%;
	background: linear-gradient(180deg, var(--white) 0%, #f5fafd 50%, #eef6fb 100%);
}

.customer-testimonials .container {
	max-width: 1000px;
	margin: 0 auto;
}

/* イントロセクション */
.intro-section {
	text-align: center;
	margin-bottom: 60px;
	animation: fadeInUp 0.8s ease-out;
}

.intro-section h2 {
	font-size: clamp(24px, 3.5vw, 34px);
	color: var(--primary-dark);
	margin-bottom: 20px;
	font-weight: 600;
}

.intro-section h2::after {
	content: '';
	display: block;
	width: 50px;
	height: 2px;
	background: linear-gradient(90deg, var(--primary), var(--primary-light));
	margin: 18px auto 0;
	border-radius: 2px;
}

.intro-text {
	color: var(--text-medium);
	font-size: 1.1em;
	line-height: 2;
	max-width: 800px;
	margin: 0 auto 40px;
}

/* 統計カード */
.testimonial-stats {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
	max-width: 800px;
	margin: 0 auto;
}

.stat-item {
	background: var(--white);
	padding: 35px 25px;
	border-radius: 16px;
	text-align: center;
	box-shadow: 0 8px 30px rgba(52, 152, 219, 0.06);
	border: 1px solid rgba(52, 152, 219, 0.08);
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}

.stat-item::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(90deg, var(--primary), var(--primary-light));
	transform: scaleX(0);
	transition: transform 0.4s ease;
}

.stat-item:hover::before {
	transform: scaleX(1);
}

.stat-item:hover {
	transform: translateY(-5px);
	box-shadow: 0 12px 35px rgba(52, 152, 219, 0.1);
	border-color: rgba(52, 152, 219, 0.15);
}

.stat-number {
	display: block;
	font-size: clamp(24px, 3.5vw, 36px);
	font-weight: 700;
	color: var(--primary);
	margin-bottom: 8px;
	line-height: 1.2;
}

.stat-label {
	display: block;
	font-size: 0.95em;
	color: var(--text-medium);
	font-weight: 500;
}

/* テスティモニアルセクション */
.testimonials-section {
	margin-bottom: 50px;
}

.section-heading {
	font-size: 1.3em;
	color: var(--primary-dark);
	margin-bottom: 35px;
	font-weight: 600;
	padding-left: 20px;
	position: relative;
}

.section-heading::before {
	content: '';
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 5px;
	height: 100%;
	background: linear-gradient(180deg, var(--primary), var(--primary-light));
	border-radius: 3px;
}

/* テスティモニアルカード */
.testimonial-card {
	background: var(--white);
	border-radius: 18px;
	padding: 40px;
	margin-bottom: 25px;
	box-shadow: 0 8px 30px rgba(52, 152, 219, 0.06);
	border: 1px solid rgba(52, 152, 219, 0.08);
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}

.testimonial-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 4px;
	height: 100%;
	background: linear-gradient(180deg, var(--primary), var(--primary-light));
}

.testimonial-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 12px 40px rgba(52, 152, 219, 0.1);
	border-color: rgba(52, 152, 219, 0.12);
}

.testimonial-header {
	margin-bottom: 20px;
}

.customer-info h4 {
	font-size: 1.15em;
	color: var(--primary-dark);
	margin: 0 0 10px;
	font-weight: 600;
}

.customer-details {
	color: var(--text-medium);
	font-size: 0.9em;
	margin: 0 0 12px;
}

/* 成功バッジ */
.success-badges {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.badge {
	display: inline-block;
	padding: 6px 14px;
	border-radius: 20px;
	font-size: 0.8em;
	font-weight: 500;
}

.badge.salary {
	background: linear-gradient(135deg, #a8e6cf, #88d8b0);
	color: #1a6b4a;
}

.badge.location {
	background: linear-gradient(135deg, #bde4fc, #a0d8f7);
	color: var(--primary-dark);
}

.badge.position {
	background: linear-gradient(135deg, #e8d5f2, #d8bfe8);
	color: #6a3d80;
}

.badge.benefit {
	background: linear-gradient(135deg, #ffe4c4, #ffd4a8);
	color: #b86820;
}

.badge.property {
	background: linear-gradient(135deg, #b8f0e0, #a0e8d0);
	color: #1a7060;
}

.badge.income {
	background: linear-gradient(135deg, #c4e4f8, #a8d8f4);
	color: #1a5580;
}

.badge.investment {
	background: linear-gradient(135deg, #f8d4d4, #f0b8b8);
	color: #a03030;
}

.badge.growth {
	background: linear-gradient(135deg, #c8f0d8, #a8e8c0);
	color: #1a6040;
}

/* テスティモニアルコンテンツ */
.testimonial-content blockquote {
	background: linear-gradient(135deg, #f8fbfe 0%, #f0f7fc 100%);
	padding: 22px 28px;
	border-radius: 14px;
	margin: 0 0 18px;
	font-style: italic;
	color: var(--text-dark);
	border: 1px solid rgba(52, 152, 219, 0.06);
	line-height: 1.9;
	position: relative;
}

.testimonial-content blockquote::before {
	content: '"';
	position: absolute;
	top: -10px;
	left: 20px;
	font-size: 4em;
	color: var(--primary-light);
	opacity: 0.3;
	font-family: Georgia, serif;
	line-height: 1;
}

.testimonial-content p {
	color: var(--text-medium);
	line-height: 1.9;
	margin: 0;
}

/* CTA セクション（お客様の声ページ用） */
.cta-section {
	background: linear-gradient(135deg, #d4edfc 0%, #bde4fc 50%, #a8dcff 100%);
	padding: 60px 50px;
	border-radius: 20px;
	text-align: center;
	position: relative;
	overflow: hidden;
	border: 1px solid rgba(52, 152, 219, 0.1);
	margin-top: 40px;
}

.cta-section::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background:
		radial-gradient(circle at 20% 80%, rgba(255,255,255,0.1) 0%, transparent 40%),
		radial-gradient(circle at 80% 20%, rgba(255,255,255,0.08) 0%, transparent 30%);
	pointer-events: none;
}

.cta-section h3 {
	font-size: clamp(20px, 3vw, 28px);
	color: var(--primary-dark);
	margin: 0 0 15px;
	font-weight: 600;
	position: relative;
}

.cta-section > p {
	color: var(--text-medium);
	font-size: 1em;
	margin: 0 0 30px;
	position: relative;
}

.cta-section .cta-buttons {
	position: relative;
}


/*===========================================
  レスポンシブ - 事業紹介ページ
===========================================*/
@media screen and (max-width:900px) {
	.service-split,
	.service-split.reverse {
		flex-direction: column;
		gap: 40px;
	}

	.service-image {
		max-width: 100%;
		order: -1;
	}

	.products-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 20px;
	}

	.product-card {
		padding: 25px 20px;
	}
}

@media screen and (max-width:600px) {
	.products-grid {
		grid-template-columns: 1fr;
	}

	.cta-buttons {
		flex-direction: column;
		align-items: center;
	}

	.btn-primary,
	.btn-secondary {
		width: 100%;
		max-width: 300px;
		text-align: center;
	}
}


/*===========================================
  レスポンシブ - お客様の声・お問い合わせページ
===========================================*/
@media screen and (max-width:900px) {
	.testimonial-stats {
		grid-template-columns: repeat(3, 1fr);
		gap: 20px;
	}

	.stat-item {
		padding: 30px 20px;
	}

	.stat-number {
		font-size: clamp(24px, 5vw, 32px);
	}

	.testimonial-card {
		padding: 35px 30px;
	}

	.contact-cards-section {
		grid-template-columns: 1fr;
		gap: 20px;
	}

	.contact-card {
		padding: 40px 30px;
	}

	.contact-form-section {
		padding: 40px 30px;
	}

	.faq-section {
		padding: 40px 30px;
	}

	.cta-section {
		padding: 60px 30px;
	}
}

@media screen and (max-width:600px) {
	.page-hero {
		padding: 130px 5% 80px;
		min-height: 250px;
	}

	.page-hero .page-title {
		font-size: clamp(28px, 7vw, 36px);
	}

	.page-hero .page-title::after {
		width: 60px;
		margin: 20px auto 0;
	}

	.testimonial-stats {
		grid-template-columns: 1fr;
		gap: 15px;
	}

	.stat-item {
		padding: 25px 20px;
	}

	.intro-section {
		margin-bottom: 50px;
	}

	.section-heading {
		font-size: 1.3em;
		padding-left: 15px;
	}

	.testimonial-card {
		padding: 30px 25px;
	}

	.customer-info h4 {
		font-size: 1.15em;
	}

	.success-badges {
		gap: 8px;
	}

	.badge {
		padding: 6px 14px;
		font-size: 0.8em;
	}

	.testimonial-content blockquote {
		padding: 20px;
	}

	.testimonial-content blockquote::before {
		font-size: 3em;
		top: -5px;
		left: 15px;
	}

	.cta-section {
		padding: 50px 25px;
	}

	.cta-section h3 {
		font-size: 1.3em;
	}

	.contact-form-section {
		padding: 30px 20px;
	}

	.faq-section {
		padding: 30px 20px;
	}

	.faq-item {
		padding: 25px 20px;
	}
}
