@charset "utf-8";

 /* リセット＆ベース */
    body {
      margin: 0;
      padding: 0;
      font-family: sans-serif;
      line-height: 1.5;
    }
    a {
      text-decoration: none;
      color: #000;
    }
    img {
      max-width: 100%;
      height: auto;
      display: block;
    }
    .container {
      width: 90%;
      max-width: 800px;
      margin: 0 auto;
    }
/* 本文の通常リンク */
.container a {
  color: #007bff;   
  text-decoration: underline;
}

/* 触ったとき */
.container a:active,
.container a:visited {
  color: #0056b3;   /* 少し濃い青に */
}
   /* ==========================
   ヘッダー（SPハンバーガー）
========================== */
header {
  background: #007bff;
  border-bottom: 1px solid #ddd;
  position: sticky;
  top: 0;
  z-index: 999;
 margin-bottom: 16px;
}
	  
	  .header-title {
  font-size: 14px;
  color: #fff; 
  margin-top: 0px;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 12px;
}

.header-logo img {
  max-width: 95px;   /* 最大幅を設定 */
  width: auto;        /* 幅は自動、比率を維持 */
  height: auto;
  display: block;
}
	  
	  /* 画面が狭いときはさらに小さく */
@media (max-width: 480px) {
  .header-logo img {
    max-width: 100px;
  }
}

/* ハンバーガーアイコン */
.hamburger {
  width: 30px;
  height: 22px;
  position: relative;
  cursor: pointer;
}

.hamburger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 3px;
  background: #333;
  border-radius: 3px;
  transition: 0.3s;
}

.hamburger span:nth-child(1) { top: 0; }
.hamburger span:nth-child(2) { top: 9px; }
.hamburger span:nth-child(3) { top: 18px; }

/* ハンバーガー開いた時のアニメ */
.hamburger.active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

/* メニュー全体 */
.global-menu {
  display: none;
  background: #fff;
  border-top: 1px solid #ddd;
}

.global-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.global-menu li {
  border-bottom: 1px solid #eee;
}

.global-menu a {
  display: block;
  padding: 14px;
  color: #333;
  font-size: 16px;
}


    /* コンテンツ */
    .karei-title {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 15px;
      font-weight: bold;
      padding: 8px 0;
      border-bottom: 1px solid #000;
      width: 100%;
      margin-bottom: 16px;
    }
    .karei-title .kakko {
      width: 13px;
      height: 20px;
      background: #ffd500;
      display: inline-block;
    }

    .product_list {
      list-style: none;
      padding: 0;
      margin: 0 0 24px 0;
    }
    .product_list .full {
      display: flex;
      flex-direction: column;
      gap: 12px;
    }
    .left_text, .right_img {
      width: 100%;
    }
    .text_size_l a {
      font-size: 1.2em;
    }

    /* フッター */
    footer {
      background: #f5f5f5;
      padding: 20px 0;
      margin-top: 40px;
    }
    footer .container {
      display: flex;
      flex-direction: column;
      gap: 10px;
    }
    footer nav ul {
      list-style: none;
      padding: 0;
      margin: 0;
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
    }
    footer nav a {
      color: #555;
      font-size: 14px;
    }

    /* スマホ用メディアクエリ */
    @media (max-width: 600px) {
      .karei-title {
        font-size: 15px;
      }
      .text_size_l a {
        font-size: 1.15em;
      }
      body {
        font-size: 15px;
      }
      header nav ul, footer nav ul {
        flex-direction: column;
      }
    }