/* ===========================
   Reset
=========================== */

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

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

ul {
    list-style: none;
}

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

button {
    border: none;
    background: none;
    cursor: pointer;
    font: inherit;
}

/* ===========================
   Base
=========================== */

html {
    scroll-behavior: smooth;
}

body {
    font-family:
        "Noto Sans JP",
        sans-serif;

    color: #333;

    line-height: 1.8;

    background: #fff;

    overflow-x: hidden;
}

section {
    scroll-margin-top: 100px;
}

/* ===========================
   Container
=========================== */

.container {

    width: min(1100px, 90%);

    margin: auto;

}

/* ===========================
   Section
=========================== */

section {

    padding: 100px 0;

}

/* ===========================
   Heading
=========================== */

.section-heading {

    text-align: center;

    margin-bottom: 60px;

}

.section-subtitle {

    color: #777;

    letter-spacing: .2em;

    font-size: .9rem;

    margin-bottom: 10px;

}

.section-heading h2 {

    font-size: 2rem;

}
/* ===========================
   Header
=========================== */

.header {

    position: sticky;

    top: 0;

    background: #ffffff;

    z-index: 1000;

    box-shadow: 0 2px 10px rgba(0,0,0,.08);

}

.header .container {

    display: flex;

    justify-content: space-between;

    align-items: center;

    height: 80px;

}

.header-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #222222;
    font-size: 1.1rem;
    font-weight: 700;
    white-space: nowrap;
}

.header-logo-image {
    width: 52px;
    height: 52px;
    object-fit: contain;
    flex-shrink: 0;
}

/* Navigation */

/* Navigation */

.header-nav {
    display: block;
}

.header-nav-list {
    display: flex;
    align-items: center;
    gap: 40px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.header-nav-list li {
    font-size: .95rem;
    font-weight: 500;
}

.header-nav-list a {
    display: block;
    transition: .3s;
}

.header-nav-list a:hover {
    color: #0F4C81;
}

/* Contact Button */

.contact-button {

    display: inline-block;

    background: #0F4C81;

    color: #fff !important;

    padding: 12px 26px;

    border-radius: 5px;

    transition: .3s;

}

.contact-button:hover {

    background: #163b61;

}

/* Hamburger */

.hamburger {

    display: none;

}
/* ===========================
   Hamburger
=========================== */

.menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transition:
        visibility 0.35s ease,
        opacity 0.35s ease;
    z-index: 900;
}

.menu-overlay.is-visible {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
}

body.menu-open {
    overflow: hidden;
}

.hamburger {
    display: none;
    position: relative;
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
    border: none;
    background: transparent;
    cursor: pointer;
    z-index: 1200;
}

.hamburger span {
    position: absolute;
    width: 28px;
    height: 2px;
    border-radius: 2px;
    background: #0f2740;
    transition:
        transform 0.3s ease,
        opacity 0.3s ease,
        top 0.3s ease;
}

.hamburger span:nth-child(1) {
    top: 12px;
}

.hamburger span:nth-child(2) {
    top: 21px;
}

.hamburger span:nth-child(3) {
    top: 30px;
}

/* 開いたとき、三本線を×にする */

.hamburger.is-active span:nth-child(1) {
    top: 21px;
    transform: rotate(45deg);
}

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

.hamburger.is-active span:nth-child(3) {
    top: 21px;
    transform: rotate(-45deg);
}

/* スマホ用メニュー */

.mobile-menu {
    display: none;
}
/* ===========================
   Hero
=========================== */

.hero {

    height: calc(100vh - 80px);

    background-image:
        linear-gradient(
            rgba(0,0,0,.45),
            rgba(0,0,0,.45)
        ),
        url("images/hero.jpg");

    background-size: cover;

    background-position: center;

    display: flex;

    align-items: center;

}

.hero-content {

    color: #ffffff;

    max-width: 700px;

}

.hero-subtitle {

    letter-spacing: .2em;

    margin-bottom: 20px;

    font-size: .9rem;

}

.hero-title {

    font-size: clamp(2.5rem,5vw,4.5rem);

    line-height: 1.2;

    margin-bottom: 30px;

    font-weight: 700;

}

.hero-text {

    font-size: 1.1rem;

    line-height: 2;

    margin-bottom: 40px;

    opacity: .95;

}

.hero-buttons {

    display: flex;

    gap: 20px;

    flex-wrap: wrap;

}

/* ===========================
   Button
=========================== */

.btn {

    display: inline-block;

    padding: 16px 36px;

    border-radius: 6px;

    font-weight: bold;

    transition: .3s;

}

.btn-primary {

    background: #0F4C81;

    color: white;

}

.btn-primary:hover {

    background: #163b61;

}

.btn-secondary {

    border: 2px solid #ffffff;

    color: #ffffff;

}

.btn-secondary:hover {

    background: rgba(255,255,255,.15);

}
/* ===========================
   Hero Layout
=========================== */

.hero .container {

    width: min(1100px, 90%);

    margin: auto;

}

.hero-content {

    max-width: 650px;

    padding-top: 40px;

}
.hero-title {

    font-size: clamp(42px, 6vw, 72px);

    line-height: 1.2;

    font-weight: 700;

    margin-bottom: 24px;

}
.hero-subtitle {

    color: #ffffff;

    letter-spacing: .3em;

    font-size: 14px;

    margin-bottom: 20px;

    text-transform: uppercase;

}
.hero-text {

    font-size: 18px;

    line-height: 2;

    color: rgba(255,255,255,.9);

    margin-bottom: 40px;

}
.hero-buttons {

    display: flex;

    gap: 20px;

    flex-wrap: wrap;

}
.btn-primary {

    background: #0F4C81;

    color: #fff;

    padding: 16px 36px;

    border-radius: 6px;

    transition: .3s;

}

.btn-primary:hover{

    background:#163b61;

}
.btn-secondary {

    border:2px solid white;

    color:white;

    padding:16px 36px;

    border-radius:6px;

    transition:.3s;

}

.btn-secondary:hover{

    background:rgba(255,255,255,.15);

}
/* ===========================
   Strength
=========================== */

.strength {

    background: #f8f9fb;

}
.strength-grid {

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 30px;

}
.strength-card {

    background: white;

    padding: 40px 30px;

    border-radius: 10px;

    box-shadow: 0 10px 30px rgba(0,0,0,.05);

    transition: .3s;

}
.strength-card:hover {

    transform: translateY(-8px);

    box-shadow: 0 20px 40px rgba(0,0,0,.1);

}
.strength-card h3 {

    font-size: 24px;

    margin-bottom: 20px;

    color: #0F4C81;

}
.strength-card p {

    color: #666;

    line-height: 1.9;

}
/* ===========================
   Service
=========================== */

.service {

    background: #ffffff;

}
.service-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}
.service-card {
    width: 100%;
    max-width: 520px;
    padding: 48px 42px;
    background: #ffffff;
    border: 1px solid #e2e6ea;
    border-radius: 10px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
    text-align: left;
}
.service-card:hover {

    background: #0F4C81;

    color: white;

}
.service-card h3 {

    font-size: 24px;

    margin-bottom: 18px;

}
.service-card p {

    line-height: 1.9;

}
/* ===========================
   Font Awesome
=========================== */

.strength-icon{

    font-size:48px;

    color:#0F4C81;

    margin-bottom:24px;

}
/* ===========================
   Works
=========================== */

.works {

    background: #f8f9fb;

}

.works-grid {

    display: grid;

    grid-template-columns: repeat(2,1fr);

    gap: 30px;

}

.work-card {

    background: white;

    border-radius: 12px;

    overflow: hidden;

    box-shadow: 0 10px 25px rgba(0,0,0,.08);

    transition: .3s;

}

.work-card:hover{

    transform: translateY(-8px);

}

.work-card img{

    width:100%;

    height:280px;

    object-fit:cover;

    transition:transform .4s ease;

}

.work-content{

    padding:30px;

}

.work-content h3{

    margin-bottom:10px;

    font-size:24px;

}

.work-content p{

    color:#666;

}
.work-category{

    display:inline-block;

    background:#0F4C81;

    color:white;

    padding:6px 14px;

    border-radius:30px;

    font-size:13px;

    margin-bottom:18px;

}
.work-place{

    color:#888;

    margin-bottom:20px;

}
.work-info{

    margin-bottom:25px;

}

.work-info li{

    margin-bottom:12px;

    line-height:1.8;

}

.work-info strong{

    color:#0F4C81;

    margin-right:10px;

}
.work-button{

    display:inline-block;

    background:#0F4C81;

    color:white;

    padding:12px 24px;

    border-radius:6px;

    transition:.3s;

}

.work-button:hover{

    background:#163b61;

}
.work-card:hover img{

    transform:scale(1.08);

}
/* ==========================================
   Company
========================================== */

.company {
    padding: 100px 0;
    background: #f7f8fa;
}

.company .section-heading {
    max-width: 760px;
    margin: 0 auto 50px;
    text-align: center;
}

.company-table {
    max-width: 1000px;
    margin: 0 auto;
    background: #ffffff;
    border-top: 1px solid #dfe3e8;
}

.company-row {
    display: grid;
    grid-template-columns: 240px 1fr;
    border-bottom: 1px solid #dfe3e8;
}

.company-title {
    display: flex;
    align-items: center;
    padding: 24px 30px;
    background: #eef2f5;
    color: #17324d;
    font-weight: 700;
}

.company-text {
    padding: 24px 30px;
    color: #333333;
    line-height: 1.8;
}

/* ===========================
   Voice
=========================== */

.voice {
    background: #ffffff;
}

.section-description {
    max-width: 680px;
    margin: 20px auto 0;
    color: #666666;
    line-height: 1.9;
}

.voice-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.voice-card {
    position: relative;
    display: flex;
    flex-direction: column;
    background: #f8f9fb;
    padding: 40px 32px;
    border-radius: 12px;
    border: 1px solid #e8ebef;
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}

.voice-card:hover {
    transform: translateY(-8px);
    border-color: rgba(15, 76, 129, 0.25);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}

.voice-icon {
    margin-bottom: 20px;
    color: rgba(15, 76, 129, 0.15);
    font-size: 42px;
    line-height: 1;
}

.voice-rating {
    display: flex;
    gap: 5px;
    margin-bottom: 22px;
    color: #d5a93f;
    font-size: 15px;
}

.voice-text {
    flex-grow: 1;
    margin-bottom: 30px;
    color: #444444;
    line-height: 2;
}

.voice-meta {
    padding-top: 22px;
    border-top: 1px solid #dde2e7;
}

.voice-customer {
    margin-bottom: 5px;
    color: #222222;
    font-weight: 700;
}

.voice-project {
    color: #777777;
    font-size: 14px;
}

.voice-note {
    margin-top: 24px;
    color: #888888;
    font-size: 12px;
    text-align: right;
}
/* ===========================
   Recruit
=========================== */

.recruit {
    position: relative;
    display: flex;
    min-height: 680px;
    align-items: center;
    background-image:
        linear-gradient(
            90deg,
            rgba(8, 30, 49, 0.92) 0%,
            rgba(8, 30, 49, 0.82) 48%,
            rgba(8, 30, 49, 0.25) 100%
        ),
        url("images/recruit.jpg");
    background-position: center;
    background-size: cover;
    color: #ffffff;
}

.recruit-content {
    max-width: 650px;
}

.recruit-subtitle {
    margin-bottom: 20px;
    font-size: 14px;
    letter-spacing: 0.3em;
    font-weight: 700;
}

.recruit-title {
    margin-bottom: 28px;
    font-size: clamp(38px, 5vw, 64px);
    line-height: 1.35;
    letter-spacing: 0.04em;
}

.recruit-message {
    margin-bottom: 30px;
    max-width: 600px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 17px;
    line-height: 2;
}

.recruit-points {
    display: grid;
    gap: 12px;
    margin-bottom: 36px;
}

.recruit-points li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
}

.recruit-points i {
    display: grid;
    width: 26px;
    height: 26px;
    flex-shrink: 0;
    place-items: center;
    border-radius: 50%;
    background: #ffffff;
    color: #0f4c81;
    font-size: 12px;
}

.recruit-button {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 16px 30px;
    border: 1px solid #ffffff;
    border-radius: 6px;
    color: #ffffff;
    font-weight: 700;
    transition:
        background-color 0.3s ease,
        color 0.3s ease,
        transform 0.3s ease;
}

.recruit-button:hover {
    transform: translateY(-3px);
    background: #ffffff;
    color: #0f4c81;
}

.recruit-button i {
    transition: transform 0.3s ease;
}

.recruit-button:hover i {
    transform: translateX(5px);
}

/* ==========================================
   Recruit Details
========================================== */

.recruit-details {
    padding: 100px 0;
    background: #f7f8fa;
}

.recruit-details .section-heading {
    margin-bottom: 50px;
    text-align: center;
}

.recruit-details-table {
    max-width: 1000px;
    margin: 0 auto;
    background: #ffffff;
    border-top: 1px solid #dfe3e8;
}

.recruit-details-row {
    display: grid;
    grid-template-columns: 240px 1fr;
    border-bottom: 1px solid #dfe3e8;
}

.recruit-details-title {
    display: flex;
    align-items: center;
    padding: 24px 30px;
    background: #eef2f5;
    color: #17324d;
    font-weight: 700;
}

.recruit-details-text {
    padding: 24px 30px;
    color: #333333;
    line-height: 1.8;
}

.recruit-details-note {
    max-width: 1000px;
    margin: 18px auto 0;
    color: #666666;
    font-size: 0.85rem;
}

.recruit-details-cta {
    max-width: 1000px;
    margin: 50px auto 0;
    padding: 40px;
    background: #ffffff;
    text-align: center;
    box-shadow: 0 8px 30px rgba(15, 39, 64, 0.08);
}

.recruit-details-cta p {
    margin-bottom: 24px;
    font-size: 1.05rem;
    line-height: 1.8;
}

.button-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    padding: 15px 30px;
    border-radius: 5px;
    background: #0f4c81;
    color: #ffffff;
    font-weight: 700;
    transition: 0.3s;
}

.button-primary:hover {
    background: #163b61;
    transform: translateY(-2px);
}

/* ===========================
   Contact
=========================== */

.contact {
    background: #f3f6f9;
}

.contact-layout {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 70px;
    align-items: start;
}

.contact-info {
    padding: 45px;
    border-radius: 14px;
    background: #0f4c81;
    color: #ffffff;
}

.contact-info-label {
    margin-bottom: 12px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
}

.contact-tel {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 12px;
    color: #ffffff;
    font-size: clamp(28px, 3vw, 42px);
    font-weight: 700;
    line-height: 1.2;
}

.contact-tel i {
    font-size: 28px;
}

.contact-hours {
    margin-bottom: 38px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 14px;
    line-height: 1.8;
}

.contact-feature {
    display: grid;
    gap: 26px;
}

.contact-feature-item {
    display: grid;
    grid-template-columns: 42px 1fr;
    gap: 18px;
    align-items: start;
}

.contact-feature-item > i {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.14);
    font-size: 17px;
}

.contact-feature-item h3 {
    margin-bottom: 6px;
    font-size: 17px;
}

.contact-feature-item p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 14px;
    line-height: 1.8;
}

.contact-form {
    padding: 45px;
    border: 1px solid #e1e6eb;
    border-radius: 14px;
    background: #ffffff;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.06);
}

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

.form-group label {
    display: block;
    margin-bottom: 10px;
    color: #222222;
    font-weight: 700;
}
label.required-label::after {
    content: "必須";
    display: inline-block;
    margin-left: 8px;
    padding: 2px 6px;
    color: #ffffff;
    background: #d9534f;
    border-radius: 3px;
    font-size: 0.75rem;
    font-weight: 700;
    line-height: 1.4;
    vertical-align: middle;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    border: 1px solid #d7dde3;
    border-radius: 6px;
    background: #ffffff;
    padding: 14px 16px;
    color: #222222;
    font-family: inherit;
    font-size: 16px;
    transition:
        border-color 0.25s ease,
        box-shadow 0.25s ease;
}

.form-group input,
.form-group select {
    min-height: 52px;
}

.form-group textarea {
    resize: vertical;
    line-height: 1.8;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #a0a7ae;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #0f4c81;
    box-shadow: 0 0 0 4px rgba(15, 76, 129, 0.1);
}

.form-privacy {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    margin-bottom: 24px;
    color: #555555;
    font-size: 14px;
    line-height: 1.6;
    cursor: pointer;
}

.form-privacy input {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    accent-color: #0f4c81;
}

.contact-submit {
    display: flex;
    width: 100%;
    min-height: 58px;
    align-items: center;
    justify-content: center;
    gap: 14px;
    border: none;
    border-radius: 6px;
    background: #0f4c81;
    color: #ffffff;
    font-family: inherit;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition:
        background-color 0.3s ease,
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.contact-submit:hover {
    transform: translateY(-3px);
    background: #0b3b65;
    box-shadow: 0 12px 24px rgba(15, 76, 129, 0.2);
}

.contact-submit i {
    transition: transform 0.3s ease;
}

.contact-submit:hover i {
    transform: translateX(5px);
}

.form-note {
    margin-top: 16px;
    color: #888888;
    font-size: 12px;
    line-height: 1.7;
    text-align: center;
}
/* ===========================
   Footer
=========================== */

.footer{

    background:#0F2740;

    color:white;

}

.footer-container{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:60px;

    padding:80px 0;

}

.footer-company h3{

    margin-bottom:25px;

    font-size:28px;

}

.footer-company p{

    margin-bottom:12px;

    color:#d4dbe4;

    line-height:1.8;

}

.footer-nav h4,

.footer-contact h4{

    margin-bottom:25px;

}

.footer-nav ul{

    display:grid;

    gap:15px;

}

.footer-nav a{

    color:#d4dbe4;

    transition:.3s;

}

.footer-nav a:hover{

    color:white;

}

.footer-contact p{

    margin-bottom:30px;

    color:#d4dbe4;

    line-height:1.8;

}

.footer-button{

    display:inline-block;

    background:white;

    color:#0F4C81;

    padding:14px 28px;

    border-radius:6px;

    font-weight:bold;

    transition:.3s;

}

.footer-button:hover{

    background:#0F4C81;

    color:white;

}

.footer-bottom{

    border-top:1px solid rgba(255,255,255,.1);

    padding:25px 0;

    text-align:center;

    font-size:14px;

    color:#bfc8d4;

}
/* ==========================================
   Responsive
========================================== */

@media screen and (max-width: 768px) {

    .container {
        width: 90%;
    }

    /* ヘッダー */

    .header-nav {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .header-logo {
    gap: 8px;
    font-size: 0.85rem;
}

.header-logo-image {
    width: 50px;
    height: 50px;
}

    /* スマホ用メニュー */

    .mobile-menu {
        display: block;
        position: fixed;
        top: 0;
        right: 0;
        width: min(82%, 360px);
        height: 100vh;
        padding: 110px 32px 40px;
        background: #ffffff;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.12);
        transform: translateX(110%);
        visibility: hidden;
        opacity: 0;
        transition:
            transform 0.35s ease,
            visibility 0.35s ease,
            opacity 0.35s ease;
        z-index: 1100;
    }

    .mobile-menu.is-open {
        transform: translateX(0);
        visibility: visible;
        opacity: 1;
    }

    .mobile-menu-list {
        display: grid;
    }

    .mobile-menu-list li {
        border-bottom: 1px solid #e5e8eb;
    }

    .mobile-menu-list a {
        display: block;
        padding: 18px 4px;
        color: #222222;
        font-size: 16px;
        font-weight: 700;
    }

    .mobile-menu-list a:hover {
        color: #0f4c81;
    }

    /* Hero */

    .hero {
        min-height: 70vh;
        padding-top: 120px;
    }

    .hero h1 {
        font-size: 40px;
    }

    .hero p {
        font-size: 16px;
    }

    /* 共通見出し */

    .section-heading h2 {
        font-size: 1.8rem;
        line-height: 1.5;
        word-break: keep-all;
    }

    /* 各セクション */

    .strength-grid {
        grid-template-columns: 1fr;
    }

    .service-grid {
        grid-template-columns: 1fr;
    }

    .works-grid {
        grid-template-columns: 1fr;
    }

    .voice-list {
        grid-template-columns: 1fr;
    }

    .contact-layout {
        grid-template-columns: 1fr;
    }

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

        /* 募集要項 */

    .recruit-details {
        padding: 70px 0;
    }

    .recruit-details .section-heading {
        margin-bottom: 35px;
    }

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

    .recruit-details-title {
        padding: 14px 18px;
    }

    .recruit-details-text {
        padding: 18px;
    }

    .recruit-details-note {
        font-size: 0.8rem;
        line-height: 1.7;
    }

    .recruit-details-cta {
        margin-top: 35px;
        padding: 30px 20px;
    }

    .recruit-details-cta p {
        font-size: 0.95rem;
    }

    .recruit-details-cta .button-primary {
        width: 100%;
    }

        /* 会社概要 */

    .company {
        padding: 70px 0;
    }

    .company .section-heading {
        margin-bottom: 35px;
    }

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

    .company-title {
        padding: 14px 18px;
    }

    .company-text {
        padding: 18px;
    }

}
.honeypot {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
}
.thanks-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    background: #f7f8fa;
}

.thanks-content {
    width: 100%;
    max-width: 680px;
    padding: 60px 40px;
    background: #ffffff;
    border: 1px solid #e2e6ea;
    border-radius: 10px;
    text-align: center;
}

.thanks-content h1 {
    margin-bottom: 24px;
}

.thanks-content p {
    margin-bottom: 32px;
    line-height: 2;
}

.thanks-button {
    display: inline-block;
    padding: 14px 28px;
    color: #ffffff;
    background: #0f4c81;
    border-radius: 4px;
    text-decoration: none;
}

.thanks-button:hover {
    opacity: 0.85;
}
/* ================================
   Privacy Policy
================================ */

.privacy-header {
    padding: 22px 20px;
    background: #ffffff;
    border-bottom: 1px solid #e2e6ea;
}

.privacy-header-inner {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
}

.privacy-logo {
    color: #222222;
    font-size: 1.05rem;
    font-weight: 700;
    text-decoration: none;
}

.privacy-page {
    padding: 80px 20px;
    background: #f7f8fa;
}

.privacy-container {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    padding: 64px 70px;
    background: #ffffff;
    border: 1px solid #e2e6ea;
    border-radius: 10px;
}

.privacy-title {
    margin-bottom: 48px;
    text-align: center;
}

.privacy-title-en {
    margin-bottom: 8px;
    color: #0f4c81;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.16em;
}

.privacy-title h1 {
    margin: 0;
    color: #222222;
    font-size: 2rem;
}

.privacy-introduction {
    margin-bottom: 32px;
    line-height: 2;
}

/* セクションの共通余白を上書き */
.privacy-page .privacy-section {
    padding: 0;
    margin-top: 32px;
    margin-bottom: 0;
    min-height: auto;
}

.privacy-page .privacy-section + .privacy-section {
    margin-top: 32px;
}

.privacy-page .privacy-introduction + .privacy-section {
    margin-top: 0;
}

.privacy-section h2 {
    margin-bottom: 14px;
    padding-bottom: 10px;
    color: #222222;
    font-size: 1.25rem;
    border-bottom: 1px solid #dfe4e8;
}

.privacy-section p {
    margin-bottom: 10px;
    line-height: 2;
}

.privacy-section ul {
    margin: 12px 0 0;
    padding-left: 1.5em;
    list-style-type: disc;
    list-style-position: outside;
}

.privacy-section li {
    display: list-item;
    margin-bottom: 4px;
    line-height: 1.6;
}

.privacy-section li:last-child {
    margin-bottom: 0;
}

.privacy-external-links {
    margin-top: 20px;
    padding-left: 0;
    list-style: none;
}

.privacy-external-links li {
    display: block;
    list-style: none;
}

.privacy-section a {
    color: #0f4c81;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.privacy-contact {
    margin-top: 24px;
    padding: 24px 28px;
    background: #f7f8fa;
    border-radius: 6px;
}

.privacy-contact dl {
    margin: 0;
}

.privacy-contact dl > div {
    display: grid;
    grid-template-columns: 140px 1fr;
    padding: 16px 0;
    border-bottom: 1px solid #dde2e6;
}

.privacy-contact dl > div:last-child {
    border-bottom: none;
}

.privacy-contact dt {
    font-weight: 700;
}

.privacy-contact dd {
    margin: 0;
    line-height: 1.8;
}

.privacy-date {
    margin-top: 48px;
    text-align: right;
}

.privacy-back {
    margin-top: 48px;
    text-align: center;
}

.privacy-back a {
    display: inline-block;
    padding: 14px 28px;
    color: #ffffff;
    background: #0f4c81;
    border-radius: 4px;
    text-decoration: none;
    transition: opacity 0.3s;
}

.privacy-back a:hover {
    opacity: 0.8;
}

.privacy-footer {
    padding: 24px 20px;
    color: #ffffff;
    background: #111820;
    text-align: center;
}

.privacy-footer p {
    margin: 0;
    font-size: 0.85rem;
}

/* お問い合わせフォーム内のリンク */

.form-privacy a {
    color: inherit;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.form-privacy a:hover {
    opacity: 0.7;
}

@media (max-width: 767px) {

    .privacy-page {
        padding: 40px 16px;
    }

    .privacy-container {
        padding: 42px 22px;
    }

    .privacy-title {
        margin-bottom: 36px;
    }

    .privacy-title h1 {
        font-size: 1.6rem;
    }

    .privacy-introduction {
        margin-bottom: 28px;
    }

    .privacy-page .privacy-section {
        margin-top: 28px;
    }

    .privacy-page .privacy-section + .privacy-section {
        margin-top: 28px;
    }

    .privacy-section h2 {
        font-size: 1.1rem;
        line-height: 1.6;
    }

    .privacy-contact {
        padding: 18px;
    }

    .privacy-contact dl > div {
        display: block;
    }

    .privacy-contact dt {
        margin-bottom: 6px;
    }

    .privacy-date {
        text-align: left;
    }
}
/* 一時的にお客様の声を非表示 */
#voice {
    display: none;
}