@charset "UTF-8";
/* CSS Document */
/* ==================================================
   BASE VARIABLES
================================================== */

:root {
  --black: #111111;
  --dark: #1d1f23;
  --gray: #6f747c;
  --light-gray: #f3f5f7;
  --line: #d9dee5;
  --blue: #0066ff;
  --white: #ffffff;
}

/* ==================================================
   BASE RESET
================================================== */

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--black);
  font-family: "Noto Sans JP", sans-serif;
}

/* ==================================================
   HERO
================================================== */

.career-hero {
  position: relative;
  min-height: 92vh;
  padding: 96px 24px;
  background: linear-gradient(135deg, #ffffff 0%, #eef3f8 100%);
  overflow: hidden;
}

.hero-bg-text {
  position: absolute;
  right: -40px;
  bottom: 40px;
  color: rgba(0, 0, 0, 0.035);
  font-size: clamp(72px, 15vw, 220px);
  font-weight: 900;
  letter-spacing: -0.06em;
  white-space: nowrap;
  pointer-events: none;
}

.career-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 1500px;
  min-height: 70vh;
  margin: 0 auto;
  display: grid;
  align-items: center;
  gap: 60px;
}



/* ==================================================
   COMMON SECTION LABEL
================================================== */

.section-label {
  margin: 0 0 18px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.career-hero h1 {
  margin: 0 0 30px;
  font-size: 5rem;
  line-height: 1.15;
  letter-spacing: -0.05em;
}

.career-hero p {
  max-width: 620px;
  color: var(--gray);
  font-size: 17px;
  line-height: 2;
}

@media (max-width: 900px) {
.career-hero h1 {

  font-size: 3rem;

}
}
/* ==================================================
   COMMON BUTTON
================================================== */

.career-button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 28px;
  padding: 15px 32px;
  background: var(--black);
  color: var(--white);
  border: 1px solid var(--black);
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 0.08em;
  transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}

.career-button::after {
  content: "→";
  color: var(--blue);
  transition: transform 0.25s ease, color 0.25s ease;
}

.career-button:hover {
  background: var(--blue);
  border-color: var(--blue);
  color: var(--white);
}

.career-button:hover::after {
  color: var(--white);
  transform: translateX(6px);
}

.career-hero__visual {
  position: relative;
  height: 520px;
}

.visual-card {
  position: absolute;
  background: var(--dark);
  color: var(--white);
  border: 1px solid #2d3036;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.18);
}

.visual-card span {
  display: block;
  color: var(--blue);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.visual-card strong {
  display: block;
  margin-top: 18px;
  font-size: 46px;
  letter-spacing: -0.05em;
}

.visual-card--main {
  top: 40px;
  right: 0;
  width: 330px;
  height: 360px;
  padding: 36px;
}

.visual-card--sub {
  left: 0;
  bottom: 30px;
  width: 260px;
  height: 220px;
  padding: 30px;
  background: var(--white);
  color: var(--black);
}

/* ==================================================
   MAIN LAYOUT
================================================== */

.career {
  max-width: 1180px;
  margin: 0 auto;
  padding: 100px 24px;
}

/* ==================================================
   01 ABOUT US
================================================== */

.split-section {
  position: relative;
  display: grid;
  grid-template-columns: 0.35fr 1fr 1fr;
  gap: 48px;
  padding: 80px 0;
  border-top: 1px solid var(--line);
}

.section-number {
  color: var(--blue);
  font-size: 8rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.08em;
}

.section-number--light {
  color: rgba(255, 255, 255, 0.18);
  margin-bottom: 24px;
}

.section-title-row {
  display: grid;
  grid-template-columns: 0.35fr 1fr;
  gap: 48px;
  align-items: start;
  margin-bottom: 48px;
}

.split-section h2,
.section-heading h2,
.person-section h2,
.contact-section h2 {
  margin: 0;
  font-size:4rem;
  line-height: 1.35;
  letter-spacing: -0.05em;
}

.split-section__body p,
.section-heading p,
.value-card p,
.work-list p,
.contact-section p {
  color: var(--gray);
  line-height: 2;
}

@media (max-width: 900px) {
	.split-section h2,
.section-heading h2,
.person-section h2,
.contact-section h2 {
  font-size:3rem;
 
}
}

/* ==================================================
   SECTION COMMON SPACING
================================================== */

.value-section,
.work-section,
/* ==================================================
   04 PERSON
================================================== */

.person-section {
  padding: 100px 0;
  border-top: 1px solid var(--line);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 0;
}

/* ==================================================
   02 VALUE
================================================== */

.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.value-card {
  min-height: 300px;
  padding: 36px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.value-card span {
  color: var(--blue);
  font-weight: 900;
}

.value-card h3 {
  margin: 80px 0 18px;
  color: var(--black);
  font-size: 30px;
}

@media (max-width: 900px) {
.value-card h3 {
  margin: 15px auto;
}
	
}

/* ==================================================
   03 WORK
================================================== */

.work-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(260px, 1fr));
  gap: 20px;
  overflow-x: auto;
  padding-bottom: 18px;
}

.work-list article {
  position: relative;
  min-height: 300px;
  padding: 30px;
  background: var(--light-gray);
  border-top: 4px solid var(--blue);
}

.work-list span {
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.work-list h3 {
  margin: 70px 0 16px;
  font-size: 26px;
}

.career-note {
  margin-top: 20px;
  color: var(--gray);
  font-size: 14px;
}

.person-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 80px;
  align-items: start;
}

.person-section .section-number {
  margin-bottom: 24px;
}

.person-section ul {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.person-section li {
  position: relative;
  padding: 24px 0 24px 36px;
  border-bottom: 1px solid var(--line);
  font-size: 18px;
  font-weight: 700;
}

.person-section li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 34px;
  width: 14px;
  height: 14px;
  background: var(--blue);
}

/* ==================================================
   05 CONTACT
================================================== */


.contact-section {
  position: relative;
  margin-top: 80px;
  padding: 100px 60px;
  background: var(--black);
  color: var(--white);
  overflow: hidden;

  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.contact-section .section-number {
  margin-bottom: 16px;
}

.contact-section .section-label {
  margin-bottom: 24px;
}

.contact-section h2 {
  margin: 0 0 28px;
  font-size: clamp(38px, 5vw, 64px);
	
}

.contact-section p {
  margin: 0;
  max-width: 520px;
  line-height: 2;
	color:#B4B4B4;
}

.contact-section .career-button {
  margin-top: 40px;
}
/* ==================================================
   SCROLL ANIMATION
================================================== */

/* スクロール演出 */
.js-fade,
.js-section .section-label,
.js-section h2,
.js-section p,
.js-section .section-number,
.js-section .value-card,
.js-section .work-list article,
.js-section li,
.js-section .career-button {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.js-fade.is-visible,
.js-section.is-visible .section-label,
.js-section.is-visible h2,
.js-section.is-visible p,
.js-section.is-visible .section-number,
.js-section.is-visible .value-card,
.js-section.is-visible .work-list article,
.js-section.is-visible li,
.js-section.is-visible .career-button {
  opacity: 1;
  transform: translateY(0);
}

.js-section .section-number {
  transform: translateX(-36px);
}

.js-section.is-visible .section-number {
  transform: translateX(0);
}

.js-section.is-visible .section-label {
  transition-delay: 0.05s;
}

.js-section.is-visible h2 {
  transition-delay: 0.12s;
}

.js-section.is-visible p {
  transition-delay: 0.2s;
}

.js-section.is-visible .value-card:nth-child(1),
.js-section.is-visible .work-list article:nth-child(1),
.js-section.is-visible li:nth-child(1) {
  transition-delay: 0.1s;
}

.js-section.is-visible .value-card:nth-child(2),
.js-section.is-visible .work-list article:nth-child(2),
.js-section.is-visible li:nth-child(2) {
  transition-delay: 0.18s;
}

.js-section.is-visible .value-card:nth-child(3),
.js-section.is-visible .work-list article:nth-child(3),
.js-section.is-visible li:nth-child(3) {
  transition-delay: 0.26s;
}

.js-section.is-visible .work-list article:nth-child(4),
.js-section.is-visible li:nth-child(4) {
  transition-delay: 0.34s;
}

.js-section.is-visible li:nth-child(5) {
  transition-delay: 0.42s;
}

/* ==================================================
   RESPONSIVE : TABLET
================================================== */

@media (max-width: 900px) {
  .career-hero__inner,
  .split-section,
  .section-title-row,
  .person-section {
    grid-template-columns: 1fr;
  }

  .career-hero__visual {
    height: 360px;
  }

  .visual-card--main {
    width: 280px;
    height: 280px;
  }

  .visual-card--sub {
    width: 220px;
    height: 180px;
  }

  .value-grid {
    grid-template-columns: 1fr;
  }

  .contact-section {
    padding: 56px 28px;
  }
}

/* ==================================================
   RESPONSIVE : MOBILE
================================================== */

@media (max-width: 640px) {
  .career-hero {
    min-height: auto;
    padding: 72px 20px;
  }

  .career {
    padding: 72px 20px;
  }

  .career-hero__visual {
    display: none;
  }

  .section-number {
    font-size: 48px;
  }

  .work-list {
    grid-template-columns: repeat(4, 260px);
  }
}


/* ==================================================
   ALIGNMENT FIX : TEXT POSITION
   追加調整：TOPのテキストを中央寄せにし、各セクションの基準位置を整理
================================================== */

/* TOP：コピー全体を中央に配置 */
.career-hero {
  display: flex;
  align-items: center;
  min-height: 92vh;
  padding: 120px 24px 96px;
}

.career-hero__inner {
  width: 100%;
  max-width: 1180px;
  min-height: auto;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

.career-hero__copy {
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
}

.career-hero__copy .section-label {
  text-align: center;
}

.career-hero h1 {
  max-width: 900px;
  margin: 0 auto 30px;
  text-align: center;
}

.career-hero p {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.career-hero .career-button {
  margin-left: auto;
  margin-right: auto;
}

/* 背景の大きな英字が強すぎる場合でも本文を邪魔しない位置に */
.hero-bg-text {
  left: 50%;
  right: auto;
  bottom: -22px;
  transform: translateX(-50%);
  width: max-content;
}

/* 見出しブロックの余白を統一 */
.section-label {
  line-height: 1.4;
}

.section-heading p {
  margin: 16px 0 0;
}

/* 04 PERSON：他セクションと左端の基準を揃える */
.person-section {
  grid-template-columns: 0.35fr 1fr;
  gap: 48px;
}

/* 05 CONTACT：左右余白が極端に見えないよう調整 */
.contact-section {
  padding: 80px 48px;
}

/* スマホでは中央寄せを保ちつつ、文字が大きくなりすぎないよう調整 */
@media (max-width: 640px) {
  .career-hero {
    padding: 96px 20px 72px;
  }

  .career-hero h1 {
    font-size: 3rem;
    line-height: 1.22;
  }

  .career-hero p {
    font-size: 15px;
    line-height: 1.9;
  }

  .hero-bg-text {
    bottom: -8px;
    font-size: 72px;
  }

  .person-section {
    grid-template-columns: 1fr;
  }

  .contact-section {
    padding: 56px 28px;
  }
}


/* ==================================================
   FORCE BLUE LABELS
================================================== */
.value-section .section-label,
.work-section .section-label,
.contact-section .section-label {
  color: var(--blue) !important;
}

.contact-section .section-number,
.contact-section .section-number--light {
  color: var(--blue) !important;
}


/* ==================================================
   SECTION CENTER BALANCE FIX
   数字位置を揃え、見出しテキストをページ中央に配置
================================================== */

/* 01 ABOUT US：数字は左、テキストは中央 */
.split-section {
  grid-template-columns: 180px minmax(0, 1fr) 180px !important;
  gap: 24px !important;
  align-items: center !important;
}

.split-section > .section-number {
  grid-column: 1;
  grid-row: 1 / span 2;
  align-self: start;
}

.split-section__title {
  grid-column: 2;
  text-align: center !important;
}

.split-section__body {
  grid-column: 2;
  text-align: center !important;
  max-width: 780px;
  margin: 28px auto 0;
}

.split-section__body p {
  text-align: center !important;
}

/* 02 VALUE・03 WORK：数字は左、見出しは中央 */
.value-section .section-title-row,
.work-section .section-title-row {
  grid-template-columns: 180px minmax(0, 1fr) 180px !important;
  gap: 24px !important;
  align-items: center !important;
}

.value-section .section-title-row > .section-number,
.work-section .section-title-row > .section-number {
  grid-column: 1;
  justify-self: start;
}

.value-section .section-heading,
.work-section .section-heading {
  grid-column: 2;
  max-width: none !important;
  text-align: center !important;
}

.value-section .section-heading .section-label,
.work-section .section-heading .section-label,
.value-section .section-heading h2,
.work-section .section-heading h2,
.value-section .section-heading p,
.work-section .section-heading p {
  text-align: center !important;
}

/* 数字の見え方を統一 */
.split-section > .section-number,
.value-section .section-title-row > .section-number,
.work-section .section-title-row > .section-number {
  width: 180px;
  line-height: 0.9;
}

/* スマホでは縦積みに戻す */
@media (max-width: 900px) {
  .split-section,
  .value-section .section-title-row,
  .work-section .section-title-row {
    grid-template-columns: 1fr !important;
  }

  .split-section > .section-number,
  .split-section__title,
  .split-section__body,
  .value-section .section-title-row > .section-number,
  .work-section .section-title-row > .section-number,
  .value-section .section-heading,
  .work-section .section-heading {
    grid-column: 1 !important;
  }

  .split-section > .section-number,
  .value-section .section-title-row > .section-number,
  .work-section .section-title-row > .section-number {
    width: auto;
  }
}


/* ==================================================
   SECTION NUMBER OPTICAL CENTER FIX
   数字と見出しブロックの視覚的な水平中央を調整
================================================== */

/* 01 ABOUT US：見出しが複数行なので数字をやや下げる */
.split-section > .section-number {
  align-self: center !important;
  transform: translateY(34px) !important;
}

/* 02 VALUE：見出しブロックに対して数字を少し下げる */
.value-section .section-title-row > .section-number {
  align-self: center !important;
  transform: translateY(18px) !important;
}

/* 03 WORK：見出し＋説明文に対して数字を少し下げる */
.work-section .section-title-row > .section-number {
  align-self: center !important;
  transform: translateY(14px) !important;
}

/* スクロール表示後も同じ位置を維持 */
.js-section.is-visible.split-section > .section-number {
  transform: translateY(34px) !important;
}

.js-section.is-visible.value-section .section-title-row > .section-number {
  transform: translateY(18px) !important;
}

.js-section.is-visible.work-section .section-title-row > .section-number {
  transform: translateY(14px) !important;
}

/* スマホでは数字を下げず、自然な縦積みに戻す */
@media (max-width: 900px) {
  .split-section > .section-number,
  .value-section .section-title-row > .section-number,
  .work-section .section-title-row > .section-number,
  .js-section.is-visible.split-section > .section-number,
  .js-section.is-visible.value-section .section-title-row > .section-number,
  .js-section.is-visible.work-section .section-title-row > .section-number {
    transform: translateY(0) !important;
  }
}


/* ==================================================
   MOBILE CENTER ALIGN FIX
   狭い画面では 01 / 02 / 03 を同じ中央レイアウトに統一
================================================== */

@media (max-width: 900px) {

  .split-section,
  .value-section .section-title-row,
  .work-section .section-title-row {
    grid-template-columns: 1fr !important;
    text-align: center !important;
  }

  .split-section > .section-number,
  .value-section .section-title-row > .section-number,
  .work-section .section-title-row > .section-number {
    width: auto !important;
    margin: 0 auto 20px !important;
    justify-self: center !important;
    text-align: center !important;
  }

  .split-section__title,
  .split-section__body,
  .value-section .section-heading,
  .work-section .section-heading {
    text-align: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .split-section__title .section-label,
  .split-section__title h2,
  .split-section__body p,
  .value-section .section-heading .section-label,
  .value-section .section-heading h2,
  .work-section .section-heading .section-label,
  .work-section .section-heading h2,
  .work-section .section-heading p {
    text-align: center !important;
  }
}


/* ==================================================
   MOBILE TITLE SPACING FIX
================================================== */

@media (max-width: 900px) {

  /* 01・02・03 共通 */
  .split-section .section-number,
  .value-section .section-number,
  .work-section .section-number {
    display: block !important;
    text-align: center !important;
    margin: 0 auto 12px !important;
    width: 100% !important;
    transform: none !important;
  }

  .split-section .section-label,
  .value-section .section-label,
  .work-section .section-label {
    text-align: center !important;
    margin: 0 0 10px !important;
  }

  .split-section h2,
  .value-section h2,
  .work-section h2 {
    text-align: center !important;
    margin: 0 !important;
  }

  /* 02・03 の余白を 01 に合わせる */
  .value-section .section-title-row,
  .work-section .section-title-row {
    gap: 0 !important;
    margin-bottom: 32px !important;
  }

  .value-section .section-heading,
  .work-section .section-heading {
    margin-top: 0 !important;
    padding-top: 0 !important;
  }
}


/* ==================================================
   HERO NOTEBOOK PRINTING POSITION FIX
   背景文字を下に隠しすぎず、読める位置へ調整
================================================== */

.hero-bg-text {
  left: 50% !important;
  right: auto !important;
  bottom: 48px !important;
  transform: translateX(-50%) !important;
  width: max-content;
  font-size: clamp(96px, 14vw, 220px) !important;
  color: rgba(0, 0, 0, 0.055) !important;
  letter-spacing: -0.045em;
  line-height: 1;
  z-index: 0;
}

/* 本文は背景文字より前面に固定 */
.career-hero__inner {
  position: relative;
  z-index: 1;
}

/* タブレット〜狭めの画面ではさらに少し上げる */
@media (max-width: 900px) {
  .hero-bg-text {
    bottom: 36px !important;
    font-size: clamp(76px, 18vw, 150px) !important;
    color: rgba(0, 0, 0, 0.06) !important;
  }
}

/* スマホでは画面外にはみ出しすぎないように調整 */
@media (max-width: 640px) {
  .hero-bg-text {
    bottom: 24px !important;
    font-size: clamp(56px, 18vw, 96px) !important;
    color: rgba(0, 0, 0, 0.055) !important;
  }
}


/* ==================================================
   HERO BG TEXT : 2 LINE DECORATION
================================================== */

/* HTMLも以下に変更推奨
<div class="hero-bg-text">
  NOTEBOOK<br>
  PRINTING
</div>
*/

.hero-bg-text{
  left:50% !important;
  right:auto !important;
  transform:translateX(-50%) !important;

  bottom:40px !important;

  font-size:clamp(80px,12vw,180px) !important;
  line-height:0.82 !important;
  text-align:center !important;
  white-space:normal !important;

  color:rgba(0,0,0,.045) !important;
  font-weight:900;
  letter-spacing:-0.05em;
  z-index:0;
  width:100%;
  pointer-events:none;
}

@media (max-width:640px){
  .hero-bg-text{
    font-size:clamp(52px,14vw,90px) !important;
    line-height:0.85 !important;
    bottom:20px !important;
  }
}


/* ==================================================
   HERO BG TEXT : LEFT ALIGN VERSION
================================================== */

.hero-bg-text{
  left:40px !important;
  right:auto !important;
  transform:none !important;

  bottom:40px !important;

  width:auto !important;
  text-align:left !important;

  font-size:clamp(80px,12vw,180px) !important;
  line-height:0.82 !important;
  letter-spacing:-0.05em;

  color:rgba(0,0,0,.045) !important;
}

@media (max-width:640px){
  .hero-bg-text{
    left:20px !important;
    bottom:20px !important;
    font-size:clamp(52px,14vw,90px) !important;
  }
}
