/* セクション全体 */
.content-section{
  margin-top: 56px;
}
/* セクション見出し */
.section-title{
  font-size: 1.6rem;
  font-weight: 700;
  color: #c00;
  margin-bottom: 24px;
}
/* 画像＋テキストの横並び */
.intro-block{
  display: flex;
  gap: 28px;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
/* 画像 */
.intro-img{
  width: 30%;
  max-width: 270px;
  border-radius: 8px;
  object-fit: cover;
}
/* テキスト側 */
.intro-text{
  flex: 1;
  min-width: 280px;
}
.intro-text p{
  line-height: 1.8;
  color: #444;
}
.sub-title{
  font-size: 1.2rem;
  font-weight: 600;
  display: flex;
  align-items: center; /* ← これが重要！ */
  gap: 8px;
}
.sub-title .dot{
  width: 10px;
  height: 10px;
  background: #c00;
  border-radius: 50%;
  display: inline-block;
  flex-shrink: 0; /* ← つぶれ防止 */
}
.hero-text{
  color: #555;
}

/* 製造規格 */
.product-block{
  margin-top: 32px;
}
.product-title{
  font-size: 1.1rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}
.product-title .dot-small{
  width: 6px;
  height: 6px;
  background: #c00;
  border-radius: 50%;
  display: inline-block;
  flex-shrink: 0;
}
.product-desc{
  margin: -10px 0 15px 20px;
  font-size: 0.95rem;
  color: #555;
  line-height: 1.6;
}
.product-content {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  flex-wrap: wrap;
}
.product-img{
  width: 30%;
  max-width: 260px;
  border-radius: 6px;
  object-fit: cover;
}
/* 規格表 */
.spec-table{
  border-collapse: collapse;
  width: 100%;
  max-width: 600px;
}
.spec-table th{
  background: #f7f7f7;
  padding: 8px 10px;
  padding-left: 16px;
  width: 250px;
  font-weight: 600;
  vertical-align: middle;
  text-align: left;
}
.spec-table td{
  padding: 8px 10px;
  color: #333;
  line-height: 1.6;
}
.spec-table tr + tr{
  border-top: 1px dashed #ddd;
}
/* 注意書き */
.contact-note{
  margin-top: 30px;
  padding: 12px 16px;
  background: #f7f7f7;
  font-size: 0.95rem;
  color: #444;
}
.contact-note a{
  color: #c00;
  text-decoration: none;
  font-weight: 600;
}
.contact-note a:hover {
  opacity: 0.8;
}
/* ギフト構成図 */
.section-diagram{
  margin-top: 40px;
  text-align: center;
}
.section-diagram img{
  width: 75%;
  max-width: 960px;
  height: auto;
  display: block;
  margin: 0 auto;
  border-radius: 8px;
}
.pc-br {
  display: inline;
}

@media (max-width: 768px) {
  .pc-br {
    display: none;
  }
}

/* スマホ対応 */
@media (max-width: 768px) {
  .intro-block {
    flex-direction: column;
    align-items: flex-start;
  }

  .intro-img{
    width: 70%;
    max-width: 80%;
    margin: 0 auto; /* ← これで中央寄せになる */
    display: block; /* 念のため */
  }
.content-section{
  margin-top: 20px;
  }
.section-title{
  font-size: 22px;
  }
  body {
    font-size: 17px;
  }
.sub-title{
    font-size: 18px;
    align-items: flex-start;
    line-height: 1.7; 
  }
  .sub-title .dot {
    margin-top: 8px; /* ← 丸を1行目の中央に寄せる */
  }
  .dept-overview p,
  .dept-overview li {
    line-height: 1.7; /* ← スマホで読みやすい黄金比 */
  }
 .spec-table {
    display: block;
    width: 100%;
    background: #fafafa; /* ← ほんのりグレーで箱感 */
    padding: 16px;
    border-radius: 8px;
  }

  .spec-table tbody,
  .spec-table tr,
  .spec-table th,
  .spec-table td {
    display: block;
    width: 100%;
  }

  .spec-table tr {
    margin-bottom: 18px;
    border-top: none;
  }

  .spec-table th {
    background: none;
    padding: 8px 0 4px;
    font-size: 1rem;
    font-weight: 700;
    color: #c00; /* 見出しは赤で統一感 */
  }

  .spec-table td {
    padding: 0 0 10px;
    font-size: 0.95rem;
    line-height: 1.7;
    color: #444;
  }

  .spec-table tr:last-child {
    margin-bottom: 0;
  }
.product-img{
  width: 70%;
  }
.contact-note{
  background: #FFFFFF;
  font-size: 15px;
  color: #444;
  margin-bottom: 50px;
  }
.section-diagram{
  margin-bottom: 55px;
　}
.section-diagram img{
  width: 90%;
　}
}
