/*
Theme Name: Falcon Child
Template: falcon_tcd089
Version: 1.0.0
*/
@charset "utf-8";

/* ===== 1. 上部リンクバー ===== */
.top-bar {
  background: #000;
  padding: 8px 20px;
  text-align: right;
}
.top-bar .inner a {
  color: #fff;
  margin-left: 30px;
  text-decoration: none;
  font-size: 14px;
}

/* ===== 2. ロゴ + ログイン + 言語 ===== */
.header-main {
  background-color: #000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
}
.header-main .logo img {
  max-height: 60px;
}
.header-main .auth-language {
  display: flex;
  gap: 15px;
}

/* ログインフォーム（上書き統一） */
.auth-language form.login-form {
  display: flex;
  gap: 8px;
}
.auth-language input {
  border: 1px solid #ccc;
  padding: 6px 8px;
  border-radius: 3px;
  font-size: 14px;
}
.auth-language button {
  background: #c00;
  color: #fff;
  border: none;
  padding: 6px 12px;
  border-radius: 3px;
}

/* ===== 3. メインナビ ===== */
.main-nav {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  background: linear-gradient(120deg, #262626 0%, #1b1919 40%, #2f2e2e 100%) !important;
  border-top: 4px solid #c00 !important;
  border-bottom: 2px solid #171717 !important;
}
.main-nav .main-menu {
  display: flex;
  justify-content: center;
  list-style: none;
  padding: 0;
  margin: 0;
}
.main-nav .main-menu > li {
  display: flex !important;
  align-items: center !important;
}
.main-nav .main-menu > li > a {
  color: #ffffff !important;
  font-weight: 700 !important;
  font-size: 20px !important;
  text-decoration: none !important;
  padding: 14px 14px !important;
  transition: all 0.2s ease-in-out !important;
}

/* 区切り線 */
.main-nav .main-menu > li:first-child::before,
.main-nav .main-menu > li + li::before,
.main-nav .main-menu > li:last-child::after {
  content: "";
  display: block;
  position: relative;
  width: 1px;
  height: 48px;
  background: rgba(255, 255, 255, 0.35) !important;
}

/* hover/current */
.main-nav .main-menu > li > a:hover,
.main-nav .main-menu > li.current-menu-item > a {
  color: #fff !important;
  background: rgba(255,255,255,0.08) !important;
}

/* ===== トップページ骨子 ===== */
.p-front__hero {
  min-height: 80vh;
  background: #000;
}

.p-front__concept {
  background: #111;
}

.p-front__lineup {
  background: #000;
}

.p-front__flow {
  padding: 0px;
  background: #111;
}

.p-front__news {
  background: #000;
}

.p-front__bottomBanner {
  background: #111;
  padding: 60px 0;
}

/* ===== footer ===== */
#footer {
  background-color: #000;
}
.sns_button_list li.rss a {
  display: none !important;
}
/* ===== 詳細ページ ===== */
/* 詳細ページ全体の最大幅と余白 */
.single-rental_car .l-contents,
.single-rental_car .l-primary,
.single-rental_car .post_content {
  max-width: 1100px;
  margin: 0 auto;
}

/* メイン画像 */
.car-main-image {
  margin: 0 0 18px;
}
.car-main-image img{
  width: 100%;
  height: auto;
  display: block;
}



/* ===== responsive ===== */
@media (max-width: 768px) {
  .top-bar .inner a {
    margin-left: 15px;
    font-size: 12px;
  }
  .auth-language {
    flex-direction: column;
    gap: 10px;
    margin-top: 10px;
  }
  .main-nav .main-menu {
    flex-direction: column !important;
    gap: 0 !important;
  }
  .main-nav .main-menu > li > a {
    padding: 12px 0 !important;
  }
}