@charset "UTF-8";

/* =========================================
    アイリス デザイン方針

    ・白ベース
    ・薄いブルーをアクセントに使用
    ・信頼感と清潔感を重視
    ・角丸はやや大きめ
    ・影は控えめ
    ・余白で魅せる
    ・ドットと円を共通装飾として使用
    ・派手なグラデーションは使わない
    ・アニメーションは控えめ
========================================= */

:root {

    /* =========================================
        カラー設計
        誠実・清潔感・信頼感を重視
    ========================================= */

    /* サイト全体背景 */
    --bg-main: #f8fafc;

    /* セクション切り替え用 */
    --bg-sub: #f1f5f9;

    /* ヒーロー背景 */
    --bg-hero: #f3f8fc;

    /* カード背景 */
    --bg-card: #ffffff;

    /* メイン文字 */
    --text-main: #1e293b;

    /* 補助文字 */
    --text-sub: #64748b;

    /* ブランドカラー */
    --primary: #009ecf;

    /* アクセント */
    --accent: #38bdf8;

    /* ボーダー */
    --border: #e2e8f0;



    /* =========================================
        余白ルール
        8pxベースで統一
    ========================================= */

    /* 8px */
    --space-xs: 8px;

    /* 16px */
    --space-sm: 16px;

    /* 24px */
    --space-md: 24px;

    /* 48px */
    --space-lg: 48px;

    /* セクション内余白 */
    --space-xl: 80px;

    /* PCセクション余白 */
    --space-2xl: 120px;



    /* =========================================
        角丸ルール
        「やわらかい企業サイト」を意識
    ========================================= */

    /* ボタン */
    --radius-sm: 8px;

    /* カード・画像 */
    --radius-md: 20px;

    /* Hero装飾など大きめ */
    --radius-lg: 28px;



    /* =========================================
        シャドウルール
        強すぎない高級感
    ========================================= */

    /* 通常 */
    --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.05);

    /* カード */
    --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.08);

    /* Hover */
    --shadow-lg: 0 16px 40px rgba(0, 0, 0, 0.12);



    /* =========================================
        フォントサイズ
        SP基準
    ========================================= */

    /* ヒーロータイトル */
    --hero-title: clamp(36px, 6vw, 56px);

    /* セクションタイトル */
    --text-title: clamp(28px, 4vw, 36px);

    /* カードタイトル */
    --text-heading: 20px;

    /* 本文 */
    --text-body: 16px;

    /* 補助 */
    --text-small: 13px;

    /* ctaタイトル */
    --cta-title: clamp(32px, 5vw, 42px);



    /* =========================================
        z-index
    ========================================= */

    --z-base: 1;
    --z-header: 20;
    --z-overlay: 100;
    --z-menu: 300;
    --z-hamburger: 400;



    /* =========================================
        アニメーション
    ========================================= */

    /* 通常hover */
    --transition-fast: 0.25s ease;

    /* 大きめ動作 */
    --transition-base: 0.35s ease;
}


html {
    scroll-behavior: smooth;
}

/* =========================================
    Accessibility
========================================= */

a:focus-visible,
button:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 4px;
    border-radius: var(--radius-sm);
}

/* =========================================
    Cursor（クリック可能要素）
========================================= */

/* クリックできるものは指マーク */
a,
button,
[role="button"] {
    cursor: pointer;
}

/* 無効状態 */
a.disabled,
button:disabled {
    cursor: default;
    pointer-events: none;
}

/* 画像リンクもちゃんと指にする */
a img {
    cursor: pointer;
}

/* =========================================
    Common Transition
========================================= */

a,
button {
    transition:
        color var(--transition-fast),
        background-color var(--transition-fast),
        border-color var(--transition-fast),
        opacity var(--transition-fast);
}

/* =========================================
    Base
========================================= */

body {
    margin: 0;
    padding: 0;

    font-family: "Noto Sans JP", sans-serif;
    font-weight: 500;

    color: var(--text-main);
    background-color: var(--bg-main);
}

/* =========================================
    Inner
========================================= */

.inner {
    width: min(100% - 64px, 1200px);
    margin-inline: auto;
}

/* =========================================
    Section（共通レイアウト）
   ========================================= */

.section {
    position: relative;
    padding: var(--space-xl) 0;
}

.section--compact {
    padding: var(--space-lg) 0;
}

/* =========================================
    Section Title
========================================= */

.section_title {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;

    margin-bottom: var(--space-md);
}

/* メインタイトル */

.section_title_main {
    position: relative;

    font-size: var(--text-title);
    font-weight: 800;
    letter-spacing: 0.02em;
    line-height: 1.4;

    color: var(--text-main);
}

/* 下線（アクセント） */

.section_title_main::after {
    content: "";
    display: block;

    width: 56px;
    height: 3px;

    border-radius: var(--radius-sm);

    margin-top: var(--space-xs);

    background: var(--primary);
}

/* サブタイトル */

.section_title_sub {
    position: relative;

    font-size: var(--text-small);
    color: var(--primary);

    letter-spacing: 0.12em;

    margin-top: 4px;
}

/* =========================================
    PC
========================================= */

@media (min-width: 1024px) {

    .section_title {
        margin-bottom: var(--space-lg);
    }

    .section_title_sub {
        font-size: 15px;
    }
}


/* =========================================
    CTAボタン（採用）
    ========================================= */
.entry-btn {
    display: inline-block;

    padding: 10px 20px;

    font-size: var(--text-small);
    font-weight: 700;

    color: #fff;
    text-decoration: none;

    /* グラデ弱めに調整 */
    background: linear-gradient(135deg,
            var(--accent),
            var(--primary));

    /* 角丸ルール統一 */
    border-radius: var(--radius-md);

    /* 影ルール統一 */
    box-shadow: var(--shadow-sm);

    transition:
        transform var(--transition-fast),
        box-shadow var(--transition-fast),
        background-color var(--transition-fast),
        color var(--transition-fast),
        border-color var(--transition-fast);
}

/* メイン（採用） */
.entry-btn.primary {
    background: linear-gradient(135deg, var(--accent), var(--primary));
    color: #fff;
    border: 1px solid var(--accent);
}

.entry-btn.primary:hover {
    background: transparent;
    color: var(--primary);
    border: 1px solid var(--primary);
}

/* サブ（お問い合わせ） */
.entry-btn.secondary {
    background: transparent;
    color: var(--primary);
    border: 1px solid var(--primary);
    box-shadow: none;
}

.entry-btn.secondary:hover {
    background: var(--primary);
    color: #fff;
}

/* hover */
.entry-btn:hover {
    transform: translateY(-2px);

    /* hover影 */
    box-shadow: var(--shadow-md);
}

.entry-btn:active {
    transform: scale(0.96);
}

/* =========================================
    PC
   ========================================= */

@media (min-width: 1024px) {

    .entry-btn {
        font-size: var(--text-body);
        font-weight: 800;
        letter-spacing: 0.05em;

        padding: 10px 22px;
    }

    .entry-btn:hover {
        transform: translateY(-2px);
    }
}


/* =========================================
    Link（詳しく見る 共通）
========================================= */

.link-more {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    font-size: var(--text-small);
    font-weight: 700;
    color: var(--primary);

    margin-top: var(--space-sm);

    text-decoration: none;
}

/* 丸矢印 */

.link-more::after {
    content: "→";

    display: flex;
    align-items: center;
    justify-content: center;

    width: 28px;
    height: 28px;

    border-radius: 50%;
    border: 1px solid var(--primary);

    font-size: 13px;

    transition:
        transform var(--transition-fast),
        background-color var(--transition-fast),
        color var(--transition-fast);
}

/* hover */

.link-more:hover::after {
    background: var(--primary);
    color: #fff;

    transform: translateX(4px);
}

/* =========================================
    PC
========================================= */

@media (min-width: 1024px) {

    .link-more {
        font-size: var(--text-body);
    }
}


/* =========================================
    Page Hero（共通）
========================================= */

.page-hero {
    position: relative;
    overflow: hidden;

    background: var(--bg-hero);

    padding: 80px 0;

    border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}

/* ドット */
.page-hero::before {
    content: "";

    position: absolute;
    right: 40px;
    top: 40px;

    width: 140px;
    height: 140px;

    background-image:
        radial-gradient(rgba(0, 158, 207, 0.12) 1.5px,
            transparent 1.5px);

    background-size: 16px 16px;

    pointer-events: none;
}

/* 円 */
.page-hero::after {
    content: "";

    position: absolute;
    top: -80px;
    right: -80px;

    width: 260px;
    height: 260px;

    border-radius: 50%;

    background: rgba(0, 158, 207, 0.05);
}

.page-hero_inner {
    display: flex;
    flex-direction: column;

    align-items: flex-start;
    text-align: left;

    gap: var(--space-md);
}

.page-hero_text {
    max-width: 100%;
}

.page-hero_sub {
    font-size: var(--text-small);
    font-weight: 700;

    color: var(--accent);

    letter-spacing: 0.1em;

    margin-bottom: var(--space-xs);
}


.page-hero_title {
    font-size: var(--hero-title);
    font-weight: 800;

    line-height: 1.4;

    margin-bottom: 12px;
}

.page-hero_desc {
    font-size: var(--text-small);

    color: var(--text-sub);

    line-height: 1.7;
}

.page-hero_desc {
    font-size: var(--text-small);

    color: var(--text-sub);

    line-height: 1.7;
}

/* =========================================
    Tablet
========================================= */

@media (min-width: 768px) {

    /* ドット */
    .page-hero::before {
        right: 80px;

        width: 200px;
        height: 200px;
    }

    /* 円 */
    .page-hero::after {
        width: 340px;
        height: 340px;
    }

    .page-hero_title {
        line-height: 1.3;
    }

    .page-hero_desc {
        font-size: var(--text-body);
    }
}

/* =========================================
    PC
========================================= */

@media (min-width: 1024px) {

    .page-hero {
        padding: 96px 0;
    }

    /* ドット */
    .page-hero::before {
        right: 120px;

        width: 260px;
        height: 260px;
    }

    /* 円 */
    .page-hero::after {
        width: 420px;
        height: 420px;
    }

    .page-hero_text {
        max-width: 680px;
    }

    .page-hero_sub {
        font-size: 14px;
        margin-bottom: 12px;
    }

    .page-hero_title {
        margin-bottom: 20px;
        line-height: 1.25;
    }

    .page-hero_desc {
        font-size: var(--text-body);

        margin-top: var(--space-sm);

        line-height: 1.8;
    }
}

/* =========================================
    Breadcrumb（SPベース）
   ========================================= */

.breadcrumb {
    padding: 12px 0;

    background: var(--bg-card);
}

.breadcrumb_list {
    display: flex;
    flex-wrap: wrap;

    gap: 6px;

    font-size: var(--text-small);

    color: var(--text-sub);
}

/* 区切り */

.breadcrumb_list li+li::before {
    content: ">";

    margin: 0 6px;

    color: var(--text-sub);
}

/* リンク */

.breadcrumb_list a {
    color: inherit;

    text-decoration: none;

    transition: color var(--transition-fast);
}

.breadcrumb_list a:hover {
    color: var(--primary);
}

/* =========================================
    PC
   ========================================= */

@media (min-width: 1024px) {

    .breadcrumb {
        padding: var(--space-sm) 0;
    }
}


/* =========================================
    CTA
========================================= */

.cta {
    padding: 56px 0;
    background: var(--bg-hero);
}

.cta_contact {
    background: #90bbe6;
}

.cta_box {
    display: flex;
    flex-direction: column;

    gap: var(--space-md);

    padding: 32px 20px;
}

/* =========================================
    左側
========================================= */

.cta_content {
    position: relative;
    padding-left: 20px;
}

/* グラデ縦線 */
.cta_content::before {
    content: "";

    position: absolute;
    top: 6px;
    left: 0;

    width: 4px;
    height: 120px;

    border-radius: 999px;

    background: linear-gradient(to bottom,
            var(--accent),
            #2563eb);
}

/* タイトル */
.cta_title {
    font-size: var(--cta-title);
    font-weight: 800;

    line-height: 1.4;

    color: var(--text-main);

    margin-bottom: var(--space-sm);
}

/* テキスト */
.cta_text {
    font-size: var(--text-body);

    line-height: 1.9;

    color: var(--text-sub);
}

/* =========================================
    ボタン
========================================= */

.cta_buttons {
    display: flex;
}

.cta_buttons .entry-btn {
    justify-content: center;
}

/* =========================================
    PC
========================================= */

@media (min-width: 1024px) {

    .cta_box {
        flex-direction: row;
        align-items: flex-start;
        justify-content: space-between;

        gap: var(--space-lg);

        padding: 40px 0;
    }

    .cta_content {
        max-width: 560px;
        padding-left: 28px;
    }

    /* 縦線 */
    .cta_content::before {
        top: 10px;
        height: 140px;
    }

    .cta_title {
        line-height: 1.35;
        margin-bottom: 20px;
    }

    .cta_buttons {
        flex-shrink: 0;
    }

    .flex-entry-btn {
        font-size: 24px;
        padding: 15px 31px;
    }
}


/* =========================================
    共通スクロール時アニメーション
   ========================================= */
.fade-up {
    opacity: 0;
    transform: translateY(20px);

    transition:
        opacity 0.6s ease,
        transform 0.6s ease;
}

/* セクション単位で発火 */
.fade-up.is-show {
    opacity: 1;
    transform: translateY(0);
}

/* ===== 個別ディレイ（message用） ===== */
.fade-up.delay-1 {
    transition-delay: 0.2s;
}

.fade-up.delay-2 {
    transition-delay: 0.35s;
}

.fade-up.delay-3 {
    transition-delay: 0.5s;
}

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation: none !important;
        transition: none !important;
        scroll-behavior: auto !important;
    }
}