@charset "utf-8";
/* CSS Document */
body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
}

/* ==== ファーストビュー === */
.fv {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: clamp(350px, 50vw, 700px);
  background: #000;
}
.fv__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  z-index: 0;
  pointer-events: none;
  will-change: opacity;
}
.fv__slide.is-active {
  opacity: 1;
  z-index: 1;
  pointer-events: auto;
}
.fv__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* prefers-reduced-motion対応（任意） */
@media (prefers-reduced-motion: reduce) {
  .fv__slide {
    transition: none !important;
    animation: none !important;
    opacity: 1 !important;
    pointer-events: auto;
  }
}


.logo{
    width: 14%;
    margin-top: 7rem;
}
.geometric-shape {
    position: absolute;
    background: rgba(0,0,0,0.05);
    transform: skew(-15deg);
}

.image-wrap {
    position: relative;
    overflow: hidden; /* はみ出し防止 */
}

.image-wrap img {
    position: absolute;
    top: 50%;
    left: 50%;
    height: 100%;
    width: 100%;
    transform: translate(-50%, -50%);
    object-fit: cover; /* 縦横比を維持してトリミング */
}

.section-padding {
        padding: 100px 0;
    }
.service-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}
.btn-primary {
    background: #000;
    color: white;
    padding: 12px 32px;
    border: none;
    transition: all 0.3s ease;
}
.btn-primary:hover {
    background: #333;
    transform: translateY(-2px);
}

.price-section {
  max-width: 900px;
  margin: 60px auto;
  color: #4d4d4d;
  font-size: 14px;
  line-height: 1.7;
}

/* ===== カテゴリ全体 ===== */
.price-block {
  margin-bottom: 20px;
  background-color: #f7f1f3;
  border-collapse: collapse;
}

/* ===== カテゴリ見出し ===== */
.category {
  background-color: #f0e4e8;
  color: #000;
  font-weight: bold;
  font-size: 15px;
  text-align: center;
  letter-spacing: 1px;
  padding: 12px 10px;
      font-family: "Hiragino Sans", "Noto Sans JP", "Yu Gothic", sans-serif;
}

/* ===== 各項目 ===== */
.price-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #f7f1f3;
  border-bottom: 2px solid #fff;
  padding: 14px 16px;
  margin: 0;
  flex-wrap: wrap;
}

/* 概要 */
.price-item dt {
    flex-basis: 30%;
  font-weight: 600;
  padding-right: 8px;
}

/* 価格 */
.price-item .price {
    flex-basis: 20%;
  text-align: center;
  font-size: 22px;
  font-weight: 900;
  color: #8c4a60;
  letter-spacing: 1.5px;
}

/* 備考 */
.price-item .remarks {
    flex-basis: 40%;
  font-size: 80%;
  color: #4d4d4d;
  margin-top: 6px;
  line-height: 1.6;
}

/* 注意書き */
.note {
  font-size: 70%;
  color: #666;
  margin: -10px 0 24px;
  line-height: 1.5;
}

.note a {
  color: #b25b74;
  text-decoration: underline;
}

/* ===== スマホ対応 ===== */
@media screen and (max-width: 640px) {
  .price-item {
    flex-direction: column;
    padding: 12px;
      align-items: flex-start;
  }

  .price-item dt {
    flex: 1 1 100%;
    margin-bottom: 4px;
  }

  .price-item .price {
    text-align: left;
    margin-bottom: 6px;
    font-size: 20px;
  }

  .category {
    text-align: left;
    padding: 10px 12px;
  }
}



@media (max-width: 768px) {
    .logo{
    width: 16%;
    margin-top: 0rem;
}
    .section-padding {
        padding: 60px 0;
    }
}

