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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
}

:root{
    --brand-1: #FF6B35;
    --brand-2: #FF8C00;
    --bg: #0f1113;
    --card-bg: #0f1720;
    --muted: #9aa3ad;
    --glass: rgba(255,255,255,0.03);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ナビゲーション */
.navbar {
    background: linear-gradient(90deg, rgba(15,17,20,0.95) 0%, rgba(20,25,35,0.95) 100%);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(10px);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    color: white;
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu h1 {
    display: none;
}

.nav-link {
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s cubic-bezier(.22,.9,.32,1);
    position: relative;
    cursor: pointer;
    font-size: 0.95rem;
}

.nav-link:hover,
.nav-link.active {
    color: #FF6B35;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #FF6B35, #FF8C00);
}

/* メインコンテンツ */
main {
    min-height: calc(100vh - 200px);
    padding: 3rem 0;
    background: linear-gradient(180deg, #f7f9fb 0%, #f2f6f8 100%);
}

/* ページセクション */
.page-section {
    animation: fadeIn 0.5s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* HOME ページ */
.modern-hero {
    background: linear-gradient(135deg, #FF6B35 0%, #FF8C00 100%);
    color: white;
    padding: 5rem 0 4rem 0;
    margin-bottom: 3rem;
    box-shadow: 0 10px 40px rgba(255, 107, 53, 0.15);
}

.hero-inner{
    display:flex;
    gap:3rem;
    align-items:center;
}

.hero-left{
    flex:1.1;
}

.hero-right{
    flex:0.9;
}

.hero-visual-card {
    background: rgba(255,255,255,0.14);
    border: 1px solid rgba(255,255,255,0.28);
    border-radius: 16px;
    padding: 0.8rem;
    margin-bottom: 1.2rem;
    box-shadow: 0 14px 36px rgba(0,0,0,0.16);
    backdrop-filter: blur(10px);
}

.hero-visual-image {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    border-radius: 12px;
}

.hero-visual-note {
    margin-top: 0.7rem;
    margin-bottom: 0;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.88);
    line-height: 1.45;
}

.modern-hero .hero-title{
    font-size:2.8rem;
    margin-bottom:1.2rem;
    font-family: 'Georgia', serif;
    color: #fff;
    line-height:1.2;
    font-weight: 700;
}

.modern-hero .hero-sub{
    color: rgba(255,255,255,0.95);
    font-size:1.1rem;
    margin-bottom:2rem;
    line-height: 1.8;
}

.hero-ctas {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-features{
    display:grid;
    grid-template-columns:1fr;
    gap:1.2rem;
}

.hero .feature{
    background: rgba(255,255,255,0.12);
    padding:1.2rem;
    border-radius:8px;
    border: 1px solid rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.hero .feature:hover {
    background: rgba(255,255,255,0.18);
    transform: translateY(-2px);
}

.hero .feature h4 {
    color: #fff;
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.hero .feature p {
    color: rgba(255,255,255,0.9);
    font-size: 0.85rem;
    line-height: 1.5;
}

.btn-primary{
    background: #ffffff;
    color:#FF6B35;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.btn-primary:hover {
    background: #f0f0f0;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.btn-secondary{
    background: transparent;
    color: #fff;
    border:2px solid rgba(255,255,255,0.8);
}

.btn-secondary:hover {
    background: rgba(255,255,255,0.1);
    border-color: #fff;
    transform: translateY(-3px);
}

.btn {
    display: inline-block;
    padding: 0.95rem 2.2rem;
    background: linear-gradient(90deg, #FF6B35, #FF8C00);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 700;
    transition: all 0.3s cubic-bezier(.22,.9,.32,1);
    border: none;
    cursor: pointer;
    font-size: 1rem;
    letter-spacing: 0.5px;
}

.btn:hover {
    background: linear-gradient(90deg, #FF8C00, #FFB347);
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(255, 107, 53, 0.3);
}

/* カード */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.card-link .card {
    cursor: pointer;
    height: 100%;
}

.card-link .card-link-text {
    color: #FF8C00;
    font-weight: bold;
    margin-top: 1rem;
    transition: all 0.3s ease;
}

.location-card-link {
    margin-bottom: 2rem;
}

.location-card-link:last-of-type {
    margin-bottom: 0;
}

.card {
    background: #ffffff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(15,17,20,0.08);
    transition: transform 0.35s cubic-bezier(.22,.9,.32,1), box-shadow 0.35s ease, border 0.3s ease;
    border: 1px solid rgba(255,107,53,0.03);
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 16px 48px rgba(255, 107, 53, 0.12);
}

.card h3 {
    color: #222;
    margin-bottom: 1rem;
    font-size: 1.2rem;
    font-weight: 700;
}

.card p {
    color: #666;
    margin-bottom: 1rem;
}

/* Home: 事業紹介セクション */
.services-section {
    margin-top: 3rem;
}

.lead {
    text-align: center;
    max-width: 1000px;
    margin: 0.5rem auto 2rem auto;
    color: #51606a;
    font-size: 1.05rem;
    line-height: 1.9;
    font-weight: 500;
}

.services-tiles .service-card {
    min-height: 260px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    background: linear-gradient(180deg,#ffffff 0%, #fbfcfd 100%);
    border: 1px solid rgba(10,20,30,0.04);
    padding-top: 1.1rem;
}

.service-card-image {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 1rem;
    border: 1px solid rgba(255, 140, 0, 0.16);
    box-shadow: 0 4px 14px rgba(15, 17, 20, 0.08);
}

.service-card h3 {
    color: var(--brand-1);
    font-size: 1.2rem;
    font-weight: 700;
}

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

.card-link {
    text-decoration: none;
}

/* Service detail pages */
.service-page-hero {
    margin: -0.6rem 0 1.6rem;
}

.service-page-hero-image {
    width: 100%;
    display: block;
    height: clamp(220px, 34vw, 340px);
    object-fit: cover;
    border-radius: 14px;
    border: 1px solid rgba(255, 140, 0, 0.14);
    box-shadow: 0 10px 30px rgba(15, 17, 20, 0.1);
    background: #fff;
}

.service-overview-card {
    margin-bottom: 1.1rem;
}

.detail-card-image {
    width: 100%;
    height: 132px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 0.9rem;
    border: 1px solid rgba(255, 140, 0, 0.14);
    background: linear-gradient(180deg, #fffaf6 0%, #fff3e7 100%);
}

/* Case section */
.case-section .card{
    background: #ffffff;
}

/* Minor responsive tweaks for modern hero */
@media (max-width: 992px){
    .hero-inner{flex-direction:column}
    .modern-hero .hero-title{font-size:2rem}
}

/* Hero のタイポグラフィを上品に */
.hero {
    background: radial-gradient(circle at 20% 20%, rgba(255,140,0,0.95), rgba(255,107,53,0.95));
    padding: 5rem 0;
}

.hero h2 {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.btn {
    border-radius: 999px;
    padding: 0.9rem 2.2rem;
}

.card-content {
    display: flex;
    flex-direction: row;
    height: 100%;
    justify-content: space-between;
}

.card-content iframe {
    width: 45%;
    height: 350px;
    border: none;
}

.card-content img {
    width: 45%;
    height: 350px;
    object-fit: cover;
}


/* テーブル */
.table-container {
    overflow-x: auto;
    margin: 2rem 0;
}

table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(15,17,20,0.08);
}

thead {
    background: linear-gradient(90deg, #FF6B35 0%, #FF8C00 100%);
    color: white;
}

th, td {
    padding: 1.2rem;
    text-align: left;
    border-bottom: 1px solid #f0f0f0;
    font-weight: 500;
}

th {
    font-weight: 700;
    letter-spacing: 0.3px;
}

tbody tr:hover {
    background-color: #f8fafb;
}

/* フォーム */
.form-group {
    margin-bottom: 1.5rem;
}

label {
    display: block;
    margin-bottom: 0.6rem;
    font-weight: 700;
    color: #222;
    font-size: 0.95rem;
    letter-spacing: 0.2px;
}

input, textarea, select {
    width: 100%;
    padding: 0.95rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

input:focus, textarea:focus, select:focus {
    outline: none;
    border-color: #FF6B35;
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

.form-container {
    max-width: 760px;
    margin: 2rem auto;
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(15,17,20,0.08);
    border: 1px solid rgba(255,107,53,0.03);
}

.contact-callout-wrap {
    margin-top: 3rem;
}

.contact-callout-card {
    text-align: center;
    max-width: 760px;
    margin: 0 auto;
}

.contact-callout-heading {
    font-size: clamp(1.5rem, 3.2vw, 2rem);
    color: #1f2d3a;
    margin-bottom: 0.9rem;
    letter-spacing: 0.03em;
    font-weight: 800;
}

.contact-callout-number {
    margin: 0;
}

.contact-callout-number a {
    color: #FF6B35;
    font-weight: 700;
    text-decoration: none;
    font-size: clamp(1.7rem, 4.2vw, 2.5rem);
    line-height: 1.2;
}

.contact-callout-number a:hover {
    color: #FF8C00;
}

.phone-link {
    color: #FF6B35;
    font-weight: 700;
    text-decoration: none;
    font-size: clamp(1.7rem, 4.2vw, 2.5rem);
    line-height: 1.2;
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
}

.phone-link:hover {
    color: #FF8C00;
}

.phone-icon {
    width: 1.05em;
    height: 1.05em;
    object-fit: contain;
    transform: translateY(1px);
}

/* セクションタイトル */
.section-title {
    text-align: center;
    font-size: 2.4rem;
    color: #222;
    margin-bottom: 3rem;
    position: relative;
    padding-bottom: 1.2rem;
    font-weight: 700;
    letter-spacing: 0.3px;
}

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

.greeting-section {
    padding: 3rem 0;
    background: linear-gradient(180deg, #fff 0%, #fff9f2 100%);
}

.greeting-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 2rem;
    align-items: center;
}

.greeting-text h3 {
    margin-bottom: 1rem;
    color: #333;
    font-size: 1.6rem;
    text-align: start;
}

.greeting-text p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 1rem;
    text-align: start;
}

.greeting-photo-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
}

.greeting-photo {
    width: 100%;
    max-width: 320px;
}

.greeting-smart {
    display: none;
}

@media (max-width: 992px) {
    .greeting-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .greeting-photo-wrap {
        margin-top: 1.5rem;
    }
}

/* 会社概要 */
.company-list dl {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
}

.list-item {
    display: flex;
    padding: 1rem 0;
    border-bottom: solid 2px #FF8C00;
    width: calc(50% - 48px / 2);
    margin-right: 48px;
}

.list-item:nth-child(2n+2) {
    margin-right: 0;
}

.list-item dt {
    width: 160px;
    color: #7d8492;
}

.list-item dd {
    margin-top: 0;
    width: calc(100% - 170px);
}

.list-item.-full {
    width: 100%;
    margin-right: 0;
}

/* フッター */
.footer {
    background: linear-gradient(90deg, rgba(15,17,20,0.95) 0%, rgba(20,25,35,0.95) 100%);
    color: white;
    text-align: center;
    padding: 3rem 0;
    margin-top: 4rem;
    border-top: 1px solid rgba(255,107,53,0.1);
}

.footer p {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.7);
    font-weight: 500;
}

/* ハンバーガーメニュー */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 6px;
}

.hamburger span {
    width: 26px;
    height: 3px;
    background-color: white;
    border-radius: 2px;
    transition: all 0.4s cubic-bezier(.22,.9,.32,1);
}

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

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

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

.submenu {
    display: none;
}

/* レスポンシブ */
@media (max-width: 768px) {
    .navbar .container {
        flex-direction: column;
        align-items: flex-start;
    }

    .logo h1 {
        font-size: 1.5rem;
        width: 100%;
        margin-bottom: 1rem;
        z-index: 1001;
    }

    .hamburger {
        display: flex;
        position: absolute;
        right: 20px;
        top: 50%;
        transform: translateY(-50%);
        z-index: 1000;
    }

    .nav-menu {
        display: none;
        flex-direction: column;
        gap: 0;
        width: 100vw;
        height: 100vh;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        background: linear-gradient(180deg, rgba(15,17,20,0.98) 0%, rgba(20,25,35,0.98) 100%);
        list-style: none;
        padding: 6rem 0 2rem 0;
        border-top: 1px solid rgba(255,107,53,0.2);
        z-index: 999;
        backdrop-filter: blur(10px);
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu h1 {
        display: block;
        position: absolute;
        font-size: 1.6rem;
        top: 1rem;
        left: 1.5rem;
        font-weight: 700;
        letter-spacing: 0.6px;
    }

    .nav-menu li {
        width: 100%;
        border-bottom: 1px solid rgba(255,255,255,0.05);
    }

    .nav-link {
        display: block;
        padding: 1.2rem 1.8rem;
        color: rgba(255,255,255,0.85);
        font-size: 1rem;
        font-weight: 500;
        transition: all 0.3s cubic-bezier(.22,.9,.32,1);
    }

    .nav-link:hover {
        background: rgba(255,107,53,0.15);
        color: #FF6B35;
        padding-left: 2.2rem;
    }

    .nav-link.active {
        color: #FF6B35;
        background: rgba(255,107,53,0.1);
        border-left: 3px solid #FF6B35;
        padding-left: 1.5rem;
    }

    .nav-link.active::after {
        display: none;
    }

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

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

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

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

    .service-card-image {
        height: 180px;
    }

    .service-page-hero {
        margin-top: -0.2rem;
        margin-bottom: 1.2rem;
    }

    .service-page-hero-image {
        height: 220px;
    }

    .detail-card-image {
        height: 148px;
    }

    .card-content {
        display: flex;
        flex-direction: column;
        height: 100%;
        justify-content: space-between;
    }

    .card-content iframe {
        width: 100%;
        height: 250px;
        border: none;
    }

    .card-content img {
        width: 100%;
        height: 250px;
        object-fit: cover;
    }

    table {
        font-size: 0.9rem;
    }

    th, td {
        padding: 0.75rem;
    }

    .form-container {
        padding: 1.5rem 1rem;
    }

    input, textarea, select {
        font-size: 16px; /* iOSでのズーム防止 */
    }

    main {
        min-height: calc(100vh - 150px);
        padding: 2rem 0;
    }
}

@media (max-width: 480px) {
    .logo h1 {
        font-size: 1.2rem;
    }

    .hero h2 {
        font-size: 1.5rem;
    }

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

    .btn {
        padding: 0.7rem 1.5rem;
        font-size: 0.9rem;
    }

    .card {
        padding: 1.5rem 1rem;
    }

    .service-card-image {
        height: 160px;
    }

    .service-page-hero-image {
        height: 190px;
    }

    .detail-card-image {
        height: 136px;
    }

    .card h3 {
        font-size: 1.1rem;
    }

    .nav-menu li {
        width: 100%;
    }

    .nav-link {
        padding: 0.8rem 1rem;
    }

    .table-container {
        overflow-x: auto;
    }

    table {
        font-size: 0.8rem;
    }

    th, td {
        padding: 0.5rem;
    }

    .company-list dl {
        display: block;
        width: 100%;
    }

    .list-item {
        display: block;
        padding: 1rem 0;
        border-bottom: solid 2px #FF8C00;
        width: calc(100%);
        margin-right: 0;
    }

    .list-item dt {
        width: auto;
        color: #7d8492;
    }

    .list-item dd {
        margin-top: 0;
        width: calc(100%);
    }

    .greeting-photo-wrap {
        display: none;
    }

    .greeting-smart {
        display: flex;
        justify-content: space-around;
    }

    .greeting-content {
        flex-direction: column;
        text-align: start;
        margin-top: 40px;
    }

    .greeting-photo-smart {
        width: 100%;
        max-width: 180px;
    }

}

/* Company & Staff セクション */
.company-staff-section {
    margin-top: 4rem;
    margin-bottom: 2rem;
}

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

.info-card {
    display: block;
    text-decoration: none;
    color: inherit;
    border-radius: 12px;
    padding: 2.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #fbfcfd 100%);
    box-shadow: 0 8px 32px rgba(15,17,20,0.08);
    transition: all 0.4s cubic-bezier(.22,.9,.32,1);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255,107,53,0.05);
}

.info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #FF6B35, #FF8C00);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.info-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(255,107,53,0.12);
}

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

.info-card-content h3 {
    font-size: 1.5rem;
    color: #222;
    margin-bottom: 0.8rem;
    font-weight: 700;
}

.info-card-content p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.info-cta {
    display: inline-block;
    color: #FF6B35;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
}

.info-card:hover .info-cta {
    transform: translateX(4px);
    color: #FF8C00;
}

/* Franchise map */
.franchise-map-card {
    background: linear-gradient(180deg, #ffffff 0%, #fff9f2 100%);
}

.franchise-map-lead {
    margin-bottom: 1rem;
    color: #51606a;
}

.franchise-map-note {
    margin-top: 1rem;
    margin-bottom: 0;
    color: #5f6f81;
    font-size: 0.92rem;
}

.franchise-map-wrap {
    position: relative;
    max-width: 760px;
    margin: 0 auto;
    background: radial-gradient(circle at 40% 30%, #f3f8ff 0%, #e8f1fc 100%);
    border: 1px solid rgba(70, 110, 160, 0.2);
    border-radius: 16px;
    padding: 0.6rem;
}

.franchise-map {
    width: 100%;
    height: 460px;
    display: block;
    border-radius: 12px;
    overflow: hidden;
}

.franchise-map-error {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #24303d;
    background: linear-gradient(180deg, #fff 0%, #f7fbff 100%);
    border: 1px dashed rgba(70, 110, 160, 0.4);
    border-radius: 12px;
    padding: 1rem;
    font-weight: 600;
}

.franchise-detail-list {
    margin-top: 1.5rem;
    display: grid;
    gap: 0.8rem;
}

.franchise-detail {
    display: none;
    border: 1px solid rgba(255, 140, 0, 0.25);
    border-radius: 10px;
    background: #fff;
    padding: 1rem 1.1rem;
}

.franchise-detail.active {
    display: block;
    animation: fadeIn 0.25s ease;
}

.franchise-detail h3 {
    margin-bottom: 0.4rem;
    color: #283644;
}

.franchise-detail-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.8rem;
    margin-bottom: 0.4rem;
}

.franchise-detail-head h3 {
    margin-bottom: 0;
}

.franchise-detail-switch {
    display: flex;
    gap: 0.4rem;
    flex-shrink: 0;
}

.franchise-switch-btn {
    width: 32px;
    height: 32px;
    border-radius: 999px;
    border: 1px solid rgba(255, 140, 0, 0.35);
    background: #fff7ee;
    color: #ff6b35;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
}

.franchise-switch-btn:hover {
    background: #ff8c00;
    color: #fff;
}

.franchise-switch-btn:focus-visible {
    outline: 3px solid rgba(20, 120, 255, 0.35);
    outline-offset: 1px;
}

.franchise-detail p {
    margin-bottom: 0;
}

.franchise-detail-meta {
    margin-top: 0.9rem;
    display: grid;
    grid-template-columns: 88px 1fr;
    gap: 0.35rem 0.8rem;
}

.franchise-detail-meta dt {
    color: #6a7785;
    font-weight: 700;
}

.franchise-detail-meta dd {
    margin: 0;
    color: #334355;
}

.franchise-detail-meta a {
    color: #1d5ea8;
    word-break: break-all;
}

.franchise-detail-meta a:hover {
    color: #ff6b35;
}

/* レスポンシブ: Company & Staff */
@media (max-width: 768px) {
    .info-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .info-card {
        padding: 2rem;
    }

    .info-card-content h3 {
        font-size: 1.3rem;
    }

    /* Hero responsive */
    .hero-inner {
        flex-direction: column;
        gap: 2rem;
    }

    .modern-hero .hero-title {
        font-size: 2rem;
    }

    .modern-hero .hero-sub {
        font-size: 1rem;
    }

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

    .btn {
        width: 100%;
        text-align: center;
    }

    /* サブメニュー */
    .submenu {
        display: none;
        flex-direction: column;
        background: rgba(20,25,35,0.95);
        padding-left: 2rem;
    }

    .submenu.active {
        display: flex;
        list-style: "-";
    }

    .submenu li {
        border-bottom: 1px solid rgba(255,255,255,0.05);
    }

    .submenu a {
        display: block;
        padding: 0.8rem 1rem;
        color: rgba(255,255,255,0.7);
        text-decoration: none;
        font-size: 0.9rem;
        transition: all 0.3s ease;
    }

    .submenu a:hover {
        background: rgba(255,107,53,0.15);
        color: #FF6B35;
        padding-left: 1.5rem;
    }

    .franchise-map-wrap {
        padding: 0.45rem;
    }

    .franchise-map {
        height: 380px;
    }

    .franchise-detail-meta {
        grid-template-columns: 1fr;
        gap: 0.15rem;
    }
}
