@charset "UTF-8";
/* subpage-main
-------------------------------------*/
.top_main_img_area-jisseki {
    background: url(../img/common/bg02.webp) no-repeat center / cover;
    height: clamp(100px, 36vw, 240px);
    display: grid;
    place-items: center;
}
.sub_title_jisseki {
    font-size: clamp(16px, 9vw, 36px);
    color: #333;
    letter-spacing: .2em;
    text-shadow: 2px 3px 3px rgb(254 254 254 / 76%);
}

@media (max-width: 768px) {

}

/* =========================
 修理実績ナビ
========================= */

.jisseki-nav {
    display: flex;
    gap: 12px;
    margin-bottom: 30px;
    flex-wrap: wrap;
    justify-content: space-between;
}

.jisseki-nav a {
  padding: 10px 18px;
  border: 1px solid #10833b;
  text-decoration: none;
  color: #10833b;
  font-size: 14px;
  background: #fff;
  width: 24%;
  text-align: center;
}

.jisseki-nav a:hover {
  background: #f5f5f5;
}

/* 今いるページ */
.jisseki-nav a.is-current {
  background: #10833b;
  color: #fff;
  border-color: #10833b;
}
@media (max-width: 768px) {
.jisseki-nav {
    gap: 5px;
}
.jisseki-nav a {
    width: auto;
    padding: 3% 4%;
}
}

/* =========================
 修理実績
========================= */

.jisseki_comment {
    margin: 0 auto 1.5em;
    text-align: center;
}
@media (max-width: 768px) {
.jisseki_comment {
    text-align: left;
}
}
/* =========================
 カード全体
========================= */
.jisseki_cards {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
/**/
/* 各カード */
.jisseki_card {
  display: flex;
  gap: 24px;
  border: 1px solid #ddd;
  background: #fff;
  padding: 20px;
  flex-wrap: wrap; /* PC時は横並び固定 */
  align-items: flex-start;
}

/* ① 画像 */
.jisseki_images {
    display: flex;
    flex-direction: row;
    gap: 10px;
    width: 48%;
}
.jisseki_images img {
  width: 50%; /* 画像2枚なら50%、1枚なら100%は後で調整可能 */
  max-height: 220px;
    object-fit: contain;
}

.jisseki_text {
    width: 48%;
}
.jisseki_text {
    display: flex;
    justify-content: space-around;
    gap: 2em;
    font-size: 15px;
}

/* ④ 修理内容 */
.jisseki_repair {
  width: 50%; /* PC時 */
  list-style: disc;
  padding-left: 20px;
}
.jisseki_model {
    color: #333;
    font-size: 15px;
    padding-bottom: 10px;
}
.jisseki_model strong {
    font-weight: 600;
    color: #10833b;
    line-height: 1;
    display: block;
    font-size: 16px;
}

/*
-------掛け時計だけ2カラム　----
*/
.jisseki_cards.is-two-column {
  flex-direction: row;
  flex-wrap: wrap;
}
/* カード幅 */
.jisseki_cards.is-two-column .jisseki_card {
  flex: 0 0 calc(50% - 12px);
  flex-direction: column; 
}
/* 2カラム対象ページだけ、中身の幅指定を解除 */
.jisseki_cards.is-two-column .jisseki_images,
.jisseki_cards.is-two-column .jisseki_text {
  width: 100%;
}
@media (max-width: 768px) {
  .jisseki_cards.is-two-column {
    flex-direction: column;
  }

  .jisseki_cards.is-two-column .jisseki_card {
    flex: 0 0 100%;
  }
}
/* =========================
 SP（768px以下）
========================= */
@media (max-width: 768px) {

  .jisseki_card {
    flex-wrap: wrap;
    gap: 12px;
  }
  
  /* 画像は横幅100% */
  .jisseki_images {
    width: 100%;
    flex-direction: row; /* 表裏があれば横並び */
  }
  .jisseki_images img {
    width: 50%; /* 画像2枚なら50%、1枚なら100% */
    max-height: 150px;
  }
  .jisseki_images img:first-child:only-child {
    width: 100%;
  }

 .jisseki_info_wrapper {
    width: 50%;
  }
  .jisseki_text {
    width: 100%;
}
  .jisseki_repair {
    width: 50%;
  }
}


.watch-ref::before {
  content: "Ref: ";
  font-weight: 600;
}

.watch-cal::before {
  content: "Cal: ";
  font-weight: 600;
}





/* ページ送り全体 */
.pagination {
  margin-top: 48px;
  display: flex;
  justify-content: center;
}

/* 数字・前へ・次へ をまとめる */
.pagination .nav-links {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

/* 各ボタン共通 */
.pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 12px;
  border: 1px solid #ddd;
  background: #fff;
  color: #333;
  text-decoration: none;
  font-size: 14px;
  border-radius: 4px;
  transition: all 0.2s ease;
}

/* hover */
.pagination .page-numbers:hover {
  background: #f5f5f5;
}

/* 現在ページ */
.pagination .page-numbers.current {
  background: #10833b;
  color: #fff;
  border-color: #10833b;
  pointer-events: none;
}

/* 前へ・次へ */
.pagination .prev,
.pagination .next {
  font-weight: 500;
}

/* スマホ調整 */
@media (max-width: 768px) {
  .pagination {
    margin-top: 32px;
  }

  .pagination .page-numbers {
    min-width: 36px;
    height: 36px;
    font-size: 13px;
  }
}






