@charset "UTF-8";

/* ==========================================================================
   Googleビジネスプロフィール リードコピー（導入メッセージ）
   ========================================================================== */
.gbp-lead {
  max-width: 900px;
  margin: 0 auto 8rem;
}

.gbp-lead .lead-title {
  font-size: 2.6rem;
  font-weight: 900;
  color: #222222;
  line-height: 1.5;
  margin-bottom: 2.5rem;
}

.gbp-lead .lead-text {
  font-size: 1.6rem;
  line-height: 2;
  color: #555555;
}

@media screen and (max-width: 768px) {
  .gbp-lead { margin-bottom: 5rem; }
  .gbp-lead .lead-title { font-size: 2.0rem; margin-bottom: 1.8rem; }
  .gbp-lead .lead-text { font-size: 1.45rem; text-align: left; }
}

/* ==========================================================================
   機能概要（2カラム×2行 グリッド）※感嘆符アイコン付き
   ========================================================================== */
.gbp-overview-section {
  margin-bottom: 10rem;
}

.overview-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
}

.overview-card {
  background-color: #ffffff;
  border: 1px solid #eeeeee;
  border-top: 4px solid #222222; /* 上部のアクセント黒ライン */
  padding: 3rem 2.5rem;
  border-radius: 4px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.03);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.overview-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.07);
}

.overview-title {
  font-size: 1.8rem;
  font-weight: 900;
  color: #222222;
  margin-bottom: 1.5rem;
  line-height: 1.4;
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
}
/* 青い感嘆符マーク（!）の装飾 */
.overview-title .accent-mark {
  color: #00B7CE; /* サイトアクセントのブルー */
  font-weight: 900;
  font-size: 2.2rem;
  line-height: 1;
}

.overview-text {
  font-size: 1.45rem;
  line-height: 1.8;
  color: #555555;
}

@media screen and (max-width: 768px) {
  .gbp-overview-section { margin-bottom: 6rem; }
  .overview-grid { grid-template-columns: 1fr; gap: 2rem; }
  .overview-card { padding: 2.5rem 2rem; }
  .overview-title { font-size: 1.65rem; }
}

/* ==========================================================================
   2つの特徴（ジグザグレイアウト：文字＋写真）
   ========================================================================== */
.gbp-feature-section {
  margin-bottom: 10rem;
}

.feature-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6rem;
  margin-bottom: 8rem;
}
.feature-row:last-child {
  margin-bottom: 0;
}
/* 偶数行は左右反転 */
.feature-row.is-reverse {
  flex-direction: row-reverse;
}

.feature-content {
  flex: 1 1 50%;
  width: 50%;
}

.feature-title {
  font-size: 2.6rem;
  font-weight: 900;
  color: #222222;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 2px solid #222222;
  line-height: 1.4;
}

.feature-text {
  font-size: 1.55rem;
  line-height: 2;
  color: #555555;
}

.feature-image {
  flex: 0 0 45%;
  width: 45%;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0,0,0,0.06);
}
.feature-image img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  display: block;
}

@media screen and (max-width: 768px) {
  .gbp-feature-section { margin-bottom: 6rem; }
  .feature-row,
  .feature-row.is-reverse {
    flex-direction: column;
    gap: 2.5rem;
    margin-bottom: 6rem;
  }
  .feature-content,
  .feature-image {
    width: 100%;
    flex: 1 1 auto;
  }
  .feature-title { font-size: 2.0rem; margin-bottom: 1.5rem; }
  .feature-text { font-size: 1.45rem; }
}

/* ==========================================================================
   3つのポイント（3カラム グリッド）
   ========================================================================== */
.gbp-point-section {
  margin-bottom: 10rem;
  background-color: #f8f9fa;
  padding: 6rem 4rem;
  border-radius: 8px;
}

.point-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}

.point-card {
  background-color: #ffffff;
  padding: 3.5rem 2.5rem;
  border-radius: 6px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.04);
  text-align: center;
}

.point-title {
  font-size: 1.8rem;
  font-weight: 900;
  color: #222222;
  margin-bottom: 2rem;
  line-height: 1.5;
  min-height: 5.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.point-text {
  font-size: 1.45rem;
  line-height: 1.8;
  color: #555555;
  text-align: left;
}

@media screen and (max-width: 1024px) {
  .point-grid { grid-template-columns: repeat(2, 1fr); }
  .point-title { min-height: auto; }
}

@media screen and (max-width: 768px) {
  .gbp-point-section { margin-bottom: 6rem; padding: 4rem 2rem; }
  .point-grid { grid-template-columns: 1fr; gap: 2rem; }
  .point-card { padding: 2.5rem 2rem; }
  .point-title { font-size: 1.7rem; margin-bottom: 1.5rem; }
}

/* ==========================================================================
   運用の流れ（ステップタイムライン）
   ========================================================================== */
.gbp-flow-section {
  margin-bottom: 10rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.flow-list {
  border-top: 1px solid #dddddd;
}

.flow-item {
  display: flex;
  align-items: flex-start;
  gap: 4rem;
  padding: 4rem 0;
  border-bottom: 1px solid #dddddd;
}

.flow-num {
  font-size: 3.6rem;
  font-weight: 900;
  color: #00B7CE; /* サイトアクセントのブルー */
  line-height: 1;
  flex: 0 0 60px;
  text-align: right;
  font-family: 'Noto Sans JP', sans-serif;
}

.flow-content {
  flex: 1;
}

.flow-title {
  font-size: 2.0rem;
  font-weight: 900;
  color: #222222;
  margin-bottom: 1rem;
  line-height: 1.4;
}

.flow-text {
  font-size: 1.5rem;
  line-height: 1.8;
  color: #555555;
}

@media screen and (max-width: 768px) {
  .gbp-flow-section { margin-bottom: 6rem; }
  .flow-item { gap: 2rem; padding: 2.5rem 0; }
  .flow-num { font-size: 2.8rem; flex: 0 0 45px; }
  .flow-title { font-size: 1.7rem; }
  .flow-text { font-size: 1.45rem; }
}

/* ==========================================================================
   INQUIRY お問い合わせ（ホームページ制作等と同一デザイン）
   ========================================================================== */
.gbp-inquiry-section {
  margin-bottom: 4rem;
}

.inquiry-layout {
  display: flex;
  gap: 5rem;
  align-items: center;
  margin-bottom: 5rem;
}

.inquiry-image {
  flex: 1;
}
.inquiry-image img {
  width: 100%;
  border-radius: 4px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.inquiry-content {
  flex: 1.3;
}

.inquiry-header {
  margin-bottom: 2.5rem;
}

.inquiry-text {
  font-size: 1.5rem;
  line-height: 1.8;
  color: #444444;
  margin-bottom: 1.5rem;
}

.inquiry-list li {
  font-size: 1.45rem;
  line-height: 2;
  color: #333333;
  font-weight: 500;
}

/* 3連お問い合わせボタン */
.inquiry-btn-wrap {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
}

@media screen and (max-width: 768px) {
  .inquiry-layout {
    flex-direction: column;
    gap: 3rem;
    margin-bottom: 4rem;
  }
  .inquiry-content { width: 100%; display: flex; flex-direction: column; }
  .inquiry-header { order: 1; margin-bottom: 2rem; }
  .inquiry-image { order: 2; width: 100%; margin-bottom: 2rem; }
  .inquiry-text { order: 3; }
  .inquiry-list { order: 4; }
  
  .inquiry-btn-wrap {
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
  }
  .inquiry-btn-wrap .btn-contact {
    width: 100%;
    max-width: 320px;
  }
}