/*
Theme Name: 犬丸テーマ
Theme URI: https://inumaru.co.jp
Author: 株式会社犬丸
Description: 株式会社犬丸のオリジナルWordPressテーマ
Version: 1.0
*/

/* ===== リセット ===== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* ===== 基本 ===== */
body {
  font-family: 'Noto Sans JP', sans-serif;
  color: #1a1a1a;
  background: #fff;
  line-height: 1.6;
}

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

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

/* ===== ナビゲーション ===== */
.site-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 28px;
  background: #b6bbc4;
  border-bottom: 2px solid #9a9fa8;
  position: relative;
}

.site-nav .nav-logo {
  font-size: 20px;
  font-weight: 700;
  color: #1a1a1a;
}

.nav-links {
  display: flex;
  gap: 20px;
  font-size: 13px;
  font-weight: 700;
  color: #1a1a1a;
}

.nav-links a {
  color: #1a1a1a;
  transition: opacity 0.2s;
}

.nav-links a:hover {
  opacity: 0.7;
}

.nav-cta {
  background: #FFEE00;
  color: #1a1a1a;
  border: none;
  padding: 9px 20px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: opacity 0.2s;
}

.nav-cta:hover {
  opacity: 0.85;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #1a1a1a;
  border-radius: 2px;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  background: #b6bbc4;
  border-bottom: 2px solid #9a9fa8;
  padding: 16px 28px;
  gap: 16px;
}

.mobile-menu a {
  font-size: 15px;
  font-weight: 700;
  color: #1a1a1a;
}

.mobile-menu .mob-cta {
  background: #FFEE00;
  color: #1a1a1a;
  border: none;
  padding: 12px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  text-align: center;
}

.mobile-menu.open {
  display: flex;
}

/* ===== ヒーロー ===== */
.hero {
  background: #b6bbc4;
  display: flex;
  align-items: stretch;
  border-bottom: 2px solid #9a9fa8;
}

.hero-text {
  flex: 1;
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-tag {
  display: inline-block;
  background: #FFEE00;
  color: #1a1a1a;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 4px;
  margin-bottom: 16px;
  letter-spacing: 0.5px;
}

.hero h1 {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -1px;
  color: #1a1a1a;
  margin-bottom: 14px;
}

.hero-sub {
  font-size: 14px;
  color: #3a3a3a;
  line-height: 1.8;
}

.hero-img {
  width: 340px;
  flex-shrink: 0;
  overflow: hidden;
}

.hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* ===== 写真ストリップ ===== */
.photo-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 2px solid #9a9fa8;
  border-bottom: 2px solid #9a9fa8;
}

.photo-strip img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.photo-strip img:first-child {
  border-right: 1px solid #9a9fa8;
}

/* ===== セクション共通 ===== */
.section {
  padding: 52px 40px;
  background: #fff;
}

.section-alt {
  background: #f0f1f3;
}

.sec-label {
  display: inline-block;
  background: #FFEE00;
  color: #1a1a1a;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 4px;
  margin-bottom: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.sec-title {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.5px;
  line-height: 1.2;
  margin-bottom: 10px;
  color: #1a1a1a;
}

.sec-body {
  font-size: 14px;
  color: #555;
  line-height: 1.9;
  margin-bottom: 20px;
  max-width: 560px;
}

/* ===== こんな人に合います ===== */
.fit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 16px;
}

.fit-item {
  background: #FFEE00;
  border-radius: 8px;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1.5px solid #d4c800;
}

.fit-check {
  width: 22px;
  height: 22px;
  background: #1a1a1a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFEE00;
  font-size: 13px;
  flex-shrink: 0;
}

.fit-text {
  font-size: 13px;
  font-weight: 700;
  color: #1a1a1a;
}

.fit-note {
  font-size: 12px;
  color: #777;
  margin-top: 12px;
  padding: 10px 14px;
  border-left: 3px solid #b6bbc4;
}

/* ===== 会社情報カード ===== */
.info-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.info-card {
  background: #fff;
  border: 0.5px solid #ddd;
  border-radius: 10px;
  padding: 22px;
}

.info-card-title {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #1a1a1a;
}

.info-card-body {
  font-size: 13px;
  color: #555;
  line-height: 1.85;
}

/* ===== 大事にしていること ===== */
.values {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 12px;
}

.value-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 14px;
  border: 0.5px solid #ddd;
  border-radius: 8px;
  background: #f0f1f3;
}

.value-dot {
  width: 10px;
  height: 10px;
  background: #FFEE00;
  border-radius: 50%;
  border: 1.5px solid #b6bbc4;
  flex-shrink: 0;
}

.value-text {
  font-size: 13px;
  color: #1a1a1a;
  font-weight: 700;
}

/* ===== CTAバンド ===== */
.cta-band {
  background: #b6bbc4;
  padding: 52px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.cta-band h2 {
  font-size: 24px;
  font-weight: 700;
  color: #1a1a1a;
  letter-spacing: -0.5px;
  line-height: 1.3;
}

.cta-band p {
  font-size: 13px;
  color: #3a3a3a;
  margin-top: 8px;
  line-height: 1.7;
}

.btn-yellow {
  background: #FFEE00;
  color: #1a1a1a;
  border: none;
  padding: 14px 32px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  transition: opacity 0.2s;
}

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

/* ===== フッター ===== */
.site-footer {
  padding: 20px 40px;
  border-top: 2px solid #9a9fa8;
  background: #b6bbc4;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: #3a3a3a;
}

.footer-logo {
  color: #1a1a1a;
  font-weight: 700;
  font-size: 15px;
}

/* ===== レスポンシブ ===== */
@media (max-width: 640px) {
  .nav-links,
  .nav-cta {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .hero {
    flex-direction: column;
  }

  .hero-text {
    padding: 36px 24px 28px;
  }

  .hero h1 {
    font-size: 26px;
  }

  .hero-img {
    width: 100%;
    height: 220px;
  }

  .photo-strip {
    grid-template-columns: 1fr;
  }

  .photo-strip img {
    height: 180px;
  }

  .photo-strip img:first-child {
    border-right: none;
    border-bottom: 1px solid #9a9fa8;
  }

  .section {
    padding: 40px 24px;
  }

  .section-alt {
    padding: 40px 24px;
  }

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

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

  .cta-band {
    flex-direction: column;
    align-items: flex-start;
    padding: 40px 24px;
    gap: 20px;
  }

  .btn-yellow {
    width: 100%;
    text-align: center;
  }

  .site-footer {
    flex-direction: column;
    gap: 8px;
    text-align: center;
    padding: 20px 24px;
  }
}
