@charset "UTF-8";
/*
Theme Name: タナカ電機工業（2026年）
Theme URI:
Author: grafix
Author URI: https://www.gd-system.jp/
Description:
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Yu Gothic", "Hiragino Kaku Gothic ProN", "Meiryo", sans-serif;
  color: #222;
  line-height: 1.8;
  background: #fff;
}

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

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

ul {
  list-style: none;
}

h2 {
  font-size: 2.2rem;
  line-height: 1.4;
  margin-bottom: 24px;
  font-weight: 700;
}

.container {
  width: min(90%, 1200px);
  margin: 0 auto;
}

.section {
  padding: 100px 0;
}

.section-en {
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  color: #666;
  margin-bottom: 12px;
}

/* =========================
Header
========================= */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: transparent;
  border-bottom: none;
  z-index: 1100;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.site-header.is-scrolled {
  background: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.header-inner {
  width: 100%;
  height: 80px;
  padding: 0 0 0 20px;
  margin: 0;
  display: flex;
  align-items: center;
}

/* ロゴ */
.site-logo {
  font-size: 1rem;
  line-height: 1.4;
  position: relative;
  z-index: 1200;
  opacity: 0;
  transform: translateX(48px);
  animation: logoSlideIn 0.8s ease 0.15s forwards;
}

.site-logo a {
  font-weight: bold;
  color: #fff;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.28);
  transition: color 0.3s ease, text-shadow 0.3s ease;
}

.site-header.is-scrolled .site-logo a {
  color: #111;
  text-shadow: none;
}

@keyframes logoSlideIn {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
/* =========================
Burger Menu
========================= */
.menu-toggle {
  width: 80px;
  height: 80px;
  margin-left: auto;
  background: #111;
  border: none;
  border-radius: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  transition: background 0.3s ease;
  flex-shrink: 0;
  position: relative;
  z-index: 1200;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  transition: transform 0.3s ease, opacity 0.3s ease, background 0.3s ease;
}

/* 開いたときは常に黒背景＋白い×で固定 */
.menu-toggle.is-open {
  background: #111;
}

.menu-toggle.is-open span {
  background: #fff;
}

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

.menu-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

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

/* =========================
SP
========================= */
@media (max-width: 768px) {
  .header-inner {
    height: 70px;
    padding: 0 0 0 16px;
  }
  .site-logo {
    font-size: 0.9rem;
  }
  .menu-toggle {
    width: 70px;
    height: 70px;
  }
  .menu-toggle span {
    width: 22px;
  }
}
/* =========================
Fullscreen Menu
========================= */
.menu-panel {
  position: fixed;
  inset: 0;
  background: url("images/menu-bg.jpg") center/cover no-repeat;
  color: #fff;
  z-index: 1050;
  transform: translateX(100%);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: transform 0.45s ease, opacity 0.3s ease, visibility 0.3s ease;
}

.menu-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  z-index: 0;
}

.menu-panel.active {
  transform: translateX(0);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.menu-panel__inner {
  position: relative;
  z-index: 1;
  display: flex;
  width: 100%;
  height: 100%;
}

.menu-panel__left {
  width: 55%;
  display: flex;
  align-items: flex-start;
  padding: 80px 8%;
  overflow-y: auto;
}
.menu-panel__left::-webkit-scrollbar {
  display: none;
}

.menu-panel__right {
  width: 45%;
  padding: 120px 56px 56px;
  background: rgba(255, 255, 255, 0.04);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 40px;
}

/* =========================
Menu List
========================= */
.menu-list {
  margin: 0;
  padding: 0 !important;
  list-style: none !important;
}

.menu-list li {
  margin-bottom: 18px;
}

.menu-list li + li {
  margin-top: 22px;
}

.menu-list a {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  position: relative;
  padding-left: 18px;
  color: #fff;
  text-decoration: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

/* ドット → 青い罫線に変更 */
.menu-list a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 10px;
  height: 2px;
  background: #0d59b9;
  border-radius: 0;
}

/* ENTRY見出しも表示する */
.menu-entry > a::before {
  display: block;
}

.menu-list a:hover {
  opacity: 0.7;
  transform: translateX(8px);
}

.menu-en {
  display: block;
  font-size: clamp(1.4rem, 2vw, 2rem);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0.08em;
}

.menu-ja {
  display: block;
  font-size: 0.9rem;
  line-height: 1.6;
  letter-spacing: 0.04em;
  opacity: 0.88;
}

/* =========================
ENTRY Links
========================= */
.menu-entry-links {
  margin-top: 8px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

/* ENTRY内リンクは通常メニューの罫線を消す */
.menu-entry-links a {
  position: relative;
  display: block;
  padding-left: 20px;
  font-size: 0.9rem;
  color: #fff;
  text-decoration: none;
  opacity: 0.9;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.menu-entry-links a::before {
  content: "";
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #0d59b9;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.menu-entry-links a::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 50%;
  width: 6px;
  height: 6px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: translateY(-50%) rotate(45deg);
}

/* =========================
Body State
========================= */
body.menu-open {
  overflow: hidden;
}

/* =========================
Responsive
========================= */
@media (max-width: 768px) {
  .menu-panel__inner {
    flex-direction: column;
    padding-top: 50px;
    overflow-y: auto;
  }
  .menu-panel__left,
  .menu-panel__right {
    width: 100%;
  }
  .menu-panel__left {
    padding: 40px 24px 24px;
    align-items: flex-start;
  }
  .menu-panel__right {
    padding: 24px;
    gap: 24px;
  }
  .menu-list li + li {
    margin-top: 14px;
  }
  .menu-list a {
    font-size: 1.5rem;
  }
  .menu-en {
    font-size: 1.2rem;
  }
  .menu-ja {
    font-size: 0.82rem;
    line-height: 1.5;
  }
  .menu-entry-links {
    margin-top: 6px;
    gap: 2px;
  }
  .menu-entry-links a {
    font-size: 0.85rem;
    line-height: 1.6;
  }
}
/* =========================
menu company
========================= */
.company-info {
  color: #fff;
}

.company-info h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 16px;
  letter-spacing: 0.05em;
}

.company-info p {
  font-size: 0.9rem;
  line-height: 1.8;
  opacity: 0.85;
}

.company-image img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

.company-address {
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 14px;
  opacity: 0.9;
}

.company-contact {
  font-size: 0.95rem;
  line-height: 1.8;
  opacity: 0.85;
}

.company-contact a {
  color: #fff;
  text-decoration: underline;
}

.company-contact a:hover {
  opacity: 0.7;
}

/* =========================
Hero
========================= */
.hero {
  position: relative;
  margin-top: 0;
}

.hero-image img {
  width: 100%;
  height: min(85vh, 820px);
  -o-object-fit: cover;
     object-fit: cover;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.25);
}

.hero-copy {
  position: absolute;
  left: 8%;
  bottom: 12%;
  z-index: 2;
  color: #fff;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-sub {
  font-size: 0.9rem;
  letter-spacing: 0.2em;
  margin-bottom: 12px;
}

.hero h2 {
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1.3;
  margin-bottom: 0;
}

/* =========================
Common Background Section
========================= */
.section-bg {
  position: relative;
  overflow: hidden;
}

.section-bg-image {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.section-bg-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.section-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1;
}

.section-content {
  position: relative;
  z-index: 2;
  width: min(90%, 1000px);
  margin: 0 auto;
  padding: 120px 0;
  color: #fff;
}

.section-content .section-en {
  color: rgba(255, 255, 255, 0.8);
}

/* =========================
About
========================= */
.about .section-content h2 {
  font-size: clamp(2rem, 3.2vw, 3.6rem);
  line-height: 1.5;
  margin-bottom: 24px;
}

.about-btn {
  display: inline-block;
  margin-top: 28px;
  padding: 14px 34px;
  border: 1px solid #fff;
  color: #fff;
  background: transparent;
  border-radius: 999px;
  transition: 0.3s;
}

.about-btn:hover {
  background: #fff;
  color: #111;
}

.about-points {
  margin-top: 24px;
}

.about-points li {
  position: relative;
  padding-left: 18px;
  line-height: 1.9;
}

.about-points li + li {
  margin-top: 6px;
}

.about-points li::before {
  content: "・";
  position: absolute;
  left: 0;
}

/* =========================
Top Message
========================= */
.top-message.section {
  padding: 100px 0;
}

.message-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.message-image img {
  border-radius: 18px;
  -o-object-fit: cover;
     object-fit: cover;
}

.message-text {
  padding-right: 4%;
}

.message-title {
  font-size: clamp(1.6rem, 2.2vw, 2.2rem);
  line-height: 1.6;
  margin-bottom: 20px;
  font-weight: 600;
}

.message-btn {
  display: inline-block;
  margin-top: 28px;
  padding: 14px 36px;
  background: #111;
  color: #fff;
  border-radius: 999px;
  font-size: 0.95rem;
  transition: 0.3s;
}

.message-btn:hover {
  opacity: 0.8;
}

.message-lead {
  margin-bottom: 20px;
  line-height: 1.9;
}

.message-points {
  margin-top: 10px;
}

.message-points li {
  margin-bottom: 8px;
  padding-left: 18px;
  position: relative;
}

.message-points li::before {
  content: "・";
  position: absolute;
  left: 0;
}

/* =========================
Interview
========================= */
.interview {
  padding: 0 0 100px;
}

.interview-bg {
  width: 100%;
}

.interview-bg img {
  display: block;
  width: 100%;
  height: 420px;
  -o-object-fit: cover;
     object-fit: cover;
}

.interview-title-box {
  width: 600px;
  max-width: 90%;
  background: #fff;
  padding: 30px 40px;
  margin-top: -70px;
  position: relative;
  z-index: 2;
}

.interview-title-box .section-en {
  margin: 0 0 8px;
  font-size: 0.8rem;
  line-height: 1.4;
  letter-spacing: 0.2em;
  color: #777;
}

.interview-title-box h2 {
  margin: 0;
  font-size: 2rem;
  line-height: 1.4;
  color: #111;
}

.interview-content {
  margin-top: 50px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.interview-photo img {
  display: block;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

.interview-text .job {
  margin: 0 0 14px;
  font-size: 0.95rem;
  line-height: 1.6;
  color: #666;
}

.interview-text h3 {
  margin: 0 0 20px;
  font-size: 2rem;
  line-height: 1.6;
  font-weight: 700;
  color: #111;
}

.interview-text .career {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.8;
  color: #555;
}

/* =========================
Interview More Button
========================= */
.interview-more-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 24px;
  padding: 14px 28px;
  background: #111;
  color: #fff;
  border: none;
  cursor: pointer;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  transition: background 0.3s ease, transform 0.3s ease;
}

.interview-more-btn:hover {
  background: #333;
  transform: translateY(-2px);
}

/* =========================
Modal
========================= */
.modal {
  position: fixed;
  inset: 0;
  z-index: 1300;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  overscroll-behavior: contain;
}

.modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
}

.modal-dialog {
  position: relative;
  width: min(92%, 1100px);
  margin: 20px auto;
  height: calc(100vh - 40px); /*margin: 40px auto;height: calc(100vh - 80px);*/
  background: #fff;
  color: #111;
  overflow: hidden;
  z-index: 1;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.28);
  display: flex;
  flex-direction: column;
  transform: translateY(20px);
  transition: 0.3s ease;
}

.modal.is-open .modal-dialog {
  transform: translateY(0);
}

.modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 44px;
  height: 44px;
  border: none;
  background: #111;
  color: #fff;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(4px);
  z-index: 2;
}

.modal-body {
  display: grid;
  grid-template-columns: 42% 58%;
  height: 100%;
}

.modal-image {
  height: 100%;
}

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

.modal-content {
  padding: 56px 48px 48px;
  overflow-y: auto;
  min-height: 0;
  -webkit-overflow-scrolling: touch;
}

.modal-job {
  font-size: 0.95rem;
  font-weight: bold;
  letter-spacing: 0.08em;
  color: #666;
  margin-bottom: 12px;
}

.modal-title {
  font-size: 2rem;
  line-height: 1.4;
  margin-bottom: 16px;
}

.modal-profile {
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 32px;
}

.modal-section + .modal-section {
  margin-top: 28px;
}

.modal-section h4 {
  font-size: 1rem;
  font-weight: bold;
  margin-bottom: 10px;
  padding-left: 12px;
  border-left: 4px solid #111;
}

.modal-section p {
  line-height: 2;
  color: #333;
}

/* モーダル表示中の背景スクロール停止 */
body.modal-open {
  overflow: hidden;
}

/* =========================
SP
========================= */
@media (max-width: 768px) {
  .interview-more-btn {
    width: 100%;
    margin-top: 20px;
    padding: 14px 20px;
  }
}
@media (max-width: 768px) {
  .modal-dialog {
    width: calc(100% - 24px);
    height: calc(100vh - 24px);
    max-height: calc(100vh - 24px);
    margin: 12px auto;
    display: flex;
    flex-direction: column;
  }
  .modal-body {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 240px minmax(0, 1fr);
    height: 100%;
    max-height: 100%;
  }
  .modal-image {
    height: 240px;
  }
  .modal-content {
    padding: 28px 20px 24px;
    overflow-y: auto;
    min-height: 0;
    -webkit-overflow-scrolling: touch;
  }
  .modal-title {
    font-size: 1.45rem;
  }
  .modal-profile {
    margin-bottom: 24px;
  }
  .modal-close {
    top: 10px;
    right: 10px;
    width: 40px;
    height: 40px;
  }
}
/* ===============================
DATA / WELFARE SECTION
=============================== */
.data-welfare {
  position: relative;
  padding: 140px 0;
  overflow: hidden;
}

.data-welfare-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.data-welfare-bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.data-welfare .container {
  position: relative;
  z-index: 2;
}

.two-column {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.info-box {
  position: relative;
  border-radius: 0;
  overflow: hidden;
  min-height: 420px;
}

.info-box::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1;
}

.data-welfare .section-content {
  position: relative;
  z-index: 2;
  width: auto;
  margin: 0;
  padding: 80px 60px;
  color: #fff;
}

.data-welfare .section-content h2 {
  font-size: 2.2rem;
  margin-bottom: 10px;
}

.data-welfare .section-en {
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.85);
}

.data-welfare .section-content p {
  line-height: 1.9;
}

.data-btn {
  display: inline-block;
  margin-top: 30px;
  padding: 14px 36px;
  background: #fff;
  color: #111;
  font-size: 0.9rem;
  transition: 0.3s;
}

.data-btn:hover {
  background: #111;
  color: #fff;
}

#data {
  z-index: 2;
}

#welfare {
  margin-top: 100px;
}

/* =========== Recruit Info / Welfare ================= */
.info-lead {
  margin-bottom: 24px;
  line-height: 1.9;
}

.info-summary-list {
  margin-bottom: 28px;
  padding: 0;
}

.info-summary-list li {
  position: relative;
  padding-left: 18px;
  line-height: 1.9;
}

.info-summary-list li + li {
  margin-top: 6px;
}

.info-summary-list li::before {
  content: "・";
  position: absolute;
  left: 0;
}

/* ============  Accordion ====================== */
.accordion-group {
  margin-top: 10px;
}

.accordion-item {
  border-top: 1px solid rgba(255, 255, 255, 0.35);
}

.accordion-item:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
}

.accordion-trigger {
  width: 100%;
  padding: 18px 34px 18px 0;
  background: transparent;
  border: none;
  color: #fff;
  text-align: left;
  font-size: 1rem;
  line-height: 1.6;
  cursor: pointer;
  position: relative;
}

.accordion-trigger::before,
.accordion-trigger::after {
  content: "";
  position: absolute;
  right: 8px;
  top: 50%;
  width: 14px;
  height: 2px;
  background: #fff;
  transform: translateY(-50%);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.accordion-trigger::after {
  transform: translateY(-50%) rotate(90deg);
}

.accordion-trigger[aria-expanded=true]::after {
  opacity: 0;
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.accordion-content p {
  padding: 0 0 18px;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.92);
}

/* 既存ボタンと合わせて少し調整 */
.data-btn {
  display: inline-block;
  margin-top: 30px;
}

/* =========== Responsive ================== */
@media (max-width: 768px) {
  .info-lead {
    margin-bottom: 20px;
  }
  .info-summary-list {
    margin-bottom: 22px;
  }
  .accordion-trigger {
    padding: 16px 30px 16px 0;
    font-size: 0.95rem;
  }
  .accordion-content p {
    padding: 0 0 16px;
    font-size: 0.95rem;
    line-height: 1.8;
  }
}
/* ===============================
ENTRY
=============================== */
.entry {
  background: #fff;
  padding-bottom: 100px;
}

.entry-visual {
  width: 100%;
  position: relative;
}

.entry-visual img {
  display: block;
  width: 100%;
  height: 420px;
  -o-object-fit: cover;
     object-fit: cover;
}

/* ENTRY文字を写真にかぶせる */
.entry-title-wrap {
  position: relative;
  z-index: 2;
  margin-top: -34px; /* 被せ具合調整 */
  text-align: center;
}

.entry-big-title {
  display: inline-block;
  font-size: clamp(2.4rem, 6vw, 5rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.12em;
  color: #fff;
  text-shadow: 0 6px 18px rgba(0, 0, 0, 0.22);
  margin: 0;
}

/* 本文エリア */
.entry-box {
  text-align: center;
  margin-top: 28px;
}

.entry-box h2 {
  font-size: 2.2rem;
  line-height: 1.5;
  margin-bottom: 24px;
  color: #111;
}

.entry-text {
  max-width: 760px;
  margin: 0 auto;
  line-height: 2;
  color: #333;
}

.entry-btn {
  display: inline-block;
  margin-top: 40px;
  padding: 16px 40px;
  background: #111;
  color: #fff;
  transition: 0.3s;
}

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

.entry-buttons {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.entry-btn.primary {
  background: #111;
  color: #fff;
}

.entry-btn.secondary {
  border: 1px solid #111;
  color: #111;
  background: #fff;
}

.entry-btn.secondary:hover {
  background: #111;
  color: #fff;
}

/* ===============================
SP
=============================== */
@media (max-width: 768px) {
  .entry {
    padding-bottom: 70px;
  }
  .entry-visual img {
    height: 260px;
  }
  .entry-title-wrap {
    margin-top: -22px;
  }
  .entry-big-title {
    font-size: clamp(2rem, 10vw, 3.2rem);
    letter-spacing: 0.08em;
  }
  .entry-box {
    margin-top: 20px;
  }
  .entry-box h2 {
    font-size: 1.5rem;
  }
  .entry-text {
    font-size: 0.95rem;
    line-height: 1.9;
  }
  .entry-btn {
    width: 100%;
    max-width: 320px;
    padding: 14px 20px;
    margin: 0;
  }
  .entry-buttons {
    margin-top: 24px;
    gap: 10px;
  }
}
/* =========================
Footer
========================= */
.site-footer {
  padding: 40px 0;
  background: #111;
  color: #fff;
}

.footer-logo {
  font-weight: bold;
  margin-bottom: 8px;
}

.copyright {
  font-size: 0.85rem;
  color: #ccc;
}

/* =========================
Responsive
========================= */
@media (max-width: 768px) {
  .section {
    padding: 72px 0;
  }
  h2 {
    font-size: 1.8rem;
  }
  .header-inner {
    height: 70px;
    padding: 0 0 0 16px;
  }
  .site-logo {
    font-size: 0.9rem;
  }
  .menu-toggle {
    width: 70px;
    height: 70px;
  }
  .menu-toggle span {
    width: 22px;
  }
  .hero {
    margin-top: 0;
  }
  .hero-image img {
    height: 72vh;
  }
  .hero-copy {
    left: 5%;
    right: 5%;
    bottom: 10%;
  }
  .menu-panel__inner {
    flex-direction: column;
    overflow-y: auto;
  }
  .menu-panel__left,
  .menu-panel__right {
    width: 100%;
  }
  .menu-panel__right {
    padding: 24px;
    gap: 24px;
  }
  .message-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .message-text {
    padding-right: 0;
  }
  .section-content {
    padding: 80px 0;
  }
  .interview {
    padding: 0 0 70px;
  }
  .interview-bg img {
    height: 260px;
  }
  .interview-title-box {
    width: 100%;
    max-width: none;
    padding: 22px 20px;
    margin-top: -40px;
  }
  .interview-title-box h2 {
    font-size: 1.5rem;
  }
  .interview-content {
    margin-top: 32px;
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .interview-text h3 {
    font-size: 1.5rem;
  }
  .two-column {
    grid-template-columns: 1fr;
  }
  #welfare {
    margin-top: 40px;
  }
  .data-welfare .section-content {
    padding: 60px 30px;
  }
}
/* ===============================
COLUMN
=============================== */
.column {
  background: #f7f7f7;
}

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

.column-card {
  background: #fff;
  overflow: hidden;
  transition: 0.3s;
}

.column-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.column-image img {
  width: 100%;
  height: 220px;
  -o-object-fit: cover;
     object-fit: cover;
}

.column-body {
  padding: 24px;
}

.column-body h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.column-body p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: #555;
}

/* ===============================
COLUMN responsive
=============================== */
@media (max-width: 768px) {
  .column {
    padding: 72px 0;
  }
  .column-grid {
    margin-top: 32px;
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .column-card {
    width: 100%;
  }
  .column-image img {
    height: auto;
    aspect-ratio: 4/3;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .column-body {
    padding: 20px;
  }
  .column-body h3 {
    font-size: 1.1rem;
    line-height: 1.5;
    margin-bottom: 8px;
  }
  .column-body p {
    font-size: 0.95rem;
    line-height: 1.8;
  }
}
/* ===============================
Page Hero
=============================== */
.page-hero {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: flex-end;
  color: #fff;
}

.page-hero__image {
  position: absolute;
  inset: 0;
}

.page-hero__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.42);
}

.page-hero__content {
  position: relative;
  z-index: 1;
  width: min(90%, 1200px);
  margin: 0 auto;
  padding: 180px 0 70px;
}

.page-hero__en {
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  margin-bottom: 12px;
}

.page-hero__content h2 {
  color: #fff;
  margin-bottom: 16px;
}

/* ===============================
Breadcrumb
=============================== */
.breadcrumb-wrap {
  background: #fff;
  padding: 18px 0;
  border-bottom: 1px solid #eee;
}

.breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 0.9rem;
  color: #666;
}

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

.breadcrumb li + li::before {
  content: ">";
  margin-right: 8px;
  color: #aaa;
}

/* ===============================
Archive
=============================== */
.archive-head {
  margin-bottom: 40px;
}

.archive-lead {
  max-width: 760px;
  line-height: 1.9;
}

.column-card a {
  display: block;
  height: 100%;
}

.column-meta {
  font-size: 0.82rem;
  color: #777;
  margin-bottom: 10px;
}

/* ===============================
Column Detail
=============================== */
.detail-breadcrumb {
  margin-top: 80px;
}

.column-detail__container {
  max-width: 900px;
}

.column-detail__header {
  margin-bottom: 36px;
}

.column-detail__meta {
  font-size: 0.9rem;
  color: #777;
  margin-bottom: 14px;
}

.column-detail__lead {
  max-width: 760px;
  line-height: 1.9;
}

.column-detail__image {
  margin-bottom: 40px;
}

.column-detail__image img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

.column-detail__body {
  font-size: 1rem;
  line-height: 2;
}

.column-detail__body p + p {
  margin-top: 20px;
}

.column-detail__body h3 {
  font-size: 1.5rem;
  margin-top: 42px;
  margin-bottom: 14px;
  line-height: 1.5;
}

.column-detail__footer {
  margin-top: 50px;
}

.column-archive {
  background: #f7f7f7;
}

.column-archive.section {
  padding: 100px 0;
}

.back-btn {
  display: inline-block;
  padding: 14px 30px;
  background: #111;
  color: #fff;
  transition: 0.3s;
}

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

.related-column {
  background: #f7f7f7;
}

/* ===============================
Responsive
=============================== */
@media (max-width: 768px) {
  .page-hero {
    min-height: 320px;
  }
  .page-hero__content {
    padding: 130px 0 48px;
  }
  .breadcrumb-wrap {
    padding: 14px 0;
  }
  .breadcrumb ol {
    font-size: 0.82rem;
  }
  .detail-breadcrumb {
    margin-top: 70px;
  }
  .archive-head {
    margin-bottom: 28px;
  }
  .column-detail__header {
    margin-bottom: 26px;
  }
  .column-detail__image {
    margin-bottom: 28px;
  }
  .column-detail__body {
    font-size: 0.98rem;
    line-height: 1.9;
  }
  .column-detail__body h3 {
    font-size: 1.25rem;
    margin-top: 34px;
  }
  .column-detail__footer {
    margin-top: 36px;
  }
  .back-btn {
    width: 100%;
    text-align: center;
  }
}
/* ===============================
Pagination
=============================== */
.pagination {
  margin-top: 50px;
  display: flex;
  justify-content: center;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.nav-links .page-numbers {
  min-width: 46px;
  height: 46px;
  padding: 0 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  color: #111;
  border: 1px solid #ddd;
  transition: 0.3s;
  font-size: 0.95rem;
}

.nav-links .page-numbers.dots {
  border: none;
  background: none;
}

.nav-links a:hover {
  background: #111;
  color: #fff;
  border-color: #111;
}

.nav-links .current {
  background: #111;
  color: #fff;
  border-color: #111;
}

.nav-links .prev,
.nav-links .next {
  min-width: auto;
  padding: 0 20px;
}

/* SP */
@media (max-width: 768px) {
  .pagination {
    margin-top: 36px;
  }
  .nav-links {
    gap: 8px;
  }
  .nav-links .page-numbers {
    min-width: 42px;
    height: 42px;
    padding: 0 14px;
    font-size: 0.9rem;
  }
  .nav-links .prev,
  .nav-links .next {
    padding: 0 16px;
  }
}
body.wp-singular:not(.home) h2 {
  margin-top: 2em;
}
body.wp-singular:not(.home) ul {
  list-style-type: disc;
  padding-left: 1.4em;
  margin: 1.4em 0;
}
body.wp-singular:not(.home) ul ul {
  list-style-type: circle;
  margin: 0;
}
body.wp-singular:not(.home) ul ul ul {
  list-style-type: square;
}
body.wp-singular:not(.home) ul.is-style-sme-list-arrow, body.wp-singular:not(.home) ul.is-style-sme-list-check, body.wp-singular:not(.home) ul.is-style-sme-list-remark, body.wp-singular:not(.home) ul.is-style-sme-list-times {
  list-style-type: none;
}
body.wp-singular:not(.home) ol {
  padding-left: 1.4em;
  margin: 1.4em 0;
}
body.wp-singular:not(.home) ol ol {
  list-style-type: lower-alpha;
  margin: 0;
}
body.wp-singular:not(.home) ol ol ol {
  list-style-type: lower-roman;
}
body.wp-singular:not(.home) ol.is-style-sme-ordered-list-circle, body.wp-singular:not(.home) ol.is-style-sme-ordered-list-square {
  padding-left: 1.6em;
}
body.wp-singular:not(.home) .is-style-mapcode {
  aspect-ratio: 16/9;
  position: relative;
}
body.wp-singular:not(.home) .is-style-mapcode iframe {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.container:has(.wpcf7) {
  max-width: 600px;
  margin: 0 auto;
}

.wpcf7 input[type=text],
.wpcf7 input[type=email],
.wpcf7 textarea {
  padding: 0.5em;
  border: solid 1px #ccc;
  width: 100%;
}
.wpcf7 p:has(.wpcf7-submit) {
  text-align: center;
}
.wpcf7 .wpcf7-submit {
  display: inline-block;
  margin-top: 28px;
  padding: 14px 36px;
  background: #111;
  color: #fff;
  border-radius: 999px;
  font-size: 0.95rem;
  transition: 0.3s;
  cursor: pointer;
}
.wpcf7 .wpcf7-submit:hover {
  opacity: 0.8;
}
.wpcf7 .wpcf7-spinner {
  display: block;
  margin: 1em auto;
}
.wpcf7 .wpcf7-turnstile {
  text-align: center;
}

.modal-signature {
  margin-top: 32px;
  text-align: right;
  line-height: 1.8;
}
.modal-signature p {
  margin: 0;
}

.footer-info {
  margin: 16px 0 20px;
  line-height: 1.8;
  font-size: 14px;
  color: #ccc;
}
.footer-info p {
  margin: 0 0 8px;
}
.footer-info a {
  color: #ccc;
  text-decoration: none;
}
.footer-info a:hover {
  text-decoration: underline;
}

.footer-map {
  margin: 8px 0 12px;
}
.footer-map a {
  color: #fff;
  text-decoration: underline;
  font-size: 14px;
}
.footer-map a:hover {
  opacity: 0.7;
}/*# sourceMappingURL=style.css.map */