* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Hiragino Kaku Gothic Pro', 'ヒラギノ角ゴ Pro', 'Yu Gothic', YuGothic, 'メイリオ', Meiryo, sans-serif;
    line-height: 1.8;
    color: #333;
}

/* 画像背景用の共通スタイル */
.bg-image {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: scroll;
    position: relative;
}

.bg-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.9);
    z-index: 0;
}

.bg-image > * {
    position: relative;
    z-index: 1;
}

/* ヘッダー */
header {
    background: white;
    color: white;
    padding: 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.header-top {
    background: linear-gradient(135deg, #10b981 0%, #34d399 100%);
    padding: 0.5rem 0;
    text-align: right;
    font-size: 0.9rem;
}

.header-top .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.header-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #065f46 0%, #047857 50%, #059669 100%);
}

.logo-area {
    display: flex;
    flex-direction: column;
    color: white;
}

.logo {
    font-size: 1.8rem;
    font-weight: bold;
    letter-spacing: 2px;
    color: white;
}

.logo-sub {
    font-size: 0.85rem;
    opacity: 0.9;
    margin-top: 0.2rem;
    color: #86efac;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    z-index: 1001;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: white;
    transition: all 0.3s;
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

nav ul {
    display: flex;
    list-style: none;
    gap: 0;
}

nav li {
    position: relative;
}

nav a {
    color: white;
    text-decoration: none;
    padding: 1rem 1.5rem;
    display: block;
    transition: all 0.3s;
    border-left: 1px solid rgba(255,255,255,0.2);
    background: transparent;
}

nav li:last-child a {
    border-right: 1px solid rgba(255,255,255,0.2);
}

nav a:hover {
    background: rgba(16, 185, 129, 0.3);
    transform: translateY(-2px);
}

/* メインビジュアル */
.hero {
    background: linear-gradient(135deg, rgba(6, 95, 70, 0.9), rgba(5, 150, 105, 0.85)), 
                url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><defs><linearGradient id="grad1" x1="0%" y1="0%" x2="100%" y2="100%"><stop offset="0%" style="stop-color:%23047857;stop-opacity:1" /><stop offset="100%" style="stop-color:%2310b981;stop-opacity:1" /></linearGradient></defs><rect fill="url(%23grad1)" width="1200" height="600"/><circle cx="200" cy="100" r="150" fill="%2334d399" opacity="0.2"/><circle cx="900" cy="400" r="200" fill="%235eead4" opacity="0.15"/><path fill="%23fff" opacity="0.05" d="M0 300L50 283.3C100 266.7 200 233.3 300 233.3C400 233.3 500 266.7 600 283.3C700 300 800 300 900 283.3C1000 266.7 1100 233.3 1150 216.7L1200 200V600H0V300Z"/></svg>');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 200px 2rem 120px;
    margin-top: 110px;
    position: relative;
    overflow: hidden;
}

/* ヒーロー画像用のカスタム背景 */
.hero.bg-image {
    background-size: cover;
    background-position: center;
}

.hero.bg-image::before {
    background: rgba(6, 95, 70, 0.85);
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(52, 211, 153, 0.3) 0%, transparent 50%);
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.5);
    font-weight: 700;
    letter-spacing: 2px;
}

.hero-catchphrase {
    font-size: 4.5rem !important;
    margin-bottom: 2.5rem;
    font-weight: 900;
    letter-spacing: 2px;
    line-height: 1.3;
    color: white;
    text-shadow: 
        0 0 20px #fbbf24,
        0 0 40px #f59e0b,
        0 0 60px #fbbf24,
        5px 5px 10px rgba(0,0,0,0.9);
    -webkit-text-stroke: 3px #f59e0b;
    paint-order: stroke fill;
}

.hero p {
    font-size: 1.4rem;
    margin-bottom: 2rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-badges {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.badge {
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
    padding: 1rem 2rem;
    border-radius: 50px;
    border: 2px solid rgba(255,255,255,0.3);
    font-weight: bold;
}

/* 求人強調バナー */
.recruit-banner {
    background: linear-gradient(135deg, #059669 0%, #10b981 50%, #34d399 100%);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
    padding: 4rem 2rem;
    text-align: center;
    box-shadow: 0 10px 40px rgba(5, 150, 105, 0.4);
    position: relative;
    overflow: hidden;
}

.recruit-banner.bg-image::before {
    background: rgba(5, 150, 105, 0.9);
}

.recruit-banner::before {
    content: '🌟';
    position: absolute;
    font-size: 15rem;
    opacity: 0.1;
    top: -3rem;
    right: -3rem;
    animation: rotate 20s linear infinite;
    z-index: 0;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.recruit-banner h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
    color: #065f46;
    text-shadow: 
        2px 2px 0px #fff,
        -2px -2px 0px #fff,
        2px -2px 0px #fff,
        -2px 2px 0px #fff,
        3px 3px 6px rgba(0,0,0,0.3);
    font-weight: 900;
}

.recruit-banner p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    position: relative;
    z-index: 1;
    color: #064e3b;
    text-shadow: 
        1px 1px 0px #fff,
        -1px -1px 0px #fff,
        1px -1px 0px #fff,
        -1px 1px 0px #fff,
        2px 2px 4px rgba(0,0,0,0.2);
    font-weight: 700;
}

.btn-container {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: white;
    color: #047857;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.2rem;
    transition: all 0.3s;
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
    position: relative;
    z-index: 1;
}

.btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}

.btn-secondary {
    background: #065f46;
    color: white;
}

/* セクション共通 */
.section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 5rem 2rem;
}

.section-title {
    text-align: center;
    font-size: 2.8rem;
    color: #047857;
    margin-bottom: 1rem;
    position: relative;
    padding-bottom: 1.5rem;
}

.section-subtitle {
    text-align: center;
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 5px;
    background: linear-gradient(90deg, #059669, #10b981, #34d399);
    border-radius: 3px;
}

/* 背景色の異なるセクション */
.section-white {
    background: white;
}

.section-light {
    background: linear-gradient(180deg, #f0fdf4 0%, #dcfce7 100%);
}

.section-light.bg-image::before {
    background: rgba(240, 253, 244, 0.95);
}

.section-accent {
    background: linear-gradient(135deg, #059669 0%, #10b981 100%);
    color: white;
}

.section-accent.bg-image::before {
    background: rgba(5, 150, 105, 0.9);
}

.section-accent .section-title {
    color: white;
}

.section-accent .section-title::after {
    background: linear-gradient(90deg, #34d399, #86efac);
}

/* 求人の魅力 */
.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.feature-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s;
    border-top: 5px solid;
    border-image: linear-gradient(90deg, #059669, #10b981) 1;
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.05) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s;
    z-index: 0;
}

.feature-card.has-bg-image::before {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.92) 0%, rgba(240, 253, 244, 0.95) 100%);
    opacity: 1;
}

.feature-card > * {
    position: relative;
    z-index: 1;
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(16, 185, 129, 0.3);
}

.feature-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    display: inline-block;
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.feature-card:nth-child(1) { border-image: linear-gradient(90deg, #059669, #10b981) 1; }
.feature-card:nth-child(2) { border-image: linear-gradient(90deg, #047857, #059669) 1; }
.feature-card:nth-child(3) { border-image: linear-gradient(90deg, #10b981, #34d399) 1; }
.feature-card:nth-child(4) { border-image: linear-gradient(90deg, #14b8a6, #2dd4bf) 1; }
.feature-card:nth-child(5) { border-image: linear-gradient(90deg, #34d399, #6ee7b7) 1; }
.feature-card:nth-child(6) { border-image: linear-gradient(90deg, #065f46, #047857) 1; }

.feature-card h3 {
    color: #047857;
    font-size: 1.6rem;
    margin-bottom: 1rem;
}

.feature-card p {
    color: #555;
    line-height: 1.8;
}

/* 幸せメッセージボックス */
.happiness-message {
    background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
    border-left: 5px solid #10b981;
    padding: 2rem;
    border-radius: 10px;
    margin: 3rem 0;
    box-shadow: 0 5px 20px rgba(16, 185, 129, 0.1);
}

.happiness-message p {
    color: #065f46;
    font-size: 1.15rem;
    line-height: 2;
    margin-bottom: 1rem;
}

.happiness-message p:last-child {
    margin-bottom: 0;
}

/* 資格取得ステップ */
.step-container {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    gap: 3rem;
    position: relative;
}

.step-container::before {
    content: '';
    position: absolute;
    left: 40px;
    top: 80px;
    bottom: 80px;
    width: 4px;
    background: linear-gradient(180deg, #059669, #10b981, #34d399, #14b8a6);
    border-radius: 2px;
}

.step {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    position: relative;
    transition: all 0.3s;
}

.step:hover {
    transform: translateX(10px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.2);
}

.step-number {
    background: linear-gradient(135deg, #059669, #10b981);
    color: white;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    font-weight: bold;
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(5, 150, 105, 0.4);
    position: relative;
    z-index: 1;
}

.step:nth-child(2) .step-number {
    background: linear-gradient(135deg, #047857, #059669);
}

.step:nth-child(3) .step-number {
    background: linear-gradient(135deg, #10b981, #34d399);
}

.step:nth-child(4) .step-number {
    background: linear-gradient(135deg, #065f46, #047857);
}

.step-content h3 {
    color: #047857;
    font-size: 1.8rem;
    margin-bottom: 0.8rem;
}

.step-content p {
    color: #555;
    line-height: 1.9;
}

/* サービス紹介 */
.services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
}

.service-card {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    text-align: center;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #059669, #10b981);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(16, 185, 129, 0.25);
}

.service-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.service-card h3 {
    color: #047857;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.service-card p {
    color: #666;
}

/* 数字で見る実績 */
/* 顧客満足度セクション */
.satisfaction-highlight {
    margin-top: 3rem;
}

.satisfaction-main {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    padding: 4rem 3rem;
    border-radius: 25px;
    border: 3px solid rgba(255,255,255,0.3);
    margin-bottom: 3rem;
}

.satisfaction-number {
    font-size: 8rem;
    font-weight: 900;
    color: #86efac;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.3);
    line-height: 1;
}

.satisfaction-text {
    text-align: left;
}

.satisfaction-text h3 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: white;
}

.satisfaction-text p {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.9);
}

.satisfaction-points {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.satisfaction-point {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    padding: 2.5rem;
    border-radius: 20px;
    border: 2px solid rgba(255,255,255,0.2);
    transition: all 0.3s;
    text-align: center;
}

.satisfaction-point:hover {
    transform: translateY(-5px);
    background: rgba(255,255,255,0.2);
    border-color: rgba(255,255,255,0.4);
}

.point-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.satisfaction-point h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #86efac;
}

.satisfaction-point p {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.85);
    line-height: 1.6;
}

/* 会社情報 */
.info-grid {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    padding: 3.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

.info-row {
    display: grid;
    grid-template-columns: 180px 1fr;
    padding: 1.5rem 0;
    border-bottom: 2px solid #dcfce7;
    align-items: start;
}

.info-row:last-child {
    border-bottom: none;
}

.info-label {
    font-weight: bold;
    color: #047857;
    font-size: 1.1rem;
}

.info-value {
    color: #555;
    line-height: 1.8;
}

/* お客様の声 */
.testimonials {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    position: relative;
}

.testimonial-card::before {
    content: '"';
    font-size: 5rem;
    color: #dcfce7;
    position: absolute;
    top: 1rem;
    left: 1.5rem;
    font-family: serif;
}

.testimonial-text {
    position: relative;
    z-index: 1;
    color: #555;
    line-height: 1.9;
    margin-bottom: 1.5rem;
}

.testimonial-author {
    font-weight: bold;
    color: #047857;
    text-align: right;
}

/* フッター */
footer {
    background: linear-gradient(135deg, #065f46 0%, #047857 100%);
    color: white;
    padding: 3rem 2rem 1.5rem;
}

footer.bg-image::before {
    background: rgba(6, 95, 70, 0.95);
}

/* お問い合わせフォーム */
.contact-container {
    max-width: 1200px;
    margin: 3rem auto 0;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
}

.contact-info {
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    height: fit-content;
}

.contact-info h3 {
    color: #047857;
    font-size: 1.8rem;
    margin-bottom: 2rem;
}

.contact-method {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #34d399;
}

.contact-method:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.contact-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.contact-method h4 {
    color: #047857;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.contact-detail {
    color: #065f46;
    font-weight: bold;
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
}

.contact-time {
    color: #666;
    font-size: 0.9rem;
}

.contact-form-wrapper {
    background: white;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

.contact-form-wrapper h3 {
    color: #047857;
    font-size: 1.8rem;
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group label {
    display: block;
    color: #047857;
    font-weight: bold;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.required {
    color: #dc2626;
    font-size: 0.85rem;
    background: #fee2e2;
    padding: 0.2rem 0.5rem;
    border-radius: 3px;
    margin-left: 0.5rem;
}

.optional {
    color: #666;
    font-size: 0.85rem;
    background: #f3f4f6;
    padding: 0.2rem 0.5rem;
    border-radius: 3px;
    margin-left: 0.5rem;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group input[type="number"],
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 2px solid #d1fae5;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #10b981;
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.radio-group {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.radio-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    padding: 0.6rem 1rem;
    border: 2px solid #d1fae5;
    border-radius: 8px;
    transition: all 0.3s;
}

.radio-label:hover {
    border-color: #10b981;
    background: #f0fdf4;
}

.radio-label input[type="radio"] {
    margin-right: 0.5rem;
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.radio-label input[type="radio"]:checked + span {
    color: #047857;
    font-weight: bold;
}

.checkbox-group {
    margin-top: 2rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-weight: normal;
}

.checkbox-label input[type="checkbox"] {
    margin-right: 0.8rem;
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.privacy-link {
    color: #047857;
    text-decoration: underline;
}

.form-submit {
    margin-top: 2rem;
    text-align: center;
}

.submit-btn {
    background: linear-gradient(135deg, #059669, #10b981);
    color: white;
    border: none;
    padding: 1.2rem 4rem;
    font-size: 1.2rem;
    font-weight: bold;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 6px 20px rgba(5, 150, 105, 0.3);
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(5, 150, 105, 0.4);
}

.submit-btn:active {
    transform: translateY(-1px);
}

/* 送信完了メッセージ */
.success-message {
    background: linear-gradient(135deg, #d1fae5, #a7f3d0);
    border: 2px solid #10b981;
    color: #065f46;
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
    margin-bottom: 2rem;
    display: none;
}

.success-message.show {
    display: block;
    animation: slideDown 0.5s ease;
}

.success-message h3 {
    color: #065f46;
    margin-bottom: 0.5rem;
}

/* エラーメッセージ */
.error-message {
    background: linear-gradient(135deg, #fee2e2, #fecaca);
    border: 2px solid #dc2626;
    color: #991b1b;
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
    margin-bottom: 2rem;
    display: none;
}

.error-message.show {
    display: block;
    animation: slideDown 0.5s ease;
}

.error-message h3 {
    color: #991b1b;
    margin-bottom: 0.5rem;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* フッター */
footer {
    background: linear-gradient(135deg, #065f46 0%, #047857 100%);
    color: white;
    padding: 3rem 2rem 1.5rem;
}

footer.bg-image::before {
    background: rgba(6, 95, 70, 0.95);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    margin-bottom: 1rem;
    color: #86efac;
}

.footer-section ul {
    list-style: none;
}

.footer-section a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    display: block;
    padding: 0.3rem 0;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.2);
}

/* レスポンシブ */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: linear-gradient(180deg, #065f46 0%, #047857 100%);
        transition: right 0.3s ease;
        padding-top: 80px;
        box-shadow: -5px 0 15px rgba(0,0,0,0.3);
    }

    nav.active {
        right: 0;
    }

    nav ul {
        flex-direction: column;
        gap: 0;
    }

    nav li {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    nav a {
        padding: 1.2rem 2rem;
        border: none !important;
    }

    .hero {
        padding: 150px 1.5rem 80px;
        margin-top: 110px;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .hero-catchphrase {
        font-size: 2.5rem !important;
        letter-spacing: 1px;
        -webkit-text-stroke: 2px #f59e0b;
    }

    .hero p {
        font-size: 1.1rem;
    }

    .hero-badges {
        flex-direction: column;
        align-items: center;
    }

    .recruit-banner h2 {
        font-size: 2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .step {
        flex-direction: column;
        text-align: center;
    }

    .step-container::before {
        display: none;
    }

    .info-row {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }

    .btn-container {
        flex-direction: column;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .contact-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .radio-group {
        flex-direction: column;
    }

    .contact-form-wrapper {
        padding: 2rem 1.5rem;
    }

    .satisfaction-main {
        flex-direction: column;
        text-align: center;
        padding: 3rem 2rem;
        gap: 2rem;
    }

    .satisfaction-number {
        font-size: 5rem;
    }

    .satisfaction-text {
        text-align: center;
    }

    .satisfaction-text h3 {
        font-size: 1.8rem;
    }

    .satisfaction-text p {
        font-size: 1rem;
    }

    .satisfaction-points {
        grid-template-columns: 1fr;
    }
}
