@charset "UTF-8";

/* =========================================
   基本設定・リセット・変数定義
   ========================================= */
:root {
    /* カラーパレット */
    --color-main-blue: #1a2a4a;
    /* 深いネイビー */
    --color-sub-blue: #2c4c8a;
    /* 明るめのネイビー */
    --color-accent-orange: #ffc107;
    /* 安全色イエロー/オレンジ */
    --color-accent-dark: #333333;
    --color-text-base: #333333;
    --color-text-white: #ffffff;
    --color-bg-light: #f4f7f6;
    /* 薄いグレー */
    --color-line-green: #06c755;

    /* フォント */
    --font-ja: 'Noto Sans JP', sans-serif;
    --font-en: 'Oswald', sans-serif;

    /* サイズ */
    --header-height: 90px;
}

/* リセットCSS & 基本設定 */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-ja);
    color: var(--color-text-base);
    line-height: 1.8;
    background-color: #fff;
    overflow-x: hidden;
    padding-top: var(--header-height);
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s;
}

a:hover {
    opacity: 0.8;
}

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

ul {
    list-style: none;
}

/* =========================================
   共通クラス・コンポーネント
   ========================================= */
/* コンテナ */
.container {
    width: 90%;
    max-width: 1100px;
    margin: 0 auto;
}

/* セクション共通 */
.section {
    padding: 8rem 0;
    position: relative;
}

/* セクションヘッダー */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header--left {
    text-align: left;
}

.section-header--white {
    color: var(--color-text-white);
}

.section-header__en {
    font-family: var(--font-en);
    font-size: 3rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: var(--color-main-blue);
    text-transform: uppercase;
    line-height: 1;
}

.section-header--white .section-header__en {
    color: var(--color-accent-orange);
}

.section-header__ja {
    font-size: 1.1rem;
    font-weight: 700;
    margin-top: 0.8rem;
    display: block;
}

.section-header--white .section-header__ja {
    color: var(--color-text-white);
}

@media (max-width: 768px) {

    .section {
        padding: 4rem 0;
        position: relative;
    }


    .section-header {
        text-align: center;
        margin-bottom: 2rem;
    }

}


/* ボタン */
.btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 1rem 3rem;
    font-weight: 700;
    border-radius: 9999px;
    min-width: 240px;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.btn span {
    position: relative;
    z-index: 1;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateX(-100%);
    transition: transform 0.3s;
    z-index: 0;
}

.btn:hover::before {
    transform: translateX(0);
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.btn--dark {
    background-color: var(--color-accent-dark);
    color: var(--color-text-white);
}

.btn--accent {
    background-color: var(--color-accent-orange);
    color: var(--color-text-base);
}

.btn--outline {
    background-color: transparent;
    border: 2px solid var(--color-text-white);
    color: var(--color-text-white);
}

.btn--outline:hover {
    background-color: var(--color-text-white);
    color: var(--color-accent-dark);
}

.btn--line {
    background-color: var(--color-line-green);
    color: var(--color-text-white);
    font-size: 1.2rem;
    padding: 1.2rem;
    width: 100%;
    max-width: 500px;
}

@media (max-width: 900px) {

    .btn {
        display: inline-flex;
        justify-content: center;
        align-items: center;
        padding: 0.5rem 1.5rem;
        font-weight: 700;
        border-radius: 9999px;
        min-width: 240px;
        transition: all 0.3s;
        position: relative;
        overflow: hidden;
        font-size: 0.8rem;
    }

}



/* SP表示切り替え */
.sp-only {
    display: none;
}

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

    .pc-only {
        display: none;
    }
}

/* =========================================
   アニメーション関連
   ========================================= */
/* フェードインの初期状態 */
.js-fadein-up,
.js-fadein {
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.js-fadein-up {
    transform: translateY(30px);
}

/* スクロールして画面に入った時の状態 */
.is-visible.js-fadein-up {
    opacity: 1;
    transform: translateY(0);
}

.is-visible.js-fadein {
    opacity: 1;
}

/* 表示遅延用クラス */
.delay-1 {
    transition-delay: 0.1s;
}

.delay-2 {
    transition-delay: 0.2s;
}

.delay-3 {
    transition-delay: 0.3s;
}

/* =========================================
   ヘッダー・フッター
   ========================================= */
/* ヘッダー */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: #fff;
    transition: all 0.3s;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

/* スクロール時のヘッダー変化 */
.header.is-scrolled {
    height: 90px;
    background-color: rgba(255, 255, 255, 0.95);
}

.header__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 5%;
    height: var(--header-height);
}

.header__logo {
    margin-top: -15px;
}

.header__logo img {
    height: 40px;
    width: auto;
}

/* PC用ナビゲーション */
.header__nav {
    display: flex;
    align-items: center;
}

@media (max-width: 900px) {
    .header__nav {
        display: none;
    }

    .header__logo {
        margin-top: 0px;
    }

    .header__logo img {
        height: 25px;
        width: auto;
        display: block;
    }

    .header__inner {
        height: 50px;
    }

    .header.is-scrolled {
        height: 50px;
    }
}

/* タブレット以下で非表示 */
.header__nav-list {
    display: flex;
    gap: 2rem;
    margin: 0;
}

.header__nav-item a {
    font-weight: 700;
    font-size: 0.95rem;
    position: relative;
}

.header__nav-item a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-main-blue);
    transition: width 0.3s;
}

.header__nav-item a:hover::after {
    width: 100%;
}

.header__btn {
    margin-left: 2rem;
    padding: 0.6rem 1.5rem;
    min-width: auto;
    font-size: 0.9rem;
}

/* ハンバーガーメニューボタン（SP用） */
.header__hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 50px;
    height: 50px;
    position: relative;
    z-index: 1001;
}

@media (max-width: 900px) {
    .header__hamburger {
        display: block;
    }
}

.header__hamburger span {
    position: absolute;
    left: 10px;
    width: 30px;
    height: 2px;
    background-color: var(--color-main-blue);
    transition: all 0.3s;
}

.header__hamburger span:nth-child(1) {
    top: 15px;
}

.header__hamburger span:nth-child(2) {
    top: 24px;
}

.header__hamburger span:nth-child(3) {
    bottom: 15px;
}

/* メニューオープン時のボタン変化 */
.header.is-open .header__hamburger span:nth-child(1) {
    top: 24px;
    transform: rotate(45deg);
    background-color: #fff;
}

.header.is-open .header__hamburger span:nth-child(2) {
    opacity: 0;
    background-color: #fff;
}

.header.is-open .header__hamburger span:nth-child(3) {
    bottom: 24px;
    transform: rotate(-45deg);
    background-color: #fff;
}

/* SP用ドロワーメニュー */
.header__drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    background-color: var(--color-main-blue);
    z-index: 1000;
    padding-top: 80px;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    visibility: hidden;
}

.header.is-open .header__drawer {
    transform: translateX(0);
    visibility: visible;
}

.header__drawer-list {
    text-align: center;
    margin: 0;
}

.header__drawer-item {
    margin-bottom: 2rem;
}

.header__drawer-item a {
    color: var(--color-text-white);
    font-size: 1.2rem;
    font-weight: 700;
    display: inline-block;
}

/* フッター */
.footer {
    background-color: var(--color-main-blue);
    color: var(--color-text-white);
    padding: 5rem 0 2rem;
    text-align: left;
}

.footer__container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 4rem;
    flex-wrap: wrap;
    gap: 3rem;
}

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

.footer__logo img {
    height: 83px;
    width: auto;
    margin-bottom: 1.5rem;
}

.footer__address {
    font-style: normal;
    font-size: 0.9rem;
    opacity: 0.8;
}

.footer__links {
    flex: 2;
    display: flex;
    justify-content: flex-end;
    gap: 4rem;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .footer__links {
        justify-content: flex-start;
        gap: 2rem;
        display: none;
    }

    .footer {
        padding: 2.5rem 0 1rem;
    }

    .footer__info {
        flex: 1;
        min-width: 100%;
    }

    .footer__logo {
        text-align: center;
    }

    .footer__address {
        text-align: center;
        font-size: 0.6rem;
    }

    .footer__link-group {
        width: 100%;
    }

    .footer__container {
        margin-bottom: 2rem;
    }
}

.footer__link-group h4 {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    color: var(--color-accent-orange);
}

.footer__link-group li {
    margin-bottom: 0.8rem;
}

.footer__link-group a {
    font-size: 0.9rem;
    opacity: 0.8;
}

.footer__link-group a:hover {
    opacity: 1;
}

.footer__copyright {
    text-align: center;
    font-size: 0.8rem;
    opacity: 0.6;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
}

@media (max-width: 768px) {
    .footer__copyright {
        padding-top: 1rem;
        color: #fff;
    }

    .footer__copyright small {
        color: #fff;
    }
}


/* =========================================
   トップページ専用スタイル
   ========================================= */
/* ヒーローセクション */
.hero {
    position: relative;
    height: calc(100vh - var(--header-height));
    min-height: 1000px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--color-text-white);
    margin-top: calc(var(--header-height) * -1);
    /*padding-top: var(--header-height);*/
    overflow: hidden;
}

.hero__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero__bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(26, 42, 74, 0.7), rgba(44, 76, 138, 0.4));
}

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

.hero__title {
    font-family: var(--font-en);
    font-size: clamp(3.5rem, 12vw, 7rem);
    font-weight: 900;
    line-height: 1;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.hero__subtitle {
    font-size: clamp(1.2rem, 4vw, 2.2rem);
    font-weight: 700;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}


@media (max-width: 900px) {
    .hero {
        min-height: 500px;
    }
}


/* About セクション */
.about {
    background-color: var(--color-bg-light);
    clip-path: polygon(0 0, 100% 5vw, 100% 100%, 0 100%);
    padding-top: 12rem;
    margin-top: -10vw;
    z-index: 1;
}

.about__container {
    position: relative;
}

.about__content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about__text {
    font-size: 1.1rem;
    margin-bottom: 3rem;
    font-weight: 500;
    line-height: 2;
}

/* 装飾（アテ画像） */
.about__deco {
    position: absolute;
    z-index: -1;
    opacity: 0.15;
    pointer-events: none;
}

.about__deco--1 {
    top: -50px;
    left: -10%;
    width: 300px;
    transform: rotate(-15deg);
}

.about__deco--2 {
    bottom: -100px;
    right: -5%;
    width: 400px;
}


@media (max-width: 900px) {
    .about {
        padding-top: 6rem;
    }

    .about__text {
        font-size: 0.8rem;
        margin-bottom: 1.5rem;
        font-weight: 500;
        line-height: 2;
    }

}



/* Service セクション */
.service {
    background-color: var(--color-main-blue);
    padding-top: 12rem;
    margin-top: -6vw;
}

.service__lead {
    text-align: center;
    margin-bottom: 5rem;
    font-size: 1.2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #fff;
}

.service__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-bottom: 5rem;
}

.service-card {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.3s;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-card__img-wrapper {
    height: 240px;
    overflow: hidden;
}

.service-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.service-card:hover .service-card__img {
    transform: scale(1.1);
}

.service-card__body {
    padding: 2rem;
    text-align: center;
}

.service-card__title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #fff;
}

.service .contact {
    background: #fff;
}

@media (max-width: 900px) {
    .service {
        padding-top: 6rem;
        margin-top: -5vw;
    }

    .service__lead {
        font-size: 0.8rem;
        margin-bottom: 2.5rem;
    }

    .service__grid {
        margin-bottom: 2.5rem;
    }
}



/* Professional セクション */
.professional {
    background-color: var(--color-main-blue);
    color: var(--color-text-white);
    overflow: hidden;
    padding-top: 5rem;
}

.professional__bg-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--font-en);
    font-size: 18vw;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.03);
    white-space: nowrap;
    pointer-events: none;
}

.professional__container {
    position: relative;
    z-index: 1;
    text-align: center;
}

.professional__lead {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--color-accent-orange);
}

.professional__text {
    max-width: 800px;
    margin: 0 auto 4rem;
    font-size: 1.1rem;
    line-height: 2;
}


@media (max-width: 900px) {
    .professional__lead {
        font-size: 1.4rem;
    }

    .professional__text {
        font-size: 0.8rem;
        margin-bottom: 2rem;
    }
}


/* Recruit セクション */
.recruit {
    min-height: 700px;
}

.recruit__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.recruit__bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.8) 30%, rgba(0, 0, 0, 0.3));
}

.recruit__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.recruit__content {
    width: 90%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 4rem 0;
}

.recruit__title {
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 2rem;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    color: #fff;
}

.recruit__text {
    font-size: 1.2rem;
    margin-bottom: 4rem;
    max-width: 600px;
    font-weight: 700;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
    color: #fff;
}

@media (max-width: 900px) {
    .recruit__content {
        padding: 2rem 0;
    }

    .recruit {
        min-height: 450px;
        padding: 2rem 0;
    }

    .recruit__text {
        font-size: 0.8rem;
        margin-bottom: 2rem;
    }
}


/* Contact セクション */
.contact {
    z-index: 1;
    position: relative;
    text-align: center;
}

.contact__lead {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 4rem;
}

.contact__methods {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

.contact__tel-link {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    font-weight: 900;
    color: var(--color-main-blue);
    line-height: 1;
    transition: color 0.3s;
}

.contact__tel-link:hover {
    color: var(--color-accent-orange);
    opacity: 1;
}

.contact__tel-link img {
    margin-right: 1rem;
    color: var(--color-accent-orange);
    height: 3rem;
    width: auto;
}

.contact__tel-note {
    font-size: 0.9rem;
    color: #666;
    margin-top: 0.5rem;
    font-weight: 700;
}

.contact__line-note {
    font-size: 1rem;
    color: var(--color-main-blue);
    margin-top: 1.5rem;
    font-weight: 700;
}


@media (max-width: 900px) {
    .contact {
        padding-top: 6rem;
    }

    .contact__lead {
        font-size: 0.8rem;
        font-weight: 700;
        margin-bottom: 2rem;
    }

    .contact__tel-link {
        font-size: 1.5rem;
    }

    .contact__tel-link img {
        margin-right: 0.5rem;
        height: 1.5rem;
        width: auto;
    }

    .contact__methods {
        gap: 1.5rem;
        margin-bottom: 0.8rem;
    }

    .btn--line {
        width: 240px;
    }

    .contact__line-note {
        font-size: 0.8rem;
    }
}



/* =========================================
   下層ページ共通スタイル
   ========================================= */
/* 下層ページ用ヒーローセクション */
.sub-hero {
    position: relative;
    height: 40vh;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--color-text-white);
    margin-top: calc(var(--header-height) * -1);
    padding-top: var(--header-height);
    overflow: hidden;
    z-index: 1;
}

.sub-hero__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.sub-hero__bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(26, 42, 74, 0.8), rgba(44, 76, 138, 0.6));
}

.sub-hero__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sub-hero__title {
    font-family: var(--font-en);
    font-size: 3rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.sub-hero__subtitle {
    font-size: 1rem;
    font-weight: 700;
    margin-top: 0.5rem;
}

/* パンくずリスト */
.breadcrumb {
    background-color: var(--color-bg-light);
    padding: 1rem 0;
    font-size: 0.9rem;
}

.breadcrumb ul {
    display: flex;
    flex-wrap: wrap;
    margin: 0;
}

.breadcrumb li:not(:last-child)::after {
    content: '>';
    margin: 0 0.8rem;
    color: #999;
}

.breadcrumb li:last-child {
    font-weight: 700;
    color: var(--color-main-blue);
}


/* =========================================
   企業情報ページ (company.html) 専用スタイル
   ========================================= */
/* 代表挨拶 */
.message__content {
    display: flex;
    align-items: flex-start;
    gap: 4rem;
}

@media (max-width: 768px) {
    .message__content {
        flex-direction: column;
        gap: 2rem;
    }
}

.message__img {
    flex: 1;
    max-width: 400px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.message__body {
    flex: 1.5;
}

.message__title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 2rem;
    line-height: 1.4;
    color: var(--color-main-blue);
    text-align: center;
}


@media (max-width: 768px) {
    .message__title {
        font-size: 1.6rem;
    }
}


.message__text {
    margin-bottom: 2rem;
    text-align: justify;
}

.message__name {
    font-size: 1.1rem;
    font-weight: 700;
    text-align: right;
}

/* 会社概要テーブル */
.outline {
    background-color: var(--color-bg-light);
}

.outline__table-wrapper {
    background-color: #fff;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

@media (max-width: 768px) {
    .outline__table-wrapper {
        padding: 1rem;
    }
}

.outline__table {
    width: 100%;
    border-collapse: collapse;
}

.outline__table th,
.outline__table td {
    padding: 1.2rem;
    border-bottom: 1px solid #eee;
    text-align: left;
}

.outline__table th {
    width: 25%;
    background-color: var(--color-bg-light);
    font-weight: 700;
    color: var(--color-main-blue);
}

@media (max-width: 768px) {

    .outline__table th,
    .outline__table td {
        display: block;
        width: 100%;
    }

    .outline__table th {
        border-bottom: none;
        padding-top: 0.5rem;
        padding-bottom: 0.5rem;
    }

    .outline__table td {
        padding-top: 0.5rem;
    }
}

/* アクセスマップ */
.access__map {
    height: 400px;
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 1.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.access__map iframe {
    width: 100%;
    height: 100%;
}


/* =========================================
   事業案内ページ (service) 専用スタイル
   ========================================= */
/* 事業紹介リード */
.service-lead {
    text-align: center;
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.service-lead__title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--color-accent-orange);
    line-height: 1.4;
}


@media (max-width: 768px) {

    .service-lead__title {
        font-size: 1.6rem;
    }
}

.service-lead__text {
    max-width: 800px;
    margin: 0 auto;
    line-height: 2;
    color: #fff;
}

/* 事業詳細ブロック */
.service-detail {
    padding: 6rem 0;
    color: #fff;
}

.service #tobi {}

.service-detail:nth-child(even) {
    background-color: var(--color-bg-light);
    color: #000;
}

.service-detail__inner {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.service-detail--reverse .service-detail__inner {
    flex-direction: row-reverse;
}

@media (max-width: 900px) {

    .service-detail__inner,
    .service-detail--reverse .service-detail__inner {
        flex-direction: column;
        gap: 2rem;
    }
}

.service-detail__img {
    flex: 1;
    max-width: 500px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.service-detail__body {
    flex: 1;
}

.service-detail__title {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--color-main-blue);
    position: relative;
    padding-bottom: 1rem;
}

.service-detail--reverse .service-detail__title {
    color: var(--color-accent-orange);
}

.service-detail__title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--color-accent-orange);
}

.service-detail__text {
    margin-bottom: 2rem;
    text-align: justify;
}

.service-detail__list {
    margin: 0;
    padding-left: 1.5rem;
}

.service-detail__list li {
    margin: 0;
    margin-bottom: 0.5rem;
    font-weight: 700;
    list-style: disc;
}

/* =========================================
   強み・安全ページ (safety.html) 専用スタイル
   ========================================= */
/* 安全への誓いリード */
.safety-lead {
    text-align: center;
    padding-bottom: 4rem;
}

.safety-lead__title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--color-main-blue);
    line-height: 1.4;
}

@media (max-width: 900px) {

    .safety-lead__title {
        font-size: 1.6rem;
    }
}


.safety-lead__text {
    max-width: 800px;
    margin: 0 auto;
    line-height: 2;
}

@media (max-width: 900px) {

    .safety-lead__text {
        text-align: left;
    }
}

/* 強みポイントブロック */
.safety-point {
    padding: 6rem 0;
}

@media (max-width: 900px) {

    .safety-point {
        padding: 4rem 0;
    }
}

.safety-point:nth-child(odd) {
    background-color: var(--color-bg-light);
}

.safety-point__inner {
    display: flex;
    align-items: center;
    gap: 5rem;
}

.safety-point--reverse .safety-point__inner {
    flex-direction: row-reverse;
}

@media (max-width: 900px) {

    .safety-point__inner,
    .safety-point--reverse .safety-point__inner {
        flex-direction: column;
        gap: 3rem;
    }
}

.safety-point__img {
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
}

/* 画像に少し装飾を加える */
.safety-point__img::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100px;
    height: 100px;
    background-color: var(--color-accent-orange);
    z-index: -1;
    border-radius: 12px;
    opacity: 0.5;
}

.safety-point--reverse .safety-point__img::before {
    left: auto;
    right: -20px;
}

.safety-point__body {
    flex: 1;
    position: relative;
}

.safety-point__number {
    font-family: var(--font-en);
    font-size: 5rem;
    font-weight: 900;
    color: rgba(26, 42, 74, 0.1);
    /* 薄いネイビー */
    position: absolute;
    top: -4rem;
    left: -2rem;
    z-index: 0;
    line-height: 1;
}

.safety-point__title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--color-main-blue);
    line-height: 1.3;
    position: relative;
    z-index: 1;
}

@media (max-width: 900px) {

    .safety-point__title {
        font-size: 1.6rem;
    }
}

.safety-point__text {
    text-align: justify;
    position: relative;
    z-index: 1;
}


/* =========================================
   採用情報ページ (recruit.html) 専用スタイル
   ========================================= */
/* 採用リード */
.recruit-lead {
    text-align: center;
    padding-bottom: 4rem;
    background: linear-gradient(to bottom, #fff 0%, var(--color-bg-light) 100%);
}

.recruit-lead__title {
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 2rem;
    color: var(--color-main-blue);
    line-height: 1.4;
}

@media (max-width: 900px) {

    .recruit-lead__title {
        font-size: 1.6rem;
    }
}


.recruit-lead__text {
    max-width: 800px;
    margin: 0 auto 3rem;
    line-height: 2;
    font-weight: 500;
}

@media (max-width: 900px) {

    .recruit-lead__text {
        text-align: left;
    }
}

.recruit-lead__actions {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.recruit-lead__actions .btn--line {
    max-width: 300px;
}

/* 魅力ポイントグリッド */
.recruit-points {
    background-color: var(--color-bg-light);
    padding-top: 4rem;
}

@media (max-width: 900px) {

    .recruit-points {
        padding-top: 0rem;
    }
}

.recruit-points__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    text-align: center;
}

@media (max-width: 900px) {

    .recruit-points__grid {
        gap: 1rem;
    }
}


.recruit-point {
    background-color: #fff;
    padding: 2.5rem 2rem;
    border-radius: 16px;
}

.recruit-point:hover {}

.recruit-point__icon img {
    width: 80px;
    height: 80px;
    margin-bottom: 1.5rem;
}

.recruit-point__title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--color-main-blue);
}

.recruit-point__text {
    font-size: 0.95rem;
}

@media (max-width: 900px) {

    .recruit-point__text {
        text-align: left;
    }
}

/* 募集要項（outlineのスタイルを継承・調整） */
.outline--recruit {
    background-color: #fff;
}

.outline--recruit .outline__table th {
    background-color: var(--color-main-blue);
    color: var(--color-text-white);
}

.outline--recruit .outline__table-wrapper {
    border: 2px solid var(--color-main-blue);
}

/* 応募CTA */
.recruit-cta {
    background-color: var(--color-main-blue);
    color: var(--color-text-white);
    text-align: center;
    padding: 6rem 0;
}

.recruit-cta__title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
}

.recruit-cta__text {
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

.recruit-cta__actions {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.recruit-cta__actions .btn--line {
    background-color: var(--color-line-green);
    max-width: 400px;
    font-size: 1.3rem;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.recruit-cta__actions .contact__tel-link {
    color: var(--color-text-white);
}

.recruit-cta__actions .contact__tel-link svg {
    color: var(--color-accent-orange);
}


main.service {
    padding: 0;
}


/* =========================================
   個人情報保護方針ページ (privacy.html) 専用スタイル
   ========================================= */
.privacy {
    padding-top: 12rem;
    margin-top: -5vw;
}

.privacy__content {
    background-color: #fff;
    padding: 4rem;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    max-width: 900px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .privacy__content {
        padding: 2rem;
    }
}

.privacy__lead {
    margin-bottom: 3rem;
    font-weight: 500;
}

.privacy__content h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--color-main-blue);
    margin-bottom: 1rem;
    margin-top: 3rem;
    padding-left: 1rem;
    border-left: 4px solid var(--color-accent-orange);
    line-height: 1.3;
}

.privacy__content h4:first-of-type {
    margin-top: 0;
}

.privacy__content p {
    margin-bottom: 1.5rem;
    text-align: justify;
}

.privacy__content ul {
    list-style: disc;
    padding-left: 2rem;
    margin-bottom: 1.5rem;
}

.privacy__content ul li {
    margin-bottom: 0.5rem;
}

.privacy__address {
    font-style: normal;
    background-color: var(--color-bg-light);
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 1rem;
}

:root {
    --adminbar-h: 0px;
}

/* WPログイン時だけ管理バー分だけ下げる */
body.admin-bar {
    --adminbar-h: 32px;
}

@media (max-width: 782px) {
    body.admin-bar {
        --adminbar-h: 46px;
    }
}


/**************

お問い合わせ

*************************/

.contact-form .wpcf7 {
    max-width: 800px;
    margin: 0 auto;
}

.contact-form .f-item {
    padding: 20px 0px;
    margin-bottom: 2px;
    text-align: left;
}

.contact-form .contact-info__lead {
    margin-bottom: 30px;
}

.contact-form .f-item input[type="text"],
.contact-form .f-item input[type="email"],
.contact-form .f-item input[type="tel"] {
    width: 100%;
    padding: 2% 1%;
}

.contact-form .f-title {
    font-size: 15px;
    font-weight: 600;
    line-height: 1.4em;
    letter-spacing: 0.05em;
    color: #000;
    margin-bottom: 4px;
    text-align: left;
}

.contact-form .f-title .red {
    color: #d80000;
}

.contact-form p {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 400;
    letter-spacing: .075em;
    line-height: 1.8;
    ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
    -webkit-font-feature-settings: 'palt';
    font-feature-settings: 'palt';
    -webkit-overflow-scrolling: touch;
    margin-bottom: 0;
}

.contact-form .wpcf7 .wpcf7-submit,
.contact-form .wpcf7 .wpcf7-previous {
    -webkit-transition: all .3s;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    display: block;
    position: relative;
    width: 225px;
    height: 48px;
    margin: 15px auto 30px;
    border: none !important;
    outline: none;
    background-color: #333333;
    font-size: 14px;
    line-height: 1.5;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    transition: all .3s;
    color: #fff;
}

.contact-form .wpcf7 .wpcf7-submit {
    background-color: #2c4c8a;
}

.contact-form input[type="submit"] {
    font-size: 18px;
    font-weight: 600 !important;
    padding: 22px 15px !important;
    width: 300px !important;
    height: auto !important;
    margin: 0 auto;
}

.complete .__btn {
    display: block;
    width: 200px;
    margin: auto;
    border: 3px solid #333;
    text-align: center;
    font-size: 14px;
    padding: 15px 0;
    transition: 0.3s;
    cursor: pointer;
    margin-top: 15px;
}

.contact-form .wpcf7 select {
    padding: 1%;
}


/** SP **/
@media only screen and (max-width: 767px) {

    .contact-form .f-item {
        padding: 0 1.5rem;
        margin-bottom: 1.5rem;
    }

    .f-item input[type="text"],
    .f-item input[type="email"],
    .f-item input[type="url"],
    .f-item input[type="password"],
    .f-item input[type="search"],
    .f-item input[type="number"],
    .f-item input[type="tel"],
    .f-item input[type="range"],
    .f-item input[type="date"],
    .f-item input[type="month"],
    .f-item input[type="week"],
    .f-item input[type="time"],
    .f-item input[type="datetime"],
    .f-item input[type="datetime-local"],
    .f-item input[type="color"],
    .f-item textarea {
        width: 100%;
    }

}