/* ===== 全体セクション ===== */
.glass-repair {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  font-family: "Yu Gothic", sans-serif;
  text-align: center;
}

.center {
  text-align: center;
}
/* ===== セクション見出し（個人の方からのご依頼） ===== */
.accordion-title {
  display: inline-block;
  padding: 10px 32px;
  background: #f0f5f2;
  /* border-radius: 30px; */
  font-size: 1.3rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  position: relative;
  /* margin: 4rem auto 3rem; */
  margin-bottom: 0;

  opacity: 0;
  transform: translateX(-40px);
  animation: slideIn 1.2s ease-out forwards;
}

/* 横線 */
.accordion-title::before,
.accordion-title::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 50px;
  height: 1px;
  background: #1f3b2c;
}

.accordion-title::before { left: -65px; }
.accordion-title::after  { right: -65px; }

/* ===== price_section 横並び ===== */
.price_section {
  display: flex;
  gap: 40px;
  margin-bottom: 40px;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
}

.price_section_inner {
  flex: 0 1 45%;
  box-sizing: border-box;
}

/* ===== タイトル ===== */
.service-item_title {
  font-size: 1.3rem;
  margin-bottom: 10px;
  font-weight: bold;
}

/* ===== 画像並び ===== */
.images {
  display: flex;
  /* justify-content: center; */
  gap: 10px;
  flex-wrap: wrap;
  width: 100%;
}

.image-item {
  flex: 0 0 48%;
}

.repair-img {
  width: 100%;
  height: auto;
  /* border-radius: 8px; */
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  transition: transform 0.3s, box-shadow 0.3s;
}

.repair-img:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 16px rgba(0,0,0,0.3);
}

.image-item.single {
  display: flex;
  gap: 10px;
}
/* ===== 説明文 ===== */
.description {
  font-size: 1rem;
  color: #555;
  margin: 15px 0;
  line-height: 1.5;
}

/* ===== レスポンシブ ===== */
@media (max-width: 1024px) {
  .price_section_inner {
    flex: 0 1 100%;
  }
}

@media (max-width: 768px) {
  .price_section {
    flex-direction: column;
    gap: 20px;
  }
}

/* ===== アニメーション ===== */
@keyframes slideIn {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* 横のはみ出し修正 */
@media (max-width: 768px) {
  .accordion-title::before,
  .accordion-title::after {
    display: none;
  }
}


/* タイトルの動き、デザイン */
.price_bl {
  opacity: 0;
  transform: translateX(-40px);
  animation: slideIn 1.2s ease-out forwards;
}

@keyframes slideIn {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.price_bl {
  display: inline-block;
  padding: 10px 28px;
  background: #e3f2fd;
  border-radius: 30px;
  font-size: 1.3rem;
  font-weight: bold;
  letter-spacing: 0.1em;
  position: relative;
}

.price_bl::before,
.price_bl::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 40px;
  height: 1px;
  background: #1f3b2c;
}

.price_bl::before { left: -55px; }
.price_bl::after  { right: -55px; }
