:root {
  --bg: #f5f4f2;
  --bg2: #efede8;
  --bg3: #EFEFEF;
  --bg4:#f8f9fa;
  --text: #2b2b2b;
  --muted: #6b6b6b;
  --line: rgba(43, 43, 43, 0.18);
  --accent: #2f4f3e;
  --max: 980px;
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
  font-family:
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    "Hiragino Sans",
    "Hiragino Kaku Gothic ProN",
    "Noto Sans JP",
    Meiryo,
    sans-serif;
  color: var(--text);
  background: #fdfcfb;
  line-height: 2;
  letter-spacing: 0.04em;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: inherit;
}
.container {
  width: min(var(--max), calc(100% - 40px));
  margin-inline: auto;
  position: relative;
}
.section {
  padding: 72px 0;
}
html {
  scroll-behavior: smooth;
}
@media (max-width: 768px) {
  .section {
    padding: 56px 0;
  }
  .container {
    width: calc(100% - 32px);
  }
}

/* =========================
  Header
========================= */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background: transparent;
  transition: background-color 0.3s ease;
}

.site-header.is-scrolled {
  background: rgba(255,255,255,0.8);
  backdrop-filter: blur(6px);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
}
.brandlock.from-left::before {
    content: '';
    height: 4px;
    width: 135px;
    left: -49px;
    background: rgba(255, 255, 255, 0.8);
    position: absolute;
}
.header-logo img {
  height: 70px;
  filter: brightness(0) invert(1);
  transition:
    height 0.8s ease,
    filter 0.8s ease;
}
.site-header.is-scrolled .header-logo img {
  height: 30px;
  filter: none;
}

.hamburger {
  position: relative;
  width: 60px;
  height: 24px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.hamburger .line {
  display: block;
  height: 3px;
  background: #fff;
  margin-left: auto;
  transition: background-color 0.3s ease;
}
.hamburger .line {
  position: absolute;
  right: 0;
  height: 3px;
  background: #fff;
  transition:
    transform 0.35s ease,
    width 0.35s ease,
    background-color 0.3s ease;
}

.line--long {
  width: 60px;
  top: 4px;
}

.line--short {
  width: 40px;
  bottom: 4px;
}

.site-header.is-scrolled .hamburger .line {
  background: #333;
}
.hamburger.is-open .line {
  width: 42px;
  background: #fff;
}

.hamburger.is-open .line--long {
  transform: translateY(6px) rotate(45deg);
}

.hamburger.is-open .line--short {
  transform: translateY(-6px) rotate(-45deg);
}

.global-nav {
  position: fixed;
  top: 0;
  right: 0;
  width: min(360px, 80%);
  height: 100vh;
  background: rgba(51,51,51,0.7);
  backdrop-filter: blur(10px);
  transform: translateX(100%);
  transition: transform 0.4s ease;
  z-index: 200;
  padding: 80px 32px;
}

.global-nav.is-open {
  transform: translateX(0);
}

.global-nav__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.global-nav__list li {
  margin-bottom: 28px;
}

.global-nav__list a {
  color: #fff;
  text-decoration: none;
  font-size: 18px;
  letter-spacing: 0.08em;
}
.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.2);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 150;
}

.nav-overlay.is-active {
  opacity: 1;
  pointer-events: auto;
}


/* Hero */
.hero {
  position: relative;
  min-height: 50vh;
  max-height: 90vh;
  height: 1000px;
  display: flex;
  /* align-items: flex-end; */
  overflow: hidden;
  /* background: #111; */
}
.hero__bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.18)),
    url("../img/recruit_hero3.jpg") center/cover no-repeat;
  transform: scale(1.0);
  aspect-ratio: 1680 / 945;
  width: 100%;
  opacity: 0.4;
  filter: blur(6px);
  transform: scale(1.08);
  animation: heroReveal 2s cubic-bezier(.4, 0, .2, 1) forwards;
}
@keyframes heroReveal {
  0% {
    opacity: 0.4;
    filter: blur(8px);
    transform: scale(1.08);
  }
  100% {
    opacity: 1;
    filter: blur(0);
    transform: scale(1.0);
  }
}
.hero__bg::after{
  content:"";
  position:absolute;
  top: 0;
  bottom: 0; 
  width: 320px;
  left: calc(25vw - 80px);
  background: rgba(51,51,51,0.75);
  transform: skewX(-10deg);
  pointer-events: none;
}
.hero__inner {
  position: relative;
  width: 100%;
  padding: 56px 0 44px;
}
.brandlock {
  display: inline-flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
  position: absolute;
  top: 35vh;
  left: 10%;
}
.brandlock__sub {
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-family: inter;
  color: rgba(255, 255, 255, 0.8);
  font-size: clamp(48px, 5vw, 60px);;
  line-height: 1;
  margin-top: 20px;
}

/* Typo */
#values .eyebrow{
  font-size: clamp(18px, 2vw, 28px);
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 14px;
  position: absolute;
  left: 0;
  top: 50%;
  opacity: 0.45;
}
h2 {
  font-size: clamp(22px, 3.2vw, 34px);
  line-height: 1.35;
  letter-spacing: 0.02em;
  margin: 0 0 22px;
  font-weight: 600;
}
.lead {
  margin: 0;
  font-size: 15px;
  color: var(--text);
}
@media (min-width: 768px) {
  .lead {
    font-size: 16px;
    line-height: 1.3;
  }
}

.message p, .beyond p {
  margin: 0;
  white-space: pre-line;
}
.heading {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    overflow;
}
.heading-line {
    width: 20px;
    height: 1px;
    background: #777;
    flex-shrink: 0;
}
.main-message,
.people {
  position: relative;
  color: #fff;
  padding: 12% 0;
  overflow: visible;
  width: 80%;
  max-width: 1000px;
  margin: auto;
  font-family: Noto Sans JP;
}
.main-message > *,
.people > *{
  position: relative;
  z-index: 1;
}
.main-message__bg, 
.people__bg {
  position: absolute;
  top: 12%;
  height: 76%;
  background: #333;
  z-index: 0;
  left: calc(50% - 50vw);
  right: calc(40% - (40% * 0.50));
  right: 20%;
}
.people__bg {
  background: #eceff1;
  left: calc(40% - (40% * 0.50));
  right: calc(50% - 50vw);  
}
.peopleWrap{
  position: relative;
  overflow-x: clip;
}
a.info-item {
    display: flex;
}

.people{
  position: relative;
  width: 80%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 4% 0;
  z-index: 1;
}

.peopleWrap .people__bg{
  position: absolute;
  top: 12%;
  height: 76%;
  background: #eceff1;
  background: #f6f6f6;	
  z-index: 0;

  right: 0;
  left: 50%;
  margin-left: -230px;
}
.main-message .section.message, 
.beyond-section {
  position: relative;
  z-index: 2;
  width: 56%;
  padding: 0;
}

.main-message .container{
  padding: 0 56px;
}

.main-message .imagebreak.work-scene, 
.beyond-salon-work {
  position: absolute;
  right: 46px;
  top: 50%;
  transform: translateY(-50%);
  width: 44%;
  max-width: 520px;
  border-radius: 0;
  overflow: hidden;
  z-index: 3;
  cursor: default;
}

.main-message .imagebreak__img,
.beyond-salon-work .imagebreak__img {
  width: 100%;
  /* height: clamp(360px, 38vw, 520px); */
  object-fit: cover;
  display: block;
  filter: grayscale(18%) brightness(.92);
  transform: scale(1);
  transition: transform .9s ease, filter .9s ease;
  border-radius:0.75em;
}

.main-message .work-scene__title, 
.beyond-salon-work__title {
  position: absolute;
  left: 60%;
  top: 62%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
  color: rgba(255,255,255,.86);
  font-size: 20px;
  letter-spacing: .22em;
  text-transform: uppercase;
  pointer-events: none;
  font-family: Noto Sans JP;
  font-weight: 500;
}
.beyond-salon-work__title {
  color: rgba(40,40,40,.86);
  font-family:system-ui;
  left: 45%;
  top: 20%;
}
.beyond.section {
    padding-left: 53%;
}
.beyond-salon-work {
    left: 0;
}
.beyond .heading {
  color: rgba(40, 40, 40, 1);
  color: #333;
  font-weight: 400;
  opacity: 0.9;
  font-family: 'Inter';
  text-transform: uppercase;
}
.main-message .work-scene:hover .imagebreak__img,
.people .beyond-salon-work:hover .imagebreak__img{
  transform: scale(1.04);
  filter: grayscale(32%) brightness(.84);
}

.main-message .heading{
  display: inline-flex;
  align-items: center;
  gap: 16px;
  margin: 0 0 18px;
  font-size: clamp(22px, 2.2vw, 30px);
  font-weight: 700;
  letter-spacing: .04em;
  line-height: 1.25;
  font-family: Noto Sans JP;
}

.main-message .heading-line{
  width: 20px;
  height: 1px;
  background: rgba(255,255,255,.6);
  flex-shrink: 0;
}

.main-message .lead,
.beyond .lead{
  margin: 0;
  font-size: 16px;
  line-height: 1.2;
  letter-spacing: .06em;
  color: rgba(255,255,255,.86);
  max-width: 38em; 
}
.beyond .lead {
    color: rgba(40,40,40, .76);
}

/* Values */
.values {
  background: var(--bg);
}
.values__list {
  grid-template-columns: 1fr;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 34px;
  /* margin-top: 26px; */
  margin-left: 164px;
}
.value {
  padding-top: 22px;
  border-top: 1px solid var(--line);
  width: min(620px, 100%);
}
.value__title {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin: 0 0 10px;
}
.value__en {
  font-size: 14px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
}
.value__jp {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.value__text {
  margin: 0;
  font-size: 15px;
  color: var(--text);
  white-space: pre-line;
}
@media (min-width: 800px){
  .values__list{
    gap: 60px;
  }
  .value:nth-child(1){ transform: translateX(-60px); }
  .value:nth-child(2){ transform: translateX(0); }
  .value:nth-child(3){ transform: translateX(60px); }
}



/* Section base */
.owner-message{
  background: #fff;
  padding: clamp(48px, 6vw, 90px) 0;
  padding-bottom: clamp(120px, 12vw, 180px);
}
.owner-message__inner{
  width: min(1100px, 90%);
  margin: 0 auto;
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1.1fr; 
  align-items: center;
  gap: clamp(18px, 3vw, 40px);
}
.owner-photo{
  margin: 0;
  justify-self: end;
  width: min(420px, 100%);
  border-radius: 0.75em;
  overflow: hidden;
  background: #f5f4f2;
  transform: translate(-34px, 46px);
}
.owner-photo img{
  display: block;
  width: 100%;
  height: auto;
}
.owner-card{
  position: relative;
  z-index: 2;
  background: #fff;
  width: min(520px, 100%);
  padding: clamp(20px, 2.5vw, 34px);
  border-radius: 0x;  
  box-shadow:
    0 12px 30px rgba(0,0,0,0.08),
    0 2px 10px rgba(0,0,0,0.06);
}

@media (min-width: 900px){
  .owner-card{
    justify-self: start;
    transform: translate(150px,0px);
  }
}
.owner-card__label{
  margin: 0 0 10px;
  text-align: right;
  font-size: 14px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.55);
}

.owner-card__rule{
  display: block;
  width: 72px; 
  height: 1px;
  margin-left: auto;
  background: rgba(0,0,0,0.18);
  margin-bottom: 18px;
}

.owner-card__body{
  color: rgba(0,0,0,0.78);
  font-size: 15px;
  line-height: 2.2;
}

.owner-card__body p{
  margin: 0 0 10px;
}

.owner-card__body p:last-child{
  margin-bottom: 0;
}

.owner-card__sign{
  margin: 18px 0 0;
  text-align: right;
  font-size: 14px;
  letter-spacing: 0.08em;
  color: rgba(0,0,0,0.72);
}


@media (max-width: 899px){
  .owner-message__inner{
    grid-template-columns: 1fr;
  }

  .owner-photo{
    order: 1;
    width: min(680px, 100%);
    justify-self: center;
  }

  .owner-card{
    order: 2;
    transform: none;
    width: min(680px, 100%);
    margin-top: -18px;
  }
}




/* Recruit entry */
.entry {
  background: #f7f6f3;
  padding: clamp(56px, 8vw, 120px) 0;
}

/* layout */
.entry__inner {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: clamp(24px, 4vw, 64px);
  align-items: flex-start;
}

/* left title */
.entry__head {
  padding-top: 6px;
}

.entry__eyebrow {
  margin: 0;
  font-size: clamp(18px, 2vw, 28px);
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--muted);
  opacity: 0.45;
  margin-top: 50%;
  transform: translateY(-50%);
}

/* right body */
.entry__body {
  max-width: 520px;
}

.entry__text {
  margin: 0 0 30px;
  font-size: 16px;
  line-height: 2.1;
  color: rgba(0,0,0,0.75);
}

/* actions */
.entry__actions {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.entry__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  border: 1px solid rgba(0,0,0,0.18);
  background: rgba(0,0,0,0.02);
  text-decoration: none;
  color: rgba(0,0,0,0.8);
  transition: border-color 0.25s ease, color 0.25s ease;
  box-shadow: 0 0 3px 0 #eee;
  box-shadow: 0 6px 16px rgba(0,0,0,0.06);
  /* margin-top: 10px; */
}

.entry__label {
  font-size: 14px;
  letter-spacing: 0.04em;
}

.entry__arrow {
  font-size: 14px;
  opacity: 0.6;
  transform: translateX(-4px);
}

.entry__link:hover {
  border-color: rgba(0,0,0,0.4);
  color: rgba(0,0,0,0.9);
}

/* responsive */
@media (max-width: 768px) {
  .entry__inner {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .entry__head {
    padding-top: 0;
  }
}
.imagebreak.work-scene .is-animate.from-right.delay-2.is-active,
.imagebreak.beyond-salon-work .is-animate.from-left.delay-2.is-active {
    border-radius: .75em;
    overflow: hidden;
}

/* -------------Ã£Æ’ÂªÃ£â€šÂ¯Ã£Æ’Â«Ã£Æ’Â¼Ã£Æ’Ë†Ã§Â³Â»Ã£â‚¬â‚¬Ã£â€šÂ³Ã£Æ’Â³Ã£Æ’â€ Ã£Æ’Â³Ã£Æ’â€ž------------- */
.recruit-intro {
  padding: 120px 0 60px;
}

.recruit-intro__en {
  letter-spacing: 0.1em;
  opacity: 0.6;
}

.recruit-intro__jp {
  font-size: 36px;
  margin: 10px 0 20px;
}

.recruit-intro__lead {
  max-width: 600px;
  line-height: 1.8;
}

.recruit-hero {
  height: 400px;
  /* background: url(img/recruit_sub.jpg) center/cover no-repeat; */
  position: relative;
}

.recruit-hero::before {
  content:"";
  position:absolute;
  inset:0;
  /* background: rgba(0,0,0,0.1); */
}

.recruit-hero__inner {
  position: relative;
  z-index: 1;
  color: #333;
  padding-top: 180px;
  width: 1100px;
  margin: auto;
}

.cldpage .header-logo img {
    filter: unset;
}
.cldpage .hamburger .line {
  background:#333
} 
p.recruit-hero__en {
    font-size: 46px;
    font-family: inter;
    font-weight: 400;
}

h1.recruit-hero__jp {
    font-size: 16px;
    font-weight: normal;
    position: relative;
    padding-left: 1.5em;
    letter-spacing: 0.1em;
}

h1.recruit-hero__jp::before {
    content: '';
    position: absolute;
    background: #333;
    left: 0;
    top: 50%;
    width: 1em;
    height: 1px;
}
.interview-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 120px 60px;
  padding: 80px 0 120px;
}

.interview-card {
  text-decoration: none;
  color: inherit;
  display: block;
  position: relative;
}

.interview-card__image {
  overflow: hidden;
  width: 100%;
  max-width: 400px;
  aspect-ratio: 1 / 1;
  position: relative;
}

.interview-card__image img {
  width: 100%;
  transition: transform 0.5s ease;
  object-fit: cover; 
  object-position: top; 
  display: block;
  /* aspect-ratio: 1000 / 1000; */
}

.interview-card:hover img {
  transform: scale(1.05);
}

.interview-card__name {
  margin: 10px 0 5px;
  font-size: 18px;
}

.interview-card__meta {
  font-size: 14px;
  opacity: 0.6;
  margin-bottom:10px;
}
.interview-card__info {
    position: absolute;
    width: 80%;
    max-width: 370px;
    height: 108px;
    background-color: #fff;
    left: 15%;
    bottom: -10%;
    padding: 10px 30px;
    transition: background-color 0.3s ease;
}
.interview-card:hover .interview-card__info {
    background-color: rgba(51, 51, 51, 0.95);
}
.interview-card:hover .interview-card__name {
  color: #fff;
  letter-spacing: 0.05em;
  opacity: .95;
}

.interview-card:hover .interview-card__meta {
  color: #fff;
  opacity: .8;
}

/* ===== interview visual layout ===== */
.interview-visual{
  position: relative;
  padding: 120px 0 140px;
  overflow: hidden;
}

.interview-visual__band{
  position: absolute;
  top: -30px;
  right: calc(50% - 50vw);
  left: 20vw;
  bottom: -120px;
  /* height: 560px; */
  background: #F4F3F2;
  z-index: -1;
}

.interview-visual__wrap{
  position: relative;
  z-index: 1;
  width: min(1160px, calc(100% - 80px));
  margin: 0 auto;

  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.interview-visual__photo{
  margin: 0;
  width: 100%;
  max-width: 520px;
  justify-self: start;
  position: relative;
  top: 30px;
  left: 60px;
}

.interview-visual__photo img{
  width: 100%;
  height: auto;
  display: block;
  box-shadow: 0 30px 70px rgba(0,0,0,0.08);
  border-radius: 0.75em;
}

.interview-visual__card{
  background: rgba(255,255,255,.9);
  padding: 34px 40px 60px;
  max-width: 560px;
  width: 100%;
  justify-self: start;
  position: relative;
  top: 80px;
  left: -95px;
  box-shadow: 0 40px 80px rgba(0,0,0,0.06);
}

.interview-visual__cardHead{
  text-align: right;
}

.interview-visual__tag{
  margin: 0 0 6px;
  font-size: 12px;
  letter-spacing: 0.14em;
  opacity: 0.7;
}

.interview-visual__name{
  margin: 0 0 6px;
  font-size: 20px;
  letter-spacing: 0.08em;
}

.interview-visual__meta{
  margin: 0;
  font-size: 12px;
  letter-spacing: 0.08em;
  opacity: 0.65;
}

.interview-visual__line{
  height: 1px;
  background: #222;
  opacity: 0.6;
  margin: 18px 0 22px;
  width: 70%;
  margin-left: auto;
}

.iv-qa__item{
  padding: 16px 0;
}

.iv-qa__q{
  margin: 0 0 6px;
  font-size: 16px;
  line-height: 1.7;
  font-weight: 500;
}

.iv-qa__no{
  display: inline-block;
  width: 42px;
  letter-spacing: 0.12em;
  opacity: 0.7;
}

.iv-qa__a{
  margin: 0;
  font-size: 14px;
  line-height: 1.9;
  opacity: 0.85;
}
.apply-cta{
  text-align: center;
  padding: 40px 0 90px;
}
.apply-cta__lead{
  margin: 0 0 18px;
  opacity: .75;
}
.cldpage .section--alt {
  background: unset;
}
.section--alt .l-container {
    display: block;
}
.apply-cta .btn-reserve {
    padding: 16px 160px;
}

/* ===== responsive ===== */
@media (max-width: 980px){
  .interview-visual{
    padding: 80px 0 100px;
  }

  .interview-visual__band{
    left: 8vw;
    height: 420px;
    top: 30px;
  }

  .interview-visual__inner{
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .interview-visual__photo{
    max-width: 520px;
    top: 0;
  }

  .interview-visual__card{
    top: 0;
    left: 0;
    max-width: 700px;
    padding: 28px 26px 28px;
  }

  .interview-visual__cardHead{
    text-align: left;
  }
}

@media (max-width: 560px){
  .interview-visual__inner{
    width: min(1160px, calc(100% - 32px));
  }

  .interview-visual__band{
    left: 0;
    height: 260px; /* Ã¥Â¸Â¯Ã£ÂÂ¯Ã¦Å½Â§Ã£ÂË†Ã£â€šÂÃ£ÂÂ« */
  }

  .interview-visual__card{
    padding: 22px 18px 22px;
  }

  .iv-qa__q{
    font-size: 15px;
  }
}

.career{
  padding: 120px 0 140px;
  /* background-color: #F8F9FB; */
}

.career__lead{
  /* max-width: 760px; */
  line-height: 2;
  margin-top: 18px;
  opacity: .9;
  position: relative;
  z-index: 10;
}

.career__leadStrong{
  font-weight: 600;
  letter-spacing: .06em;
}

.timeline{
  margin-top: 70px;
  position: relative;
  padding-left: 42px;
  /* margin-left: 16vw; */
  width: 100%;
  max-width: 660px;
  margin: 120px auto;
}

.timeline::before{
  content:"";
  position:absolute;
  top: 0;
  bottom: 0;
  left: 14px;
  width: 1px;
  background: rgba(0,0,0,.14);
}

.timeline-item{
  position: relative;
  padding: 0 0 56px;
  z-index: 1;
}

.timeline-item:last-child{
  padding-bottom: 0;
}

.timeline-item::before{
  content:"";
  position:absolute;
  left: 8px;
  top: 6px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid rgba(0,0,0,.35);
}

.timeline-item__head{
  margin-bottom: 14px;
}

.timeline-item__term{
  margin: 0 0 6px;
  font-size: 13px;
  letter-spacing: .12em;
  opacity: .7;
  padding-left: 2.4em;
}

.timeline-item__title{
  margin: 0;
  font-size: 22px;
  font-weight: 500;
  letter-spacing: .04em;
}

.timeline-item__body{
  max-width: 780px;
}

.timeline-list{
  margin: 0 0 12px;
  padding-left: 18px;
  line-height: 2;
  opacity: .9;
}

.timeline-item__note{
  margin: 0;
  line-height: 2;
  opacity: .75;
}

.timeline-item--goal::before{
  background: #333;
  border-color: #333;
}

.timeline-item__goal{
  margin: 0 0 10px;
  padding: 16px 18px;
  background: #F4F3F2;
  display: inline-flex;
  gap: 12px;
  align-items: center;
}

.timeline-item__goalLabel{
  font-size: 12px;
  letter-spacing: .14em;
  opacity: .7;
}
.career .l-container {
    display: block;
}

.section-head {
    text-align: right;
    position: relative;
    overflow: visible;
}

.career {
    background-color: #f8f9fb;
    overflow: hidden;
}

.section-head::after {
    content: '';
    width: 100%;
    position: absolute;
    background-color: #f4f4f4;
    top: -30px;
    bottom: -20px;
    left: 40%;
    /* transform: translateX(50vw); */
    overflow: hidden;
    z-index: 5;
}

section.career .section-head__en {
    margin: 0 0 10px;
    letter-spacing: 0.08em;
    opacity: 0.7;
    z-index: 10;
    position: relative;
    font-size: 46px;
}

section.career .section-head__jp {
    margin: 0 0 20px;
    font-weight: 500;
    position: relative;
    z-index: 10;
    font-size: 16px;
    font-weight: normal;
}

.timeline::after {
    content: 'CURRICULUM';
    font-family: 'Inter';
    font-size: 76px;
    color: #e1e1e1;
    position: absolute;
    transform: rotate(-90deg);
    top: 50vh;
    left: -378px;
    opacity: 0.8;
    letter-spacing: 0.08em;
}
.timeline-item{
  padding: 0 0 64px;
}
.timeline-item + .timeline-item{
  border-top: 1px solid rgba(0,0,0,.06);
  padding-top: 40px;
}

.timeline-item:not(:first-child)::before {
    top: 46px;
}

/* responsive */
@media (max-width: 900px){
  .career{
    padding: 90px 0 110px;
  }

  .timeline{
    padding-left: 34px;
  }

  .timeline-item__title{
    font-size: 20px;
  }
}
.seminar {
  padding: 140px 0;
  position: relative;
}

.seminar-gallery {
  position: relative;
  margin-top: 10px;
  width: 60%;
  margin-left: 2%;
}

.seminar-item {
  position: relative;
  /* overflow: hidden; */
}

.seminar-item img {
  width: 100%;
  height: auto;
  display: block;
}

.seminar-item--large {
  width: 74%;
  margin-left: 20%;
  z-index: 2;
}

.seminar-item--left {
  width: 50%;
  margin-top: -100px;
  z-index: 10;
}

.seminar-item--right {
  width: 35%;
  margin-left: auto;
  margin-top: -110px;
}

.seminar__bg {
    position: absolute;
    top: 12%;
    height: 76%;
    z-index: 0;
    right: 30%;
    left: 0%;
    background: #f4f4f4;
}

.seminar .l-container {
    display: flex;
    align-items: center;
}

.seminar-head {
    width: 38%;
    padding-right: 4%;
}

.seminar-head .section-head__en, .career-route .section-head__en {
    font-size: 36px;
    font-family: 'Inter';
}

.seminar-head .section-head__jp, .career-route .section-head__jp {
    font-size: 16px;
    z-index: 10;
    position: relative;
    font-weight: normal;
}

.seminar-head .seminar-lead {
    position: relative;
}

.seminar-item img {
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  transition: transform .6s ease, filter .6s ease;
}

.seminar-item:hover img{
  transform: scale(1.02);
  filter: brightness(0.98);
}
.career-route {
    background: #f8f8f8;
    padding: 120px 0;
    position: relative;
}

.career-route .l-container {
    display: block;
}

.career-route .section-head::after {
    content: none;
}

.career-route .section-head {
    text-align: left;
    margin-bottom: 60px;
}

.route h5 {
    font-size: 18px;
    font-weight: normal;
    position: relative;
    padding-left: 1.4em;
}

.route h5::before {
    content: '';
    width: 1em;
    height: 1px;
    position: absolute;
    background: #333;
    opacity: 0.4;
    left: 0;
    top: 50%;
}

.plan2 h5 {
    margin: 40px 0 20px;
}

.route {
    margin-bottom: 40px;
}

p.career-route__note {
    opacity: 0.8;
}

.job-section {
    margin: 64px auto 0;
    width: 100%;
    max-width: 980px;
    padding-bottom: 60px;
}
.job-head { margin-bottom: 24px; }
.job-label { display:block; letter-spacing:.12em; font-size:12px; opacity:.7; }
.job-title { margin: 6px 0 0; font-size: 28px; }
.job-note  { margin: 12px 0 0; opacity: .85; }

.job-dl { display:flex; flex-direction:column; gap: 16px; }
.job-row { padding-bottom: 16px; border-bottom: 1px solid rgba(0,0,0,.12); }
.job-row dt { font-size: 13px; letter-spacing:.08em; opacity:.7; }
.job-row dd { margin: 8px 0 0; }

.job-list { margin: 0; padding-left: 1.2em; }
.job-list li { margin: 4px 0; }

@media (min-width: 900px) {
  .job-row { display:flex; gap: 24px; }
  .job-row dt { width: 220px; flex-shrink: 0; margin-top: 2px; }
  .job-row dd { margin: 0; flex: 1; }
}
.job-tabs {
  display:flex;
  gap: 48px;
  margin:40px 0;
  justify-content: center;
}

.job-tab {
  padding: 10px 48px;
  border:1px solid #333;
  border-radius:999px;
  text-decoration:none;
  font-size:14px;
}

.job-tab:hover {
  background:#333;
  color:#fff;
}

.r-section { padding: 72px 0; }
.r-section__inner,
.r-entry-hero__inner { width: min(1100px, 92%); margin: 0 auto; }

.r-kicker { display:block; font-size:12px; letter-spacing:.18em; opacity:.7; }
.r-title { margin: 10px 0 0; font-size: 44px; letter-spacing:.02em; }
.r-h2 { margin: 10px 0 0; font-size: 28px; letter-spacing:.02em; }
.r-h3 { margin: 0; font-size: 18px; letter-spacing:.02em; }
.r-lead { margin: 18px 0 0; line-height: 1.9; opacity:.9; }
.r-text { margin: 14px 0 0; line-height: 1.9; opacity:.9; }
.r-caption { margin: 10px 0 0; font-size: 13px; opacity:.7; }

.r-section--muted { background: rgba(0,0,0,.03); }
.r-section--final { padding: 88px 0; text-align:center; }

.r-section__head { margin-bottom: 26px; }

.r-entry-hero { padding: 92px 0 64px; }
.r-entry-hero__cta { margin-top: 26px; display:flex; gap:14px; flex-wrap:wrap; }

.r-btn{
  display:inline-flex; align-items:center; justify-content:center;
  height: 44px; padding: 0 22px; border-radius: 999px;
  text-decoration:none; font-size:14px; letter-spacing:.06em;
  border: 1px solid rgba(0,0,0,.25);
}
.r-btn--primary{ background:#111; color:#fff; border-color:#111; }
.r-btn--ghost{ background:transparent; color:#111; }
.r-btn:hover{ opacity:.86; }

.r-cards{ display:grid; gap:16px; }
.r-card{
  border: 1px solid rgba(0,0,0,.12);
  border-radius: 16px;
  padding: 22px;
  background:#fff;
}
.r-card__label{
  display:inline-block;
  font-size:11px; letter-spacing:.14em;
  padding: 6px 10px;
  border: 1px solid rgba(0,0,0,.14);
  border-radius: 999px;
  opacity:.75;
  margin-bottom: 14px;
}
.r-link{ display:inline-block; margin-top:16px; text-decoration:none; }
.r-link:hover{ text-decoration:underline; }

.r-copybox{
  margin-top: 10px;
  padding: 14px 16px;
  border-radius: 12px;
  background: rgba(0,0,0,.03);
  border: 1px solid rgba(0,0,0,.10);
  line-height: 1.8;
  font-size: 14px;
  white-space: pre-line;
}

.r-flow{ list-style:none; padding:0; margin: 0; display:flex; flex-direction:column; gap:14px; }
.r-flow__item{
  display:flex; gap:14px;
  padding: 18px;
  border-radius: 16px;
  border: 1px solid rgba(0,0,0,.10);
  background:#fff;
	align-items: center;
}
.r-flow__num{
  width: 44px; height: 44px; border-radius: 999px;
  display:flex; align-items:center; justify-content:center;
  border: 1px solid rgba(0,0,0,.18);
  font-size: 13px; letter-spacing:.08em;
  flex-shrink:0;
}
.r-flow__body p{ margin: 8px 0 0; }

.r-cta{
  border: 1px solid rgba(0,0,0,.12);
  border-radius: 18px;
  padding: 22px;
  background:#fff;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 18px;
}
.r-cta__text p{ margin-top: 10px; }
.r-faq{ display:flex; flex-direction:column; gap: 10px; }
.r-faq__item{
  border: 1px solid rgba(0,0,0,.12);
  border-radius: 14px;
  padding: 14px 16px;
  background:#fff;
}
.r-faq__item summary{
  cursor:pointer;
  font-size: 15px;
  letter-spacing:.02em;
}
.r-faq__item p{ margin: 10px 0 0; line-height: 1.9; opacity:.9; }

@media (min-width: 900px){
  .r-cards{ grid-template-columns: 1fr 1fr; }
}
@media (max-width: 700px){
  .r-title{ font-size: 36px; }
  .r-cta{ flex-direction:column; align-items:flex-start; }
  .r-btn{ width:100%; }
}




.page-recruit .is-animate {
  opacity: 0;
  transform: translate3d(0, 0, 0);
  transition:
    opacity 0.8s ease,
    transform 0.8s cubic-bezier(.4, 0, .2, 1);
  will-change: opacity, transform;
}

.page-recruit .is-animate.from-left {
  transform: translate3d(-80px, 0, 0);
}
.page-recruit .is-animate.from-left-2 {
  transform: translate3d(-200px, 0, 0);
}

.page-recruit .is-animate.from-right {
  transform: translate3d(80px, 0, 0);
}
.page-recruit .is-animate.from-right-2 {
  transform: translate3d(200px, 0, 0);
}

.page-recruit .is-animate.from-bottom {
  transform: translate3d(0, 80px, 0);
}

.page-recruit .is-animate.is-active {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.page-recruit .delay-1 { transition-delay: 0.4s; }
.page-recruit .delay-2 { transition-delay: 0.8s; }
.page-recruit .delay-3 { transition-delay: 1.2s; }
