/* =============================================
   PCC THEME - Common Styles
   共通スタイル（ヘッダー・フッター・ボタン等）
   ============================================= */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: 'Noto Sans JP', sans-serif; background: #fff; color: #33333b; }
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }
p { margin: 0; }
button { border: none; background: none; cursor: pointer; font-family: inherit; }

/* ===== HEADER ===== */
.pcc-header {
  background: #fff;
  padding: 12px 32px;
  width: 100%;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.pcc-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1470px;
  margin: 0 auto;
}
.pcc-header-logo { display: flex; gap: 24px; align-items: center; }
.pcc-site-logo { width: 200px; height: 42px; overflow: hidden; flex-shrink: 0; }
.pcc-site-logo img { width: 100%; height: 100%; object-fit: contain; }
.pcc-client-logo { width: 120px; height: 32px; overflow: hidden; flex-shrink: 0; }
.pcc-client-logo img { width: 100%; height: 100%; object-fit: contain; }

.pcc-header-nav { display: flex; flex-direction: column; gap: 8px; align-items: flex-end; }
.pcc-nav-secondary { display: flex; gap: 16px; align-items: center; justify-content: flex-end; }
.pcc-nav-tel { display: flex; gap: 0; align-items: center; }
.pcc-tel-icon { width: 36px; height: 36px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.pcc-tel-icon img { width: 22px; height: 22px; object-fit: contain; }
.pcc-tel-info { display: flex; flex-direction: column; gap: 2px; }
.pcc-tel-number { font-size: 26px; font-weight: 700; color: #33333b; letter-spacing: -0.5px; line-height: 1; }
.pcc-tel-hours { display: flex; flex-direction: column; gap: 1px; }
.pcc-tel-hour-row { display: flex; gap: 4px; align-items: center; }
.pcc-tel-label { background: #fff8e5; border-radius: 9999px; padding: 1px 6px; font-size: 8px; font-weight: 700; color: #33333b; white-space: nowrap; }
.pcc-tel-time { font-size: 10px; font-weight: 700; color: #33333b; white-space: nowrap; }
.pcc-tel-note { font-size: 9px; font-weight: 700; color: #33333b; white-space: nowrap; }
.pcc-nav-buttons { display: flex; gap: 8px; align-items: center; }
.pcc-nav-primary { display: flex; gap: 12px; align-items: center; justify-content: flex-end; }
.pcc-nav-link { display: flex; gap: 4px; align-items: center; font-size: 14px; font-weight: 700; color: #33333b; white-space: nowrap; cursor: pointer; }
.pcc-nav-link:hover, .pcc-nav-link.active { color: #038e8e; }

/* ===== BUTTONS ===== */
.btn-primary {
  background: #038e8e;
  border-bottom: 3px solid rgba(0,0,0,0.16);
  border-radius: 9999px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
  padding: 8px 18px 11px;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  white-space: nowrap;
  cursor: pointer;
}
.btn-primary:hover { background: #027070; }
.btn-secondary {
  background: #fff8e5;
  border-bottom: 3px solid rgba(0,0,0,0.16);
  border-radius: 9999px;
  display: inline-flex;
  gap: 6px;
  align-items: center;
  justify-content: center;
  padding: 8px 18px 11px;
  font-size: 13px;
  font-weight: 700;
  color: #33333b;
  white-space: nowrap;
  cursor: pointer;
}
.btn-secondary img { width: 16px; height: 16px; object-fit: contain; }
.btn-fb {
  background: #0068ff;
  border-radius: 9999px;
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.btn-fb img { width: 20px; height: 20px; object-fit: contain; }

/* ===== HAMBURGER MENU ===== */
.pcc-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
  z-index: 1100;
}
.pcc-hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: #33333b;
  transition: all 0.3s;
}
.pcc-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.pcc-hamburger.open span:nth-child(2) { opacity: 0; }
.pcc-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.pcc-mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  z-index: 999;
  padding: 80px 24px 24px;
  overflow-y: auto;
  flex-direction: column;
  gap: 0;
}
.pcc-mobile-menu.open { display: flex; }
.pcc-mobile-menu-nav { display: flex; flex-direction: column; }
.pcc-mobile-menu-nav a {
  display: block;
  padding: 16px 0;
  font-size: 16px;
  font-weight: 700;
  color: #33333b;
  border-bottom: 1px solid #e6e0eb;
}
.pcc-mobile-menu-tel { margin-top: 24px; text-align: center; }
.pcc-mobile-menu-buttons { display: flex; flex-direction: column; gap: 12px; margin-top: 24px; }
.pcc-mobile-menu-buttons .btn-primary,
.pcc-mobile-menu-buttons .btn-secondary { width: 100%; justify-content: center; padding: 14px 18px; font-size: 15px; }

/* ===== SECTION COMMON ===== */
.pcc-section-head { display: flex; flex-direction: column; gap: 12px; align-items: center; text-align: center; }
.pcc-section-title { display: flex; flex-direction: column; gap: 6px; align-items: center; }
.pcc-section-title-ja { font-size: 36px; font-weight: 700; color: #038e8e; letter-spacing: -0.3px; line-height: 1; }
.pcc-section-title-en { font-size: 13px; font-weight: 700; color: #72727b; letter-spacing: 0.3px; }

/* ===== BANNER SECTION ===== */
.pcc-banner-section { padding: 0 24px 24px; width: 100%; }
.pcc-banner-inner {
  background: #fff8e5;
  border-radius: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  justify-content: center;
  padding: 24px 40px;
  width: 100%;
}
.pcc-banner-item { display: flex; align-items: center; }
.pcc-banner-item img { object-fit: cover; display: block; height: 72px; width: auto; border-radius: 4px; }
.pcc-banner-wide img { width: 420px; max-width: 100%; }
.pcc-banner-mid img { width: 280px; max-width: 100%; }

/* ===== ACCESS SECTION ===== */
.pcc-access-section { background: #fff; padding: 72px 120px; width: 100%; }
.pcc-access-inner { display: flex; flex-direction: column; gap: 48px; align-items: center; width: 100%; }
.pcc-access-body { display: flex; gap: 48px; align-items: flex-start; justify-content: center; width: 100%; }
.pcc-access-text { flex: 1; display: flex; flex-direction: column; gap: 24px; }
.pcc-access-place-name { font-size: 20px; font-weight: 700; color: #038e8e; }
.pcc-access-address { font-size: 15px; line-height: 1.6; margin-top: 8px; }
.pcc-access-chip { background: #038e8e; border-radius: 9999px; padding: 3px 10px; display: inline-flex; align-items: center; }
.pcc-access-chip span { font-size: 11px; font-weight: 700; color: #fff; white-space: nowrap; }
.pcc-access-info-row { display: flex; flex-direction: column; gap: 6px; }
.pcc-access-hours { font-size: 15px; line-height: 1.6; margin-top: 6px; }
.pcc-access-map { width: 600px; height: 300px; border-radius: 24px; overflow: hidden; position: relative; flex-shrink: 0; }
.pcc-access-map img { width: 100%; height: 100%; object-fit: cover; }

/* ===== FOOTER ===== */
.pcc-footer {
  background: #fff;
  padding: 56px 100px;
  width: 100%;
  border-top: 1px solid #e6e0eb;
}
.pcc-footer-inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  width: 100%;
  gap: 40px;
}
.pcc-footer-main { display: flex; flex-direction: column; gap: 24px; flex: 1; }
.pcc-footer-logo { display: flex; gap: 32px; align-items: center; }
.pcc-footer-site-logo { width: 170px; height: 36px; overflow: hidden; }
.pcc-footer-site-logo img { width: 100%; height: 100%; object-fit: contain; }
.pcc-footer-client-logo { width: 110px; height: 30px; overflow: hidden; }
.pcc-footer-client-logo img { width: 100%; height: 100%; object-fit: contain; }
.pcc-footer-org { display: flex; flex-direction: column; gap: 6px; color: #33333b; }
.pcc-footer-org-name { font-size: 15px; font-weight: 700; }
.pcc-footer-org-info { font-size: 13px; line-height: 1.6; color: #555; }
.pcc-footer-tel-area { display: flex; flex-direction: column; gap: 12px; border-top: 1px solid #e6e0eb; padding-top: 16px; }
.pcc-footer-sub {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: space-between;
  align-self: stretch;
  min-width: 300px;
}
.pcc-footer-links { display: flex; gap: 32px; }
.pcc-footer-nav-col { display: flex; flex-direction: column; gap: 8px; }
.pcc-footer-link {
  display: flex;
  gap: 4px;
  align-items: center;
  font-size: 13px;
  font-weight: 700;
  color: #0055cc;
  text-decoration: underline;
  white-space: nowrap;
}
.pcc-footer-copyright { font-size: 10px; font-weight: 700; color: #33333b; text-align: right; }

/* ===== RESPONSIVE - Common ===== */
@media (max-width: 768px) {
  /* ヘッダー */
  .pcc-header { padding: 10px 16px; }
  .pcc-header-nav { display: none; }
  .pcc-hamburger { display: flex; }
  .pcc-site-logo { width: 140px; height: 30px; }
  .pcc-client-logo { display: none; }

  /* バナー */
  .pcc-banner-section { padding: 0 12px 16px; }
  .pcc-banner-inner { padding: 12px; gap: 8px; border-radius: 16px; }
  .pcc-banner-item img { height: 48px; width: auto; }
  .pcc-banner-wide img { width: auto; max-width: calc(50vw - 24px); }
  .pcc-banner-mid img { width: auto; max-width: calc(50vw - 24px); }

  /* アクセス */
  .pcc-access-section { padding: 40px 16px; }
  .pcc-access-inner { gap: 32px; }
  .pcc-access-body { flex-direction: column; gap: 24px; }
  .pcc-access-map { width: 100%; height: 220px; border-radius: 16px; }
  .pcc-access-place-name { font-size: 16px; }
  .pcc-access-address { font-size: 13px; }
  .pcc-access-hours { font-size: 13px; }

  /* フッター */
  .pcc-footer { padding: 36px 16px; }
  .pcc-footer-inner { flex-direction: column; gap: 28px; }
  .pcc-footer-main { gap: 16px; }
  .pcc-footer-logo { gap: 16px; flex-wrap: wrap; }
  .pcc-footer-org-name { font-size: 13px; }
  .pcc-footer-org-info { font-size: 11px; }
  .pcc-footer-sub { align-items: flex-start; min-width: 0; }
  .pcc-footer-links { flex-direction: column; gap: 12px; }
  .pcc-footer-link { font-size: 12px; }
  .pcc-footer-copyright { text-align: left; font-size: 9px; }

  /* セクション共通 */
  .pcc-section-title-ja { font-size: 24px; }
  .pcc-section-title-en { font-size: 11px; }

  /* モバイルメニュー */
  .pcc-mobile-menu { padding: 72px 20px 24px; }
}
