:root {
  /* Colors */
  --c-primary: #0f2a4a; /* Deep Blue (Trust) */
  --c-secondary: #00a8cc; /* Cyan */
  --c-cta: #0096c7; /* CTA Blue */
  --c-cta-hover: #007da8;
  --c-accent: #f59e0b; /* Orange/Gold accent */
  --c-line: #06c755; /* LINE Green */
  --c-gray-100: #f8f9fa;
  --c-gray-200: #e9ecef;
  --c-gray-300: #dee2e6;
  --c-gray-600: #6c757d;
  --c-gray-800: #343a40;
  --c-dark: #12161b;
  --c-white: #ffffff;

  /* Typography */
  --font-base: 'Noto Sans JP', sans-serif;
  --font-en: 'Montserrat', sans-serif;

  /* Shadows */
  --shadow-sm: 0 2px 4px rgba(0,0,0,0.05);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
  --shadow-lg: 0 10px 25px rgba(0,0,0,0.15);
  --shadow-glow: 0 0 15px rgba(6, 199, 85, 0.4);
  --shadow-cta: 0 4px 14px rgba(0, 150, 199, 0.35);
  
  /* Transitions */
  --trans-fast: 0.2s ease;
  --trans-normal: 0.3s ease;
  --trans-slow: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

/* =========================================================================
   Reset & Base
========================================================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-base);
    color: var(--c-gray-800);
    line-height: 1.6;
    background-color: var(--c-white);
    -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
img { max-width: 100%; height: auto; display: block; }


/* aaaaaaaaaaaaaa */

@media (min-width: 768px) {
    .nonePC {
      display: none !important;
    }
  }
  @media (max-width: 767px) {
    .noneSP {
      display: none !important;
    }
  }
  

  

/* =========================================================================
   Typography & Utilities
========================================================================= */
.text-center { text-align: center; }
.text-white { color: var(--c-white); }
.text-gray { color: var(--c-gray-600); }
.bg-gray { background-color: var(--c-gray-100); }
.bg-dark { background-color: var(--c-dark); }
.bg-primary { background-color: var(--c-primary); color: var(--c-white); }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 1.5rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 1rem; }
.mt-4 { margin-top: 1.5rem; }
.block { display: block; }
.inline-block { display: inline-block; }
.font-normal { font-weight: 400; }
.text-md { font-size: 1.1rem; }

.section-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 2.5rem;
    line-height: 1.4;
    letter-spacing: 0.05em;
}

.text-gradient {
    background: linear-gradient(135deg, var(--c-secondary), var(--c-primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
}

.highlight-text {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--c-primary);
    background: linear-gradient(transparent 60%, rgba(0, 168, 204, 0.2) 60%);
    display: inline-block;
    padding: 0 0.5rem;
}

/* =========================================================================
   Layout
========================================================================= */
.container {
    width: 90%;
    max-width: 1000px;
    margin: 0 auto;
}

.p-section {
    padding: 5rem 0;
}

/* =========================================================================
   Buttons
========================================================================= */
.center-cta {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-top: 2rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    cursor: pointer;
    transition: all var(--trans-normal);
    border: none;
    letter-spacing: 0.02em;
    flex-direction: column;
}

.btn-sm {
    padding: 0.5rem 1.2rem;
    font-size: 0.9rem;
    flex-direction: row;
}

.btn-lg {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    width: 100%;
    max-width: 340px;
}

.btn-primary {
    background: linear-gradient(135deg, #00b4d8 0%, var(--c-cta) 100%);
    color: var(--c-white);
    box-shadow: var(--shadow-cta);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--c-cta) 0%, var(--c-cta-hover) 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 150, 199, 0.45);
}

.btn-primary:has(.material-icons-round) {
    flex-direction: row;
    gap: 0.5rem;
}

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

.btn-outline:hover {
    background: var(--c-cta);
    color: var(--c-white);
}

.btn-line {
    background: var(--c-line);
    color: var(--c-white);
    flex-direction: row;
    gap: 0.5rem;
}

.btn-line:hover {
    background: #05a747;
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.btn .btn-subtext {
    font-size: 0.75rem;
    font-weight: 400;
    opacity: 0.9;
    margin-top: 0.2rem;
}

/* =========================================================================
   Header
========================================================================= */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 100;
    box-shadow: var(--shadow-sm);
    padding: 0.75rem 0;
    transition: var(--trans-normal);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--c-primary);
    letter-spacing: 0.05em;
}

/* =========================================================================
   Hero (FV)
========================================================================= */
.hero {
    padding-top: 8rem; /* Account for fixed header */
    padding-bottom: 4rem;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    background-image: url('hero_bg.png');
    background-size: cover;
    background-position: center 20%;
    background-repeat: no-repeat;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(255,255,255,0.95) 0%, rgba(255,255,255,0.7) 50%, rgba(255,255,255,0) 100%);
    z-index: 0;
}

.hero-inner {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

@media (min-width: 768px) {
    .hero-inner {
        flex-direction: row;
        align-items: flex-end;
        justify-content: space-between;
    }
    .hero-content {
        flex: 1 1 58%;
    }
    .hero-visual {
        flex: 0 0 420px;
        display: flex;
        justify-content: flex-end;
    }
}

.hero-movie-frame {
    width: min(100%, 420px);
    aspect-ratio: 16 / 9;
    border: 4px solid #111;
    border-radius: 8px;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.25);
    box-shadow: var(--shadow-lg);
}

.hero-movie {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.hero-sub {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--c-secondary);
    margin-bottom: 0.5rem;
    display: inline-block;
    padding: 0.3rem 1rem;
    background: rgba(0, 168, 204, 0.1);
    border-radius: 20px;
}

.hero-main {
    font-size: clamp(1.85rem, 4.5vw, 2.75rem);
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 0.5rem;
    color: var(--c-primary);
}

.hero-main span.text-gradient {
    font-size: clamp(2.25rem, 5.5vw, 3.15rem);
    font-family: var(--font-en);
}

.hero-note {
    font-size: 0.85rem;
    color: var(--c-gray-600);
    margin-bottom: 2rem;
}

/* 開始時期のお知らせバッジ */
.release-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin-top: 1rem;
    padding: 0.55rem 1.25rem;
    border-radius: 50px;
    background: rgba(245, 158, 11, 0.12);
    border: 1.5px solid #f59e0b;
    color: #b45309;
    font-size: 0.95rem;
    font-weight: 900;
}

.release-badge .material-icons-round {
    font-size: 1.2rem;
    color: #f59e0b;
}

.release-badge strong {
    font-weight: 900;
}

/* 濃い背景（最終CTA）用 */
.release-badge-light {
    background: rgba(255, 255, 255, 0.15);
    border-color: #ffda44;
    color: var(--c-white);
}

.release-badge-light .material-icons-round {
    color: #ffda44;
}

.hero-benefits-simple {
    margin-bottom: 2.5rem;
}

.simple-benefit-list {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    align-items: flex-start;
}

.simple-benefit-list li {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-weight: 700;
    font-size: 1.05rem;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(5px);
    padding: 0.8rem 1.2rem;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
    color: var(--c-primary);
}

.simple-benefit-list .check-icon {
    color: var(--c-accent);
    font-size: 1.3rem;
}

.hero-cta-group {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
}


@media (max-width: 767px) {
    .hero-bg {
        background-position: center right 20%;
    }
    .hero-inner {
        gap: 2rem;
    }
    .hero-content {
        order: 1;
    }
    .hero-visual {
        order: 2;
        width: 100%;
        display: flex;
        justify-content: center;
        margin-top: 0.5rem;
    }
    .hero-movie-frame {
        width: min(100%, 420px);
        border-width: 3px;
    }
    .hero-main {
        font-size: clamp(18px, 6vw, 36px);
    }
    .hero-main span.text-gradient {
        font-size: clamp(22px, 7vw, 40px);
    }
    .hero-sub {
        font-size: clamp(14px, 3.6vw, 26px);
        padding: 0.3em 1em;
        border-radius: 30px;
        margin-bottom: 1em;
    }
    .simple-benefit-list li {
        align-items: flex-start;
        flex-direction: column;
        padding-left: 3em;
        line-height: 1.4;
        display: inline-table;
        font-size: clamp(13px, 3.2vw, 24px);
            span.text-xxs{
                margin-top: -0.5em;
            }
    }
    .simple-benefit-list .check-icon {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        left: 0.6em;
    }


}



/* =========================================================================
   Sections: Problems (Empathy)
========================================================================= */
.problems {
    background-color: #f4f8fb;
    background-image: repeating-linear-gradient(
        -45deg,
        rgba(0, 168, 204, 0.04),
        rgba(0, 168, 204, 0.04) 2px,
        transparent 2px,
        transparent 12px
    );
    border-top: 5px solid var(--c-secondary);
    border-bottom: 5px solid var(--c-secondary);
}

.problems .section-title {
    display: inline-block;
    background: var(--c-white);
    padding: 0.8rem 3rem;
    border: 3px solid var(--c-primary);
    border-radius: 50px;
    color: var(--c-primary);
    box-shadow: 6px 6px 0 var(--c-secondary);
    margin-bottom: 3.5rem;
    position: relative;
    font-size: 1.6rem;
}

.problems .section-title::after {
    content: '▼';
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 1.5rem;
    color: var(--c-secondary);
}

.problems-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.problem-card {
    background: var(--c-white);
    padding: 2rem 1rem;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: var(--trans-normal);
}

.problem-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.problem-icon {
    font-size: 2.5rem;
    color: var(--c-secondary);
    margin-bottom: 1rem;
    display: block;
}

.problem-card p {
    font-weight: 700;
    line-height: 1.4;
}

.survey-box {
    background: var(--c-white);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    border-top: 6px solid var(--c-primary);
}

.survey-source {
    font-size: 0.85rem;
    color: var(--c-gray-600);
    margin-bottom: 1rem;
}

.survey-title {
    font-weight: 800;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: var(--c-primary);
}

.survey-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.survey-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.2rem;
    font-weight: 700;
    background: var(--c-gray-100);
    padding: 1rem;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
}

.survey-list li::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background: rgba(0, 168, 204, 0.1);
    z-index: 0;
}

.survey-list li:nth-child(1)::before { width: 80%; }
.survey-list li:nth-child(2)::before { width: 65%; }

.survey-list li > * { position: relative; z-index: 1; }

.survey-list .rank {
    background: var(--c-accent);
    color: var(--c-white);
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-family: var(--font-en);
    font-weight: 900;
}

.survey-conclusion {
    background: linear-gradient(135deg, var(--c-primary), #1a4270);
    color: var(--c-white);
    padding: 1.5rem;
    border-radius: 12px;
    font-size: 1.25rem;
    font-weight: 700;
    box-shadow: 0 8px 20px rgba(15, 42, 74, 0.2);
    margin-top: 1.5rem;
}

.survey-conclusion strong {
    color: #ffda44; /* 目立つイエローゴールド */
    font-size: 1.4rem;
    display: inline-block;
    border-bottom: 2px solid #ffda44;
    padding-bottom: 2px;
    margin: 0 0.2rem;
}



@media (max-width: 767px) {
    .problems .section-title {
        font-size: clamp(18px, 5.1vw, 1.5rem);
        padding: 0.8rem 1.5rem;
    }
    
}

/* =========================================================================
   Sections: Solution / Video
========================================================================= */
.video-placeholder {
    width: 100%;
    max-width: 700px;
    margin: 2rem auto;
}

.video-mockup {
    background: var(--c-gray-200);
    aspect-ratio: 16/9;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--c-gray-600);
    cursor: pointer;
    transition: var(--trans-normal);
}

.video-mockup:hover {
    background: var(--c-gray-300);
}

.video-mockup .play-icon {
    font-size: 4rem;
    color: var(--c-primary);
    margin-bottom: 0.5rem;
    opacity: 0.8;
}

.video-mockup:hover .play-icon {
    opacity: 1;
    transform: scale(1.1);
}

.video-mockup.video-embed {
    padding: 0;
    overflow: hidden;
    cursor: default;
    background: #000;
}

.video-mockup.video-embed:hover {
    background: #000;
}

.video-mockup.video-embed iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

@media screen and (max-width: 767px) {
    .solution{
        .section-title {
            font-size: 1.7rem;
        }
    }
    
}

/* =========================================================================
   Sections: Benefits
========================================================================= */
.benefits-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.benefit-box {
    background: var(--c-white);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    transition: var(--trans-normal);
    border-top: 4px solid transparent;
}

.benefit-box:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-top-color: var(--c-secondary);
}

.b-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--c-gray-200);
}

.b-num {
    font-family: var(--font-en);
    font-size: 2rem;
    font-weight: 900;
    color: var(--c-gray-300);
    line-height: 1;
}

.b-header h3 {
    font-size: 1.3rem;
    color: var(--c-primary);
}

.b-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    margin-bottom: 0.8rem;
    font-weight: 500;
}

.b-list .check-icon {
    color: var(--c-secondary);
    font-size: 1.2rem;
    margin-top: 2px;
}

/* bg-primaryの時のメリット枠調整 */
.benefits.bg-primary .section-title {
    color: #ffda44; /* 金色に変更 */
}

.benefits.bg-primary .benefit-box {
    background: rgba(255, 255, 255, 0.08); /* グラスモーフィズム調の透け感 */
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
}

.benefits.bg-primary .b-header h3 {
    color: var(--c-white);
}

.benefits.bg-primary .b-num {
    color: #cfa832;
}

.benefits.bg-primary .b-list li {
    color: var(--c-white);
}
@media screen and (max-width: 767px) {
    .benefit-box {
        padding: 2rem 4.5%;
    }
}
/* =========================================================================
   Sections: Mechanism (Steps)
========================================================================= */
.steps-container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 600px;
    margin: 0 auto 2rem;
}

.step-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: var(--c-white);
    padding: 1.2rem 2rem;
    border-radius: 50px;
    box-shadow: var(--shadow-md);
    border: 2px solid rgba(15, 42, 74, 0.1);
    position: relative;
}

.step-icon {
    width: 40px;
    height: 40px;
    background: var(--c-primary);
    color: var(--c-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-en);
    font-weight: 800;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.step-item p {
    font-weight: 700;
    font-size: 1.1rem;
}

@media (min-width: 768px) {
    .steps-container {
        flex-direction: row;
        justify-content: space-between;
        max-width: 1000px;
        position: relative;
    }
    
    .steps-container::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 5%;
        width: 90%;
        height: 2px;
        background: var(--c-gray-300);
        z-index: 0;
    }

    .step-item {
        flex-direction: column;
        padding: 2rem 1.5rem;
        text-align: center;
        border-radius: 16px;
        flex: 1;
        margin: 0 0.5rem;
        z-index: 1;
    }
}

.mock-img {
    width: 100%;
    max-width: 600px;
    height: auto;
    margin: 0 auto;
    display: block;
    border-radius: 12px;
}

/* =========================================================================
   Sections: Difference
========================================================================= */
.difference {
    background: linear-gradient(135deg, #12161b, #1c314f);
    border-top: 5px solid #ffda44;
    border-bottom: 5px solid #ffda44;
    position: relative;
}

.difference .section-title {
    font-size: 2rem;
    margin-bottom: 3rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.difference-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}

.difference-list li {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--c-white);
    background: rgba(255, 255, 255, 0.08); /* グラスモーフィズム調 */
    border: 2px solid #ffda44;
    padding: 1.5rem 2.5rem;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    box-shadow: 0 4px 15px rgba(255, 218, 68, 0.15);
    transition: transform 0.3s ease;
    backdrop-filter: blur(5px);
}

.difference-list li:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(255, 218, 68, 0.3);
}

.difference-list li .check-icon {
    color: #ffda44 !important;
    font-size: 2.5rem;
}

@media (max-width: 768px) {
    .difference-list li {
        font-size: 1.2rem;
        padding: 1.2rem 1.5rem;
        gap: 1rem;
    }
    .difference-list li .check-icon {
        font-size: 2rem;
    }
}@media screen and (max-width: 767px) {
    .difference{
        .section-title {
            font-size: clamp(18px, 6.8vw, 2.2rem);
            margin-bottom: 2rem;
        }
    }
    .difference-list li {
        padding: 1rem 1rem;
        gap: 0.6rem;
    }
}

/* =========================================================================
   Sections: Regional Support (地方医療支援)
========================================================================= */
.support-cards {
    display: grid;
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .support-cards {
        grid-template-columns: repeat(3, 1fr);
    }
}

.support-card {
    background: var(--c-white);
    padding: 2.5rem 1.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    text-align: center;
    border-top: 4px solid var(--c-secondary);
    transition: var(--trans-normal);
}

.support-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.support-icon {
    font-size: 3.5rem;
    color: var(--c-primary);
    margin-bottom: 1rem;
    display: inline-block;
}

.support-text {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--c-dark);
}

.text-xs { font-size: 0.8rem; }
.text-xxs { font-size: 0.65rem; }


@media screen and (max-width: 767px) {
    .regional-support{
        .section-title {
            font-size: clamp(18px, 6.8vw, 2.2rem);
            margin-bottom: 1.5rem;
            letter-spacing: 0;
        }
    }
}
/* =========================================================================
   Sections: Social & Workstyle (社会的意義・新しい働き方)
========================================================================= */
.message-card {
    background: var(--c-white);
    padding: 3.5rem 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    transition: var(--trans-normal);
}

.message-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}

.message-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--c-primary), var(--c-secondary));
}

.icon-large {
    font-size: 4rem;
}

.text-primary {
    color: var(--c-primary);
}

.text-secondary {
    color: var(--c-secondary);
}

.message-subtitle {
    font-size: 1.6rem;
    color: var(--c-primary);
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.message-text {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--c-dark);
    line-height: 1.8;
}



/* =========================================================================
   動画（体験）
========================================================================= */

.experience{
    .section-title {
        font-size: clamp(18px, 6.8vw, 2.2rem);
        margin-bottom: 1.5rem;
        letter-spacing: 0;
    }
}



/* =========================================================================
   社会的意義
========================================================================= */


.social-significance{
    .message-subtitle {
        font-size: clamp(17px, 6vw, 1.6rem);
    }
}



/* =========================================================================
   新しい働き方
========================================================================= */

.workstyle{
    .message-subtitle {
        font-size: clamp(17px, 6vw, 1.6rem);
    }
}


/* =========================================================================
   Trust (公式応援プロジェクト)
========================================================================= */
.trust {
    background-color: #fffaf0; /* 薄い温かみのある背景 */
    position: relative;
    padding: 4rem 0 !important;
}

.trust::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, transparent, #ffda44, #f59e0b, #ffda44, transparent);
}

.trust .container {
    background: var(--c-white);
    padding: 3rem 2rem;
    border-radius: 12px;
    border: 2px dashed #f59e0b; /* 賞状風の枠 */
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.15);
    max-width: 800px;
    margin: 0 auto;
}

.trust-badge {
    display: inline-block;
    background: linear-gradient(135deg, #f59e0b, #ffda44);
    padding: 1rem 3rem;
    border-radius: 50px;
    font-weight: 900;
    font-size: 1.4rem;
    color: var(--c-dark);
    box-shadow: 0 5px 15px rgba(245, 158, 11, 0.3);
    border: 3px solid var(--c-white);
    transform: translateY(-50%); /* コンテナの上部に被せる */
    margin-top: -2rem; /* ズレ調整 */
    margin-bottom: 0.5rem;
}

.trust-text {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--c-primary);
    line-height: 1.6;
}
@media screen and (max-width: 767px) {
    .trust.p-section{
        padding: 8rem 0 3rem !important;
        position: relative;
            .container {
                position: relative;
                padding: 5.6rem 1rem 2.5rem;
            }
            .trust-badge {
                display: inline-block;
                padding: 1rem 2rem;
                border-radius: 50px;
                font-weight: 900;
                font-size: 1.4rem;
                color: var(--c-dark);
                box-shadow: 0 5px 15px rgba(245, 158, 11, 0.3);
                border: 3px solid var(--c-white);
                transform: translateY(-50%);
                margin-top: -2rem;
                margin-bottom: 0.5rem;
                position: absolute;
                width: 90%;
                max-width: 400px;
                left: 50%;
                transform: translateX(-50%);
                top: -3rem;
            }
    }
}
/* =========================================================================
   Final CTA
========================================================================= */
.final-cta {
    background: linear-gradient(135deg, var(--c-primary), #1a4270);
}

/* =========================================================================
   Footer
========================================================================= */
.footer {
    background: var(--c-dark);
    color: var(--c-gray-300);
    padding: 3rem 0 7rem;
    font-size: 0.85rem;
}

.footer-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
}

.footer-link {
    color: var(--c-white);
    font-size: 1rem;
    font-weight: 700;
    text-decoration: underline;
    transition: var(--trans-fast);
}

.footer-link:hover {
    color: var(--c-secondary);
}

.footer-divider {
    color: var(--c-gray-600);
}

.legal-notes {
    margin-bottom: 2rem;
}

.legal-notes p {
    margin-bottom: 0.3rem;
    text-align: center;
}

.company-info {
    margin-bottom: 2.3rem;
    text-align: center;
}

.copyright {
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 1.5rem;
}

/* =========================================================================
   Floating CTA
========================================================================= */
.floating-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    box-shadow: 0 -5px 15px rgba(0,0,0,0.1);
    padding: 1rem 0;
    z-index: 100;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.floating-cta.is-visible {
    transform: translateY(0);
}

.floating-inner {
    display: flex;
    justify-content: center;
    gap: 1rem;
    width: 80%;
    margin: 0 auto;
    max-width: 600px;
}

.floating-inner .btn {
    flex: 1;
    padding: 0.8rem 1rem;
}

@media (max-width: 480px) {
    .floating-inner {
        gap: 0.5rem;
    }
    .floating-inner .btn {
        font-size: 0.9rem;
        padding: 0.6rem 0.5rem;
    }
}

/* =========================================================================
   Animations Utilities
========================================================================= */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-in-up.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
