/* ===== Lightning トップスライド フェードイン ===== */
.vk_slide_item{
  opacity: 0;
  animation: fadeInSlide 1.2s ease forwards;
}
.vk_slide_item.slick-active{
  opacity: 1;
}
@keyframes fadeInSlide{
  from{
    opacity: 0;
    transform: translateY(10px);
  }
  to{
    opacity: 1;
    transform: translateY(0);
  }
}

/* =========================
  下層リンクカード
========================= */
.bright-home-links{
  max-width: 920px;
  margin: 28px auto 0;
}
.bright-home-links__card,
.bright-home-links__card--unified,
.bright-home-links__card--instagram-feed{
  position: relative;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 24px;
  align-items: center;
  padding: 32px 26px;
  background: #fff;
  border: 1px solid #dce6ee;
  border-left: 8px solid #6BAED6;
  border-radius: 18px;
  text-decoration: none;
  color: #222;
  box-shadow: 0 10px 28px rgba(0,0,0,.06);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.bright-home-links__card:hover,
.bright-home-links__card--unified:hover,
.bright-home-links__card--instagram-feed:hover{
  transform: translateY(-4px);
  box-shadow: 0 16px 34px rgba(0,0,0,.10);
  border-color: #bfd3e2;
}

.bright-home-links__card--availability{
  border-left-color: #6BAED6;
  background: linear-gradient(180deg, #ffffff 0%, #f4fbfe 100%);
}
.bright-home-links__card--instagram{
  border-left-color: #d78ab3;
  background: linear-gradient(180deg, #ffffff 0%, #fff7fb 100%);
}
.bright-home-links__card--recruit{
  border-left-color: #8fc59b;
  background: linear-gradient(180deg, #ffffff 0%, #f7fcf8 100%);
}

.bright-home-links__image-wrap{
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 16px;
  background: #eef4f8;
  box-shadow: inset 0 0 0 1px rgba(0,0,0,.04);
}
.bright-home-links__image-wrap--square,
.bright-home-links__image-wrap--instagram-one{
  width: 100%;
  max-width: 280px;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 18px;
  background: #f3f7fb;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}
.bright-home-links__image{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .35s ease;
}
.bright-home-links__image-wrap--square .bright-home-links__image,
.bright-home-links__image-wrap--instagram-one .bright-home-links__image{
  object-fit: contain;
}
.bright-home-links__card:hover .bright-home-links__image{
  transform: scale(1.04);
}

.bright-home-links__content{
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.bright-home-links__label{
  display: inline-block;
  margin-bottom: 14px;
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .1em;
  color: #1D3557;
  background: #eef5f9;
  border-radius: 999px;
}
.bright-home-links__title{
  margin: 0 0 14px;
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 900;
  line-height: 1.45;
  color: #1D3557;
}
.bright-home-links__text{
  margin: 0;
  font-size: 15px;
  line-height: 1.9;
  color: #556070;
}
.bright-home-links__btn,
.bright-home-links__btn--link{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 22px;
  min-width: 180px;
  padding: 12px 20px;
  background: linear-gradient(135deg, #6BAED6 0%, #1D3557 100%);
  color: #fff;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none !important;
  box-shadow: 0 8px 18px rgba(29,53,87,.18);
  transition: transform .25s ease, opacity .25s ease;
}
.bright-home-links__card:hover .bright-home-links__btn,
.bright-home-links__btn--link:hover{
  transform: translateY(-2px);
  opacity: .96;
}

/* Instagram埋め込み */
.bright-insta-one{
  width: 100%;
  height: 100%;
  line-height: 0;
}
.bright-insta-one #sb_instagram,
.bright-insta-one .sbi,
.bright-insta-one #sb_instagram #sbi_images,
.bright-insta-one #sb_instagram .sbi_item,
.bright-insta-one #sb_instagram .sbi_photo_wrap{
  width: 100% !important;
  height: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
}
.bright-insta-one #sb_instagram .sb_instagram_header,
.bright-insta-one #sb_instagram #sbi_load,
.bright-insta-one #sb_instagram .sbi_follow_btn,
.bright-insta-one #sb_instagram .sbi_caption{
  display: none !important;
}
.bright-insta-one #sb_instagram .sbi_photo{
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  background-size: contain !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  border-radius: 0 !important;
}

/* =========================
  週間 空き状況
========================= */
.wk-availability{
  max-width: 980px;
  margin: 22px auto;
  padding: 18px;
  border: 1px solid #e6e6e6;
  border-radius: 16px;
  background: #fff;
}
.wk-availability__head{
  display: flex;
  gap: 10px;
  align-items: baseline;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 10px;
}
.wk-availability__title{
  margin: 0;
  font-weight: 900;
  font-size: 18px;
}
.wk-availability__updated{
  margin: 0;
  font-size: 13px;
  color: #666;
}
.wk-availability__legend{
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
  margin: 10px 0 12px;
}
.wk-legend-text{
  margin-right: 8px;
  font-size: 13px;
  color: #555;
}
.wk-availability__tablewrap{
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: 12px;
  border: 1px solid #ececec;
}
.wk-table{
  width: 100%;
  border-collapse: collapse;
  min-width: 720px;
  background: #fff;
}
.wk-table thead th{
  background: #f7f7f7;
  font-weight: 800;
  text-align: center;
  border-bottom: 1px solid #e9e9e9;
  padding: 10px 8px;
  white-space: nowrap;
}
.wk-table tbody th{
  background: #fcfcfc;
  text-align: left;
  font-weight: 800;
  border-top: 1px solid #f0f0f0;
  padding: 10px 10px;
  white-space: nowrap;
}
.wk-table td{
  text-align: center;
  border-top: 1px solid #f0f0f0;
  padding: 10px 8px;
}
.wk-badge{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 26px;
  border-radius: 999px;
  font-weight: 900;
  font-size: 14px;
  border: 1px solid transparent;
}
.wk-ok{
  background: #e9f7ef;
  border-color: #bfe6cd;
  color: #1f6b3a;
}
.wk-maybe{
  background: #fff6df;
  border-color: #f0d48b;
  color: #7a5a00;
}
.wk-ng{
  background: #fdeaea;
  border-color: #f3b7b7;
  color: #9a1f1f;
}
.wk-availability__note{
  margin-top: 10px;
  color: #666;
  font-size: 13px;
}
.wk-availability__note p{
  margin: 0;
}
.wk-availability__cta{
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 14px;
}
.wk-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border-radius: 12px;
  text-decoration: none !important;
  font-weight: 800;
  border: 1px solid #e3e3e3;
}
.wk-btn--sub{
  background: #f6f6f6;
  color: #222;
}
.wk-btn--main{
  background: #1f6b3a;
  color: #fff;
  border-color: #1f6b3a;
}
.wk-btn:hover{
  opacity: .92;
}

/* =========================
  サービスカード
========================= */
.bright-service-links{
  max-width: 1000px;
  margin: 40px auto;
  padding: 32px 16px;
  background: #f3f5f7;
}
.bright-service-links > .bright-section__title{
  text-align: center;
  margin: 0 0 28px;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.3;
  font-weight: 800;
  color: #163d73;
}
.bright-service-grid{
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}
.bright-service-card{
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 250px;
  padding: 28px 24px 22px;
  border-radius: 22px;
  text-decoration: none !important;
  color: #2f2f2f !important;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.55);
}
.bright-service-card::before{
  content: "";
  position: absolute;
  top: -30px;
  right: -30px;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.28);
  pointer-events: none;
}
.bright-service-card::after{
  content: "";
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 0;
  height: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.75);
  opacity: 0.75;
}
.bright-service-card:hover{
  transform: translateY(-6px);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.12);
}
.bright-service-card--pink{
  background: linear-gradient(135deg, #fde9ef 0%, #f8dbe5 100%) !important;
}
.bright-service-card--green{
  background: linear-gradient(135deg, #eaf7ee 0%, #d9f0df 100%) !important;
}
.bright-service-card__head{
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.bright-service-icon{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  margin-bottom: 18px;
  font-size: 30px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.06);
  backdrop-filter: blur(4px);
}
.bright-service-label{
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 4px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.72);
  color: #183b6b;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .08em;
}
.bright-service-name{
  margin: 0 0 12px;
  font-size: 24px;
  line-height: 1.4;
  font-weight: 800;
  color: #183b6b;
  letter-spacing: 0.02em;
}
.bright-service-desc{
  margin: 0;
  font-size: 15px;
  line-height: 1.9;
  color: #4c5b6a;
  font-weight: 600;
}
.bright-service-arrow{
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 20px;
  font-size: 14px;
  font-weight: 800;
  color: #183b6b;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.bright-service-card:hover .bright-service-arrow{
  transform: translateX(4px);
  opacity: 0.9;
}

/* =========================
  トップ用レスポンシブ
========================= */
@media (max-width: 900px){
  .bright-service-grid{
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px){
  .bright-home-links__card,
  .bright-home-links__card--unified,
  .bright-home-links__card--instagram-feed{
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 24px 18px;
    border-radius: 16px;
  }
  .bright-home-links__image-wrap{
    aspect-ratio: 16 / 9;
    border-radius: 14px;
  }
  .bright-home-links__image-wrap--square,
  .bright-home-links__image-wrap--instagram-one{
    max-width: 100%;
  }
  .bright-home-links__title{
    font-size: 22px;
  }
  .bright-home-links__text{
    font-size: 14px;
  }
  .bright-home-links__btn,
  .bright-home-links__btn--link{
    width: 100%;
    min-width: auto;
    box-sizing: border-box;
  }

  .bright-service-grid{
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .bright-service-card{
    min-height: auto;
    padding: 24px 20px 20px;
    border-radius: 18px;
  }
  .bright-service-icon{
    width: 56px;
    height: 56px;
    font-size: 26px;
    margin-bottom: 14px;
    border-radius: 16px;
  }
  .bright-service-name{
    font-size: 21px;
  }
  .bright-service-desc{
    font-size: 14px;
  }
}

@media (max-width: 520px){
  .bright-service-grid{
    grid-template-columns: 1fr;
  }
}

/* =========================
  サービス案内 2カード横並び調整
========================= */
#service-guide .bright-home-links{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  margin-top: 32px;
}

#service-guide .bright-home-links__card{
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  text-decoration: none;
  background: linear-gradient(180deg, #ffffff 0%, #f9fcff 100%);
  border: 1px solid #dbe8f3;
  border-radius: 24px;
  box-shadow: 0 10px 26px rgba(29, 53, 87, 0.08);
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease,
    border-color 0.28s ease;
}

#service-guide .bright-home-links__card:hover{
  transform: translateY(-6px);
  border-color: rgba(107, 174, 214, 0.45);
  box-shadow: 0 18px 38px rgba(29, 53, 87, 0.14);
}

#service-guide .bright-home-links__image-wrap{
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: #eef6fb;
}

#service-guide .bright-home-links__image-wrap--square{
  aspect-ratio: 16 / 10;
}

#service-guide .bright-home-links__image{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

#service-guide .bright-home-links__card:hover .bright-home-links__image{
  transform: scale(1.04);
}

#service-guide .bright-home-links__content{
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 24px 22px 22px;
}

#service-guide .bright-home-links__label{
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 30px;
  margin-bottom: 12px;
  padding: 6px 12px;
  border-radius: 999px;
  background: linear-gradient(180deg, #eef7fd 0%, #e3f1fb 100%);
  color: #2e6f95;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

#service-guide .bright-home-links__title{
  margin: 0 0 12px;
  color: #1d3557;
  font-size: 24px;
  line-height: 1.45;
  font-weight: 800;
}

#service-guide .bright-home-links__text{
  margin: 0;
  color: #4a5d73;
  font-size: 15px;
  line-height: 1.9;
  font-weight: 500;
}

#service-guide .bright-home-links__btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 44px;
  margin-top: auto;
  padding: 10px 18px;
  box-sizing: border-box;
  border-radius: 999px;
  background: linear-gradient(135deg, #6BAED6 0%, #8ecae6 100%);
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  box-shadow: 0 8px 18px rgba(107, 174, 214, 0.25);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

#service-guide .bright-home-links__card:hover .bright-home-links__btn{
  transform: translateX(2px);
  box-shadow: 0 10px 22px rgba(107, 174, 214, 0.32);
}

/* セクション見出しとの余白調整 */
#service-guide .bright-section__hero{
  margin-bottom: 8px;
}

/* =========================
  タブレット
========================= */
@media (max-width: 991px){
  #service-guide .bright-home-links{
    gap: 20px;
  }

  #service-guide .bright-home-links__content{
    padding: 20px 18px 18px;
  }

  #service-guide .bright-home-links__title{
    font-size: 22px;
  }

  #service-guide .bright-home-links__text{
    font-size: 14px;
  }
}

/* =========================
  スマホ
========================= */
@media (max-width: 767px){
  #service-guide .bright-home-links{
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 24px;
  }

  #service-guide .bright-home-links__card{
    border-radius: 18px;
  }

  #service-guide .bright-home-links__image-wrap,
  #service-guide .bright-home-links__image-wrap--square{
    aspect-ratio: 16 / 9;
  }

  #service-guide .bright-home-links__content{
    padding: 18px 16px 16px;
  }

  #service-guide .bright-home-links__label{
    font-size: 11px;
    min-height: 28px;
    margin-bottom: 10px;
    padding: 5px 10px;
  }

  #service-guide .bright-home-links__title{
    font-size: 20px;
    margin-bottom: 10px;
  }

  #service-guide .bright-home-links__text{
    font-size: 14px;
    line-height: 1.8;
  }

  #service-guide .bright-home-links__btn{
    width: 100%;
    min-height: 40px;
    margin-top: 16px;
    padding: 9px 16px;
    box-sizing: border-box;
    font-size: 13px;
  }
}

/* ========================================
  サービス案内カード：配色上書き 最適化版
======================================== */

/* 共通：色差分の反映 */
#service-guide .bright-home-links__card--service-pink,
#service-guide .bright-home-links__card--service-green{
  background: var(--sg-card-bg);
  border-color: var(--sg-card-border);
}

#service-guide .bright-home-links__card--service-pink:hover,
#service-guide .bright-home-links__card--service-green:hover{
  border-color: var(--sg-card-border-hover);
}

#service-guide .bright-home-links__card--service-pink .bright-home-links__image-wrap,
#service-guide .bright-home-links__card--service-green .bright-home-links__image-wrap{
  background: var(--sg-image-bg);
}

#service-guide .bright-home-links__card--service-pink .bright-home-links__title,
#service-guide .bright-home-links__card--service-green .bright-home-links__title{
  color: var(--sg-title-color);
}

#service-guide .bright-home-links__card--service-pink .bright-home-links__btn,
#service-guide .bright-home-links__card--service-green .bright-home-links__btn{
  background: linear-gradient(135deg, var(--sg-btn-start) 0%, var(--sg-btn-end) 100%);
  box-shadow: 0 8px 18px var(--sg-btn-shadow);
}

#service-guide .bright-home-links__card--service-pink:hover .bright-home-links__btn,
#service-guide .bright-home-links__card--service-green:hover .bright-home-links__btn{
  box-shadow: 0 10px 22px var(--sg-btn-shadow-hover);
}

/* 介護保険サービス：ピンク系 */
#service-guide .bright-home-links__card--service-pink{
  --sg-card-bg: linear-gradient(180deg, #ffffff 0%, #fdf5f5 55%, #ffffff 100%);
  --sg-card-border: #f3d3d3;
  --sg-card-border-hover: #e3b8be;
  --sg-image-bg: #f9ecee;
  --sg-title-color: #7b4a52;
  --sg-btn-start: #d79aa3;
  --sg-btn-end: #b86b76;
  --sg-btn-shadow: rgba(184, 107, 118, .22);
  --sg-btn-shadow-hover: rgba(184, 107, 118, .28);
}

/* 障害福祉サービス：グリーン系 */
#service-guide .bright-home-links__card--service-green{
  --sg-card-bg: linear-gradient(180deg, #ffffff 0%, #f5faf5 55%, #ffffff 100%);
  --sg-card-border: #d5ead5;
  --sg-card-border-hover: #b9d9bc;
  --sg-image-bg: #edf7ee;
  --sg-title-color: #4f7a55;
  --sg-btn-start: #9fcea3;
  --sg-btn-end: #6ea676;
  --sg-btn-shadow: rgba(110, 166, 118, .22);
  --sg-btn-shadow-hover: rgba(110, 166, 118, .28);
}














/* =========================
  トップページ ローダー（砂時計風）
========================= */
.site-loader{
  position: fixed;
  inset: 0;
  z-index: 99999;

  /* ローダー全体を画面中央に配置 */
  display: flex;
  align-items: center;
  justify-content: center;

  padding: 24px;

  background:
    radial-gradient(circle at top left, rgba(107,174,214,.18), transparent 34%),
    radial-gradient(circle at right center, rgba(168,218,220,.18), transparent 30%),
    linear-gradient(180deg, #f7fbfe 0%, #eef6fb 100%);

  opacity: 1;
  visibility: visible;

  transition:
    opacity .65s ease,
    visibility .65s ease;
}

.site-loader::before{
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(107,174,214,.18), transparent 30%),
    radial-gradient(circle at 80% 30%, rgba(168,218,220,.14), transparent 28%),
    radial-gradient(circle at 50% 80%, rgba(107,174,214,.10), transparent 32%);
  pointer-events: none;
}

.site-loader::after{
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,.28);
  backdrop-filter: blur(6px);
  pointer-events: none;
}

/* JavaScriptで .is-loaded が付いたらローダーを非表示 */
.site-loader.is-loaded{
  opacity: 0;
  visibility: hidden;
}

/* =========================
  ローダー内側カード
========================= */
.site-loader__inner{
  position: relative;
  z-index: 1;

  /* 中身を縦並びにする */
  display: flex;
  flex-direction: column;
  align-items: center;

  text-align: center;
  padding: 38px 32px;
  min-width: min(92vw, 500px);

  border: 1px solid rgba(107,174,214,.18);
  border-radius: 28px;
  background: rgba(255,255,255,.88);
  box-shadow: 0 20px 50px rgba(29,53,87,.10);
  backdrop-filter: blur(6px);
}

/* =========================
  表示順の指定
  ロゴを一番上に表示
========================= */
.site-loader__logo{
  order: 1;
}

.site-loader__sub{
  order: 2;
}

.site-loader__spinner{
  order: 3;
}

.site-loader__text{
  order: 4;
}

/* =========================
  ロゴ画像
========================= */
.site-loader__logo{
  display: flex;
  align-items: center;
  justify-content: center;

  /* ロゴ下の余白 */
  margin: 0 auto 18px;
}

.site-loader__logo img{
  display: block;

  /*
    ロゴサイズ調整
    220px：最小サイズ
    30vw ：画面幅に応じて自然に拡大
    360px：最大サイズ

    さらに大きくしたい場合は、
    360px を 400px などに変更してください。
  */
  width: clamp(320px, 45vw, 460px);

  /* スマホで画面からはみ出さないようにする */
  max-width: 86vw;

  height: auto;

  filter: drop-shadow(0 8px 22px rgba(29,53,87,.10));
}

/* =========================
  Loading テキスト
========================= */
.site-loader__sub{
  margin: 0 0 18px;
  color: #5f7f98;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}

/* =========================
  砂時計アニメーション
========================= */
.site-loader__spinner{
  position: relative;
  width: 76px;
  height: 96px;

  /* 上にロゴとLoadingがあるため、下余白だけ調整 */
  margin: 0 auto 18px;

  border-radius: 10px;
  background:
    linear-gradient(#1D3557, #1D3557) center top / 100% 6px no-repeat,
    linear-gradient(#1D3557, #1D3557) center bottom / 100% 6px no-repeat,
    linear-gradient(#1D3557, #1D3557) left center / 6px 100% no-repeat,
    linear-gradient(#1D3557, #1D3557) right center / 6px 100% no-repeat,
    linear-gradient(#a8d7ec, #a8d7ec) center center / 4px 16px no-repeat;

  filter: drop-shadow(0 8px 18px rgba(29,53,87,.12));
  animation: brightHourglassFlip 1.8s ease-in-out infinite;
}

.site-loader__spinner::before,
.site-loader__spinner::after{
  content: "";
  position: absolute;
  left: 50%;
  width: 0;
  height: 0;
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
}

.site-loader__spinner::before{
  top: 14px;
  transform: translateX(-50%) scaleY(1);
  transform-origin: center bottom;
  border-bottom: 28px solid #6BAED6;
  animation: brightHourglassTop 1.8s ease-in-out infinite;
}

.site-loader__spinner::after{
  bottom: 14px;
  transform: translateX(-50%) scaleY(0);
  transform-origin: center top;
  border-top: 28px solid #8ecae6;
  animation: brightHourglassBottom 1.8s ease-in-out infinite;
}

/* =========================
  事業所名テキスト
========================= */
.site-loader__text{
  margin: 0;
  color: #1D3557;
  font-size: 15px;
  line-height: 1.7;
  font-weight: 700;
  letter-spacing: .03em;
}

/* =========================
  砂時計：回転アニメーション
========================= */
@keyframes brightHourglassFlip{
  0%,
  45%{
    transform: rotate(0deg);
  }

  50%,
  95%{
    transform: rotate(180deg);
  }

  100%{
    transform: rotate(360deg);
  }
}

/* =========================
  砂時計：上の砂
========================= */
@keyframes brightHourglassTop{
  0%,
  10%{
    transform: translateX(-50%) scaleY(1);
    opacity: 1;
  }

  45%,
  49%{
    transform: translateX(-50%) scaleY(.14);
    opacity: .95;
  }

  50%,
  100%{
    transform: translateX(-50%) scaleY(0);
    opacity: 0;
  }
}

/* =========================
  砂時計：下の砂
========================= */
@keyframes brightHourglassBottom{
  0%,
  49%{
    transform: translateX(-50%) scaleY(0);
    opacity: 0;
  }

  50%,
  56%{
    transform: translateX(-50%) scaleY(.14);
    opacity: .95;
  }

  90%,
  100%{
    transform: translateX(-50%) scaleY(1);
    opacity: 1;
  }
}

/* =========================
  画面全体に効かせる表示演出
========================= */
.home.is-site-loading #page{
  opacity: 0;
  transform: scale(1.015);
  filter: blur(8px);
  transition:
    opacity .7s ease,
    transform .8s ease,
    filter .8s ease;
}

.home.is-site-loaded #page{
  opacity: 1;
  transform: scale(1);
  filter: blur(0);
  transition:
    opacity .7s ease,
    transform .8s ease,
    filter .8s ease;
}

/* =========================
  スマホ
========================= */
@media (max-width: 767px){
  .site-loader{
    padding: 18px;
  }

  .site-loader__inner{
    padding: 30px 20px;
    min-width: min(94vw, 380px);
    border-radius: 22px;
  }

  /* スマホ時のロゴサイズ */
  .site-loader__logo{
    margin-bottom: 16px;
  }

  .site-loader__logo img{
    /*
      スマホでも大きめに表示
      190px：最小
      58vw ：画面幅に応じて可変
      260px：最大
    */
    width: clamp(190px, 58vw, 260px);
    max-width: 86vw;
  }

  .site-loader__sub{
    margin-bottom: 16px;
    font-size: 11px;
    letter-spacing: .14em;
  }

  .site-loader__spinner{
    width: 66px;
    height: 84px;
    margin-bottom: 16px;
    background:
      linear-gradient(#1D3557, #1D3557) center top / 100% 5px no-repeat,
      linear-gradient(#1D3557, #1D3557) center bottom / 100% 5px no-repeat,
      linear-gradient(#1D3557, #1D3557) left center / 5px 100% no-repeat,
      linear-gradient(#1D3557, #1D3557) right center / 5px 100% no-repeat,
      linear-gradient(#a8d7ec, #a8d7ec) center center / 3px 14px no-repeat;
  }

  .site-loader__spinner::before,
  .site-loader__spinner::after{
    border-left-width: 17px;
    border-right-width: 17px;
  }

  .site-loader__spinner::before{
    top: 12px;
    border-bottom-width: 24px;
  }

  .site-loader__spinner::after{
    bottom: 12px;
    border-top-width: 24px;
  }

  .site-loader__text{
    font-size: 14px;
    line-height: 1.6;
  }

  .home.is-site-loading #page{
    transform: scale(1.01);
    filter: blur(6px);
  }
}

/* =========================
  小さいスマホ
========================= */
@media (max-width: 420px){
  .site-loader__inner{
    padding: 26px 16px;
    border-radius: 20px;
  }

  .site-loader__logo{
    margin-bottom: 14px;
  }

  .site-loader__logo img{
    /*
      小さいスマホでもロゴを大きめに維持
      ただし画面幅を超えないように調整
    */
    width: clamp(170px, 64vw, 230px);
    max-width: 86vw;
  }

  .site-loader__sub{
    margin-bottom: 14px;
  }

  .site-loader__spinner{
    width: 58px;
    height: 74px;
  }

  .site-loader__spinner::before,
  .site-loader__spinner::after{
    border-left-width: 15px;
    border-right-width: 15px;
  }

  .site-loader__spinner::before{
    top: 11px;
    border-bottom-width: 21px;
  }

  .site-loader__spinner::after{
    bottom: 11px;
    border-top-width: 21px;
  }

  .site-loader__text{
    font-size: 13px;
  }

  .home.is-site-loading #page{
    filter: blur(4px);
  }
}

















/* =========================
  事業所の特色
  まとまり感強化版
========================= */
.bright-feature{
  --bf-bg: #ffffff;
  --bf-bg-soft: #f8fcff;
  --bf-border: #dbe8f3;
  --bf-title: #1D3557;
  --bf-text: #556070;
  --bf-accent: #6BAED6;
  --bf-shadow: 0 10px 24px rgba(29,53,87,.08);
}

/* セクション全体を1つの箱に */
.bright-feature__wrap{
  padding: 28px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fcff 100%);
  border: 1px solid var(--bf-border);
  border-radius: 24px;
  box-shadow: var(--bf-shadow);
}

/* イントロ */
.bright-feature__intro{
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 24px;
  align-items: center;
  padding-bottom: 24px;
  margin-bottom: 24px;
  border-bottom: 1px solid #e5eef5;
}

.bright-feature__intro-image{
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 18px;
  background: #f3f8fc;
}

.bright-feature__image{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.bright-feature__label{
  display: inline-flex;
  align-items: center;
  margin: 0 0 10px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(107,174,214,.12);
  color: #2f6788;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
}

.bright-feature__intro-title{
  margin: 0 0 12px;
  font-size: clamp(24px, 3vw, 32px);
  line-height: 1.45;
  font-weight: 900;
  color: var(--bf-title);
}

.bright-feature__intro-text{
  margin: 0;
  font-size: 15px;
  line-height: 1.9;
  color: var(--bf-text);
}

/* カード一覧 */
.bright-feature__grid{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.bright-feature-card{
  height: 100%;
  padding: 22px 20px;
  background: #fff;
  border: 1px solid #e1ebf3;
  border-radius: 18px;
  box-shadow: 0 8px 20px rgba(29,53,87,.05);
}

.bright-feature-card__title{
  margin: 0 0 14px;
  padding-left: 12px;
  border-left: 4px solid var(--bf-accent);
  font-size: 20px;
  line-height: 1.5;
  font-weight: 800;
  color: var(--bf-title);
}

.bright-feature-card__list{
  margin: 0;
  padding-left: 1.2em;
}

.bright-feature-card__list li{
  margin-bottom: 10px;
  color: var(--bf-text);
  line-height: 1.8;
}

.bright-feature-card__list li:last-child{
  margin-bottom: 0;
}

/* タブレット */
@media (max-width: 991px){
  .bright-feature__wrap{
    padding: 22px;
  }

  .bright-feature__intro{
    grid-template-columns: 1fr;
  }

  .bright-feature__intro-image{
    max-width: 320px;
    margin: 0 auto;
  }

  .bright-feature__grid{
    grid-template-columns: 1fr;
  }
}

/* スマホ */
@media (max-width: 767px){
  .bright-feature__wrap{
    padding: 18px 16px;
    border-radius: 18px;
  }

  .bright-feature__intro{
    gap: 18px;
    padding-bottom: 18px;
    margin-bottom: 18px;
  }

  .bright-feature__intro-title{
    font-size: 22px;
  }

  .bright-feature__intro-text{
    font-size: 14px;
    line-height: 1.8;
  }

  .bright-feature-card{
    padding: 18px 16px;
    border-radius: 16px;
  }

  .bright-feature-card__title{
    font-size: 18px;
  }

  .bright-feature-card__list li{
    font-size: 14px;
    line-height: 1.75;
  }
}





/* =========================
  動きを減らしたい環境向け
========================= */
@media (prefers-reduced-motion: reduce){
  .site-loader,
  .site-loader__spinner,
  .site-loader__spinner::before,
  .site-loader__spinner::after,
  .home.is-site-loading #page,
  .home.is-site-loaded #page{
    transition: none;
    animation: none;
    transform: none;
    filter: none;
  }
}