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

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



/*====================================
リセット
===================================*/
*,
::before,
::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

a {
  color: inherit;
  text-decoration: none;
}

ul,
ol {
  list-style: none;
}



/*====================================
共通設定
===================================*/
:root {
  --main-color: #272626;
  --sub-color: #1199ce;
  --title-color: #7C7471;
  --title-txt-color: #055170;
  --accent-color: #23799C;
  --soft-blue-color: #62ACC2;
  --strong-color: #DE733B;
  --font-base-size: clamp(1.4rem, 2vw, 1.6rem);
  --font-h1-size: clamp(4rem, 6vw, 8rem);
  --font-h2-size: clamp(1.8rem, 3vw, 3rem);
  --font-h3-size: clamp(2rem, 2vw, 2.8rem);
  --font-h4-size: clamp(1.8rem, 2vw, 2.5rem);
  --font-ja: "Noto Sans JP", sans-serif;
  --font-en: "Montserrat", sans-serif;
  --sp-fixed-btn-height: 45px;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
  scroll-padding-top: var(--wp-admin--admin-bar--height, 100px);
}

body {
  color: var(--main-color);
  font-size: var(--font-base-size);
  font-family: var(--font-ja);
  font-weight: 400;
  font-style: normal;
  line-height: 1.8;
  background-color: #fdfdfd;
}

img {
  max-width: 100%;
  display: block;
  height: auto;
}

picture {
  max-width: 100%;
  display: block;
}

.mb-2 {
  margin-bottom: 2rem;
}

.mb-5 {
  margin-bottom: 5rem;
}

.mb-7 {
  margin-bottom: 7rem;
}

.mb-10 {
  margin-bottom: 10rem;
}

.mb-20 {
  margin-bottom: 20rem;
}

.font-500 {
  font-weight: 500;
}

.font-600 {
  font-weight: 600;
}

.font-blue {
  color: var(--accent-color);
}

.font-deep-blue {
  color: var(--title-txt-color);
}

.text-indent {
  text-indent: -1.5em;
  padding-left: 1.5em;
}


/* レスポンシブ対応　非表示 */
.spOnly {
  display: none;
}

.tbOnly {
  display: none;
}

.noSp {
  display: block;
}

.noTb {
  display: block;
}

@media (min-width: 768px) {
  .tbOnly {
    display: block;
  }

  .noTb {
    display: none;
  }
}

@media (max-width: 767px) {
  .spOnly {
    display: block;
  }

  .noSp {
    display: none;
  }

  .mb-5 {
    margin-bottom: 3rem;
  }

  .mb-7 {
    margin-bottom: 4rem;
  }

  .mb-10 {
    margin-bottom: 5rem;
  }

  .mb-20 {
    margin-bottom: 10rem;
  }
}

/* 後ほど削除！！！ */
.blog-category {
  pointer-events: none;
  cursor: default;
  display: none;
}

/*====================================
枠ドロップシャドウ
===================================*/
.layout-shadow {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2), inset 0 0 0 1px rgba(255, 255, 255, 0.1);
}


/*====================================
CTAボタン設定
===================================*/
/* 青文字＋白背景 */
.white-btn {
  display: block;
  text-align: center;
  font-weight: 500;
  width: 100%;
  max-width: 200px;
  margin: 0 auto;
  padding: 1rem;
  color: var(--accent-color);
  background: #fff;
  border: 1px solid var(--accent-color);
  border-radius: 100vh;
  transition: 0.5s;
}

.white-btn:hover {
  color: #fff;
  background: var(--accent-color);
  border: 1px solid var(--accent-color);
}


/* 白文字＋青枠 */
.blue-btn {
  display: block;
  text-align: center;
  width: 100%;
  max-width: 200px;
  margin: 0 auto;
  padding: 1rem;
  color: #fff;
  background: var(--accent-color);
  border: 1px solid var(--accent-color);
  border-radius: 100vh;
  transition: 0.5s;
}

.blue-btn:hover {
  color: var(--accent-color);
  background: #fff;
  border: 1px solid var(--accent-color);
}


/* 白文字＋オレンジ背景 */
.orange-btn {
  display: block;
  text-align: center;
  font-weight: 500;
  width: 100%;
  max-width: 500px;
  padding: 1rem;
  color: #fff;
  background: var(--strong-color);
  border: 1px solid var(--strong-color);
  border-radius: 100vh;
  transition: 0.5s;
}

.orange-btn:hover {
  color: #fff;
  background: var(--main-color);
  border: 1px solid var(--main-color);
}

@media (max-width: 767px) {

  .white-btn,
  .blue-btn,
  .orange-btn {
    margin: 1rem auto 0;
  }

  .white-btn,
  .blue-btn,
  .orange-btn {
    padding: 1rem;
  }
}


/* グラデーションボタン */
.grade-btn {
  display: block;
  margin: 0 auto;
  width: 100%;
  max-width: 200px;
  padding: 1rem;
  text-align: center;
  background-image: linear-gradient(90deg, rgba(125, 197, 226, 1), rgba(17, 152, 205, 1));
  color: #fff;
  border: 1px solid transparent;
  border-radius: 100vh;
  transition: 0.5s;
}

.grade-btn:hover {
  color: var(--sub-color);
  background: #fff;
  border: 1px solid currentcolor;
}



/*====================================
追従LINEボタン設定
===================================*/
.floating-line-banner {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 5;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.line-banner-img {
  width: 300px;
  height: auto;
}

/* ホバー時の動き */
.floating-line-banner:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.25);
}

@media (max-width: 768px) {
  .floating-line-banner {
    right: 5px;
    bottom: 53px;
  }

  .line-banner-img {
    width: 165px;
  }
}



/*====================================
ハイライトの設定
===================================*/
.highlight-or {
  background: linear-gradient(transparent 70%, #F1C6B0 0%);
}



/*====================================
フェードインの設定
===================================*/
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.is-show {
  opacity: 1;
  transform: translateY(0);
}


/*====================================
見出しフォントの設定
===================================*/
/* h2 タイトル設定 */
h2 {
  color: var(--title-txt-color);
  font-size: var(--font-h2-size);
  font-family: var(--font-ja);
  font-weight: 600;
  text-align: center;
  line-height: 1.5;
}

h2 .subTtl {
  color: var(--title-color);
  font-size: clamp(1.6rem, 2vw, 2.5rem);
  font-weight: 500;
  font-family: var(--font-en);
  text-align: center;
}

/* h3 タイトル設定 */
h3 {
  color: var(--title-txt-color);
  font-size: var(--font-h3-size);
  font-family: var(--font-ja);
  font-weight: 600;
}

/* オレンジ文字＋白フチ */
.font-orange {
  color: var(--strong-color);
  font-weight: 700;

  text-shadow:
    2px 2px 0 #fff,
    -2px 2px 0 #fff,
    2px -2px 0 #fff,
    -2px -2px 0 #fff,
    0px 2px 0 #fff,
    0px -2px 0 #fff,
    2px 0px 0 #fff,
    -2px 0px 0 #fff;
}



/*====================================
ページタイトル
===================================*/
/* 各ページ上の水色背景タイトル設定 */
.page-title {
  background: linear-gradient(#F8FDFF, #E9F6FB);
  padding: 22rem 7rem 7rem;
  margin-bottom: 5rem;
}

.page-title p,
.page-title h1 {
  color: var(--title-txt-color);
  line-height: .6;
  font-family: var(--font-en);
  font-size: var(--font-h1-size);
  font-weight: 400;
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
}

.page-title p span,
.page-title h1 span {
  color: var(--main-color);
  font-size: clamp(1.5rem, 3vw, 2.3rem);
  font-family: var(--font-ja);
}


@media (max-width: 767px) {
  .page-title {
    padding: 15rem 3rem 5rem;
    margin-bottom: 2rem;
  }

  .page-title h1 {
    line-height: .9;
  }
}