/* ------------------------------
   ベーススタイル
------------------------------ */
:root {
  --main-color: #005a8d;
  --accent-color: #e8a400;
  --bg-light: #f7f7f7;
  --text-main: #222;
  --text-sub: #555;
  --max-width: 1100px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Hiragino Kaku Gothic ProN",
    "Yu Gothic", "Meiryo", sans-serif;
  color: var(--text-main);
  line-height: 1.7;
  background-color: #ffffff;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 16px;
}

section {
  padding: 56px 0;
}

h2 {
  font-size: 1.8rem;
  margin-bottom: 16px;
  border-left: 4px solid var(--main-color);
  padding-left: 10px;
}

h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
}

p {
  margin-bottom: 10px;
  color: var(--text-sub);
}

/* ------------------------------
   ヘッダー
------------------------------ */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
  backdrop-filter: blur(10px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 16px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.logo {
  display: flex;
  flex-direction: column;
}

.logo-main {
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--main-color);
  letter-spacing: 0.05em;
}

.logo-sub {
  font-size: 0.75rem;
  color: var(--text-sub);
}

nav ul {
  list-style: none;
  display: flex;
  gap: 18px;
  font-size: 0.9rem;
}

nav a {
  padding-bottom: 2px;
  border-bottom: 2px solid transparent;
}

nav a:hover {
  border-color: var(--main-color);
}

.header-contact {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  font-size: 0.8rem;
}

.tel {
  font-weight: 700;
  font-size: 1rem;
  color: var(--main-color);
}

.header-contact span {
  color: var(--text-sub);
}

/* ハンバーガーメニュー（スマホ用） */
.nav-toggle {
  display: none;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #333;
  margin: 5px 0;
  transition: 0.3s;
}

@media (max-width: 768px) {
  nav ul {
    position: fixed;
    top: 56px;
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    gap: 0;
    border-top: 1px solid #eee;
    display: none;
  }

  nav ul.show {
    display: flex;
  }

  nav li {
    border-bottom: 1px solid #eee;
  }

  nav a {
    display: block;
    padding: 12px 16px;
  }

  .header-inner {
    padding: 8px 12px;
  }

  .header-contact {
    display: none;
  }

  .nav-toggle {
    display: block;
  }
}

.logo-main {
  font-size: 1.6rem; /
  font-weight: 700;  /
}

.logo-sub {
  font-size: 0.9rem; /
}

nav ul li a {
  font-weight: 600;      /* 少し太くする */
  font-size: 0.9rem;    /* ほんの少し大きくする（調整可） */
  letter-spacing: 0.5px; /* 文字間隔を少し広げて読みやすく */
}




/* ------------------------------
   ファーストビュー
------------------------------ */
.hero {
  background: linear-gradient(
      to right,
      rgba(0, 50, 90, 0.85),
      rgba(0, 90, 141, 0.7)
    ),
    url("images/AdobeStock_362478119.jpg")
      center / cover no-repeat;
  color: #fff;
  padding: 72px 0 72px;
}

.hero-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 16px;
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 36px;
  align-items: center;
}

.hero-title {
  font-size: 2.1rem;
  line-height: 1.4;
  margin-bottom: 16px;
  font-weight: 700;
}

.hero-subtitle {
  color: #ffffff;
  font-size: 1rem;
  margin-bottom: 20px;
  max-width: 32em;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.badge {
  font-size: 0.8rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  padding: 4px 10px;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: 0.2s;
  text-align: center;
}

.btn-primary {
  background: #fff;
  color: var(--main-color);
}

.btn-primary:hover {
  background: #f2f2f2;
}

.btn-outline {
  background: transparent;
  color: #fff;
  border: 1px solid #fff;
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.18);
}

.hero-info-box {
  background: rgba(255, 255, 255, 0.98);
  color: var(--text-main);
  border-radius: 12px;
  padding: 18px 18px 16px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.18);
  font-size: 0.9rem;
}

.hero-info-box h3 {
  margin-bottom: 6px;
  font-size: 1.05rem;
  color: var(--main-color);
}

.hero-info-box p {
  color: var(--text-sub);
  margin-bottom: 6px;
}

.hero-info-list {
  list-style: none;
  margin-top: 6px;
}

.hero-info-list li::before {
  content: "■";
  color: var(--accent-color);
  margin-right: 6px;
  font-size: 0.6rem;
  vertical-align: middle;
}

@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .hero {
    padding: 56px 0 48px;
  }

  .hero-title {
    font-size: 1.6rem;
  }

  .hero-subtitle {
    font-size: 0.9rem;
  }
}

/* ------------------------------
   お悩み
------------------------------ */
.problems {
  background: var(--bg-light);
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 18px;
}

.problem-item {
  background: #fff;
  border-radius: 8px;
  padding: 14px 14px 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.04);
  font-size: 0.9rem;
  position: relative;
  overflow: hidden;
}

.problem-item::before {
  content: "●";
  color: var(--accent-color);
  margin-right: 6px;
  font-size: 0.7rem;
}

@media (max-width: 900px) {
  .problem-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 600px) {
  .problem-grid {
    grid-template-columns: 1fr;
  }
}

/* ------------------------------
   業務内容
------------------------------ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 18px;
}

.service-card {
  border-radius: 10px;
  border: 1px solid #e5e5e5;
  padding: 16px 16px 14px;
  background: #fff;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.service-tag {
  font-size: 0.75rem;
  color: #fff;
  background: var(--main-color);
  border-radius: 999px;
  padding: 2px 9px;
  display: inline-block;
  margin-bottom: 8px;
}

.service-card p {
  font-size: 0.9rem;
  margin-bottom: 10px;
}

.service-footer {
  margin-top: auto;
  text-align: right;
  font-size: 0.8rem;
}

.service-footer a {
  color: var(--main-color);
}

.service-footer a::after {
  content: " ＞";
  font-size: 0.75rem;
}

@media (max-width: 900px) {
  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 600px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}

/* ------------------------------
   選ばれる理由
------------------------------ */
.reasons-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 18px;
}

.reason-card {
  background: #fff;
  border-radius: 10px;
  padding: 16px 16px 14px;
  border: 1px solid #e5e5e5;
  font-size: 0.9rem;
}

.reason-number {
  font-size: 0.8rem;
  color: var(--accent-color);
  font-weight: 700;
  margin-bottom: 4px;
  letter-spacing: 0.06em;
}

@media (max-width: 900px) {
  .reasons-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 600px) {
  .reasons-grid {
    grid-template-columns: 1fr;
  }
}

/* ------------------------------
   代表挨拶
------------------------------ */
.profile {
  background: var(--bg-light);
}

.profile-inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 26px;
  align-items: flex-start;
  margin-top: 20px;
}

.profile-photo {
  width: 100%;
  max-width: 260px;
  border-radius: 999px;
  overflow: hidden;
  margin: 0 auto;
  border: 4px solid #fff;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.1);
  background: #ddd;
}

.profile-detail h3 {
  margin-bottom: 6px;
}

.profile-meta {
  font-size: 0.85rem;
  margin-bottom: 14px;
  color: var(--text-sub);
}

/* 名前の文字サイズを大きくする */
.profile .profile-detail .profile-meta {
  font-size: 1.2rem;
  font-weight: 700;
  color: #333; /* 必要なら変更、不要なら削除OK */
}

@media (max-width: 900px) {
  .profile-inner {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .profile-photo {
    margin-bottom: 8px;
  }
}

/* 資格・所属の行間を詰める */
.profile-detail .profile-license p {
  margin: 2px 0;
  line-height: 1.3;
  font-size: 0.8rem; /* ← 文字を少し小さく */
}

/* ------------------------------
   料金
------------------------------ */
.price-table {
  border-collapse: collapse;
  width: 100%;
  margin-top: 12px;
  font-size: 0.9rem;
}

.price-table th,
.price-table td {
  padding: 10px 8px;
  border-bottom: 1px solid #e5e5e5;
}

.price-table th {
  text-align: left;
  background: #fafafa;
  white-space: nowrap;
}

.price-note {
  font-size: 0.8rem;
  color: var(--text-sub);
  margin-top: 10px;
}

/* ------------------------------
   お客様の声
------------------------------ */
.voice-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 18px;
}

.voice-card {
  background: #fff;
  border-radius: 10px;
  border: 1px solid #e5e5e5;
  padding: 14px 14px 12px;
  font-size: 0.9rem;
}

.voice-meta {
  font-size: 0.8rem;
  color: var(--text-sub);
  margin-bottom: 4px;
}

@media (max-width: 700px) {
  .voice-grid {
    grid-template-columns: 1fr;
  }
}

/* ------------------------------
   対応エリア
------------------------------ */
.area-inner {
  display: grid;
  grid-template-columns: 1.5fr 2fr;
  gap: 22px;
  margin-top: 16px;
  align-items: center;
}

.area-list {
  list-style: none;
  font-size: 0.9rem;
}

.area-list li {
  margin-bottom: 4px;
}

.area-map {
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #e5e5e5;
}

iframe {
  width: 100%;
  border: 0;
}

@media (max-width: 900px) {
  .area-inner {
    grid-template-columns: 1fr;
  }
}

/* ------------------------------
   お問い合わせ
------------------------------ */
.contact {
  background: var(--main-color);
  color: #fff;
}

.contact .container {
  max-width: 900px;
}

.contact h2 {
  border-color: #fff;
}

.contact p {
  color: #f7f7f7;
}

.contact-inner {
  display: grid;
  grid-template-columns: 1.2fr 1.5fr;
  gap: 24px;
  margin-top: 16px;
  align-items: flex-start;
}

.contact-info {
  font-size: 0.9rem;
}

.contact-info .tel {
  font-size: 1.2rem;
  color: #fff;
}

.contact-form {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  padding: 16px;
  font-size: 0.9rem;
}

.contact-form label {
  display: block;
  margin-bottom: 4px;
  font-size: 0.85rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 8px;
  margin-bottom: 10px;
  border-radius: 4px;
  border: 1px solid #ccc;
  font-family: inherit;
  font-size: 0.9rem;
}

.contact-form textarea {
  min-height: 100px;
  resize: vertical;
}

.contact-submit {
  background: #fff;
  color: var(--main-color);
  border: none;
  padding: 10px 24px;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
  font-size: 0.9rem;
}

.contact-submit:hover {
  background: #f2f2f2;
}

@media (max-width: 900px) {
  .contact-inner {
    grid-template-columns: 1fr;
  }
.contact-button {
  display: inline-block;
  padding: 12px 24px;
  background-color: #007bff;
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  font-size: 1.3rem; /* ← ここで文字を大きくする */
  font-weight: 600;  /* ← 少し太くすると見やすい */
 }

}

/* ------------------------------
   アクセス
------------------------------ */
.access-inner {
  display: grid;
  grid-template-columns: 1.4fr 1.8fr;
  gap: 24px;
  margin-top: 18px;
  align-items: flex-start;
}

.access-table {
  font-size: 0.9rem;
}

.access-table dt {
  font-weight: 600;
  margin-top: 6px;
}

.access-table dd {
  margin-left: 0;
  margin-bottom: 4px;
  color: var(--text-sub);
}

.access-map {
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #e5e5e5;
}

@media (max-width: 900px) {
  .access-inner {
    grid-template-columns: 1fr;
  }
}

/* ------------------------------
   フッター
------------------------------ */
footer {
  background: #1b1b1b;
  color: #eee;
  font-size: 0.8rem;
  padding: 24px 0 18px;
  margin-top: 12px;
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0

.profile-meta {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.profile-subtext {
  font-size: 1rem;
  color: #555;
  margin-top: -5px;
  margin-bottom: 15px;
}

.profile-detail .profile-meta {
  font-size: 1.6rem !important;
}

.profile .profile-detail .profile-meta {
  font-size: 1.6rem !important;
}

footer {
  color: #fff;
}

footer .footer-inner p {
  color: #fff !important;
}


