.child-bg {
  background: #ebecf0;
}

/* title */
.child_title {
  width: 100%;
  height: 420px;
  position: relative;
  overflow: hidden;
}
.services_title {
  background-image: url(../img/child/services_top.webp);
  background-size: cover;
}
.company_title {
  background-image: url(../img/child/company_top.webp);
  background-size: cover;
}
.news_title {
  background-image: url(../img/child/news_top.webp);
  background-size: cover;
}
.contact_title {
  background-image: url(../img/child/contact.webp);
  background-size: cover;
}
.privacy_title {
  background-image: url(../img/child/contact.webp);
  background-size: cover;
}
.recruit_title {
  background-image: url(../img/child/recruit_top.webp);
  background-size: cover;
}
@media screen and (max-width: 650px) {
  .services_title {
    background-image: url(../img/child/services_top_sp.webp);
    background-size: cover;
  }
  .company_title {
    background-image: url(../img/child/company_top_sp.webp);
    background-size: cover;
  }
  .news_title {
    background-image: url(../img/child/news_top_sp.webp);
    background-size: cover;
  }
  .contact_title {
    background-image: url(../img/child/contact_sp.webp);
    background-size: cover;
  }
  .privacy_title {
    background-image: url(../img/child/contact_sp.webp);
    background-size: cover;
  }
  .recruit_title {
    background-image: url(../img/child/recruit_top_sp.webp);
    background-size: cover;
    height: 70vh;
  }
}
.child_title .filter {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  backdrop-filter: blur(3px) brightness(0.6);
  z-index: 0;
}
.child_title .title {
  position: absolute;
  top: 40%;
  left: 5%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  color: #ebecf0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.child_title .title h1 {
  font-family: "Noto Sans JP";
  color: #fff;
  background: rgb(0 26 229);
  text-shadow:
    0 0 0.1em rgba(255, 255, 255, 0.05),
    0.01em 0.04em 0.03em rgba(255, 255, 255, 0.4);
  -webkit-background-clip: text;
}
.child_title .title .child-ttl {
  font-size: clamp(3.125rem, 1.599rem + 3.88vw, 6.25rem);
}
.child_title .title p {
  color: #ffffff;
}
/* section-title */
/* ─────────────
  子ページ共通タイトル調整（他ページでも使えるならそのまま）
───────────── */
.child-title {
  font-family: var(--font_sub);
  font-size: clamp(1.5rem, 1.1rem + 1vw, 2rem);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 16px;
  position: relative;
  line-height: 1;
  font-weight: 800;
}

.child-title::after {
  content: "";
  display: block;
  width: 40px;
  height: 2px;
  background: var(--green);
  margin-top: 8px;
}
.child-title span {
  font-size: clamp(1.125rem, 1.063rem + 0.21vw, 1.25rem);
}
.child-title span {
  margin-left: 16px;
}

/* ─────────────
  アンカー用メニュー .link_menu
───────────── */
.link_menu li a {
  color: #fff;
}
.link_menu li:not(:last-child)::after {
  content: "|";
  margin: 0 10px; /* 縦棒の前後の余白 */
}
.link_menu {
  top: 75px; /* ヘッダー高さに合わせて調整 */
  z-index: 999;
  background: rgba(250, 250, 250, 0.9);
  backdrop-filter: blur(6px);
}
.link_menu ul {
  display: flex;
  justify-content: center;
  gap: 5px;
  padding: 16px 20px;
}
.link_menu li a {
  font-family: var(--font_sub);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 4px;
  color: var(--text);
  text-decoration: none;
}

.link_menu li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--green);
  transition: width 0.3s ease;
}

.link_menu li a:hover::after {
  width: 100%;
}

@media (max-width: 768px) {
  .link_menu {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .link_menu ul {
    justify-content: center;
    white-space: nowrap;
    padding-inline: 16px;
  }
  .link_menu li {
    flex: 0 0 auto;
  }
}

/* h2 */
.child-bg h2 {
  color: #1c4e5d;
}
.child-bg h2 span {
  color: #000;
  margin-left: 10px;
}
.section .box .lead {
  margin: 20px 0;
}

/* =======SERVICES======== */

/* ─ IT comprehensive（船舶ITサービス） ─ */

.it_comprehensive {
  color: #fff;
  margin-top: 80px;
  margin-bottom: 80px;
}

/* タイトル色 */
.it_comprehensive .child-title {
  color: #e0ddbc;
}
.it_comprehensive .child-title span {
  color: #fff;
}

/* レイアウト：左右2カラム */
.it_comprehensive .box {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2.5fr);
  gap: 40px;
  align-items: center;
}

.it_comprehensive .box .left {
  margin-right: 0;
  width: 100%;
}

.it_comprehensive .box .right {
  width: 100%;
}
.it_comprehensive .box .right img {
  width: 100%;
  object-fit: contain;
  display: block;
}

/* リードとトピック */
/* ===============================
   LEAD
================================ */
.it_comprehensive .lead {
  margin: 12px 0 24px;
  padding-left: 14px;
  line-height: 1.9;
  letter-spacing: 0.03em;
  border-left: 3px solid rgba(255, 255, 255, 0.35); /* アクセント */
}

/* ===============================
   TOPICカードの全体
================================ */
.it_comprehensive .box .left .topic {
  background: rgba(255, 255, 255, 0.06); /* ほんのり発光 */
  padding: 16px 18px;
  border-radius: 8px;
  border-left: 3px solid rgba(255, 255, 255, 0.28);
  margin-bottom: 18px;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(3px); /* ガラス風効果 */
  transition: 0.35s ease;
}

/* PCホバー（pointer=精細デバイスのみ） */
@media (hover: hover) and (pointer: fine) {
  .it_comprehensive .box .left .topic:hover {
    transform: translateX(6px);
    background: rgba(255, 255, 255, 0.12);
    border-left-color: rgba(255, 255, 255, 0.55);
  }
}

/* ===============================
   TOPIC見出し（H4）
================================ */
.it_comprehensive .box .left .topic h4 {
  font-family: var(--font_sub);
  letter-spacing: 0.08em;
  font-weight: 600;
  margin-bottom: 6px;
  padding-bottom: 4px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

/* ===============================
   TOPIC本文（P）
================================ */
.it_comprehensive .box .left .topic p {
  line-height: 1.8;
  opacity: 0.95;
}

/* 下の3アイコン（外航/内航/フェリー） */
.it_comprehensive .icons {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin: 32px auto 0;
  padding: 16px 24px;
  max-width: 720px;
  background: rgba(255, 255, 255, 0.85);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(6px);
}
.it_comprehensive .icons .img_box {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.it_comprehensive .icons .img_box img {
  width: 120px;
  height: auto;
  margin-bottom: 8px;
}
.it_comprehensive .icons .img_box p {
  margin: 0;
  color: var(--color01);
  text-align: center;
}

/* SP時は縦並び */
@media (max-width: 475px) {
  .it_comprehensive {
    margin-top: 48px;
    margin-bottom: 48px;
  }

  .it_comprehensive .box {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .it_comprehensive .icons {
    flex-direction: column;
    max-width: 100%;
    padding-inline: 16px;
  }

  .it_comprehensive .icons .img_box img {
    width: 110px;
  }
}

/* ===============================
   Software セクション
================================ */

.software {
  padding-top: 80px;
  padding-bottom: 40px;
}

.software .box {
  display: grid;
  grid-template-columns: minmax(0, 2.6fr) minmax(0, 3.4fr);
  gap: 40px;
  align-items: center;
}

/* 左側：イメージ */
.software .box .left img {
  width: 100%;
  display: block;
  border-radius: 14px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
  object-fit: cover;
}

/* 右側：テキスト */
.software .box .right {
  width: 100%;
}

/* タイトル */
.software .child-title {
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 10px;
}

.software .child-title span {
  display: inline-block;
  letter-spacing: 0.12em;
  opacity: 0.9;
}

/* リード文 */
.software .lead {
  margin-top: 14px;
  padding-left: 14px;
  border-left: 3px solid rgba(0, 0, 0, 0.16);
  line-height: 1.9;
  letter-spacing: 0.03em;
}

/* SP用画像（.show-8）はPCでは非表示にする想定 */
.software .show-8 {
  display: none;
}

/* ------- レスポンシブ ------- */
@media (max-width: 960px) {
  .software {
    padding-top: 48px;
    padding-bottom: 24px;
  }

  .software .box {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .software .box .left.pc8 {
    display: none; /* PC用画像はSPで非表示 */
  }

  .software .show-8 {
    display: block;
    margin: 12px 0;
  }

  .software .show-8 img {
    width: 100%;
    display: block;
    border-radius: 12px;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.12);
  }

  .software .lead {
    margin-top: 10px;
    padding-left: 10px;
  }
}

/* ===============================
   Q&A セクション
================================ */

.qa {
  margin-bottom: 80px;
}

/* コンテナ調整（幅を少し絞る） */
.qa .container {
  max-width: 1040px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Q&Aカード本体 */
.qa .box {
  border-radius: 14px;
  background: linear-gradient(135deg, #eef1f7 0%, #ffffff 100%);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.08);
  width: 100%;
  max-width: 900px;
  margin: 40px 0;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

/* 1枚目左寄せ、2枚目右寄せ */
.qa .box:first-of-type {
  margin-left: 0;
}
.qa .box:last-of-type {
  margin-left: auto;
}

/* 上に薄いラインアクセント */
.qa .box::before {
  content: "";
  position: absolute;
  inset: 0;
  border-top: 3px solid rgba(13, 71, 161, 0.45);
  pointer-events: none;
}

/* PCホバー時のふわっと浮く演出 */
@media (hover: hover) and (pointer: fine) {
  .qa .box:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 38px rgba(0, 0, 0, 0.16);
  }
}

/* 内部レイアウト */
.qa .box .contents {
  padding: 4% 5%;
  height: 100%;
  position: relative;
}

/* タイトル */
.qa .box .title h4 {
  text-align: center;
  margin-bottom: 12px;
}

/* Q / A 共通レイアウト */
.qa .box .question,
.qa .box .answer {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

/* Q行 */
.qa .box .question {
  margin: 32px 0 20px;
}

/* A行 */
.qa .box .answer {
  margin-top: 32px;
}

/* Q/A 左のアイコン */
.qa .box .question img,
.qa .box .answer img {
  width: 70px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.15));
}

/* テキスト */
.qa .box .contents p {
  width: 100%;
  margin: 0;
  display: inline-block;
  line-height: 1.9;
}

/* 「事例」「オルカなら…」ラベル */
.qa .box .contents p span.fs-lg {
  display: inline-block;
  font-weight: 700;
  margin-bottom: 4px;
  letter-spacing: 0.08em;
}

/* ------- SPレイアウト ------- */
@media (max-width: 960px) {
  .qa {
    margin-bottom: 48px;
  }

  .qa .box {
    max-width: 100%;
    margin: 32px 0;
  }

  .qa .box:first-of-type,
  .qa .box:last-of-type {
    margin-left: 0;
  }

  .qa .box .contents {
    padding: 22px 18px;
  }

  .qa .box .question,
  .qa .box .answer {
    flex-direction: row;
    gap: 12px;
  }

  .qa .box .question img,
  .qa .box .answer img {
    width: 56px;
  }
}

/* ─ Hardware セクション ─ */

/* ===============================
   Hardware セクション
   （背景はダーク系想定・文字色は白のまま）
================================ */

.hardware {
  color: #fff;
  margin-top: 80px;
  padding-bottom: 80px;
}

/* 見出しまわり */
.hardware .child-title {
  color: #e0ddbc;
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
}

.hardware .child-title span {
  color: #fff;
  letter-spacing: 0.12em;
  opacity: 0.9;
}

/* リードテキスト：左線＋少しだけ幅しぼる */
.hardware .lead {
  margin: 12px 0 26px;
  max-width: 50%;
  line-height: 1.9;
  letter-spacing: 0.03em;
  padding-left: 14px;
  border-left: 3px solid rgba(255, 255, 255, 0.35);
}

/* 親ボックス：左右2カラム */
.hardware .box {
  display: grid;
  grid-template-columns: minmax(0, 3.6fr) minmax(0, 3.4fr);
  gap: 32px;
  width: 100%;
  align-items: flex-start;
}
/* 左カラム（アイコン群） */
.hardware .box .left {
  width: 100%;
}

/* 左側アイコン群コンテナ */
.hardware .box .left .icons {
  display: flex;
  justify-content: flex-start;
  gap: 24px;
}

/* 各アイコンカード */
.hardware .box .left .icons .img_box {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 18px 20px;
  border-radius: 14px;
  background: radial-gradient(
    circle at 0% 0%,
    rgba(255, 255, 255, 0.15),
    rgba(255, 255, 255, 0.02)
  );
  box-shadow:
    0 14px 30px rgba(0, 0, 0, 0.35),
    0 0 0 1px rgba(255, 255, 255, 0.06);
  position: relative;
  overflow: hidden;
  width: 50%;
}

/* カード上部にうっすらラインアクセント */
.hardware .box .left .icons .img_box::before {
  content: "";
  position: absolute;
  inset: 0;
  border-top: 2px solid rgba(255, 255, 255, 0.35);
  opacity: 0.8;
  pointer-events: none;
}

/* アイコン画像 */
.hardware .box .left .icons .img_box img {
  width: 120px;
  height: auto;
  margin-bottom: 10px;
  filter: drop-shadow(0 8px 14px rgba(0, 0, 0, 0.45));
}

/* キャプション */
.hardware .box .left .icons .img_box p {
  margin: 4px 0 0;
  line-height: 1.6;
}

/* PCホバー時のカード演出 */
@media (hover: hover) and (pointer: fine) {
  .hardware .box .left .icons .img_box {
    transition:
      transform 0.3s ease,
      box-shadow 0.3s ease,
      background 0.3s ease;
  }

  .hardware .box .left .icons .img_box:hover {
    transform: translateY(-4px);
    box-shadow:
      0 20px 40px rgba(0, 0, 0, 0.55),
      0 0 0 1px rgba(255, 255, 255, 0.12);
    background: radial-gradient(
      circle at 0% 0%,
      rgba(255, 255, 255, 0.22),
      rgba(255, 255, 255, 0.04)
    );
  }
}

/* 右カラム（メイン画像） */
.hardware .box .right {
  width: 100%;
}

.hardware .box .right img {
  width: 100%;
  display: block;
  border-radius: 16px;
  box-shadow:
    0 18px 40px rgba(0, 0, 0, 0.55),
    0 0 0 1px rgba(255, 255, 255, 0.08);
  object-fit: cover;
}

/* もし hardware 内で .icons .icon_box を他で使うなら軽く整える */
.hardware .icons .icon_box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 30%;
  color: #fff;
  flex: 1;
}

/* ===============================
   Hardware レスポンシブ
================================ */

@media (max-width: 960px) {
  .hardware {
    margin-top: 48px;
    padding-bottom: 56px;
  }

  .hardware .lead {
    max-width: 100%;
    margin-bottom: 20px;
  }

  .hardware .box {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  /* pc8 付き画像を上にもってくるなら */
  .hardware .box .right.pc8 {
    order: -1;
  }

  .hardware .box .left .icons {
    justify-content: center;
    gap: 18px;
  }

  .hardware .box .left .icons .img_box {
    padding: 14px 16px;
  }

  .hardware .box .left .icons .img_box img {
    width: 100px;
  }
}

/* =======COMPANY======== */
/* ─────────────
  Company ページビジュアル
───────────── */
.company_title {
  background-image: url(../img/child/company_top.webp);
  background-size: cover;
  background-position: center;
}

/* ─────────────
  Policy セクション
───────────── */
.section.policy {
  margin: 65px auto;
}
.policy .box {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2.5fr);
  gap: 40px;
  align-items: flex-start;
}

.policy .left .child-title {
  margin-bottom: 16px;
  color: var(--bg_color);
}

.policy .left .lead {
  line-height: 1.9;
  letter-spacing: 0.03em;
  color: var(--bg_color);
}

/* topic カード */
.policy .right .topic {
  position: relative;
  background: linear-gradient(135deg, #f7faff 0%, #ffffff 100%);
  border-radius: 16px;
  padding: 24px 28px;
  box-shadow: 0 8px 25px rgba(0, 50, 100, 0.08);
  border: 1px solid rgba(200, 210, 230, 0.6);
  overflow: hidden;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

/* ホバー */
.policy .right .topic:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 50, 100, 0.15);
}

/* 背景アクセント */
.policy .right .topic::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 6px;
  height: 100%;
  background: linear-gradient(180deg, var(--green), #4ec7b7);
  border-radius: 6px 0 0 6px;
}

/* タイトル */
.policy .right .topic .title {
  font-family: var(--font_sub);
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--text);
  margin-bottom: 8px;
  position: relative;
}

/* 本文 */
.policy .right .topic .ex {
  line-height: 1.9;
  letter-spacing: 0.03em;
  color: #333;
}

/* カード間隔 */
.policy .right .topic + .topic {
  margin-top: 20px;
}

/* タブレット ～ スマホ */
@media (max-width: 768px) {
  .policy .right .topic {
    padding: 20px;
  }
  .policy .right .topic::before {
    width: 4px;
  }
}

/* ─────────────
  ★ SP最適化（475px以下）
  ・2カラム → 1カラム
  ・余白強化で読みやすく
───────────── */
@media (max-width: 475px) {
  /* 2カラム → 1カラム */
  .policy .box {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  /* 左右どちらも横幅100%に */
  .policy .left,
  .policy .right {
    width: 100%;
  }

  /* トピックカードはSP向けに少し広め余白 */
  .policy .right .topic {
    padding: 18px 20px;
    border-radius: 14px;
  }

  /* アクセントラインを少し細く */
  .policy .right .topic::before {
    width: 3px;
  }

  /* タイトルの余白調整 */
  .policy .right .topic .title {
    margin-bottom: 6px;
  }
}

/* ─────────────────────────
   Message セクション（レターデザイン）
───────────────────────── */
.message {
  padding: 80px 0;
  position: relative;
}

/* レターの紙（淡いクリーム色） */
.message .lead {
  max-width: 900px;
  margin: 40px auto 0;
  background: #fffdf8;
  padding: 48px 56px;
  border-radius: 12px;
  box-shadow: 0 12px 38px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.06);
  position: relative;
  overflow: hidden;
}

/* 便箋の罫線（目立たない細線） */
.message .lead::after {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    to bottom,
    transparent 0px,
    transparent 38px,
    rgba(0, 0, 0, 0.06) 39px,
    transparent 40px
  );
  pointer-events: none;
  opacity: 0.35;
}

/* テキスト（レターらしい雰囲気） */
.message .lead p {
  position: relative;
  z-index: 2;
  line-height: 2;
  letter-spacing: 0.035em;
  color: #333;
}

/* 手紙の段落間隔（br+br は控えめに強調） */
.message .lead p br + br {
  line-height: 3.2;
  display: block;
  content: "";
}

/* 日付・署名（ペンで書いたような佇まい） */
.message .lead .name {
  position: relative;
  z-index: 2;
  margin-top: 36px;
  text-align: right;
  font-family: var(--font_sub);
  letter-spacing: 0.06em;
  color: #444;
}

/* 左上に“折れ影”をうっすら（レター感アップ） */
.message .lead::before {
  content: "";
  position: absolute;
  top: -1px;
  left: -1px;
  width: 140px;
  height: 140px;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.08) 0%, transparent 60%);
  opacity: 0.18;
  pointer-events: none;
  border-radius: 12px 0 0 0;
}

/* スマホ時（読みやすいレターに） */
@media (max-width: 768px) {
  .message .lead {
    padding: 28px 20px;
  }
  .message .lead::after {
    background: none; /* モバイルは罫線を消す → 読みにくさ回避 */
  }
}

/* ─────────────
  Information セクション
  （テーブルのレイアウトは既存CSSを尊重）
───────────── */
.information .child-title {
  margin-bottom: 24px;
  color: var(--bg_color);
}
.section.information {
  margin: 65px auto;
}

/* ─────────────
  Security / Health management（レター感なし）
───────────── */
.section.security {
  padding: 80px 0;
}

/* 2カラムレイアウト */
.section.security > .container {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 36px;
}

/* 各カードエリア */
.section.security > .container > div {
  background: #ffffff;
  border-radius: 14px;
  padding: 26px 28px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.06);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

/* ふわっと浮くホバー（PCのみ）*/
@media (hover: hover) and (pointer: fine) {
  .section.security > .container > div:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.1);
  }
}

/* タイトル */
.section.security .child-title {
  margin-bottom: 14px;
}

.section.security .child-title span {
  display: block;
  margin-top: 4px;
  letter-spacing: 0.06em;
  opacity: 0.85;
}

/* タイトル下のライン（細く上品） */
.section.security .child-title::after {
  content: "";
  display: block;
  width: 54px;
  height: 2px;
  background: #1d2088;
  margin-top: 10px;
  border-radius: 999px;
}

/* 説明文 */
.section.security .lead {
  line-height: 1.9;
  letter-spacing: 0.03em;
  margin-top: 4px;
  color: #333;
}

/* スマホ対応 */
@media (max-width: 768px) {
  .section.security {
    padding: 56px 0;
  }

  .section.security > .container {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .section.security > .container > div {
    padding: 20px 20px;
  }
}

/* ─────────────
  Access セクション
───────────── */
.section.access {
  margin: 65px auto;
}
.access .child-title {
  margin-bottom: 16px;
  color: var(--bg_color);
}

.access .map_area {
  margin-top: 16px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

/* =======RECRUIT======== */

/* ヒーローエリア */
.recruit_title .title {
  top: 30%;
}
.recruit_title .sub {
  position: absolute;
  bottom: 5%;
  right: 5%;
  color: #fff;
  text-shadow: 2px 2px 3px #575757;
  font-size: clamp(1.25rem, 0.993rem + 0.98vw, 1.875rem);
  max-width: 100%;
  text-align: right;
  line-height: 1.6;
}

/* -------------- Employee（募集要項セクション） -------------- */

.employee {
  color: #fff;
  margin-top: 80px;
  margin-bottom: 80px;
}

/* 見出しはそのまま */
.employee .child-title {
  color: #e0ddbc;
  position: relative;
  display: inline-block;
  padding-bottom: 6px;
}
.employee .child-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 68px;
  height: 2px;
  background: linear-gradient(90deg, #e0ddbc 0%, rgba(224, 221, 188, 0) 100%);
}
.employee .child-title span {
  color: #fff;
}

/* 左：テキスト＋テーブル / 右：画像 の比率を調整 */
.employee .box {
  display: grid;
  grid-template-columns: minmax(0, 3.6fr) minmax(0, 1.8fr);
  gap: 40px;
  width: 100%;
  align-items: flex-start;
}

/* 左側 */
.employee .box .left {
  width: 100%;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.employee .box .left > p {
  margin: 18px 0 24px;
  line-height: 1.9;
  letter-spacing: 0.03em;
}

/* 右側画像：サイズを小さく＆シンプルカードに */
.employee .box .right {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.employee .box .right img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
  border-radius: 18px;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.45);
  margin-top: 12px;
}

/* 以前の ::before（台座）や :hover アニメーションは削除してOK */

/* ---------- レスポンシブ ---------- */
@media (max-width: 960px) {
  .employee {
    margin-top: 56px;
    margin-bottom: 56px;
  }

  .employee .box {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .employee .box .left > p {
    margin-top: 12px;
  }

  .employee .box .right {
    justify-content: center;
  }

  .employee .box .right img {
    max-width: 320px;
    width: 80%;
    margin-top: 0;
  }

  /* もともとの .hide-6 を使っている場合は優先 */
  .employee .box .right.hide-6 {
    display: none;
  }
}

/* -------------- Job type 見出し -------------- */

.jobtype {
  padding: 80px 0;
}

.jobtype .child-title {
  margin-bottom: 36px;
}

.jobtype .child-title span {
  margin-left: 0.2em;
}

/* -------------- job_card（職種カード群） -------------- */

/* カードごとのベースカラー：少し柔らかめのブルーグラデーションに調整 */
.job_card .gr-1 {
  background:
    radial-gradient(
      circle at 0% 0%,
      rgba(255, 255, 255, 0.18),
      transparent 55%
    ),
    linear-gradient(135deg, #324c8e 0%, #1c5877 100%);
}
.job_card .gr-2 {
  background:
    radial-gradient(
      circle at 100% 0%,
      rgba(255, 255, 255, 0.18),
      transparent 55%
    ),
    linear-gradient(135deg, #2f5688 0%, #226788 100%);
}
.job_card .gr-3 {
  background:
    radial-gradient(
      circle at 0% 100%,
      rgba(255, 255, 255, 0.18),
      transparent 55%
    ),
    linear-gradient(135deg, #294a83 0%, #205c84 100%);
}
.job_card .gr-4 {
  background:
    radial-gradient(
      circle at 100% 100%,
      rgba(255, 255, 255, 0.18),
      transparent 55%
    ),
    linear-gradient(135deg, #264676 0%, #1c567d 100%);
}

/* 全体レイアウト */
.job_card .area {
  display: flex;
  flex-wrap: wrap;
  position: relative;
  justify-content: flex-start;
  align-items: stretch;
}

/* .w-50 は「2列レイアウト用」の想定そのまま */
.job_card .box {
  margin-top: 2.4rem;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  display: flex;
  height: auto;
  box-sizing: border-box;
}

/* ▼ カード本体（共通） */
.job_card .card {
  position: relative;
  width: 100%;
  height: 350px;
  min-height: 330px;
  margin: 0;
  padding: 1.8rem 1.6rem 1.8rem 2.4rem;
  border: none;
  border-radius: 16px;
  color: #fff;
  letter-spacing: 0.05rem;
  font-family: var(--font_sub);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.35);
  overflow: hidden;
  background-size: 140% 140%;
  background-position: 0% 0%;
  transition:
    transform 0.45s ease,
    box-shadow 0.45s ease,
    background-position 0.7s ease;
  cursor: pointer;
}

/* 光のベール */
.job_card .card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at -20% -20%,
    rgba(255, 255, 255, 0.35),
    transparent 55%
  );
  mix-blend-mode: screen;
  opacity: 0.4;
  pointer-events: none;
  transition:
    opacity 0.4s ease,
    transform 0.4s ease;
  z-index: -1;
}

/* タイトルブロック */
.job_card .card .txt .ttl-box {
  position: relative;
  z-index: 1;
}

/* 職種名ラベル */
.job_card .card .txt .ttl-box .ttl {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(255, 255, 255, 0.92);
  color: #1c325b;
  border-radius: 999px;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.22);
  transform-origin: left center;
  transition:
    transform 0.5s ease,
    box-shadow 0.5s ease,
    background 0.5s ease,
    color 0.5s ease;
}

/* タイトル下の概要 */
.job_card .card .txt .ttl-box p {
  margin-top: 12px;
  line-height: 1.9;
}

/* テキストブロックを“オーバーレイの親”にする */
.job_card .card .txt {
  padding-right: 0.5rem;
  z-index: 1;
}
/* ▼ 詳細（募集条件）：カード内オーバーレイに変更 */
.job_card .card .txt .ex-box {
  position: absolute;
  left: 1.6rem;
  right: 1.6rem;
  bottom: 1.6rem;
  margin: 0;
  padding: 0.9rem 1.1rem 1.1rem;
  background: #040b22;
  border-radius: 14px;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.45);
  font-size: 0.85rem;
  letter-spacing: 0;
  color: #fff;
  line-height: 1.7;
  opacity: 0;
  transform: translateY(18px);
  pointer-events: none;
  max-height: 180px;
  overflow: auto;
  z-index: 2;
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}

/* タグだけ少し整える（ここは既存のを軽く調整） */
.job_card .card .txt .ex-box .tag {
  display: inline-block;
  margin-bottom: 6px;
  padding: 2px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  font-weight: 600;
  letter-spacing: 0.12em;
}

/* ▼ 開いているカードだけオーバーレイを表示 */
.job_card .card.is-open .txt .ex-box {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  max-height: 420px;
}

/* ▼ 開いているカードだけ “展開” 状態にする */
.job_card .card.is-open {
  transform: translateY(-4px);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.5);
  background-position: 100% 100%;
}

/* タイトルラベルの色変化も is-open に寄せる */
.job_card .card.is-open .txt .ttl-box .ttl {
  background-color: rgba(0, 0, 0, 0.18);
  border-color: transparent;
  color: #fff;
}
/* 開いているカードでは概要テキストを薄くする（or 消す） */
.job_card .card.is-open .txt .ttl-box p {
  opacity: 0.05;
  transition: opacity 0.3s ease;
}
/* ▼「クリックで詳細を見る」ヒント（カード右下あたり） */
.job_card .card::after {
  content: "MORE";
  position: absolute;
  right: 1.4rem;
  bottom: 1.4rem;
  font-size: 1.3rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgb(255 255 255 / 74%);
  color: #14165ddb;
  font-weight: 800;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  opacity: 0.9;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.25);
  transition:
    background 0.35s ease,
    opacity 0.35s ease,
    transform 0.35s ease;
  pointer-events: none;
}
.job_card .card::after {
  animation: morePulse 2.8s ease-in-out infinite;
}

@keyframes morePulse {
  0% {
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.28);
  }
  50% {
    box-shadow: 0 0 14px rgba(255, 255, 255, 0.45);
  }
  100% {
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.28);
  }
}

/* 開いたらほんの少し薄くする（邪魔しない） */
.job_card .card.is-open::after {
  opacity: 0.45;
  transform: translateY(2px);
}

/* 開いているカードはヒントを少しフェードアウト */
.job_card .card.is-open::after {
  opacity: 0.3;
}

/* アイコン画像まわり */
.job_card .card .ico-card {
  position: absolute;
  right: 6%;
  bottom: 8%;
  pointer-events: none;
}

.job_card .card img {
  width: 150px;
  opacity: 0.24;
  transform-origin: center;
  transform: translateY(6px);
  transition:
    transform 0.4s ease,
    opacity 0.4s ease;
}

/* ---------- レスポンシブ ---------- */

@media screen and (max-width: 1280px) {
  .job_card .box {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

@media screen and (max-width: 960px) {
  .job_card .area {
    flex-direction: column;
  }

  .job_card .box {
    width: 100%;
    margin-top: 2rem;
    padding-left: 0;
    padding-right: 0;
  }

  .job_card .card {
    padding: 1.7rem 1.4rem 1.8rem 1.9rem;
  }

  .job_card .card img {
    width: 130px;
  }
}

@media screen and (max-width: 630px) {
  .jobtype {
    padding: 56px 0;
  }

  .jobtype .child-title {
    margin-bottom: 28px;
  }

  .job_card .card {
    padding: 1.5rem 1.2rem 1.7rem 1.6rem;
  }
}

/* -------------- entry（応募フォーム） -------------- */

.entry {
  padding: 80px 0;
}

.entry .child-title {
  color: #e0ddbc;
}
.entry .child-title span {
  color: #fff;
}

.entry-form {
  width: 100%;
  margin: 0 auto;
}

/* MW WP Form の table 前提の軽めスタイル */
.entry-form table {
  width: 100%;
  border-collapse: collapse;
}

.entry-form th,
.entry-form td {
  padding: 10px;
  border-bottom: 1px solid #ddd;
  vertical-align: top;
}

.entry-form th {
  text-align: left;
  width: 30%;
  padding-right: 16px;
  font-weight: 600;
}

.entry-form td {
  width: 70%;
}

/* 必須マーク等 */
.required-srt,
.required-srt2 {
  color: red;
}
.required-srt2 {
  color: #555;
}

.entry-form input[type="text"],
.entry-form input[type="email"],
.entry-form input[type="tel"],
.entry-form textarea {
  width: 100%;
  padding: 8px;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
  background-color: #fff;
}

.entry-form textarea {
  resize: vertical;
  min-height: 120px;
}

.entry-form input[type="file"] {
  padding: 8px 0;
  width: 100%;
}

.mwform-file-delete {
  background-color: #fff;
  color: #000;
  padding: 1px 3px;
  border-radius: 46%;
}

.zip-box {
  width: 50%;
}

/* 送信ボタンまわり */
.submit-btn {
  display: flex;
  justify-content: center;
  gap: 20px; /* ボタンの間隔 */
}

.submit-wrapper {
  position: relative;
  width: 255px;
  overflow: hidden;
  border: 1px solid var(--gray);
  border-radius: 4px;
  background-color: #fff;
  text-align: center;
}

.submit-wrapper input[type="submit"] {
  position: relative;
  z-index: 1;
  background: transparent;
  color: #2d2d2d;
  border: none;
  padding: 10px 20px;
  width: 100%;
  cursor: pointer;
  text-align: center;
}

/* 共通ホバー背景アニメーション */
.submit-wrapper::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--blue_h);
  transform: translateX(-100%);
  transition: transform 0.4s ease;
  z-index: 0;
}

.submit-wrapper:hover::before {
  transform: translateX(0);
}

.submit-wrapper:hover input[type="submit"] {
  color: #fff;
}

/* スマホで縦並びにしたい場合 */
@media (max-width: 600px) {
  .submit-btn {
    flex-direction: column;
    gap: 15px;
  }

  .submit-wrapper {
    width: 100%;
  }
}
/* 入力画面と完了画面では「戻る」ボタン非表示 */
.mw_wp_form_input .submit-wrapper--back,
.mw_wp_form_complete .submit-wrapper--back {
  display: none;
}

/* 念のため、確認画面では表示させる */
.mw_wp_form_confirm .submit-wrapper--back {
  display: block; /* または inline-block でもOK */
}

@media (max-width: 768px) {
  .entry {
    padding: 56px 0;
  }

  .submit-wrapper {
    width: 100%;
  }
}

/* =======NEWS======== */

/* 一覧全体の枠 */
.news_area {
  width: 90%;
  max-width: 980px;
  margin: 60px auto;
  padding: 30px 32px 40px;
  border-radius: 16px;
  background: #fafafa;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.08);
}

/* ソートボックス（カテゴリ / 並び順 / 検索） */
.sort_box {
  margin: 0 auto 32px;
  background-color: #ffffff;
  border-radius: 999px;
  padding: 8px 18px;
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.08);
  justify-content: center;
  width: fit-content;
}

.sort_box form {
  margin: 0;
}

.sort_box ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 8px;
}

.sort_box li {
  position: relative;
  display: flex;
  align-items: center;
}

/* 各パーツのベース */
.sort_box .genre select,
.sort_box .date select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  border-radius: 999px;
  border: 1px solid #dde0e6;
  padding: 6px 32px 6px 14px;
  font-size: 0.85rem;
  background: #fff
    url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%23777' stroke-width='1.4' fill='none' stroke-linecap='round'/%3E%3C/svg%3E")
    no-repeat right 10px center;
  cursor: pointer;
}

.sort_box .search {
  display: flex;
  align-items: center;
  border-radius: 999px;
  border: 1px solid #dde0e6;
  background: #fff;
  padding-inline: 10px;
}

.sort_box .search input[type="text"] {
  border: none;
  outline: none;
  padding: 4px 6px;
  font-size: 15px;
  min-width: 160px;
  background: transparent;
}
.sort_box .search button {
  border: none;
  background: transparent;
  padding: 0 2px 0 6px;
  cursor: pointer;
  display: flex;
  align-items: center;
}

.sort_box .search button img {
  width: 16px;
  height: 16px;
}

/* スマホでは縦積み＋フル幅 */
@media (max-width: 768px) {
  .news_area {
    width: 95%;
    padding: 24px 16px 32px;
  }

  .sort_box {
    display: block;
    width: 100%;
    border-radius: 12px;
    padding: 12px 12px 8px;
  }

  .sort_box ul {
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
  }

  .sort_box li {
    width: 100%;
  }

  .sort_box .genre select,
  .sort_box .date select {
    width: 100%;
  }

  .sort_box .search {
    width: 100%;
  }

  .sort_box .search input[type="text"] {
    width: 100%;
  }
}

/* 一覧リストのコンテナ */
#orca-posts .post-area {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 800px;
  margin: 0 auto;
}
#orca-posts .ttl p {
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
/* 1件分のリンク（a.articleがラッパー） */
.news_area .article {
  display: block;
  width: 100%;
  text-decoration: none;
  color: inherit;
}

/* カード本体 */
.news_area .article .contents {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  row-gap: 10px;
  padding: 16px 20px 18px;
  border-radius: 12px;
  background: #ffffff;
  border: 1px solid #e5e7ec;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

/* hoverでうっすら浮かせる */
.news_area .article:hover .contents {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
  border-color: #c4cada;
}

/* 上部：日付 */
.news_area .date-news-all {
  font-size: 0.85rem;
  color: #555;
  margin: 0;
}

.news_area .date-news-all p {
  margin: 0;
}

/* タイトル部分 */
.news_area .contents .ttl {
  width: 100%;
  margin: 0;
}

.news_area .contents .ttl p {
  text-align: left;
  line-height: 1.8;
}

.news_area .contents .ttl .ja {
  font-weight: 600;
  color: #222;
}

/* READ MORE */
.news_area .more {
  text-align: right;
  margin-top: 4px;
}

.news_area .more p {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #fff;
  padding: 6px 18px 6px 20px;
  background: #111827;
  border-radius: 999px;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition:
    background 0.25s ease,
    transform 0.25s ease;
}

.news_area .article:hover .more p {
  background: #1d4ed8;
  transform: translateX(2px);
}

/* ページネーション */
.page_nation {
  margin: 32px 0 0;
  text-align: center;
}

.page_nation ul {
  display: inline-flex;
  gap: 6px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.page_nation li {
  display: inline-block;
}

.page_nation a,
.page_nation span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 32px;
  height: 32px;
  padding: 0 6px;
  border-radius: 999px;
  font-size: 0.85rem;
  text-decoration: none;
  color: #374151;
  border: 1px solid transparent;
  transition: 0.3s ease;
}

.page_nation a:hover {
  background: #e5edff;
  border-color: #c4d1ff;
}

.page_nation .current {
  background: #111827;
  color: #fff;
}

/* =======NEWSSINGLE======== */

/* ラッパー：single 専用のカードレイアウトに */
.is-single .article:hover .contents {
  transform: none;
  box-shadow: none;
  border-color: transparent;
}
.is-single .article .contents {
  border-radius: 0;
  background: transparent;
  border: none;
}
.is-single .article {
  display: block;
}

/* 日付ラベル（single用） */
.is-single .article .date {
  margin-bottom: 12px;
}

.is-single .article .date p {
  display: inline-block;
  background-color: #1d2088;
  color: #fff;
  padding: 8px 35px 8px 25px;
  clip-path: polygon(0 0, 100% 0, 90% 100%, 0% 100%);
  font-size: 0.85rem;
  margin: 0;
}

/* タイトルブロック（最初の contents） */
.is-single .article > .contents:first-of-type {
  border-bottom: 1px solid #e5e7ec;
  padding-bottom: 12px;
  margin-bottom: 16px;
}

.is-single .article .contents .ttl {
  margin: 0;
}

.is-single .article .contents .ttl p {
  color: #000;
  text-align: left;
  line-height: 1.6;
  margin: 0;
}

.is-single .article .contents .ttl .ja {
  font-weight: 600;
}

.is-single .article .contents .ttl .en {
  margin-top: 2px;
}

/* 言語タブ + カテゴリ行 */
.is-single .box {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  border-bottom: 1px solid #e5e7ec;
  padding-bottom: 16px;
  margin: 0 0 10px;
}

/* 言語スイッチ */
.is-single .language {
  display: inline-flex;
  gap: 8px;
  flex-wrap: wrap;
}

.is-single .language a {
  background-color: #6b7280;
  display: inline-block;
  color: #fff;
  padding: 5px 10px;
  border-radius: 999px;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition:
    background-color 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.2s ease;
  box-shadow: 0 3px 6px rgba(15, 23, 42, 0.35);
}

.is-single .language a:hover {
  background-color: #111827;
  box-shadow: 0 5px 10px rgba(15, 23, 42, 0.6);
  transform: translateY(-1px);
}

/* カテゴリピル */
.is-single .category {
  margin-bottom: 2px;
}

.is-single .category a {
  background-color: hsl(55, 37%, 81%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 5px 12px;
  border-radius: 999px;
  box-shadow: 0 2px 4px rgba(55, 65, 81, 0.4);
  font-size: 0.8rem;
  color: #111827;
  text-align: center;
  min-width: 0;
  white-space: nowrap;
  margin-left: 6px;
  transition: 0.3s ease;
}
.is-single .category a:first-child {
  margin-left: 0;
}

.is-single .category a:hover {
  box-shadow: none;
}

/* 本文ブロック：EN & JP 共通 */
.is-single .article .contents {
  margin: 0 auto;
  border: none;
}
.is-single .article .contents a {
  text-decoration: underline;
  color: var(--blue);
  transition: 0.3s ease;
}
.is-single .article .contents a:hover {
  text-decoration: underline;
  color: var(--blue_h);
}
.is-single .article .contents .main_text {
  opacity: 1;
  white-space: pre-line;
}
.is-single .article .contents .main_text p {
  line-height: 1.6;
}
/* EN / JP 本文 */
.is-single .article .contents .main_text .en,
.is-single .article .contents .main_text .ja {
  line-height: 1.9;
  color: #111827;
}

/* 2言語あるときだけラベルを出す */
.is-single.has-both-lang .article .contents .main_text .en::before {
  content: "ENGLISH";
  display: inline-block;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #6b7280;
  margin-bottom: 14px;
  background-color: var(--beige);
  padding: 0 5px;
}

.is-single.has-both-lang .article .contents .main_text .ja::before {
  content: "JAPANESE";
  display: inline-block;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #6b7280;
  margin-bottom: 14px;
  background-color: var(--beige);
  padding: 0 5px;
}

/* EN / JP ブロック間の微調整 */
.is-single .article .contents:nth-of-type(3) .main_text {
  margin-top: 6px;
}

/* 添付ファイルエリア */
.is-single .news-attachment .attached-01 a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: #1d4ed8;
  text-decoration: none;
  padding: 6px 10px;
  border-radius: 8px;
  background: #eef2ff;
}

.is-single .news-attachment .attached-01 a::before {
  content: "📎";
}

.is-single .news-attachment .attached-01 a:hover {
  background: #e0e7ff;
}

/* 下部 Category 表示 */
.is-single .article_bottom {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin: 40px 0 10px;
  padding-top: 16px;
  border-top: 1px solid #e5e7ec;
}

.is-single .article_bottom p {
  margin: 0;
  font-size: 0.9rem;
  color: #374151;
}

.is-single .article_bottom .category {
  margin-bottom: 0;
}

.is-single .article_bottom .category a {
  margin-left: 6px;
}

/* 戻るボタンなどがある場合の調整 */
.is-single .news_back {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

/* single-orca の「記事一覧へ」ボタン */
.is-single .article_back {
  margin: 40px auto 0;
  text-align: center;
}

.is-single .article_back a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 28px;
  border-radius: 999px;
  background-color: #000;
  color: #fff;
  font-size: 0.9rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  transition:
    background-color 0.25s ease,
    transform 0.25s ease,
    box-shadow 0.25s ease;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.18);
}

.is-single .article_back a::before {
  content: "←";
  font-size: 0.95rem;
}

.is-single .article_back a:hover {
  background-color: #1d2088; /* サイトのメインブルーに寄せる */
  transform: translateY(-1px);
  box-shadow: 0 9px 20px rgba(0, 0, 0, 0.22);
}
.wpcf7 form .wpcf7-response-output {
  margin: 2em 0.5em 1em;
  padding: 0.2em 1em;
  border: 2px solid var(--bg_color);
  color: #fff;
}
.wpcf7 form.sent .wpcf7-response-output {
  border-color: #46b450;
}
/* SP 調整 */
@media (max-width: 768px) {
  .is-single .area {
    margin: 24px auto 40px;
    padding-inline: 10px;
  }

  .is-single .article {
    padding: 18px 16px 26px;
  }

  .is-single .box {
    flex-direction: column;
    align-items: flex-start;
  }

  .is-single .category a {
    margin-top: 4px;
  }
}

/* =======taxonomy-categories======== */
.news_archive .post-area {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 800px;
  margin: 0 auto;
}

/* =======PRIVACY======== */
.privacy {
  width: 100%;
  max-width: 960px;
  margin: 80px auto 110px;
  padding: 40px 28px 50px;
  background: #ffffff;
  border-radius: 18px;
  box-shadow:
    0 18px 45px rgba(0, 0, 0, 0.08),
    0 0 0 1px rgba(15, 23, 42, 0.03);
  font-size: 0.95rem;
  line-height: 2;
}

/* 冒頭リード文 */
.privacy > p:first-of-type {
  margin-bottom: 32px;
  color: #374151;
}

/* 各トピック全体 */
.privacy .privacy_area {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

/* トピックカード */
.privacy .privacy_area .topic {
  position: relative;
  padding: 20px 22px 18px;
  border-radius: 14px;
  background:
    radial-gradient(circle at 0% 0%, rgba(13, 110, 253, 0.06), transparent 55%),
    #f9fafb;
  border: 1px solid rgba(148, 163, 184, 0.4);
  overflow: hidden;
}

/* 左のカラーライン */
.privacy .privacy_area .topic::before {
  content: "";
  position: absolute;
  inset: 0;
  width: 4px;
  background: linear-gradient(180deg, #0f172a, #1d2088);
  border-radius: 999px;
  left: 0;
}

/* 見出し */
.privacy .privacy_area .topic .ttl {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 4px 0 8px 8px;
  padding-bottom: 2px;
  font-size: 0.98rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #111827;
}

/* 見出しの下線（うっすら） */
.privacy .privacy_area .topic .ttl::after {
  content: "";
  display: block;
  height: 2px;
  width: 56px;
  border-radius: 999px;
  background: linear-gradient(90deg, #1d2088, rgba(31, 64, 104, 0.2));
}

/* 本文テキスト */
.privacy .privacy_area .topic .con {
  position: relative;
  margin: 4px 0 0 8px;
  font-size: 0.92rem;
  line-height: 1.9;
  color: #4b5563;
}
.privacy .btn_area .btn {
  --btn-padding-x: 10px;
}
/* 「Contact」ボタンまわり */
.contact_btn {
  display: flex;
  justify-content: center;
  margin: 36px 0 0;
}

/* 余白をすこしだけ詰める（既存 .btn_style をそのまま利用） */
.contact_btn .btn_area {
  display: inline-block;
}

/* ----------------- */
/* レスポンシブ      */
/* ----------------- */
@media screen and (max-width: 960px) {
  .privacy {
    margin: 60px auto 90px;
    padding: 28px 18px 40px;
    border-radius: 14px;
  }

  .privacy .privacy_area .topic {
    padding: 18px 16px 16px;
  }

  .privacy .privacy_area .topic .ttl {
    font-size: 0.92rem;
  }

  .privacy .privacy_area .topic .con {
    font-size: 0.88rem;
  }
}

@media screen and (max-width: 600px) {
  .privacy {
    margin: 40px auto 70px;
  }
}

/* sortbox */
.sort_box .search form {
  display: flex;
  width: 100%;
}
.sort_box .search form.active {
  display: flex;
}
.sort_box input,
textarea,
select {
  cursor: pointer;
  text-align: center;
}
.sort_box button,
[type="button"],
[type="reset"],
[type="submit"] {
  cursor: pointer;
}
.sort_box .search {
  display: flex;
  width: 100%;
}
.sort_box .search input {
  background-color: #e1e1e1;
  color: #474747;
  padding: 5px 10px;
  width: 80%;
  border: none;
  box-sizing: border-box;
  margin: 3px;
}
.sort_box .search [type="submit"] {
  width: 20%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: none; /* ボタンのデフォルト背景を削除 */
  border: none; /* ボタンのボーダーを削除 */
  cursor: pointer; /* ボタンのカーソルをポインタに変更 */
}
.sort_box .search [type="submit"] img {
  width: 65%;
  height: auto;
}
/* IT comprehensive */
.it_comprehensive .icons {
  display: flex;
  justify-content: space-evenly;
  align-items: stretch;
}
.it_comprehensive .icons .icon_box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 30%;
  color: #fff;
  flex: 1;
}
/* company */

.company {
  padding-top: 150px;
  padding-bottom: 180px;
}
.company .big_title {
  color: #fff;
}
.company .big_title h4 {
  color: #fff;
}
.company .lead {
  color: #fff;
  margin-left: 0;
  margin-top: 1.7rem;
}
.company .icons img {
  aspect-ratio: 1/1;
  object-fit: contain;
}
.company_btn {
  float: right;
  margin: 30px 0;
}
/* recruit */

/* achive */
.achive-section {
  margin-top: 30px;
}
.achive_title {
  width: 80%;
  margin: 0 auto;
  /* color: #1c4e5D; */
  padding: 40px 0;
}
.achive_title h4 {
  color: rgb(0 0 0 / 0.5);
  background: rgba(0, 0, 0, 1);
  text-shadow:
    0 0 0.1em rgba(255, 255, 255, 0.05),
    0.01em 0.04em 0.03em rgba(255, 255, 255, 0.4);
  -webkit-background-clip: text;
  text-align: center;
}
.achive_article .more {
  margin-top: 0;
}
.news_area .achive_article .date {
  padding: 0px 40px 0px 25px;
  height: 36px;
}
.page-numbers {
  padding: 5px 10px;
  margin: 0 2px;
  display: inline-block;
  text-decoration: none;
  color: #333;
  display: flex;
  justify-content: center;
}
.page-numbers.current {
  background-color: hsl(194, 54%, 24%);
  color: #fff;
}
.page-numbers:hover {
  color: #696969;
}
.paginate-links li {
  display: inline;
}
/* =======CONTACT======== */
.contact {
  margin-top: 80px;
  margin-bottom: 80px;
}
.contact h2 {
  margin-bottom: 40px;
}
/* Turnstile全体のラッパー */
.wpcf7-turnstile {
  display: flex;
  justify-content: center;
  margin-top: 15px;
}
/* ============================
   Tel & FAX section
   ============================ */

.contact .contact_area02 {
  margin-top: 100px;
}

.contact_area02 .box {
  display: flex;
  justify-content: center;
  gap: 60px;
  padding: 70px 40px;
  border-radius: 20px;
  background: radial-gradient(circle at 30% 30%, #e8e5d0 0%, #e3e1cb 100%);
  position: relative;
  box-shadow:
    0 18px 40px rgba(0, 0, 0, 0.08),
    inset 0 0 0 1px rgba(255, 255, 255, 0.4);
}

/* ---- TEL / FAX カード共通 ---- */
.contact_area02 .box .tel,
.contact_area02 .box .fax {
  position: relative;
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 20px 28px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(6px);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.08);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

/* ホバー効果（PCのみ） */
@media (hover: hover) and (pointer: fine) {
  .contact_area02 .box .tel:hover,
  .contact_area02 .box .fax:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.12);
  }
}

/* ---- アイコン ---- */
.contact_area02 .box .icon {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  flex-shrink: 0;
  overflow: hidden;
  position: relative;
  background: linear-gradient(135deg, #0f3d80 0%, #195b9a 100%);
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow:
    inset 0 0 0 2px rgba(255, 255, 255, 0.25),
    0 6px 18px rgba(0, 0, 0, 0.18);
}

.contact_area02 .box .icon img {
  width: 38px;
  height: auto;
  opacity: 0.85;
  filter: drop-shadow(0 3px 3px rgba(0, 0, 0, 0.25));
}

/* ---- テキスト ---- */
.contact_area02 .box p {
  margin: 0;
  font-weight: 600;
  color: var(--blue);
  line-height: 1.5;
  letter-spacing: 0.03em;
}

.contact_area02 .box p a {
  color: var(--blue);
  text-decoration: none;
  font-weight: 700;
  border-bottom: 1px dashed rgba(0, 55, 120, 0.4);
  padding-bottom: 2px;
  transition: opacity 0.2s;
}

@media (hover: hover) and (pointer: fine) {
  .contact_area02 .box p a:hover {
    opacity: 0.7;
  }
}

/* ============================
   SP レイアウト
   ============================ */
@media (max-width: 768px) {
  .contact_area02 .box {
    flex-direction: column;
    padding: 40px 20px;
    gap: 32px;
  }

  .contact_area02 .box .tel,
  .contact_area02 .box .fax {
    width: 90%;
    padding: 18px 22px;
  }

  .contact_area02 .box .icon {
    width: 58px;
    height: 58px;
  }

  .contact_area02 .box .icon img {
    width: 32px;
  }
}

.required-srt,
.required-srt2 {
  color: red;
}

/* ==========================
   Contact form table
   <table class="form-table">
   ========================== */

.form-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.06);
}

/* 行のボーダー */
.form-table tr + tr td,
.form-table tr + tr th {
  border-top: 1px solid rgba(0, 0, 0, 0.04);
}

/* 見出しセル（ラベル側） */
.form-table th {
  width: 28%;
  padding: 14px 18px;
  box-sizing: border-box;
  background: linear-gradient(135deg, #f5f5f7 0%, #eceff4 100%);
  border-right: 1px solid rgba(0, 0, 0, 0.04);
  text-align: left;
  vertical-align: middle;
  font-weight: 600;
  letter-spacing: 0.03em;
}

/* 入力側セル */
.form-table td {
  width: 72%;
  padding: 14px 18px;
  box-sizing: border-box;
  background: #ffffff;
}

/* 必須・任意ラベル */
.form-table .required-srt,
.form-table .required-srt2 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  padding: 2px 8px;
  margin-right: 8px;
  border-radius: 999px;
  font-size: 0.8em;
  line-height: 1.3;
}

/* 必須：赤系 */
.form-table .required-srt {
  background: #fce4e4;
  color: #c62828;
}

/* 任意：グレー系 */
.form-table .required-srt2 {
  background: #eceff4;
  color: #555;
}

/* 入力フィールド共通 */
.form-table input[type="text"],
.form-table input[type="email"],
.form-table input[type="tel"],
.form-table textarea {
  width: 100%;
  box-sizing: border-box;
  border-radius: 8px;
  border: 1px solid #d0d4dd;
  padding: 8px 10px;
  background-color: #fdfdff;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    background-color 0.2s ease;
}

/* フォーカス時 */
.form-table input[type="text"]:focus,
.form-table input[type="email"]:focus,
.form-table input[type="tel"]:focus,
.form-table textarea:focus {
  outline: none;
  border-color: #1d2088;
  box-shadow: 0 0 0 1px rgba(29, 32, 136, 0.18);
  background-color: #ffffff;
}

/* テキストエリア */
.form-table textarea {
  min-height: 160px;
  resize: vertical;
  text-align: start;
}

/* スマホ表示：1行ずつ縦積み */
@media (max-width: 768px) {
  .form-table {
    border-radius: 12px;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.05);
  }

  .form-table tbody,
  .form-table tr,
  .form-table th,
  .form-table td {
    display: block;
    width: 100%;
  }

  .form-table tr + tr th,
  .form-table tr + tr td {
    border-top: none;
  }

  .form-table th {
    border-right: none;
    border-bottom: none;
    padding: 12px 14px 4px;
    background: transparent;
  }

  .form-table td {
    padding: 4px 14px 14px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
  }

  .form-table tr:last-child td {
    border-bottom: none;
  }
}

/* 送信ボタンまわりがフォームと少し離れて見える場合の軽い調整（任意） */
.submit-wrapper {
  margin-top: 10px;
}

.contact input[type="text"],
.contact input[type="email"],
.contact input[type="tel"],
.contact textarea {
  width: 100%;
  padding: 8px;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
  background-color: #fff;
  text-align: left;
}
.contact textarea {
  resize: vertical;
}

.contact input[type="file"] {
  padding: 8px 0;
}
/*-----------------------------------------------
お問い合わせフォーム
-----------------------------------------------*/
.step_area {
}
.child_form {
  margin: auto;
}
.child_form th {
  width: 25%;
  border: solid 1px #d6d6d6;
  padding: 10px 0 10px 15px;
  vertical-align: middle;
  background-color: #fff;
}
.child_form td {
  border: solid 1px #d6d6d6;
  padding: 10px 5px;
  background-color: #fff;
}
.child_form [type="submit"] {
  display: inline-block;
  padding: 10px 30px;
  text-decoration: none;
  background: var(--blue);
  color: #fff;
  border-bottom: solid 4px #b17c00;
  border-radius: 3px;
}
.child_form option,
.child_form textarea,
.child_form input[type="text"],
.child_form input[type="email"],
.child_form input[type="search"],
.child_form input[type="url"] {
  width: 99%;
  margin: 0 5px;
  background-color: #efefef;
}
.required-srt {
  padding: 5px;
  background: var(--beige);
  color: #000;
  border-radius: 3px;
  margin-left: 0;
  vertical-align: middle;
}
.required-srt2 {
  padding: 5px;
  background: #adb5bd;
  color: #000;
  border-radius: 3px;
  margin-left: 0;
  vertical-align: middle;
}
/* stepbar */
.stepBar {
  display: flex;
  max-width: 80%;
  position: relative;
  margin: 20px auto;
  text-align: center;
}
.stepBar li {
  list-style: none;
  position: relative;
  width: 33.333%;
  text-align: center;
  color: #fff;
}
.stepBar li:after {
  background: #e0e0e0;
  content: "";
  width: calc(100% - 24px);
  height: 4px;
  position: absolute;
  left: calc(-50% + 20px);
  top: 20px;
}
.stepBar li:first-child:after {
  display: none;
}
.stepBar li span {
  background: #e0e0e0;
  color: #000;
  display: flex;
  height: 40px;
  margin-bottom: 5px;
  line-height: 40px;
  width: 40px;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  border-radius: 5%;
  margin: 0 auto;
  justify-content: center;
}
.stepBar .visited:after {
  background: #e0e0e0;
}
.stepBar .visited span {
  background: var(--green);
  color: #fff;
}
#autozip {
  background-color: var(--green);
}
/* -------------------- 
Media query
-------------------- */
/* ============== 1600〜1280px 
============== */
@media screen and (max-width: 1280px) {
  .policy .box .right .topic .title {
    width: 65%;
  }
  .message .lead p {
    width: 80%;
  }
  .message .lead {
    width: 100%;
  }
  .it_comprehensive .icons .img_box img {
    width: 95px;
    height: auto;
  }
  .hardware .box .left .icons .img_box img {
    width: 95px;
  }
}
/* ============== タブレット縦 ============== */
@media screen and (min-width: 601px) and (max-width: 1024px) and (orientation: portrait) {
  .software .box {
    flex-direction: column;
  }
  .software .box .left {
    order: 2;
  }
  .software .box .right {
    order: 1;
  }
  .hardware .box {
    flex-direction: column;
  }
  .hardware .box .right {
    width: 100%;
  }
  .job_card .box:hover {
    height: 485px;
  }
  .contact .contact_area02 .box .icon img {
    width: 50px;
  }
  .contact .contact_area02 .box {
    gap: 3rem;
  }
  .contact .contact_area02 .box .icon {
    opacity: 0.4;
    top: -11px;
  }
  .it_comprehensive .box .left {
    width: 100%;
  }
  .it_comprehensive .box .left img,
  .software .box .right img,
  .hardware .sp8 img {
    object-fit: contain;
    aspect-ratio: auto;
  }
  .policy .box .right {
    height: 650px;
    width: 100%;
  }
  .message .lead p {
    width: 90%;
    padding: 20px 0;
  }
  .message .lead {
    margin: 25px auto 10px;
    width: 100%;
  }
  .information .child-title {
    margin-bottom: 25px;
  }
  table tr {
    display: flex;
    flex-direction: column;
    align-items: self-start;
  }
  .info-table th {
    padding: 10px;
    width: 100%;
    text-align: left;
    border-right: none;
    background-color: var(--beige);
  }
  table tr td {
    padding: 10px;
    width: 100%;
    border-bottom: none;
  }
  .security {
    padding: 35px 0;
  }
  /* recruit */
  .employee {
    margin-top: 30px;
  }
  .jobtype h2 {
    margin-bottom: 10px;
  }
  /* privacy */
  .privacy {
    width: 100%;
    margin: 50px auto;
  }
  .info-table tr {
    border-radius: 0px;
  }
}
/* ============== タブレット横 ============== */
@media screen and (min-width: 601px) and (max-width: 1366px) and (orientation: landscape) {
  /* company */
  .policy .box .right .topic {
    width: 100%;
  }
  .security {
    padding: 50px 0;
  }
  /* privacy */
  .privacy {
    width: 100%;
    margin: 50px auto;
  }
}

/* ============== 960px ============== */
@media screen and (max-width: 960px) {
  .child_title {
    height: 275px;
  }
  /* child_company */
  .policy .box {
    flex-direction: column;
  }
  .policy .box .left {
    width: 100%;
  }
  .policy .box .left .lead {
    width: 100%;
  }
  .policy .box .right .topic {
    height: 100%;
    width: 100%;
  }
  /* child_recruit */
  .employee .box .left {
    width: 100%;
  }
  /* contact */
  .contact .contact_area02 .box {
    padding: 40px 0;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
  /* news */
  .news_area .article {
    width: 95%;
    margin: 20px auto;
  }
}

/* ============== 850px ============== */
@media screen and (max-width: 850px) {
  /* services */
  .it_comprehensive .box {
    display: flex;
    flex-direction: column;
  }
  .it_comprehensive {
    margin-top: 45px;
    margin-bottom: 45px;
  }
  .it_comprehensive .icons {
    background-color: #ffffffc7;
    display: flex;
    width: 100%;
  }
  .hardware .box .left .icons {
    justify-content: space-around;
    width: 100%;
    display: flex;
  }
  .qa .box {
    width: 100%;
    margin: 20px auto;
  }
  .hardware .lead {
    width: 100%;
  }
  .hardware .box {
    width: 100%;
  }
  .hardware .box .left {
    width: 100%;
    display: flex;
    flex-direction: row;
  }
  .hardware .box .left .icons {
    flex-direction: row;
    justify-content: space-around;
    width: 100%;
  }
  .software .box .right {
    margin-left: 0;
    width: 100%;
  }
  /* company */
  .child-title span {
    margin-left: 0;
  }
  .security h2 {
    color: var(--blue);
  }
}

/* ============== 768px ============== */
@media screen and (max-width: 768px) {
  .news_area .article .date {
    padding: 0px 25px 0px 12px;
    height: 27px;
  }
  .more {
    margin: 10px 0 0;
  }
  .news_area .more p {
    padding: 4px 13px;
  }
  .news_area {
    width: 90%;
    margin: 20px auto;
    padding: 20px 5px;
  }
  .is-single .article .contents {
    margin: 0 auto;
    border: none;
  }
  .news_area .contents .ttl {
    width: 98%;
  }
  .news_area .contents {
    margin-left: 0;
  }
  .news_area .contents .ttl {
    margin: 5px auto;
  }
  .news_area .achive_article .date {
    padding: 0px 25px 0px 13px;
    height: 30px;
  }
  .achive_title {
    width: 100%;
    padding: 22px 0;
  }
}
/* ============== タブレット横 768-1024 landscape ============== */
@media screen and (min-width: 768px) and (max-width: 1024px) and (orientation: landscape) {
}
/* ============== タブレット縦 768-1024 portrait ============== */
@media screen and (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
  .policy .box .right .topic {
    height: auto;
  }
  .policy .right .topic .ex {
    line-height: 1.6;
    font-size: 14px;
  }
  .policy .box .right .topic .title {
    width: 100%;
  }
}
/* ============== 650px ============== */
@media (max-width: 650px) {
  .child_title {
    height: 220px;
  }
  .child_title .title {
    top: 50%;
    gap: 20px;
  }
  .recruit_title .sub {
    right: 0%;
    width: 95%;
    font-size: 14px;
  }
  .employee .box {
    display: block;
  }
  .employee .box .left {
    width: 100%;
    padding: 0;
  }
  .employee .box .left p {
    margin: 15px 0;
  }
  .employee .box .right {
    width: 100%;
  }
  .entry-form th,
  .entry-form td {
    display: block;
    width: 100%;
  }
  .entry-form th {
    text-align: left;
    background-color: transparent;
  }
  /* contact */
  .contact {
    margin-top: 40px;
  }
  .contact .contact_area02 {
    margin-top: 50px;
    margin-bottom: 50px;
  }
  .contact .contact_area02 .box .icon img {
    width: 35px;
  }
  /* employee */
  .employee {
    margin-top: 30px;
  }
  .jobtype {
    margin-bottom: 50px;
  }
  .jobtype h2 {
    margin-bottom: 0px;
  }
  /* child_entry */
  .entry {
    padding: 45px 0;
  }
  /* policy */
  .policy {
    padding: 25px 0;
  }
  .is-single .article .contents {
    width: 100%;
    padding: 10px 0;
  }
  .is-single .article .date {
    padding: 0px 25px 0px 0px;
  }
  .is-single .article {
    padding: 18px 5px 20px;
  }
  .sort_box ul {
    display: flex;
    flex-direction: column;
    width: 100%;
  }
  .sort_box {
    margin: 10px auto 20px;
    width: 100%;
  }
  .sort_box li {
    width: 100%;
    height: 35px;
    margin-bottom: 6px;
  }
  .sort_box li .date {
    width: 100%;
  }
  .sort_box li .genre {
    width: 100%;
  }
  .news_area .contents .main_text {
    width: 100%;
  }
  /* qa */
  .qa .box .question img {
    width: 40px;
    height: 40px;
  }
  .qa .box .answer img {
    width: 40px;
    height: 40px;
  }
  .section .box .lead {
    margin: 8px 0;
  }
  .it_comprehensive .icons {
    margin: 20px 0;
    width: 100%;
    flex-wrap: wrap;
    flex-direction: row;
  }
  .qa .box .question {
    margin: 20px 0 20px;
  }
  .qa .box .answer {
    margin-top: 10px;
  }
  /* message */
  .message {
    padding-bottom: 0;
  }
  .message .lead p {
    padding: 20px 0 0;
    width: 95%;
  }
  .message .lead {
    margin: 30px auto 10px;
  }
  /* info */
  .information {
    padding: 30px 0;
  }
  .information .child-title {
    margin-bottom: 20px;
  }
  /* security */
  .security {
    margin-bottom: 0;
    padding: 35px 0;
  }
  .security .lead {
    margin-top: 16px;
    width: 100%;
  }
  .security div:last-child {
    margin-top: 30px;
  }
  /* access */
  .access {
    height: 695px;
  }
  /* services */
  .it_comprehensive {
    margin-top: 25px;
    margin-bottom: 45px;
  }
  .it_comprehensive .box .left img,
  .software .box .right img,
  .hardware .sp8 img {
    margin: 0;
  }
  .it_comprehensive .icons .img_box {
    width: 100%;
  }
  .it_comprehensive .icons .img_box p {
    margin: 0 0 10px;
  }
  .it_comprehensive .box .left {
    margin-right: 0px;
    width: 100%;
  }
  .software .box .right {
    width: 100%;
  }
  /* news */
  .news_area {
    width: 95%;
    margin: 30px auto;
    padding: 5px 0;
  }
  .page-numbers {
    padding: 5px 5px;
    margin: 0 0px;
  }
  .is-single .box {
    border-bottom: none;
    flex-direction: column-reverse;
    gap: 1rem;
  }
  .news_area .article {
    margin: inherit;
    margin-top: 10px;
    width: 100%;
  }
  .is-single .article_bottom {
    flex-direction: column;
    gap: 10px;
  }
  .page_nation a,
  .page_nation span {
    min-width: 22px;
    height: 22px;
  }
  .page_nation {
    margin: 25px 0 16px;
  }
}
