/* =========================================================
   Root Variables - Color, Typography, Layout
========================================================= */

:root {
	/* Layout */
	--sidebar-width: 228px;
	--topbar-height: 60px;
	/* Brand Colors */
	--bg: #157D00;
	--topbar: #157D00;
	--accent: #157D00;
	--accent-dark: #0D5700;
	--accent-light: #92FF80;
	--accent-soft: #CBFFBF;
	--feature: #92FF80;
	--error: #FF0000;
	/* Text Colors */
	--text-dark: #0f2b0a;
	--text-accent: #157D00;
	--text-feature: #92FF80;
	--text-white: #FFFFFF;
	--text: #0e1b10;
	--muted: #2d5a2d;
	/* UI Colors */
	--panel: #f3ffe8;
	--border: #0D5700;
	--pill: #ffffff;
	--pill-border: #cde9c8;
	--white: #ffffff;
	--black: #000000;
	--gray-900: #333333;
	--gray-700: #636363;
	--gray-500: #A3A3A3;
	--gray-300: #E3E3E3;
	--gray-100: #F3F3F3;
	/* Typography */
	--font-en: 'Open Sans', sans-serif;
	--font-ja: 'Noto Sans JP', sans-serif;
	--h1: 72px;
	--h2: 60px;
	--h3: 48px;
	--h4: 36px;
	--h5: 28px;
	--h6: 24px;
	--body-lg: 20px;
	--body: 16px;
	--body-sm: 12px;
	/* Border Radius */
	--radius-pill: 999px;
	--radius-sm: 8px;
	--radius-md: 16px;
	--transition: 0.3s ease;
	/* Width and Height */
	--vh: 1vh;
	--vw: 1vw;
}
/* =========================================================
   Typography
========================================================= */

html[lang="en"] {
	font-family: var(--font-en);
}
html[lang="ja"] {
	font-family: var(--font-ja);
}
h1 {
	font-size: var(--h1);
	font-weight: bold;
	line-height: 1.5em;
}
h2 {
	font-size: var(--h2);
	font-weight: bold;
	line-height: 1.5em;
}
h3 {
	font-size: var(--h3);
	font-weight: bold;
	line-height: 1.5em;
}
h4 {
	font-size: var(--h4);
	font-weight: bold;
	line-height: 1.5em;
}
h5 {
	font-size: var(--h5);
	font-weight: bold;
	line-height: 1.5em;
}
h6 {
	font-size: var(--h6);
	font-weight: bold;
	line-height: 1.5em;
}
.text-body {
	font-size: var(--body);
	line-height: 1.5em;
	margin: 16px 0;
}
.text-body-lg {
	font-size: var(--body-lg);
	line-height: 1.5em;
}
.text-body-sm {
	font-size: var(--body-sm);
	line-height: 1.5em;
}
.text-bold {
	font-weight: bold;
}
.text-muted {
	color: var(--gray-500);
}
.text-muted-light {
	color: var(--gray-300);
}
.text-left {
	text-align: left;
}
.text-center {
	text-align: center;
}
.text-white {
	color: #ffffff;
}
/* =========================================================
   Buttons
========================================================= */

.button {
	padding: 12px 24px;
	font-size: var(--body);
	font-weight: 700;
	border: none;
	border-radius: var(--radius-pill);
	cursor: pointer;
	transition: background var(--transition);
	text-decoration: none;
}
.button-default {
	background: var(--accent-dark);
	color: var(--white);
}
.button-default:hover, .button-default:focus {
	background: var(--accent-light);
	color: var(--black);
}
.button-disabled {
	background: transparent;
	color: var(--gray-500);
	border: 1px solid var(--gray-300);
	cursor: not-allowed;
}
.button-activated {
	background: var(--gray-100);
	color: var(--gray-500);
}
.button-promote {
	background: var(--accent-light);
	color: var(--black);
}
.button-promote:hover, .button-promote:focus {
	background: var(--accent-dark);
	color: var(--white);
}
.button-promote-disabled {
	background: transparent;
	color: var(--gray-500);
	border: 1px solid var(--gray-300);
}
.button-promote-activated {
	background: var(--gray-100);
	color: var(--gray-500);
}
/* =========================================================
   Inputs
========================================================= */

.input {
	width: 100%;
	padding: 12px 16px;
	font-size: var(--body);
	border-radius: var(--radius-pill);
	border: 1px solid var(--gray-300);
	box-sizing: border-box;
	transition: border-color var(--transition), background var(--transition);
}
.input::placeholder {
	color: var(--gray-500);
}
.input-filled {
	background: var(--white);
	border-color: var(--gray-500);
}
.input-focused {
	border: 2px solid var(--accent-dark);
}
.input-disabled {
	background: var(--gray-100);
	color: var(--gray-500);
	cursor: not-allowed;
}
.input-error {
	border: 2px solid var(--error);
}
.input-error+.error-message {
	color: var(--error);
	font-size: var(--body-sm);
	margin-top: 4px;
}
.w-100 {
	width: 100%;
}
/* =========================================================
   Card
========================================================= */

.card {
	background: var(--white);
	border-radius: var(--radius-md);
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
	padding: 24px;
}

/* =========================================================
   Loading
========================================================= */

/* HTML: <div class="loader"></div> */
.loader {
  width: fit-content;
  font-size: 17px;
  font-family: monospace;
  line-height: 1.4;
  font-weight: bold;
  background: 
    linear-gradient(#000 0 0) left ,
    linear-gradient(#000 0 0) right;
  background-repeat: no-repeat; 
  border-right: 5px solid #0000;
  border-left: 5px solid #0000;
  background-origin: border-box;
  position: relative;
  animation: l9-0 2s infinite;
}
.loader::before {
  content:"Loading";
}
.loader::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 22px;
  height: 60px;
  background: 
   linear-gradient(90deg,#000 4px,#0000 0 calc(100% - 4px),#000 0) bottom            /22px 20px,
   linear-gradient(90deg,red  4px,#0000 0 calc(100% - 4px),red  0) bottom 10px left 0/22px 6px,
   linear-gradient(#000 0 0) bottom 3px left 0  /22px 8px,
   linear-gradient(#000 0 0) bottom 0   left 50%/8px  16px;
 background-repeat: no-repeat;
 animation: l9-1 2s infinite;
}
@keyframes l9-0{
  0%,25%    {background-size: 50% 100%}
  25.1%,75% {background-size: 0 0,50% 100%}
  75.1%,100%{background-size: 0 0,0 0}
}
@keyframes l9-1{
  25%   { background-position:bottom, bottom 54px left 0,bottom 3px left 0,bottom 0 left 50%;left:0}
  25.1% { background-position:bottom, bottom 10px left 0,bottom 3px left 0,bottom 0 left 50%;left:0}
  50%   { background-position:bottom, bottom 10px left 0,bottom 3px left 0,bottom 0 left 50%;left:calc(100% - 22px)}
  75%   { background-position:bottom, bottom 54px left 0,bottom 3px left 0,bottom 0 left 50%;left:calc(100% - 22px)}
  75.1% { background-position:bottom, bottom 10px left 0,bottom 3px left 0,bottom 0 left 50%;left:calc(100% - 22px)}
}


/* =========================================================
   General Layout & Side Bar
========================================================= */

body {
	margin: 0;
	background: #ffffff;
	color: #000000;
}
.app {
	display: flex;
	min-height: 100vh;
	width: 100%;
	max-width: 100%;
}
.main {
	flex: 1;
	display: flex;
	flex-direction: column;
	min-width: 0;
	position: relative;
}
/* === Side Bar === */

.sidebar {
	width: var(--sidebar-width);
	background: var(--accent-light);
	display: flex;
	flex-direction: column;
	border-right: 1px solid var(--accent-light);
	padding: 16px;
	gap: 24px;
}
.brand {
	display: flex;
	align-items: center;
}
.brand-mascot {
	width: 36px;
	height: 36px;
}
.menu, .sidebar-links {
	display: flex;
	flex-direction: column;
	gap: 4px;
}
.menu-item, .menu .dropdown-toggle {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 12px;
	color: var(--text);
	text-decoration: none;
	border-radius: 24px;
}
.sidebar-links .link {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	color: var(--muted);
	text-decoration: none;
	font-size: 16px;
	padding: 12px;
	border-radius: 24px;
}
.menu-item .nav-icon, .sidebar-links .link .nav-icon {
	font-size: 18px;
	line-height: 1;
}
.menu-item p, .menu .dropdown-toggle p {
	margin: 0;
	font-weight: 700;
}
.sidebar-links .link p {
	margin: 0;
	display: inline;
}
.menu .dropdown {
	position: relative;
	margin: 0;
}
.menu-item:hover, .menu .dropdown-toggle:hover, .sidebar-links .link:hover {
	background: rgba(0, 0, 0, 0.08);
}
.menu .dropdown-toggle img {
	width: 18px;
	height: 18px;
}
.menu .dropdown-menu {
	position: absolute;
	display: none;
	top: calc(100% + 6px);
	left: 0;
	min-width: 216px;
	padding: 6px;
	margin: 0;
	background: var(--accent);
	border: none;
	border-radius: 12px;
	z-index: 1100;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}
.menu .dropdown-item {
	display: flex;
	align-items: center;
	gap: 8px;
	color: #fff;
	text-decoration: none;
	padding: 8px 10px;
	border-radius: 8px;
}
.menu .dropdown-item img {
	width: 18px;
	height: 18px;
}
.menu .dropdown-item span {
	font-size: 16px;
}
.menu .dropdown-item:hover {
	background: rgba(255, 255, 255, 0.12);
}
.menu .dropdown li {
	list-style: none;
}
.menu-item.active, .sidebar-links .link.active {
	background: var(--accent);
	color: var(--text-white);
}
.divider {
	border: none;
	border-top: 1px solid var(--border);
	margin: 0;
}
/* Responsive */

@media (max-width: 768px) {
	.menu-toggle {
		display: inline-block;
	}
	/* Ensure sidebar toggle works even if other global CSS overrides exist */
	#sidebar {
		position: fixed;
		top: 0;
		left: 0;
		bottom: 0;
		width: 280px;
		transform: translateX(-100%);
		transition: transform 0.25s ease;
		z-index: 1010;
	}
	body.sidebar-open #sidebar {
		transform: translateX(0);
	}
	.backdrop {
		display: none;
		position: fixed;
		top: 0;
		left: 0;
		right: 0;
		bottom: 0;
		background: rgba(0, 0, 0, 0.25);
		z-index: 1000;
		touch-action: none;
		overscroll-behavior: contain;
	}
	body.sidebar-open .backdrop {
		display: block;
	}
	body.sidebar-open .main {
		overflow: hidden;
	}
}
.backdrop {
	display: none;
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, 0.25);
	z-index: 900;
}
body.sidebar-open .backdrop {
	display: block;
}
/* =========================================================
   Top Bar
========================================================= */

.topbar {
	height: var(--topbar-height);
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 0 14px;
	background: var(--topbar) url('../img/logo-light.png') no-repeat center;
	background-size: auto 28px;
	color: #fff;
	white-space: nowrap;
	overflow: hidden;
	overscroll-behavior: contain;
	touch-action: none;
}
.menu-toggle {
	display: none;
	background: transparent;
	color: #fff;
	border: none;
	font-size: 22px;
}
.top-actions {
	flex-wrap: nowrap;
	min-width: 0;
}
/* 共通メニューボタン */

.common-menu-toggle {
	position: fixed;
	top: 5px;
	left: 5px;
	background: var(--accent);
	color: #fff;
	border: none;
	font-size: 36px;
	width: 50px;
	height: 50px;
	border-radius: 8px;
	cursor: pointer;
	z-index: 1100;
	display: none;
	align-items: center;
	justify-content: center;
	transition: background 0.3s ease;
}
/* Show common menu toggle only on mobile */

@media (max-width: 768px) {
	.common-menu-toggle {
		display: flex;
	}
	body.sidebar-open .common-menu-toggle {
		display: none;
	}
}
/* =========================================================
   Home Avatar section
========================================================= */

.hero {
	position: relative;
	height: calc(var(--vh, 1vh) * 100 - var(--topbar-height));
	overflow: hidden;
	display: block;
}
/* Hero overlay mask: green cover with centered rectangular window */

.hero-mask {
	position: absolute;
	/* Make the window rectangle sized by margins */
	top: 10%;
	left: 10%;
	right: 10%;
	bottom: 20%;
	pointer-events: none;
	z-index: 3;
	/* above canvas/speech-bubble background, below composer */
	border-radius: 20px;
	border: 4px solid #ffffff;
	/* Draw green overlay outside the window using a huge spread box-shadow */
	box-shadow: 0 0 0 9999px rgba(10, 160, 0, 0.92);
}
.hero-bg {
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 0.25;
	pointer-events: none;
}
.avatar-wrap {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	display: grid;
	place-items: center;
}
.canvas-container {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	flex: 1;
	width: 100%;
	border: 1px solid #C0C0C0;
	/* デバッグ用ボーダー */
	place-items: center;
	height: 100%;
}
#canvas {
	background: transparent;
	z-index: 1;
	width: 100%;
	height: 100%;
	display: block;
}
/* === Hero Sections === */

.contact-hero, .pricing-hero {
	text-align: center;
	color: #ffffff;
}
.contact-title {
	font-size: 48px;
	font-weight: bold;
	margin: 24px;
	color: var(--white);
}
.contact-subtitle, .pricing-subtitle {
	font-size: 36px;
	font-weight: 700;
}
/* === Main Content Wrapper === */

.main-content {
	background-color: var(--accent);
	min-height: 100vh;
	/* ビューポート高さ100% */
	display: flex;
	/* Flexbox利用 */
	align-items: center;
	/* 縦方向センター */
	justify-content: center;
	/* 横方向センター（必要に応じて） */
	flex-direction: column;
	/* 中身を縦並びに */
	padding: 16px;
	/* 余白は維持 */
	box-sizing: border-box;
}
/* === content section === */

.content-section {
	padding: 16px 24px;
	max-width: 1200px;
	margin: 0 auto;
}
/* === content section　モバイル＆タブレット対応（1024px以下） === */

@media (max-width: 1024px) {
	.content-section {
		padding: 16px 0;
	}
}
/* === Contact Form === */

.contact-form-section {
	max-width: 768px;
	margin: 0 auto;
	padding: 0;
}
.form-group {
	margin-bottom: 24px;
}
.form-label {
	display: block;
	font-size: 12px;
	font-weight: 400;
	margin-bottom: 8px;
	color: #fff;
}
.form-label-dark {
	display: block;
	font-size: 12px;
	font-weight: 400;
	margin-bottom: 8px;
	color: var(--text);
}
.form-input, .form-textarea {
	width: 100%;
	padding: 12px 16px;
	border: 2px solid var(--accent);
	font-size: 16px;
	transition: border-color 0.3s ease;
	box-sizing: border-box;
}
.form-input {
	border-radius: 24px;
}
.form-textarea {
	border-radius: 8px;
	min-height: 120px;
	resize: vertical;
	font-family: inherit;
}
.form-input:focus, .form-textarea:focus {
	outline: none;
	border-color: var(--feature);
}
.form-checkbox-group {
	display: flex;
	align-items: flex-start;
	gap: 6px;
	margin-bottom: 32px;
}
select {
    -webkit-appearance: none;
    appearance: none;
    background-image: url("../img/circle-arrow-down-solid.svg");
    background-repeat: no-repeat;
    background-size: 24px auto; /* 画像のサイズ（幅 高さ）*/
    background-position: right 12px center; /* 画像の位置 */
}


input[type="checkbox"] {
	appearance: none;
	-webkit-appearance: none;
	width: 20px;
	height: 20px;
	border: 2px solid #ffffff;
	border-radius: 4px;
	outline: none;
	cursor: pointer;
	vertical-align: middle;
}
input[type="checkbox"]:checked {
	background-color: var(--feature);
	border-color: #ffffff;
}
input[type="checkbox"]:checked::before {
	content: '\2713';
	display: block;
	text-align: center;
	color: #000;
	font-size: 14px;
	line-height: 16px;
}
.checkbox-label {
	font-size: 16px;
	color: #ffffff;
	line-height: 1.5;
	flex: 1;
}
.submit-button {
	width: 100%;
	padding: 16px 32px;
	background: var(--feature);
	color: #000;
	border: none;
	border-radius: 24px;
	font-size: 16px;
	font-weight: 600;
	cursor: pointer;
	transition: background 0.3s ease;
	margin-bottom: 32px;
}
.submit-button:hover {
	opacity: 0.5;
}
.form-disclaimer, .privacy-info {
	font-size: 12px;
	color: #ffffff;
	line-height: 1.6;
}
.form-disclaimer a, .privacy-info a, .legal-section a {
	color: var(--feature);
	text-decoration: underline;
}
.form-disclaimer a:hover, .privacy-info a:hover, .legal-section a:hover {
	color: #C8FFBF;
}
#thankYouMessage .text-muted-light {
	padding-bottom: 24px;
}
/* =========================================================
   login Page
========================================================= */

.login-form-section {
	max-width: 640px;
	margin: 0 auto;
	padding: 0 24px;
}
.login-box .form-input {
	border: 2px solid var(--gray-300);
}
.login-box .form-input:focus {
	outline: none;
	border-color: var(--feature);
}
.login-box input[type="checkbox"] {
	appearance: none;
	-webkit-appearance: none;
	width: 20px;
	height: 20px;
	border: 2px solid var(--gray-300);
	border-radius: 4px;
	outline: none;
	cursor: pointer;
	vertical-align: middle;
}
.login-box input[type="checkbox"]:checked {
	background-color: var(--feature);
	border-color: var(--gray-300);
}
.login-box .checkbox-label {
	font-size: 16px;
	color: #000000;
	line-height: 1.5;
	flex: 1;
}
/* =========================================================
   Pricing Page
========================================================= */

/* Pricingモーダル */

.pricing-modal-overlay {
	display: none;
	position: absolute;
	z-index: 1001;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: rgba(0, 0, 0, 0.9);
	/* 外側はスクロール禁止。必要なスクロールは .history-body 側で行う */
	/*overflow-y: auto;*/
}
.pricing-modal-content {
	width: 100%;
	height: 100%;
	overflow-y: auto;
}
.pricing-content-inner {
	min-height: 100%;
}
/* 
.pricing-plans {
  display: flex;
  gap: 24px;
  justify-content: space-between;
  max-width: 1200px;     
  margin: 0 auto;        
  width: 100%;           
}
*/

.pricing-plans {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	/* デスクトップは常に3カラム */
	gap: 24px;
	width: 100%;
	/* コンテンツ幅制限 */
	margin: 0 auto;
	/* 中央寄せ */
	padding: 0 24px 16px 24px;
	/* 画面端との余白 */
	box-sizing: border-box;
}
/* 
.plan-card {
  background: #fff;
  border-radius: 20px;
  padding: 24px 16px;
  text-align: left;
  flex: 1 1 calc(33.333% - 24px); 
  min-width: 280px;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  transition: all 0.3s ease;
}
*/

.plan-card {
	width: 100%;
	/* グリッドの幅いっぱいを使う */
	background: #fff;
	border-radius: 20px;
	padding: 24px 16px;
	text-align: left;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	position: relative;
	transition: all 0.3s ease;
	box-sizing: border-box;
	/* paddingを含めて幅を計算 */
}
.plan-card:hover {
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
	transform: translateY(-6px);
}
.featured-plan {
	box-shadow: 0 0 0 4px var(--feature);
}
.plan-card.featured-plan:hover {
	box-shadow: 0 0 0 4px var(--feature);
	transform: translateY(-6px);
}
.best-value-badge {
	position: absolute;
	top: -14px;
	left: 50%;
	transform: translateX(-50%);
	background: var(--feature);
	color: #000;
	padding: 6px 18px;
	font-size: 12px;
	font-weight: 700;
	border-radius: 999px;
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}
/* --- Typography inside pricing --- */

.plan-header {
	margin-bottom: 24px;
}
.plan-name, .plan-name-feature {
	font-size: 24px;
	font-weight: 700;
	margin-bottom: 12px;
}
.plan-name {
	color: var(--text-accent);
}
.plan-name-feature {
	color: var(--text-feature);
}
.plan-original-price {
	font-size: 14px;
	color: #aaa;
	text-decoration: line-through;
	margin-bottom: 6px;
}
.plan-price {
	font-size: 32px;
	font-weight: 800;
	color: #000;
}
.plan-period {
	font-size: 15px;
	font-weight: 400;
	color: #333;
}
.plan-features {
	margin: 24px 0;
	text-align: left;
}
.feature-item {
	display: flex;
	align-items: center;
	font-size: 14px;
	color: #111;
	gap: 8px;
	margin-bottom: 12px;
}
.check-icon {
	color: var(--accent-dark);
	font-weight: 700;
	font-size: 18px;
}
.plan-button, .plan-button.feature {
	font-size: 16px;
	font-weight: 700;
	border: none;
	padding: 14px;
	border-radius: 999px;
	cursor: pointer;
	transition: background 0.3s ease;
}
.plan-button {
	background: var(--accent);
	color: #fff;
}
.plan-button.feature {
	background: var(--feature);
	color: #000;
}
.plan-button:hover {
	opacity: 0.7;
}
/* === タブレット対応（2カラム） === */

/* 
@media (max-width: 1024px) {
  .plan-card {
    flex: 1 1 calc(50% - 12px);
  }
}
 */

@media (max-width: 1024px) and (min-width: 769px) {
	.pricing-plans {
		grid-template-columns: repeat(2, 1fr);
		/* 2カラム */
	}
}
/* === モバイル対応（1カラム） === */

/* 
@media (max-width: 768px) {
  .pricing-plans {
    flex-direction: column;
  }

  .plan-card {
    flex: 1 1 100%;
    max-width: 100%;
  }
}
*/

/* === モバイル対応（768px以下：1カラム） === */

@media (max-width: 768px) {
	.pricing-plans {
		grid-template-columns: 1fr;
		/* 1カラム */
		padding: 0;
	}
}
/* =========================================================
   Option Section
========================================================= */

.option-content {
	display: flex;
	background: #ffffff;
	border-radius: 16px;
	padding: 40px;
	gap: 40px;
	flex-wrap: nowrap;
	align-items: stretch;
}
.option-content-card {
	border-top: 1px dashed rgba(255, 255, 255, 0.4);
	padding: 32px 24px 0 24px;
}
/* === モバイル対応（768px以下：1カラム） === */

@media (max-width: 1540px) {
	.option-content, .enterprise-content {
		padding: 24px 16px !important;
	}
	.option-content-card, .enterprise-card {
	padding: 32px 0 0 0 !important;
}
}
/* =========================================================
   Enterprise Section
========================================================= */

.enterprise-content {
	display: flex;
	background: #C8FFBF;
	border-radius: 16px;
	padding: 40px;
	gap: 40px;
	flex-wrap: nowrap;
	align-items: stretch;
}
.enterprise-card {
	border-top: 1px solid rgba(255, 255, 255, 0.8);
	padding: 32px 24px 0 24px;
}
.enterprise-info {
	flex: 1;
	min-width: 200px;
	display: flex;
	flex-direction: column;
	justify-content: center;
}
.enterprise-title {
	font-size: 32px;
	font-weight: 600;
	margin: 0;
}
.enterprise-description {
	font-size: 16px;
	line-height: 1.6;
}
.enterprise-button {
	background: #09a833;
	color: white;
	padding: 12px 32px;
	border: none;
	border-radius: 8px;
	font-size: 16px;
	font-weight: 600;
	cursor: pointer;
	transition: background 0.3s ease;
}
.enterprise-button:hover {
	background: var(--topbar);
}
.enterprise-features {
	flex: 1;
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 30px;
	min-width: 400px;
}
.enterprise-column {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 16px;
}
/* =========================================================
   FAQ Section
========================================================= */

.faq-section {
	padding: 36px 0;
	margin: 0 auto;
	max-width: 768px;
}
.faq-title {
	text-align: center;
	font-size: 32px;
	color: white;
	margin: 16px 0;
}
.faq-item {
	border-bottom: 1px solid rgba(255, 255, 255, 0.4);
}
.faq-question {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 24px 0;
	font-size: 16px;
	font-weight: 500;
	cursor: pointer;
	color: white;
}
.faq-toggle {
	font-size: 24px;
	font-weight: 300;
	transition: transform 0.3s ease;
}
.faq-answer {
	color: rgba(255, 255, 255, 0.8);
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.4s ease;
}
.faq-answer p {
	margin: 8px 0 24px 0;
}
.faq-item.open .faq-answer {
	max-height: 400px;
}
.faq-item.open .faq-toggle {
	transform: rotate(45deg);
}
/* =========================================================
   Contact Section
========================================================= */

/* Contactモーダル */

.contact-modal-overlay {
	display: none;
	position: absolute;
	z-index: 1001;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: rgba(0, 0, 0, 0.9);
	overflow-y: auto;
}
.contact-modal-content {
	width: 100%;
	height: 100%;
	color: #333;
	overflow-y: auto;
}
.contact-content-inner {
	min-height: 100%;
}
.contact-section {
	text-align: center;
	padding: 16px 0;
	max-width: 768px;
	margin: 0 auto;
}
.contact-section p {
	margin: 16px 0 36px 0;
}
.contact-button:hover {
	background: var(--topbar);
}
/* =========================================================
   Form Call to Action
========================================================= */

/* ================= Modal ================= */

.modal-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.8);
	/* 背景を黒で80%透過 */
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 2000;
}
.modal-content {
	background: #fff;
	margin: 15% auto;
	border-radius: 8px;
	padding: 32px;
	max-width: 768px;
	width: 90%;
	position: relative;
	box-sizing: border-box;
}
.modal-close {
	position: absolute;
	top: 12px;
	right: 16px;
	font-size: 24px;
	font-weight: bold;
	cursor: pointer;
	color: #333;
}
/* =========================================================
   legal page
========================================================= */

.legal-section {
	text-align: left;
	padding: 16px 0;
	max-width: 768px;
	margin: 0 auto;
	color: #ffffff;
}
.legal-section h6 {
	margin: 36px 0 0 0;
}
/* =========================================================
   Footer
========================================================= */

.site-footer {
	background: #000000;
	height: 48px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 12px;
	color: #ffffff;
	text-align: center;
}
/* =========================================================
   Responsive Typography
========================================================= */

@media (max-width: 768px) {
	h1 {
		font-size: 36px !important;
	}
	h2 {
		font-size: 24px !important;
	}
	h3 {
		font-size: 20px !important;
	}
	.pricing-title, .contact-title {
		font-size: 36px;
	}
	.pricing-subtitle, .contact-subtitle {
		font-size: 20px;
	}
	.enterprise-content, .option-content {
		flex-direction: column;
	}
	.enterprise-features {
		min-width: auto;
	}
}