/* ========================================
   基本設定
======================================== */
:root {
    --navy: #12345b;
    --navy-dark: #0b2542;
    --blue: #1f5f9e;
    --blue-light: #eaf3fb;
    --text: #263442;
    --text-light: #607080;
    --white: #ffffff;
    --light: #f5f8fb;
    --border: #dce5ed;
    --shadow: 0 10px 30px rgba(18, 52, 91, 0.1);
    --radius: 14px;
    --max-width: 1120px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 90px;
}

body {
    margin: 0;
    background: var(--white);
    color: var(--text);
    font-family:
        "Yu Gothic",
        "Hiragino Kaku Gothic ProN",
        "Meiryo",
        sans-serif;
    line-height: 1.8;
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1,
h2,
h3 {
    line-height: 1.35;
}

p {
     color: #4a5568;
}

/* ========================================
   ヘッダー
======================================== */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.96);
    border-bottom: 1px solid var(--border);
    backdrop-filter: blur(10px);
}

.header-inner {
    width: min(calc(100% - 40px), var(--max-width));
    min-height: 76px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.site-logo {
    display: inline-flex;
    align-items: baseline;
    gap: 8px;
    color: var(--navy);
    font-weight: 700;
    white-space: nowrap;
}

.logo-main {
    font-size: 1.2rem;
    letter-spacing: 0.04em;
}

.logo-sub {
    font-size: 0.72rem;
}

.global-nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 26px;
}

.global-nav a {
    position: relative;
    padding: 26px 0 22px;
    color: var(--text);
    font-size: 0.9rem;
    font-weight: 600;
}

.global-nav a::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 16px;
    left: 0;
    height: 2px;
    background: var(--blue);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.25s ease;
}

.global-nav a:hover {
    color: var(--blue);
}

.global-nav a:hover::after {
    transform: scaleX(1);
}

/* ========================================
   ヒーロー
======================================== */
.hero {
    overflow: hidden;
    background:
        radial-gradient(circle at 92% 18%, rgba(31, 95, 158, 0.13), transparent 34%),
        linear-gradient(135deg, #f8fbfe 0%, #eef5fb 100%);
}

.hero-inner {
    width: min(calc(100% - 40px), var(--max-width));
    min-height: 610px;
    margin: 0 auto;
    padding: 80px 0;
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    align-items: center;
    gap: 64px;
}

.hero-label,
.section-label {
    margin-bottom: 12px;
    color: var(--blue);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.18em;
}

.hero h1 {
    margin-bottom: 24px;
    color: var(--navy-dark);
    font-size: clamp(2.8rem, 5vw, 4.8rem);
    letter-spacing: 0.04em;
}

.hero-lead {
    max-width: 620px;
    margin-bottom: 34px;
    font-size: 1.05rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.hero-visual {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    margin-left: -40px;
}

.hero-visual::before {
    content: "";
    position: absolute;
    inset: -20px 22px 20px -22px;
    z-index: 0;
    border: 1px solid rgba(31, 95, 158, 0.18);
    border-radius: 24px;
}

.hero-visual img {
position: relative;
    z-index: 1;
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    object-position: left center;
    border-radius: 20px;
    box-shadow: 0 22px 55px rgba(18, 52, 91, 0.18);
}

/* ========================================
   ボタン
======================================== */
.button {
    display: inline-flex;
    min-height: 52px;
    padding: 12px 26px;
    align-items: center;
    justify-content: center;
    border: 1px solid transparent;
    border-radius: 8px;
    font-weight: 700;
    transition:
        transform 0.25s ease,
        background-color 0.25s ease,
        color 0.25s ease,
        border-color 0.25s ease,
        box-shadow 0.25s ease;
}

.button:hover {
    transform: translateY(-2px);
}

.button-primary {
    background: var(--navy);
    color: var(--white);
    box-shadow: 0 8px 20px rgba(18, 52, 91, 0.2);
}

.button-primary:hover {
    background: var(--blue);
}

.button-outline {
    border-color: var(--navy);
    background: transparent;
    color: var(--navy);
}

.button-outline:hover {
    background: var(--navy);
    color: var(--white);
}

.button-white {
    background: var(--white);
    color: var(--navy);
}

.button-white:hover {
    background: var(--blue-light);
}

/* ========================================
   共通セクション
======================================== */
.section {
    padding: 96px 0;
}

.section-white {
    background: var(--white);
}

.section-light {
    background: var(--light);
}

.section-inner {
    width: min(calc(100% - 40px), var(--max-width));
    margin: 0 auto;
}
.page-section {
    padding: 30px 0 56px;
}

.page-section-inner {
    width: min(calc(100% - 40px), var(--max-width));
    margin: 0 auto;
}

.section-heading {
    max-width: 720px;
    margin: 0 auto 30px;
    text-align: center;
}

.section-heading-left{
    max-width:720px;
    margin:0 auto 40px;
    text-align:left;
}

.section-heading h2,
.contact-section h2 {
    margin-bottom: 16px;
    color: var(--navy-dark);
    font-size: clamp(2rem, 3vw, 2.8rem);
    letter-spacing: 0.04em;
}

.section-heading p:last-child {
    margin-bottom: 0;
}

/* ========================================
   選ばれる理由
======================================== */
.reason-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    align-items: stretch;
}

.reason-card {
    position: relative;
    min-height: 300px;
    padding: 30px 26px;
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: 0 6px 20px rgba(18, 52, 91, 0.06);
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease;
}

.reason-card:hover {
    transform: translateY(-5px);
    border-color: rgba(31, 95, 158, 0.35);
    box-shadow: var(--shadow);
}

.card-number {
    position: absolute;
    top: 14px;
    right: 20px;
    color: rgba(31, 95, 158, 0.12);
    font-size: 3.1rem;
    font-weight: 800;
    line-height: 1;
}

.card-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 22px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    background: var(--blue-light);
    font-size: 1.45rem;
}

.reason-card h3 {
    min-height: 54px;
    margin-bottom: 12px;
    color: var(--navy);
    font-size: 1.16rem;
}

.reason-card p {
    margin-bottom: 0;
    font-size: 0.95rem;
}

/* ========================================
   事業内容
======================================== */
.service-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
    align-items: stretch;
}

.service-card {
    min-height: 280px;
    padding: 32px 30px;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: var(--radius);
    background: linear-gradient(145deg, var(--navy) 0%, #184a7d 100%);
    color: var(--white);
    box-shadow: 0 10px 24px rgba(18, 52, 91, 0.14);
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        background 0.25s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    background: linear-gradient(145deg, #184a7d 0%, var(--blue) 100%);
    box-shadow: 0 16px 34px rgba(18, 52, 91, 0.22);
}

.service-icon {
    width: 46px;
    height: 46px;
    margin-bottom: 20px;
    display: grid;
    place-items: center;
    border-radius: 11px;
    background: rgba(255, 255, 255, 0.12);
    font-size: 1.35rem;
}

.service-card h3 {
    min-height: 58px;
    margin-bottom: 14px;
    font-size: 1.18rem;
}

.service-card p {
    margin-bottom: 24px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.93rem;
}

.service-more {
    margin-top: auto;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    font-size: 0.88rem;
    font-weight: 700;
}

/* ========================================
   制作実績
======================================== */
.works-section {
    background:
        radial-gradient(circle at 92% 12%, rgba(31, 95, 158, 0.1), transparent 28%),
        var(--white);
}

.works-list {
    display: grid;
    gap: 42px;
}

.work-card {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(360px, 0.9fr);
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: 22px;
    background: var(--white);
    box-shadow: 0 18px 45px rgba(18, 52, 91, 0.12);
}

.work-visual {
    min-height: 520px;
    overflow: hidden;
    background: var(--blue-light);
}

.work-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.35s ease;
}

.work-visual:hover img {
    transform: scale(1.025);
}

.work-content {
    padding: 48px 44px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.work-number {
    margin-bottom: 14px;
    color: var(--blue);
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.16em;
}

.work-content h3 {
    margin-bottom: 20px;
    color: var(--navy-dark);
    font-size: clamp(1.65rem, 2.5vw, 2.25rem);
}

.work-content h3 span {
    display: block;
    margin-top: 8px;
    color: var(--navy);
    font-size: 0.62em;
}

.work-description {
    margin-bottom: 22px;
    color: var(--text-light);
    font-size: 0.94rem;
}

.work-tags {
    margin: 0 0 20px;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    list-style: none;
}

.work-tags li {
    padding: 5px 10px;
    border: 1px solid rgba(31, 95, 158, 0.22);
    border-radius: 999px;
    background: var(--blue-light);
    color: var(--navy);
    font-size: 0.72rem;
    font-weight: 700;
}

.work-note {
    margin-bottom: 22px;
    color: var(--text-light);
    font-size: 0.78rem;
    font-weight: 600;
}

.work-link {
    align-self: flex-start;
    gap: 10px;
}

.work-card-featured {
    border-color: rgba(31, 95, 158, 0.34);
    box-shadow: 0 22px 54px rgba(18, 52, 91, 0.16);
}

.memoria-visual {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 48px;
    background:
        radial-gradient(circle at 50% 42%, rgba(174, 210, 236, 0.2), transparent 26%),
        linear-gradient(145deg, #0a1727 0%, #102b45 54%, #163d5c 100%);
    color: var(--white);
    text-align: center;
}

.memoria-visual::before,
.memoria-visual::after {
    position: absolute;
    content: "";
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 50%;
}

.memoria-visual::before {
    width: 58%;
    aspect-ratio: 1;
}

.memoria-visual::after {
    width: 42%;
    aspect-ratio: 1;
}

.memoria-visual-kicker,
.memoria-visual-title,
.memoria-visual-line,
.memoria-visual-copy {
    position: relative;
    z-index: 1;
}

.memoria-visual-kicker {
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.68rem;
    letter-spacing: 0.24em;
}

.memoria-visual-title {
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2.8rem, 7vw, 5.4rem);
    font-weight: 400;
    letter-spacing: 0.13em;
    line-height: 1;
}

.memoria-visual-line {
    width: 56px;
    height: 1px;
    margin: 26px 0 20px;
    background: rgba(255, 255, 255, 0.52);
}

.memoria-visual-copy {
    font-family: Georgia, "Yu Mincho", "Hiragino Mincho ProN", serif;
    font-size: 0.88rem;
    letter-spacing: 0.14em;
}

.work-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

/* ========================================
   会社概要
======================================== */
.work-template-route {
    margin-top: 28px;
    color: var(--text-light);
    font-size: 0.875rem;
    line-height: 1.65;
}

.work-template-audience {
    margin: 0 0 4px;
    font-weight: 600;
}

.work-template-context {
    margin: 0;
}

.work-template-route a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 44px;
    padding-block: 8px;
    max-width: 100%;
    color: var(--navy);
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 4px;
}

.work-template-route a:hover {
    text-decoration-thickness: 2px;
}

.work-template-route a:focus-visible {
    outline: 2px solid var(--navy);
    outline-offset: 4px;
}

.company-inner {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    align-items: start;
    gap: 50px;
}

.company-table-wrap {
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: 0 6px 22px rgba(18, 52, 91, 0.06);
}

.company-table {
    width: 100%;
    border-collapse: collapse;
}

.company-table th,
.company-table td {
    padding: 20px 24px;
    border-bottom: 1px solid var(--border);
    text-align: left;
    vertical-align: top;
}

.company-table tr:last-child th,
.company-table tr:last-child td {
    border-bottom: 0;
}

.company-table th {
    width: 150px;
    background: #f7fafc;
    color: var(--navy);
    font-size: 0.92rem;
}

.company-table td {
    color: var(--text);
}

/* ========================================
   実践記録（note）
======================================== */
.note-section {
    background: var(--blue-light);
}

.note-card {
    max-width: 760px;
    margin: 0 auto;
    padding: 48px 40px;
    border: 1px solid rgba(31, 95, 158, 0.18);
    border-radius: var(--radius);
    background: var(--white);
    text-align: center;
    box-shadow: var(--shadow);
}

.note-card h2 {
    margin-bottom: 16px;
    color: var(--navy-dark);
    font-size: clamp(2rem, 3vw, 2.8rem);
}

.note-card p:not(.section-label) {
    margin-bottom: 28px;
}

@media (max-width: 640px) {
    .note-card {
        padding: 34px 22px;
    }
}

/* ========================================
   お問い合わせ
======================================== */
.contact-section {
    padding: 94px 20px;
    background:
        linear-gradient(rgba(11, 37, 66, 0.96), rgba(18, 52, 91, 0.96));
    text-align: center;
}

.contact-inner {
    max-width: 760px;
    margin: 0 auto;
}

.section-label-light {
    color: #1f5fae;
}

.contact-section h2 {
    color: var(--white);
}

.contact-section p {
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.78);
}

.contact-note {
    margin: 16px 0 0 !important;
    font-size: 0.78rem;
    opacity: 0.76;
}

/* ========================================
   フッター
======================================== */
.site-footer {
    padding: 48px 0 22px;
    background: #071c31;
    color: var(--white);
}

.footer-inner {
    width: min(calc(100% - 40px), var(--max-width));
    margin: 0 auto 34px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 40px;
}

.footer-logo {
    margin-bottom: 5px;
    color: var(--white);
    font-weight: 700;
}

.footer-message {
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.85rem;
}

.footer-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 12px 24px;
}

.footer-nav a {
    color: rgba(255, 255, 255, 0.82);
font-size: 0.9rem;
font-weight: 500;
transition: color 0.2s ease;
}

.footer-nav a:hover {
    color: var(--white);
}

.copyright {
    width: min(calc(100% - 40px), var(--max-width));
    margin: 0 auto;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.76rem;
    text-align: center;
}

/* ========================================
   下層ページ互換スタイル
======================================== */
body > .page-nav,
body > header:not(.site-header),
body > section,
body > .ai-image {
    width: min(calc(100% - 40px), 960px);
    margin-right: auto;
    margin-left: auto;
}

body > .page-nav {
    padding-top: 28px;
}

.page-nav a {
    color: var(--blue);
    font-weight: 700;
}

.page-nav a:hover {
    color: var(--navy);
}

body > header:not(.site-header) {
    padding: 42px 0 24px;
    border-bottom: 1px solid var(--border);
}

body > header:not(.site-header) h1 {
    margin-bottom: 12px;
    color: var(--navy-dark);
    font-size: clamp(2rem, 4vw, 3.2rem);
}

body > header:not(.site-header) p {
    margin-bottom: 0;
}

body > section:not(.section):not(.contact-section) {
    padding: 54px 0 10px;
}

body > section:not(.section):not(.contact-section) h2 {
    color: var(--navy);
}

.ai-image {
    padding-top: 32px;
}

.ai-image img {
    width: 100%;
    max-height: 480px;
    object-fit: cover;
    border-radius: var(--radius);
}

.service-list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    align-items: stretch;
}

.service-list .service-card {
    min-height: 210px;
    background: var(--white);
    color: var(--text);
    border: 1px solid var(--border);
    box-shadow: 0 6px 20px rgba(18, 52, 91, 0.07);
}

.service-list .service-card h3 {
    min-height: auto;
    color: var(--navy);
}

.service-list .service-card p {
    color: var(--text-light);
}

.contact-area {
    padding-bottom: 72px !important;
    text-align: center;
}

.contact-area .contact-button {
    display: inline-flex;
    min-height: 50px;
    padding: 11px 24px;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: var(--navy);
    color: var(--white);
    font-weight: 700;
}

.contact-area .contact-button:hover {
    background: var(--blue);
}

/* ========================================
   レスポンシブ
======================================== */
@media (max-width: 900px) {
    .header-inner {
        padding: 14px 0;
        flex-direction: column;
        gap: 8px;
    }

    .global-nav {
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
        gap: 4px 18px;
    }

    .global-nav a {
        padding: 4px 0;
        font-size: 0.82rem;
    }

    .global-nav a::after {
        bottom: 0;
    }

    .hero-inner {
        min-height: auto;
        padding: 62px 0 72px;
        grid-template-columns: 1fr;
        gap: 46px;
    }

    .hero-copy {
        text-align: center;
    }

    .hero-lead {
        margin-right: auto;
        margin-left: auto;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-visual {
        width: min(100%, 680px);
        margin: 0 auto;
    }

    .reason-grid,
    .service-grid,
    .service-list,
    .work-card {
        grid-template-columns: 1fr;
    }

    .work-visual {
        min-height: 0;
        aspect-ratio: 16 / 10;
    }

    .reason-card,
    .service-card,
    .service-list .service-card {
        min-height: auto;
    }

    .reason-card h3,
    .service-card h3 {
        min-height: auto;
    }

    .company-inner {
        grid-template-columns: 1fr;
        gap: 34px;
    }
}

@media (max-width: 640px) {
    html {
        scroll-padding-top: 136px;
    }

    .header-inner,
    .hero-inner,
    .section-inner,
    .footer-inner,
    .copyright,
    body > .page-nav,
    body > header:not(.site-header),
    body > section,
    body > .ai-image {
        width: min(calc(100% - 28px), var(--max-width));
    }

    .site-logo {
        flex-direction: column;
        align-items: center;
        gap: 0;
    }

    .global-nav {
        gap: 2px 12px;
    }

    .global-nav a {
        font-size: 0.76rem;
    }

    .hero-inner {
        padding: 48px 0 58px;
    }

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

    .hero-lead {
        font-size: 0.96rem;
    }

    .hero-actions {
        flex-direction: column;
    }

    .button {
        width: 100%;
    }

    .section {
        padding: 72px 0;
    }

    .section-heading {
        margin-bottom: 34px;
    }

    .reason-card,
    .service-card {
        padding: 24px 22px;
    }

    .work-card {
        border-radius: var(--radius);
    }

    .work-content {
        padding: 30px 22px 32px;
    }

    .work-visual {
        aspect-ratio: 4 / 3;
    }

    .work-link {
        width: 100%;
    }

    .works-list {
        gap: 28px;
    }

    .memoria-visual {
        padding: 30px 20px;
    }

    .memoria-visual-title {
        font-size: clamp(2.3rem, 14vw, 4rem);
    }

    .work-actions {
        flex-direction: column;
    }

    .company-table th,
    .company-table td {
        display: block;
        width: 100%;
        padding: 14px 18px;
    }

    .company-table th {
        border-bottom: 0;
    }

    .company-table td {
        padding-top: 0;
    }

    .footer-inner {
        flex-direction: column;
    }

    .footer-nav {
        justify-content: flex-start;
    }
    .problem-grid {
        grid-template-columns: 1fr;
    }

}
.page-image img {
    width: 100%;
    max-width: 760px;
    display: block;
      margin: 40px auto;
    border-radius: 16px;
}
.page-image {
    margin-bottom: -40px;
}
.problem-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.problem-card {
    padding: 28px 24px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: 0 6px 20px rgba(18, 52, 91, 0.06);
}
.support-flow {
    display: grid;
    gap: 20px;
}

.flow-item {
    display: grid;
    grid-template-columns: 70px 1fr;
    gap: 24px;
    align-items: start;
    padding: 26px 0;
    border-bottom: 1px solid var(--border);
}

.flow-item:last-child {
    border-bottom: 0;
}

.flow-number {
    color: var(--blue);
    font-size: 1.7rem;
    font-weight: 700;
    letter-spacing: 0.08em;
}

.flow-content h3 {
    margin-bottom: 10px;
    color: var(--navy-dark);
    font-size: 1.25rem;
}

.flow-content p {
    margin-bottom: 0;
    color: var(--text-light);
}
/* サービスページのヒーロー */

body.service-page .page-hero{
    padding:70px max(40px, calc((100% - 1100px) / 2));
    background:linear-gradient(135deg,#204b7a 0%,#4a8fe7 100%);
}

body.service-page .page-hero .section-label{
    color:#8fc2ff;
}

body.service-page .page-hero h1{
    color:#ffffff;
}

body.service-page .page-hero .page-lead{
    color: #ffffff;
}
.page-two-column{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:center;
}

.page-image img{
    width:100%;
    display:block;
    border-radius:16px;
}
@media (max-width: 640px) {
    .page-two-column {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .problem-grid {
        grid-template-columns: 1fr;
    }
}
/* =========================
   Contact Form
========================= */

.contact-form {
    width: min(100%, 640px);
    margin: 36px auto 0;
    text-align: left;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #ffffff;
    font-weight: 600;
}

.form-group input,
.form-group textarea {
    width: 100%;
    box-sizing: border-box;
    padding: 14px 16px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 8px;
    background: #ffffff;
    color: #1a1a1a;
    font: inherit;
}

.form-group textarea {
    resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: 2px solid #ffffff;
    outline-offset: 2px;
}

.contact-form .button {
    border: none;
    cursor: pointer;
    font: inherit;
}
