body {
  margin: 0;
  font-family: 'Roboto', 'Noto Sans JP', sans-serif;
  overflow: auto;
  background: rgba(80, 95, 80, 0.105);
  background-image: url('../assets/images/left-A.png');
  background-position: center;

}

/* 全体 */
.hero {
  display: flex;
  width: 100vw;
  height: auto;        /* ← ここが重要！ left が fixed なので hero の高さ指定は不要 */
}

/* 左側：固定 */
.left-side {
  width: 50vw;        /* 画面幅の 50% */
  height: 100vh;      /* 全画面高さ */
  position: fixed;    /* ← 固定 */
  top: 0;
  left: 0;
  display: flex;
  flex-direction: column; /* ← これ重要！縦方向に配置 */
  justify-content: center;
  align-items: center;
}

.overlay {
  position: relative;
  z-index: 2;
  text-align: left;
  padding-left: 0%;
}

.overlay h1 {
  color: #15a737;
  font-size: 1.4rem;
  letter-spacing: 0.3em;
  font-weight: 400;
  margin: 0;
}

.overlay p {
  color: #707070;
  margin-top: 0.2rem;
  font-size: 1rem;
  font-weight: 200;
  opacity: 0.8;
}

.page-links a {
  display: inline-block;      /* 幅・高さを自由にできるようにする */
  text-align: left; 
  font-size: 0.8rem;
  padding: 0.2rem 0.5rem;       /* 上下左右の余白 */
  text-decoration: none;
  color: #707070;
  transition: background 0.3s, color 0.3s;
  border-radius: 4px;         /* 任意で角丸 */

}

.page-links a:hover {
  background-color: #15a73791;
  color: #fff;

}




/* 左サイド内のフッター */
.side-footer {
  position: absolute;      /* 下端に固定 */
  bottom: 20px;            /* 下からの距離 */
  left: 50%;               /* 横中央 */
  transform: translateX(-50%); /* 横中央 */  
  text-align: center;
  font-size: 0.8rem;
  color: #ffffff;
  line-height: 1.6;
  letter-spacing: 0.08em;
  font-weight: 400;
  display: flex;
  justify-content: center;
  width: auto;             /* 自動幅で中央寄せ */
white-space: nowrap;   /* 折り返し禁止 */
}
.side-footer .social-links {
  margin-top: 6px;
}

.side-footer .social-links a {
  color: #ccc;
  margin: 0 8px;
  text-decoration: none;
  transition: color 0.3s ease;
}

.side-footer .social-links {
  margin-top: 6px;
}

.side-footer .social-links a {
  color: #ccc;
  margin: 0 8px;
  text-decoration: none;
  transition: color 0.3s ease;
}

.side-footer .social-links a:hover {
  color: #fff;
}


/* 右側（PC時はスクロール領域） */
.right-side {
  width: 50%;
  margin-left: 50%;         /* 固定された左50%をよける */
  height: 100vh;            /* 画面高さ分 */
  overflow-y: auto;         /* ★ 右側だけスクロール */
  padding: 60px 80px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: rgba(0, 0, 0, 0.03);
}

/* Services セクション */
.service-info h2 {
  font-size: 1.4rem;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.service-info p {
  margin: 0 0 1rem;
  line-height: 1.8;
}

/* 下段：フォーム＋メール情報を左右並びに */
.contact-bottom {
  margin-top: 40px;
  display: grid;
  grid-template-columns: 1.2fr 1fr; /* 左フォームを少し広く */
  gap: 40px;
  align-items: flex-start;
}

/* 左：フォーム */

.contact-form-box {
  background: transparent;
  padding: 0; /* 必要なら少し残してOK */
  border-radius: 0;
  box-shadow: none;
  backdrop-filter: none;
}

.contact-form-box h3 {
  margin-bottom: 15px;
  font-size: 1.2rem;
}

.right-side h3 small {
  display: block;
  margin-top: 4px;
  font-size: 0.8rem;
  font-weight: 300;
  opacity: 0.7;
  letter-spacing: 0.05em;
}

#contactForm {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

#contactForm label {
  font-size: 0.85rem;
  opacity: 0.75;
  margin-bottom: -4px;
}

#contactForm input,
#contactForm textarea {
  width: 100%;
  padding: 6px 0;
  border: none;
  border-bottom: 1px solid #888;
  font-size: 1rem;
  background: transparent;
  color: #222;
  transition: border-color 0.2s ease;
  outline: none;
}

/* フォーカス時のアクセント */
#contactForm input:focus,
#contactForm textarea:focus {
  border-color: #15a737; /* ブランドアクセントカラー */
}

.send-btn {
  cursor: pointer;
  padding: 10px 0;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  font-weight: bold;
  background: #15a737;
  color: #fff;
  transition: opacity 0.2s ease;
}

.send-btn:hover {
  opacity: 0.85;
}

#formMessage {
  margin-top: 10px;
  font-size: 0.9rem;
}



/* 右：メール情報 */
.contact-bottom {
  align-items: stretch;
}

.contact-mail a {
  font-weight: 600;
  text-decoration: none;
}

.contact-mail a:hover {
  text-decoration: underline;
}

.contact-notes {
  margin-top: 15px;
  font-size: 0.85rem;
  line-height: 1.6;
}


.contact-notes ul {
  padding-left: 1.2rem;
  margin: 0.5rem 0 0;
}

/* contact-info 内の p の余白を一度リセット */
.contact-info-box p {
  margin: 0;
}

/* 日本語リード文 */
.contact-info-box .jp-lead {
  margin-bottom: 10px;
}

/* 英文リード文（ここからメールまで少し大きく空ける） */
.contact-info-box .en-lead {
  margin-bottom: 40px !important; /* ←ここを大きくするだけ！ */
}


/* メールアドレス：左端基準＆少し余白 */

.contact-mail a {
  color: #15a737;
  font-weight: 400;
  text-decoration: none;
  letter-spacing: 0.03em;
  font-size: 1.2rem;  /* ★さらに強調！ */
  transition: color 0.25s ease, opacity 0.25s ease;
}

.contact-mail a:hover {
  color: #0f7c2a;
  opacity: 0.90;
  text-decoration: underline;
}

.contact-info-box .contact-mail {
  margin: 0 0 2px 0 !important; /* 下2px・左揃え */
  line-height: 1.2; /* 密着感を高める */
}


/* Contact info 全体を左揃えで統一 */
.contact-info-box,
.contact-info-box .contact-mail,
.contact-info-box .base-location {
  text-align: left !important;
}


/* ===== ABOUTポップアップ（右半分スライド） ===== */
.about-popup {
  position: fixed;
  top: 0;
  right: -100%;
  width: 50%;         /* 右半分 */
  height: 100%;
  background: #0e170d6f;
  background-image: url('../assets/images/profile_face.jpg');
  background-size: 150%;
  background-position: 95% 30%; /* ← 左へ10%寄せる */
  background-repeat: no-repeat;
  opacity: 0.95; /* ← 透明度（0.0～1.0）*/
  transition: right 1.2s cubic-bezier(.4,0,.2,1);
  z-index: 1000;
  overflow-y: auto;
}


.about-popup.active {
  right: 0;
}

/* 閉じるボタン */
.close-btn {
  position: absolute;
  top: 20px;
  left: 20px;
  font-size: 28px;
  color: #ffffff;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1100;
}

/* コンテンツ全体を縦並びに */
.about-content {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: flex-end; /* ←右寄せ */
  align-items: center;
  padding: 0 60px 80px 0;
  box-sizing: border-box;
}


/* 写真は背景化したので非表示へ */
.about-photo-area {
  display: none;
}

/* テキスト部分：下60% */
.about-text {
  color: #ffffff;
  width: 40%;
  text-align: left;
  text-shadow: 0 2px 6px rgba(0,0,0,0.6);
  padding: 18px 20px;
  border-radius: 10px;
}

.about-text h2 {
  color: #ffffff;
  margin: 0 0 10px 0;
  font-size: 1.5rem;
  letter-spacing: 2px;
  font-weight: 400;

}


.about-text p {
  font-size: 0.9rem;
  letter-spacing: 0.2em;
  font-weight: 100;
  margin: 0 0 15px 0;
  line-height: 1.6;
  box-sizing: border-box;
}

/* Services / Let’s / Contact（英語の見出し）を薄く */
.service-info h2,
.contact-form-box h3,
.contact-info-box h3 {
  color: #606060; /* 薄い白 */
  font-weight: 300;
}


/* 日本語（small）だけ濃く & 少し読みやすく */
.contact-form-box h3 small,
.contact-info-box h3 small {
  color: #3b3b3b; /* 元の濃さ */
  font-weight: 400;
  opacity: 0.95;
  font-size: 0.8rem; /* 調整可能：小さすぎたら言ってね */
  letter-spacing: 0.05em;
}


/* ===== Success Popup (WORKS モーダルと統一) ===== */

.success-popup {
  position: fixed;
  inset: 0;
  display: none;
  justify-content: center;
  align-items: center;
  background: rgba(0, 0, 0, 0.087);    /* ★黒ガラス背景 */
  backdrop-filter: blur(10px);   /* ★強めのブラー */
  z-index: 3000;
}

.success-content {
  background: rgba(125, 125, 125, 0.091); /* ★WORKSモーダルと同系 */
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.18); /* ★薄い白ライン */
  border-radius: 16px;
  padding: 38px 32px;
  text-align: center;
  width: 86%;
  max-width: 420px;
  color: #ffffff;
  box-shadow: 0 0 20px rgba(255,255,255,0.10);
  animation: popupFade 0.32s ease-out;
}

/* ✓ チェックアイコンをフラットシンプルに */
.success-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.25);
  background: rgba(255,255,255,0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin: 0 auto 18px;
  backdrop-filter: blur(4px);
}

.success-content h2 {
  margin: 0 0 12px;
  font-size: 1.3rem;
  letter-spacing: 0.1em;
  font-weight: 400;
}

.success-content p {
  font-size: 0.92rem;
  line-height: 1.8;
  opacity: 0.85;
  font-weight: 300;
}

/* ボタン → 緑アクセント残しつつフラット */
.close-success-btn {
  margin-top: 24px;
  padding: 10px 30px;
  background: #15a737;
  color: #fff;
  border: none;
  border-radius: 999px;
  font-size: 0.88rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.close-success-btn:hover {
  opacity: 0.85;
  transform: translateY(-1px);
}

/* アニメーション */
@keyframes popupFade {
  from { opacity: 0; transform: translateY(6px) scale(0.97); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@media (max-width: 768px) {
  .success-content {
    width: 88%;
    padding: 30px 20px;
  }
}


/* ===== スマホ対応 ===== */
@media (max-width: 1200px) {
  .hero {
    flex-direction: column;
    width: 100%;
    height: auto;
    overflow: visible;
  }

  .left-side {
    position: static;
    width: 100%;
    height: auto;
    padding: 20px;
    box-sizing: border-box;
  }

  .right-side {
    margin-left: 0;
    width: 100%;
    height: auto;
    min-height: auto;
    padding: 20px;
    box-sizing: border-box;
    overflow: visible;
  }

  /* ★ ここがポイント：右サイド下段を縦並びにする */
  .contact-bottom {
    display: block;        /* grid → 縦並びに */
    margin-top: 32px;
  }

  .contact-form-box,
  .contact-info-box {
    width: 100%;
    margin-bottom: 32px;   /* 下に余白 */
  }

  .side-footer {
    position: static;
    transform: none;
    margin-top: 12px;
    text-align: center;
    font-size: 0.7rem;
  }


.about-popup {
    width: 100%;
    right: -100%;
    background-image: none !important; /* ←一箇所に統一 */
    background: #0a0a0a8e;
    overflow-y: auto;
  }

  .about-popup.active {
    right: 0;
  }

  .about-content {
    display: flex;
    flex-direction: column;
    justify-content: center; /* ★中央に変更★ */
    align-items: center;
    padding: 80px 20px 40px; 
    box-sizing: border-box;
  }

  /* 写真を上に表示（左寄せ指定効く！） */
  .profile-photo {
    object-fit: cover;
    width: 100%;
    height: 300px;
    object-position: 20% 25%; 
    border-radius: 12px;
    margin-bottom: 28px;
  }

  .about-text {
    width: 100%;
    max-width: 600px;
    color: #fff;
    line-height: 1.75;
    margin-top: 16px;
    padding: 0 16px;
    text-align: center; /* ←これが必要！ */
  }

  .about-text h2 {
    text-align: center;
    width: 100%;
    margin-top: 20px;
  }
 /* 紹介文は左寄せ維持 */
  .about-text p {
    text-align: left;
  }
  

  /* PCで消してたエリアをスマホで復活 */
  .about-photo-area {
    display: block;
    width: 100%;
    text-align: center;
  }

} /* ←ここでクリーンに閉じる！ */

/* ===== Success Popup (Contact) ===== */

.success-popup {
  position: fixed;
  inset: 0; /* top:0; right:0; bottom:0; left:0 と同じ */
  display: none; /* 初期は非表示 */
  justify-content: center;
  align-items: center;
  background: rgba(0, 0, 0, 0.6);
  z-index: 3000; /* ABOUTやfade-overlayより前に出したい */
}

.success-content {
  background: rgba(20, 20, 20, 0.95);
  padding: 30px 24px;
  border-radius: 14px;
  text-align: center;
  width: 80%;
  max-width: 380px;
  color: #ffffff;
  box-shadow: 0 0 20px rgba(0,0,0,0.3);
  box-sizing: border-box;
}

.success-content h2 {
  margin: 0 0 10px;
  font-size: 1.4rem;
  letter-spacing: 0.06em;
}

.success-content p {
  font-size: 0.9rem;
  line-height: 1.7;
}

.close-success-btn {
  margin-top: 18px;
  padding: 9px 28px;
  background: #15a737;
  color: #fff;
  border: none;
  border-radius: 999px;
  font-size: 0.9rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.close-success-btn:hover {
  opacity: 0.85;
  transform: translateY(-1px);
}

/* スマホで少しだけ小さく */
@media (max-width: 768px) {
  .success-content {
    width: 88%;
    padding: 24px 18px;
  }
}

/* Contact 日本語テキスト → Noto Sans JPで少し柔らかく */
.jp-lead,
.contact-form-box h3 small,
.contact-info-box h3 small {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 300;
  font-size: 0.85rem;
  line-height: 1.85;
  letter-spacing: 0.03em;
  opacity: 0.95;
}