﻿/* HOME — Concept Venn */

section.concept{
  padding:32px 0 96px
}

.concept-grid{
  display:grid;
  grid-template-columns:1fr 1.1fr;
  gap:56px;
  align-items:center
}

@media (max-width:880px){
  .concept-grid{
    grid-template-columns:1fr;
    align-items:start
  }
}

.concept p{
  font-size:17px;
  line-height:2.2;
  margin:0;
  font-weight:500
}

.concept-action{
  margin-top:28px
}

.concept-action-sp{
  display:none
}

@media (max-width:880px){
  .concept-copy .concept-action{
    display:none
  }

  .concept-action-sp{
    display:flex;
    justify-content:center;
    margin-top:6px
  }
}

.venn{
  position:relative;
  width:100%;
  aspect-ratio:1.05/1;
  max-width:520px;
  margin:0 auto
}

.venn .circle{
  position:absolute;
  width:56%;
  aspect-ratio:1;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  padding:28px;
  mix-blend-mode:multiply
}

.venn .c1{
  background:rgba(96,160,125,.42);
  top:0;
  left:22%
}

.venn .c2{
  background:rgba(74,143,231,.36);
  bottom:0;
  left:0
}

.venn .c3{
  background:rgba(233,75,92,.34);
  bottom:0;
  right:0
}

.venn .lbl{
  mix-blend-mode:normal
}

.venn .lbl .ttl{
  font-size:16px;
  font-weight:900;
  letter-spacing:.16em
}

.venn .lbl .body{
  font-size:14px;
  line-height:1.7;
  margin-top:8px;
  font-weight:500
}

.venn .c1 .ttl,.venn .c2 .ttl,.venn .c3 .ttl{
  color:#5F6670
}

/* HOME — Strengths */

.home-services{
  background:#fff
}

section.strengths{
  padding:80px 0 96px;
  background:#fff
}

.strength-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:22px;
  margin-top:32px
}

.strength-card{
  position:relative;
  background:#fff;
  border:1px solid var(--line);
  border-radius:20px;
  padding:32px 28px 34px;
  overflow:hidden;
  min-height:250px;
  box-shadow:0 6px 18px rgba(20,30,50,.04);
  transition:transform 240ms,box-shadow 240ms
}

.strength-card:hover{
  transform:translateY(-4px);
  box-shadow:0 18px 36px rgba(20,30,50,.09)
}

.strength-ico{
  position:relative;
  width:56px;
  height:56px;
  border-radius:16px;
  background:linear-gradient(135deg,var(--pink),var(--pink-d));
  display:flex;
  align-items:center;
  justify-content:center;
  color:#fff;
  margin-bottom:18px;
  box-shadow:0 8px 18px rgba(var(--accent-rgb),.22);
  transition:transform 240ms
}

.strength-ico svg{
  width:28px;
  height:28px
}

.strength-card:hover .strength-ico{
  transform:scale(1.08) rotate(-3deg)
}

.strength-card::before{
  content:"";
  position:absolute;
  right:-38px;
  top:-42px;
  width:140px;
  aspect-ratio:1;
  border-radius:50%;
  background:var(--accent-soft);
  opacity:.6
}

.strength-card .tag{
  position:relative;
  display:inline-flex;
  align-items:center;
  gap:8px;
  color:var(--pink);
  font-size:13px;
  font-weight:900;
  letter-spacing:.18em;
  margin-bottom:18px
}

.strength-card .tag::before{
  content:"";
  width:8px;
  height:8px;
  border-radius:50%;
  background:var(--pink)
}

.strength-card h3{
  position:relative;
  font-size:22px;
  font-weight:900;
  line-height:1.55;
  letter-spacing:.02em;
  margin:0 0 14px
}

.strength-card p{
  position:relative;
  font-size:16px;
  line-height:1.95;
  color:var(--ink-mid);
  font-weight:500;
  margin:0
}

@media (max-width:880px){
  .strength-grid{
    grid-template-columns:1fr
  }
}

/* HOME — SDGs */

section.sdgs-home{
  position:relative;
  padding:86px 0 96px;
  background:#fff;
  overflow:hidden
}

section.sdgs-home::before{
  display:none;
  content:none
}

section.sdgs-home::after{
  display:none;
  content:none
}

.sdgs-home .wrap{
  position:relative;
  z-index:2
}

.sdgs-head{
  text-align:left;
  margin-bottom:34px
}

.sdgs-head .sec-title{
  justify-content:flex-start;
  margin-bottom:18px
}

.sdgs-head .sec-sub{
  max-width:720px;
  margin:0 0 10px
}

.sdgs-note{
  font-size:13px;
  line-height:1.8;
  color:var(--ink-mid);
  font-style:italic;
  margin:0
}

.sdgs-icons{
  display:grid;
  grid-template-columns:repeat(6,1fr);
  gap:18px;
  max-width:760px;
  margin:34px auto 0
}

.sdgs-icon{
  display:block;
  background:#fff;
  border:1px solid var(--line);
  border-radius:12px;
  padding:10px;
  box-shadow:0 8px 20px rgba(20,30,50,.04);
  transition:transform 200ms,box-shadow 200ms
}

.sdgs-icon:hover{
  transform:translateY(-2px);
  box-shadow:0 14px 28px rgba(20,30,50,.08)
}

.sdgs-icon img{
  width:100%;
  aspect-ratio:1;
  -o-object-fit:contain;
     object-fit:contain;
  border-radius:6px
}

.sdgs-home .center{
  margin-top:34px
}

@media (max-width:880px){
  .sdgs-icons{
    grid-template-columns:repeat(3,1fr);
    max-width:520px
  }

  .sdgs-head{
    text-align:left
  }

  .sdgs-head .sec-title{
    justify-content:flex-start
  }

  .sdgs-head .sec-sub{
    margin-left:0
  }
}

@media (max-width:540px){
  section.sdgs-home{
    padding:64px 0 72px
  }

  .sdgs-head .sec-title h2{
    font-size:27px;
    line-height:1.45
  }

  .sdgs-icons{
    grid-template-columns:repeat(2,1fr);
    gap:12px
  }

  .sdgs-icon{
    padding:8px
  }

  .sdgs-home .center{
    margin-top:26px
  }

  .sp-only{
    display:block
  }
}

/* HOME — Career Path */

section.career{
  padding:80px 0 96px;
  background:var(--bg-soft)
}

section.home-services{
  background:#fff
}

/* タイムライン — 非表示（矢印はカード右側に移動） */

.timeline{
  display:none
}

/* キャリアカード — 右肩上がりの階段配置 */

.career-cards{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:22px;
  align-items:end;
  margin-top:8px
}

.ccard.c1{
  margin-top:72px
}

.ccard.c2{
  margin-top:48px
}

.ccard.c3{
  margin-top:24px
}

.ccard.c4{
  margin-top:0
}

/* カード間の矢印（右側） */

.career-cards .ccard:not(.c4){
  position:relative
}

.career-cards .ccard:not(.c4)::after{
  content:'→';
  position:absolute;
  right:-18px;
  top:50%;
  transform:translateY(-50%);
  font-size:22px;
  font-weight:900;
  color:var(--pink);
  z-index:2;
  line-height:1
}

@media (max-width:980px){
  .career-cards{
    grid-template-columns:repeat(2,1fr);
    align-items:stretch;
    gap:20px
  }

  .ccard.c1,.ccard.c2,.ccard.c3,.ccard.c4{
    margin-top:0
  }

  .career-cards .ccard:not(.c4)::after{
    display:none
  }
}

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

.ccard{
  background:#fff;
  border-radius:18px;
  padding:28px 22px;
  transition:transform 240ms,box-shadow 240ms;
  box-shadow:0 4px 14px rgba(20,30,50,.04)
}

.ccard:hover{
  transform:translateY(-4px);
  box-shadow:0 16px 32px rgba(20,30,50,.08)
}

.career-cards .ccard:not(.c4)::after{
  content:"\2192";
  right:-22px;
  width:22px;
  text-align:center;
  pointer-events:none;
  transition:none
}

.career-cards .ccard:hover{
  transform:none;
  box-shadow:0 14px 30px rgba(20,30,50,.08)
}

.ccard .num{
  font-size:47px;
  font-weight:900;
  letter-spacing:-.03em;
  line-height:1
}

.ccard.c1 .num,.ccard.c2 .num,.ccard.c3 .num,.ccard.c4 .num{
  color:var(--pink)
}

.ccard .yrs{
  font-size:15px;
  font-weight:700;
  color:var(--ink-mid);
  margin-top:10px
}

.ccard .desc{
  font-size:17px;
  line-height:1.85;
  font-weight:700;
  margin:14px 0 20px;
  min-height:80px
}

.ccard .figure{
  aspect-ratio:1;
  border-radius:50%;
  margin:0 0 18px;
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
  box-shadow:inset 0 1px 0 rgba(255,255,255,.75)
}

.ccard.c1 .figure,.ccard.c2 .figure,.ccard.c3 .figure,.ccard.c4 .figure{
  background:linear-gradient(135deg,var(--accent-soft),var(--accent-soft-3))
}

.ccard .figure svg{
  width:70%;
  height:70%
}

.ccard ul{
  list-style:none;
  padding:0;
  margin:0;
  display:flex;
  flex-direction:column;
  gap:8px
}

.ccard ul li{
  display:flex;
  align-items:center;
  gap:10px;
  padding:10px 12px;
  border-radius:10px;
  font-size:15px;
  font-weight:700
}

.ccard.c1 ul li,.ccard.c2 ul li,.ccard.c3 ul li,.ccard.c4 ul li{
  background:var(--accent-soft);
  color:var(--pink-d)
}

.ccard ul li .ico{
  width:16px;
  height:16px;
  flex:0 0 16px
}

.career .center{
  text-align:center;
  margin-top:40px
}

/* HOME — Action Guidelines */

section.actions{
  padding:80px 0 96px
}

.ag-grid{
  display:grid;
  grid-template-columns:repeat(5,1fr);
  gap:18px;
  margin-top:32px;
  align-items:stretch
}

@media (max-width:980px){
  .ag-grid{
    grid-template-columns:repeat(2,1fr)
  }
}

@media (max-width:540px){
  .ag-grid{
    grid-template-columns:1fr
  }
}

.ag-card{
  border:1px solid var(--line);
  border-radius:16px;
  padding:30px 18px 26px;
  transition:transform 240ms,box-shadow 240ms;
  background:#fff;
  display:flex;
  flex-direction:column;
  min-height:190px
}

.ag-card:hover{
  transform:translateY(-3px);
  box-shadow:0 12px 28px rgba(20,30,50,.06)
}

.ag-card .ico{
  width:38px;
  height:38px;
  color:var(--pink);
  margin-bottom:16px
}

.ag-card .num{
  font-size:22px;
  font-weight:900;
  color:var(--ink-w);
  letter-spacing:-.02em;
  line-height:1;
  margin-bottom:12px
}

.ag-card .body{
  font-size:16px;
  line-height:1.85;
  font-weight:700
}

.ag-card .body.kanji{
  font-size:56px;
  line-height:1;
  text-align:center;
  color:var(--ink);
  letter-spacing:.08em;
  margin:0 0 20px
}

.ag-card .desc{
  font-size:17px;
  line-height:1.8;
  font-weight:700;
  color:var(--ink);
  text-align:center;
  margin:auto 0 0
}

/* HOME — Stats / Support */

section.stats{
  padding:80px 0 96px;
  background:var(--bg-soft)
}

.stats-grid{
  display:flex;
  flex-direction:column;
  gap:48px
}

@media (max-width:880px){
  .stats-grid{
    gap:40px
  }
}

.support{
  display:flex;
  flex-direction:column;
  gap:10px
}

.scard-h{
  background:#fff;
  border:1px solid var(--line);
  border-radius:14px;
  padding:16px 22px;
  display:flex;
  align-items:center;
  gap:20px;
  text-align:left
}

.scard-h .ico{
  width:28px;
  height:28px;
  flex:0 0 28px;
  color:var(--pink)
}

.scard-h .name{
  font-size:17px;
  font-weight:900;
  flex:0 0 120px
}

.scard-h .desc{
  font-size:16px;
  line-height:1.7;
  color:var(--ink-mid)
}

.nums{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px 16px;
  align-content:start
}

.nums .nbox .lbl{
  font-size:14px;
  font-weight:700;
  color:var(--ink-mid);
  margin-bottom:6px
}

.nums .nbox .val{
  font-size:35px;
  font-weight:900;
  color:var(--pink);
  letter-spacing:-.02em;
  line-height:1
}

.nums .nbox .val .u{
  font-size:19px;
  margin-left:4px;
  color:var(--ink)
}

/* HOME — Voice */

section.interview{
  padding:86px 0 98px;
  background:#fff;
  overflow:hidden
}

.voice-head{
  margin-bottom:54px
}

.voice-head .sec-title{
  margin-bottom:12px
}

.voice-head .sec-title h2{
  color:var(--ink)
}

.voice-head .sec-sub{
  margin-bottom:0
}

.voice-window{
  width:100%;
  overflow-x:auto;
  overflow-y:hidden;
  margin:0 auto;
  scroll-snap-type:x mandatory;
  scroll-behavior:smooth;
  scrollbar-width:none
}

.voice-window::-webkit-scrollbar{
  display:none
}

.voice-strip{
  display:flex;
  gap:32px;
  align-items:stretch
}

.voice-card{
  position:relative;
  display:block;
  flex:0 0 calc((100% - 96px)/4);
  aspect-ratio:318/388;
  background:#F4F5F7;
  overflow:hidden;
  color:#fff;
  scroll-snap-align:start
}

.voice-avatar{
  position:absolute;
  inset:0;
  display:flex;
  align-items:center;
  justify-content:center;
  background:linear-gradient(180deg,#F7F8FA 0%,#EEF1F4 100%)
}

.voice-avatar::before{
  content:"";
  position:absolute;
  top:21%;
  left:50%;
  width:31%;
  aspect-ratio:1;
  border-radius:50%;
  background:rgba(var(--accent-rgb),.24);
  transform:translateX(-50%)
}

.voice-avatar::after{
  content:"";
  position:absolute;
  left:50%;
  bottom:15%;
  width:52%;
  height:34%;
  border-radius:45% 45% 6px 6px;
  background:rgba(var(--accent-rgb),.24);
  transform:translateX(-50%)
}

.voice-label{
  position:absolute;
  left:0;
  bottom:0;
  min-width:82%;
  height:44px;
  background:var(--pink);
  display:flex;
  align-items:center;
  gap:20px;
  padding:0 20px;
  clip-path:polygon(0 0,92% 0,100% 100%,0 100%);
  font-weight:900;
  letter-spacing:.02em
}

.voice-label b{
  font-size:17px;
  white-space:nowrap
}

.voice-label span{
  font-size:13px;
  white-space:nowrap
}

.voice-controls{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:56px;
  margin-top:42px;
  position:relative
}

.voice-cta{
  margin-top:32px
}

.section-right-cta{
  margin-top:34px;
  text-align:right
}

.voice-dots{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:12px
}

.voice-dots span{
  width:8px;
  height:8px;
  border-radius:50%;
  background:#D1D5DB;
  display:block
}

.voice-dots span.is-on{
  background:var(--pink)
}

.voice-arrows{
  position:absolute;
  right:0;
  display:flex;
  gap:34px
}

.voice-arrow{
  width:50px;
  height:50px;
  border-radius:50%;
  background:#F3F4F6;
  color:var(--ink);
  font-size:24px;
  font-weight:900;
  display:grid;
  place-items:center;
  border:0;
  cursor:pointer;
  transition:background 180ms,color 180ms,transform 180ms
}

.voice-arrow:hover{
  background:var(--pink);
  color:#fff;
  transform:translateY(-1px)
}

.voice-arrow:disabled{
  opacity:.35;
  cursor:default;
  transform:none;
  background:#F3F4F6;
  color:var(--ink)
}

.recruit-voice{
  background:#fff;
  padding-top:0;
  overflow:visible
}

.recruit-voice .wrap{
  max-width:1040px
}

.recruit-voice .sec-title{
  justify-content:flex-start;
  margin-bottom:34px
}

.recruit-voice .sec-title h2{
  font-size:clamp(34px,3.8vw,46px)
}

.recruit-interview-list{
  display:flex;
  flex-direction:column;
  gap:22px
}

.recruit-interview-card{
  display:grid;
  grid-template-columns:190px 1fr auto;
  gap:34px;
  align-items:center;
  min-height:188px;
  background:#fff;
  border:1px solid var(--line);
  border-radius:18px;
  padding:28px 30px 28px 32px
}

.recruit-interview-photo{
  width:150px;
  aspect-ratio:1;
  border-radius:50%;
  display:grid;
  place-items:center;
  justify-self:center;
  background:rgba(var(--accent-rgb),.16);
  color:var(--ink-w);
  font-size:15px;
  font-weight:800
}

.recruit-interview-copy h3{
  font-size:21px;
  font-weight:900;
  line-height:1.65;
  letter-spacing:.03em;
  margin:0 0 10px;
  color:var(--ink)
}

.recruit-interview-meta{
  display:flex;
  flex-wrap:wrap;
  gap:10px 16px;
  align-items:center;
  margin-bottom:12px;
  font-size:14px;
  font-weight:900;
  color:var(--ink-mid)
}

.recruit-interview-meta b{
  color:var(--pink)
}

.recruit-interview-copy p{
  font-size:16px;
  line-height:1.9;
  color:var(--ink-mid);
  font-weight:500;
  margin:0
}

.recruit-interview-link{
  justify-self:end;
  color:var(--pink);
  font-size:15px;
  font-weight:900;
  white-space:nowrap
}

@media (max-width:880px){
  .voice-window{
    width:100%
  }

  .voice-strip{
    gap:28px
  }

  .voice-card{
    flex-basis:calc((100% - 28px)/2)
  }

  .voice-arrows{
    position:static
  }

  .voice-controls{
    justify-content:space-between;
    gap:24px
  }

  .recruit-interview-card{
    grid-template-columns:150px 1fr;
    gap:24px
  }

  .recruit-interview-link{
    grid-column:2;
    justify-self:start
  }
}

@media (max-width:720px){
  .recruit-voice .sec-title{
    margin-bottom:26px
  }

  .recruit-interview-card{
    grid-template-columns:1fr;
    gap:18px;
    padding:26px 22px;
    text-align:center
  }

  .recruit-interview-photo{
    width:138px
  }

  .recruit-interview-meta{
    justify-content:center
  }

  .recruit-interview-link{
    grid-column:1;
    justify-self:center
  }
}

@media (max-width:540px){
  section.interview{
    padding:64px 0 78px
  }

  .voice-head{
    margin-bottom:34px
  }

  .voice-head p{
    margin-top:16px
  }

  .voice-window{
    width:100%
  }

  .voice-strip{
    gap:18px
  }

  .voice-card{
    flex-basis:82%
  }

  .voice-label{
    height:40px;
    padding:0 16px;
    gap:12px
  }

  .voice-label b{
    font-size:15px
  }

  .voice-label span{
    font-size:12px
  }

  .voice-controls{
    margin-top:28px
  }

  .voice-arrow{
    width:44px;
    height:44px;
    font-size:20px
  }

  .voice-arrows{
    gap:14px
  }

  .recruit-interview-copy h3{
    font-size:18px
  }

  .recruit-interview-copy p{
    font-size:15px
  }

  .recruit-interview-photo{
    width:128px
  }
}

/* HOME — CTA banner */

section.cta-banner{
  padding:0 0 96px
}

#home > section.cta-banner{
  padding-top:30px
}

.service-detail section.cta-banner{
  margin-top:60px
}

.cb{
  background:var(--cta-panel);
  color:var(--ink);
  border-radius:28px;
  padding:48px 56px;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:40px;
  align-items:center
}

@media (max-width:720px){
  .cb{
    grid-template-columns:1fr;
    gap:22px;
    padding:32px 28px
  }

  .cb > div:first-child{
    display:contents
  }

  .cb h2{
    order:1;
    margin-bottom:0
  }

  .cb p{
    order:2;
    margin-bottom:0
  }

  .cb .group-photo{
    order:3
  }

  .cb .btn-pink{
    order:4;
    margin-top:0
  }
}

.cb h2{
  font-size:clamp(22px,2.2vw,28px);
  font-weight:900;
  letter-spacing:.02em;
  margin:0 0 14px;
  line-height:1.5
}

.cb h2 b{
  color:var(--cta-text)
}

.cb p{
  font-size:16px;
  color:var(--ink);
  margin:0 0 24px;
  font-weight:500
}

.cb .btn-pink{
  background:#fff;
  color:var(--cta-text);
  box-shadow:0 10px 24px rgba(20,30,50,.12)
}

.cb .group-photo{
  aspect-ratio:16/9;
  background:rgba(255,255,255,.5);
  border-radius:36px;
  display:flex;
  align-items:center;
  justify-content:center;
  color:var(--ink-w);
  font-size:16px;
  overflow:hidden;
  box-shadow:inset 0 1px 0 rgba(255,255,255,.75)
}

