/* -----------------------------------------
 * 各種リセット & ベース設定
 * ----------------------------------------- */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
	font-family: 'Noto Sans JP', sans-serif;
	color: #333333;
	background-color: #ffffff;
}

body {
	overflow-x: hidden;
	line-height: 1.8;
}

.container {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 24px;
}

.container.compact {
	max-width: 700px;
}

.section-padding {
	padding: 100px 0;
}

.bg-light {
	background-color: #f8f9fa;
}

/* 共通タイポグラフィ */
.section-tag {
	color: #ff6600; /* ロゴの鮮やかなオレンジ */
	font-weight: 700;
	font-size: 14px;
	letter-spacing: 2px;
	text-transform: uppercase;
	margin-bottom: 8px;
}
.section-tag.white { color: #ffaa66; }

.section-title {
	font-size: 36px;
	font-weight: 900;
	color: #002060; /* ロゴのディープブルー */
	margin-bottom: 24px;
	letter-spacing: -0.5px;
}
.section-title.white { color: #ffffff; }

.section-subtitle {
	font-size: 16px;
	color: #666666;
	margin-bottom: 60px;
}

/* -----------------------------------------
 * ヘッダー
 * ----------------------------------------- */
header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	background: rgba(255, 255, 255, 0.95);
	box-shadow: 0 2px 20px rgba(0,0,0,0.05);
	z-index: 1000;
	backdrop-filter: blur(10px);
}

.header-container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	max-width: 1200px;
	margin: 0 auto;
	padding: 16px 24px;
}

.logo img {
	height: 42px; /* ロゴの視認性を担保するサイズ */
	width: auto;
	display: block;
}

nav ul {
	display: flex;
	list-style: none;
	align-items: center;
}

nav ul li {
	margin-left: 32px;
}

nav ul li a {
	text-decoration: none;
	color: #002060;
	font-weight: 500;
	transition: color 0.3s;
	font-size: 15px;
}

nav ul li a:hover {
	color: #ff6600;
}

nav ul li a.nav-btn {
	background: #ff6600;
	color: #ffffff;
	padding: 10px 24px;
	border-radius: 50px;
	transition: background 0.3s, transform 0.2s;
}

nav ul li a.nav-btn:hover {
	background: #e05500;
	transform: translateY(-2px);
}

/* -----------------------------------------
 * メインビジュアル (Hero)
 * ----------------------------------------- */
.hero {
	height: 100vh;
	min-height: 600px;
	background: linear-gradient(135deg, #002060 0%, #001030 100%);
	position: relative;
	display: flex;
	align-items: center;
	padding-top: 80px;
}

/* ロゴの流線型をイメージした背景バックグラウンド装飾 */
.hero::before {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	width: 50%;
	height: 100%;
	background: radial-gradient(circle, rgba(255,102,0,0.15) 0%, transparent 70%);
	pointer-events: none;
}

.hero-content {
	max-width: 800px;
	margin: 0 auto;
	text-align: center;
	padding: 0 24px;
}

.hero-sub {
	color: #ffaa66;
	font-weight: 700;
	font-size: 16px;
	letter-spacing: 4px;
	margin-bottom: 24px;
}

.hero h1 {
	font-size: 56px;
	font-weight: 900;
	color: #ffffff;
	line-height: 1.3;
	margin-bottom: 24px;
}

.hero h1 .highlight {
	background: linear-gradient(transparent 60%, rgba(255,102,0,0.4) 40%);
}

.hero-en {
	color: rgba(255, 255, 255, 0.7);
	font-size: 18px;
	font-style: italic;
	margin-bottom: 48px;
}

.cta-button {
	display: inline-block;
	background: linear-gradient(90deg, #ff6600 0%, #ff8800 100%);
	color: #ffffff;
	text-decoration: none;
	padding: 18px 48px;
	border-radius: 50px;
	font-weight: 700;
	font-size: 18px;
	box-shadow: 0 10px 30px rgba(255,102,0,0.3);
	transition: transform 0.3s, box-shadow 0.3s;
}

.cta-button:hover {
	transform: translateY(-3px);
	box-shadow: 0 15px 40px rgba(255,102,0,0.4);
}

/* -----------------------------------------
 * MISSION & VISION & VALUE
 * ----------------------------------------- */
.mvv-grid {
	display: grid;
	grid-template-columns: 1xl 1fr;
	gap: 32px;
	margin-bottom: 60px;
}

@media (min-width: 768px) {
	.mvv-grid { grid-template-columns: 1fr 1fr; }
}

.mvv-card {
	background: #ffffff;
	border-left: 5px solid #002060;
	padding: 40px;
	box-shadow: 0 10px 30px rgba(0,0,0,0.03);
	border-radius: 0 12px 12px 0;
}

.mvv-card h3 {
	font-size: 24px;
	color: #002060;
	margin-bottom: 16px;
}

.mvv-lead {
	font-size: 18px;
	font-weight: 700;
	color: #ff6600;
	margin-bottom: 16px;
}

.value-section {
	margin-top: 80px;
	background: #f8f9fa;
	padding: 40px;
	border-radius: 16px;
}

.value-section h3 {
	text-align: center;
	color: #002060;
	margin-bottom: 32px;
	font-size: 22px;
}

.value-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
	gap: 20px;
}

.value-item {
	background: #ffffff;
	padding: 24px;
	border-radius: 12px;
	text-align: center;
	box-shadow: 0 4px 15px rgba(0,0,0,0.02);
}

.value-item span {
	display: inline-block;
	width: 32px;
	height: 32px;
	background: rgba(255,102,0,0.1);
	color: #ff6600;
	border-radius: 50%;
	line-height: 32px;
	font-weight: 700;
	margin-bottom: 12px;
}

.value-item h4 {
	font-size: 18px;
	color: #002060;
	margin-bottom: 8px;
}

.value-item p {
	font-size: 13px;
	color: #666666;
	line-height: 1.4;
}

/* -----------------------------------------
 * SERVICES
 * ----------------------------------------- */
.services-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
	gap: 32px;
}

.service-card {
	background: #ffffff;
	padding: 40px;
	border-radius: 16px;
	box-shadow: 0 10px 40px rgba(0,0,0,0.02);
	transition: transform 0.3s, box-shadow 0.3s;
	position: relative;
	overflow: hidden;
}

.service-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 4px;
	background: linear-gradient(90deg, #002060, #ff6600);
	opacity: 0;
	transition: opacity 0.3s;
}

.service-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 20px 50px rgba(0,0,0,0.07);
}

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

.service-icon {
	font-size: 40px;
	margin-bottom: 24px;
}

/* -----------------------------------------
 * 高級感を高めるオリジナル・デザインアイコン
 * ----------------------------------------- */
.service-icon-box {
	width: 64px;
	height: 64px;
	margin-bottom: 24px;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(0, 32, 96, 0.04);
	border-radius: 12px;
	transition: all 0.3s ease;
}

.service-card:hover .service-icon-box {
	background: #ff6600;
}

/* 1. Web広告運用（モダンな3本棒グラフ） */
.service-icon-box .icon-bar {
	display: inline-block;
	width: 6px;
	border-radius: 3px;
	margin: 0 3px;
	background: #002060;
	transition: background 0.3s;
}

.service-icon-box .chart-1 {
	height: 16px;
	margin-top: auto;
}

.service-icon-box .chart-2 {
	height: 28px;
	background: #ff6600;
	margin-top: auto;
}

.service-icon-box .chart-3 {
	height: 38px;
	margin-top: auto;
}

/* 2. SEO（フラットな虫眼鏡） */
.magnifying-glass .glass-circle {
	width: 20px;
	height: 20px;
	border: 3px solid #002060;
	border-radius: 50%;
	position: absolute;
	top: 16px;
	left: 16px;
	transition: border-color 0.3s;
}

.magnifying-glass .glass-handle {
	width: 14px;
	height: 4px;
	background: #ff6600;
	position: absolute;
	bottom: 18px;
	right: 14px;
	transform: rotate(45deg);
	border-radius: 2px;
	transition: background 0.3s;
}

/* 3. AIO（スマートなAIロボットの顔） */
.ai-robot .robot-head {
	width: 32px;
	height: 24px;
	border: 3px solid #002060;
	border-radius: 6px;
	position: absolute;
	background: transparent;
	transition: border-color 0.3s;
}

.ai-robot .robot-eye {
	width: 4px;
	height: 4px;
	background: #ff6600;
	border-radius: 50%;
	position: absolute;
	z-index: 2;
	transition: background 0.3s;
}

.ai-robot .robot-eye.left {
	left: 24px;
}

.ai-robot .robot-eye.right {
	right: 24px;
}

.ai-robot .robot-antenna {
	width: 2px;
	height: 6px;
	background: #002060;
	position: absolute;
	top: 14px;
	transition: background 0.3s;
}

/* 4. LP改善（右肩上がりのコンバージョン矢印） */
.lp-arrow .arrow-line {
	width: 32px;
	height: 4px;
	background: #002060;
	position: absolute;
	transform: rotate(-45deg);
	border-radius: 2px;
	transition: background 0.3s;
}

.lp-arrow .arrow-point {
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 0 6px 10px 6px;
	border-color: transparent transparent #ff6600 transparent;
	position: absolute;
	top: 14px;
	right: 14px;
	transform: rotate(45deg);
	transition: border-color 0.3s;
}

/* 5. アフィリエイト（がっちり繋ぐ2つの手） */
.handshake .hand {
	width: 18px;
	height: 10px;
	border: 3px solid #002060;
	border-radius: 4px;
	position: absolute;
	transition: border-color 0.3s;
}

.handshake .left-hand {
	transform: rotate(15deg);
	left: 16px;
	border-color: #ff6600;
}

.handshake .right-hand {
	transform: rotate(-15deg);
	right: 16px;
}

/* 6. マーケティング顧問（信頼のビジネスネクタイ） */
.consulting-tie .tie-top {
	width: 12px;
	height: 8px;
	background: #ff6600;
	position: absolute;
	top: 20px;
	border-radius: 2px;
	transition: background 0.3s;
}

.consulting-tie .tie-body {
	width: 14px;
	height: 24px;
	background: #002060;
	position: absolute;
	top: 26px;
	clip-path: polygon(20% 0%, 80% 0%, 100% 70%, 50% 100%, 0% 70%);
	transition: background 0.3s;
}

/* ホバー時の全アイコンパーツ反転エフェクト（白抜き化） */
.service-card:hover .service-icon-box .icon-bar,
.service-card:hover .service-icon-box .glass-handle,
.service-card:hover .service-icon-box .robot-eye,
.service-card:hover .service-icon-box .arrow-line,
.service-card:hover .service-icon-box .tie-top,
.service-card:hover .service-icon-box .tie-body {
	background: #ffffff !important;
}

.service-card:hover .service-icon-box .glass-circle,
.service-card:hover .service-icon-box .robot-head,
.service-card:hover .service-icon-box .robot-antenna,
.service-card:hover .service-icon-box .hand {
	border-color: #ffffff !important;
}

.service-card:hover .service-icon-box .arrow-point {
	border-color: transparent transparent #ffffff transparent !important;
}

.service-card h3 {
	font-size: 20px;
	color: #002060;
	margin-bottom: 16px;
}

.service-card p {
	font-size: 14px;
	color: #555555;
	line-height: 1.7;
}

/* -----------------------------------------
 * ABOUT / MESSAGE
 * ----------------------------------------- */
.about-flex {
	display: flex;
	flex-direction: column;
	gap: 48px;
}

@media (min-width: 992px) {
	.about-flex {
		flex-direction: row;
		align-items: center;
	}
	.about-text { flex: 1.2; }
	.about-image { flex: 0.8; }
}

.about-text p {
	margin-bottom: 20px;
	color: #444444;
}

.profile-box {
	margin-top: 40px;
	background: #002060;
	color: #ffffff;
	padding: 32px;
	border-radius: 16px;
	box-shadow: 0 10px 30px rgba(0,32,96,0.15);
}

.profile-box h3 {
	font-size: 20px;
	margin-bottom: 4px;
}

.profile-box .en-name {
	font-size: 14px;
	font-weight: 400;
	color: rgba(255,255,255,0.7);
	margin-left: 8px;
}

.profile-lead {
	color: #ffaa66;
	font-weight: 700;
	font-size: 15px;
	margin-bottom: 16px;
}

.profile-desc {
	font-size: 14px;
	color: rgba(255,255,255,0.85);
	line-height: 1.6;
}

.image-wrapper {
	width: 100%;
	height: 400px;
	background: linear-gradient(135deg, rgba(0,32,96,0.05) 0%, rgba(255,102,0,0.05) 100%);
	border: 2px dashed rgba(0,32,96,0.2);
	border-radius: 24px;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
}

.experience-badge {
	position: absolute;
	background: #ff6600;
	color: #ffffff;
	width: 100px;
	height: 100px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	font-weight: 900;
	font-size: 16px;
	line-height: 1.2;
	box-shadow: 0 10px 20px rgba(255,102,0,0.2);
}

.profile-img-container {
	width: 100%;
	max-width: 450px;
	margin: 0 auto;
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 20px 40px rgba(0,32,96,0.08);
}

/* -----------------------------------------
 * 代表プロフィールエリアの文字色修正
 * ----------------------------------------- */
#profile .profile-text {
	color: #444444;
}

#profile .profile-sub-title {
	color: #ff6600;
	font-weight: 700;
}

#profile .profile-name {
	color: #002060;
	font-weight: 900;
}

#profile .profile-name .en-name {
	color: #666666;
	font-weight: 500;
}

#profile .profile-lead {
	color: #ff6600;
	font-weight: 700;
}

#profile .profile-desc {
	color: #333333;
	line-height: 1.8;
}

.skills-box {
	background: #ffffff;
	border: 1px solid #e2e8f0;
}

.skills-box h4 {
	color: #002060;
	font-weight: 700;
}

.services-main-image {
	max-width: 760px;
	margin: 0 auto 60px;
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 15px 40px rgba(0,32,96,0.06);
}

.card-inside-image {
	margin-top: 20px;
	border-radius: 8px;
	overflow: hidden;
	border: 1px solid #eeeeee;
	box-shadow: 0 4px 12px rgba(0,0,0,0.03);
}

.site-responsive-img {
	width: 100%;
	height: auto;
	display: block;
	object-fit: cover;
}

/* -----------------------------------------
 * 新・スキル領域インフォグラフィック（空白完全埋め・強化版）
 * ----------------------------------------- */
.skills-visual-container {
	width: 100%;
	max-width: 450px;
	height: 380px;
	margin: 0 auto;
	position: relative;
	background: radial-gradient(circle at center, rgba(0,32,96,0.06) 0%, rgba(255,102,0,0.02) 50%, #ffffff 100%);
	border: 1px solid #e2e8f0;
	border-radius: 24px;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 15px 35px rgba(0,32,96,0.02);
	overflow: hidden;
	box-sizing: border-box;
}

/* 背景をリッチにする多重リング（空白を視覚的に埋める） */
.skills-visual-container::before {
	content: '';
	position: absolute;
	width: 240px;
	height: 240px;
	border: 1px dashed rgba(0,32,96,0.25);
	border-radius: 50%;
	pointer-events: none;
	box-shadow: 0 0 0 40px rgba(0,32,96,0.01), 0 0 0 80px rgba(255,102,0,0.01);
}

/* 放射状のコネクトライン（中心から各スキルへ伸びる線） */
.skills-visual-container::after {
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	pointer-events: none;
	background:
		linear-gradient(to top, transparent 50%, rgba(255,102,0,0.2) 50%, rgba(255,102,0,0.2) 80%, transparent 80%) no-repeat center/2px 100%,
		linear-gradient(to right, transparent 15%, rgba(0,32,96,0.15) 15%, rgba(0,32,96,0.15) 85%, transparent 85%) no-repeat center/100% 2px,
		linear-gradient(45deg, transparent 20%, rgba(0,32,96,0.1) 20%, rgba(0,32,96,0.1) 80%, transparent 80%) no-repeat center/100% 100%,
		linear-gradient(-45deg, transparent 20%, rgba(255,102,0,0.1) 20%, rgba(255,102,0,0.1) 80%, transparent 80%) no-repeat center/100% 100%;
	z-index: 1;
}

/* 中央の「20年」コアバッジ */
.core-experience {
	width: 110px;
	height: 110px;
	background: linear-gradient(135deg, #002060 0%, #001030 100%);
	color: #ffffff;
	border-radius: 50%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	box-shadow: 0 8px 25px rgba(0,32,96,0.3);
	z-index: 2;
	border: 4px solid #ffffff;
}

.core-experience .num {
	font-size: 32px;
	font-weight: 900;
	line-height: 1;
	color: #ff6600;
}

.core-experience .unit {
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.5px;
	margin-top: 2px;
	color: rgba(255,255,255,0.9);
}

/* 軌道上に配置するスキルタグの共通設定 */
.skill-orbit-item {
	position: absolute;
	background: #ffffff;
	color: #002060;
	padding: 8px 18px;
	border-radius: 50px;
	font-size: 13px;
	font-weight: 700;
	box-shadow: 0 6px 20px rgba(0,0,0,0.08);
	border: 1px solid #e2e8f0;
	transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
	z-index: 3;
	white-space: nowrap;
}

.skill-orbit-item:hover {
	background: #ff6600;
	color: #ffffff;
	border-color: #ff6600;
	transform: translateY(-3px) scale(1.05);
	box-shadow: 0 10px 25px rgba(255,102,0,0.25);
}

/* 各バッジの配置（サークルと完全に連動） */
.skill-orbit-item.opt-1 { top: 35px; left: 50%; transform: translateX(-50%); border-left: 4px solid #ff6600; }
.skill-orbit-item.opt-2 { top: 140px; left: 20px; border-left: 4px solid #002060; }
.skill-orbit-item.opt-3 { top: 140px; right: 20px; border-left: 4px solid #ff6600; }
.skill-orbit-item.opt-4 { bottom: 45px; left: 55px; border-left: 4px solid #002060; }
.skill-orbit-item.opt-5 { bottom: 45px; right: 55px; border-left: 4px solid #ff6600; }

/* スマホ表示での調整 */
@media (max-width: 768px) {
	.skills-visual-container {
		height: 320px;
	}

	.skills-visual-container::before {
		width: 180px;
		height: 180px;
	}

	.core-experience {
		width: 90px;
		height: 90px;
	}

	.core-experience .num {
		font-size: 26px;
	}

	.skill-orbit-item {
		padding: 6px 14px;
		font-size: 12px;
	}

	/* スマホ画面の縮小に合わせた最適配置 */
	.skill-orbit-item.opt-1 { top: 25px; }
	.skill-orbit-item.opt-2 { top: 125px; left: 10px; }
	.skill-orbit-item.opt-3 { top: 125px; right: 10px; }
	.skill-orbit-item.opt-4 { bottom: 35px; left: 30px; }
	.skill-orbit-item.opt-5 { bottom: 35px; right: 30px; }
}

#company-profile {
	background-color: #ffffff;
}

.company-table-wrapper {
	margin-top: 40px;
	background: #ffffff;
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 10px 30px rgba(0, 32, 96, 0.03);
	border: 1px solid #f0f4f8;
}

.company-table {
	width: 100%;
	border-collapse: collapse;
	text-align: left;
}

.company-table th,
.company-table td {
	padding: 24px 32px;
	border-bottom: 1px solid #f0f4f8;
	font-size: 15px;
}

.company-table tr:last-child th,
.company-table tr:last-child td {
	border-bottom: none;
}

.company-table th {
	width: 30%;
	background-color: #fafbfc;
	color: #002060;
	font-weight: 700;
	letter-spacing: 0.5px;
	white-space: nowrap;
}

.company-table td {
	color: #444444;
	line-height: 1.7;
}

@media (max-width: 576px) {
	.company-table th,
	.company-table td {
		display: block;
		width: 100%;
		padding: 16px 20px;
	}

	.company-table th {
		background-color: rgba(0, 32, 96, 0.03);
		border-bottom: none;
		padding-bottom: 8px;
	}

	.company-table td {
		padding-top: 4px;
	}
}

/* -----------------------------------------
 * CONTACT FORM
 * ----------------------------------------- */
.contact-section {
	background: linear-gradient(180deg, #002060 0%, #001030 100%);
	text-align: center;
}

.contact-lead {
	color: rgba(255,255,255,0.8);
	margin-bottom: 48px;
}

.contact-status {
	display: none;
	margin: 0 0 20px;
	padding: 12px 16px;
	border-radius: 10px;
	font-size: 14px;
	font-weight: 700;
	text-align: center;
}

.contact-status.show {
	display: block;
}

.contact-status.success {
	background: #e7f8ee;
	color: #0d6b3f;
	border: 1px solid #b9e9cc;
}

.contact-status.error {
	background: #fff1ef;
	color: #9f2f2f;
	border: 1px solid #ffd0cb;
}

.contact-form {
	background: #ffffff;
	padding: 48px;
	border-radius: 24px;
	box-shadow: 0 20px 60px rgba(0,0,0,0.15);
	text-align: left;
}

.contact-form.is-hidden {
	display: none;
}

.form-group {
	margin-bottom: 24px;
}

.form-group label {
	display: block;
	font-weight: 700;
	color: #002060;
	margin-bottom: 8px;
	font-size: 14px;
}

.form-group label span {
	background: #ff6600;
	color: #ffffff;
	font-size: 11px;
	padding: 2px 8px;
	border-radius: 4px;
	margin-left: 8px;
}

.form-group input,
.form-group textarea {
	width: 100%;
	padding: 14px;
	border: 1px solid #dddddd;
	background: #f8f9fa;
	border-radius: 8px;
	font-size: 15px;
	transition: border-color 0.3s, background 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
	outline: none;
	border-color: #ff6600;
	background: #ffffff;
}

.submit-btn {
	width: 100%;
	background: #ff6600;
	color: #ffffff;
	border: none;
	padding: 18px;
	font-size: 16px;
	font-weight: 700;
	border-radius: 8px;
	cursor: pointer;
	box-shadow: 0 5px 15px rgba(255,102,0,0.2);
	transition: background 0.3s, transform 0.2s;
}

.submit-btn:hover {
	background: #e05500;
	transform: translateY(-2px);
}

/* -----------------------------------------
 * FOOTER
 * ----------------------------------------- */
footer {
	background: #001030;
	color: rgba(255,255,255,0.6);
	padding: 32px 0;
	font-size: 14px;
	border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-flex {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 16px;
}

.footer-logo {
	color: #ffffff;
	font-weight: 700;
	font-size: 18px;
}

/* ==========================================================================
   スマートフォン表示最適化（画面幅 768px 以下）
   ========================================================================== */
@media (max-width: 768px) {
	/* 1. セクション全体の余白をコンパクトに */
	.section-padding {
		padding: 60px 0;
	}

	/* 2. タイポグラフィ（文字サイズ）の最適化 */
	.section-title {
		font-size: 26px;
		margin-bottom: 16px;
	}

	.section-subtitle {
		font-size: 14px;
		margin-bottom: 40px;
	}

	/* 3. メインビジュアル（Heroエリア）の調整 */
	.hero {
		height: auto;
		min-height: calc(100vh - 60px);
		padding: 100px 0 60px;
	}

	.hero h1 {
		font-size: 32px;
		line-height: 1.4;
	}

	.hero-sub {
		font-size: 13px;
		letter-spacing: 2px;
		margin-bottom: 16px;
	}

	.hero-en {
		font-size: 14px;
		margin-bottom: 32px;
	}

	.cta-button {
		padding: 14px 32px;
		font-size: 15px;
		width: 100%;
		max-width: 340px;
	}

	/* 4. ヘッダーナビゲーションの調整 */
	.header-container {
		padding: 12px 16px;
	}

	.logo img {
		height: 32px;
	}

	nav ul li {
		margin-left: 16px;
	}

	nav ul li a {
		font-size: 13px;
	}

	nav ul li a.nav-btn {
		padding: 6px 14px;
	}

	/* 5. 創業ストーリーのフォント調整 */
	.story-content p {
		font-size: 15px;
		line-height: 1.8;
		margin-bottom: 16px;
	}

	.story-highlight {
		font-size: 16px !important;
		margin: 24px 0;
		padding-left: 12px;
	}

	/* 6. 提供サービスカードの調整 */
	.services-grid {
		grid-template-columns: 1fr;
		gap: 20px;
	}

	.service-card {
		padding: 24px;
	}

	.services-main-image {
		margin-bottom: 40px;
	}

	/* 7. お問い合わせフォームの調整 */
	.contact-form {
		padding: 24px 16px;
		border-radius: 16px;
	}

	.form-group {
		margin-bottom: 16px;
	}

	.form-group input,
	.form-group textarea {
		padding: 12px;
		font-size: 14px;
	}

	.submit-btn {
		padding: 14px;
		font-size: 15px;
	}

	/* 8. フッターの調整 */
	.footer-flex {
		flex-direction: column;
		text-align: center;
		gap: 8px;
	}
}

/* 画面幅がさらに狭いスマホ（480px以下）の微調整 */
@media (max-width: 480px) {
	/* ナビゲーションテキストを非表示にしてロゴとボタンだけにする（崩れ防止） */
	nav ul li:not(:last-child) {
		display: none;
	}

	.hero h1 {
		font-size: 28px;
	}
}

/* ==========================================================================
   画面の横ズレ・はみ出し（横スクロール）完全修正
   ========================================================================== */

html, body {
	overflow-x: hidden;
	width: 100%;
	margin: 0;
	padding: 0;
}

header {
	width: 100%;
	box-sizing: border-box;
}

.header-container {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	box-sizing: border-box;
}

.container {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 24px;
	box-sizing: border-box;
}

.container.compact {
	width: 100%;
	max-width: 700px;
	box-sizing: border-box;
}

.services-main-image,
.card-inside-image,
.profile-chart-container,
.skills-visual-container {
	max-width: 100% !important;
	box-sizing: border-box;
}

.site-responsive-img {
	width: 100%;
	max-width: 100%;
	height: auto;
	display: block;
}

@media (max-width: 768px) {
	.services-grid,
	.mvv-grid,
	.value-grid,
	.skills-tags,
	.company-table-wrapper {
		width: 100% !important;
		margin-left: 0 !important;
		margin-right: 0 !important;
		box-sizing: border-box;
	}

	.company-table,
	.company-table tbody,
	.company-table tr,
	.company-table th,
	.company-table td {
		display: block;
		width: 100% !important;
		box-sizing: border-box;
	}
}

/* -----------------------------------------
 * ANIMATION EFFECT (JS連動)
 * ----------------------------------------- */
.scroll-animate {
	opacity: 0;
	transform: translateY(40px);
	transition: opacity 0.8s ease, transform 0.8s ease;
}

.scroll-animate.animated {
	opacity: 1;
	transform: translateY(0);
}
