/* Place your compiled CSS here (from static /css/main.css) */
:root {
    --main-red: #c40014;
    --main-gray: #f5f5f5;
    --text-main: #222;
    --text-light: #8a8a8a;
    --bg-lightblue: #eef5fb;
    --accent-dark: #333;
    --font-sans: "Noto Sans JP", sans-serif;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: var(--font-sans);
    color: var(--text-main);
    line-height: 1.6;
    background: #fff;
}

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

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

.inner {
    width: min(1180px, 100% - 40px);
    margin: 0 auto;
}

.sp {
    display: none;
}

@media(max-width:768px) {
    .sp {
        display: block;
    }

    .pc {
        display: none;
    }
}

/* =======================
       HEADER
    ======================= */
.site-header {
    position: fixed;
    inset-inline: 0;
    top: 0;
    z-index: 334;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
}

@media (min-width: 768px) and (max-width: 1400px) {

    /* ここに書いたCSSだけが 768〜1400px に適用される */
    .site-header .inner {
        width: 100%;
        padding-left: 20px;
    }
}


.site-header__bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 60px;
}

.site-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    font-size: 20px;
}

.site-logo img {
    display: block;
    height: 30px;
    /* 好きな高さに調整 */
    width: auto;
}

.global-nav {
    display: flex;
    align-items: center;
    gap: 28px;
    font-size: 14px;
}

.global-nav a {
    position: relative;
    padding-bottom: 2px;
    height: 60px;
    line-height: 60px;
    padding: 0 10px;
}

.global-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background: var(--main-red);
    transition: width .2s;
}

.global-nav a:hover::after {
    width: 100%;
}

.header-contact-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0px 22px;
    background: var(--main-red);
    color: #fff;
    font-size: 14px;
    letter-spacing: .06em;
    padding: 0 40px !important;
}

/* ハンバーガー（SP） */
.header-menu-toggle {
    display: none;
    width: 26px;
    height: 20px;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
}

.header-menu-toggle span {
    display: block;
    height: 2px;
    background: #333;
    border-radius: 999px;
}

.sp-nav {
    display: none;
    border-top: 1px solid #eee;
    background: rgba(255, 255, 255, 0.98);
}

.sp-nav ul {
    list-style: none;
    padding: 8px 0 16px;
    margin: 0;
}

.sp-nav li a {
    display: block;
    padding: 10px 20px;
    font-size: 14px;
    border-bottom: 1px solid #f0f0f0;
}

/* =======================
       HERO
    ======================= */
.hero {
    /* ヘッダー分 */
    position: relative;
    min-height: 520px;
    overflow: hidden;
}

.hero {
    background-image: url(../image/mv.jpg);
    background-size: cover;
}

.hero__content {
    position: relative;
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    padding: 20px 0 20px;
    gap: 32px;
}

.hero__catch {
    display: flex;
    align-items: flex-end;
    gap: 16px;
    flex: 0 0 auto;
}

.hero__catch-main {
    width: 480px;
}



.clip-text {
    color: transparent;
    background-image: linear-gradient(to bottom, #ffdd00, #FF0000, #8B0000);
    opacity: 0.7;
    -webkit-background-clip: text;
    background-clip: text;
    font-family: "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
    font-weight: bold;
    font-size: 8.8rem;
    line-height: 1.2;
    margin: 0;
}

.clip_2 {
    background-image: linear-gradient(to bottom, #8B0000, #ff8400, #8B0000);
}

/* =======================
       CONCEPT / リード文
    ======================= */
.lead {
    padding: 40px 0 60px;
    height: 530px;
    position: relative;
}

.lead::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 530px;
    inset: 0;
    background: url(../image/bg_blue.jpg) center/cover;
    opacity: 0.6;
    /* ← 背景だけ透明 */
    z-index: -1;
}

.lead .inner {
    display: flex;
}

.lead__box {
    padding: 32px 70px 32px 70px;

}

.lead__title {
    font-size: 18px;
    letter-spacing: .15em;
    margin-bottom: 14px;
}

.lead__text {
    font-size: 14px;
    color: #000000;
    line-height: 3.4;
}

.clip_2 {
    position: relative;
    z-index: -2;
    opacity: 1;
}

/* =======================
       Our Business
    ======================= */
.section {
    padding: 90px 0;
}

.section-header {
    margin-bottom: 40px;
    padding: 20px;
}

.section-label {
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 30px;
    color: var(--text-main);
    margin-bottom: 6px;
    margin-top: 30px;
    font-family: "Georgia", "Noto Sans", sans-serif;
}

.section .recruit-messageBlock__en {
    font-size: 42px;
}

.section-title {
    font-size: 20px;
    letter-spacing: 0;
    margin-top: 0;
    margin-bottom: 40px;
}

.section-subtitle {
    font-size: 14px;
    color: var(--text-light);
    margin-top: 4px;
}

.section .btn-readmore {
    margin-top: 60px;
}

.btn-readmore {
    display: block;
    width: 170px;
}

/* 外枠：はみ出しを隠す */
.business-grid {
    display: flex;
    gap: 20px;
    overflow: hidden;
    width: 100%;
    position: relative;
}
@media(max-width:768px){
	.business-grid {
	overflow-x: scroll;
  -webkit-overflow-scrolling: touch;
}
}

/* 中身（流れる列） */
.business-grid .business-track {
    display: flex;
    gap: 40px;
    flex-shrink: 0;
    animation: business-marquee 22s linear infinite;
}
.business-grid::-webkit-scrollbar {
  display: none;
}
/* 速度調整したい場合：18s を大きく→遅く / 小さく→速く */
@keyframes business-marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}




/* カードの横幅を固定すると流れが綺麗 */
.business-card {
    flex: 0 0 200px;
    /* 好きに調整 */
}



/* 画像が潰れないように */
.business-card__thumb img {
    width: 100%;
    height: auto;
    display: block;
}

/* ❶ グリッドのカードサイズを揃える（高さも揃う） */
.business-card {
    width: 180px;
    min-width: 220px;
    height: 400px;
}

.business-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    /* お好み */
    overflow: hidden;
}

/* ❷ 画像エリア：背景っぽく見せる（比率固定 + cover） */
.business-card__thumb {
    position: relative;
    aspect-ratio: 2.9 / 4;
    /* ここで縦横比を揃える（例：4:3） */
    overflow: hidden;
    border-radius: 16px;
}

.business-card__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* 背景画像みたいにトリミング */
    display: block;
}

/* 画像の上にうっすら暗幕（任意：文字や矢印が見やすくなる） */
.business-card__thumb::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, .25), rgba(0, 0, 0, 0));
    pointer-events: none;
}

/* ❸ 矢印を右下に配置 */
.business-card__arrow {
    position: absolute;
    right: 12px;
    bottom: 12px;
    width: 38px;
    height: 38px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    background: rgba(255, 255, 255, .92);
    color: #111;
    font-size: 18px;
    line-height: 1;
    box-shadow: 0 8px 20px rgba(0, 0, 0, .18);
    transform: rotate(-45deg);
    transform-origin: center;
}

/* ❹ 下のテキスト部分：高さを揃える */
.business-card__body {
    padding: 16px 16px 18px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    flex: 1;
    /* 下部が伸びて全カードの高さが揃う */
}
/* ホバーしたら止める（マウスが乗ったら停止） */
.business-grid:hover .business-track {
  animation-play-state: paused;
}
.business-card__name {
    font-weight: 700;
    font-size: 18px;
}

.business-card__note {
    font-size: 12px;
    opacity: .75;
    line-height: 1.5;
}

/* brで高さが崩れやすいので、できれば消す（下の「HTML修正」参照） */
.business-card__body br {
    display: none;
}

/* レスポンシブ例（必要なら） */
@media (max-width: 1024px) {
    .business-grid {
        grid-template-columns: repeat(3, minmax(200px, 1fr));
    }
}

@media (max-width: 640px) {
    .business-grid {
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }
}






#business {
    width: 100%;
    overflow: hidden;
}
@media(min-width:768px){
	#business{
		padding: 90px 0 30px 0;
	}
}

#business .inner {
    display: flex;
    gap: 40px;
}





/* =======================
       STRENGTH / 実績
    ======================= */


.strength-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
}

.strength-item {
    position: relative;
    color: #fff;
    min-height: 260px;
    overflow: hidden;
}

.strength-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7);
    transform: scale(1.02);
}

.strength-item__icon img {
    width: 80px;
    filter: none;
}

.strength-item::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.6));
    pointer-events: none;
}

.strength-item__content {
    position: absolute;
    inset: 0;
    padding: 32px 26px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    z-index: 1;
}

.strength-item__content p {
    margin: 0;
    font-size: 10px;
}

.strength-item__label {
    font-size: 15px;
}

.strength-item__title {
    font-size: 18px;
    margin-top: 6px;
}

.strength-item__num {
    font-size: 75px;
    font-weight: 800;
    letter-spacing: 2px;
    font-family: "Noto Sans JP", sans-serif;
    background-image: linear-gradient(to bottom, #cdc2b0, #d38c8c, #fffdfd);
}

.strength-item__link {
    align-self: flex-start;
    margin-top: auto;
    padding: 8px 18px;
    border-radius: 999px;
    border: 1px solid #fff;
    font-size: 12px;
}

/* =======================
       INFORMATION
    ======================= */
.info {
    background: url(../image/bg_blue.jpg);
    background-size: cover;
    padding: 80px 0;
}

.info__panel {
    background: #fff;
    border-radius: 24px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    padding: 40px 40px 32px;
    max-width: 1000px;
    margin: auto;
}

.info__header {
    text-align: center;
    margin-bottom: 30px;
}

.info__label {
    letter-spacing: .3em;
    font-size: 12px;
    color: var(--text-light);
}

.info__title {
    font-size: 28px;
}

.info-list {
    list-style: none;
    margin: 0;
    padding: 0;
    border-top: 1px solid #c0bcbc;
}

.info-item {
    border-bottom: 1px solid #c0bcbc;
}

.info-item a {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 20px 4px;
    font-size: 13px;
}

.info-item__date {
    white-space: nowrap;
    font-feature-settings: "palt";
    font-size: 12px;
    color: var(--text-light);
}

.info-item__tag {
    white-space: nowrap;
    font-size: 11px;
    padding: 6px 16px;
    border-radius: 999px;
    background: #333;
    color: #fff;
    margin-left: 1rem;
}

.info-item__text {
    flex: 1 1 auto;
}

.info-item__arrow {
    font-size: 12px;
}

.info .btn-readmore {
    display: block;
    margin: 40px auto 20px;
    width: 230px;
}

.info-item__arrow {
    display: inline-block;
    width: 8px;
    /* ← 矢印の横幅（PDFに合わせて調整可） */
    height: 8px;
    /* ← 矢印の縦幅 */
    border-right: 1px solid #333;
    border-bottom: 1px solid #333;
    transform: rotate(-45deg);
    /* > になる */
    margin-left: auto;
    /* 右端に寄せる */
}
main{
	border-bottom: 1px solid #cdc2b0;
}
/* =======================
       FOOTER
    ======================= */
footer {
/*     border-top: 1px solid #cdc2b0; */
}

.footer-top {
    padding: 42px 0 60px;
    max-width: 1100px;
    margin: auto;

}

.footer-top__grid {
    display: grid;
    grid-template-columns: 2fr 2fr 2fr;
    gap: 26px;
    font-size: 13px;
}



.footer-company__logo {
    width: 160px;
    margin-bottom: 10px;
}

.footer-company__name {
    margin-bottom: 6px;
    font-size: 18px;
    font-weight: 700;
}

.footer-contact-block__title {
    font-size: 16px;
    margin-bottom: 6px;
    font-weight: 700;
}

.footer-contact-block__tel {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 6px;
}

.footer-contact-block {
    text-align: center;
}

.footer-contact-block small {
    font-size: 14px;

}

.footer-contact-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: 999px;
    background: var(--main-red);
    color: #fff;
    font-size: 14px;
    letter-spacing: 1px;
}

.footer-contact-block.border {
    border-left: solid 1px #cdc2b0;
}

.footer-bottom {
    color: #333;
    font-size: 11px;
    padding: 16px 0;
    border-top: solid 1px #cdc2b0;
}

.footer-bottom__inner {
    gap: 12px;
}

.footer-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    justify-content: center;
}

.footer-nav a {
    color: #333;
    font-size: 14px;
    padding: 20px;
    font-weight: 700;
}

.footer-copy {
    white-space: nowrap;
    text-align: center;
    margin-bottom: 10px;
    font-size: 13px;
}

/* =======================
       RESPONSIVE
    ======================= */
@media (max-width: 768px) {
    .business-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .strength-grid {
        grid-template-columns: 1fr;
    }

    .strength-item {
        min-height: 220px;
    }
}

@media(max-width:1150px) {
    .lead {
        height: 700px;
    }

    .lead::before {
        height: 700px;
    }
}

@media (max-width: 1000px) {
    .site-header__bar {
        height: 60px;
        padding: 0 20px;
    }

    .site-header {
        background: none;
        box-shadow: none;
    }

    .global-nav {
        display: none;
    }

    .header-menu-toggle {
        display: flex;
    }

    .hero {
        height: 100vh;
        margin-top: 0;
    }

    .hero__content {
        flex-direction: row;
        padding: 60px 0 24px;
        gap: 20px;
    }

    .hero__catch-main,
    .hero__catch-sub {
        font-size: 32px;
    }

    .hero__side-image img {
        max-width: 260px;
    }

    .lead {
        padding: 32px 0 42px;
        height: auto;
    }

    .lead::before {
        height: auto;
    }

    .lead__box {
        padding: 22px 18px;
    }

    .lead .inner {
        display: block;
    }

    #business .inner {
        display: block;
        position: relative;
    }

    #business {
        padding-bottom: 100px;
    }

    .section-header {
        margin-bottom: 0;
    }

    .section-title {
        margin-bottom: 0;
    }

    .section .btn-readmore {
        position: absolute;
        bottom: -65px;
        left: 0;
        right: 0;
        margin: auto;
    }

    .section {
        padding: 34px 0;
    }

    .info__panel {
        padding: 32px 18px 26px;
    }

    .info-item a {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
    }

    .info-item {
        padding: 0 20px;
    }

    .info-item__arrow {
        align-self: flex-end;
        display: none;
    }

    .info-item__text {
        margin-top: 10px;
    }


    .footer-top__grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        display: none;
    }

    .footer-contact-block.border {
        border: none;
    }

    .footer-bottom__inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-copy {
        padding: 20px 0 10px;
        border-top: solid 1px #cdc2b0;
    }

    /* ハンバーガーアイコン */
    .header-menu-toggle {
        display: none;
        /* PCでは非表示、SPで出す */
        flex-direction: column;
        justify-content: space-between;
        width: 26px;
        height: 20px;
        cursor: pointer;
        z-index: 200;
    }

    .header-menu-toggle span {
        display: block;
        height: 2px;
        background: #fff;
        border-radius: 5px;
        transition: .3s;
    }

    /* ハンバーガー → ✕ 変形 */
    .header-menu-toggle.active span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }

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

    .header-menu-toggle.active span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }

    /* SPナビ本体（右からスライドイン） */
    .sp-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        max-width: 300px;
        height: 100vh;
        background: #fff;
        padding-top: 80px;
        transition: right .3s ease;
        z-index: 150;
        display: block;
    }

    .sp-nav ul {
        list-style: none;
        padding: 0 20px 40px;
        margin: 0;
    }

    .sp-nav li a {
        display: block;
        padding: 12px 0;
        border-bottom: 1px solid #eee;
    }

    /* openクラスが付いた時に表示 */
    .sp-nav.open {
        right: 0;
    }

    /* 黒オーバーレイ */
    .menu-overlay {
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.5);
        opacity: 0;
        pointer-events: none;
        transition: opacity .3s;
        z-index: 100;
    }

    .menu-overlay.active {
        opacity: 1;
        pointer-events: auto;
    }

    /* PC/SP切り替え */
    @media (max-width: 1000px) {
        .global-nav {
            display: none;
            /* SPではPC用ナビ非表示 */
        }

        .header-menu-toggle {
            display: flex;
            /* SPでハンバーガー表示 */
        }

        /* ボタン本体 */
        .header-menu-toggle {
            display: flex;
            justify-content: center;
            align-items: center;
            width: 44px;
            height: 44px;
            padding: 0;
            cursor: pointer;
            background: rgba(0, 0, 0, 0.5);
            border-radius: 8px;
            position: relative;
            z-index: 300;
        }

        /* 線：中央基準で回転させる */
        .header-menu-toggle span {
            position: absolute;
            left: 50%;
            width: 24px;
            /* ← 線の長さ */
            height: 3px;
            background: #fff;
            border-radius: 3px;
            transform: translateX(-50%);
            transform-origin: center center;
            /* ★ここがポイント */
            transition: transform .3s, opacity .3s;
        }

        /* 三本線の位置（閉じているとき） */
        .header-menu-toggle span:nth-child(1) {
            top: 13px;
        }

        .header-menu-toggle span:nth-child(2) {
            top: 50%;
            transform: translate(-50%, -50%);
        }

        .header-menu-toggle span:nth-child(3) {
            bottom: 13px;
        }

        /* 開いたとき（✕状態） */
        .header-menu-toggle.active span:nth-child(1) {
            top: 50%;
            transform: translate(-50%, -50%) rotate(45deg);
        }

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

        .header-menu-toggle.active span:nth-child(3) {
            top: 50%;
            bottom: auto;
            transform: translate(-50%, -50%) rotate(-45deg);
        }



    }

    @media (min-width: 1000px) {
        .sp-nav {
            display: none;
            /* PCでSPナビは潰しておく */
        }

        .menu-overlay {
            display: none;
        }
    }

    .footer-company {
        display: inline;
        margin: auto;
        order: 99;
        /* ← 一番最後に移動 */
        margin-top: 30px;
    }
}

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

    .hero {
        background-position: center top;
        margin-top: 0;
        position: relative;
        z-index: -2;
    }

    .hero__content {
        height: 550px;
        flex-direction: column;
        align-items: flex-start;
        padding-top: 54px;
    }

    .hero__catch {
        order: 2;
        margin-top: 16px;
    }

    .hero__side-image {
        width: 100%;
        justify-content: flex-start;
    }

    .hero__side-image img {
        width: 100%;
        max-width: none;
        border-radius: 8px;
    }

    .clip-text {
        font-size: 6.2rem;
        position: relative;
        left: -20px;
        opacity: 0.6;
        top: 10px
    }

    .clip_2 {
        top: -65px;
    }

    .business-grid {
        grid-template-columns: 1fr;
    }


    .strength-item .clip-text {
        left: 0;
    }
}

/* ===== page namespace（トップと被らない） ===== */
.page {
    color: #222;
    font-family: "Noto Sans JP", sans-serif;
}

/* container */
.page-container {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}

.page-container--narrow {
    width: min(920px, calc(100% - 40px));
    margin: 0 auto;
}

/* hero */
.page-hero {
    position: relative;
    overflow: hidden;
}

.page-hero--lightblue {
    background: url(../image/pagetitle.jpg);
    background-size: cover;
    height: 350px;
}

.page-hero__inner {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
    min-height: 220px;
    align-items: flex-end;
    gap: 24px;
    padding: 48px 0 28px;
}

.page-hero__side {
    position: absolute;
    width: 300px;
    left: -120px;
    top: 220px;
    transform: rotate(90deg);
}

.page-hero__sideText {
    text-orientation: mixed;
    letter-spacing: .18em;
    font-size: 12px;
    color: #2b2b2b;
    opacity: .75;
}

.page-hero__titleWrap {
    padding-bottom: 6px;
    padding-left: 50px;
}

.page-hero__title {
    margin: 0;
    font-family: "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
    font-weight: 700;
    letter-spacing: .08em;
    font-size: 56px;
    line-height: 1.05;
    color: #515151;
    padding-top: 120px;
}

.page-hero__title {
    position: relative;
    padding-bottom: 10px;
    /* 線との間隔 */
}

.page-hero__title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;

    width: 50px;
    /* ← 線の長さ（調整OK） */
    height: 2px;
    /* ← 線の太さ */
    background-color: #444;
    /* ← 線の色（濃いグレー） */
}

.page-doc:last-child {
    border: none;
}

.page-hero__subtitle {
    margin: 16px 0 0;
    font-size: 16px;
    color: #515151;
}

/* content */
.page-section {
    padding: 60px 0 70px;

}

/* document blocks（規約・ポリシー系で流用） */
.page-doc {
    padding: 34px 0;
    border-bottom: 1px solid #dcdcdc;
}



.page-doc__title {
    margin: 0 0 12px;
    font-size: 16px;
    font-weight: 700;
    color: #222;
}

.page-doc__text p {
    margin: 0 0 10px;
    font-size: 14px;
    line-height: 1.9;
    color: #333;
}

.page-doc__text p:last-child {
    margin-bottom: 0;
}

.bread-arrow {
    display: inline-block;
    width: 7px;
    height: 7px;
    border-right: 1px solid #333;
    border-bottom: 1px solid #333;
    transform: rotate(-45deg);
    margin: 0 8px 2px 4px;
}

/* SP */
@media (max-width: 768px) {
    .page-container--narrow {
        width: min(920px, calc(100% - 40px));
    }

    .page-hero__inner {
        min-height: 200px;
        padding: 34px 0 22px;
    }

    .page-hero__title {
        font-size: 44px;
    }

    .page-section {
        padding: 26px 0 46px;
    }

    .page-doc {
        padding: 22px 0;
    }

    .page-hero__side {
        position: absolute;
        right: -130px;
        left: inherit;
        top: 230px;
    }

    .page-hero__titleWrap {
        padding-left: 0;
    }
}


/* ===== news page only ===== */
.page-news .info-list {
    border-top: none;
}

.page-news .info-item a {
    padding: 30px 4px;
}

.page-news .info-item__arrow {
    display: none;
}

/* ========== PAGINATION ========== */

.news-pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 36px;
}

.news-pagination__btn {
    width: 34px;
    height: 34px;
    border-radius: 4px;
    border: 1px solid #ccc;
    font-size: 12px;
    color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.news-pagination__btn.is-current {
    background: #333;
    color: #fff;
    border-color: #333;
}

/* ========== SP ========== */

@media (max-width: 768px) {

    .news-item {
        grid-template-columns: 1fr;
        gap: 10px;
        padding: 16px 0;
    }

    .news-item__date {
        font-size: 11px;
    }

    .news-item__label {
        width: fit-content;
        height: 26px;
        font-size: 10px;
    }

    .news-item__title {
        font-size: 13px;
    }
}

/* ===== business page only ===== */
.page-business .page-container--wide {
    width: min(920px, calc(100% - 40px));
    margin: 0 auto;
}

/* section bg */
.page-section--pale {
    background: #d9e9f6;
}

/* 薄い水色 */
.page-section--white {
    background: #fff;
}

.page-lead {
    margin: 0;
    padding: 18px 0 26px;
    text-align: center;
    font-size: 14px;
    line-height: 2.1;
    color: #333;
}

/* ===== cards ===== */
.biz-list {
    list-style: none;
    margin: 0;
    padding: 12px 0 56px;
    display: grid;
    gap: 22px;
}

.biz-card {
    display: grid;
    grid-template-columns: 360px 1fr;
    gap: 0;
    border-radius: 0px 12px 12px 0;
    overflow: hidden;
    margin-bottom: 24px;

}

.biz-card__media {
    background: #bfbfbf;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(0, 0, 0, .35);
    font-size: 16px;
    min-height: 150px;
}

.biz-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.biz-card__body {
    position: relative;
    background: #fff;
    padding: 52px 56px 52px 140px;
}

.biz-card__no {
    position: absolute;
    left: 18px;
    bottom: -12px;
    font-family: "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
    font-style: italic;
    font-size: 10rem;
    line-height: 1;
    color: #cfddea;
    /* うっすら */
    opacity: .75;
    pointer-events: none;
}

.biz-card__title {
    margin: 0 0 10px;
    font-size: 20px;
    font-weight: 500;
    color: #333;
    position: relative;
    z-index: 1;
}

.biz-card__text {
    margin: 0;
    font-size: 14px;
    line-height: 1.95;
    color: #333;
    position: relative;
    z-index: 1;
}

/* ===== strategy ===== */
.page-section__head {
    text-align: center;
    padding: 34px 0 18px;
}

.page-section__title {
    margin: 0;
    font-family: "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
    font-size: 26px;
    letter-spacing: .06em;
}

.page-section__sub {
    margin: 10px 0 0;
    font-size: 12px;
    color: #555;
    line-height: 1.8;
}



/* ===== SP ===== */
@media (max-width: 768px) {

    .page-business .page-container--wide {
        width: min(1080px, calc(100% - 40px));
    }

    .page-lead {
        padding: 16px 0 18px;
        line-height: 2.0;
    }

    .biz-list {
        padding: 10px 0 36px;
        gap: 18px;
    }

    .biz-card {
        grid-template-columns: 1fr;
        border-radius: 0;
    }

    .biz-card__body {
        border-radius: 0 0 12px 12px;
        padding: 18px 18px 40px;

    }

    .biz-card__no {
        left: 0px;
        font-size: 12rem;
        opacity: .7;
        bottom: -10px;
    }


}

/* ========== COMPANY PAGE ========== */
.page-company .page-container--narrow {
    width: min(920px, calc(100% - 40px));
}

/* 2カラム */
.company-layout {
    display: grid;
    grid-template-columns: 150px 1fr;
    gap: 100px;
    align-items: start;
}

/* 左メニュー（枠つき） */
.company-nav {
    border: 1px solid #333;
    border-radius: 10px;
    padding: 12px 14px;
    background: #fff;
}

.company-nav__item {
    display: block;
    padding: 12px 10px;
    font-size: 13px;
    color: #222;
    text-decoration: none;
}

.company-nav__item+.company-nav__item {
    border-top: 1px solid #333;
}

.company-nav__item:hover {
    opacity: .75;
}

/* 見出し（赤丸＋英字＋日本語） */
.company-head {
    margin: 0 0 16px;
}

.company-head__en {
    margin: 0;
    font-size: 24px;
    letter-spacing: .06em;
    font-family: "Noto Sans JP", sans-serif;
    position: relative;
    padding-left: 22px;
}

.company-head__en::before {
    content: "";
    position: absolute;
    left: 0;
    top: 20px;
    transform: translateY(-50%);

    width: 8px;
    height: 8px;
    border-radius: 50%;

    border: 3px solid #b80f16;
    /* ← 枠線だけ */
    background: transparent;
    /* ← 中を抜く */
}


.company-head__jp {
    margin: 0px 0 0;
    font-size: 12px;
    color: #555;
    padding-left: 20px;
}

/* Message */
.company-message p {
    margin: 0 0 12px;
    font-size: 14px;
    line-height: 3.0;
    color: #333;
}

.company-sign {
    margin-top: 26px;
    text-align: right;
}

.company-sign__role {
    font-size: 12px;
    margin-right: 10px;
    color: #333;
}

.company-sign__name {
    font-size: 22px;
    font-family: "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
    letter-spacing: .06em;
}

/* 区切り線 */
.company-divider {
    border: 0;
    border-top: 1px solid #333;
    margin: 34px 0;
}

/* 会社概要DL */
.company-dl {
    margin: 0;
}

.company-dl__row {
    display: grid;
    grid-template-columns: 140px 1fr;
    gap: 20px;
    padding: 30px 0;
    border-bottom: 1px solid #c0bcbc;
}

.company-dl__row:first-child {
    border-top: 1px solid #c0bcbc;
}

.company-dl__row:last-child {
    border: none;
}

.company-dl dt {
    font-size: 14px;
    font-weight: 700;
    color: #222;
}

.company-dl dd {
    margin: 0;
    font-size: 14px;
    color: #333;
}

.company-dl__ddFlex {
    display: flex;
    gap: 16px;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

/* Google Mapsボタン */
.company-mapBtn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    border-radius: 999px;
    background: #2b2b2b;
    color: #fff;
    text-decoration: none;
    font-size: 12px;
    white-space: nowrap;
}

.company-mapBtn__icon {
    display: inline-flex;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #fff;
    color: #2b2b2b;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    line-height: 1;
}

/* Map */
.company-mapText {
    margin: 0 0 14px;
    font-size: 13px;
    color: #333;
}

.company-mapBox {
    border: 1px solid #e6eaee;
    background: #fff;
}

.company-mapBox img {
    width: 100%;
    height: auto;
    display: block;
}

.company-nav__item {
    position: relative;
    padding-left: 28px;
    /* 矢印分の余白 */
}

/* ＞ 矢印 */
.company-nav__item::after {
    content: "";
    position: absolute;
    left: 10px;
    top: 50%;

    width: 6px;
    height: 6px;

    border-top: 1.5px solid #b80f16;
    border-right: 1.5px solid #b80f16;
    transform: translateY(-50%) rotate(45deg);
}

/* hover */
.company-nav__item:hover::after {
    transform: translateY(-50%) rotate(45deg) translateX(2px);
    transition: .2s;
}

/* SP */
@media (max-width: 768px) {
    .page-company .page-container--narrow {
        width: min(980px, calc(100% - 40px));
    }

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

    .company-message p {
        line-height: 2.4;
    }


    .company-dl__row {
        display: grid;
        grid-template-columns: 1fr;
        /* 1列に変更 */
        gap: 0px;
        padding: 20px 0;
    }
}

/* 幅だけworks用に */
.page-works .page-container--wide {
    width: min(920px, calc(100% - 40px));
    margin: 0 auto;
}

/* companyのナビをworksでも使うが、必要なら微調整 */
.works-nav .company-nav__item.is-active {
    background: #333;
    color: #fff;
}

/* worksカード */
.works-main {

    display: grid;
    gap: 40px;
}

.works-card {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 22px;
    border: 1px solid #333;
    border-radius: 10px;
    padding: 30px;
    background: #fff;
	margin-bottom:30px;
}

.works-card__thumb {
    display: block;
    min-height: 160px;
    background: #bfbfbf;
    /* ダミー */
    text-decoration: none;
}
.works-card__thumb{
  display:block;
  width:100%;
  aspect-ratio: 16 / 10;
  background-size: cover;
  background-position: center;
  background-color:#f3f3f3;
}
.works-card__body {}

.works-card__title {
    margin: 0 0 12px;
    font-size: 16px;
    font-weight: 700;
}

.works-card__title a {
    color: #222;
    text-decoration: none;
}

.works-card__title a:hover {
    text-decoration: underline;
}

.works-card__dl {
    margin: 0;
    font-size: 14px;
}

.works-card__dl div {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 12px;
    padding: 6px 0;
    align-items: center;
}

.works-card__dl dt {
    font-weight: 700;
    color: #fff;
    background-color: #2b2b2b;
    line-height: 31px;
    border-radius: 10px;
    text-align: center;
    height: 31px;
}

.works-card__dl dd {
    margin: 0;
    color: #333;
}

/* SP */
@media (max-width:768px) {
    .page-works .page-container--wide {
        width: min(1080px, calc(100% - 40px));
    }

    /* company-layoutがSPで1カラムになるCSSが既にある前提 */
    .works-card {
        grid-template-columns: 1fr;
    }

    .works-card__thumb {
        min-height: 180px;
    }

    .page-works .company-nav {
        margin-bottom: 20px;
    }

    .works-card__dl div {
        display: block;
    }

    .works-card__dl dd {
        margin-top: 10px;
        text-align: center;
    }

    .works-category {
        position: relative;
    }

    /* select 本体 */
    .works-category__select {
        width: 100%;
        padding: 12px 36px 12px 14px;
        font-size: 13px;
        color: #222;

        border: 1px solid #333;
        border-radius: 6px;
        background-color: #fff;

        appearance: none;
        -webkit-appearance: none;
        -moz-appearance: none;
    }

    /* ▼ 通常時：下向き V */
    .works-category::after {
        content: "";
        position: absolute;
        right: 16px;
        top: 50%;

        width: 7px;
        height: 7px;

        border-right: 2px solid #333;
        border-bottom: 2px solid #333;

        transform: translateY(-50%) rotate(45deg);
        /* ∨ */
        pointer-events: none;
        transition: transform .2s ease;
    }


}

/* ===== CONTACT ===== */
.page-contact .page-container--narrow {
    width: min(720px, calc(100% - 40px));
}

/* step */
/* ===== 矢印ステップ ===== */
.contact-stepArrow {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0 0 40px;
    border: 1px solid #cfd6dc;
}

.contact-stepArrow__item {
    position: relative;
    flex: 1;
    padding: 14px 20px;
    text-align: center;
    font-size: 13px;
    background: #fff;
    color: #333;
}

/* 右向き矢印（三角） */
.contact-stepArrow__item::after {
    content: "";
    position: absolute;
    top: 50%;
    right: -19px;
    transform: translateY(-50%);

    width: 0;
    height: 0;
    border-top: 24px solid transparent;
    border-bottom: 24px solid transparent;
    border-left: 20px solid #fff;
    z-index: 2;
}

/* 重なり部分の境界線 */
.contact-stepArrow__item::before {
    content: "";
    position: absolute;
    top: 50%;
    right: -21px;
    transform: translateY(-50%);

    width: 0;
    height: 0;
    border-top: 25px solid transparent;
    border-bottom: 25px solid transparent;
    border-left: 21px solid #cfd6dc;
    z-index: 1;
}

/* 最後は矢印なし */
.contact-stepArrow__item:last-child::after,
.contact-stepArrow__item:last-child::before {
    display: none;
}

/* 現在ステップ */
.contact-stepArrow__item.is-current {
    background: #b80f16;
    color: #fff;
    font-weight: 700;
}

.contact-stepArrow__item.is-current::after {
    border-left-color: #b80f16;
}

/* 仕切り線（最初以外） */
.contact-stepArrow__item+.contact-stepArrow__item {
    border-left: 1px solid #cfd6dc;
}


/* lead */
.contact-lead {
    font-size: 13px;
    line-height: 1.9;
    margin-bottom: 30px;
	text-align:center;
}

/* form */
.contact-form {
    border-top: 1px solid #ddd;
}

.form-row {
    padding: 40px 0;
	border-bottom: 1px solid #ccc;
}
.form-row.none{
	border-bottom:none;
}
.form-combi {
    border-bottom: 1px solid #ccc;
}

.form-label {
    display: block;
    font-size: 13px;
    margin-bottom: 8px;
}

.form-combi .form-row {
    width: calc(50% - 20px);
    border: none !important;
}

.form-required {
    background: #b80f16;
    color: #fff;
    font-size: 11px;
    padding: 2px 6px;
    margin-left: 6px;
}

.form-row input,
.form-row textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #898989;
    border-radius: 8px;
    font-size: 14px;
}

.form-col2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-tel {
    display: flex;
	
	
    align-items: center;
    gap: 6px;
}

.form-tel input {
    width: 100px;
}

/* checkbox */
.form-check {
    margin: 20px 0;
    font-size: 13px;
    text-align: center;
}

.form-combi {
    display: flex;
    gap: 40px;
}

/* submit */
.form-submit {
    text-align: center;
    margin-top: 30px;
}

.wpcf7-submit,.wpcf7-previous {
    background: #333;
    color: #fff;
    border: none;
    padding: 14px 40px;
    border-radius: 6px;
    font-size: 14px;
    cursor: pointer;
	display:inline-block;
	margin:auto;
}
.wpcf7-spinner{
	display:none;
}
/* SP */
@media (max-width:768px) {
    .page-contact .page-container--narrow {
        width: min(720px, calc(100% - 40px));
    }

    .form-col2 {
        grid-template-columns: 1fr;
    }

    .form-combi {
        display: block;
    }

    .form-row {
        padding: 20px 0;
    }

    .form-combi .form-row {
        width: 100%
    }
}

/* ===== Recruit Message block ===== */
.recruit-messageBlock {
    padding: 60px 0 40px;
    width: 100%;
    overflow: hidden;
    margin-bottom: 50px;
}

.recruit-messageBlock__inner {
    width: min(1080px, calc(100% - 40px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: 320px 1fr;
    align-items: start;
}

.bg_green {
    background: rgb(38, 95, 119);
    color: #fff;
}

/* left label */
.recruit-messageBlock__en {
    margin: 0;
    font-family: "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
    font-size: 48px;
    line-height: 1.05;
    letter-spacing: .02em;
}

.recruit-messageBlock__jp {
    margin: 18px 0 0;
    font-size: 19px;
    font-weight: 700;
    letter-spacing: .1em;
}

.recruit-messageBlock__line {
    display: block;
    width: 100%;
    height: 1px;
    background: #707070;
    margin-top: 34px;
}

.bg_green .recruit-messageBlock__line {
    background-color: #fff;
}

/* right content */
.recruit-messageBlock__title {
    margin: 0;
    font-size: 28px;
    font-weight: 700;
    line-height: 1.6;
    letter-spacing: .04em;
    color: #111;
}

.recruit-messageBlock__text {
    margin-top: 18px;
}

.recruit-messageBlock__text p {
    margin: 0 0 14px;
    font-size: 14px;
    line-height: 2.4;
    color: #333;
}

.recruit-messageBlock__text p:last-child {
    margin-bottom: 0;
}

@media(max-width:1000px) {
    .business-grid {
        width: 100%;
    }
}

/* SP */
@media (max-width: 768px) {
    .recruit-messageBlock {
        padding: 34px 0 24px;
    }

    .recruit-messageBlock__inner {
        width: min(1080px, calc(100% - 40px));
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .recruit-messageBlock__en {
        font-size: 40px;
    }

    .recruit-messageBlock__line {
        margin-top: 18px;
    }

    .recruit-messageBlock__title {
        font-size: 20px;
        line-height: 1.7;
    }

    .business-grid {
        width: 100%;
        margin-left: 30px;
    }
}

.recruit-messageBlock__line {
    display: block;
    width: 52vw;
    /* 画面いっぱい */
    height: 1px;
    background: #707070;
    margin-top: 34px;

    /* 中央寄せレイアウトから左へ引っ張る */
    margin-left: calc(50% - 50vw);
}

/* ===== Job Description block ===== */
.recruit-job {
    padding: 60px 0 0;
    background: #fff;
}

.recruit-job__inner {
    width: min(1080px, calc(100% - 40px));
    margin: 0 auto 60px;
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 64px;
    align-items: start;
}

/* left label */
.recruit-job__en {
    margin: 0;
    font-family: "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
    font-size: 52px;
    line-height: 1.05;
    color: #2f3b45;
}

.recruit-job__jp {
    margin: 18px 0 0;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: .1em;
    color: #2f3b45;
}

.recruit-job__line {
    display: block;
    width: 100%;
    height: 1px;
    background: #707070;
    margin-top: 34px;
}

/* right dl */
.recruit-job__dl {
    margin: 0;
}

.recruit-job__row {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 28px;
    padding: 30px 0;
    border-top: 1px solid #cfd6dc;
}

.recruit-job__row:last-child {
    border-bottom: 1px solid #cfd6dc;
}

.recruit-job__dt {
    font-size: 14px;
    font-weight: 700;
    color: #222;
    letter-spacing: .08em;
}

.recruit-job__dd {
    margin: 0;
    font-size: 14px;
    color: #333;
}

/* section divider (横いっぱい) */
.recruit-job__divider {
    display: block;
    width: min(1080px, calc(100% - 40px));
    height: 1px;

    margin: 48px auto 0;
}

/* SP */
@media (max-width: 768px) {
    .recruit-job {
        padding: 34px 0 0;
    }

    .recruit-job__inner {
        width: min(1080px, calc(100% - 40px));
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .recruit-job__en {
        font-size: 40px;
    }

    .recruit-job__line {
        margin-top: 18px;
    }

    /* SPは1列にして読みやすく */
    .recruit-job__row {
        grid-template-columns: 1fr;
        gap: 8px;
        padding: 20px 0;
    }

    .recruit-job__divider {
        width: min(1080px, calc(100% - 40px));
        margin-top: 30px;
    }
}

/* 基本設定 */
.entry-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #c0101a;
    /* 画像に近い赤色 */
    color: #fff;
    text-decoration: none;
    border-radius: 20px;
    padding: 70px 60px;
    max-width: 900px;
    margin: 20px auto 60px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.entry-banner:hover {
    transform: translateY(-3px);
    opacity: 0.9;
}

/* テキストエリア */
.entry-banner__content {
    display: flex;
    align-items: center;
    gap: 60px;
    /* PC時の文字グループ間の余白 */
    flex: 1;
    justify-content: space-between;
    margin-right: 30px;
}

.entry-banner__sub-title {
    font-size: 16px;
    font-weight: bold;
    margin: 0 0 5px 0;
}

.entry-banner__title {
    font-size: 60px;
    font-family: 'Arial', sans-serif;
    line-height: 1;
    margin: 0;
}

.entry-banner__text {
    font-size: 16px;
    margin: 4px 0;
    white-space: nowrap;
}

/* 円形アイコン */
.entry-banner__icon {
    background-color: #fff;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* 円形アイコンの中の矢印(→) */
.arrow-right {
    position: relative;
    width: 24px;
    /* 矢印の長さ */
    height: 3px;
    /* 矢印の線の太さ */
    background-color: #c0101a;
    /* 矢印の色 */
    display: block;
}

.arrow-right::after {
    content: "";
    position: absolute;
    right: 0;
    /* 先端の位置 */
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
    width: 10px;
    /* 矢印の先端のサイズ */
    height: 10px;
    /* 矢印の先端のサイズ */
    border-top: 3px solid #c0101a;
    border-right: 3px solid #c0101a;
}

.page-recruit .page-hero__side {
    transform: rotate(0);
    right: 10px;
    left: inherit;
    top: inherit;
}

/* --- スマートフォン用レイアウト (SP) --- */
@media (max-width: 768px) {
    .entry-banner {
        flex-direction: column;
        /* 縦並びに変更 */
        text-align: center;
        padding: 60px 20px;
        max-width: 340px;
        /* 画像1枚目の縦長イメージに合わせる */
    }

    .entry-banner__content {
        flex-direction: column;
        gap: 30px;
        margin-bottom: 60px;
        margin-right: 0;
    }

    .entry-banner__title {
        font-size: 80px;
        /* SPでは文字をより強調 */
    }

    .entry-banner__text {
        white-space: normal;
        /* 折り返しを許可 */
        font-size: 15px;
    }

    .entry-banner__icon {
        width: 180px;
        height: 180px;
    }

    .page-recruit .page-hero__side {
        right: -130px;
        left: inherit;
        top: 230px;
        transform: rotate(90deg);
    }
}

/* 初期状態：Heroの中央付近に配置 */
.sticky-container {
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    z-index: 100;
    pointer-events: none;
}

/* 追従状態：画面の上から70pxの位置で固定 */
.sticky-container.is-fixed {
    position: fixed;
    top: 70px;
    /* ご指定の数値 */
    transform: none;
}

/* 停止状態：Leadの定位置に絶対配置 */
.sticky-container.is-stopped {
    position: absolute;
    top: var(--stop-top);
    /* JSで計算した位置 */
    transform: none;
}

.clip_2 {
    opacity: 0;
    /* 目標地点なので見えなくてOK */
}

.clip-text {
    position: relative;
    z-index: -2;
}

.lead {
    z-index: 333;
}

.strength-link {
    display: block;

    /* ふわっとさせる */
    text-decoration: none;

    /* ちらつき防止の魔法（描画を安定させる） */
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

.strength-link:hover {
    opacity: 0.7;

}

/* 最初は隠しておく */
.fade-in {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 1.5s ease-out, transform 1.5s ease-out;
}

/* 画面に入った時に付与するクラス */
.fade-in.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.hidden-fields-container{
	border:none;
}
.single__title{
	margin:0px 0 10px 0;
}

.single__meta{
	display:flex;
	gap:16px;
	align-items:center;
}
.single__cats{
	color:#fff;
	background:#222;
	padding:4px 8px;
	border-radius:10px;
	font-size:13px;
}

@media(max-width:768px){
	.single__title{
		line-height:1.3;
		font-size:20px;
	}
	
}

.single__dl--case{
  margin: 18px 0 0;
  padding: 16px;
  border: 1px solid #e6e6e6;
  border-radius: 12px;
}

.single__dlRow{
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 12px;
  padding: 10px 0;
}

.single__dlRow + .single__dlRow{
  border-top: 1px solid #eee;
}

.single__dlRow dt{
  font-weight: 700;
}

.single__dlRow dd{
  margin: 0;
  line-height: 1.7;
}

.single__thumb--acf img{
  width: 100%;
  height: auto;
  display: block;
  border-radius: 14px;
  margin-top:30px;
}
/* 固定ヘッダーの高さ分を指定 */
.anchor {
  scroll-margin-top: -20px;
}
div.breadcrumbs {
  font-size:12px;
margin-top:20px;
}
@media(max-width:768px){
	div.breadcrumbs {
	  margin-bottom:12px;
  }
}
@media(min-width:768px){
.page-recruit .breadcrumbs{
	margin-top:0 !important;
}
}