/* ===== 共通スタイル ===== */
html, body {
  height: 100%;
  margin: 0;
  font-family: 'Noto Sans JP', sans-serif;
  background-color: #f8f9fa;
  color: #000;
  line-height: 1.8;
  display: flex;
  flex-direction: column;
}

body {
  padding-top: 60px; /* ヘッダー固定分の余白 */
}

/* ===== ヒーローセクション ===== */
.hero {
  background: url('images/fish-market.jpg') center/cover no-repeat;
  color: white;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
  padding: 120px 0;
  text-align: center;
}
.hero h1 {
  font-size: 2.8rem;
  font-weight: bold;
}
.hero p {
  font-size: 1.3rem;
  margin-top: 1rem;
}

/* ===== 見出し ===== */
h1, h2, h3, h4 {
  color: #004080;
  font-weight: 700;
}

/* ===== セクションタイトル ===== */
.section-title {
  font-size: 2rem;
  font-weight: bold;
  color: #004080;
  margin-bottom: 2rem;
  text-align: center;
  position: relative;
}
.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: #004080;
  margin: 0.5rem auto 0;
  border-radius: 2px;
}

/* ===== 本文テキスト ===== */
.content-text {
  color: #444;
  font-size: 1.1rem;
  line-height: 1.8;
  max-width: 720px;
  margin: 0 auto 2rem;
}
.content-text strong {
  color: #0077b6;
}

/* ===== プロフィール画像 ===== */
.profile-img {
  display: block;
  width: 300px;
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  margin: 2rem auto;
  box-shadow: 0 4px 12px rgba(0, 119, 182, 0.3);
}

/* ===== プロフィール ===== */
.profile-section {
  background-color: transparent;
  padding: 40px 0;
  margin-bottom: 40px;
}

.profile-header {
  text-align: center;
  margin-bottom: 40px;
  padding-left: 20px;
}
.profile-header h2 {
  font-size: 1.8rem;
  color: #0077b6;
  margin-bottom: 10px;
  font-weight: 600;
}

.profile-name {
  font-size: 1.5rem;
  font-weight: 700;
  color: #0077b6;
  margin-bottom: 8px;
}
.profile-name-en {
  font-size: 1rem;
  color: #666;
  font-weight: 400;
  letter-spacing: 2px;
}

.profile-main {
  display: flex;
  align-items: flex-start;
  gap: 40px;
  margin-bottom: 40px;
}

.profile-image-container {
  flex-shrink: 0;
}

.profile-image-new {
  width: 320px;
  height: 400px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 119, 182, 0.2);
}

.profile-content {
  flex: 1;
  padding-left: 20px;
}

.profile-intro {
  font-size: 1.05rem;
  line-height: 1.9;
  color: #333;
  margin-bottom: 0;
}
.profile-intro p {
  margin-bottom: 1.2rem;
}

/* ===== プロフィールテーブル ===== */
.profile-tables {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-top: 30px;
}

.profile-table-section h4 {
  font-size: 1.1rem;
  color: #0077b6;
  margin-bottom: 15px;
  font-weight: 600;
  border-bottom: 2px solid #0077b6;
  padding-bottom: 5px;
}

.profile-table {
  width: 100%;
  border-collapse: collapse;
  background-color: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}
.profile-table td {
  padding: 12px 15px;
  border-bottom: 1px solid #e9ecef;
  font-size: 0.95rem;
}
.profile-table td:first-child {
  background-color: #f8f9ff;
  font-weight: 600;
  color: #0077b6;
  width: 100px;
  white-space: nowrap;
}
.profile-table td:last-child {
  color: #444;
}
.profile-table tr:last-child td {
  border-bottom: none;
}

/* ===== カード ===== */
.card {
  border: none;
  border-radius: 12px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  background-color: #fff;
  margin-bottom: 20px;
  padding: 20px;
}
.card:hover {
  background-color: #e6f4f8;
  box-shadow: 0 6px 16px rgba(0, 119, 182, 0.15);
  cursor: pointer;
}
.card-title {
  font-weight: 600;
  font-size: 1.25rem;
  color: #0077b6;
}
.card-body ul,
.card-text ul {
  padding-left: 1rem;
  margin: 0;
}
.card-body li,
.card-text ul li {
  font-size: 0.9rem;
  margin-bottom: 0.4rem;
}

/* 横並びカード */
.card.flex-row {
  display: flex;
  align-items: center;
}

/* ===== サービス画像 ===== */
.service-img {
  width: 180px;
  height: 120px;
  object-fit: cover;
  border-radius: 8px;
  margin-right: 20px;
}

/* ===== テーブル ===== */
.table th {
  background-color: #e6f2ff;
  width: 30%;
  white-space: nowrap;
  vertical-align: top;
  color: #555;
}

/* ===== ケータリング画像 ===== */
.catering-images {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}
.catering-img {
  width: 250px;
  height: 180px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

/* ===== ナビゲーション ===== */
nav.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1030;
  height: 65px;
  background-color: #fff;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  padding-top: 0.3rem;   /* デフォルトより少し狭め */
  padding-bottom: 0.3rem;
}
nav.navbar .container {
  height: 100%;
  display: flex;
  align-items: center;
}
nav.navbar .navbar-brand {
  font-weight: 700;
  line-height: 60px;
}
nav.navbar .navbar-nav {
  height: 100%;
  display: flex;
  align-items: center;
}
nav.navbar .nav-link {
  color: #0077b6 !important;
  padding: 0.5rem 0;
}
nav.navbar .nav-link:hover {
  color: #005f86 !important;
}
nav.navbar .nav-link.active {
  font-weight: bold;
}

/* ===== メインエリア ===== */
main.container {
  flex: 1 0 auto;
}

/* ===== フッター ===== */
footer,
.footer-custom {
  flex-shrink: 0;
  background-color: #f0f9fb;
  color: #444;
  font-size: 0.9rem;
  text-align: center;
  padding: 20px 0;
  border-top: 1px solid #ccc;
}
.footer-custom .footer-icon {
  width: 60px;
  height: 60px;
  border-radius: 30%;
  object-fit: cover;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.2);
}

/* ===== レスポンシブ対応 ===== */
@media (max-width: 768px) {
  .profile-main {
    flex-direction: column;
    text-align: center;
  }

  .profile-image-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
  }

  .profile-image-new {
    width: 280px;
    height: 350px;
    margin: 0 auto;
    display: block;
  }

  .profile-content {
    padding-left: 0;
    margin-top: 20px;
  }

  .profile-intro {
    text-align: left;
  }

  .profile-tables {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .card.flex-row {
    flex-direction: column !important;
    text-align: center;
  }

  .service-img {
    margin: 0 auto 12px;
    width: 100%;
    height: auto;
  }

  .offcanvas {
    top: 40px; /* 適宜調整 */
  }

}
