@charset "UTF-8";

/* ============================================
   CSS変数
   ============================================ */
:root {
    --color-main:    #639094;
    --color-sub-bg:  #dce6e7;
    --color-warm-bg: #eeeae1;
    --color-accent:  #1f6f8a;
    --color-text:    #2c3e42;
    --color-white:   #ffffff;
}


/* ============================================
   共通ユーティリティ
   ============================================ */
.section-header {
    text-align: center;
    margin-bottom: 70px;
}
.en-title {
    font-size: 0.82rem;
    color: var(--color-main);
    letter-spacing: 0.3em;
    font-weight: bold;
    display: block;
    margin-bottom: 14px;
    text-transform: uppercase;
}
.ja-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--color-accent);
    line-height: 1.4;
    position: relative;
    display: inline-block;
    padding-bottom: 24px;
}
.section-header .ja-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 48px;
    height: 3px;
    background: linear-gradient(to right, var(--color-main), var(--color-accent));
    border-radius: 2px;
}
.section-lead {
    margin-top: 18px;
    font-size: 1rem;
    line-height: 1.8;
    color: #666;
}
.btn-area {
    margin-top: 50px;
    text-align: center;
}
.btn {
    padding: 16px 45px;
    border-radius: 50px;
    font-weight: bold;
    text-decoration: none;
    display: inline-block;
    transition: 0.3s;
    cursor: pointer;
    border: none;
    font-size: 1rem;
}
.btn-lg {
    padding: 18px 52px;
    font-size: 1.05rem;
}
.btn-primary {
    background: var(--color-main);
    color: #fff;
    box-shadow: 0 5px 15px rgba(99,144,148,0.4);
}
.btn-primary:hover {
    background: var(--color-accent);
    transform: translateY(-2px);
    color: #fff;
}
.btn-outline {
    border: 2px solid var(--color-main);
    color: var(--color-main);
    background: transparent;
}
.btn-outline:hover {
    background: var(--color-main);
    color: #fff;
}
.btn-line {
    background: #06c755;
    color: #fff;
    box-shadow: 0 5px 15px rgba(6,199,85,0.3);
}
.btn-line:hover {
    background: #05a847;
    transform: translateY(-2px);
    color: #fff;
}
.btn-white-outline {
    background: transparent;
    border: 2px solid rgba(255,255,255,0.8);
    color: #fff;
}
.btn-white-outline:hover {
    background: rgba(255,255,255,0.15);
    color: #fff;
}


/* ============================================
   アニメーション（共通）
   ============================================ */
.js-animate.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.js-animate.fade-up.is-visible {
    opacity: 1;
    transform: translateY(0);
}
.js-animate.slide-curtain {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
}
.js-animate.slide-curtain::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: linear-gradient(to right, #639094, #8ab6ba);
    z-index: 2;
    transition: transform 0.8s cubic-bezier(0.77, 0, 0.175, 1);
    transform: translateX(0);
}
.js-animate.slide-curtain.is-visible::after {
    transform: translateX(102%);
}


/* ============================================
   HERO
   ============================================ */
.top-hero-video {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    display: flex;
    align-items: center;
    color: #fff;
}
.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    z-index: 1;
    object-fit: cover;
}
.video-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(31,111,138,0.72) 0%,
        rgba(44,62,66,0.58) 60%,
        rgba(44,62,66,0.45) 100%
    );
    z-index: 2;
}
.hero-content {
    position: relative;
    z-index: 3;
    padding: 0 20px;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.hero-label {
    font-size: 0.82rem;
    font-weight: bold;
    letter-spacing: 0.16em;
    color: rgba(255,255,255,0.95);
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.35);
    padding: 7px 20px;
    border-radius: 50px;
    display: inline-block;
    margin-bottom: 28px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}
/* ヒーロータイトル前のアクセントライン */
.hero-title-wrapper {
    position: relative;
}
.hero-title-wrapper::before {
    content: '';
    display: block;
    width: 44px;
    height: 4px;
    background: linear-gradient(to right, var(--color-main), #8ab6ba);
    border-radius: 2px;
    margin-bottom: 22px;
}
.hero-title {
    font-size: 4.2rem;
    font-weight: 900;
    margin-bottom: 32px;
    line-height: 1.35;
    text-shadow: 0 3px 12px rgba(0,0,0,0.45), 0 1px 3px rgba(0,0,0,0.3);
    color: #fff;
    max-width: 860px;
    letter-spacing: -0.01em;
}
.hero-desc {
    font-size: 1.05rem;
    line-height: 2;
    color: rgba(255,255,255,0.88);
    text-shadow: 0 1px 4px rgba(0,0,0,0.35);
    max-width: 660px;
    margin-bottom: 0;
}
.hero-lead {
    font-size: 1.15rem;
    font-weight: bold;
    color: #fff;
    letter-spacing: 0.03em;
}
.hero-cta {
    margin-top: 48px;
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

@media (max-width: 992px) {
    .hero-title { font-size: 3.2rem; }
}
@media (max-width: 768px) {
    .top-hero-video { height: 85vh; text-align: center; }
    .hero-content { align-items: center; text-align: center; }
    .hero-title-wrapper::before { margin: 0 auto 18px; }
    .hero-title { font-size: 2.1rem; max-width: 100%; }
    .hero-desc { font-size: 0.95rem; max-width: 100%; }
    .hero-cta { flex-direction: column; align-items: stretch; width: 100%; max-width: 320px; }
    .hero-cta .btn { text-align: center; }
}


/* ============================================
   NUMBERS（社会的証明）
   ============================================ */
.section-numbers {
    background: linear-gradient(135deg, #164d63 0%, var(--color-accent) 45%, #3d8fa0 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}
/* 背景の装飾パターン */
.section-numbers::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 15% 50%, rgba(255,255,255,0.04) 1px, transparent 1px),
        radial-gradient(circle at 85% 20%, rgba(255,255,255,0.04) 1px, transparent 1px);
    background-size: 60px 60px, 80px 80px;
    pointer-events: none;
}
/* 右上の大きな装飾円 */
.section-numbers::after {
    content: '';
    position: absolute;
    top: -120px;
    right: -120px;
    width: 420px;
    height: 420px;
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 50%;
    pointer-events: none;
}
.numbers-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    text-align: center;
}
.number-item {
    color: #fff;
    position: relative;
    padding: 0 30px;
}
.number-item + .number-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 65%;
    background: rgba(255,255,255,0.2);
}
.number-value {
    font-size: 3.8rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 14px;
}
.number-unit {
    font-size: 1.8rem;
    font-weight: 700;
}
.number-label {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.85);
    line-height: 1.6;
}
.number-label small {
    display: block;
    font-size: 0.75rem;
    color: rgba(255,255,255,0.6);
    margin-top: 5px;
}

/* Lancersバッジ */
.lancers-badge {
    margin-top: 50px;
    text-align: center;
}
.lancers-badge-inner {
    display: inline-flex;
    align-items: center;
    gap: 20px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.25);
    border-radius: 50px;
    padding: 14px 32px;
    flex-wrap: wrap;
    justify-content: center;
}
.lancers-label {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.65);
    font-weight: bold;
    letter-spacing: 0.05em;
    white-space: nowrap;
}
.lancers-stats {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
}
.lancers-stat {
    font-size: 0.9rem;
    color: #fff;
}
.lancers-stat strong {
    font-size: 1rem;
    font-weight: bold;
}
.lancers-divider {
    color: rgba(255,255,255,0.3);
}
.lancers-link {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    border-bottom: 1px solid rgba(255,255,255,0.3);
    padding-bottom: 1px;
    transition: 0.3s;
    white-space: nowrap;
}
.lancers-link:hover {
    color: #fff;
    border-bottom-color: #fff;
}

@media (max-width: 992px) {
    .numbers-grid { grid-template-columns: repeat(2, 1fr); gap: 40px 0; }
    .number-item + .number-item::before { display: none; }
}
@media (max-width: 768px) {
    .numbers-grid { gap: 30px 0; }
    .number-value { font-size: 2.8rem; }
    .lancers-badge-inner { flex-direction: column; border-radius: 20px; padding: 20px 24px; gap: 10px; }
}


/* ============================================
   MISSION
   ============================================ */
.section-mission {
    padding: 110px 0;
    background: #f5f9fa;
    position: relative;
    overflow: hidden;
    z-index: 1;
}
.mission-bg-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    z-index: -1;
    opacity: 0.35;
    pointer-events: none;
}
.blob-1 {
    width: 500px;
    height: 500px;
    background: var(--color-main);
    top: -100px;
    left: -150px;
}
.blob-2 {
    width: 400px;
    height: 400px;
    background: #c8d8b0;
    bottom: -50px;
    right: -100px;
}
.mission-card {
    background: #fff;
    border-radius: 30px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.06);
    padding: 70px;
    display: flex;
    align-items: center;
    gap: 70px;
}
.mission-img {
    flex: 1;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}
.mission-img img {
    width: 100%;
    height: auto;
    vertical-align: bottom;
    border-radius: 20px;
}
.mission-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: linear-gradient(to right, #639094, #8ab6ba);
    z-index: 2;
    transition: transform 0.8s cubic-bezier(0.77, 0, 0.175, 1);
    transform: translateX(0);
}
.mission-img.is-visible::after {
    transform: translateX(102%);
}
.mission-text { flex: 1; }
.mission-title-en {
    font-size: 0.9rem;
    color: var(--color-main);
    letter-spacing: 0.2em;
    font-weight: bold;
    margin-bottom: 16px;
    display: block;
    text-transform: uppercase;
}
.mission-title-ja {
    font-size: 2rem;
    font-weight: bold;
    color: var(--color-text);
    line-height: 1.55;
    margin-bottom: 30px;
    padding-bottom: 24px;
    position: relative;
}
.mission-title-ja::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--color-main);
    border-radius: 2px;
}
.mission-desc {
    font-size: 1rem;
    line-height: 2;
    color: var(--color-text);
}

@media (max-width: 992px) {
    .mission-card { flex-direction: column; padding: 44px 32px; gap: 40px; }
    .mission-img { width: 100%; }
    .mission-title-ja { font-size: 1.65rem; }
}


/* ============================================
   STRENGTHS
   ============================================ */
.section-strength {
    padding: 110px 0;
    background: var(--color-warm-bg);
    position: relative;
    overflow: hidden;
    z-index: 1;
}
.strength-bg-shape {
    position: absolute;
    z-index: -1;
    opacity: 0.08;
    pointer-events: none;
}
.shape-triangle-1 {
    top: -50px;
    left: -50px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 300px 0 0 300px;
    border-color: transparent transparent transparent var(--color-main);
}
.shape-square-1 {
    top: 40%;
    right: -100px;
    width: 300px;
    height: 300px;
    background: var(--color-accent);
    transform: rotate(15deg);
    border-radius: 40px;
}
.shape-triangle-2 {
    bottom: 50px;
    left: 5%;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 150px 150px 75px;
    border-color: transparent transparent #dce6e7 transparent;
    transform: rotate(-15deg);
}
.strength-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.strength-card {
    background: #fff;
    padding: 50px 36px;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.05);
    text-align: center;
    position: relative;
    transition: 0.3s;
    border-bottom: 4px solid transparent;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.strength-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(99,144,148,0.15);
    border-bottom-color: var(--color-main);
}
.strength-num {
    position: absolute;
    top: -10px;
    left: 10px;
    font-size: 6rem;
    font-weight: 900;
    color: var(--color-main);
    opacity: 0.1;
    line-height: 1;
    z-index: 0;
    pointer-events: none;
}
.strength-img {
    position: relative;
    z-index: 1;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
}
.strength-img img {
    max-height: 80px;
    width: auto;
    object-fit: contain;
}
.strength-card h3 {
    position: relative;
    z-index: 1;
    font-size: 1.35rem;
    font-weight: bold;
    margin-bottom: 16px;
    color: var(--color-accent);
}
.strength-card p {
    position: relative;
    z-index: 1;
    font-size: 0.93rem;
    line-height: 1.85;
    color: var(--color-text);
    text-align: left;
}

@media (max-width: 992px) {
    .strength-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
    .strength-grid { grid-template-columns: 1fr; padding: 0 20px; }
    .strength-card { padding: 40px 28px; }
}


/* ============================================
   SERVICE
   ============================================ */
.section-service {
    background-color: #f5f9fa;
    color: #2c3e42;
    padding: 120px 0;
    position: relative;
    overflow: visible !important;
    transition: color 0.8s ease;
    z-index: 1;
}
.section-service::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #0f2529 0%, #1f4045 100%);
    opacity: 0;
    transition: opacity 1.2s ease;
    z-index: -2;
}
.section-service::after {
    content: '';
    position: absolute;
    top: -150px;
    right: -100px;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(99,144,148,0.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: -1;
    opacity: 0;
    transition: opacity 1.2s ease;
}
.section-service.is-active { color: #fff; }
.section-service.is-active::before { opacity: 1; }
.section-service.is-active::after  { opacity: 1; }

.section-service .en-title       { color: var(--color-main); transition: color 0.8s; }
.section-service.is-active .en-title { color: #8ab6ba; }
.section-service .ja-title        { color: var(--color-text); transition: color 0.8s; }
.section-service.is-active .ja-title { color: #fff; }
.section-service .section-lead    { color: #666; transition: color 0.8s; }
.section-service.is-active .section-lead { color: rgba(255,255,255,0.8); }

.service-layout-container {
    display: flex;
    align-items: flex-start !important;
    gap: 80px;
    position: relative;
}
.service-sticky-area {
    width: 35%;
    position: sticky;
    top: 150px;
    max-height: calc(100vh - 150px);
    overflow-y: auto;
    scrollbar-width: none;
}
.service-sticky-area::-webkit-scrollbar { display: none; }
.service-header-left { margin-bottom: 50px; text-align: left; }
.service-header-left .en-title  { font-size: 1.1rem; letter-spacing: 0.1em; font-weight: bold; margin-bottom: 14px; display: block; }
.service-header-left .ja-title  { font-size: 2.1rem; font-weight: bold; line-height: 1.4; margin-bottom: 22px; }
.service-header-left .section-lead { font-size: 1rem; line-height: 1.8; }

.featured-card-vertical {
    display: block;
    background: #fff;
    border-radius: 14px;
    padding: 36px;
    text-decoration: none;
    color: #333 !important;
    transition: 0.3s;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    border: 3px solid transparent;
}
.featured-card-vertical:hover { transform: translateY(-5px); border-color: #8ab6ba; }
.featured-card-vertical .badge {
    background: #e74c3c;
    color: #fff;
    font-size: 0.8rem;
    padding: 5px 14px;
    border-radius: 50px;
    font-weight: bold;
    display: inline-block;
    margin-bottom: 18px;
}
.featured-card-vertical h3    { font-size: 1.5rem; font-weight: bold; margin-bottom: 14px; color: #2c3e42; }
.featured-card-vertical p     { font-size: 0.93rem; line-height: 1.8; margin-bottom: 22px; color: #666; }
.featured-card-vertical .btn-text {
    text-align: right;
    font-weight: bold;
    color: var(--color-main);
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
}
.featured-card-vertical .btn-text::after { content: '→'; transition: transform 0.3s; }
.featured-card-vertical:hover .btn-text::after { transform: translateX(5px); }

.service-scroll-area { width: 65%; padding-bottom: 50px; }
.service-group-title {
    font-size: 1.05rem;
    font-weight: bold;
    color: var(--color-main);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: color 0.8s;
}
.section-service.is-active .service-group-title { color: #8ab6ba; }
.service-group-title::after {
    content: '';
    flex-grow: 1;
    height: 1px;
    background: #ddd;
    transition: background 0.8s;
}
.section-service.is-active .service-group-title::after { background: rgba(255,255,255,0.2); }
.service-group-title.mt-group { margin-top: 100px; }

.service-list-grid {
    display: flex;
    flex-direction: column;
    border-top: 1px solid #ddd;
    transition: border-color 0.8s;
}
.section-service.is-active .service-list-grid { border-top: 1px dashed rgba(255,255,255,0.3); }

.service-item {
    background: transparent;
    padding: 38px 0;
    text-decoration: none;
    color: inherit;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    border-bottom: 1px solid #ddd;
    transition: border-color 0.8s, padding 0.3s, background 0.3s;
}
.section-service.is-active .service-item { border-bottom: 1px dashed rgba(255,255,255,0.3); }
.service-item:hover { padding-left: 20px; padding-right: 20px; }
.section-service .service-item:hover          { background: rgba(0,0,0,0.03); }
.section-service.is-active .service-item:hover { background: rgba(255,255,255,0.05); }

.service-item .service-info { flex-grow: 1; display: flex; flex-direction: column; gap: 8px; }
.service-item .service-en {
    font-size: 0.82rem;
    color: var(--color-accent);
    font-weight: bold;
    letter-spacing: 0.05em;
    transition: color 0.8s;
}
.section-service.is-active .service-item .service-en { color: #8ab6ba; }
.service-item h3 { font-size: 1.55rem; font-weight: bold; margin: 0; line-height: 1.3; }
.service-item p  { font-size: 0.93rem; line-height: 1.8; color: #666; transition: color 0.8s; }
.section-service.is-active .service-item p { color: rgba(255,255,255,0.75); }

.service-item .service-arrow {
    width: 48px;
    height: 48px;
    background: #eee;
    color: var(--color-main);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
    transition: 0.3s;
}
.section-service.is-active .service-item .service-arrow { background: rgba(255,255,255,0.15); color: #fff; }
.service-item:hover .service-arrow { background: var(--color-main) !important; color: #fff; transform: translateX(5px); }

.btn-area-right { margin-top: 60px; text-align: right; }
.btn-area-right .btn-outline { border: 2px solid var(--color-main); color: var(--color-main); }
.section-service.is-active .btn-area-right .btn-outline { border-color: #fff; color: #fff; }
.btn-area-right .btn-outline:hover { background: var(--color-main); color: #fff !important; border-color: var(--color-main) !important; }

body, html, #page, .site-content, .site-body { overflow: visible !important; }

@media (max-width: 992px) {
    .section-service { padding: 80px 0; }
    .service-layout-container { flex-direction: column; gap: 50px; }
    .service-sticky-area { width: 100%; position: static; max-height: none; }
    .service-scroll-area { width: 100%; }
    .service-item { flex-direction: column; align-items: flex-start; padding: 28px 0; gap: 16px; }
    .service-item:hover { padding-left: 0; padding-right: 0; background: transparent !important; }
    .service-item .service-arrow { align-self: flex-end; }
    .btn-area-right { text-align: center; }
    .service-group-title.mt-group { margin-top: 60px; }
}


/* ============================================
   WORKS スライダー
   ============================================ */
.section-works {
    padding: 100px 0 70px;
    overflow: hidden;
}
.works-slider { padding: 20px 0 50px; }
.works-item   { height: auto; transition: transform 0.3s; }
.works-link {
    display: block;
    text-decoration: none;
    color: #333;
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    transition: 0.3s;
    height: 100%;
}
.works-link:hover { transform: translateY(-5px); box-shadow: 0 12px 30px rgba(0,0,0,0.1); }
.works-thumb {
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: #f0f4f5;
}
.works-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}
.works-link:hover .works-thumb img { transform: scale(1.05); }
.works-content { padding: 20px; }
.works-title  { font-size: 1.05rem; font-weight: bold; margin-bottom: 12px; line-height: 1.5; color: #333; }
.works-tags .tag {
    display: inline-block;
    font-size: 0.75rem;
    background: #f0f4f8;
    color: #555;
    padding: 4px 12px;
    border-radius: 20px;
    margin-right: 5px;
}


/* ============================================
   CLIENT VOICE（お客様の声）
   ============================================ */
.section-voice {
    padding: 110px 0;
    background: var(--color-warm-bg);
    position: relative;
    overflow: hidden;
}
/* 装飾：左上の大きなクォートマーク */
.section-voice::before {
    content: '\201C';
    position: absolute;
    top: -20px;
    left: 2%;
    font-size: 20rem;
    font-family: Georgia, serif;
    color: rgba(99,144,148,0.07);
    line-height: 1;
    pointer-events: none;
    user-select: none;
}
.voice-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.voice-card {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0,0,0,0.07);
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
}
.voice-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(99,144,148,0.15);
}

/* 写真エリア */
.voice-photo {
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: var(--color-sub-bg);
    flex-shrink: 0;
}
.voice-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    display: block;
}
.voice-card:hover .voice-photo img {
    transform: scale(1.05);
}

/* テキストエリア */
.voice-body {
    padding: 30px 32px 32px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    border-top: 4px solid var(--color-main);
}
.voice-result {
    font-size: 0.82rem;
    font-weight: bold;
    color: var(--color-accent);
    background: var(--color-sub-bg);
    padding: 5px 14px;
    border-radius: 50px;
    display: inline-block;
    margin-bottom: 18px;
    align-self: flex-start;
}
.voice-result strong {
    font-size: 1rem;
}
.voice-text {
    font-size: 0.95rem;
    line-height: 1.9;
    color: var(--color-text);
    margin-bottom: 20px;
    padding-left: 20px;
    position: relative;
    flex-grow: 1;
}
.voice-text::before {
    content: '\201C';
    position: absolute;
    left: 0;
    top: -4px;
    font-size: 2.6rem;
    color: var(--color-main);
    line-height: 1;
    font-family: Georgia, serif;
    opacity: 0.6;
}
.voice-client {
    font-size: 0.82rem;
    color: #888;
    font-weight: bold;
    padding-top: 16px;
    border-top: 1px solid #eee;
}

@media (max-width: 992px) {
    .voice-grid { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto; }
    .voice-photo { aspect-ratio: 16 / 7; }
}


/* ============================================
   FAQ
   ============================================ */
.section-faq {
    background: #f5f9fa;
    padding: 110px 0;
}
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}
.faq-item {
    background: #fff;
    margin-bottom: 14px;
    padding: 0;
    border-radius: 14px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
    transition: box-shadow 0.3s, transform 0.3s;
    overflow: hidden;
    border-left: 4px solid var(--color-main);
}
.faq-item:hover {
    box-shadow: 0 8px 24px rgba(99,144,148,0.12);
    transform: translateX(4px);
}
.faq-q {
    font-weight: bold;
    font-size: 1rem;
    color: var(--color-text);
    padding: 24px 28px 20px;
    display: flex;
    align-items: flex-start;
    gap: 14px;
}
.faq-q::before {
    content: 'Q';
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    min-width: 30px;
    background: var(--color-main);
    color: #fff;
    border-radius: 50%;
    font-size: 0.85rem;
    font-weight: 900;
    margin-top: -1px;
}
.faq-a {
    font-size: 0.95rem;
    line-height: 1.85;
    color: #666;
    padding: 0 28px 24px 72px;
}


/* ============================================
   COLUMN（ブログ）
   ============================================ */
.section-blog {
    padding: 110px 0;
    background: var(--color-warm-bg);
}
.blog-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.blog-card {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    text-decoration: none;
    color: var(--color-text);
    display: block;
    transition: transform 0.3s, box-shadow 0.3s;
    border: none;
}
.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 36px rgba(0,0,0,0.09);
}
.blog-thumb {
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: var(--color-sub-bg);
}
.blog-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}
.blog-card:hover .blog-thumb img { transform: scale(1.05); }
.blog-date {
    font-size: 0.8rem;
    color: var(--color-main);
    font-weight: bold;
    padding: 18px 20px 6px;
}
.blog-card h3 {
    font-size: 0.97rem;
    font-weight: bold;
    line-height: 1.65;
    padding: 0 20px 22px;
    margin: 0;
}

@media (max-width: 992px) {
    .blog-list { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
    .blog-list { grid-template-columns: 1fr; }
}


/* ============================================
   AREA LINKS
   ============================================ */
.section-area-links {
    background: #2c3e42;
    color: #fff;
    padding: 70px 0;
    text-align: center;
}
.section-area-links h2 {
    color: #fff;
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 12px;
}
.section-area-links > .container > p {
    color: rgba(255,255,255,0.75);
    font-size: 0.95rem;
}
.area-list {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 28px 0 0;
}
.area-list a {
    color: #ccc;
    text-decoration: none;
    border: 1px solid #555;
    padding: 8px 22px;
    border-radius: 50px;
    font-size: 0.9rem;
    transition: 0.3s;
    display: block;
}
.area-list a:hover { background: var(--color-main); color: #fff; border-color: var(--color-main); }
.section-area-links .note {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.5);
    margin-top: 20px;
}


/* ============================================
   CTA
   ============================================ */
.section-cta {
    background: linear-gradient(135deg, var(--color-accent) 0%, #3d8fa0 50%, var(--color-main) 100%);
    text-align: center;
    padding: 120px 0;
    position: relative;
    overflow: hidden;
    color: #fff;
}
/* 背景の装飾サークル */
.section-cta::before {
    content: '';
    position: absolute;
    top: -150px;
    left: -150px;
    width: 500px;
    height: 500px;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 50%;
    pointer-events: none;
}
.section-cta::after {
    content: '';
    position: absolute;
    bottom: -100px;
    right: -100px;
    width: 380px;
    height: 380px;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 50%;
    pointer-events: none;
}
.section-cta h2 {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 18px;
    color: #fff;
    line-height: 1.5;
    text-shadow: 0 2px 8px rgba(0,0,0,0.15);
}
.section-cta p {
    font-size: 1rem;
    line-height: 1.8;
    color: rgba(255,255,255,0.88);
}
.cta-buttons {
    margin-top: 44px;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}
/* CTA内のボタン調整（白背景 on グラデ） */
.section-cta .btn-primary {
    background: #fff;
    color: var(--color-accent) !important;
    box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}
.section-cta .btn-primary:hover {
    background: var(--color-warm-bg);
    transform: translateY(-3px);
}
.section-cta .btn-line {
    box-shadow: 0 8px 24px rgba(6,199,85,0.4);
}

@media (max-width: 600px) {
    .section-cta h2 { font-size: 1.6rem; }
    .cta-buttons { flex-direction: column; align-items: center; }
    .cta-buttons .btn { width: 100%; max-width: 320px; }
}
