@charset "UTF-8";
/* ######################################################################################

　共通

###################################################################################### */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
:root {
    --c-primary: #0B3D91;
    --c-primary-light: #1A5BC4;
    --c-primary-dark: #072B66;
    --c-accent: #E8553A;
    --c-accent-light: #FF7A5C;
    --c-accent-hover: #D44429;
    --c-bg: #FAFBFD;
    --c-bg-dark: #0B1B34;
    --c-bg-section: #F0F4FA;
    --c-text: #1A2138;
    --c-text-muted: #5A6478;
    --c-text-light: #8B95A8;
    --c-border: #E2E8F2;
    --c-white: #FFFFFF;
    --font-jp: 'Noto Sans JP', sans-serif;
    --font-en: 'Inter', sans-serif;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
html {
    font-size: 16px;
	scroll-behavior: smooth;
}
body {
    font-family: var(--font-jp);
    color: var(--c-text);
    background: var(--c-bg);
    line-height: 1.8;
}
a {
    text-decoration: none;
    color: inherit;
}
img {
    max-width: 100%;
    display: block;
}
ul {
    list-style: none;
}
.container {
    width: 100%;
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 24px;
}
.alignC{
	text-align: center;
}

br.pc{display: block;}
br.sp{display: none;}

@media (max-width: 900px) {
	br.pc{display: none;}
	br.sp{display: block;}
}

/* ######################################################################################

　effect

###################################################################################### */
/* ====================================================
    fadeIn
==================================================== */
.fadeIn{
	opacity: 0;
	transform: translateY(24px);
	transition: opacity 0.6s ease, transform 0.6s ease;
}
.fadeIn.insert{
	opacity: 1;
	transform: translateY(0);
}

/* ######################################################################################

　header

###################################################################################### */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--c-border);
    transition: var(--transition);
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 24px;
    height: 72px;
}
@media (max-width: 900px) {
	.header-inner{
		height: 60px;
	}
}

/* ====================================================
    logo
==================================================== */
.logo {
    font-family: var(--font-en);
    font-weight: 800;
    font-size: 20px;
    color: var(--c-primary);
    display: flex;
    align-items: center;
    gap: 8px;
    letter-spacing: -0.5px;
}
.logo-icon {
    width: 36px;
    height: 36px;
    background: var(--c-primary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 16px;
    font-weight: 900;
}

@media (max-width: 900px) {
	.logo-icon{
		width: 30px;
		height: 30px;
	}
}

/* ====================================================
    nav
==================================================== */
.nav {
    display: flex;
    align-items: center;
    gap: 32px;
	height: 100%;
}
.nav a {
	position: relative;
    font-size: 14px;
    font-weight: 500;
    color: var(--c-text-muted);
    transition: var(--transition);
    position: relative;
	height: 100%;
	display: flex;
	align-items: center;
}
.nav a:after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 2px;
	background: var(--c-text-muted);
	transform: scale(0, 1);
	transform-origin: right top;
	transition: transform .3s;
}
.nav a:hover {
    color: var(--c-primary);
}
.nav a:hover:after {
	transform: scale(1, 1);
	transform-origin: left top;
}

/* ====================================================
    スマホ　ハンバーガーメニュー
==================================================== */
.hamburger {
  display: none;
  width: 30px;
  height: 22px;
  position: relative;
  border: none;
  background: none;
  cursor: pointer;
  z-index: 1002;
}

.hamburger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 3px;
  background: #333;
  transition: 0.3s;
}

.hamburger span:nth-child(1) { top: 0; }
.hamburger span:nth-child(2) { top: 9px; }
.hamburger span:nth-child(3) { bottom: 0; }

/* 開いた時 */
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg);
  top: 9px;
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg);
  bottom: 10px;
}

.menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.5);
  opacity: 0;
  visibility: hidden;
  transition: .3s;
  z-index: 999;
}

/* 表示状態 */
.menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

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

  .nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    height: 100vh;
    background: #fff;
    flex-direction: column;
    padding: 80px 20px;
    transition: 0.3s;
	z-index: 1001;
  }

  .nav.active {
    right: 0;
  }

  .nav a {
    margin: 10px 0;
    font-size: 18px;
  }
}

/* ====================================================
   nav .btn-cta
==================================================== */
.nav .btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--c-accent);
    color: white;
    padding: 12px 28px;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 600;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    box-shadow: 0 2px 12px rgba(232, 85, 58, 0.25);
	height: auto;
}
.nav .btn-cta:hover {
    background: var(--c-accent-hover);
    transform: translateY(-1px);
    box-shadow: 0 4px 20px rgba(232, 85, 58, 0.35);
    color: white;
}
.nav .btn-cta:after {
	display: none;
}
.nav .btn-cta svg {
    width: 16px;
    height: 16px;
}

/* ====================================================
   資料ダウンロード
==================================================== */
.nav-dl-link {
    color: var(--c-primary) !important;
    font-weight: 600 !important;
}
.nav-dl-link svg{
	margin-right: 4px;
}


/* ######################################################################################

　hero　メインビジュアル

###################################################################################### */
.hero {
    padding: 160px 0 100px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(170deg, #F8FAFF 0%, #EEF3FF 40%, #FAFBFD 100%);
}
.hero::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(11, 61, 145, 0.06) 0%, transparent 70%);
    border-radius: 50%;
}
.hero::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(232, 85, 58, 0.04) 0%, transparent 70%);
    border-radius: 50%;
}
.hero-inner {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(11, 61, 145, 0.06);
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 500;
    color: var(--c-primary);
    margin-bottom: 24px;
}
.hero-badge-dot {
    width: 8px;
    height: 8px;
    background: var(--c-accent);
    border-radius: 50%;
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.4;
    }
}

@media (max-width: 900px) {
	.hero{
		padding-top: 100px;
		padding-bottom: 40px;
	}
    .hero-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }
	.hero-badge{
		margin-bottom: 14px;
	}
}


/* ====================================================
    hero h1
==================================================== */
.hero h1 {
    font-size: 42px;
    font-weight: 900;
    line-height: 1.4;
    letter-spacing: -0.02em;
    margin-bottom: 24px;
}
.hero h1 .accent {
    color: var(--c-accent);
}
.hero h1 .primary {
    color: var(--c-primary);
}
@media (min-width: 901px) and (max-width: 1000px) {
	.hero h1{
		font-size: 38px;
	}
}
@media (max-width: 900px) {
    .hero h1 {
        font-size: 30px;
    }
}

/* ====================================================
    hero-sub
==================================================== */
.hero-sub {
    font-size: 16px;
    line-height: 1.9;
    color: var(--c-text-muted);
    margin-bottom: 40px;
}
@media (max-width: 900px) {
	.hero-sub{
		margin-bottom: 25px;
	}
}
/* ====================================================
    hero-actions
==================================================== */
.hero-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}
/* ====================================================
    btn-cta-large
==================================================== */
.btn-cta-large {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--c-accent);
    color: white;
    padding: 18px 40px;
    border-radius: 100px;
    font-size: 16px;
    font-weight: 700;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 24px rgba(232, 85, 58, 0.3);
}
.btn-cta-large:hover {
    background: var(--c-accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(232, 85, 58, 0.4);
}
/* ====================================================
    btn-secondary
==================================================== */
.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: var(--c-primary);
    padding: 18px 32px;
    border-radius: 100px;
    font-size: 15px;
    font-weight: 600;
    border: 2px solid var(--c-primary);
    transition: var(--transition);
    cursor: pointer;
}
.btn-secondary:hover {
    background: var(--c-primary);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(58, 84, 232, 0.4);
}
/* ====================================================
    hero-visual
==================================================== */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}
@media (max-width: 900px) {
    .hero-visual {
        order: -1;
    }
}


/* ====================================================
    hero-mockup
==================================================== */
.hero-mockup {
    width: 100%;
    max-width: 480px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 24px 80px rgba(11, 61, 145, 0.12), 0 4px 16px rgba(0, 0, 0, 0.04);
    padding: 32px;
    position: relative;
    transform: perspective(1000px) rotateY(-4deg) rotateX(2deg);
}
.hero-mockup-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 24px;
}
.hero-mockup-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}
.hero-mockup-dot:nth-child(1) {
    background: #FF6058;
}
.hero-mockup-dot:nth-child(2) {
    background: #FFBD2E;
}
.hero-mockup-dot:nth-child(3) {
    background: #28CA42;
}
.hero-mockup-slide {
    background: var(--c-bg-section);
    border-radius: 10px;
    padding: 28px;
    position: relative;
    overflow: hidden;
}
.hero-mockup-slide-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--c-primary);
    margin-bottom: 16px;
}
.hero-mockup-bars {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.hero-mockup-bar {
    height: 10px;
    border-radius: 100px;
    background: var(--c-border);
    position: relative;
    overflow: hidden;
}
.hero-mockup-bar::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    border-radius: 100px;
    background: var(--c-primary);
    animation: barFill 2s ease-out forwards;
}
.hero-mockup-bar:nth-child(1)::after {
    width: 85%;
    animation-delay: 0.3s;
}
.hero-mockup-bar:nth-child(2)::after {
    width: 72%;
    animation-delay: 0.5s;
    background: var(--c-primary-light);
}
.hero-mockup-bar:nth-child(3)::after {
    width: 93%;
    animation-delay: 0.7s;
    background: var(--c-accent);
}
@keyframes barFill {
    from {
        width: 0;
    }
}
.hero-mockup-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 20px;
}
.hero-mockup-stat {
    background: white;
    border-radius: 8px;
    padding: 14px;
    text-align: center;
}
.hero-mockup-stat-num {
    font-family: var(--font-en);
    font-size: 22px;
    font-weight: 800;
    color: var(--c-accent);
}
.hero-mockup-stat-label {
    font-size: 11px;
    color: var(--c-text-muted);
    margin-top: 2px;
}
@media (max-width: 900px) {
    .hero-mockup {
		padding: 20px;
        transform: none;
        max-width: 360px;
        margin: 0 auto;
    }
	.hero-mockup-header{
		margin-bottom: 14px;
	}
	.hero-mockup-stat{
		padding: 8px;
	}
	.hero-mockup-slide{
		padding: 20px;
	}
	.hero-mockup-stat-num{
		height: 1.5em;
	}
}

/* ====================================================
    floating-badge
==================================================== */
.floating-badge {
    position: absolute;
    background: white;
    border-radius: 12px;
    padding: 14px 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 10px;
    animation: float 3s ease-in-out infinite;
}
.floating-badge-1 {
    top: 20px;
    right: -30px;
    animation-delay: 0s;
}
.floating-badge-2 {
    bottom: 40px;
    left: -20px;
    animation-delay: 1.5s;
}
@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
}
.floating-badge-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.floating-badge-1 .floating-badge-icon {
	background: rgba(11,61,145,0.1);
}
.floating-badge-2 .floating-badge-icon {
	background: rgba(232,85,58,0.1);
}

.floating-badge-text {
    font-size: 12px;
    font-weight: 600;
}
.floating-badge-sub {
    font-size: 11px;
    color: var(--c-text-muted);
}

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


/* ######################################################################################

　social-proof　数字

###################################################################################### */
.social-proof {
    padding: 48px 0;
    border-bottom: 1px solid var(--c-border);
    background: white;
}
.social-proof-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 56px;
    flex-wrap: wrap;
}
.proof-item {
    text-align: center;
}
.proof-num {
    font-family: var(--font-en);
    font-size: 40px;
    font-weight: 900;
    color: var(--c-primary);
    line-height: 1;
}
.proof-num .unit {
    font-size: 20px;
    font-weight: 600;
}
.proof-label {
    font-size: 13px;
    color: var(--c-text-muted);
    margin-top: 6px;
    font-weight: 500;
}

@media (max-width: 900px) {
	.social-proof{
		padding: 30px 0 60px;
	}
	.proof-num {
		font-size: 34px;
    }
}



/* ######################################################################################

　problem　こんな課題、ありませんか？

###################################################################################### */
.problem {
    padding: 100px 0;
    background: white;
}
.section-label {
    font-family: var(--font-en);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--c-accent);
    margin-bottom: 12px;
}
.section-title {
    font-size: 32px;
    font-weight: 800;
    line-height: 1.5;
    margin-bottom: 16px;
    letter-spacing: -0.01em;
}
.section-desc {
    font-size: 16px;
    color: var(--c-text-muted);
    line-height: 1.9;
	margin: 16px auto 0;
}
.problem-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 56px;
}
.problem-card {
    background: var(--c-bg-section);
    border-radius: 16px;
    padding: 32px;
    border: 1px solid transparent;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
/* .problem-card:hover {
    border-color: var(--c-accent);
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(232, 85, 58, 0.08);
} */
.problem-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--c-accent);
    opacity: 0;
    transition: var(--transition);
}
/* .problem-card:hover::before {
    opacity: 1;
} */
.problem-icon {
    width: 48px;
    height: 48px;
    background: rgba(232, 85, 58, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 20px;
}
.problem-card h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.6;
}
.problem-card p {
    font-size: 14px;
    color: var(--c-text-muted);
    line-height: 1.8;
}

@media (max-width: 900px) {
	.problem{
		padding: 60px 0;
	}
    .problem-grid {
		margin-top: 30px;
        grid-template-columns: 1fr;
    }
	.section-title {
        font-size: 22px;
    }
	.problem-card{
		padding: 20px;
	}
}

/* ######################################################################################

　solution-bridge

　資料制作会社ではなく、
「採用のプロ」が作るから成果が出る。

###################################################################################### */
.solution-bridge {
    padding: 80px 0;
    background: var(--c-bg-dark);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.solution-bridge::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200%;
    height: 100%;
    background: radial-gradient(ellipse at center top, rgba(26, 91, 196, 0.2) 0%, transparent 60%);
}
.solution-bridge .section-label {
    color: var(--c-accent-light);
}
.solution-bridge h2 {
    font-size: 36px;
    font-weight: 900;
    line-height: 1.5;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}
.solution-bridge p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    max-width: 640px;
    margin: 0 auto;
    line-height: 1.9;
    position: relative;
    z-index: 1;
}

@media (max-width: 900px) {
	.solution-bridge{
		padding: 60px 0;
	}
	.solution-bridge h2 {
		font-size: 26px;
	}
	.solution-bridge p{
		font-size: 15px;
		text-align: left;
	}
	.solution-bridge p br{
		display: none;
	}
    .social-proof-inner {
        gap: 32px;
    }
}

/* ######################################################################################

　features　アイリクピッチが選ばれる4つの理由

###################################################################################### */
.features {
    padding: 100px 0;
    background: white;
}
.feature-title{
	text-align: center;
	margin-bottom: 64px;
}
.feature-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 80px;
}
.feature-item:nth-child(even) {
    direction: rtl;
}
.feature-item:nth-child(even)>* {
    direction: ltr;
}
.feature-item:last-child {
    margin-bottom: 0;
}
.feature-num {
    font-family: var(--font-en);
    font-size: 80px;
    font-weight: 900;
    color: rgba(11, 61, 145, 0.06);
    line-height: 1;
    margin-bottom: 16px;
}
.feature-content h3 {
    font-size: 26px;
    font-weight: 800;
    line-height: 1.5;
    margin-bottom: 16px;
}
.feature-content p {
    font-size: 15px;
    color: var(--c-text-muted);
    line-height: 1.9;
    margin-bottom: 24px;
}
.feature-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}
.feature-tag {
    background: rgba(11, 61, 145, 0.06);
    color: var(--c-primary);
    padding: 6px 14px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 600;
}
.feature-visual {
    background: var(--c-bg-section);
    border-radius: 20px;
    padding: 40px;
    position: relative;
    min-height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  width: 100%;
}

.feature-card {
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  border-left: 4px solid;
}

.feature-card-title {
  font-size: 11px;
  font-weight: 700;
  margin-bottom: 8px;
}

.feature-card-text {
  font-size: 13px;
  color: var(--c-text-muted);
  line-height: 1.7;
}


@media (max-width: 900px) {
	.features{
		padding: 60px 0;
	}
	.feature-title{
		text-align: center;
		margin-bottom: 30px;
	}
	.feature-item{
		margin-bottom: 20px;
	}
    .feature-item, .feature-item:nth-child(even) {
        grid-template-columns: 1fr;
        direction: ltr;
        gap: 32px;
    }
	.feature-num{
		margin-bottom: -22px;
	}
	.feature-content h3{
		font-size: 22px;
	}
	.feature-visual{
		padding: 22px 15px;
		min-height: auto;
	}
	.feature-card-text{
		font-size: 12px;
	}
}


/* ====================================================
    カラーバリエーション
==================================================== */
.feature-card.primary {
  border-color: var(--c-primary);
}
.feature-card.primary .feature-card-title {
  color: var(--c-primary);
}

.feature-card.accent {
  border-color: var(--c-accent);
}
.feature-card.accent .feature-card-title {
  color: var(--c-accent);
}

.feature-card.engineer {
  border-color: #1D9E75;
}
.feature-card.engineer .feature-card-title {
  color: #1D9E75;
}

.feature-card.sales {
  border-color: #854F0B;
}
.feature-card.sales .feature-card-title {
  color: #854F0B;
}
.feature-flow {
  width: 100%;
  text-align: center;
  align-items: center;
}

.feature-flow-svg {
  width: 280px;
}

/* ====================================================
    円
==================================================== */
.flow-circle {
  fill: none;
  stroke: #E2E8F2;
  stroke-width: 2;
  stroke-dasharray: 8 4;
}

/* ====================================================
   共通ステップ
==================================================== */
.flow-step rect {
  fill: #0B3D91;
}

.flow-step text {
  fill: #fff;
  font-size: 11px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 600;
}

/* ====================================================
   カラー差分
==================================================== */
.flow-step.design rect {
  fill: #1A5BC4;
}

.flow-step.operation rect {
  fill: #E8553A;
}

.flow-step.analysis rect {
  fill: #1D9E75;
}

/* ====================================================
   矢印
==================================================== */
.flow-line {
  fill: none;
  stroke: #0B3D91;
  stroke-width: 1.5;
  marker-end: url(#flow-arrow);
}

#flow-arrow path {
  fill: #0B3D91;
}

/* ====================================================
   feature-chart　選考データから逆算する構成設計のグラフ
==================================================== */
.feature-chart {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.chart-row {
    display: flex;
    align-items: center;
    gap: 12px;
}
.chart-label {
    font-size: 13px;
    font-weight: 500;
    width: 80px;
    text-align: right;
    color: var(--c-text-muted);
}
.chart-bar-bg {
    flex: 1;
    height: 28px;
    background: white;
    border-radius: 100px;
    overflow: hidden;
    position: relative;
}
.chart-bar {
    height: 100%;
    border-radius: 100px;
    transition: width 1.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.chart-bar.blue {
    background: var(--c-primary);
}
.chart-bar.accent {
    background: var(--c-accent);
}
.chart-row:nth-child(1) .chart-bar {width: 100%;}
.chart-row:nth-child(2) .chart-bar {width: 72%;}
.chart-row:nth-child(3) .chart-bar {width: 58%;}
.chart-row:nth-child(4) .chart-bar {width: 42%;}
.chart-val {
    font-family: var(--font-en);
    font-size: 14px;
    font-weight: 700;
    min-width: 48px;
    color: var(--c-text);
}
.chart-attention{
	text-align: center;
	margin-top: 8px;
}
.chart-attention span{
	font-size: 12px;
	color: var(--c-text-light);
}
/* ====================================================
   feature-flow　年間1,000回超の説明会から導いた"刺さる"ストーリーのイラスト
==================================================== */
.feature-flow {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
}
.flow-step {
    display: flex;
    align-items: center;
    gap: 16px;
    background: white;
    border-radius: 12px;
    padding: 16px 20px;
    transition: var(--transition);
}
/* .flow-step:hover {
    transform: translateX(4px);
} */
.flow-num {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--c-primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-en);
    font-size: 14px;
    font-weight: 700;
    flex-shrink: 0;
}
.flow-text {
    font-size: 14px;
    font-weight: 500;
}
.flow-arrow {
    text-align: center;
    color: var(--c-primary);
    font-size: 18px;
}

@media (max-width: 900px) {
	.feature-flow {
		gap: 0px;
	}
	.flow-step {
		width: 100%;
		padding: 10px;
		max-width: 300px;
	}
	.flow-num {
		width: 26px;
		height: 26px;
	}
	.flow-text {
		font-size: 13px;
	}
}



/* ######################################################################################

　Results　データが証明する、ピッチ資料の効果

###################################################################################### */
.data-section {
    padding: 100px 0;
    background: var(--c-bg-section);
}
.data-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 56px;
}
.data-card {
    background: white;
    border-radius: 16px;
    padding: 36px 15px;
    text-align: center;
    border: 1px solid var(--c-border);
    transition: var(--transition);
}
/* .data-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
} */
.data-big {
    font-family: var(--font-en);
    font-size: 56px;
    font-weight: 900;
    color: var(--c-primary);
    line-height: 1;
    margin-bottom: 4px;
}
.data-big .accent {
    color: var(--c-accent);
}
.data-unit {
    font-size: 16px;
    font-weight: 600;
    color: var(--c-primary);
}
.data-desc {
    font-size: 14px;
    color: var(--c-text-muted);
    margin-top: 12px;
    line-height: 1.7;
}

@media (max-width: 900px) {
	.data-section{
		padding: 60px 0;
	}
    .data-grid {
        grid-template-columns: 1fr;
		margin: 30px 0 0;
		gap: 18px;
    }
	.data-card{
		padding: 25px 15px;
	}
	.data-big{
		font-size: 48px;
	}
	.data-unit{
		font-size: 14px;
	}
	.data-desc{
		font-size: 13px;
	}
}


/* ######################################################################################

　pricing　シンプルな料金プラン

###################################################################################### */
.pricing {
    padding: 100px 0;
    background: white;
}
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 56px;
    align-items: start;
}
.price-card {
    background: var(--c-bg);
    border-radius: 20px;
    padding: 40px 32px;
    border: 2px solid var(--c-border);
    transition: var(--transition);
    position: relative;
}
.price-card.featured {
    border-color: var(--c-primary);
    background: white;
    box-shadow: 0 16px 64px rgba(11, 61, 145, 0.12);
    transform: scale(1.04);
}
.price-card.featured .price-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--c-primary);
    color: white;
    padding: 6px 20px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 700;
}
.price-card-label {
    font-size: 12px;
    font-weight: 600;
    color: var(--c-text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}
.price-card h3 {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 12px;
}
.price-card-desc {
    font-size: 14px;
    color: var(--c-text-muted);
    line-height: 1.7;
    margin-bottom: 24px;
    min-height: 60px;
}
.price-amount {
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin-bottom: 24px;
}
.price-yen {
    font-family: var(--font-en);
    font-size: 48px;
    font-weight: 900;
    color: var(--c-text);
    line-height: 1;
}
.price-num{
	font-size: 20px;
	font-weight: 700;
}
.price-tax {
    font-size: 13px;
    color: var(--c-text-muted);
}
.price-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 32px;
}
.price-feature {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    line-height: 1.6;
}
.price-check {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: rgba(11, 61, 145, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}
.price-check svg {
    width: 12px;
    height: 12px;
    color: var(--c-primary);
}
.price-card .btn-price {
    display: block;
    width: 100%;
    text-align: center;
    padding: 16px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 700;
    transition: var(--transition);
    cursor: pointer;
    border: none;
}
.price-card .btn-price.outline {
    background: transparent;
    color: var(--c-primary);
    border: 2px solid var(--c-primary);
}
.price-card .btn-price.outline:hover {
    background: var(--c-primary);
    color: white;
}
.price-card .btn-price.filled {
    background: var(--c-accent);
    color: white;
    box-shadow: 0 4px 16px rgba(232, 85, 58, 0.25);
}
.price-card .btn-price.filled:hover {
    background: var(--c-accent-hover);
    transform: translateY(-1px);
}
.pricing-note {
    text-align: center;
    margin-top: 32px;
    font-size: 14px;
    color: var(--c-text-muted);
}

@media (max-width: 900px) {
    .pricing{
		padding: 60px 0;
	}
    .pricing-grid {
		margin-top: 30px;
        grid-template-columns: 1fr;
    }
	.price-card{
		padding: 24px;
	}
    .price-card.featured {
        transform: none;
    }
	.price-card-label{
		margin-bottom: 0;
		line-height: 1.5;
	}
	.price-card h3{
		margin-bottom: 5px;
	}
	.price-amount{
		margin-bottom: 16px;
	}
	.price-card-desc{
		margin-bottom: 5px;
	}
	.price-features{
		margin-bottom: 20px;
		gap: 6px;
	}
	.price-feature{
		gap: 4px;
		font-size: 13px;
	}
	.pricing-note{
		text-align: left;
		margin-top: 13px;
		font-size: 12px;
	}
}


/* ====================================================
   まずは資料で検討したい方へ
==================================================== */
.dl-banner {
    margin-top: 48px;
}
.dl-banner-inner {
    background: linear-gradient(135deg, #EEF3FF 0%, #F8FAFF 100%);
    border: 2px solid var(--c-primary);
    border-radius: 16px;
    padding: 32px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}
.dl-banner-content {
    display: flex;
    align-items: center;
    gap: 16px;
    flex: 1;
}
.dl-banner-icon {
    font-size: 32px;
    flex-shrink: 0;
}
.dl-banner-title {
    font-size: 18px;
    font-weight: 800;
    color: var(--c-primary);
    margin-bottom: 4px;
}
.dl-banner-desc {
    font-size: 14px;
    color: var(--c-text-muted);
    line-height: 1.7;
}
.btn-dl-banner {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--c-primary);
    color: white;
    padding: 16px 32px;
    border-radius: 100px;
    font-size: 15px;
    font-weight: 700;
    transition: var(--transition);
    white-space: nowrap;
    flex-shrink: 0;
    box-shadow: 0 4px 16px rgba(11, 61, 145, 0.25);
}
.btn-dl-banner:hover {
    background: var(--c-primary-dark);
    transform: translateY(-1px);
    box-shadow: 0 6px 24px rgba(11, 61, 145, 0.35);
}

@media (min-width: 901px) and (max-width: 1000px) {
	.dl-banner-desc br{
		display: none;
	}
}
@media (max-width: 900px) {
    .dl-banner-inner {
        flex-direction: column;
        text-align: center;
        padding: 10px 15px 20px;
    }
	.dl-banner-content {
        flex-direction: column;
		gap: 0;
    }
}


/* ######################################################################################

　testimonials　導入企業の声

###################################################################################### */
.testimonials {
    padding: 100px 0;
    background: var(--c-bg-section);
}
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 56px;
}
.testimonial-card {
    background: white;
    border-radius: 16px;
    padding: 36px;
    border: 1px solid var(--c-border);
    transition: var(--transition);
}
/* .testimonial-card:hover {
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.05);
} */
.testimonial-quote {
    font-size: 15px;
    line-height: 1.9;
    color: var(--c-text);
    margin-bottom: 24px;
    position: relative;
    padding-left: 20px;
    border-left: 3px solid var(--c-primary);
}
.testimonial-result {
    background: var(--c-bg-section);
    border-radius: 10px;
    padding: 16px 20px;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
}
.testimonial-result-icon {
    width: 32px;
    height: 32px;
    background: rgba(11, 61, 145, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.testimonial-result-text {
    font-size: 14px;
    font-weight: 600;
    color: var(--c-primary);
}
.testimonial-footer {
    display: flex;
    align-items: center;
    gap: 12px;
}
.testimonial-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--c-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 16px;
    font-weight: 700;
}
.testimonial-avatar-01{background: var(--c-primary);}
.testimonial-avatar-02{background: var(--c-accent);}
.testimonial-avatar-03{background: #1D9E75;}
.testimonial-avatar-04{background: #854F0B;}
.testimonial-name {
    font-size: 14px;
    font-weight: 600;
}
.testimonial-company {
    font-size: 12px;
    color: var(--c-text-muted);
}

@media (max-width: 900px) {
	.testimonials{
		padding: 60px 0;
	}
    .testimonial-grid {
		margin-top: 30px;
        grid-template-columns: 1fr;
    }
	.testimonial-card{
		padding: 25px 20px;
	}
	.testimonial-quote{
		margin-bottom: 16px;
		font-size: 14px;
	}
	.testimonial-result{
		margin-bottom: 16px;
		padding: 12px 18px;
	}
}

/* ######################################################################################

　process　制作の流れ

###################################################################################### */
.process {
    padding: 100px 0;
    background: white;
}
.process-timeline {
    display: flex;
    gap: 16px;
    margin-top: 56px;
    position: relative;
}
.process-step {
    flex: 1;
    background: var(--c-bg-section);
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
    position: relative;
    transition: var(--transition);
	list-style: none;
}
/* .process-step:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
} */
.process-step-num {
    font-family: var(--font-en);
    font-size: 12px;
    font-weight: 800;
    color: var(--c-accent);
    letter-spacing: 2px;
    margin-bottom: 12px;
}
.process-step-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 16px;
    background: white;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}
.process-step h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
}
.process-step p {
    font-size: 13px;
    color: var(--c-text-muted);
    line-height: 1.7;
}
.process-connector {
    position: absolute;
    top: 50%;
    right: -16px;
    transform: translateY(-50%);
    color: var(--c-text-light);
    font-size: 16px;
    z-index: 1;
}
.process-note-warp{
	text-align: center;
	margin-top: 40px;
}
.process-note {
    text-align: center;
    margin-top: 40px;
    background: var(--c-bg-section);
    border-radius: 12px;
    padding: 20px 32px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: var(--c-text-muted);
}
.process-note strong {
    color: var(--c-text);
}
@media (max-width: 900px) {
	.process {
		padding: 60px 0;
	}
    .process-timeline {
		margin-top: 30px;
        flex-direction: column;
    }
	.process-step{
		padding: 25px 20px;
	}
	.process-step-num{
		margin-bottom: 5px;
	}
    .process-connector {
        display: none;
    }
	.process-note{
		padding: 15px 20px;
		margin-top: 0px;
		display: block;
		font-size: 13px;
		text-align: left;
	}
}

/* ######################################################################################

　FAQ　よくあるご質問

###################################################################################### */
.faq {
    padding: 100px 0;
    background: var(--c-bg-section);
}
.faq-list {
    max-width: 760px;
    margin: 56px auto 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.faq-item {
    background: white;
    border-radius: 12px;
    border: 1px solid var(--c-border);
    overflow: hidden;
    transition: var(--transition);
}
.faq-item:hover{
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.05);
}
.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 28px;
    cursor: pointer;
    font-size: 15px;
    font-weight: 600;
    transition: var(--transition);
}
.faq-question:hover {
    color: var(--c-primary);
}
.faq-toggle {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--c-bg-section);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--c-text-muted);
    transition: var(--transition);
    flex-shrink: 0;
}
.faq-item.open .faq-toggle {
    background: var(--c-primary);
    color: white;
    transform: rotate(45deg);
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
}
.faq-item.open .faq-answer {
    max-height: 300px;
}
.faq-answer-inner {
    padding: 0 28px 24px;
    font-size: 14px;
    color: var(--c-text-muted);
    line-height: 1.9;
}
@media (max-width: 900px) {
	.faq {
		padding: 60px 0;
	}
	.faq-list{
		margin-top: 30px;
	}
	.faq-question{
		padding: 18px 28px 18px 22px;
	}
}


/* ######################################################################################

　related　採用の課題を、トータルで解決

###################################################################################### */
.related-services {
    padding: 100px 0;
    background: white;
}
.rs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 56px;
}
.rs-card {
    background: var(--c-bg-section);
    border-radius: 16px;
    border: 2px solid transparent;
    transition: var(--transition);
    position: relative;
    display: flex;
    flex-direction: column;
	cursor: pointer;
}
.rs-card:not(.rs-card-current):hover {
	transform: translateY(-6px)!important;
}
.rs-card-current {
    background: white;
    border-color: var(--c-primary);
    box-shadow: 0 4px 20px rgba(11, 61, 145, 0.08);
	cursor: default;
}
.rs-card > a,
.rs-card > span{
	display: block;
    padding: 32px 28px;
}
.rs-current-badge {
    position: absolute;
    top: -12px;
    left: 24px;
    background: var(--c-primary);
    color: white;
    padding: 4px 14px;
    border-radius: 100px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
}
.rs-icon-area {
    margin-bottom: 16px;
}
.rs-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}
.rs-icon-01{background: rgba(11,61,145,0.1); color: var(--c-primary);}
.rs-icon-02{background: rgba(232,85,58,0.1); color: var(--c-accent);}
.rs-icon-03{background: rgba(29,158,117,0.1); color: #1D9E75;}

.rs-name {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 4px;
    color: var(--c-text);
}
.rs-tagline {
    font-size: 13px;
    font-weight: 600;
    color: var(--c-text-muted);
    margin-bottom: 12px;
}
.rs-desc {
    font-size: 14px;
    color: var(--c-text-muted);
    line-height: 1.8;
    margin-bottom: 16px;
    flex: 1;
}
.rs-keywords {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    margin-bottom: 16px;
}
.rs-keywords span {
    background: rgba(11, 61, 145, 0.06);
    color: var(--c-primary);
    padding: 4px 10px;
    border-radius: 100px;
    font-size: 11px;
    font-weight: 600;
}
.rs-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 700;
    color: var(--c-primary);
    transition: var(--transition);
    margin-top: auto;
}
.rs-card:hover .rs-link {
    color: var(--c-accent);
    gap: 10px;
}
.rs-message {
    margin-top: 40px;
    background: linear-gradient(135deg, #EEF3FF 0%, #F8FAFF 100%);
    border-radius: 14px;
    padding: 24px 32px;
    display: flex;
    align-items: flex-start;
    gap: 14px;
    border: 1px solid var(--c-border);
}
.rs-message-icon {
    font-size: 24px;
    flex-shrink: 0;
    margin-top: 2px;
}
.rs-message-text {
    font-size: 14px;
    color: var(--c-text-muted);
    line-height: 1.8;
}
.rs-message-text strong {
    color: var(--c-text);
}

@media (max-width: 900px) {
	.related-services{
		padding: 60px 0;
	}
	.related-services .section-desc{
		text-align: left;
	}
    .rs-grid {
        grid-template-columns: 1fr;
    }
	.rs-card > a,
	.rs-card > span{
		padding: 24px 24px 22px;
	}
	.rs-card-current > a,
	.rs-card-current > span{
		padding-top: 30px;
	}
	.rs-icon-area {
		margin-bottom: 10px;
	}
	.rs-keywords{
		margin-bottom: 0;
	}
	.rs-tagline{
		font-size: 12px;
	}
	.rs-desc{
		font-size: 14px;
	}
	.rs-link{
		margin-top: 20px;
	}
    .rs-message {
		padding: 14px 20px 20px;
		gap: 8px;
        flex-direction: column;
        text-align: center;
    }
	.rs-message-icon{
		margin-top: 0;
		margin-left: auto;
		margin-right: auto;
	}
	.rs-message-text{
		text-align: left;
	}
	.rs-message-text strong{
		margin-bottom: 8px;
		display: block;
		text-align: center;
	}
	.rs-message-text br{
		display: none;
	}
}


/* ######################################################################################

　CTA　まずは気軽に、ご相談ください。

###################################################################################### */
.cta {
    padding: 100px 0;
    background: var(--c-bg-dark);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.cta::before {
    content: '';
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(232, 85, 58, 0.12) 0%, transparent 60%);
    border-radius: 50%;
}
.cta h2 {
    font-size: 36px;
    font-weight: 900;
    line-height: 1.5;
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}
.cta p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.65);
    margin: 0 auto 40px;
    line-height: 1.8;
    position: relative;
    z-index: 1;
}
.cta .btn-cta-large {
    position: relative;
    z-index: 1;
    font-size: 18px;
    padding: 20px 48px;
}
.cta-note {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
    margin-top: 16px;
    position: relative;
    z-index: 1;
}

@media (max-width: 900px) {
	.cta{
		padding: 60px 0;
	}
	.cta h2{
		font-size: 20px;
	}
	.cta p{
		font-size: 14px;
		margin-bottom: 20px;
	}
}
@media (max-width: 767px) {
	.cta p{
		text-align: left;
	}
}


/* ====================================================
   cta-dual
==================================================== */
.cta-dual {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    max-width: 800px;
    margin: 40px auto 0;
    position: relative;
    z-index: 1;
}
.cta-dual-card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    padding: 36px 24px;
    backdrop-filter: blur(8px);
    text-align: center;
}
.cta-dual-card-dl {
    background: rgba(255, 255, 255, 0.12);
}
.cta-dual-label {
    font-size: 12px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 8px;
    letter-spacing: 1px;
}
.cta-dual-title {
    font-size: 18px;
    font-weight: 800;
    color: white;
    margin-bottom: 10px;
}
.cta-dual-desc {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.7;
    margin-bottom: 24px;
}
.cta-dual-button{
	width: 100%;
	justify-content: center;
}
.btn-dl-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: white;
    color: var(--c-primary);
    padding: 18px 40px;
    border-radius: 100px;
    font-size: 16px;
    font-weight: 700;
    transition: var(--transition);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}
.btn-dl-cta:hover {
    background: #F0F4FA;
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.18);
}
@media (max-width: 900px) {
	.cta-dual{
		display: flex;
		flex-direction: column;
		margin-top: 25px;
	}
	.cta-dual-desc br{
		display: none;
	}
	.cta-dual-card{
		padding: 24px 28px;
	}
	.cta .btn-cta-large{
		padding: 16px;
		font-size: 16px;
	}
}
@media (max-width: 767px) {
	.cta-dual-desc{
		text-align: left;
	}
}


/* ######################################################################################

　FOOTER　フッター

###################################################################################### */
.footer {
    padding: 48px 0 32px;
    background: #06142B;
    color: rgba(255, 255, 255, 0.5);
}
.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}
.footer-logo {
    font-family: var(--font-en);
    font-weight: 800;
    font-size: 18px;
    color: white;
}
.footer-info {
    font-size: 12px;
    line-height: 1.8;
    text-align: right;
}
.footer-links {
    display: flex;
    gap: 24px;
    width: 100%;
    justify-content: center;
    margin-top: 16px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.footer-link{
	list-style: none;
}
.footer-links a {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
    transition: var(--transition);
}
.footer-links a:hover {
    color: white;
}
.footer-copy {
	display: block;
    text-align: center;
    width: 100%;
    font-size: 11px;
    margin-top: 16px;
    color: rgba(255, 255, 255, 0.3);
}

@media (max-width: 900px) {
	.footer-info {
		font-size: 11px;
	}
	.footer-links{
		flex-wrap: wrap;
		row-gap: 5px;
		margin-bottom: 20px;
	}
}



/* ######################################################################################

　資料ダウンロード　モーダル

###################################################################################### */
.dl-modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.dl-modal-overlay.active {
    display: flex;
    opacity: 1;
}
.dl-modal {
    background: white;
    border-radius: 20px;
    padding: 40px;
    max-width: 540px;
    width: 100%;
    position: relative;
    box-shadow: 0 32px 80px rgba(0, 0, 0, 0.2);
    transform: translateY(20px);
    transition: transform 0.3s ease;
    max-height: 90vh;
    overflow-y: auto;
}
.dl-modal-overlay.active .dl-modal {
    transform: translateY(0);
}
.dl-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--c-bg-section);
    border: none;
    font-size: 22px;
    color: var(--c-text-muted);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}
.dl-modal-close:hover {
    background: var(--c-border);
    color: var(--c-text);
}
.dl-modal-header {
    text-align: center;
    margin-bottom: 28px;
}
.dl-modal-icon {
    font-size: 40px;
    margin-bottom: 12px;
}
.dl-modal-title {
    font-size: 20px;
    font-weight: 800;
    color: var(--c-text);
    margin-bottom: 8px;
}
.dl-modal-desc {
    font-size: 14px;
    color: var(--c-text-muted);
    line-height: 1.7;
}
.dl-form-group {
    margin-bottom: 16px;
}
.dl-form-label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--c-text);
    margin-bottom: 6px;
}
.dl-required {
    font-size: 11px;
    color: var(--c-accent);
    font-weight: 700;
    margin-left: 4px;
}
.dl-form-input {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid var(--c-border);
    border-radius: 10px;
    font-size: 15px;
    font-family: var(--font-jp);
    transition: var(--transition);
    background: var(--c-bg);
    color: var(--c-text);
}
.dl-form-input:focus {
    outline: none;
    border-color: var(--c-primary);
    box-shadow: 0 0 0 3px rgba(11, 61, 145, 0.1);
    background: white;
}
.dl-form-input::placeholder {
    color: var(--c-text-light);
}
.dl-form-submit {
    width: 100%;
    padding: 16px;
    background: var(--c-primary);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    font-family: var(--font-jp);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: var(--transition);
    margin-top: 24px;
    box-shadow: 0 4px 16px rgba(11, 61, 145, 0.25);
}
.dl-form-submit:hover {
    background: var(--c-primary-dark);
    transform: translateY(-1px);
}
.dl-form-note {
    font-size: 12px;
    color: var(--c-text-light);
    text-align: center;
    margin-top: 12px;
    line-height: 1.6;
}

@media (max-width: 900px) {
	.dl-modal {
        padding: 28px;
        margin: 10px;
    }
	.dl-modal-icon{
		margin-bottom: 0;
	}
	.dl-modal-desc{
		text-align: left;
	}
	.dl-form-note{
		text-align: left;
		font-size: 11px;
	}
}

/* ######################################################################################

　無料相談を予約する　モーダル

###################################################################################### */
.form-modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.form-modal-overlay.active {
    display: flex;
    opacity: 1;
}
.form-modal {
    background: white;
    border-radius: 20px;
    padding: 40px;
    max-width: 540px;
    width: 100%;
    position: relative;
    box-shadow: 0 32px 80px rgba(0, 0, 0, 0.2);
    transform: translateY(20px);
    transition: transform 0.3s ease;
    max-height: 90vh;
    overflow-y: auto;
}
.form-modal-overlay.active .form-modal {
    transform: translateY(0);
}
.form-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--c-bg-section);
    border: none;
    font-size: 22px;
    color: var(--c-text-muted);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}
.form-modal-close:hover {
    background: var(--c-border);
    color: var(--c-text);
}
.form-modal-header {
    text-align: center;
    margin-bottom: 28px;
}
.form-modal-icon {
    font-size: 40px;
    margin-bottom: 12px;
}
.form-modal-title {
    font-size: 20px;
    font-weight: 800;
    color: var(--c-text);
    margin-bottom: 8px;
}
.form-modal-desc {
    font-size: 14px;
    color: var(--c-text-muted);
    line-height: 1.7;
}
.form-form-group {
    margin-bottom: 16px;
}
.form-form-label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--c-text);
    margin-bottom: 6px;
}
.form-required {
    font-size: 11px;
    color: var(--c-accent);
    font-weight: 700;
    margin-left: 4px;
}
.form-form-input {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid var(--c-border);
    border-radius: 10px;
    font-size: 15px;
    font-family: var(--font-jp);
    transition: var(--transition);
    background: var(--c-bg);
    color: var(--c-text);
}
.form-form-input:focus {
    outline: none;
    border-color: var(--c-primary);
    box-shadow: 0 0 0 3px rgba(11, 61, 145, 0.1);
    background: white;
}
.form-form-input::placeholder {
    color: var(--c-text-light);
}
.form-form-submit {
    width: 100%;
    padding: 16px;
    background: var(--c-primary);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    font-family: var(--font-jp);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: var(--transition);
    margin-top: 24px;
    box-shadow: 0 4px 16px rgba(11, 61, 145, 0.25);
}
.form-form-submit:hover {
    background: var(--c-primary-dark);
    transform: translateY(-1px);
}
.form-form-note {
    font-size: 12px;
    color: var(--c-text-light);
    text-align: center;
    margin-top: 12px;
    line-height: 1.6;
}



@media (max-width: 900px) {
	.form-modal {
        padding: 28px;
        margin: 10px;
    }
	.form-modal-icon{
		margin-bottom: 0;
	}
	.form-modal-desc{
		text-align: left;
	}
	.form-form-note{
		text-align: left;
		font-size: 11px;
	}
}


/* ######################################################################################

　完了画面

###################################################################################### */
.thanks-section {
  padding: 80px 0 100px;
  background:
    radial-gradient(circle at top left, rgba(11, 61, 145, 0.08), transparent 32%),
    linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
  min-height: calc(100vh - 180px);
  display: flex;
  align-items: center;
}
.thanks-card {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid rgba(11, 61, 145, 0.08);
  border-radius: 28px;
  box-shadow: 0 24px 80px rgba(11, 61, 145, 0.08);
  padding: 56px 48px;
  text-align: center;
}
.thanks-icon-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}
.thanks-icon {
  width: 88px;
  height: 88px;
  color: #0B3D91;
  display: flex;
  align-items: center;
  justify-content: center;
}
.thanks-icon svg {
  width: 100%;
  height: 100%;
}
.thanks-title {
  margin: 10px 0 16px;
  font-size: 30px;
  line-height: 1.3;
  font-weight: 700;
  color: #111827;
  letter-spacing: 0.02em;
}
.thanks-lead {
  margin: 0 auto;
  max-width: 620px;
  font-size: 17px;
  line-height: 1.9;
  color: #4b5563;
}
.thanks-info {
  margin: 40px auto 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  text-align: left;
}
.thanks-info-item {
  background: #f8fbff;
  border: 1px solid rgba(11, 61, 145, 0.08);
  border-radius: 18px;
  padding: 22px 22px 20px;
}
.thanks-info-label {
  display: inline-block;
  margin-bottom: 10px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(11, 61, 145, 0.08);
  color: #0B3D91;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.thanks-info-item p {
  margin: 0;
  font-size: 15px;
  line-height: 1.9;
  color: #4b5563;
}
.thanks-actions {
  margin-top: 36px;
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}
.thanks-actions .btn-cta-large,
.thanks-actions .btn-secondary {
  min-width: 220px;
  justify-content: center;
}

@media (max-width: 900px) {
    .thanks-section {
        padding: 70px 0 60px;
        min-height: auto;
    }
    .thanks-card {
        padding: 36px 22px;
        border-radius: 22px;
    }
    .thanks-icon{
        width: 60px;
        height: 60px;
    }
    .thanks-title {
        font-size: 22px;
    }
    .thanks-lead {
        font-size: 14px;
        line-height: 1.8;
    }
    .thanks-info {
        grid-template-columns: 1fr;
        gap: 14px;
        margin-top: 28px;
    }
    .thanks-info-item {
        padding: 18px 16px;
        border-radius: 16px;
    }
    .thanks-actions {
        margin-top: 28px;
        flex-direction: column;
    }
    .thanks-actions .btn-cta-large,
    .thanks-actions .btn-secondary {
        width: 100%;
        min-width: 0;
        font-size: 14px;
    }
}