@charset "UTF-8";
/*
  Template: swell
  Theme Name: SWELL CHILD
  Description: SWELLの子テーマ（整理版）
  Version: 1.0.0
  Author: LOOS WEB STUDIO
*/

/* ===========================
   基本
   =========================== */
@import url("https://fonts.googleapis.com/css2?family=Spartan:wght@400;700&display=swap");

:root {
    --easing: cubic-bezier(0.2, 1, 0.2, 1);
    --transition: 0.8s var(--easing);
    --color-base: #f8f8f8;
    --color-gray: #ddd;
    --color-theme: #fff;
    --color-theme-darken: #f12617;
    --box-shadow: 0.8rem 0.8rem 1.2rem rgba(0, 0, 0, 0.05),
        -0.8rem -0.8rem 1.2rem #fff;
    --box-shadow-hover: 1rem 1rem 1.5rem rgba(0, 0, 0, 0.08),
        -1rem -1rem 1.5rem #fff;
    --box-shadow-inset: inset 0.8rem 0.8rem 1.2rem rgba(0, 0, 0, 0.05),
        inset -0.8rem -0.8rem 1.2rem #fff;
    --box-shadow-dark: 0.8rem 0.8rem 1.2rem rgba(0, 0, 0, 0.1),
        -0.8rem -0.8rem 1.2rem rgba(255, 255, 255, 0.2);
}

html {
    font-family: "Spartan", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic",
        "メイリオ", Meiryo, sans-serif;
    font-size: 62.5%;
    line-height: 1.8;
    height: 100%;
    color: #333;
    background: #f8f8f8;
    -webkit-appearance: none;
    -webkit-tap-highlight-color: transparent;
}

body {
    font-size: 1.6rem;
    margin: 0;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

::selection {
    color: #fff;
    background: var(--color-theme);
}

img {
    border: 0;
    margin: 0;
}

figure {
    margin: 0;
}

p {
    margin: 0;
    padding: 0;
    text-align: justify;
}

a {
    color: #333;
    text-decoration: none;
}

ul,
ol {
    margin: 0;
    padding: 0;
    list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    padding: 0;
    font-size: 1.6rem;
}

main {
    display: block;
}

.l-inner {
    position: relative;
    box-sizing: content-box;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 10rem;
}

div#breadcrumb {
    display: none;
}

.l-section .l-inner {
    padding: 8rem 10rem;
}
/* ===========================
   Swiper（MV）書き直し（オーバーレイ対応）
   =========================== */

/* 画像・サムネの共通ベース */
.slide-media,
.thumb-media {
  position: relative;
  overflow: hidden;
}
.slide-media img,
.thumb-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Swiper ナビ */
.swiper-button-prev,
.swiper-button-next {
  display: grid;
  place-content: center;
  width: 6.4rem;
  height: 6.4rem;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
}
.swiper-button-prev::before,
.swiper-button-next::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  box-shadow: var(--box-shadow);
}
.swiper-button-prev::after,
.swiper-button-next::after {
  content: "";
  width: 1.2rem;
  height: 1.2rem;
  border: solid var(--color-gray);
  border-width: 3px 3px 0 0;
}
.swiper-button-prev::after {
  margin-left: .4rem;
  transform: rotate(-135deg);
}
.swiper-button-next::after {
  margin-right: .4rem;
  transform: rotate(45deg);
}
.swiper-button-disabled {
  pointer-events: none;
  opacity: 0;
}

/* ラッパー */
.mv02 .l-inner {
  padding-bottom: 0;
}

/* ページネーション（縦） */
.mv02 .swiper-pagination {
  position: absolute;
  z-index: 3;                 /* テキストより下でもOKだが安全に上へ */
  inset: 0 auto 0 0;
  height: max-content;
  margin: auto;
}
.mv02 .swiper-pagination-bullet {
  display: block;
  width: 1.6rem;
  height: 2px;
  background: #fff;
  transition: var(--transition);
  cursor: pointer;
}
.mv02 .swiper-pagination-bullet:not(:first-child) {
  margin-top: 1.6rem;
}
.mv02 .swiper-pagination-bullet-active {
  width: 4rem;
  background: var(--color-theme);
}

/* フェード時の挙動 */
.mv02 .swiper-fade .swiper-slide {
  transition-property: opacity, transform !important;
  pointer-events: none;
}
.mv02 .swiper-fade .swiper-slide-active {
  pointer-events: auto;
}

/* スライド中身（中央寄せ） */
.mv02 .slide {
  position: relative;
  display: grid;
  place-content: center;
  height: 800px;
  padding: 0 8rem;
  text-align: center;
  overflow: hidden;           /* 絶対配置要素のはみ出し防止 */
}

/* 背景画像レイヤー（0） */
.mv02 .slide-media {
  position: absolute;
  inset: 0;
  z-index: 0;                 /* いちばん下：画像 */
}

/* 画像のゆるいスライド演出 */
.mv02 .slide-media img {
  transition: 7s 1s linear;
  transform: translateX(-1.5%) scale(1.1);
}
.mv02 .swiper-slide[class*="-active"] .slide-media img {
  transition-delay: 0s;
  transform: translateX(1.5%) scale(1.05);
}

/* オーバーレイ（1） */
.mv02 .slide-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.35);  /* 濃さは 0.2〜0.6 で調整可 */
  z-index: 1;                    /* 画像の上、テキストの下 */
}

/* テキスト（2） */
.mv02 .slide-title,
.mv02 .slide-text,
.mv02 .slide-link {
  position: relative;
  z-index: 2;                    /* オーバーレイより上に */
  animation: 2s var(--easing) both;
  opacity: 0;
  color: #fff;                   /* 読みやすく白に統一 */
}
.mv02 .slide-title {
  font-size: 6rem;
  line-height: 1.1;
}
.mv02 .slide-text {
  font-size: 3rem;
  margin: 4rem 0;
  animation-delay: .2s;
}
.mv02 .slide-link { animation-delay: .4s; }

/* テキストの入退場アニメーション */
@keyframes mv02-fadeIn {
  0%   { transform: translateY(6rem); opacity: 0; }
  100% { transform: translateY(0);    opacity: 1; }
}
@keyframes mv02-fadeOut {
  0%   { transform: translateY(0);    opacity: 1; }
  100% { transform: translateY(-6rem);opacity: 0; }
}
.mv02 .swiper-slide.anm-started .slide-title,
.mv02 .swiper-slide.anm-started .slide-text,
.mv02 .swiper-slide.anm-started .slide-link {
  animation-name: mv02-fadeIn;
}
.mv02 .swiper-slide.anm-finished .slide-title,
.mv02 .swiper-slide.anm-finished .slide-text,
.mv02 .swiper-slide.anm-finished .slide-link {
  animation-name: mv02-fadeOut;
}

/* レスポンシブ */
@media (max-width: 1024px) {
  .mv02 { margin-bottom: 8rem; }
  .mv02 .slide { height: max(70vh, 70vw); padding: 0 4rem; }
  .mv02 .slide-title { font-size: 3rem; }
  .mv02 .slide-text  { font-size: 1.6rem; margin: 3.2rem 0; }
}
@media (max-width: 599px) {
  html { font-size: 50%; }
}


/* ===========================
   レスポンシブ調整
   =========================== */
@media (max-width: 1024px) {
    html {
        -webkit-text-size-adjust: 100%;
    }

    .l-inner {
        padding: 0 4rem;
    }

    .pc {
        display: none !important;
    }

    .mv02 {
        margin-bottom: 8rem;
    }

    .mv02 .slide {
        height: max(70vh, 70vw);
    }

    .mv02 .slide-title {
        font-size: 3rem;
    }

    .mv02 .slide-text {
        font-size: 1.6rem;
        margin: 3.2rem 0;
    }
}

@media (max-width: 599px) {
    html {
        font-size: 50%;
    }

    .pc-tab {
        display: none !important;
    }
}

@media (min-width: 1025px) {
    .tab-sp {
        display: none !important;
    }

    .swiper-button-prev::before,
    .swiper-button-next::before {
        transition: var(--transition);
    }

    .swiper-button-prev:hover::before,
    .swiper-button-next:hover::before {
        transform: scale(1.2);
    }
}

@media (min-width: 600px) {
    .sp {
        display: none !important;
    }
}

/* ===========================
   特徴
   =========================== */
.wp-block-heading.has-text-align-center.feature-ttl {
    border-top: 2px solid #fff;
    border-bottom: 2px solid #fff;
    padding: 12px 0;
}

.swell-block-fullWide.pc-py-60.sp-py-40.alignfull.black-background {
    background-image: linear-gradient(to right, #434343 0%, #000 100%);
}

/* ===========================
   加工技術（見出し装飾）
   =========================== */
.service-number {
    display: flex;
    align-items: center;
    gap: 20px;
}

.number {
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
}

.service-title {
    font-size: 2rem;
    color: #fff;
    margin-top: 0 !important;
}

.divider {
    width: 2px;
    height: 30px;
    background: #fff;
}

/* ===========================
   投稿まわり
   =========================== */
.c-postTimes__posted.icon-posted::before {
    display: none;
}

h1.c-postTitle__ttl {
    font-size: 2vw;
}

.p-articleMetas.-bottom {
    display: none;
}

time.c-postTitle__date.u-thin {
    width: 15%;
}

.post_content {
    color: #fff;
}

.post_content h2 {
    margin: initial;
}

.post_content th {
    background: transparent;
}

/* ===========================
   ボタン（お知らせ用）
   =========================== */
.original-button2 {
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    color: #333;
    font-size: 18px;
    border-radius: 0;
    width: 200px;
    height: 40px;
    position: relative;
    transition: 0.3s;
    overflow: hidden;
    background: transparent;
    margin: 0 auto;
}

.original-button2::before,
.original-button2::after {
    content: "";
    position: absolute;
    left: 0;
    width: 100%;
    height: 1px;
    background: #333;
    transition: 0.3s;
}

.original-button2::before {
    top: 0;
}

.original-button2::after {
    bottom: 0;
}

.original-button2 .button-arrow {
    margin-left: 10px;
    transition: transform 0.3s ease-in-out;
}

.original-button2:hover {
    color: #e18547;
}

.original-button2:hover::before {
    transform: translateX(-100%);
}

.original-button2:hover::after {
    transform: translateX(100%);
}

.original-button2:hover .button-arrow {
    transform: translateX(5px);
}

@media (max-width: 768px) {
    .original-button {
        margin: 0 auto;
        display: flex;
        justify-content: center;
    }
}

/* ===========================
   沿革（タイムライン）
   =========================== */
.timeline {
    color: #fff;
    background: #222;
    padding: 40px;
    opacity: 0.8;
}

.timeline ul {
    list-style: none;
    margin: 0;
    padding: 0;
    position: relative;
}

.timeline ul::before {
    content: "";
    position: absolute;
    top: 7px;
    left: 100px;
    width: 1px;
    height: calc(100% - 14px);
    background: #fff;
}

.timeline li {
    display: flex;
    align-items: center;
    margin-bottom: 40px;
    position: relative;
}

.timeline .year {
    width: 80px;
    font-weight: 700;
    text-align: right;
    margin-right: 15px;
}

.timeline .dot {
    width: 12px;
    height: 12px;
    background: #fff;
    border-radius: 50%;
    z-index: 1;
    position: relative;
    margin-right: 20px;
}

.timeline .content {
    font-size: 16px;
}

.c-pageTitle {
    display: none;
}

.post_content {
    margin-top: 0 !important;
}

/* ===========================
   R曲げ加工 表レイアウト
   =========================== */
.spec-table {
    background: #222;
    color: #fff;
    padding: 2rem;
    border-radius: 8px;
    max-width: 900px;
    font-family: "Noto Sans JP", sans-serif;
    margin: 0 auto;
}

.spec-table h2 {
    font-size: 2rem;
    border-bottom: 1px solid #444;
    padding-bottom: 1.5rem;
}

.spec-table table {
    width: 100%;
    border-collapse: collapse;
}

.spec-table th,
.spec-table td {
    padding: 1rem 0;
    text-align: left;
    vertical-align: top;
    border: none;
}

.spec-table th {
    width: 30%;
    font-weight: 400;
}

.spec-table tr+tr {
    border-top: 1px solid #444;
}

.spec-table tr:last-child {
    border-bottom: 1px solid #444;
}

@media (max-width: 600px) {
    .spec-table {
        padding: 1.2rem;
    }

    .spec-table th {
        width: 40%;
    }
}

/* ===========================
   応募要項
   =========================== */
.recruit-brief {
    background: #2c2c2c;
    color: #f2f2f2;
    padding: 2rem;
    font-family: "Noto Sans JP", sans-serif;
    max-width: 900px;
    margin: 0 auto;
}

.recruit-brief h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
}

.recruit-item {
    display: flex;
    flex-wrap: wrap;
    border-top: 1px solid #444;
    padding: 1.5rem 0;
}

.recruit-item:first-child {
    border-top: none;
}

.recruit-item:last-child {
    border-bottom: 1px solid #444;
}

.recruit-item dt {
    width: 25%;
    font-weight: 700;
    padding-right: 1rem;
    color: #f2f2f2;
    letter-spacing: 1.7px;
    font-size: 1.7rem;
}

.recruit-item dd {
    width: 75%;
    margin: 0;
    line-height: 1.8;
    color: #f2f2f2;
}

@media (max-width: 600px) {
    .recruit-item {
        flex-direction: column;
    }

    .recruit-item dt,
    .recruit-item dd {
        width: 100%;
        padding-right: 0;
    }

    .recruit-item dt {
        margin-bottom: 0.5rem;
        background: #f2f2f2;
        color: #222;
        padding: 0.5rem;
        border-radius: 2px;
    }
}

/* ===========================
   代表挨拶
   =========================== */
.wp-block-group.message-wrapper.has-white-background-color.has-background {
    padding: 80px;
}

/* ===========================
   お問い合わせ（整理版）
   =========================== */
.contact-section {
    color: #222;
    padding: 3rem 1rem;
    text-align: center;
    font-family: "Noto Sans JP", sans-serif;
}

.contact-section h2 {
    font-size: 1.8em;
    letter-spacing: 0.06em;
    line-height: 1.2;
    padding-bottom: 22px;
}

.contact-sub {
    margin-bottom: 10em;
    color: #444;
    text-align: center;
}

.contact-boxes {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.contact-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
    max-width: 390px;
    min-height: 300px;
    padding: 40px 42px 33px;
    border: 2px solid #222;
    border-radius: 5px;
    gap: 12px;
}

.contact-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.icon {
    font-size: 36px;
    color: #222;
}

.contact-title {
    font-size: 26px;
    font-weight: 700;
    line-height: 1.4;
    color: #222;
}

.phone,
.fax {
    color: #222;
    display: block;
    font-size: clamp(18px, 5vw, 25px);
    font-weight: 900;
    line-height: 1;
    margin: 0;
    white-space: nowrap;
    text-align: center;
}

.phone+.fax {
    margin-top: 2px;
}

.info {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
    margin-top: 20px;
}

a.btn {
    display: block;
    width: 296px;
    margin: 0 auto;
    background: linear-gradient(to right, #444, #222);
    color: #fff;
    text-align: center;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.12em;
    line-height: 63px;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    z-index: 0;
    transition: color 0.4s ease;
}

a.btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background: linear-gradient(to bottom,
            rgba(255, 255, 255, 0.15) 0%,
            rgba(0, 0, 0, 0.15) 100%),
        radial-gradient(at top center,
            rgba(255, 255, 255, 0.4) 0%,
            rgba(0, 0, 0, 0.4) 120%) #989898;
    background-blend-mode: multiply, multiply;
    z-index: -1;
    transition: width 0.4s ease;
}

a.btn:hover::before {
    width: 100%;
}

/* PCで2ボックスの高さを揃える＋ボタン下揃え */
@media (min-width: 768px) {
    .contact-boxes {
        flex-direction: row;
        justify-content: center;
        align-items: stretch;
    }

    .contact-boxes .contact-box {
        align-self: stretch;
        height: auto;
        min-height: 300px;
    }

    .contact-boxes .contact-box a.btn {
        margin-top: auto;
    }
}

/* ===========================
   フッター
   =========================== */
.site-footer {
    background: #2C2C2C;
    color: #fff;
    padding: 2.5rem 1.5rem;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 16px;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-left {
    flex: 1;
    min-width: 250px;
}

.footer-logo {
    font-weight: 700;
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.footer-address {
    font-size: 1.5rem;
    line-height: 1.8;
    color: #fff;
}

.footer-menu {
    flex: 2;
    text-align: center;
    min-width: 300px;
    margin-top: 2rem;
}

.footer-menu ul {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    
}

.footer-menu li {
    position: relative;
    padding: 0 1rem;
}

.footer-menu li:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    height: 1.2em;
    width: 1px;
    background: #f2f2f2;
    opacity: 0.5;
}

.footer-menu a {
    color: #f2f2f2;
    font-size: 1.5rem;
    transition: color 0.3s;
}

.footer-menu a:hover {
    color: #ddd;
}

.footer-link-icon {
    flex: 0 0 auto;
    min-width: 60px;
}

.footer-link-icon a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border: 1px solid #f2f2f2;
    border-radius: 50%;
    color: #f2f2f2;
    transition: background 0.3s, color 0.3s;
}

.footer-link-icon a:hover {
    background: #f2f2f2;
    color: #222;
}

.l-footer__foot {
    background: #2C2C2C;
}

@media (max-width: 768px) {
    .footer-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-menu ul {
        justify-content: flex-start;
        gap: 1rem;
    }

    .footer-link-icon {
        align-self: flex-end;
        margin-top: 1rem;
    }
}

/* ===========================
   パンくず・ナビ演出
   =========================== */
#breadcrumb {
    background: #2C2C2C;
    color: #fff;
    padding-top: 20px;
}

[class*=" icon-"]::before,
[class^="icon-"]::before {
    display: none;
}

.footer-menu a:hover {
    color: #f76b13;
}

.c-gnav>.menu-item>a::after {
    content: "";
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 0%;
    height: 2px;
    background: currentColor;
    transition: width 0.25s ease;
}

.c-gnav>.menu-item>a:hover::after {
    width: 100%;
}

.p-breadcrumb__text:hover span {
    color: #f76b13;
}

/* ===========================
   お問い合わせフォーム（SmartForm等）
   =========================== */
.smf-item__label__text {
    color: #333;
}

.smf-progress-tracker__item[aria-current="true"] .smf-progress-tracker__item__text {
    color: #f76b13;
    font-weight: 700;
}

.smf-progress-tracker {
    display: flex;
    flex-wrap: nowrap;
    list-style: none;
    margin-bottom: 80px;
    margin-left: 0;
    padding-left: 0;
}

.smf-form--business+.smf-action {
    margin: 60px 0;
}

/* ===========================
   ページトップボタン
   =========================== */
#pagetop.c-fixBtn {
    width: 80px;
    height: 80px;
    border: none;
    box-shadow: none;
    overflow: visible;
}

.icon-chevron-small-up:before,
.icon-chevron-up:before {
    content: none;
}

.c-fixBtn__label {
    position: absolute;
    bottom: -1em;
}

#pagetop.c-fixBtn .c-fixBtn__icon {
    display: block;
    background-image: url(http://kashikura.dhtc.info/wp-content/uploads/2025/05/TOP.png);
    background-repeat: no-repeat;
    background-size: contain;
    width: 100%;
    height: 100%;
    transition: background-image 0.3s ease;
}

#pagetop.c-fixBtn:hover .c-fixBtn__icon {
    background-image: url(http://kashikura.dhtc.info/wp-content/uploads/2025/05/top-white.png);
}

/* ===========================
   ページ個別
   =========================== */
.page-id-123 {
    background: #222;
}

#demo12 {
    margin: 0 0 0 0;
}

a.original-button {
    margin: 0 auto;
}

/* ===========================
   ボタン（VIEW MORE 用）
   =========================== */
.original-button1 {
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    color: #fff;  /* ← 白文字 */
    font-size: 18px;
    border-radius: 0;
    width: 200px;
    height: 40px;
    position: relative;
    transition: 0.3s;
    overflow: hidden;
    background: transparent;
    margin: 0 auto;
}

.original-button1::before,
.original-button1::after {
    content: "";
    position: absolute;
    left: 0;
    width: 100%;
    height: 1px;
    background: #fff; /* ← 白ライン */
    transition: 0.3s;
}

.original-button1::before {
    top: 0;
}

.original-button1::after {
    bottom: 0;
}

.original-button1 .button-arrow {
    margin-left: 10px;
    transition: transform 0.3s ease-in-out;
}

.original-button1:hover {
    color: #e18547; /* ← ホバー時はオレンジ文字 */
}

.original-button1:hover::before {
    transform: translateX(-100%);
}

.original-button1:hover::after {
    transform: translateX(100%);
}

.original-button1:hover .button-arrow {
    transform: translateX(5px);
}

/* スマホ時の中央寄せ */
@media (max-width: 768px) {
    .original-button1 {
        margin: 0 auto;
        display: flex;
        justify-content: center;
    }
}


.footer-menu ul {
  list-style: none;   /* ← 丸を消す */

}




    /* =========================================
       Base
    ========================================= */
    @import url("https://fonts.googleapis.com/css2?family=Spartan:wght@400;700&display=swap");

    :root {
      --easing: cubic-bezier(.2, 1, .2, 1);
      --transition: .8s var(--easing);
      --color-base: #f8f8f8;
    }

    html {
      font-family: "Spartan","游ゴシック体",YuGothic,"Yu Gothic","メイリオ",Meiryo,sans-serif;
      font-size: 62.5%;
      line-height: 1.8;
      background: var(--color-base);
      color: #333;
    }

    body { margin: 0; font-size: 1.6rem; }
    *, *::before, *::after { box-sizing: border-box; }
    img { display: block; border: 0; }

    .l-inner { max-width: 1200px; margin: 0 auto; padding: 0 10rem; }
    .l-section .l-inner { padding: 8rem 0; }

    @media (max-width: 1024px) { .l-inner { padding: 0 4rem; } }
    @media (max-width: 599px)  { html { font-size: 50%; } }

    /* =========================================
       Swiper：画像のみ／余白ゼロ／影なし
    ========================================= */
    .card05 { overflow: hidden; }
    .card05 .swiper { width: 100%; overflow: visible; }

    /* なめらかな等速アニメーションにするために linear を強制 */
    .card05 .swiper-wrapper { transition-timing-function: linear !important; }

    /* スライド（1枚分の箱）。slidesPerView:'auto' と組み合わせて
       各スライドの幅＝中身（.slide）の幅に合わせる */
    .card05 .swiper-slide {
      width: max-content;    /* 中身の幅ぶんだけ広がる */
      margin-right: 0 !important; /* 画像間の余白ゼロ（保険） */
    }

    /* 画像カード本体（影・角丸は付けない） */
    .card05 .slide {
      width: 36rem;          /* PC時の1枚の横幅（必要に応じて変更可） */
      border-radius: 0;
      box-shadow: none;      /* 影なし */
      overflow: hidden;
    }

    /* アスペクト比：16:10 相当（自由に変更可） */
    .card05 .slide-media {
      position: relative;
      padding-top: 62.5%;
    }
    .card05 .slide-media img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    /* SP では少し小さめに */
    @media (max-width: 599px) {
      .card05 .slide { width: 24rem; }
    }





/* =========================================
   インタビュー メインビジュアル
========================================= */

.interview-hero{
  width:100%;
  margin:0;
  overflow:hidden;
}

.interview-hero img{
  width:100%;
  height:auto;
  display:block;
}

/* =========================================
   QUESTIONラベル
========================================= */

.question-box {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  max-width: 100%;
  padding: 10px 22px;
  margin-bottom: 24px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
  background: linear-gradient(135deg, #1f1f1f, #4a4a4a);
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.18);
}

/* =========================================
   QAブロック
========================================= */

.qa-block {
  margin-bottom: 0;
}

.qa-title {
  font-size: 30px;
  font-weight: 700;
  line-height: 1.3;
  color: #333;
  margin-top: 0 !important;
  margin-bottom: 24px;
}

.qa-lead {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.5;
  color: #1c4a8c;
  margin: 20px 0 15px;
}

.wp-block-columns.interview-lastblock {
  background: #dddddd;
  max-width: 1200px;
  width: calc(100% - 40px);
  margin: 80px auto;
  padding: 80px 40px;
  border-radius: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

/* =========================================
   先輩社員インタビュー一覧（カード）
========================================= */

.interview-links {
  background-image: linear-gradient(to right, #434343 0%, #000000 100%);
  padding: 120px 20px;
  margin: 120px 0;
}

.interview-links-head {
  text-align: center;
  margin-bottom: 70px;
}

.interview-links-title {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.4;
  color: #fff;
  margin: 0;
}

.interview-card-wrap {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 30px;
}

.interview-card {
  display: block;
  width: calc((100% - 60px) / 3);
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.interview-card:hover {
  transform: translateY(-6px);
}

.interview-card img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
}

.interview-card-overlay {
  background: #fff;
  padding: 40px 35px;
  min-height: 240px;
  box-sizing: border-box;
}

.interview-card-number {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #f08a24;
  margin: 0 0 20px;
}

.interview-card-catch {
  font-size: 28px;
  font-weight: 500;
  line-height: 1.5;
  color: #333;
  margin: 0 0 24px;
}

.interview-card-meta {
  font-size: 16px;
  line-height: 1.7;
  color: #525252;
  margin: 0;
}

/* =========================================
   入社を考えている方へメッセージ
========================================= */

.message-block {
  max-width: 1200px;
  width: calc(100% - 40px);
  margin: 0 auto;
  padding: 0;
}

.message-block-inner {
  background: #cdd8d9;
  border-radius: 40px;
  padding: 60px 40px;
  display: flex;
  align-items: center;
  gap: 50px;
}

.message-block-image {
  width: 48%;
  flex-shrink: 0;
}

.message-block-image img {
  width: 100%;
  height: 530px;
  object-fit: cover;
  display: block;
}

.message-block-content {
  width: 52%;
}

.message-block-title {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.4;
  color: #333;
  margin: 0 0 36px;
}

.message-block-text {
  font-size: 18px;
  line-height: 2;
  color: #333;
  margin: 0;
}

.post_content h2.message-block-title {
  margin: 0 0 36px;
}

/* =========================================
   インタビュー一覧（交互レイアウト）
========================================= */

.interview-section {
  width: 100%;
  margin: 0;
  padding: 120px 0 120px;
}

.interview-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  margin-bottom: 180px;
}

.interview-item:last-child {
  margin-bottom: 0;
}

.interview-item.reverse {
  flex-direction: row-reverse;
}

.interview-text {
  width: 50%;
  max-width: 600px;
  box-sizing: border-box;
}

.interview-item .interview-text {
  margin-left: auto;
  padding-left: 40px;
  padding-right: 20px;
}

.interview-item.reverse .interview-text {
  margin-left: 0;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 40px;
}

.interview-image {
  width: 50vw;
  flex-shrink: 0;
}

.interview-image img {
  width: 100%;
  height: 430px;
  object-fit: cover;
  object-position: center;
  display: block;
}

.interview-question {
  font-size: 30px;
  font-weight: 700;
  line-height: 1.4;
  color: #333;
  margin: 0 0 24px;
}

.interview-lead {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.5;
  color: #1c4a8c;
  margin: 0 0 20px;
}

.interview-body {
  font-size: 16px;
  line-height: 2;
  color: #333;
  margin: 0;
}

/* WordPress / SWELL 対策 */
.post_content h3.interview-question {
  font-size: 30px;
  font-weight: 700;
  line-height: 1.4;
  color: #333;
  margin: 0 0 24px;
}

.post_content p.interview-lead {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.5;
  color: #1c4a8c;
  margin: 0 0 20px;
}

.post_content p.interview-body {
  font-size: 16px;
  line-height: 2;
  color: #333;
  margin: 0;
}

/* =========================================
   タブレット
========================================= */

@media screen and (max-width: 1024px) {
  .interview-hero {
    aspect-ratio: 16 / 10;
  }

  .interview-card-wrap {
    gap: 20px;
  }

  .interview-card {
    width: calc((100% - 40px) / 3);
  }

  .interview-card img {
    height: 260px;
  }

  .interview-card-overlay {
    padding: 32px 24px;
    min-height: 220px;
  }

  .interview-card-catch {
    font-size: 24px;
  }

  .message-block-inner {
    padding: 50px 30px;
    gap: 35px;
  }

  .message-block-title {
    font-size: 38px;
    margin-bottom: 28px;
  }

  .message-block-text {
    font-size: 16px;
  }

  .message-block-image img {
    height: 440px;
  }

  .interview-section {
    padding: 30px 0 90px;
  }

  .interview-item {
    gap: 40px;
    margin-bottom: 120px;
  }

  .interview-item .interview-text {
    padding-left: 30px;
    padding-right: 20px;
  }

  .interview-item.reverse .interview-text {
    padding-left: 20px;
    padding-right: 30px;
  }

  .interview-question,
  .post_content h3.interview-question {
    font-size: 26px;
  }

  .interview-lead,
  .post_content p.interview-lead {
    font-size: 21px;
  }

  .interview-image img {
    height: 340px;
  }
}

/* =========================================
   スマホ
========================================= */

@media screen and (max-width: 767px) {


.interview-hero img{
  width:100%;
  height:auto;
}


  .interview-hero::after {
    display: none;
  }

  .interview-links {
    padding: 70px 20px;
    margin: 70px 0;
  }

  .interview-links-head {
    margin-bottom: 40px;
  }

  .interview-links-title {
    font-size: 28px;
  }

  .interview-card-wrap {
    flex-direction: column;
  }

  .interview-card {
    width: 100%;
  }

  .interview-card img {
    height: 220px;
  }

  .interview-card-overlay {
    padding: 28px 22px;
    min-height: auto;
  }

  .interview-card-catch {
    font-size: 22px;
  }

  .message-block {
    width: calc(100% - 30px);
  }

  .message-block-inner {
    padding: 30px 20px;
    border-radius: 24px;
    flex-direction: column;
    gap: 24px;
  }

  .message-block-image,
  .message-block-content {
    width: 100%;
  }

  .message-block-image img {
    height: auto;
  }

  .message-block-title {
    font-size: 28px;
    margin-bottom: 20px;
  }

  .message-block-text {
    font-size: 15px;
    line-height: 1.9;
  }

  .interview-section {
    width: calc(100% - 30px);
    margin: 0 auto;
    padding: 20px 0 80px;
  }

  .interview-item,
  .interview-item.reverse {
    flex-direction: column;
    align-items: flex-start;
    gap: 28px;
    margin-bottom: 110px;
  }

  .interview-item:last-child,
  .interview-item.reverse:last-child {
    margin-bottom: 0;
  }

  .interview-text,
  .interview-image {
    width: 100%;
    max-width: none;
  }

  .interview-item .interview-text,
  .interview-item.reverse .interview-text {
    margin: 0;
    padding: 0;
  }

  .interview-text {
    order: 1;
  }

  .interview-image {
    order: 2;
  }

  .question-box {
    margin-bottom: 18px;
  }

  .interview-question,
  .post_content h3.interview-question {
    font-size: 26px;
    margin-bottom: 18px;
  }

  .interview-lead,
  .post_content p.interview-lead {
    font-size: 20px;
    margin-bottom: 16px;
  }

  .interview-body,
  .post_content p.interview-body {
    font-size: 15px;
    line-height: 1.9;
  }

  .interview-image img {
    width: 100%;
    height: auto;
  }
}

/* =========================================
   INTERVIEW PAGE
========================================= */

.interview-hero {
  width: 100%;
  margin: 0;
  overflow: hidden;
}

.interview-hero img {
  width: 100%;
  height: auto;
  display: block;
}

.question-box {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  max-width: 100%;
  padding: 10px 22px;
  margin-bottom: 24px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
  background: linear-gradient(135deg, #1f1f1f, #4a4a4a);
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.18);
}

.interview-section {
  width: 100%;
  margin: 0;
  padding: 120px 0;
}

.interview-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  margin-bottom: 180px;
}

.interview-item:last-child {
  margin-bottom: 0;
}

.interview-item.reverse {
  flex-direction: row-reverse;
}

.interview-text {
  width: 50%;
  max-width: 600px;
  box-sizing: border-box;
}

.interview-item .interview-text {
  margin-left: auto;
  padding-left: 40px;
  padding-right: 20px;
}

.interview-item.reverse .interview-text {
  margin-left: 0;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 40px;
}

.interview-question {
  font-size: 30px;
  font-weight: 700;
  line-height: 1.4;
  color: #333;
  margin: 0 0 24px;
}

.interview-lead {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.5;
  color: #1c4a8c;
  margin: 0 0 20px;
}

.interview-body {
  font-size: 16px;
  line-height: 2;
  color: #333;
  margin: 0;
}

.post_content h3.interview-question {
  font-size: 30px;
  font-weight: 700;
  line-height: 1.4;
  color: #333;
  margin: 0 0 24px;
}

.post_content p.interview-lead {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.5;
  color: #1c4a8c;
  margin: 0 0 20px;
}

.post_content p.interview-body {
  font-size: 16px;
  line-height: 2;
  color: #333;
  margin: 0;
}

.interview-image {
  width: 50vw;
  flex-shrink: 0;
}

.interview-image img {
  width: 100%;
  height: 430px;
  object-fit: cover;
  object-position: center;
  display: block;
}

@media screen and (max-width: 1024px) {
  .interview-section {
    padding: 90px 0;
  }

  .interview-item {
    gap: 40px;
    margin-bottom: 120px;
  }

  .interview-item .interview-text {
    padding-left: 30px;
    padding-right: 20px;
  }

  .interview-item.reverse .interview-text {
    padding-left: 20px;
    padding-right: 30px;
  }

  .interview-question,
  .post_content h3.interview-question {
    font-size: 26px;
  }

  .interview-lead,
  .post_content p.interview-lead {
    font-size: 21px;
  }

  .interview-image img {
    height: 340px;
  }
}

@media screen and (max-width: 767px) {
  .interview-hero img {
    width: 100%;
    height: auto;
  }

  .interview-section {
    width: calc(100% - 30px);
    margin: 0 auto;
    padding: 80px 0;
  }

  .interview-item,
  .interview-item.reverse {
    flex-direction: column;
    align-items: flex-start;
    gap: 28px;
    margin-bottom: 110px;
  }

  .interview-item:last-child,
  .interview-item.reverse:last-child {
    margin-bottom: 0;
  }

  .interview-text,
  .interview-image {
    width: 100%;
    max-width: none;
  }

  .interview-item .interview-text,
  .interview-item.reverse .interview-text {
    margin: 0;
    padding: 0;
  }

  .interview-text {
    order: 1;
  }

  .interview-image {
    order: 2;
  }

  .question-box {
    margin-bottom: 18px;
  }

  .interview-question,
  .post_content h3.interview-question {
    font-size: 26px;
    margin-bottom: 18px;
  }

  .interview-lead,
  .post_content p.interview-lead {
    font-size: 20px;
    margin-bottom: 16px;
  }

  .interview-body,
  .post_content p.interview-body {
    font-size: 15px;
    line-height: 1.9;
  }

  .interview-image img {
    width: 100%;
    height: auto;
  }
}

/* =========================================
   会社案内（中央配置・完成版）
========================================= */

.company-hero {
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  height: 500px;
  overflow: hidden;
  line-height: 0;
}

/* 画像 */
.company-hero img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
}

/* グラデーション */
.company-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.15) 0%,
    rgba(0, 0, 0, 0.25) 45%,
    rgba(0, 0, 0, 0.40) 100%
  );
  z-index: 1;
  pointer-events: none;
}

/* タイトル（中央） */
.company-hero-title {
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;

  margin: 0;
  color: #ffffff;
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.12em;
  text-align: center;

  text-shadow: 0 3px 10px rgba(0, 0, 0, 0.45);
  white-space: nowrap;
}

/* タブレット */
@media screen and (max-width: 1024px) {
  .company-hero {
    height: 420px;
  }

  .company-hero-title {
    font-size: 38px;
  }
}

/* スマホ */
@media screen and (max-width: 767px) {
  .company-hero {
    height: 300px;
  }

  .company-hero-title {
    top: 48%;
    width: 90%;
    font-size: 26px;
    letter-spacing: 0.06em;
    white-space: normal;
  }
}

/* =========================================
   工場紹介 - 機械設備
========================================= */

.factory-machinery {
  position: relative;
  background: linear-gradient(135deg, #1f1f22 0%, #18191c 100%);
  padding: 100px 20px;
  overflow: hidden;
}

/* 背景格子 */
.factory-machinery::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}

.factory-machinery__inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
}

.factory-machinery__heading {
  margin-bottom: 50px;
}

.factory-machinery__sub {
  margin: 0 0 12px;
  color: #ff7a1a;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.factory-machinery__title,
h2.factory-machinery__title {
  margin: 0;
  color: #ffffff;
  font-size: 2.4em;
  font-weight: 700;
  line-height: 1.2;
}

/* グリッド */
.machinery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* カード */
.machinery-card {
  position: relative;
  aspect-ratio: 1 / 1; /* 正方形 */
  padding: 24px 22px 22px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.12);

  display: flex;
  flex-direction: column;
  justify-content: flex-end;

  background:
    linear-gradient(
      to bottom,
      rgba(20,20,22,0.06) 0%,
      rgba(20,20,22,0.18) 38%,
      rgba(20,20,22,0.72) 100%
    ),
    var(--bg) center 42% / cover no-repeat;

  transition:
    transform 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease,
    background 0.3s ease;
}

/* 左上アクセント */
.machinery-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 56px;
  height: 3px;
  background: #ff7a1a;
  z-index: 2;
}

/* hover */
.machinery-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255,122,26,0.45);
  box-shadow: 0 14px 30px rgba(0,0,0,0.28);
  background:
    linear-gradient(
      to bottom,
      rgba(20,20,22,0.03) 0%,
      rgba(20,20,22,0.12) 38%,
      rgba(20,20,22,0.64) 100%
    ),
    var(--bg) center 42% / cover no-repeat;
}

/* 設備名 */
.factory-machinery h3.machinery-card__name {
  margin: 0 !important;
  color: #ffffff;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.35;
  text-shadow: 0 3px 10px rgba(0,0,0,0.55);
}

/* 型番 */
.factory-machinery .machinery-card__model {
  margin: 6px 0 0;
  color: rgba(255,255,255,0.88);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.03em;
  text-shadow: 0 2px 8px rgba(0,0,0,0.45);
}

/* 台数 */
.factory-machinery .machinery-card__model span {
  color: rgba(255,255,255,0.78);
  font-weight: 500;
  margin-left: 6px;
}

/* =========================================
   タブレット
========================================= */
@media screen and (max-width: 1024px) {
  .factory-machinery {
    padding: 80px 20px;
  }

  .factory-machinery__title,
  h2.factory-machinery__title {
    font-size: 40px;
  }

  .machinery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
  }

  .machinery-card {
    padding: 22px 20px 20px;
    background:
      linear-gradient(
        to bottom,
        rgba(20,20,22,0.06) 0%,
        rgba(20,20,22,0.18) 38%,
        rgba(20,20,22,0.72) 100%
      ),
      var(--bg) center 40% / cover no-repeat;
  }

  .machinery-card:hover {
    background:
      linear-gradient(
        to bottom,
        rgba(20,20,22,0.03) 0%,
        rgba(20,20,22,0.12) 38%,
        rgba(20,20,22,0.64) 100%
      ),
      var(--bg) center 40% / cover no-repeat;
  }

  .factory-machinery h3.machinery-card__name {
    font-size: 22px;
  }

  .factory-machinery .machinery-card__model {
    font-size: 15px;
  }
}

/* =========================================
   スマホ
========================================= */
@media screen and (max-width: 767px) {
  .factory-machinery {
    padding: 64px 16px;
  }

  .factory-machinery__heading {
    margin-bottom: 36px;
  }

  .factory-machinery__sub {
    font-size: 18px;
  }

  .factory-machinery__title,
  h2.factory-machinery__title {
    font-size: 34px;
  }

  .machinery-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .machinery-card {
    padding: 20px 18px 18px;
    background:
      linear-gradient(
        to bottom,
        rgba(20,20,22,0.08) 0%,
        rgba(20,20,22,0.20) 40%,
        rgba(20,20,22,0.74) 100%
      ),
      var(--bg) center 38% / cover no-repeat;
  }

  .machinery-card:hover {
    background:
      linear-gradient(
        to bottom,
        rgba(20,20,22,0.05) 0%,
        rgba(20,20,22,0.14) 40%,
        rgba(20,20,22,0.66) 100%
      ),
      var(--bg) center 38% / cover no-repeat;
  }

  .factory-machinery h3.machinery-card__name {
    font-size: 20px;
  }

  .factory-machinery .machinery-card__model {
    font-size: 14px;
  }
}

/* =========================================
   関連会社
========================================= */

.related-company {
  padding: 60px 20px;
  background: #f7f7f7;
  text-align: center;
  margin-top: 60px;
}

.related-company__inner {
  max-width: 800px;
  margin: 0 auto;
}

.related-company__title {
  margin: 0 0 20px;
  font-size: 28px;
  font-weight: 700;
  color: #222;
}

.related-company__name {
  margin: 0;
  font-size: 16px;
  color: #333;
  text-align: center;
}

.related-company__link {
  color: #333;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.3s ease;
}

.related-company__link::after {
  content: "↗";
  margin-left: 6px;
  font-size: 12px;
  color: #666;
  transition: transform 0.3s ease, color 0.3s ease;
}

.related-company__link:hover {
  color: #f76b13;
}

.related-company__link:hover::after {
  color: #f76b13;
  transform: translate(3px, -3px);
}


/* =========================================
   フッター（3列構成・完成版）
========================================= */

footer#footer {
  display: none;
}

.site-footer {
  background: #2c2c2c;
  color: #fff;
  padding: 60px 20px 24px;
  font-family: "Noto Sans JP", sans-serif;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.footer-col {
  min-width: 0;
}


.footer-logo a {
  display: inline-block;
}

.footer-logo img {
  display: block;
  width: 100%;
  max-width: 230px;
  height: auto;
}

.footer-address {
  margin: 0;
  font-size: 1.5rem;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.85);
  text-align: left;
}

.footer-heading {
  margin: 0 0 18px;
  font-size: 1.7rem;
  font-weight: 700;
  line-height: 1.5;
  color: #fff;
}

.footer-links {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-links li {
  margin: 0;
}

.footer-links li + li {
  margin-top: 10px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.5rem;
  line-height: 1.8;
  text-decoration: none;
  transition: color 0.3s ease, opacity 0.3s ease;
}

.footer-links a:hover {
  color: #f76b13;
}

.footer-bottom {
  max-width: 1200px;
  margin: 18px auto 0;
  text-align: center;
}

.footer-bottom small {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.7);
}




/* =========================================
   タブレット・スマホ
========================================= */

@media screen and (max-width: 1024px) {
  .site-footer {
    padding: 50px 20px 20px;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 40px 32px;
  }

  .footer-col--company {
    grid-column: 1 / -1;
  }

  .footer-logo img {
    max-width: 240px;
  }

  .footer-address {
    font-size: 1.4rem;
  }

  .footer-heading {
    font-size: 1.6rem;
  }

  .footer-links a {
    font-size: 1.4rem;
  }
}

@media screen and (max-width: 767px) {
  .site-footer {
    padding: 40px 16px 18px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 28px;
    padding-bottom: 24px;
  }

  .footer-col--company {
    grid-column: auto;
  }

  .footer-logo {
    margin-bottom: 12px;
  }

  .footer-logo img {
    max-width: 220px;
  }

  .footer-address {
    font-size: 1.4rem;
    line-height: 1.8;
  }

  .footer-heading {
    font-size: 1.6rem;
    margin-bottom: 12px;
  }

  .footer-links li + li {
    margin-top: 6px;
  }

  .footer-links a {
    font-size: 1.4rem;
    line-height: 1.7;
  }

  .footer-bottom small {
    font-size: 1.1rem;
  }

/* ヘッダー全体のレイアウト */
.custom-header {
  background: #fff;
  border-bottom: 1px solid #eee;
  padding: 10px 20px;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

/* メニューの並び */
.main-menu {
  display: flex;
  list-style: none;
  gap: 20px;
  align-items: center;
}

.main-menu a {
  text-decoration: none;
  color: #333;
  font-size: 14px;
  font-weight: bold;
}

/* サブメニューの制御 */
.has-submenu {
  position: relative;
}

.submenu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  padding: 10px 0;
  min-width: 150px;
  z-index: 100;
}

.has-submenu:hover .submenu {
  display: block;
}

/* Xのロゴサイズを個別に調整 */
.menu-x-icon .x-svg {
  width: 24px; /* ここで好きな大きさに調整可能 */
  height: 24px;
  fill: #000;
  vertical-align: middle;
  transition: transform 0.2s;
}

.menu-x-icon a:hover .x-svg {
  transform: scale(1.1);
}


.processing-size {
  background: #ffffff;
  padding: 60px 20px;
}

.processing-size__inner {
  max-width: 1100px;
  margin: 0 auto;
}
/* =========================
   CT
========================= */
.p-ct-size .p-ct-size__head {
  margin-bottom: 28px;
}
.p-ct-size .p-ct-size__label {
  display: inline-block !important;
  margin: 0 0 14px !important;
  padding: 10px 16px !important;
  background-color: #000000 !important;
  color: #ff6a00 !important;
  font-size: 18px !important;
  font-weight: 700 !important;
  line-height: 1.4 !important;
  letter-spacing: 0.03em !important;
}
.p-ct-size .p-ct-size__text {
  margin: 0 !important;
  color: #333333 !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  line-height: 1.8 !important;
  letter-spacing: 0.05em !important;
}
/* =========================
   TABLE WRAP
========================= */
.p-ct-size .p-ct-size__tables {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
/* =========================
   TABLE
========================= */
.p-ct-size .p-ct-size__table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
  background: #ffffff;
}
.p-ct-size .p-ct-size__table th,
.p-ct-size .p-ct-size__table td {
  border: 2px solid #666666;
  padding: 8px;
  color: #333333;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.4;
  text-align: center;
  vertical-align: middle;
}
.p-ct-size .p-ct-size__table th {
  font-weight: 700;
}
.p-ct-size .p-ct-size__steel {
  width: 100px;
  font-size: 13px;
  font-weight: 700;
}
/* =========================
   PC
========================= */
@media screen and (min-width: 768px) {
  .p-ct-size .p-ct-size__head {
    margin-bottom: 36px;
  }
  /* ↓ PC時も黒帯オレンジ文字を明示的に維持 */
  .p-ct-size .p-ct-size__label {
    margin: 0 0 16px !important;
    padding: 14px 24px !important;
    background-color: #000000 !important;
    color: #ff6a00 !important;
    font-size: 24px !important;
  }
  .p-ct-size .p-ct-size__text {
    font-size: 16px !important;
  }
  .p-ct-size .p-ct-size__tables {
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    gap: 20px;
  }
  .p-ct-size .p-ct-size__table {
    width: calc(50% - 10px);
  }
  .p-ct-size .p-ct-size__table th,
  .p-ct-size .p-ct-size__table td {
    padding: 10px;
    font-size: 15px;
  }
  .p-ct-size .p-ct-size__steel {
    width: 140px;
    font-size: 16px;
  }
}

/* =========================
投稿ページ余白
========================= */
.c-postTitle {
    margin-bottom: 20px;



