/*
Theme Name: toolook Original Theme
Author: Professional Designer
Description: 洗練された物流サービス toolook のシングルページテーマ
Version: 1.2
*/

:root {
    --primary-color: #1a2a3a;
    --accent-color: #4a90e2;
    --text-color: #333;
    --bg-light: #f8f9fa;
    --white: #ffffff;
}

* { 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: var(--text-color);
    background: var(--white);
    overflow-x: hidden;
}

/* Header */
header {
    position: fixed;
    width: 100%;
    padding: 10px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 255, 255, 0.98);
    z-index: 1000;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
}

.logo img { height: 80px; width: auto; display: block; }
.logo a { text-decoration: none; color: var(--primary-color); font-weight: bold; font-size: 1.5rem; }

nav ul { display: flex; list-style: none; }
nav ul li { margin-left: 35px; }
nav ul li a { 
    text-decoration: none; 
    color: var(--primary-color); 
    font-weight: bold; 
    font-size: 1rem;
    letter-spacing: 0.05em;
    position: relative;
    padding-bottom: 5px;
}
nav ul li a::after {
    content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 2px;
    background: var(--primary-color); transition: 0.3s;
}
nav ul li a:hover::after { width: 100%; }

/* Hero Section (MV) */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: -1;
}

.hero-bg img {
    width: 100%; height: 100%;
    object-fit: cover;
}

/* 文字を読みやすくするためのオーバーレイ */
.hero-bg::after {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.4);
}

.hero-content {
    position: relative;
    z-index: 10;
    padding: 0 20px;
}

.hero-content h2 { font-size: 3.5rem; margin-bottom: 25px; font-weight: 700; letter-spacing: 0.15em; line-height: 1.4; text-shadow: 0 2px 10px rgba(0,0,0,0.3); }
.hero-content p { font-size: 1.1rem; max-width: 800px; margin: 0 auto; line-height: 2; opacity: 0.95; text-shadow: 0 2px 10px rgba(0,0,0,0.3); }

/* Section Common */
section { padding: 120px 10%; }
.section-title { text-align: center; margin-bottom: 80px; }
.section-title span { display: block; font-size: 0.9rem; font-weight: bold; color: var(--accent-color); letter-spacing: 0.2em; text-transform: uppercase; margin-bottom: 10px; }
.section-title h3 { font-size: 2.2rem; color: var(--primary-color); margin-bottom: 20px; }

/* Service */
.service-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.service-item { background: var(--bg-light); padding: 50px 40px; border-radius: 4px; border-top: 4px solid var(--primary-color); }
.service-item h4 { margin-bottom: 20px; font-size: 1.3rem; }

/* Flex Content */
.flex-content { display: flex; align-items: center; gap: 80px; flex-wrap: wrap; }
.flex-text { flex: 1; min-width: 320px; }
.flex-img { flex: 1; min-width: 320px; box-shadow: 20px 20px 0px var(--primary-color); }
.flex-img img { width: 100%; height: auto; display: block; object-fit: cover; }

/* Tables */
.info-table { width: 100%; border-collapse: collapse; margin-top: 30px; }
.info-table th, .info-table td { padding: 20px; border-bottom: 1px solid #eee; text-align: left; }
.info-table th { width: 30%; color: var(--primary-color); font-weight: bold; }

footer { background: var(--primary-color); color: white; text-align: center; padding: 60px 20px; font-size: 0.8rem; letter-spacing: 0.1em; }

@media (max-width: 768px) {
    .logo img { height: 50px; }
    nav { display: none; }
    .hero-content h2 { font-size: 2rem; }
    section { padding: 80px 5%; }
    .flex-content { gap: 40px; }
    .flex-img { box-shadow: 10px 10px 0px var(--primary-color); }
}