/* =========================================================
   TEAM ONE - Common Styles
   Header / navigation / common CTA / footer / base elements
   ========================================================= */

:root {
  --red: #df171f;
  --red-dark: #ba0d14;
  --green: #08aa3c;
  --blue: #0877bd;
  --black: #111;
  --text: #171717;
  --muted: #666;
  --line: #dedede;
  --soft: #f6f7f8;
  --white: #fff;
  --shadow: 0 8px 24px rgba(0,0,0,.08);
  --radius: 12px;
  --content: 1200px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding-bottom: 76px;
  color: var(--text);
  background: #fff;
  font-family: "Noto Sans JP","Hiragino Kaku Gothic ProN","Yu Gothic",Meiryo,sans-serif;
  line-height: 1.7;
}

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

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

button {
  font: inherit;
}

.wrap {
  max-width: var(--content);
  margin: auto;
  padding: 0 24px;
}

.top-copy {
  padding: 8px 0 4px;
  font-size: 12px;
  font-weight: 700;
  color: #333;
}

.site-header {
  background: #fff;
}

.header-main {
  display: grid;
  grid-template-columns: 300px minmax(0,1fr) 430px;
  gap: 28px;
  align-items: center;
  padding: 16px 0 18px;
}

.logo-area p {
  margin: 0 0 6px;
  font-size: 13px;
  font-weight: 800;
}

.logo-area img {
  width: 270px;
}

.header-copy {
  text-align: center;
}

.header-copy strong {
  display: block;
  font-size: 20px;
}

.header-copy span {
  font-size: 13px;
  color: var(--muted);
}

.header-mail {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 250px;
  min-height: 42px;
  margin-top: 8px;
  padding: 9px 22px;
  color: #fff;
  background: var(--red);
  border-radius: 999px;
  font-weight: 900;
}

.header-mail i {
  margin-right: 8px;
}

.header-tel {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 12px 14px;
  border: 1px solid #ddd;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 4px 14px rgba(0,0,0,.06);
}

.header-tel small {
  display: block;
  font-size: 12px;
  font-weight: 800;
  color: #444;
}

.header-tel strong {
  font-size: 25px;
  line-height: 1.2;
  letter-spacing: .02em;
}

.header-tel strong i {
  font-size: .78em;
  color: var(--red);
  margin-right: 5px;
}

.branch-toggle {
  border: 0;
  background: #f1f1f1;
  color: #222;
  border-radius: 7px;
  padding: 9px 11px;
  font-size: 12px;
  font-weight: 900;
  cursor: pointer;
}

.branch-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease;
  background: #fff;
  border-top: 1px solid transparent;
}

.branch-panel.is-open {
  max-height: 340px;
  border-top-color: #eee;
}

.branch-inner {
  max-width: var(--content);
  margin: auto;
  padding: 14px 24px 18px;
}

.branch-list {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 10px;
}

.branch-list a {
  display: block;
  padding: 11px 10px;
  border: 1px solid #ddd;
  border-radius: 8px;
  text-align: center;
  background: #fafafa;
}

.branch-list small {
  display: block;
  font-weight: 800;
  font-size: 12px;
}

.branch-list strong {
  display: block;
  font-size: 18px;
  margin-top: 3px;
}

.menu-btn {
  display: none;
}

.global-nav {
  background: linear-gradient(#282828,#080808);
}

.global-nav .wrap {
  display: grid;
  grid-template-columns: repeat(8,1fr);
  padding: 0;
}

.global-nav a {
  padding: 13px 7px;
  color: #fff;
  text-align: center;
  font-size: 13px;
  font-weight: 800;
  border-left: 1px solid #444;
}

.global-nav a:last-child {
  border-right: 1px solid #444;
}

.global-nav a:first-child {
  background: var(--red);
}

.contact-strip {
  padding: 18px 0;
  background: #fff;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 16px;
}

.contact-button {
  min-height: 88px;
  display: grid;
  grid-template-columns: 58px 1fr;
  align-items: center;
  padding: 15px 22px;
  color: #fff;
  border-radius: 9px;
  box-shadow: 0 5px 14px rgba(0,0,0,.12);
}

.contact-button i {
  font-size: 36px;
  text-align: center;
}

.contact-button .label {
  font-size: 17px;
  font-weight: 900;
  line-height: 1.25;
}

.contact-button .detail {
  display: block;
  margin-top: 4px;
  font-size: 13px;
  font-weight: 700;
  opacity: .96;
}

.contact-button.tel {
  background: linear-gradient(180deg,#e52027,#c80c13);
}

.contact-button.line {
  background: linear-gradient(180deg,#15b64a,#029533);
}

.contact-button.mail {
  background: linear-gradient(180deg,#1488cc,#0665aa);
}

.final-cta {
  padding: 30px 0;
  background: linear-gradient(135deg,#cb0c13,#ed1b24);
  color: #fff;
}

.final-grid {
  display: grid;
  grid-template-columns: 1.1fr repeat(3,1fr);
  gap: 14px;
  align-items: center;
}

.final-copy h2 {
  margin: 0;
  font-size: 24px;
}

.final-copy p {
  margin: 3px 0 0;
  font-size: 12px;
}

.final-grid .contact-button {
  min-height: 70px;
  grid-template-columns: 42px 1fr;
  padding: 12px 16px;
  border: 1px solid rgba(255,255,255,.45);
  box-shadow: none;
}

.final-grid .contact-button i {
  font-size: 26px;
}

.final-grid .contact-button .label {
  font-size: 14px;
}

.final-grid .contact-button .detail {
  font-size: 11px;
}

.footer {
  background: #111;
  color: #ddd;
}

.footer .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding-top: 15px;
  padding-bottom: 15px;
  font-size: 11px;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.fixed-contact {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 100;
  display: none;
  background: #111;
  padding: 4px;
  box-shadow: 0 -3px 10px rgba(0,0,0,.18);
}

.fixed-contact a {
  min-height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
  font-size: 13px;
  font-weight: 900;
  border-radius: 4px;
}

.fixed-contact .tel {
  background: var(--red);
}

.fixed-contact .line {
  background: var(--green);
}

.fixed-contact .mail {
  background: var(--blue);
}

.fixed-contact i {
  margin-right: 6px;
}

/* =========================================================
   部品SHOP ナビ
   ========================================================= */

.global-nav .nav-parts-shop {
  color: #fff;
  background: var(--red);
  font-weight: 900;
}

.global-nav .nav-parts-shop i {
  margin-right: 4px;
}

.global-nav .nav-parts-shop:hover {
  opacity: 0.85;
}

.header-tel strong a {
  color: inherit;
  text-decoration: none;
}