@charset "UTF-8";
/* =========================================================
   共通スタイル（全ページ共通）
   ※ style.css はSCSSの自動コンパイルで上書きされるため、
     本テーマの共通スタイルはこのファイルに記述しています。
     リセット / 変数 / ヘッダー / フッター / Contactバンド /
     ローディング / 下層共通（ページヘッダー・パンくず・見出し）
   ========================================================= */

/* ---------- カラー変数 ---------- */
:root {
  --white: #ffffff;
  --paper: #f4f7fc;
  --ink: #161922;
  --blue: #0b4fd0;
  --blue-bright: #1f8bff;
  --blue-deep: #062a73;
  --cyan: #15c5e8;
  --red: #ff3b30;
  --red-deep: #d81f17;
  --orange: #ff8a1f;
  --gold: #c8a14a;
  --gold-light: #ecd592;
  --silver: #aeb8c4;
  --silver-light: #e3e9f0;
  --silver-dark: #7c8794;

  --grad-blue: linear-gradient(135deg, #3a9bff, #0b4fd0 55%, #062a73);
  --grad-cyan: linear-gradient(135deg, #5fe0fa, #15c5e8 55%, #0a93b0);
  --grad-gold: linear-gradient(135deg, #f6e3a8, #c8a14a 50%, #9c7a2e);
  --grad-red: linear-gradient(135deg, #ff6a62, #e2342b 55%, #a3160f);
  --grad-silver: linear-gradient(135deg, #ffffff, #c4cdd6 45%, #8b96a3);
}

/* ---------- リセット（旧style.cssを上書き） ---------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", sans-serif;
  color: var(--ink);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.8;
  font-size: 16px;
}

img {
  display: block;
  max-width: 100%;
}

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

ul {
  list-style: none;
}

/* ---------- 共通レイアウト ---------- */
.wide {
  max-width: 1180px;
  margin-inline: auto;
  padding-inline: 24px;
}

.en-label {
  font-family: "Comfortaa", sans-serif;
  letter-spacing: 0.08em;
}

/* ---------- メタリック文字（シーン演出） ---------- */
.sheen {
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  background-size: 220% auto;
  animation: sheenFlow 7s linear infinite;
}

@keyframes sheenFlow {
  0%   { background-position: 0% center; }
  100% { background-position: 220% center; }
}

.sheen-blue   { background-image: linear-gradient(120deg, #3a9bff, #0b4fd0 40%, #3a9bff 60%, #062a73); }
.sheen-cyan   { background-image: linear-gradient(120deg, #5fe0fa, #15c5e8 40%, #5fe0fa 60%, #0a93b0); }
.sheen-gold   { background-image: linear-gradient(120deg, #f6e3a8, #c8a14a 40%, #f6e3a8 60%, #9c7a2e); }
.sheen-red    { background-image: linear-gradient(120deg, #ff6a62, #e2342b 40%, #ff6a62 60%, #a3160f); }
.sheen-silver { background-image: linear-gradient(120deg, #ffffff, #c4cdd6 40%, #ffffff 60%, #8b96a3); }

/* ---------- スクロール演出（fade-up） ---------- */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: 0.8s cubic-bezier(0.2, 0.7, 0.2, 1);
  transition-delay: var(--d, 0s);
}

.fade-up.in {
  opacity: 1;
  transform: none;
}

/* =========================================================
   ローディング
   ========================================================= */
#loading.loading {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: grid;
  place-items: center;
  background: var(--white);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

#loading.loading.active {
  opacity: 1;
  visibility: visible;
}

.loading_text {
  text-align: center;
}

.loadingText {
  font-family: "Comfortaa", sans-serif;
  letter-spacing: 0.2em;
  color: var(--blue);
  margin-bottom: 18px;
}

.pulse-container {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.pulse-bubble {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--blue);
}

.pulse-bubble-1 { animation: pulse 0.6s ease 0s infinite alternate; }
.pulse-bubble-2 { animation: pulse 0.6s ease 0.2s infinite alternate; }
.pulse-bubble-3 { animation: pulse 0.6s ease 0.4s infinite alternate; }

@keyframes pulse {
  from { opacity: 1;   transform: scale(1); }
  to   { opacity: 0.3; transform: scale(0.7); }
}

/* =========================================================
   ヘッダー
   ========================================================= */
header.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.93);
  backdrop-filter: blur(8px);
  box-shadow: 0 2px 18px rgba(11, 79, 208, 0.08);
}

.header_inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1320px;
  margin-inline: auto;
  padding: 12px 28px;
}

.header_logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--blue);
}

.header_logo .logo-mark {
  width: 38px;
  height: 38px;
}

.header_logo .logo-img {
  height: 42px;
  width: auto;
}

.header_menu ul {
  display: flex;
  align-items: center;
  gap: 26px;
}

.header_menu a {
  font-size: 0.82rem;
  font-weight: 700;
  text-align: center;
  line-height: 1.3;
  transition: 0.25s;
}

.header_menu a span {
  display: block;
  font-size: 0.6rem;
  color: var(--silver);
  font-family: "Comfortaa", sans-serif;
}

.header_menu a:hover,
.header_menu a.current {
  color: var(--blue-bright);
}

.header_menu .sns {
  font-size: 1rem;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  color: #fff !important;
}

.header_menu .sns:hover {
  transform: translateY(-2px);
}

/* ヘッダーのお問い合わせボタン */
.header_menu .header_contact {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--grad-blue);
  color: #fff !important;
  padding: 9px 20px;
  border-radius: 30px;
  font-size: 0.8rem;
  font-weight: 700;
  box-shadow: 0 6px 16px rgba(11, 79, 208, 0.28);
  transition: 0.25s;
}

.header_menu .header_contact:hover {
  transform: translateY(-2px);
  box-shadow: 0 9px 20px rgba(11, 79, 208, 0.4);
  color: #fff !important;
}

.header_menu .header_contact i {
  font-size: 0.85rem;
}

/* ---------- スマホ用ヘッダー ---------- */
#header_sp {
  display: none;
}

@media (max-width: 900px) {

  /* スマホではPCヘッダーを非表示にしてSPヘッダーへ切替（二重表示の防止） */
  header.site-header {
    display: none;
  }

  #header_sp {
    display: block;
  }

  .header_sp {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 14px rgba(11, 79, 208, 0.1);
    padding: 10px 16px;
  }

  .header_sp .header_logo {
    font-size: 1.1rem;
  }

  .header_sp_bottom {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 1001;
    background: var(--ink);
  }

  .header_sp_bottom > ul {
    display: flex;
  }

  .header_sp_bottom > ul > li {
    flex: 1;
    text-align: center;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
  }

  .header_sp_bottom > ul > li:last-child {
    border-right: 0;
  }

  /* 4セルとも同じ高さ・中央寄せに揃える */
  .header_sp_bottom > ul > li > a,
  .header_sp_bottom > ul > li > .hamburger {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    height: 58px;
    padding: 0;
    color: #fff;
    cursor: pointer;
  }

  /* アイコン部分は高さを固定して、ラベル位置を全セルで揃える */
  .header_sp_bottom .header_icon {
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
  }

  .header_sp_bottom p {
    font-size: 0.55rem;
    line-height: 1;
    letter-spacing: 0.05em;
    font-family: "Comfortaa", sans-serif;
  }

  /* ハンバーガーの3本線（高さをアイコンと同じ22pxに） */
  .hamburger .bars {
    height: 22px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
  }

  .hamburger .bars span {
    display: block;
    width: 22px;
    height: 2px;
    background: #fff;
    transition: 0.3s;
  }

  .hamburger.active .bars span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
  .hamburger.active .bars span:nth-child(2) { opacity: 0; }
  .hamburger.active .bars span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

  .globalMenuSp {
    position: fixed;
    inset: 0 0 58px 0;
    z-index: 1000;
    background: rgba(22, 25, 34, 0.97);
    padding: 80px 24px 24px;
    transform: translateX(100%);
    transition: transform 0.35s ease;
    overflow-y: auto;
  }

  .globalMenuSp.active {
    transform: translateX(0);
  }

  /* ドロワーの閉じる（×）ボタン */
  .drawer-close {
    position: absolute;
    top: 18px;
    right: 20px;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.06);
    border-radius: 50%;
    color: #fff;
    font-size: 1.3rem;
    display: grid;
    place-items: center;
    cursor: pointer;
    transition: 0.25s;
  }

  .drawer-close:hover {
    background: var(--red);
    border-color: var(--red);
  }

  .globalMenuSp .ul li a {
    display: block;
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    padding: 16px 4px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .globalMenuSp .header_sp_policy a {
    display: inline-block;
    color: var(--gold-light);
    font-size: 0.85rem;
    padding: 18px 4px;
  }

  .globalMenuSp .ul:last-child {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 24px;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
  }

  .globalMenuSp .ul:last-child li a {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border-bottom: 0;
  }

  body {
    padding-bottom: 62px;
  }
}

/* =========================================================
   Contact バンド
   ========================================================= */
#contact-band {
  position: relative;
  padding: 100px 0;
  text-align: center;
  color: #fff;
  overflow: hidden;
  background: linear-gradient(135deg, var(--blue-deep), var(--blue));
}

#contact-band .en-label {
  font-size: 1.9rem;
  display: block;
  margin-bottom: 6px;
  background-image: linear-gradient(135deg, #ffffff, #bfe3ff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

#contact-band h3 {
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: 34px;
  opacity: 0.95;
}

.contact-actions {
  display: flex;
  gap: 22px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.contact-tel {
  font-size: 2.2rem;
  font-weight: 800;
  font-family: "Comfortaa", sans-serif;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
}

.contact-tel small {
  display: block;
  font-size: 0.72rem;
  font-weight: 400;
  opacity: 0.85;
  font-family: sans-serif;
}

.contact-form-btn {
  background: #fff;
  color: var(--blue);
  padding: 16px 40px;
  border-radius: 50px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: 0.3s;
}

.contact-form-btn:hover {
  background: var(--blue-bright);
  color: #fff;
  transform: translateY(-3px);
}

/* スマホ：電話番号が折り返さないように縮小＋注記を下段へ */
@media (max-width: 900px) {
  #contact-band {
    padding: 70px 0;
  }

  #contact-band h3 {
    font-size: 1.05rem;
  }

  .contact-tel {
    font-size: 1.7rem;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
  }

  .contact-tel small {
    flex-basis: 100%;
    text-align: center;
    margin-top: 2px;
  }
}

/* =========================================================
   フッター
   ========================================================= */
footer.site-footer {
  background: var(--ink);
  color: #cfd6df;
  padding: 54px 0 90px;
}

.footer_menu {
  display: flex;
  justify-content: center;
  gap: 26px;
  flex-wrap: wrap;
  margin-bottom: 26px;
}

.footer_menu a {
  font-size: 0.85rem;
  transition: 0.25s;
}

.footer_menu a:hover {
  color: var(--gold-light);
}

.footer-sns {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-bottom: 30px;
}

.footer-sns a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: grid;
  place-items: center;
  transition: 0.3s;
}

.footer-sns a:hover {
  background: var(--blue-bright);
}

.footer-info {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  flex-wrap: wrap;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 26px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.2rem;
  color: #fff;
}

/* フッターのロゴは非表示 */
.footer-logo {
  display: none;
}

.footer-logo .logo-img {
  height: 40px;
  width: auto;
}

.footer-info .meta {
  font-size: 0.82rem;
  opacity: 0.8;
  line-height: 1.7;
}

/* 本社・営業所（左右2カラム） */
.footer-offices {
  display: flex;
  justify-content: center;
  gap: 56px;
  flex-wrap: wrap;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 26px;
}

.footer-offices .office {
  min-width: 260px;
}

.footer-offices .office-label {
  display: inline-block;
  font-weight: 800;
  color: #fff;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  border-bottom: 2px solid var(--gold);
  padding-bottom: 3px;
  margin-bottom: 10px;
}

.footer-offices .office-add,
.footer-offices .office-tel {
  font-size: 0.82rem;
  opacity: 0.82;
  line-height: 1.7;
  margin: 0;
}

@media (max-width: 700px) {
  .footer-offices {
    gap: 24px;
  }

  .footer-offices .office {
    min-width: 0;
    text-align: center;
    width: 100%;
  }
}

.copyright {
  text-align: center;
  font-size: 0.74rem;
  opacity: 0.55;
  margin-top: 24px;
  font-family: "Comfortaa", sans-serif;
}

/* ---------- ページトップへ戻る ---------- */
.back-to-top {
  position: fixed;
  right: 18px;
  bottom: 80px;
  z-index: 900;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  box-shadow: 0 6px 16px rgba(11, 79, 208, 0.35);
}

/* =========================================================
   下層ページ共通（ページヘッダー / パンくず / 見出し）
   ========================================================= */
#page-hero {
  position: relative;
  height: 340px;
  overflow: hidden;
  display: flex;
  align-items: center;
}

#page-hero .ph-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(115deg, rgba(6, 42, 115, 0.9), rgba(11, 79, 208, 0.7)), var(--blue-deep);
  background-size: cover;
  background-position: center;
}

.page-hero-inner {
  position: relative;
  z-index: 3;
  color: #fff;
  padding-left: 8%;
}

.page-hero-inner .en {
  font-family: "Comfortaa", sans-serif;
  letter-spacing: 0.2em;
  font-size: 0.85rem;
  color: #dbeafe;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.page-hero-inner .en::before {
  content: "";
  width: 34px;
  height: 2px;
  background: #fff;
}

.page-hero-inner h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  background-image: linear-gradient(120deg, #fff, #dbeafe 40%, #fff 60%, #bfe3ff);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: sheenFlow 7s linear infinite;
}

.breadcrumb {
  background: var(--paper);
  font-size: 0.78rem;
  color: #777;
}

.breadcrumb .wide {
  padding-block: 12px;
}

.breadcrumb a:hover {
  color: var(--blue);
}

.breadcrumb i {
  font-size: 0.6rem;
  margin: 0 8px;
  opacity: 0.5;
}

.sec {
  padding: 90px 0;
}

.sec-head {
  text-align: center;
  margin-bottom: 50px;
}

.sec-head .en {
  font-family: "Comfortaa", sans-serif;
  font-size: 1.7rem;
  display: block;
  letter-spacing: 0.06em;
}

.sec-head h2 {
  font-size: 1.5rem;
  font-weight: 800;
  margin-top: 4px;
  color: var(--ink);
}

.sec-head .bar {
  width: 50px;
  height: 3px;
  margin: 14px auto 0;
  border-radius: 2px;
}

.sec-head .bar-blue   { background: var(--grad-blue); }
.sec-head .bar-gold   { background: var(--grad-gold); }
.sec-head .bar-red    { background: var(--grad-red); }
.sec-head .bar-silver { background: var(--grad-silver); }

/* 法的文書（プライバシーポリシー等） */
.legal {
  max-width: 900px;
  margin: 0 auto;
}

.legal h2 {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--blue-deep);
  margin: 30px 0 8px;
  padding-left: 12px;
  border-left: 4px solid var(--blue);
  line-height: 1.5;
}

.legal h2:first-child {
  margin-top: 0;
}

.legal p {
  font-size: 0.92rem;
  color: #444;
  margin-bottom: 10px;
}

@media (prefers-reduced-motion: reduce) {
  .sheen,
  .fade-up,
  .page-hero-inner h1 {
    animation: none !important;
  }
}
