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

html {
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Arial, "Noto Sans JP", sans-serif;
    font-size: 16px;
    line-height: 1.8;
    color: #333;
    background-color: #f5f4f1; /* 元サイトと同じ背景色 */
    overflow-x: hidden;
}

a {
    color: #1e88e5;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #1565c0;
    text-decoration: underline;
}

img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
}

/* Container */
.container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Video Background - Removed */

/* Hero Video Section */
.hero-video-section {
    position: relative;
    width: 100%;
    height: 60vh; /* 視覚的に適切な高さ */
    margin-top: 80px; /* ヘッダーの高さ分 */
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-video-section video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2); /* より薄いオーバーレイに変更 */
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.hero-content {
    position: relative;
    text-align: center;
    color: rgba(255, 255, 255, 0.95); /* 少し透明感のある白 */
    z-index: 3;
    max-width: 800px;
    padding: 0 20px;
}

.hero-title {
    font-size: 3rem;
    font-weight: 400; /* より軽いフォントウェイト */
    margin-bottom: 15px;
    line-height: 1.4;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3); /* より控えめな影 */
    letter-spacing: 0.05em; /* 文字間隔を少し広く */
}

.hero-company {
    font-size: 1.2rem;
    font-weight: 300; /* 軽いフォントウェイト */
    color: rgba(255, 255, 255, 0.85); /* さらに控えめな白 */
    margin: 0;
    letter-spacing: 0.1em;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

/* Header */
.header {
    background-color: #2f4f4f;
    color: #fff;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.header.scrolled {
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.header.hidden {
    transform: translateY(-100%);
}

.header-container {
    max-width: 1190px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo img {
    height: 50px;
    width: auto;
}

/* Navigation */
.navigation ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.navigation li {
    margin: 0;
}

.navigation a {
    display: block;
    padding: 0 1.4em;
    color: #fff;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.navigation a:hover {
    background-color: rgba(255,255,255,0.2);
    text-decoration: none;
}

/* Mobile Menu Button */
.mobile-menu-button {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.mobile-menu-button span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #fff;
    margin: 5px 0;
    transition: transform 0.3s ease;
}

/* Main Content */
.main {
    margin-top: 80px;
    min-height: calc(100vh - 80px);
    /* 背景色を削除して、bodyの背景色を表示 */
}

/* Old Hero Section styles removed - now integrated with video */

/* Section Styles */
section {
    padding: 80px 0;
}

/* コンテンツエリアに白い背景を追加 */
.main .container {
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    padding: 40px;
    margin-top: 20px;
    margin-bottom: 20px;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2f4f4f;
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background-color: #1e88e5;
}

/* About Section */
.about-section {
    background-color: #f8f9fa;
}

.main-image {
    margin-bottom: 40px;
    text-align: center;
}

.main-image img {
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.text-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    font-size: 1.1rem;
    line-height: 1.8;
}

/* News Section */
.news-list {
    max-width: 800px;
    margin: 0 auto;
}

.news-item {
    padding: 20px 0;
    border-bottom: 1px solid #e0e0e0;
}

.news-item:last-child {
    border-bottom: none;
}

.news-item time {
    color: #666;
    font-size: 0.9rem;
}

.news-item h3 {
    margin-top: 10px;
    font-size: 1.25rem;
}

.news-item a {
    color: #333;
}

.news-item a:hover {
    color: #1e88e5;
}

/* Services Section */
.services-section {
    background-color: #fff;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.service-item {
    text-align: center;
    padding: 40px 20px;
    background-color: #f8f9fa;
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: block;
    text-decoration: none;
    color: inherit;
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    text-decoration: none;
}

.service-icon {
    font-size: 3rem;
    color: #2f4f4f;
    margin-bottom: 20px;
}

.service-item h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #2f4f4f;
}

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

/* Driver Page Specific Styles */
.recruitment-overview {
    background: #fff;
    padding: 60px 20px;
    margin: 40px auto;
    max-width: 1000px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

/* Driver page specific adjustments */
.driver-page .recruitment-message {
    margin-bottom: 0;
}

.driver-page .recruitment-overview {
    margin-top: 0;
    padding-top: 0;
}

.driver-page .service-cta {
    max-width: 1000px;
    margin: 60px auto;
}

.content-columns {
    width: 100%;
}

.column-row {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.column-left {
    flex: 0 0 200px;
    padding-right: 20px;
}

.column-right {
    flex: 1;
}

.section-title {
    font-size: 1.25rem;
    font-weight: bold;
    color: #333;
    margin: 0;
}

.highlight-blue {
    background: linear-gradient(transparent 60%, #a6d5ff 60%);
    padding: 0 2px;
}

.highlight-yellow {
    background: linear-gradient(transparent 60%, #ffeb3b 60%);
    padding: 0 2px;
}

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

.text-large {
    font-size: 1.2rem;
}

.recruitment-message {
    padding: 40px 20px;
    background: #f9f9f9;
}

.recruitment-message h2 {
    font-size: 1.75rem;
    line-height: 1.8;
    font-weight: bold;
    color: #333;
}

/* Footer */
.footer {
    background-color: #2f4f4f;
    color: #fff;
    padding: 60px 0 30px;
}

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

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

.footer-section h3 {
    font-size: 1.25rem;
    margin-bottom: 20px;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 10px;
}

.footer-section a {
    color: #ccc;
}

.footer-section a:hover {
    color: #fff;
}

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

/* Utility Classes */
.text-center {
    text-align: center;
}

.mt-4 {
    margin-top: 2rem;
}

.mb-4 {
    margin-bottom: 2rem;
}

/* Menu Open State */
body.menu-open {
    overflow: hidden;
}

body.menu-open::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0,0,0,0.5);
    z-index: 999;
}

/* Page Header */
.page-header {
    padding: 60px 0;
    text-align: center;
    background-color: #dddddd;
    color: #333;
    margin-bottom: 0;
    position: relative;
    overflow: hidden;
}

/* Page Header with Background Image */
.page-header-bg {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.page-header-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(221, 221, 221, 0.85);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.page-header-bg .container {
    position: relative;
    z-index: 1;
    background-color: transparent;
    box-shadow: none;
}

/* Individual Page Header Backgrounds */
.page-header-company {
    background-image: url('../images/gaiyou.jpg');
}

.page-header-service {
    background-image: url('../images/service.jpg');
}

.page-header-driver {
    background-image: url('../images/driver.jpg');
}

.page-header-faq {
    background-image: url('../images/faq.jpg');
}

.page-header-contact {
    background-image: url('../images/contact.jpg');
}

.page-header-sitemap {
    background-image: url('../images/contact.jpg');
}

.page-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.page-subtitle {
    font-size: 1.1rem;
    opacity: 0.9;
    font-family: Georgia, serif;
}

/* Current Page Navigation */
.navigation .current a {
    background-color: rgba(255,255,255,0.1);
}

/* Company Table */
.company-table-wrapper {
    max-width: 800px;
    margin: 0 auto;
    overflow-x: auto;
}

.company-table {
    width: 100%;
    border-collapse: collapse;
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.company-table th,
.company-table td {
    padding: 20px;
    text-align: left;
    border-bottom: 1px solid #e0e0e0;
}

.company-table th {
    background-color: #f8f9fa;
    width: 30%;
    font-weight: 600;
    color: #2f4f4f;
}

.company-table td {
    width: 70%;
}

.business-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.business-list li {
    padding: 5px 0;
    padding-left: 20px;
    position: relative;
}

.business-list li::before {
    content: "▶";
    position: absolute;
    left: 0;
    color: #1e88e5;
    font-size: 0.8em;
}

/* Philosophy Section */
.philosophy-section {
    background-color: #f8f9fa;
    padding: 80px 0;
    margin: 80px 0;
}

.philosophy-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.philosophy-title {
    font-size: 2rem;
    color: #2f4f4f;
    margin-bottom: 30px;
}

.philosophy-text {
    font-size: 1.1rem;
    line-height: 2;
}

/* Access Section */
.access-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.access-info h3 {
    font-size: 1.5rem;
    color: #2f4f4f;
    margin-bottom: 20px;
}

.access-info h4 {
    font-size: 1.2rem;
    color: #2f4f4f;
    margin: 30px 0 15px;
}

.access-list {
    list-style: none;
    padding: 0;
}

.access-list li {
    padding: 10px 0;
    padding-left: 25px;
    position: relative;
}

.access-list li::before {
    content: "●";
    position: absolute;
    left: 0;
    color: #1e88e5;
}

.map-container {
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    width: 100%;
    height: 450px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* Service Page Styles */
.service-intro {
    text-align: center;
    margin-bottom: 60px;
}

.intro-content h2 {
    font-size: 2.2rem;
    color: #2f4f4f;
    margin-bottom: 20px;
}

/* Service Section Styles */
.service-section {
    margin-bottom: 80px;
    padding: 40px 0;
    border-bottom: 1px solid #eee;
}

.service-section:last-of-type {
    border-bottom: none;
}

.service-header h3 {
    font-size: 2rem;
    color: #2f4f4f;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 3px solid #1e88e5;
    display: inline-block;
}

/* 運びマッセ 詳細スタイル */
.service-features {
    margin-bottom: 40px;
}

.service-features h4 {
    font-size: 1.5rem;
    color: #2f4f4f;
    margin-bottom: 20px;
}

.features-quote {
    background-color: #f9f9f9;
    border-left: 4px solid #1e88e5;
    padding: 20px;
    margin-bottom: 30px;
}

.features-quote ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.features-quote li {
    padding: 8px 0;
    padding-left: 20px;
    position: relative;
}

.features-quote li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #1e88e5;
    font-weight: bold;
}

.new-service-announcement {
    text-align: center;
    font-size: 1.1rem;
    margin: 30px 0;
    color: #2f4f4f;
}

.new-service-highlight {
    background-color: #dddddd;
    color: #2f4f4f;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    margin-bottom: 30px;
}

.new-service-highlight p {
    font-size: 1.3rem;
    margin: 0;
    line-height: 1.6;
}

.service-description-text {
    margin-bottom: 40px;
}

.service-description-text p {
    margin-bottom: 20px;
    line-height: 1.8;
}

/* 背景セクション */
.service-background {
    margin-bottom: 40px;
}

.service-background h4 {
    font-size: 1.5rem;
    color: #2f4f4f;
    margin-bottom: 20px;
}

.background-content {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.background-map {
    flex: 1;
    max-width: 400px;
}

.background-map img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.background-stats {
    flex: 1;
    min-width: 300px;
}

.airport-stats {
    text-align: center;
    margin-bottom: 30px;
    padding: 20px;
    background-color: #f0f8ff;
    border-radius: 10px;
}

.stats-title {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #2f4f4f;
}

.stats-number {
    font-size: 3rem;
    color: #1e88e5;
    margin: 0;
}

.stats-number span {
    font-size: 1.2rem;
    color: #666;
}

.visitor-destinations {
    margin-bottom: 30px;
}

.destinations-title {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: #2f4f4f;
}

.destination-list {
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.destination-item {
    display: flex;
    align-items: center;
    padding: 15px 20px;
    border-bottom: 1px solid #eee;
}

.destination-item:last-child {
    border-bottom: none;
}

.rank {
    background-color: #ff6b35;
    color: #fff;
    padding: 5px 10px;
    border-radius: 5px;
    font-weight: bold;
    min-width: 50px;
    text-align: center;
    margin-right: 15px;
}

.place {
    font-weight: bold;
    font-size: 1.1rem;
    letter-spacing: 1px;
}

.tourist-problems {
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 10px;
    max-width: 600px;
    margin: 20px auto 0 auto;
}

.problems-title {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: #2f4f4f;
    background-color: #dddddd;
    padding: 15px;
    border-radius: 8px;
    margin: -20px -20px 15px -20px;
}

.tourist-problems ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tourist-problems li {
    padding: 8px 0;
    padding-left: 20px;
    position: relative;
}

.tourist-problems li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #ff6b35;
    font-weight: bold;
}

/* サービスフロー */
.service-flow {
    margin-bottom: 40px;
}

.service-flow h4 {
    font-size: 1.5rem;
    color: #2f4f4f;
    margin-bottom: 20px;
}

.flow-icons {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.flow-icon {
    flex: 1;
    max-width: 200px;
    min-width: 150px;
}

.flow-icon img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* 手ぶら観光 */
.hands-free-tourism {
    background: linear-gradient(135deg, #f0f8ff 0%, #e6f3ff 100%);
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 40px;
}

/* サービス画像ギャラリー */
.service-gallery {
    margin-top: 40px;
    margin-bottom: 40px;
}

.gallery-images {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.gallery-item {
    flex: 1;
    max-width: 300px;
    min-width: 250px;
}

.gallery-item img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.gallery-item img:hover {
    transform: translateY(-5px);
}

/* 磨きマッセセクション詳細スタイル */
.migaki-masse .fz-20px {
    font-size: 2rem;
}

.has-text-align-center {
    text-align: center;
}

.migaki-img {
    background-color: #0b308e;
    padding: 0.44rem;
    text-align: center;
    margin: 30px 0;
    border-radius: 10px;
}

.migaki-img figure {
    margin: 0;
}

.migaki-img img {
    object-fit: cover;
}

.migakiBox {
    margin-bottom: 40px;
}

.migakiBox h4 {
    font-size: 1.5rem;
    color: #2f4f4f;
    margin-bottom: 20px;
}

.keeper-services-flex {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
    margin: 20px 0;
}

.keeper-services-flex figure {
    margin: 0;
    flex: 1;
    min-width: 150px;
    max-width: 200px;
}

.keeper-services-flex img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.keeper-services-flex img:hover {
    transform: scale(1.05);
}

.keeper-detail-section {
    margin: 50px 0;
    background-color: #fafafa;
    border-radius: 15px;
}

.keeper-detail-section h4 {
    font-size: 1.5rem;
    color: #2f4f4f;
    margin-bottom: 20px;
}

.keeper-benefits {
    display: flex;
    gap: 30px;
    margin: 40px 0;
}

.benefit-column {
    flex: 1;
}

.benefit-description {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.description-item {
    flex: 1;
}

.fresh-keeper-mechanism {
    background-color: #f5f5f5;
    padding: 30px;
    border-radius: 10px;
    margin-top: 40px;
}

.mechanism-content {
    display: flex;
    gap: 30px;
    align-items: flex-start;
    margin: 20px 0;
}

.mechanism-text {
    flex: 2;
}

.mechanism-video {
    flex: 1;
}

.fresh-pricing {
    display: flex;
    gap: 30px;
    align-items: center;
    margin: 30px 0;
}

.pricing-info {
    flex: 1;
}

.pricing-image {
    flex: 1;
}

.pricing-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    border: 3px solid #2f4f4f;
}

.pricing-table td {
    padding: 12px 15px;
    border: 1px solid #ddd;
    text-align: center;
}

.pricing-table td:first-child {
    background-color: #f0f8ff;
    font-weight: bold;
}

.pricing-table td:last-child {
    background-color: #f9f9f9;
    font-weight: bold;
    color: #1e88e5;
}

.pricing-note {
    font-size: 0.9rem;
    color: #666;
    margin-top: 10px;
}

.inline-button-white-black {
    background-color: #2f4f4f;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    display: inline-block;
    transition: background-color 0.3s ease;
}

.inline-button-white-black:hover {
    background-color: #1e88e5;
    color: white;
}

/* 詳細セクション追加スタイル */
.keeper-header-section {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 30px;
    border-bottom: 1px solid #ddd;
    padding-bottom: 20px;
}

.keeper-header-left {
    flex: 0 0 auto;
}

.keeper-header-right {
    flex: 1;
}

.keeper-service-type {
    font-size: 0.75rem;
    margin-bottom: 5px;
    color: #666;
}

.service-catchphrase {
    text-align: center;
    background: linear-gradient(135deg, #f0f8ff 0%, #e6f3ff 100%);
    padding: 20px;
    border-radius: 10px;
    margin: 30px 0;
    border: 2px solid #1e88e5;
}

.feature-subtitle {
    background-color: #f0f8ff;
    padding: 15px;
    text-align: center;
    border-radius: 8px;
    margin: 30px 0 20px 0;
}

.coating-structure {
    display: flex;
    gap: 20px;
    align-items: center;
    margin-bottom: 30px;
}

.structure-image {
    flex: 0 0 auto;
}

.structure-text {
    flex: 1;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin: 30px 0;
}

.feature-item {
    text-align: center;
}

.feature-header {
    background-color: #e0f2ff;
    padding: 10px;
    margin-bottom: 15px;
    border-radius: 5px;
    font-size: 0.9rem;
}

.marker-under-red {
    background: linear-gradient(transparent 50%, #ff6b6b 50%);
}

.pricing-table-horizontal {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

.pricing-table-horizontal th,
.pricing-table-horizontal td {
    padding: 12px 8px;
    border: 1px solid #ddd;
    text-align: center;
    font-size: 0.9rem;
}

.pricing-table-horizontal th {
    background-color: #2f4f4f;
    color: white;
    font-weight: bold;
}

.pricing-table-horizontal td {
    background-color: #f9f9f9;
    font-weight: bold;
    color: #1e88e5;
}

.mechanism-detail {
    margin: 40px 0;
}

.mechanism-columns {
    display: flex;
    gap: 20px;
    margin: 20px 0;
}

.mechanism-column {
    flex: 1;
    background-color: #e8f5e8;
    padding: 20px;
    border-radius: 10px;
}

.mechanism-title {
    text-align: center;
    background-color: #d4edda;
    padding: 10px;
    border-radius: 5px;
    margin-bottom: 15px;
    font-weight: bold;
}

.plan-options {
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
    margin: 40px 0;
}

.plan-options ul {
    list-style-type: disc;
    margin-left: 20px;
}

.premium-specification {
    margin: 40px 0;
}

.maintenance-section {
    background-color: #f5f5f5;
    padding: 30px;
    border-radius: 10px;
    margin-top: 40px;
}

.maintenance-type {
    background-color: white;
    padding: 20px;
    margin: 20px 0;
    border-radius: 8px;
    border: 1px solid #ddd;
}

.maintenance-label {
    background-color: #e3f2fd;
    padding: 8px 15px;
    border-radius: 5px;
    font-weight: bold;
    margin-bottom: 10px;
    display: inline-block;
}

.fz-12px { font-size: 0.75rem; }
.fz-14px { font-size: 0.875rem; }
.fz-18px { font-size: 1.125rem; }
.fz-20px { font-size: 1.25rem; }

.benefit-item .fz-20px {
    font-size: 1.2rem;
}
.fz-24px { font-size: 1.5rem; }
.fz-28px { font-size: 1.75rem; }

/* クリスタルキーパー追加スタイル */
.bold-green {
    color: #28a745;
    font-weight: bold;
}

.crystal-benefits {
    margin: 40px 0;
}

.crystal-benefits .benefits-grid {
    margin-left: -20px;
    margin-right: -20px;
    padding: 0 20px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin: 30px 0;
}

.benefit-item {
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    position: relative;
}

.benefit-number {
    position: absolute;
    top: -15px;
    left: 20px;
    background-color: #28a745;
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.1rem;
}

.annual-proposal {
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
    margin: 40px 0;
}

.annual-benefits {
    display: flex;
    gap: 30px;
    margin: 30px 0;
}

.annual-text {
    flex: 2;
}

.patents-info {
    flex: 1;
}

.patents-box {
    background-color: #e9ecef;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
}

.patents-title {
    background-color: #fff;
    padding: 10px;
    border-radius: 5px;
    margin-bottom: 15px;
    font-weight: bold;
}

.patents-images {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.patent-item {
    text-align: center;
}

.patent-item p {
    font-size: 0.8rem;
    margin-top: 10px;
}

.water-stain-solution {
    margin: 40px 0;
}

.stain-content {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.stain-text {
    flex: 1;
}

.stain-image {
    flex: 0 0 auto;
}

.wash-benefits {
    margin: 40px 0;
}

.tourism-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.tourism-text {
    flex: 3;
}

.tourism-text p {
    font-size: 1.3rem;
    color: #2f4f4f;
    margin: 0;
    line-height: 1.6;
}

.tourism-qr {
    flex: 1;
    text-align: center;
    max-width: 120px;
}

.tourism-qr img {
    width: 100%;
    height: auto;
}

/* KeePer サービススタイル */
.keeper-intro {
    text-align: center;
    margin-bottom: 40px;
}

.keeper-logo {
    max-width: 300px;
    margin-bottom: 20px;
}

.keeper-main-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.keeper-services h4 {
    font-size: 1.5rem;
    color: #2f4f4f;
    margin-bottom: 20px;
    text-align: center;
}

.coating-options {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.coating-item {
    flex: 1;
    min-width: 150px;
    max-width: 200px;
}

.coating-item img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

/* CTAセクション */
.service-cta {
    background-color: #2f4f4f;
    color: #fff;
    padding: 60px 0;
    text-align: center;
    border-radius: 15px;
    margin-top: 60px;
}

.cta-content h3 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

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

.btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn:hover {
    text-decoration: none;
}

.btn-primary {
    background-color: #fff;
    color: #2f4f4f;
}

.btn-primary:hover {
    background-color: #f5f4f1;
    color: #2f4f4f;
    text-decoration: none;
    transform: translateY(-2px);
}

/* Service CTA内のボタンはbody背景色と似た色で目立たせる */
.service-cta .btn-primary {
    background-color: #f5f4f1;
    color: #2f4f4f;
    border: 2px solid #f5f4f1;
}

.service-cta .btn-primary:hover {
    background-color: #ede9e5;
    color: #2f4f4f;
    text-decoration: none;
    transform: translateY(-2px);
    border-color: #ede9e5;
}

.btn-secondary {
    background-color: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.btn-secondary:hover {
    background-color: #fff;
    color: #2f4f4f;
    transform: translateY(-2px);
}

/* Service Details */
.service-details {
    margin-bottom: 80px;
}

.service-detail-item {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    margin-bottom: 60px;
    overflow: hidden;
}

.service-detail-header {
    background: linear-gradient(135deg, #2f4f4f 0%, #1e88e5 100%);
    color: #fff;
    padding: 40px;
    text-align: center;
}

.service-icon-large {
    font-size: 4rem;
    margin-bottom: 20px;
}

.service-detail-header h3 {
    font-size: 2rem;
    margin: 0;
}

.service-detail-content {
    padding: 40px;
}

.service-detail-content h4 {
    font-size: 1.5rem;
    color: #2f4f4f;
    margin-bottom: 20px;
}

.service-detail-content h5 {
    font-size: 1.2rem;
    color: #2f4f4f;
    margin-top: 30px;
    margin-bottom: 15px;
}

.service-features ul {
    list-style: none;
    padding: 0;
}

.service-features li {
    padding: 10px 0;
    padding-left: 25px;
    position: relative;
}

.service-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #1e88e5;
    font-weight: bold;
}

/* Service Types Grid */
.type-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
    margin-top: 20px;
}

.type-item {
    background-color: #f8f9fa;
    padding: 15px;
    text-align: center;
    border-radius: 5px;
    border: 1px solid #e0e0e0;
}

/* Warehouse Info */
.info-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
}

.info-list li {
    background-color: #f8f9fa;
    padding: 15px;
    border-radius: 5px;
    border-left: 3px solid #1e88e5;
}

/* Support List */
.support-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.support-list li {
    padding: 10px 0;
    padding-left: 25px;
    position: relative;
}

.support-list li::before {
    content: "●";
    position: absolute;
    left: 0;
    color: #1e88e5;
}

/* Service CTA */
.service-cta {
    background-color: #2f4f4f;
    color: #fff;
    padding: 60px 0;
    text-align: center;
    border-radius: 10px;
    margin-bottom: 60px;
}

.cta-content h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.cta-button {
    display: inline-block;
    background-color: #fff;
    color: #2f4f4f;
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: bold;
    transition: all 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
    text-decoration: none;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.6s ease forwards;
}

/* Driver Recruitment Page */
.recruitment-message {
    text-align: center;
    margin-bottom: 80px;
}

.message-content h2 {
    font-size: 2rem;
    color: #2f4f4f;
    margin-bottom: 20px;
}

.message-content p {
    font-size: 1.1rem;
    line-height: 1.8;
}

/* Job Categories */
.job-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 80px;
}

.job-card {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease;
}

.job-card:hover {
    transform: translateY(-5px);
}

.job-icon {
    font-size: 3rem;
    color: #1e88e5;
    margin-bottom: 20px;
}

.job-card h3 {
    font-size: 1.5rem;
    color: #2f4f4f;
    margin-bottom: 20px;
}

.job-info h4 {
    font-size: 1rem;
    color: #666;
    margin-top: 20px;
    margin-bottom: 10px;
}

.job-info ul {
    list-style: none;
    padding: 0;
    text-align: left;
}

.job-info li {
    padding: 5px 0;
    padding-left: 20px;
    position: relative;
}

.job-info li::before {
    content: "・";
    position: absolute;
    left: 0;
}

.salary {
    font-size: 1.3rem;
    color: #e60033;
    font-weight: bold;
}

/* Benefits Section */
.benefits-section {
    background-color: #f8f9fa;
    padding: 80px 0;
    margin: 80px -20px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.benefit-item {
    text-align: center;
}

.benefit-icon {
    font-size: 2.5rem;
    color: #1e88e5;
    margin-bottom: 15px;
}

.benefit-item h3 {
    font-size: 1.2rem;
    color: #2f4f4f;
    margin-bottom: 10px;
}

/* Work Flow Timeline */
.timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    padding-left: 30px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background-color: #e0e0e0;
}

.timeline-item {
    display: flex;
    margin-bottom: 40px;
    position: relative;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -34px;
    top: 5px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #1e88e5;
    border: 2px solid #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.timeline-time {
    min-width: 80px;
    font-weight: bold;
    color: #1e88e5;
}

.timeline-content h4 {
    font-size: 1.1rem;
    color: #2f4f4f;
    margin-bottom: 5px;
}

/* Employee Voice */
.employee-voice {
    margin: 80px 0;
}

.voice-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.voice-card {
    background-color: #f8f9fa;
    border-radius: 10px;
    padding: 30px;
    position: relative;
}

.voice-card::before {
    content: '"';
    position: absolute;
    top: 10px;
    left: 20px;
    font-size: 3rem;
    color: #e0e0e0;
    font-family: Georgia, serif;
}

.voice-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.employee-icon {
    font-size: 3rem;
    color: #999;
    margin-right: 15px;
}

.employee-info h4 {
    font-size: 1.1rem;
    color: #2f4f4f;
    margin-bottom: 5px;
}

.employee-info p {
    color: #666;
    font-size: 0.9rem;
}

.voice-text {
    line-height: 1.8;
    color: #333;
}

/* Application Process */
.process-steps {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    max-width: 900px;
    margin: 0 auto;
}

.process-step {
    text-align: center;
    flex: 1;
    min-width: 150px;
    margin: 10px;
}

.step-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #1e88e5;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 15px;
}

.process-step h3 {
    font-size: 1.2rem;
    color: #2f4f4f;
    margin-bottom: 10px;
}

.process-arrow {
    font-size: 2rem;
    color: #1e88e5;
    margin: 0 10px;
}

/* Driver CTA */
.driver-cta {
    background: linear-gradient(135deg, rgba(47,79,79,0.9) 0%, rgba(30,136,229,0.9) 100%);
    color: #fff;
    padding: 60px 20px;
    text-align: center;
    border-radius: 10px;
    margin: 60px auto;
    max-width: 1000px;
}

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

.cta-button {
    display: inline-flex;
    align-items: center;
    padding: 15px 40px;
    font-size: 18px;
    font-weight: bold;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.cta-button.phone {
    background-color: #e60033;
    color: #fff;
}

.cta-button.web {
    background-color: #1e88e5;
    color: #fff;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    text-decoration: none;
}

.cta-button i {
    margin-right: 8px;
}

/* FAQ Page Styles */
.faq-message {
    padding: 40px 20px;
    background: #f9f9f9;
    border-radius: 8px;
    margin-bottom: 60px;
    text-align: center;
}

.faq-message p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333;
    margin: 0;
}

.faq-content {
    margin-bottom: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

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

.faq-item {
    background: #fff;
    border-radius: 8px;
    margin-bottom: 30px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

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

.faq-question {
    padding: 30px 80px 30px 30px;
    cursor: pointer;
    position: relative;
    border-bottom: 1px solid #e9ecef;
    transition: background-color 0.3s ease;
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

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

.faq-q-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    flex: 1;
}

.faq-question-label {
    background: #0b308e;
    color: #fff;
    padding: 8px 15px;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: bold;
    margin: 0;
    min-width: 40px;
    text-align: center;
    flex-shrink: 0;
}

.faq-q-wrapper p {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    margin: 0;
    line-height: 1.6;
    padding-top: 5px;
}

.faq-toggle {
    position: absolute;
    right: 30px;
    top: 35px;
    color: #1e88e5;
    font-size: 18px;
    transition: transform 0.3s ease;
}

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

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

.faq-item.active .faq-answer {
    padding: 30px;
    max-height: 770px;
}

.faq-a-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.faq-answer-label {
    background: #2e7d32;
    color: #fff;
    padding: 8px 15px;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: bold;
    margin: 0;
    min-width: 40px;
    text-align: center;
    flex-shrink: 0;
}

.faq-a-wrapper p {
    color: #666;
    line-height: 1.8;
    margin: 0;
    padding-top: 5px;
    font-size: 1rem;
}

/* FAQ page specific adjustments */
.faq-page .faq-message {
    margin-bottom: 60px;
}

.faq-page .faq-content {
    padding-top: 0;
}

.faq-page .service-cta {
    max-width: 1000px;
    margin: 60px auto;
}

/* Contact Page Styles */
.contact-message {
    padding: 40px 20px;
    background: #f9f9f9;
    border-radius: 8px;
    margin-bottom: 60px;
    text-align: center;
}

.contact-message p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333;
    margin: 0;
}

.contact-methods {
    margin-bottom: 0;
    padding: 0;
}

.method-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.method-item {
    text-align: center;
    padding: 40px 30px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: box-shadow 0.3s ease;
}

.method-item:hover {
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.method-icon {
    font-size: 3rem;
    color: #2f4f4f;
    margin-bottom: 20px;
}

.method-item h3 {
    font-size: 1.3rem;
    color: #2f4f4f;
    margin-bottom: 20px;
    font-weight: 600;
}

.phone-number,
.email-address {
    font-size: 1.4rem;
    font-weight: bold;
    color: #0b308e;
    margin-bottom: 10px;
}

.business-hours,
.response-time {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
}

/* Contact Form */
.contact-form {
    max-width: 800px;
    margin: 0 auto;
    background-color: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

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

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

.required {
    color: #e60033;
}

.optional {
    color: #999;
    font-weight: normal;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 5px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: #1e88e5;
}

.form-control.error {
    border-color: #e60033;
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

/* Custom Checkbox */
.checkbox-label {
    display: flex;
    align-items: flex-start;
    cursor: pointer;
    font-size: 14px;
    line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid #ccc;
    border-radius: 3px;
    margin-right: 10px;
    position: relative;
    transition: all 0.3s ease;
    flex-shrink: 0;
    margin-top: 2px;
    background-color: #fff;
    display: inline-block;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
    background-color: #2f4f4f;
    border-color: #2f4f4f;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: 12px;
    font-weight: bold;
}

.privacy-text a {
    color: #1e88e5;
}

.submit-button {
    background: #3a5a5a;
    color: #fff;
    border: none;
    padding: 15px 40px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    max-width: 250px;
    margin: 0 auto;
    display: block;
}

.submit-button:hover {
    background: #2f4f4f;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}

.submit-button i {
    margin-right: 8px;
}

/* Contact Form Section */
.contact-form-section {
    margin-bottom: 80px;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-header h2 {
    font-size: 2.2rem;
    color: #2f4f4f;
    margin-bottom: 15px;
}

.section-header p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
}

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

/* Contact Info Section */
.contact-info {
    margin-top: 0;
    padding: 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 10px;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 30px;
}

.info-section {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.info-section h3 {
    font-size: 1.4rem;
    color: #2f4f4f;
    margin-bottom: 20px;
    border-bottom: 2px solid #1e88e5;
    padding-bottom: 10px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    padding: 10px 0;
}

.info-item i {
    font-size: 1.2rem;
    color: #2f4f4f;
    margin-right: 15px;
    margin-top: 3px;
    min-width: 20px;
}

.info-item p {
    margin: 0;
    line-height: 1.6;
    color: #333;
}

.map-placeholder {
    margin-top: 20px;
    padding: 40px 20px;
    background-color: #f8f9fa;
    border: 2px dashed #ddd;
    border-radius: 8px;
    text-align: center;
}

.map-text {
    color: #999;
    font-style: italic;
    margin: 0;
}

/* Privacy Policy Page */
.privacy-content {
    max-width: 900px;
    margin: 0 auto;
}

.policy-text {
    background-color: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.policy-intro {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333;
    margin-bottom: 40px;
    padding: 20px;
    background-color: #f8f9fa;
    border-left: 4px solid #1e88e5;
    border-radius: 5px;
}

.policy-section {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid #e0e0e0;
}

.policy-section:last-of-type {
    border-bottom: none;
}

.policy-section h2 {
    font-size: 1.4rem;
    color: #2f4f4f;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #1e88e5;
}

.policy-section p {
    line-height: 1.8;
    color: #333;
    margin-bottom: 15px;
}

.policy-list {
    margin: 15px 0;
    padding-left: 0;
    list-style: none;
}

.policy-list li {
    padding: 8px 0 8px 25px;
    position: relative;
    line-height: 1.7;
}

.policy-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #1e88e5;
    font-weight: bold;
    font-size: 1.2rem;
}

.contact-info {
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 5px;
    margin-top: 15px;
}

.contact-info h3 {
    font-size: 1.2rem;
    color: #2f4f4f;
    margin-bottom: 10px;
}

.contact-info p {
    margin: 0;
    line-height: 1.6;
}

.policy-footer {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 2px solid #e0e0e0;
    text-align: center;
}

.policy-footer p {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
}

/* ========================================================================
   いも焼マッセ（焼き芋スイーツ製造販売）セクション
   ======================================================================== */

.imoyaki-masse .service-logo {
    text-align: center;
    margin: 30px 0;
}

.imoyaki-masse .service-logo img {
    max-width: 250px;
    height: auto;
}

.imoyaki-masse .imo-section {
    margin: 40px 0;
    padding: 0 20px;
}

.imoyaki-masse .imo-section h4 {
    font-size: 1.5rem;
    color: #2f4f4f;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #1e88e5;
}

.imoyaki-masse .text-center {
    text-align: center;
}

/* いも焼マッセのテーブルスタイル */
.imoyaki-masse .imo-table {
    width: 100%;
    max-width: 800px;
    margin: 20px auto;
    border-collapse: collapse;
    background: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.imoyaki-masse .imo-table thead {
    background: #2f4f4f;
    color: #fff;
}

.imoyaki-masse .imo-table th,
.imoyaki-masse .imo-table td {
    padding: 15px;
    text-align: center;
    border: 1px solid #ddd;
}

.imoyaki-masse .imo-table tbody tr:nth-child(even) {
    background: #f9f9f9;
}

.imoyaki-masse .imo-table tbody tr:hover {
    background: #e0f2ff;
}

/* 価格比較テーブル */
.imoyaki-masse .price-table td:first-child {
    font-weight: bold;
    background: #f5f5f5;
    text-align: left;
}

/* メモボックス（干し芋の効果） */
.imoyaki-masse .memo-box {
    background: #fffbf0;
    border: 2px solid #ffcc00;
    border-radius: 10px;
    padding: 20px;
    margin: 30px 0;
}

.imoyaki-masse .memo-box h4 {
    margin-top: 0;
    color: #ff6600;
    border-bottom: none;
}

.imoyaki-masse .memo-box ul {
    list-style: none;
    padding: 0;
}

.imoyaki-masse .memo-box li {
    padding: 8px 0;
    padding-left: 30px;
    position: relative;
}

.imoyaki-masse .memo-box li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #ff6600;
    font-weight: bold;
    font-size: 1.2rem;
}

/* 参考文献リンク */
.imoyaki-masse .reference {
    margin-top: 10px;
    padding: 10px;
    background: #f0f0f0;
    border-left: 3px solid #888;
    font-size: 0.9rem;
}

.imoyaki-masse .reference a {
    color: #1e88e5;
    word-break: break-all;
}

/* 特徴画像 */
.imoyaki-masse .imo-feature {
    margin: 30px 0;
    text-align: center;
}

.imoyaki-masse .imo-feature img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

/* 特徴ラベル */
.imoyaki-masse .feature-label {
    background: linear-gradient(135deg, #2f4f4f 0%, #1a3a1a 100%);
    color: #fff;
    padding: 15px;
    margin: 20px 0;
    border-radius: 50px;
    text-align: center;
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
}

/* フォントサイズユーティリティクラス */
.fz-12px {
    font-size: 12px;
}

.fz-14px {
    font-size: 14px;
}

.fz-20px {
    font-size: 20px;
}

.fz-24px {
    font-size: 24px;
}

/* レスポンシブ対応 */
@media (max-width: 834px) {
    .imoyaki-masse .imo-table {
        font-size: 0.9rem;
    }
    
    .imoyaki-masse .imo-table th,
    .imoyaki-masse .imo-table td {
        padding: 10px 5px;
    }
    
    .imoyaki-masse .imo-section {
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .imoyaki-masse .imo-table {
        font-size: 0.8rem;
    }
    
    .imoyaki-masse .imo-table th,
    .imoyaki-masse .imo-table td {
        padding: 8px 3px;
    }
    
    .imoyaki-masse .service-logo img {
        max-width: 200px;
    }
    
    .imoyaki-masse .feature-label {
        font-size: 1rem;
    }
}

/* ========================================================================
   キレイにしマッセ（小規模店舗フロア清掃）セクション
   ======================================================================== */

.kireini-masse .kireini-image {
    margin: 30px 0;
    text-align: center;
}

.kireini-masse .kireini-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
}

/* レスポンシブ対応 */
@media (max-width: 834px) {
    .kireini-masse .kireini-image {
        margin: 20px 0;
    }
}

@media (max-width: 480px) {
    .kireini-masse .kireini-image {
        margin: 15px 0;
    }
}

/* ========================================================================
   サービスナビゲーション（service.htmlで使用）
   ======================================================================== */

/* service.htmlのサービスナビゲーションをindex.htmlのスタイルに統一 */
.service-nav-btn {
    text-decoration: none;
    color: inherit;
}

.service-nav-btn:hover {
    text-decoration: none;
}

.service-nav-btn h3,
.service-nav-btn p {
    text-decoration: none;
}

.service-nav-btn:hover h3,
.service-nav-btn:hover p {
    text-decoration: none;
}

/* service.htmlのサービスナビゲーションセクションのpaddingを0に */
.services-section:has(.service-nav-btn) {
    padding: 0;
}

/* より確実にservice.htmlのサービスナビゲーションセクションを特定 */
section.services-section:not(.fade-in) {
    padding: 0;
}

/* ========================================================================
   スクロールトゥトップボタン
   ======================================================================== */

.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: #1e88e5;
    color: #fff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 4px 15px rgba(30, 136, 229, 0.3);
    transition: all 0.3s ease;
    z-index: 1000;
}

.scroll-to-top:hover {
    background: #0b308e;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(30, 136, 229, 0.4);
}

.scroll-to-top.show {
    display: flex;
}

/* レスポンシブ対応 */
@media (max-width: 834px) {
    .scroll-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
}

@media (max-width: 480px) {
    .scroll-to-top {
        bottom: 15px;
        right: 15px;
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

/* Confirmation Page Styles */
.confirm-table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
}

.confirm-table th,
.confirm-table td {
    padding: 15px;
    border: 1px solid #ddd;
    text-align: left;
    vertical-align: top;
}

.confirm-table th {
    background-color: #2f4f4f;
    color: white;
    font-weight: bold;
    width: 30%;
}

.confirm-table td {
    background-color: #f9f9f9;
}

.confirm-buttons {
    text-align: center;
    margin: 40px 0;
}

.confirm-buttons .submit-button {
    background-color: #2f4f4f;
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    line-height: 1.5;
    cursor: pointer;
    margin: 0 10px;
    text-decoration: none;
    display: inline-block;
    vertical-align: middle;
    transition: all 0.3s ease;
    font-family: inherit;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.confirm-buttons .submit-button:hover {
    background-color: #1e3a3a;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.confirm-buttons .back-button {
    background-color: #666;
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    line-height: 1.5;
    cursor: pointer;
    margin: 0 10px;
    text-decoration: none;
    display: inline-block;
    vertical-align: middle;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.confirm-buttons .back-button:hover {
    background-color: #555;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

/* Thanks Page Styles */
.thanks-content,
.error-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 20px;
}

.thanks-message,
.error-message {
    background-color: white;
    padding: 60px 40px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.contact-info-box {
    background-color: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 30px;
    margin: 30px 0;
    text-align: left;
}

.contact-info-box h3 {
    color: #2f4f4f;
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.contact-info-box ul {
    list-style: none;
    padding: 0;
}

.contact-info-box ul li {
    padding: 10px 0;
    border-bottom: 1px solid #e9ecef;
    display: flex;
    align-items: center;
}

.contact-info-box ul li:last-child {
    border-bottom: none;
}

.contact-info-box ul li i {
    margin-right: 15px;
    color: #2f4f4f;
    width: 20px;
}

.button-group {
    margin: 40px 0;
}

.btn-primary,
.btn-outline {
    display: inline-block;
    padding: 15px 30px;
    margin: 10px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: #2f4f4f;
    color: white;
}

.btn-primary:hover {
    background-color: #1e3a3a;
}

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

.btn-outline:hover {
    background-color: #2f4f4f;
    color: white;
}

.error-solutions {
    background-color: #fff3cd;
    border: 1px solid #ffeaa7;
    border-radius: 8px;
    padding: 20px;
    margin: 30px 0;
    text-align: left;
}

.error-solutions h3 {
    color: #856404;
    margin-bottom: 15px;
}

.error-solutions ul {
    margin: 0;
    padding-left: 20px;
}

.error-solutions ul li {
    margin: 10px 0;
    color: #856404;
}