@charset "UTF-8";

/* =========================================================================
   1. 全体基本設定 & ユーティリティ
========================================================================= */
:root {
    color-scheme: light;

    /* --- カラー定義 --- */
    --c-white: #fff;
    --c-black: #000;
    --c-text: #1e1e1e;
    --c-text-sub: #333;
    --c-text-muted: #666;
    --c-primary: #254a84;
    --c-eaprimary: #5a404c;
    --c-accent: #f2a900;
    --c-btn: #04837e;
    --c-bg-gray: #e9edf3;
    --c-bg-yellow: #fef6e5;
    --c-bg-light: #f9f9f9;
    --c-pale-blue: #f0f6ff;
    --c-light-blue: #d3dbe6;
    --c-border: #ccc;
    --c-border-light: #f0f0f0;
    --c-border-dark: #dbdcdc;
    --c-orange: #ec6922;
    --c-dark-orange: #b85018;
    --c-pale-orange: #fdf0e9;
    --c-red: #ef3434;
    --c-dull-red: #b60000;
    --c-border-yellow: #f8d480;
    --c-altpaper: #3f7435;
    --c-apBg: #eaeef4;
    --c-sclWeb: #4fade2;
    --c-sclPaper: #0dac67;
		--c-grayish-blue: #c8d2e0;
		--c-award-pale-color: #d7e6e6;
		--c-lite-bcArea: #054529;
		--c-yellow: #fff000;

    /* --- Font Size (固定値) --- */
    --fs-11: 11px;
    --fs-12: 12px;
    --fs-13: 13px;
    --fs-14: 14px;
    --fs-15: 15px;
    --fs-16: 16px;
    --fs-18: 18px;
    --fs-20: 20px;
    --fs-22: 22px;
    --fs-24: 24px;
    --fs-26: 26px;
    --fs-28: 28px;
    --fs-32: 32px;
    --fs-36: 36px;
    --fs-48: 48px;

    /* --- Font Size (レスポンシブ clamp) --- */
    --fs-c-12-14: clamp(12px, 1vw, 14px);
    --fs-c-13-14: clamp(13px, 1vw + 10px, 14px);
    --fs-c-14-16: clamp(14px, 1vw, 16px);
    --fs-c-14-18: clamp(14px, 2vw, 18px);
    --fs-c-18-21: clamp(18px, 3vw, 21px);
    --fs-c-18-24: clamp(18px, 2vw, 24px);
    --fs-c-18-36: clamp(18px, 2vw, 36px);
    --fs-c-20-26: clamp(20px, 2.4vw, 26px);
    --fs-c-20-28: clamp(20px, 2vw + 6px, 28px);
    --fs-c-24-32: clamp(24px, 4vw, 32px);
    --fs-c-24-36: clamp(24px, 4vw + 12px, 36px);
    --fs-c-24-40: clamp(24px, 4vw + 12px, 40px);
    --fs-c-24-48: clamp(24px, 4vw, 48px);
    --fs-c-32-56: clamp(32px, 2vw, 56px);
}
@media (prefers-reduced-motion: no-preference) {
  html {
    scroll-behavior: smooth !important;
  }
}

html{
	scroll-padding-top: 100px;
}

body {
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 400;
    color: var(--c-text);
    line-height: 1.6;
    background-color: var(--c-white);
    letter-spacing: 0.025em;
}

p {
    font-size: var(--fs-c-14-16);
    font-feature-settings: "palt";
    text-align: justify;
    line-height: 1.75;
    margin-bottom: 1.75em;
}

dt,
dd,
li {
    font-size: var(--fs-c-12-14);
}

address {
    font-style: normal;
}

sup {
    font-size: 50%;
}

/* pictureタグ内の画像のアスペクト比崩れを防止 */
img {
    max-width: 100%;
    height: auto;
    /* ↓ これがアスペクト比を正常に保つ特効薬です */
    object-fit: cover;
}

picture {
    display: block;
    width: 100%;
}

.disc li {
    margin-left: 1em;
    margin-bottom: 1em;
    list-style-type: disc;
}

.redColor {
    color: var(--c-red);
}

.blackColor {
    color: var(--c-text);
}

.blueColor {
    color: var(--c-primary);
}
.orangeColor {
    color: var(--c-orange);
}


.marker {
    background: linear-gradient(transparent 70%, rgba(248, 212, 128) 50%);
    display: inline;
    background-repeat: no-repeat;
    background-size: 0% 100%;
    transition: background-size 1.5s;
}

.marker.on {
    background-size: 100% 100%;
}

.mAuto {
    margin-left: auto;
    margin-right: auto;
}

.mb1em {
    margin-bottom: 1em;
}

.mb4em {
    margin-bottom: 4em;
}

.fwBlack {
    font-weight: 900;
}

.fsSmall {
    font-size: 70%;
}

.fsLarge {
    font-size: 171%;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

.mt64 {
    margin: 64px auto 0;
}

.block64 {
    margin: 64px auto;
}

.block2em {
    margin: 2em auto;
}

.mp64 {
    margin: 64px auto;
    padding: 64px 0;
}

.btop {
    border-top: solid 1px var(--c-border-dark);
}

.tac {
    text-align: center;
}

.tar {
    text-align: right;
}

.annotation {
    font-size: clamp(10px, 2vw, 12px);
    line-height: 1.5;
}

.width1200 {
    width: 90%;
    max-width: 1200px;
}

footer {
    padding-top: 64px;
    border-top: solid 1px var(--c-border-dark);
}

/* 遅延読み込み用フェードインスタイル */
img.fade-target {
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

img.fade-target.loaded {
    opacity: 1;
}

/* 共通：リンクボタン */
.linkBtn {
    display: inline-flex;
    align-items: stretch;
    text-decoration: none;
    min-height: 54px;
}

.linkBtn:hover {
    opacity: 0.8;
}

.linkBtn .btnText {
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.8em 1em 0.8em 1.5em;
    color: var(--c-white);
    font-weight: bold;
    font-size: var(--fs-c-14-16);
    line-height: 1.4;
    text-align: center;
    background-color: var(--c-btn);
    border-radius: 4px 0 0 4px;
}

.linkBtn .btnArrow {
    flex-shrink: 0;
    width: 24px;
    background-image: url("/wp-content/themes/wk_altpaper_2026/common_img/link-cursol-right.svg");
    background-repeat: no-repeat;
    background-position: right center;
    background-size: cover;
}

.btnCenter {
    display: flex;
    justify-content: center;
    width: 100%;
}

.btnCenter p {
    margin: 0;
    text-align: center;
}

.btnWide {
    width: 100%;
}

.addBox{
	margin: 0 auto 64px;
	width: 90%;
	max-width: 1200px;
}


/* =========================================================================
   2. ヘッダー共通（グローバルナビゲーション）
========================================================================= */
/* 追従サイドバー（フォーム／コラム著者ボックス等）の top 基準となるヘッダー実高。
   実測px は js/common.js が --header-h に上書きするが、ここはJS実行前の
   フォールバック既定値。ヘッダーの高さはローカルナビ有無等でテンプレごとに
   異なるため、正確な値はJSの実測に委ねる。 */
body { --header-h: 160px; }
body.is-lp { --header-h: 0px; } /* ヘッダー無しLPは0（初期表示のズレ防止。JSでも0になる） */

.globalHeader {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--c-white);
    z-index: 1000;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
}

.headerContainer {
    max-width: 1920px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 5% 8px;
}

.headerLogo .hTxt {
    font-size: var(--fs-14);
    white-space: nowrap;
    margin-bottom: 4px;
}

/* ハンバーガーボタン */
.hamburger-btn {
    display: block;
    width: 44px;
    height: 44px;
    position: relative;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.hamburger-btn span {
    display: block;
    position: absolute;
    width: 24px;
    height: 2px;
    background-color: var(--c-text-sub);
    left: 10px;
    transition: all 0.3s ease;
}

.hamburger-btn span:nth-child(1) {
    top: 13px;
}

.hamburger-btn span:nth-child(2) {
    top: 21px;
}

.hamburger-btn span:nth-child(3) {
    top: 29px;
}

.hamburger-btn[aria-expanded="true"] span:nth-child(1) {
    top: 21px;
    transform: rotate(45deg);
}

.hamburger-btn[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}

.hamburger-btn[aria-expanded="true"] span:nth-child(3) {
    top: 21px;
    transform: rotate(-45deg);
}

/* メニューエリア */
.headerMenuArea {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: var(--c-white);
    padding: 80px 5% 40px;
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    z-index: 1000;
}

.headerMenuArea.is-active {
    transform: translateX(0);
}

/* --- スマホ時の魔法のレイアウト（Grid + Contents + Order） --- */
.headerMenuArea nav,
.headerSubMenuArea,
.headerMainMenuArea {
    display: contents;
}

.headerMenuArea {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0 8px;
    align-content: start;
}

.headerMenuArea li {
    grid-column: span 2;
}

.headerSubMenuArea a {
    text-decoration: none;
    color: var(--c-text-sub);
}

/* 1. 【一番上】お問い合わせ・電話 */
.headerMenuArea .smenu01 {
    order: 1;
    grid-column: span 2;
    margin-bottom: 16px;
}

.headerMenuArea .smenu02 {
    order: 2;
    grid-column: span 2;
    margin-bottom: 16px;
}

.headerMenuArea .smenu01 a,
.headerMenuArea .smenu02 a {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    border: 1px solid var(--c-border);
    border-radius: 4px;
    padding: 12px 4px;
    background-color: var(--c-bg-light);
    font-weight: bold;
    font-size: var(--fs-c-12-14);
    height: 100%;
    line-height: 1.4;
    transition: opacity 0.3s;
}

.headerMenuArea .smenu01 a::before,
.headerMenuArea .smenu02 a::before {
    content: "";
    display: block;
    width: 20px;
    height: 20px;
    margin-bottom: 4px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.headerMenuArea .smenu01 a::before {
    background-image: url("/wp-content/themes/wk_altpaper_2026/common_img/pict-mail.svg");
}

.headerMenuArea .smenu02 a::before {
    background-image: url("/wp-content/themes/wk_altpaper_2026/common_img/pict-tel.svg");
}

/* 2. 【2番目】オンラインプレゼン */
.headerMenuArea .smenu06 {
    order: 3;
    text-align: center;
    border-radius: 4px;
    background-color: var(--c-accent);
    font-weight: bold;
    margin-bottom: 24px;
}

.headerMenuArea .smenu06>a {
    display: block;
    padding: 0.8em 1.2em;
    color: var(--c-text-sub);
}

/* 3. 【3番目】メインメニュー群 */
.headerMenuArea .mmenu01 {
    order: 4;
}

.headerMenuArea .mmenu02 {
    order: 5;
}

.headerMenuArea .mmenu03 {
    order: 6;
}

.headerMenuArea .mmenu04 {
    order: 7;
}

/* 4段目：画像バナー */
.headerMenuArea .mmenu05 {
    order: 8;
    grid-column: span 1;
    padding-top: 16px;
    margin-bottom: 24px;
}

.headerMenuArea .mmenu06 {
    order: 9;
    grid-column: span 1;
    padding-top: 16px;
    margin-bottom: 24px;
}

.headerMenuArea .mmenu05 a,
.headerMenuArea .mmenu06 a {
    display: flex;
    justify-content: center;
    width: 100%;
    padding: 0;
}

.headerMenuArea .mmenu05 img,
.headerMenuArea .mmenu06 img {
    max-width: 100%;
    height: auto;
}

.headerMainMenuArea>li:not(.mmenu05):not(.mmenu06) {
    border-bottom: 1px solid var(--c-border-light);
}

.headerMainMenuArea a,
.headerMainMenuArea button.menu-trigger {
    text-decoration: none;
    font-weight: 500;
    color: var(--c-text-sub);
    padding: 16px 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: var(--fs-c-14-16);
    background: none;
    border: none;
    cursor: pointer;
}

.has-child>button.menu-trigger::after {
    content: "";
    display: inline-block;
    width: 1em;
    height: 1em;
    background: url("/wp-content/themes/wk_altpaper_2026/common_img/pict-plus.svg") no-repeat center / contain;
    transition: transform 0.3s;
    margin-left: 8px;
}

.dropdownMenu {
    display: none;
    padding: 0 0 16px 16px;
    border-left: 2px solid var(--c-accent);
}

.dropdownMenu li a {
    display: block;
    padding: 12px 0;
    font-size: var(--fs-14);
    border-bottom: 1px solid var(--c-border-light);
}

.has-child.is-open .dropdownMenu {
    display: block;
}

.has-child.is-open>button.menu-trigger::after {
    transform: rotate(45deg);
}

/* 4. 【一番下】サブメニュー群 */
.smenu03 {
    order: 10;
}

.smenu04 {
    order: 11;
}

.smenu05 {
    order: 12;
}

.smenu03 a,
.smenu04 a,
.smenu05 a {
    display: flex;
    align-items: center;
    padding: 16px 0;
    font-size: var(--fs-c-14-16);
    font-weight: 500;
    color: var(--c-text-sub);
    border-bottom: 1px solid var(--c-border-light);
    transition: opacity 0.3s;
}

.smenu03 a::before,
.smenu04 a::before,
.smenu05 a::before {
    content: "";
    display: inline-block;
    width: 1.2em;
    height: 1.2em;
    margin-right: 8px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.smenu03 a::before {
    background-image: url("/wp-content/themes/wk_altpaper_2026/common_img/pict-star.svg");
}

.smenu04 a::before {
    background-image: url("/wp-content/themes/wk_altpaper_2026/common_img/pict-germination.svg");
}

.smenu05 a::before {
    background-image: url("/wp-content/themes/wk_altpaper_2026/common_img/pict-heart.svg");
}

/* ヘッダー共通のホバーアクション */
.headerSubMenuArea a:hover,
.headerMainMenuArea a:hover,
.headerMainMenuArea button.menu-trigger:hover,
.dropdownMenu li a:hover {
    opacity: 0.5;
}

/* ▽ヘッダーのメディアクエリ▽ */
@media (min-width: 1024px) {
    .headerContainer {
        padding: 0 5%;
    }

    .hamburger-btn {
        display: none;
    }

    .headerMenuArea {
        position: static;
        height: auto;
        background-color: transparent;
        padding: 0;
        overflow-y: visible;
        transform: none;
        flex: 1;
        display: block;
    }

    .headerMenuArea nav {
        display: block;
    }

    .headerSubMenuArea,
    .headerMainMenuArea {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: flex-end;
        width: auto;
        margin: 0;
    }

    .headerMenuArea li {
        grid-column: auto;
        order: 0 !important;
    }

    .tel-link {
        pointer-events: none;
        cursor: default;
    }

    .headerMenuArea .smenu01,
    .headerMenuArea .smenu02,
    .headerMenuArea .smenu06 {
        margin-bottom: 0;
    }

    .headerMenuArea .smenu01 a,
    .headerMenuArea .smenu02 a {
        display: inline;
        border: none;
        padding: 0;
        background: none;
        font-weight: normal;
        font-size: inherit;
        height: auto;
        line-height: inherit;
    }

    .headerMenuArea .smenu01 a::before,
    .headerMenuArea .smenu02 a::before {
        display: inline-block;
        width: 1.1em;
        height: 1.1em;
        margin-bottom: 0;
        margin-right: 4px;
        vertical-align: middle;
    }

    .headerMenuArea .mmenu05,
    .headerMenuArea .mmenu06 {
        padding-top: 0;
        margin-bottom: 0;
    }

    .headerMenuArea .mmenu05 a,
    .headerMenuArea .mmenu06 a {
        width: auto;
        display: inline-flex;
        justify-content: flex-start;
    }

    .smenu03 a,
    .smenu04 a,
    .smenu05 a {
        display: inline;
        padding: 0;
        font-size: inherit;
        border: none;
        font-weight: normal;
    }

    .smenu03 a::before,
    .smenu04 a::before,
    .smenu05 a::before {
        width: 1.1em;
        height: 1.1em;
        margin-right: 4px;
        vertical-align: middle;
    }

    .headerMenuArea .smenu06 {
        border-radius: 0 0 4px 4px;
    }

    .headerSubMenuArea {
        gap: clamp(8px, 1.2vw, 1.2em);
        margin-bottom: 12px;
        font-size: var(--fs-12);
    }

    .headerMainMenuArea {
        gap: 8px;
    }

    .headerMainMenuArea>li,
    .headerMainMenuArea>li:not(.mmenu05):not(.mmenu06) {
        width: auto;
        border-bottom: none;
    }

    .headerMainMenuArea>.mmenu01,
    .headerMainMenuArea>.mmenu02,
    .headerMainMenuArea>.mmenu03,
    .headerMainMenuArea>.mmenu04 {
        margin-right: 24px;
    }

    .headerMainMenuArea a,
    .headerMainMenuArea button.menu-trigger {
        padding: 0;
        width: auto;
        display: inline-flex;
        font-size: inherit;
    }

    .has-child {
        position: relative;
        padding-bottom: 10px;
        margin-bottom: -10px;
    }

    .dropdownMenu {
        display: block;
        position: absolute;
        top: 100%;
        left: 0;
        min-width: 320px;
        background-color: var(--c-white);
        border: 1px solid var(--c-border-dark);
        border-radius: 4px;
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
        padding: 8px 0;
        z-index: 100;
        opacity: 0;
        visibility: hidden;
        transform: translateY(10px);
        transition: 0.3s;
    }

    .dropdownMenu li a {
        padding: 12px 24px;
    }

    .has-child:hover .dropdownMenu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
}


/* =========================================================================
   3. ローカルメニュー（サービス固有ヘッダー）
========================================================================= */

/* --- 共通・スマホ用（アコーディオン） --- */
/* ★ 外枠：背景色や全体幅の確保を担当 */
.localMenuArea {
    width: 100%;
    background-color: var(--c-bg-light);
    border-top: 1px solid var(--c-border-light);
    /* メインヘッダーとの区切り */
}

/* ★ 内枠：中身のレイアウトや幅制限を担当 */
.localMenuInner {
    padding: 0 5%;
    display: flex;
    flex-wrap: wrap;
    /* スマホ時は折り返す */
    justify-content: space-between;
    align-items: center;
}

.serviceLogo {
    /* ★ロゴ側に上下の余白を持たせることで、メニュー側の縦線を広げやすくする */
    padding: 10px 0;
}

.serviceLogo img {
    display: block;
    max-width: 160px;
    /* スマホ時は少し小さく */
    height: auto;
}

/* スマホ用トグルボタン */
.local-menu-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: none;
    border: 1px solid var(--c-border);
    border-radius: 4px;
    padding: 6px 12px;
    font-size: var(--fs-12);
    font-weight: bold;
    color: var(--c-text-sub);
    cursor: pointer;
}

/* ボタンの矢印アイコン */
.local-menu-btn span {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-right: 2px solid var(--c-text-sub);
    border-bottom: 2px solid var(--c-text-sub);
    transform: rotate(45deg) translateY(-2px);
    transition: transform 0.3s;
}

.local-menu-btn[aria-expanded="true"] span {
    transform: rotate(-135deg) translateY(0);
}

/* スマホ用メニューリスト */
.localMenuNav {
    width: 100%;
    display: none;
    /* 初期状態は非表示 */
    border-top: 1px solid var(--c-border-light);
}

.localMenuNav.is-active {
    display: block;
    /* JSでクラスが付与されたら表示 */
}

.localMenuList {
    display: flex;
    flex-direction: column;
    list-style: none;
    padding: 0;
    margin: 0;
}

.localMenuList li {
    border-bottom: 1px solid var(--c-border-light);
}

.localMenuList li:last-child {
    border-bottom: none;
}

.localMenuList a {
    display: block;
    padding: 14px 0;
    text-decoration: none;
    color: var(--c-text-sub);
    font-size: var(--fs-14);
    font-weight: 500;
    text-align: center;
    transition: background-color 0.3s;
}

.localMenuList a:hover {
    background-color: var(--c-bg-gray);
}


/* --- PC用メディアクエリ（1024px以上） --- */
@media (min-width: 1024px) {
    .localMenuInner {
        flex-wrap: nowrap;
        /* ★親要素を stretch にすることで、子要素（nav）が親の高さに合わせて伸びる */
        align-items: stretch;
        /* ★ 1024px以上で、最大幅を決めて中央寄せ */
        max-width: 1920px;
        margin: 0 auto;
    }

    .serviceLogo {
        padding: 8px 0;
        /* PCでは少し広め */
        display: flex;
        align-items: center;
        /* 親がstretchでもロゴ自体は中央に配置 */
    }

    .serviceLogo img {
        max-width: 211px;
        /* 元のサイズに戻す */
    }

    .local-menu-btn {
        display: none;
        /* トグルボタンはPCで隠す */
    }

    .localMenuNav {
        display: flex;
        width: auto;
        border-top: none;
    }

    .localMenuList {
        flex-direction: row;
        height: 100%;
        /* 親のstretchに合わせる */
    }

    .localMenuList li {
        border-bottom: none;
        border-left: 1px solid var(--c-border);
        /* 縦の区切り線を引く */
        /* ★全メニューを文字数に関わらず一定幅に固定（画面幅に応じて120px〜150pxで伸縮） */
        width: clamp(120px, 10vw, 150px);
    }

    .localMenuList li:last-child {
        border-right: 1px solid var(--c-border);
        /* 一番右にも線を引く場合 */
    }

    .localMenuList a {
        display: flex;
        align-items: center;
        /* 文字を縦中央揃え */
        justify-content: center;
        /* 文字を枠内の左右中央に配置 */
        height: 100%;
        /* aタグを親のliいっぱいに広げる（＝クリック範囲の最大化） */
        padding: 0 8px;
        /* 固定幅になったので左右paddingは最小限に */
        font-size: var(--fs-c-13-14);
        text-align: center;
        text-decoration: none;
    }
}


/* =========================================================================
   4. フッター共通
========================================================================= */
.footerContainer01 {
    margin: 0 auto;
    padding: 0 24px 64px;
    display: flex;
    flex-direction: column;
    gap: 32px;
    max-width: 1280px;
}

.logoBox {
    width: 100%;
}

.navBox {
    width: 100%;
}

.navBox+.navBox {
    border-left: none;
    padding-left: 0;
}

.navBox>h2 {
    font-size: var(--fs-16);
    font-weight: normal;
    border: solid 1px var(--c-black);
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    padding: 8px;
}

.navBox>h2::before {
    content: "";
    display: block;
    width: 16px;
    height: 16px;
    background-image: url("/wp-content/themes/wk_altpaper_2026/common_img/link-cursol-under.svg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    flex-shrink: 0;
}

.navBox ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.navBox li {
    padding-left: 1em;
}

.navBox a {
    text-decoration: none;
    color: var(--c-text-sub);
    font-size: var(--fs-14);
    transition: opacity 0.3s;
}

.navBox a:hover {
    text-decoration: underline;
    opacity: 0.8;
}

.footerContainer02 {
    background-color: var(--c-light-blue);
    padding: 40px 5%;
    display: grid;
    gap: 16px;
    justify-content: center;
    grid-template-columns: minmax(307px, 400px);
}

.cardContainer {
    background-color: var(--c-white);
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.cardContainer>a {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 20px;
    gap: 12px;
    text-decoration: none;
    color: var(--c-text-sub);
    height: 100%;
    box-sizing: border-box;
    transition: opacity 0.3s;
}

.cardContainer>a:hover {
    opacity: 0.8;
}

.cardLogo {
    flex: 0 0 100px;
    width: 100px;
}

.cardLogo img {
    width: 100%;
    height: auto;
    display: block;
}

.cardContent {
    flex: 1;
}

.cardContent>h2 {
    font-size: var(--fs-16);
    font-weight: bold;
    margin-bottom: 6px;
    line-height: 1.4;
    color: var(--c-primary);
}

.cardContent>p {
    font-size: var(--fs-12);
    line-height: 1.5;
    text-align: justify;
}

footer>nav:last-of-type {
    background-color: var(--c-primary);
}

.footerContainer03 {
    list-style: none;
    padding: 24px;
    margin: 0 auto;
    max-width: 1280px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
}

.footerContainer03 li+li {
    border-left: 1px solid rgba(255, 255, 255, 0.5);
    padding-left: 16px;
    margin-left: 16px;
}

.footerContainer03 a {
    color: var(--c-white);
    text-decoration: none;
    font-size: var(--fs-14);
    transition: opacity 0.3s;
}

.footerContainer03 a:hover {
    text-decoration: underline;
    opacity: 0.8;
}

.footerContainer04 {
    margin: 0 auto;
    padding: 24px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    max-width: 1280px;
}

.footerLoginBtn a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0.8em 1.5em;
    border: solid 1px var(--c-border-dark);
    border-radius: 4px;
    color: var(--c-text-sub);
    text-decoration: none;
    font-size: var(--fs-14);
    font-weight: bold;
    transition: opacity 0.3s ease;
}

.footerLoginBtn a::before {
    content: "";
    display: block;
    width: 7px;
    height: 14px;
    background-image: url("/wp-content/themes/wk_altpaper_2026/common_img/member-login-cursol.svg");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    flex-shrink: 0;
}

.footerLoginBtn a:hover {
    opacity: 0.5;
}

.footerContainer05 {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.footerContainer05 li+li {
    border-left: 1px solid var(--c-border);
    padding-left: 16px;
    margin-left: 16px;
}

.footerContainer05 a {
    text-decoration: none;
    color: var(--c-text-sub);
    font-size: var(--fs-14);
    transition: opacity 0.3s ease;
}

.footerContainer05 a:hover {
    text-decoration: underline;
    opacity: 0.5;
}

.copyright {
    padding: 16px;
    background-color: var(--c-primary);
    color: var(--c-white);
    text-align: center;
    font-size: var(--fs-14);
}

/* ▽フッターのメディアクエリ▽ */
@media (min-width: 640px) {
    .footerContainer02 {
        grid-template-columns: repeat(2, 307px);
    }

    .cardContent {
        max-width: 167px;
    }
}

@media (min-width: 1024px) {
    .footerContainer01 {
        flex-direction: row;
        justify-content: space-between;
        gap: 16px;
    }

    .logoBox {
        flex: 0 0 200px;
        width: auto;
    }

    .navBox {
        flex: 1;
        width: auto;
    }

    .navBox+.navBox {
        border-left: 1px solid var(--c-border);
        padding-left: 16px;
    }
}

@media (min-width: 1280px) {
    .footerContainer02 {
        grid-template-columns: repeat(4, 307px);
    }
}


/* =========================================================================
   5. モーダル共通設定
========================================================================= */
.modalOverlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.modalOverlay.is-open {
    opacity: 1;
    visibility: visible;
}

.modalPanel {
    background-color: var(--c-white);
    width: 90%;
    max-width: 500px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.15);
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.modalOverlay.is-open .modalPanel {
    transform: translateY(0);
}

.modalHeader {
    background-color: var(--c-accent);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    font-size: var(--fs-16);
    font-weight: bold;
}

.modalTit {
    display: flex;
    align-items: center;
    gap: 8px;
}

.modalTit::before {
    content: "";
    display: block;
    width: 20px;
    height: 20px;
    background-image: url("/wp-content/themes/wk_altpaper_2026/common_img/modal-pc-icon.svg");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.modalCloseBtnArea {
    cursor: pointer;
    display: flex;
    align-items: center;
    transition: opacity 0.3s;
}

.modalCloseBtnArea:hover {
    opacity: 0.7;
}

.modalContent {
    padding: 24px 20px;
}

.modalContent p {
    font-size: var(--fs-14);
    line-height: 1.6;
    margin-bottom: 12px;
}

.modalLinkItem {
    margin-bottom: 24px;
}

.modalLinkArea a,
.modalDlLink a {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    padding: 1em;
    border: solid 1px var(--c-border-dark);
    border-radius: 4px;
    color: var(--c-text-sub);
    text-decoration: none;
    font-weight: bold;
    background-color: var(--c-bg-light);
    transition: opacity 0.3s, background-color 0.3s;
    margin-bottom: 8px;
}

.modalLinkArea a:hover,
.modalDlLink a:hover {
    background-color: var(--c-border-light);
    opacity: 0.5;
}

.modalLinkArea a::before,
.modalDlLink a::before {
    content: "";
    display: block;
    width: 7px;
    height: 14px;
    background-image: url("/wp-content/themes/wk_altpaper_2026/common_img/member-login-cursol.svg");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    flex-shrink: 0;
}

.modalSubTxt {
    font-size: var(--fs-12) !important;
    color: var(--c-text-muted);
    margin-bottom: 0 !important;
}

/* トグル関連 */
.modalToggleTrigger {
    cursor: pointer;
    color: var(--c-primary);
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 6px;
    user-select: none;
    transition: opacity 0.3s;
    margin-top: 20px;
}

.modalToggleTrigger:hover {
    opacity: 0.6;
}

.modalToggleTrigger::after {
    content: "";
    display: block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 5px 4px 0 4px;
    border-color: var(--c-primary) transparent transparent transparent;
    transition: transform 0.3s;
}

.modalToggleTrigger.is-active::after {
    transform: rotate(-180deg);
}

.modalToggleContent {
    display: none;
    padding-top: 16px;
    border-top: 1px dashed var(--c-border);
    margin-top: 8px;
}


/* =========================================================================
   6. 共通コンポーネント（他ページでも使い回すパーツ）
========================================================================= */

/* --- パンくずリスト --- */
.bcArea {
    background-color: var(--c-primary);
}


/* EAP */
.bcAreaEap {
    background-color: var(--c-eaprimary);
}

/* ソシキスイッチ */
.bcAreaSs {
    background-color: var(--c-orange);
}

/* SC-Lite */
.bcAreaScLite {
    background-color: var(--c-lite-bcArea);
}

/* Altpaper */
.bcAreaAp {
    background-color: var(--c-altpaper);
}

.breadCrumb {
    list-style: none;
    /* 上下は8pxで狭め、左右は5%でヘッダー等と揃える */
    padding: 8px 5%;
    margin: 0 auto;
    max-width: 1920px;
    /* headerContainerと揃える */
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    font-size: var(--fs-12);
    color: var(--c-white);
}

.breadCrumb li {
    display: flex;
    align-items: center;
    font-size: var(--fs-12);
}

.breadCrumb li:not(:last-child)::after {
    content: ">";
    display: inline-block;
    margin-left: 8px;
    color: rgba(255, 255, 255, 0.7);
    /* 区切り文字は少し透過させて馴染ませる */
}

.breadCrumb a {
    color: var(--c-white);
    text-decoration: none;
    transition: opacity 0.3s;
}

.breadCrumb a:hover {
    text-decoration: underline;
    opacity: 0.7;
}

/* 2カラム見出しエリア（.splitContainer） */
.splitContainer {
    margin: 0 0 clamp(60px, 9vw + 27px, 64px) 0;
    display: flex;
    flex-direction: column;
}

.leftHArea,
.rightParea {
    padding-top: 2em;
}

.leftHWrap,
.leftHWrap p {
    text-align: center;
}

.splitH2Tit {
    font-family: Arial, sans-serif;
    font-size: clamp(40px, 5vw + 20px, 80px);
    color: var(--c-accent);
}

.splitPtit {
    font-size: clamp(24px, 3.5vw + 12px, 52px);
    font-weight: 700;
}

.rightParea {
    background: linear-gradient(to right, var(--c-white) 0%, var(--c-bg-gray) 100%);
}

.rightPWrap {
    margin: 0 auto;
    padding: 0 5%;
    width: 100%;
}

.splitContainer.is-reverse {
    background-color: var(--c-white);
    background-image: url("/wp-content/themes/wk_altpaper_2026/top_img/bak_about.svg");
    background-repeat: no-repeat;
    background-position: right center;
}

.splitContainer.is-reverse .leftHArea {
    background: linear-gradient(to left, var(--c-white) 0%, var(--c-bg-gray) 100%);
}

.splitContainer.is-reverse .rightParea {
    background: transparent;
}

/* 導入実績スライダー */
.topJisseki {
    overflow: hidden;
}

.jissekiHeader {
    padding: 0.8em 1% 1.5em;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: var(--c-bg-yellow);
    text-align: center;
    gap: 12px;
}

.jissekiHeader>h2,
.jissekiHeader>p {
    font-size: var(--fs-c-24-48);
    font-weight: 900;
    margin: 0;
}

.largeBlueTxt {
    color: var(--c-primary);
    font-size: 1.5em;
}

.jissekiLogo {
    display: flex;
    overflow: hidden;
    width: 100vw;
    padding: 24px 0;
    background-color: var(--c-white);
}

.jissekiLogo ul {
    display: flex;
    flex-shrink: 0;
    list-style: none;
    margin: 0;
    padding: 0;
    will-change: transform;
}

.jissekiLogo li {
    flex-shrink: 0;
    width: clamp(140px, 18vw, 220px);
    padding: 0 clamp(10px, 2vw, 24px);
}

.jissekiLogo li img {
    width: 100%;
    height: auto;
    max-height: 80px;
    object-fit: contain;
}

.jissekiLogo.is-slow:hover ul {
    animation-play-state: paused !important;
}

.jissekiLogo.is-slow ul {
    animation: marquee 80s linear infinite;
}

.jissekiLogo.is-fast ul {
    animation: marquee 50s linear infinite;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-100%);
    }
}

/* サンキューページ */
.thankyouArea {
    margin: 0 auto;
    width: 720px;
}

.tkaSupport {
    display: flex;
    flex-wrap: wrap;
}

.tkaSupport dt,
.tkaSupport dd {
    margin: 0.5em auto;
    padding: 0.5em;
    width: 90%;
    text-align: center;
}

.tkaSupport dt {
    background-color: var(--c-bg-gray);
    border-radius: 4px;
}

.attention {
    margin-bottom: 64px;
    padding: 16px;
    border: solid 1px var(--c-border-yellow);
    border-radius: 8px;
    background-color: var(--c-bg-yellow);
}

.attention>p {
    margin-bottom: 12px;
    text-align: center;
    font-size: var(--fs-24);
}

.contactData {
    display: flex;
    flex-wrap: wrap;
}

.contactData dt,
.contactData dd {
    width: 100%;
    text-align: center;
}

.contactData dt {
    margin: 0.5em auto;
    padding: 0.5em;
    background-color: var(--c-border-yellow);
    border-radius: 4px;
}

/* カード型Point */
.twoCardColumn {
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    width: 90%;
    gap: 2em;
}

.threeCardColumn {
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    width: 90%;
    max-width: 1200px;
    gap: 3em;
}

.pointCard {
    padding: 24px;
    border: solid 1px var(--c-border-dark);
    position: relative;
    background-color: var(--c-white);
    width: 100%;
}

.pointCardImg {
    margin-bottom: 1em;
}

.pointCardImg img {
    width: 100%;
}

.pointNum {
    padding: 0.5em 1em;
    background-color: var(--c-accent);
    width: fit-content;
    font-weight: 700;
    text-align: center;
    border-radius: 8px;
    position: absolute;
    top: -8px;
    left: -8px;
}

.pointCardTit {
    padding: 0 0 1em 48px;
    text-align: center;
    font-size: var(--fs-24);
    color: var(--c-primary);
    font-weight: 900;
    font-feature-settings: "palt";
}


/* 紙版 */
.paperSample {
    border: solid 1px var(--c-border-dark);
    background-color: var(--c-white);
}

.paperSample>h3 {
    padding: 0.5em 1em;
    background-color: var(--c-primary);
    color: var(--c-white);
}

.paperImgArea {
    margin: 1em;
    position: relative;
    border: solid 1px var(--c-border-dark);
}

.paperImgArea02 {
    position: relative;
    border: solid 1px var(--c-border-dark);
}

.zoomBtn {
    position: absolute;
    top: 0;
    right: 0;
}

.paperTxt {
    margin: 1em;
}

/* 従業員満足度調査 */
.esQuestion {
    padding: 0.5em 1em;
    background-color: var(--c-accent);
    text-align: center;
    font-weight: 700;
}

.cursolCenter {
    padding: 0.5em;
    display: flex;
    align-items: center;
    justify-content: center;
}

.normalCardArea {
    width: 100%;
    display: flex;
    flex-direction: column;
}

.normalCard {
    padding: 18px;
    border: solid 1px var(--c-border);
    background-color: var(--c-white);
    flex: 1;
}

.normalCardTit {
    padding: 0 0 0.5em;
    text-align: left;
    font-size: var(--fs-24);
    color: var(--c-primary);
    font-weight: 700;
    font-feature-settings: "palt";
}

.normalCardImg {
    margin-bottom: 1em;
}

.normalCardImg img {
    width: 100%;
}

@media (min-width: 1024px) {
    .normalCardArea {
        align-content: flex-start;
        margin-bottom: 2em;
        width: calc(100% / 3 - 2em);
    }
}

/* 導入事例 */
.topJirei {
    background-color: var(--c-white);
    background-image: url("/wp-content/themes/wk_altpaper_2026/top_img/bak_jirei.svg");
    background-position: bottom right;
    background-repeat: no-repeat;
    background-size: 50%;
    padding: 80px 0 120px;
}

.topJirei>section>h2 {
    text-align: center;
    font-size: var(--fs-c-24-48);
    margin-bottom: 40px;
}

.topJirei.bgDelete {
    background-image: none;
}

.jireiContainer {
    list-style: none;
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 16px;
    padding: 0 5% 40px;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.jireiContainer::-webkit-scrollbar {
    display: none;
}

.jireiContainer::after {
    content: "";
    flex: 0 0 1px;
}

.jireiCard {
    flex: 0 0 85%;
    scroll-snap-align: center;
    background-color: var(--c-white);
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.jireiCard a {
    text-decoration: none;
    color: inherit;
    display: block;
    height: 100%;
    transition: opacity 0.3s;
}

.jireiCard a:hover {
    opacity: 0.7;
}

.jireiContent {
    padding: 16px;
}

.jireiContent h3 {
    color: var(--c-primary);
    font-size: var(--fs-c-18-21);
    font-feature-settings: "palt";
    margin-bottom: 0.5em;
}

.jireiTag {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5em;
    list-style: none;
    padding: 0;
}

.jireiTag li {
    padding: 0.25em 0.75em;
    background-color: var(--c-bg-gray);
    font-size: var(--fs-12);
    border-radius: 4px;
}

/* アワードバナー */
.scaBanner {
    margin: 120px auto 0;
    max-width: 1280px;
    padding: 0 5%;
}

.bannerImg img {
    margin: 0 auto 4em;
    width: 100%;
    height: auto;
    display: block;
}

.scaBanner .btnCenter {
    width: 100%;
}

.scaBanner .btnCenter p {
    width: auto;
    margin: 0 auto;
}

/* --- 共通見出し（h2, h3） --- */
.sectionH2 {
    margin: clamp(40px, 4vw, 64px) auto 40px;
    padding: 0;
    width: 90%;
    text-align: center;
    font-size: var(--fs-c-24-48);
    color: var(--c-text);
    line-height: 1.4;
    font-weight: 900;
}

.sectionH3 {
    margin: 0 auto 32px;
    padding: 0;
    width: 90%;
    max-width: 1200px;
    text-align: center;
    font-size: var(--fs-c-24-32);
    color: var(--c-primary);
    font-weight: 900;
    line-height: 1.4;
}

/* 資料ダウンロード */
.wpBox {
    padding: clamp(60px, 9vw + 27px, 64px) 5%;
    background-color: var(--c-bg-gray);
}

.wpBox>.sectionH2 {
    margin-top: 0;
}

.wpContainer {
    margin: 0 auto;
    padding: clamp(24px, 5vw, 80px);
    max-width: 1200px;
    background-color: var(--c-white);
    border-radius: 16px;
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(32px, 5vw, 80px);
}

.wpCard {
    display: flex;
    flex-direction: column;
}

.wpThumb img {
    width: 100%;
    height: auto;
    display: block;
    border: 1px solid var(--c-border-light);
}

.wpContent {
    flex-grow: 1;
}

.wpContent>h3 {
    margin: 1em 0 0.5em;
    color: var(--c-primary);
    font-size: clamp(18px, 1.5vw + 12px, 20px);
    font-feature-settings: "palt";
    line-height: 1.5;
    text-align: center;
}

.wpContent>p {
    margin-bottom: 1.5em;
    font-size: var(--fs-c-14-16);
    line-height: 1.6;
}

.wpCard .btnCenter p {
    width: 100%;
}

.wpCard .linkBtn {
    width: 100%;
}

/* ソシキスイッチマガジン */
.ssm {
    background-color: var(--c-bg-yellow);
    padding: clamp(60px, 9vw + 27px, 64px) 0;
}

.ssm>h2 {
    text-align: center;
    font-size: var(--fs-c-24-48);
    margin-bottom: 40px;
    color: var(--c-primary);
}

.ssmContainer {
    list-style: none;
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 16px;
    padding: 0 5% 40px;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.ssmContainer::-webkit-scrollbar {
    display: none;
}

.ssmContainer::after {
    content: "";
    flex: 0 0 1px;
}

.ssmCard {
    flex: 0 0 85%;
    scroll-snap-align: center;
}

.ssmCard a {
    text-decoration: none;
    color: inherit;
    display: block;
    height: 100%;
    transition: opacity 0.3s;
}

.ssmCard a:hover {
    opacity: 0.7;
}

.ssmThumb img {
    width: 100%;
    height: auto;
    display: block;
}

.ssmContent {
    padding: 16px 0;
}

.ssmContent h3 {
    color: var(--c-primary);
    font-size: var(--fs-c-14-18);
    margin-bottom: 0.5em;
    font-weight: bold;
    line-height: 1.5;
}

.ssmContent p {
    font-size: var(--fs-c-13-14);
    line-height: 1.6;
}

/* インフォメーション（お知らせ） */
.infoList {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.infoList li {
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 8px 12px;
    padding-bottom: 16px;
    border-bottom: 1px dashed var(--c-border);
}

.infoList li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.postTag,
.postDate {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--c-black);
    color: var(--c-white);
    border-radius: 4px;
    font-size: var(--fs-12);
    font-weight: bold;
    padding: 6px 10px;
    line-height: 1;
    white-space: nowrap;
}

.infoList a {
    text-decoration: none;
    color: var(--c-text-sub);
    font-size: var(--fs-16);
    line-height: 1.6;
    width: 100%;
    transition: opacity 0.3s;
}

.infoList a:hover {
    text-decoration: underline;
    opacity: 0.8;
}


/* =========================================================================
   7. FAQ（よくあるご質問）コンポーネント（WordPress・1280px幅最適化版）
========================================================================= */
.faqArea {
    margin: 0 auto clamp(60px, 10vw, 120px);
    width: 90%;
    max-width: 1280px;
    /* ★ 1000px から 1280px に拡張 */
}

.faqContainer {
    border-top: 1px solid var(--c-border-dark);
}

.faqItem {
    border-bottom: 1px solid var(--c-border-dark);
}

/* 質問エリア（クリッカブル） */
.faqQuestion {
    display: flex;
    align-items: center;
    padding: 24px 0;
    cursor: pointer;
    list-style: none;
    /* デフォルトの三角形マーカーを消去 */
    position: relative;
    font-weight: bold;
    font-size: var(--fs-c-14-18);
    color: var(--c-text);
    transition: color 0.3s;
}

.faqQuestion::-webkit-details-marker {
    display: none;
    /* Safari用の三角形マーカー消去 */
}

.faqQuestion:hover {
    color: var(--c-primary);
}

/* QとAの四角いアイコン */
.faqIconQ,
.faqIconA {
    flex-shrink: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 32px;
    height: 32px;
    border-radius: 4px;
    font-family: Arial, sans-serif;
    font-weight: bold;
    font-size: var(--fs-20);
    margin-right: 16px;
}

.faqIconQ {
    background-color: var(--c-primary);
    color: var(--c-white);
}

.faqTag{
	margin-right: 0.5em;
	padding: 0.25em 0.5em;
	background-color: var(--c-bg-gray);
	font-size: var(--fs-14);
	font-weight: normal;
}

.faqIconA {
    background-color: var(--c-orange);
    color: var(--c-white);
}

/* 質問テキスト */
.faqQuestionText {
    flex-grow: 1;
    padding-right: 40px;
    /* 右側の「＋」アイコンと被らないように余白確保 */
    line-height: 1.5;
}

/* トグルアイコン（＋ と －） */
.faqToggleIcon {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
}

.faqToggleIcon::before,
.faqToggleIcon::after {
    content: "";
    position: absolute;
    background-color: var(--c-primary);
    transition: transform 0.3s ease;
}

.faqToggleIcon::before {
    top: 7px;
    left: 0;
    width: 16px;
    height: 2px;
}

.faqToggleIcon::after {
    top: 0;
    left: 7px;
    width: 2px;
    height: 16px;
}

/* detailsが開いた時の処理 */
details[open] .faqQuestion {
    color: var(--c-primary);
}

details[open] .faqToggleIcon::after {
    transform: scaleY(0);
}

/* 回答エリア */
.faqAnswer {
    padding: 0 0 32px 0;
}

details[open] .faqAnswer {
    animation: faqFadeIn 0.3s ease-in-out forwards;
}

@keyframes faqFadeIn {
    0% {
        opacity: 0;
        transform: translateY(-10px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* フレックスボックス用のインナー枠 */
.faqAnswerInner {
    display: flex;
    align-items: flex-start;
    padding: 24px;
    background-color: var(--c-bg-light);
    border-radius: 8px;
}

/* ★ WordPress（the_content）出力対応用のスタイル定義 */
.faqAnswerText {
    flex-grow: 1;
    padding-top: 4px;
    /* アイコンの縦位置と文字の頭を揃える */
}

/* 直下に入るブロック要素（p, ul, olなど）の一括マージン制御 */
.faqAnswerText>* {
    margin-bottom: 1.2em;
}

.faqAnswerText>*:last-child {
    margin-bottom: 0;
    /* 最後の要素の余白は常にリセット */
}

/* Pタグ（段落）の指定 */
.faqAnswerText p {
    font-size: var(--fs-16);
    text-align: justify;
}

/* リスト（箇条書き）のスタイル復元 */
.faqAnswerText ul,
.faqAnswerText ol {
    padding-left: 1.5em;
}

.faqAnswerText ul {
    list-style-type: disc;
    /* 黒丸を復活 */
}

.faqAnswerText ol {
    list-style-type: decimal;
    /* 数字を復活 */
}

.faqAnswerText li {
    font-size: var(--fs-14);
    line-height: 1.6;
    margin-bottom: 0.4em;
}

.faqAnswerText li:last-child {
    margin-bottom: 0;
}

/* 外部リンク（aタグ）の指定 */
.faqAnswerText a {
    color: var(--c-btn);
    text-decoration: underline;
    transition: opacity 0.3s;
    word-break: break-all;
    /* 長いURLが来ても枠外に突き抜けないようにする */
}

.faqAnswerText a:hover {
    opacity: 0.7;
    text-decoration: none;
}

/* =========================================================
   FAQ：カテゴリーボタンリストのレスポンシブ対応
========================================================= */
.categoryBtnList {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    /* スマホベース */
    margin-bottom: 40px;
    justify-content: flex-start;
    /* スマホベース */
}

.categoryBtnList button {
    padding: 6px 12px;
    /* スマホベース */
    background-color: var(--c-white);
    color: var(--c-btn);
    border: 1px solid var(--c-btn);
    border-radius: 4px;
    font-size: var(--fs-13);
    /* スマホベース */
    font-weight: bold;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
    text-align: center;
}

.categoryBtnList button:hover,
.categoryBtnList button:active {
    background-color: var(--c-btn);
    color: var(--c-white);
}

/* 絞り込みで選択中のカテゴリボタン（JSで .is-active を付与） */
.categoryBtnList button.is-active {
    background-color: var(--c-btn);
    color: var(--c-white);
}

@media (min-width: 640px) {
    .categoryBtnList {
        gap: 12px;
        justify-content: center;
    }

    .categoryBtnList button {
        font-size: var(--fs-14);
        padding: 8px 16px;
    }
}

/* --- ★ PC（1280px以上）の時の完全指定 --- */
@media (min-width: 1280px) {
    .categoryBtnList {
        display: grid;
        grid-template-columns: repeat(6, 185px);
        gap: 18px;
    }

    .categoryBtnList button {
        width: 100%;
        padding: 8px 0;
    }
}


/* =========================================================================
   8. 共通コンポーネント用メディアクエリ
========================================================================= */
@media (min-width: 640px) {
    .jissekiHeader {
        flex-direction: row;
        align-items: baseline;
        justify-content: center;
        gap: 32px;
    }

    .jireiContainer {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
        overflow-x: visible;
        padding: 0 5%;
    }

    .jireiCard {
        flex: auto;
        scroll-snap-align: none;
    }

    .wpContainer {
        grid-template-columns: repeat(2, 1fr);
    }

    .ssmContainer {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
        overflow-x: visible;
        padding: 0 5%;
    }

    .ssmCard {
        flex: auto;
        scroll-snap-align: none;
    }
}

@media (min-width: 768px) {
    .splitContainer {
        flex-direction: row;
    }

    .splitContainer>div {
        width: 50%;
    }

    .leftHWrap {
        max-width: 640px;
        margin-left: auto;
        margin-right: 0;
        padding: 0 48px;
    }

    .rightPWrap {
        max-width: 640px;
        margin-left: 0;
        margin-right: auto;
        padding: 0 48px;
    }

    .infoList a {
        width: auto;
        flex: 1;
    }
		.leftHArea,
		.rightParea {
				padding: clamp(60px, 9vw + 27px, 120px) 0;
		}

}

@media (min-width: 1024px) {
    .jireiContainer {
        grid-template-columns: repeat(3, 1fr);
        gap: 40px;
        padding: 0;
        max-width: 1200px;
        margin: 0 auto;
    }

    .jireiCard {
        max-width: 100%;
        margin: 0;
    }

    .ssmContainer {
        grid-template-columns: repeat(3, 1fr);
        gap: 40px;
        padding: 0;
        max-width: 1200px;
        margin: 0 auto;
    }

    .ssmCard {
        max-width: 100%;
        margin: 0;
    }

    .tkaSupport {
        margin-bottom: 32px;
        border-left: solid 1px var(--c-border-dark);
        border-top: solid 1px var(--c-border-dark);
    }

    .tkaSupport dt,
    .tkaSupport dd {
        margin: 0;
        border-right: solid 1px var(--c-border-dark);
        border-bottom: solid 1px var(--c-border-dark);
        text-align: left;
    }

    .tkaSupport dt {
        width: 30%;
        background-color: var(--c-white);
        color: var(--c-primary);
        font-weight: 700;
    }

    .tkaSupport dd {
        width: 70%;
    }

    .contactData dt,
    .contactData dd {
        margin: 0 0 0.5em 0;
        padding: 0.5em;
        width: 50%;
        text-align: left;
    }

    /* カード型Point */
    .twoCardColumn,
    .threeCardColumn {
        margin: 0 auto;
        justify-content: space-between;
        max-width: 1200px;
    }

    .pointCard {
        width: calc(50% - 2em);
        max-width: 568px;
    }

    .threeCardColumn>.pointCard {
        width: calc(100% / 3 - 2em);
        max-width: 368px;
    }

    /* 従業員満足度調査 */



}

/* =========================================================
   11. 画像拡大用ライトボックス
========================================================= */
.lightboxOverlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.lightboxOverlay.is-active {
    opacity: 1;
    visibility: visible;
}

.lightboxContainer {
    position: relative;
    max-width: 90%;
    max-height: 90vh;
}

.lightboxImg {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    border-radius: 8px;
}

.lightboxCloseBtn {
    position: absolute;
    top: -40px;
    right: -10px;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
}

.lightboxCloseBtn::before,
.lightboxCloseBtn::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 30px;
    height: 2px;
    background-color: #fff;
}

.lightboxCloseBtn::before {
    transform: translate(-50%, -50%) rotate(45deg);
}

.lightboxCloseBtn::after {
    transform: translate(-50%, -50%) rotate(-45deg);
}

/* =========================================================
   共通コンポーネント: pageTitle / ceoMessageArea / outlineList
   ※ other-common.css と recruit-common.css で重複していた定義を統合
========================================================= */
.pageTitle {
    margin-bottom: 64px;
    background-color: var(--c-pale-blue);
    border-bottom: solid 4px var(--c-light-blue);
}

.pageTitle>h1 {
    padding: 1em 0;
    font-size: var(--fs-32);
    font-weight: 400;
    font-feature-settings: "palt";
    text-align: center;
    color: var(--c-primary);
}

.ceoMessageArea {
    display: flex;
    flex-direction: column;
    margin: 64px auto;
    padding: 24px 16px;
    width: 90%;
    max-width: 1200px;
    gap: 32px;
    background: linear-gradient(to top, var(--c-white) 0%, var(--c-bg-gray) 100%);
}

.ceoMessageArea>div:first-child {
    text-align: center;
}

.ceoMessageArea img {
    display: block;
    margin: 0 auto;
    max-width: 100%;
    height: auto;
}

.ceoRight {
    width: 100%;
}

.outlineList {
    margin: 0 auto 64px;
    padding: 0 5%;
    max-width: 1200px;
    display: flex;
    flex-wrap: wrap;
}

.outlineList dt {
    width: 30%;
}

.outlineList dd {
    width: 70%;
}

.outlineList dt,
.outlineList dd {
    margin-bottom: 0.5em;
    padding-bottom: 0.5em;
    border-bottom: solid 1px var(--c-border);
}

@media (min-width: 768px) {
    .pageTitle>h1 {
        margin: 0 auto;
        font-size: var(--fs-48);
        max-width: 1280px;
    }

    .ceoMessageArea {
        flex-direction: row;
        padding: 48px;
        gap: 48px;
    }

    .ceoRight {
        max-width: 706px;
    }
}