@charset "utf-8";
/* 必ず1行目 */

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



/*====================================
ヘッダーの設定
===================================*/
.header {
  position: fixed;
  top: 24px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 48px);
  max-width: 1800px;
  z-index: 1000;
}

/* ガラスヘッダー本体 */
.header-inner.glass-header {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 14px 32px;
  border-radius: 100vh;
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow:
    0 8px 24px rgba(0, 0, 0, 0.08),
    inset 0 0 0 1px rgba(255, 255, 255, 0.4);
}

.header-inner img {
  max-width: 150px;
  height: auto;
}

.logo {
  margin-right: auto;
}

.pc-nav,
.header-btn {
  display: flex;
  align-items: center;
}

.header-btn {
  margin-left: 2rem;
  gap: 1rem;
  transition: 0.5s;
}

.pc-nav ul {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  padding: 0;
  margin: 0;
}

.pc-nav ul li {
  margin: 0 1rem;
}

.hamburger,
.sp-nav,
.sp-fixed-btn {
  display: none;
}

.header-btn .h-contact-btn {
  min-width: 140px;
  padding: 1rem 1.5rem;
  white-space: nowrap;
  margin: 0 auto;
}

/* ヘッダーマウスオンスオン */
.nav-list>li>a {
  position: relative;
  padding: 0.5rem 0;
  display: inline-block;
}

.nav-list>li>a::before {
  content: "";
  position: absolute;
  top: -5px;
  left: 50%;
  transform: translateX(-50%);
  width: 8px;
  height: 8px;
  background-color: #03739F;
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

/* サービス詳細にホバー中は ● を表示 */
.nav-list li a.current::before {
  opacity: 1;
}

.nav-list>li>a:hover::before {
  opacity: 1;
  transform: translateX(-50%) translateY(-3px);
}


@media (max-width: 1375px) {
  .pc-nav {
    display: none;
  }

  .pc-nav .header-btn {
    display: flex;
    margin-left: auto;
  }

  .pc-nav .nav-list {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
  }

  .header {
    top: 0;
    left: 0;
    transform: none;
    width: 100%;
    max-width: none;
  }

  .header-inner.glass-header {
    border-radius: 0;
    padding: 1.5rem 2rem;
  }

  .hamburger {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 35px;
    height: 15px;
    margin-left: 3rem;
    position: relative;
    z-index: 1001;
  }

  .hamburger span {
    display: block;
    width: 100%;
    height: 1px;
    background-color: var(--title-txt-color);
    transition: transform 0.3s ease, opacity 0.3s ease;
  }

  .hamburger.active span {
    transition: .3s;
  }

  .hamburger.active span:first-child {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .hamburger.active span:last-child {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  .sp-nav {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    overflow-y: auto;
    position: fixed;
    top: 80px;
    right: 0;
    width: 100%;
    height: 95vh;
    font-size: clamp(1.6rem, 3vw, 2rem);
    color: var(--accent-color);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 1000;
    background: var(--title-txt-color);
    color: #fff;
    font-weight: 300;
  }

  .sp-nav.active {
    opacity: 1;
    visibility: visible;
  }

  .sp-nav ul {
    width: 100%;
  }

  .sp-nav ul li {
    border-bottom: 1px dotted #dedede;
  }

  .sp-nav ul li a {
    display: block;
    padding: 1.5rem 3.5rem;
  }

  .sp-fixed-btn {
    display: none;
  }

  .sp-nav-bottom {
    padding: 1rem 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
  }

  .sp-social-icons {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 2rem 0;
    gap: 1.5rem;
  }

  .sp-social-icons a {
    border: 2px dotted red;
    padding: 1rem;
    transition: all .3s;
  }

  .sp-nav-contact-btn {
    display: block;
    width: 100%;
    max-width: 260px;
    text-align: center;
    padding: 1rem;
    border-radius: 100vh;
    background: #fff;
    color: var(--title-txt-color);
    font-weight: 500;
  }
}


@media (max-width: 767px) {
  .header {
    top: 0;
    left: 0;
    transform: none;
    width: 100%;
    max-width: none;
  }

  .header-inner.glass-header {
    border-radius: 0;
    padding: 2.5rem;
  }

  .header-btn {
    display: none;
  }

  .header-inner img {
    max-width: 120px;
  }

  .sp-nav {
    height: calc(100vh - 80px);
  }

  .sp-nav .nav-list {
    display: block;
    gap: 0;
  }

  .sp-nav .nav-list li {
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  }

  .sp-nav ul li a {
    display: block;
    width: 100%;
    padding: 1.5rem 3rem;
    text-align: left;
  }

  .sp-fixed-btn {
    position: fixed;
    bottom: 0;
    width: 100%;
    height: var(--sp-fixed-btn-height);
    display: flex;
    justify-content: center;
    background-color: var(--strong-color);
    border-top: 1px solid var(--strong-color);
    color: #fff;
    padding: 1.1rem 2rem;
    text-align: center;
    font-weight: 500;
    z-index: 3;
  }

  .sp-social-icons a:last-of-type {
    display: block;
  }
}



/*====================================
フッター直前 CONTACT 設定
===================================*/
.contact-glass-bg {
  max-width: 1000px;
  margin: 0 auto;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow:
    0 8px 24px rgba(0, 0, 0, 0.2),
    inset 0 0 0 1px rgba(255, 255, 255, 0.1);
  padding: 7rem 2rem;
}

.contact-lead {
  font-size: clamp(1.6rem, 2vw, 2rem);
  font-weight: 500;
  text-align: center;
  line-height: 1.5;
  color: var(--title-txt-color);
}

.contact-sub-txt {
  font-size: clamp(1.4rem, 2vw, 1.8rem);
}

.footer-contact-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1rem;
}

.footer-cta-btn {
  width: 100%;
  display: flex;
  justify-content: center;
}

.footer-cta-btn .orange-btn {
  font-size: clamp(1.5rem, 2vw, 2rem);
}


@media (max-width: 767px) {

  .contact-glass-bg {
    padding: 4rem 2rem;
  }

  .contact-sub-txt {
    line-height: 1.5;
  }

  .footer-contact-btn {
    gap: 0;
  }
}



/*====================================
フッターの設定
===================================*/
.footer-container {
  width: 88.888%;
  max-width: 1200px;
  margin: 0 auto;
}

/*=== CONTACT ===*/
.footer-contact-section h2,
.footer-contact-section .subTtl {
  text-align: center;
}

.footer-contact-section {
  position: relative;
  padding: 10rem;
}

.footer-contact-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(245, 253, 255, .65), rgba(245, 253, 255, .65)),
    url('/wp-content/themes/brtpath/img/top-fv/contact-bg.webp') center top / cover;
  z-index: -1;
}




/* =========================
   TOPへ戻るボタン
========================= */
.page-top {
  position: fixed;
  right: 30px;
  bottom: 30px;
  width: 80px;
  height: 80px;
  background-color: var(--soft-blue-color);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  /* ← 少し下に待機 */
  transition: opacity 0.4s ease, transform 0.4s ease;
  z-index: 999;
}

.page-top.is-show {
  opacity: 0.9;
  visibility: visible;
  transform: translateY(0);
  /* ← ふわっと上がる */
}

.page-top:hover {
  opacity: 1;
  transform: translateY(-5px);
}

/* 矢印 */
.page-top .arrow {
  width: 12px;
  height: 12px;
  border-top: 2px solid #fff;
  border-left: 2px solid #fff;
  transform: rotate(45deg);
  margin-bottom: 5px;
}

/* TOP文字 */
.page-top .text {
  color: #fff;
  font-size: 12px;
  letter-spacing: 1px;
}

@media (max-width: 767px) {
  .page-top {
    display: none;
  }
}

/*====================================
CONTACT（簡易版）トップページ
===================================*/
.contact-lite .key-point {
  position: relative;
  display: inline-block;
}

.contact-lite .key-point::before {
  content: "・・・・";
  position: absolute;
  top: -1.1em;
  left: 50%;
  transform: translateX(-50%);
  color: var(--title-txt-color);
}

.contact-lite .lead {
  text-align: center;
}

.contact-lite-form {
  max-width: 1000px;
  margin: 0 auto;
}

.contact-lite-glass-bg {
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow:
    0 8px 24px rgba(0, 0, 0, 0.2),
    inset 0 0 0 1px rgba(255, 255, 255, 0.1);
  padding: 5rem 7rem;
  margin: 0 auto;
}

/* formidable調整 */
#frm_field_60_container,
#frm_field_61_container,
#frm_field_62_container,
#frm_field_63_container {
  padding-top: 1rem;
}

#frm_field_54_container .frm_primary_label {
  margin-right: 0;
}

.contact-lite .contact-note {
  text-decoration: underline;
  color: var(--accent-color);
}

.with_frm_style .frm_primary_label {
  font-size: clamp(1.2rem, 2vw, 1.4rem);
}

.with_frm_style .vertical_radio .frm_checkbox label {
  display: block;
  width: 100%;
  font-size: clamp(1.2rem, 2vw, 1.4rem);
}

.contact-lite .frm_button_submit {
  display: block;
  margin: 0 auto;
  padding: 1rem 10rem;
  background-color: var(--strong-color);
  color: #fff;
  font-size: clamp(1.5rem, 2vw, 1.7rem);
  font-weight: 500;
  border: none;
  border-radius: 100vh;
  letter-spacing: .3rem;
  transition: 0.5s;
}

.contact-lite .frm_button_submit:hover {
  color: #fff;
  background: var(--main-color);
}

.contact-lite .mail-note {
  text-align: center;
  padding-top: .5rem;
  color: var(--main-color);
  font-size: clamp(1.2rem, 2vw, 1.4rem);
}

.contact-lite .frm_error_style {
  border-radius: 0;
  padding: 0 0 2rem;
  font-weight: 600;
}

.contact-lite .frm_error {
  color: red;
  font-size: clamp(1.2rem, 2vw, 1.4rem);
}


@media (max-width: 767px) {
  .contact-lite .lead {
    text-align: left;
    line-height: 1.5;
  }

  .contact-lite-glass-bg {
    border-radius: 7px;
    padding: 2rem 2rem;
  }


  .contact-lite .key-point::before {
    top: -.8em;
  }

  #frm_field_52_container,
  #frm_field_51_container,
  #frm_field_53_container,
  #frm_field_54_container,
  #frm_field_48_container,
  #frm_field_50_container {
    padding-top: 1rem;
  }

}




/*=== フッター ===*/
.footer-main {
  background-color: var(--accent-color);
  color: #fefefe;
  padding: 10rem 0;
}

.footer-content {
  display: flex;
  gap: 4rem;
}

.footer-left-content {
  flex: 1 1 20%;
}

.footer-left-content img {
  max-width: 300px;
  height: auto;
}

.footer-company-name {
  font-size: clamp(1.5rem, 2vw, 2rem);
  padding-top: 1.5rem;
}

.footer-company-address {
  font-size: clamp(1.3rem, 2vw, 1.5rem);
  font-weight: 300;
  letter-spacing: .1rem;
}

.footer-right-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2rem;
  text-align: right;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(4, max-content);
  justify-content: end;
  gap: 1rem 5rem;
  width: 100%;
  margin-bottom: 1rem;
}

.footer-links a:hover {
  text-decoration: underline;
}

.footer-legal {
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 300;
}

.footer-social-icons {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.footer-social-icons a {
  border: 2px dotted red;
  padding: 1rem;
  transition: all .3s;
}

.footer-social-icons a:hover {
  opacity: .7;
}

.footer-copy-right {
  font-size: clamp(1.2rem, 2vw, 1.4rem);
  width: 100%;
  text-align: right;
  font-family: var(--font-en);
}


@media (max-width: 1100px) {

  .footer-contact-section,
  .footer-main {
    padding: 5rem 0;
  }

  .footer-right-content {
    align-items: start;
    gap: 1rem;
  }

  .footer-company-name {
    margin-bottom: 1rem;
  }

  .footer-links {
    grid-template-columns: repeat(2, max-content);
    justify-content: start;
    text-align: left;
    gap: 1rem 7rem;
  }

  .footer-legal {
    text-align: left;
  }

  .footer-social-icons a {
    width: 50px;
    height: auto;
  }

  .footer-copy-right {
    text-align: center;
  }
}


@media (max-width: 900px) {
  .footer-container {
    width: 85%;
  }

  .footer-contact-section,
  .footer-main {
    padding: 5rem 0;
  }

  .footer-contact-btn {
    flex-direction: column;
    gap: 0;
  }

  .footer-content {
    display: block;
  }

  .footer-company-name {
    margin-bottom: 1rem;
  }

  .footer-right-content {
    align-items: start;
    gap: 1rem;
  }

  .footer-links {
    grid-template-columns: repeat(2, max-content);
    justify-content: start;
    text-align: left;
    gap: 1rem 7rem;
  }

  .footer-social-icons img {
    width: 100%;
  }

  .footer-social-icons a {
    width: 50px;
    height: auto;
  }

  .footer-legal {
    text-align: left;
  }

  .footer-copy-right {
    text-align: center;
  }
}


/*====================================
各ページのコンテンツ幅の設定
===================================*/
.top-container {
  width: 88.888%;
  max-width: 1200px;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .top-container {
    width: 85%;
  }
}

/* 斜め背景・次セクションへの流れ */
/*=== SOLUTION ===*/
.top-solution {
  position: relative;
  padding: 10rem 0 20rem;
}

.top-solution::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(245, 253, 255, .65), rgba(245, 253, 255, .65)),
    url('/wp-content/themes/brtpath/img/top-fv/top-fv-bg.webp') center top / cover;
  clip-path: polygon(0 6%, 100% 0, 100% 100%, 0 100%);
  z-index: -1;
}

.flow-line {
  position: absolute;
  top: -2rem;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 10rem;
  background: var(--title-txt-color);
  z-index: 5;
}

.flow-line::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 8px;
  height: 8px;
  background: var(--title-txt-color);
  border-radius: 50%;
}

@media (max-width: 767px) {
  .top-solution {
    padding: 7rem 0 10rem;
  }

  .top-solution::before {
    clip-path: polygon(0 5%, 100% 0, 100% 95%, 0 100%);
  }

  .flow-line {
    height: 7rem;
  }

  .flow-line::after {
    width: 6px;
    height: 6px;
  }
}


/*=== REASON ===*/
.top-reason {
  position: relative;
  margin-top: -22rem;
  padding: 20rem 0;
  z-index: -1;
}

.top-reason::before {
  content: "";
  position: absolute;
  inset: 0;
  clip-path: polygon(0 6%, 100% 0, 100% 96%, 0 100%);
  z-index: -1;
  background-color: #C2E6F4;
}

.top-reason .flow-line {
  top: 0;
}

.top-reason .top-container {
  max-width: 1000px;
}

@media (max-width: 767px) {
  .top-reason {
    margin-top: -11rem;
    padding: 10rem 0;
  }

  .top-reason .top-container {
    padding: 0;
  }

  .top-reason::before {
    clip-path: polygon(0 3%, 100% 0, 100% 97%, 0 100%);
    z-index: -1;
  }

}


/*=== PROGRESS ===*/
.top-progress {
  position: relative;
  padding: 20rem 0;
  margin-top: -22rem;
}

.top-progress .flow-line {
  top: 3rem;
}

@media (max-width: 767px) {
  .top-progress {
    padding: 10rem 0 20rem;
    margin-top: -9rem;
  }

  .top-progress .flow-line {
    top: -2rem;
  }
}


/*=== COMPARE ===*/
.top-compare {
  position: relative;
  margin-top: -22rem;
  padding: 15rem 0 25rem;
}

.top-compare::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, #ECE9E6, #fff);
  clip-path: polygon(0 6%, 100% 0, 100% 100%, 0 100%);
  z-index: -1;
}

@media (max-width: 767px) {
  .top-compare {
    padding: 10rem 0;
    margin-bottom: 15rem;
  }

  .top-compare::before {
    clip-path: polygon(0 3%, 100% 0, 100% 97%, 0 100%);
  }
}


/*=== SERVICE ===*/
.top-service {
  position: relative;
  margin-top: -22rem;
  padding: 20rem 0 22rem;
}

.top-service::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #C2E6F4;
  clip-path: polygon(0 4%, 100% 0, 100% 96%, 0 100%);
  z-index: -1;
}

@media (max-width: 767px) {
  .top-service::before {
    clip-path: polygon(0 1%, 100% 0, 100% 99%, 0 100%);
  }

  .top-service {
    padding: 10rem 0;
    z-index: -1;
  }
}


/*=== PRICE ===*/
.top-price .flow-line {
  top: -20rem;
}

@media (max-width: 767px) {
  .top-price .flow-line {
    top: -10rem;
  }
}


/*=== CONTACT ===*/
.contact-lite {
  background: #C2E6F4;
  padding: 10rem 0;
}

.contact-lite .top-container {
  max-width: 1000px;
}



/*====================================
パンくず・ページネーション・INDEXの設定
===================================*/
/* パンくず */
.pankuzu {
  width: 88.888%;
  max-width: 1200px;
  margin: 0 auto 8rem;
  font-size: clamp(1.2rem, 1.5vw, 1.4rem);
}

.other-pankuzu {
  width: 90%;
  max-width: 1000px;
}

.pankuzu ol,
.pankuzu-bg ol {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  padding: 0;
  margin: 0;
}

.pankuzu li:last-of-type,
.pankuzu-bg li:last-of-type {
  font-weight: 500;
}

.pankuzu li+li::before,
.pankuzu-bg li+li::before {
  content: "›";
  padding: 0 0.5rem;
  margin: 0 0.5rem
}

.pankuzu a,
.pankuzu-bg a {
  position: relative;
}

.pankuzu a::after,
.pankuzu-bg a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0%;
  height: 1px;
  background-color: #317B98;
  transition: width 0.3s ease;
}

.pankuzu a:hover::after,
.pankuzu-bg a:hover::after {
  width: 100%;
}

@media (max-width: 767px) {

  .pankuzu,
  .other-pankuzu {
    width: 85%;
    margin-bottom: 4rem;
  }
}



/* ページネーション */
.pagination {
  text-align: center;
  padding: 4rem 0;
}

.pagination .nav-links {
  display: inline-flex;
  gap: 2rem;
}

.pagination a.page-numbers {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  font-size: clamp(1.3rem, 2vw, 1.5rem);
  color: var(--accent-color);
  font-weight: 600;
  border-radius: 50%;
  text-decoration: none;
  transition: 0.3s ease;
}

.pagination a.page-numbers:hover {
  background-color: #E9F6FB;
}

.pagination .page-numbers.current {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background-color: var(--accent-color);
  color: #fff;
  border-radius: 50%;
}

@media (max-width: 767px) {
  .pagination {
    padding: 2rem 0;
  }
}



/* 一覧へ戻る 戻るボタン */
.index-back {
  margin-top: 6rem;
  text-align: center;
}

.index-back a {
  display: inline-flex;
  align-items: center;
  gap: 3rem;
  color: var(--main-color);
  text-decoration: none;
  border-bottom: 1px solid var(--main-color);
  padding-bottom: 2rem;
  transition: 0.3s ease;
}

.index-back a:hover {
  opacity: 0.7;
}

.index-arrow {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background-color: var(--title-txt-color);
  position: relative;
}

.index-arrow::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 45%;
  width: 8px;
  height: 8px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  transform: translate(-50%, -50%) rotate(45deg);
}

@media (max-width: 767px) {
  .index-back a {
    padding-bottom: 1rem;
  }

  .index-back {
    margin-top: 4rem;
  }
}



/*====================================
Not Foundの設定
===================================*/
.not-found-page-title {
  background: linear-gradient(#f0f1f2, #d5d9db);
}

.not-found-container {
  width: 90%;
  max-width: 1000px;
  margin: 0 auto 10rem;
  text-align: center;
}

.not-found-container h2 {
  color: var(--title-txt-color);
  font-weight: 500;
  font-size: clamp(1.6rem, 2vw, 2.8rem);
  font-family: var(--font-ja);
  line-height: 3;
}

@media (max-width: 767px) {
  .not-found-container {
    width: 85%;
    margin-bottom: 5rem;
  }

  .not-found-container p {
    text-align: left;
  }

  .not-found-container .blue-btn {
    margin-top: 3rem;
  }
}