

/* スマホの時は余白を大きくする（先ほどのJSの設定と同じ120px） */
@media (max-width: 640px) {
  html {
    scroll-padding-top: 70px !important;
  }
}



/* ========== PAGE TITLE ========== */
.section-title-ja {
  margin-bottom: 80px;
}

/*-----------------------------------
    レスポンシブ: PC (max-width: 1500px)
-----------------------------------*/
@media screen and (max-width: 1500px) {
  /* PAGE TITLE - 変更なし */
}

/*-----------------------------------
    レスポンシブ: PC小 (max-width: 1280px)
-----------------------------------*/
@media screen and (max-width: 1280px) {
  /* PAGE TITLE - 変更なし */
}

/*-----------------------------------
    レスポンシブ: タブレット (max-width: 840px)
-----------------------------------*/
@media screen and (max-width: 840px) {
  /* PAGE TITLE - 変更なし */
}

/*-----------------------------------
    レスポンシブ: スマートフォン (max-width: 640px)
-----------------------------------*/
@media screen and (max-width: 640px) {
  .section-title-ja {
    margin-bottom: 40px;
  }
}

/* ========== ACCEPTED ITEMS OVERVIEW ========== */
.accept-overview {
  padding: 100px 0px 120px;
  text-align: center;
  width: 95%;
  margin: 0 auto;
}

.accept-overview .section-title-en,
.accept-overview .section-title-ja {
  color: #1d1d1d;
}

.accept-overview-desc {
  font-family: 'Shippori Mincho B1', serif;
  font-weight: 600;
  font-size: 16px;
  color: #1d1d1d;
  line-height: 1.875;
  letter-spacing: 0.48px;
  margin-bottom: 67px;
}

.accept-items-grid {
  display: flex;
  gap: 40px;
  justify-content: center;
}

.accept-item-card {
  flex: 1;
  aspect-ratio: 1 / 1;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.accept-item-card img {
  width: 90%;
  height: 90%;
  object-fit: contain;
  object-position: center center;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.accept-item-card:hover img {
  transform: scale(1.08);
}

.accept-item-card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.40);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0 50px;
  transition: background 0.4s ease;
}

.accept-item-card:hover .accept-item-card-overlay {
  background: rgba(0, 0, 0, 0.55);
}

.accept-item-card-en {
  font-family: 'Heebo', sans-serif;
  font-weight: 700;
  font-size: 28px;
  color: #fff;
  line-height: 1.47;
  letter-spacing: 2.24px;
  text-transform: uppercase;
  transition: transform 0.4s ease, letter-spacing 0.4s ease;
}

.accept-item-card:hover .accept-item-card-en {
  transform: translateY(-4px);
  letter-spacing: 2px;
}

.accept-item-card-ja {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: #fff;
  margin-top: 4px;
  transition: opacity 0.4s ease 0.05s;
  opacity: 0.85;
}

.accept-item-card:hover .accept-item-card-ja {
  opacity: 1;
}

/*-----------------------------------
    レスポンシブ: PC (max-width: 1500px)
-----------------------------------*/
@media screen and (max-width: 1500px) {
  /* ACCEPTED ITEMS OVERVIEW - 変更なし */
}

/*-----------------------------------
    レスポンシブ: PC小 (max-width: 1280px)
-----------------------------------*/
@media screen and (max-width: 1280px) {
  .accept-overview {
    padding: 80px 0px 60px;
    width: 90%;
    box-sizing: border-box;
  }

  .accept-items-grid {
    flex-wrap: wrap;
    padding: 0;
    gap: 16px;
  }

  .accept-item-card-en {
    font-size: 18px;
  }

  .accept-item-card-overlay {
    padding: 0 20px;
  }
}

/*-----------------------------------
    レスポンシブ: タブレット (max-width: 840px)
-----------------------------------*/
@media screen and (max-width: 840px) {
  /* ACCEPTED ITEMS OVERVIEW - 変更なし */
}

/*-----------------------------------
    レスポンシブ: スマートフォン (max-width: 640px)
-----------------------------------*/
@media screen and (max-width: 640px) {
  .accept-overview {
    padding: 40px 20px 0px;
  }

  .accept-overview-desc {
    font-size: 13px;
    padding: 0;
    margin-top: 24px;
    margin-bottom: 40px;
    line-height: 1.8;
  }

  .accept-items-grid {
    flex-direction: row;
    flex-wrap: wrap;
    padding: 0;
    gap: 12px;
    margin-bottom: 48px;
  }

  .accept-item-card {
    flex: 0 0 calc(50% - 6px); /* 完璧な2列 */
  }

  .accept-item-card-en {
    font-size: 16px;
    letter-spacing: 1px;
  }

  .accept-item-card-ja {
    font-size: 11px;
  }
}

/* ========== CATEGORY SECTION ========== */

.category-title {
  margin-bottom: 20px;
}

.category-title .section-title-en {
  color: #1d1d1d;
}

.category-title .section-title-ja {
  color: #1d1d1d;
  margin-bottom: 0;
}

.category-divider {
  border: none;
  border-top: 1px solid #1d1d1d;
  margin-bottom: 30px;
}

/*-----------------------------------
    レスポンシブ: PC (max-width: 1500px)
-----------------------------------*/
@media screen and (max-width: 1500px) {
  /* CATEGORY SECTION - 変更なし */
}

/*-----------------------------------
    レスポンシブ: PC小 (max-width: 1280px)
-----------------------------------*/
@media screen and (max-width: 1280px) {
  .category-title {
    margin-top: 50px;
  }

  .category {
    padding: 0 32px 0px;
    width: 100%;
    box-sizing: border-box;
  }
}

/*-----------------------------------
    レスポンシブ: タブレット (max-width: 840px)
-----------------------------------*/
@media screen and (max-width: 840px) {
  /* CATEGORY SECTION - 変更なし */
}

/*-----------------------------------
    レスポンシブ: スマートフォン (max-width: 640px)
-----------------------------------*/
@media screen and (max-width: 640px) {
  .category {
    padding: 0 20px 0px;
  }

  .category-title {
    margin-bottom: 7px;
  }

  .category-divider {
    margin-bottom: 25px;
  }
}

/* ========== CATEGORY INTRO ========== */
.category-intro {
  text-align: center;
  margin-bottom: 40px;
  margin-top: 60px;
}

.category-intro-text {
  font-family: 'Shippori Mincho B1', serif;
  font-weight: 600;
  font-size: 16px;
  color: #1d1d1d;
  line-height: 1.75;
  letter-spacing: 0.32px;
  margin-bottom: 24px;
}

.category-intro-checks {
  display: flex;
  gap: 30px;
  justify-content: center;
}

.category-intro-check {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  border: 1px solid #707070;
  background: #fff;
  padding: 20px 24px;
  width: 394px;
  box-sizing: border-box;
}

.category-intro-check img {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  margin-top: 4px;
}

.category-intro-check p {
  font-family: 'Shippori Mincho B1', serif;
  font-weight: 600;
  font-size: 14px;
  color: #1d1d1d;
  line-height: 2;
  letter-spacing: 0.28px;
  text-align: left;
}

/*-----------------------------------
    レスポンシブ: PC (max-width: 1500px)
-----------------------------------*/
@media screen and (max-width: 1500px) {
  /* CATEGORY INTRO - 変更なし */
}

/*-----------------------------------
    レスポンシブ: PC小 (max-width: 1280px)
-----------------------------------*/
@media screen and (max-width: 1280px) {
  .category-intro-checks {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }

  .category-intro-check {
    width: 100%;
    max-width: 500px;
  }
}

/*-----------------------------------
    レスポンシブ: タブレット (max-width: 840px)
-----------------------------------*/
@media screen and (max-width: 840px) {
  /* CATEGORY INTRO - 変更なし */
}

/*-----------------------------------
    レスポンシブ: スマートフォン (max-width: 640px)
-----------------------------------*/
@media screen and (max-width: 640px) {
  .category-intro {
    margin-top: 25px;
    margin-bottom: 10px;
  }

  .category-intro-text {
    font-size: 14px;
  }
  .category-intro-check p {
    line-height: 1.6;
  }

  .category-intro-check {
    padding: 15px;
  }
}

/* ========== ITEMS ROW (2-column) ========== */
.items-row {
  display: flex;
  justify-content: space-between; /* 両端に配置して間を空ける */
  margin-bottom: 60px;
  flex-wrap: wrap; /* 画面が狭くなった時に折り返す設定 */
}

.item-block {
  /* flex: 1; は削除します */
  width: 48%; /* 50%未満にして隙間を作ります（お好みで45%〜48%くらい） */
  max-width: 530px;
}

/*-----------------------------------
    レスポンシブ: PC (max-width: 1500px)
-----------------------------------*/
@media screen and (max-width: 1500px) {
  /* ITEMS ROW - 変更なし */
}

/*-----------------------------------
    レスポンシブ: PC小 (max-width: 1280px)
-----------------------------------*/
@media screen and (max-width: 1280px) {
  .items-row {
    gap: 25px;
    margin-bottom: 25px;
  }

  .item-block {
    max-width: 100%;
  }
}

/*-----------------------------------
    レスポンシブ: タブレット (max-width: 840px)
-----------------------------------*/
@media screen and (max-width: 840px) {
  .items-row {
    flex-direction: column; /* 縦並びに変更 */
    align-items: center;    /* 中央寄せ */
    gap: 40px;              /* 縦に並んだ時のアイテム間の余白 */
  }

  .item-block {
    width: 100%; /* スマホでは横幅いっぱいに広げる */
  }
}

/*-----------------------------------
    レスポンシブ: スマートフォン (max-width: 640px)
-----------------------------------*/
@media screen and (max-width: 640px) {
  .items-row {
    gap: 20px;
    margin-bottom: 20px;
  }
}

/* ========== Item header bar ========== */
.item-header {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #f5f5f5;
  padding: 10px 15px;
  box-sizing: border-box;
  margin-bottom: 30px;
}

.item-header-num {
  font-family: 'Heebo', sans-serif;
  font-weight: 500;
  font-size: 32px;
  color: #1d1d1d;
}

.item-header-name {
  font-family: 'Shippori Mincho B1', serif;
  font-weight: 700;
  font-size: 21px;
  color: #1d1d1d;
  letter-spacing: 0.42px;
}

/*-----------------------------------
    レスポンシブ: PC (max-width: 1500px)
-----------------------------------*/
@media screen and (max-width: 1500px) {
  /* Item header bar - 変更なし */
}

/*-----------------------------------
    レスポンシブ: PC小 (max-width: 1280px)
-----------------------------------*/
@media screen and (max-width: 1280px) {
  .item-header-name {
    font-size: 18px;
  }
}

/*-----------------------------------
    レスポンシブ: タブレット (max-width: 840px)
-----------------------------------*/
@media screen and (max-width: 840px) {
  /* Item header bar - 変更なし */
}

/*-----------------------------------
    レスポンシブ: スマートフォン (max-width: 640px)
-----------------------------------*/
@media screen and (max-width: 640px) {
  .item-header {
    padding: 12px;
    height: auto;
    min-height: 50px;
    margin-bottom: 25px;
  }

  .item-header-name {
    font-size: 16px;
  }

  .item-header-num {
    font-size: 24px;
  }
}

/* ========== Item body & image ========== */
.item-body {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.item-detail {
  width: 100%;
}

.item-image {
  width: 280px;
  height: 272px;
  object-fit: cover;
  display: block;
  margin-bottom: 24px;
}

/*-----------------------------------
    レスポンシブ: PC (max-width: 1500px)
-----------------------------------*/
@media screen and (max-width: 1500px) {
  /* Item body & image - 変更なし */
}

/*-----------------------------------
    レスポンシブ: PC小 (max-width: 1280px)
-----------------------------------*/
@media screen and (max-width: 1280px) {
  .item-image {
    width: 240px;
    height: 233px;
  }
}

/*-----------------------------------
    レスポンシブ: タブレット (max-width: 840px)
-----------------------------------*/
@media screen and (max-width: 840px) {
  /* Item body & image - 変更なし */
}

/*-----------------------------------
    レスポンシブ: スマートフォン (max-width: 640px)
-----------------------------------*/
@media screen and (max-width: 640px) {
  .item-image {
    width: 200px;
    height: 194px;
    margin-bottom: 20px;
  }
}

/* ========== PRICE SECTION ========== */
/* 成功した「Flex + Grid」のコードに統一しました */
.item-price-section {
  display: flex;
  align-items: flex-end;
  border-bottom: 1px solid #1d1d1d;
  margin-bottom: 24px;
}

.item-price-divider {
  display: none;
}

.item-price-label {
  font-family: 'Heebo', sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: #1d1d1d;
  letter-spacing: 0.48px;
  text-transform: uppercase;
  margin-right: auto; /* PRICEを左端に固定 */
  margin-bottom: 3px;
  padding-left: 0.5em;
}

.item-price-row {
  display: flex;
  align-items: baseline;
  margin-left: 24px;
}

.price-type {
  font-family: 'Shippori Mincho B1', serif;
  font-weight: 600;
  font-size: 14px;
  color: #1d1d1d;
  letter-spacing: 0.28px;
  margin-right: 12px;
}

.price-value {
  font-family: 'Heebo', sans-serif;
  font-weight: 500;
  font-size: 24px;
  color: #1d1d1d;
  margin-right: 4px;
}

.price-tax {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 500;
  font-size: 12px;
  color: #1d1d1d;
  letter-spacing: 0.24px;
}

/*-----------------------------------
    レスポンシブ: PC (max-width: 1500px)
-----------------------------------*/
@media screen and (max-width: 1500px) {
  /* PRICE SECTION - 変更なし */
}

/*-----------------------------------
    レスポンシブ: PC小 (max-width: 1280px)
-----------------------------------*/
@media screen and (max-width: 1280px) {
  /* --- PRICEの縦並び切替（ここがポイント！） --- */
  .item-price-section {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0px 0;
    margin-bottom: 0px;
  }

  .item-price-label {
    grid-column: 1;
    grid-row: 1 / -1; /* 一番下に寄り添う魔法のコード */
    align-self: end;
    margin-right: 0;
    padding-left: 5px;
  }

  .item-price-row {
    grid-column: 2;
    justify-content: flex-end;
    margin-left: 0;
  }
}

/*-----------------------------------
    レスポンシブ: タブレット (max-width: 840px)
-----------------------------------*/
@media screen and (max-width: 840px) {
  /* PRICE SECTION - 変更なし */
}

/*-----------------------------------
    レスポンシブ: スマートフォン (max-width: 640px)
-----------------------------------*/
@media screen and (max-width: 640px) {
  /* スマホ用のPRICE文字サイズ微調整 */
  .price-type {
    font-size: 13px;
    margin-right: 8px;
  }
  .price-value {
    font-size: 20px;
  }
  .price-tax {
    font-size: 10px;
  }
}

/* ========== CHECKPOINT ========== */
.item-checkpoint {
  margin-top: 16px;
  padding-left: 1em;
}

.item-checkpoint-label {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 10px;
}

.item-checkpoint-label img {
  width: 15px;
  height: 15px;
}

.item-checkpoint-label span {
  font-family: 'Heebo', sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: #1d1d1d;
  letter-spacing: 0.48px;
  text-transform: uppercase;
}

.checkpoint-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 0.7em 0 0.7em 0.7em;
  margin-left: 0.35em;
  border-left: 1px solid #1D1D1D;
}

.checkpoint-item {
  display: flex;
  gap: 20px;
  align-items: center;
}

.checkpoint-image {
  width: 122px;
  height: 122px;
  object-fit: cover;
  flex-shrink: 0;
}

.checkpoint-text {
  display: flex;
  align-items: flex-start;
  gap: 7px;
  flex: 1;
}

.checkpoint-text img {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  margin-top: 6px;
}

.checkpoint-text p {
  font-family: 'Shippori Mincho B1', serif;
  font-weight: 600;
  font-size: 14px;
  color: #1d1d1d;
  line-height: 2;
  letter-spacing: 0.28px;
  margin: 0;
}

/*-----------------------------------
    レスポンシブ: PC (max-width: 1500px)
-----------------------------------*/
@media screen and (max-width: 1500px) {
  /* CHECKPOINT - 変更なし */
}

/*-----------------------------------
    レスポンシブ: PC小 (max-width: 1280px)
-----------------------------------*/
@media screen and (max-width: 1280px) {
  /* CHECKPOINT - 変更なし */
}

/*-----------------------------------
    レスポンシブ: タブレット (max-width: 840px)
-----------------------------------*/
@media screen and (max-width: 840px) {
  /* CHECKPOINT - 変更なし */
}

/*-----------------------------------
    レスポンシブ: スマートフォン (max-width: 640px)
-----------------------------------*/
@media screen and (max-width: 640px) {
  .item-checkpoint {
    padding-left: 0;
    margin-top: 20px;
  }

  .checkpoint-item {
    flex-direction: column;
    gap: 12px;
  }

  .checkpoint-image {
    width: 100%;
    max-width: 150px;
    height: auto;
    aspect-ratio: 1 / 1;
    margin: 0 auto;
  }

  .checkpoint-list {
    margin-left: 0;
    padding-left: 0;
    border-left: none; /* スマホでは左の線を消す */
  }
}

/* ========== OTHERS ========== */
.others-section {
  background: #1d1d1d;
  max-width: 1200px;
  margin: 100px auto 100px;
  padding: 30px 35px 30px;
}

.others-section .section-title-en {
  color: #fff;
}

.others-section .section-title-ja {
  color: #fff;
  margin-bottom: 24px;
}

.others-text {
  font-family: 'Shippori Mincho B1', serif;
  font-weight: 600;
  font-size: 14px;
  color: #fff;
  line-height: 2;
}

/* ========== OTHERS LIST ========== */
.others-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.others-list li {
  position: relative;
  padding-left: 1.2em;
}

.others-list li:last-child {
  margin-bottom: 0;
}

.others-list li::before {
  content: '・';
  position: absolute;
  left: 0;
  top: 0;
}

/*-----------------------------------
    レスポンシブ: PC (max-width: 1500px)
-----------------------------------*/
@media screen and (max-width: 1500px) {
  /* OTHERS - 変更なし */
}

/*-----------------------------------
    レスポンシブ: PC小 (max-width: 1280px)
-----------------------------------*/
@media screen and (max-width: 1280px) {
  .others-section {
    margin: 60px 32px 80px;
    width: auto;
  }
}

/*-----------------------------------
    レスポンシブ: タブレット (max-width: 840px)
-----------------------------------*/
@media screen and (max-width: 840px) {
  /* OTHERS - 変更なし */
}

/*-----------------------------------
    レスポンシブ: スマートフォン (max-width: 640px)
-----------------------------------*/
@media screen and (max-width: 640px) {
  .others-section {
    margin: 40px 20px 50px;
    padding: 24px 20px 32px;
  }

  .others-text {
    font-size: 13px;
    line-height: 1.8;
  }

  .others-list li {
    margin-bottom: 12px;
  }
}
