/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    overflow-x: hidden;
    max-width: 100%;
}

body {
    font-family: 'Noto Sans JP', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    max-width: 100%;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    overflow-x: hidden;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-footprint {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    opacity: 0.2;
    z-index: 0;
}

.logo h2 {
    color: #4A90E2;
    font-weight: 700;
    font-size: 1.3rem;
    letter-spacing: 1px;
    position: relative;
    z-index: 1;
    white-space: nowrap;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.8);
}

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

@media (min-width: 1025px) {
    .nav-menu {
        display: flex !important;
        position: static !important;
        flex-direction: row !important;
        background: transparent !important;
        padding: 0 !important;
        box-shadow: none !important;
        margin-top: 0 !important;
        max-height: none !important;
        border-top: none !important;
    }
    
    .nav-menu li {
        margin: 0 !important;
    }
    
    .nav-menu a {
        padding: 0 !important;
        font-size: 1rem !important;
        border-radius: 0 !important;
    }
    
    .nav-cta {
        display: block !important;
    }
}

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a:hover {
    color: #4A90E2;
}

.nav-menu a::after {
    content: none;
    display: none;
}

.nav-menu a:hover::after {
    content: none;
    display: none;
}

.btn-primary {
    background: linear-gradient(135deg, #4A90E2, #5BA0F2);
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    display: inline-block;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 92, 255, 0.3);
}

.btn-secondary {
    background: transparent;
    color: #4A90E2;
    padding: 0.8rem 1.5rem;
    border: 2px solid #4A90E2;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: #4A90E2;
    color: white;
    transform: translateY(-2px);
}

.btn-white {
    background: white;
    color: #4A90E2;
    padding: 0.8rem 1.5rem;
    border: 2px solid #4A90E2;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-white:hover {
    background: #f8faff;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 92, 255, 0.2);
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.btn-extra-large {
    padding: 1.2rem 2.5rem;
    font-size: 1.2rem;
    font-weight: 700;
    width: 100%;
    margin-top: 1rem;
}

.hero-line-button {
    margin-top: 1.5rem;
    width: 100%;
}

.btn-line-large {
    background: linear-gradient(135deg, #00C300, #00E676);
    color: white;
    padding: 0;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: inline-block;
    width: 350px;
    height: 64.14px;
    line-height: 64.14px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0, 195, 0, 0.3);
}

.btn-line-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(0, 195, 0, 0.4);
    background: linear-gradient(135deg, #00B300, #00D676);
}

/* Hero Section */
.hero {
    position: relative;
    height: 80vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 60px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-image {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 92, 255, 0.3), rgba(0, 119, 255, 0.1));
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.hero-text {
    max-width: 600px;
    color: white;
    width: 100%;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.hero-title-main {
    display: block;
    background: linear-gradient(45deg, #fff, #f0f8ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-title-sub {
    display: block;
    color: #FFD700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.6rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-usp {
    margin-bottom: 2.5rem;
}

.usp-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.usp-item i {
    color: #FFD700;
    margin-right: 1rem;
    font-size: 1.2rem;
}

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

.hero-badge {
    position: absolute;
    bottom: 40px;
    right: 40px;
    z-index: 3;
}

.badge-content {
    background: linear-gradient(135deg, #FF6B35, #FF8E53);
    color: white;
    padding: 1.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(255, 107, 53, 0.3);
    transform: rotate(5deg);
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: rotate(5deg) translateY(0px); }
    50% { transform: rotate(5deg) translateY(-10px); }
}

.badge-text {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.badge-sub {
    display: block;
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Section Styles */
.section-header {
    text-align: center;
    margin-bottom: 2rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #4A90E2;
    margin-bottom: 1rem;
    position: relative;
}

.section-title::after {
    content: none;
    display: none;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.section-note {
    font-size: 1rem;
    color: #4A90E2;
    max-width: 600px;
    margin: 1rem auto 0;
    font-weight: 600;
}

/* Reasons Section */
.reasons {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8faff, #f0f8ff);
}

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

.reason-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 92, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.reason-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #4A90E2, #5BA0F2);
}

.reason-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 92, 255, 0.2);
}

.reason-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #4A90E2, #5BA0F2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.reason-icon i {
    font-size: 2rem;
    color: white;
}

.reason-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #333;
}

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

.reason-benefit {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-block;
}

/* Services Section */
.services {
    padding: 2rem 0 2rem;
    background: white;
    overflow: hidden;
}

.services-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    overflow: hidden;
}

.services-image {
    position: relative;
}

.service-main-image {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.service-main-image:hover {
    transform: scale(1.02);
}

.services-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.service-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, #f8faff, #f0f8ff);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.service-item:hover {
    transform: translateX(5px);
    box-shadow: 0 10px 25px rgba(0, 92, 255, 0.1);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #4A90E2, #5BA0F2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.service-icon i {
    font-size: 1.5rem;
    color: white;
}

.service-content h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #333;
}

.service-content p {
    color: #666;
    margin-bottom: 0.5rem;
}

.service-price {
    color: #4A90E2;
    font-weight: 600;
    font-size: 1.1rem;
}

/* Works Section */
.works {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f0f8ff, #e6f3ff);
}

.works-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
}

.work-item {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.work-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.work-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    height: 250px;
}

.work-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.work-image:hover {
    transform: scale(1.1);
}

.work-info {
    padding: 2rem;
}

.work-info h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #333;
}

.work-info p {
    color: #666;
    font-size: 0.95rem;
}

/* Pricing Section */
.pricing {
    padding: 2rem 0 2rem;
    background: white;
}

.pricing-table-container {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    margin-bottom: 3rem;
}

.pricing-table-container h3 {
    text-align: center;
    margin-bottom: 2rem;
    color: #4A90E2;
    font-size: 2rem;
    font-weight: 700;
}

.pricing-table {
    width: 100%;
    min-width: 600px;
    border-collapse: collapse;
    table-layout: fixed;
}

.pricing-table th,
.pricing-table td {
    padding: 1rem 0.8rem;
    text-align: center;
    border-bottom: 1px solid #eee;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

/* 料金の数字と単位のスタイル */
.price-number {
    font-size: 1.4rem;
    font-weight: 700;
    color: inherit;
}

.price-unit {
    font-size: 0.8rem;
    font-weight: 400;
    color: inherit;
    margin-left: 2px;
}

.pricing-table th {
    font-weight: 700;
    font-size: 1.1rem;
    color: white;
}

.room-type-header {
    background: #333 !important;
    width: 25%;
}

.ulm-price-header {
    background: #FF6B35 !important;
    width: 25%;
}

.company-a-price-header {
    background: #4A90E2 !important;
    width: 25%;
}

.company-b-price-header {
    background: #357ABD !important;
    width: 25%;
}

.pricing-table tbody tr:nth-child(even) {
    background: rgba(0, 92, 255, 0.05);
}

.room-type-cell {
    background: #f8f9fa;
    font-weight: 600;
    color: #333;
    text-align: center;
}

.ulm-price-cell {
    color: #FF6B35;
    font-weight: 700;
    font-size: 1.2rem;
    background: white;
}

.company-a-price-cell,
.company-b-price-cell {
    color: #666;
    font-weight: 600;
    font-size: 1.1rem;
}

.feature-row {
    border-top: 2px solid #4A90E2;
}

.feature-label-cell {
    background: #f8f9fa;
    font-weight: 700;
    color: #333;
    font-size: 1.1rem;
}

.ulm-feature-cell {
    background: #fff8f0;
    color: #FF6B35;
    font-weight: 600;
    font-size: 1rem;
}

.ulm-feature-cell strong {
    color: #FF4500;
    font-size: 1.1rem;
}

.company-a-feature-cell,
.company-b-feature-cell {
    color: #666;
    font-weight: 500;
    font-size: 0.95rem;
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.pricing-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    border: 2px solid transparent;
}

.pricing-card.featured {
    border-color: #4A90E2;
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(0, 92, 255, 0.2);
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.card-header {
    text-align: center;
    margin-bottom: 2rem;
}

.card-header h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #333;
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    color: #4A90E2;
}

.card-features ul {
    list-style: none;
}

.card-features li {
    padding: 0.8rem 0;
    border-bottom: 1px solid #eee;
    position: relative;
    padding-left: 2rem;
}

.card-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #4A90E2;
    font-weight: bold;
}

.comparison-table {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    margin: 0;
    max-width: 100%;
    width: 100%;
}

.comparison-table h3 {
    text-align: center;
    margin-bottom: 2rem;
    color: #4A90E2;
    font-size: 2.5rem;
    font-weight: 700;
}

.comparison-table table {
    width: 100%;
    min-width: 1000px;
    border-collapse: collapse;
    table-layout: fixed;
}

.comparison-table th,
.comparison-table td {
    padding: 1.2rem 0.8rem;
    text-align: left;
    border-bottom: 1px solid #eee;
    word-wrap: break-word;
    overflow-wrap: break-word;
    min-height: 120px;
    vertical-align: middle;
}

.comparison-table th {
    background: linear-gradient(135deg, #4A90E2, #5BA0F2);
    color: white;
    font-weight: 600;
}

.comparison-table tr:nth-child(even) {
    background: none;
}

/* ULMのヘッダー部分（オレンジ背景に白文字） */
.comparison-table th.ulm-header {
    background: #FF6B35 !important;
    color: white !important;
    font-weight: 800;
    font-size: 1.1em;
    border: none !important;
    border-radius: 0;
    box-shadow: none;
    transform: none;
    text-align: center
}

/* 会社Aのヘッダー部分（青色背景に白文字） */
.comparison-table th.company-a-header {
    background: #4A90E2 !important;
    color: white !important;
    font-weight: 600;
    font-size: 1.1em;
    text-align: center
}

/* 会社Bのヘッダー部分（青色背景に白文字） */
.comparison-table th.company-b-header {
    background: #357ABD !important;
    color: white !important;
    font-weight: 600;
    font-size: 1.1em;
    text-align: center
}

/* ULMの欄をオレンジ色で目立たせる（文字と枠で強調） */
.comparison-table td.ulm-cell {
    color: #333 !important;
    font-weight: 600;
    font-size: 1.1em;
    padding: 1.2rem 1rem;
    border: none !important;
    border-radius: 0;
    background: white !important;
    box-shadow: none;
    position: relative;
    transform: none;
    text-align: center;
}

/* 会社Aの欄のスタイル（青色の文字と枠） */
.comparison-table td.company-a-cell {
    color: #333;
    font-weight: 600;
    border: none;
    padding: 1.2rem 1rem;
    font-size: 1.1em;
    text-align: center;
    background: white;
}

/* 会社Bの欄のスタイル（青色の文字と枠） */
.comparison-table td.company-b-cell {
    color: #333;
    font-weight: 600;
    border: none;
    padding: 1.2rem 1rem;
    font-size: 1.1em;
    text-align: center;
    background: white;
}

/* シンボルのスタイル */
.comparison-table .symbol {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    display: block;
}

/* ULMのシンボル（オレンジの塗りつぶし円） */
.comparison-table .ulm-symbol {
    color: #FF6B35;
}

/* 会社Aのシンボル（青色の枠線円） */
.comparison-table .company-a-symbol {
    color: #4A90E2;
}

/* 会社Bのシンボル（青色の枠線円または×） */
.comparison-table .company-b-symbol {
    color: #357ABD;
}

/* 比較項目の欄 */
.comparison-table td.item-cell {
    background: #f8f9fa;
    font-weight: 600;
    color: #333;
    text-align: left;
    padding: 1.2rem 0.8rem;
    font-size: 1rem;
    vertical-align: middle;
    align-items: flex-start;
    gap: 0.8rem;
}

.item-icon {
    width: 35px;
    height: 35px;
    background: linear-gradient(135deg, #4A90E2, #5BA0F2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.item-icon i {
    font-size: 1rem;
    color: white;
}

.item-text {
    flex: 1;
    line-height: 1.4;
    margin-top: 5px;
}

/* ULMセル内のハイライト */
.comparison-table td.ulm-cell .highlight {
    color: #FF4500;
    font-weight: 800;
    font-size: 0.9em;
    display: block;
    margin-top: 0.3rem;
    text-shadow: 0 1px 2px rgba(255, 69, 0, 0.2);
}

.payment-note {
    text-align: center;
    margin-top: 2rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 15px;
    border: 2px solid #dee2e6;
}

.payment-note p {
    color: #495057;
    font-weight: 600;
    font-size: 1.1em;
    margin: 0;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8);
}

/* Campaign Section */
.campaign {
    padding: 2rem 0 2rem;
    background: linear-gradient(135deg, #fff8f0, #fff0e6);
}

.campaign-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.campaign-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.campaign-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #FF6B35, #FF8E53);
}

.campaign-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 107, 53, 0.2);
}

.campaign-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #FF6B35, #FF8E53);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.campaign-icon i {
    font-size: 2rem;
    color: white;
}

.campaign-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #333;
}

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

/* FAQ Section */
.faq {
    padding: 2rem 0 2rem;
    background: white;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 15px;
    margin-bottom: 1rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.faq-question {
    padding: 2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(135deg, #f8faff, #f0f8ff);
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: linear-gradient(135deg, #f0f8ff, #e6f3ff);
}

.faq-question h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    margin: 0;
}

.faq-question i {
    color: #4A90E2;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 2rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 2rem 2rem;
    max-height: 200px;
}

.faq-answer p {
    color: #666;
    line-height: 1.6;
}

/* Contact Section */
.contact {
    padding: 2rem 0 2rem;
    background: linear-gradient(135deg, #f0f8ff, #e6f3ff);
}

.contact-content {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    width: 100%;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-method {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.contact-method:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.method-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #4A90E2, #5BA0F2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.method-icon i {
    font-size: 1.5rem;
    color: white;
}

.method-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #333;
}

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

.btn-line {
    background: #00C300;
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-line:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 195, 0, 0.3);
}

.btn-phone {
    background: #4A90E2;
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-phone:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 92, 255, 0.3);
}

.form {
    max-width: 600px;
    width: 100%;
    margin: 0 auto;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #333;
}

.form-group input {
    width: 100%;
    padding: 1rem;
    border: 2px solid #eee;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: #4A90E2;
    box-shadow: 0 0 0 3px rgba(0, 92, 255, 0.1);
}

.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #eee;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: 'Noto Sans JP', sans-serif;
    resize: vertical;
}

.form-group textarea:focus {
    outline: none;
    border-color: #4A90E2;
    box-shadow: 0 0 0 3px rgba(0, 92, 255, 0.1);
}

.form-note {
    text-align: center;
    color: #666;
    font-size: 0.9rem;
    margin-top: 1rem;
    padding: 1rem;
    background: rgba(0, 92, 255, 0.05);
    border-radius: 10px;
    border-left: 4px solid #4A90E2;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
    color: white;
    padding: 3rem 0 1rem;
}

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

.footer-info h3 {
    color: #4A90E2;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.footer-info p,
.footer-contact p {
    margin-bottom: 0.5rem;
    opacity: 0.8;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.social-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #4A90E2, #5BA0F2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 92, 255, 0.3);
}

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

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 25px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1002;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 3px;
    background: #4A90E2;
    border-radius: 3px;
    transition: all 0.3s ease;
}

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

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

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

/* Responsive Design */
@media (max-width: 1024px) {
    .hamburger {
        display: flex;
    }
    
    .nav-container {
        position: relative;
    }
    
    .nav-menu {
        display: none;
        position: fixed;
        top: 58px;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 0.8rem 1rem;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        z-index: 1001;
        max-height: calc(100vh - 58px);
        overflow-y: auto;
        border-top: 1px solid rgba(0, 92, 255, 0.1);
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .nav-menu li {
        margin: 0.2rem 0;
    }
    
    .nav-menu a {
        display: block;
        padding: 0.6rem 1rem;
        font-size: 1rem;
        border-radius: 8px;
        transition: background 0.3s ease;
    }
    
    .nav-menu a:hover {
        background: rgba(0, 92, 255, 0.1);
    }
    
    .nav-cta {
        display: none;
    }
}

@media (max-width: 768px) {
    .logo h2 {
        font-size: 1rem;
        letter-spacing: 0.5px;
    }
    
    .logo-footprint {
        width: 40px;
        height: 40px;
    }
    

    
    .payment-note {
        margin-top: 1.5rem;
        padding: 1.2rem;
    }
    
    .payment-note p {
        font-size: 1em;
    }
    
    .hero {
        height: 70vh;
        padding-top: 70px;
        padding-bottom: 2rem;
    }
    
    .hero-content {
        text-align: center;
    }

    .hero-title {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }
    
    .hero-title-main,
    .hero-title-sub {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        line-height: 1.5;
        margin-bottom: 1.5rem;
    }
    
    .hero-usp {
        margin-bottom: 1.5rem;
    }
    
    .usp-item {
        font-size: 0.9rem;
        margin-bottom: 0.8rem;
    }
    
    .usp-item i {
        font-size: 1rem;
        margin-right: 0.5rem;
    }
    
    .hero-buttons {
        flex-direction: row;
        gap: 0.5rem;
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .btn-large {
        padding: 0.8rem 1rem;
        font-size: 0.9rem;
        flex: 1;
        min-width: 120px;
        max-width: 150px;
    }
    
    .hero-line-button {
        margin-top: 1rem;
        text-align: center;
    }
    
    .btn-line-large {
        width: 100%;
        max-width: 280px;
        height: 50px;
        line-height: 50px;
        font-size: 1rem;
    }
    
    .hero-badge {
        display: none;
    }
    
    .services-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .hero-badge {
        bottom: 20px;
        right: 20px;
    }
    
    .badge-content {
        padding: 1rem;
    }
    
    .badge-text {
        font-size: 1.2rem;
    }

    .payment-note {
        font-size: 0.7rem;
        margin-top: 1rem;
        margin-bottom: 1rem;
    }
    
    .comparison-table {
        padding: 0.5rem;
        margin: 0;
        max-width: 100%;
        width: 100%;
    }
    
    .comparison-table table {
        min-width: auto;
        width: 100%;
    }
    
    .comparison-table h3 {
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }
    
    .comparison-table th.ulm-header {
        background: #FF6B35 !important;
        color: white !important;
        font-size: 0.7rem;
    }
    
    .comparison-table th.company-a-header {
        background: #4A90E2 !important;
        color: white !important;
        font-size: 0.7rem;
    }
    
    .comparison-table th.company-b-header {
        background: #357ABD !important;
        color: white !important;
        font-size: 0.7rem;
    }
    
    .comparison-table th,
    .comparison-table td {
        padding: 0.5rem 0.3rem;
        font-size: 0.7rem;
        min-height: auto;
    }
    
    .comparison-table td.ulm-cell {
        font-size: 0.75rem;
        padding: 0.5rem 0.3rem;
        color: #333 !important;
        background: white !important;
    }
    
    .comparison-table td.company-a-cell,
    .comparison-table td.company-b-cell {
        padding: 0.5rem 0.3rem;
        font-size: 0.5rem;
    }
    
    .comparison-table td.item-cell {
        padding: 0.5rem 0.3rem;
        font-size: 0.6rem;
        text-align: left;
    }
    
    .comparison-table .symbol {
        font-size: 1.2rem;
        margin-bottom: 0.2rem;
    }
    
    .comparison-table td.ulm-cell {
        font-size: 0.6rem;
    }
    
    .comparison-table td.ulm-cell .highlight {
        font-size: 0.6rem;
        margin-top: 0.1rem;
    }
    
    .followup-text {
        font-size: 0.5rem;
    }
    
    .item-icon {
        width: 25px;
        height: 25px;
        margin-right: 0.3rem;
    }
    
    .item-icon i {
        font-size: 0.7rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 10px;
    }
    
    .logo h2 {
        font-size: 0.85rem;
        letter-spacing: 0;
    }
    
    .logo-footprint {
        width: 35px;
        height: 35px;
    }
    
    .hero {
        padding-top: 60px;
        /* min-height: calc(100vh - 60px); */
    }
    
    .hero-content {
        padding: 0.8rem;
    }
    
    .hero-title {
        font-size: 1.5rem;
        margin-bottom: 0.8rem;
    }
    
    .hero-title-main,
    .hero-title-sub {
        font-size: 1.5rem;
        line-height: 1.3;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
        line-height: 1.4;
        margin-bottom: 1rem;
    }
    
    .hero-usp {
        margin-bottom: 1rem;
    }
    
    .usp-item {
        font-size: 0.8rem;
        margin-bottom: 0.6rem;
    }
    
    .usp-item i {
        font-size: 0.9rem;
    }
    
    .btn-large {
        padding: 0.7rem 1.2rem;
        font-size: 0.9rem;
    }
    
    .btn-primary {
        text-align: center;
    }
    
    .btn-white {
        text-align: center;
    }

    .btn-line-large {
        max-width: 280px;
        height: 45px;
        line-height: 45px;
        font-size: 0.9rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .pricing-cards {
        grid-template-columns: 1fr;
    }
    
    .works-gallery {
        grid-template-columns: 1fr;
    }
    
    /* 表をさらに小さく */
    .comparison-table,
    .pricing-table-container,
    .options-table-container {
        padding: 0.3rem;
        border-radius: 10px;
    }
    
    .comparison-table th,
    .comparison-table td,
    .pricing-table th,
    .pricing-table td,
    .options-table th,
    .options-table td {
        padding: 0.3rem 0.15rem;
        font-size: 0.55rem;
    }
    
    .comparison-table .symbol {
        font-size: 1rem;
    }
    
    .item-icon {
        width: 20px;
        height: 20px;
    }
    
    .item-icon i {
        font-size: 0.6rem;
    }
    
    .ulm-price-cell {
        font-size: 0.65rem;
    }
    
    .option-price-cell {
        font-size: 0.6rem;
    }
    
    .option-detail-cell {
        font-size: 0.5rem;
    }
    
    /* フローティングバナーのモバイル対応（480px以下） */
    .floating-banners {
        position: fixed;
        right: 15px;
        bottom: 85px;
        top: auto;
        transform: none;
        gap: 10px;
        z-index: 999;
    }
    
    .floating-banner {
        border-radius: 50%;
    }
    
    .floating-banner a {
        padding: 8px;
        min-width: auto;
        justify-content: center;
    }
    
    .banner-text {
        display: none;
    }
    
    .banner-icon {
        width: 40px;
        height: 40px;
        margin-right: 0;
    }
    
    .banner-icon i {
        font-size: 1.3rem;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: auto;
}

/* セクション共通のスクロール調整 */
section {
    scroll-margin-top: 0;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #4A90E2, #5BA0F2);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #0044CC, #0055DD);
}

/* Floating Banners */
.floating-banners {
    position: fixed;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.floating-banner {
    background: white;
    border-radius: 50px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    overflow: hidden;
    opacity: 0.9;
}

.floating-banner:hover {
    transform: translateX(-10px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.25);
    opacity: 1;
}

.floating-banner a {
    display: flex;
    align-items: center;
    text-decoration: none;
    padding: 12px 20px;
    gap: 12px;
    min-width: 200px;
}

.banner-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.banner-icon i {
    font-size: 1.5rem;
    color: white;
}

.banner-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.banner-title {
    font-weight: 700;
    font-size: 0.9rem;
    color: #333;
    line-height: 1.2;
}

.banner-subtitle {
    font-weight: 500;
    font-size: 0.75rem;
    color: #666;
    line-height: 1;
}

/* Instagram Banner */
.instagram-banner .banner-icon {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.instagram-banner:hover .banner-icon {
    background: linear-gradient(45deg, #e08423 0%, #d6582c 25%, #cc1733 50%, #bc1356 75%, #ac0878 100%);
}

/* LINE Banner */
.line-banner .banner-icon {
    background: #06C755;
}

.line-banner:hover .banner-icon {
    background: #05B04A;
}

/* Animation */
@keyframes float-bounce {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-5px); }
}

.floating-banner {
    animation: float-bounce 3s ease-in-out infinite;
}

.floating-banner:nth-child(2) {
    animation-delay: 1.5s;
}

/* Payment Section */
.payment {
    padding: 2rem 0 2rem;
    background: linear-gradient(135deg, #f8faff, #f0f8ff);
}

.payment-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.payment-method {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.payment-method::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #00C300, #00E676);
}

.payment-method:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 195, 0, 0.2);
}

.payment-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #00C300, #00E676);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.payment-icon i {
    font-size: 2rem;
    color: white;
}

.payment-method h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #333;
}

.payment-method p {
    color: #666;
}

/* Users Section */
.users {
    padding: 2rem 0 2rem;
    background: white;
}

.users-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    justify-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.user-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 92, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-align: center;
    border: 2px solid rgba(0, 92, 255, 0.2);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.user-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #4A90E2, #5BA0F2);
}

.user-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 92, 255, 0.2);
}

.user-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #4A90E2, #5BA0F2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.user-icon i {
    font-size: 2rem;
    color: white;
}

.user-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #333;
}

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

.user-benefit {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    display: block;
    margin: auto auto 0 auto;
    width: 200px;
    text-align: center;
}

/* Area Section */
.area {
    padding: 2rem 0 2rem;
    background: linear-gradient(135deg, #f0f8ff, #e6f3ff);
    overflow: hidden;
}

.area-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    overflow: hidden;
}

.area-map {
    position: relative;
}

.area-image {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.area-image:hover {
    transform: scale(1.02);
}

.area-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    justify-content: space-between;
    height: 100%;
}

.area-group {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    flex: 1;
    height: auto;
    min-height: auto;
}

.area-group:hover {
    transform: translateX(4px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.area-group h3 {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #333;
    border-bottom: 2px solid #4A90E2;
    padding-bottom: 0.3rem;
    line-height: 1.3;
}

.area-group ul {
    list-style: none;
}

.area-group li {
    padding: 0.2rem 0;
    color: #666;
    position: relative;
    padding-left: 1.2rem;
    font-size: 0.75rem;
    line-height: 1.4;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.area-group li::before {
    content: '📍';
    position: absolute;
    left: 0;
}

/* Main area (千葉県) styling */
.area-group.main-area {
    flex: 2;
}

.area-group.main-area h3 {
    font-size: 1.3rem;
    color: #4A90E2;
}

.area-columns {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: flex-start;
    overflow: hidden;
}

.area-column {
    flex: 1;
    min-width: 140px;
    list-style: none;
}

.area-group.main-area li {
    font-size: 1.1rem;
    font-weight: 500;
}

/* Sub areas (茨城県・東京都) styling */
.area-group.sub-area {
    flex: 1;
}

.area-group.sub-area h3 {
    font-size: 1.2rem;
    color: #666;
}

.area-group.sub-area li {
    font-size: 1rem;
    font-weight: 400;
    color: #777;
}

/* Company Section */
.company {
    padding: 2rem 0 2rem;
    background: white;
}

.company-content {
    max-width: 600px;
    margin: 0 auto;
}

.company-info {
    background: white;
    border-radius: 0;
    padding: 2rem;
    box-shadow: none;
    border: 1px solid #e0e0e0;
}

.company-details {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.detail-item {
    padding: 0.8rem;
    background: white;
    border-radius: 0;
    border: none;
    transition: all 0.3s ease;
    border-bottom: 1px solid #e0e0e0;
}

.detail-item:hover {
    background: #f8f9fa;
}

.detail-item h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 0.1rem;
    color: #333;
    border-bottom: none;
    padding-bottom: 0;
}

.detail-item p {
    color: #333;
    font-weight: 500;
    font-size: 1.1rem;
}


/* Work Details Section */
.work-details {
    padding: 2rem 0 2rem;
    background: linear-gradient(135deg, #f8faff, #f0f8ff);
}

.work-details-content {
    max-width: 800px;
    margin: 0 auto;
}

.work-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 1.5rem;
}

.work-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.work-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 92, 255, 0.15);
}

.work-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #4A90E2, #5BA0F2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.work-icon i {
    font-size: 1.2rem;
    color: white;
}

.work-item p {
    color: #333;
    font-weight: 500;
    margin: 0;
    line-height: 1.4;
}

/* Options Section */
.options {
    padding: 2rem 0 2rem;
    background: white;
}

.options-table-container {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    margin-bottom: 3rem;
}

.options-table {
    width: 100%;
    min-width: 700px;
    border-collapse: collapse;
    table-layout: fixed;
}

.options-table th,
.options-table td {
    padding: 1rem 0.8rem;
    text-align: left;
    border-bottom: 1px solid #eee;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.options-table th {
    font-weight: 700;
    font-size: 1.1rem;
    color: white;
    text-align: center;
}

.option-name-header {
    background: #4A90E2 !important;
    width: 30%;
}

.option-price-header {
    background: #FF6B35 !important;
    width: 20%;
}

.option-detail-header {
    background: #00C300 !important;
    width: 50%;
}

.options-table tbody tr:nth-child(even) {
    background: rgba(0, 92, 255, 0.05);
}

.option-name-cell {
    font-weight: 600;
    color: #333;
    text-align: center;
}

.option-price-cell {
    color: #FF6B35;
    font-weight: 700;
    font-size: 1.1rem;
    text-align: center;
}

.option-detail-cell {
    color: #666;
    font-weight: 500;
    line-height: 1.4;
}

.additional-services {
    background: linear-gradient(135deg, #f8faff, #f0f8ff);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
}

.additional-services h3 {
    color: #4A90E2;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.additional-services p {
    color: #666;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.reform-examples {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    justify-content: center;
}

.reform-tag {
    background: linear-gradient(135deg, #4A90E2, #5BA0F2);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    display: inline-block;
}

/* Responsive adjustments for new sections */
@media (max-width: 768px) {
    .work-list {
        grid-template-columns: 1fr;
    }
    
    .work-item {
        padding: 1rem;
    }
    
    .options-table-container {
        padding: 0.5rem;
        margin: 0;
        max-width: 100%;
        width: 100%;
    }
    
    .options-table {
        min-width: auto;
        width: 100%;
    }
    
    .options-table th,
    .options-table td {
        padding: 0.4rem 0.2rem;
        font-size: 0.6rem;
        line-height: 1.2;
    }
    
    .option-name-cell {
        font-size: 0.65rem;
    }
    
    .option-price-cell {
        font-size: 0.7rem;
    }
    
    .option-detail-cell {
        font-size: 0.55rem;
        line-height: 1.3;
    }
    
    .reform-examples {
        gap: 0.5rem;
    }
    
    .reform-tag {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }
    
    /* フローティングバナーのモバイル対応（768px以下） */
    .floating-banners {
        position: fixed;
        right: 20px;
        bottom: 90px;
        top: auto;
        transform: none;
        gap: 12px;
        z-index: 999;
    }
    
    .floating-banner {
        border-radius: 50%;
    }
    
    .floating-banner a {
        padding: 10px;
        min-width: auto;
        justify-content: center;
    }
    
    .banner-text {
        display: none;
    }
    
    .banner-icon {
        width: 45px;
        height: 45px;
        margin-right: 0;
    }
    
    .banner-icon i {
        font-size: 1.4rem;
    }
}
/* Responsive adjustments for new sections */
@media (max-width: 768px) {
    .area-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .area-columns {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 0.5rem;
    }
    
    .area-column {
        min-width: auto;
        flex: 1;
        min-width: calc(50% - 0.25rem);
    }
    
    .area-group.main-area li {
        font-size: 1rem;
    }
    
    .area-group.sub-area li {
        font-size: 0.9rem;
    }
    
    .company-details {
        grid-template-columns: 1fr;
    }
    
    .payment-methods,
    .users-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 1024px) and (min-width: 769px) {
    .area-columns {
        gap: 0.8rem;
    }
    
    .area-column {
        min-width: 120px;
    }
    
    .area-group.main-area li {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .area-group {
        padding: 1rem;
    }
    
    .area-columns {
        gap: 0.3rem;
    }
    
    .area-column {
        min-width: calc(50% - 0.15rem);
    }
    
    .area-group.main-area h3 {
        font-size: 1.1rem;
    }
    
    .area-group.sub-area h3 {
        font-size: 1rem;
    }
    
    .area-group.main-area li {
        font-size: 0.9rem;
    }
    
    .area-group.sub-area li {
        font-size: 0.8rem;
    }
    
    .pricing-table-container {
        padding: 0.5rem;
        margin: 0;
        max-width: 100%;
        width: 100%;
    }
    
    .pricing-table {
        min-width: auto;
        width: 100%;
    }
    
    .pricing-table th,
    .pricing-table td {
        padding: 0.5rem 0.2rem;
        font-size: 0.65rem;
    }
    
    /* モバイル版の料金数字と単位 */
    .price-number {
        font-size: 0.9rem;
        font-weight: 700;
    }
    
    .price-unit {
        font-size: 0.5rem;
        font-weight: 400;
    }
    
    .pricing-table-container h3 {
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }
    
    .ulm-price-cell {
        font-size: 0.75rem;
    }
    
    .ulm-feature-cell {
        font-size: 0.6rem;
    }
    
    .ulm-feature-cell strong {
        font-size: 0.6rem;
    }
    
    .company-a-feature-cell,
    .company-b-feature-cell {
        font-size: 0.5rem;
    }

    .section-title {
        font-size: 28px;
    }

    .section-subtitle {
        font-size: 12px;
    }

    .service-content h3 {
        font-size: 16px;
    }

    .service-conten p {
        font-size: 12px;
    }

    .work-item p {
        font-size: 16px;
    }

    .work-icon {
        width: 40px;
        height: 40px;
    }

    .additional-services p {
        font-size: 12px;
    }

    .user-card p {
        font-size: 12px;
    }

    .company-details {
        gap: 7px;
    }

    .detail-item {
        padding: 5px;
    }
    
    .detail-item h3 {
        font-size: 20px;
    }

    .detail-item p {
        font-size: 16px;
    }
    
    .form-group input {
        font-size: 12px;
    }
    
    .form-group textarea {
        font-size: 12px;
    }

    .btn-primary {
        margin: 0 0;
    }

    .user-icon {
        width: 60px;
        height: 60px;
    }
}