/*
Theme Name: HITOTOKI
Theme URI: https://hitotoki-stay.com
Author: HITOTOKI
Author URI: https://hitotoki-stay.com
Description: 日本の貸切宿・民泊予約サイト「HITOTOKI（ひととき）」のWordPressテーマ。和モダンなデザインで、全国の宿泊施設を紹介するのに最適です。
Version: 1.5.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: hitotoki
Tags: custom-background, custom-logo, custom-menu, featured-images, full-width-template, one-column, theme-options, translation-ready

=== 変更履歴 ===
v1.4.2
- フッターリンクを固定ページURLに修正

v1.4.1 (2024-12-24)
- 下層ページHTMLプレビュー追加
- ページ間リンク設定

v1.3.0 (2024-12-24)
- 日本地図を削除
- エリアセクションをカードグリッドレイアウトに変更
- 各エリアに説明文を追加

v1.2.1 (2024-12-24)
- 日本地図をシンプルな直線スタイルに変更
- 沖縄エリアを枠付き表示に変更
- 地域ホバーエフェクト改善

v1.2.0 (2024-12-24)
- 日本地図を筆書き風SVGに変更
- 下層ページテンプレート追加（About, Contact, Terms, Legal）
- フォームデザインをモダンに刷新
- フォーム送信機能を実装（メール通知・自動返信）

v1.1.0 (2024-12-24)
- テキスト修正（HITOTOKIグループ表記に変更）
- 「一棟貸切」「オーナー直営」表現を削除
- 物件詳細ページ（single-property.php）追加
- WHY HITOTOKIセクションの内容更新

v1.0.0 (2024-12-24)
- 初回リリース
- カスタム投稿タイプ「物件」実装
- カスタムタクソノミー「エリア」実装
- レスポンシブデザイン対応
*/

/* ========== CSS Variables ========== */
:root {
  --sumi: #1C1C1C;
  --sumi-light: #3A3A3A;
  --kinari: #F5F1E8;
  --washi: #FAF8F3;
  --aka: #B33E3E;
  --shu: #D14B4B;
  --kin: #C9A86C;
  --kin-light: #E8D4A8;
  --matcha: #5B7A5B;
  --ai: #2E4F5C;
  --fuji: #6B5B7A;
  --asagi: #48929B;
  --text: #2C2C2C;
  --text-light: #5A5A5A;
  --border: rgba(0,0,0,0.08);
}

/* ========== Reset & Base ========== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  background: var(--washi);
  color: var(--text);
  line-height: 1.9;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  height: auto;
}

/* ========== HEADER ========== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0.8rem 2rem;
  background: rgba(250, 248, 243, 0.97);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  transition: all 0.3s ease;
}

.site-header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--kin), transparent);
}

.header-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.logo-icon {
  width: 42px;
  height: 42px;
  background: var(--sumi);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.logo-icon::before {
  content: '';
  position: absolute;
  inset: -3px;
  border: 1px solid var(--kin);
  border-radius: 50%;
  opacity: 0.6;
}

.logo-icon span {
  color: var(--kinari);
  font-family: 'Shippori Mincho', serif;
  font-size: 1.1rem;
  font-weight: 500;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-en {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--sumi);
  letter-spacing: 0.12em;
  line-height: 1;
}

.logo-jp {
  font-family: 'Shippori Mincho', serif;
  font-size: 0.65rem;
  color: var(--kin);
  letter-spacing: 0.3em;
  margin-top: 3px;
}

/* Navigation */
.main-navigation ul {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}

.main-navigation a {
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  position: relative;
  transition: color 0.3s ease;
  padding: 0.3rem 0;
}

.main-navigation a::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--kin);
  transition: width 0.3s ease;
}

.main-navigation a:hover {
  color: var(--aka);
}

.main-navigation a:hover::before {
  width: 100%;
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--sumi);
  margin: 5px 0;
  transition: all 0.3s ease;
}

/* ========== HERO ========== */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: var(--sumi);
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center bottom;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    to bottom,
    rgba(28, 28, 28, 0.7) 0%,
    rgba(28, 28, 28, 0.5) 40%,
    rgba(28, 28, 28, 0.3) 100%
  );
  z-index: 1;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='120' height='120' viewBox='0 0 120 120' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='60' cy='60' r='50' stroke='%23C9A86C' stroke-width='0.5' fill='none' opacity='0.08'/%3E%3Ccircle cx='60' cy='60' r='35' stroke='%23C9A86C' stroke-width='0.5' fill='none' opacity='0.08'/%3E%3Ccircle cx='60' cy='60' r='20' stroke='%23C9A86C' stroke-width='0.5' fill='none' opacity='0.08'/%3E%3C/svg%3E");
  z-index: 2;
  pointer-events: none;
}

.hero-decoration {
  position: absolute;
  top: 15%;
  bottom: 15%;
  width: 1px;
  background: linear-gradient(to bottom, transparent, var(--kin), transparent);
  opacity: 0.5;
  z-index: 3;
}

.hero-decoration.left { left: 8%; }
.hero-decoration.right { right: 8%; }

.hero-decoration::before,
.hero-decoration::after {
  content: '◇';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  color: var(--kin);
  font-size: 0.6rem;
  opacity: 0.8;
}

.hero-decoration::before { top: -10px; }
.hero-decoration::after { bottom: -10px; }

.hero-content {
  text-align: center;
  z-index: 5;
  padding: 2rem;
  position: relative;
}

.hero-logo-circle {
  width: 130px;
  height: 130px;
  border: 1px solid rgba(201, 168, 108, 0.5);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  position: relative;
  background: radial-gradient(circle, rgba(201, 168, 108, 0.08) 0%, transparent 70%);
  animation: fadeInUp 1s ease-out;
}

.hero-logo-circle::before {
  content: '';
  position: absolute;
  inset: 8px;
  border: 1px solid rgba(201, 168, 108, 0.3);
  border-radius: 50%;
}

.hero-logo-circle::after {
  content: '';
  position: absolute;
  inset: -15px;
  border: 1px solid rgba(201, 168, 108, 0.2);
  border-radius: 50%;
}

.hero-logo-circle span {
  font-family: 'Shippori Mincho', serif;
  font-size: 3rem;
  font-weight: 400;
  color: var(--kinari);
  text-shadow: 0 0 30px rgba(201, 168, 108, 0.4);
}

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.5rem, 8vw, 5rem);
  font-weight: 400;
  color: var(--kinari);
  letter-spacing: 0.3em;
  margin-bottom: 0.5rem;
  animation: fadeInUp 1s ease-out 0.1s both;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.hero-subtitle {
  font-family: 'Shippori Mincho', serif;
  font-size: clamp(0.9rem, 2vw, 1.1rem);
  color: var(--kin);
  letter-spacing: 0.5em;
  margin-bottom: 2.5rem;
  font-weight: 400;
  animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-divider {
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--kin), transparent);
  margin: 0 auto 2rem;
  animation: fadeInUp 1s ease-out 0.25s both;
}

.hero-tagline {
  font-family: 'Shippori Mincho', serif;
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  color: var(--kinari);
  max-width: 600px;
  margin: 0 auto 3rem;
  line-height: 2.4;
  font-weight: 400;
  animation: fadeInUp 1s ease-out 0.3s both;
  text-shadow: 0 1px 10px rgba(0,0,0,0.3);
}

.hero-cta {
  display: inline-block;
  padding: 1rem 3rem;
  border: 1px solid var(--kin);
  color: var(--kinari);
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  transition: all 0.3s ease;
  animation: fadeInUp 1s ease-out 0.4s both;
  position: relative;
  overflow: hidden;
  background: rgba(0,0,0,0.2);
}

.hero-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(201, 168, 108, 0.3), transparent);
  transition: left 0.5s ease;
}

.hero-cta:hover::before {
  left: 100%;
}

.hero-cta:hover {
  background: rgba(201, 168, 108, 0.2);
  box-shadow: 0 0 30px rgba(201, 168, 108, 0.3);
}

.scroll-indicator {
  position: absolute;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%);
  animation: bounce 2s infinite;
  z-index: 5;
}

.scroll-indicator span {
  display: block;
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--kin), transparent);
}

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

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(10px); }
}

/* ========== SECTION COMMON ========== */
.content-section {
  padding: 7rem 2rem;
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
}

.section-header::before {
  content: '';
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 30px;
  background-image: url("data:image/svg+xml,%3Csvg width='30' height='30' viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M15 0L18 12L30 15L18 18L15 30L12 18L0 15L12 12Z' fill='%23C9A86C' opacity='0.3'/%3E%3C/svg%3E");
}

.section-header h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 400;
  color: var(--sumi);
  letter-spacing: 0.15em;
  margin-bottom: 0.5rem;
}

.section-header .jp {
  font-family: 'Shippori Mincho', serif;
  font-size: 0.9rem;
  color: var(--kin);
  letter-spacing: 0.25em;
  font-weight: 400;
}

.section-header::after {
  content: '';
  display: block;
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--kin), transparent);
  margin: 1.5rem auto 0;
}

/* ========== ABOUT SECTION ========== */
.about-section {
  background: var(--sumi);
  color: var(--kinari);
  position: relative;
  overflow: hidden;
}

.about-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 0L30 30M0 30L30 30M30 30L60 30M30 30L30 60M30 30L0 0M30 30L60 0M30 30L0 60M30 30L60 60' stroke='%23C9A86C' stroke-width='0.3' fill='none' opacity='0.08'/%3E%3C/svg%3E");
  pointer-events: none;
}

.about-section .section-header h2 {
  color: var(--kinari);
}

.about-content {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.about-lead {
  font-family: 'Shippori Mincho', serif;
  font-size: clamp(1.2rem, 3vw, 1.5rem);
  text-align: center;
  line-height: 2.2;
  margin-bottom: 3rem;
  color: var(--kinari);
}

.about-text {
  font-size: 1rem;
  line-height: 2.4;
  text-align: center;
  opacity: 0.85;
  margin-bottom: 2rem;
}

.about-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 4rem;
}

.about-feature {
  text-align: center;
  padding: 2rem 1rem;
  border: 1px solid rgba(201, 168, 108, 0.2);
  background: rgba(0,0,0,0.2);
}

.about-feature-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--kin);
}

.about-feature h4 {
  font-family: 'Shippori Mincho', serif;
  font-size: 1rem;
  margin-bottom: 0.8rem;
  color: var(--kinari);
}

.about-feature p {
  font-size: 0.85rem;
  opacity: 0.7;
  line-height: 1.8;
}

/* ========== AREAS SECTION ========== */
.areas-section {
  background: var(--kinari);
  position: relative;
  overflow: hidden;
}

.areas-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='50' cy='50' r='40' stroke='%23C9A86C' stroke-width='0.3' fill='none' opacity='0.1'/%3E%3C/svg%3E");
  pointer-events: none;
}

.areas-intro {
  max-width: 700px;
  margin: 0 auto 4rem;
  text-align: center;
}

.areas-intro p {
  font-family: 'Shippori Mincho', serif;
  font-size: 1rem;
  line-height: 2.2;
  color: var(--text-light);
}

/* Area Cards Grid */
.area-cards {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  position: relative;
  z-index: 1;
}

.area-card {
  display: block;
  background: white;
  border: 1px solid var(--border);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

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

.area-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
  border-color: var(--kin);
}

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

.area-card.disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.area-card.disabled:hover {
  transform: none;
  box-shadow: none;
  border-color: var(--border);
}

.area-card.disabled:hover::before {
  transform: scaleX(0);
}

.area-card-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.area-card-en {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--sumi);
}

.area-card-jp {
  font-family: 'Shippori Mincho', serif;
  font-size: 1.1rem;
  color: var(--kin);
  margin-bottom: 0.5rem;
}

.area-card-desc {
  font-size: 0.8rem;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.area-card-count {
  display: inline-block;
  padding: 0.4rem 1rem;
  background: var(--sumi);
  color: white;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
}

.area-card:hover .area-card-count {
  background: var(--aka);
}

.area-card-coming {
  display: inline-block;
  padding: 0.4rem 1rem;
  background: var(--kinari);
  color: var(--text-light);
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  border: 1px solid var(--border);
}

/* ========== PROPERTIES SECTION ========== */
.properties-section {
  background: var(--washi);
  position: relative;
}

.properties-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 200px;
  background-image: url("data:image/svg+xml,%3Csvg width='100' height='50' viewBox='0 0 100 50' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 50 Q25 0 50 50 Q75 0 100 50' stroke='%23C9A86C' stroke-width='0.5' fill='none' opacity='0.08'/%3E%3C/svg%3E");
  pointer-events: none;
}

.properties-intro {
  max-width: 700px;
  margin: 0 auto 4rem;
  text-align: center;
}

.properties-intro p {
  font-family: 'Shippori Mincho', serif;
  font-size: 1rem;
  line-height: 2.2;
  color: var(--text-light);
}

.region-section {
  max-width: 1200px;
  margin: 0 auto 5rem;
  position: relative;
  z-index: 1;
}

.region-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
  position: relative;
}

.region-header::after {
  content: '◆';
  position: absolute;
  right: 0;
  color: var(--kin);
  font-size: 0.6rem;
  opacity: 0.5;
}

.region-header h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: 0.1em;
}

.region-header .jp {
  font-family: 'Shippori Mincho', serif;
  font-size: 0.9rem;
  color: var(--kin);
  font-weight: 400;
}

.region-description {
  margin-bottom: 2rem;
  font-size: 0.95rem;
  line-height: 2;
  color: var(--text-light);
}

.properties-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 2rem;
}

/* Property Card */
.property-card {
  background: white;
  border: 1px solid var(--border);
  overflow: hidden;
  transition: all 0.4s ease;
  position: relative;
}

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

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

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

.property-image {
  position: relative;
  height: 220px;
  background: linear-gradient(135deg, var(--sumi) 0%, var(--ai) 100%);
  overflow: hidden;
}

.property-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.property-image::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60px;
  background: linear-gradient(to top, rgba(0,0,0,0.5), transparent);
}

.property-tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  padding: 0.4rem 1rem;
  background: var(--aka);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  color: white;
  z-index: 1;
}

.property-content {
  padding: 1.5rem;
  position: relative;
}

.property-location {
  font-size: 0.75rem;
  color: var(--text-light);
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
}

.property-name {
  font-family: 'Shippori Mincho', serif;
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--sumi);
  margin-bottom: 0.8rem;
}

.property-description {
  font-size: 0.9rem;
  line-height: 1.9;
  color: var(--text-light);
  margin-bottom: 1rem;
}

.property-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}

.property-specs span {
  font-size: 0.8rem;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.property-specs svg {
  width: 14px;
  height: 14px;
  color: var(--kin);
}

.property-amenities {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.property-amenities span {
  font-size: 0.7rem;
  padding: 0.3rem 0.6rem;
  background: var(--kinari);
  color: var(--text-light);
  border-radius: 2px;
}

.property-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.property-price {
  display: flex;
  align-items: baseline;
  gap: 0.3rem;
}

.property-price .amount {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--aka);
}

.property-price .unit {
  font-size: 0.75rem;
  color: var(--text-light);
}

.property-link {
  padding: 0.7rem 1.5rem;
  background: var(--sumi);
  color: white;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  transition: all 0.3s ease;
}

.property-link:hover {
  background: var(--aka);
}

/* ========== FEATURES SECTION ========== */
.features-section {
  background: var(--sumi);
  color: var(--kinari);
  position: relative;
  overflow: hidden;
}

.features-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 0L30 30M0 30L30 30M30 30L60 30M30 30L30 60M30 30L0 0M30 30L60 0M30 30L0 60M30 30L60 60M30 30L15 0M30 30L45 0M30 30L0 15M30 30L0 45M30 30L60 15M30 30L60 45M30 30L15 60M30 30L45 60' stroke='%23C9A86C' stroke-width='0.3' fill='none' opacity='0.1'/%3E%3C/svg%3E");
  pointer-events: none;
}

.features-section .section-header h2 {
  color: var(--kinari);
}

.features-section .section-header .jp {
  color: var(--kin);
}

.features-intro {
  max-width: 700px;
  margin: 0 auto 4rem;
  text-align: center;
}

.features-intro p {
  font-family: 'Shippori Mincho', serif;
  font-size: 1rem;
  line-height: 2.2;
  opacity: 0.8;
}

.features-grid {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  position: relative;
  z-index: 1;
}

.feature-item {
  text-align: center;
  padding: 2.5rem 1.5rem;
  position: relative;
  border: 1px solid rgba(201, 168, 108, 0.2);
  background: rgba(0,0,0,0.2);
}

.feature-item::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 20%;
  right: 20%;
  height: 2px;
  background: var(--kin);
}

.feature-icon {
  width: 50px;
  height: 50px;
  margin: 0 auto 1.5rem;
  color: var(--kin);
}

.feature-title {
  font-family: 'Shippori Mincho', serif;
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 1rem;
  letter-spacing: 0.1em;
}

.feature-text {
  font-size: 0.9rem;
  line-height: 2;
  opacity: 0.8;
}

/* ========== CONTACT SECTION ========== */
.contact-section {
  background: var(--kinari);
  position: relative;
  overflow: hidden;
}

.contact-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='40' cy='40' r='35' stroke='%23C9A86C' stroke-width='0.3' fill='none' opacity='0.1'/%3E%3C/svg%3E");
  pointer-events: none;
}

.contact-container {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.contact-intro {
  text-align: center;
  margin-bottom: 3rem;
}

.contact-intro p {
  font-family: 'Shippori Mincho', serif;
  color: var(--text-light);
  line-height: 2.2;
  font-weight: 400;
  font-size: 1rem;
  margin-bottom: 1rem;
}

.contact-intro .note {
  font-size: 0.85rem;
  color: var(--text-light);
  opacity: 0.8;
}

.contact-form {
  display: grid;
  gap: 1.5rem;
  background: var(--washi);
  padding: 3rem;
  border: 1px solid var(--border);
  position: relative;
}

.contact-form::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--kin), var(--aka), var(--kin));
}

.contact-form::after {
  content: '';
  position: absolute;
  top: 10px;
  right: 10px;
  width: 20px;
  height: 20px;
  border-top: 1px solid var(--kin);
  border-right: 1px solid var(--kin);
  opacity: 0.5;
}

.form-group {
  display: grid;
  gap: 0.5rem;
}

.form-group label {
  font-family: 'Shippori Mincho', serif;
  font-size: 0.9rem;
  color: var(--text);
  letter-spacing: 0.05em;
}

.form-group label .required {
  color: var(--aka);
  font-size: 0.75rem;
  margin-left: 0.3rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 1rem;
  border: 1px solid var(--border);
  background: white;
  font-family: inherit;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--kin);
  box-shadow: 0 0 0 3px rgba(201, 168, 108, 0.1);
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.submit-btn {
  padding: 1.2rem 3rem;
  background: var(--sumi);
  color: white;
  border: none;
  font-family: 'Shippori Mincho', serif;
  font-size: 1rem;
  letter-spacing: 0.2em;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 1rem;
}

.submit-btn:hover {
  background: var(--aka);
}

/* ========== FOOTER ========== */
.site-footer {
  background: var(--sumi);
  color: rgba(245, 241, 232, 0.8);
  padding: 5rem 2rem 2rem;
  position: relative;
  overflow: hidden;
}

.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--aka), var(--kin), var(--aka));
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  position: relative;
  z-index: 1;
}

.footer-brand .site-logo {
  margin-bottom: 1.5rem;
  display: inline-flex;
}

.footer-brand .logo-icon {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(201, 168, 108, 0.3);
}

.footer-brand .logo-icon::before {
  display: none;
}

.footer-brand .logo-en {
  color: var(--kinari);
}

.footer-brand .logo-jp {
  color: var(--kin);
}

.footer-brand p {
  font-family: 'Shippori Mincho', serif;
  font-size: 0.9rem;
  line-height: 2;
  opacity: 0.7;
}

.footer-section h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.9rem;
  letter-spacing: 0.15em;
  margin-bottom: 1.5rem;
  color: var(--kin);
  position: relative;
  padding-bottom: 0.8rem;
}

.footer-section h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 20px;
  height: 1px;
  background: var(--kin);
}

.footer-section ul {
  list-style: none;
}

.footer-section li {
  margin-bottom: 0.8rem;
}

.footer-section a {
  color: rgba(245, 241, 232, 0.6);
  font-size: 0.85rem;
  transition: color 0.3s ease;
  position: relative;
  padding-left: 0.8rem;
}

.footer-section a::before {
  content: '›';
  position: absolute;
  left: 0;
  color: var(--kin);
  opacity: 0.5;
}

.footer-section a:hover {
  color: var(--kinari);
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 2rem;
  text-align: center;
  font-size: 0.8rem;
  opacity: 0.5;
  position: relative;
  z-index: 1;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
  .area-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .features-grid,
  .about-features {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-content {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .hero-decoration {
    display: none;
  }
}

@media (max-width: 768px) {
  .main-navigation {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .area-cards {
    grid-template-columns: 1fr;
    max-width: 400px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .content-section {
    padding: 5rem 1.5rem;
  }

  .properties-grid {
    grid-template-columns: 1fr;
  }

  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-section h4::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .footer-section a::before {
    display: none;
  }

  .footer-section a {
    padding-left: 0;
  }

  .contact-form {
    padding: 2rem 1.5rem;
  }
}

/* ========== WordPress Specific ========== */
.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
}

.alignleft {
  float: left;
  margin-right: 1.5rem;
  margin-bottom: 1rem;
}

.alignright {
  float: right;
  margin-left: 1.5rem;
  margin-bottom: 1rem;
}

.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.wp-caption {
  max-width: 100%;
}

.wp-caption-text {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-top: 0.5rem;
}

/* ========== MODERN CONTACT FORM ========== */
.modern-contact-form {
  max-width: 800px;
  margin: 0 auto;
  padding: 3rem;
  background: white;
  border-radius: 2px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
  position: relative;
}

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

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.form-field {
  position: relative;
}

.form-field-full {
  grid-column: 1 / -1;
}

.form-field label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.8rem;
}

.form-field .label-text {
  font-family: 'Shippori Mincho', serif;
  font-size: 0.9rem;
  color: var(--text);
  letter-spacing: 0.05em;
}

.form-field .label-required {
  font-size: 0.65rem;
  padding: 0.2rem 0.5rem;
  background: var(--aka);
  color: white;
  border-radius: 2px;
  letter-spacing: 0.05em;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 1rem 0;
  border: none;
  border-bottom: 2px solid var(--border);
  background: transparent;
  font-family: inherit;
  font-size: 1rem;
  color: var(--text);
  transition: all 0.3s ease;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-bottom-color: var(--kin);
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: #ccc;
}

.form-field .field-border {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--kin);
  transition: width 0.3s ease;
}

.form-field input:focus ~ .field-border,
.form-field select:focus ~ .field-border,
.form-field textarea:focus ~ .field-border {
  width: 100%;
}

.form-field textarea {
  resize: vertical;
  min-height: 120px;
}

.form-field select {
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23666' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0 center;
}

.form-submit {
  grid-column: 1 / -1;
  text-align: center;
  margin-top: 2rem;
}

.submit-btn-modern {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  padding: 1.2rem 3rem;
  background: var(--sumi);
  color: white;
  border: none;
  font-family: 'Shippori Mincho', serif;
  font-size: 1rem;
  letter-spacing: 0.2em;
  cursor: pointer;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.submit-btn-modern::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.6s ease;
}

.submit-btn-modern:hover {
  background: var(--aka);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(179, 62, 62, 0.3);
}

.submit-btn-modern:hover::before {
  left: 100%;
}

.submit-btn-modern .btn-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
}

.submit-btn-modern .btn-icon svg {
  width: 100%;
  height: 100%;
  transition: transform 0.3s ease;
}

.submit-btn-modern:hover .btn-icon svg {
  transform: translateX(3px);
}

.booking-form-container {
  max-width: 900px;
  margin: 0 auto;
}

.booking-form-intro {
  text-align: center;
  margin-bottom: 3rem;
}

.booking-form-intro p {
  font-family: 'Shippori Mincho', serif;
  font-size: 1.1rem;
  color: var(--text-light);
  line-height: 2;
}

/* ========== PROPERTY SINGLE PAGE ========== */
.property-single {
  padding-top: 60px;
}

/* Property Hero */
.property-hero {
  position: relative;
  height: 60vh;
  min-height: 400px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
}

.property-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.property-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.property-hero-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--sumi) 0%, var(--ai) 100%);
}

.property-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.2) 50%, rgba(0,0,0,0.3) 100%);
}

.property-hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 3rem 2rem;
  color: white;
}

.property-hero-tag {
  display: inline-block;
  padding: 0.4rem 1.2rem;
  background: var(--aka);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.property-hero-area {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  letter-spacing: 0.3em;
  color: var(--kin);
  margin-bottom: 0.5rem;
}

.property-hero-title {
  font-family: 'Shippori Mincho', serif;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 500;
  margin-bottom: 0.5rem;
  text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.property-hero-address {
  font-size: 0.9rem;
  opacity: 0.8;
}

/* Property Info */
.property-info {
  background: var(--washi);
}

.property-info-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 350px;
  gap: 4rem;
}

.property-main {
  min-width: 0;
}

/* Property Stats */
.property-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
  padding: 2rem;
  background: white;
  border: 1px solid var(--border);
}

.property-stat {
  text-align: center;
  padding: 1rem;
}

.property-stat .stat-icon {
  display: flex;
  justify-content: center;
  margin-bottom: 0.8rem;
}

.property-stat .stat-icon svg {
  width: 28px;
  height: 28px;
  color: var(--kin);
}

.property-stat .stat-label {
  display: block;
  font-size: 0.75rem;
  color: var(--text-light);
  letter-spacing: 0.1em;
  margin-bottom: 0.3rem;
}

.property-stat .stat-value {
  font-family: 'Shippori Mincho', serif;
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--sumi);
}

/* Property Sections */
.property-section-title {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}

.property-section-title .en {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  letter-spacing: 0.1em;
  color: var(--sumi);
}

.property-section-title .jp {
  font-family: 'Shippori Mincho', serif;
  font-size: 0.85rem;
  color: var(--kin);
}

.property-description {
  margin-bottom: 3rem;
}

.property-description-content {
  font-size: 1rem;
  line-height: 2.2;
  color: var(--text);
}

.property-description-content p {
  margin-bottom: 1.5rem;
}

/* Amenities Grid */
.property-amenities-section {
  margin-bottom: 3rem;
}

.property-amenities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 1rem;
}

.amenity-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1rem;
  background: white;
  border: 1px solid var(--border);
}

.amenity-icon {
  color: var(--matcha);
  font-weight: bold;
}

.amenity-name {
  font-size: 0.9rem;
  color: var(--text);
}

/* Access */
.property-access {
  margin-bottom: 3rem;
}

.property-access-content {
  background: white;
  padding: 2rem;
  border: 1px solid var(--border);
}

.access-address {
  margin-bottom: 1.5rem;
  font-size: 1rem;
  line-height: 1.8;
}

.access-map-placeholder {
  height: 250px;
  background: var(--kinari);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  font-size: 0.9rem;
}

/* Booking Card Sidebar */
.property-sidebar {
  position: sticky;
  top: 100px;
  height: fit-content;
}

.booking-card {
  background: white;
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

.booking-card-header {
  padding: 2rem;
  background: var(--sumi);
  color: white;
  text-align: center;
}

.booking-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.3rem;
}

.booking-price .price-amount {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--kin);
}

.booking-price .price-unit {
  font-size: 0.9rem;
  opacity: 0.8;
}

.booking-card-body {
  padding: 2rem;
}

.booking-info {
  margin-bottom: 1.5rem;
}

.booking-info-row {
  display: flex;
  justify-content: space-between;
  padding: 0.8rem 0;
  border-bottom: 1px solid var(--border);
}

.booking-info-row:last-child {
  border-bottom: none;
}

.booking-info-row .info-label {
  font-size: 0.85rem;
  color: var(--text-light);
}

.booking-info-row .info-value {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--sumi);
}

.booking-btn {
  display: block;
  width: 100%;
  padding: 1.2rem;
  background: var(--aka);
  color: white;
  text-align: center;
  font-family: 'Shippori Mincho', serif;
  font-size: 1rem;
  letter-spacing: 0.15em;
  transition: all 0.3s ease;
  margin-bottom: 1rem;
}

.booking-btn:hover {
  background: var(--sumi);
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}

.booking-note {
  font-size: 0.75rem;
  color: var(--text-light);
  line-height: 1.8;
  text-align: center;
}

/* Property Booking Section */
.property-booking {
  background: var(--kinari);
}

/* Related Properties */
.related-properties {
  background: var(--washi);
}

/* Responsive */
@media (max-width: 1024px) {
  .property-info-container {
    grid-template-columns: 1fr;
  }

  .property-sidebar {
    position: static;
    max-width: 400px;
    margin: 0 auto;
  }

  .property-stats {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

  .property-stats {
    grid-template-columns: 1fr;
  }

  .modern-contact-form {
    padding: 2rem 1.5rem;
  }

  .property-hero {
    height: 50vh;
  }
}

/* ========== PAGE TEMPLATES ========== */

/* Page Hero */
.page-hero {
  min-height: 40vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--sumi);
  position: relative;
  padding-top: 80px;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 0L30 30M0 30L30 30M30 30L60 30M30 30L30 60' stroke='%23C9A86C' stroke-width='0.3' fill='none' opacity='0.1'/%3E%3C/svg%3E");
  pointer-events: none;
}

.page-hero-small {
  min-height: 30vh;
}

.page-hero-content {
  text-align: center;
  position: relative;
  z-index: 1;
}

.page-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 400;
  color: var(--kinari);
  letter-spacing: 0.2em;
  margin-bottom: 0.5rem;
}

.page-subtitle {
  font-family: 'Shippori Mincho', serif;
  font-size: 1rem;
  color: var(--kin);
  letter-spacing: 0.3em;
}

/* Page Content */
.page-main {
  padding-top: 60px;
}

.page-content {
  background: var(--washi);
}

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

.page-container-narrow {
  max-width: 800px;
}

/* Content Block */
.content-block {
  margin-bottom: 5rem;
}

.content-block:last-child {
  margin-bottom: 0;
}

.content-title {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}

.content-title .en {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  letter-spacing: 0.1em;
  color: var(--sumi);
}

.content-title .jp {
  font-family: 'Shippori Mincho', serif;
  font-size: 0.9rem;
  color: var(--kin);
}

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

.content-body p {
  margin-bottom: 1.5rem;
}

.content-body p:last-child {
  margin-bottom: 0;
}

.lead-text {
  font-family: 'Shippori Mincho', serif;
  font-size: 1.3rem;
  line-height: 2.2;
  margin-bottom: 2rem !important;
  color: var(--sumi);
}

/* Service Grid */
.service-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.service-item {
  padding: 2rem;
  background: white;
  border: 1px solid var(--border);
  position: relative;
}

.service-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: linear-gradient(to bottom, var(--kin), var(--aka));
}

.service-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 300;
  color: var(--kin);
  margin-bottom: 1rem;
  opacity: 0.6;
}

.service-item h3 {
  font-family: 'Shippori Mincho', serif;
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 1rem;
  color: var(--sumi);
}

.service-item p {
  font-size: 0.9rem;
  line-height: 1.9;
  color: var(--text-light);
}

/* Company Table */
.company-table {
  background: white;
  border: 1px solid var(--border);
  overflow: hidden;
}

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

.company-table th,
.company-table td {
  padding: 1.2rem 1.5rem;
  border-bottom: 1px solid var(--border);
  text-align: left;
  font-size: 0.95rem;
  line-height: 1.8;
}

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

.company-table th {
  width: 30%;
  background: var(--kinari);
  font-family: 'Shippori Mincho', serif;
  font-weight: 500;
  color: var(--sumi);
}

.company-table td {
  color: var(--text);
}

/* Contact Info */
.contact-info-section {
  margin-bottom: 5rem;
}

.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.contact-info-item {
  text-align: center;
  padding: 3rem 2rem;
  background: white;
  border: 1px solid var(--border);
}

.contact-info-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--kinari);
  border-radius: 50%;
}

.contact-info-icon svg {
  width: 28px;
  height: 28px;
  color: var(--kin);
}

.contact-info-item h3 {
  font-family: 'Shippori Mincho', serif;
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 1rem;
  color: var(--text-light);
}

.contact-info-value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--sumi);
  margin-bottom: 0.5rem;
}

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

/* Form Intro */
.form-intro {
  text-align: center;
  margin-bottom: 2rem;
}

.form-intro p {
  font-size: 1rem;
  color: var(--text-light);
  line-height: 2;
}

.required-note {
  display: inline-block;
  margin-top: 0.5rem;
  font-size: 0.85rem;
}

/* Form Agreement Checkbox */
.form-agreement {
  grid-column: 1 / -1;
  margin-top: 1rem;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
  display: none;
}

.checkbox-custom {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border: 2px solid var(--border);
  border-radius: 3px;
  position: relative;
  transition: all 0.3s ease;
}

.checkbox-label input[type="checkbox"]:checked + .checkbox-custom {
  background: var(--kin);
  border-color: var(--kin);
}

.checkbox-custom::after {
  content: '';
  position: absolute;
  top: 2px;
  left: 6px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.checkbox-label input[type="checkbox"]:checked + .checkbox-custom::after {
  opacity: 1;
}

.checkbox-text {
  font-size: 0.9rem;
  color: var(--text);
  line-height: 1.6;
}

.checkbox-text a {
  color: var(--aka);
  text-decoration: underline;
}

.checkbox-text a:hover {
  text-decoration: none;
}

/* FAQ */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.faq-item {
  padding: 2rem;
  background: white;
  border: 1px solid var(--border);
}

.faq-question {
  font-family: 'Shippori Mincho', serif;
  font-size: 1rem;
  font-weight: 500;
  color: var(--sumi);
  margin-bottom: 1rem;
  padding-left: 1.5rem;
  position: relative;
}

.faq-question::before {
  content: 'Q';
  position: absolute;
  left: 0;
  color: var(--aka);
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
}

.faq-answer {
  font-size: 0.95rem;
  line-height: 2;
  color: var(--text-light);
  padding-left: 1.5rem;
  position: relative;
}

.faq-answer::before {
  content: 'A';
  position: absolute;
  left: 0;
  color: var(--kin);
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
}

/* Legal Content */
.legal-content {
  background: white;
  padding: 3rem;
  border: 1px solid var(--border);
}

.legal-intro {
  font-size: 0.95rem;
  line-height: 2;
  color: var(--text);
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border);
}

.legal-section {
  margin-bottom: 3rem;
}

.legal-section:last-of-type {
  margin-bottom: 0;
}

.legal-section h2 {
  font-family: 'Shippori Mincho', serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--sumi);
  margin-bottom: 1.5rem;
  padding-left: 1rem;
  border-left: 3px solid var(--kin);
}

.legal-section p {
  font-size: 0.95rem;
  line-height: 2;
  color: var(--text);
  margin-bottom: 1rem;
}

.legal-section ol,
.legal-section ul {
  margin-left: 1.5rem;
  font-size: 0.95rem;
  line-height: 2;
  color: var(--text);
}

.legal-section li {
  margin-bottom: 0.8rem;
}

.legal-section ul ul {
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}

/* Legal Table */
.legal-table {
  margin-bottom: 3rem;
}

.legal-table table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid var(--border);
}

.legal-table th,
.legal-table td {
  padding: 1.2rem 1.5rem;
  border-bottom: 1px solid var(--border);
  text-align: left;
  font-size: 0.95rem;
  line-height: 1.9;
  vertical-align: top;
}

.legal-table th {
  width: 30%;
  background: var(--kinari);
  font-family: 'Shippori Mincho', serif;
  font-weight: 500;
  color: var(--sumi);
}

.legal-table td {
  color: var(--text);
}

/* Legal Notes */
.legal-notes {
  padding: 2rem;
  background: var(--kinari);
  margin-bottom: 2rem;
}

.legal-notes h3 {
  font-family: 'Shippori Mincho', serif;
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 1rem;
  color: var(--sumi);
}

.legal-notes ul {
  list-style: none;
  margin: 0;
}

.legal-notes li {
  font-size: 0.9rem;
  line-height: 2;
  color: var(--text-light);
  padding-left: 1.2rem;
  position: relative;
}

.legal-notes li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--kin);
}

.legal-footer {
  text-align: right;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  font-size: 0.85rem;
  color: var(--text-light);
}

/* Responsive for Pages */
@media (max-width: 768px) {
  .service-grid {
    grid-template-columns: 1fr;
  }

  .contact-info-grid {
    grid-template-columns: 1fr;
  }

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

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

  .company-table td {
    padding-top: 0.5rem;
  }

  .legal-content {
    padding: 2rem 1.5rem;
  }

  .legal-table th,
  .legal-table td {
    display: block;
    width: 100%;
  }

  .legal-table th {
    border-bottom: none;
    padding-bottom: 0.5rem;
  }

  .legal-table td {
    padding-top: 0.5rem;
  }
}

/* ========== LANGUAGE SWITCHER ========== */
.lang-switcher {
  position: relative;
  margin-left: 1.5rem;
}

.lang-current {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.8rem;
  background: transparent;
  border: 1px solid var(--border);
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--sumi);
  cursor: pointer;
  transition: all 0.3s ease;
}

.lang-current:hover {
  border-color: var(--kin);
  color: var(--kin);
}

.lang-current svg {
  transition: transform 0.3s ease;
}

.lang-switcher.active .lang-current svg {
  transform: rotate(180deg);
}

.lang-dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  margin-top: 0.5rem;
  background: white;
  border: 1px solid var(--border);
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 1000;
  min-width: 140px;
}

.lang-switcher.active .lang-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.lang-option {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  width: 100%;
  padding: 0.8rem 1rem;
  background: transparent;
  border: none;
  font-family: inherit;
  font-size: 0.85rem;
  color: var(--text);
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: left;
}

.lang-option:hover {
  background: var(--kinari);
}

.lang-option.active {
  background: var(--kinari);
  color: var(--kin);
  font-weight: 500;
}

.lang-flag {
  font-size: 1.1rem;
}

@media (max-width: 768px) {
  .lang-switcher {
    position: absolute;
    right: 60px;
    top: 50%;
    transform: translateY(-50%);
  }
  
  .lang-current .lang-code {
    font-size: 0.75rem;
  }
}
