@charset "utf-8";
/* CSS Document */

/*********************************************************************************************
 * Reset
 *********************************************************************************************/	

* {margin: 0; padding: 0; box-sizing: border-box;}
body, html {font-family: 'Helvetica Neue', Arial, sans-serif; background: #ffffff; color: #333;}




/*********************************************************************************************
 * SECTION: ヘッダー
 *********************************************************************************************/	

/* ヘッダー全体 */
header {position: fixed; top: 0; left: 0; width: 100%; z-index: 999; transition: background-color 0.3s, backdrop-filter 0.3s; background-color: transparent;}
.header-inner {display: flex; align-items: center; justify-content: space-between; padding: 15px 5px; max-width: 1200px; margin: 0 auto;}
.header-logo {width: 200px; height: auto;}

/* デスクトップ用CTA（右端に表示） */
.desktop-cta {display: flex; gap: 15px;}

/* ナビゲーション（デスクトップ表示）デスクトップ時: 横並び */
.main-nav {display: flex; align-items: center;}

/* メニュー項目 */
.nav-menu {list-style: none; display: flex; gap: 35px;}
.nav-menu li a {text-decoration: none; color: #333; font-weight: 500; transition: color 0.3s;}
.nav-menu li a:hover {color: #0066cc;}

/* CTAボタン */
.header-cta .cta-button {text-decoration: none; padding: 10px 40px; border-radius: 25px; transition: background-color 0.3s;}
.header-cta .signin {background-color: transparent; color: #333; border: 1px solid #333;}
.header-cta .signin:hover {background-color: #333; color: #fff;}
.header-cta .signup {background-color: #0066cc; color: #fff; border: none;}
.header-cta .signup:hover {background-color: #005bb5;}

/* ハンバーガー（モバイル用） */
.hamburger {display: none; /* デスクトップ時は非表示 */ width: 30px; height: 25px; flex-direction: column; justify-content: space-between; cursor: pointer;}
.hamburger span {display: block; height: 3px; background-color: #333; border-radius: 2px;}

/* 閉じるボタン（モバイルメニュー内） */
.close-button {display: none; /* モバイル時に表示 */ font-size: 2.7rem; color: #333; cursor: pointer; position: absolute; top: 30px; right: 35px;}

/* スクロール時に付与されるクラス */
.scrolled {background-color: rgba(255, 255, 255, 0.8); backdrop-filter: blur(6px);}

section {padding: 100px 20px; margin-top: 80px; /* ヘッダー分のスペースを確保 */}	  
	  
/* まずはベースで .mobile-cta を非表示 */
.mobile-cta {display: none;}

/* レスポンシブ対応 */
@media (max-width: 768px) {
/* デスクトップ用CTAを非表示 */
.desktop-cta {display: none;}

/* モバイル用CTAを表示 */
.mobile-cta {display: flex; flex-direction: column; gap: 10px;}

/* ハンバーガーを表示 */
.hamburger {display: flex;}

/* 全画面オーバーレイ: ここでアニメーション＆デザインを工夫 */
.main-nav {position: fixed; top: 0; left: 0; width: 100%; height: 100vh; /* 全画面 */ background-color: #f0f9ff; display: none; /* 初期は非表示 */ flex-direction: column; align-items: center; justify-content: center; gap: 40px; z-index: 9999; /* 最前面 */ opacity: 0; transform: translateY(-10%); transition: opacity 0.5s ease, transform 0.5s ease;}
.main-nav.open {display: flex; opacity: 1; transform: translateY(0);}

/* メニュー項目の縦並び */
.nav-menu {flex-direction: column; gap: 25px; text-align: center;}
.nav-menu li a {font-size: 1.4rem; color: #333; transition: color 0.3s;}
.nav-menu li a:hover {color: #ff5722;}

/* クローズボタン表示 */
.close-button {display: block;}

/* モバイルメニュー内のCTAボタン */
.mobile-cta .cta-button {background-color: #0066cc; color: #fff; border: 1px solid #fff; padding: 15px 90px;}
.mobile-cta .cta-button:hover {background-color: #005bb5;}
}




/*********************************************************************************************
 * SECTION: ファーストビュー（ヒーロー セクション）
 *********************************************************************************************/	

.hero {position: relative; overflow: hidden; min-height: 70vh; display: flex; align-items: center; justify-content: center; padding: 0 60px; /* 背景に柔らかなグラデーションを適用 */ background: linear-gradient(120deg, #f8fbff 0%, #f0f9ff 100%);}
.hero-inner {width: 100%; max-width: 1200px; display: flex; align-items: center; justify-content: space-between; position: relative; z-index: 2; flex-wrap: wrap; /* 画面が狭い場合に折り返す */}

/* 左側コンテンツ */
.hero-content {flex: 1; min-width: 300px;}
/*インドLP*/.hero-content_en-in {flex: 1; min-width: 300px;}
.hero-content h1 {font-size: 3.5rem; line-height: 1.2; margin-bottom: 20px; color: #333;}
/*インドLP*/.hero-content_en-in h1 {font-size: 2.55rem; line-height: 1.2; margin-bottom: 20px; color: #333;}
.hero-content p {font-size: 1.2rem; line-height: 1.6; margin-bottom: 30px; color: #555;}
/*インドLP*/.hero-content_en-in p {font-size: 1.2rem; line-height: 1.6; margin-bottom: 30px; color: #555;}

/* 強調用クラス */
.highlight {color: #ff5722;}

.hero-cta-button {display: inline-block; padding: 15px 70px; font-size: 20px; color: #fff; background-color: #0066cc; border-radius: 50px; text-decoration: none; box-shadow: 0 4px 10px rgba(0, 102, 204, 0.3); transition: background-color 0.3s, transform 0.3s;}

.hero-cta-button:hover {background-color: #005bb5; transform: translateY(-2px);}

/*ボタン下のクレジットカード不要（No credit card required）*/
.hero-credit-badge {display: inline-flex; align-items: center; background: #e0f6d7; color: #298e46; border-radius: 12px; padding: 5px 15px; font-size: 0.95em; font-weight: 600; letter-spacing: 0.5px; margin-left: 40px; gap: 6px; margin-top: 5px;}
.hero-credit-badge svg {flex-shrink: 0; display: inline-block;}

/* ロゴの並び */
.trusted-logos {margin-top: 30px; display: flex; align-items: center; gap: 20px; flex-wrap: wrap;}
.trusted-logos img {width: 80px; height: auto; opacity: 0.8; transition: opacity 0.3s;}
.trusted-logos img:hover {opacity: 1;}

/* 右側ビジュアル */
.hero-image {/*flex: 1;*/ min-width: 300px; display: flex; justify-content: center; align-items: center;}
/*インドLP*/.hero-image_en-in {/*flex: 1;*/ min-width: 300px; display: flex; justify-content: center; align-items: center;}
.hero-image img {width: 100%; max-width: 700px; height: auto;}
/*インドLP*/.hero-image_en-in img {width: 100%; max-width: 590px; height: auto;}

/* レスポンシブ対応 */
@media (max-width: 992px) {
header {padding: 20px 30px;}
.hero {padding: 0 30px;}
.hero-content h1 {font-size: 2rem;}
.hero-content p {font-size: 1rem;}
.header-inner {padding: 0px;}
}

@media (max-width: 768px) {
.hero {margin-top: 80px; /* ヘッダーの高さに合わせて調整 */}	
.hero-inner {flex-direction: column; text-align: center;}
	
.hero-credit-badge {margin-left: 0px;}

/* 右側ビジュアルを先に表示する */
.hero-image {order: -1; /* これで上に表示される */ margin-bottom: 30px!important; margin-top: 40px;}
.hero-content, .hero-image {flex: unset; max-width: 100%; margin-bottom: 40px;}
.trusted-logos {justify-content: center;}
}



/*********************************************************************************************
 * 各セッションに設置のCTA共通ボタン
 *********************************************************************************************/	
/*ボタン下のクレジットカード不要（No credit card required）*/
.credit-badge {display: inline-flex; align-items: center; background: #e0f6d7; color: #298e46; border-radius: 12px; padding: 5px 15px; font-size: 0.95em; font-weight: 600; letter-spacing: 0.5px; gap: 6px; margin-top: 5px;}
.credit-badge svg {flex-shrink: 0; display: inline-block;}



/*********************************************************************************************
 * SECTION: ３つのヒートマップ紹介 セクション
 *********************************************************************************************/	

.benefits {background-color: #f8f8f8; padding: 100px 10px 120px 10px; text-align: center; margin-top: 0px;}
.benefits .container {max-width: 1200px; margin: 0 auto;}
.benefits h2 {font-size: 2.5rem; margin-bottom: 10px; color: #333;}
.benefits p {font-size: 1.2rem; margin-bottom: 20px; color: #555;}

/* 3つのカード全体レイアウト */
.benefits-items {display: flex; flex-wrap: wrap; justify-content: center; gap: 30px; margin-top: 45px;}

/* 個別のカード（大きな角丸＋影＋背景色） */
.benefit-item {background: #fff; border-radius: 15px; box-shadow: 0 4px 20px rgba(0,0,0,0.1); width: 340px; padding: 20px; text-align: center; overflow: hidden;  /* 子要素が角丸からはみ出さないようにする */}

/* ヒートマップ画像コンテナ */
.image-wrapper {position: relative; margin-bottom: 20px; overflow: hidden;/* 画像がはみ出さないように */}

/* ヒートマップ画像 */
.image-wrapper img {width: 100%; height: auto; display: block; margin: 0 auto;}

/* 見出しやテキスト */
.benefit-item h3 {font-size: 1.6rem; color: #ff5722; margin-top: 5px; margin-bottom: 5px;}
.benefit-item p {font-size: 0.95rem; color: #666;}

/* レスポンシブ対応 */
@media (max-width: 768px) {
.benefits {padding: 50px 10px;}	
.benefits-items {flex-direction: column; align-items: center;}
.benefit-item {width: 90%; max-width: 400px;}
.benefits h2 {font-size: 2rem; margin-bottom: 15px; color: #333;}
.benefit-item p {font-size: 1.1rem;}
}




/*********************************************************************************************
 * SECTION: 選ばれる４つの理由　セクション
 *********************************************************************************************/	

/* 全体 */
.unique-points {background-color: #ffffff; padding: 100px 20px 120px 20px; text-align: center; margin-top: 0px;}
.unique-points .container {max-width: 1200px; margin: 0 auto;}
.unique-points h2 {font-size: 2.5rem; margin-bottom: 10px; color: #333; font-weight: bold;}
.unique-points .subtitle {font-size: 1.2rem; color: #666; margin-bottom: 40px;}

/* 4つのポイントを並べるグリッド */
.points-grid {display: flex; flex-wrap: wrap; gap: 30px; justify-content: center;}

/* 個別ポイントアイテム */
.point-item {background-color: #f8f8f8; border-radius: 12px; box-shadow: 0 4px 12px rgba(0,0,0,0.05); padding: 30px 20px; width: 250px; text-align: center;}

/* アイコン */
.point-icon {margin-bottom: 20px;}
.point-icon img {width: 65px; height: 65px; object-fit: contain; /* 実際のアイコンサイズに合わせて調整 */}

/* ポイント見出し */
.point-item h3 {font-size: 1.1rem; color: #333; margin-bottom: 15px;}

/* ポイント説明文 */
.point-item p {font-size: 0.95rem; color: #666; line-height: 1.6;}

/* レスポンシブ対応 */
@media (max-width: 768px) {
.points-grid {flex-direction: column; align-items: center;}
.point-item {width: 90%; max-width: 400px;}
.unique-points h2 {font-size: 2rem; margin-bottom: 15px;}
.unique-points {padding: 50px 10px; margin-top: 0px;}
.point-item h3 {font-size: 1.3rem;}
}




/*********************************************************************************************
 * SECTION: 簡単な３ステップ　セクション
 *********************************************************************************************/	 	  
	  
/* セクション全体 */
.steps {padding: 100px 20px 120px 20px; background: #f8f8f8; text-align: center; margin-top: 0px;}
.steps .container {max-width: 1200px; margin: 40px auto;}

/* 見出しタイトルとサブキャッチ */
.steps h2 {font-size: 2.5rem; margin-bottom: 10px; color: #333; font-weight: bold;}
.steps p {font-size: 1.2rem; margin-bottom: 40px; color: #666;}
  
/* ステップのグリッドレイアウト */
.steps-grid {display: flex; justify-content: center; gap: 30px; flex-wrap: wrap;}
  
/* 各ステップカード */
.step-item {background: #fff; padding: 20px; border-radius: 16px; box-shadow: 0 4px 12px rgba(0,0,0,0.1); width: 320px; text-align: center;}

/* 番号部分 */
.step-number {background: #0066cc; color: #fff; width: 50px; height: 50px; border-radius: 50%; font-size: 1.5rem; line-height: 50px; margin: 0 auto 20px; font-weight: bold;}

/* 各ステップカード内文字 */
.step-item h3 {font-size: 1.25rem; margin-bottom: 10px; color: #333;}
.step-item p {font-size: 0.95rem; color: #555; line-height: 1.5;}
  
/* レスポンシブ対応 */
@media (max-width: 768px) {
.steps-grid {flex-direction: column; align-items: center;}
.step-item {width: 80%; max-width: 400px;}
.steps h2 {font-size: 2rem; margin-bottom: 15px;}
.steps {padding: 50px 10px; margin-top: 0px;}
}

/* デスクトップ表示時にステップカードを横並びで矢印を追加 */
@media (min-width: 769px) {
.steps-grid {position: relative;}
	
/* step-item のうち、最後以外のカードに矢印を付ける */
.step-item:not(:last-child) {position: relative; margin-right: 40px; /* 矢印分の余白を追加 */}
.step-item:not(:last-child)::after {content: ""; background: url('../images/step-arrow.png') no-repeat center; background-size: contain; width: 50px; height: 50px; position: absolute; right: -60px; top: 50%; transform: translateY(-50%);}
}
	  
	  
	  
	  
/*********************************************************************************************
 * SECTION: 世界中で信頼されています　セクション
 *********************************************************************************************/	 	  

.social-proof-alt {background-color: #fff; padding: 100px 20px 120px 20px; text-align: center; margin-top: 0px;}
.social-proof-alt .container {max-width: 1200px; margin: 0 auto;}

/* 見出しとサブタイトル専用 */
.header-text {position: relative; z-index: 1; padding: 20px;}
.social-proof-alt h2 {font-size: 2.5rem; color: #333; margin-bottom: 10px; font-weight: bold;}
.social-proof-alt .subtitle {font-size: 1.2rem; line-height: 1.5em; color: #666; margin-bottom: 40px;}

/* メインコンテンツの2カラムレイアウト */
.social-proof-content {display: flex; align-items: center; justify-content: center; gap: 40px; flex-wrap: wrap;}

/* 左側：グローバルイメージ */
.social-proof-image {flex: 0 1 450px;}
.social-proof-image img {width: 100%; max-width: 450px;}

/* 右側：差別化ポイント詳細 */
.social-proof-details {flex: 0 1 500px; display: flex; flex-direction: column; gap: 30px; text-align: left;}
.proof-detail {display: flex; align-items: center; gap: 20px; padding: 20px; background: #f8f8f8; border-radius: 12px; box-shadow: 0 4px 8px rgba(0,0,0,0.05);}
.detail-icon img {width: 90px; height: 90px; object-fit: contain; border-radius: 50%; background: #e0e0e0; padding: 3px;}
.detail-text h3 {font-size: 1.3rem; color: #333; margin-bottom: 5px;}
.detail-text p {font-size: 1rem; color: #666; line-height: 1.4;}

/* レスポンシブ対応 */
@media (max-width: 768px) {
.social-proof-content {flex-direction: column;}
.social-proof-details {text-align: center;}
.proof-detail {flex-direction: column; align-items: center; text-align: center;}
.header-text::before {content: ""; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: url('../images/around-the-world.png') no-repeat center; background-size: cover; opacity: 0.4; /* 薄く表示 */ z-index: -1;}	
.social-proof-image {display: none;}
.social-proof-alt {padding: 80px 20px; margin-top: 0px;}
.header-text {margin-bottom: 50px;}
}
	  
	  
	  
	
/*********************************************************************************************
 * SECTION: 利用者の声　セクション
 *********************************************************************************************/	 	  

.testimonials-section {position: relative; padding: 100px 20px 120px 20px; text-align: center; margin-top: 0px;
/* ロゴのオレンジ～ブルーを意識したアニメーション付きグラデーション背景 */
background: linear-gradient(270deg, #FFA500, #00C8E6); background-size: 400% 400%; animation: gradientBG 8s ease infinite;}
@keyframes gradientBG {
0% {background-position: 0% 50%;}
50% {background-position: 100% 50%;}
100% {background-position: 0% 50%;}
}
.testimonials-section .container {max-width: 1200px; margin: 0 auto;}
.testimonials-section h2 {font-size: 2.5rem; margin-bottom: 10px; font-weight: bold; color: #fff;}
.testimonials-section .subheading {font-size: 1.2rem; color: #f0f0f0; margin-bottom: 40px;}

/* カードを並べるグリッド（2列×2段） */
.testimonials-grid {display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; max-width: 1000px; margin: 0 auto; /* 中央寄せ */}

/* カード本体 */
.testimonial-card {background-color: #fff; border-radius: 10px; box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); padding: 20px; text-align: left;}

/* カード上部：写真＋ユーザー情報 */
.testimonial-header {display: flex; align-items: center; margin-bottom: 20px;}

/* ユーザー写真 */
.testimonial-photo {width: 115px; height: 100px; object-fit: cover; margin-right: 15px;}

/* 名前や役職 */
.testimonial-info h3 {margin: 0; font-size: 1.1rem; font-weight: bold; color: #333;}
.testimonial-info p {margin: 3px 0 0; font-size: 0.9rem; color: #777;}

/* カード本文 */
.testimonial-text {font-size: 0.95rem; line-height: 1.6; color: #555;}

/* CTA */
.testimonials-cta {margin: 60px auto 0 auto; text-align: center;}
.testimonials-cta-button {display: inline-block; background: #fff; color: #0066cc; font-weight: 600; border-radius: 32px; padding: 12px 32px; font-size: 1.08rem; text-decoration: none; box-shadow: 0 2px 16px 0 rgba(0, 50, 100, 0.08); border: 2px solid #fff; transition: background 0.2s, color 0.2s, border-color 0.2s; vertical-align: middle;}
.testimonials-cta-button:hover {background: #0066cc; color: #fff; border-color: #0066cc;}

/* レスポンシブ：768px以下で1列表示に */
@media (max-width: 768px) {
.testimonials-grid {grid-template-columns: 1fr;}
.testimonials-section {padding: 60px 10px;}
.testimonials-section h2 {font-size: 1.8rem;}
}
	  


	  
	  
/*********************************************************************************************
 * SECTION: 料金表　セクション
 *********************************************************************************************/	 	  

/* 料金表セクション全体 */
.pricing-section {max-width: 1280px; margin: 0 auto; padding: 100px 0px; text-align: center;}
.pricing-section h2 {font-size: 2.5rem; margin-bottom: 10px; font-weight: bold; color: #333;}
.pricing-section p.subtitle {font-size: 1.2rem; color: #666; margin-bottom: 40px;}

/* トグルスイッチコンテナ（大きめ） */
.toggle-container {display: inline-flex; align-items: center; gap: 15px; margin-bottom: 40px; font-size: 1.25rem; color: #555;}
.toggle-label {font-weight: bold;}
    
/* 大きめのスイッチ */
.switch {position: relative; display: inline-block; width: 70px; height: 34px;}
.switch input {opacity: 0; width: 0; height: 0;}
.slider {position: absolute; cursor: pointer; top: 0; left: 0; right: 0; bottom: 0; background-color: #ccc; transition: 0.4s; border-radius: 34px;}
.slider:before {position: absolute; content: ""; height: 26px; width: 26px; left: 4px; bottom: 4px; background-color: #fff; transition: 0.4s; border-radius: 50%;}
input:checked + .slider {background-color: #4caf50;}
input:checked + .slider:before {transform: translateX(36px);}

/* 料金プランカード全体 */
.pricing-cards {display: flex; flex-wrap: wrap; gap: 15px; justify-content: center;}

/* 個別カード */
.pricing-card {background-color: #fff; border-radius: 10px; box-shadow: 0 4px 12px rgba(0,0,0,0.1); width: 330px; padding: 30px 15px; text-align: center; position: relative; transition: transform 0.3s;}

/*4枚目だけ横幅小さく*/
.pricing-cards .pricing-card:nth-child(4) {width: 240px; /* 調整したい横幅に変更 */} 

/*Freeプランボタン下のクレジットカード不要（No credit card required）*/
.credit-badge-in-plan {margin: 5px auto 0 auto; display: inline-flex; align-items: center; background: #e0f6d7; color: #208b52; border-radius: 12px; padding: 2.5px 12px; font-size: 0.96em; font-weight: 600; gap: 4px;}
.price-btn-margin {height: 31px;  /* バッジの高さ＋マージン相当 */}

/* おすすめのカードにハイライト */
.recommended {border: 4px solid #4caf50;}

/* おすすめラベル（例: “POPULAR”など） */
.recommended::before {content: "Most Popular"; position: absolute; top: 5px; right: -15px; background-color: #4caf50; color: #fff; font-size: 0.90rem; font-weight: bold; padding: 8px 12px; border-radius: 4px; transform: rotate(25deg); box-shadow: 0 2px 8px rgba(0,0,0,0.2); z-index: 2;}

/* おすすめのカードにハイライト（日本LP） */
.recommended_ja-jp {border: 4px solid #4caf50;}

/* おすすめラベル（日本LP） */
.recommended_ja-jp::before {content: "一番人気プラン"; position: absolute; top: 5px; right: -15px; background-color: #4caf50; color: #fff; font-size: 0.90rem; font-weight: bold; padding: 8px 12px; border-radius: 4px; transform: rotate(25deg); box-shadow: 0 2px 8px rgba(0,0,0,0.2); z-index: 2;}



/*おすすめの太枠文のズレ調整*/
.recommended-adjustment{margin-top: 6px!important;}

/* プラン名 */
.pricing-card h3 {font-size: 1.5rem; margin-top: 10px; margin-bottom: 40px; color: #333;}

/* 価格表示を大きく・スタイリッシュに */
.price {display: flex; align-items: baseline; justify-content: center; /* 中央揃え */ gap: 6px; margin: 20px 0; height: 45px;}
.dollar-sign {font-size: 3.0rem; /* ドル記号を大きめ */ color: #ccc; line-height: 1;}
.price-amount {font-size: 3rem;/* メインの金額をさらに大きく */ font-weight: bold; color: #333; line-height: 1;}
.price-subtext {font-size: 1.3rem; color: #777; margin-left: 3px; align-self: flex-end; /* 下揃えにして段差を付ける */}
.price-custom {font-size: 1.5rem; font-weight: bold; color: #333; padding-top: 15px; text-transform: capitalize;
}

/* 機能リスト */
.features {list-style: none; margin: 10px 0px 30px 0px; padding: 0; text-align: left; color: #666; font-size: 0.93rem; line-height: 1.6; min-height: 100px;}
.features li {margin-bottom: 10px;}

/* チェックマーク付き（対応） */
.features li.included {position: relative; padding-left: 26px; margin-bottom: 8px; color: #333;}
.features li.included::before {content: ""; display: inline-block; width: 18px; height: 18px; position: absolute; left: 0; top: 2px; background: url('../images/features_check.png') no-repeat center center; background-size: contain;}

/* チェックマーク無し（未対応） */
.features li.not-included {position: relative; padding-left: 30px; margin-bottom: 8px; color: #ccc;}
.features li.not-included::before {content: ""; position: absolute; left: 0;/* チェックマーク表示しない */}
.included-text{margin: 25px 0px 0px 0px; font-size: 1.1rem;}

/* CTAボタン */
.price-cta-button {display: inline-block; background-color: #0066cc; color: #fff; width: 95%; padding: 13px 5px; font-size: 17px; border-radius: 50px; text-decoration: none; transition: background-color 0.3s;}
.price-cta-button:hover {background-color: #004c99;}

/* レスポンシブ対応 */
@media (max-width: 768px) {
.pricing-cards {flex-direction: column; align-items: center;}
.pricing-cards {display: flex; flex-wrap: wrap; gap: 40px; justify-content: center;}	
.pricing-card {width: 90%; max-width: 400px;}
.pricing-section h2 {font-size: 2.0rem; margin-bottom: 10px; font-weight: bold; color: #333;}	
.toggle-container {display: inline-flex; align-items: center; gap: 4px; margin-bottom: 40px; font-size: 1.0rem; color: #555;}
.pricing-cards .pricing-card:nth-child(4) {width: 90%;}
}





/*********************************************************************************************
 * SECTION: FAQセクション
 *********************************************************************************************/	  
	  
.faq-section {max-width: 1200px; margin: 0 auto; padding: 80px 20px; display: flex; align-items: flex-start; gap: 40px;}

/* 左側見出しタイトル */
.faq-left {flex: 0 0 30%; min-width: 260px;}
.faq-left h2 {font-size: 2.5rem; line-height: 1.3; color: #333; margin-top: 5px; margin-bottom: 20px;}

/* 右側FAQカードコンテナ */
.faq-right {flex: 1;}
.faq-box {background: #fff; border-radius: 16px; box-shadow: 0 4px 20px rgba(0,0,0,0.05); padding: 20px;}

/* FAQアイテム */
.faq-item {border-bottom: 1px solid #e5e5e5;}
.faq-item:last-child {border-bottom: none;}

/* 質問部分 */
.faq-question {display: flex; align-items: center; justify-content: space-between; cursor: pointer; padding: 20px; transition: background-color 0.3s;}
.faq-question:hover {background-color: #f9faff;}
.faq-question span {font-size: 1.2rem; color: #333; font-weight: 500;}
.faq-icon {font-size: 1.5rem!important; color: #888; transition: transform 0.3s;}

/* 回答部分 */
.faq-answer {max-height: 0; overflow: hidden; transition: max-height 0.4s ease; padding: 0 20px;}
.faq-answer p {font-size: 0.95rem; color: #555; line-height: 1.6; padding: 0 0 20px;}

/* 開閉時のスタイル */
.active .faq-answer {max-height: 200px; /* 回答の高さに合わせて十分な値を設定 */}
.active .faq-icon {transform: rotate(45deg); /* + を 45度回転させて × のように見せる */ color: #0066cc;}

/* レスポンシブ対応 */
@media (max-width: 992px) {
.faq-section {flex-direction: column; padding: 50px 20px 80px 20px;}
.faq-left {flex: unset; margin-bottom: 0px;}
}  
	  



/*********************************************************************************************
 * SECTION: フッターのCTAセクション
 *********************************************************************************************/	 
.footer-cta {background: linear-gradient(90deg, #f4fafe 0%, #e5f8ef 100%); padding: 60px 0 50px 0; text-align: center; border-radius: 32px 32px 0 0; margin-top: 64px;}
.footer-cta-inner {max-width: 1000px; margin: 0 auto; padding: 0 16px;}
.footer-cta h2 {font-size: 2.3rem; margin-bottom: 12px; font-weight: 700; color: #222;}
.footer-cta p {font-size: 1.2rem; color: #444; margin-bottom: 40px;}



/*********************************************************************************************
 * SECTION: フッターセクション
 *********************************************************************************************/	  
footer {background-color: #f9fafc; padding: 50px 20px;}
.footer-container {max-width: 1200px; margin: 0 auto; display: flex; flex-wrap: wrap; gap: 40px; justify-content: space-between; align-items: flex-start;}

/* 左側ロゴ＆コピーライト */
.footer-left {flex: 1 1 300px; min-width: 220px;}
.footer-left img {width: 150px; height: auto; margin-bottom: 10px;}
.footer-left p {font-size: 0.9rem; color: #666; line-height: 1.6;}

/* 中央カラム（Company） */
.footer-column {flex: 1 1 200px; min-width: 180px;}
.footer-column h4 {font-size: 1.2rem; margin-bottom: 15px; color: #333; font-weight: bold;}
.footer-column ul {list-style: none;}
.footer-column li {margin-bottom: 8px;}
.footer-column a {text-decoration: none; font-size: 0.9rem; color: #666; line-height: 1.5em; transition: color 0.3s;}
.footer-column a:hover {color: #0066cc;}

/* 右側カラム（Support） */
.footer-right {flex: 1 1 200px; min-width: 180px;}
.footer-right h4 {font-size: 1.2rem; margin-bottom: 15px; color: #333; font-weight: bold;}
.footer-right ul {list-style: none;}
.footer-right li {margin-bottom: 8px;}
.footer-right a {text-decoration: none; font-size: 0.9rem; color: #666; line-height: 1.5em; transition: color 0.3s;}
.footer-right a:hover {color: #0066cc;}

/* レスポンシブ対応 */
@media (max-width: 768px) {
.footer-left {flex: 1 1 100px; min-width: 220px;}
.footer-column {flex: 1 1 170px; min-width: 180px;}
.footer-right {flex: 1 1 170px; min-width: 180px;}
.bottom-cta .cta-container {flex-direction: column; text-align: center;}
.cta-text {text-align: center;}
.cta-image {margin-top: 30px;}
.footer-container {flex-direction: column; gap: 20px;}
}	  




/*********************************************************************************************
 * Cookieバナー
 *********************************************************************************************/	
#cookie-banner {position: fixed; bottom: 0; left: 0; width: 100%; background: rgba(30, 41, 59, 0.98); color: #fff; padding: 25px 12px; z-index: 9999; box-shadow: 0 -2px 20px rgba(30,41,59,0.1); font-size: 1.04rem; letter-spacing: 0.01em; display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 14px;}
#cookie-banner span {display: inline-block;}
#cookie-banner a {color: #8ee4af; text-decoration: underline; font-weight: 500; margin-left: 8px; transition: color .18s;}
#cookie-banner a:hover {color: #22d3ee;}
#cookie-banner button {background: linear-gradient(90deg,#2563eb 0%, #0891b2 100%); color: #fff; border: none; border-radius: 7px; padding: 7px 30px; font-size: 1rem; font-weight: 600; cursor: pointer; margin-left: 8px; box-shadow: 0 2px 8px rgba(20,20,20,0.10); transition: background .15s, box-shadow .15s; margin: 0px;}
#cookie-banner button:hover {background: linear-gradient(90deg,#2563eb 10%, #0ea5e9 90%); box-shadow: 0 4px 12px rgba(20,20,20,0.14);}

@media (max-width: 700px) {
#cookie-banner {flex-direction: column; align-items: stretch; gap: 8px; font-size: 0.98rem; padding: 15px 4vw 15px 4vw;}
#cookie-banner a, #cookie-banner button {margin-left: 0; margin-top: 7px; width: 100%; max-width: 340px; box-sizing: border-box;}
}




/*********************************************************************************************
 * ◆◆◆◆◆◆◆◆◆◆◆◆ About（会社概要）ページ ◆◆◆◆◆◆◆◆◆◆◆◆ 
 *********************************************************************************************/	

.about-container {max-width: 960px; margin: 0 auto; padding: 120px 20px 80px 20px;}
.about-container h1 {font-size: 2.5rem; margin-bottom: 20px; color: #0066cc;}
.about-container p {font-size: 1.1rem; line-height: 1.7; margin-bottom: 30px;}
.about-table {width: 100%; border-collapse: collapse; margin-top: 40px;}
.about-table td {padding: 12px 10px; border-bottom: 1px solid #eee; line-height: 1.5em;}
.about-table td:first-child {font-weight: bold; width: 180px; color: #555;}

@media (max-width: 768px) {
.about-container {padding: 100px 15px 60px 15px;}
.about-container h1 {font-size: 1.8rem;}
.about-container p {font-size: 1rem;}
.about-table td:first-child {width: 40%;}
} 	  


/*********************************************************************************************
 * ◆◆◆◆◆◆◆◆◆◆◆◆ プライバシーポリシー（Privacy Policy）ページ ◆◆◆◆◆◆◆◆◆◆◆◆ 
 *********************************************************************************************/	
.privacy-policy-container {max-width: 960px; margin: 0 auto; padding: 120px 20px 80px 20px;}
.privacy-policy-container h1 {font-size: 2.5rem; margin-bottom: 20px; color: #0066cc;}
.privacy-policy-container h2 {font-size: 1.4rem; margin-top: 40px; color: #333;}
.privacy-policy-container p, .privacy-policy-container ul {font-size: 1.05rem; line-height: 1.7; margin-bottom: 20px; color: #444;}
.privacy-policy-container ul {margin-left: 20px;}


/*********************************************************************************************
 * ◆◆◆◆◆◆◆◆◆◆◆◆ 利用規約（Terms of Service）ページ ◆◆◆◆◆◆◆◆◆◆◆◆ 
 *********************************************************************************************/
.terms-of-service-container {max-width: 960px; margin: 0 auto; padding: 120px 20px 80px 20px;}
.terms-of-service-container h1 {font-size: 2.5rem; margin-bottom: 20px; color: #0066cc;}
.terms-of-service-container h2 {font-size: 1.4rem; margin-top: 40px; color: #333;}
.terms-of-service-container p, .terms-of-service-container ul {font-size: 1.05rem; line-height: 1.7; margin-bottom: 20px; color: #444;}
.terms-of-service-container ul {margin-left: 20px;}


/*********************************************************************************************
 * ◆◆◆◆◆◆◆◆◆◆◆◆ クッキーポリシー（Cookie Policy）ページ ◆◆◆◆◆◆◆◆◆◆◆◆ 
 *********************************************************************************************/
.cookie-policy-container {max-width: 960px; margin: 0 auto; padding: 120px 20px 80px 20px;}
.cookie-policy-container h1 {font-size: 2.5rem; margin-bottom: 20px; color: #0066cc;}
.cookie-policy-container h2 {font-size: 1.4rem; margin-top: 40px; color: #333;}
.cookie-policy-container p, .cookie-policy-container ul {font-size: 1.05rem; line-height: 1.7; margin-bottom: 20px; color: #444;}
.cookie-policy-container ul {margin-left: 20px;}


/*********************************************************************************************
 * ◆◆◆◆◆◆◆◆◆◆◆◆ 返金ポリシー（Refund Policy）ページ ◆◆◆◆◆◆◆◆◆◆◆◆ 
 *********************************************************************************************/
.refund-policy-container {max-width: 960px; margin: 0 auto; padding: 120px 20px 80px 20px;}
.refund-policy-container h1 {font-size: 2.5rem; margin-bottom: 20px; color: #0066cc;}
.refund-policy-container h2 {font-size: 1.4rem; margin-top: 40px; color: #333;}
.refund-policy-container p, .refund-policy-container ul {font-size: 1.05rem; line-height: 1.7; margin-bottom: 20px; color: #444;}
.refund-policy-container ul {margin-left: 20px;}


/*********************************************************************************************
 * ◆◆◆◆◆◆◆◆◆◆◆◆ お問合せ（Contact Us）ページ ◆◆◆◆◆◆◆◆◆◆◆◆ 
 *********************************************************************************************/
.contact-container {max-width: 700px; margin: 0 auto; padding: 120px 20px 80px 20px;}
.contact-container h1 {font-size: 2.5rem; margin-bottom: 30px; color: #0066cc; text-align: center;}
.form-group {margin-bottom: 30px;}

label {display: block; font-weight: bold; margin-bottom: 5px;}
input[type="text"], input[type="email"], textarea {width: 100%; padding: 10px; border: 1px solid #ccc; border-radius: 4px;}
button {background: #0066cc; color: white; font-size: 17px; padding: 10px 40px; border: none; border-radius: 4px; cursor: pointer; display: block; margin: 30px auto 0;}
button:hover {background-color: #005bb5;}



