/*
Theme Name: sankyodo Recruit
Theme URI: https://sankyodo.co.jp
Description: sankyodoグループ 採用サイト用カスタムテーマ
Author: sankyodo
Version: 1.0.2
Text Domain: sankyodo-recruit
*/

/* 欧文フォント: Futura代替として Jost（Google Fonts / 幾何学サンセリフ）を全ページ共通で読み込み */
@import url('https://fonts.googleapis.com/css2?family=Jost:wght@400;500;600;700&display=swap');

/* ========================================
   CSS Variables / Design Tokens
   ======================================== */
:root {
  --color-black: #171717;
  --color-black-alt: #222222;
  --color-yellow: #FFFF00;
  --color-white: #ffffff;
  --color-gray-text: #666666;
  --color-gray-border-dashed: #a5a5a5;
  --color-gray-border-solid: #c8c8c8;
  --color-dark-text: #303030;
  --color-bg-dark: #171717;

  --font-futura: 'Jost', 'Futura', 'Trebuchet MS', sans-serif;
  --font-zen: 'Zen Kaku Gothic New', sans-serif;
  --font-noto: 'Noto Sans JP', sans-serif;

  --content-width: 1440px;
  --content-padding: 90px;
}

/* ========================================
   Responsive Show/Hide
   ======================================== */
.sp-only {
  display: none;
}
.pc-only {
  display: block;
}
.sp-br {
  display: none;
}

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

.nav-drawer,
.header-sp {
  display: none !important;
}

.nav-drawer__close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 40px;
  height: 40px;
  background: var(--color-yellow);
  border: none;
  cursor: pointer;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-appearance: none;
  appearance: none;
}

.nav-drawer__entry,
.nav-drawer__entry-arrow {
  display: none !important;
}

@media (max-width: 768px) {
  .nav-drawer {
    display: block !important;
  }
  .nav-drawer {
    right: -100%;
  }
  .nav-drawer.is-open {
    right: 0;
  }
}

/* ========================================
   Reset & Base
   ======================================== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-noto);
  font-weight: 500;
  color: var(--color-black);
  line-height: 2;
  letter-spacing: 1.08px;
  font-feature-settings: 'palt' 1;
  overflow-x: hidden;
  background: var(--color-white);
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: opacity 0.3s ease;
}

a:hover {
  opacity: 0.7;
}

ul, ol {
  list-style: none;
}

/* ========================================
   Utility Classes
   ======================================== */
.container {
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 0 var(--content-padding);
}

.section-heading {
  display: flex;
  align-items: flex-start;
  gap: 0;
}

.section-heading__en {
  position: relative;
  display: inline-grid;
}

.section-heading__en-text {
  grid-column: 1;
  grid-row: 1;
  font-family: var(--font-futura);
  font-size: 100px;
  font-weight: 500;
  line-height: 1;
  color: var(--color-black);
  text-transform: uppercase;
  letter-spacing: 0;
  white-space: nowrap;
}

.section-heading__en-bar {
  grid-column: 1;
  grid-row: 1;
  background: var(--color-yellow);
  height: 47px;
  align-self: start;
  margin-top: 44px;
}

.section-heading__deco {
  width: 93px;
  height: 54px;
  position: relative;
  flex-shrink: 0;
}

.section-heading__deco-dot {
  position: absolute;
  width: 17px;
  height: 10px;
  background: var(--color-yellow);
}

.section-heading__deco-dot--1 {
  bottom: 0;
  left: 0;
}

.section-heading__deco-dot--2 {
  top: 44.44%;
  left: 29.41%;
  width: 33px;
  height: 10px;
}

.section-heading__deco-line {
  position: absolute;
  background: var(--color-black);
}

.section-heading__deco-line--1 {
  top: 62.96%;
  right: 0;
  width: 33px;
  height: 10px;
}

.section-heading__deco-line--2 {
  top: 0;
  left: 9.41%;
  width: 33px;
  height: 10px;
}

.section-heading__deco-line--3 {
  top: 0;
  left: 44.71%;
  width: 30px;
  height: 5px;
}

.section-heading__jp {
  font-family: var(--font-zen);
  font-weight: 700;
  font-size: 24px;
  line-height: 1.5;
  color: var(--color-black);
  margin-top: 16px;
}

/* View More Link */
.view-more {
  display: inline-flex;
  align-items: center;
  gap: 32px;
  font-family: var(--font-noto);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0.8px;
  color: var(--color-black);
  position: relative;
  border-bottom: 1px solid var(--color-black);
  padding-bottom: 8px;
  width: fit-content;
}

.view-more::after {
  content: '';
  display: block;
  width: 30px;
  height: 30px;
  background: url("assets/images/view-more-circle.svg") no-repeat center / contain;
  position: relative;
  flex-shrink: 0;
}

.view-more__arrow {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: 14px;
  height: 8px;
}

/* White variant */
.view-more--white {
  color: var(--color-white);
  border-bottom-color: var(--color-white);
}

.view-more--white::after {
  background: url("assets/images/view-more-circle-white.svg") no-repeat center / contain;
}

/* Body text style */
.body-text {
  font-family: var(--font-noto);
  font-weight: 500;
  font-size: 18px;
  line-height: 2;
  letter-spacing: 1.08px;
  color: var(--color-black);
  font-feature-settings: 'palt' 1;
}

.body-text--small {
  font-family: var(--font-noto);
  font-weight: 400;
  font-size: 16px;
  line-height: 2.2;
  letter-spacing: 0.64px;
  color: var(--color-black);
  font-feature-settings: 'palt' 1;
}
