/* ===================================
   リセットCSS
   =================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Noto Sans JP', sans-serif;
    line-height: 1.8;
    color: #333;
    background-color: #fff;
}

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

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

ul, ol {
    list-style: none;
}

/* ===================================
   共通スタイル
   =================================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title-en {
    display: block;
    font-family: 'M PLUS Rounded 1c', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #1E88E5;
    letter-spacing: 3px;
    margin-bottom: 10px;
}

.section-title-ja {
    display: block;
    font-size: 32px;
    font-weight: 900;
    color: #333;
    line-height: 1.4;
}

.section-title-white .section-title-en {
    color: #FFB74D;
}

.section-title-white .section-title-ja {
    color: #fff;
}

.section-description {
    text-align: center;
    font-size: 18px;
    color: #666;
    margin-top: -40px;
    margin-bottom: 60px;
}

.section-description-white {
    color: rgba(255, 255, 255, 0.9);
}

/* ボタンスタイル */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 18px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, #FF6F00 0%, #FF8F00 100%);
    color: #fff;
    box-shadow: 0 4px 15px rgba(255, 111, 0, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 111, 0, 0.6);
}

.btn-secondary {
    background: #1E88E5;
    color: #fff;
    box-shadow: 0 4px 15px rgba(30, 136, 229, 0.4);
}

.btn-secondary:hover {
    background: #1976D2;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(30, 136, 229, 0.6);
}

.btn-large {
    padding: 22px 50px;
    font-size: 18px;
}

.btn-line-large {
    width: 100%;
    padding: 20px;
    font-size: 18px;
    margin-top: 20px;
    background: #06C755;
    color: #fff;
}

.btn-line-large:hover {
    background: #05B04A;
    transform: translateY(-2px);
}

.btn-phone-large, .btn-secondary-large {
    width: 100%;
    padding: 20px;
    font-size: 18px;
    margin-top: 20px;
}

.btn-phone-large {
    background: #4CAF50;
    color: #fff;
}

.btn-phone-large:hover {
    background: #45a049;
}

.btn-secondary-large {
    background: #1E88E5;
    color: #fff;
}

.btn-secondary-large:hover {
    background: #1976D2;
}

.btn-submit {
    background: linear-gradient(135deg, #FF6F00 0%, #FF8F00 100%);
    color: #fff;
    width: 100%;
    padding: 20px;
    font-size: 18px;
    cursor: pointer;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 111, 0, 0.4);
}

/* ===================================
   ヘッダー
   =================================== */
.header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-top {
    padding: 20px 0;
}

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

.logo h1 {
    font-size: 24px;
    font-weight: 900;
    color: #1E88E5;
    margin-bottom: 5px;
}

.logo-sub {
    font-size: 12px;
    color: #666;
}

.header-contact {
    display: flex;
    gap: 15px;
    align-items: stretch;
}

.btn-line {
    display: flex;
    align-items: center;
    gap: 15px;
    background: #06C755;
    color: #fff;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 700;
    transition: all 0.3s ease;
    border: 2px solid #06C755;
    min-width: 200px;
}

.btn-line:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(6, 199, 85, 0.4);
    background: #05B04A;
    border-color: #05B04A;
}

.btn-line i {
    font-size: 24px;
}

.btn-line small {
    display: block;
    font-size: 12px;
    font-weight: 400;
}

.btn-line strong {
    display: block;
    font-size: 16px;
}

.btn-phone {
    display: flex;
    align-items: center;
    gap: 15px;
    background: #fff;
    color: #FF6F00;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 700;
    transition: all 0.3s ease;
    border: 2px solid #FF6F00;
    box-shadow: 0 2px 10px rgba(255, 111, 0, 0.2);
    min-width: 200px;
}

.btn-phone:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 111, 0, 0.4);
    background: #FF6F00;
    color: #fff;
}

.btn-phone i {
    font-size: 24px;
    color: #FF6F00;
    transition: color 0.3s ease;
}

.btn-phone:hover i {
    color: #fff;
}

.btn-phone small {
    display: block;
    font-size: 12px;
    font-weight: 400;
}

.btn-phone strong {
    display: block;
    font-size: 20px;
}

/* ナビゲーションバー */
.header-nav {
    background: linear-gradient(135deg, #1E88E5 0%, #1976D2 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-menu {
    display: flex;
    justify-content: center;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 5px;
}

.nav-menu li {
    margin: 0;
}

.nav-menu a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 15px 20px;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.3s ease;
    border-radius: 5px;
}

.nav-menu a:hover {
    background: rgba(255, 255, 255, 0.15);
}

.nav-menu a i {
    font-size: 16px;
}

.nav-menu .nav-cta {
    background: #FF6F00;
    margin-left: 10px;
}

.nav-menu .nav-cta:hover {
    background: #FF8F00;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 111, 0, 0.4);
}

/* ===================================
   ファーストビュー
   =================================== */
.hero {
    position: relative;
    background: #1E88E5;
    color: #fff;
    padding: 100px 0 80px;
    overflow: hidden;
}

/* 背景画像レイヤー */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('https://www.genspark.ai/api/files/s/lUrfOrkI');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

/* グラデーションオーバーレイ（可読性向上） */
.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(30, 136, 229, 0.4) 0%, rgba(25, 118, 210, 0.45) 100%);
    z-index: 2;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.08) 0%, transparent 50%);
    z-index: 3;
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 193, 7, 0.95);
    border: 2px solid #FFC107;
    color: #333;
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 30px;
    animation: pulse 2s infinite;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.hero-badge i {
    font-size: 20px;
    color: #F57C00;
}

.hero-title {
    margin-bottom: 40px;
}

.hero-title-main {
    display: block;
    font-size: 48px;
    font-weight: 900;
    line-height: 1.3;
    margin-bottom: 15px;
    color: #FFF;
    text-shadow: 
        5px 5px 0px rgba(0, 0, 0, 1),
        -3px -3px 0px rgba(0, 0, 0, 1),
        3px -3px 0px rgba(0, 0, 0, 1),
        -3px 3px 0px rgba(0, 0, 0, 1),
        0px 8px 25px rgba(0, 0, 0, 0.9);
}

.hero-title-sub {
    display: block;
    font-size: 28px;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 10px;
    text-shadow: 
        2px 2px 0px rgba(0, 0, 0, 0.7),
        -1px -1px 0px rgba(0, 0, 0, 0.7),
        1px -1px 0px rgba(0, 0, 0, 0.7),
        -1px 1px 0px rgba(0, 0, 0, 0.7),
        0px 3px 10px rgba(0, 0, 0, 0.5);
}

.hero-title-emphasis {
    display: block;
    font-size: 18px;
    font-weight: 700;
    color: #FFF;
    background: rgba(255, 193, 7, 0.95);
    padding: 8px 20px;
    border-radius: 30px;
    display: inline-block;
    margin-top: 10px;
    text-shadow: none;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.95);
    color: #333;
    padding: 15px 25px;
    border-radius: 50px;
    font-weight: 700;
    backdrop-filter: blur(10px);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.hero-feature i {
    font-size: 24px;
    color: #1E88E5;
}

.hero-results {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.result-item {
    text-align: center;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 30px 40px;
    border-radius: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    min-width: 200px;
    transition: all 0.3s ease;
}

.result-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.result-number {
    font-size: 80px;
    font-weight: 900;
    color: #FFD54F;
    line-height: 1;
    margin-bottom: 15px;
    font-family: 'M PLUS Rounded 1c', sans-serif;
    text-shadow: 
        4px 4px 0px rgba(0, 0, 0, 1),
        -2px -2px 0px rgba(0, 0, 0, 1),
        2px -2px 0px rgba(0, 0, 0, 1),
        -2px 2px 0px rgba(0, 0, 0, 1),
        0px 6px 20px rgba(0, 0, 0, 0.8);
    animation: pulse-number 2s ease-in-out infinite;
}

@keyframes pulse-number {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.result-number-percent::after {
    content: '%';
    font-size: 36px;
    margin-left: 8px;
    color: #FFD54F;
}

.result-number[data-unit]::after {
    content: attr(data-unit);
    font-size: 28px;
    margin-left: 8px;
    color: #FFF;
}

.result-item-emphasis {
    border-color: #4CAF50;
    background: rgba(76, 175, 80, 0.2);
}

.result-item-emphasis:hover {
    border-color: #4CAF50;
    background: rgba(76, 175, 80, 0.3);
    box-shadow: 0 8px 30px rgba(76, 175, 80, 0.4);
}

.result-item-emphasis .result-number {
    color: #4CAF50;
    text-shadow: 
        4px 4px 0px rgba(0, 0, 0, 1),
        -2px -2px 0px rgba(0, 0, 0, 1),
        2px -2px 0px rgba(0, 0, 0, 1),
        -2px 2px 0px rgba(0, 0, 0, 1),
        0px 6px 20px rgba(76, 175, 80, 0.6);
}

.result-item-zero {
    border-color: #FF6F00;
    background: rgba(255, 111, 0, 0.15);
}

.result-item-zero:hover {
    border-color: #FF6F00;
    background: rgba(255, 111, 0, 0.25);
    box-shadow: 0 8px 30px rgba(255, 111, 0, 0.4);
}

.result-item-zero .result-number {
    color: #FF6F00;
    text-shadow: 
        4px 4px 0px rgba(0, 0, 0, 1),
        -2px -2px 0px rgba(0, 0, 0, 1),
        2px -2px 0px rgba(0, 0, 0, 1),
        -2px 2px 0px rgba(0, 0, 0, 1),
        0px 6px 20px rgba(255, 111, 0, 0.6);
}



.result-label-top {
    font-size: 22px;
    font-weight: 900;
    color: #FFF;
    text-shadow: 
        3px 3px 0px rgba(0, 0, 0, 0.9),
        -2px -2px 0px rgba(0, 0, 0, 0.9),
        2px -2px 0px rgba(0, 0, 0, 0.9),
        -2px 2px 0px rgba(0, 0, 0, 0.9),
        0px 4px 15px rgba(0, 0, 0, 0.6);
    letter-spacing: 2px;
    margin-bottom: 20px;
    line-height: 1.4;
}

.result-label-bottom {
    font-size: 14px;
    font-weight: 700;
    color: #FFF;
    text-shadow: 
        1px 1px 0px rgba(0, 0, 0, 0.8),
        -1px -1px 0px rgba(0, 0, 0, 0.8),
        1px -1px 0px rgba(0, 0, 0, 0.8),
        -1px 1px 0px rgba(0, 0, 0, 0.8),
        0px 2px 8px rgba(0, 0, 0, 0.5);
    margin-top: 15px;
}

.hero-cta {
    margin-top: 50px;
}

.hero-note {
    margin-top: 15px;
    font-size: 14px;
    opacity: 0.8;
}

/* ===================================
   問題提起セクション
   =================================== */
.problems {
    padding: 100px 0;
    background: #f8f9fa;
}

.problems-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.problem-item {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.3s ease;
}

.problem-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.problem-item i {
    font-size: 36px;
    color: #FF5252;
    flex-shrink: 0;
}

.problem-item p {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.6;
    color: #333;
}

.problems-check {
    background: #fff;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.problems-check h3 {
    font-size: 24px;
    font-weight: 700;
    color: #1E88E5;
    text-align: center;
    margin-bottom: 30px;
}

.check-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.check-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 10px;
}

.check-item i {
    font-size: 24px;
    color: #4CAF50;
    flex-shrink: 0;
}

.check-item span {
    font-size: 15px;
    font-weight: 500;
}

.check-note {
    text-align: center;
    font-size: 18px;
    font-weight: 700;
    color: #FF6F00;
    padding: 20px;
    background: #FFF3E0;
    border-radius: 10px;
}

/* ===================================
   不安セクション（放置すると...）
   =================================== */
.concerns {
    padding: 100px 0;
    background: linear-gradient(135deg, #FFF3E0 0%, #FFE0B2 100%);
    position: relative;
    overflow: hidden;
}

.concerns::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(255, 152, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 111, 0, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.concerns .container {
    position: relative;
    z-index: 1;
}

.concerns-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.concern-item {
    background: #fff;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border-top: 5px solid #FF6F00;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.concern-item::before {
    content: '⚠️';
    position: absolute;
    top: -20px;
    right: -20px;
    font-size: 120px;
    opacity: 0.05;
    transform: rotate(15deg);
}

.concern-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 30px rgba(255, 111, 0, 0.3);
}

.concern-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #FF6F00 0%, #F57C00 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    box-shadow: 0 4px 15px rgba(255, 111, 0, 0.3);
}

.concern-icon i {
    font-size: 40px;
    color: #fff;
}

.concern-item h3 {
    font-size: 22px;
    font-weight: 700;
    color: #FF6F00;
    margin-bottom: 20px;
    text-align: center;
}

.concern-item p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
    text-align: left;
}

.concern-cost {
    background: linear-gradient(135deg, #FFF3E0 0%, #FFE0B2 100%);
    padding: 15px 20px;
    border-radius: 10px;
    border-left: 4px solid #FF6F00;
    font-size: 16px;
    font-weight: 600;
    color: #333;
    text-align: center;
}

.concern-cost span {
    color: #FF6F00;
    font-size: 20px;
    font-weight: 900;
    display: block;
    margin-top: 5px;
}

.concerns-problems {
    background: #fff;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 50px;
}

.concerns-problems h3 {
    font-size: 26px;
    font-weight: 700;
    color: #FF6F00;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

.concerns-problems h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #FF6F00 0%, #F57C00 100%);
    border-radius: 2px;
}

.concerns-problems-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.concerns-problem-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 15px;
    border-left: 4px solid #FF6F00;
    transition: all 0.3s ease;
}

.concerns-problem-item:hover {
    background: #FFF3E0;
    transform: translateX(5px);
    box-shadow: 0 4px 15px rgba(255, 111, 0, 0.2);
}

.concerns-problem-item i {
    font-size: 28px;
    color: #FF6F00;
    flex-shrink: 0;
    margin-top: 5px;
}

.concerns-problem-item p {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.6;
    color: #333;
    margin: 0;
}

.concerns-arrow {
    text-align: center;
    font-size: 60px;
    color: #FF6F00;
    animation: bounce 2s ease-in-out infinite;
    margin: 30px 0;
}

.concerns-cta {
    text-align: center;
    padding: 40px;
    background: linear-gradient(135deg, #fff 0%, #FFF3E0 100%);
    border-radius: 20px;
    border: 3px dashed #FF6F00;
}

.concerns-cta h4 {
    font-size: 28px;
    font-weight: 900;
    color: #FF6F00;
    margin-bottom: 20px;
    line-height: 1.4;
}

.concerns-cta p {
    font-size: 18px;
    color: #555;
    margin-bottom: 0;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-20px);
    }
    60% {
        transform: translateY(-10px);
    }
}

/* ===================================
   解決策セクション（USP）
   =================================== */
.solution {
    padding: 100px 0;
    background: linear-gradient(135deg, #1E88E5 0%, #1565C0 100%);
    color: #fff;
}

.unique-selling-point {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 60px;
    border-radius: 30px;
    border: 3px solid rgba(255, 255, 255, 0.2);
    text-align: center;
}

.usp-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #FFD700 0%, #FFC107 100%);
    color: #333;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 900;
    font-size: 16px;
    margin-bottom: 30px;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.usp-badge i {
    font-size: 24px;
}

.usp-title {
    font-size: 48px;
    font-weight: 900;
    line-height: 1.3;
    margin-bottom: 25px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.usp-description {
    font-size: 20px;
    line-height: 1.8;
    margin-bottom: 50px;
    opacity: 0.95;
}

.usp-description strong {
    color: #FFD54F;
    font-weight: 900;
}

.usp-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.usp-benefit {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 15px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    display: flex;
    gap: 20px;
    align-items: flex-start;
    text-align: left;
}

.usp-benefit i {
    font-size: 32px;
    color: #4CAF50;
    flex-shrink: 0;
}

.usp-benefit strong {
    display: block;
    font-size: 18px;
    margin-bottom: 10px;
}

.usp-benefit p {
    font-size: 14px;
    opacity: 0.9;
    line-height: 1.6;
}

.usp-comparison {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.comparison-item {
    flex: 1;
    min-width: 250px;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
}

.comparison-bad {
    background: rgba(255, 82, 82, 0.2);
    border: 2px solid #FF5252;
}

.comparison-good {
    background: rgba(76, 175, 80, 0.2);
    border: 2px solid #4CAF50;
}

.comparison-item h4 {
    font-size: 20px;
    margin-bottom: 15px;
}

.comparison-item h4 i {
    margin-right: 10px;
}

.comparison-item p {
    font-size: 16px;
    line-height: 1.6;
}

.comparison-arrow {
    font-size: 36px;
    color: #FFD54F;
}

/* ===================================
   選ばれる理由セクション
   =================================== */
.reasons {
    padding: 100px 0;
    background: #fff;
}

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

.reason-card {
    position: relative;
    background: #fff;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 3px solid #f0f0f0;
}

.reason-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    border-color: #1E88E5;
}

.reason-number {
    position: absolute;
    top: -15px;
    left: 30px;
    background: linear-gradient(135deg, #1E88E5 0%, #1976D2 100%);
    color: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 18px;
    box-shadow: 0 4px 15px rgba(30, 136, 229, 0.4);
}

.reason-icon {
    text-align: center;
    margin-bottom: 25px;
    margin-top: 30px;
}

.reason-icon i {
    font-size: 64px;
    color: #1E88E5;
}

.reason-title {
    font-size: 22px;
    font-weight: 900;
    color: #333;
    text-align: center;
    margin-bottom: 20px;
    line-height: 1.4;
}

.reason-description {
    font-size: 15px;
    line-height: 1.8;
    color: #666;
    text-align: center;
}

.reason-description strong {
    display: block;
    color: #FF6F00;
    font-size: 18px;
    margin-top: 10px;
}

.reason-badge {
    display: inline-block;
    background: linear-gradient(135deg, #FFD700 0%, #FFC107 100%);
    color: #333;
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 12px;
    margin-top: 20px;
}

/* ===================================
   料金プランセクション
   =================================== */
.pricing {
    padding: 100px 0;
    background: linear-gradient(180deg, #f8f9fa 0%, #fff 100%);
}

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

.pricing-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 3px solid #f0f0f0;
    position: relative;
}

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

.pricing-card-popular {
    border-color: #FF6F00;
    transform: scale(1.05);
}

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

.pricing-badge {
    position: absolute;
    top: -15px;
    right: 30px;
    background: linear-gradient(135deg, #FF6F00 0%, #FF8F00 100%);
    color: #fff;
    padding: 8px 25px;
    border-radius: 50px;
    font-weight: 900;
    font-size: 14px;
    box-shadow: 0 4px 15px rgba(255, 111, 0, 0.4);
}

.pricing-header {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 2px solid #f0f0f0;
}

.pricing-header h3 {
    font-size: 24px;
    font-weight: 900;
    color: #333;
    margin-bottom: 20px;
}

.pricing-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 5px;
}

.price-amount {
    font-size: 60px;
    font-weight: 900;
    color: #1E88E5;
    font-family: 'M PLUS Rounded 1c', sans-serif;
}

.price-unit {
    font-size: 24px;
    font-weight: 700;
    color: #666;
}

.pricing-features {
    list-style: none;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 0;
    font-size: 15px;
    color: #666;
    border-bottom: 1px solid #f0f0f0;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features i {
    color: #4CAF50;
    font-size: 18px;
    flex-shrink: 0;
}

.pricing-note {
    background: #FFF3E0;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
}

.pricing-note p {
    font-size: 15px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 10px;
}

.pricing-note p:last-child {
    margin-bottom: 0;
}

.pricing-note i {
    color: #FF6F00;
    margin-right: 8px;
}

/* ===================================
   施工の流れセクション
   =================================== */
.flow {
    padding: 100px 0;
    background: #fff;
}

.flow-timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.flow-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, #1E88E5 0%, #1976D2 100%);
    transform: translateX(-50%);
}

.flow-item {
    display: flex;
    align-items: center;
    margin-bottom: 60px;
    position: relative;
}

.flow-item:nth-child(odd) {
    flex-direction: row;
}

.flow-item:nth-child(even) {
    flex-direction: row-reverse;
}

.flow-number {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #1E88E5 0%, #1976D2 100%);
    color: #fff;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 14px;
    box-shadow: 0 4px 15px rgba(30, 136, 229, 0.4);
    z-index: 2;
}

.flow-content {
    width: calc(50% - 60px);
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.flow-item:nth-child(odd) .flow-content {
    margin-right: auto;
}

.flow-item:nth-child(even) .flow-content {
    margin-left: auto;
}

.flow-content:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.flow-content h3 {
    font-size: 20px;
    font-weight: 700;
    color: #1E88E5;
    margin-bottom: 15px;
}

.flow-content h3 i {
    margin-right: 10px;
}

.flow-content p {
    font-size: 15px;
    line-height: 1.8;
    color: #666;
}

/* ===================================
   お客様の声セクション
   =================================== */
.voices {
    padding: 100px 0;
    background: #fff;
}

.voices-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.voice-card {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    padding: 30px;
    transition: all 0.3s ease;
    border: 2px solid #f0f0f0;
}

.voice-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    border-color: #1E88E5;
}

.voice-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 2px solid #f0f0f0;
}

.voice-photo {
    font-size: 64px;
    color: #1E88E5;
    flex-shrink: 0;
}

.voice-info {
    flex: 1;
}

.voice-name {
    font-size: 20px;
    font-weight: 700;
    color: #333;
    margin-bottom: 5px;
}

.voice-detail {
    font-size: 13px;
    color: #666;
    margin-bottom: 10px;
}

.voice-rating {
    color: #FFB300;
    font-size: 16px;
}

.voice-rating i {
    margin-right: 2px;
}

.voice-content {
    margin-bottom: 20px;
}

.voice-title {
    font-size: 16px;
    font-weight: 700;
    color: #1E88E5;
    margin-bottom: 15px;
    line-height: 1.5;
}

.voice-text {
    font-size: 14px;
    line-height: 1.9;
    color: #666;
}

.voice-tags {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.voice-tag {
    background: #E3F2FD;
    color: #1976D2;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.voices-note {
    background: #FFF3E0;
    padding: 20px 30px;
    border-radius: 10px;
    text-align: center;
}

.voices-note p {
    font-size: 13px;
    color: #666;
    margin: 0;
}

.voices-note i {
    color: #FF6F00;
    margin-right: 8px;
}

/* ===================================
   Before/Afterギャラリーセクション
   =================================== */
.gallery {
    padding: 100px 0;
    background: linear-gradient(180deg, #f8f9fa 0%, #fff 100%);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.gallery-item {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.gallery-image {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.gallery-before,
.gallery-after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.gallery-before {
    z-index: 2;
    clip-path: inset(0 50% 0 0);
    transition: clip-path 0.6s ease;
}

.gallery-item:hover .gallery-before {
    clip-path: inset(0 95% 0 0);
}

.gallery-before img,
.gallery-after img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-label {
    position: absolute;
    bottom: 15px;
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 14px;
    z-index: 3;
}

.gallery-label-before {
    left: 15px;
    background: rgba(244, 67, 54, 0.95);
    color: #fff;
}

.gallery-label-after {
    right: 15px;
    background: rgba(76, 175, 80, 0.95);
    color: #fff;
}

.gallery-info {
    padding: 25px;
}

.gallery-info h3 {
    font-size: 18px;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
}

.gallery-details {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 15px;
}

.gallery-details span {
    font-size: 13px;
    color: #666;
    display: flex;
    align-items: center;
    gap: 8px;
}

.gallery-details i {
    color: #1E88E5;
    width: 16px;
}

.gallery-description {
    font-size: 14px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 15px;
}

.gallery-price {
    background: linear-gradient(135deg, #FF6F00 0%, #FF8F00 100%);
    color: #fff;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 15px;
    display: inline-block;
}

.gallery-cta {
    text-align: center;
    padding: 40px;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.gallery-cta p {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
}

/* ===================================
   Googleレビュー
   =================================== */
.google-reviews {
    padding: 100px 0;
    background: #fff;
}

.google-reviews-wrapper {
    background: #f8f9fa;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.google-reviews-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 40px;
    border-bottom: 3px solid #e0e0e0;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 20px;
}

.google-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 32px;
    font-weight: 900;
    color: #4285F4;
}

.google-logo i {
    font-size: 40px;
}

.google-rating {
    text-align: right;
}

.rating-stars {
    font-size: 24px;
    color: #FFC107;
    margin-bottom: 10px;
}

.rating-score {
    display: flex;
    align-items: center;
    gap: 10px;
}

.rating-score .score {
    font-size: 32px;
    font-weight: 900;
    color: #333;
    font-family: 'M PLUS Rounded 1c', sans-serif;
}

.rating-score .reviews-count {
    font-size: 15px;
    color: #666;
}

.google-reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.google-review-card {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.google-review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.15);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

.reviewer-info {
    display: flex;
    gap: 15px;
    align-items: center;
}

.reviewer-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #1E88E5 0%, #1976D2 100%);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    flex-shrink: 0;
}

.reviewer-details {
    flex: 1;
}

.reviewer-name {
    font-size: 16px;
    font-weight: 700;
    color: #333;
    margin-bottom: 5px;
}

.review-stars {
    font-size: 14px;
    color: #FFC107;
}

.review-date {
    font-size: 13px;
    color: #999;
    white-space: nowrap;
}

.review-content p {
    font-size: 15px;
    line-height: 1.8;
    color: #666;
    margin: 0;
}

.google-reviews-footer {
    text-align: center;
    padding-top: 40px;
    border-top: 2px solid #e0e0e0;
}

.google-reviews-footer p {
    font-size: 14px;
    color: #999;
    margin-bottom: 20px;
}

.google-reviews-footer i {
    margin-right: 8px;
}

.google-reviews-footer .btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

/* ===================================
   ブログCTAセクション
   =================================== */
.blog-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, #E3F2FD 0%, #BBDEFB 100%);
}

.blog-cta-content {
    text-align: center;
}

.blog-cta-icon {
    font-size: 64px;
    color: #1E88E5;
    margin-bottom: 30px;
}

.blog-cta-title {
    font-size: 36px;
    font-weight: 900;
    color: #333;
    margin-bottom: 20px;
    font-family: 'M PLUS Rounded 1c', sans-serif;
}

.blog-cta-description {
    font-size: 18px;
    color: #666;
    margin-bottom: 50px;
    line-height: 1.8;
}

.blog-cta-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.blog-cta-item {
    background: #fff;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.blog-cta-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.15);
}

.blog-cta-item i {
    font-size: 48px;
    color: #1E88E5;
    margin-bottom: 20px;
}

.blog-cta-item h3 {
    font-size: 20px;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
}

.blog-cta-item p {
    font-size: 15px;
    color: #666;
    line-height: 1.8;
    margin: 0;
}

/* ===================================
   FAQセクション
   =================================== */
.faq {
    padding: 100px 0;
    background: #f8f9fa;
}

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

.faq-item {
    background: #fff;
    margin-bottom: 20px;
    border-radius: 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.faq-question {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 25px 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 700;
    font-size: 16px;
    color: #333;
}

.faq-question:hover {
    background: #f8f9fa;
}

.faq-question > i:first-child {
    font-size: 24px;
    color: #1E88E5;
    flex-shrink: 0;
}

.faq-question > span {
    flex: 1;
}

.faq-toggle {
    font-size: 20px;
    color: #999;
    transition: transform 0.3s ease;
}

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

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

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 30px 25px 69px;
    font-size: 15px;
    line-height: 1.8;
    color: #666;
}

/* ===================================
   お問い合わせセクション
   =================================== */
.contact {
    padding: 100px 0;
    background: linear-gradient(135deg, #1E88E5 0%, #1565C0 100%);
    color: #fff;
}

.contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.contact-method {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.contact-method-icon {
    font-size: 64px;
    color: #FFD54F;
    margin-bottom: 20px;
}

.contact-method h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
}

.contact-line {
    font-size: 32px;
    font-weight: 900;
    color: #06C755;
    margin-bottom: 10px;
    font-family: 'M PLUS Rounded 1c', sans-serif;
}

.contact-phone {
    font-size: 36px;
    font-weight: 900;
    color: #FFD54F;
    margin-bottom: 10px;
    font-family: 'M PLUS Rounded 1c', sans-serif;
}

.contact-email {
    font-size: 20px;
    font-weight: 700;
    color: #FFD54F;
    margin-bottom: 10px;
}

.contact-time {
    font-size: 14px;
    opacity: 0.9;
    margin-bottom: 20px;
}

.contact-form-wrapper {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 50px;
    border-radius: 20px;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.form-title {
    font-size: 24px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
}

.contact-form {
    max-width: 800px;
    margin: 0 auto;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

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

.form-group label {
    display: block;
    font-weight: 700;
    margin-bottom: 10px;
    font-size: 14px;
}

.required {
    background: #FF5252;
    color: #fff;
    padding: 3px 8px;
    border-radius: 3px;
    font-size: 12px;
    margin-left: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    font-size: 15px;
    background: rgba(255, 255, 255, 0.9);
    color: #333;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #FFD54F;
    background: #fff;
}

.form-submit {
    margin-top: 30px;
}

.form-note {
    text-align: center;
    font-size: 13px;
    margin-top: 20px;
    opacity: 0.9;
}

.form-note i {
    margin-right: 5px;
}

/* ===================================
   会社情報セクション
   =================================== */
.company {
    padding: 100px 0;
    background: #fff;
}

.company-table {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.company-table tr {
    border-bottom: 1px solid #f0f0f0;
}

.company-table tr:last-child {
    border-bottom: none;
}

.company-table th,
.company-table td {
    padding: 25px 30px;
    font-size: 15px;
}

.company-table th {
    background: #f8f9fa;
    font-weight: 700;
    color: #333;
    width: 200px;
    text-align: left;
}

.company-table td {
    color: #666;
    line-height: 1.8;
}

/* ===================================
   フッター
   =================================== */
.footer {
    background: #1a1a1a;
    color: #fff;
    padding: 50px 0 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 40px;
}

.footer-logo h3 {
    font-size: 24px;
    font-weight: 900;
    margin-bottom: 10px;
}

.footer-logo p {
    font-size: 14px;
    opacity: 0.8;
}

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 14px;
}

.footer-contact i {
    color: #1E88E5;
}

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

.footer-bottom p {
    font-size: 13px;
    opacity: 0.7;
}

/* ===================================
   固定電話ボタン（スマホ用）
   =================================== */
.fixed-phone-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
    display: none;
}

.fixed-phone-button a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #4CAF50 0%, #66BB6A 100%);
    color: #fff;
    border-radius: 50%;
    box-shadow: 0 4px 20px rgba(76, 175, 80, 0.5);
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

.fixed-phone-button i {
    font-size: 28px;
}

.fixed-phone-button span {
    font-size: 11px;
    font-weight: 700;
    margin-top: 2px;
}

/* ===================================
   代表者挨拶セクション
   =================================== */
.president {
    padding: 100px 0;
    background: #fff;
}

.president-content {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 60px;
    align-items: flex-start;
    max-width: 1100px;
    margin: 0 auto;
}

.president-photo {
    position: relative;
}

.president-photo img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    object-fit: cover;
}

.president-name-card {
    background: linear-gradient(135deg, #1E88E5 0%, #1976D2 100%);
    color: #fff;
    padding: 25px;
    border-radius: 15px;
    margin-top: 20px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(30, 136, 229, 0.3);
}

.president-title {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 10px;
    opacity: 0.9;
}

.president-name {
    font-size: 28px;
    font-weight: 900;
    margin-bottom: 10px;
    font-family: 'M PLUS Rounded 1c', sans-serif;
}

.president-name-kana {
    font-size: 14px;
    font-weight: 400;
    opacity: 0.9;
}

.president-message {
    flex: 1;
}

.president-message h3 {
    font-size: 26px;
    font-weight: 700;
    color: #333;
    margin-bottom: 30px;
    padding-left: 20px;
    border-left: 5px solid #1E88E5;
}

.president-message p {
    font-size: 16px;
    line-height: 2;
    color: #666;
    margin-bottom: 25px;
}

.president-message .highlight {
    color: #FF6F00;
    font-size: 18px;
    font-weight: 700;
}

.president-signature {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 2px solid #f0f0f0;
    text-align: right;
}

.president-signature p {
    font-size: 15px;
    color: #666;
    margin-bottom: 5px;
}

.president-signature .signature-name {
    font-size: 20px;
    font-weight: 700;
    color: #1E88E5;
    font-family: 'M PLUS Rounded 1c', sans-serif;
}

/* ===================================
   レスポンシブデザイン（タブレット）
   =================================== */
@media (max-width: 992px) {
    .section-title-ja {
        font-size: 28px;
    }

    .hero-title-main {
        font-size: 36px;
    }

    .hero-title-sub {
        font-size: 22px;
    }

    .result-number {
        font-size: 48px;
    }

    .usp-title {
        font-size: 36px;
    }

    .flow-timeline::before {
        display: none;
    }

    .flow-item,
    .flow-item:nth-child(even) {
        flex-direction: column !important;
    }

    .flow-number {
        position: static;
        transform: none;
        margin-bottom: 20px;
    }

    .flow-content {
        width: 100% !important;
        margin: 0 !important;
    }

    .company-table th {
        width: 150px;
    }
}

/* ===================================
   レスポンシブデザイン（スマホ）
   =================================== */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
        padding: 15px 0;
    }

    .header-contact {
        flex-direction: column;
        width: 100%;
        gap: 10px;
    }

    .btn-line,
    .btn-phone {
        width: 100%;
        justify-content: center;
        min-width: auto;
        padding: 12px 20px;
    }

    .btn-line small,
    .btn-phone small {
        font-size: 11px;
    }

    .btn-line strong {
        font-size: 14px;
    }

    .btn-phone strong {
        font-size: 16px;
    }

    .btn-line i,
    .btn-phone i {
        font-size: 20px;
    }

    .hero {
        padding: 60px 0 50px;
    }

    .hero-title-main {
        font-size: 28px;
    }

    .hero-title-sub {
        font-size: 18px;
    }

    .hero-title-emphasis {
        font-size: 14px;
    }

    .hero-features {
        gap: 15px;
    }

    .hero-feature {
        font-size: 14px;
        padding: 12px 20px;
    }

    .hero-results {
        gap: 15px;
    }

    .result-item {
        padding: 20px 25px;
        min-width: 140px;
    }

    .result-number {
        font-size: 56px;
    }

    .result-number-percent::after {
        font-size: 24px;
    }

    .result-number[data-unit]::after {
        font-size: 20px;
    }

    .result-label-top {
        font-size: 16px;
        margin-bottom: 12px;
        letter-spacing: 1px;
    }

    .result-label-bottom {
        font-size: 11px;
        margin-top: 10px;
    }

    .section-title-ja {
        font-size: 24px;
    }

    .section-description {
        font-size: 16px;
    }

    .problems,
    .concerns,
    .solution,
    .reasons,
    .pricing,
    .flow,
    .faq,
    .contact,
    .company {
        padding: 60px 0;
    }

    .problems-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .problems-check {
        padding: 30px 20px;
    }

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

    .concerns {
        padding: 60px 0;
    }

    .concerns-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .concern-item {
        padding: 30px 20px;
    }

    .concern-item h3 {
        font-size: 20px;
    }

    .concern-item p {
        font-size: 15px;
    }

    .concern-cost {
        padding: 12px 15px;
        font-size: 15px;
    }

    .concern-cost span {
        font-size: 18px;
    }

    .concerns-problems {
        padding: 30px 20px;
    }

    .concerns-problems h3 {
        font-size: 22px;
        margin-bottom: 30px;
    }

    .concerns-problems-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .concerns-problem-item {
        padding: 15px;
    }

    .concerns-problem-item i {
        font-size: 24px;
    }

    .concerns-problem-item p {
        font-size: 15px;
    }

    .concerns-arrow {
        font-size: 40px;
        margin: 20px 0;
    }

    .concerns-cta {
        padding: 25px 20px;
    }

    .concerns-cta h4 {
        font-size: 22px;
        margin-bottom: 15px;
    }

    .concerns-cta p {
        font-size: 16px;
    }

    .unique-selling-point {
        padding: 30px 20px;
    }

    .usp-title {
        font-size: 26px;
    }

    .usp-description {
        font-size: 16px;
    }

    .usp-benefits {
        grid-template-columns: 1fr;
    }

    .usp-comparison {
        flex-direction: column;
    }

    .comparison-arrow {
        transform: rotate(90deg);
    }

    .reasons-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

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

    .pricing-card-popular {
        transform: scale(1);
    }

    .pricing-card-popular:hover {
        transform: translateY(-10px);
    }

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

    .contact-form-wrapper {
        padding: 30px 20px;
    }

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

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

    .company-table th {
        background: #1E88E5;
        color: #fff;
        border-bottom: none;
    }

    .company-table td {
        border-bottom: 1px solid #f0f0f0;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .fixed-phone-button {
        display: block;
    }

    .header-contact {
        display: flex;
        flex-direction: row;
        gap: 10px;
        width: 100%;
    }

    .btn-line,
    .btn-phone {
        flex: 1;
        justify-content: center;
        font-size: 12px;
        padding: 10px 15px;
    }

    .header-nav {
        display: none;
    }

    .btn-line small,
    .btn-phone small {
        font-size: 10px;
    }

    .btn-line strong,
    .btn-phone strong {
        font-size: 14px;
    }

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

    .blog-pagination {
        flex-direction: column;
        gap: 15px;
    }

    .cta-box {
        padding: 40px 20px;
    }

    .cta-box h2 {
        font-size: 24px;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .president,
    .staff {
        padding: 60px 0;
    }

    .president-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .president-photo {
        max-width: 350px;
        margin: 0 auto;
    }

    .president-message h3 {
        font-size: 20px;
    }

    .president-message p {
        font-size: 15px;
    }

    .staff-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .staff-photo {
        height: 350px;
    }

    .works-list {
        padding: 60px 0;
    }

    .works-filter {
        gap: 10px;
        margin-bottom: 40px;
    }

    .filter-btn {
        font-size: 13px;
        padding: 10px 20px;
    }

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

    .work-thumbnail {
        height: 250px;
    }

    .work-info {
        padding: 20px;
    }

    .work-title {
        font-size: 18px;
    }

    .work-details {
        gap: 15px;
    }

    .work-detail-item {
        font-size: 13px;
    }

    .blog-post {
        padding: 40px 0;
    }

    .blog-post-header {
        padding: 25px 20px;
    }

    .blog-post-title {
        font-size: 24px;
    }

    .blog-post-thumbnail {
        height: 250px;
    }

    .blog-post-body {
        padding: 30px 20px;
    }

    .blog-section h2 {
        font-size: 22px;
        padding-left: 15px;
    }

    .blog-section p {
        font-size: 15px;
    }

    .info-box,
    .warning-box {
        padding: 20px;
    }

    .symptom-item {
        flex-direction: column;
        gap: 15px;
        padding: 20px;
    }

    .symptom-icon {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }

    .blog-post-cta {
        padding: 30px 20px;
    }

    .blog-post-cta h3 {
        font-size: 22px;
    }

    .blog-post-footer {
        padding: 25px 20px;
    }

    .related-posts {
        padding: 30px 20px;
    }

    .related-posts-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .blog-cta {
        padding: 60px 0;
    }

    .blog-cta-icon {
        font-size: 48px;
    }

    .blog-cta-title {
        font-size: 26px;
    }

    .blog-cta-description {
        font-size: 16px;
    }

    .blog-cta-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .blog-cta-item {
        padding: 30px 20px;
    }

    .blog-cta-item i {
        font-size: 40px;
    }

    .google-reviews {
        padding: 60px 0;
    }

    .google-reviews-wrapper {
        padding: 30px 20px;
    }

    .google-reviews-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .google-logo {
        font-size: 24px;
    }

    .google-logo i {
        font-size: 32px;
    }

    .google-rating {
        text-align: left;
        width: 100%;
    }

    .rating-stars {
        font-size: 20px;
    }

    .rating-score .score {
        font-size: 28px;
    }

    .google-reviews-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .google-review-card {
        padding: 20px;
    }

    .review-header {
        flex-direction: column;
        gap: 15px;
    }

    .review-date {
        align-self: flex-start;
    }
}

/* ===================================
   施工事例ページ
   =================================== */
.works-list {
    padding: 80px 0;
    background: #f8f9fa;
}

.works-filter {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 12px 30px;
    background: #fff;
    color: #666;
    border: 2px solid #e0e0e0;
    border-radius: 30px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover {
    border-color: #1E88E5;
    color: #1E88E5;
}

.filter-btn.active {
    background: linear-gradient(135deg, #1E88E5 0%, #1976D2 100%);
    color: #fff;
    border-color: #1E88E5;
}

.works-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(500px, 1fr));
    gap: 40px;
}

.work-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

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

.work-thumbnail {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.work-before-after {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
}

.work-image {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.work-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background-color: #f5f5f5;
}

.work-label {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(0, 0, 0, 0.8);
    color: #fff;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
}

.work-after .work-label {
    background: #FF6F00;
}

.work-info {
    padding: 30px;
}

.work-tags {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.work-tag {
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    color: #fff;
}

.work-tag-exterior {
    background: #1E88E5;
}

.work-tag-roof {
    background: #FF6F00;
}

.work-tag-both {
    background: linear-gradient(135deg, #1E88E5 0%, #FF6F00 100%);
}

.work-tag-waterproof {
    background: #4CAF50;
}

.work-tag-area {
    padding: 6px 15px;
    background: #E3F2FD;
    color: #1E88E5;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    border: 1px solid #BBDEFB;
}

.work-title {
    font-size: 20px;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
    line-height: 1.5;
}

.work-details {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 2px solid #f0f0f0;
    flex-wrap: wrap;
}

.work-detail-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #666;
}

.work-detail-item i {
    color: #1E88E5;
    font-size: 16px;
}

.work-description {
    font-size: 15px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 20px;
}

.work-specs {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid #1E88E5;
}

.work-spec-item {
    font-size: 14px;
    line-height: 2;
    color: #666;
}

.work-spec-item strong {
    color: #333;
    font-weight: 700;
    display: inline-block;
    min-width: 100px;
}

/* ===================================
   ブログページ
   =================================== */
.blog-header {
    background: linear-gradient(135deg, #1E88E5 0%, #1976D2 100%);
    color: #fff;
    padding: 80px 0 60px;
    text-align: center;
}

.page-title {
    font-size: 42px;
    font-weight: 900;
    margin-bottom: 15px;
}

.page-title i {
    margin-right: 15px;
}

.page-description {
    font-size: 18px;
    opacity: 0.9;
}

.blog-list {
    padding: 80px 0;
    background: #f8f9fa;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.blog-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

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

.blog-thumbnail {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.blog-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-card:hover .blog-thumbnail img {
    transform: scale(1.1);
}

.blog-category {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #1E88E5;
    color: #fff;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
}

/* ===================================
   ブログ記事詳細ページ
   =================================== */
.blog-post {
    padding: 60px 0;
    background: #f8f9fa;
}

.blog-post-content {
    max-width: 900px;
    margin: 0 auto;
}

.blog-post-header {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 40px;
}

.blog-post-meta {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.blog-date {
    font-size: 14px;
    color: #999;
}

.blog-post-title {
    font-size: 32px;
    font-weight: 900;
    color: #333;
    line-height: 1.5;
    margin-bottom: 30px;
}

.blog-post-thumbnail {
    width: 100%;
    height: 400px;
    border-radius: 15px;
    overflow: hidden;
}

.blog-post-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-post-body {
    background: #fff;
    padding: 50px 40px;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 40px;
}

.blog-section {
    margin-bottom: 50px;
}

.blog-section h2 {
    font-size: 26px;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
    padding-left: 20px;
    border-left: 5px solid #1E88E5;
}

.blog-section h3 {
    font-size: 20px;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
}

.blog-section p {
    font-size: 16px;
    line-height: 2;
    color: #666;
    margin-bottom: 20px;
}

.blog-section ul {
    list-style: none;
    padding-left: 0;
}

.blog-section ul li {
    font-size: 16px;
    line-height: 2;
    color: #666;
    padding-left: 30px;
    position: relative;
    margin-bottom: 10px;
}

.blog-section ul li::before {
    content: '●';
    color: #1E88E5;
    position: absolute;
    left: 10px;
}

.info-box {
    background: #E3F2FD;
    padding: 30px;
    border-radius: 15px;
    border-left: 5px solid #1E88E5;
    margin: 30px 0;
}

.info-box h3 {
    font-size: 18px;
    font-weight: 700;
    color: #1E88E5;
    margin-bottom: 20px;
}

.info-box i {
    margin-right: 10px;
}

.info-box ul li {
    font-size: 16px;
    line-height: 2;
    color: #666;
}

.info-box ul li strong {
    color: #1E88E5;
    font-weight: 700;
}

.warning-box {
    background: #FFF3E0;
    padding: 30px;
    border-radius: 15px;
    border-left: 5px solid #FF6F00;
    margin: 30px 0;
}

.warning-box h3 {
    font-size: 18px;
    font-weight: 700;
    color: #FF6F00;
    margin-bottom: 20px;
}

.warning-box i {
    margin-right: 10px;
}

.warning-box ul li {
    font-size: 16px;
    line-height: 2;
    color: #666;
}

.warning-box ul li strong {
    color: #FF6F00;
    font-weight: 700;
}

.symptom-list {
    margin: 30px 0;
}

.symptom-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 25px;
    background: #f8f9fa;
    border-radius: 15px;
    margin-bottom: 20px;
    border-left: 5px solid #FF6F00;
}

.symptom-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #FF6F00 0%, #F57C00 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 28px;
}

.symptom-content h3 {
    font-size: 18px;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
}

.symptom-content p {
    font-size: 15px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 0;
}

.check-list-simple {
    list-style: none;
    padding-left: 0;
}

.check-list-simple li {
    font-size: 16px;
    line-height: 2;
    color: #666;
    padding-left: 40px;
    position: relative;
    margin-bottom: 15px;
}

.check-list-simple li i {
    position: absolute;
    left: 10px;
    top: 5px;
    color: #FF6F00;
    font-size: 18px;
}

.blog-post-cta {
    background: linear-gradient(135deg, #1E88E5 0%, #1976D2 100%);
    color: #fff;
    padding: 50px;
    border-radius: 20px;
    text-align: center;
    margin-top: 50px;
}

.blog-post-cta h3 {
    font-size: 28px;
    font-weight: 900;
    margin-bottom: 15px;
}

.blog-post-cta p {
    font-size: 16px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.blog-post-footer {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 40px;
}

.blog-post-tags {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.tag {
    display: inline-block;
    padding: 8px 20px;
    background: #E3F2FD;
    color: #1E88E5;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    border: 1px solid #BBDEFB;
}

.tag i {
    margin-right: 5px;
}

.blog-post-share {
    padding-top: 30px;
    border-top: 2px solid #f0f0f0;
}

.blog-post-share p {
    font-size: 15px;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
}

.share-buttons {
    display: flex;
    gap: 15px;
}

.share-btn {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #fff;
    font-size: 20px;
    transition: all 0.3s ease;
}

.share-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.share-twitter {
    background: #1DA1F2;
}

.share-facebook {
    background: #1877F2;
}

.share-line {
    background: #06C755;
}

.related-posts {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 40px;
}

.related-posts h2 {
    font-size: 24px;
    font-weight: 700;
    color: #333;
    margin-bottom: 30px;
    text-align: center;
}

.related-posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.related-post-card {
    display: block;
    background: #f8f9fa;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.related-post-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.related-post-thumbnail {
    height: 180px;
    overflow: hidden;
}

.related-post-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.related-post-card:hover .related-post-thumbnail img {
    transform: scale(1.05);
}

.related-post-info {
    padding: 20px;
}

.related-post-info h3 {
    font-size: 16px;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
    line-height: 1.5;
}

.related-post-date {
    font-size: 13px;
    color: #999;
}

.back-to-blog {
    text-align: center;
}

.btn-outline {
    background: transparent;
    color: #1E88E5;
    border: 2px solid #1E88E5;
}

.btn-outline:hover {
    background: #1E88E5;
    color: #fff;
}

.blog-category-alert {
    background: #FF5252;
}

.blog-category-info {
    background: #4CAF50;
}

.blog-content {
    padding: 25px;
}

.blog-date {
    display: block;
    font-size: 13px;
    color: #999;
    margin-bottom: 12px;
}

.blog-date i {
    margin-right: 5px;
}

.blog-title {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.5;
    margin-bottom: 15px;
}

.blog-title a {
    color: #333;
    transition: color 0.3s ease;
}

.blog-title a:hover {
    color: #1E88E5;
}

.blog-excerpt {
    font-size: 14px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 15px;
}

.blog-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 15px;
}

.blog-tag {
    background: #E3F2FD;
    color: #1976D2;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 11px;
    font-weight: 600;
}

.blog-tag i {
    font-size: 10px;
    margin-right: 4px;
}

.blog-read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #1E88E5;
    font-weight: 700;
    font-size: 14px;
    transition: all 0.3s ease;
}

.blog-read-more:hover {
    gap: 12px;
}

.blog-read-more i {
    transition: transform 0.3s ease;
}

.blog-read-more:hover i {
    transform: translateX(5px);
}

.blog-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
}

.pagination-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 30px;
    background: #fff;
    color: #1E88E5;
    border-radius: 50px;
    font-weight: 700;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.pagination-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.pagination-btn-disabled {
    opacity: 0.5;
    pointer-events: none;
}

.pagination-current {
    font-size: 16px;
    font-weight: 700;
    color: #333;
}

.blog-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #1E88E5 0%, #1565C0 100%);
}

.cta-box {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 60px;
    border-radius: 30px;
    text-align: center;
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: #fff;
}

.cta-box h2 {
    font-size: 32px;
    font-weight: 900;
    margin-bottom: 15px;
}

.cta-box h2 i {
    margin-right: 15px;
    color: #FFD54F;
}

.cta-box p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* ===================================
   法的ページ（プライバシーポリシー・特定商取引法）
   =================================== */
.page-header {
    background: linear-gradient(135deg, #1E88E5 0%, #1976D2 100%);
    color: #fff;
    padding: 80px 0 60px;
    text-align: center;
}

.page-subtitle {
    font-size: 16px;
    opacity: 0.9;
    margin-top: 10px;
}

.legal-content {
    padding: 80px 0;
    background: #f8f9fa;
}

.legal-box {
    background: #fff;
    padding: 60px;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 40px;
}

.legal-intro {
    font-size: 16px;
    line-height: 2;
    color: #666;
    margin-bottom: 50px;
    padding: 30px;
    background: #f8f9fa;
    border-left: 5px solid #1E88E5;
    border-radius: 5px;
}

.legal-section {
    margin-bottom: 50px;
}

.legal-section h2 {
    font-size: 22px;
    font-weight: 700;
    color: #1E88E5;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 3px solid #E3F2FD;
    display: flex;
    align-items: center;
    gap: 15px;
}

.section-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #1E88E5;
    color: #fff;
    border-radius: 50%;
    font-size: 18px;
    font-weight: 900;
}

.legal-section p {
    font-size: 15px;
    line-height: 2;
    color: #666;
    margin-bottom: 20px;
}

.legal-section ul {
    list-style: none;
    padding-left: 0;
}

.legal-section ul li {
    font-size: 15px;
    line-height: 2;
    color: #666;
    padding-left: 30px;
    position: relative;
    margin-bottom: 10px;
}

.legal-section ul li::before {
    content: '●';
    color: #1E88E5;
    position: absolute;
    left: 10px;
}

.contact-info-box {
    background: #E3F2FD;
    padding: 30px;
    border-radius: 10px;
    border-left: 5px solid #1E88E5;
    margin-top: 20px;
}

.contact-info-box p {
    margin-bottom: 10px;
    color: #333;
    line-height: 1.8;
}

.contact-info-box p:last-child {
    margin-bottom: 0;
}

.contact-info-box strong {
    font-size: 18px;
    color: #1E88E5;
}

.legal-footer {
    text-align: center;
    padding-top: 40px;
    margin-top: 50px;
    border-top: 2px solid #f0f0f0;
}

.legal-footer p {
    font-size: 14px;
    color: #999;
    margin-bottom: 5px;
}

.tokushoho-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 40px;
}

.tokushoho-table tr {
    border-bottom: 1px solid #e0e0e0;
}

.tokushoho-table th,
.tokushoho-table td {
    padding: 25px 20px;
    text-align: left;
    vertical-align: top;
}

.tokushoho-table th {
    background: #E3F2FD;
    color: #1E88E5;
    font-weight: 700;
    font-size: 15px;
    width: 200px;
}

.tokushoho-table td {
    color: #666;
    font-size: 15px;
    line-height: 1.9;
}

.tokushoho-table td strong {
    color: #333;
    display: block;
    margin-bottom: 10px;
}

.tokushoho-table td small {
    font-size: 13px;
    color: #999;
    display: block;
    margin-top: 10px;
}

.back-to-top {
    text-align: center;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: #fff;
    text-decoration: underline;
}

/* モバイル用フッターリンク */
@media (max-width: 768px) {
    .footer-links {
        gap: 15px;
        padding: 15px 10px;
    }

    .footer-links a {
        font-size: 12px;
    }
}

/* ===================================
   スタッフ紹介セクション
   =================================== */
.staff {
    padding: 100px 0;
    background: #f8f9fa;
}

.staff-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.staff-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

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

.staff-photo {
    position: relative;
    overflow: hidden;
    height: 400px;
}

.staff-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.staff-card:hover .staff-photo img {
    transform: scale(1.05);
}

.staff-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #1E88E5 0%, #1976D2 100%);
    color: #fff;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 13px;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(30, 136, 229, 0.4);
}

.staff-info {
    padding: 30px;
}

.staff-name {
    font-size: 24px;
    font-weight: 900;
    color: #333;
    margin-bottom: 10px;
    font-family: 'M PLUS Rounded 1c', sans-serif;
}

.staff-position {
    font-size: 15px;
    font-weight: 600;
    color: #1E88E5;
    margin-bottom: 8px;
}

.staff-experience {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 2px solid #f0f0f0;
}

.staff-description {
    font-size: 15px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 20px;
}

.staff-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.skill-tag {
    display: inline-block;
    padding: 6px 15px;
    background: #E3F2FD;
    color: #1E88E5;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    border: 1px solid #BBDEFB;
}

/* ===================================
   印刷用スタイル
   =================================== */
@media print {
    .header,
    .fixed-phone-button {
        display: none;
    }
}
