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

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Noto Sans JP', 'Poppins', sans-serif;
  font-size: clamp(1.6rem, 1.7vw, 1.7rem);
  line-height: 1.7;
  color: var(--c-dark);
  background-color: var(--c-white);
  background-image: url('../img/bg-left.jpg'), url('../img/bg-right.jpg');
  background-position: left center, right center;
  background-repeat: no-repeat, no-repeat;
  background-size: 24% auto, 24% auto;
  background-attachment: fixed, fixed;
  position: relative;
  overflow-x: hidden;
  font-feature-settings: "palt"1;
  letter-spacing: 0;
  overflow-wrap: break-word;
  -webkit-text-size-adjust: 100%;
  min-height: 100svh;
  margin: 0;
  -webkit-font-smoothing: antialiased;
}

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

ul {
  list-style: none;
}

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

button {
  font: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* --- Dot Accent --- */
.dot-accent {
  display: inline-block;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--c-primary);
  margin-right: 12px;
  vertical-align: middle;
  position: relative;
  top: -2px;
}

/* ================================================
   Scroll Animation
   ================================================ */
.js-fadeup {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.js-fadeup.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ================================================
   Design Tokens
   ================================================ */
:root {
  /* Colors */
  --c-primary: #75C8CE;
  --c-dark: #1E293B;
  --c-accent: #E86434;
  --c-section: #202B3C;
  --c-border: #e1e1e1;
  --c-white: #FFFFFF;
  --c-bg-light: rgba(30, 41, 59, 0.04);
  --c-hover: #75C8CE;

  /* Spacing (8px multiples) */
  --sp-8: 8px;
  --sp-12: 12px;
  --sp-16: 16px;
  --sp-24: 24px;
  --sp-32: 32px;
  --sp-40: 40px;
  --sp-48: 48px;
  --sp-56: 56px;
  --sp-64: 64px;
  --sp-72: 72px;
  --sp-80: 80px;
  --sp-96: 96px;
  --sp-120: 120px;

  /* Radius */
  --radius-8: 8px;
  --radius-12: 12px;
  --radius-full: 9999px;

  /* Fonts */
  --ff-serif: "Noto Serif JP", serif;
  --ff-sans: "Noto Sans JP", sans-serif;
  --ff-pop: "Poppins", sans-serif;

  /* Layout */
  --container: 900px;
  --gutter: var(--sp-24);
}

/* ================================================
   Shared: Section Label (circle + english)
   ================================================ */
.section-label {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.section-label__obj {
  width: 64px;
  height: 64px;
  transform: translateX(16px);
}

.section-label__en {
  font-family: var(--ff-pop);
  font-weight: 600;
  font-size: 1.8rem;
  color: var(--c-primary);
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}

/* ================================================
   Shared: Button (.btn)
   ================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  min-width: 240px;
  padding: var(--sp-16) var(--sp-80);
  border: 2px solid var(--c-primary);
  border-radius: var(--radius-full);
  font-family: var(--ff-sans);
  font-weight: 600;
  font-size: 1.5rem;
  color: var(--c-primary);
  background: var(--c-white);
}

.btn img {
  position: absolute;
  right: var(--sp-24);
}

.btn:hover {
  background: var(--c-hover);
  border-color: var(--c-hover);
  color: var(--c-white);
}

.btn:hover img {
  filter: brightness(0) invert(1);
}

/* ================================================
   Header
   ================================================ */
.header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--c-white);
  border-bottom: 1px solid var(--c-border);
}

.header__inner {
  max-width: calc(var(--container) + var(--gutter) * 2);
  margin: 0 auto;
  padding: var(--sp-12) var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header__logo img {
  width: 140px;
  height: auto;
}

.header__nav {
  display: none;
}

.header__sns {
  display: none;
}

.header__sns a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

.header__sns a:first-child {
  background: var(--c-primary);
}

.header__sns a:last-child {
  background: #E83435;
}

.header__sns img {
  width: 22px;
  height: 22px;
}

/* --- Hover: Logo (image) --- */
.header__logo:hover,
.footer__logo:hover {
  opacity: 0.7;
}

/* --- Hover: SNS (image) --- */
.header__sns a:hover,
.drawer__sns a:hover {
  opacity: 0.7;
}

/* --- Hover: Nav text links --- */
.header__nav-list a:hover,
.drawer__nav-list a:hover,
.footer__nav-list a:hover {
  color: var(--c-hover);
}

/* --- Hover: News item --- */
.news__item a:hover span {
  color: var(--c-hover);
}

/* --- Hover: Pager --- */
.pager .page-numbers li a:hover,
.pager .page-numbers li span:hover {
  opacity: 0.7;
}

/* ================================================
   Hamburger
   ================================================ */
.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  width: 40px;
  height: 40px;
  padding: 0;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 200;
}

.hamburger__line {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--c-dark);
  transition: transform 0.3s, opacity 0.3s;
}

.hamburger.is-open .hamburger__line:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.hamburger.is-open .hamburger__line:nth-child(2) {
  opacity: 0;
}

.hamburger.is-open .hamburger__line:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* ================================================
   Drawer
   ================================================ */
.drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: var(--c-white);
  z-index: 150;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: var(--sp-48);
  transform: translateX(100%);
  transition: transform 0.3s ease;
}

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

.drawer__nav-list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-24);
}

.drawer__nav-list a {
  font-family: var(--ff-pop);
  font-weight: 600;
  font-size: 2rem;
  letter-spacing: 0.02em;
  color: var(--c-dark);
}

.drawer__sns {
  display: flex;
  align-items: center;
  gap: var(--sp-16);
}

.drawer__sns a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
}

.drawer__sns a:first-child {
  background: var(--c-primary);
}

.drawer__sns a:last-child {
  background: #E83435;
}

.drawer__sns img {
  width: 24px;
  height: 24px;
}

.drawer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 140;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}

.drawer-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

/* ================================================
   Hero
   ================================================ */
.pc-br {
  display: none;
}

.hero {
  background: url('../img/hero-sp.jpg') no-repeat center center / cover;
}

.hero__inner {
  max-width: calc(var(--container) + var(--gutter) * 2);
  margin: 0 auto;
  padding: var(--sp-72) var(--gutter) var(--sp-64);
}

.hero__title {
  font-family: var(--ff-serif);
  font-weight: 700;
  font-size: 3.2rem;
  line-height: 1.5;
  color: var(--c-dark);
  margin-bottom: var(--sp-24);
}

.hero__text {
  font-family: var(--ff-sans);
  font-weight: 400;
  font-size: 1.5rem;
  line-height: 2;
  color: var(--c-dark);
}

/* ================================================
   About
   ================================================ */
.about {
  background: var(--c-white);
}

.about__inner {
  max-width: calc(var(--container) + var(--gutter) * 2);
  margin: 0 auto;
  padding: var(--sp-56) var(--gutter) var(--sp-80);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.about__title {
  font-family: var(--ff-serif);
  font-weight: 700;
  font-size: 3.2rem;
  line-height: 1.4;
  margin-bottom: var(--sp-32);
}

.about__text {
  font-family: var(--ff-sans);
  font-weight: 400;
  font-size: 1.5rem;
  line-height: 2.2;
  margin-bottom: var(--sp-40);
}

/* ================================================
   Divider
   ================================================ */
.divider {
  height: 80px;
  background: var(--c-section);
}

/* ================================================
   News
   ================================================ */
.news {
  background: var(--c-bg-light);
}

.news__inner {
  max-width: calc(var(--container) + var(--gutter) * 2);
  margin: 0 auto;
  padding: var(--sp-40) var(--gutter) var(--sp-80);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.news__title {
  font-family: var(--ff-serif);
  font-weight: 700;
  font-size: 3.2rem;
  line-height: 1.4;
  margin-bottom: var(--sp-40);
}

.news__list {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: var(--sp-16);
  margin-bottom: var(--sp-40);
}

.news__item a {
  display: flex;
  align-items: center;
  gap: var(--sp-24);
  padding: var(--sp-24);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-12);
  background: var(--c-white);
}

.news__date {
  font-family: var(--ff-pop);
  font-weight: 600;
  font-size: 1.4rem;
  color: var(--c-primary);
  flex-shrink: 0;
}

.news__item-title {
  font-family: var(--ff-sans);
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 1.6;
  color: var(--c-dark);
  flex: 1;
}

.news__arrow {
  flex-shrink: 0;
  width: 16px;
  height: auto;
}

/* --- Pager --- */
.pager .page-numbers {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-12);
  list-style: none;
  padding: 0;
  margin: 0;
}

.pager .page-numbers li a,
.pager .page-numbers li span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #C4C4C4;
  font-family: var(--ff-pop);
  font-weight: 600;
  font-size: 1.6rem;
  color: var(--c-white);
  text-decoration: none;
  transition: background 0.3s;
}

.pager .page-numbers li .current {
  background: var(--c-primary);
}

.pager .page-numbers li .prev,
.pager .page-numbers li .next {
  background: #C4C4C4;
}

.pager .page-numbers li .prev img,
.pager .page-numbers li .next img {
  width: 16px;
  height: 16px;
}

/* ================================================
   Article (News Detail)
   ================================================ */
.article {
  width: 100%;
}

.article__title {
  font-weight: 600;
  font-size: 2.6rem;
  line-height: 1.55;
  color: var(--c-dark);
  margin-bottom: var(--sp-24);
}

.article__thumbnail {
  margin-bottom: var(--sp-24);
}

.article__thumbnail img {
  width: 100%;
}

.article__lead {
  font-family: var(--ff-sans);
  font-weight: 600;
  font-size: 1.5rem;
  line-height: 1.8;
  color: var(--c-dark);
  margin-bottom: var(--sp-32);
}

.article__body {
  font-family: var(--ff-sans);
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 2;
  color: var(--c-dark);
}

.article__body p {
  margin-bottom: var(--sp-24);
}

.article__body h1 {
  font-size: 2.4rem;
  line-height: 1.55;
  margin-bottom: var(--sp-12);
}

.article__body h2 {
  font-size: 2.2rem;
  line-height: 1.55;
  margin-bottom: var(--sp-12);
}

.article__body h3 {
  font-size: 2rem;
  line-height: 1.55;
  margin-bottom: var(--sp-12);
}

.article__body h4 {
  font-size: 1.8rem;
  line-height: 1.55;
  margin-bottom: var(--sp-12);
}

.article__body img {
  width: 100%;
  height: auto;
}

.article__figure {
  margin: var(--sp-40) 0;
}

.article__img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-8);
}

/* ================================================
   Service
   ================================================ */
.service {
  background: var(--c-white);
}

.service__inner {
  max-width: calc(var(--container) + var(--gutter) * 2);
  margin: 0 auto;
  padding: var(--sp-40) var(--gutter) var(--sp-80);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.service__title {
  font-family: var(--ff-serif);
  font-weight: 700;
  font-size: 3.2rem;
  line-height: 1.4;
  margin-bottom: var(--sp-40);
}

.service__list {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: var(--sp-24);
}

.service__item {
  display: flex;
  gap: var(--sp-16);
  padding: var(--sp-16);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-8);
  background: var(--c-white);
}

.service__img {
  width: 160px;
  height: 120px;
  object-fit: cover;
  border-radius: var(--radius-8);
  flex-shrink: 0;
}

.service__item-title {
  font-family: var(--ff-sans);
  font-weight: 600;
  font-size: 1.6rem;
  color: var(--c-primary);
  margin-bottom: var(--sp-8);
}

.service__item-text {
  font-family: var(--ff-sans);
  font-weight: 400;
  font-size: 1.4rem;
  color: var(--c-dark);
  line-height: 1.8;
}

/* ================================================
   Company
   ================================================ */
.company {
  background: var(--c-bg-light);
}

.company__inner {
  max-width: calc(var(--container) + var(--gutter) * 2);
  margin: 0 auto;
  padding: var(--sp-40) var(--gutter) var(--sp-80);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.company__title {
  font-family: var(--ff-serif);
  font-weight: 700;
  font-size: 3.2rem;
  line-height: 1.4;
  margin-bottom: var(--sp-32);
}

.company__lead {
  font-family: var(--ff-sans);
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 2.2;
}

.company__lead span {
  color: var(--c-primary);
}


/* ================================================
   Greeting
   ================================================ */
.greeting {
  background: var(--c-white);
}

.greeting__inner {
  max-width: calc(var(--container) + var(--gutter) * 2);
  margin: 0 auto;
  padding: var(--sp-40) var(--gutter) var(--sp-80);
}

.greeting__title {
  font-family: var(--ff-serif);
  font-weight: 700;
  font-size: 2.4rem;
  line-height: 1.4;
  text-align: center;
  margin-bottom: var(--sp-32);
}

.greeting__content {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: var(--sp-24);
}

.greeting__img-wrap {
  width: 100%;
  overflow: hidden;
  border-radius: var(--radius-8);
}

.greeting__img {
  width: 100%;
  height: auto;
}

.greeting__text-wrap {
  font-family: var(--ff-sans);
  font-weight: 400;
  font-size: 1.5rem;
  line-height: 2;
  color: var(--c-dark);
}

.greeting__text-wrap p {
  margin-bottom: var(--sp-16);
}

.greeting__sign {
  margin-top: var(--sp-24);
  line-height: 1.8;
}

/* ================================================
   Vision
   ================================================ */
.vision {
  background: var(--c-bg-light);
}

.vision__inner {
  max-width: calc(var(--container) + var(--gutter) * 2);
  margin: 0 auto;
  padding: var(--sp-40) var(--gutter) var(--sp-80);
}

.vision__title {
  font-family: var(--ff-serif);
  font-weight: 700;
  font-size: 2.8rem;
  line-height: 1.4;
  text-align: center;
  margin-bottom: var(--sp-24);
}

.vision__subtitle {
  font-family: var(--ff-serif);
  font-weight: 700;
  font-size: 2.2rem;
  text-align: center;
  margin-bottom: var(--sp-32);
}

.vision__text {
  width: 100%;
  font-family: var(--ff-sans);
  font-weight: 400;
  line-height: 2;
  color: var(--c-dark);
}

.vision__text p {
  margin-bottom: var(--sp-16);
}

/* ================================================
   Company Info Table
   ================================================ */
.info {
  background: var(--c-white);
}

.info__inner {
  max-width: calc(var(--container) + var(--gutter) * 2);
  margin: 0 auto;
  padding: var(--sp-40) var(--gutter) var(--sp-80);
}

.info__table {
  width: 100%;
  border-collapse: collapse;
}

.info__table th,
.info__table td {
  font-family: var(--ff-sans);
  font-size: 1.5rem;
  line-height: 1.8;
  padding: var(--sp-16) var(--sp-16);
  border-bottom: 1px solid var(--c-border);
  text-align: left;
  vertical-align: top;
}

.info__table th {
  font-weight: 600;
  white-space: nowrap;
  width: 120px;
}

.info__table td {
  font-weight: 400;
}

/* ================================================
   Map
   ================================================ */
.map {
  background: var(--c-white);
}

.map__inner {
  max-width: calc(var(--container) + var(--gutter) * 2);
  margin: 0 auto;
  padding: 0 var(--gutter) var(--sp-80);
}

.map__iframe {
  width: 100%;
  height: 300px;
  border: 0;
  border-radius: var(--radius-8);
}

/* ================================================
   Recruit
   ================================================ */
.recruit {
  /* background: var(--c-white); */
}

.recruit__inner {
  max-width: calc(var(--container) + var(--gutter) * 2);
  margin: 0 auto;
  padding: var(--sp-40) var(--gutter) var(--sp-80);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.recruit__title {
  font-family: var(--ff-serif);
  font-weight: 700;
  font-size: 3.2rem;
  line-height: 1.4;
  margin-bottom: var(--sp-40);
}

.recruit__table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: var(--sp-48);
}

.recruit__table th,
.recruit__table td {
  font-family: var(--ff-sans);
  line-height: 1.8;
  padding: var(--sp-16) var(--sp-16);
  border-bottom: 1px solid var(--c-border);
  text-align: left;
  vertical-align: top;
}

.recruit__table th {
  font-weight: 600;
  white-space: nowrap;
  width: 100px;
}

.recruit__table td {
  font-weight: 400;
}

.recruit__list {
  list-style: disc;
  padding-left: 1.5em;
  margin-top: var(--sp-8);
}

.recruit__list>li {
  /* margin-bottom: var(--sp-16); */
}

.recruit__sub-list {
  list-style: none;
  padding-left: 0;
  margin: var(--sp-8) 0;
}

.recruit__highlight {
  color: var(--c-accent);
  font-weight: 600;
  margin-top: var(--sp-8);
}

.recruit__cta {
  text-align: center;
}

/* ================================================
   Contact
   ================================================ */
.contact {
  /* background: var(--c-white); */
  min-height: 72vh;
}

.contact__inner {
  max-width: calc(var(--container) + var(--gutter) * 2);
  margin: 0 auto;
  padding: var(--sp-40) var(--gutter) var(--sp-120);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.contact__title {
  font-family: var(--ff-serif);
  font-weight: 700;
  font-size: 3.2rem;
  line-height: 1.4;
  margin-bottom: var(--sp-32);
}

.contact__text {
  font-family: var(--ff-sans);
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 2;
  text-align: center;
  margin-bottom: var(--sp-48);
}

.contact__text p {
  margin-bottom: var(--sp-8);
}

.contact__cta {
  text-align: center;
}

/* ================================================
   Shared: LINE Button
   ================================================ */
.btn-line {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-12);
  min-width: 320px;
  padding: var(--sp-12) var(--sp-40);
  background: #06C755;
  border-radius: var(--radius-full);
  color: var(--c-white);
  font-family: var(--ff-sans);
  font-weight: 600;
  font-size: 1.6rem;
  transition: opacity 0.3s;
}

.btn-line:hover {
  opacity: 0.85;
}

.btn-line img {
  width: 40px;
  height: 40px;
}

/* ================================================
   Footer
   ================================================ */
.footer {
  background: var(--c-section);
  color: var(--c-white);
}

.footer__inner {
  max-width: calc(var(--container) + var(--gutter) * 2);
  margin: 0 auto;
  padding: var(--sp-56) var(--gutter) var(--sp-16);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.footer__logo {
  margin-bottom: var(--sp-56);
}

.footer__logo img {
  width: 180px;
  height: auto;
}

.footer__nav {
  margin-bottom: var(--sp-40);
}

.footer__nav-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-24) 0;
}

.footer__nav-list li {
  display: flex;
  align-items: center;
}

.footer__nav-list li:nth-child(odd) {
  justify-content: flex-end;
  padding-right: var(--sp-16);
  border-right: 1px solid var(--c-white);
}

.footer__nav-list li:nth-child(even) {
  justify-content: flex-start;
  padding-left: var(--sp-16);
}

.footer__nav-list a {
  font-family: var(--ff-pop);
  font-weight: 600;
  font-size: 1.45rem;
  letter-spacing: 0.05em;
  color: var(--c-white);
}

.footer__copy {
  font-family: var(--ff-sans);
  font-weight: 400;
  font-size: 1.3rem;
  color: var(--c-white);
  opacity: 0.7;
}

/* ================================================
   PC (min-width: 768px)
   ================================================ */
@media (min-width: 768px) {

  body {
    background-size: auto, auto;
    font-size: 1.6rem;
  }

  /* --- Header --- */
  .header__inner {
    padding: var(--sp-12) var(--sp-40);
  }

  .header__logo img {
    width: 160px;
  }

  .header__nav {
    display: block;
  }

  .header__sns {
    display: flex;
    align-items: center;
    gap: var(--sp-8);
  }

  .hamburger {
    display: none;
  }

  .drawer,
  .drawer-overlay {
    display: none;
  }

  .header__nav-list {
    display: flex;
    align-items: center;
    gap: 0;
  }

  .header__nav-list li {
    display: flex;
    align-items: center;
  }

  .header__nav-list li:not(:last-child)::after {
    content: "";
    display: inline-block;
    width: 1px;
    height: 14px;
    background: var(--c-dark);
    margin: 0 var(--sp-24);
  }

  .header__nav-list a {
    font-family: var(--ff-pop);
    font-weight: 600;
    font-size: 1.5rem;
    letter-spacing: 0.01em;
    color: var(--c-dark);
  }

  .sp-br {
    display: none;
  }

  .pc-br {
    display: inline;
  }

  /* --- Hero --- */
  .hero {
    background-image: url('../img/hero-pc.jpg');
    background-position: center top;
  }

  .hero__inner {
    padding: var(--sp-80) var(--sp-40) var(--sp-96);
  }

  .hero__title {
    font-size: 4.8rem;
    margin-bottom: var(--sp-32);
  }

  .hero__text {
    font-size: 2rem;
  }

  /* --- About --- */
  .about__inner {
    padding: var(--sp-64) var(--sp-40) var(--sp-96);
  }

  .about__title {
    font-size: 4.8rem;
    margin-bottom: var(--sp-40);
  }

  .about__text {
    font-size: 1.8rem;
  }

  /* --- Divider --- */
  .divider {
    height: 96px;
  }

  /* --- News --- */
  .news__inner {
    padding: var(--sp-64) var(--sp-40) var(--sp-96);
  }

  .news__title {
    font-size: 4.0rem;
  }

  .news__item a {
    padding: var(--sp-24) var(--sp-32);
  }

  .news__date {
    font-size: 1.5rem;
  }

  .news__item-title {
    font-size: 1.6rem;
  }

  /* --- Article --- */
  .article__title {
    font-size: 3.2rem;
  }

  .article__lead {
    font-size: 2rem;
  }

  .article__body {
    font-size: 1.6rem;
  }

  .article__body h1 {
    font-size: 3rem;
  }

  .article__body h2 {
    font-size: 2.8rem;
  }

  .article__body h3 {
    font-size: 2.4rem;
  }

  .article__body h4 {
    font-size: 2rem;
  }

  /* --- Company --- */
  .company__inner {
    padding: var(--sp-64) var(--sp-40) var(--sp-96);
  }

  .company__title {
    font-size: 4.8rem;
  }

  .company__lead {
    font-size: 1.8rem;
  }

  /* --- Greeting --- */
  .greeting__inner {
    padding: var(--sp-64) var(--sp-40) var(--sp-96);
  }

  .greeting__title {
    font-size: 3.2rem;
  }

  .greeting__content {
    flex-direction: row;
    gap: var(--sp-40);
  }

  .greeting__img-wrap {
    width: 320px;
    flex-shrink: 0;
    align-self: flex-start;
  }

  .greeting__text-wrap {}

  /* --- Vision --- */
  .vision__inner {
    padding: var(--sp-64) var(--sp-40) var(--sp-96);
  }

  .vision__title {
    font-size: 3.2rem;
  }

  .vision__subtitle {
    font-size: 2.2rem;
  }

  .vision__text {}

  /* --- Info --- */
  .info__inner {
    padding: var(--sp-40) var(--sp-40) var(--sp-80);
  }

  .info__table th,
  .info__table td {
    padding: var(--sp-24) var(--sp-24);
  }

  .info__table th {
    width: 160px;
  }

  /* --- Map --- */
  .map__iframe {
    height: 400px;
  }

  /* --- Recruit --- */
  .recruit__inner {
    padding: var(--sp-64) var(--sp-40) var(--sp-96);
  }

  .recruit__title {
    font-size: 4.0rem;
  }

  .recruit__table th,
  .recruit__table td {
    padding: var(--sp-24) var(--sp-24);
  }

  .recruit__table th {
    width: 120px;
  }

  /* --- Contact --- */
  .contact__inner {
    padding: var(--sp-64) var(--sp-40) var(--sp-96);
  }

  .contact__title {
    font-size: 4.0rem;
  }

  .contact__text {
    font-size: 1.6rem;
  }

  /* --- Service --- */
  .service__inner {
    padding: var(--sp-64) var(--sp-40) var(--sp-120);
  }

  .service__title {
    font-size: 4.0rem;
  }

  .service__item {
    padding: var(--sp-24);
    gap: var(--sp-32);
  }

  .service__img {
    width: 240px;
    height: 168px;
  }

  .service__item-title {
    font-size: 2.2rem;
  }

  .service__item-text {
    font-size: 1.6rem;
  }

  /* --- Footer --- */
  .footer__inner {
    padding: var(--sp-64) var(--sp-40) var(--sp-16);
  }

  .footer__logo img {
    width: 220px;
  }

  .footer__nav-list {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    gap: 0;
  }

  .footer__nav-list li,
  .footer__nav-list li:nth-child(odd),
  .footer__nav-list li:nth-child(even) {
    justify-content: initial;
    padding: 0;
    border: none;
  }

  .footer__nav-list li:not(:last-child)::after {
    content: "";
    display: inline-block;
    width: 1px;
    height: 14px;
    background: var(--c-white);
    margin: 0 var(--sp-24);
  }

  .footer__nav-list a {
    font-size: 1.4rem;
  }

  .footer__copy {
    font-size: 1.4rem;
  }
}

/* ================================================
   Splash
   ================================================ */
.splash {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--c-white);
  transition: opacity 0.6s ease;
}

.splash.is-hidden {
  opacity: 0;
  pointer-events: none;
}

.splash__logo img {
  width: 240px;
  height: auto;
  animation: splash-zoom 0.6s ease-out forwards;
}

@keyframes splash-zoom {
  0% {
    transform: scale(1.6);
    opacity: 0;
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}

@media (min-width: 768px) {
  .splash__logo img {
    width: 400px;
  }
}
