:root {
    --primary-color: #2D5A27;
    --primary-light: #4A7C44;
    --accent-color: #D4AF37;
    --bg-color: #F8FAF8;
    --text-color: #2C3E50;
    --text-muted: #66788A;
    --white: #ffffff;
    --gradient-primary: linear-gradient(135deg, #2D5A27 0%, #1A3517 100%);
    --gradient-accent: linear-gradient(135deg, #D4AF37 0%, #B8962F 100%);
    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.05);
    --shadow-medium: 0 15px 40px rgba(0, 0, 0, 0.1);
    --transition-base: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Noto Sans JP', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.8;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.container--narrow {
    max-width: 900px;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding: 15px 0;
}

.header__container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 40px;
}

.logo {
    display: flex;
    align-items: center;
}

.logo__img {
    height: 45px;
    width: auto;
}

.nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav__tel {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 1.3rem;
    color: var(--primary-color);
    text-decoration: none;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 30px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
    position: relative;
}

.hamburger__line {
    width: 100%;
    height: 3px;
    background-color: var(--primary-color);
    border-radius: 3px;
    transition: var(--transition-base);
    position: absolute;
}

.hamburger__line:nth-child(1) {
    top: 6px;
}

.hamburger__line:nth-child(2) {
    top: 50%;
    transform: translateY(-50%);
}

.hamburger__line:nth-child(3) {
    bottom: 6px;
}

.hamburger[aria-expanded="true"] .hamburger__line:nth-child(1) {
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
}

.hamburger[aria-expanded="true"] .hamburger__line:nth-child(2) {
    opacity: 0;
}

.hamburger[aria-expanded="true"] .hamburger__line:nth-child(3) {
    bottom: auto;
    top: 50%;
    transform: translateY(-50%) rotate(-45deg);
}

.nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 400px;
    height: 100vh;
    background: var(--white);
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
    transition: right 0.3s ease;
    z-index: 1000;
    overflow-y: auto;
    padding-top: 50px;
}

.nav-menu[aria-hidden="false"] {
    right: 0;
}

.nav-menu__list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.nav-menu__link {
    display: block;
    padding: 10px 40px;
    color: var(--text-color);
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: var(--transition-base);
}

.nav-menu__link:hover {
    background-color: rgba(45, 90, 39, 0.05);
    color: var(--primary-color);
    padding-left: 50px;
}

/* Overlay when menu is open */
.nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    background: #000;
    color: var(--white);
    padding-top: 80px;
    scroll-margin-top: 0;
}

.hero__image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
}

.hero__image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 30%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
}

.hero__content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin-left: 10%;
    padding: 0 20px;
}

.hero__content .fade-in:nth-child(1) {
    transition-delay: 0.2s;
}

.hero__content .fade-in:nth-child(2) {
    transition-delay: 0.4s;
}

.hero__content .fade-in:nth-child(3) {
    transition-delay: 0.6s;
}

.hero__content .fade-in:nth-child(4) {
    transition-delay: 0.8s;
}

.hero__title {
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero__title .highlight {
    color: var(--accent-color);
}

.hero__sub-phrase {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 40px;
    opacity: 0.9;
    letter-spacing: 0.05em;
    border-left: 4px solid var(--accent-color);
    padding-left: 20px;
}

.hero-points {
    display: flex;
    gap: 20px;
    margin-bottom: 50px;
}

.hero-point {
    width: 150px;
    height: 150px;
    background: rgba(45, 90, 39, 0.9);
    backdrop-filter: blur(10px);
    border: 2px solid var(--accent-color);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.hero-point__icon {
    color: var(--accent-color);
    margin-bottom: 5px;
    transform: scale(1.2);
}

.hero-point__label {
    font-size: 1.2rem;
    font-weight: 800;
    line-height: 1.3;
    color: var(--white);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 18px 45px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 50px;
    transition: var(--transition-base);
    text-align: center;
    cursor: pointer;
    border: none;
}

.btn--primary {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: 0 10px 20px rgba(45, 90, 39, 0.3);
}

.btn--primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(45, 90, 39, 0.4);
}

.btn--header {
    padding: 10px 25px;
    font-size: 0.9rem;
    background: var(--primary-color);
    color: var(--white);
}

.btn--large {
    font-size: 1.2rem;
    padding: 22px 60px;
}

.btn--line {
    background: #06C755;
    color: var(--white);
    box-shadow: 0 10px 20px rgba(6, 199, 85, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.btn--line:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(6, 199, 85, 0.4);
    background: #05b34c;
}

.btn--line__icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

/* Sections */
.section {
    padding: 120px 0;
    scroll-margin-top: 100px;
}

.section__title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    text-align: center;
    margin-bottom: 60px;
    line-height: 1.4;
}

.section__lead {
    font-size: 1rem;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
    color: var(--text-muted);
}

.message-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 50px;
}

.message-gallery__item {
    aspect-ratio: 4 / 3;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-base);
    position: relative;
}

.message-gallery__item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.message-gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.message-gallery__item:hover img {
    transform: scale(1.1);
}

.message-gallery__caption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgb(0 0 0 / 0%);
    color: var(--white);
    padding: 5px;
    font-size: 0.85rem;
    font-weight: 500;
    line-height: 1.5;
    transition: var(--transition-base);
    backdrop-filter: blur(4px);
}

.message-gallery__item:hover .message-gallery__caption {
    background: rgba(45, 90, 39, 0.8);
}

/* Empathy Card */
.empathy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.empathy-card {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: var(--transition-base);
}

.empathy-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-medium);
}

.empathy-card__icon {
    font-family: 'Outfit', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: rgba(45, 90, 39, 0.1);
    /* margin-bottom: 20px; */
}

.empathy-card__text {
    font-size: 1.2rem;
    font-weight: 700;
}

/* Features */
.section--features {
    background: #f1f5f1;
}

.features-header {
    text-align: center;
    margin-bottom: 80px;
}

.features-header__title {
    font-size: 2.5rem;
    font-weight: 800;
    font-size: 1.6rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.feature-item {
    background: var(--white);
    padding: 50px;
    border-radius: 24px;
    position: relative;
    overflow: hidden;
    transition: var(--transition-base);
}

.feature-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-medium);
}

.feature-item__icon {
    color: var(--primary-color);
    /* margin-bottom: 30px; */
}

.feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 100%;
    background: var(--accent-color);
}

.feature-item__label {
    text-transform: uppercase;
    font-weight: 800;
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    color: var(--accent-color);
    margin-bottom: 15px;
}

.feature-item__title {
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.feature-item__desc {
    color: var(--text-muted);
}

/* Job Grid */
.job-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 60px;
}

@media (max-width: 768px) {
    .job-grid {
        display: block;
    }

    .fade-in.visible {
        margin-bottom: 1.2rem;
    }
}

.job-card {
    background: var(--white);
    border-radius: 24px;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: var(--transition-base);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.job-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.job-card__image {
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
}

.job-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.job-card:hover .job-card__image img {
    transform: scale(1.1);
}

.job-card__content {
    padding: 30px;
}

.job-card__icon {
    /* margin-bottom: 15px; */
    display: inline;
}

.job-card__number {
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--accent-color);
    opacity: 0.5;
}

.job-card__title {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 15px;
    display: inline;
    margin-left: .6rem;
}

.job-card__text {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.8;
}

/* Vision */
.vision-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.vision-card {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 60px;
    border-radius: 30px;
    transition: var(--transition-base);
}

.vision-card:hover {
    transform: scale(1.02);
}

.vision-card__title {
    font-size: 1.8rem;
    margin-bottom: 20px;
    font-weight: 800;
}

/* Mid CTA */
.section--mid-cta {
    background: #f1f5f1;
    padding: 80px 0;
}

.mid-cta-box {
    background: var(--white);
    padding: 60px;
    border-radius: 40px;
    box-shadow: var(--shadow-medium);
    text-align: center;
    border: 2px solid var(--primary-color);
}

.mid-cta-box__title {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.mid-cta-box__text {
    font-size: 1.1rem;
    margin-bottom: 40px;
    color: var(--text-muted);
}

.mid-cta-actions {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
}

.mid-cta-tel {
    text-decoration: none;
    text-align: left;
    transition: var(--transition-base);
}

.mid-cta-tel:hover {
    opacity: 0.8;
}

.mid-cta-tel__label {
    display: block;
    font-size: 0.9rem;
    font-weight: 800;
    color: var(--text-muted);
}

.mid-cta-tel__number {
    display: block;
    font-family: 'Outfit', sans-serif;
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1.1;
}

.mid-cta-note {
    margin-top: 20px;
    font-size: 0.85rem;
    color: var(--text-muted);
    opacity: 0.8;
}

/* CEO Message */
.section--ceo {
    background-color: #1a2a18;
    background-image:
        linear-gradient(rgba(26, 42, 24, 0.9), rgba(26, 42, 24, 0.9)),
        url('https://jonan-zoen.com/about/img/company_1.jpg');
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
    color: var(--white);
}

.ceo-box {
    display: flex;
    gap: 60px;
    align-items: center;
    padding: 80px 0;
}

.ceo-visual {
    flex-shrink: 0;
    width: 380px;
    position: relative;
}

.ceo-visual img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 20px 20px 0 rgba(212, 175, 55, 0.2);
    display: block;
}

.ceo-content {
    flex: 1;
}

.ceo-label {
    font-family: 'Outfit', sans-serif;
    color: var(--accent-color);
    letter-spacing: 0.3em;
    font-weight: 800;
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.ceo-box__title {
    font-size: clamp(2rem, 5vw, 3.2rem);
    line-height: 1.3;
    margin-bottom: 50px;
    font-weight: 900;
}

.ceo-text {
    font-size: 1.15rem;
    line-height: 2;
    margin-bottom: 60px;
}

.ceo-text p {
    margin-bottom: 30px;
}

.ceo-signature {
    text-align: right;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 30px;
}

.ceo-signature__pos {
    font-size: 0.9rem;
    color: var(--accent-color);
    margin-bottom: 5px;
}

.ceo-signature__name {
    font-size: 1.8rem;
    font-weight: 800;
    font-family: 'Noto Sans JP', serif;
}

/* Schedule */
.section--schedule {
    background-color: #f1f5f1;
}

.schedule-timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    padding-left: 40px;
}

.schedule-timeline::before {
    content: '';
    position: absolute;
    left: 7px;
    top: 0;
    width: 2px;
    height: 100%;
    background: var(--primary-color);
    opacity: 0.2;
}

.schedule-item {
    position: relative;
    margin-bottom: 40px;
}

.schedule-item:last-child {
    margin-bottom: 0;
}

.schedule-item::before {
    content: '';
    position: absolute;
    left: -40px;
    top: 5px;
    width: 16px;
    height: 16px;
    background: var(--primary-color);
    border: 4px solid var(--white);
    border-radius: 50%;
    z-index: 1;
}

.schedule-item__time {
    font-family: 'Outfit', sans-serif;
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.schedule-item__content {
    background: var(--white);
    padding: 30px;
    border-radius: 20px;
    box-shadow: var(--shadow-soft);
}

.schedule-item__title {
    font-size: 1.15rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.schedule-item__desc {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Voices */
.section--voices {
    background-color: var(--white);
}

.voices-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
}

.voice-card {
    background: var(--bg-color);
    padding: 50px;
    border-radius: 30px;
    position: relative;
}

.voice-card::after {
    content: '”';
    position: absolute;
    top: 20px;
    right: 40px;
    font-size: 8rem;
    font-family: 'Outfit', sans-serif;
    color: rgba(45, 90, 39, 0.05);
    line-height: 1;
}

.voice-card__header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
}

.voice-card__avatar {
    flex-shrink: 0;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--white);
    box-shadow: var(--shadow-soft);
}

.voice-card__avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.voice-card__info {
    display: flex;
    flex-direction: column;
}

.voice-card__name {
    font-weight: 800;
    color: var(--primary-color);
    font-size: 1.1rem;
}

.voice-card__age {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.voice-card__title {
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.4;
    color: var(--text-color);
}

.voice-card__text {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.8;
}

.voice-card__points {
    margin-top: 25px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.02);
}

.voice-card__point {
    margin-bottom: 15px;
}

.voice-card__point:last-child {
    margin-bottom: 0;
}

.voice-card__point-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 800;
    color: var(--primary-color);
    letter-spacing: 0.05em;
    margin-bottom: 6px;
    opacity: 0.8;
}

.voice-card__point-text {
    display: block;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-color);
    line-height: 1.4;
    position: relative;
    padding-left: 18px;
}

.voice-card__point-text::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 4px;
    height: 4px;
    background: var(--accent-color);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--accent-color);
}

/* Q&A */
.section--qa {
    background-color: #fcfdfc;
}

.qa-list {
    max-width: 900px;
    margin: 0 auto;
}

.qa-item {
    background: var(--white);
    border-radius: 16px;
    margin-bottom: 20px;
    box-shadow: var(--shadow-soft);
    overflow: hidden;
}

.qa-item__question,
.qa-item__answer {
    padding: 30px 40px;
    display: flex;
    gap: 25px;
}

.qa-item__question {
    background: #fff;
    border-bottom: 1px solid #f0f0f0;
}

.qa-item__answer {
    background: #f9faf9;
    color: var(--text-muted);
}

.qa-item__q,
.qa-item__a {
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    line-height: 1;
}

.qa-item__q {
    color: var(--accent-color);
}

.qa-item__a {
    color: var(--primary-color);
}

.qa-item__question p {
    font-weight: 700;
    font-size: 1.15rem;
}

/* Company Table */
.company-table {
    max-width: 800px;
    margin: 0 auto;
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

.company-table__row {
    display: flex;
    border-bottom: 1px solid #eee;
}

.company-table__row:last-child {
    border-bottom: none;
}

.company-table__label {
    width: 200px;
    padding: 30px;
    background: #fcfdfc;
    font-weight: 700;
    color: var(--primary-color);
    border-right: 1px solid #eee;
}

.company-table__value {
    flex: 1;
    padding: 30px;
}

/* CTA */
.cta-box {
    background: #111;
    background-image: radial-gradient(circle at 20% 150%, rgba(45, 90, 39, 0.4) 0%, transparent 50%),
        radial-gradient(circle at 80% -50%, rgba(212, 175, 55, 0.2) 0%, transparent 50%);
    color: var(--white);
    padding: 80px 60px;
    text-align: center;
    border-radius: 40px;
}

.cta-box__title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    margin-bottom: 20px;
}

.cta-box__text {
    font-size: 1.1rem;
    opacity: 0.8;
    margin-bottom: 50px;
}

.cta-line {
    margin-bottom: 30px;
}

.cta-line__note {
    font-size: 0.95rem;
    margin-top: 15px;
    color: rgba(255, 255, 255, 0.7);
}

.cta-line__note strong {
    color: #06C755;
    background: rgba(255, 255, 255, 0.1);
    padding: 2px 6px;
    border-radius: 4px;
}

.cta-tel {
    margin-bottom: 40px;
}

.btn--tel {
    background: var(--gradient-accent);
    color: #000;
    padding: 20px 50px;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    border-radius: 15px;
    text-decoration: none;
    transition: var(--transition-base);
}

.btn--tel:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.3);
}

.btn--tel__label {
    font-size: 0.9rem;
    font-weight: 800;
    margin-bottom: 5px;
}

.btn--tel__number {
    font-family: 'Outfit', sans-serif;
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1;
}

.cta-tel__note {
    font-size: 0.9rem;
    opacity: 0.7;
    margin-top: 15px;
}

.cta-divider {
    display: flex;
    align-items: center;
    margin: 40px 0;
    opacity: 0.3;
}

.cta-divider::before,
.cta-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: white;
}

.cta-divider span {
    padding: 0 20px;
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 1.2rem;
}

/* Form Styles */
.contact-form {
    text-align: left;
    max-width: 700px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 25px;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-label {
    display: block;
    font-weight: 700;
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.required {
    color: var(--accent-color);
    margin-left: 5px;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: var(--white);
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition-base);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--accent-color);
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.1);
}

.form-textarea {
    height: 120px;
    resize: vertical;
}

.form-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='white' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: calc(100% - 20px) center;
}

.form-select option {
    background: #222;
    color: white;
}

.form-submit {
    text-align: center;
    margin-top: 40px;
}

/* Footer */
.footer {
    padding: 80px 0;
    background: #f8f8f8;
    text-align: center;
}

.footer__logo {
    margin-bottom: 20px;
}

.footer__logo-img {
    height: 50px;
    width: auto;
}

.footer__address {
    color: var(--text-muted);
    margin-bottom: 20px;
}

.footer__copy {
    font-size: 0.85rem;
    color: #999;
}

/* Floating Banner */
.float-banner {
    position: fixed;
    bottom: 40px;
    right: 40px;
    z-index: 2000;
    text-decoration: none;
    transition: var(--transition-base);
}

.float-banner__content {
    background: var(--gradient-accent);
    padding: 15px 30px;
    border-radius: 60px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.4);
    border: 2px solid var(--white);
    animation: float-pulse 2s infinite ease-in-out;
}

.float-banner__content.btn--line {
    background: #06C755;
    box-shadow: 0 15px 40px rgba(6, 199, 85, 0.5);
    animation: float-pulse-line 2s infinite ease-in-out;
}

@keyframes float-pulse-line {
    0% {
        box-shadow: 0 15px 40px rgba(6, 199, 85, 0.4);
    }

    50% {
        box-shadow: 0 15px 60px rgba(6, 199, 85, 0.7);
    }

    100% {
        box-shadow: 0 15px 40px rgba(6, 199, 85, 0.4);
    }
}

.float-banner:hover {
    transform: scale(1.05) translateY(-5px);
}

.float-banner__icon {
    background: rgba(0, 0, 0, 0.1);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
}

.float-banner__content.btn--line .float-banner__text,
.float-banner__content.btn--line .float-banner__arrow {
    color: #fff;
}

.float-banner__text {
    color: #000;
}

.float-banner__label {
    display: block;
    font-size: 1rem;
    font-weight: 800;
    line-height: 1;
    /* margin-bottom: 20px; */
}

.float-banner__main {
    display: block;
    font-size: 1.3rem;
    font-weight: 900;
    letter-spacing: 0.02em;
}

.float-banner__arrow {
    color: #000;
    /* opacity: 0.5; */
}

@keyframes float-pulse {
    0% {
        box-shadow: 0 15px 40px rgba(212, 175, 55, 0.4);
    }

    50% {
        box-shadow: 0 15px 60px rgba(212, 175, 55, 0.7);
    }

    100% {
        box-shadow: 0 15px 40px rgba(212, 175, 55, 0.4);
    }
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.highlight {
    color: var(--accent-color);
}

/* Responsive */
@media (max-width: 768px) {
    .header__container {
        padding: 0 20px;
    }

    .nav {
        gap: 15px;
    }

    .nav__tel {
        display: none;
        /* Hide in header on mobile to save space, rely on CTA */
    }

    .hamburger {
        display: flex;
    }

    .btn--header {
        display: flex;
        padding: 8px 20px;
        font-size: 0.85rem;
        gap: 8px;
    }

    .btn--header .btn--line__icon {
        width: 20px;
        height: 20px;
    }

    .nav {
        gap: 10px;
    }

    .hero {
        height: auto;
        min-height: 100vh;
        padding: 120px 0 80px;
    }

    .hero__content {
        margin-left: 0;
        text-align: center;
        width: 100%;
    }

    .hero__title {
        font-size: 3rem;
        FONT-VARIANT: JIS83;
    }

    .hero__sub-phrase {
        font-size: 1.1rem;
        margin-bottom: 30px;
    }

    .hero-points {
        justify-content: center;
        gap: 10px;
    }

    .hero-point {
        width: 120px;
        height: 120px;
    }

    .hero-point__label {
        font-size: 1rem;
    }

    .section {
        padding: 60px 0;
    }

    .section__title {
        margin-bottom: 40px;
        font-size: 1.6rem;
    }

    .empathy-grid,
    .features-grid,
    .vision-grid,
    .voices-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .feature-item,
    .voice-card,
    .job-content,
    .vision-card {
        padding: 30px 20px;
    }

    /* Mid CTA Mobile */
    .mid-cta-box {
        padding: 40px 20px;
    }

    .mid-cta-actions {
        flex-direction: column;
        gap: 30px;
    }

    .mid-cta-tel {
        text-align: center;
    }

    .mid-cta-tel__number {
        font-size: 1.8rem;
    }

    /* CEO Mobile */
    .ceo-box {
        flex-direction: column;
        padding: 40px 0;
        gap: 40px;
    }

    .ceo-visual {
        width: 100%;
        max-width: 300px;
    }

    .ceo-visual img {
        box-shadow: 10px 10px 0 rgba(212, 175, 55, 0.2);
    }

    .ceo-box__title {
        font-size: 1.8rem;
        text-align: center;
    }

    .ceo-text {
        font-size: 1rem;
    }

    .ceo-signature {
        text-align: center;
    }

    /* Schedule Mobile */
    .schedule-timeline {
        padding-left: 30px;
    }

    .schedule-item__content {
        padding: 20px;
    }

    .schedule-item::before {
        left: -32px;
    }

    .message-gallery {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    /* Voices Mobile */
    .voice-card::after {
        font-size: 4rem;
        top: 10px;
        right: 20px;
    }

    /* Q&A Mobile */
    .qa-item__question,
    .qa-item__answer {
        padding: 20px;
        gap: 15px;
    }

    .qa-item__q,
    .qa-item__a {
        font-size: 1.2rem;
    }

    /* Company Table Mobile */
    .company-table__row {
        flex-direction: column;
    }

    .company-table__label {
        width: 100%;
        padding: 15px 20px;
        border-right: none;
        border-bottom: 1px solid #eee;
    }

    .company-table__value {
        padding: 15px 20px;
    }

    /* CTA Mobile */
    .cta-box {
        padding: 60px 20px;
    }

    .cta-box__title {
        font-size: 1.8rem;
    }

    .btn--tel__number {
        font-size: 1.8rem;
    }

    .btn--large {
        padding: 18px 40px;
        font-size: 1.1rem;
        width: 100%;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    /* Mobile Float Banner */
    .float-banner {
        bottom: 0;
        right: 0;
        width: 100%;
        padding: 0;
        z-index: 1000;
    }

    .float-banner__content {
        border-radius: 0;
        padding: 12px 20px;
        box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.1);
        border: none;
        border-top: 1px solid rgba(255, 255, 255, 0.2);
        animation: none;
        justify-content: center;
    }

    .float-banner__label {
        display: inline-block;
        margin-bottom: 0;
        margin-right: 10px;
        background: rgba(0, 0, 0, 0.1);
        padding: 3px 8px;
        border-radius: 4px;
    }

    .float-banner__main {
        display: inline-block;
    }

    .float-banner__arrow {
        display: none;
    }

    body {
        padding-bottom: 70px;
        /* Space for fixed banner */
    }
}

@media (max-width: 480px) {
    .logo__img {
        height: 35px;
    }
}

.hero-point-attention {
    font-weight: 600;
    color: #ffcb24;
    text-align: center;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}