/*
Theme Name: BRT Path
Theme URI: https://brtpath.com/
Author: BRIGHTPATH
Author URI: https://brtpath.com/
Description: 自社サイト用オリジナルテーマ
Version: 1.0
*/

@charset "utf-8";

/* main コンテンツ幅 */
.service-pankuzu {
  width: 90%;
  max-width: 1000px;
  margin: 0 auto 8rem;
}

.service-container {
  width: 90%;
  max-width: 1000px;
  margin: 0 auto;
}

.service-lead {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.service-lead h2 {
  font-size: var(--font-h2-size);
  font-family: var(--font-ja);
  font-weight: 500;
  text-align: center;
  line-height: 1.4;
}

.service-container .color-bl,
.solution-banner .color-bl {
  color: var(--sub-color);
  font-size: clamp(2.5rem, 4vw, 3.5rem);
}

.service-lead p {
  letter-spacing: 1px;
}


/* 悩み */
.service-container h3 {
  text-align: center;
  margin-bottom: 3rem;
  font-size: clamp(2rem, 2vw, 2.5rem);
  font-weight: 500;
}

.problem-group {
  display: flex;
  justify-content: center;
}

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

.problem-list li:nth-child(6) {
  order: 5;
  box-shadow: none;
}

.problem-list li:nth-child(5) {
  order: 6;
}

.problem-list li {
  border-radius: 50%;
  padding: 2rem;
  width: 30rem;
  height: 15rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 5px 3px 4px rgb(8 27 39 / 10%);
  background: #fff;
}

.problem-illust {
  width: 30rem;
}

.solution-illust {
  width: 15rem;
}

.web-solution-illust {
  width: 15rem;
}

.solution-banner {
  background: #e6f5fb;
  margin: 5rem 0 0;
  position: relative;
  z-index: 1;
}


/* 水色背景上にある白三角 */
.banner-arrow {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 3rem solid transparent;
  border-right: 3rem solid transparent;
  border-top: 3rem solid #fff;
  z-index: 2;
}

.solution-inner {
  width: 90%;
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  padding: 5rem 0;
  gap: 3rem;
}

.solution-text {
  font-size: clamp(1.8rem, 2vw, 2.3rem);
  font-weight: 500;
  line-height: 1.4;
}

.solution-text .fv-bl {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(2.3rem, 3vw, 3.3rem);
}


/* POINT全体 */
.point-flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 3rem;
  max-width: 1000px;
  width: 90%;
  margin: 0 auto;
  padding-bottom: 7rem;
}

.point-detail-flex {
  flex: 1 1 calc(50% - 1.5rem);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1rem;
}

.point-five-flex {
  flex: 1 1 100%;
  max-width: 420px;
}

.point {
  font-size: clamp(1.6rem, 2vw, 2rem);
  font-weight: 500;
  color: #7DC5E2;
  line-height: 1;
}

.point-title {
  font-size: clamp(1.8rem, 2vw, 2.2rem);
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 1px;
}


/* 結論 */
.service-result {
  background-color: #24A2D3;
  padding: 7rem;
}

.result-text {
  width: 90%;
  max-width: 1000px;
  margin: 0 auto;
}

.result-text h4 {
  color: var(--strong-color);
  font-size: clamp(1.8rem, 3vw, 3rem);
  font-weight: 500;
  text-align: center;
  padding-bottom: 1rem;
}

.result-text p {
  font-size: clamp(1.6rem, 2vw, 2rem);
  font-weight: 500;
  text-align: center;
  color: #fff;
}

.result-text .color-ye {
  font-weight: 500;
  color: var(--strong-color);
  font-size: clamp(1.8rem, 2vw, 2.4rem);
}

.service-container .first-view-btn,
.service-result .first-view-btn {
  padding-top: 4rem;
  width: 90%;
  max-width: 1000px;
  margin: 0 auto;
}

.service-result .first-view-btn .white-btn:hover {
  background-color: var(--strong-color);
  color: var(--sub-color);
}


/* 制作一例 */
.page-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 0.1rem solid #ccc;
  max-width: 1000px;
  margin: 2rem auto;
}

.page-item {
  text-align: center;
  padding: 5rem 3rem;
  background: #fff;
  border-right: 0.1rem solid #ccc;
  border-bottom: 0.1rem solid #ccc;
}

.page-item img {
  width: 80px;
  margin: 0 auto;
}

.page-item h3 {
  font-size: clamp(1.4rem, 2vw, 1.6rem);
  margin-bottom: 0.8rem;
}

.page-item p {
  font-size: clamp(1.3rem, 2vw, 1.4rem);
  text-align: left;
}

/* 最終列の右ボーダー削除（4列目） */
.page-item:nth-child(4n) {
  border-right: none;
}

/* 最終行の下ボーダー削除（5〜8番目） */
.page-item:nth-child(n+5) {
  border-bottom: none;
}

.example-note {
  text-align: center;
  font-size: clamp(1.5rem, 2vw, 1.8rem);
  font-weight: 500;
}


/* 制作実例 */
.service-gallery {
  padding: 5rem 0;
}

.service-gallery .top-container h2 {
  text-align: center;
}

.service-gallery .white-btn {
  margin: 4rem auto 0;
}


/* 制作の流れ */
.site-create-flow {
  width: 90%;
  max-width: 1000px;
  margin: 0 auto;
}

.site-create-flow .flow-flex {
  gap: 3.5rem;
}

.site-create-flow .flow-step:not(:last-child)::after {
  right: -2.5rem;
}


/* サービス料金 */
.price-flex {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 900px;
  margin: 0 auto 2rem;
}

.price-wrapper {
  flex: 1;
  min-width: 280px;
  position: relative;
  text-align: center;
}

.price-heading {
  font-size: clamp(1.4rem, 2vw, 1.8rem);
  font-weight: 500;
  position: relative;
  display: inline-block;
}

.price-heading .color-bl {
  font-size: clamp(2rem, 3vw, 2.5rem);
}

/* 初期費用 */
.price-main {
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 600;
}

.price-text {
  color: var(--sub-color);
  font-size: 4rem;
  font-family: 'Montserrat';
}

.tax-note {
  font-size: clamp(1.4rem, 2vw, 1.6rem);
  font-weight: 500;
}

.price-description {
  flex: 1;
  min-width: 280px;
  font-size: clamp(1.4rem, 2vw, 1.8rem);
}

.feature-box {
  background-color: #EFFAFF;
  border-radius: 10px;
  padding: 3rem;
  max-width: 900px;
  margin: 0 auto 1rem;
}

/* チェックリスト */
.feature-list {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  padding-left: 0;
  position: relative;
  max-width: 850px;
  margin: 0 auto;
}

.feature-list li {
  position: relative;
  flex: 1 1 45%;
  padding-left: 2rem;
  font-size: clamp(1.4rem, 1.8vw, 1.6rem);
  line-height: 1.6;
}

.feature-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: var(--sub-color);
  font-weight: bold;
}

.plan-note {
  font-size: clamp(1.2rem, 1.6vw, 1.4rem);
  max-width: 855px;
  margin: 0 auto;
}

.plan-note a {
  color: var(--sub-color);
  text-decoration: underline;
  font-weight: 500;
}


/* その他サービス */
.other-service-flex {
  display: flex;
  flex-wrap: wrap;
  gap: 8rem;
  justify-content: center;
  margin: 3rem 0 0;
}

.other-service-box {
  display: flex;
  flex-direction: column;
  text-align: center;
  max-width: 300px;
}

.other-service-title {
  font-size: clamp(1.6rem, 2vw, 2rem);
  font-weight: 500;
  color: var(--sub-color);
  margin-bottom: 1rem;
}

.other-service-box ul {
  text-align: left;
  margin-bottom: 2rem;
}

.other-service-box ul li {
  line-height: 1.6;
  margin-bottom: 0.5rem;
}



@media screen and (max-width: 1191px) {
  .page-item {
    padding: 3rem 1rem;
  }
}


@media screen and (min-width: 768px) and (max-width: 1024px) {
  .other-service-flex {
    display: block;
  }

  .other-service-box {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    max-width: 60%;
    gap: 2rem;
    text-align: left;
  }

  .other-service-box>div:nth-child(1) {
    flex: 0 0 50%;
  }

  .other-service-box>div:nth-child(2) {
    flex: 0 0 60%;
  }

  .other-service-box>div:nth-child(3) {
    flex: 0 0 40%;
  }

  .other-service-box ul {
    padding-left: 1rem;
  }

  .grade-btn {
    display: inline-block;
    width: 100%;
    max-width: 200px;
  }

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

  .problem-list li:nth-child(5),
  .problem-list li:nth-child(6) {
    grid-column: span 1;
  }

  .problem-list li:nth-child(5) {
    order: 5;
  }

  .problem-list li:nth-child(6) {
    order: 6;
  }

  .feature-list li {
    flex: 1 1 100%;
  }
}


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

  /* サービス全体 */
  .service-pankuzu {
    width: 85%;
    margin-bottom: 4rem;
  }

  .service-container {
    width: 85%;
  }

  .service-lead h2 {
    margin-bottom: 1.5rem;
  }

  .service-mg {
    margin-bottom: 5rem;
  }


  /* ホームページ制作*/
  .service-container h3 {
    margin-bottom: .5rem
  }

  .problem-list {
    gap: .5rem;
    display: flex;
    flex-direction: column;
  }

  .problem-list li {
    border-radius: 0;
    box-shadow: none;
    padding: .3rem 0 .3rem 2rem;
    width: 100%;
    height: auto;
    display: block;
    text-align: left;
    position: relative;
    background: transparent;
  }

  .problem-list li::before {
    content: "✔";
    color: var(--accent-color);
    position: absolute;
    top: 0;
    left: 0;
  }

  .problem-list li:nth-child(5) {
    order: 5;
  }

  .problem-list li:nth-child(6) {
    order: 6;
    text-align: center;
  }

  .problem-list li:nth-child(6)::before {
    display: none;
  }

  .problem-illust {
    width: 18rem;
    margin: 0 auto;
    display: block;
  }

  .web-solution-illust {
    width: 13rem;
  }

  .solution-inner {
    width: 85%;
    flex-direction: column;
    text-align: center;
    padding-bottom: 2rem;
    gap: 0;
  }

  .solution-text {
    text-align: center;
  }

  .solution-font {
    font-size: 2.3rem;
  }

  .banner-arrow {
    border-left: 2.5rem solid transparent;
    border-right: 2.5rem solid transparent;
    border-top: 2.5rem solid #fff;
  }

  .solution-banner {
    margin: 2rem 0 0;
  }

  .service-result {
    padding: 3rem;
  }

  .point-flex {
    width: 85%;
    display: block;
    padding-bottom: 3rem;
  }

  .point-detail-flex {
    gap: .5rem;
    padding: 0 0 3rem;
  }

  .point-five-flex {
    padding: 0;
  }

  .result-text {
    width: 100%;
  }

  .result-text p {
    line-height: 1.6;
    text-align: left;
  }

  .service-result .first-view-btn,
  .service-container .first-view-btn {
    display: flex;
    gap: 1rem;
    align-items: center;
    padding: 2rem 0 0;
  }


  /* 制作一例 */
  .page-grid {
    grid-template-columns: repeat(2, 1fr);
    margin: 1rem auto;
  }

  .page-item:nth-child(2n) {
    border-right: none;
  }

  .page-item:nth-child(n+7) {
    border-top: 0.1rem solid #ccc;
  }

  .page-item {
    padding: 1.5rem;
  }

  .page-item img {
    margin: 0 auto .5rem;
  }

  .service-card__info {
    display: block;
  }

  .service-card__more {
    justify-content: right;
  }

  .service-btn-flex {
    display: block;
    margin: 0 auto 3rem;
  }

  .service-btn-flex>div:last-child {
    width: 100%;
  }


  /* サービス料金 */
  .price-flex {
    flex-direction: column;
  }

  .price-description {
    text-align: center;
  }

  .feature-box {
    max-width: 400px;
  }

  .feature-list {
    gap: 1rem;
  }

  .feature-list li {
    flex: 1 1 100%;
  }


  /* その他のサービス */
  .other-service-flex {
    flex-direction: column;
    align-items: center;
    gap: 3rem;
  }

  .other-service-box {
    max-width: 300px;
    flex: 1 1 30%;
  }

  .other-service-text {
    margin: 0 auto;
  }

  .other-service-title {
    margin-bottom: .5rem;
  }

  .other-service-box ul {
    margin-bottom: 1rem;
  }
}





/*====================================
サイト保守管理ページの設定
===================================*/
.support-group {
  display: flex;
  align-items: center;
  gap: 3rem;
}

.support-group div:first-of-type {
  flex: 1 1 20%;
  display: flex;
  justify-content: center;
  margin: 0 auto;
}

.support-group div:last-of-type {
  flex: 1 1 80%;
  display: flex;
  justify-content: center;
  margin: 0 auto;
}

.support-problem-list {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  padding: 0;
  margin: 0;
  flex: 1;
  position: relative;
}

.support-problem-list .bubble {
  position: relative;
  width: 300px;
  height: 70px;
  border: 1px solid var(--main-color);
  border-radius: 50px;
  background-color: #fefefe;
  line-height: 1.6;
  text-align: left;
}

.support-problem-list .bubble::before {
  content: "";
  position: absolute;
  top: 85%;
  left: -1%;
  width: 26px;
  height: 1px;
  transform: rotate(150deg);
  box-sizing: border-box;
  background-color: var(--main-color);
  box-shadow: 0 1px 0 #fff, 0 -1px 0 #fff;
}

.support-problem-illust {
  width: 180px;
}

.support-problem-illust img {
  width: 100%;
  height: auto;
}

/* PCアトランダム配置 */
.bubble1 {
  transform: translate(-5%, -15%);
}

.bubble2 {
  transform: translate(15%, -33%);
}

.bubble3 {
  transform: translate(10%, -5%);
}

.bubble4 {
  transform: translate(30%, -15%);
}

.bubble5 {
  transform: translate(70%, 10%);
}


/* 保守・管理の必要性 */
.support-reason-lead {
  text-align: center;
  font-weight: 600;
  font-size: clamp(2rem, 3vw, 2.4rem);
  padding-bottom: 3rem;
}

.support-reason-lead .color-bl {
  font-size: clamp(2rem, 3vw, 2.7rem);
}

.support-reason-flex {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.support-reason-flex img {
  width: 130px;
  height: auto;
  flex-shrink: 0;
}

.support-reason-text {
  flex: 1;
  min-width: 0;
}

.support-reason-title {
  font-weight: 500;
  font-size: clamp(1.8rem, 2vw, 2rem);
  margin-bottom: 0.5rem;
}

.support-service-flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 5rem;
  margin: 5rem 0 2rem;
}

.support-service-box {
  flex: 0 1 calc(50% - 40px);
  position: relative;
  background: #eaf7fe;
  border-radius: 20px;
  padding: 6rem 3rem 2rem;
  width: 500px;
}

.support-service-label-bg {
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  background: #eaf7fe;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  z-index: 0;
}

.support-service-label {
  position: absolute;
  top: -25px;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: var(--sub-color);
  font-weight: bold;
  z-index: 1;
}

.support-service-label span:first-child {
  font-size: clamp(.8rem, 2vw, 1rem);
}

.support-service-label span:last-child {
  font-size: clamp(1.8rem, 2vw, 2rem);
  line-height: 1;
}

.support-service-title {
  color: var(--sub-color);
  font-size: clamp(1.8rem, 2vw, 2rem);
  font-weight: 500;
  margin-bottom: .5rem;
}

.support-service-text p {
  font-weight: 500;
}

.support-service-text ul {
  list-style: outside;
  padding-left: 2.5rem;
}



@media screen and (max-width: 1191px) {
  .support-group div:last-of-type {
    flex: 0 1 50%;
  }

  .support-group div:first-of-type {
    flex: 1 1 50%;
  }

  .bubble1,
  .bubble2,
  .bubble3,
  .bubble4,
  .bubble5 {
    transform: none;
  }
}


@media screen and (max-width: 767px) {
  .support-group {
    flex-direction: column-reverse;
    align-items: flex-end;
    gap: 1rem;
  }

  .support-problem-illust {
    width: 35%;
    margin: 0 auto;
  }

  .support-problem-list {
    flex-direction: column;
    gap: 0.5rem;
  }

  .support-problem-list .bubble {
    all: unset;
    display: block;
    padding-left: 2rem;
    position: relative;
  }

  .support-problem-list .bubble::before {
    content: "✔";
    position: absolute;
    top: 0;
    left: 0;
    color: var(--accent-color);
    font-size: 1.4rem;
    box-shadow: none;
    background: none;
    transform: none;
    width: auto;
    height: auto;
  }

  .support-reason-lead {
    padding-bottom: 2rem;
  }

  .support-reason-flex {
    flex-direction: column;
    align-items: center;
    text-align: left;
    gap: 1rem;
  }

  .support-reason-flex img {
    width: 100px;
  }

  .support-reason-title {
    line-height: 1.3;
  }

  .support-reason-text {
    width: 90%;
  }

  .support-service-box {
    flex: 1 1 100%;
    width: 100%;
    padding: 5rem 2rem 2rem;
  }
}





/*====================================
Webマーケティングの設定
===================================*/
.solution-detail-text {
  width: 90%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 0 5rem;
}

.mkt-problem-block h4 {
  font-size: clamp(1.8rem, 2vw, 2.3rem);
  font-weight: 500;
  position: relative;
  padding-left: 5rem;
  margin-bottom: 2rem;
}

.mkt-problem-block h4 span {
  position: absolute;
  top: 0;
  left: 0;
  width: 4rem;
  height: 4rem;
  background-color: var(--sub-color);
  color: #fff;
  font-size: clamp(1.6rem, 2vw, 2rem);
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.mkt-problem-inner {
  display: flex;
  gap: 3rem;
  align-items: flex-start;
  margin-bottom: 7rem;
}

.mkt-problem-inner.reverse {
  flex-direction: row-reverse;
}

.mkt-problem-explain {
  flex: 1 1 60%;
}

.mkt-problem-lead {
  color: var(--sub-color);
  font-size: clamp(1.6rem, 2vw, 2rem);
  font-weight: 500;
  margin-bottom: 1rem;
}

.mkt-problem-img {
  flex: 1 1 40%;
}

.mkt-problem-img img {
  width: 100%;
  height: auto;
  display: block;
}

.mkt-img-overlay {
  position: relative;
}

.mkt-img-overlay img:nth-of-type(1) {
  display: block;
  width: 100%;
  height: auto;
}

.mkt-img-overlay img:nth-of-type(2) {
  position: absolute;
  top: -53%;
  right: 0;
  width: 25%;
  height: auto;
}



@media (max-width: 768px) {
  .solution-detail-text {
    width: 85%;
  }

  .mkt-problem-inner,
  .mkt-problem-inner.reverse {
    flex-direction: column;
  }

  .mkt-problem-img {
    margin-top: 1.5rem;
  }

  .mkt-img-overlay img:nth-of-type(2) {
    display: none;
  }

  .mkt-problem-illust {
    display: block;
    margin: 0 auto 1rem;
    width: 30%;
  }

  .mkt-problem-block h4 {
    margin-bottom: 1rem;
  }

  .mkt-problem-inner {
    gap: 0;
    margin-bottom: 5rem;
  }
}



/* 集客の流れ */
.mkt-step-flow {
  display: flex;
  flex-direction: column;
}

.mkt-quote-flex {
  display: flex;
  justify-content: space-between;
  flex-wrap: nowrap;
}

.mkt-quote img {
  width: 62px;
}

.mkt-step-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
}

.mkt-step-container {
  position: relative;
  width: 100%;
  max-width: 300px;
  margin: 3rem 1rem;
}

.mkt-step-header {
  position: absolute;
  top: -5rem;
  left: 50%;
  transform: translateX(-50%);
  background-color: #fff;
  padding: 1rem 1rem 0;
  text-align: center;
  z-index: 1;
}

.mkt-step-box {
  width: 300px;
  border: 1px solid var(--accent-color);
  border-radius: 8px;
  padding: 0;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.05);
  text-align: center;
  position: relative;
  background: #fefefe;
}

.mkt-step-number {
  color: var(--accent-color);
  font-weight: 600;
  font-size: clamp(2.5rem, 3vw, 3rem);
}

.mkt-step-label {
  color: var(--accent-color);
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  letter-spacing: 1px;
  line-height: .5;
  font-weight: 600;
  display: block;
}

.mkt-step-title {
  color: var(--accent-color);
  font-size: clamp(1.8rem, 2vw, 2rem);
  font-weight: 500;
  margin: 4rem 0 1rem;
}

.mkt-quote {
  font-size: clamp(1.3rem, 2vw, 1.5rem);
  margin-bottom: 2rem;
  padding: 0 2rem;
}

.mkt-highlight-box {
  font-size: clamp(1.3rem, 2vw, 1.5rem);
  text-align: left;
  background-color: #EFFAFF;
  padding: 2rem;
  border-radius: 0 0 8px 8px;
  position: relative;
}

.mkt-highlight-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 1.5rem solid transparent;
  border-right: 1.5rem solid transparent;
  border-top: 1.5rem solid #fff;
  z-index: 2;
}



@media screen and (max-width: 1191px) {
  .mkt-step-container {
    margin: 2rem 1rem;
  }
}


@media (max-width: 768px) {
  .mkt-step-row {
    gap: 0 .7rem;
    justify-content: center;
  }

  .mkt-step-container {
    margin: 3rem 0;
  }
}





/*====================================
セールスプロモーションの設定
===================================*/
.sales-problem-flex {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2rem;
}

.sales-each-problem {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 280px;
}

.sales-each-problem img {
  width: 100px;
  margin-bottom: 1.2rem;
}

.sales-title {
  font-weight: 500;
  line-height: 1.5;
  margin: 0 0 8px;
}

.sales-title::after {
  content: "";
  display: block;
  width: 280px;
  border-bottom: 1px solid #1291C4;
  margin: .8rem auto 0;
}

.sales-text {
  margin: .8rem 0 0;
}


/* 制作可能ツール */
.sales-product-list {
  display: flex;
  flex-wrap: wrap;
  gap: 5rem 1rem;
  padding-top: 4rem;
}

.sales-product-box {
  flex: 0 0 calc((100% - 1rem)/2);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: start;
  column-gap: 1.5rem;
}

/* 画像を親幅にフィット */
.sales-product-box picture,
.sales-product-box>div {
  min-width: 0;
}

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

.sales-product-box div {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.sales-product-box p {
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.sales-product-box ul {
  font-size: clamp(1.2rem, 2vw, 1.4rem);
  list-style: outside;
  padding-left: 2rem;
}



@media (max-width: 885px) {
  .sales-product-box {
    display: block;
    gap: .5rem 0;
  }

  .sales-product-box img {
    margin-bottom: .5rem;
    max-width: 260px;
  }

  .sales-product-list {
    gap: 3rem 1rem;
    padding-top: 2rem;
  }
}



/* ブランディング */
.sales-branding-flex {
  display: flex;
  justify-content: space-between;
  gap: 3rem;
  margin-bottom: 3rem;
}

.sales-before-speech-box,
.sales-after-speech-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-height: 100%;
  padding: 2rem;
  background-color: #F4F4F4;
  box-sizing: border-box;
}

.sales-after-speech-box {
  background-color: #EFFAFF;
}

.sales-before-box,
.sales-after-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1 1 50%;
  height: 100%;
}

.sales-before-label,
.sales-after-label {
  width: 100%;
  font-size: clamp(2rem, 2vw, 2.5rem);
  font-weight: 500;
  color: #ACACAC;
  text-align: center;
  z-index: 1;
  padding: 0 0 .5rem;
  position: relative;
  border-bottom: 1px solid #ACACAC;
  margin-top: 3rem;
}

.sales-after-label {
  color: var(--accent-color);
  border-bottom: 1px solid var(--accent-color);
}

.sales-before-label::before,
.sales-after-label::before {
  content: "";
  position: absolute;
  bottom: -7px;
  left: 50%;
  width: 15px;
  height: 15px;
  rotate: 135deg;
  translate: -50%;
}

.sales-before-label::after,
.sales-after-label::before {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  z-index: -1;
  width: 15px;
  height: 15px;
  box-sizing: border-box;
  border: 1px solid;
  border-color: #ACACAC #ACACAC transparent transparent;
  background-color: #ffffff;
  rotate: 135deg;
  translate: -50%;
}

.sales-after-label::before {
  border-color: #03739F #03739F transparent transparent;
}

.sales-branding-img {
  width: 60px;
  position: absolute;
  right: 0;
  top: 55%;
  transform: translateY(-70%);
}

.sales-after-box img {
  width: 70px;
  top: 60%;
}

.sales-problem-title {
  font-weight: 500;
  font-size: clamp(1.6rem, 2vw, 1.8rem);
  text-align: center;
  margin: 1rem 0;
}

.sales-after-speech-box .sales-problem-title {
  color: var(--sub-color);
}

.sales-problem-list li {
  position: relative;
  padding-left: 2rem;
  line-height: 2.2;
}

.check-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent-color);
  font-weight: bold;
}

.cross-list li::before {
  content: "✖";
  position: absolute;
  left: 0;
  top: 0;
  color: #E74C3C;
  font-weight: bold;
}

.sales-branding-banner {
  background: #46AFD9;
  margin: 5rem 0 0;
  position: relative;
  z-index: 1;
  text-align: center;
  padding-top: 6rem;
}

.sales-branding-lead {
  font-size: clamp(1.8rem, 2vw, 2.3rem);
  color: #fff;
  font-weight: 500;
}

.sales-branding-title {
  max-width: 1000px;
  margin: 0 auto;
  font-weight: 500;
  padding-top: 3rem;
}

.sales-branding-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 4rem 0;
  gap: 3rem;
}

.sales-branding-merit {
  background: #fff;
  border-radius: 1rem;
  padding: 2rem 3rem;
  text-align: left;
  width: 100%;
  max-width: 310px;
  position: relative;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.sales-branding-merit p {
  line-height: 1.6;
}

.sales-branding-merit .merit-number {
  position: absolute;
  top: -20px;
  left: -15px;
  background-color: #009DDB;
  color: #fff;
  border: 1px solid #fff;
  font-weight: 500;
  border-radius: 50%;
  width: 5rem;
  height: 5rem;
  font-size: clamp(1.8rem, 2vw, 2rem);
  line-height: 2.3;
  text-align: center;
}

.sales-branding-merit .color-bl {
  font-weight: 500;
  font-size: clamp(1.6rem, 2vw, 1.8rem);
  text-align: center;
  margin-bottom: 1rem;
  color: var(--sub-color);
}



@media screen and (max-width: 1191px) {
  .sales-branding-inner {
    gap: 5rem;
  }
}


@media (max-width: 768px) {
  .sales-branding-flex {
    display: block;
    margin-bottom: 2rem;
  }

  .sales-problem-list li {
    line-height: 1.8;
  }

  .sales-after-label {
    margin-top: 5rem;
  }

  .sales-branding-img {
    top: 45%;
  }

  .sales-after-box img {
    top: 50%;
  }

  .sales-branding-sp {
    width: 85%;
    margin: 0 auto;
  }

  .sales-branding-banner {
    margin: 0;
  }

  .sales-branding-inner {
    gap: 4rem;
    justify-content: center;
  }

  .sales-branding-merit .merit-number {
    line-height: 2.5;
  }
}



/* サービス料金 */
.sales-price-box {
  background-color: #EFFAFF;
  border-radius: 10px;
  padding: 3rem;
  max-width: 80%;
  margin: 3rem auto 0;
  text-align: center;
}

.sales-price-box .white-btn {
  max-width: 400px;
  margin: 2rem auto 0;
}

.sales-price-box .color-bl {
  font-size: clamp(1.6rem, 2vw, 1.8rem);
  font-weight: 500;
  line-height: 2.5;
}



@media (max-width: 768px) {
  .sales-price-box {
    max-width: 100%;
    padding: 2rem;
  }

  .sales-price-box .color-bl {
    line-height: 1.8;
    margin-bottom: 1rem;
  }

}