@charset "utf-8";

/* 定額プランページ：full-bleed要素による横スクロールを防止 */
html {
  overflow-x: hidden;
  overflow-x: clip;
}

.web-total-intro-inner {
  width: 88.888%;
  max-width: 1200px;
  margin: 0 auto;
}

.web-total-intro-title {
  margin-bottom: 4rem;
  font-size: clamp(2.5rem, 3vw, 4rem);
  font-weight: 700;
  text-align: left;
  color: var(--main-color);
}

.title-large {
  font-size: 1.3em;
}

.web-total-intro-body {
  position: relative;
  display: flex;
  min-height: 48rem;
}

.web-total-intro-text {
  width: calc(100% - 50rem);
  padding-right: 3rem;
}

.web-total-intro-price {
  display: flex;
  align-items: flex-end;
  margin: 2rem 0;
  line-height: 1;
}

.price-label {
  margin-right: 1rem;
  font-size: clamp(2rem, 2.2vw, 3rem);
}

.price-number {
  font-size: clamp(5.4rem, 7vw, 9rem);
  font-weight: 900;
}

.price-comma {
  font-size: 0.7em;
}

.price-unit {
  margin-left: 1rem;
  margin-bottom: 0.8rem;
  font-size: clamp(2rem, 2.2vw, 3rem);
}

.web-total-intro-sub {
  margin-bottom: 4rem;
}

.web-total-intro-lead {
  font-size: clamp(1.8rem, 2vw, 2.3rem);
  font-weight: 800;
}


.web-total-intro-image {
  position: absolute;
  top: 0;
  right: calc((100vw - 100%) / -2);
  width: min(74rem, calc(100% + max(0px, (100vw - 100%) / 2)));
  height: 48rem;
}

.web-total-intro-image picture,
.web-total-intro-image img {
  display: block;
  width: 100%;
  height: 100%;
}

.web-total-intro-image img {
  object-fit: cover;
}

@media (min-width: 768px) and (max-width: 1589px) {
  .web-total-intro-body {
    min-height: auto;
  }

  .web-total-intro-text {
    width: 100%;
    padding-right: 0;
  }

  .web-total-intro-image {
    position: static;
    width: 100%;
    height: auto;
    margin-top: 3rem;
  }

  .web-total-intro-image picture,
  .web-total-intro-image img {
    height: auto;
  }

  .web-total-intro-image img {
    aspect-ratio: 740 / 480;
    object-fit: cover;
  }
}


@media (max-width: 767px) {

  .web-total-intro-title {
    margin-bottom: 3rem;
  }

  .web-total-intro-body {
    display: block;
    min-height: auto;
  }

  .web-total-intro-text {
    width: 100%;
    padding-right: 0;
  }

  .web-total-intro-price {
    justify-content: center;
    margin-bottom: 1.2rem;
  }

  .price-label {
    font-size: 2.4rem;
  }

  .price-number {
    font-size: clamp(5.4rem, 14vw, 7rem);
  }

  .price-unit {
    margin-bottom: 0.6rem;
    font-size: 2.4rem;
  }

  .web-total-intro-sub {
    margin-bottom: 3rem;
    text-align: center;
    font-size: 1.3rem;
  }

  .web-total-intro-lead {
    line-height: 1.5;
  }

  .web-total-intro-image {
    position: static;
    width: 100%;
    height: auto;
    margin-top: 3rem;
    margin-left: 0;
  }

  .web-total-intro-image picture,
  .web-total-intro-image img {
    height: auto;
  }

  .web-total-intro-image img {
    aspect-ratio: 400 / 160;
    object-fit: cover;
  }
}



/* ========================================
こんな悩みありませんか
======================================== */
.web-total-intro-inner {
  width: 88.888%;
  max-width: 1200px;
  margin: 0 auto;
}

.web-total-subtitle {
  text-align: center;
  font-size: clamp(2rem, 3vw, 3.6rem);
  font-weight: 700;
  color: var(--main-color);
}

.web-total-worries {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: clamp(2rem, 5vw, 6rem);
}

.web-total-worry {
  text-align: center;
}

.web-total-worry-circle {
  width: clamp(16rem, 20vw, 25rem);
  height: clamp(16rem, 20vw, 25rem);
  margin: 0 auto;
  border-radius: 50%;
  background: #F3F2EE;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: clamp(.5rem, 2vw, 1rem);
}

.web-total-worry-circle img {
  width: 55%;
}

.web-total-worry p {
  text-align: center;
  line-height: 1.6;
  font-weight: 500;
  font-size: clamp(1.2rem, 1.5vw, 1.6rem);
}

.web-total-arrow {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(0.6rem, 0.8vw, 1rem);
  margin: clamp(4rem, 5vw, 6rem) 0 clamp(2rem, 4vw, 4rem);
}

.web-total-arrow span {
  position: relative;
  width: clamp(5rem, 5vw, 7rem);
  height: clamp(.3rem, 1vw, .6rem);
}

.web-total-arrow span::before,
.web-total-arrow span::after {
  content: "";
  position: absolute;
  top: 0;

  width: 50%;
  height: 100%;
}

.web-total-arrow span::before {
  right: 50%;
  transform-origin: right center;
  transform: skewY(20deg);
}

.web-total-arrow span::after {
  left: 50%;
  transform-origin: left center;
  transform: skewY(-20deg);
}

/* 1段目 */
.web-total-arrow span:nth-child(1)::before,
.web-total-arrow span:nth-child(1)::after {
  background: #E2E2E2;
}

/* 2段目 */
.web-total-arrow span:nth-child(2)::before,
.web-total-arrow span:nth-child(2)::after {
  background: #C3C3C3;
}

/* 3段目 */
.web-total-arrow span:nth-child(3)::before,
.web-total-arrow span:nth-child(3)::after {
  background: #999999;
}

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

.web-total-solution-lead {
  font-size: clamp(1.6rem, 2.5vw, 3.2rem);
  font-weight: 700;
  font-feature-settings: "palt";
}

.web-total-solution-lead span{
  padding: 0 0.2em;
}

.web-total-solution-text {
  margin-top: clamp(1.6rem, 2vw, 2rem);
  font-size: clamp(1.4rem, 2.5vw, 2.5rem);
  font-weight: 500;
}

@media (max-width: 767px) {
  .web-total-worries {
    gap: .5rem;
  }

  .web-total-worries {
    grid-template-columns: repeat(2, 1fr);
  }

  .web-total-solution-text {
    line-height: 1.5;
    text-align: justify;
  }

  .sp-subtitle {
    line-height: 1.3;
  }
}




/* ========================================
BRIGHTPATHの定額プラン
======================================== */

.web-total-plan-section {
  position: relative;

  padding: clamp(8rem, 10vw, 12rem) 0;

  background-image:
    linear-gradient(rgba(0, 0, 0, 0.6),
      rgba(0, 0, 0, 0.6)),
    url("/wp-content/themes/brtpath/img/top-fv/top-fv-bg.webp");

  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.web-total-plan-inner {
  width: 88.888%;
  max-width: 1200px;
  margin: 0 auto;
}

.web-total-plan-title {
  text-align: center;
  font-size: clamp(2rem, 3vw, 3.6rem);
  font-weight: 700;
  color: #fff;
}

.web-total-plan-subtitle {
  text-align: center;
  font-size: clamp(1.4rem, 1.8vw, 2rem);
  font-weight: 500;
  color: #fff;
}

.web-total-plan-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1.2rem, 2vw, 2.4rem);
  margin-top: clamp(3rem, 5vw, 6rem);
}

.web-total-plan-card {
  min-height: 28rem;

  padding:
    clamp(3rem, 3vw, 4rem) clamp(1.5rem, 2vw, 2rem);

  background: #fff;
  border-radius: .8rem;

  text-align: center;
}

.web-total-plan-card img {
  display: block;

  width: clamp(6rem, 5vw, 8rem);
  height: auto;

  margin: 0 auto;
}

.web-total-plan-card h4 {
  margin-top: clamp(1.6rem, 2vw, 2.4rem);
  font-size: clamp(1.6rem, 1.5vw, 2rem);

}

.web-total-plan-card p {
  margin-top: clamp(1rem, 1.2vw, 1.6rem);
  font-size: clamp(1.1rem, 1vw, 1.4rem);
  font-weight: 500;
}


@media (max-width: 767px) {
  .web-total-plan-section {
    padding: 6rem 0;
  }

  .web-total-plan-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .web-total-plan-card {
    min-height: auto;
    padding: 2rem 1.2rem;
  }

  .web-total-plan-card img {
    width: 6rem;
  }

  .web-total-plan-card h4 {
    margin-top: 1.2rem;
    font-size: clamp(1.4rem, 3.5vw, 1.8rem);
  }

  .web-total-plan-card p {
    text-align: left;
  }

}


/* ========================================
なぜHPだけでは問い合わせが来ないのか
======================================== */
.web-total-reason-lead {
  margin-top: clamp(2rem, 3vw, 3rem);
  text-align: center;
  font-size: clamp(1.55rem, 2vw, 2.4rem);
  font-weight: 500;
}

.web-total-reason-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(2rem, 2vw, 3rem);
  margin-top: clamp(3rem, 5vw, 6rem);
}

.web-total-reason-card {
  padding: clamp(2.4rem, 3vw, 3rem);
  background: #FAFAFA;
  border-radius: 1.6rem;
  box-shadow:
    0 0.4rem 1.2rem rgba(0, 0, 0, 0.15);
}

.web-total-reason-head {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.web-total-reason-icon {
  flex-shrink: 0;
  width: clamp(4.8rem, 5vw, 8rem);
  height: clamp(4.8rem, 5vw, 8rem);
  border: .5px solid var(--title-txt-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.web-total-reason-icon img {
  width: 55%;
  height: auto;
}

.web-total-reason-title-wrap {
  display: flex;
  flex-direction: column;
}

.web-total-reason-number {
  font-size: clamp(3rem, 3vw, 4rem);
  font-weight: 500;
  line-height: 1;
  font-family: var(--font-en);
}

.web-total-reason-title-wrap h4 {
  font-size: clamp(1.8rem, 1.5vw, 2.4rem);
  font-weight: 700;
}

.web-total-reason-text {
  margin-top: clamp(1rem, 2vw, 2.4rem);
}

.web-total-reason-label {
  display: block;
  margin: clamp(1.5rem, 2vw, 2.4rem) auto 0;
  padding: 1rem 3rem;
  border: 1px solid var(--main-color);
  border-radius: 999px;
  line-height: 1;
  text-align: center;
  background-color: #fff;
  font-weight: 500;
}

.web-total-reason-home {
  position: relative;
  padding: 7rem 10rem;
}

.web-total-reason-home::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    url("/wp-content/themes/brtpath/img/web-total-support/reason-frame.svg") center / 100% 100% no-repeat;
  pointer-events: none;
}

.web-total-reason-home-title {
  max-width: 550px;
  margin: 0 auto;
  padding: 1.2rem 5rem;
  border-radius: 999px;
  background: var(--main-color);
  color: #fff;
  font-size: clamp(1.8rem, 2vw, 2.5rem);
  font-weight: 500;
  line-height: 1;
  letter-spacing: .3rem;
  text-align: center;
}

.web-total-reason-home-main {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(1rem, 3vw, 4rem);
  margin-top: clamp(2rem, 4vw, 4rem);
}

.web-total-reason-home-icon {
  flex-shrink: 0;
  width: clamp(5rem, 8vw, 10rem);
  height: clamp(5rem, 8vw, 10rem);
  border-radius: 50%;
  background: var(--accent-color);
  display: flex;
  align-items: center;
  justify-content: center;
}

.web-total-reason-home-icon img {
  width: 55%;
  height: auto;
}

.web-total-reason-home-content h4 {
  font-size: clamp(1.8rem, 1.5vw, 2.4rem);
  font-weight: 700;
}

.web-total-reason-home-content p {
  margin-top: 1rem;
  font-weight: 500;
}

.web-total-reason-home-line {
  margin: clamp(2rem, 4vw, 4rem) 0;
  border-top: 1px dashed #7db0c5;
}

.web-total-reason-home-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1.5rem, 2vw, 2rem);
}

.web-total-reason-home-card {
  background: #F5F5F5;
  padding: clamp(2rem, 2vw, 3rem);
  text-align: center;
}

.web-total-reason-home-card img {
  width: clamp(4rem, 5vw, 6rem);
  height: auto;
  display: block;
  margin: 0 auto;
}

.web-total-reason-home-card p {
  margin-top: 1rem;
  font-weight: 600;
}



/* ========================================
警告文
======================================== */
.web-total-reason-warning {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(.5rem, 3vw, 4rem);
  margin-top: clamp(1rem, 6vw, 3rem);
}

.web-total-reason-warning img {
  width: clamp(3rem, 5vw, 6rem);
  height: auto;
  flex-shrink: 0;
}

.web-total-reason-warning p {
  text-align: center;
  font-size: clamp(1.4rem, 2vw, 2.4rem);
  font-weight: 600;
  line-height: 1.5;
}


@media (max-width: 767px) {
  .web-total-reason-grid {
    grid-template-columns: 1fr;
  }

  .web-total-reason-card {
    padding: 2rem;
  }

  .web-total-reason-head {
    gap: 1.2rem;
  }

  .web-total-reason-number {
    font-size: 2.8rem;
  }

  .web-total-reason-home {
    padding: 2rem;
    border: .4rem solid var(--main-color);
    border-radius: 2rem;
  }

  .web-total-reason-home::before {
    display: none;
  }

  .web-total-reason-home-main {
    align-items: flex-start;
  }

  .web-total-reason-home-title {
    width: 100%;
    padding: 1rem;
    text-align: center;
    font-size: 1.6rem;
  }

  .web-total-reason-home-content p {
    margin-top: .5rem;
    line-height: 1.4;
    font-weight: 400;
  }

  .web-total-reason-home-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .web-total-reason-home-card {
    padding: 2rem 1rem;
  }

  .web-total-reason-home-card p {
    margin-top: 1rem;
    font-size: 1.4rem;
  }

  .web-total-reason-warning p {
    text-align: left;
  }
}




/* ========================================
中間CTAボタン
======================================== */
.consult-guide {
  position: relative;
  padding: clamp(5rem, 8vw, 8rem) 0;
  background-color: #E9F6FB;
  overflow: hidden;
}

/* 上線 */
.consult-guide::before {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  background: #317B98;
  top: 1rem;
}

/* 下線 */
.consult-guide::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  background: #317B98;
  bottom: 1rem;
}

.consult-guide-label {
  margin-bottom: clamp(1rem, 1.5vw, 1.5rem);
  text-align: center;
  font-size: clamp(1.4rem, 1.5vw, 1.8rem);
}

.consult-guide-title {
  margin-bottom: clamp(1rem, 1.5vw, 1.5rem);
  text-align: center;
  font-size: clamp(2rem, 2.5vw, 3rem);
  font-weight: 700;
  line-height: 1.4;
  color: var(--main-color);
}

.consult-guide-text {
  text-align: center;
  font-size: clamp(1.4rem, 1.6vw, 1.8rem);
  font-weight: 500;
}

.consult-guide-btn-wrap {
  margin-top: clamp(2rem, 4vw, 3rem);
}

.consult-guide-btn-wrap .yw-btn {
  max-width: 350px;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .consult-guide::before {
    top: .5rem;
  }

  .consult-guide::after {
    bottom: .5rem;
  }

  .consult-guide-btn-wrap .yw-btn {
    max-width: 300px;
  }

}




/* ========================================
値段比較
======================================== */
.cost-compare-title {
  text-align: center;
  font-size: clamp(2rem, 3vw, 3.6rem);
  font-weight: 700;
  color: var(--main-color);
}

.cost-compare-title span {
  color: #DA970D;
  font-weight: 800;
}

.cost-compare-lead {
  margin-top: clamp(2rem, 3vw, 3rem);
  text-align: center;
  font-size: clamp(1.4rem, 1.6vw, 1.8rem);
  line-height: 1.8;
}

.cost-compare-wrap {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: clamp(1.5rem, 2vw, 3rem);
  align-items: center;
  margin-top: clamp(3rem, 6vw, 5rem);
}

.cost-card-normal,
.cost-card-brightpath {
  height: 100%;
}

.cost-card {
  display: flex;
  flex-direction: column;
}

.cost-card-body,
.cost-card-main {
  min-height: 30rem;
}

.cost-card-head,
.cost-card-head-brightpath {
  min-height: 5.2rem;
}



/* ======================
カード共通
====================== */
.cost-card {
  background: #fff;
  border-radius: 1.2rem;
  overflow: hidden;

  box-shadow:
    0 1rem 3rem rgba(0, 0, 0, .08),
    0 .4rem 1rem rgba(0, 0, 0, .05);
}

.cost-card-body {
  background: #EEEEEE;
  padding: clamp(2rem, 3vw, 3rem);
}


/* ======================
左カード
====================== */
.cost-card-normal {
  background: #fff;
  border-radius: 1rem;
  overflow: hidden;

  box-shadow:
    0 .8rem 3rem rgba(0, 0, 0, .08),
    0 .2rem 1rem rgba(0, 0, 0, .05);
}

.cost-card-head,
.cost-card-head-brightpath {
  width: calc(100% - 4rem);
  margin: 2rem auto 0;
  min-height: 5.2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 2rem;
  border-radius: 999px;
  font-size: clamp(1.3rem, 1.8vw, 1.8rem);
  font-weight: 700;
  text-align: center;
}

.cost-card-head {
  background: #5D5C5A;
  color: #fff;
}

.cost-card-head span {
  font-size: clamp(1.1rem, 1vw, 1.3rem);
  font-weight: 400;
}

.cost-card-body {
  padding: 2rem 4rem 0;
  background: #fff;
}

.cost-item {
  display: flex;
  justify-content: space-between;
  align-items: center;

  min-height: 9rem;

  border-bottom: 1px solid #E0E0E0;
}

.cost-item:last-child {
  border-bottom: none;
}

.cost-item-info {
  display: flex;
  align-items: center;
}

.cost-item-icon {
  width: 5rem;
  height: 5rem;

  margin-right: 1.6rem;

  border-radius: 50%;
  background: #EEEEEE;

  display: flex;
  justify-content: center;
  align-items: center;

  flex-shrink: 0;
}

.cost-item-icon img {
  width: 2.8rem;
  height: auto;
}

.cost-item-info p {
  color: #5D5C5A;
  font-size: clamp(1.4rem, 1.2vw, 1.8rem);
  font-weight: 500;
}

.cost-item-price {
  color: #5D5C5A;
  font-size: clamp(1.8rem, 1.6vw, 2rem);
  font-weight: 700;
  white-space: nowrap;
}

.cost-item-price-num {
  font-size: clamp(2rem, 2vw, 3.2rem);
  font-weight: 700;
}

.cost-item-price-unit {
  font-size: clamp(1.4rem, 1.2vw, 1.6rem);
  font-weight: 700;
}

.cost-card-total {
  background: #EEEEEE;
  padding: 1.7rem 2rem;
  text-align: center;
  line-height: 1;
}

.cost-card-total span {
  color: #5D5C5A;
  font-size: clamp(1.6rem, 1.4vw, 2rem);
  font-weight: 700;
}

.cost-card-total strong {
  color: #5D5C5A;
  font-size: clamp(4rem, 5vw, 6.5rem);
  font-weight: 800;
}


/* ======================
中央
====================== */
.cost-diff {
  position: relative;
  width: 15rem;
  text-align: center;
}

.cost-diff::before {
  content: "";
  display: block;

  width: 5.6rem;
  height: 5.6rem;

  margin: 0 auto;

  border: 2px solid #CFCFCF;
  border-radius: 50%;
}

.cost-diff::after {
  content: "→";

  position: absolute;
  top: 2.8rem;
  left: 50%;

  transform: translate(-50%, -50%);

  font-size: 2.4rem;
  line-height: 1;
  color: #A0A0A0;
}

.cost-diff-text {
  display: inline-block;
  margin-top: 1rem;
  font-size: clamp(1.6rem, 1.4vw, 1.8rem);
  font-weight: 700;
  line-height: 1.2;
}

.cost-diff-number {
  font-size: clamp(2rem, 2vw, 3rem);
  font-weight: 800;
}

.cost-diff .web-total-solution-marker {
  background: linear-gradient(transparent 75%, #F0DA9B 60%);
  padding: 0;
}


/* ======================
右カード
====================== */
.cost-card-head-brightpath {
  background: var(--title-txt-color);
  color: #fff;
}

.cost-card-head-brightpath span {
  font-size: clamp(1.1rem, 1vw, 1.3rem);
  font-weight: 400;
}

.cost-card-main {
  padding: clamp(4rem, 6vw, 8rem) 2rem;
  text-align: center;
}

.cost-monthly {
  font-size: clamp(2rem, 3vw, 3rem);
}

.cost-monthly strong {
  font-size: clamp(5rem, 7vw, 8rem);
  line-height: 1;
  font-weight: 800;
}

.cost-monthly-note {
  margin-top: 1rem;
  font-size: clamp(1.3rem, 1.4vw, 1.6rem);
}

.cost-card-total-brightpath {
  padding: 1.6rem;
  background: #C3E5F3;
  text-align: center;
  font-size: clamp(1.6rem, 1.4vw, 2rem);
  font-weight: 700;
}

.cost-card-total-brightpath strong {
  font-size: clamp(4rem, 5vw, 6rem);
  line-height: 1;
}

.cost-card-brightpath-area {
  position: relative;
}

.cost-compare-note {
  position: absolute;
  top: calc(100% + 1.5rem);
  left: 2rem;
  margin: 0;
  font-size: clamp(1.1rem, 1vw, 1.4rem);
  line-height: 1.7;
}


@media (max-width: 767px) {

  .cost-compare-title {
    line-height: 1.5;
  }

  .cost-card-body {
    padding: 1rem 2rem 0;
  }

  .cost-item-icon {
    margin-right: 1.2rem;
  }

  .cost-compare-lead {
    text-align: left;
  }

  .cost-compare-wrap {
    grid-template-columns: 1fr;
  }

  .cost-diff {
    width: 100%;
  }

  .cost-diff::after {
    content: "↓";
  }

  .cost-compare-note {
    left: 0;
  }

  .cost-card-head,
  .cost-card-head-brightpath {
    min-height: 4rem;
  }

  .cost-card-body {
    min-height: 23rem;
  }

  .cost-item {
    min-height: 7rem;
  }

  .cost-card-main {
    min-height: 18rem;
  }
}



/* ========================================
定額だからできること
======================================== */
.able-section {
  position: relative;
  padding: clamp(8rem, 10vw, 12rem) 0;
  background-image: url("/wp-content/themes/brtpath/img/web-total-support/able-bg.webp");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.able-section::before {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  background: #fff;
  top: 1rem;
}

.able-section::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  background: #fff;
  bottom: 1rem;
}

.able-card {
  background: rgba(255, 255, 255, 0.9);
}

.able-card img {
  display: block;
  width: clamp(6rem, 10vw, 10rem);
  height: auto;
  margin: 0 auto;
  border: 1px solid #848484;
  border-radius: 100vh;
  padding: 1.5rem;
  background-color: #fff;
}

.able-card .able-num {
  font-size: clamp(1.4rem, 2vw, 2.5rem);
  font-family: var(--font-en);
  position: relative;
  display: inline-block;
  color: #4D4D4D;
}

.able-card .able-num::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 100%;
  height: 1px;
  background: #4D4D4D;
}

.web-total-plan-card .able-title {
  font-size: clamp(1.4rem, 2vw, 1.8rem);
  font-weight: 700;
  text-align: center;
  line-height: 1.5;
}

.able-note {
  color: #fff;
  font-size: clamp(1.7rem, 2vw, 2.5rem);
  text-align: center;
  font-weight: 600;
  margin-top: 2rem;
}

.able-note .title-large {
  font-size: clamp(2.5rem, 3vw, 4rem);
  font-weight: 800;
}

@media (max-width: 767px) {

  .able-note {
    line-height: 1.5;
  }
}



/* ======================
料金プラン
====================== */
.price-section-inner {
  width: 88.888%;
  max-width: 1000px;
  margin: 0 auto;
}

.price-section-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: stretch;
  gap: clamp(2rem, 3vw, 4rem);
  margin-top: clamp(3rem, 4vw, 4rem);
  padding-top: 3.6rem;
}

.price-section-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 1.2rem;
  overflow: hidden;
  box-shadow:
    0 .8rem 3rem rgba(0, 0, 0, .08),
    0 .2rem 1rem rgba(0, 0, 0, .05);
}

.price-section-card-wrap {
  position: relative;
  display: flex;
  flex-direction: column;
}

.price-section-card-wrap .price-section-card {
  flex: 1;
}

.price-section-card-accent {
  height: 1.5rem;
  border-radius: 1.2rem 1.2rem 0 0;
}

.price-section-card-standard .price-section-card-accent {
  background: #7CBBD4;
}

.price-section-card-premium .price-section-card-accent {
  background: var(--title-txt-color);
}

.price-section-card-badge {
  position: absolute;
  top: -3.5rem;
  left: 50%;
  transform: translateX(-50%);
  margin: 0;
  font-size: clamp(1.5rem, 2vw, 1.8rem);
  font-weight: 600;
  white-space: nowrap;
  color: #DA970D;
}

.price-section-card-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: clamp(2.4rem, 3vw, 3.6rem) clamp(2rem, 3vw, 3.2rem) clamp(2.4rem, 3vw, 3.2rem);
}

.premium-card-body {
  background-color: #F9FDFF
}

.price-section-card-name {
  margin: 0 0 .8rem;
  font-size: clamp(2rem, 2.5vw, 2.8rem);
  font-weight: 800;
  color: var(--accent-color);
  line-height: 1.3;
  text-align: center;
}

.price-premium {
  color: var(--title-txt-color);
}

.price-section-card-catch {
  margin: 0 0 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid #c6c6c6;
  font-size: clamp(1.3rem, 1.4vw, 1.6rem);
  font-weight: 500;
  text-align: center;
}

.price-section-card-price {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: .4rem;
  line-height: 1;
  margin-bottom: 1.2rem;
}

.price-section-card-price-label,
.price-section-card-price-unit {
  font-size: clamp(1.6rem, 1.8vw, 2rem);
  font-weight: 700;
  padding-bottom: .6rem;
}

.price-section-card-price-num {
  font-size: clamp(4.8rem, 6vw, 7.2rem);
  font-weight: 900;
  letter-spacing: -.02em;
}

.price-section-card-note {
  margin: 0 0 3rem;
  text-align: center;
  font-size: clamp(1.2rem, 1.3vw, 1.4rem);
  color: #5D5C5A;
}

.price-section-card-list {
  flex: 1;
  display: flex;
  flex-direction: column;
  margin: 0 0 2.4rem;
  padding: 0;
}

.price-section-card-standard .price-section-card-list {
  justify-content: center;
}

.price-section-card-premium .price-section-card-list {
  justify-content: flex-start;
}

.price-section-card-list li {
  position: relative;
  padding-left: 2.8rem;
  margin-bottom: 1.2rem;
}

.price-section-card-list li:last-child {
  margin-bottom: 0;
}

.price-section-card-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .2em;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 1.5rem auto;
}

.price-section-card-standard .price-section-card-list li::before {
  background-color: #E3F3F8;
  background-image: url("/wp-content/themes/brtpath/img/web-total-support/price-check-bl.svg");
}

.price-section-card-premium .price-section-card-list li::before {
  background-color: var(--title-txt-color);
  background-image: url("/wp-content/themes/brtpath/img/web-total-support/price-check-wh.svg");
}

.price-section-card-recommend {
  flex-shrink: 0;
  padding: clamp(1.6rem, 2vw, 2rem);
  border-radius: .8rem;
}

.price-section-card-standard .price-section-card-recommend {
  background: #E3F3F8;
}

.price-section-card-premium .price-section-card-recommend {
  background: var(--title-txt-color);
  color: #fff;
}

.price-section-card-recommend-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .8rem;
  margin: 0 0 .8rem;
  font-size: clamp(1.3rem, 1.4vw, 1.5rem);
  font-weight: 600;
}

.price-section-card-recommend-icon {
  flex-shrink: 0;
  width: 2rem;
  height: auto;
}

.price-section-card-recommend-text {
  margin: 0;
  font-size: clamp(1.2rem, 1.3vw, 1.4rem);
  line-height: 1.7;
}

/* プラン比較表 */
.price-section-compare {
  margin-top: clamp(5rem, 7vw, 8rem);
}

.price-section-compare-title {
  display: flex;
  align-items: center;
  gap: 5rem;
  margin: 0 0 clamp(2rem, 3vw, 3.6rem);
  font-size: clamp(1.5rem, 2vw, 2rem);
  font-weight: 700;
}

.price-section-compare-title::before,
.price-section-compare-title::after {
  content: "";
  flex: 1;
  height: 1px;
  background: #CFCFCF;
}

.price-section-compare-title span {
  flex-shrink: 0;
}

.price-section-compare-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  width: 100%;
  max-width: 100%;
}

.price-section-compare-table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}

.price-section-compare-table th,
.price-section-compare-table td {
  padding: clamp(1rem, 1.3vw, 1.4rem) clamp(1rem, 1.5vw, 2rem);
  border: 1px solid #E0E0E0;
  text-align: center;
  vertical-align: middle;
  font-weight: 500;
}

.price-section-compare-table thead th {
  font-size: clamp(1.3rem, 1.4vw, 1.6rem);
  font-weight: 700;
}

.price-section-compare-th-service {
  width: 34%;
  background: #5D5C5A;
  color: #fff;
}

.price-section-compare-th-standard {
  width: 33%;
  background: #E3F3F8;
  color: var(--title-txt-color);
}

.price-section-compare-th-premium {
  width: 33%;
  background: var(--title-txt-color);
  color: #fff;
}

.price-section-compare-table tbody th {
  background: #fff;
  text-align: left;
  font-weight: 500;
}

.price-section-compare-table tbody td {
  background: #fff;
  color: var(--title-txt-color);
}

.price-section-compare-table .price-standard {
  color: var(--accent-color);
}

.price-section-compare-service {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.price-section-compare-service img {
  flex-shrink: 0;
  width: 3.5rem;
  height: 3.5rem;
  padding: .4rem;
  border-radius: 50%;
  background: #EEEEEE;
  object-fit: contain;
}

.price-section-check {
  display: inline-block;
  width: auto;
  height: clamp(1.4rem, 1.6vw, 2rem);
}

.price-section-dash::before {
  content: "";
  display: inline-block;
  width: 4rem;
  height: 1px;
  background: var(--accent-color);
  vertical-align: middle;
}

@media (max-width: 767px) {
  .price-section-inner h3 {
    line-height: 1.3;
  }

  .price-section-cards {
    grid-template-columns: 1fr;
    gap: 6rem;
    padding-top: 0;
  }

  .price-section-card-badge {
    top: -3rem;
  }

  .price-section-card-price {
    flex-wrap: wrap;
    justify-content: center;
  }

  .price-section-card-list {
    line-height: 1.3;
  }

  .price-section-compare-table {
    min-width: 55rem;
  }

}



/* ======================
オプション料金
====================== */
.option-price-section {
  position: relative;
  padding: clamp(5rem, 8vw, 8rem) 0;
  background: linear-gradient(to bottom, #7AB7CF, #317B98);
  overflow: hidden;
}

.option-price-section::before {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  background: #fff;
  top: 1rem;
}

.option-price-section::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  background: #fff;
  bottom: 1rem;
}

.option-price-section-inner {
  width: 88.888%;
  max-width: 1000px;
  margin: 0 auto;
}

.option-price-section-label {
  margin-bottom: clamp(1rem, 1.5vw, 1.5rem);
  text-align: center;
  font-size: clamp(1.4rem, 2.5vw, 2.8rem);
  font-weight: 700;
  color: #fff;
}

.option-price-section-lead {
  text-align: center;
  font-size: clamp(1.3rem, 1.5vw, 1.8rem);
  font-weight: 500;
  line-height: 1.6;
  color: #fff;
}

.option-price-section-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(2rem, 3vw, 3rem);
  margin-top: clamp(3rem, 4vw, 5rem);
}

.option-price-section-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 1.2rem;
  padding: clamp(1.5rem, 3vw, 3.2rem) clamp(2rem, 2.5vw, 2.4rem);
  box-shadow:
    0 .8rem 3rem rgba(0, 0, 0, .08),
    0 .2rem 1rem rgba(0, 0, 0, .05);
}

.option-price-section-card-icon {
  flex-shrink: 0;
  width: clamp(6rem, 8vw, 8rem);
  height: clamp(6rem, 8vw, 8rem);
  margin: 0 auto clamp(1.6rem, 2vw, 2rem);
  border-radius: 50%;
  background: #E9F6FB;
  display: flex;
  align-items: center;
  justify-content: center;
}

.option-price-section-card-icon img {
  width: 50%;
  height: auto;
}

.option-price-section-card-title {
  margin: 0 0 .8rem;
  text-align: center;
  font-size: clamp(1.6rem, 1.8vw, 2rem);
  font-weight: 600;
  line-height: 1.3;
  color: var(--accent-color);
}

.option-price-section-card-price {
  margin: 0 0 1.6rem;
  text-align: center;
  font-size: clamp(1.3rem, 1.4vw, 1.5rem);
  color: var(--main-color);
}

.option-price-section-card-divider {
  width: 100%;
  height: 1px;
  margin-bottom: 1.6rem;
  background: #BDE1F0;
}

.option-price-section-card-desc {
  flex: 1;
  margin: 0 0 1.6rem;
  font-size: clamp(1.3rem, 1.3vw, 1.4rem);
  text-align: center;
}

.option-price-section-card-features {
  padding: clamp(1.2rem, 1.5vw, 1.6rem);
  border-radius: .8rem;
  background: #EDEDED;
}

.option-price-section-card-features li {
  position: relative;
  padding-left: 1.6rem;
  margin-bottom: .6rem;
  font-size: clamp(1.2rem, 1.2vw, 1.3rem);
  line-height: 1.5;
}

.option-price-section-card-features li:last-child {
  margin-bottom: 0;
}

.option-price-section-card-features li::before {
  content: "+";
  position: absolute;
  left: 0;
  top: 0;
  font-weight: 700;
  color: var(--accent-color);
}

.option-price-section-note {
  margin: clamp(1rem, 1.8vw, 2rem) 0 0;
  text-align: right;
  font-size: clamp(1.1rem, 1.1vw, 1.2rem);
  line-height: 1.6;
  color: #fff;
}

@media (max-width: 767px) {
  .option-price-section::before {
    top: .5rem;
  }

  .option-price-section::after {
    bottom: .5rem;
  }

  .option-price-section-cards {
    grid-template-columns: 1fr;
  }

  .option-price-section-lead {
    text-align: left;
    font-weight: 400;
  }

  .option-price-section-note {
    text-align: left;
  }
}
