@charset "UTF-8";

/* ============================================================
   ZENSHIN Inc. - Corporate Website Stylesheet
   ============================================================ */

/* ----------------------------------------
   Google Fonts
---------------------------------------- */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@500;600;700&display=swap');

/* ----------------------------------------
   CSS Variables
---------------------------------------- */
:root {
  --color-primary: #0d1b2a;
  --color-secondary: #1b3a5c;
  --color-accent: #c9a84c;
  --color-accent-light: #e8d590;
  --color-text: #222222;
  --color-white: #ffffff;
  --color-bg-light: #f2f2f2;
  --color-border: #cccccc;
  --font-poppins: 'Poppins', sans-serif;
  --font-jp: "Hiragino Kaku Gothic ProN", "Hiragino Sans", "BIZ UDPGothic", Meiryo, sans-serif;
  --transition-base: 0.3s ease;
  --shadow-card: 0 2px 12px rgba(0, 0, 0, 0.08);
  --shadow-card-hover: 0 8px 24px rgba(0, 0, 0, 0.15);
}

/* ----------------------------------------
   Reset / Base
---------------------------------------- */
*,
*::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-size: 1.5rem;
  line-height: 1.5;
  font-family: var(--font-jp);
  color: var(--color-text);
  background-color: var(--color-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  position: relative;
}

body.fixed {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  overflow: hidden;
}

ul,
ol {
  list-style: none;
}

a {
  color: inherit;
  text-decoration: none;
  transition: opacity var(--transition-base);
}

a:hover {
  opacity: 0.7;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
  border: 0;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

input,
button,
textarea,
select {
  font-family: inherit;
  font-size: inherit;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

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

h1, h2, h3, h4, h5, h6 {
  font-weight: bold;
}

/* ----------------------------------------
   Utility Classes
---------------------------------------- */
.pc {
  display: block;
}

.sp {
  display: none;
}

.content {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 20px;
}

.contentWide {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.borLine {
  border-bottom: 1px solid var(--color-border);
}

.blankLink {
  display: inline-flex;
  align-items: center;
}

.blankLink::after {
  content: "";
  display: inline-block;
  width: 14px;
  height: 14px;
  margin-left: 6px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2'%3E%3Cpath d='M18 13v6a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h6M15 3h6v6M10 14L21 3'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}

.clearfix::after {
  content: "";
  display: block;
  clear: both;
}

.textCenter {
  text-align: center;
}

.textLeft {
  text-align: left;
}

.textRight {
  text-align: right;
}

.mt0 { margin-top: 0 !important; }
.mt10 { margin-top: 10px !important; }
.mt20 { margin-top: 20px !important; }
.mt30 { margin-top: 30px !important; }
.mt40 { margin-top: 40px !important; }
.mt50 { margin-top: 50px !important; }
.mt60 { margin-top: 60px !important; }
.mt80 { margin-top: 80px !important; }

.mb0 { margin-bottom: 0 !important; }
.mb10 { margin-bottom: 10px !important; }
.mb20 { margin-bottom: 20px !important; }
.mb30 { margin-bottom: 30px !important; }
.mb40 { margin-bottom: 40px !important; }
.mb50 { margin-bottom: 50px !important; }

/* ----------------------------------------
   Fade-in Animation
---------------------------------------- */
.fadeInUp {
  opacity: 0;
  transform: translateY(100px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fadeInUp.on {
  opacity: 1;
  transform: translateY(0);
}

.fadeInLeft {
  opacity: 0;
  transform: translateX(-60px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fadeInLeft.on {
  opacity: 1;
  transform: translateX(0);
}

.fadeInRight {
  opacity: 0;
  transform: translateX(60px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fadeInRight.on {
  opacity: 1;
  transform: translateX(0);
}

.fadeIn {
  opacity: 0;
  transition: opacity 0.8s ease;
}

.fadeIn.on {
  opacity: 1;
}

/* ----------------------------------------
   Headings
---------------------------------------- */
.headLine01 {
  text-align: center;
  font-size: 2.8rem;
  font-weight: bold;
  letter-spacing: 0.08em;
  line-height: 1.4;
  margin-bottom: 50px;
  color: var(--color-primary);
}

.headLine01 span {
  display: block;
}

.headLine01 .en {
  font-family: var(--font-poppins);
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--color-accent);
  margin-top: 10px;
  text-transform: uppercase;
}
.headLine01 .en::after {
  content: "";
  display: block;
  width: 40px;
  height: 3px;
  background-color: var(--color-accent);
  margin: 12px auto 0;
}

.headLine01::before,
.headLine01::after {
  display: none;
}

.headLine02 {
  font-size: 2.4rem;
  font-weight: bold;
  letter-spacing: 0.06em;
  line-height: 1.4;
  margin-bottom: 30px;
  color: var(--color-primary);
  position: relative;
  padding-left: 20px;
}

.headLine02::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 100%;
  background: var(--color-accent);
  border-radius: 2px;
}

.headLine03 {
  font-size: 2.0rem;
  font-weight: bold;
  letter-spacing: 0.06em;
  line-height: 1.5;
  margin-bottom: 20px;
  color: var(--color-primary);
}

.headLine04 {
  font-size: 1.8rem;
  font-weight: bold;
  letter-spacing: 0.04em;
  line-height: 1.5;
  margin-bottom: 15px;
  color: var(--color-secondary);
}

/* ----------------------------------------
   Common Buttons
---------------------------------------- */
.comBtn {
  text-align: center;
  margin-top: 30px;
}

.comBtn a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 200px;
  padding: 0 30px;
  height: 48px;
  background-color: var(--color-accent);
  color: var(--color-white);
  font-size: 1.4rem;
  font-weight: bold;
  letter-spacing: 0.08em;
  border-radius: 50px;
  transition: opacity var(--transition-base), background-color var(--transition-base);
  position: relative;
}

.comBtn a::after {
  display: none;
}

.comBtn a:hover {
  opacity: 0.7;
}

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

.comBtn02 a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 500px;
  height: 70px;
  background-color: var(--color-accent);
  color: var(--color-white);
  font-size: 1.8rem;
  font-weight: bold;
  letter-spacing: 0.1em;
  border-radius: 50px;
  transition: opacity var(--transition-base), background-color var(--transition-base);
  position: relative;
}

.comBtn02 a::after {
  display: none;
}

.comBtn02 a:hover {
  opacity: 0.7;
}

.comBtnOutline {
  text-align: center;
  margin-top: 30px;
}

.comBtnOutline a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 200px;
  height: 48px;
  border: 2px solid var(--color-accent);
  color: var(--color-accent);
  font-size: 1.4rem;
  font-weight: bold;
  letter-spacing: 0.08em;
  border-radius: 50px;
  transition: all var(--transition-base);
}

.comBtnOutline a:hover {
  background-color: var(--color-accent);
  color: var(--color-white);
  opacity: 1;
}

.comBtnWhite {
  text-align: center;
  margin-top: 30px;
}

.comBtnWhite a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 200px;
  height: 48px;
  background-color: var(--color-white);
  color: var(--color-primary);
  font-size: 1.4rem;
  font-weight: bold;
  letter-spacing: 0.08em;
  border-radius: 50px;
  transition: opacity var(--transition-base);
}

.comBtnWhite a::after {
  display: none;
}

.comBtnWhite a:hover {
  opacity: 0.7;
}

/* ----------------------------------------
   1. Loading Screen
---------------------------------------- */
.loadingBox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  background-color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

@keyframes loadingFallback {
  0%, 90% { opacity: 1; visibility: visible; }
  100% { opacity: 0; visibility: hidden; }
}
.loadingBox {
  animation: loadingFallback 4s forwards;
}

.loadingBox.out {
  opacity: 0;
  visibility: hidden;
}

.loadingBox .first {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loadingBox .first.out {
  opacity: 0;
  visibility: hidden;
}

.loadingBox .second {
  opacity: 0;
  transition: opacity 0.6s ease;
}

.loadingBox .second.on {
  opacity: 1;
}

.loadingBox .second img {
  width: 180px;
  height: auto;
}

.loadingBox .movetext {
  color: var(--color-white);
  font-size: 1.6rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  font-family: var(--font-poppins);
}

.loadingBox .movetext span {
  display: inline-block;
  opacity: 0;
  transform: translateX(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.loadingBox .movetext span.on {
  opacity: 1;
  transform: translateX(0);
}

/* ----------------------------------------
   2. Header
---------------------------------------- */
#gHeader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 20;
  background-color: transparent;
  transition: background-color var(--transition-base), transform var(--transition-base), box-shadow var(--transition-base);
}

#gHeader.fixed {
  background-color: var(--color-white);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

#container.down #gHeader {
  transform: translateY(-100%);
}

#container.up #gHeader {
  transform: none;
}

#gHeader .hBox {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 30px;
  height: 80px;
}

#gHeader .logo {
  position: relative;
  z-index: 2;
}

#gHeader .logo h1 {
  line-height: 1;
}

#gHeader .logo h1 a {
  display: block;
}

#gHeader .logo h1 img {
  height: 40px;
  width: auto;
}

/* Logo mark styles */
.logoMark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  line-height: 1;
}
.logoMark svg {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
}
.logoMark > span {
  font-family: 'Poppins', sans-serif;
  font-size: 2.0rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1;
}
.logoMark.white > span { color: #fff; }
.logoMark.black > span { color: #0d1b2a; }

/* TOP page: transparent header = white logo, scrolled = black logo */
#gHeader .logo .white { display: inline-flex; }
#gHeader .logo .black { display: none; }
#gHeader.fixed .logo .white { display: none; }
#gHeader.fixed .logo .black { display: inline-flex; }

/* Sub pages: header always has bg, so always show black */
body:not(#top) #gHeader .logo .white { display: none; }
body:not(#top) #gHeader .logo .black { display: inline-flex; }
body:not(#top) #gHeader.fixed .logo .black { display: inline-flex; }

/* PC Navigation */
#gNavi {
  display: flex;
  align-items: center;
}

#gNavi > ul {
  display: flex;
  align-items: center;
  gap: 0;
}

#gNavi > ul > li {
  position: relative;
}

#gNavi > ul > li > a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  height: 80px;
  font-size: 1.4rem;
  font-weight: bold;
  letter-spacing: 0.06em;
  color: var(--color-white);
  position: relative;
  transition: color var(--transition-base);
}

#gHeader.fixed #gNavi > ul > li > a {
  color: var(--color-text);
}

#gNavi > ul > li > a::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background-color: var(--color-accent);
  transition: width var(--transition-base);
}

#gNavi > ul > li > a:hover::after,
#gNavi > ul > li.current > a::after {
  width: calc(100% - 36px);
}

#gNavi > ul > li > a:hover {
  opacity: 1;
}

#gNavi .contactLink a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 140px;
  height: 40px;
  background-color: var(--color-accent);
  color: var(--color-white) !important;
  font-size: 1.3rem;
  font-weight: bold;
  letter-spacing: 0.08em;
  border-radius: 50px;
  margin-left: 10px;
  transition: opacity var(--transition-base);
}

#gNavi .contactLink a::after {
  display: none;
}

#gNavi .contactLink a:hover {
  opacity: 0.7;
}

/* Dropdown */
.dropBox {
  position: absolute;
  top: 80px;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  max-width: 100vw;
  background-color: var(--color-bg-light);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  padding: 30px 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

#gNavi > ul > li:hover .dropBox {
  opacity: 1;
  visibility: visible;
}

.dropBox .dropInner {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 20px;
}

.dropBox ul {
  display: flex;
  flex-wrap: wrap;
  gap: 15px 30px;
}

.dropBox ul li a {
  display: block;
  padding: 10px 0;
  font-size: 1.4rem;
  color: var(--color-text);
  position: relative;
  padding-left: 18px;
  transition: color var(--transition-base);
}

.dropBox ul li a::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 2px;
  background-color: var(--color-accent);
}

.dropBox ul li a:hover {
  color: var(--color-accent);
  opacity: 1;
}

/* Hamburger Menu Button */
.menu {
  display: none;
  position: relative;
  z-index: 1001;
  width: 50px;
  height: 50px;
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.menu .menuLine {
  position: relative;
  width: 24px;
  height: 2px;
  background-color: var(--color-white);
  transition: all var(--transition-base);
}

#gHeader.fixed .menu .menuLine {
  background-color: var(--color-text);
}

.menu .menuLine::before,
.menu .menuLine::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  width: 24px;
  height: 2px;
  background-color: var(--color-white);
  transition: all var(--transition-base);
}

#gHeader.fixed .menu .menuLine::before,
#gHeader.fixed .menu .menuLine::after {
  background-color: var(--color-text);
}

.menu .menuLine::before {
  top: -8px;
}

.menu .menuLine::after {
  bottom: -8px;
}

.menu.on .menuLine {
  background-color: transparent;
}

.menu.on .menuLine::before {
  top: 0;
  transform: rotate(45deg);
  background-color: var(--color-white);
}

.menu.on .menuLine::after {
  bottom: 0;
  transform: rotate(-45deg);
  background-color: var(--color-white);
}

.menu .menuText {
  display: none;
}

#gHeader.fixed .menu .menuText {
  color: var(--color-text);
}

.menu.on .menuText {
  color: var(--color-white);
}

/* ----------------------------------------
   3. Mobile Menu
---------------------------------------- */
.menuBox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 999;
  background-color: var(--color-primary);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.menuBox .menuBoxInner {
  padding: 100px 30px 60px;
  min-height: 100%;
}

.menuBox .close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
}

.menuBox .close span {
  position: relative;
  display: block;
  width: 24px;
  height: 24px;
}

.menuBox .close span::before,
.menuBox .close span::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  width: 24px;
  height: 2px;
  background-color: var(--color-white);
}

.menuBox .close span::before {
  transform: rotate(45deg);
}

.menuBox .close span::after {
  transform: rotate(-45deg);
}

.menuBox nav > ul > li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.menuBox nav > ul > li > .ttl {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  color: var(--color-white);
  font-size: 1.6rem;
  font-weight: bold;
  letter-spacing: 0.06em;
  cursor: pointer;
  transition: color var(--transition-base);
  min-height: 44px;
}

.menuBox nav > ul > li > .ttl:hover {
  color: var(--color-accent);
}

.menuBox nav > ul > li > .ttl::after {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--color-accent);
  border-bottom: 2px solid var(--color-accent);
  transform: rotate(45deg);
  transition: transform var(--transition-base);
  flex-shrink: 0;
  margin-left: 15px;
}

.menuBox nav > ul > li > .ttl.on::after {
  transform: rotate(-135deg);
}

.menuBox nav > ul > li > a {
  display: flex;
  align-items: center;
  padding: 18px 0;
  color: var(--color-white);
  font-size: 1.6rem;
  font-weight: bold;
  letter-spacing: 0.06em;
  min-height: 44px;
}

.menuBox nav > ul > li > a:hover {
  color: var(--color-accent);
  opacity: 1;
}

.menuBox .innerUl {
  display: none;
  padding-bottom: 15px;
}

.menuBox .innerUl li {
  padding: 0;
}

.menuBox .innerUl li a {
  display: block;
  padding: 10px 0 10px 20px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.4rem;
  letter-spacing: 0.04em;
  position: relative;
  min-height: 44px;
  display: flex;
  align-items: center;
}

.menuBox .innerUl li a::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 10px;
  height: 2px;
  background-color: var(--color-accent);
}

.menuBox .innerUl li a:hover {
  color: var(--color-accent);
  opacity: 1;
}

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

.menuBox .menuContact a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 300px;
  height: 56px;
  background-color: var(--color-accent);
  color: var(--color-white);
  font-size: 1.6rem;
  font-weight: bold;
  letter-spacing: 0.1em;
  border-radius: 50px;
}

.menuBox .menuTel {
  margin-top: 25px;
  text-align: center;
  color: var(--color-white);
}

.menuBox .menuTel a {
  font-size: 2.4rem;
  font-family: var(--font-poppins);
  font-weight: 700;
  color: var(--color-white);
  letter-spacing: 0.05em;
}

.menuBox .menuTel .telLabel {
  display: block;
  font-size: 1.2rem;
  margin-bottom: 5px;
  opacity: 0.7;
}

/* ----------------------------------------
   4. Hero / Main Visual
---------------------------------------- */
.mainVisual {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mainVisual .videoBox {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: -1;
}

.mainVisual .videoBox video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  object-fit: cover;
}

/* Hero Slideshow */
.heroSlideshow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}
.heroSlide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center center;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
  transform: scale(1);
  animation: heroZoom 8s ease-in-out infinite alternate;
}
.heroSlide.active {
  opacity: 1;
}
@keyframes heroZoom {
  0% { transform: scale(1); }
  100% { transform: scale(1.08); }
}

.mainVisual .videoBox img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mainVisual .heroOverlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(13, 27, 42, 0.55);
  z-index: 0;
}

.mainVisual .heroContent {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 20px;
}

.mainVisual h2 {
  font-size: 7.2rem;
  font-weight: 900;
  color: var(--color-white);
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.mainVisual .heroSubtext {
  font-size: 1.8rem;
  color: var(--color-white);
  margin-top: 20px;
  letter-spacing: 0.15em;
  font-weight: 500;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.3);
}

.mainVisual .heroScroll {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}

.mainVisual .heroScroll span {
  display: block;
  font-size: 1.1rem;
  font-family: var(--font-poppins);
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-white);
  writing-mode: vertical-rl;
  position: relative;
  padding-bottom: 60px;
}

.mainVisual .heroScroll,
.mainVisual .heroScroll span,
.mainVisual .heroScroll span::after {
  display: none;
}

/* Sub page hero */
.subVisual {
  position: relative;
  width: 100%;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-primary);
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.subVisual::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(13, 27, 42, 0.6);
}

.subVisual .subVisualInner {
  position: relative;
  z-index: 1;
  text-align: center;
}

.subVisual h2 {
  font-size: 3.6rem;
  font-weight: 900;
  color: var(--color-white);
  letter-spacing: 0.1em;
}

.subVisual .subVisualEn {
  font-family: var(--font-poppins);
  font-size: 1.3rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--color-accent);
  margin-top: 10px;
  text-transform: uppercase;
}

/* Breadcrumb */
.breadcrumb {
  padding: 15px 0;
  background-color: var(--color-bg-light);
}

.breadcrumb ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  max-width: 960px;
  margin: 0 auto;
  padding: 0 20px;
}

.breadcrumb ul li {
  font-size: 1.2rem;
  color: #888888;
}

.breadcrumb ul li + li::before {
  content: ">";
  display: inline-block;
  margin: 0 8px;
  color: #aaaaaa;
}

.breadcrumb ul li a {
  color: var(--color-text);
}

.breadcrumb ul li a:hover {
  color: var(--color-accent);
  opacity: 1;
}

/* ----------------------------------------
   5. General Section Styling
---------------------------------------- */
.section {
  padding: 80px 0;
}

.sectionGray {
  padding: 80px 0;
  background-color: var(--color-bg-light);
}

.sectionNavy {
  padding: 80px 0;
  background-color: var(--color-primary);
  color: var(--color-white);
}

.sectionNavy .headLine01 {
  color: var(--color-white);
}

.sectionNavy .headLine02 {
  color: var(--color-white);
}

.sectionNavy .headLine02::before {
  background-color: var(--color-accent);
}

/* ----------------------------------------
   6. Philosophy Section
---------------------------------------- */
.philosophyBox {
  padding: 100px 0;
  background-color: var(--color-primary);
  position: relative;
  overflow: hidden;
}

.philosophyBox::before {
  content: "";
  position: absolute;
  top: -50px;
  right: -100px;
  width: 400px;
  height: 400px;
  border: 1px solid rgba(201, 168, 76, 0.15);
  border-radius: 50%;
  pointer-events: none;
}

.philosophyBox .philosophyInner {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.philosophyBox .philosophyLabel {
  font-family: var(--font-poppins);
  font-size: 1.3rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 30px;
}

.philosophyBox h2 {
  font-size: 3.2rem;
  font-weight: 900;
  color: var(--color-white);
  line-height: 1.6;
  letter-spacing: 0.1em;
  margin-bottom: 40px;
}

.philosophyBox .philosophyText {
  font-size: 1.6rem;
  line-height: 2.2;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.04em;
}

.philosophyBox .philosophyQuote {
  margin-top: 50px;
  padding: 40px;
  border-top: 1px solid rgba(201, 168, 76, 0.3);
  border-bottom: 1px solid rgba(201, 168, 76, 0.3);
  position: relative;
}

.philosophyBox .philosophyQuote::before {
  content: "\201C";
  display: block;
  font-size: 6rem;
  font-family: Georgia, serif;
  color: var(--color-accent);
  line-height: 1;
  margin-bottom: -10px;
  opacity: 0.6;
}

.philosophyBox .philosophyQuote p {
  font-size: 2.0rem;
  font-weight: bold;
  color: var(--color-white);
  line-height: 1.8;
  letter-spacing: 0.08em;
}

.philosophyBox .philosophyQuote .quoteAuthor {
  display: block;
  font-size: 1.4rem;
  font-weight: normal;
  color: var(--color-accent);
  margin-top: 15px;
}

/* ----------------------------------------
   7. Services Section
---------------------------------------- */
.servicesBox {
  padding: 80px 0;
}

.servicesBox .servicesList {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.servicesBox .serviceCard {
  background-color: var(--color-white);
  border-radius: 8px;
  padding: 40px 25px 30px;
  box-shadow: var(--shadow-card);
  text-align: center;
  transition: transform var(--transition-base), box-shadow var(--transition-base);
  position: relative;
}

.servicesBox .serviceCard:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-card-hover);
}

.servicesBox .serviceIcon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-accent), var(--color-accent-light));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
}

.servicesBox .serviceIcon img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.servicesBox .serviceCard h3 {
  font-size: 1.8rem;
  font-weight: bold;
  letter-spacing: 0.06em;
  color: var(--color-primary);
  margin-bottom: 15px;
  line-height: 1.4;
}

.servicesBox .serviceCard p {
  font-size: 1.4rem;
  line-height: 1.8;
  color: #555555;
}

.servicesBox .serviceCard .cardLink {
  display: inline-flex;
  align-items: center;
  margin-top: 20px;
  font-size: 1.3rem;
  font-weight: bold;
  color: var(--color-accent);
  letter-spacing: 0.06em;
  transition: color var(--transition-base);
}

.servicesBox .serviceCard .cardLink::after {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  border-top: 2px solid var(--color-accent);
  border-right: 2px solid var(--color-accent);
  transform: rotate(45deg);
  margin-left: 8px;
}

.servicesBox .serviceCard .cardLink:hover {
  opacity: 1;
  color: var(--color-secondary);
}

/* Services Detail */
.serviceDetailBox {
  padding: 60px 0;
}

.serviceDetailBox .serviceDetailItem {
  display: flex;
  align-items: flex-start;
  gap: 40px;
  padding: 40px 0;
  border-bottom: 1px solid var(--color-border);
}

.serviceDetailBox .serviceDetailItem:last-child {
  border-bottom: none;
}

.serviceDetailBox .serviceDetailItem .detailImg {
  flex-shrink: 0;
  width: 340px;
  border-radius: 8px;
  overflow: hidden;
}

.serviceDetailBox .serviceDetailItem .detailImg img {
  width: 100%;
  height: auto;
  display: block;
}

.serviceDetailBox .serviceDetailItem .detailText {
  flex: 1;
}

.serviceDetailBox .serviceDetailItem .detailText h3 {
  font-size: 2.2rem;
  font-weight: bold;
  color: var(--color-primary);
  margin-bottom: 15px;
  letter-spacing: 0.06em;
}

.serviceDetailBox .serviceDetailItem .detailText p {
  font-size: 1.5rem;
  line-height: 2.0;
  color: var(--color-text);
}

/* ----------------------------------------
   8. Recruitment Section
---------------------------------------- */
.recruitmentBox {
  padding: 80px 0;
}

.recruitmentBox .recruitBanner {
  background: linear-gradient(135deg, var(--color-accent), var(--color-accent-light));
  border-radius: 12px;
  padding: 50px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.recruitmentBox .recruitBanner::before {
  content: "";
  position: absolute;
  top: -30%;
  right: -10%;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  pointer-events: none;
}

.recruitmentBox .recruitBanner h3 {
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--color-white);
  letter-spacing: 0.08em;
  margin-bottom: 15px;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
}

.recruitmentBox .recruitBanner p {
  font-size: 1.6rem;
  color: var(--color-white);
  margin-bottom: 25px;
  line-height: 1.8;
}

.recruitmentBox .recruitBanner .comBtnWhite {
  margin-top: 0;
}

.recruitmentBox .pointList {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.recruitmentBox .pointCard {
  background-color: var(--color-white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.recruitmentBox .pointCard:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-card-hover);
}

.recruitmentBox .pointCard .pointImg {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.recruitmentBox .pointCard .pointImg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.recruitmentBox .pointCard:hover .pointImg img {
  transform: scale(1.05);
}

.recruitmentBox .pointCard .pointBody {
  padding: 25px 20px;
}

.recruitmentBox .pointCard .pointNum {
  font-family: var(--font-poppins);
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--color-accent);
  margin-bottom: 10px;
  text-transform: uppercase;
}

.recruitmentBox .pointCard h4 {
  font-size: 1.8rem;
  font-weight: bold;
  color: var(--color-primary);
  margin-bottom: 12px;
  letter-spacing: 0.04em;
  line-height: 1.4;
}

.recruitmentBox .pointCard p {
  font-size: 1.4rem;
  line-height: 1.8;
  color: #555555;
}

.highlight {
  background: linear-gradient(transparent 60%, var(--color-accent-light) 60%);
  padding: 0 2px;
  font-weight: bold;
}

.highlightGold {
  color: var(--color-accent);
  font-weight: bold;
}

/* ----------------------------------------
   9. Company Section
---------------------------------------- */
.companyBox {
  padding: 80px 0;
}

/* President Message */
.presidentMessage {
  display: flex;
  align-items: flex-start;
  gap: 50px;
  margin-bottom: 60px;
}

.presidentMessage .presImg {
  flex-shrink: 0;
  width: 300px;
  border-radius: 8px;
  overflow: hidden;
}

.presidentMessage .presImg img {
  width: 100%;
  height: auto;
  display: block;
}

.presidentMessage .presText {
  flex: 1;
}

.presidentMessage .presText .presName {
  font-size: 1.4rem;
  color: #888888;
  margin-bottom: 5px;
}

.presidentMessage .presText .presName strong {
  font-size: 2.0rem;
  color: var(--color-primary);
  margin-left: 10px;
}

.presidentMessage .presText h3 {
  font-size: 2.4rem;
  font-weight: bold;
  color: var(--color-primary);
  line-height: 1.6;
  margin-bottom: 25px;
  letter-spacing: 0.06em;
}

.presidentMessage .presText p {
  font-size: 1.5rem;
  line-height: 2.0;
  margin-bottom: 15px;
}

/* Company Info Table */
.companyInfo {
  margin-top: 40px;
}

.companyInfo dl {
  border-top: 1px solid var(--color-border);
}

.companyInfo dl dt,
.companyInfo dl dd {
  margin: 0;
}

.companyInfo dt {
  width: 200px;
  padding: 18px 20px;
  background-color: var(--color-bg-light);
  font-weight: bold;
  font-size: 1.4rem;
  border-bottom: 1px solid var(--color-border);
  border-right: 1px solid var(--color-border);
  display: table-cell;
  vertical-align: middle;
  float: left;
  clear: left;
  box-sizing: border-box;
  min-height: 58px;
  line-height: 1.6;
}

.companyInfo dd {
  padding: 18px 20px;
  font-size: 1.4rem;
  line-height: 1.8;
  border-bottom: 1px solid var(--color-border);
  margin-left: 200px;
  min-height: 58px;
  box-sizing: border-box;
  word-break: break-all;
}

/* Office Map */
.officeMap {
  margin-top: 40px;
}

.officeMap iframe {
  width: 100%;
  height: 400px;
  border: none;
  border-radius: 8px;
}

.officeMap .mapAddress {
  margin-top: 15px;
  font-size: 1.4rem;
  color: #666666;
}

/* History / Timeline */
.historyBox {
  margin-top: 50px;
}

.historyBox .historyList {
  position: relative;
  padding-left: 30px;
}

.historyBox .historyList::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 2px;
  height: 100%;
  background-color: var(--color-accent);
}

.historyBox .historyItem {
  position: relative;
  padding: 0 0 30px 30px;
}

.historyBox .historyItem::before {
  content: "";
  position: absolute;
  left: -35px;
  top: 5px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: var(--color-accent);
  border: 2px solid var(--color-white);
}

.historyBox .historyItem .historyYear {
  font-family: var(--font-poppins);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--color-accent);
  letter-spacing: 0.05em;
  margin-bottom: 5px;
}

.historyBox .historyItem p {
  font-size: 1.5rem;
  line-height: 1.8;
}

/* ----------------------------------------
   10. Contact Section
---------------------------------------- */
.contactBox {
  padding: 80px 0;
}

.contactBox .contactLead {
  text-align: center;
  font-size: 1.6rem;
  line-height: 2.0;
  margin-bottom: 50px;
  color: var(--color-text);
}

.contactBox .contactTel {
  text-align: center;
  margin-bottom: 40px;
  padding: 30px;
  background-color: var(--color-bg-light);
  border-radius: 8px;
}

.contactBox .contactTel .telNumber {
  font-family: var(--font-poppins);
  font-size: 3.6rem;
  font-weight: 700;
  color: var(--color-primary);
  letter-spacing: 0.05em;
}

.contactBox .contactTel .telInfo {
  font-size: 1.3rem;
  color: #888888;
  margin-top: 5px;
}

.contactBox .formGroup {
  margin-bottom: 20px;
}

.contactBox .formGroup label {
  display: block;
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 8px;
  color: var(--color-text);
}

.contactBox .formGroup label .required {
  display: inline-block;
  font-size: 1.1rem;
  background-color: #cc3333;
  color: var(--color-white);
  padding: 2px 8px;
  border-radius: 3px;
  margin-left: 8px;
  font-weight: normal;
  vertical-align: middle;
}

.contactBox .formGroup label .optional {
  display: inline-block;
  font-size: 1.1rem;
  background-color: #888888;
  color: var(--color-white);
  padding: 2px 8px;
  border-radius: 3px;
  margin-left: 8px;
  font-weight: normal;
  vertical-align: middle;
}

.contactBox input[type="text"],
.contactBox input[type="email"],
.contactBox input[type="tel"],
.contactBox textarea,
.contactBox select {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid var(--color-border);
  border-radius: 4px;
  font-size: 1.5rem;
  line-height: 1.5;
  background-color: var(--color-white);
  transition: border-color var(--transition-base), box-shadow var(--transition-base);
}

.contactBox input[type="text"]:focus,
.contactBox input[type="email"]:focus,
.contactBox input[type="tel"]:focus,
.contactBox textarea:focus,
.contactBox select:focus {
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.15);
}

.contactBox textarea {
  height: 200px;
  resize: vertical;
}

.contactBox select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23666' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 15px center;
  padding-right: 40px;
}

.contactBox .radioGroup {
  display: flex;
  flex-wrap: wrap;
  gap: 15px 25px;
  margin-top: 5px;
}

.contactBox .radioGroup label {
  display: inline-flex;
  align-items: center;
  font-weight: normal;
  cursor: pointer;
  margin-bottom: 0;
}

.contactBox .radioGroup input[type="radio"] {
  width: 18px;
  height: 18px;
  margin-right: 6px;
  border: 2px solid var(--color-border);
  border-radius: 50%;
  position: relative;
  cursor: pointer;
}

.contactBox .radioGroup input[type="radio"]:checked {
  border-color: var(--color-accent);
}

.contactBox .radioGroup input[type="radio"]:checked::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--color-accent);
}

.contactBox .checkboxGroup {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 25px;
  margin-top: 5px;
}

.contactBox .checkboxGroup label {
  display: inline-flex;
  align-items: center;
  font-weight: normal;
  cursor: pointer;
  margin-bottom: 0;
}

.contactBox .checkboxGroup input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-right: 6px;
  border: 2px solid var(--color-border);
  border-radius: 3px;
  position: relative;
  cursor: pointer;
}

.contactBox .checkboxGroup input[type="checkbox"]:checked {
  background-color: var(--color-accent);
  border-color: var(--color-accent);
}

.contactBox .checkboxGroup input[type="checkbox"]:checked::after {
  content: "";
  display: block;
  position: absolute;
  top: 2px;
  left: 5px;
  width: 5px;
  height: 9px;
  border-right: 2px solid var(--color-white);
  border-bottom: 2px solid var(--color-white);
  transform: rotate(45deg);
}

.contactBox .privacyCheck {
  text-align: center;
  margin: 30px 0;
}

.contactBox .privacyCheck label {
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  font-size: 1.4rem;
}

.contactBox .privacyCheck input[type="checkbox"] {
  width: 20px;
  height: 20px;
  margin-right: 8px;
  border: 2px solid var(--color-border);
  border-radius: 3px;
  cursor: pointer;
}

.contactBox .privacyCheck a {
  color: var(--color-accent);
  text-decoration: underline;
}

.contactBox .submitBtn {
  text-align: center;
  margin-top: 30px;
}

.contactBox .submitBtn button,
.contactBox .submitBtn input[type="submit"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 60px;
  background-color: var(--color-accent);
  color: var(--color-white);
  font-size: 1.6rem;
  font-weight: bold;
  letter-spacing: 0.1em;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: opacity var(--transition-base), background-color var(--transition-base);
  min-height: 44px;
}

.contactBox .submitBtn button:hover,
.contactBox .submitBtn input[type="submit"]:hover {
  opacity: 0.7;
}

.contactBox .submitBtn button:disabled,
.contactBox .submitBtn input[type="submit"]:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* Service Area */
.serviceArea {
  margin-top: 50px;
}

.serviceArea h3 {
  font-size: 2.0rem;
  font-weight: bold;
  color: var(--color-primary);
  margin-bottom: 20px;
  text-align: center;
}

.serviceArea .areaList {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 20px;
}

.serviceArea .areaList li {
  font-size: 1.4rem;
  padding: 8px 16px;
  background-color: var(--color-bg-light);
  border-radius: 4px;
  position: relative;
  padding-left: 26px;
}

.serviceArea .areaList li::before {
  content: "";
  display: block;
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--color-accent);
}

/* ----------------------------------------
   11. Footer
---------------------------------------- */
#gFooter {
  background-color: var(--color-primary);
  color: var(--color-white);
}

#gFooter a {
  color: var(--color-white);
}

#gFooter .fBox {
  max-width: 1100px;
  margin: 0 auto;
  padding: 60px 30px 40px;
}

#gFooter .fLogo {
  margin-bottom: 40px;
}

#gFooter .fLogo img {
  height: 36px;
  width: auto;
}

#gFooter .fLogo .logoMark svg {
  width: 24px;
  height: 24px;
}
#gFooter .fLogo .logoMark > span {
  font-size: 1.8rem;
  color: #fff;
}

#gFooter .fLogo .fCompanyInfo {
  margin-top: 15px;
  font-size: 1.2rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.6);
}

/* Footer PC Navigation */
.fNavi {
  display: flex;
  gap: 30px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.fNavi .fNaviCol {
  flex: 1;
}

.fNavi .fNaviCol .fNaviTtl {
  font-size: 1.4rem;
  font-weight: bold;
  letter-spacing: 0.06em;
  margin-bottom: 15px;
  color: var(--color-white);
}

.fNavi .fNaviCol .fNaviTtl a {
  color: var(--color-white);
}

.fNavi .fNaviCol ul li {
  margin-bottom: 8px;
}

.fNavi .fNaviCol ul li a {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.7);
  transition: color var(--transition-base);
  line-height: 1.6;
}

.fNavi .fNaviCol ul li a:hover {
  color: var(--color-accent);
  opacity: 1;
}

/* Footer Secondary Links */
.fNavi02 {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 30px;
  padding: 25px 0;
}

.fNavi02 li a {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.7);
}

.fNavi02 li a:hover {
  color: var(--color-accent);
  opacity: 1;
}

/* Footer Mobile Accordion */
.fNavi03 {
  display: none;
}

.fNavi03 .fAccItem {
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.fNavi03 .fAccItem .fAccTtl {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  font-size: 1.4rem;
  font-weight: bold;
  color: var(--color-white);
  cursor: pointer;
  min-height: 44px;
}

.fNavi03 .fAccItem .fAccTtl::after {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  border-right: 2px solid var(--color-accent);
  border-bottom: 2px solid var(--color-accent);
  transform: rotate(45deg);
  transition: transform var(--transition-base);
  flex-shrink: 0;
}

.fNavi03 .fAccItem .fAccTtl.on::after {
  transform: rotate(-135deg);
}

.fNavi03 .fAccItem .fAccBody {
  display: none;
  padding-bottom: 15px;
}

.fNavi03 .fAccItem .fAccBody li {
  margin-bottom: 5px;
}

.fNavi03 .fAccItem .fAccBody li a {
  display: flex;
  align-items: center;
  padding: 8px 0 8px 15px;
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.7);
  min-height: 44px;
  position: relative;
}

.fNavi03 .fAccItem .fAccBody li a::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 2px;
  background-color: var(--color-accent);
}

.fNavi03 .fAccItem .fAccBody li a:hover {
  color: var(--color-accent);
  opacity: 1;
}

/* Copyright */
.copyright {
  text-align: center;
  padding: 25px 20px;
  background-color: rgba(0, 0, 0, 0.2);
  font-size: 1.1rem;
  font-family: var(--font-poppins);
  font-weight: 500;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.6);
}

/* Page Top Button */
.pageTop {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 15;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition-base), visibility var(--transition-base);
}

.pageTop.on {
  opacity: 1;
  visibility: visible;
}

.pageTop a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background-color: var(--color-accent);
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  transition: opacity var(--transition-base), transform var(--transition-base);
}

.pageTop a::before {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  border-top: 2px solid var(--color-white);
  border-left: 2px solid var(--color-white);
  transform: rotate(45deg) translateY(3px);
}

.pageTop a:hover {
  opacity: 0.8;
  transform: translateY(-3px);
}

/* ----------------------------------------
   12. News Section
---------------------------------------- */
.newsBox {
  padding: 80px 0;
}

.newsBox .newsList {
  margin-top: 30px;
}

.newsBox .newsList li {
  border-bottom: 1px solid var(--color-border);
}

.newsBox .newsList li a {
  display: flex;
  align-items: flex-start;
  padding: 20px 0;
  transition: background-color var(--transition-base);
}

.newsBox .newsList li a:hover {
  opacity: 1;
  background-color: rgba(0, 0, 0, 0.02);
}

.newsBox .newsList .newsDate {
  font-family: var(--font-poppins);
  font-size: 1.3rem;
  font-weight: 500;
  color: #888888;
  letter-spacing: 0.05em;
  flex-shrink: 0;
  width: 120px;
  padding-top: 2px;
}

.newsBox .newsList .newsCategory {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: bold;
  padding: 3px 12px;
  border-radius: 3px;
  background-color: var(--color-primary);
  color: var(--color-white);
  flex-shrink: 0;
  margin-right: 20px;
  min-width: 80px;
  text-align: center;
}

.newsBox .newsList .newsCategory.cat01 {
  background-color: var(--color-secondary);
}

.newsBox .newsList .newsCategory.cat02 {
  background-color: var(--color-accent);
}

.newsBox .newsList .newsTtl {
  font-size: 1.5rem;
  line-height: 1.6;
  color: var(--color-text);
  flex: 1;
}

/* ----------------------------------------
   13. Slider / Related
---------------------------------------- */
.comRelated {
  background-color: var(--color-bg-light);
  padding: 80px 0;
}

.comRelated .slideBox {
  position: relative;
  margin-top: 40px;
}

.comRelated .bannerUl {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory;
  padding-bottom: 10px;
}

.comRelated .bannerUl li {
  flex-shrink: 0;
  width: 300px;
  scroll-snap-align: start;
}

.comRelated .bannerUl li a {
  display: block;
  background-color: var(--color-white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.comRelated .bannerUl li a:hover {
  opacity: 1;
  transform: translateY(-3px);
  box-shadow: var(--shadow-card-hover);
}

.comRelated .bannerUl li .bannerImg {
  width: 100%;
  height: 180px;
  overflow: hidden;
}

.comRelated .bannerUl li .bannerImg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.comRelated .bannerUl li .bannerText {
  padding: 15px;
}

.comRelated .bannerUl li .bannerText p {
  font-size: 1.4rem;
  font-weight: bold;
  line-height: 1.5;
  color: var(--color-text);
}

/* Slick slider overrides */
.comRelated .slick-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 44px;
  height: 44px;
  background-color: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  transition: all var(--transition-base);
  font-size: 0;
  line-height: 0;
}

.comRelated .slick-arrow:hover {
  background-color: var(--color-accent);
  border-color: var(--color-accent);
}

.comRelated .slick-prev {
  left: -22px;
}

.comRelated .slick-next {
  right: -22px;
}

.comRelated .slick-prev::before {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  border-bottom: 2px solid var(--color-text);
  border-left: 2px solid var(--color-text);
  transform: rotate(45deg) translate(2px, -2px);
}

.comRelated .slick-next::before {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  border-top: 2px solid var(--color-text);
  border-right: 2px solid var(--color-text);
  transform: rotate(45deg) translate(-2px, 2px);
}

.comRelated .slick-arrow:hover::before {
  border-color: var(--color-white);
}

.comRelated .slick-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 25px;
}

.comRelated .slick-dots li {
  width: auto;
  flex-shrink: 0;
}

.comRelated .slick-dots li button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--color-border);
  font-size: 0;
  line-height: 0;
  padding: 0;
  border: none;
  cursor: pointer;
  transition: background-color var(--transition-base);
}

.comRelated .slick-dots li.slick-active button {
  background-color: var(--color-accent);
}

/* ----------------------------------------
   14. Privacy Policy / Text Pages
---------------------------------------- */
.privacyBox {
  padding: 60px 0;
}

.privacyBox .privacyContent h3 {
  font-size: 1.8rem;
  font-weight: bold;
  color: var(--color-primary);
  margin-top: 40px;
  margin-bottom: 15px;
  padding-left: 15px;
  border-left: 3px solid var(--color-accent);
}

.privacyBox .privacyContent p {
  font-size: 1.5rem;
  line-height: 2.0;
  margin-bottom: 15px;
}

.privacyBox .privacyContent ul {
  margin: 10px 0 20px 20px;
}

.privacyBox .privacyContent ul li {
  font-size: 1.5rem;
  line-height: 2.0;
  position: relative;
  padding-left: 15px;
}

.privacyBox .privacyContent ul li::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 12px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--color-accent);
}

/* ----------------------------------------
   15. Feature / Strength Cards
---------------------------------------- */
.strengthBox {
  padding: 80px 0;
}

.strengthBox .strengthList {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.strengthBox .strengthItem {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 30px;
  background-color: var(--color-white);
  border-radius: 8px;
  box-shadow: var(--shadow-card);
}

.strengthBox .strengthItem .strengthNum {
  font-family: var(--font-poppins);
  font-size: 4.0rem;
  font-weight: 700;
  color: var(--color-accent);
  line-height: 1;
  flex-shrink: 0;
}

.strengthBox .strengthItem h3 {
  font-size: 1.8rem;
  font-weight: bold;
  color: var(--color-primary);
  margin-bottom: 10px;
}

.strengthBox .strengthItem p {
  font-size: 1.4rem;
  line-height: 1.8;
  color: #555555;
}

/* ----------------------------------------
   16. CTA Section
---------------------------------------- */
.ctaSection {
  padding: 80px 0;
  background-color: var(--color-secondary);
  text-align: center;
}

.ctaSection h2 {
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--color-white);
  letter-spacing: 0.08em;
  margin-bottom: 15px;
}

.ctaSection p {
  font-size: 1.6rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 30px;
  line-height: 1.8;
}

.ctaSection .ctaBtns {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* ----------------------------------------
   17. FAQ Section
---------------------------------------- */
.faqBox {
  padding: 80px 0;
}

.faqBox .faqList {
  max-width: 800px;
  margin: 40px auto 0;
}

.faqBox .faqItem {
  border-bottom: 1px solid var(--color-border);
}

.faqBox .faqItem .faqQ {
  display: flex;
  align-items: flex-start;
  padding: 20px 0;
  cursor: pointer;
  transition: color var(--transition-base);
  min-height: 44px;
}

.faqBox .faqItem .faqQ::before {
  content: "Q";
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: var(--color-accent);
  color: var(--color-white);
  font-family: var(--font-poppins);
  font-size: 1.4rem;
  font-weight: 700;
  flex-shrink: 0;
  margin-right: 15px;
}

.faqBox .faqItem .faqQ p {
  flex: 1;
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 1.6;
  padding-top: 4px;
}

.faqBox .faqItem .faqQ::after {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--color-text);
  border-bottom: 2px solid var(--color-text);
  transform: rotate(45deg);
  transition: transform var(--transition-base);
  flex-shrink: 0;
  margin-left: 15px;
  margin-top: 10px;
}

.faqBox .faqItem .faqQ.on::after {
  transform: rotate(-135deg);
}

.faqBox .faqItem .faqA {
  display: none;
  padding: 0 0 20px 47px;
}

.faqBox .faqItem .faqA::before {
  content: "A";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: var(--color-bg-light);
  color: var(--color-primary);
  font-family: var(--font-poppins);
  font-size: 1.4rem;
  font-weight: 700;
  flex-shrink: 0;
  margin-right: 15px;
  float: left;
  margin-left: -47px;
}

.faqBox .faqItem .faqA p {
  font-size: 1.5rem;
  line-height: 2.0;
}

/* ----------------------------------------
   18. Number Counter Section
---------------------------------------- */
.numberBox {
  padding: 80px 0;
  background-color: var(--color-primary);
}

.numberBox .numberList {
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
}

.numberBox .numberItem {
  text-align: center;
  color: var(--color-white);
}

.numberBox .numberItem .numLabel {
  font-size: 1.3rem;
  letter-spacing: 0.08em;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.8);
}

.numberBox .numberItem .numValue {
  font-family: var(--font-poppins);
  font-size: 5.0rem;
  font-weight: 700;
  color: var(--color-accent);
  line-height: 1.1;
}

.numberBox .numberItem .numValue .numUnit {
  font-size: 2.0rem;
  font-weight: 500;
  color: var(--color-white);
  margin-left: 5px;
}

/* ----------------------------------------
   19. Image Gallery
---------------------------------------- */
.galleryBox {
  padding: 60px 0;
}

.galleryBox .galleryGrid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.galleryBox .galleryGrid .galleryItem {
  overflow: hidden;
  border-radius: 4px;
  aspect-ratio: 4 / 3;
}

.galleryBox .galleryGrid .galleryItem img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.galleryBox .galleryGrid .galleryItem:hover img {
  transform: scale(1.08);
}

/* ----------------------------------------
   20. Pagination
---------------------------------------- */
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  margin-top: 50px;
}

.pagination a,
.pagination span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  font-size: 1.4rem;
  font-family: var(--font-poppins);
  font-weight: 500;
  transition: all var(--transition-base);
}

.pagination a {
  border: 1px solid var(--color-border);
  color: var(--color-text);
}

.pagination a:hover {
  background-color: var(--color-accent);
  border-color: var(--color-accent);
  color: var(--color-white);
  opacity: 1;
}

.pagination span.current {
  background-color: var(--color-accent);
  color: var(--color-white);
  border: 1px solid var(--color-accent);
}

.pagination .prevPage,
.pagination .nextPage {
  width: auto;
  padding: 0 15px;
}

/* ----------------------------------------
   21. Flow / Process Section
---------------------------------------- */
.flowBox {
  padding: 80px 0;
}

.flowBox .flowList {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 50px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.flowBox .flowItem {
  display: flex;
  align-items: flex-start;
  gap: 25px;
  padding: 30px 0;
  position: relative;
}

.flowBox .flowItem:not(:last-child) {
  border-bottom: none;
}

.flowBox .flowItem:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 24px;
  bottom: -1px;
  width: 2px;
  height: 30px;
  background: repeating-linear-gradient(
    to bottom,
    var(--color-accent) 0,
    var(--color-accent) 4px,
    transparent 4px,
    transparent 8px
  );
}

.flowBox .flowItem .flowNum {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: var(--color-accent);
  color: var(--color-white);
  font-family: var(--font-poppins);
  font-size: 1.8rem;
  font-weight: 700;
  flex-shrink: 0;
}

.flowBox .flowItem .flowContent h3 {
  font-size: 1.8rem;
  font-weight: bold;
  color: var(--color-primary);
  margin-bottom: 8px;
}

.flowBox .flowItem .flowContent p {
  font-size: 1.4rem;
  line-height: 1.8;
  color: #555555;
}

/* ========================================
   RECRUITMENT PAGE - Reference Design Match
======================================== */

/* Green CTA Banner - matches reference image */
.recruitBannerGreen {
  background-color: #2e8b3a;
  border-radius: 8px;
  padding: 25px 30px;
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 60px;
  cursor: pointer;
  transition: opacity 0.3s ease;
  position: relative;
}
.recruitBannerGreen:hover { opacity: 0.9; }
.recruitBannerGreen .bannerIconBox {
  width: 70px; height: 70px; flex-shrink: 0;
  background-color: rgba(255,255,255,0.15);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
}
.recruitBannerGreen .bannerIconBox svg { width: 36px; height: 36px; }
.recruitBannerGreen .bannerBody { flex: 1; color: #fff; }
.recruitBannerGreen .bannerBody p {
  font-size: 1.8rem; font-weight: bold; line-height: 1.6;
}
.recruitBannerGreen .bannerArrow {
  width: 40px; height: 40px; flex-shrink: 0;
  background-color: rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.recruitBannerGreen .bannerArrow::after {
  content: ""; display: block;
  width: 10px; height: 10px;
  border-top: 2px solid #fff; border-right: 2px solid #fff;
  transform: rotate(45deg); margin-left: -3px;
}

/* Section title green */
.recruitSectionTitle {
  text-align: center; margin-bottom: 50px;
}
.recruitSectionTitle h3 {
  font-size: 2.6rem; font-weight: bold; color: #2e8b3a;
  line-height: 1.6; margin-bottom: 15px;
}
.recruitSectionTitle .titleBar {
  width: 50px; height: 4px;
  background-color: #1a1a2e; margin: 0 auto;
}

/* Point Cards - matches reference yellow cards */
.pointGridCustom {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-bottom: 25px;
}
.pointGridCustom.row2 {
  grid-template-columns: repeat(2, 1fr);
  max-width: 680px;
  margin-left: auto; margin-right: auto;
}
.pointCardCustom {
  background-color: #fffde6;
  border: 1px solid #e8e0b0;
  border-radius: 0;
  padding: 0;
  text-align: center;
}
.pointCardCustom .pointHeader {
  padding: 20px 15px 10px;
}
.pointCardCustom .pointLabel {
  font-family: 'Poppins', sans-serif;
  font-size: 1.1rem; font-weight: 700;
  letter-spacing: 0.1em;
  border: 2px solid #333; display: inline-block;
  padding: 2px 12px; margin-bottom: 8px;
}
.pointCardCustom .pointNumber {
  font-family: 'Poppins', sans-serif;
  font-size: 2.8rem; font-weight: 700;
  display: inline; margin-left: 2px;
}
.pointCardCustom .pointTitle {
  font-size: 1.7rem; font-weight: bold;
  color: #d42a2a; margin: 8px 0 3px;
  line-height: 1.4;
}
.pointCardCustom .pointSub {
  font-size: 1.2rem; color: #666;
}
.pointCardCustom .pointContent {
  display: flex; align-items: flex-start;
  padding: 15px; gap: 12px; text-align: left;
}
.pointCardCustom .pointImg {
  width: 120px; height: 90px; flex-shrink: 0;
  background-color: #ddd; border-radius: 4px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; color: #999; overflow: hidden;
}
.pointCardCustom .pointImg img { width: 100%; height: 100%; object-fit: cover; }
.pointCardCustom .pointText {
  font-size: 1.4rem; line-height: 1.8; flex: 1;
}
.pointCardCustom .pointText .highlight {
  color: #d42a2a; font-weight: bold;
}

/* Apply section */
.applyBox {
  background-color: #0d1b2a;
  padding: 60px 30px;
  text-align: center;
  color: #fff;
  margin-top: 60px;
  border-radius: 8px;
}
.applyBox h3 {
  font-size: 2.4rem; font-weight: bold; margin-bottom: 15px;
}
.applyBox p { font-size: 1.5rem; margin-bottom: 30px; color: rgba(255,255,255,0.8); }
.applyBtns {
  display: flex; gap: 20px;
  justify-content: center; flex-wrap: wrap;
}
.applyBtns a {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 280px; height: 60px;
  font-size: 1.8rem; font-weight: bold;
  border-radius: 50px; color: #fff;
  transition: opacity 0.3s;
}
.applyBtns a:hover { opacity: 0.8; color: #fff; }
.applyBtns .btnTel { background-color: #2e8b3a; }
.applyBtns .btnMail { background-color: #c9a84c; }

/* ========================================
   CONTACT PAGE - Reference Design Match
======================================== */
.contactIntro {
  margin-bottom: 40px; line-height: 2.0; font-size: 1.5rem;
}
.contactIntro .telHighlight {
  font-weight: bold;
}

/* Table-style form layout */
.formTable {
  width: 100%; border-collapse: collapse;
  border-top: 1px solid #ccc;
}
.formTable .formRow {
  display: flex; border-bottom: 1px solid #ccc;
}
.formTable .formLabel {
  width: 240px; flex-shrink: 0;
  padding: 18px 20px;
  background-color: #f8f8f8;
  font-size: 1.4rem; font-weight: 500;
  display: flex; align-items: center; gap: 8px;
  border-right: 1px solid #ccc;
}
.formTable .formLabel .req {
  display: inline-block;
  background-color: #d42a2a; color: #fff;
  font-size: 1.1rem; padding: 2px 8px;
  border-radius: 3px; font-weight: bold;
  line-height: 1.4;
}
.formTable .formLabel .opt {
  display: inline-block;
  background-color: #999; color: #fff;
  font-size: 1.1rem; padding: 2px 8px;
  border-radius: 3px;
}
.formTable .formField {
  flex: 1; padding: 12px 20px;
  display: flex; align-items: center; gap: 8px;
}
.formTable .formField input[type="text"],
.formTable .formField input[type="email"],
.formTable .formField input[type="tel"],
.formTable .formField textarea,
.formTable .formField select {
  width: 100%; padding: 10px 12px;
  border: 1px solid #ccc; border-radius: 3px;
  font-size: 1.5rem; font-family: inherit;
  background-color: #fff;
}
.formTable .formField textarea { min-height: 120px; resize: vertical; }
.formTable .formField select { max-width: 250px; }
.formTable .formField .telGroup {
  display: flex; align-items: center; gap: 5px;
}
.formTable .formField .telGroup input {
  width: 100px; text-align: center;
}
.formTable .formField .telGroup span { font-size: 1.6rem; }
.formTable .formRow.highlight .formLabel {
  background-color: #f0ede0;
}

.formSubmitCenter {
  text-align: center; margin-top: 40px;
}
.formSubmitCenter button {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 300px; height: 60px;
  background-color: #c9a84c; color: #fff;
  border: none; border-radius: 50px;
  font-size: 1.8rem; font-weight: bold;
  cursor: pointer; transition: opacity 0.3s;
  font-family: inherit;
}
.formSubmitCenter button:hover { opacity: 0.8; }

/* ========================================
   SERVICES PAGE - Grid cards
======================================== */
.serviceOverviewGrid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px; margin-top: 40px; margin-bottom: 60px;
}
.serviceOverviewCard {
  background: #fff; border: 1px solid #e0e0e0;
  border-radius: 8px; padding: 30px 15px;
  text-align: center; transition: all 0.3s ease;
}
.serviceOverviewCard:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}
.serviceOverviewCard .soIcon {
  width: 70px; height: 70px; margin: 0 auto 15px;
  background: linear-gradient(135deg, #0d1b2a, #1b3a5c);
  border-radius: 50%; display: flex;
  align-items: center; justify-content: center;
  color: #fff; font-family: 'Poppins', sans-serif;
  font-size: 1.6rem; font-weight: 700;
}
.serviceOverviewCard h3 {
  font-size: 1.6rem; font-weight: bold;
  margin-bottom: 8px;
}
.serviceOverviewCard p {
  font-size: 1.3rem; line-height: 1.7; color: #666;
}

/* Service detail alternating layout */
.serviceDetailSection {
  padding: 50px 0;
  border-bottom: 1px solid #e0e0e0;
}
.serviceDetailSection:last-child { border-bottom: none; }
.serviceDetailFlex {
  display: flex; gap: 40px; align-items: center;
}
.serviceDetailFlex.reverse { flex-direction: row-reverse; }
.serviceDetailFlex .sdImage {
  width: 45%; flex-shrink: 0;
  background-color: #eee; border-radius: 8px;
  min-height: 250px;
  display: flex; align-items: center; justify-content: center;
  color: #999; font-size: 1.4rem;
  overflow: hidden;
}
.serviceDetailFlex .sdText { flex: 1; }
.serviceDetailFlex .sdText .sdNum {
  font-family: 'Poppins', sans-serif;
  font-size: 1.2rem; font-weight: 700;
  color: #c9a84c; letter-spacing: 0.1em;
  margin-bottom: 8px;
}
.serviceDetailFlex .sdText h3 {
  font-size: 2.2rem; font-weight: bold;
  margin-bottom: 15px; line-height: 1.4;
}
.serviceDetailFlex .sdText p {
  font-size: 1.5rem; line-height: 2.0; color: #444;
}

/* Company page improvements */
.presidentSection { margin-bottom: 60px; }
.companyTableSection { margin-top: 40px; }

/* Company Excerpt Grid (Index Page) */
.companyExcerptGrid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 30px;
}
.companyExcerptCard {
  background: #f8f8f8;
  padding: 25px;
  border-radius: 8px;
  border-left: 4px solid var(--color-accent);
}
.companyExcerptCard .ceLabel {
  font-size: 1.2rem;
  color: #999;
  font-weight: 600;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
  font-family: var(--font-poppins);
}
.companyExcerptCard .ceValue {
  font-size: 1.8rem;
  font-weight: bold;
  color: var(--color-text);
  line-height: 1.4;
}

/* ============================================================
   RESPONSIVE: max-width 896px
   ============================================================ */
@media screen and (max-width: 896px) {

  /* Utility */
  .pc {
    display: none !important;
  }

  .sp {
    display: block !important;
  }

  /* Content */
  .content {
    margin: 0 20px;
    padding: 0;
  }

  .contentWide {
    margin: 0 15px;
    padding: 0;
  }

  /* Section */
  .section {
    padding: 60px 0;
  }

  .sectionGray {
    padding: 60px 0;
  }

  .sectionNavy {
    padding: 60px 0;
  }

  /* Headings */
  .headLine01 {
    font-size: 2.2rem;
    margin-bottom: 35px;
  }

  .headLine01::before,
  .headLine01::after {
    margin: 0 10px;
  }

  .headLine01 .en {
    font-size: 1.1rem;
  }

  .headLine02 {
    font-size: 2.0rem;
    margin-bottom: 20px;
  }

  .headLine03 {
    font-size: 1.8rem;
    margin-bottom: 15px;
  }

  .headLine04 {
    font-size: 1.6rem;
  }

  /* Buttons */
  .comBtn a {
    width: 250px;
    height: 46px;
    font-size: 1.3rem;
  }

  .comBtn02 a {
    max-width: 100%;
    height: 60px;
    font-size: 1.6rem;
  }

  .comBtnOutline a {
    width: 250px;
    height: 46px;
  }

  .comBtnWhite a {
    width: 250px;
    height: 46px;
  }

  /* Margin */
  .mt80 { margin-top: 50px !important; }
  .mt60 { margin-top: 40px !important; }

  /* ----------------------------------------
     Header Mobile
  ---------------------------------------- */
  #gHeader .hBox {
    padding: 0 15px;
    height: 60px;
  }

  #gHeader .logo h1 img {
    height: 30px;
  }

  /* Mobile logo sizing */
  .logoMark svg {
    width: 24px;
    height: 24px;
  }
  .logoMark > span {
    font-size: 1.7rem;
    letter-spacing: 0.08em;
  }
  .logoMark {
    gap: 7px;
  }

  /* Mobile: always show black logo (header has bg) */
  #gHeader .logo .white { display: none !important; }
  #gHeader .logo .black { display: inline-flex !important; }

  #gNavi {
    display: none;
  }

  .menu {
    display: flex;
    flex-direction: column;
  }

  /* ----------------------------------------
     Hero Mobile
  ---------------------------------------- */
  .mainVisual {
    min-height: 500px;
  }

  .mainVisual h2 {
    font-size: 3.7rem;
    letter-spacing: 0.06em;
  }

  .mainVisual .heroSubtext {
    font-size: 1.4rem;
    margin-top: 15px;
  }

  .mainVisual .heroScroll {
    bottom: 20px;
  }

  /* Sub Visual Mobile */
  .subVisual {
    height: 200px;
  }

  .subVisual h2 {
    font-size: 2.4rem;
  }

  .subVisual .subVisualEn {
    font-size: 1.1rem;
  }

  /* Breadcrumb Mobile */
  .breadcrumb ul {
    padding: 0 15px;
  }

  .breadcrumb ul li {
    font-size: 1.1rem;
  }

  /* ----------------------------------------
     Philosophy Mobile
  ---------------------------------------- */
  .philosophyBox {
    padding: 60px 0;
  }

  .philosophyBox h2 {
    font-size: 2.2rem;
    margin-bottom: 30px;
  }

  .philosophyBox .philosophyText {
    font-size: 1.4rem;
    line-height: 2.0;
    text-align: left;
  }

  .philosophyBox .philosophyQuote {
    padding: 25px 15px;
    margin-top: 30px;
  }

  .philosophyBox .philosophyQuote::before {
    font-size: 4rem;
  }

  .philosophyBox .philosophyQuote p {
    font-size: 1.6rem;
  }

  /* ----------------------------------------
     Services Mobile
  ---------------------------------------- */
  .servicesBox .servicesList {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-top: 30px;
  }

  .servicesBox .serviceCard {
    padding: 25px 15px 20px;
  }

  .servicesBox .serviceIcon {
    width: 60px;
    height: 60px;
    margin-bottom: 15px;
  }

  .servicesBox .serviceIcon img {
    width: 30px;
    height: 30px;
  }

  .servicesBox .serviceCard h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
  }

  .servicesBox .serviceCard p {
    font-size: 1.3rem;
  }

  /* Service Detail Mobile */
  .serviceDetailBox .serviceDetailItem {
    flex-direction: column;
    gap: 20px;
    padding: 30px 0;
  }

  .serviceDetailBox .serviceDetailItem .detailImg {
    width: 100%;
  }

  .serviceDetailBox .serviceDetailItem .detailText h3 {
    font-size: 1.8rem;
  }

  .serviceDetailBox .serviceDetailItem .detailText p {
    font-size: 1.4rem;
  }

  /* ----------------------------------------
     Recruitment Mobile
  ---------------------------------------- */
  .recruitmentBox .recruitBanner {
    padding: 35px 20px;
    border-radius: 8px;
  }

  .recruitmentBox .recruitBanner h3 {
    font-size: 2.0rem;
  }

  .recruitmentBox .recruitBanner p {
    font-size: 1.4rem;
  }

  .recruitmentBox .pointList {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-top: 30px;
  }

  .recruitmentBox .pointCard .pointImg {
    height: 150px;
  }

  .recruitmentBox .pointCard .pointBody {
    padding: 20px 15px;
  }

  .recruitmentBox .pointCard h4 {
    font-size: 1.5rem;
  }

  .recruitmentBox .pointCard p {
    font-size: 1.3rem;
  }

  /* ----------------------------------------
     Company Mobile
  ---------------------------------------- */
  .presidentMessage {
    flex-direction: column;
    gap: 25px;
    margin-bottom: 40px;
  }

  .presidentMessage .presImg {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
  }

  .presidentMessage .presText h3 {
    font-size: 2.0rem;
    margin-bottom: 20px;
  }

  .presidentMessage .presText p {
    font-size: 1.4rem;
  }

  /* Company Info Table Mobile */
  .companyInfo dl {
    display: block;
  }

  .companyInfo dt {
    width: 100%;
    padding: 12px 15px;
    border-right: none;
    border-bottom: none;
    float: none;
    display: block;
  }

  .companyInfo dd {
    padding: 12px 15px;
    margin-left: 0;
  }

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

  /* Office Map Mobile */
  .officeMap iframe {
    height: 280px;
  }

  /* History Mobile */
  .historyBox .historyItem {
    padding-left: 20px;
  }

  /* ----------------------------------------
     Contact Mobile
  ---------------------------------------- */
  .contactBox .contactLead {
    font-size: 1.4rem;
    margin-bottom: 35px;
    text-align: left;
  }

  .contactBox .contactTel .telNumber {
    font-size: 2.8rem;
  }

  .contactBox .formGroup label {
    font-size: 1.4rem;
  }

  .contactBox input[type="text"],
  .contactBox input[type="email"],
  .contactBox input[type="tel"],
  .contactBox textarea,
  .contactBox select {
    padding: 10px 12px;
    font-size: 1.6rem;
  }

  .contactBox textarea {
    height: 160px;
  }

  .contactBox .radioGroup {
    flex-direction: column;
    gap: 10px;
  }

  .contactBox .checkboxGroup {
    flex-direction: column;
    gap: 8px;
  }

  .contactBox .submitBtn button,
  .contactBox .submitBtn input[type="submit"] {
    width: 100%;
    max-width: 300px;
    padding: 15px 40px;
  }

  /* Service Area Mobile */
  .serviceArea .areaList {
    justify-content: flex-start;
    gap: 8px 10px;
  }

  .serviceArea .areaList li {
    font-size: 1.3rem;
    padding: 6px 12px 6px 22px;
  }

  /* ----------------------------------------
     News Mobile
  ---------------------------------------- */
  .newsBox .newsList li a {
    flex-wrap: wrap;
    padding: 15px 0;
  }

  .newsBox .newsList .newsDate {
    width: auto;
    margin-right: 10px;
    font-size: 1.2rem;
  }

  .newsBox .newsList .newsCategory {
    font-size: 1.0rem;
    padding: 2px 8px;
    min-width: 60px;
    margin-right: 0;
  }

  .newsBox .newsList .newsTtl {
    width: 100%;
    margin-top: 8px;
    font-size: 1.4rem;
  }

  /* ----------------------------------------
     Footer Mobile
  ---------------------------------------- */
  #gFooter .fBox {
    padding: 40px 20px 30px;
  }

  #gFooter .fLogo {
    text-align: center;
    margin-bottom: 30px;
  }

  .fNavi {
    display: none;
  }

  .fNavi02 {
    display: none;
  }

  .fNavi03 {
    display: block;
  }

  .copyright {
    font-size: 1.0rem;
    padding: 20px 15px;
  }

  /* Page Top Mobile */
  .pageTop {
    bottom: 20px;
    right: 15px;
  }

  .pageTop a {
    width: 44px;
    height: 44px;
  }

  /* ----------------------------------------
     Slider Mobile
  ---------------------------------------- */
  .comRelated {
    padding: 60px 0;
  }

  .comRelated .bannerUl li {
    width: 250px;
  }

  .comRelated .bannerUl li .bannerImg {
    height: 140px;
  }

  .comRelated .slick-prev {
    left: 5px;
  }

  .comRelated .slick-next {
    right: 5px;
  }

  /* ----------------------------------------
     Strength Mobile
  ---------------------------------------- */
  .strengthBox .strengthList {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 30px;
  }

  .strengthBox .strengthItem {
    padding: 25px 20px;
  }

  .strengthBox .strengthItem .strengthNum {
    font-size: 3.2rem;
  }

  .strengthBox .strengthItem h3 {
    font-size: 1.6rem;
  }

  /* ----------------------------------------
     CTA Mobile
  ---------------------------------------- */
  .ctaSection {
    padding: 60px 0;
  }

  .ctaSection h2 {
    font-size: 2.0rem;
  }

  .ctaSection p {
    font-size: 1.4rem;
  }

  .ctaSection .ctaBtns {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }

  /* ----------------------------------------
     FAQ Mobile
  ---------------------------------------- */
  .faqBox .faqItem .faqQ p {
    font-size: 1.5rem;
  }

  .faqBox .faqItem .faqA {
    padding-left: 0;
  }

  .faqBox .faqItem .faqA::before {
    margin-left: 0;
    float: none;
    margin-bottom: 10px;
  }

  .faqBox .faqItem .faqA p {
    font-size: 1.4rem;
  }

  /* ----------------------------------------
     Number Counter Mobile
  ---------------------------------------- */
  .numberBox {
    padding: 60px 0;
  }

  .numberBox .numberList {
    gap: 30px 40px;
  }

  .numberBox .numberItem .numValue {
    font-size: 3.6rem;
  }

  .numberBox .numberItem .numValue .numUnit {
    font-size: 1.6rem;
  }

  /* ----------------------------------------
     Gallery Mobile
  ---------------------------------------- */
  .galleryBox .galleryGrid {
    grid-template-columns: repeat(2, 1fr);
    gap: 5px;
  }

  /* ----------------------------------------
     Flow Mobile
  ---------------------------------------- */
  .flowBox .flowItem {
    gap: 15px;
    padding: 20px 0;
  }

  .flowBox .flowItem .flowNum {
    width: 40px;
    height: 40px;
    font-size: 1.5rem;
  }

  .flowBox .flowItem:not(:last-child)::after {
    left: 19px;
  }

  .flowBox .flowItem .flowContent h3 {
    font-size: 1.6rem;
  }

  .flowBox .flowItem .flowContent p {
    font-size: 1.3rem;
  }

  /* ----------------------------------------
     Pagination Mobile
  ---------------------------------------- */
  .pagination {
    gap: 3px;
    margin-top: 35px;
  }

  .pagination a,
  .pagination span {
    width: 36px;
    height: 36px;
    font-size: 1.3rem;
  }

  /* ----------------------------------------
     Privacy Mobile
  ---------------------------------------- */
  .privacyBox .privacyContent h3 {
    font-size: 1.6rem;
    margin-top: 30px;
  }

  .privacyBox .privacyContent p {
    font-size: 1.4rem;
  }

  .privacyBox .privacyContent ul li {
    font-size: 1.4rem;
  }

  /* Recruitment mobile */
  .recruitBannerGreen { flex-direction: column; text-align: center; padding: 20px; }
  .recruitBannerGreen .bannerBody p { font-size: 1.5rem; }
  .pointGridCustom { grid-template-columns: 1fr; }
  .pointGridCustom.row2 { grid-template-columns: 1fr; max-width: 100%; }
  .recruitSectionTitle h3 { font-size: 2.0rem; }
  .applyBtns { flex-direction: column; align-items: center; }
  .applyBtns a { min-width: 260px; font-size: 1.6rem; }

  /* Contact mobile */
  .formTable .formRow { flex-direction: column; }
  .formTable .formLabel {
    width: 100%; border-right: none; border-bottom: none;
    padding: 12px 15px;
  }
  .formTable .formField { padding: 10px 15px; }
  .formTable .formField .telGroup input { width: 80px; }

  /* Services mobile */
  .serviceOverviewGrid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .serviceOverviewCard { padding: 20px 10px; }
  .serviceOverviewCard .soIcon { width: 55px; height: 55px; font-size: 1.3rem; }
  .serviceOverviewCard h3 { font-size: 1.4rem; }
  .serviceDetailFlex { flex-direction: column; gap: 20px; }
  .serviceDetailFlex.reverse { flex-direction: column; }
  .serviceDetailFlex .sdImage { width: 100%; min-height: 200px; }
  .serviceDetailFlex .sdText h3 { font-size: 1.8rem; }
}

/* ============================================================
   Very Small Screens (max-width: 480px)
   ============================================================ */
@media screen and (max-width: 480px) {

  /* Very small logo */
  .logoMark svg {
    width: 20px;
    height: 20px;
  }
  .logoMark > span {
    font-size: 1.5rem;
    letter-spacing: 0.06em;
  }
  .logoMark {
    gap: 6px;
  }

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

  .mainVisual .heroSubtext {
    font-size: 1.3rem;
  }

  .headLine01 {
    font-size: 2.0rem;
  }

  .headLine01::before,
  .headLine01::after {
    margin: 0 8px;
  }

  .servicesBox .servicesList {
    grid-template-columns: 1fr;
  }

  .recruitmentBox .pointList {
    grid-template-columns: 1fr;
  }

  .numberBox .numberList {
    flex-direction: column;
    align-items: center;
    gap: 25px;
  }

  .philosophyBox h2 {
    font-size: 1.9rem;
  }

  .recruitmentBox .recruitBanner h3 {
    font-size: 1.8rem;
  }

  .subVisual h2 {
    font-size: 2.0rem;
  }
}

/* ============================================================
   Print Styles
   ============================================================ */
@media print {

  .loadingBox,
  #gHeader,
  .menuBox,
  .pageTop,
  .mainVisual .heroScroll {
    display: none !important;
  }

  body {
    font-size: 12pt;
    color: #000000;
    background: #ffffff;
  }

  .content {
    max-width: 100%;
  }

  a {
    color: #000000;
    text-decoration: underline;
  }

  .mainVisual {
    height: auto;
    min-height: 0;
    padding: 40px 20px;
  }

  .mainVisual .videoBox {
    display: none;
  }

  .mainVisual .heroOverlay {
    display: none;
  }

  .mainVisual h2 {
    color: #000000;
    font-size: 24pt;
    text-shadow: none;
  }

  .section,
  .sectionGray,
  .sectionNavy {
    padding: 30px 0;
    background: #ffffff !important;
    color: #000000 !important;
  }

  .fadeInUp,
  .fadeInLeft,
  .fadeInRight,
  .fadeIn {
    opacity: 1 !important;
    transform: none !important;
  }
}
