/**
 * File: base.css
 * Usage: 全ページ共通のスタイルを定義します。レイアウト、モジュールなど。
 * Example: ly_header, ly_footer, el_btn, el_gradientGold, el_subpTtl, el_normalTtl
*/

@charset "UTF-8";

/* ================================================
 カラー変数
================================================ */
:root {
  --color-main: #268050;
  --color-main-dark: #215237;
  --color-sub-green: #44B283;
  --color-black: #1c1c1c;
  --color-white: #ffffff;
  --color-gray: #808080;
  --color-bg-light: #edf2ef;
}

/* ================================================
 リセットの記述
================================================ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}
ul[role='list'],
ol[role='list'] {
  list-style: none;
  padding: 0;
  margin: 0;
}
html:focus-within {
  scroll-behavior: smooth;
}
body {
  min-height: 100vh; /* Fallback */
  min-height: calc(var(--vh, 1vh) * 100);
  text-rendering: optimizeSpeed;
  line-height: 1.5;
  overflow-x: hidden;
}
a {
  text-decoration: none;
  color: inherit;
}
a:not([class]) {
  text-decoration-skip-ink: auto;
}
img,
picture {
  max-width: 100%;
  height: auto;
  display: block;
  pointer-events: none;
}
input,
button,
textarea,
select {
  font: inherit;
}
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* WordPress管理画面のツールバー */
#wpadminbar {
  display: none !important;
}

/* ================================================
 Loading screen (ly_loading)
 Green fullscreen overlay with centered logo; fades out on DOM ready.
================================================ */
.ly_loading {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-main);
  transition: opacity 1s cubic-bezier(0.65, 0, 0.35, 1),
              visibility 0s linear 1s;
}


.ly_loading.is_hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.ly_loading.is_hidden .bl_loading_inner {
  transform: translateY(-8px);
  opacity: 0;
  transition: transform 0.9s cubic-bezier(0.65, 0, 0.35, 1),
              opacity 0.7s cubic-bezier(0.65, 0, 0.35, 1);
}

.bl_loading_inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  /* Base state for the exit transition defined above */
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1),
              opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.bl_loading_logo {
  width: 160px;
  height: auto;
  filter: brightness(0) invert(1);
  opacity: 0;
  transform: scale(0.96);
  animation: loadingLogoIn 0.6s cubic-bezier(0.22, 1, 0.36, 1) 0.05s both;
}

.bl_loading_name {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 15px;
  line-height: 1.5;
  letter-spacing: 1.5px;
  color: var(--color-white);
  margin: 0;
  opacity: 0;
  animation: loadingNameIn 0.6s cubic-bezier(0.22, 1, 0.36, 1) 0.25s both;
}

@keyframes loadingLogoIn {
  to { opacity: 1; transform: scale(1); }
}

@keyframes loadingNameIn {
  to { opacity: 1; }
}

/* Loading status ("Loading...") */
.bl_loading_status {
  font-family: 'Montserrat', 'Noto Sans JP', sans-serif;
  font-weight: 500;
  font-size: 12px;
  line-height: 1;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.75);
  text-transform: uppercase;
  margin: 12px 0 0;
  opacity: 0;
  animation: loadingNameIn 0.6s cubic-bezier(0.22, 1, 0.36, 1) 0.45s both;
}

.bl_loading_dots {
  display: inline-block;
  margin-left: 2px;
}

.bl_loading_dots span {
  display: inline-block;
  animation: loadingDot 1.4s infinite ease-in-out both;
}
.bl_loading_dots span:nth-child(1) { animation-delay: 0s; }
.bl_loading_dots span:nth-child(2) { animation-delay: 0.15s; }
.bl_loading_dots span:nth-child(3) { animation-delay: 0.3s; }

@keyframes loadingDot {
  0%, 80%, 100% { opacity: 0.25; transform: translateY(0); }
  40%           { opacity: 1;    transform: translateY(-2px); }
}

/* Lock scroll while loader is visible (auto-restored when .is_hidden) */
body:has(.ly_loading:not(.is_hidden)) {
  overflow: hidden;
}

@media (prefers-reduced-motion: reduce) {
  .ly_loading { transition: opacity 0.1s linear; }
  .bl_loading_logo,
  .bl_loading_name,
  .bl_loading_status,
  .bl_loading_dots span { animation: none; opacity: 1; transform: none; }
}

/* Noto Sans JP / Oswald / Montserrat are loaded from Google Fonts
   (see enque-my-styles.php) — unicode-range subsetted + font-display: swap. */

/* ================================================  
 スタイルの適用(モバイルファーストで記述)
================================================ */
body {
  background-color: #fff;
  color: #333;
  width: 100%;
  -webkit-text-size-adjust: 100%;
  font-family: 'Noto Sans JP', sans-serif;
  overscroll-behavior: none;
}



.clearfix::after {
  clear: both;
}

li {
  list-style: none;
}

html {
  margin-top: 0 !important;
}

/* メディアクエリ用の表示・非表示 */
.sm_only {
  display: block !important;
}
.md_only,
.lg_only {
  display: none !important;
}

/* ================================================  
  レイアウト
================================================ */
/* 全体のレイアウト */
.ly_cont {
  padding-inline: var(--pad-inner);
}

/* ヘッダー */
.ly_header {
  position: sticky;
  width: 100%;
  height: 64px;
  top: 0;
  display: flex;
  background: #0e0f14;
  z-index: 1000;
  padding-inline: 20px;
}

/* ================================================
 SPヘッダー (ロゴバー)
================================================ */
.ly_headerSp {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 14px 8px;
  background: var(--color-white);
  transition: transform 0.3s ease, background 0.3s ease;
}

/* Top page: transparent by default, white after scrolling past FV */
.ly_headerSp:has(~ .ly_topPage) {
  background: transparent;
}

.ly_headerSp:has(~ .ly_topPage) .bl_headerSp_logo span {
  color: var(--color-white);
}

.ly_headerSp:has(~ .ly_topPage).is_passedFv {
  background: var(--color-white);
}

.ly_headerSp:has(~ .ly_topPage).is_passedFv .bl_headerSp_logo span {
  color: var(--color-black);
}

.ly_headerSp.is_hidden {
  transform: translateY(-100%);
}

.bl_headerSp_logo {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  text-decoration: none;
}

.bl_headerSp_logo img {
  height: 24px;
  width: auto;
}

.bl_headerSp_logo span {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 13px;
  line-height: 1.4;
  color: var(--color-black);
}

@media screen and (min-width: 1024px) {
  .ly_headerSp {
    display: none;
  }
}

/* ================================================
 PCヘッダー
================================================ */
.ly_headerPc {
  display: none;
}

@media screen and (min-width: 1024px) {
  .ly_headerPc {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 20px;
    background: var(--color-white);
    transition: background 0.3s ease;
  }

  /* Top page: transparent by default, white after scrolling past FV */
  .ly_headerPc:has(~ .ly_topPage) {
    background: transparent;
  }

  .ly_headerPc:has(~ .ly_topPage) .bl_headerPc_logo span,
  .ly_headerPc:has(~ .ly_topPage) .bl_headerPc_nav a {
    color: var(--color-white);
  }

  /* After scrolling past FV */
  .ly_headerPc:has(~ .ly_topPage).is_passedFv {
    background: var(--color-white);
  }

  .ly_headerPc:has(~ .ly_topPage).is_passedFv .bl_headerPc_logo span,
  .ly_headerPc:has(~ .ly_topPage).is_passedFv .bl_headerPc_nav a {
    color: var(--color-black);
  }

  .bl_headerPc {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .bl_headerPc_logo {
    display: flex;
    align-items: flex-end;
    gap: 8px;
    text-decoration: none;
    margin-top: -12px;
  }

  .bl_headerPc_logo img {
    height: 32px;
    width: auto;
  }

  .bl_headerPc_logo span {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 700;
    font-size: 14px;
    line-height: 1.4;
    color: var(--color-black);
  }

  .bl_headerPc_menu {
    display: flex;
    align-items: center;
    gap: 32px;
  }

  .bl_headerPc_nav {
    display: flex;
    gap: 24px;
  }

  .bl_headerPc_nav a {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 700;
    font-size: 14px;
    line-height: 1.4;
    color: var(--color-black);
    text-decoration: none;
    padding-bottom: 3px;
    background-image: linear-gradient(currentColor, currentColor);
    background-repeat: no-repeat;
    background-position: bottom right;
    background-size: 0 1px;
    transition: background-size 0.3s;
  }

  .bl_headerPc_nav a:hover {
    background-position: bottom left;
    background-size: 100% 1px;
  }

  .bl_headerPc_btns {
    display: flex;
    gap: 8px;
  }

  .bl_headerPc_btn {
    display: flex;
    align-items: center;
    height: 48px;
    width: 160px;
    padding: 4px;
    border-radius: 40px;
    text-decoration: none;
    overflow: hidden;
    transition: opacity 0.3s ease;
  }

  .bl_headerPc_btn:hover {
    opacity: 0.8;
  }

  .bl_headerPc_btn span {
    flex: 1;
    text-align: center;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 700;
    font-size: 14px;
    line-height: 1;
    letter-spacing: 0.7px;
    color: var(--color-white);
  }

  .bl_headerPc_btn img {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
  }

  .bl_headerPc_btn__contact {
    background: linear-gradient(to right, var(--color-main-dark), var(--color-sub-green));
  }

  .bl_headerPc_btn__recruit {
    background: #68b2a9;
  }
}

/* ================================================
 フローティングバー (SP)
================================================ */
.ly_floatBar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 14px;
  background: var(--color-white);
  border-radius: 24px 24px 0 0;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.08);
}

.bl_floatBar_btns {
  display: flex;
  gap: 8px;
}

.bl_floatBar_btn {
  display: flex;
  align-items: center;
  height: 48px;
  flex: 1;
  min-width: 0;
  padding: 4px;
  border-radius: 24px;
  text-decoration: none;
  overflow: hidden;
}

.bl_floatBar_btn span {
  flex: 1;
  text-align: center;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 13px;
  line-height: 1;
  letter-spacing: 1.3px;
  color: var(--color-white);
}

.bl_floatBar_btn img {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}

.bl_floatBar_btn__contact {
  background: linear-gradient(to right, var(--color-main-dark), var(--color-sub-green));
  width: 100%;
  max-width: 144px;
  flex: none;
}

.bl_floatBar_btn__recruit {
  background: #68b2a9;
  width: 100%;
  max-width: 144px;
  flex: none;
}

/* Hamburger */
.bl_floatBar_menu {
  width: 48px;
  height: 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.bl_floatBar_menu_bars {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.bl_floatBar_menu_bars span {
  display: block;
  height: 2px;
  background: #2c2c2c;
  border-radius: 1px;
  transition: 0.3s;
  align-self: center;
}

.bl_floatBar_menu_text {
  font-size: 10px;
  line-height: 1;
  color: #2c2c2c;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.bl_floatBar_menu.is_open .bl_floatBar_menu_text {
  font-size: 0;
}

.bl_floatBar_menu.is_open .bl_floatBar_menu_text::before {
  content: "Close";
  font-size: 10px;
}

.bl_floatBar_menu_bars span:nth-child(1) { width: 28px; }

@media screen and (max-width: 374px) {
  .ly_floatBar {
    padding: 12px 8px;
    gap: 4px;
  }

  .bl_floatBar_btns {
    gap: 4px;
    flex: 1;
    min-width: 0;
  }

  .bl_floatBar_btn {
    flex: 1;
  }

  .bl_floatBar_btn__contact,
  .bl_floatBar_btn__recruit {
    max-width: none;
  }

  .bl_floatBar_btn span {
    font-size: 11px;
    letter-spacing: 0.5px;
  }

  .bl_floatBar_btn img {
    width: 32px;
    height: 32px;
  }
}
.bl_floatBar_menu_bars span:nth-child(2) { width: 22px; }
.bl_floatBar_menu_bars span:nth-child(3) { width: 18px; }

/* Hamburger → X */
.bl_floatBar_menu.is_open .bl_floatBar_menu_bars span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.bl_floatBar_menu.is_open .bl_floatBar_menu_bars span:nth-child(2) {
  opacity: 0;
}

.bl_floatBar_menu.is_open .bl_floatBar_menu_bars span:nth-child(3) {
  width: 28px;
  transform: translateY(-8px) rotate(-45deg);
}

/* ================================================
 メニューオーバーレイ
================================================ */
.ly_menuOverlay {
  position: fixed;
  inset: 0;
  z-index: 998;
  background: linear-gradient(to bottom right, var(--color-main-dark), var(--color-sub-green));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.ly_menuOverlay.is_open {
  opacity: 1;
  visibility: visible;
}

.bl_menuOverlay_inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
  padding: 40px 24px 120px;
  width: 100%;
}

.bl_menuOverlay_logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.bl_menuOverlay_logo img {
  height: 40px;
  width: auto;
  filter: brightness(0) invert(1);
}

.bl_menuOverlay_logo p {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: var(--color-white);
}

.bl_menuOverlay_nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  text-align: center;
}

.bl_menuOverlay_nav a:first-child {
  grid-column: 1;
  grid-row: 1;
}

.bl_menuOverlay_nav a:nth-child(n+2) {
  grid-column: 2;
}

.bl_menuOverlay_nav a {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: var(--color-white);
  text-decoration: none;
}

.bl_menuOverlay_privacy {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  font-size: 13px;
  color: var(--color-white);
  text-decoration: none;
}

.bl_menuOverlay_tagline {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  width: 100%;
}

.bl_menuOverlay_tagline_img {
  width: 280px;
  height: auto;
}

.bl_menuOverlay_tagline p {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 13px;
  color: var(--color-white);
  letter-spacing: 1.3px;
}

@media screen and (min-width: 1280px) {
  .ly_headerPc {
    padding: 16px 40px;
  }
}

@media screen and (min-width: 1560px) {
  .ly_headerPc {
    padding: 24px 64px;
  }

  .bl_headerPc_logo img {
    height: 40px;
  }

  .bl_headerPc_logo span {
    font-size: 18px;
  }

  .bl_headerPc_nav {
    gap: 32px;
  }

  .bl_headerPc_nav a {
    font-size: 16px;
  }

  .bl_headerPc_menu {
    gap: 40px;
  }

  .bl_headerPc_btn {
    width: 200px;
    height: 56px;
  }

  .bl_headerPc_btn span {
    font-size: 16px;
  }

  .bl_headerPc_btn img {
    width: 48px;
    height: 48px;
  }
}

/* PC: hide float bar */
@media screen and (min-width: 768px) {
  .ly_floatBar {
    display: none;
  }

  .ly_menuOverlay {
    display: none;
  }
}

/* フッター */
.ly_footer {
  background: linear-gradient(to right, var(--color-main-dark), var(--color-sub-green));
  color: var(--color-white);
}

.bl_footer_cont {
  display: flex;
  flex-direction: column;
  gap: 64px;
  padding: 48px 24px 24px;
}

/* Logo & Address */
.bl_footer_logo {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  margin-bottom: 16px;
}

.bl_footer_logo_img {
  width: 96px;
  height: 40px;
  flex-shrink: 0;
}

.bl_footer_logo_img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.bl_footer_logo_name {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.4;
}

.bl_footer_address {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  font-size: 13px;
  line-height: 1.75;
  letter-spacing: 0.65px;
}

/* Right (PC nav) */
.bl_footer_right {
  display: none;
}

.bl_footer_nav {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.bl_footer_nav > a,
.bl_footer_nav_links a,
.bl_footer_legal a {
  align-self: flex-start;
  font-weight: 700;
  font-size: 14px;
  line-height: 1.4;
  padding-bottom: 3px;
  background-image: linear-gradient(currentColor, currentColor);
  background-repeat: no-repeat;
  background-position: bottom right;
  background-size: 0 1px;
  transition: background-size 0.3s;
}

.bl_footer_nav > a:hover,
.bl_footer_nav_links a:hover,
.bl_footer_legal a:hover {
  background-position: bottom left;
  background-size: 100% 1px;
}

.bl_footer_nav_links {
  display: flex;
  justify-content: space-between;
  font-weight: 700;
  font-size: 14px;
  line-height: 1.4;
}

.bl_footer_nav_btns {
  display: flex;
  gap: 8px;
}

.bl_footer_nav_btns .el_btnArrow {
  width: 160px;
}

.el_btnArrow__recruit {
  background: var(--color-white);
}

.el_btnArrow__recruit .el_btnArrow_txt {
  color: #68b2a9;
}

.bl_footer_legal {
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  font-size: 13px;
}

.bl_footer_legal a {
  font-size: 13px;
}

.bl_footer_legal small {
  font-size: 11px;
}

/* Bottom row */
.bl_footer_bottom {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 0 24px 100px;
}

.bl_footer_tagline {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.bl_footer_tagline_img {
  width: 328px;
  height: auto;
}

.bl_footer_tagline_sub {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 13px;
  line-height: 1;
  letter-spacing: 1.3px;
}

/* ================================================  
 ブロックモジュール
================================================ */
/* ヘッダー */
.bl_headerCont {
  color: white;
  width: 100%;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

.bl_header_logo {
  text-align: center;
  font-size: x-large;
  line-height: 1.2;
  padding: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-align: center;
}

.bl_header_nav {
  font-size: 13px;
  display: flex;
  align-items: center;
  display: none;
}

.bl_header_nav_ul {
  display: flex;
  align-items: center;
}

.bl_header_nav_ul .bl_header_nav_ul_li a {
  padding-inline: 12px;
  display: flex;
  border-right: #fff 1px solid;
  line-height: 1;
}

.bl_header_nav_ul .bl_header_nav_actionBtn a {
  padding-inline: 12px;
  display: flex;
  line-height: 1;
}

/* 投稿 */
.bl_post {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* ================================================  
  エレメントモジュール
================================================ */
/* ボタン */
.el_btn {
  font-size: 1.125rem;
  font-weight: 600;
  background: #23262d;
  color: white;
  border: #333 2px solid;
  width: 300px;
  height: 56px;
  margin-top: 20px;
  margin-inline: auto;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.el_btn_withIcon_img {
  transition: all 0.3s ease;
}

.el_btn:hover,
.el_btn:focus {
  background: white;
  color: #333;
}

.el_btn:hover .el_btn_withIcon_img,
.el_btn:focus .el_btn_withIcon_img {
  border-color: #333;
  stroke: #333;
}

.el_btn_withIcon {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

/* ハンバーガーメニュー */
.el_humb {
  position: absolute;
  top: 50%;
  right: 5%;
  translate: 0 -50%;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.el_humb span {
  display: block;
  width: 30px;
  height: 2px;
  background: #fff;
  border-radius: 999px;
}

/* ================================================  
 ヘルパー
================================================ */
/* 余白の調整 */
.hp_mt20 {
  margin-top: 20px;
}

.hp_mt40 {
  margin-top: 40px;
}

.hp_pb20 {
  padding-bottom: 20px;
}

.hp_pt40 {
  padding-top: 40px;
}

.hp_padX40 {
  padding-inline: 40px;
}

.hp_padY20 {
  padding-block: 20px;
}

.hp_wMax {
  width: max-content;
  margin-inline: auto;
}

/* 色の変更 */
.hp_bgBlack {
  background: #333;
}

/* テキストの調整 */
.hp_txtCenter {
  text-align: center;
}

@media screen and (min-width: 768px) {
  .sm_only {
    display: none !important;
  }
  .md_only,
  .lg_only {
    display: block !important;
  }

  .ly_cont {
    max-width: 1080px;
    margin-inline: auto;
  }

  .ly_normalSec {
    padding-block: 80px;
  }

  /* ヘッダー */
  .ly_header {
    z-index: 1000;
  }

  .bl_headerCont {
    justify-content: space-between;
    overflow: hidden;
  }

  .bl_header_nav {
    display: flex;
    height: 100%;
    gap: 50px;
  }

  .bl_header_nav_ul {
    height: 100%;
    transform: translateX(6px);
  }

  .bl_header_nav_ul .bl_header_nav_actionBtn a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    color: #000;
    height: 100%;
    padding-inline: 32px;
  }

  .bl_header_nav_ul .bl_header_nav_ul_li:last-of-type a {
    border-right: none;
  }

  .bl_header_nav_ul .bl_header_nav_actionBtn a img {
    height: 30px;
    object-fit: contain;
  }

  .bl_header_nav_ul .bl_header_nav_actionBtn.bl_header_nav_actionBtn_myPage,
  .bl_header_nav_ul .bl_header_nav_actionBtn.bl_header_nav_actionBtn_contact {
    position: relative;
    height: 100%;
  }

  .bl_header_nav_ul .bl_header_nav_actionBtn a {
    position: relative;
    z-index: 1;
  }

  .el_btn {
    width: 400px;
    height: 64px;
    margin-inline: auto;
    font-weight: 600;
    font-size: 1.5rem;
    margin-top: 60px;
    margin-bottom: 40px;
  }

  .el_secTtl {
    font-size: 2rem;
    margin-bottom: 40px;
  }

  .hp_borderBold {
    margin-top: 12px;
  }

  .hp_mt40 {
    margin-top: 80px;
  }

  .hp_pt40 {
    padding-top: 80px;
  }

  .bl_breadcrumb {
    padding-block: 40px;
  }

  .el_subpTtl {
    position: relative;
    padding-block: 20px 10px;
    border-bottom: #bb9402 2px solid;
    font-size: 2rem;
  }

  .el_subpTtl span {
    color: #fff;
    opacity: 0.05;
    position: absolute;
    top: -24px;
    left: -100px;
    z-index: 1;
    background: transparent;
    -webkit-background-clip: unset;
    background-clip: unset;
    -webkit-text-fill-color: white;
    font-size: 72px;
    translate: -20px -20px;
  }

  .el_normalTtl {
    font-size: 1.5rem;
  }

  /* フッター PC */
  .bl_footer_cont {
    flex-direction: row;
    justify-content: space-between;
    padding: 80px 40px 24px;
  }

  .bl_footer_logo_name {
    font-size: 18px;
  }

  .bl_footer_right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    width: 328px;
  }

  .bl_footer_bottom {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    padding: 0 40px 24px;
  }

  .bl_footer_tagline_img {
    width: 464px;
  }

  .bl_footer_tagline_sub {
    font-size: 16px;
    letter-spacing: 0.8px;
  }

  .bl_footer_legal {
    display: flex;
    flex-shrink: 0;
  }
}

/* ================================================
 セクション見出しコンポーネント (bl_secHead)
================================================ */
.bl_secHead {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 40px;
}

.bl_secHead__center .bl_secHead_line {
  min-width: 80px;
}

.bl_secHead_ttl {
  font-family: 'Oswald', sans-serif;
  font-size: 76px;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
  margin: 0;
}

.bl_secHead_ttl_char,
.bl_secHead_ttl_space {
  background: linear-gradient(to right, var(--color-main-dark), var(--color-sub-green));
  background-size: var(--char-bg-size, 100%) 100%;
  background-position: var(--char-bg-pos, 0) center;
  background-repeat: no-repeat;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ================================================
 Letter-by-letter char animation (js_charAnim)
 Apply .js_charAnim to the parent, wrap each char in .js_charAnim_char
 with style="--char-index: N". JS adds .is_active when in view.
================================================ */
.js_charAnim_char {
  display: inline-block;
  opacity: var(--opacity, 0);
  transform: translateY(var(--char-shift, 0.2em));
  transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  transition-delay: calc(0.025s * var(--char-index));
}

.js_charAnim.is_active .js_charAnim_char {
  --opacity: 1;
  --char-shift: 0;
}

/* ================================================
 Reveal on scroll (js_reveal)
================================================ */
.js_reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.js_reveal.is_revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Fade-only variant (no translate) — slower, ease-out curve so the
   opacity ramp is perceptible instead of snapping to full near the start. */
.js_reveal.js_reveal__fade {
  transform: none;
  transition: opacity 1.6s ease-out;
}

@media (prefers-reduced-motion: reduce) {
  .js_reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.bl_secHead_line {
  display: block;
  flex: 1;
  height: 0;
  border-top: 2px solid var(--color-main-dark);
  border-bottom: 2px solid var(--color-main-dark);
  padding-top: 8px;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.bl_secHead_line:last-of-type {
  border-top-color: var(--color-sub-green);
  border-bottom-color: var(--color-sub-green);
}

/* Center variant: lines animate outward from center */
.bl_secHead__center .bl_secHead_line:first-of-type {
  transform-origin: right center;
}

.bl_secHead__center .bl_secHead_line:last-of-type {
  transform-origin: left center;
}

/* Reveal when in view (via js_reveal → is_revealed) */
.bl_secHead.is_revealed .bl_secHead_line {
  transform: scaleX(1);
}

.bl_secHead__center.is_revealed .bl_secHead_line:first-of-type {
  transform: scaleX(1);
}

.bl_secHead__center.is_revealed .bl_secHead_line:last-of-type {
  transform: scaleX(1);
}

@media screen and (min-width: 768px) {
  .bl_secHead {
    padding-inline: 0;
    margin-bottom: 64px;
  }


  .bl_secHead_ttl {
    font-size: 144px;
    letter-spacing: 7.2px;
  }
}

/* ================================================
 矢印ボタンコンポーネント (el_btnArrow)
================================================ */
.el_btnArrow {
  display: flex;
  align-items: center;
  width: 200px;
  height: 48px;
  padding: 4px;
  background: var(--color-white);
  border-radius: 24px;
  text-decoration: none;
  overflow: hidden;
  transition: opacity 0.3s ease;
}

.el_btnArrow:hover {
  opacity: 0.7;
}

.el_btnArrow_txt {
  flex: 1;
  text-align: center;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 14px;
  line-height: 1;
  letter-spacing: 0.7px;
  color: var(--color-main);
}

.el_btnArrow_icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}

/* Green variant */
.el_btnArrow__green {
  background: var(--color-main);
  width: 280px;
}

.el_btnArrow__green .el_btnArrow_txt {
  color: var(--color-white);
}

/* Gradient variant */
.el_btnArrow__gradient {
  background: linear-gradient(to right, var(--color-main-dark), var(--color-sub-green));
  width: 240px;
}

.el_btnArrow__gradient .el_btnArrow_txt {
  color: var(--color-white);
}

