/* ===== Page Hero ===== */
.page-hero__overlay {
  background-image: url('http://built.sincor.jp/wp-content/uploads/2026/06/price_mv.png');
  /* ← ここに背景画像のURLを入れる */
}


/* ===== Case Study Section ===== */
.case-study {
  padding: 0 0 100px;
  background: #fff;
}

/* ヘッダーバー */
.case-study__header {
  background: linear-gradient(to right, #1a4a8a, #3a80c8);
  margin-bottom: 40px;
}

.case-study__header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 52px;
}

.case-study__title {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin: 0;
}

.case-study__title-ja {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.05em;
}

.case-study__title-en {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.15em;
}

.case-study__header-circle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #5aabf0;
  flex-shrink: 0;
}

/* インナー */
.case-study__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

/* 2カラムグリッド */
.case-study__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

/* カード */
.case-study__card {
  background: linear-gradient(225deg, rgb(184 234 250 / 30%) 30%, rgba(7, 8, 65, 0.1) 100%);
  border-radius: 8px;
  overflow: hidden;
  height: 100%;
}

/* カードヘッド */
.case-study__card-head {
  /* display: flex; */
  align-items: center;
  justify-content: space-between;
  padding: 24px 24px 20px;
  /* gap: 16px; */
  position: relative;
}

.case-study__card-head-text {
  height: 100%;
  width: 100%;
  background: var(--color-white);
  padding: 10px 0 15px 15px;
  border-radius: 50px;
  margin-top: 15px;
}

.case-study__card-title {
  font-size: 24px;
  font-weight: 700;
  color: var(--color-primary);
  margin: 0 0 6px;
}

.case-study__card-years {
  font-size: 16px;
  color: var(--color-text);
  margin: 0;
}

/* アバター画像 */
.case-study__avatar {
  width: 154px;
  height: 154px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  background: #b0c8e8;
  position: absolute;
  top: 10px;
  right: 13px;
}

.case-study__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* カードボディ */
.case-study__card-body {
  /* background: #fff; */
  margin: 0 16px 16px;
  border-radius: 6px;
  padding: 20px 20px 8px;
}

/* ブロック */
.case-study__block {
  margin-bottom: 16px;
}

.case-study__block-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-primary);
  margin: 0 0 4px;
}

.case-study__block-text {
  font-size: 16px;
  color: var(--color-text);
  line-height: 1.8;
  margin: 0;
}

/* レスポンシブ */
@media (max-width: 768px) {
  .case-study .section-header {
    margin-top: 76px;
  }

  .case-study__inner {
    padding: 0 20px;
  }

  .case-study__grid {
    grid-template-columns: 1fr;
  }
}

/* ===== Price Section ===== */
.price {
  background: #fff;
}

/* メインエリア */
.price__main {
  position: relative;
  padding: 60px 0 60px;
  background: #dce8f5;
  overflow: hidden;
}

/* 背景画像（六角形パターンなど） */
.price__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.price__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left center;
  opacity: 0.2;
  display: block;
}

/* 背景マスク */
.price__bg-mask {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right,
      rgba(220, 232, 245, 0.6) 0%,
      rgba(220, 232, 245, 0.2) 50%,
      rgba(220, 232, 245, 0.0) 100%);
  z-index: 1;
}

/* インナー */
.price__inner {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  gap: 60px;
  align-items: center;
}

/* 左テキスト */
.price__left {
  flex: 1;
}

.price__heading {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--color-text);
  line-height: 1.7;
  margin: 0 0 20px;
}

.price__desc {
  font-size: 0.85rem;
  color: var(--color-text);
  line-height: 1.9;
  margin: 0 0 20px;
}

.price__divider {
  border: none;
  border-top: 1px solid #aac0d8;
  margin: 0 0 16px;
}

.price__note {
  font-size: 16px;
  color: var(--color-text);
  line-height: 1.9;
  margin: 0;

  padding-bottom: 1em;
  border-bottom: 1px solid;
}

/* 右：料金カード */
.price__right {
  /* width: 420px; */
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.price__card {
  background: linear-gradient(to right, #1a4a8a, #3a80c8);
  border-radius: 6px;
  padding: 18px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.price__card-label {
  font-size: 0.9rem;
  color: #fff;
  margin: 0;
  white-space: nowrap;
}

.price__card-amount {
  font-size: 0.9rem;
  color: #fff;
  margin: 0;
  white-space: nowrap;
}

.price__card-num {
  font-size: 1.8rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.02em;
}

/* 下：フルワイド写真 */
.price__photo {
  position: relative;
  width: 100%;
  height: 320px;
  overflow: hidden;
}

.price__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

/* 写真マスク（左下の白い丸） */
.price__photo-mask {
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 320px;
  height: 320px;
  background: #fff;
  border-radius: 50%;
  z-index: 1;
}

.price__footnote {
  grid-column: 1;
}

.price__left {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 100px 100px 100px;
  margin-bottom: 150px;
  gap: 50px;
}

.price__tagline {
  font-size: 34px;
}

.price__plans {
  gap: 30px;
}

@media screen and (min-width: 769px) and (max-width: 1130px) {
  .price-plan * {
    font-size: 1.8vw;
  }
}

/* レスポンシブ */
@media (max-width: 768px) {
  .price__tagline {
    font-size: 32px;
  }

  .price__left {
    display: flex;
    margin-bottom: 40px;
    gap: 0;
  }

  .price__top,
  .price__left>div {
    margin-bottom: 20px;
  }

  .price__inner {
    padding: 0;
    flex-direction: column;
    gap: 40px;
  }

  .price__right {
    width: 100%;
  }

  .price__photo {
    height: 220px;
  }

  .case-study__avatar {
    width: 90px;
    height: 90px;
    top: 38px;
    right: 14px;
  }

  .case-study__card-title {
    font-size: 22px;
  }
}