
.pc-only { display: block; }
.sp-only { display: none; }


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



/* ===== HERO ===== */
#products-hero {
  padding: 12rem 4rem 4rem;
  background: #F7F9FB;
  text-align: center;
}

.products-hero__inner {
  max-width: 1100px;
  margin: 0 auto;
}

.products-hero__heading {
  font-size: clamp(20px, 2vw, 28px);
  color: #2F4A6D;
  font-weight: 400;
  letter-spacing: 0.05em;
  margin-top: 0.5rem;
}

.section-label {
    text-align: center;
}

/* ===== 商品一覧 ===== */
#products-list {
  padding: 4rem;
  background: #F7F9FB;
}

.products-list__inner {
  max-width: 1100px;
  margin: 0 auto;
}

.products-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.product-card {
  background: #fff;
  border: 0.5px solid #C7D6E2;
  text-decoration: none;
  display: block;
  transition: transform 0.3s ease;
}

.product-card:hover {
  transform: translateY(-6px);
}

.product-card__img {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
}

.product-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-card__body {
  padding: 1.5rem;
}

.product-card__desc {
  font-size: 12px;
  color: #999999;
  line-height: 1.8;
  margin-bottom: 0.5rem;
}

.product-card__name {
  font-size: 22px;
  color: #444;
  font-weight: 400;
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
}

.product-card__more {
  font-size: 12px;
  color: #adc9d6;
  letter-spacing: 0.1em;
  display: block;
  text-align: right;
}

/* ===== スマホ ===== */
@media (max-width: 768px) {
  #products-hero,
  #products-list {
    padding: 3rem 1.5rem;
  }

  .products-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}



/* ----------------------------------

      商品　ーMAGIC-

---------------------------------- */


#product-page {
  background: #F7F9FB;
  padding: 6rem 0;
}

.product-page__card {
  max-width: 1200px;
  margin: 0 auto;
  background: #fcfcfc;
  box-shadow: 0 2px 16px rgba(0,0,0,0.04);
}


@media (max-width: 768px) {
  #product-page {
    padding: 1.5rem;
  }
}

#product-hero {
  padding: 6rem 4rem 2rem;
}

.product-hero__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  gap: 4rem;
    align-items: center;
}

.product-hero__text {
  flex: 1;
}

.product-hero__name {
  font-size:27px;
  color: #2F4A6D;
  font-weight: 400;
  letter-spacing: 0.05em;
  margin-bottom: 0.25rem;
}

.product-hero__type {
  font-size: 13px;
  color: #6F8FA6;
  margin-bottom: 2rem;
}

.product-hero__catch {
  font-size: 14px;
  color: #444;
  line-height: 2;
  margin-bottom: 1.5rem;
}

.product-hero__desc {
  font-size: 14px;
  color: #444;
  line-height: 2;
  margin-bottom: 2rem;
}

.product-hero__price {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.product-hero__price-row {
  display: flex;
  gap: 1.5rem;
  font-size: 13px;
  color: #6F8FA6;
}

.product-hero__price-label {
  min-width: 4.5em;
}

.product-hero__img {
  width: 45%;
  flex-shrink: 0;
}

.product-hero__img img {
  width: 100%;
  height: auto;
  display: block;
}

/* ===== 特徴 ===== */
#product-features {
  padding: 6rem 4rem;
}

.product-features__inner {
  max-width: 1100px;
  margin: 0 auto;
}

.product-features__label {
  font-size: 13px;
  color: #2F4A6D;
  border-bottom: 0.5px solid #C7D6E2;
  padding-bottom: 0.75rem;
  margin-bottom: 3rem;
  letter-spacing: 0.05em;
}

.feature-item {
  margin-bottom: 3rem;
}

.feature-item__num {
  font-size: 28px;
  color: #D9EBF4;
  font-weight: 300;
  letter-spacing: 0.05em;
  margin-bottom: 0.25rem;
}

.feature-item__title {
  font-size: clamp(20px, 2vw, 28px);
  color: #2F4A6D;
  font-weight: 400;
  letter-spacing: 0.05em;
	margin-top: 0;
  margin-bottom: 0.75rem;
}

.feature-item__desc {
  font-size: 14px;
  color: #444;
  line-height: 2;
}

/* ===== スマホ ===== */
@media (max-width: 768px) {
  #product-hero,
  #product-features {
    padding: 4rem 1.5rem;
  }
  .product-hero__inner {
    flex-direction: column;
    gap: 0;
  }

  .product-hero__img {
    width: 100%;
  }

  .product-hero__name {
  font-size:24px;
  color: #2F4A6D;
  font-weight: 400;
  letter-spacing: 0.05em;
  margin-bottom: 0.25rem;
}
}

/* ===== 商品フッター ===== */
#product-footer {
  padding: 3rem 4rem 6rem;
}

.product-footer__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  gap: 2.5rem;
  justify-content: center;
}


.top-btn {
    padding: 0.85rem 4.5rem;
}


@media (max-width: 768px) {
  #product-footer {
    padding: 2rem 1.5rem 4rem;
  }

  .product-footer__inner {
    flex-direction: column;
    align-items: center;
  }
}

.product-note {
  font-size: 12px;
  color: #6F8FA6;

      padding-bottom: 20px;
    margin-top: -1rem;
}

.product-note a {
  color: #2F4A6D;
  border-bottom: 0.5px solid #2F4A6D;
  text-decoration: none;
}