/* ==============================
       ベース / リセット
    ============================== */
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    :root{
      --nav-h:72px;
      --bottom-nav-h:80px;

      --paint-primary:#D97706; /* 濃いオレンジ */
      --paint-accent:#F59E0B;  /* 明るいオレンジ */
      --border-color:#eee1a8;

      --footer-bg:#2C2C2C;

      font-family:"Noto Sans JP",system-ui,-apple-system,"Segoe UI","Hiragino Sans","Hiragino Kaku Gothic ProN","Yu Gothic","Meiryo",Roboto,sans-serif;
    }

    body {
      font-family: inherit;
      line-height: 1.8;
      color: #333;
      background: #fff;
      padding-bottom: calc(var(--bottom-nav-h) + 40px); 
    }

    img {
      max-width: 100%;
      height: auto;
      vertical-align: middle;
    }

    figure { margin: 0; }

    .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 20px;
    }

    section {
      padding: 10px 5px;
    }

    

    

    /* ==============================
       セクション見出し画像
    ============================== */
    .section-header {
      text-align: center;
      margin-bottom: -110px;
    }

    /* 特定のセクションでさらに詰めたい場合用 */
    .company-badges .section-header {
      margin-bottom: -290px;
    }

    .section-header__eyecatch {
      display: block;
      margin: 0 auto;
      width: 100%;
      max-width: 400px;
      height: auto;
      object-fit: contain;
    }

    @media (max-width: 768px) {
      .section-header__eyecatch {
        max-width: 250px;
      }
    }

    .section-header__title {
      display: none;
    }

    .section-header + * {
      margin-top: 0 !important;
    }

    .section-description,
    .section-lead {
      text-align: center;
      font-size: 16px;
      max-width: 800px;
      margin: 0 auto 48px;
      line-height: 1.8;
      color: #666;
    }

    .section-lead {
      line-height: 2;
    }

    /* ==============================
       ヒーロー（会社概要の頭）
    ============================== */
    .company-hero {
      background: linear-gradient(135deg, #FFF9E6 0%, #FFECB3 100%);
      padding: 80px 20px 60px;
      text-align: center;
      position: relative;
      overflow: hidden;
    }

    .company-hero__title {
      font-size: clamp(1.8rem, 5vw, 2.5rem);
      color: #D97706;
      margin-bottom: 20px;
      position: relative;
      z-index: 1;
      font-weight: 700;
    }

    .company-hero__lede {
      font-size: clamp(1rem, 3vw, 1.2rem);
      max-width: 700px;
      margin: 0 auto;
      position: relative;
      z-index: 1;
    }

    /* ==============================
       会社の基本情報テーブル
    ============================== */
    .company-profile__table {
      width: 100%;
      max-width: 900px;
      margin: 0 auto;
      border-collapse: collapse;
    }

    .company-profile__table th,
    .company-profile__table td {
      padding: 18px 20px;
      text-align: left;
      border-bottom: 1px solid #E5E7EB;
    }

    .company-profile__table th {
      background: #FFF9E6;
      font-weight: 600;
      width: 30%;
      color: #D97706;
    }

    @media (max-width: 768px) {
      .company-profile__table {
        display: block;
      }
      .company-profile__table tbody,
      .company-profile__table tr {
        display: block;
      }
      .company-profile__table th,
      .company-profile__table td {
        display: block;
        width: 100%;
      }
      .company-profile__table th {
        border-bottom: none;
        padding-bottom: 8px;
      }
      .company-profile__table td {
        padding-top: 8px;
        padding-bottom: 20px;
      }
    }

    /* ==============================
       代表メッセージ
    ============================== */
    .company-ceo {
      background: linear-gradient(135deg, #FFF9E6 0%, #FFFBF0 100%);
      padding-top: 0;
      padding-bottom: 0;
    }

    .me-container{
      padding-bottom: 15px;
    }

    .company-ceo__wrap {
      max-width: 900px;
      margin: 0 auto;
      display: flex;
      gap: 40px;
      align-items: center;
    }

    .company-ceo__visual {
      flex: 0 0 200px;
      width: 200px;
      height: 200px;
      border-radius: 50%;
      overflow: hidden;
      box-shadow: 0 4px 20px rgba(217, 119, 6, 0.2);
    }

    .company-ceo__visual img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .company-ceo__body {
      flex: 1;
    }

    .company-ceo__body p {
      margin-bottom: 20px;
      font-size: 1.1rem;
      line-height: 1.8;
    }

    .balloon-cat {
      background: #fff;
      padding: 15px 20px;
      border-radius: 20px;
      position: relative;
      box-shadow: 0 2px 8px rgba(0,0,0,0.1);
      display: inline-flex;
      align-items: center;
      gap: 15px;
      margin-top: 10px;
    }

    .balloon-cat__image {
      width: 60px;
      height: 60px;
      border-radius: 50%;
      object-fit: cover;
      flex-shrink: 0;
    }

    .balloon-cat::after {
      content: "";
      position: absolute;
      left: -10px;
      top: 50%;
      transform: translateY(-50%);
      border: 10px solid transparent;
      border-right-color: #fff;
    }

    @media (max-width: 768px) {
      .company-ceo__wrap {
        flex-direction: column;
      }
      .company-ceo__visual {
        flex: 0 0 200px;
        width: 200px;
        height: 200px;
      }
    }

    /* ==============================
       理念 (philosophy)
    ============================== */
    .philosophy-section {
      background: #fffdf4;
      border-radius: 24px;
      box-shadow: 0 20px 60px rgba(255,193,7,0.12);
      padding: 16px 24px 40px;
      margin: 0 auto;
      max-width: 1100px;
      position: relative;
      overflow: hidden;
    }

    .philosophy-head {
      text-align: center;
      margin: 0 0 28px;
    }

    .philosophy-head p {
      font-size: 14px;
      line-height: 1.7;
      color: #6B4A2E;
      margin: 0;
    }

    .philosophy-list {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(min(280px,100%),1fr));
      gap: 24px;
      list-style: none;
      margin: 0;
      padding: 0;
    }

    .philosophy-item {
      background: #FFF9E6;
      border-radius: 20px;
      box-shadow: 0 8px 24px rgba(0,0,0,.06);
      padding: 24px 20px 20px;
      text-align: center;
      position: relative;
      overflow: hidden;
      transition: transform .25s ease, box-shadow .25s ease;
    }

    .philosophy-item:hover {
      transform: translateY(-3px);
      box-shadow: 0 14px 30px rgba(0,0,0,.08);
    }

    .philosophy-visual {
      width: 100%;
      max-width: 120px;
      height: 120px;
      margin: 0 auto 16px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .philosophy-visual img {
      max-width: 100%;
      max-height: 100%;
      object-fit: contain;
      display: block;
    }

    .philosophy-body h3 {
      font-size: 18px;
      font-weight: 700;
      color: var(--paint-primary);
      margin: 0 0 8px;
      line-height: 1.4;
    }

    .philosophy-body p {
      font-size: 14px;
      line-height: 1.7;
      color: #4A2C1A;
      margin: 0;
    }

    /* ==============================
       対応エリア
    ============================== */
    .company-area {
      background: #fff;
      padding-top: 0;
      padding-bottom: 0;
    }

    .area-map {
      max-width: 600px;
      margin: 30px auto;
    }

    .area-map__image {
      width: 100%;
      max-width: 400px;
      height: 400px;
      margin: 0 auto;
      display: block;
      object-fit: cover;
      border-radius: 12px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }

    .area-map__caption {
      display: none;
    }

    /* ==============================
       アクセス
    ============================== */
    .company-access {
      background: #FFF9E6;
      padding-top: 0;
      padding-bottom: 0;
    }

    .gmap {
      max-width: 800px;
      margin: 30px auto;
      height: 400px;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }

    .gmap iframe {
      width: 100%;
      height: 100%;
      border: 0;
    }

    /* ==============================
       FAQ
    ============================== */
    .company-faq {
      background: #fff;
      max-width: 900px;
      margin: 0 auto;
      padding-top: 0;
      padding-bottom: 0;
    }

    details {
      background: #FFF9E6;
      margin-bottom: 15px;
      border-radius: 8px;
      overflow: hidden;
    }

    summary {
      padding: 20px;
      cursor: pointer;
      font-weight: 600;
      color: var(--paint-primary);
      list-style: none;
      position: relative;
      padding-right: 40px;
    }

    summary::after {
      content: "▼";
      position: absolute;
      right: 20px;
      transition: transform 0.3s ease;
    }

    details[open] summary::after {
      transform: rotate(180deg);
    }

    details p {
      padding: 0 20px 20px;
      color: #333;
      line-height: 1.7;
    }

    /* ==============================
       フッター
    ============================== */
    .site-footer {
      background: var(--footer-bg);
      color: #E0E0E0;
      padding: 48px 0 24px;
      font-family: inherit;
    }

    .footer-content {
      display: grid;
      grid-template-columns: 1.5fr 1fr;
      gap: 48px;
      margin-bottom: 32px;
    }

    .footer-logo {
      font-weight: bold;
      font-size: 20px;
      margin-bottom: 16px;
      display: flex;
      align-items: center;
      gap: 8px;
      color: #FFF;
    }

    .footer-address {
      line-height: 1.9;
      font-size: 14px;
      color: #E0E0E0;
    }

    .footer-address .footer-tel {
      color: inherit;
      font-weight: 600;
      text-decoration: none;
    }

    .footer-address .footer-tel:hover {
      text-decoration: underline;
    }

    .footer-nav ul {
      list-style: none;
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 12px;
      padding: 0;
      margin: 0;
    }

    .footer-nav a {
      font-size: 14px;
      color: #E0E0E0;
      text-decoration: none;
      transition: color 0.25s ease;
      line-height: 1.6;
      display: inline-block;
    }

    .footer-nav a:hover {
      color: #FFD54F;
    }

    .footer-copyright {
      text-align: center;
      padding-top: 24px;
      border-top: 1px solid #444;
      font-size: 13px;
      color: #BDBDBD;
      line-height: 1.6;
    }

    @media (max-width: 768px) {
      .footer-content {
        grid-template-columns: 1fr;
        gap: 32px;
      }

      .footer-nav ul {
        grid-template-columns: 1fr 1fr;
      }

      .footer-logo {
        font-size: 18px;
      }

      .footer-address {
        font-size: 13px;
        line-height: 1.8;
      }

      .footer-nav a {
        font-size: 13px;
      }

      .footer-copyright {
        font-size: 12px;
      }
    }

    .cat-container{
      margin-right:6px;
      display:flex;
      align-items:flex-end;
    }

   /* なめらか左右スイング */
.cat-image{
  width:86px;
  transform-origin:bottom center;
  animation:catWave 2s ease-in-out infinite;
}
@keyframes catWave{
  0%,100% { transform: rotate(0); }
  50%     { transform: rotate(-6deg); }
}

    .speech-bubble{
      display:flex;
      align-items:center;
      gap:8px;
      padding:8px 12px;
      background:#fffaf0;
      border:2px solid #d4a373;
      border-radius:18px;
      box-shadow:0 6px 16px rgba(0,0,0,.12);
      position:relative;
    }
    .speech-bubble::before,
    .speech-bubble::after{
      content:"";
      position:absolute;
      bottom:20px;
      border:8px solid transparent;
    }
    .speech-bubble::before{
      left:-14px;
      border-right-color:#d4a373;
    }
    .speech-bubble::after{
      left:-12px;
      border-right-color:#fffaf0;
    }

    .btn{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:6px;

      padding:10px 16px;
      border-radius:999px;
      text-decoration:none;
      font-weight:700;
      font-size:14px;

      background:#fffbe7;
      border:2px solid #f4c542;
      color:#333;
      white-space:nowrap;
    }

    .btn-tel{
      font-size:0.9em;
      font-weight:600;
      letter-spacing:0.5px;
    }

    
