/* =======================================================
   Nichireku Recruit — Clean stylesheet (v2)
   - Layout & components unified across pages
   - Duplicates removed / overrides統合
   - Mobile-first; desktop via @media
======================================================= */

/* ----------------------------------
   CSS Custom Properties
----------------------------------- */
:root {
  
  --bg: #F8F6F1;
  --ink: #333;
  --muted: #8B8B8B;
  --card: #fff;
  --charcoal: #2F2F2F;
  --gold: #BDAA75;
  --gold-soft: #D6CBA6;
  --g-700: #0a8f3a;
  --g-300: #47d478;

  --color-text: #24323f;
  --color-heading: #102840;
  --color-accent: #0b74c5;

  
  --gutter: 20px;
  --radius: 16px;
  --sidebar-w: 270px;

  
  --shadow: 0 1.5px 5px rgba(0,0,0,.09), 0 0 1px rgba(0,0,0,.05);
  --btn-radius: 999px;
  --btn-shadow: 0 6px 18px rgba(0,0,0,.10);

  
  --faq-max: 1000px;
  --content-max: 1120px;

  
  --entry-grad-top: #e5f6ef;
  --entry-grad-btm: #bfe6d6;
  --linkbar-grad-top: var(--entry-grad-btm);
  --linkbar-grad-btm: #d9ecf7;
  --hero-btm: var(--bg);
  --company-grad-top: #ffffff;
  --company-grad-btm: #eaf7f2;
  --faq-grad-top: #e3f2f9;
  --faq-grad-btm: #ffffff;

  --font-base: "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Segoe UI",
    "Helvetica Neue", "Hiragino Sans", "Yu Gothic", "Meiryo", sans-serif;
}

/* ----------------------------------
   Reset / Base
----------------------------------- */
* {
  box-sizing: border-box;
  scrollbar-width: thin;
  scrollbar-color: var(--g-300) #f2f2f2;
}

html,
body {
  margin: 0;
  padding: 0;
  min-height: 100%;
  font-family: var(--font-base);
  font-size: 15px;
  line-height: 1.9;
  color: var(--color-text);
  -webkit-font-smoothing: antialiased;
}

/* ===== Global background gradient (top: white → pastel band → bottom: white) ===== */
body {
  background: linear-gradient(
    180deg,
    #ffffff 0%,   
    #f4fbf7 7%,   
    #d8f4ea 20%,  
    #d6ecfa 35%,  
    #f7e4f1 52%,  
    #ffe4d2 70%,  
    #ece3ff 88%,  
    #ffffff 100%  
  );
  background-attachment: scroll;  
  background-repeat: no-repeat;
  background-size: 100% 100%;
}

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

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

section {
  position: relative;
  z-index: 1;
  margin: 0;
  padding: clamp(56px, 9vw, 120px) 0;
}

.wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding-inline: clamp(16px, 3vw, 28px);
}

.wrap.narrow {
  max-width: 880px;
}

/* ----------------------------------
   Typography
----------------------------------- */
h1,
h2,
h3,
h4,
.h1,
.h2,
.h3 {
  font-family: var(--font-base);
  font-weight: 700;
  color: var(--color-heading);
  line-height: 1.5;
  letter-spacing: .04em;
  margin: 0 0 .6em;
}

h1,
.h1 {
  font-size: 2rem;
}

h2,
.h2 {
  font-size: clamp(22px, 3.3vw, 38px);
}

h3,
.h3 {
  font-size: 1.1rem;
}

p,
li {
  color: var(--color-text);
  line-height: 1.9;
}

.content main p {
  margin: 0 0 0.9em;
}

.small-text {
  font-size: .86rem;
  line-height: 1.9;
  color: #5f6a76;
}

.eyebrow {
  color: var(--gold);
  font-weight: 700;
  letter-spacing: .12em;
  margin-bottom: 6px;
  font-size: .85rem;
  text-transform: uppercase;
}

.sub {
  margin: 6px 0 0;
  color: #666;
  font-weight: 400;
  font-size: clamp(14px, 1.7vw, 18px);
  letter-spacing: .02em;
}

.lead {
  color: #454545;
  font-size: clamp(15px, 2vw, 18px);
  line-height: 1.95;
}

.hero-kicker,
.sec-head .eyebrow,
.page-benefits .benefits-hero-copy .eyebrow,
.roles-overview .section-title-en,
.mission-tag {
  font-size: .85rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #0b74c5;
  margin-bottom: .7rem;
}

.hero-large,
.hero-title,
.sec-head .h2,
.sec-head h2,
.page-benefits .benefits-hero-copy .title,
.roles-overview .section-title-ja,
.mission-title {
  font-size: clamp(1.9rem, 3.2vw, 2.6rem);
  line-height: 1.6;
  font-weight: 700;
  margin: 0 0 .6rem;
}

.hero-sub {
  font-size: .95rem;
  line-height: 1.9;
  color: #4a4a4a;
  margin: 0 0 .4rem;
}

.hero-lead,

.sec-head .sub,
.roles-overview .section-lead,
.mission-lead {
  font-size: .98rem;
  line-height: 1.9;
  color: #4a4a4a;
}

.content main ul {
  list-style: none;
  margin: 0 0 1.1em;
  padding: 0;
}

.content main ul li {
  position: relative;
  padding-left: 1.2em;
  margin-bottom: .3em;
  line-height: 1.9;
}

.content main ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .75em;
  width: .45em;
  height: .45em;
  border-radius: 999px;
  background: var(--color-accent);
}

.content main ul.plain-list li::before,
#company .card .related-links li::before {
  content: none;
}

.content main ul ul li::before {
  background: #9fb8d6;
}

.en-accent {
  font-family: "Poppins", var(--font-base);
  letter-spacing: .18em;
  text-transform: uppercase;
}

.num-accent {
  font-feature-settings: "pnum" 1, "lnum" 1;
}

section .sec-head,
section .lead-text,
section .text,
section p,
section .sub {
  margin-block: .8em;
}

.sec-head.center {
  margin-bottom: 2.4em;
}

.lead-text p {
  margin: .8em 0;
  line-height: 1.95;
}

/* ----------------------------------
   Buttons
----------------------------------- */
.btn{
  appearance:none;
  border:0;
  cursor:pointer;
  border-radius:var(--btn-radius);
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:.5em;
  padding:.8em 1.2em;
  font-weight:600;
  letter-spacing:.03em;
  line-height:1.5;
  text-decoration:none;
  position:relative;
  overflow:hidden;
  transition:transform .15s, filter .15s, box-shadow .15s, background .15s, color .15s;
  box-shadow:var(--btn-shadow);
}

.btn:hover{
  transform:translateY(-1px);
  filter:brightness(1.02);
}

.btn:active{
  transform:translateY(0);
  filter:brightness(0.98);
}

/* 優先度の整理：
   1) 応募（最重要）
   2) 情報を見る（セカンダリ）
   3) サブ導線（ゴースト）
   4) LINE（相談導線）
*/
.btn-entry{
  background:linear-gradient(135deg,var(--g-300),var(--g-700));
  color:#fff;
  box-shadow:0 12px 30px rgba(10,143,58,.35);
}

.btn-more{
  background:linear-gradient(135deg,#b6efd1,#73d5b6);
  color:#064e3b;
}

.btn-ghost{
  background:transparent;
  color:#047857;
  box-shadow:inset 0 0 0 1px rgba(10,143,58,.35), var(--btn-shadow);
}

.btn-line{
  background:linear-gradient(135deg,#21c05f,#0a8f3a);
  color:#fff;
}

.btn::before{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(90deg,rgba(71,212,120,.10),rgba(71,212,120,.95));
  transform:translateX(-100%);
  transition:transform .35s ease-out;
  z-index:-1;
  pointer-events:none;
}
.btn:hover::before{ transform:translateX(0); }
/* ----------------------------------
   Header (mobile-first)
----------------------------------- */
header.site-header {
  position: sticky;
  top: 0;
  z-index: 500;
  background: rgba(255,255,255,.88);
  border-bottom: 1px solid rgba(0,0,0,.05);
  backdrop-filter: saturate(150%) blur(10px);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand .logo {
  width: 52px;
  height: 52px;
  margin: 0;
  padding: 0;
  border: none;
  box-shadow: none;
  background: transparent;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.brand .logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.brand span {
  display: flex;
  flex-direction: column;
  justify-content: center;
  line-height: 1.2;
  letter-spacing: 0.14em;
  font-size: 0.9rem;
}

.brand span strong {
  font-size: 0.98rem;
  letter-spacing: 0.18em;
}

.brand span small {
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  opacity: 0.8;
}

.menu {
  display: none !important;
}

.hamburger {
  appearance: none;
  background: transparent;
  border: 0;
  padding: 10px;
  margin-right: -6px;
  cursor: pointer;
  border-radius: 10px;
  transition: background-color .2s;
	
  position: relative;  
  z-index: 510;        
}

.hamburger:hover {
  background: rgba(0,0,0,.04);
}

.hamburger span,
.hamburger span::before,
.hamburger span::after {
  position: relative;
  display: block;
  width: 26px;
  height: 2px;
  background: #333;
  content: "";
  transition: transform .2s, opacity .2s;
}

.hamburger span::before {
  position: absolute;
  top: -7px;
  left: 0;
}

.hamburger span::after {
  position: absolute;
  top: 7px;
  left: 0;
}

.hamburger[aria-expanded="true"] span {
  background: transparent;
}

.hamburger[aria-expanded="true"] span::before {
  transform: translateY(7px) rotate(45deg);
}

.hamburger[aria-expanded="true"] span::after {
  transform: translateY(-7px) rotate(-45deg);
}

/* =======================================================
   Drawer — full-screen / flat / readable (REPLACE ALL)
======================================================= */
@media (max-width: 1099px){

  /* overlay */
  #drawer.drawer{
    position: fixed;
    inset: 0;
    width: 100vw;
    height: 100vh;

    padding: max(72px, env(safe-area-inset-top) + 48px) 12px 18px;

    background: rgba(0, 60, 45, .28);
    backdrop-filter: blur(14px) saturate(130%);
    -webkit-backdrop-filter: blur(14px) saturate(130%);

    opacity: 0;
    pointer-events: none;
    transition: opacity .22s ease;
    z-index: 800;
  }

  #drawer.drawer.open{
    opacity: 1;
    pointer-events: auto;
  }

  /* backdrop (tap to close) */
  #drawer .drawer-backdrop{
    position: absolute;
    inset: 0;
  }

  /* panel */
  #drawer .drawer-panel{
    position: relative;
    width: min(92vw, 720px);
    margin: 0 auto;
    border-radius: 18px;

    background: rgba(255,255,255,.94);
    border: 1px solid rgba(0,0,0,.08);
    box-shadow: 0 18px 60px rgba(0,0,0,.18);

    overflow: hidden;
  }

  /* head (brand) */
  #drawer .drawer-head{
    padding: 14px 14px 12px;
    border-bottom: 1px solid rgba(0,0,0,.06);
    background: rgba(255,255,255,.94);
  }

  #drawer .drawer-brand{
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
    text-decoration: none;
  }

  #drawer .drawer-brand img{
    width: 38px;
    height: 38px;
    object-fit: contain;
    border-radius: 0; /* ロゴは素直に */
  }

  #drawer .drawer-brand span{
    display: grid;
    line-height: 1.15;
    letter-spacing: .10em;
  }

  #drawer .drawer-brand strong{
    font-size: .98rem;
    letter-spacing: .16em;
    color: #102840;
  }

  #drawer .drawer-brand small{
    font-size: .78rem;
    letter-spacing: .18em;
    opacity: .70;
    color: rgba(16,40,64,.85);
  }

  /* list */
  #drawer .drawer-list{
    list-style: none;
    margin: 0;
    padding: 10px;
    display: grid;
    gap: 8px;

    max-height: calc(100vh - max(72px, env(safe-area-inset-top) + 48px) - 190px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  #drawer .drawer-item a{
    display: grid;
    gap: 3px;
    padding: 14px 14px;
    border-radius: 14px;

    background: #fff;
    border: 1px solid rgba(0,0,0,.06);

    text-decoration: none;
    transition: background .14s ease, border-color .14s ease, transform .14s ease;
  }

  #drawer .drawer-item a:hover{
    transform: translateY(-1px);
    border-color: rgba(0, 140, 100, .28);
    background: rgba(224, 247, 238, .55);
  }

  #drawer .drawer-item .t{
    font-weight: 800;
    color: #102840;
    line-height: 1.35;
    letter-spacing: .02em;
  }

  #drawer .drawer-item .s{
    font-size: .84rem;
    color: rgba(16,40,64,.62);
    line-height: 1.45;
  }

  /* CTA (soft) */
  #drawer .drawer-cta{
    padding: 12px 14px 14px;
    display: grid;
    gap: 10px;

    border-top: 1px solid rgba(0,0,0,.06);
    background: rgba(255,255,255,.94);
  }

  #drawer .drawer-cta .btn{
    width: 100%;
    justify-content: center;
    box-shadow: none;
  }

  /* foot links (quiet) */
  #drawer .drawer-foot{
    padding: 10px 14px 14px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;

    background: rgba(248,246,241,.55);
    border-top: 1px solid rgba(0,0,0,.06);
  }

  #drawer .drawer-link{
    display: grid;
    place-items: center;
    padding: 10px 10px;

    border-radius: 999px;
    background: #fff;
    border: 1px solid rgba(0,0,0,.08);

    font-weight: 700;
    text-decoration: none;
    transition: background .14s ease, border-color .14s ease, transform .14s ease;
  }

  #drawer .drawer-link:hover{
    transform: translateY(-1px);
    border-color: rgba(0, 140, 100, .28);
    background: rgba(224, 247, 238, .55);
  }

  @media (max-width: 420px){
    #drawer .drawer-foot{ grid-template-columns: 1fr; }
  }
}

/* z-index */
.site-header{ position: sticky; top: 0; z-index: 900; }
.hamburger{ position: relative; z-index: 1000; }
#drawer.drawer{ z-index: 800; }

/* ----------------------------------
   Sidebar (desktop) / Content offset
----------------------------------- */
.sidebar {
  display: none;
}

.content {
  margin-left: 0;
}

@media (min-width: 1100px) {
  .sidebar {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: var(--sidebar-w);
    z-index: 300;
    background: transparent;
    border: 0;
    box-shadow: none;
  }

  .sidebar-inner {
    height: 100%;
    display: grid;
    grid-template-rows: auto 1fr auto;
    gap: 12px;
    padding: 60px 60px;
  }

  .s-brand {
    display: flex;
    gap: 10px;
    align-items: center;
    font-weight: 700;
    letter-spacing: .02em;
  }

  .s-brand img {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    object-fit: cover;
  }

  .s-brand small {
    font-weight: 600;
    color: #888;
    letter-spacing: .06em;
  }

  .s-nav {
    display: grid;
    gap: 6px;
    margin-top: 4px;
    padding-left: 0;
  }

  .s-nav a {
    display: flex;
    align-items: center;
    gap: 0.6em;
    background: transparent;
    border: 0;
    box-shadow: none;
    padding: 10px 0;
    font-weight: 700;
    font-size: 15px;
    letter-spacing: .02em;
    color: #222;
    transition: color .25s ease;
  }

  .s-nav a i {
    width: 1.2em;
    text-align: center;
    flex-shrink: 0;
    font-size: 0.95em;
  }

  .s-nav a:hover {
    color: var(--g-700);
  }

  .s-cta {
    display: grid;
    gap: 8px;
    margin-top: 4px;
  }

  .s-cta .btn {
    width: 100%;
    border-radius: 12px;
  }

  .s-sns {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 8px 0 6px 2px;
  }

  .s-sns .sns {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    background: #fff;
    color: #333;
    border: 1px solid rgba(0,0,0,.08);
    box-shadow: 0 4px 10px rgba(0,0,0,.06);
    transition: transform .15s, filter .15s, box-shadow .15s;
  }

  .s-sns .sns i {
    font-size: 1.1em;
  }

  .s-sns .sns:hover {
    transform: translateY(-1px);
    filter: brightness(1.03);
    box-shadow: 0 8px 18px rgba(0,0,0,.10);
  }

  .content {
    position: relative;
    z-index: 0;
    padding-left: var(--sidebar-w);
  }

  
  .s-nav a[href*="benefits"] {
    white-space: nowrap;
    font-size: 14px;
    letter-spacing: .01em;
  }
}

/* サイドバー：採用情報・募集要項だけ1行固定 */
@media (min-width: 1100px) {
  .s-nav a[href*="requirements"] {
    white-space: nowrap;
    font-size: 14px;
    letter-spacing: .01em;
  }
}


/* ----------------------------------
   Sticky footer layout
   ---------------------------------- */
/* header + main + footer を縦並びにして、
   main 部分を伸ばすことで、フッターを常に画面下に寄せる */
.content {
  display: flex;
  flex-direction: column;
  min-height: 100vh;      
}

.content main {
  flex: 1 0 auto;
}


/* ----------------------------------
   Mission
----------------------------------- */
.mission.gradient {
  position: relative;
  overflow: hidden;
  color: #222;
}

.mission.gradient::before {
  content: "";
  position: absolute;
  inset: 0;

  z-index: 0;
}

.mission.gradient::after {
  content: "";
  position: absolute;
  top: -160px;
  left: -160px;
  width: 720px;
  height: 720px;
  border-radius: 50%;
  opacity: .6;
  filter: blur(120px);
  z-index: 0;
  background: radial-gradient(
    circle at center,
    rgba(255,255,255,.95) 0%,
    rgba(255,255,255,0) 70%
  );
  animation: floatCloud 26s ease-in-out infinite alternate;
}

@keyframes floatCloud {
  0% { transform: translate(0,0) scale(1); }
  50% { transform: translate(-20px,20px) scale(1.02); }
  100% { transform: translate(20px,-10px) scale(1.03); }
}

.mission.gradient .wrap {
  position: relative;
  z-index: 1;
}

.mission.gradient .mission-body {
  text-align: center;
  color: #444;
  line-height: 2;
  
}

.mission-body .lead-text {
  margin: 0 0 28px;
  font-size: 18px;
}

.mission-body .lead-text.soft {
  color: #666;
  font-size: 15px;
}

/* ----------------------------------
   Cards / Grids
----------------------------------- */
.cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.card {
  background: var(--card);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform .2s, box-shadow .2s;
}

.card:hover {
  transform: translateY(-1px);
}

.card .thumb img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  border-radius: 8px;
  transition: transform .6s, opacity .4s;
}

.card:hover img {
  transform: scale(1.05);
  opacity: .95;
}

.card .title {
  padding: 14px 16px 6px;
  font-weight: 700;
}

.card .text {
  padding: 0 16px 16px;
  color: #555;
}

.card .more {
  padding: 12px 16px;
  border-top: 1px solid #eee;
  color: var(--gold);
  font-weight: 700;
}

@media (max-width: 960px) {
  .cards {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .cards {
    grid-template-columns: 1fr;
  }
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: start;
}

@media (max-width: 960px) {
  .grid-2 {
    grid-template-columns: 1fr;
  }
}

/* =========================================
   この採用サイトの歩き方（ミニフローチャート）
   ========================================= */
.site-walkthrough {
  padding-top: clamp(36px, 5vw, 56px);
  padding-bottom: clamp(40px, 6vw, 64px);
  background: transparent;
}

.site-walkthrough-head {
  text-align: center;
  margin-bottom: 24px;
}

.site-walkthrough-head .h3 {
  font-size: clamp(18px, 2.2vw, 22px);
}

.site-walkthrough-flow {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(150px, 1fr);
  gap: 10px;
  overflow-x: auto;
  padding: 10px 4px 4px;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory;
}

.site-walk-step {
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 14px 14px 12px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 2px 8px rgba(0,0,0,.06);
  border: 1px solid rgba(148, 163, 184, 0.4);
  min-height: 120px;
  text-decoration: none;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease, background .18s ease;
}

.site-walk-step:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0,0,0,.12);
  border-color: rgba(34, 197, 94, 0.6);
}

.site-walk-step.is-primary {
  background: linear-gradient(135deg, rgba(224, 247, 238, 0.9), rgba(191, 230, 214, 0.95));
  border-color: rgba(10, 143, 58, 0.55);
}

.site-walk-step.is-primary .step-title {
  color: #0a8f3a;
}

.step-label {
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #6b7280;
  margin-bottom: 4px;
}

.step-title {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 4px;
  line-height: 1.6;
}

.step-text {
  margin: 0;
  font-size: 12px;
  line-height: 1.7;
  color: #4b5563;
}

.site-walkthrough-note {
  margin-top: 16px;
  text-align: left;
}

@media (min-width: 880px) {
  .site-walkthrough-flow {
    grid-auto-flow: row;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    overflow: visible;
    padding-inline: 0;
  }

  .site-walk-step {
    min-width: 0;
  }
}

@media (max-width: 879px) {
  .site-walkthrough {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .site-walkthrough-flow {
    grid-auto-columns: minmax(72%, 1fr);
  }

  .site-walk-step {
    min-height: 128px;
  }

  .site-walkthrough-note {
    margin-top: 12px;
  }
}

.sp-only {
  display: none;
}

@media (max-width: 768px) {
  .sp-only {
    display: inline;
  }
}

/* ----------------------------------
   Company section
----------------------------------- */
#company {
  position: relative;
  background: linear-gradient(180deg, var(--company-grad-top) 0%, var(--company-grad-btm) 100%);
}

#company .wrap {
  position: relative;
}

#company .sec-head.center .h2 {
  position: relative;
  padding-bottom: .35em;
}

#company .sec-head.center .h2::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: clamp(84px, 12vw, 160px);
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    rgba(189,170,117,.9),
    rgba(115,213,182,.9)
  );
}

#company .cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(20px, 3vw, 32px);
  align-items: stretch;
}

@media (max-width: 768px) {
  #company .cards {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }
}

#company .card .related-links {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin: 16px 16px 12px;
  padding: 0;
  list-style: none;
}

#company .card .related-links li {
  margin: 0;
  padding: 0;
}

#company .card .related-links a {
  display: block;
  width: 100%;
  text-align: center;
  padding: 10px 16px;
  border-radius: 999px;
  font-weight: 500;
  font-size: .95rem;
  text-decoration: none;
  white-space: normal;
  word-break: break-word;
  box-shadow: 0 1px 1px rgba(0,0,0,.03);
  transition: .2s;
}

@media (max-width: 768px) {
  #company .card .related-links {
    margin: 14px 12px 10px;
    padding-inline: 12px;
  }

  #company .card .related-links a {
    width: 100%;
    margin: 0 0 8px;
    display: block;
  }

  #company .cards.grid-4 {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }

  #company .thumb img {
    aspect-ratio: 16 / 9;
    object-fit: cover;
  }

  #company .lead-text {
    max-width: 100% !important;
    margin: 0 0 24px !important;
    padding: 0 12px;
    line-height: 1.9;
  }

  #company .card .related-links {
    margin: 14px 0 8px !important;
    gap: 8px !important;
  }

  #company .wrap {
    padding-inline: 16px !important;
  }
}

#company .card:nth-of-type(1) .related-links a {
  background: linear-gradient(180deg, #f9fbfa, #f4f8f6);
  border: 1px solid rgba(0,80,50,.12);
  color: #084c31;
}

#company .card:nth-of-type(1) .related-links a:hover {
  background: linear-gradient(180deg, #f6fbf8, #eef6f2);
  border-color: rgba(0,80,50,.2);
  color: #0b6;
}

#company .card:nth-of-type(2) .related-links a {
  background: linear-gradient(180deg, #f8fbfc, #f3f7fb);
  border: 1px solid rgba(30,80,160,.12);
  color: #1d4d80;
}

#company .card:nth-of-type(2) .related-links a:hover {
  background: linear-gradient(180deg, #f5f9fc, #edf4fa);
  border-color: rgba(30,80,160,.22);
  color: #0078c8;
}

#company .card:nth-of-type(3) .related-links a {
  background: linear-gradient(180deg, #fdfbf9, #faf7f4);
  border: 1px solid rgba(140,100,40,.12);
  color: #755f3a;
}

#company .card:nth-of-type(3) .related-links a:hover {
  background: linear-gradient(180deg, #fdfaf6, #f7f3ee);
  border-color: rgba(140,100,40,.22);
  color: #b48a53;
}

#company .card:nth-of-type(4) .related-links a {
  background: linear-gradient(180deg, #fffaf7, #fef6f1);
  border: 1px solid rgba(180,90,0,.12);
  color: #a25400;
}

#company .card:nth-of-type(4) .related-links a:hover {
  background: linear-gradient(180deg, #fff8f3, #fdf3eb);
  border-color: rgba(180,90,0,.22);
  color: #d67200;
}

/* ----------------------------------
   Interview carousel
----------------------------------- */
#interview.people {
  overflow: visible;
}

#interview .row {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory;
  padding-inline: var(--gutter);
}

#interview .person {
  flex: 0 0 100%;
  scroll-snap-align: start;
  background: #fff;
  border-radius: 16px;
  box-shadow: var(--shadow);
}

#interview .person img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
}

#interview .person .msg {
  padding: 16px;
}

.people .bubble {
  background: var(--bg);
  border-left: 3px solid var(--gold);
  padding: 10px 12px;
  border-radius: 12px;
}

@media (min-width: 768px) {
  #interview .row {
    overflow: visible;
  }

  #interview .person {
    flex: 0 0 calc(33.333% - 10px);
  }
}

@media (max-width: 720px) {
  section .wrap > .sec-head {
    padding-inline: var(--gutter);
  }

  section .wrap > .cards,
  #interview .row {
    padding-inline: var(--gutter);
  }
}

@media (max-width: 768px) {
  #interview .row {
    display: flex !important;              
    gap: 16px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    padding-inline: var(--gutter);
  }

  #interview .person-card {
    flex: 0 0 80%;
    min-width: 80%;
    scroll-snap-align: start;
  }
}

/* ----------------------------------
   President Interview
----------------------------------- */
#president-interview {
  position: relative;
}

#president-interview .wrap {
  max-width: 1120px;
}

.president-card {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: stretch;
  padding: 24px 24px 26px;
  border-radius: 20px;
  background: #ffffff;
  box-shadow: 0 10px 30px rgba(0,0,0,.10);
}

.president-photo {
  flex: 0 0 320px;
  max-width: 360px;
}

.president-photo .photo-frame {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 26px rgba(0,0,0,.18);
  background: #e5ece9;
}

.president-photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.president-body {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.president-pill {
  display: inline-flex;
  align-items: center;
  gap: .4em;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(11,116,197,.05);
  color: #0b74c5;
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.president-points {
  list-style: none;
  margin: 4px 0 6px;
  padding: 0;
}

.president-points li {
  position: relative;
  padding-left: 1.2em;
  margin-bottom: 2px;
  font-size: 0.9rem;
  color: #4a5563;
  line-height: 1.8;
}

.president-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.78em;
  width: .42em;
  height: .42em;
  border-radius: 999px;
  background: var(--g-300);
}

.president-quote {
  position: relative;
  margin-top: 6px;
  padding: 16px 18px 14px 46px;
  border-radius: 14px;
  background: linear-gradient(
    135deg,
    rgba(255,255,255,0.9),
    rgba(245,252,249,0.95)
  );
  border: 1px solid rgba(0,0,0,.04);
}

.president-quote-mark {
  position: absolute;
  left: 16px;
  top: 10px;
  font-family: "Georgia", "Times New Roman", serif;
  font-size: 32px;
  line-height: 1;
  color: rgba(189,170,117,.85);
}

.president-quote-body h3 {
  margin: 0 0 6px;
  font-size: 1.02rem;
  color: #12395e;
}

.president-quote-body p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.9;
  color: #4a4a4a;
}

#president-interview .cta {
  margin-top: 12px;
}

@media (max-width: 768px) {
  .president-card {
    padding: 18px 16px 20px;
    border-radius: 18px;
  }

  .president-photo {
    flex: 0 0 auto;
    max-width: 100%;
  }

  .president-body {
    gap: 12px;
  }

  .president-quote {
    padding: 14px 14px 12px 42px;
  }

  .president-quote-mark {
    left: 14px;
    top: 8px;
    font-size: 28px;
  }

  #president-interview .cta {
    justify-content: flex-start;
  }

  #president-interview .btn.sm {
    width: 100%;
    justify-content: center;
  }
}

/* ----------------------------------
   President Interview
---------------------------------- */

.president-intro {
  padding: 80px 0;
  background: linear-gradient(135deg, #fff7f9, #ffeef5);
}

@media (max-width: 768px) {
  .president-intro {
    padding: 56px 0;
  }
}

.president-intro .wrap.narrow {
  max-width: 960px;
}

.president-card {
  margin-top: 32px;
  padding: 32px;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 18px 45px rgba(185, 132, 160, 0.18);
  display: flex;
  gap: 32px;
  align-items: stretch;
}

@media (max-width: 768px) {
  .president-card {
    flex-direction: column;
    padding: 24px 20px 20px;
    gap: 20px;
  }
}

.president-face {
  flex: 0 0 260px;
  padding-right: 24px;
  border-right: 1px solid rgba(0, 0, 0, 0.04);
  text-align: center;
}

@media (max-width: 768px) {
  .president-face {
    flex: none;
    padding-right: 0;
    padding-bottom: 20px;
    margin-bottom: 10px;
    border-right: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  }
}

.president-label {
  font-size: 13px;
  letter-spacing: 0.16em;
  color: #999;
  margin-bottom: 12px;
}

.president-photo {
  width: 180px;
  height: 180px;
  margin: 0 auto 16px;
  border-radius: 999px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.president-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.president-name {
  font-size: 15px;
  font-weight: 600;
  color: #27415a;
  line-height: 1.6;
}

.president-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.president-pill {
  align-self: flex-start;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(255, 122, 164, 0.12);
  color: #cc4a7b;
  font-size: 12px;
  letter-spacing: 0.16em;
}

.president-message h3 {
  margin: 0 0 8px;
  font-size: 18px;
  line-height: 1.7;
}

.president-message p {
  margin: 0;
  font-size: 14px;
  line-height: 1.9;
}

.president-points {
  list-style: none;
  margin: 0;
  padding: 14px 16px;
  border-radius: 16px;
  background: #fff7fb;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
}

.president-points li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13px;
}

.president-points span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: #ff9bbd;
  color: #fff;
  font-size: 11px;
  font-weight: 600;
}

@media (max-width: 768px) {
  .president-points {
    flex-direction: column;
  }
}

.president-intro .cta-right {
  margin-top: 20px;
}

/* ----------------------------------
   Forms
----------------------------------- */
.form-modern {
  --border: #E7E4DC;
  --focus: var(--gold);
}

.form-modern fieldset {
  padding: 20px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.form-modern legend {
  padding: 0 8px;
  color: var(--gold);
  font-weight: 700;
}

.form-modern .row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-modern .field {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-modern .field label {
  font-size: 12px;
  color: #666;
}

.form-modern input,
.form-modern select,
.form-modern textarea {
  min-height: 48px;
  padding: 14px 12px;
  font-size: 16px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  transition: border-color .2s, box-shadow .2s;
}

.form-modern textarea {
  min-height: 120px;
  resize: vertical;
}

.form-modern input:focus,
.form-modern select:focus,
.form-modern textarea:focus {
  outline: none;
  border-color: var(--focus);
  box-shadow: 0 0 0 4px rgba(189,170,117,.15);
}

.form-modern .actions {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  margin-top: 8px;
}

.form-modern .btn {
  border-radius: 12px;
  padding: 12px 18px;
}

.form-modern .float input,
.form-modern .float textarea {
  padding-top: 22px;
}

.form-modern .float .flabel {
  position: absolute;
  left: 12px;
  top: 10px;
  font-size: 12px;
  color: #777;
  background: #fff;
  padding: 0 4px;
  transition: .15s;
}

.form-modern .float input:focus + .flabel,
.form-modern .float textarea:focus + .flabel,
.form-modern .float input:not(:placeholder-shown) + .flabel,
.form-modern .float textarea:not(:placeholder-shown) + .flabel {
  top: -8px;
  color: var(--gold);
}

@media (max-width: 960px) {
  .form-modern .row {
    grid-template-columns: 1fr;
  }
}

.job-tags {
  list-style: none;
  margin: 0;
  padding: 0;
}

.job-tags li::marker {
  content: "";
}

/* ----------------------------------
   FAQ
----------------------------------- */
#faq {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #e3f2f9 0%, #ffffff 100%);
}

#faq .wrap {
  position: relative;
}

#faq .panel {
  padding: 18px;
  background: #fff;
  border: 1px solid rgba(0,0,0,.05);
  border-radius: 18px;
  box-shadow: 0 6px 24px rgba(0,0,0,.06);
   max-width: none;
  margin-left: 0;
  margin-right: 0;
}

#faq .group {
  margin: 0 0 22px;
}

#faq .group > .label {
  margin: 0 0 10px;
  color: #7a7a7a;
  font-weight: 700;
  letter-spacing: .06em;
  display: flex;
  align-items: center;
  gap: .6em;
}

#faq .qa {
  display: block;
  padding: 14px;
  background: #fff;
  border: 1px solid rgba(0,0,0,.06);
  border-radius: 14px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.7);
}

#faq .qa + .qa {
  margin-top: 12px;
}

#faq .qicon {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: #eaf6ee;
  color: var(--g-700);
  font-weight: 700;
}

#faq .toggle {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(0,0,0,.14);
  border-radius: 999px;
  font-size: 20px;
  color: #666;
  transition: transform .2s;
}

#faq details[open] .toggle {
  transform: rotate(45deg);
}

#faq summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  cursor: pointer;
  flex-wrap: nowrap;
}

#faq summary .question {
  flex: 1;
  min-width: 0;
  white-space: normal;
  overflow-wrap: anywhere;
  line-height: 1.6;
  font-weight: 700;
  color: #2b2b2b;
}

#faq .answer {
  padding: 12px 12px 4px 60px;
  color: #555;
  line-height: 1.8;
}

@media (max-width: 640px) {
  #faq summary {
    align-items: flex-start;
  }

  #faq .qicon {
    width: 30px;
    height: 30px;
  }

  #faq .toggle {
    margin-left: 8px;
  }

  #faq .answer {
    padding-left: 48px;
  }
}

@media (min-width: 1100px) {
  #faq .wrap {
    padding-left: calc(var(--sidebar-w) + clamp(16px, 3vw, 28px)) !important;
    padding-right: clamp(16px, 3vw, 28px);
  }

  #faq .sec-head {
    text-align: left !important;
  }

  #faq .panel {
    max-width: var(--content-max) !important;
  }
}

.faq-q {
  width: 100%;
  text-align: left;
  padding: 18px 20px;
  font-size: 1.1rem;
  font-weight: 600;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: #fff;
  cursor: pointer;
  position: relative;
}

.faq-q::after {
  content: '+';
  position: absolute;
  right: 20px;
  top: 18px;
  font-size: 1.2rem;
  transition: .3s;
}

.faq-item.active .faq-q::after {
  content: '−';
}

.faq-a {
  display: none;
  padding: 15px 20px 5px;
  border-left: 2px solid var(--accent);
  margin-bottom: 22px;
  background: #fafafa;
  border-radius: 0 0 8px 8px;
}

.faq-item.active .faq-a {
  display: block;
}

:is(#about,#benefits,#roles,#top,#entry) #faq .wrap{
  padding-left: clamp(16px, 3vw, 28px) !important;
  padding-right: clamp(16px, 3vw, 28px) !important;
}

:is(#about,#benefits,#roles,#top,#entry) #faq .panel{
  margin-left: auto !important;
  margin-right: auto !important;
  max-width: var(--content-max) !important; 
  width: 100%;
}

/* ----------------------------------
   Entry
----------------------------------- */
#entry {
  position: relative;
  color: #123;
}

#entry .wrap {
  position: relative;
  z-index: 5;
}

#entry .cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

#entry .card {
  padding: 18px;
  border-radius: 16px;
  background: rgba(255,255,255,.9);
  border: 1px solid rgba(0,0,0,.06);
  box-shadow: 0 8px 30px rgba(0,0,0,.10);
}

#entry .card h3 {
  margin: 0 0 8px;
  font-size: clamp(18px, 2.2vw, 22px);
}

#entry .card p {
  margin: 0 0 12px;
  color: #445;
}

#entry .card .btn {
  min-width: 220px;
}

#entry .heroimg {
  border-radius: 16px;
  box-shadow: 0 6px 24px rgba(0,0,0,.10);
}

#entry .heroimg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 16 / 7;
}

@media (max-width: 860px) {
  #entry .cards {
    grid-template-columns: 1fr;
  }
}

/* ----------------------------------
   Link bar (above footer)
----------------------------------- */
.linkbar {
  padding: clamp(20px, 3vw, 32px) 0;
  background: transparent;              
  border-block: none;                   
}

.linkbar .linkbar-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(12px, 2vw, 18px);
}

.linkbar .linkcard {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: clamp(12px, 2vw, 18px) clamp(14px, 2.2vw, 20px);
  border-radius: 14px;
  font-weight: 700;
  letter-spacing: .03em;
  background: #fff;
  border: 1px solid rgba(0,0,0,.06);
  box-shadow: 0 6px 18px rgba(0,0,0,.08);
  transition: transform .15s, box-shadow .15s, filter .15s;
}

.linkbar .linkcard:hover {
  transform: translateY(-2px);
  filter: brightness(1.01);
  box-shadow: 0 10px 26px rgba(0,0,0,.12);
}

.linkbar .label {
  color: #1f2f2b;
  font-size: clamp(14px, 1.8vw, 18px);
}

.linkbar .arrow {
  font-size: 22px;
  opacity: .7;
}

.linkbar .banner {
  display: block;
  height: 56px;
  max-width: 100%;
  object-fit: contain;
  flex: 0 0 auto;
}

.linkbar .banner.ph {
  width: 220px;
  height: 64px;
  border-radius: 10px;
  background: repeating-linear-gradient(
    45deg,
    #eef3f1 0 10px,
    #e6ecea 10px 20px
  );
  box-shadow: inset 0 0 0 1px rgba(0,0,0,.06);
}

.linkbar .linkcard::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  background: linear-gradient(
    90deg,
    rgba(255,255,255,0) 0%,
    rgba(0,0,0,.04) 50%,
    rgba(255,255,255,0) 100%
  );
  transition: opacity .25s;
}

.linkbar .linkcard:hover::after {
  opacity: .8;
}

@media (max-width: 900px) {
  .linkbar .linkbar-row {
    grid-template-columns: 1fr;
  }

  .linkbar .banner {
    height: 48px;
  }
}

@media (max-width: 600px) {
  .linkbar .linkcard {
    gap: 10px;
  }

  .linkbar .banner {
    height: 44px;
  }

  .linkbar .banner.ph {
    width: 180px;
    height: 54px;
  }
}

/* ----------------------------------
   Footer
----------------------------------- */
footer {
  margin-top: 0;
  padding: 40px 0 0;
  color: #333;               
  background: transparent;   
  border-top: 1px solid rgba(0,0,0,0.06); 
}

footer .cols {
  display: grid;
  grid-template-columns: 2fr 1.2fr 1.2fr;
  gap: 24px;
}

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

footer a:hover {
  text-decoration: underline;  
  opacity: 1;                  
}

.footer-menu strong {
  display: block;
  margin-bottom: 8px;
  font-weight: 700;
}

.footer-menu nav {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 8px 16px;
}

.footer-menu nav a {
  line-height: 1.6;
  opacity: .95;
}

.footer-sns {
  display: flex;
  gap: 14px;
  justify-content: center;
  align-items: center;
  margin-top: 10px;
}

.footer-sns .sns {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,.15);
  color: #fff;
  font-size: 18px;
  text-decoration: none;
  transition: all .3s ease;
}

.footer-sns .sns:hover {
  background: #fff;
  color: #333;
  transform: translateY(-2px);
}

footer .copy,
footer .copyright {
  display: block;
  text-align: center;
  padding: 18px 0 12px;
  font-size: 12.5px;
  letter-spacing: .08em;
  color: rgba(255,255,255,.72);
  border-top: 1px solid rgba(255,255,255,.10);
}

footer .copy small,
footer .copyright small {
  opacity: .8;
}

footer .copyright {
  margin-top: 24px;
}

@media (max-width: 920px) {
  footer .cols {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  footer .copy,
  footer .copyright {
    width: 100%;
    max-width: none;
    margin: 24px auto 0;
  }
}

@media (min-width: 960px) {
  footer .cols {
    grid-template-columns: 2fr 1.4fr;
    align-items: flex-start;
  }

  footer .cols > div:first-child > div:last-child {
    display: none;
  }

  .footer-menu {
    display: none;
  }

  footer .copy,
  footer .copyright {
    
    width: 100%;
    max-width: none;
    margin: 24px auto 0;
    padding-left: 0;
    padding-right: 0;
    position: static;
    left: auto;
    transform: none;
  }
}

/* ----------------------------------
   Utilities & effects
----------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity .6s, transform .6s;
}

.reveal.on {
  opacity: 1;
  transform: none;
}

.letters span {
  display: inline-block;
  opacity: 0;
  transform: translateY(.6em);
  filter: blur(4px);
}

.letters.on span {
  opacity: 1;
  transform: none;
  filter: none;
  transition: transform .6s, opacity .6s, filter .6s;
}

.letters.on span[data-i] {
  transition-delay: calc(var(--d, 0) * 1ms);
}


.parallax {
  will-change: transform;
}

.parallax.bg-soft {
  position: absolute;
  inset: -10%;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(45% 60% at 20% 10%, rgba(189,170,117,.10), transparent 60%),
    radial-gradient(35% 55% at 80% 20%, rgba(71,212,120,.08), transparent 60%);
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(24px);
  mix-blend-mode: screen;
  opacity: .35;
}

.orb.a {
  top: -12vmax;
  left: -10vmax;
  width: 40vmax;
  height: 40vmax;
  background: radial-gradient(
    circle at 30% 30%,
    rgba(189,170,117,.30),
    transparent 60%
  );
}

.orb.b {
  bottom: -16vmax;
  right: -10vmax;
  width: 44vmax;
  height: 44vmax;
  background: radial-gradient(
    circle at 60% 40%,
    rgba(71,212,120,.25),
    transparent 60%
  );
}

@media (prefers-reduced-motion: reduce) {
  .parallax {
    transform: none !important;
  }

  .letters span {
    transition: none;
  }
}

#scrollTop {
  position: fixed;
  right: 16px;
  bottom: 16px;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: #fff;
  color: #333;
  font-size: 18px;
  cursor: pointer;
  z-index: 60;
  opacity: 0;
  visibility: hidden;
  border: 1px solid rgba(0,0,0,.12);
  box-shadow: 0 8px 24px rgba(0,0,0,.12);
  transition: opacity .25s, visibility .25s, transform .15s;
}

#scrollTop:hover {
  transform: translateY(-1px);
}

#scrollTop.on {
  opacity: 1;
  visibility: visible;
}

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #f2f2f2;
}

::-webkit-scrollbar-thumb {
  border-radius: 8px;
  background: linear-gradient(180deg, var(--g-300), var(--g-700));
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #5ee98b, #13a04b);
}

.mt-8 { margin-top: 8px; }
.mt-12 { margin-top: 12px; }
.mt-14 { margin-top: 14px; }
.mt-32 { margin-top: 32px; }
.mt-44 { margin-top: 44px; }
.mb-8 { margin-bottom: 8px; }
.mb-10 { margin-bottom: 10px; }
.mb-12 { margin-bottom: 12px; }
.mb-16 { margin-bottom: 16px; }
.mb-18 { margin-bottom: 18px; }
.mb-20 { margin-bottom: 20px; }

.cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.cta-center { justify-content: center; }
.cta-right { justify-content: flex-end; }
.cta-gap-md { gap: 12px; }

.lead-wide {
  max-width: 820px;
  margin: 0 auto 56px;
  line-height: 1.9;
}

.btn-min-220 { min-width: 220px; }
.text-muted { color: #666; }
.text-white { color: #fff; }
.text-soft { opacity: 0.95; }

.embed-frame {
  aspect-ratio: 4 / 3;
  background: #fff;
  border-radius: 16px;
  display: grid;
  place-items: center;
  box-shadow: var(--shadow);
}

.embed-placeholder {
  color: #999;
}

.heroimg.mb-18 { margin-bottom: 18px; }
.cards-no-top { margin-top: 0; }

.person-delay-sm { transition-delay: 0.06s; }
.person-delay-md { transition-delay: 0.12s; }
.card-delay-sm { transition-delay: 0.08s; }

/* ----------------------------------
   Global mobile tightening
----------------------------------- */
@media (max-width: 900px) {
  .cards {
    grid-template-columns: 1fr !important;
  }

  .grid-2 {
    grid-template-columns: 1fr !important;
  }

  section {
    padding-block: clamp(40px, 9vw, 64px);
  }

  section > .wrap {
    padding-inline: 16px !important;
  }

  .sec-head .h2 {
    word-break: keep-all;
    overflow-wrap: anywhere;
  }
}

@media (min-width: 1100px) {
  header.site-header {
    display: none;
  }
}

/* =========================================
   TOPページ専用：セクションの縦余白を調整
   ========================================= */

.page-top section {
  padding-block: clamp(48px, 7.5vw, 96px);
}

.page-top #entry {
  padding-block: clamp(60px, 8vw, 104px);
}

@media (max-width: 900px) {
  .page-top section {
    padding-block: clamp(36px, 9vw, 60px);
  }

  .page-top #entry {
    padding-block: clamp(48px, 10vw, 72px);
  }
}

.page-top section .sec-head.center {
  margin-bottom: 2em;  
}

/* ===========================
   トップページ専用：セクション背景を透明に
   （footer / linkbar はそのまま色付き）
=========================== */

#top #company,
#top #faq,
#top #entry {
  background: transparent;
}

#top .mission.gradient {
  background: transparent;
}

#top .hero {
  background: transparent;
}

.hero {
  background: transparent !important;
  padding-top: 0;
  padding-bottom: 0;
}

.hero .hero-inner {
  background: transparent !important;
}

/* =======================================
   ENTRY セクション（トップの募集案内）
   ======================================= */

#entry {
  position: relative;
  padding: clamp(56px, 8vw, 96px) 0;
  color: #123;
  background: transparent; 
}

#entry .wrap {
  max-width: 1040px;
  margin: 0 auto;
}

#entry .sec-head.center {
  margin-bottom: 32px;
}

#entry .cta-band.bubble {
  max-width: 960px;
  margin: 0 auto 26px;
  padding: clamp(28px, 5vw, 40px) clamp(20px, 4vw, 40px);
  text-align: center;
  color: #fff;
  border-radius: 22px;
  background: linear-gradient(135deg, var(--g-700), var(--g-300));
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.18);
}

#entry .cta-band.bubble h3 {
  font-size: clamp(1.4rem, 2.2vw, 1.6rem);
}

#entry .cta-band.bubble p {
  max-width: 640px;
  margin: 0 auto 16px;
}

#entry .cta-band .btn {
  border-radius: 999px;
  border: 2px solid rgba(255, 255, 255, 0.85);
}

#entry .cta-band .btn.btn-ghost {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

#entry .heroimg {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.14);
}

#entry .heroimg img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  aspect-ratio: 16 / 7;
}

#entry .cards {
  margin-top: 26px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

#entry .card {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 22px 22px 24px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(0, 0, 0, 0.04);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.12);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

#entry .card:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.16);
}

#entry .card h3 {
  margin: 0 0 8px;
  font-size: 1.05rem;
}

#entry .card p {
  margin: 0 0 12px;
}

#entry .card .soft,
.soft {
  color: #5a6673;
}

#entry .page-summary {
  list-style: none;
  margin: 0 0 1rem;
  padding: 0;
}

#entry .page-summary li {
  position: relative;
  padding-left: 1.3em;
  margin-bottom: 0.25em;
  font-size: 0.94rem;
  line-height: 1.9;
}

#entry .page-summary li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 0.45em;
  height: 0.45em;
  border-radius: 999px;
  background: var(--g-300);
}

#entry .card .cta {
  margin-top: auto;
}

#entry .btn-entry {
  min-width: 220px;
}

@media (max-width: 900px) {
  #entry .cta-band.bubble {
    text-align: left;
    padding-inline: 20px;
  }

  #entry .cta-band .cta {
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  #entry .cards {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  #entry .btn-entry {
    width: 100%;
    justify-content: center;
  }

  #entry .cta-band .btn {
    width: 100%;
    justify-content: center;
  }
}

.embed-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* ==== Footer text & copyright color unify (after background変更用) ==== */

footer,
footer a {
  color: #444;  
}

footer .copy,
footer .copyright {
  color: #444;
  opacity: 1;              
  border-top: 1px solid rgba(0, 0, 0, 0.06);  
}

footer .copy small,
footer .copyright small {
  opacity: 0.9;
}

/* ================================
   Linkbar banners – redesigned
   2枚のバナーをフラットな横長バナー風に
================================ */

.linkbar .linkbar-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(14px, 2vw, 20px);
}

.linkbar .linkcard {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 24px;
  border-radius: 18px;
  text-decoration: none;
  border: none;
  box-shadow: none;
  background: transparent;
  overflow: hidden;
}

.linkbar .linkcard::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity .25s;
  pointer-events: none;
}

.linkbar .linkcard:hover::after {
  opacity: .12;
}

.linkbar .label {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-weight: 700;
  font-size: 0.95rem;
  line-height: 1.5;
}

.linkbar .label small {
  font-weight: 500;
  font-size: 0.82rem;
  opacity: 0.9;
}

.linkbar .arrow {
  position: relative;
  z-index: 1;
  font-size: 22px;
  line-height: 1;
  opacity: 0.9;
}

.linkbar .banner {
  display: none;
}

/* --------------------------------
   1枚目：コーポレートサイト用（グリーン〜ブルー系）
-------------------------------- */
.linkbar .linkcard:nth-child(1) {
  background: linear-gradient(
    135deg,
    #e9f6f1 0%,
    #d4efe8 30%,
    #cfe7f7 70%,
    #e6eefb 100%
  );
  color: #1c3b3a;
}

.linkbar .linkcard:nth-child(1)::after {
  background: radial-gradient(
    circle at 80% 20%,
    rgba(255,255,255,0.6),
    transparent 60%
  );
}

/* --------------------------------
   2枚目：採用サイト／エントリー用（ピンク〜オレンジ系）
-------------------------------- */
.linkbar .linkcard:nth-child(2) {
  background: linear-gradient(
    135deg,
    #fbeaf1 0%,
    #fce1d5 35%,
    #fde6c0 70%,
    #f9ecdd 100%
  );
  color: #5b3530;
}

.linkbar .linkcard:nth-child(2)::after {
  background: radial-gradient(
    circle at 85% 25%,
    rgba(255,255,255,0.7),
    transparent 60%
  );
}

@media (max-width: 900px) {
  .linkbar .linkbar-row {
    grid-template-columns: 1fr;
  }

  .linkbar .linkcard {
    padding: 16px 18px;
  }
}

/* ==================================
   ABOUT：PHILOSOPHY ブロック
================================== */
.philosophy {
  padding: 80px 0;
}

.ph-block {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: 32px;
  align-items: center;
  margin-top: 40px;
}

.ph-block--reverse {
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
}

.ph-block-text {
  font-size: 15px;
  line-height: 2;
  color: #444;
}

.ph-kicker {
  margin: 0 0 8px;
  font-size: 13px;
  letter-spacing: .08em;
  color: #0b74c5;
}

.ph-title {
  margin: 0 0 16px;
  font-size: 20px;
  font-weight: 700;
}

.ph-points {
  margin: 16px 0 16px 1.2em;
  padding: 0;
}

.ph-points li {
  list-style: disc;
  margin: 4px 0;
}

.ph-block-media img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 12px 30px rgba(0,0,0,.12);
}

.ph-block-media--card {
  display: flex;
  justify-content: center;
  align-items: stretch;
}

.ph-3r-card {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 220px;
  padding: 24px 32px;
  border-radius: 18px;
  background: linear-gradient(135deg, #e7f4ff, #fff8e6);
  box-shadow: 0 14px 40px rgba(0,0,0,.12);
  text-align: center;
}

.ph-3r-card-label {
  margin: 0;
  font-size: 18px;
  line-height: 1.8;
  font-weight: 700;
  color: #234;
}

.ph-3r-card-label span {
  font-size: 1.2em;
  color: #0b74c5;
}

.ph-3r-list {
  margin: 16px 0 20px;
}

.ph-3r-row {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 8px 20px;
  padding: 10px 0;
  border-bottom: 1px dashed #d5dde6;
}

.ph-3r-row dt {
  font-weight: 700;
  color: #0b74c5;
}

.ph-3r-row dd {
  margin: 0;
  color: #444;
}

.ph-mission {
  margin-top: 56px;
}

.ph-mission-inner {
  max-width: 720px;
  margin: 0 auto;
  padding: 32px 26px 36px;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 16px 40px rgba(0,0,0,.08);
  text-align: center;
}

.ph-mission-eyebrow {
  margin-bottom: 8px;
  font-size: 12px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: #0b74c5;
}

.ph-mission-title {
  margin: 0 0 16px;
  font-size: 22px;
  line-height: 1.6;
}

.ph-mission-text {
  margin: 0 0 10px;
  font-size: 14px;
  line-height: 2;
  color: #555;
}

@media (max-width: 960px) {
  .ph-block,
  .ph-block--reverse {
    grid-template-columns: 1fr;
  }
}

/* =========================================================
   ROLES（職種・事業を知る）
   ======================================================= */

#roles-hero .hero-kicker {
  letter-spacing: 0.16em;
}

#roles-hero .hero-main {
  font-size: clamp(2.2rem, 3.1vw, 2.8rem);
}

/* ---------- ４つの事業フィールド ---------- */

.roles-overview {
  padding: 80px 0;
}

.roles-overview .sec-head {
  margin-bottom: 40px;
}

.roles-overview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.roles-node {
  background: #fff;
  border-radius: 18px;
  padding: 24px 22px 26px;
  box-shadow: 0 10px 24px rgba(11, 28, 63, 0.06);
  border: 1px solid rgba(15, 58, 105, 0.05);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.roles-node-icon {
  width: 56px;
  height: 56px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 4px;
  background: rgba(15, 111, 161, 0.06);
}

.roles-node-icon img {
  max-width: 32px;
  height: auto;
}

.roles-node-title {
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.6;
  color: var(--text-strong, #143047);
}

.roles-node p {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--text-muted, #4c6073);
}

.roles-node--home .roles-node-icon {
  background: rgba(32, 132, 197, 0.08);
}

.roles-node--trip .roles-node-icon {
  background: rgba(49, 166, 131, 0.08);
}

.roles-node--stay .roles-node-icon {
  background: rgba(230, 163, 79, 0.08);
}

.roles-node--food .roles-node-icon {
  background: rgba(206, 96, 96, 0.08);
}

.roles-overview-caption {
  margin-top: 28px;
  text-align: center;
  font-size: 0.95rem;
  color: var(--text-muted, #4c6073);
}

/* ---------- mission ブロック（roles 共有） ---------- */

.mission-block {
  padding: 80px 0;

}

.mission-block:nth-of-type(even) {
  background: none;
}

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

.mission-header {
  max-width: 640px;
}

.mission-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: rgba(15, 58, 105, 0.05);
  color: var(--accent, #0f3a69);
  margin-bottom: 10px;
}

.mission-title {
  font-size: clamp(1.5rem, 2vw, 1.8rem);
  line-height: 1.6;
  margin-bottom: 10px;
  color: var(--text-strong, #143047);
}

.mission-lead {
  font-size: 0.98rem;
  line-height: 1.9;
  color: var(--text-muted, #4c6073);
}

.mission-body {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 32px;
  align-items: flex-start;
  margin-top: 28px;
}

.mission-body.reverse {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
}

.mission-text {
  font-size: 0.96rem;
  line-height: 1.9;
  color: var(--text-body, #2f4253);
}

.mission-point-title {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--text-strong, #143047);
}

.mission-point-title + p {
  margin-bottom: 18px;
}

.mission-list {
  list-style: none;
  padding-left: 0;
  margin: 0 0 20px;
}

.mission-list li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 10px;
}

.mission-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.9em;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--accent, #0f3a69);
  transform: translateY(-50%);
}

.mission-note {
  font-size: 0.86rem;
  color: var(--text-muted, #6b7b8a);
  margin-top: 8px;
}

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

.mission-photos {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mission-photo-main img,
.mission-photo-sub img {
  width: 100%;
  display: block;
  border-radius: 18px;
  object-fit: cover;
}

.mission-photo-main img {
  min-height: 220px;
}

.mission-photo-sub {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.cta-center {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

/* ---------- Responsive（roles） ---------- */

@media (max-width: 959px) {
  .roles-overview {
    padding: 56px 0;
  }

  .mission-block {
    padding: 56px 0;
  }

  .mission-body,
  .mission-body.reverse {
    grid-template-columns: minmax(0, 1fr);
  }

  .mission-body.reverse .mission-photos {
    order: -1;
  }
}

@media (max-width: 767px) {
  .roles-overview-grid {
    gap: 18px;
  }

  .roles-node {
    padding: 20px 18px 22px;
  }

  .mission-header {
    max-width: 100%;
  }
}

.mission .mission-photo {
  margin: 24px auto 28px;
  max-width: 960px;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.12);
}

.mission .mission-photo img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

@media (max-width: 768px) {
  .mission .mission-photo {
    margin: 18px auto 22px;
    border-radius: 14px;
  }
}

/* =========================================================
   ROLES：全体のリセット・タイポ調整
   ====================================================== */

.page-roles .mission-block,
.page-roles .roles-overview,
.page-roles #assignment {
  background: transparent;
}

.page-roles .hero-title,
.page-roles .hero-main {
  font-family: var(--font-body, system-ui, -apple-system, BlinkMacSystemFont,
    "Yu Gothic", "Hiragino Kaku Gothic ProN", "Meiryo", sans-serif);
  font-weight: 700;
}

.visually-hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  overflow: hidden;
  white-space: nowrap;
}

.page-roles .mission-header,
.page-roles .roles-overview .sec-head,
.page-roles #assignment .sec-head {
  text-align: left;
}

.page-roles .mission-header p,
.page-roles .mission-text p,
.page-roles .mission-list,
.page-roles #roles-overview .sub,
.page-roles #assignment .sub {
  text-align: left;
}

.page-roles p,
.page-roles li,
.page-roles dt,
.page-roles dd {
  font-family: var(--font-body, system-ui, -apple-system, BlinkMacSystemFont,
    "Yu Gothic", "Hiragino Kaku Gothic ProN", "Meiryo", sans-serif);
}

.roles-overview-grid {
  gap: 20px;
}

.roles-node {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 16px;
  padding: 20px 22px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

.roles-node h3 {
  font-size: 1.0rem;
  margin: 8px 0 6px;
}

.roles-node p {
  font-size: 0.95rem;
  line-height: 1.8;
}

.roles-overview-caption {
  font-size: 0.9rem;
  margin-top: 20px;
}

/* =========================================================
   ROLES：各ミッションブロック
   ====================================================== */

.page-roles .mission-inner {
  padding-top: 48px;
  padding-bottom: 48px;
}

.page-roles .mission-header {
  max-width: 520px;
}

.page-roles .mission-tag {
  font-size: 0.85rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--c-main, #00a36f);
  margin-bottom: 8px;
}

.page-roles .mission-title {
  font-size: 1.7rem;
  line-height: 1.5;
  margin-bottom: 14px;
}

.page-roles .mission-lead {
  font-size: 0.98rem;
  line-height: 1.9;
  color: #333;
}

.page-roles .mission-body {
  margin-top: 32px;
}

.page-roles .mission-body {
  display: grid;
  gap: 32px;
  align-items: flex-start;
}

.page-roles .mission-body.reverse {
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.1fr);
}

@media (min-width: 880px) {
  .page-roles .mission-body {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.1fr);
  }

  .page-roles .mission-body.reverse {
    direction: rtl;
  }
  .page-roles .mission-body.reverse > * {
    direction: ltr;
  }
}

.page-roles .mission-photos {
  display: grid;
  gap: 10px;
}

.page-roles .mission-photo-main img,
.page-roles .mission-photo-sub img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 16px;
  object-fit: cover;
}

.page-roles .mission-photo-main img {
  min-height: 210px;
}

.page-roles .mission-photo-sub {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.page-roles .mission-list {
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
}

.page-roles .mission-list li {
  position: relative;
  padding-left: 1.4em;
  margin-bottom: 12px;
  line-height: 1.8;
}

.page-roles .mission-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--c-main, #00a36f);
}

/* ========== Header ========== */

.site-header .wrap.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.site-header .brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.site-header .logo img {
  display: block;
  height: 40px;     
  width: auto;
}

.site-header .brand > span {
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

@media (max-width: 768px) {
  .site-header .wrap.nav {
    gap: 8px;
  }

  .site-header .logo img {
    height: 32px;
  }

  .site-header .brand > span {
    font-size: 0.8rem;
  }
}

/* ========== Footer ========== */

footer .brand {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* footer ロゴ：実物感のあるサイズに（推奨） */
footer .logo{
  width: 250px;          /* ←好みで 140〜180px くらいで調整 */
  height: auto;
  display: flex;
  align-items: center;
}

footer .logo img{
  width: 100%;
  height: auto;          /* ← 32px 固定をやめる */
  display: block;
  object-fit: contain;
}

footer .brand > span {
  font-weight: 600;
  letter-spacing: 0.04em;
}

/*
@media (max-width: 768px) {
  footer .brand {
    flex-direction: column;
    align-items: flex-start;
  }
}
*/

@media (max-width: 640px) {
  #company .cta {
    justify-content: center;      
  }

  #company .cta .btn-more {
    width: auto;                  
    min-width: 230px;             
    padding-inline: 24px;         
  }
}





/* =======================================
   共通エントリー導線セクション（#entry-cta）
   ======================================= */

#entry-cta {
}

#entry-cta .wrap.narrow {
  max-width: 880px;
}

#entry-cta .cta-band {
  position: relative;
  padding: 32px 32px 28px;
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(5, 150, 105, 0.12); 
  overflow: hidden;
}

#entry-cta .cta-band::before,
#entry-cta .cta-band::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  filter: blur(30px);
  opacity: 0.55;
  pointer-events: none;
}

#entry-cta .cta-band::before {
  width: 220px;
  height: 220px;
  top: -80px;
  right: -60px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.35), transparent 60%);
}

#entry-cta .cta-band::after {
  width: 180px;
  height: 180px;
  bottom: -70px;
  left: -40px;
  background: radial-gradient(circle, rgba(56, 189, 248, 0.35), transparent 60%);
}

#entry-cta .cta-band .h2 {
  font-size: 1.4rem;
  line-height: 1.6;
  letter-spacing: 0.04em;
  color: #064e3b; 
}

#entry-cta .cta-band p {
  font-size: 0.98rem;
  line-height: 1.9;
  color: #374151;
}

#entry-cta .cta {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

#entry-cta .btn {
  min-width: 210px;
  border-radius: 999px;
  padding-inline: 22px;
  font-size: 0.95rem;
  font-weight: 600;
}

#entry-cta .btn-ghost {
  background: rgba(16, 185, 129, 0.06);
  color: #047857;
  border: 1px solid rgba(16, 185, 129, 0.35);
}

#entry-cta .btn-ghost:hover {
  background: rgba(16, 185, 129, 0.12);
}

#entry-cta .btn-entry {
  background: linear-gradient(135deg, #10b981, #059669);
  color: #ffffff;
  border: none;
  box-shadow: 0 10px 24px rgba(4, 120, 87, 0.35);
}

#entry-cta .btn-entry:hover {
  filter: brightness(1.03);
  transform: translateY(-1px);
}

@media (max-width: 768px) {
  #entry-cta {
    padding: 48px 0 64px;
  }

  #entry-cta .cta-band {
    padding: 24px 20px 24px;
    border-radius: 20px;
  }

  #entry-cta .cta-band .h2 {
    font-size: 1.2rem;
  }

  #entry-cta .cta-band p {
    font-size: 0.95rem;
  }

  #entry-cta .btn {
    width: 100%;
    max-width: 360px;
  }
}

.pagetop {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  text-decoration: none;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease, transform .3s ease;
  transform: translateY(10px);
  z-index: 50;
}

.pagetop.on {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

@media (max-width: 767px) {
  .pagetop {
    right: 12px;
    bottom: 12px;
    width: 40px;
    height: 40px;
  }
}

footer {
  margin-top: 72px;
  padding: 24px 16px;
  border-top: 1px solid rgba(148, 163, 184, 0.35);
  color: #64748b;      
}

footer .footer-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
  justify-content: center;
}

footer .copyright {
  font-size: 11px;
  letter-spacing: 0.08em;
  text-align: center;
  opacity: 0.85;
  white-space: nowrap;
}

footer .footer-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

footer .footer-links a {
  font-size: 12px;
  text-decoration: none;
  opacity: 0.8;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

footer .footer-links a:hover {
  opacity: 1;
  transform: translateY(-1px);
}

/* ==================================
   ENTRY：Hero 画像カード化
   ================================== */

.page-entry #entry-hero .about-hero-image {
  border-radius: 18px;                
  overflow: hidden;                   
  box-shadow: 0 12px 32px rgba(0,0,0,0.14);
}

.page-entry #entry-hero .about-hero-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;                  
}

.site-header .menu a:last-child {
  margin-left: 8px;
  padding: 0.45em 1.2em;
  border-radius: 999px;
  background: linear-gradient(135deg, #10b981, #059669);
  color: #ffffff;
  font-weight: 600;
}

.site-header .menu a:last-child:hover {
  filter: brightness(1.03);
  transform: translateY(-1px);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 600; 
}

.hamburger {
  position: relative;
  z-index: 700;
}

.drawer {
  z-index: 650;
}

.drawer {
  position: fixed;
  inset: 0;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: max(72px, env(safe-area-inset-top) + 48px) 0 24px;
  background: rgba(0, 140, 100, 0.32);
  backdrop-filter: blur(12px) saturate(130%);
  -webkit-backdrop-filter: blur(12px) saturate(130%);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity .24s ease, transform .24s ease;
}

.drawer.open {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}

.drawer-backdrop {
  position: absolute;
  inset: 0;
}

.drawer-panel {
  position: relative;
  z-index: 1;
  width: min(92vw, 720px);
  margin: 0 auto;
  padding: 16px 14px 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.drawer-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
}

.drawer-list a {
  display: flex;
  align-items: center;
  gap: .6em;
  padding: 14px 18px;
  border-radius: 16px;
  font-weight: 700;
  letter-spacing: .02em;
  line-height: 1.4;
  background: rgba(255,255,255,.88);
  box-shadow:
    0 2px 8px rgba(0,0,0,.08),
    0 0 0.5px rgba(0,0,0,.06);
  transition:
    transform .15s ease,
    box-shadow .15s ease,
    background-color .15s ease;
}

.drawer-list a:hover,
.drawer-list a:focus-visible {
  transform: translateY(-1px);
  background: #ffffff;
  box-shadow:
    0 4px 16px rgba(0,0,0,.12),
    0 0 0 1px rgba(0,120,90,.12);
  outline: none;
}

.page-about  .drawer-list a[href$="/about/"],
.page-roles  .drawer-list a[href$="/roles/"],
.page-entry  .drawer-list a[href$="/entry/"] {
  background: linear-gradient(135deg,#e5f6ef,#fceee4);
}

.drawer-cta {
  margin-top: 6px;
  padding-top: 8px;
  border-top: 1px dashed rgba(255,255,255,.6);
}

.drawer-cta .btn-entry {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 14px 18px;
  border-radius: 999px;
  font-weight: 700;
}

@media (max-width: 767px) {
  .drawer-panel {
    width: 100%;
    padding-inline: 12px;
  }

  .drawer-list a {
    padding-block: 16px;
  }
}

/* =========================================
   Entry：ボタンの視認性・押しやすさUP
   ========================================= */

.btn-wide {
  min-width: min(280px, 100%);
  padding-block: 0.95em;
  justify-content: center;
}

.page-entry .entry-form .form-actions {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.page-entry .entry-form .form-actions .btn {
  width: 100%; 
}

@media (min-width: 768px) {
  .page-entry .entry-form .form-actions {
    flex-direction: row;
    justify-content: flex-end;
  }
  .page-entry .entry-form .form-actions .btn {
    width: auto;
  }
}

.page-entry .entry-form .form-actions .btn-ghost {
  font-weight: 500;
  box-shadow: inset 0 0 0 1px rgba(10,143,58,.2), var(--btn-shadow);
}

/* =======================================
   応募フロー帯（HERO直下）
   ======================================= */

.flow-band-top {
  padding: clamp(32px, 6vw, 52px) 0;
}

.flow-band-top .wrap.narrow {
  max-width: 980px;
}

.flow-band-inner {
  background: rgba(255, 255, 255, 0.92);
  border-radius: 20px;
  padding: clamp(24px, 4vw, 32px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.flow-title {
  text-align: center;
  margin-bottom: 20px;
}

.flow-title .eyebrow {
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--g-700, #0b7761);
  margin-bottom: 6px;
}

.flow-title h2 {
  font-size: clamp(1.4rem, 2.1vw, 1.7rem);
  margin-bottom: 8px;
}

.flow-title .lead {
  font-size: 0.96rem;
  color: #555;
  line-height: 1.9;
}

.flow-steps {
  list-style: none;
  margin: 18px 0 0;
  padding: 0;
  display: grid;
  gap: 18px;
}

.flow-steps li {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 14px;
  row-gap: 4px;
  padding: 14px 12px;
  border-radius: 12px;
  background: #f7faf9;
}

.step-label {
  align-self: flex-start;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: rgba(14, 166, 140, 0.1);
  color: #0e8a70;
  font-weight: 600;
}

.flow-steps h3 {
  margin: 0;
  font-size: 0.98rem;
}

.flow-steps p {
  grid-column: 1 / -1;
  margin: 4px 0 0;
  font-size: 0.9rem;
  line-height: 1.8;
  color: #555;
}

.flow-cta {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  justify-content: center;
}

.flow-cta .btn-min-220 {
  min-width: 220px;
}

@media (min-width: 800px) {
  .flow-steps {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .flow-steps li {
    grid-template-columns: 1fr;
    row-gap: 6px;
    height: 100%;
  }

  .flow-steps p {
    grid-column: 1 / 2;
  }
}

/* =======================================
   NEWS & SNS カード
   ======================================= */

.news-grid {
  display: grid;
  gap: 18px;
}

@media (min-width: 900px) {
  .news-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.news-card {
  background: #f7faf9;
  border-radius: 16px;
  padding: 16px 16px 18px;
  box-shadow: 0 14px 26px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.news-card-title {
  font-size: 1rem;
  margin: 0;
}

.news-card-lead {
  font-size: 0.88rem;
  color: #555;
  line-height: 1.7;
  margin: 0 0 6px;
}

.embed-frame {
  position: relative;
  width: 100%;
  padding-top: 62%; 
  overflow: hidden;
  border-radius: 10px;
  background: #fff;
}

.embed-frame iframe,
.embed-frame blockquote.instagram-media {
  position: absolute;
  inset: 0;
  width: 100% !important;
  height: 100% !important;
  border: 0;
}

.pc-only {
  display: inline;
}
.sp-only {
  display: none;
}

@media (max-width: 768px) {
  .pc-only {
    display: none;
  }
  .sp-only {
    display: inline;
  }
}

.cards-roles .role-points {
  list-style: disc;
  padding-left: 1.4em;  
}

.cards-roles .role-points li {
  position: static;     
}

.cards-roles .role-points li::before {
  content: none;
}

.cards-roles {
  grid-template-columns: repeat(2, 1fr);
}

@media (max-width: 600px) {
  .cards-roles {
    grid-template-columns: 1fr;
  }
}

.btn-ghost-min {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-width: 220px;
  padding: 9px 16px;
  border-radius: 999px;
  background: #ffffff;
  color: #333;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.12);
  font-size: 0.9rem;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.btn-ghost-min:hover {
  background: #0e8a70;
  border-color: #0e8a70;
  color: #fff;
}

/* =======================================
   BUSINESS × ROLES MAP
   ======================================= */

.biz-map {
  background: linear-gradient(180deg, #f3fbf8 0%, #f7faf9 100%);
  padding-bottom: 40px;
}

.biz-map-grid {
  display: grid;
  grid-template-columns: 1.1fr repeat(4, 1.4fr);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.06);
  background: #fff;
  font-size: 0.86rem;
}

.biz-map-cell {
  padding: 10px 12px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
  border-right: 1px solid rgba(0, 0, 0, 0.04);
  text-align: center;
}

.biz-map-corner {
  background: #f7faf9;
  border-right-color: rgba(0, 0, 0, 0.08);
}

.biz-map-head {
  background: #f7faf9;
  font-weight: 600;
  line-height: 1.4;
}

.biz-map-head span {
  display: block;
  font-weight: 400;
  font-size: 0.78rem;
  color: #777;
  margin-top: 2px;
}

.biz-map-row {
  background: #f9fbfb;
  font-weight: 600;
  text-align: left;
  padding-left: 14px;
}

.biz-map-mark {
  font-size: 0.9rem;
  color: #999;
}

.biz-map-mark.is-strong {
  color: #0e8a70;
  font-weight: 700;
}

@media (max-width: 768px) {
  .biz-map-grid {
    display: grid;  
    grid-template-columns: 0.9fr repeat(4, 1.1fr);
    font-size: 0.7rem;
  }

  .biz-map-cell {
    padding: 6px 4px;
  }

  .biz-map-head {
    font-weight: 600;
  }

  .biz-map-head span {
    font-size: 0.65rem;
  }

  .biz-map-row {
    font-weight: 600;
    padding-left: 6px;
  }
}

/* =======================================
   MEMBER INTERVIEW カード
   ======================================= */

.people .row {
  display: grid;
  gap: 18px;
}

@media (min-width: 900px) {
  .people .row {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.person-card {
  height: 100%;
}

.person-card-inner {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.06);
  text-decoration: none;
  color: inherit;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.person-card-inner:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.person-photo img {
  width: 100%;
  display: block;
}

.person-body {
  padding: 14px 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.person-tag {
  font-size: 0.8rem;
  color: #0e8a70;
}

.person-name {
  font-size: 0.95rem;
  margin: 0;
  font-weight: 600;
}

.person-copy {
  font-size: 0.86rem;
  color: #555;
  line-height: 1.7;
  margin: 2px 0 6px;
}

.person-more {
  margin-top: auto;
  font-size: 0.82rem;
  color: #0e8a70;
  font-weight: 600;
}


/* =========================================
   MEMBER INTERVIEW：カードレイアウト調整
   ========================================= */

#interview.people {
  overflow: visible;
}

@media (min-width: 769px) {
  #interview .row {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
  }

  #interview .person-card {
    flex: 0 0 auto;
    min-width: 0;
  }
}

.person-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.person-card-inner {
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
  color: inherit;
}

.person-photo img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
}

.person-body {
  padding: 16px 18px 18px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.person-tag {
  font-size: 12px;
  letter-spacing: .06em;
  color: var(--muted);
}

.person-name {
  font-size: 16px;
  font-weight: 600;
  margin: 0;
}

.person-copy {
  font-size: 14px;
  line-height: 1.7;
  margin: 4px 0 0;
}

.person-more {
  margin-top: 12px;
  font-size: 13px;
  color: var(--accent);
  font-weight: 500;
}

/* =========================================
   スマホ：1枚ずつ横スライド
   ========================================= */

@media (max-width: 768px) {
  #interview .row {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    padding-inline: var(--gutter);
  }

  #interview .person-card {
    flex: 0 0 80%;
    min-width: 80%;
    scroll-snap-align: start;
  }

  .person-photo img {
    height: 220px;
  }

  .person-body {
    padding: 14px 14px 16px;
  }

  .person-copy {
    font-size: 13px;
  }
}

/* =========================================
   Typo fine-tune（見出し＆本文の微調整）
   ========================================= */

h1,
.h1 {
  font-size: clamp(2.0rem, 3.8vw, 2.6rem);
  line-height: 1.4;
}

h2,
.h2 {
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  line-height: 1.5;
}

h3,
.h3 {
  font-size: clamp(1.2rem, 2.3vw, 1.5rem);
  line-height: 1.5;
}

.hero-large,
.hero-title,
.sec-head .h2,
.sec-head h2,
.page-benefits .benefits-hero-copy .title,
.roles-overview .section-title-ja,
.mission-title {
  font-size: clamp(1.8rem, 3vw, 2.3rem);
  line-height: 1.5;
  font-weight: 700;
}

.hero-lead,
.sec-head .sub,
.roles-overview .section-lead,
.mission-lead,
.lead {
  font-size: clamp(0.98rem, 1.9vw, 1.1rem);
  line-height: 1.8;
  color: #4a4a4a;
  max-width: 40em;
}

.content main p {
  margin: 0 0 0.8em;
}

.small-text {
  font-size: 0.86rem;
  line-height: 1.8;
}

/* =========================================
   Vertical rhythm（セクション間・内の余白調整）
   ========================================= */

section {
  padding: clamp(40px, 7vw, 96px) 0;
}

section .sec-head,
section .lead-text,
section .text,
section p,
section .sub {
  margin-block: 0.6em;
}

.sec-head.center {
  margin-bottom: clamp(20px, 3vw, 32px);
}

@media (max-width: 768px) {
  section {
    padding: 40px 0;
  }

  .sec-head.center {
    margin-bottom: 1.6em;
  }

  .content main p {
    margin-bottom: 0.7em;
  }
}

footer a[href^="tel"],
footer a[href^="mailto"] {
  color: inherit !important;     
  text-decoration: none;
}

footer a[href^="tel"]:hover,
footer a[href^="mailto"]:hover {
  text-decoration: underline;
  opacity: 0.9;
}

.benefit-points {
  list-style: none;       
  padding-left: 0;        
}

.benefit-points li {
  position: relative;
  padding-left: 1.2em;    
}

.benefit-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.78em;
  width: .45em;
  height: .45em;
  border-radius: 999px;
  background: var(--color-accent);  
}

.content main ul.president-points {
  list-style: none;      
  padding-left: 0;       
}

.content main ul.president-points li {
  position: static;      
}

.content main ul.president-points li::before {
  content: none;
}


/* ===========================
   Privacy Policy / Basic Page
   =========================== */

.page-privacy .basic-page {
  padding-top: 64px;
  padding-bottom: 80px;
}

.page-privacy .page-head {
  margin-bottom: 40px;
}

.page-privacy .page-head .h1 {
  font-size: 1.9rem;
  margin-bottom: 12px;
}

.page-privacy .page-head .sub {
  font-size: 0.95rem;
  line-height: 1.9;
  color: var(--color-muted, #6b7280);
}

.page-privacy .section {
  margin-bottom: 40px;
}

.page-privacy .section .h2 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.page-privacy .section p {
  line-height: 1.9;
  font-size: 0.98rem;
}

.page-privacy .list-disc {
  list-style: disc;           
  padding-left: 1.4em;
  margin: 8px 0 12px;
}

body.page-privacy .content main ul.list-disc li::before {
  content: none !important;
}

.page-privacy .list-disc li {
  margin: 2px 0;
}

.page-privacy .company-box {
  border: 1px solid rgba(15, 118, 110, 0.18);
  border-radius: 12px;
  padding: 16px 18px;
  background: #f9fafb;
  margin-top: 12px;
}

.page-privacy .company-name {
  font-weight: 600;
  margin-bottom: 4px;
}

.page-privacy .company-info {
  font-size: 0.95rem;
  line-height: 1.8;
}

.page-privacy .soft {
  color: var(--color-muted, #6b7280);
}

.page-privacy .right {
  text-align: right;
}

.page-entry .form-policy a {
  text-decoration: underline;
}

.page-entry #entry .sec-head .sub {
  max-width: none;
  width: 100%;
  margin: 0.8em 0 0;
  padding: 0;
  text-indent: 0;
  text-align: left;
}

.page-entry #faq .panel {
  max-width: none;
  margin-left: 0;
  margin-right: 0;
}

/* =======================================
   BENEFITS 図解レイアウト
   ======================================= */

.benefit-grid {
  display: grid;
  gap: 18px;
}

@media (min-width: 768px) {
  .benefit-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.benefit-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px 16px;
  padding: 18px 16px;
  border-radius: 16px;
  background: #f7faf9;
}

@media (min-width: 768px) {
  .benefit-item {
    padding: 20px 20px;
  }
}

/* 左側の丸いアイコン部分 */
.benefit-icon {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: linear-gradient(135deg, #0e8a70, #35b49a);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 18px rgba(0, 0, 0, 0.12);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 600;
}

.benefit-icon span {
  transform: translateY(1px);
}

/* 右側テキストブロック */
.benefit-body {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.benefit-title {
  font-size: 1rem;
  margin: 0;
}

/* 福利厚生の箇条書き：通常の黒丸だけを表示したいエリア */
.benefit-points {
  margin: 2px 0 4px;
  font-size: 0.9rem;
  line-height: 1.8;
  color: #444;
}

/* グローバルの「list-style: none」を上書きするため、
   .content main を含めて specificity を上げる */
.content main ul.benefit-points {
  list-style: disc;
  padding-left: 1.4em; /* お好みで 1.1em 〜 1.6em くらいで微調整 */
}

/* グローバルの li position や ::before を打ち消す */
.content main ul.benefit-points li {
  position: static;     /* relative を解除 */
}

/* 共通の li::before を無効化 → 黒丸が1つだけ表示される */
.content main ul.benefit-points li::before {
  content: none;
}

/* 補足テキスト */
.benefit-text {
  font-size: 0.88rem;
  line-height: 1.9;
  color: #666;
}

/* BENEFITS：黒丸と文字の間隔を詰める */
.content main ul.benefit-points{
  padding-left: 1.15em; /* ← ここで「黒丸〜文字」を詰める（1.05〜1.2emで微調整OK） */
}

.content main ul.benefit-points li{
  padding-left: 0;      /* ← これが大事：li側の余計なインデントを消す */
}


/* =======================================
   ROLES セクション強化
   ======================================= */

.cards-roles .card {
  display: flex;
  flex-direction: column;
}

.cards-roles .thumb {
  margin-bottom: 10px;
}

/* バッジ類 */
.role-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 4px 0 6px;
}

.badge {
  display: inline-flex;
  align-items: center;
  padding: 3px 9px;
  border-radius: 999px;
  font-size: 0.75rem;
  line-height: 1.3;
  letter-spacing: 0.05em;
  border: 1px solid rgba(0, 0, 0, 0.06);
  background: #f5f8f7;
  color: #555;
}

.badge-field {
  background: rgba(14, 138, 112, 0.08);
  border-color: rgba(14, 138, 112, 0.2);
  color: #0e8a70;
  font-weight: 600;
}

.badge-type {
  background: #fff;
}

/* ポイントリスト */
/* ROLES：カード内のリスト位置調整 */
.cards-roles .role-points {
  margin: 8px 16px;       /* 左右にも16pxの余白を付与 */
  padding-left: 1.2em;    /* 箇条書き用の少しだけのインデント */
  font-size: 0.9rem;
  line-height: 1.8;
  color: #555;
}

.role-points li {
  list-style: disc;
}

/* テキスト・CTA */
.cards-roles .text {
  margin-top: 2px;
  font-size: 0.9rem;
}

/* ROLES：カード内ボタンのはみ出し防止＆横幅そろえ */
.cards-roles .more {
  margin-top: auto;
  padding: 10px 16px 16px; /* 下にも余白＋左右16pxでカード内におさめる */
}

.cards-roles .btn-ghost-min {
  width: 100%;
  min-width: 0;            /* 220px の縛りを解除 */
  box-sizing: border-box;  /* パディング込みでカード幅にフィット */
  justify-content: center; /* テキストを中央寄せ */
}
/* ROLES：バッジ行の左右余白をそろえる */
.cards-roles .card .role-meta {
  display: flex;
  gap: 8px;               /* バッジ同士のすき間 */
  margin: 12px 16px 4px;  /* 上・左右・下の余白（左右16pxでそろえる） */
}


.btn-ghost-min {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-width: 220px;
  padding: 9px 16px;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.15);
  font-size: 0.9rem;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.btn-ghost-min:hover {
  background: #0e8a70;
  border-color: #0e8a70;
  color: #fff;
}


/* ============================
   ROLES（職種を知る）PC 2カラム化
   ============================ */
@media (min-width: 960px) {
  #roles .cards {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 24px !important;
  }
}

/* ============================
   ROLES：リストマークと文字の距離調整
   ============================ */
#roles .role-points li {
  padding-left: 1em !important;
}

#roles .role-points li::before {
  left: 0.1em !important;
}


/* === SNS / LINE バナー =================================== */
.sns-banner-area {
  margin-top: 3rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(15, 23, 42, 0.06);
}

.sns-banner-head {
  margin: 0 0 1.5rem;
  font-size: 0.95rem;
  color: var(--color-muted);
}

/* === SNS / LINE バナー（5カラム対応） ===================== */
.sns-banner-grid{
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

/* 5カラム（1100px〜） */
.sns-banner{
  flex: 1 1 calc(20% - 0.8rem); /* 5 columns */
  min-width: 200px;
	  padding: 1.25rem 1.4rem;
  border-radius: 14px;
  border: 1px solid rgba(15, 23, 42, 0.06);
  background: #ffffff;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.04);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* 画面が少し狭いPCは4カラムに落とす */
@media (max-width: 1200px){
  .sns-banner{
    flex: 1 1 calc(25% - 0.75rem); /* 4 columns */
    min-width: 220px;
  }
}

/* タブレットは2カラム */
@media (max-width: 980px){
  .sns-banner{
    flex: 1 1 calc(50% - 0.5rem); /* 2 columns */
    min-width: 0;
  }
}

/* スマホは1カラム（既存と同じ） */
@media (max-width: 768px){
  .sns-banner{
    flex: 1 1 100%;
    min-width: 0;
  }
}


.sns-banner-label {
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  margin-bottom: 0.4rem;
  color: var(--color-main-dark);
}

.sns-banner-text {
  margin: 0 0 0.9rem;
  font-size: 0.85rem;
  line-height: 1.7;
  color: var(--color-muted);
}

.sns-banner-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.sns-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  font-size: 0.8rem;
  line-height: 1.2;
  border: 1px solid transparent;
  white-space: nowrap;
}

.sns-chip-ig {
  border-color: rgba(148, 27, 128, 0.14);
  background: rgba(148, 27, 128, 0.04);
  color: #951b80;
  font-weight: 600;
}

.sns-chip-line {
  border-color: rgba(22, 163, 74, 0.14);
  background: rgba(22, 163, 74, 0.04);
  color: #15803d;
}

@media (max-width: 768px) {
  .sns-banner-area {
    margin-top: 2.5rem;
    padding-top: 2rem;
  }

  .sns-banner-grid {
    gap: 0.9rem;
  }

  .sns-banner {
    flex: 1 1 100%;
    min-width: 0;
    padding: 1.1rem 1.1rem;
  }

  .sns-banner-text {
    margin-bottom: 0.7rem;
  }
}

/* === SNS icon link（Instagram / LINE） ===================== */
.sns-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;

  height: 44px;               /* SPでも押しやすい */
  min-width: 44px;
  padding: 0 0.9rem;          /* ID付きでもバランス */
  border-radius: 999px;

  border: 1px solid transparent;
  text-decoration: none;
  white-space: nowrap;

  transition: transform 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease, border-color 0.15s ease;
}

.sns-icon i {
  font-size: 18px;
  line-height: 1;
}

.sns-id {
  font-size: 0.82rem;
  line-height: 1;
  font-weight: 600;
}

/* Instagram */
.sns-icon-ig {
  border-color: rgba(148, 27, 128, 0.14);
  background: rgba(148, 27, 128, 0.04);
  color: #951b80;
}

/* LINE */
.sns-icon-line {
  border-color: rgba(22, 163, 74, 0.14);
  background: rgba(22, 163, 74, 0.04);
  color: #15803d;
}

/* hover / active 統一 */
.sns-icon:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 20px rgba(15, 23, 42, 0.08);
}

.sns-icon:active {
  transform: translateY(0);
  box-shadow: 0 6px 14px rgba(15, 23, 42, 0.06);
}

.sns-icon:focus-visible {
  outline: 3px solid rgba(59, 130, 246, 0.28);
  outline-offset: 2px;
}

/* PCで「アイコンだけ」も見栄えよく */
.sns-icon:not(.sns-icon-line--withid) {
  padding: 0 0.95rem;
}

/* SPは横幅が窮屈なので、必要ならIDの文字サイズだけ少し下げる */
@media (max-width: 768px) {
  .sns-icon {
    height: 46px;
    min-width: 46px;
  }
  .sns-id {
    font-size: 0.8rem;
  }
}

/* =======================================
   HERO：識別バッジ（左上固定）
   ======================================= */

.hero-badge {
  position: absolute;
  top: 24px;
  left: 24px;
  z-index: 10;

  display: inline-flex;
  align-items: center;
  gap: 0.6em;

  padding: 10px 14px;
  border-radius: 999px;

  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(6px);

  font-size: 12px;
  line-height: 1;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #ffffff;
}

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

.hero-badge__type {
  font-weight: 400;
  opacity: 0.9;
}

.hero-badge__year {
  font-weight: 400;
  opacity: 0.7;
}

/* スマホ微調整 */
@media (max-width: 768px) {
  .hero-badge {
    top: 16px;
    left: 16px;
    padding: 8px 12px;
    font-size: 11px;
  }
}

/* =======================================
   HERO Badge：コピー直上に配置
   ======================================= */

.hero-badge--inline{
  position: static;           /* 左上固定を解除 */
  margin-bottom: 12px;

  display: inline-flex;
  align-items: center;
  gap: 6px;

  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;

  color: rgba(230, 255, 246, .85);
  background: rgba(255,255,255,.14);
  backdrop-filter: blur(4px);
  padding: 6px 10px;
  border-radius: 999px;
}

.hero-badge--inline span{
  white-space: nowrap;
}

/* SP */
@media (max-width: 768px){
  .hero-badge--inline{
    font-size: 11px;
    margin-bottom: 10px;
  }
}

/* =======================================
   HERO：コピー（下寄せ／帯）
   ======================================= */

/* hero の基準箱（ここが無いと下寄せがズレる） */
.hero-visual{
  position: relative;
  min-height: calc(100vh - 70px); /* 70pxはヘッダー高に合わせて調整OK */
  overflow: hidden;
}

/* コピーを下に固定 */
.hero-copy--bottom{
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 56px;
  z-index: 9;
  pointer-events: none;
}

/* スマホ */
@media (max-width: 768px){
  .hero-copy--bottom{
    left: 16px;
    right: 16px;
    bottom: 34px;
  }
}

.hero-main{
  margin: 0;
  display: inline-flex;
  flex-direction: column;
  gap: 10px;
  line-height: 1.15;
  letter-spacing: .02em;
}

/* 1行ずつ“帯”にする */
.hero-main__line{
  display: inline-block;
  width: fit-content;
  max-width: 100%;
  padding: 12px 16px;

  background: rgba(255,255,255,.88);
  backdrop-filter: blur(6px);
  border-radius: 10px;

  color: #1f2a2a;
  font-weight: 700;
  font-size: clamp(22px, 3.4vw, 42px);

  box-shadow: 0 10px 26px rgba(0,0,0,.18);
  white-space: nowrap;
}

/* 長いときは自然に折り返し（SPで効く） */
@media (max-width: 768px){
  .hero-copy--bottom{
    left: 16px;
    right: 16px;
    bottom: 34px;
  }
  .hero-main{ gap: 8px; }
  .hero-main__line{
    padding: 10px 12px;
    border-radius: 12px;
    white-space: normal; /* SPは折り返しOK */
    font-size: clamp(20px, 6vw, 30px);
  }
}

.hero-main__line{
  box-shadow: 0 8px 22px rgba(0,0,0,.14);
}

.hero-main__line{
  background: rgba(255,255,255,.84);
}


/* =======================================
   HERO：スライド（表示の土台）
   ======================================= */

.hero-visual{
  position: relative;
  min-height: calc(100vh - 70px);
  overflow: hidden;
}

/* スライドの器 */
.hero-slides{
  position: absolute;
  inset: 0;
  z-index: 1;
}

/* 各スライドを重ねる */
.hero-slide{
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity .8s ease;
}

.hero-slide.is-active{
  opacity: 1;
}

/* 画像は全面カバー */
.hero-slide img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* バッジとコピーはスライドより上 */
.hero-badge{ z-index: 10; }
.hero-copy--bottom{ z-index: 9; }

/* スライド画像：左下だけ角丸 */
.hero-slides .hero-slide img{
  border-bottom-left-radius: 55px; /* 好きな大きさに */
}

/* ==============================
   HERO：スマホで 1画面に収める（iOS対応）
   ============================== */

/* ヘッダー高さ（.nav が 64px なので合わせる） */
:root{
  --header-h: 64px;
}

/* 100vh ではなく、実表示領域に近い dvh/svh を優先 */
.hero-visual{
  height: calc(100dvh - var(--header-h));
  min-height: calc(100dvh - var(--header-h));
}

/* dvh がない環境は svh */
@supports not (height: 100dvh){
  .hero-visual{
    height: calc(100svh - var(--header-h));
    min-height: calc(100svh - var(--header-h));
  }
}

/* さらに古い環境は従来の vh にフォールバック */
@supports not (height: 100svh){
  .hero-visual{
    height: calc(100vh - var(--header-h));
    min-height: calc(100vh - var(--header-h));
  }
}

@media (max-width: 768px){
  .hero-copy--bottom{ bottom: 18px; }
  .hero-main__line{ padding: 8px 10px; }
}
/* ==============================
   HERO：スマホでは高さを80%にして続きを見せる
   ============================== */
@media (max-width: 768px){

  .hero-visual{
    height: calc(88dvh - var(--header-h));
    min-height: calc(88dvh - var(--header-h));
  }

  /* dvh非対応端末 */
  @supports not (height: 100dvh){
    .hero-visual{
      height: calc(88svh - var(--header-h));
      min-height: calc(88svh - var(--header-h));
    }
  }

  /* さらに古い端末 */
  @supports not (height: 100svh){
    .hero-visual{
      height: calc(88vh - var(--header-h));
      min-height: calc(88vh - var(--header-h));
    }
  }
}

.recruit-channel .channel-grid{
  display:grid;
  gap:14px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
@media (max-width: 900px){
  .recruit-channel .channel-grid{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 540px){
  .recruit-channel .channel-grid{ grid-template-columns: 1fr; }
}

.channel-card{
  display:block;
  padding:16px 16px 14px;
  border-radius:16px;
  background: rgba(255,255,255,.75);
  border: 1px solid rgba(0,0,0,.06);
  box-shadow: 0 10px 26px rgba(0,0,0,.06);
  text-decoration:none;
  color: inherit;
  transition: transform .2s ease, box-shadow .2s ease;
}
.channel-card:hover{
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(0,0,0,.10);
}
.channel-title{ font-weight:700; }
.channel-text{ margin-top:6px; font-size:.95rem; opacity:.85; line-height:1.5; }
.channel-tag{
  display:inline-block;
  margin-top:10px;
  font-size:.85rem;
  opacity:.7;
}



/* =======================================
   z-index 統一（致命的な上書き事故を防ぐ）
   ======================================= */
.site-header { z-index: 900; }
.drawer      { z-index: 800; }
.hamburger   { z-index: 1000; }


/* =========================================
   Sidebar polish (desktop only) - CLEAN
   - スクロール無し（バーも出さない）
   - メニュー文字を少し小さく＋行間を詰めて「はみ出し」を防ぐ
   - 高さは固定しない（95vh等は使わない）
========================================= */
@media (min-width: 1100px){

  /* サイドバー余白（はみ出し防止で少しだけ詰める） */
  .sidebar-inner{
    padding: 22px 38px;   /* ← 28/44 から少し縮める */
    gap: 10px;            /* ← 14 から少し詰める */
  }

  /* ===== ブランド（ロゴ） ===== */
  .s-brand{
    padding: 0;
    background: transparent;
    border: none;
    box-shadow: none;
    display: flex;
    align-items: center;
    gap: 12px;
    transform: translateZ(0);
    transition: transform .18s ease, opacity .18s ease;
  }

  /* ロゴ画像：素（角丸・枠線・影なし） */
  .s-brand img{
    width: 42px;
    height: 42px;
    border-radius: 0;
    outline: none;
    box-shadow: none;
    background: transparent;
    transition: transform .18s ease, opacity .18s ease;
  }

  /* さりげない反応 */
  .s-brand:hover{
    transform: translateY(-1px);
    opacity: .98;
  }
  .s-brand:hover img{
    transform: translateY(-1px);
    opacity: .95;
  }

  /* ===== ブランド名：行間を締める ===== */
  .s-brand span{
    letter-spacing: .10em;
    line-height: 1.3;     /* ← 行間を締める */
    display: inline-block;
  }
  .s-brand span small{
    display: block;
    letter-spacing: .16em;
    opacity: .82;
    line-height: 1.04;
    margin-top: 2px;       /* ← 2px → 1px */
  }

  /* ===== メニュー ===== */
  .s-nav{
    gap: 4px;              /* ← 5px → 4px */
    margin-top: 8px;       /* ← 10px → 8px */
  }

  .s-nav a{
    padding: 8px 11px;     /* ← 10/12 より少しコンパクト */
    border-radius: 14px;
    position: relative;

    font-size: .92rem;     /* ← ほんの少し小さく */
    line-height: 1.18;     /* ← 行間を詰める */
    transition: transform .15s ease, background .2s ease, box-shadow .2s ease, color .2s ease;
  }

  .s-nav a i{
    opacity: .9;
    margin-right: 6px;
    font-size: .95em;
  }

  .s-nav a:hover{
    background: rgba(255,255,255,.68);
    box-shadow: 0 10px 24px rgba(0,0,0,.08);
    transform: translateY(-1px);
  }

  .s-nav a.is-current{
    background: linear-gradient(135deg, rgba(224,247,238,.92), rgba(191,230,214,.92));
    box-shadow: 0 12px 28px rgba(10,143,58,.14);
    color: #0a8f3a;
  }

  .s-nav a.is-current::before{
    content:"";
    position: absolute;
    left: 8px;
    top: 10px;
    bottom: 10px;
    width: 4px;
    border-radius: 999px;
    background: linear-gradient(180deg, var(--g-300), var(--g-700));
  }
}

  /* ===== SNS ===== */
  .s-sns{
    margin: 10px 0 0;
    gap: 10px;
  }
  .s-sns .sns{
    background: rgba(255,255,255,.72);
    border: 1px solid rgba(0,0,0,.07);
  }

  /* ===== CTA：外側カード撤去 ===== */
  .s-cta{
    margin-top: 12px;
    padding: 0;
    background: transparent;
    border: none;
    box-shadow: none;
  }

  .s-cta .btn-entry{
    border-radius: 16px;
    padding: 14px 14px;
    letter-spacing: .04em;
    transition: transform .15s ease, filter .2s ease;
  }

  .s-cta .btn-entry:hover{
    transform: translateY(-1px);
    filter: brightness(1.02);
  }
}

  /* ===== SNS ===== */
  .s-sns{
    margin: 10px 0 0;
    gap: 10px;
  }
  .s-sns .sns{
    background: rgba(255,255,255,.72);
    border: 1px solid rgba(0,0,0,.07);
  }

  /* ===== CTA：外側カード撤去 ===== */
  .s-cta{
    margin-top: 12px;
    padding: 0;
    background: transparent;
    border: none;
    box-shadow: none;
  }

  .s-cta .btn-entry{
    border-radius: 16px;
    padding: 14px 14px;
    letter-spacing: .04em;
    transition: transform .15s ease, filter .2s ease;
  }

  .s-cta .btn-entry:hover{
    transform: translateY(-1px);
    filter: brightness(1.02);
  }
}


/* ================================
   Linkbar (flat / global)
   - 影なし、線と余白で整える
================================ */
.linkbar{
  padding: clamp(28px, 3vw, 40px) 0;
}

.linkbar .linkbar-head{
  margin-bottom: clamp(12px, 2vw, 16px);
}

.linkbar .linkbar-title{
  margin: 0 0 4px;
  font-weight: 700;
  letter-spacing: .06em;
  color: #1f2f2b;
}

.linkbar .linkbar-sub{
  margin: 0;
  color: #556;
  font-size: .92rem;
  line-height: 1.7;
}

.linkbar .linkbar-row{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(12px, 2vw, 16px);
}

.linkbar .linkcard.linkcard--flat{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;

  padding: 16px 18px;
  border-radius: 14px;
  text-decoration: none;

  background: #fff;
  border: 1px solid rgba(0,0,0,.08);
  box-shadow: none;              /* フラット */
  transform: none;               /* ぴょんをやめる */
  transition: background .2s ease, border-color .2s ease;
}

.linkbar .linkcard.linkcard--flat:hover{
  background: rgba(0,0,0,.02);
  border-color: rgba(0,0,0,.12);
}

.linkbar .linkcard.linkcard--flat .label{
  display: grid;
  gap: 6px;
  color: #1f2f2b;
}

.linkbar .linkcard.linkcard--flat .label-top{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  letter-spacing: .02em;
}

.linkbar .linkcard.linkcard--flat .label i{
  opacity: .9;
}

.linkbar .linkcard.linkcard--flat .label small{
  font-weight: 500;
  font-size: .86rem;
  color: #556;
  line-height: 1.6;
}

.linkbar .linkcard.linkcard--flat .arrow{
  font-size: 20px;
  opacity: .65;
}

.linkbar .linkcard.linkcard--flat.is-primary{
  border-color: rgba(16,185,129,.35);
  background: rgba(16,185,129,.06);
}

.linkbar .linkcard.linkcard--flat.is-primary:hover{
  background: rgba(16,185,129,.10);
  border-color: rgba(16,185,129,.45);
}

@media (max-width: 900px){
  .linkbar .linkbar-row{ grid-template-columns: 1fr; }
}


/* ----------------------------------
   LINE consult card (Entry page)
----------------------------------- */
.line-consult-card{
  margin: 18px 0 22px;
  padding: 16px;
  border-radius: 16px;
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(0,0,0,.07);
}

.line-consult-eyebrow{
  margin: 0 0 6px;
  font-size: .78rem;
  letter-spacing: .14em;
  opacity: .75;
}

.line-consult-title{
  margin: 0 0 8px;
  font-size: 1.05rem;
  line-height: 1.4;
}

.line-consult-text{
  margin: 0 0 10px;
  color: rgba(16,40,64,.78);
  line-height: 1.65;
}

.line-consult-points{
  margin: 0 0 12px;
  padding-left: 1.2em;
  color: rgba(16,40,64,.72);
  line-height: 1.6;
}

.line-consult-actions{
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
}

.line-consult-actions .btn{
  box-shadow: none; /* フラット寄せ */
}

.line-consult-note{
  margin: 10px 0 0;
  font-size: .85rem;
  color: rgba(16,40,64,.6);
}

@media (max-width: 520px){
  .line-consult-actions .btn{ width: 100%; justify-content: center; }
}

/* タイプ中のカーソル（最後に消える） */
.hero-typing-caret::after{
  content:"";
  display:inline-block;
  width: 0.08em;
  height: 1em;
  margin-left: 0.12em;
  vertical-align: -0.1em;
  background: currentColor;
  animation: heroCaretBlink .9s steps(1) infinite;
}

@keyframes heroCaretBlink{
  50% { opacity: 0; }
}

/* 動きが苦手な人には無効化（アクセシビリティ） */
@media (prefers-reduced-motion: reduce){
  .hero-typing-caret::after{ display:none; animation:none; }
}


/* =========================
   Sidebar LINE Button
   ========================= */
.s-line{ margin: 14px 0 10px; }

.line-btn{
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 12px;
  border-radius: 14px;
  background: #ffffff;
  border: 1px solid rgba(0,0,0,.10);
  box-shadow: 0 10px 24px rgba(0,0,0,.06);
  text-decoration: none;
  color: inherit;
  transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
}

.line-btn:hover{
  transform: translateY(-1px);
  border-color: rgba(0,0,0,.14);
  box-shadow: 0 14px 30px rgba(0,0,0,.10);
}

.line-btn__icon{
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(6,199,85,.10);
  flex: 0 0 auto;
}

.line-btn__icon i{
  font-size: 22px;
  color: #06c755;
}

.line-btn__text{ line-height: 1.25; min-width: 0; }
.line-btn__text strong{
  display: block;
  font-size: 0.98rem;
  letter-spacing: .02em;
}
.line-btn__text small{
  display: block;
  font-size: .78rem;
  opacity: .72;
  margin-top: 2px;
}

.line-btn__arrow{
  margin-left: auto;
  font-size: 18px;
  opacity: .45;
}

/* Sidebarが狭い場合の微調整 */
@media (max-width: 768px){
  .line-btn{ padding: 11px 12px; border-radius: 12px; }
  .line-btn__text small{ font-size: .76rem; }
}


@media (max-width: 1099px){
  .drawer-list a.is-strong{
    background: #ffffff;
    box-shadow: 0 6px 18px rgba(0,0,0,.10);
  }
  .drawer-list a.is-line{
    background: rgba(255,255,255,.92);
    border: 1px solid rgba(0,0,0,.10);
  }
}
/* =========================================
   Footer logo size fix（フッターだけ大きく）
   ※ cleaned.css の一番最後に置く
========================================= */

footer .brand .logo{
  width: min(260px, 78vw);
  height: auto;              /* 52px 固定を殺す */
  display: block;
  overflow: visible;         /* 念のため */
  flex: 0 0 auto;
}

footer .brand .logo img{
  width: 60%;
  height: auto;
  display: block;
}

footer a[href^="mailto"]{
  display: none !important;
}

footer .brand > span{
  display: none !important;
}