:root {
    --primary-color: #0066cc;
    --secondary-color: #004d99;
    --text-color: #333;
    --light-gray: #f5f5f5;
    --dark-gray: #666;
    --white: #ffffff;
    --border-color: #e0e0e0;
    --font-gothic: 'Helvetica Neue', Arial, 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', Meiryo, sans-serif;
    --font-serif: 'Noto Serif JP', 'Yu Mincho', 'YuMincho', 'Hiragino Mincho ProN', serif;
}

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

body {
    font-family: var(--font-gothic);
    line-height: 1.6;
    color: var(--text-color);
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    z-index: 1000;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}
.header-container-inner {
    display: flex;
    flex-direction: row;
    align-items: center;
    width: auto;
    gap: 0.5rem;
    justify-content: flex-start;
}

.logo {
    order: 1;
    margin-left: 0;
    text-align: left;
}

.logo a {
    text-decoration: none;
    color: var(--text-color);
}

.logo h1 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 700;
    text-align: left;
}

.main-nav {
    display: flex;
    align-items: center;
}

.main-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
    font-family: 'Noto Serif JP', serif;
}

.main-menu a {
    text-decoration: none;
    color: var(--text-color);
    font-size: 1rem;
    padding: 0.5rem 1rem;
    transition: color 0.3s;
    position: relative;
    font-family: 'Noto Serif JP', serif;
}

.main-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s;
}

.main-menu a:hover::after,
.main-menu a.active::after {
    width: 100%;
}

.lang-switch {
    padding: 0.5rem 1rem;
    border: 1px solid var(--light-gray);
    border-radius: 4px;
    margin-left: 1rem;
}

/* Hero Section */
.hero {
    margin-top: 80px;
    position: relative;
    padding: 0 4rem 0 0;
    overflow-x: hidden;
}

.hero-slider {
    height: 600px;
    position: relative;
    overflow: hidden;
    border-radius: 0 20px 20px 0;
    width: 100vw;
    max-width: none;
    margin-left: 0;
    left: 0;
}

.hero-slide {
    position: absolute;
    width: 85%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    border-radius: 0 20px 20px 0;
    overflow: hidden;
    left: 0;
}

.hero-slide.active {
    opacity: 1;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: left center;
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    text-align: left;
    color: var(--white);
    width: 100%;
    max-width: 800px;
    padding: 3rem 4rem;
    z-index: 2;
}

.hero-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        rgba(0,0,0,0.5) 0%, 
        rgba(0,0,0,0.3) 50%, 
        rgba(0,0,0,0.1) 100%);
    z-index: -1;
    border-radius: 0 20px 20px 0;
}

.hero-content h2 {
    font-family: var(--font-serif);
    font-size: 3.5rem;
    margin-bottom: 0;
    font-weight: 700;
    letter-spacing: 0.05em;
    line-height: 1.2;
}

.hero-content p {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    margin-top: 1rem;
    margin-bottom: 0;
    letter-spacing: 0.03em;
    opacity: 0.9;
}

.cta-button {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    padding: 1.2rem 3rem;
    border-radius: 8px;
    font-size: 1.1rem;
    transition: all 0.3s;
    font-weight: 500;
}

.cta-button:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
}

.hero-indicators {
    position: absolute;
    bottom: 2rem;
    left: 4rem;
    display: flex;
    gap: 1rem;
    z-index: 2;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: all 0.3s;
}

.indicator.active {
    background-color: var(--white);
    transform: scale(1.2);
}

/* Services Section */
.services {
    background: linear-gradient(to bottom, #f8fbfd 0%, #f5f8fa 100%);
    padding: 5rem 0 4rem 0;
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto 2.5rem auto;
    padding: 0 2rem;
}

.service-header-left {
    flex: 1;
    min-width: 320px;
}

.service-title {
    font-family: var(--font-serif, 'Noto Serif JP', serif);
    font-size: 4rem;
    color: #4976a4;
    font-weight: 700;
    letter-spacing: 0.08em;
    margin-bottom: 0.5rem;
}

.service-sub {
    font-family: var(--font-serif, 'Noto Serif JP', serif);
    font-size: 1.2rem;
    color: #4976a4;
    font-weight: 700;
    margin-bottom: 1.2rem;
}

.service-desc {
    font-size: 1.1rem;
    color: #333;
    line-height: 2;
}

.service-list-btn {
    display: flex;
    align-items: center;
    background: #fff;
    border: 1.5px solid #dbe7f3;
    border-radius: 2rem;
    padding: 0.8rem 2.2rem 0.8rem 1.5rem;
    font-size: 1.2rem;
    color: #333;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(73,118,164,0.08);
    text-decoration: none;
    transition: box-shadow 0.2s, border 0.2s;
    position: relative;
    min-width: 180px;
    justify-content: space-between;
    gap: 1.2rem;
}

.service-list-btn:hover {
    box-shadow: 0 4px 16px rgba(73,118,164,0.16);
    border: 1.5px solid #4976a4;
}

.service-list-arrow-circle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: linear-gradient(135deg, #4976a4 0%, #6fa1e6 100%);
    margin-left: 1rem;
}

.service-list-arrow {
    color: #fff;
    font-size: 1.3rem;
    font-weight: bold;
}

.service-card-list {
    display: flex;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    flex-wrap: wrap;
}

.service-card {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 2px 16px rgba(73,118,164,0.08);
    overflow: hidden;
    flex: 1 1 240px;
    min-width: 240px;
    max-width: 320px;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: box-shadow 0.2s, transform 0.2s;
}

.service-card:hover {
    box-shadow: 0 8px 32px rgba(73,118,164,0.16);
    transform: translateY(-4px) scale(1.03);
}

.service-card-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    background: #e9f1f8;
}

.service-card-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    padding: 1.2rem 1.2rem 1.2rem 1.2rem;
    flex: 1;
    height: 100%;
}

.service-card-title {
    margin-bottom: 0.5rem;
    align-self: flex-start;
}

.service-card-arrow {
    align-self: flex-end;
}

.service-card-arrow-circle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255,255,255,0.18);
    border: 1.5px solid #fff;
    transition: background 0.2s, border 0.2s;
}

.service-card-arrow-icon {
    color: #fff;
    font-size: 1.3rem;
    font-weight: bold;
}

.service-card:hover .service-card-arrow-circle {
    background: linear-gradient(135deg, #4976a4 0%, #6fa1e6 100%);
    border: 1.5px solid #4976a4;
}

.service-card-arrow,
.service-card-arrow-circle,
.service-card-arrow-icon {
    text-decoration: none !important;
}

@media (max-width: 1100px) {
    .service-card-list {
        gap: 1.2rem;
    }
    .service-header {
        flex-direction: column;
        gap: 1.5rem;
    }
}

@media (max-width: 900px) {
    .service-card-list {
        flex-wrap: wrap;
        gap: 4rem;
    }
    .service-card {
        min-width: 45vw;
        max-width: 80%;
        margin: auto;
    }
    .main-nav {
        flex: 1;
        display: flex;
        justify-content: flex-end;
    }
    .main-menu {
        display: none;
        position: absolute;
        top: 76px;
        right: 0;
        left: 0;
        background: #fff;
        flex-direction: column;
        align-items: flex-start;
        box-shadow: 0 4px 24px rgba(0,0,0,0.08);
        z-index: 1100;
        padding: 2rem 0 52vh 0;
        gap: 0;
    }
    .main-menu.open {
        display: flex;
    }
    .hamburger {
        display: flex;
    }
    .header-container {
        position: relative;
    }
    .header-container-inner {
        width: 100%;
        justify-content: flex-start;
    }
    .hamburger {
        order: 0;
        margin-right: 1rem;
        margin-left: 0;
    }
    .main-menu li:not(:last-child)::after {
        background: #dbe7f3;
    }
    .main-menu a {
        color: #2256a3;
        font-weight: bold;
        font-size: 1.25rem;
        padding: 1.3rem 1.5rem 1.3rem 1.5rem;
        background: #fff;
        border: none;
        transition: background 0.2s, color 0.2s;
    }
    .main-menu a:hover, .main-menu a:active {
        background: #f5f8fa;
        color: #174080;
    }
}

@media (max-width: 600px) {
    .service-header, .service-card-list {
        padding: 0 1rem;
    }
    .service-title {
        font-size: 2.2rem;
    }
    .service-card-img {
        height: 260px;
    }
    .service-card {
        min-width: 60vw;
    }
}

/* Contact Section */
.contact {
    padding: 5rem 0;
    background-color: var(--white);
}

.contact-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.contact-form {
    max-width: 800px;
    margin: 0 auto;
    background-color: var(--light-gray);
    padding: 3rem;
    border-radius: 8px;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.required {
    color: #ff0000;
    margin-left: 0.3rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 1rem;
    background-color: var(--white);
}

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

.form-privacy {
    margin: 2rem 0;
    text-align: center;
}

.form-privacy a {
    color: var(--primary-color);
    text-decoration: none;
}

.form-privacy a:hover {
    text-decoration: underline;
}

.submit-button {
    display: block;
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 1rem 2rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 500;
    transition: background-color 0.3s;
}

.submit-button:hover {
    background-color: var(--secondary-color);
}

/* Footer */
.footer {
    background: linear-gradient(120deg, #274472 0%, #41729f 100%);
    color: #fff;
    padding: 4rem 0 1rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

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

.footer-section h3 {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
    letter-spacing: 0.03em;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--primary-color);
}

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

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s;
    font-size: 0.9rem;
}

.footer-section a:hover {
    color: var(--primary-color);
}

.security-badges {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.security-badges img {
    max-width: 100px;
    height: auto;
}

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

/* Responsive Design */
@media (max-width: 1400px) {
    .hero {
        padding: 0 3rem 0 0;
    }

    .hero-slide {
        width: 90%;
    }
}

@media (max-width: 1200px) {
    .hero {
        padding: 0 2rem 0 0;
    }

    .hero-slide {
        width: 95%;
    }

    .hero-content {
        padding: 2rem 3rem;
    }

    .hero-content h2 {
        font-size: 3rem;
    }

    .hero-content p {
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
    .header-container {
        padding: 1rem;
    }

    .logo h1 {
        font-size: 1.2rem;
    }

    .main-menu {
        gap: 1rem;
    }

    .main-menu a {
        font-size: 0.9rem;
        padding: 0.3rem 0.6rem;
    }

    .hero {
        padding: 0 1rem 0 0;
    }

    .hero-slider {
        height: 500px;
        border-radius: 0 15px 15px 0;
    }

    .hero-slide {
        width: 100%;
        border-radius: 0 15px 15px 0;
    }

    .hero-content {
        padding: 2rem;
    }

    .hero-content h2 {
        font-size: 2.5rem;
    }

    .hero-content p {
        font-size: 1.3rem;
    }

    .hero-indicators {
        left: 2rem;
    }

    .cta-button {
        padding: 1rem 2rem;
    }

    .contact-form {
        padding: 2rem 1rem;
    }

    .hero-content::before {
        border-radius: 0 15px 15px 0;
    }
}

@media (max-width: 576px) {
    .main-menu {
        gap: 0.5rem;
    }

    .main-menu a {
        padding: 0.3rem;
    }

    .lang-switch {
        padding: 0.3rem 0.6rem;
        margin-left: 0.5rem;
    }

    .hero-slider {
        height: 400px;
        border-radius: 0;
    }

    .hero-slide {
        width: 100%;
        border-radius: 0;
    }

    .hero-content {
        padding: 1.5rem;
    }

    .hero {
        padding: 0;
    }

    .hero-content::before {
        border-radius: 0;
    }

    .hero-content h2 {
        font-size: 2rem;
    }

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

.inquiry-section {
    position: relative;
    width: 100%;
    min-height: 420px;
    background: url('images/inquiry.webp') center center/cover no-repeat;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 4rem 0 4rem 6vw;
    box-sizing: border-box;
    overflow: hidden;
}

.inquiry-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.18);
    z-index: 1;
}

.inquiry-content {
    position: relative;
    z-index: 2;
    color: #fff;
    text-align: left;
    max-width: 600px;
}

.inquiry-title {
    font-family: var(--font-serif, 'Noto Serif JP', serif);
    font-size: 4rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    margin-bottom: 1.2rem;
    line-height: 1.1;
}

.inquiry-sub {
    font-family: var(--font-serif, 'Noto Serif JP', serif);
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
}

.inquiry-desc {
    font-family: var(--font-gothic, 'Helvetica Neue', Arial, sans-serif);
    font-size: 1.1rem;
    line-height: 2;
    opacity: 0.95;
}

.inquiry-arrow-link {
    position: absolute;
    right: 10vw;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    text-decoration: none;
}

.inquiry-arrow-circle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 180px;
    height: 180px;
    border: 2px solid #fff;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
    transition: background 0.2s;
}

.inquiry-arrow {
    font-size: 2.5rem;
    color: #fff;
    font-weight: bold;
    transition: transform 0.2s;
}

.inquiry-arrow-link:hover .inquiry-arrow {
    transform: translateX(10px);
}

@media (max-width: 900px) {
    .inquiry-section {
        flex-direction: column;
        align-items: flex-start;
        padding: 3rem 0 3rem 4vw;
    }
    .inquiry-arrow-link {
        position: static;
        margin-top: 2rem;
        transform: none;
    }
}

@media (max-width: 600px) {
    .inquiry-section {
        padding: 2rem 0 2rem 2vw;
        min-height: 300px;
    }
    .inquiry-title {
        font-size: 2.2rem;
    }
    .inquiry-arrow-circle {
        width: 100px;
        height: 100px;
    }
    .inquiry-arrow {
        font-size: 1.5rem;
    }
}

.value-section {
    background: #fff;
    padding: 5rem 0 4rem 0;
}

.value-container {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
    gap: 3rem;
    padding: 0 2rem;
}

.value-left {
    flex: 1 1 420px;
    min-width: 320px;
    max-width: 520px;
}

.value-title {
    font-family: var(--font-serif, 'Noto Serif JP', serif);
    font-size: 4rem;
    color: #4976a4;
    font-weight: 700;
    letter-spacing: 0.08em;
    margin-bottom: 0.5rem;
    line-height: 1.1;
}

.value-sub {
    font-family: var(--font-gothic, 'Helvetica Neue', Arial, sans-serif);
    font-size: 1.1rem;
    color: #1976d2;
    font-weight: 700;
    margin-bottom: 2.2rem;
}

.value-desc {
    font-size: 1.5rem;
    color: #444;
    font-weight: 700;
    line-height: 2.1;
    margin-bottom: 2.5rem;
}

.value-btn {
    display: flex;
    align-items: center;
    background: #fff;
    border: 1.5px solid #dbe7f3;
    border-radius: 2rem;
    padding: 0.8rem 2.2rem 0.8rem 1.5rem;
    font-size: 1.1rem;
    color: #333;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(73,118,164,0.08);
    text-decoration: none;
    transition: box-shadow 0.2s, border 0.2s;
    min-width: 160px;
    justify-content: space-between;
    gap: 1.2rem;
}

.value-btn:hover {
    box-shadow: 0 4px 16px rgba(73,118,164,0.16);
    border: 1.5px solid #4976a4;
}

.value-btn-arrow-circle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: linear-gradient(135deg, #4976a4 0%, #6fa1e6 100%);
    margin-left: 1rem;
}

.value-btn-arrow {
    color: #fff;
    font-size: 1.3rem;
    font-weight: bold;
}

.value-right {
    flex: 1 1 480px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.value-img {
    max-width: 100%;
    height: auto;
    min-width: 260px;
    box-shadow: 0 4px 32px rgba(73,118,164,0.08);
    border-radius: 1.5rem;
    background: #f8fbfd;
}

@media (max-width: 900px) {
    .value-container {
        flex-direction: column;
        gap: 2.5rem;
        padding: 0 1rem;
    }
    .value-left, .value-right {
        max-width: 100%;
    }
    .value-left{
        flex: 1 1 0;
    }
    .value-title {
        font-size: 2.2rem;
    }
    .value-desc {
        font-size: 1.1rem;
    }
}

@media (max-width: 600px) {
    .value-section {
        padding: 2.5rem 0 2rem 0;
    }
    .value-title {
        font-size: 2.2rem;
    }
    .value-desc {
        font-size: 1rem;
    }
    .value-btn {
        font-size: 1rem;
        padding: 0.7rem 1.2rem 0.7rem 1rem;
    }
    .value-btn-arrow-circle {
        width: 28px;
        height: 28px;
    }
}

.company{
    padding: 0 20px;
}

.company-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 0;
}

.company-card {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    transition: transform 0.2s;
    text-decoration: none;
}

.company-card:hover {
    transform: translateY(-4px) scale(1.02);
}

.company-card-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
    filter: brightness(0.85);
}

.company-card-label {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 2rem;
    font-family: 'Noto Serif JP', serif;
    background: rgba(0,0,0,0.25);
    text-align: center;
    font-weight: 500;
    letter-spacing: 1px;
    transition: opacity 0.3s;
}

.company-card-label span {
    font-size: 1rem;
    font-weight: 400;
    margin-top: 8px;
}

.company-card:hover .company-card-label {
    opacity: 0.6;
}

@media (max-width: 900px) {
    .company-grid {
        grid-template-columns: 1fr;
    }
}

.inquiry-section-link {
    text-decoration: none;
    color: inherit;
}

.inquiry-section-link * {
    text-decoration: none;
} 
.inquiry-section-link:hover {
    opacity: 0.8;
}

/* ハンバーガーメニュー */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1200;
}
.hamburger span {
  display: block;
  width: 28px;
  height: 3px;
  margin: 5px 0;
  background: #333;
  border-radius: 2px;
  transition: all 0.3s;
}
@media (max-width: 900px) {
  .main-menu {
    display: none;
    position: absolute;
    top: 76px;
    right: 0;
    left: 0;
    font-size: 1.25rem;
    background: #fff;
    flex-direction: column;
    align-items: flex-start;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
    z-index: 1100;
    padding: 10px 0 52vh 0;
    gap: 0;
  }
  .main-menu.open {
    display: flex;
  }
  .main-menu.open li{
    width: 100%;
    border-bottom: solid 1px #ccc;
  }
  .main-menu.open li div{
    padding-left: 1rem;
  }
  .hamburger {
    display: flex;
  }
  .header-container {
    position: relative;
    flex-direction: column;
  }
}

/* 区切り線 */
.header-container-inner .hamburger {
  position: relative;
}
.header-container-inner .hamburger::after {
  content: '';
  display: block;
  position: absolute;
  right: -12px;
  top: 8px;
  width: 1px;
  height: 28px;
  background: #e0e0e0;
}
@media (max-width: 900px) {
  .header-container-inner .hamburger::after {
    top: 8px;
    height: 28px;
  }
}