@charset "UTF-8";

/* ============================
   サーベイページ専用スタイル
   ============================ */
.survey-sup {
  font-size: 8px;
}

.survey-issue-section .container,
.survey-model-section .container,
.survey-serivice-section .container {
  width: 1280px;
  padding: 0 80px;
}

.survey-section .img-block {
  margin-right: 60px;
}

@media screen and (max-width: 1280px) {

  .survey-issue-section .container,
  .survey-model-section .container,
  .survey-serivice-section .container {
    width: 100%;
    padding: 40px;
  }

  .survey-section {
    padding: 24px 0px;
  }

  .survey-section .img-block {
    margin-right: 0px;
  }
}

/* お悩みセクション */
.survey-issue-section {
  background-image: url('../images/survey/bg-survey-issue.png');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: bottom;
  padding-top: 64px;
  position: relative;
}

.survey-issue-section .base-section-title-c {
  margin-bottom: 48px;
}

.survey-issue-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.issue-card {
  background: #fff;
  height: 100%;
  text-align: center;
  position: relative;
}

/* 左側2つのカード（1番目と2番目）に右向き吹き出し */
.survey-issue-list li:nth-child(1) .issue-card::after,
.survey-issue-list li:nth-child(2) .issue-card::after {
  content: "";
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
  width: 54px;
  height: 54px;
  background-image: url('../images/survey/icn-bubble_right.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

/* 右側2つのカード（3番目と4番目）に左向き吹き出し */
.survey-issue-list li:nth-child(3) .issue-card::after,
.survey-issue-list li:nth-child(4) .issue-card::after {
  content: "";
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
  width: 54px;
  height: 54px;
  background-image: url('../images/survey/icn-bubble_left.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.issue-number {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  display: inline-block;
  background: linear-gradient(101.73deg, #2E483E 12.85%, #2C7056 115.25%);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  padding: 8px;
  border-radius: 4px;
  letter-spacing: 1.02px;
}

.issue-title {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.6;
  color: #333;
  text-align: center;
  padding: 28px 24px 16px 24px;
  background-color: #F0EDE64D;
}

.issue-detail {
  list-style: none;
  padding: 16px 24px 24px 24px;
  margin: 0;
  text-align: left;
  width: 100%;
}

.issue-detail li {
  font-size: 14px;
  line-height: 1.7;
  color: #666;
  padding-left: 16px;
  position: relative;
}

.issue-detail li:not(:first-child) {
  margin-top: 8px;
}

.issue-detail li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #C8B482;
  font-size: 16px;
}

.issue-detail li:last-child {
  margin-bottom: 0;
}

/* コンサルタントイラスト */
.issue-consultant {
  margin-top: 36px;
  text-align: center;
}

.issue-consultant img {
  display: inline-block;
  max-width: 154px;
  height: auto;
  margin-top: -20px;
}

.solution-title {
  font-family: "Noto Serif JP", serif;
  font-size: 28px;
  font-weight: 600;
  line-height: 1.6;
  color: #2E483E;
  margin-bottom: 32px;
  text-align: center;
}

/* PMCモデルセクション */
.survey-model-section {
  background: inherit;
}

.survey-model-section .container {
  background: #fff;
}

.survey-model-section .survey-base-section {
  padding: 64px 0px;
}

.survey-base-section h4,
.survey-serivice-section h4 {
  font-family: inherit;
  text-align: center;
}

.survey-base-section h4 span {
  border-bottom: 1px solid #C8B482;
  display: inline-block;
}

.survey-base-section h4 small {
  font-size: 10px;
  vertical-align: middle;
}

.survey-base-section h4 sup {
  vertical-align: baseline;
}

.pmc-model-section {
  display: grid;
  grid-template-columns: 43.5% 1fr;
  gap: 64px;
  align-items: center;
  margin-top: 40px;
}

.pmc-circle {
  margin-inline: auto;
  max-width: 480px;
}

.pmc-circle img {
  max-width: 100%;
  height: auto;
}

.pmc-description {
  padding: 32px 40px;
  background-color: #FBFAF7;
}

.pmc-title {
  font-size: 24px;
  font-weight: 700;
  color: #2E483E;
  margin: 0 0 24px 0;
  line-height: 1.6;
}

.pmc-content {
  font-size: 15px;
  line-height: 1.6;
  color: #333;
}

.pmc-content p {
  margin-bottom: 8px;
}

.pmc-content p:last-child {
  margin-bottom: 0;
}

.pmc-content .bold {
  font-weight: 700;
}

.pmc-item-list {
  list-style: none;
  margin-bottom: 16px;
  padding: 0;
}

.pmc-item-list li {
  position: relative;
  padding-left: 16px;
  line-height: 1.6;
  font-size: 15px;
  color: #333;
}

.pmc-item-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #C8B482;
}

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

/* ハイライト */
.highlight {
  color: #C8B482;
}

/* 下線 */
.u-border {
  border-bottom: 2px solid #C8B482;
  padding-bottom: 4px;
}

.survey-serivice-section {
  margin-bottom: 80px;
}

.survey-serivice-section .container {
  background: #fff;
}

.survey-serivice-inner {
  padding: 64px 0px;
}

/* サーベイカードリスト */
.survey-card-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.survey-card-list>li {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 4;
  gap: 16px;
}

.survey-card {
  background: #fff;
  padding: 0;
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 4;
  gap: 16px;
}

.card-image {
  width: 100%;
}

.card-image img {
  width: 100%;
  height: auto;
  display: block;
}

.card-title {
  font-size: 18px;
  font-weight: 700;
  color: #2E483E;
  text-align: center;
  line-height: 1.6;
}

.card-description {
  list-style: none;
}

.card-description li {
  line-height: 1.8;
  color: #666;
  margin-bottom: 8px;
  position: relative;
  padding-left: 16px;
}

.card-description li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #C8B482;
}

.card-description li:last-child {
  margin-bottom: 0;
}

.card-button {
  text-align: center;
}

.card-button .btn-primary {
  display: block;
  padding: 16px 32px;
  background: linear-gradient(90deg, #2E483E 0%, #2C7056 100%);
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 700;
  position: relative;
  transition: all 0.3s;
}

.card-button .btn-primary:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 4px;
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.1));
  opacity: 0;
  transition: 0.3s;
}

.card-button .btn-primary:hover:before {
  opacity: 1;
}

.card-button .btn-primary:hover {
  box-shadow: none;
}


/* ============================
   レスポンシブ: タブレット
   ============================ */
@media screen and (max-width: 1024px) {
  .survey-issue-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 36px;
  }

  .pmc-model-section {
    gap: 40px;
  }

  .survey-card-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }

  /* スマホ版で吹き出し表示なし */
  .survey-issue-list li:nth-child(1) .issue-card::after,
  .survey-issue-list li:nth-child(2) .issue-card::after,
  .survey-issue-list li:nth-child(3) .issue-card::after,
  .survey-issue-list li:nth-child(4) .issue-card::after {
    display: none;
  }
}

/* ============================
   レスポンシブ: スマートフォン
   ============================ */
@media screen and (max-width: 768px) {
  .survey-sup {
    font-size: 6px;
  }

  .survey .container {
    padding: 0 24px;
  }

  .survey-model-section .container {
    background-color: inherit;
  }

  .survey-issue-section {
    padding: 48px 0;
    padding-bottom: 0;
  }

  .survey-issue-list {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .issue-detail li {
    font-size: 14px;
  }

  .survey-solution-section {
    padding: 60px 0;
  }

  .survey-model-section .survey-base-section {
    background-color: #fff;
    padding: 40px 0;
  }

  .solution-title {
    font-size: 24px;
    margin-bottom: 32px;
  }

  .pmc-model-section {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .pmc-title {
    font-size: 20px;
    margin-bottom: 16px;
  }

  .pmc-description {
    padding: 20px;
    margin: 0 20px;
  }

  .pmc-list dt {
    font-size: 15px;
  }

  .pmc-list dd {
    margin-bottom: 20px;
  }

  .pmc-list li {
    font-size: 13px;
  }

  .survey-card-list {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .card-title {
    font-size: 18px;
    margin: 20px 0 12px 0;
  }

  .card-description {
    padding: 0 20px 0 30px;
    margin-bottom: 20px;
  }

  .card-button {
    padding: 0 20px 24px 20px;
  }

  .card-button .btn-primary {
    padding: 14px 24px;
    font-size: 13px;
  }
}