/*
Theme Name: NYK Bulkship Partners
Theme URI: https://nyk-bulkship.com
Author: NYK Bulkship Partners
Description: NYK Bulkship Partners株式会社 コーポレートサイト
Version: 1.0.3
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: nyk-site
*/

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500&family=Zen+Kaku+Gothic+New:wght@400;500&display=swap');

/* ========================================
   CSS Variables
   ======================================== */
:root {
  --primary-color: #000e50;
  --background-light: #f1f1f1;
  --gray-border: #ddd;
  --white: #fff;
  --black: #000;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Zen Kaku Gothic New", sans-serif;
  color: #000;
  background-color: #fff;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: inherit;
  text-decoration: none;
}

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

/* ========================================
   Typography
   ======================================== */
.font-gothic {
  font-family: "Zen Kaku Gothic New", sans-serif;
}

.font-inter {
  font-family: "Inter", sans-serif;
}

/* ========================================
   Layout Utilities
   ======================================== */
.max-w-1440 {
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
}

.max-w-1100 {
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

.max-w-790 {
  max-width: 790px;
  margin-left: auto;
  margin-right: auto;
}

.max-w-500 {
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

/* ========================================
   Header Styles
   ======================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background-color: #fff;
  transition: background-color 0.3s ease;
}

.site-header.is-top-page {
  background-color: transparent;
}

.site-header.is-top-page.is-scrolled {
  background-color: #fff;
}

.header-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 5.333vw; /* 20px at 375px */
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-header:has(.mobile-menu.active) {
  background-color: #fff !important;
}

.header-logo img {
  width: 66.666vw; /* 250px at 375px */
  height: auto;
  margin-top: 0;
}

@media (min-width: 768px) {
  .header-inner {
    padding: 0 40px;
    height: 100px;
  }
  .header-logo {
    flex: 1;
    min-width: 0;
  }
  .header-logo img {
    max-height: 32px;
    width: auto;
    max-width: 100%;
    height: auto;
    margin-top: 6px;
  }
}

.header-nav {
  display: none;
  align-items: center;
  gap: 35px;
}

@media (min-width: 768px) {
  .header-nav {
    display: flex;
    margin-right: 4px;
    flex-shrink: 0;
  }
}

.header-nav a {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #000;
  letter-spacing: 0.03em;
  transition: color 0.3s ease;
}

.header-nav a:hover {
  color: var(--primary-color);
}

/* Header Dropdown Menu */
.header-nav-dropdown {
  position: relative;
}

.header-nav-dropdown-trigger {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #000;
  letter-spacing: 0.03em;
  cursor: pointer;
  transition: color 0.3s ease;
}

.header-nav-dropdown:hover .header-nav-dropdown-trigger {
  color: var(--primary-color);
}

.header-nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  margin-top: 15px;
  background-color: #fff;
  border-radius: 5px;
  box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.19);
  padding: 12px 20px 16px;
  width: 100px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.header-nav-dropdown:hover .header-nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
}

.header-nav-dropdown-menu a {
  display: block;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 160%;
  color: #000;
  white-space: nowrap;
  transition: color 0.3s ease;
}

.header-nav-dropdown-menu a:hover {
  color: var(--primary-color);
}

.header-nav-dropdown-divider {
  height: 1px;
  background-color: #DDD;
  margin: 12px 0;
}

.lang-switcher {
  display: flex;
  align-items: center;
  background-color: #fff;
  border-radius: 9999px;
  padding: 4px;
}

.lang-btn {
  font-family: "Inter", sans-serif;
  font-size: 12px;
  padding: 4px 12px;
  border-radius: 9999px;
}

.lang-btn.active {
  background-color: var(--primary-color);
  width: 45px;
  color: #fff;
}

.lang-btn:not(.active) {
  background-color: #fff;
  color: #000;
}

/* Mobile Menu Button */
.mobile-menu-btn {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 24px;
  height: 24px;
  padding: 0;
  position: relative;
  z-index: 60;
}

@media (min-width: 768px) {
  .mobile-menu-btn {
    display: none;
  }
}

.mobile-menu-btn span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--primary-color);
  transition: all 0.3s ease;
}

/* Transform to X */
.mobile-menu-btn[aria-expanded="true"] span:first-child {
  transform: translateY(4px) rotate(45deg);
}

.mobile-menu-btn[aria-expanded="true"] span:last-child {
  transform: translateY(-4px) rotate(-45deg);
}

/* Mobile Menu Overlay Redesign */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  top: 60px;
  background-color: var(--primary-color);
  z-index: 40;
  overflow-y: auto;
}

.mobile-menu.active {
  display: block;
}

.mobile-menu-nav {
  display: flex;
  flex-direction: column;
  padding: 0 20px;
}

.mobile-menu-nav a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.03em;
  text-decoration: none;
}

.mobile-menu-nav a span {
  flex: 1;
}

/* Mobile Menu Dropdown */
.mobile-menu-dropdown {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.mobile-menu-dropdown-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 24px 0;
  background: none;
  border: none;
  color: #fff;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.03em;
  cursor: pointer;
}

.mobile-menu-dropdown-trigger span {
  flex: 1;
  text-align: left;
}

.mobile-menu-dropdown-content {
  display: none;
  flex-direction: column;
}

.mobile-menu-dropdown-content a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0 24px 32px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.03em;
  text-decoration: none;
}

.mobile-menu-dropdown-content a:last-child {
  border-bottom: none;
}

.mobile-menu-bottom {
  margin-top: 40px;
  padding: 0 20px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.lang-switcher-sp {
  display: flex;
  align-items: center;
  background-color: #fff;
  border-radius: 9999px;
  padding: 2px;
  width: fit-content;
}

.lang-switcher-sp .lang-btn {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 500;
  padding: 6px 18px;
  border-radius: 9999px;
  transition: all 0.3s ease;
}

.lang-switcher-sp .lang-btn.active {
  background-color: var(--primary-color);
  color: #fff;
}

.lang-switcher-sp .lang-btn:not(.active) {
  background-color: transparent;
  color: var(--primary-color);
}

.privacy-link {
  color: #fff;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.03em;
  text-decoration: none;
}

/* ========================================
   Footer Styles
   ======================================== */
.site-footer {
  background-color: var(--background-light);
  padding: 14.4vw 5.333vw 40px; /* 54px top, 20px LR at 375px */
}

@media (min-width: 768px) {
  .site-footer {
    padding: 80px 170px;
  }
}

.footer-inner {
  max-width: 1440px;
  margin: 0 auto;
}

.footer-desktop {
  display: none;
}

@media (min-width: 768px) {
  .footer-desktop {
    display: block;
  }
}

.footer-desktop-content {
  display: flex;
  justify-content: space-between;
  gap: 40px;
}

.footer-info {
  display: flex;
  flex-direction: column;
}

.footer-info .footer-logo {
  margin-bottom: 20px;
}

.footer-info p {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #000;
  margin: 0;
}

.footer-company-name {
  font-weight: 500;
}

.footer-info .footer-address {
  font-family: "Inter", "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-size: 14px;
  margin-top: 4px;
}

.footer-address-break {
  display: none;
}

@media (min-width: 768px) and (max-width: 1100px) {
  .footer-address-break {
    display: block;
  }
}

.footer-nav-group {
  display: flex;
  gap: 90px;
  flex-shrink: 0;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-nav a {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-size: 15px;
  line-height: 1.6;
  color: #000;
  transition: color 0.3s ease;
}

.footer-nav a:hover {
  color: var(--primary-color);
}

.footer-copyright {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 12px;
  font-weight: 400;
  color: #000;
  margin-top: 0;
}

/* Mobile Footer */
.footer-mobile {
  display: block;
}

@media (min-width: 768px) {
  .footer-mobile {
    display: none;
  }
}

.footer-mobile-content {
  display: flex;
  flex-direction: column;
  gap: 27px; /* 40px gap from address to nav */
}

.footer-mobile-info {
  display: flex;
  flex-direction: column;
  gap: 0;
  text-align: left; /* Left alignment for SP */
}

.footer-mobile-info .footer-logo {
  margin-bottom: 25px; /* 30px gap to company name */
}

.footer-mobile-info .footer-logo img {
  width: 66.933vw; /* 251px at 375px */
  height: 5.866vw; /* 22px at 375px */
}

.footer-mobile-info p {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 3.733vw; /* 14px at 375px */
  line-height: 1.6; /* 160% */
  color: #000;
  margin: 0;
  font-weight: 500;
}

.footer-mobile-info .footer-company-name {
  font-weight: 500;
}

.footer-mobile-info .footer-address {
  font-family: "Inter", "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  margin-top: 1.066vw; /* 4px gap from company name */
}

.footer-mobile-nav {
  display: flex;
  flex-direction: column;
}

.footer-mobile-nav .divider {
  height: 1px;
  background-color: #ddd;
}

.footer-mobile-nav a {
  display: block;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 4vw; /* 15px at 375px */
  line-height: 1.6;
  color: #000;
  padding: 4vw 0; /* 15px padding */
  transition: color 0.3s ease;
  font-weight: 500;
}

.footer-mobile-nav a:hover {
  color: var(--primary-color);
}

.footer-mobile-copyright {
  font-family: "Inter", sans-serif;
  font-size: 3.2vw; /* 12px at 375px */
  line-height: 1.6;
  color: #000;
  text-align: left;
}

/* ========================================
   Utilities
   ======================================== */
.sp-only {
  display: block;
}

.pc-only {
  display: none;
}

.lg-only {
  display: none;
}

@media (min-width: 768px) {
  .sp-only {
    display: none;
  }
  .pc-only {
    display: block;
  }
  .lg-only {
    display: block;
  }
}

/* ========================================
   Hero Section
   ======================================== */
.hero-section {
  position: relative;
  padding-top: 0px;
  background-color: #fff;
  overflow: hidden;
}

.hero-slideshow {
  position: relative;
  width: 100%;
  height: 599px;
}

@media (min-width: 768px) {
  .hero-slideshow {
    height: 767px;
  }
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.hero-slide.active {
  opacity: 1;
}

.hero-slide picture,
.hero-slide img {
  width: 100%;
  height: 100%;
  display: block;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-text {
  position: absolute;
  left: 5.333vw; /* 20px at 375px */
  top: 179px; /* 60px header + 90px gap */
  z-index: 20;
}

@media (min-width: 768px) {
  .hero-text {
    left: 0;
    right: 0;
    top: 336px;
    max-width: 1440px;
    margin: 0 auto;
    padding-left: 170px;
  }
}

.hero-text p {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 5.333vw; /* 20px at 375px */
  line-height: 1.7;
  letter-spacing: 0.1em;
  color: #000;
  margin: 0;
  font-weight: 500;
  font-style: normal;
  text-align: left;
}

@media (min-width: 768px) {
  .hero-text p {
    font-size: 26px;
    line-height: 42px;
    letter-spacing: 2.6px;
  }
}



.hero-dots {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 25px;
}

.hero-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #d1d5db;
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.hero-dot:hover {
  background-color: #9ca3af;
}

.hero-dot.active {
  background-color: var(--primary-color);
}

/* ========================================
   Page Hero Section
   ======================================== */
.page-hero {
  position: relative;
  background-color: var(--primary-color);
  padding-top: 0px;
}

.page-hero-inner {
  height: auto; /* Height defined by margins on SP */
  display: flex;
  align-items: center;
}

@media (min-width: 768px) {
  .page-hero-inner {
    height: 400px; /* 100px header + 300px content area */
    padding-top: 100px;
    box-sizing: border-box;
  }
}

.page-hero-content {
  max-width: 1100px;
  margin: 140px 20px 60px; /* 62px top, 20px LR, 61px bottom at 375px */
  width: auto;
}

@media (min-width: 768px) {
  .page-hero-content {
    margin: 0 auto 0 170px;
    padding: 0;
    width: calc(100% - 170px);
    max-width: 1100px;
  }
}

.page-hero-titles {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.page-hero h1 {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-size: 28px;
  line-height: 1.2;
  letter-spacing: 0.03em;
  color: #fff;
  margin: 0;
}

@media (min-width: 768px) {
  .page-hero h1 {
    font-size: 40px;
    line-height: 40px;
  }
}

.page-hero-subtitle {
  font-family: "Inter", sans-serif;
  font-size: 15px;
  line-height: 1.6;
  color: #fff;
  margin: 0;
}

@media (min-width: 768px) {
  .page-hero-subtitle {
    font-size: 16px;
    line-height: 32px;
  }
}

.page-hero-line {
  width: 40px;
  height: 2px;
  background-color: #fff;
  margin-top: 18px;
}

/* ========================================
   Breadcrumb
   ======================================== */
.breadcrumb-wrapper {
  padding-top: 10px;
}

@media (min-width: 768px) {
  .breadcrumb-wrapper {
    padding-top: 15px;
    padding-left: 40px;
    padding-right: 40px;
  }
}

@media (min-width: 1440px) {
  .breadcrumb-wrapper {
    padding-left: 0;
    padding-right: 0;
  }
}

.breadcrumb {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

@media (min-width: 768px) {
  .breadcrumb {
    padding: 0;
  }
}

.breadcrumb ul {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 13px;
  line-height: 1.8;
  color: #666;
  list-style: none;
  margin: 0;
  padding: 0;
}

.breadcrumb li {
  display: flex;
  align-items: center;
  gap: 10px;
}

.breadcrumb a {
  text-decoration: underline;
  transition: color 0.3s ease;
}

.breadcrumb a:hover {
  color: var(--primary-color);
}

/* Single News Breadcrumb Specific Styles */
.single-news-breadcrumb ul {
  display: flex;
  align-items: flex-start;
  flex-wrap: nowrap;
  gap: 0;
}

.breadcrumb-fixed-part {
  display: flex;
  align-items: center;
  white-space: nowrap;
  flex-shrink: 0;
  gap: 10px;
  margin-right: 10px;
}

.breadcrumb-variable-part {
  display: block;
  word-break: break-all;
  overflow-wrap: break-word;
  line-height: 1.5;
  min-width: 0; /* Flex item overflow fix */
}

@media (min-width: 768px) {
  .single-news-breadcrumb ul {
    align-items: center;
  }
}

/* ========================================
   Section Title
   ======================================== */
.section-title {
  display: flex;
  flex-direction: column;
  gap: 18px; /* 18px gap for SP */
}

@media (min-width: 768px) {
  .section-title {
    gap: 25px;
  }
}

@media (min-width: 768px) {
.section-title-text {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
}

.section-title-text {
  display: flex;
  flex-direction: column;
}

.section-title h2 {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 8vw; /* 30px at 375px */
  line-height: 1.2;
  color: #000;
  margin: 0;
  font-style: normal;
}

@media (min-width: 768px) {
  .section-title h2 {
    font-size: 34px;
    line-height: 40px;
  }
}

.section-title p {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 3.733vw; /* 14px at 375px */
  line-height: 2.285; /* 32px/14px */
  letter-spacing: 0.03em;
  color: #000;
  margin: -7px 0 0;
  font-weight: 500;
  font-style: normal;
}

@media (min-width: 768px) {
  .section-title p {
    font-size: 15px;
    line-height: 16px;
    letter-spacing: 0.45px;
  }
}



.section-title-line {
  width: 40px;
  height: 2px;
  background-color: var(--primary-color);
}

/* ========================================
   About Section
   ======================================== */
.about-section {
  position: relative;
  background-color: #fff;
}

@media (max-width: 767px) {
  .about-bg {
    display: none;
  }
}

.about-bg {
  display: none;
}

.about-inner {
  position: relative;
  z-index: 10;
  padding: 54px 20px 77px; /* 57px top, 20px left/right at 375px */
  max-width: 1440px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .about-inner {
    padding: 71px 170px 86px;
  }
}

.about-content {
  display: flex;
  flex-direction: column;
}

@media (min-width: 768px) {
  .about-content {
    flex-direction: row;
    gap: 96px;
  }

  .about-content .section-title {
    flex-shrink: 0;
  }
}

.about-text {
  display: flex;
  flex-direction: column;
  max-width: 860px;
}

.about-lead {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 5.066vw; /* 19px at 375px */
  line-height: 1.7;
  letter-spacing: 0.03em;
  color: #000;
  font-weight: 500;
  font-style: normal;
  margin-top: 10.4vw; /* 39px at 375px */
}

@media (min-width: 768px) {
  .about-lead {
    font-size: 22px;
    line-height: 34px;
    letter-spacing: 0.66px;
    margin-top: 0;
  }
}

.about-lead p {
  margin: 0;
}

.about-desc {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 4vw; /* 15px at 375px */
  line-height: 1.866; /* 28px/15px */
  letter-spacing: 0.03em;
  color: #000;
  font-style: normal;
  margin-top: 8vw; /* 30px at 375px */
}

@media (min-width: 768px) {
  .about-desc {
    font-size: 15px;
    line-height: 30px;
    margin-top: 20px;
    letter-spacing: 0;
  }
}

.about-desc p {
  margin: 0;
}

.about-desc p+p {
  margin-top: 0;
}

@media (min-width: 768px) {
  .about-desc p+p {
    margin-top: 0;
  }
}

/* View More Link */
.view-more-link {
  display: flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  margin-top: 8vw; /* 30px at 375px */
  margin-left: auto; /* Right alignment for SP */
}

@media (min-width: 768px) {
  .view-more-link {
    gap: 15px;
    margin-top: 42px;
    margin-left: auto; /* Right alignment for PC as well */
  }
}

.view-more-link span.text {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 4.266vw; /* 16px at 375px */
  font-weight: 500;
  letter-spacing: 0.03em;
  color: #000;
}

@media (min-width: 768px) {
  .view-more-link span.text {
    font-size: 18px;
  }
}

.view-more-link .arrow-circle {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 2px solid var(--primary-color);
  background-color: var(--primary-color);
  /* Filled by default */
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s ease, background-color 0.3s ease;
}

@media (min-width: 768px) {
  .view-more-link .arrow-circle {
    width: 38px;
    height: 38px;
  }
}

.view-more-link:hover .arrow-circle {
  opacity: 0.8;
}

/* ========================================
   Service Section
   ======================================== */
.service-section {
  background-color: var(--primary-color);
}

.service-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 78px 20px 87px; /* 80px top, 20px LR at 375px */
}

@media (min-width: 768px) {
  .service-inner {
    padding: 120px 170px 152px;
  }
}

.service-header {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

@media (min-width: 768px) {
  .service-header {
    gap: 25px;
  }
}

.service-header h2 {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 10.666vw; /* 40px at 375px */
  line-height: 1.2;
  color: #fff;
  margin: 0;
  font-style: normal;
}

@media (min-width: 768px) {
  .service-header h2 {
    font-size: 54px;
    line-height: 60px;
  }
}

.service-header p {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 4.266vw; /* 16px at 375px */
  line-height: 1; /* 16px row */
  letter-spacing: 0.03em;
  color: #fff;
  margin: 0;
  font-weight: 500;
  font-style: normal;
}

@media (min-width: 768px) {
  .service-header p {
    font-size: 18px;
    line-height: 20px;
    letter-spacing: 0.54px;
  }
}

.service-header-line {
  width: 39px;
  height: 2px;
  background-color: #fff;
  margin-top: 19px;
}

@media (min-width: 768px) {
  .service-header-line {
    width: 50px;
    margin-top: 0;
  }
}

.service-lead {
  margin-top: 9.6vw; /* 36px at 375px from border */
  display: flex;
  flex-direction: column;
  gap: 15px; /* 30px at 375px */
  color: #fff;
  font-family: "Zen Kaku Gothic New", sans-serif;
}

@media (min-width: 768px) {
  .service-lead {
    margin-top: 37px;
    gap: 15px;
  }
}

.service-lead-title {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 5.066vw; /* 19px at 375px */
  line-height: 1.684; /* 32px/19px */
  letter-spacing: 0.03em;
  color: #fff;
  font-weight: 500;
  font-style: normal;
  margin: 0;
}

@media (min-width: 768px) {
  .service-lead-title {
    font-size: 22px;
    line-height: 38px;
    letter-spacing: 0.72px;
  }
}

.service-lead-desc {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 4vw; /* 15px at 375px */
  line-height: 1.866; /* 28px/15px */
  letter-spacing: 0;
  color: #fff;
  font-style: normal;
  margin: 0;
}

@media (min-width: 768px) {
  .service-lead-desc {
    font-size: 15px;
    line-height: 30px;
  }
}

/* Service Items */
.service-items {
  margin-top: 13.6vw; /* 51px at 375px */
  display: flex;
  flex-direction: column;
  gap: 13.333vw; /* 50px gap between items */
}

@media (min-width: 768px) {
  .service-items {
    margin-top: 70px;
    gap: 70px;
  }
}

.service-item {
  display: flex;
  flex-direction: column;
  gap: 0; /* Gaps handled by individual elements on SP */
}

@media (min-width: 768px) {
  .service-item {
    flex-direction: row;
    gap: 60px; /* 60px gap for PC */
    align-items: start;
  }
}

/* Zigzag layout removed as per request */

.service-item-image {
  position: relative;
  width: 100%;
  height: 223px; /* Fixed height for SP */
  overflow: hidden;
}

@media (min-width: 768px) {
  .service-item-image {
    flex: 1.7;
    max-width: 650px;
    height: auto;
    aspect-ratio: 650 / 433;
  }
}

.service-item-image-inner {
  position: relative;
  width: 100%;
  height: 100%;
}

.service-item-image img {
  width: 100%;
  height: 100%; /* Height 100% for fixed container */
  object-fit: cover;
  display: block;
}

.service-item-content {
  display: flex;
  flex-direction: column;
  color: #fff;
  font-family: "Zen Kaku Gothic New", sans-serif;
  width: 100%;
  text-align: left; /* Left alignment for SP */
}

@media (min-width: 768px) {
  .service-item-content {
    flex: 1;
    max-width: 380px;
  }
}

.service-item-number {
  font-family: "Inter", sans-serif;
  font-size: 3.733vw; /* 14px at 375px */
  line-height: 1.14; /* 16px row */
  letter-spacing: 0.06em;
  color: #fff;
  margin: 5.066vw 0 0; /* 19px top at 375px */
  font-style: normal;
}

@media (min-width: 768px) {
  .service-item-number {
    font-size: 16px;
    line-height: 20px;
    margin-top: 87px;
  }
}

.service-item-title {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 6.4vw; /* 24px at 375px */
  line-height: 1; /* 24px row */
  letter-spacing: 0.06em;
  color: #fff;
  font-weight: 500;
  font-style: normal;
  margin: 2.666vw 0 0; /* 10px top at 375px */
}

@media (min-width: 768px) {
  .service-item-title {
    font-size: 30px;
    line-height: 40px;
    margin-top: 2px;
  }
}

.service-item-desc {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 4vw; /* 15px at 375px */
  line-height: 1.8; /* 180% */
  letter-spacing: 0;
  color: #fff;
  font-style: normal;
  margin: 5.333vw 0 0; /* 20px top at 375px */
}

.service-item-desc p {
  display: inline;
  margin: 0;
}

@media (min-width: 768px) {
  .service-item-desc {
    font-size: 15px;
    line-height: 1.8;
    margin-top: 20px;
  }
  .service-item-desc p {
    display: block;
  }
}

.service-item-desc p {
  margin: 0;
}

.service-item-badge {
  display: inline-flex;
}

.service-item-badge span {
  border: 1px solid #fff;
  padding: 10px 15px;
  font-size: 15px;
}

.service-view-more {
  display: flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  text-decoration: none;
  margin: 5.333vw 0 0; /* 20px top at 375px */
}

@media (min-width: 768px) {
  .service-view-more {
    gap: 14px;
    margin-top: 33px;
  }
}

.service-view-more span.text {
  font-family: "Inter", sans-serif;
  font-size: 4.266vw; /* 16px at 375px */
  font-weight: 400; /* Regular as requested */
  line-height: 2.5; /* 40px/16px */
  letter-spacing: 0.03em;
  color: #fff;
}

@media (min-width: 768px) {
  .service-view-more span.text {
    font-size: 18px;
    line-height: 1;
  }
}

.service-view-more .arrow-circle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid #fff;
  background-color: #fff; /* White background for visibility of blue arrow */
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

@media (min-width: 768px) {
  .service-view-more .arrow-circle {
    width: 36px;
    height: 36px;
    background-color: #FFF;
  }
}

.service-view-more:hover .arrow-circle {
  background-color: rgba(255, 255, 255, 0.2);
  transform: translateX(5px);
}

/* ========================================
   News Section
   ======================================== */
.news-section {
  background-color: #F1F1F1;
}

.news-section .news-content {
  padding: 77px 20px 40px;
  max-width: 1440px;
  margin: 0 auto;
}

.news-section .section-title {
  gap: 23px; /* 23px gap for News SP */
}

.news-section .section-title p {
  margin: 0; /* No margin for News SP */
}

.news-section .section-title-text {
  gap: 5px;
}

@media (min-width: 768px) {
  .news-section .news-content {
    padding: 124px 170px 100px;
  }
}

.news-content {
  display: flex;
  flex-direction: column;
  gap: 42px;
}

@media (min-width: 768px) {
  .news-content {
    flex-direction: row;
    gap: 109px;
  }
  .news-section .section-title-text {
    gap: 9px;
  }
}

.news-list {
  display: flex;
  flex-direction: column;
  width: 100%;
}

@media (min-width: 768px) {
  .news-list {
    width: 900px;
  }
}

.news-list-border {
  border-top: 1px solid var(--gray-border);
}

.news-item {
  display: flex;
  flex-direction: column;
  padding: 19px 0 24px;
  border-bottom: 1px solid var(--gray-border);
  transition: background-color 0.3s ease;
}

@media (min-width: 768px) {
  .news-item {
    flex-direction: row;
    padding: 20px 0;
  }
}

.news-item:hover {
  background-color: #f9fafb;
}

.news-item-date {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 15px;
  line-height: 28px;
  letter-spacing: 0.03em;
  color: #000;
  width: 120px;
  flex-shrink: 0;
}

.news-item-title {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 15px;
  line-height: 28px;
  letter-spacing: 0.03em;
  color: #000;
}

/* Specific override for News heading line-height */
.news-section .section-title p {
  line-height: 1.14; /* 16px line-height for 14px font */
}

.news-view-more {
  display: flex;
  margin-top: 8vw; /* 30px at 375px */
  justify-content: flex-end; /* Right alignment for SP */
}

@media (min-width: 768px) {
  .news-view-more {
    margin-top: 48px;
  }
}

.news-view-more a {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

@media (min-width: 768px) {
  .news-view-more a {
    gap: 15px;
  }
}

.news-view-more span.text {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 4.266vw; /* 16px at 375px */
  font-weight: 500; /* Medium */
  line-height: 2.5; /* 40px/16px */
  letter-spacing: 0.03em;
  color: #000;
}

@media (min-width: 768px) {
  .news-view-more span.text {
    font-size: 20px;
    line-height: 1;
  }
}

.news-view-more .arrow-circle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid var(--primary-color);
  background-color: var(--primary-color); /* Filled blue by default for SP */
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s ease;
}

@media (min-width: 768px) {
  .news-view-more .arrow-circle {
    width: 38px;
    height: 38px;
    border-width: 2px;
  }
}

.news-view-more a:hover .arrow-circle {
  opacity: 0.8;
}

.news-view-more .arrow-circle svg path {
  stroke: #fff; /* White arrow */
}

/* ========================================
   Recruit Section
   ======================================== */
.recruit-section {
  padding: 50px 0 98px; /* 87px top at 375px */
  max-width: 1440px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .recruit-section {
    padding: 122px 0 135px;;
  }
}

/* Desktop Layout */
.recruit-desktop {
  display: none;
  padding: 0 170px;
}

@media (min-width: 768px) {
  .recruit-desktop {
    display: flex;
    align-items: center;
  }
}

.recruit-desktop-content {
  width: 464px;
  flex-shrink: 0;
}

.recruit-desktop-text {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.recruit-text-group {
  display: flex;
  flex-direction: column;
  gap: 20px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  color: #000;
  margin-top: 10px;
}

.recruit-lead {
  font-weight: 500;
  font-size: 22px;
  line-height: 38px;
  letter-spacing: 0.03em;
}

.recruit-lead p {
  margin: 0;
}

.recruit-desc {
  font-size: 15px;
  line-height: 30px;
  margin-top: 5px;
}

.recruit-desc p {
  margin: 0;
}

.recruit-view-more {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 11px;
}

.recruit-view-more span.text {
  font-family: "Inter", sans-serif;
  font-size: 18px;
  letter-spacing: 0.03em;
  color: #000;
}

.recruit-view-more .arrow-circle {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--primary-color);
}

.recruit-view-more:hover .arrow-circle {
  background-color: var(--primary-color);
}

.recruit-view-more .arrow-circle svg path {
  transition: stroke 0.3s ease;
}

.recruit-view-more:hover .arrow-circle svg path {
  stroke: #fff;
}

.recruit-images {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}

.recruit-images-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: min-content;
  gap: 0;
  max-width: 560px;
  width: 100%;
}

.recruit-image {
  position: relative;
  width: 100%;
  padding-bottom: 100%;
  overflow: hidden;
}

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

/* Mobile Layout */
.recruit-mobile {
  display: block;
  padding: 0 20px;
}

@media (min-width: 768px) {
  .recruit-mobile {
    display: none;
  }
}

.recruit-mobile-images {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  margin-bottom: 44px; /* 15px gap to heading at 375px */
}

.recruit-mobile-image {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
}

.recruit-mobile-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}


/* Specific override for Recruit heading line-height and margin-top in SP */
.recruit-mobile .section-title p {
  line-height: 1.14; /* 16px line-height for 14px font */
  margin-top: 8px;
}

.recruit-mobile-content {
  display: flex;
  flex-direction: column;
  gap: 10.666vw; /* 40px gap from border at 375px */
}

.recruit-mobile-text {
  display: flex;
  flex-direction: column;
  gap: 5.333vw; /* 20px gap between lead and desc at 375px */
  font-family: "Zen Kaku Gothic New", sans-serif;
  color: #000;
}

.recruit-mobile-lead {
  font-size: 5.066vw; /* 19px at 375px */
  line-height: 1.684; /* 32px line-height */
  letter-spacing: 0.03em;
  font-weight: 500;
}

.recruit-mobile-lead p {
  margin: 0;
}

.recruit-mobile-desc {
  font-size: 4vw; /* 15px at 375px */
  line-height: 1.866; /* 28px line-height */
  letter-spacing: 0;
  margin-bottom: 44px;
}

.recruit-mobile-desc p {
  margin: 0;
}

.recruit-mobile-view-more {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: flex-end; /* Right alignment for SP */
  text-decoration: none;
  margin-top: -55px;
}

.recruit-mobile-view-more span.text {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 4.266vw; /* 16px at 375px */
  font-weight: 500; /* Medium */
  line-height: 2.5; /* 40px/16px */
  letter-spacing: 0.03em;
  color: #000;
}

.recruit-mobile-view-more .arrow-circle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid var(--primary-color);
  background-color: var(--primary-color); /* Filled blue */
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s ease;
}

.recruit-mobile-view-more:hover .arrow-circle {
  opacity: 0.8;
}

.recruit-mobile-view-more .arrow-circle svg path {
  stroke: #fff; /* White arrow */
  transition: background-color 0.3s ease;
}

.recruit-mobile-view-more:hover .arrow-circle {
  background-color: var(--primary-color);
}

.recruit-mobile-view-more .arrow-circle svg path {
  transition: stroke 0.3s ease;
}

.recruit-mobile-view-more:hover .arrow-circle svg path {
  stroke: #fff;
}

/* ========================================
   Company Page Styles
   ======================================== */
.mvv-section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 44px 20px 0;
}

@media (min-width: 768px) {
  .mvv-section {
    padding: 84px 40px 0;
  }
}

@media (min-width: 1440px) {
  .mvv-section {
    padding: 84px 0 0;
  }
}

.mvv-items {
  display: flex;
  flex-direction: column;
  gap: 29px;
}

@media (min-width: 768px) {
  .mvv-items {
    gap: 52px;
  }
}

.mvv-item {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

@media (min-width: 768px) {
  .mvv-item {
    flex-direction: row;
    align-items: flex-start;
    gap: 0;
  }
}

.mvv-item-header {
  display: flex;
  align-items: baseline;
  gap: 17px;
}

@media (min-width: 768px) {
  .mvv-item-header {
    width: 290px;
    flex-shrink: 0;
    gap: 43px;
    align-items: flex-start;
  }
}

.mvv-item-number {
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.6;
  color: var(--primary-color);
}

@media (min-width: 768px) {
  .mvv-item-number {
    margin-top: 18px;
    font-size: 20px;
  }
}

.mvv-item-title {
  font-family: "Inter", sans-serif;
  font-size: 26px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--primary-color);
  margin-top: 2px;
  margin-bottom: 0px;
}

@media (min-width: 768px) {
  .mvv-item-title {
    font-size: 36px;
    font-weight: 400;
    margin-top: 6px;
  }
}

.mvv-item-content {
  display: flex;
  flex-direction: column;
  gap: 1px;
  margin-left: 34px;
}

@media (min-width: 768px) {
  .mvv-content-adjust {
    margin-top: 20px;
  }
}

@media (min-width: 768px) {
  .mvv-item-content {
    gap: 0;
    margin-left: 0px;
  }
}

.mvv-item-content p {
  font-size: 15px;
  line-height: 1.7;
  color: #000;
  margin: 0;
}

@media (min-width: 768px) {
  .mvv-item-content p {
    font-size: 20px;
  }
}

.mvv-item-content p.font-inter {
  font-family: "Inter", sans-serif;
}

.mvv-item-content p.font-gothic {
  font-family: "Zen Kaku Gothic New", sans-serif;
}

.mvv-divider {
  height: 1px;
  background-color: var(--gray-border);
  margin-top: 40px;
}

.mvv-divider.last {
  margin-top: 13px;
}

@media (min-width: 768px) {
  .mvv-divider {
    margin-top: 60px;
  }
  .mvv-divider.last {
    margin-top: 6px;
  }
}

/* Message Section */
.message-section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 80px 20px 0;
}

@media (min-width: 768px) {
  .message-section {
    padding: 122px 40px 0;
  }
}

@media (min-width: 1440px) {
  .message-section {
    padding: 122px 0 0;
  }
}

.message-header {
  display: flex;
  align-items: center;
  gap: 13px;
  padding-bottom: 30px;
}

@media (min-width: 768px) {
  .message-header {
    padding-bottom: 60px;
    gap: 20px;
  }
}

.message-header-line {
  width: 2px;
  height: 40px;
  background-color: var(--primary-color);
}

@media (min-width: 768px) {
  .message-header-line {
    height: 50px;
  }
}

.message-header h2 {
  font-family: "Inter", sans-serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 1;
  color: #000;
  margin: 0;
}

@media (min-width: 768px) {
  .message-header h2 {
    font-size: 40px;
    font-weight: 400;
  }
}

.message-content {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

@media (min-width: 768px) {
  .message-content {
    flex-direction: row;
    gap: 40px;
  }
}

.message-image {
  height: 312px;
  margin: 0 51px;
  background-color: #949494;
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .message-image {
    width: 300px;
    height: 400px;
    margin: 0;
  }
}

.message-text {
  display: flex;
  flex-direction: column;
  gap: 27px;
  flex: 1;
}

@media (min-width: 768px) {
  .message-text {
    gap: 23px;
  }
}

.message-body {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 15px;
  line-height: 1.9;
  color: #000;
}

@media (min-width: 768px) {
  .message-body {
    font-size: 16px;
    line-height: 30px;
    margin-top: -10px;
  }
}

.message-body p {
  margin: 0 0 0;
}

.message-body p:last-child {
  margin-bottom: 0;
}

.message-signature {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 15px;
  letter-spacing: 0.02em;
  line-height: 1.75;
  color: #000;
  text-align: right;
  margin: 0;
}

@media (min-width: 768px) {
  .message-signature {
    font-size: 16px;
  }
}

/* Company Info Section */
.company-info-section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 80px 20px 101px;
}

@media (min-width: 768px) {
  .company-info-section {
    padding: 89px 40px 154px;
  }
}

@media (min-width: 1440px) {
  .company-info-section {
    padding: 121px 0 154px;
  }
}

.company-info-list {
  display: flex;
  flex-direction: column;
  gap: 0px;
}

@media (min-width: 768px) {
  .company-info-list {
    gap: 34px;
  }
}

.company-info-item {
  border-top: 1px solid var(--gray-border);
}

.company-info-row {
  display: flex;
  flex-direction: column;
  padding: 24px 0 30px;
}

@media (min-width: 768px) {
  .company-info-row {
    flex-direction: row;
    align-items: flex-start;
    padding: 30px 20px 0;
  }
}

.company-info-label {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-size: 15px;
  line-height: 1.75;
  letter-spacing: 0.03em;
  color: #000;
  margin: 0 0 5px;
}

@media (min-width: 768px) {
  .company-info-label {
    width: 180px;
    flex-shrink: 0;
    font-size: 16px;
    line-height: 28px;
    margin: 0;
  }
}

.company-info-value {
  font-family: "Inter", "Zen Kaku Gothic New", sans-serif;
  font-size: 15px;
  line-height: 1.75;
  letter-spacing: 0.03em;
  color: #000;
  margin: 0;
}

@media (min-width: 768px) {
  .company-info-value {
    font-size: 16px;
    line-height: 28px;
  }
}

.company-info-divider {
  height: 1px;
  background-color: var(--gray-border);
  margin-top: 20px;
}

@media (min-width: 768px) {
  .company-info-divider {
    margin-top: 30px;
  }
}

/* ========================================
   Service Page Styles
   ======================================== */
.service-page-section {
  padding-bottom: 96px;
}

@media (min-width: 768px) {
  .service-page-section {
    padding-bottom: 198px;
  }
}

.service-page-item {
  padding-top: 47px;
}

@media (min-width: 768px) {
  .service-page-item {
    padding-top: 75px;
  }
}

.service-page-item:nth-child(2) {
  padding-top: 71px;
}

@media (min-width: 768px) {
  .service-page-item:nth-child(2) {
    padding-top: 95px;
  }
}

.service-page-item:nth-child(3) {
  padding-top: 71px;
}

@media (min-width: 768px) {
  .service-page-item:nth-child(3) {
    padding-top: 145px;
  }
}

.service-page-item:nth-child(3) .service-page-content {
  margin-top: 30px;
}

@media (min-width: 768px) {
  .service-page-item:nth-child(3) .service-page-content {
    margin-top: 32px;
  }
}

.service-page-image {
  max-width: 1100px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .service-page-image {
    padding: 0 40px;
  }
}

@media (min-width: 1440px) {
  .service-page-image {
    padding: 0;
  }
}

.service-page-image-inner {
  position: relative;
  width: 100%;
  height: 250px;
  overflow: hidden;
}

@media (min-width: 768px) {
  .service-page-image-inner {
    height: auto;
    aspect-ratio: 1100 / 550;
  }
}

.service-page-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-page-content {
  max-width: 1100px;
  margin: 30px auto 0;
  padding: 0 20px;
}

@media (min-width: 768px) {
  .service-page-content {
    margin-top: 45px;
    padding: 0 41px;
  }
  .service-page-content.no-right-padding {
    padding-right: 0;
  }
}

@media (min-width: 1440px) {
  .service-page-content {
    padding: 0;
  }
  .service-page-content.no-right-padding {
    padding-right: 0;
  }
}

.service-page-row {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

@media (min-width: 768px) {
  .service-page-row {
    flex-direction: row;
    align-items: center;
    gap: 50px;
  }
}

.service-page-header {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

@media (min-width: 768px) {
  .service-page-header {
    width: 179px;
    flex-shrink: 0;
    gap: 10px;
  }
}

.service-page-number {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  line-height: 1;
  letter-spacing: 0.06em;
  color: #000;
}

@media (min-width: 768px) {
  .service-page-number {
    font-size: 18px;
    line-height: 16px;
    letter-spacing: 1.08px;
  }
}

.service-page-title {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-size: 24px;
  line-height: 1.2;
  letter-spacing: 0.06em;
  color: #000;
  margin: 0;
  white-space: nowrap;
}

@media (min-width: 768px) {
  .service-page-title {
    font-size: 34px;
    font-style: normal;
    line-height: 30px;
    letter-spacing: 2.04px;
  }
}

.service-page-divider {
  display: none;
  width: 1px;
  height: 71px;
  background-color: #ddd;
}

@media (min-width: 768px) {
  .service-page-divider {
    display: block;
  }
}

.service-page-body {
  display: flex;
  flex-direction: column;
  gap: 15px;
  flex: 1;
}

@media (min-width: 768px) {
  .service-page-body {
    gap: 10px;
    flex: 1;
    max-width: 710px;
  }
  .service-page-row.no-max-width .service-page-body {
    max-width: none;
  }
}

.service-page-desc {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 15px;
  line-height: 1.8;
  color: #000;
  margin: 0;
}

@media (min-width: 768px) {
  .service-page-desc {
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 180%;
  }
}

.service-page-stats {
  display: inline-flex;
}

.service-page-stats span {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 14px;
  line-height: 1;
  color: #000;
  border: 1px solid #000;
  padding: 12px 15px;
}

@media (min-width: 768px) {
  .service-page-stats span {
    font-size: 15px;
  }
}

/* ========================================
   Recruit Page Styles
   ======================================== */
.recruit-page-intro {
  max-width: 1100px;
  margin: 0 auto;
  padding: 47px 20px 0;
}

@media (min-width: 768px) {
  .recruit-page-intro {
    padding: 79px 40px 0;
  }
}

@media (min-width: 1440px) {
  .recruit-page-intro {
    padding: 79px 0 0;
  }
}

.recruit-page-intro h2 {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-size: 24px;
  line-height: 1.5;
  letter-spacing: 0.03em;
  color: #000;
  margin: 0 0 20px;
}

@media (min-width: 768px) {
  .recruit-page-intro h2 {
    font-size: 34px;
    font-weight: 500;
    line-height: 46px;
    letter-spacing: 1.02px;
    margin-bottom: 25px;
  }
}

.recruit-page-intro-text {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 15px;
  line-height: 1.87;
  color: #000;
  margin: 0 0 40px;
}

@media (min-width: 768px) {
  .recruit-page-intro-text {
    font-size: 16px;
    font-weight: 400;
    line-height: 28px;
    letter-spacing: 0.48px;
    margin-bottom: 45px;
  }
}

/* Recruit Page Images */
.recruit-page-images {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
}

@media (min-width: 768px) {
  .recruit-page-images {
    grid-template-columns: repeat(4, 1fr);
  }
}

.recruit-page-image {
  position: relative;
  width: 100%;
  padding-bottom: 100%;
  overflow: hidden;
}

.recruit-page-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Accordion */
.recruit-accordion-section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 80px 20px 120px;
}

@media (min-width: 768px) {
  .recruit-accordion-section {
    padding: 114px 40px 100px;
  }
}

@media (min-width: 1440px) {
  .recruit-accordion-section {
    padding: 114px 0 120px;
  }
}

.recruit-accordion-header {
  display: flex;
  align-items: center;
  gap: 15px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-size: 24px;
  line-height: 1.5;
  color: #000;
  margin: 0 0 30px;
}

@media (min-width: 768px) {
  .recruit-accordion-header {
    font-size: 40px;
    font-weight: 500;
    margin-bottom: 37px;
    gap: 20px;
  }
}

.recruit-accordion-header-line {
  width: 3px;
  height: 39px;
  background-color: var(--primary-color);
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .recruit-accordion-header-line {
    width: 2px;
    height: 50px;
  }
}

.recruit-accordion {
  border-top: 1px solid #DDDDDD;
}

.accordion-item {
  border-bottom: 1px solid #DDDDDD;
}

.accordion-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 21px 15px 23px 15px;
  background-color: #fff;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

@media (min-width: 768px) {
  .accordion-trigger {
    padding: 29px 20px 25px 30px;
  }
}

.accordion-item.active .accordion-trigger {
  background-color: #F1F1F1;
  border-bottom: 1px solid #DDDDDD;
}

.accordion-trigger-text {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 15px;
  line-height: 1.5;
  letter-spacing: 0.1em;
  color: #000;
}

@media (min-width: 768px) {
  .accordion-trigger-text {
    font-size: 20px;
  }
}


.accordion-icon {
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background-color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transform: rotate(180deg);
  transition: transform 0.3s ease;
}

@media (min-width: 768px) {
  .accordion-icon {
    width: 30px;
    height: 30px;
  }
}

.accordion-item.active .accordion-icon {
  transform: rotate(0deg);
}

.accordion-content {
  display: none;
  background-color: #F1F1F1;
}

.accordion-item.active .accordion-content {
  display: block;
}

.accordion-content-inner {
  background-color: transparent;
  padding: 0px;
  overflow: hidden;
}

@media (min-width: 768px) {
  .accordion-content-inner {
    padding: 35px 30px 30px;
  }
}

.accordion-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 2px;
  table-layout: fixed;
}

.accordion-table th,
.accordion-table td {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 13px;
  line-height: 15px;
  letter-spacing: 0.45px;
  text-align: left;
  vertical-align: middle;
  word-break: break-word;
  overflow-wrap: break-word;
}

.accordion-table th {
  padding: 11px 15px 15px 13px;
}

.accordion-table td {
  padding: 11px 15px 15px 14px;
  line-height: 20px;
}

@media (min-width: 768px) {
  .accordion-table th {
    padding: 12px 17px 15px;
    font-size: 15px;
    line-height: 28px;
  }
  
  .accordion-table td {
    padding: 12px 27px;
    font-size: 15px;
    line-height: 28px;
  }
}

.accordion-table th {
  width: 38px;
  background-color: var(--primary-color);
  color: #fff;
  font-weight: 500;
}

@media (min-width: 768px) {
  .accordion-table th {
    width: 160px;
  }
}

.accordion-table td {
  background-color: #fff;
  color: #000;
  font-weight: 400;
}

.accordion-table td a {
  color: var(--primary-color);
  text-decoration: underline;
}

/* Contact Info Boxes */
.recruit-contact-section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 80px 20px 97px;
}

@media (min-width: 768px) {
  .recruit-contact-section {
    padding: 120px 40px;
  }
}

@media (min-width: 1440px) {
  .recruit-contact-section {
    padding: 120px 0;
  }
}

.recruit-contact-box {
  background-color: #fff;
  border: 2px solid var(--primary-color);
  border-radius: 10px;
  padding: 25px 15px 12px 19px;
  margin-bottom: 20px;
}

@media (min-width: 768px) {
  .recruit-contact-box {
    padding: 38px 40px;
  }
}

.recruit-contact-box:last-child {
  margin-bottom: 0;
}

.recruit-contact-title {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 1.4;
  color: #000;
  margin: 0 0 10px;
}

@media (min-width: 768px) {
  .recruit-contact-title {
    font-size: 22px;
    gap: 10px;
    line-height: 1.5;
    margin: 0 0 15px;
  }
}

.recruit-contact-title span {
  display: inline-block;
  width: 8.27px;
  height: 8.27px;
  background-color: var(--primary-color);
  border-radius: 50%;
  font-size: 0;
  flex-shrink: 0;
  align-self: flex-start;
  margin-top: 8px;
}

@media (min-width: 768px) {
  .recruit-contact-title span {
    width: 14px;
    height: 14px;
    align-self: center;
    margin-top: 0;
  }
}

.recruit-contact-text {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 15px;
  line-height: 1.8;
  color: #333;
  margin: 0 0 0px;
}

@media (min-width: 768px) {
  .recruit-contact-text {
    font-size: 16px;
  }
}

.recruit-contact-text:last-child {
  margin-bottom: 10px;
}

.recruit-contact-text a {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: var(--primary-color);
  text-decoration: underline;
}

.recruit-contact-text a:hover {
  text-decoration: none;
}

/* ========================================
   Contact Page Styles
   ======================================== */
.contact-form-section {
  max-width: 500px;
  margin: 0 auto;
  padding: 44px 20px 49px;
}

@media (min-width: 768px) {
  .contact-form-section {
    max-width: 599px;
    padding: 89px 0 126px;
  }
}

/* Thanks Page Styles */
.thanks-section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 48px 20px 80px;
}

@media (min-width: 768px) {
  .thanks-section {
    padding: 94px 0 117px;
  }
}

.thanks-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.thanks-title {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 22px;
  font-weight: 500;
  line-height: 1.5;
  color: #000;
  margin: 0 0 17px;
}

@media (min-width: 768px) {
  .thanks-title {
    font-size: 28px;
    margin: 0 0 16px;
  }
}

.thanks-text {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 15px;
  line-height: 1.8;
  color: #000;
  margin: 0 0 24px;
  text-align: left;
}

@media (min-width: 768px) {
  .thanks-text {
    font-size: 16px;
    line-height: 1.875;
    margin: 0 0 47px;
    text-align: center;
  }
}

.thanks-button-wrapper {
  display: flex;
  justify-content: center;
}

.thanks-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.03em;
  color: var(--primary-color);
  background-color: #fff;
  border: 2px solid var(--primary-color);
  width: 250px;
  height: 53px;
  border-radius: 9999px;
  transition: all 0.3s ease;
}

@media (min-width: 768px) {
  .thanks-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0.03em;
    color: var(--primary-color);
    background-color: #fff;
    border: 2px solid var(--primary-color);
    width: 250px;
    height: 55px;
    border-radius: 9999px;
    transition: all 0.3s ease;
  }
}

.thanks-button:hover {
  background-color: var(--primary-color);
  color: #fff;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 36.3px;
}

@media (min-width: 768px) {
  .contact-form {
    gap: 36.3px;
  }
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-label {
  display: block;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 150%;
  color: #000;
  margin-bottom: 7px;
}

@media (min-width: 768px) {
  .form-label {
    font-size: 18px;
    margin-bottom: 5px;
  }
}

.form-row {
  display: flex;
  gap: 10px;
}

.form-input,
.form-select {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 14px;
  line-height: 1.5;
  color: #000;
  border: 1px solid var(--gray-border);
  padding: 15px 15px 17px;
  transition: border-color 0.3s ease;
}

@media (min-width: 768px) {

  .form-input,
  .form-select {
    font-size: 16px;
    padding: 12px 15px 16px 19px;
  }
}

.form-input:focus,
.form-select:focus {
  outline: none;
  border-color: var(--primary-color);
}

.form-input::placeholder {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
  color: #999;
}

.form-input.full-width {
  width: 100%;
}

.form-input.w-200 {
  width: 100%;
}

@media (min-width: 768px) {
  .form-input.w-200 {
    width: 295px;
  }
}

.form-input.w-150 {
  width: 100%;
}

@media (min-width: 768px) {
  .form-input.w-150 {
    width: 295px;
  }
}

/* Inquiry Textarea */
.form-textarea,
.wpcf7-textarea.form-textarea,
textarea.form-textarea {
  width: 335px !important;
  height: 273px !important;
  min-height: 273px !important;
  resize: vertical;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 14px;
  line-height: 1.5;
}

@media (min-width: 768px) {
  .form-textarea,
  .wpcf7-textarea.form-textarea,
  textarea.form-textarea {
    width: 600px !important;
    height: 242px !important;
    min-height: 242px !important;
    font-size: 16px;
  }
}

.form-input-name {
  width: 162px;
  height: 55px;
}

@media (min-width: 768px) {
  .form-input-name {
    width: 295px;
    height: 55px;
  }
}

.form-select-wrapper {
  position: relative;
  width: 100%;
}

@media (min-width: 768px) {
  .form-select-wrapper {
    width: 295px;
  }
}

.form-select {
  width: 100%;
  padding-right: 40px;
  appearance: none;
  background-color: #fff;
}

.form-select-arrow {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}

.form-checkbox-group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 12px;
}

.form-checkbox-group .wpcf7-list-item {
  margin: 0;
}

.form-checkbox-group .wpcf7-list-item label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

@media (min-width: 768px) {
  .form-checkbox-group {
    margin-top: 30px;
  }
}

.form-checkbox {
  width: 22px;
  height: 22px;
  border: 1px solid var(--gray-border);
  accent-color: var(--primary-color);
  cursor: pointer;
}

.form-checkbox-label,
.wpcf7-list-item-label {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 14px;
  line-height: 1.5;
  color: #000;
  cursor: pointer;
}

.form-checkbox-group a {
  text-decoration: underline;
  color: var(--primary-color);
}

.form-checkbox-group a:hover {
  opacity: 0.7;
}

@media (min-width: 768px) {
  .form-checkbox {
    width: 22px;
    height: 22px;
    border: 1px solid var(--gray-border);
    accent-color: var(--primary-color);
    cursor: pointer;
    margin-left: -17px;
  }
  .form-checkbox-label,
  .wpcf7-list-item-label {
    font-size: 16px;
  }
}

.form-submit-wrapper {
  margin-top: -19px;
  margin-left: 0;
}

@media (min-width: 768px) {
  .form-submit-wrapper {
    display: flex;
    justify-content: center;
    margin-top: -21px;
    margin-left: 50px;
  }
}

.form-submit {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 16px;
  line-height: 1;
  color: #fff;
  background-color: var(--primary-color);
  border-radius: 9999px;
  padding: 18px 60px;
  transition: opacity 0.3s ease;
  width: 335px;
  height: 60px;
}

@media (min-width: 768px) {
  .form-submit {
    font-size: 20px;
    width: 400px;
    height: 69px;
  }
}

.form-submit:hover {
  opacity: 0.8;
}

.form-submit:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  width: 335px;
  height: 60px;
}

@media (min-width: 768px) {
  .form-submit:disabled {
    width: 400px;
    height: 69px;
  }
}

/* ========================================
   EPN Page Styles
   ======================================== */
.epn-list-section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 60px 20px;
}

@media (min-width: 768px) {
  .epn-list-section {
    padding: 100px 0 80px;
  }
}

.epn-list {
  display: flex;
  flex-direction: column;
}

.epn-item {
  border-top: 1px solid var(--gray-border);
}

.epn-item:last-child {
  border-bottom: 1px solid var(--gray-border);
}

.epn-link {
  display: flex;
  flex-direction: column;
  padding: 20px 0;
  transition: background-color 0.3s ease;
}

@media (min-width: 768px) {
  .epn-link {
    flex-direction: row;
    align-items: flex-start;
    padding: 35px 20px;
  }
}

.epn-link:hover {
  background-color: #f9fafb;
}

.epn-date {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  line-height: 1.75;
  letter-spacing: 0.03em;
  color: #000;
  margin-bottom: 5px;
}

@media (min-width: 768px) {
  .epn-date {
    width: 120px;
    flex-shrink: 0;
    font-size: 15px;
    line-height: 28px;
    margin-bottom: 0;
  }
}

.epn-title-wrapper {
  display: flex;
  align-items: flex-start;
  gap: 5px;
  flex: 1;
}

.epn-title {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 14px;
  line-height: 1.75;
  letter-spacing: 0.03em;
  color: #000;
  transition: color 0.3s ease;
}

@media (min-width: 768px) {
  .epn-title {
    font-size: 15px;
    line-height: 28px;
  }
}

.epn-link:hover .epn-title {
  color: var(--primary-color);
}

.pdf-icon {
  flex-shrink: 0;
}

/* ========================================
   News Page Styles
   ======================================== */
.news-list-section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 47px 20px 93px;
}

@media (min-width: 768px) {
  .news-list-section {
    padding: 75px 40px 110px;
  }
}

@media (min-width: 1440px) {
  .news-list-section {
    padding: 75px 0 110px;
  }
}

.news-page-list {
  display: flex;
  flex-direction: column;
}

.news-page-item {
  border-bottom: 1px solid var(--gray-border);
}

.news-page-item:first-child {
  border-top: 1px solid var(--gray-border);
}

.news-page-link {
  display: flex;
  flex-direction: column;
  padding: 14px 0;
  transition: background-color 0.3s ease;
}

@media (min-width: 768px) {
  .news-page-link {
    flex-direction: row;
    align-items: flex-start;
    padding: 22px 20px;
  }
}

.news-page-link:hover {
  background-color: #f9fafb;
}

.news-page-date {
  font-family: "Inter", sans-serif;
  font-size: 15px;
  line-height: 1.75;
  letter-spacing: -0.05em;
  color: #000;
  margin-bottom: 0px;
}

@media (min-width: 768px) {
  .news-page-date {
    width: 120px;
    flex-shrink: 0;
    font-size: 15px;
    font-weight: 400;
    line-height: 28px;
    letter-spacing: -0.03em;
    margin-bottom: 0;
  }
}

.news-page-title {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 14px;
  line-height: 1.75;
  letter-spacing: 0.03em;
  color: #000;
  transition: color 0.3s ease;
  margin-top: 5px;
  margin-bottom: 13px;
}

@media (min-width: 768px) {
  .news-page-title {
    font-size: 15px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: 0.45px;
    margin-top: 15px;
    margin-bottom: 0px;
  }
}

.news-page-link:hover .news-page-title {
  color: var(--primary-color);
}

/* EPN PDF Icon */
.epn-pdf-icon {
  display: inline-block;
  vertical-align: middle;
  margin-left: 8px;
  flex-shrink: 0;
}

/* No Posts Message */
.no-posts-message {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 15px;
  line-height: 1.8;
  color: #666;
  text-align: center;
  padding: 40px 20px;
}

/* ========================================
   News Detail Styles
   ======================================== */
.news-detail {
  max-width: 750px;
  margin: 0 auto;
  padding: 49px 20px 84px;
}

@media (min-width: 768px) {
  .news-detail {
    padding: 73px 0 109px;
  }
}

.news-detail-header {
  margin-bottom: 52px;
}

@media (min-width: 768px) {
  .news-detail-header {
    margin-bottom: 37px;
  }
}

.news-detail-date {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  line-height: 1.75;
  letter-spacing: -0.03em;
  color: #000;
  margin: 0 0 8px;
}

@media (min-width: 768px) {
  .news-detail-date {
    font-size: 15px;
    margin: 0;
  }
}

.news-detail-title {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-size: 26px;
  line-height: 1.5;
  letter-spacing: 0.03em;
  color: #000;
  margin: 0;
}

@media (min-width: 768px) {
  .news-detail-title {
  font-weight: 500;
  font-size: 34px;
  line-height: 1.5;
  letter-spacing: 0.03em;
  color: #000;
  margin: 0;
  }
}

.news-detail-content figure {
  margin: 0 0 10px;
}

.news-detail-content figure img {
  width: 100%;
  height: auto;
  aspect-ratio: 790 / 400;
  object-fit: cover;
  background-color: #d1d5db;
}

.news-detail-content figcaption {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 13px;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: 0.39px;
  color: #666;
  margin-top: 5px;
}

@media (min-width: 768px) {
  .news-detail-content figcaption {
    margin-top: 10px;
  }
}

.news-detail-content p {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 28px;
  letter-spacing: 0.45px;
  color: #000;
  margin: 0 0 40px;
}

@media (min-width: 768px) {
  .news-detail-content p {
    font-size: 16px;
    line-height: 30px;
    letter-spacing: 0.48px;
  }
}

.news-detail-content p.note {
  font-size: 13px;
  line-height: 1.8;
  color: #666;
  margin-bottom: 60px;
}

.news-detail-content a {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 28px;
  letter-spacing: 0.45px;
  color: #000E50;
  text-decoration: underline;
  text-decoration-color: #000E50;
  transition: opacity 0.3s ease;
}

.news-detail-content a:hover {
  opacity: 0.7;
}

@media (min-width: 768px) {
  .news-detail-content a {
    font-size: 16px;
    line-height: 30px;
    letter-spacing: 0.48px;
  }
}

.news-detail-content h2 {
  display: flex;
  align-items: stretch;
  gap: 15px;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 24px;
  line-height: 32px;
  color: #000;
  margin: 40px 0 30px;
}

.news-detail-content h2::before {
  content: "";
  display: block;
  width: 2px;
  background-color: #000E50;
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .news-detail-content h2 {
    font-size: 28px;
    line-height: 40px;
    margin: 80px 0 30px;
  }
}

.news-detail-content h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 20px;
  letter-spacing: 0.54px;
  color: #000;
  margin: 40px 0 20px;
}

.news-detail-content h3::before {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  background-color: #000E50;
  border-radius: 50%;
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .news-detail-content h3 {
    font-size: 20px;
    letter-spacing: 0.6px;
    margin: 80px 0 20px;
  }
}

.news-back-link {
  margin-top: 80px;
  margin-bottom: 0;
  display: flex;
  justify-content: center;
}

.news-back-link a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 40px;
  letter-spacing: 0.48px;
  color: var(--primary-color);
  width: 220px;
  height: 50px;
  border: 2px solid var(--primary-color);
  border-radius: 80px;
  transition: all 0.3s ease;
}

@media (min-width: 768px) {
  .news-back-link a {
    width: 250px;
    height: 55px;
  }
}

.news-back-link a:hover {
  background-color: var(--primary-color);
  color: #fff;
}

/* ========================================
   Pagination
   ======================================== */
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 51px;
}

@media (min-width: 768px) {
  .pagination {
    margin-top: 87px;
  }
}

.pagination-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--gray-border);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease;
}

.pagination-btn:hover:not(:disabled) {
  background-color: #f3f4f6;
}

.pagination-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.pagination-number {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Inter", sans-serif;
  font-size: 15px;
  line-height: 28px;
  letter-spacing: 0.03em;
  transition: background-color 0.3s ease;
}

.pagination-number:not(.active) {
  border: 1px solid var(--gray-border);
  color: #000;
}

.pagination-number:not(.active):hover {
  background-color: #f3f4f6;
}

.pagination-number.active {
  background-color: var(--primary-color);
  color: #fff;
}

.pagination-dots {
  font-family: "Inter", sans-serif;
  font-size: 15px;
  line-height: 28px;
  letter-spacing: 0.03em;
  color: #000;
  width: 40px;
  text-align: center;
}

/* ========================================
   Privacy Policy Page
   ======================================== */
.privacy-policy-section {
  max-width: 750px;
  margin: 0 auto;
  padding: 48px 20px 100px;
}

@media (min-width: 768px) {
  .privacy-policy-section {
    padding: 74px 40px 120px;
  }
}

@media (min-width: 830px) {
  .privacy-policy-section {
    padding: 74px 0 74px;
  }
}

.privacy-policy-content {
  text-align: left;
}

.privacy-policy-heading {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 16px;
  font-weight: bold;
  line-height: 30px;
  letter-spacing: 0.03em;
  color: #000;
  margin: 30px 0 0;
}

.privacy-policy-text {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 30px;
  letter-spacing: 0.03em;
  color: #000;
  margin: 0;
}

/* ========================================
   Scrollbar Hide
   ======================================== */
.scrollbar-hide::-webkit-scrollbar {
  display: none;
}

.scrollbar-hide {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

/* ========================================
   Utility Classes
   ======================================== */
.min-h-screen {
  min-height: 100vh;
}

.bg-white {
  background-color: #fff;
}

.hidden {
  display: none;
}

.flex {
  display: flex;
}

.items-center {
  align-items: center;
}

.justify-center {
  justify-content: center;
}

.gap-10 {
  gap: 10px;
}

.gap-15 {
  gap: 15px;
}

.gap-20 {
  gap: 20px;
}

.w-full {
  width: 100%;
}

/* Contact Form 7 のデフォルトスタイルを無効化 */
.wpcf7 .form-row {
  display: flex;
  gap: 11px;
}
.wpcf7 .form-row .form-input-name {
  flex: 1;
}
.wpcf7 .screen-reader-response {
  display: none;
}