/* ===================================================
   UZUZ風：フレッシュ＆モダンデザイン
=================================================== */

/* ★魔法のカラーパレット（ここで色を一括管理します） */
:root {
    --main-color: #0066cc; /* UZUZ風の爽やかで信頼感のあるブルー */
    --accent-color: #ff9900; /* エネルギッシュなオレンジ（照明のあかりをイメージ） */
    --bg-color: #f4f8fb; /* ほんのり青みがかった清潔な背景色 */
    --text-main: #333333;
    --text-light: #666666;
    --card-radius: 20px; /* ★ここがポイント！角を大きく丸くしてポップさを出します */
}

/* ===================================================
   ベース設定
=================================================== */
body {
    font-family: 'Noto Sans JP', sans-serif;
    margin: 0;
    padding: 0;
    color: var(--text-main);
    background-color: var(--bg-color); /* 背景を白ではなく、うっすら色付けします */
    line-height: 2;
    letter-spacing: 0.05em;
    font-weight: 400;
}

/* ===================================================
   共通レイアウト・見出し
=================================================== */
.main-content {
    max-width: 1400px; /* ★ここを1400pxにして全体を大きく！ */
    margin: 0 auto;
    padding: 0 5%;
}

.page-content {
    padding-top: 160px;
    min-height: 80vh;
}
section {
    padding: 100px 0 !important; /* 余白を大きく取ってモダンな抜け感を出します */
}
.page-content section {
    padding: 0 0 150px 0;
}
.section-header {
    text-align: center; /* 見出しを真ん中にして目立たせます */
    margin-bottom: 60px !important;
}

/* ★見出しの英語を大きく、メインカラーにしてインパクトを！ */
.en-title {
    font-size: 16px;
    font-weight: bold;
    letter-spacing: 0.2em;
    color: var(--main-color);
    margin: 0 0 5px;
}
.ja-title {
    font-family: 'Noto Sans JP', sans-serif; /* カチッとした明朝体から、モダンなゴシック体へ変更 */
    font-size: 32px;
    font-weight: bold;
    margin: 0;
    margin-bottom: 0 !important;
}

/* ★ボタンを四角い線から、丸くて目立つポップなデザインへ！ */
.btn-wrap {
    text-align: center;
}
.btn-minimal {
    display: inline-block;
    padding: 18px 50px;
    border: none;
    border-radius: 50px; /* 完全に丸いボタン */
    background: var(--main-color);
    color: #ffffff;
    font-size: 14px;
    font-weight: bold;
    letter-spacing: 0.1em;
    text-decoration: none;
    box-shadow: 0 8px 20px rgba(0, 102, 204, 0.3); /* ボタンにも影をつけて浮かせる */
    transition: all 0.3s;
    cursor: pointer;
}
.btn-minimal:hover {
    background: #0052a3;
    transform: translateY(-5px); /* マウスを乗せるとフワッと上に浮くアニメーション */
    box-shadow: 0 12px 25px rgba(0, 102, 204, 0.4);
}

/* ===================================================
   ヘッダー・ロゴ
=================================================== */
header {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 10px 0;
    background: rgba(255, 255, 255, 0.98);
    z-index: 100;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05); /* 線ではなく影でヘッダーを区切る */
    border-bottom: none;
}
.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo {
    margin: 0;
    height: auto;
    display: flex;
    align-items: center;
}
.logo a {
    display: block;
}
.logo img {
    height: 40px;
    width: auto;
    vertical-align: middle;
    margin: 0;
    transform: scale(5);
    transform-origin: left center;
}
nav a {
    color: var(--text-main);
    text-decoration: none;
    margin-left: 40px;
    font-size: 14px;
    font-weight: bold;
    letter-spacing: 0.1em;
    transition: color 0.3s;
}
nav a:hover {
    color: var(--main-color); /* マウスを乗せると青くなる */
}

/* ===================================================
   トップページ：ヒーローエリア
=================================================== */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 80px;
    box-sizing: border-box;
}
.hero-image-wrap {
    position: absolute;
    right: 0;
    top: 0;
    width: 60%;
    height: 100%;
    overflow: hidden;
    border-bottom-left-radius: 80px; /* ★画像の左下に大きな丸みをつけて柔らかさを演出 */
}
.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: slowZoom 20s infinite alternate;
}
@keyframes slowZoom {
    0% { transform: scale(1); }
    100% { transform: scale(1.1); }
}
.hero-text-wrap {
    position: relative;
    width: 40%;
    padding-left: 5%;
    z-index: 10;
}

/* キャッチコピーもゴシック体にして力強く */
.vertical-text { 
    font-family: 'Noto Sans JP', sans-serif; 
    writing-mode: vertical-rl; 
    font-size: clamp(24px, 4vh, 40px); /* ★画面の高さに合わせて自動調整！ */
    letter-spacing: 0.1em; 
    font-weight: 700; 
    color: var(--text-main); 
    margin: 0; 
    display: block !important; 
}
.vertical-text span {
    display: inline-block !important;
    margin-left: 50px !important;
    vertical-align: top !important;
    line-height: 1 !important;
}
.vertical-text span:last-child {
    margin-left: 0 !important;
}

/* ===================================================
   トップページ：事業内容 (ABOUT)
=================================================== */
.service-container {
    display: flex;
    flex-direction: column;
    gap: 40px; /* 隙間を調整 */
}
/* ★リストから、独立したフワフワ浮かぶカードに変更！ */
.service-item {
    display: flex;
    gap: 40px;
    background: #ffffff;
    padding: 40px;
    border-radius: var(--card-radius);
    box-shadow: 0 10px 40px rgba(0,0,0,0.06); /* 大きく柔らかい影 */
    border-bottom: none;
    transition: transform 0.3s;
}
.service-item:hover {
    transform: translateY(-5px);
}
.service-num {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 60px; /* 数字を巨大化してアイキャッチに！ */
    font-weight: 900;
    color: var(--accent-color); /* オレンジ色の数字で活発な印象に */
    margin: 0;
    line-height: 1;
}
.service-name {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: bold;
    font-size: 24px;
    margin: 0 0 15px 0;
    width: auto;
    flex-shrink: 0;
}
.service-desc {
    margin: 0;
    font-size: 15px;
    color: var(--text-light);
}
.service-text-box {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* ===================================================
   トップページ：お知らせ (NEWS)
=================================================== */
.news-list {
    background: #ffffff;
    padding: 20px 40px;
    border-radius: var(--card-radius);
    box-shadow: 0 10px 40px rgba(0,0,0,0.06);
    border-top: none;
}
.news-item {
    display: flex;
    align-items: center;
    padding: 25px 0;
    border-bottom: 1px solid #f0f0f0;
}
.news-item:last-child {
    border-bottom: none;
}
.news-date {
    font-size: 14px;
    font-weight: bold;
    color: var(--main-color);
    width: 120px;
    flex-shrink: 0;
}
.news-category {
    font-size: 11px;
    font-weight: bold;
    padding: 6px 15px;
    border-radius: 20px;
    background: #eef5ff;
    color: var(--main-color);
    border: none;
    margin-right: 20px;
    letter-spacing: 0.1em;
}
.news-title {
    font-size: 15px;
    font-weight: bold;
    color: var(--text-main);
    text-decoration: none;
    transition: color 0.3s;
}
.news-title:hover {
    color: var(--main-color);
}

/* ===================================================
   トップページ：インスタグラム (INSTAGRAM) Luci風フルワイド版
=================================================== */
.slider-wrap.full-wide {
    position: relative;
    width: 100vw; /* ★画面幅いっぱい（100%）のサイズにする */
    margin-left: calc(50% - 50vw); /* ★制限された枠を飛び出して画面端まで広げる魔法のコード */
    margin-right: calc(50% - 50vw);
    margin-bottom: 60px;
}

.insta-gallery {
    display: flex;
    gap: 40px; /* 隙間を広めにとってリッチな印象に */
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 0 5vw; /* 最初の画像が少し内側から始まるように余白を設定 */
    scrollbar-width: none;
    -ms-overflow-style: none;
}
.insta-gallery::-webkit-scrollbar {
    display: none;
}

.insta-photo {
    /* ★パソコン画面の70%〜80%を使う超巨大サイズに！ */
    flex: 0 0 75vw; 
    aspect-ratio: 16 / 9; /* 映画のスクリーンのような横長比率に変更 */
    border-radius: 0; /* ★Luci風のスタイリッシュな「角ばった四角」に変更 */
    overflow: hidden;
}
.insta-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease; /* ズームの動きを少しゆっくり上品に */
}
.insta-photo img:hover {
    transform: scale(1.05);
}

/* ★丸い矢印ボタンのデザイン */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px; /* ボタンも少し大きく押しやすく */
    height: 60px;
    background-color: rgba(255, 255, 255, 0.95);
    border: 1px solid #eee; /* 薄い枠線をつけて上品に */
    border-radius: 50%;
    font-size: 20px;
    color: var(--text-main); /* 矢印の色を落ち着いた色に */
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s;
}
.slider-btn:hover {
    background-color: var(--main-color);
    color: white;
}
.prev-btn {
    left: 2vw; /* 画面の端から少し内側に配置 */
}
.next-btn {
    right: 2vw;
}

/* ===================================================
   会社案内：代表挨拶 (MESSAGE)
=================================================== */
.message-container {
    display: flex;
    gap: 60px;
    align-items: flex-start;
    background: #ffffff;
    padding: 50px;
    border-radius: var(--card-radius);
    box-shadow: 0 10px 40px rgba(0,0,0,0.06);
}
.message-image {
    flex: 1;
    max-width: 320px;
}
.message-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
}
.message-text {
    flex: 2;
}
.message-text p {
    font-size: 15px;
    color: var(--text-light);
    margin-bottom: 25px;
    line-height: 2.2;
}
.message-text strong {
    font-weight: bold;
    color: var(--accent-color); /* 強調文字をオレンジに */
}
.message-sign {
    margin-top: 50px;
    text-align: right;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 18px;
    font-weight: bold;
    color: var(--text-main);
    line-height: 1.6;
}

/* ===================================================
   会社案内：会社概要 (COMPANY)
=================================================== */
.company-main-img {
    max-width: 900px;
    margin: -10px auto 40px; 
    padding: 0;
    box-sizing: border-box;
}
.company-main-img img {
    width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: cover;
    border-radius: var(--card-radius);
    box-shadow: 0 10px 40px rgba(0,0,0,0.06);
}
.company-table {
    width: 100%;
    border-collapse: collapse;
    background: #ffffff;
    border-radius: var(--card-radius);
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.06);
}
.company-table th, 
.company-table td {
    padding: 30px;
    border-bottom: 1px solid #f0f0f0;
    text-align: left;
    font-size: 15px;
    vertical-align: top;
}
.company-table th {
    width: 250px;
    font-weight: bold;
    background: #fafafa; /* 見出し部分だけ少し色を変えます */
    color: var(--main-color);
}

/* ===================================================
   会社案内：スタッフ紹介 (STAFF)
=================================================== */
.staff-wrap {
    display: flex;
    justify-content: center;
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}
.staff-card {
    width: 45%;
    background-color: #fff;
    box-shadow: 0 10px 40px rgba(0,0,0,0.06);
    border-radius: var(--card-radius);
    overflow: hidden;
    transition: transform 0.3s;
}
.staff-card:hover {
    transform: translateY(-5px);
}
.staff-img {
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 30px;
    background-color: #eef5ff; /* 背景を爽やかな薄い水色に */
}
.staff-img img {
    width: 100%;
    max-width: 200px;
    height: auto;
    object-fit: contain;
}
.staff-info {
    padding: 30px;
    text-align: center; /* 情報を真ん中揃えにしてポップに */
}
.staff-role {
    display: inline-block;
    font-size: 11px;
    font-weight: bold;
    color: var(--main-color);
    background: #eef5ff;
    padding: 4px 12px;
    border-radius: 20px;
    margin: 0 0 15px 0;
}
.staff-name {
    font-size: 22px;
    color: var(--text-main);
    margin: 0 0 15px 0;
    font-weight: bold;
}
.staff-desc {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.8;
    margin: 0;
    text-align: left;
}

/* ===================================================
   会社案内：沿革 (HISTORY)
=================================================== */
.history-timeline {
    max-width: 700px;
    margin: 0 auto;
    background: #ffffff;
    padding: 40px;
    border-radius: var(--card-radius);
    box-shadow: 0 10px 40px rgba(0,0,0,0.06);
}
.timeline-item {
    display: flex;
    padding: 25px 0;
    border-bottom: 1px dashed #ddd;
}
.timeline-item:last-child {
    border-bottom: none;
}
.timeline-date {
    width: 220px;
    font-weight: bold;
    font-size: 16px;
    color: var(--main-color);
    flex-shrink: 0;
}
.timeline-date .era {
    font-size: 12px;
    font-weight: normal;
    color: #888;
    margin-left: 5px;
}
.timeline-content {
    font-size: 15px;
    font-weight: bold;
    color: var(--text-main);
}

/* ===================================================
   会社案内：取扱商品 (PRODUCTS)
=================================================== */
.products-desc {
    font-size: 15px;
    color: var(--text-light);
    line-height: 2.2;
    margin-bottom: 50px;
    text-align: center;
}
.logo-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}
.logo-box {
    width: calc(25% - 15px);
    background: #fff;
    border: none;
    border-radius: 15px;
    padding: 30px 10px;
    text-align: center;
    box-sizing: border-box;
    box-shadow: 0 8px 25px rgba(0,0,0,0.04);
    transition: transform 0.3s;
}
.logo-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}
.logo-box img {
    max-width: 80%;
    height: auto;
    max-height: 40px;
    margin-bottom: 15px;
}
.logo-name {
    display: block;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: bold;
    font-size: 13px;
    color: var(--main-color);
    letter-spacing: 0.1em;
}
.logo-box a {
    text-decoration: none;
    color: inherit;
    display: block;
    width: 100%;
    height: 100%;
}

/* ===================================================
   お問い合わせ (CONTACT)
=================================================== */
.contact-message {
    font-family: 'Klee One', cursive; /* ここは手書き風を残して親しみやすさをキープ！ */
    font-weight: 600;
    font-size: 20px;
    text-align: center;
    color: var(--main-color);
    margin-bottom: 50px;
    line-height: 1.8;
}
.contact-wrap {
    max-width: 700px;
    margin: 0 auto;
    background: #ffffff;
    padding: 20px;
    border-radius: var(--card-radius);
    box-shadow: 0 10px 40px rgba(0,0,0,0.06);
}

/* ===================================================
   フッター
=================================================== */
footer {
    padding: 40px 0 20px;
    text-align: center;
    background-color: var(--main-color); /* フッターもメインカラーのブルーに変更 */
    color: #ffffff;
}
.footer-info {
    display: inline-block;
    text-align: center; /* 情報を真ん中揃えに */
    margin-bottom: 20px;
}
.footer-info p {
    font-size: 14px;
    font-weight: bold;
    color: #ffffff;
    margin: 5px 0;
    letter-spacing: 0.1em;
}
.copyright {
    font-size: 11px;
    color: rgba(255,255,255,0.7);
    letter-spacing: 0.1em;
    margin: 0;
}

/* ===================================================
   スマートフォン対応 (レスポンシブ)
=================================================== */

/* ★画像が画面からはみ出さないようにする基本設定を追加！ */
img {
    max-width: 100%;
    height: auto;
}
body {
    overflow-x: hidden; /* 横揺れ防止 */
}

@media (max-width: 768px) {
    .header-inner { 
        padding: 10px 20px; 
        flex-direction: column; /* ロゴとメニューを縦並びにする */
        gap: 15px; /* ロゴとメニューの間の隙間 */
    }
    
    /* display: none; を削除し、スマホ用に整える設定を追加します */
    nav { 
        display: flex; 
        flex-wrap: wrap; /* 画面に収まらない場合は折り返す */
        justify-content: center; /* 真ん中揃え */
        gap: 10px 20px; /* メニュー同士の隙間（縦 横） */
    }
    
    nav a {
        margin-left: 0; /* PC用の左側の余白を消す */
        font-size: 13px; /* スマホでは少し文字を小さくする */
    }

    /* --- ここから追加 --- */
    .logo {
        justify-content: center; /* ロゴを真ん中に配置 */
    }
    .logo img {
        transform: scale(1); 
        transform-origin: center center; 
        height: 180px; /* ★ここを 30px から 80px に増やします！ */
    }
    /* --- ここまで追加 --- */
    
    section { padding: 80px 0 !important; }
    .page-content { padding-top: 100px; }
    
    /* =========================================
       ★ここを修正！トップの画像が表示されるように変更
       ========================================= */
    .hero { 
        flex-direction: column; 
        padding-top: 300px; /* ヘッダーの高さ分だけ下げる */
        height: auto; /* 画面の高さに固定せず、内容に合わせる */
        min-height: 100vh;
    }
    
    .hero-image-wrap { 
        position: relative; /* absolute（浮かす）のをやめて、通常の位置に戻す */
        width: 100%; 
        height: 50vh; /* 画像の高さを画面の半分に */
        border-bottom-left-radius: 40px; 
    }
    
    .hero-text-wrap { 
        position: relative; /* これも通常の位置に */
        width: 100%; 
        padding: 40px 20px; 
        text-align: center; 
    }
    
    .vertical-text { 
        writing-mode: horizontal-tb; /* スマホでは横書きにして読みやすく！ */
        font-size: 26px; 
        line-height: 1.6; 
        height: auto; 
    }
    .vertical-text span { margin-left: 0 !important; display: block !important; margin-bottom: 10px; }
    
    .service-item { flex-direction: column; gap: 20px; padding: 30px; }
    .service-name { width: 100%; }
    
    .news-item { flex-direction: column; align-items: flex-start; gap: 10px; padding: 20px 0; }
    .news-list { padding: 20px; }
    
    .message-container { flex-direction: column; gap: 30px; padding: 30px; }
    .message-image { max-width: 100%; }
    
    .company-table th, 
    .company-table td { display: block; width: 100%; padding: 15px; }
    .company-table th { padding-bottom: 5px; border-bottom: none; }
    
    .staff-wrap { flex-direction: column; align-items: center; gap: 30px; }
    .staff-card { width: 100%; }
    
    .history-timeline { padding: 20px; }
    .timeline-item { flex-direction: column; padding: 15px 0; }
    .timeline-date { width: 100%; margin-bottom: 5px; }
    
    .products-desc { text-align: left; }
    .logo-box { width: calc(50% - 10px); }
    
    .contact-message br { display: none; }
  /* スマホは指でスワイプできるので、ボタンを隠す */
    .slider-btn { display: none; }
    /* スマホでも画面の端から端まで画像を見せる */
    .slider-wrap.full-wide { margin-bottom: 40px; }
    .insta-photo { flex: 0 0 90vw; aspect-ratio: 4 / 3; } /* スマホは少し縦長にして見やすく */
}
/* ===================================================
   カスタムカーソル（追従ポインター）
=================================================== */
/* パソコン画面（769px以上）のときだけ表示する */
@media (min-width: 769px) {
    /* ★修正: 元々の矢印カーソルを隠す設定を削除しました。
       これでいつもの矢印が表示されたまま、丸いポインターがついてきます！
    */
    
    /* 小さい丸（真ん中の芯） */
    .cursor {
        display: none; /* ★画像を参考に、真ん中の小さな芯は消して一つの丸に統一しました */
    }

    /* 遅れてついてくる丸いポインター */
    .cursor-follower {
        position: fixed;
        top: -10px;  /* ★修正: サイズに合わせて位置調整 */
        left: -10px; /* ★修正: サイズに合わせて位置調整 */
        width: 20px; /* ★修正: 通常時を小さめのサイズに変更 */
        height: 20px;/* ★修正: 通常時を小さめのサイズに変更 */
        background-color: #cccccc; /* ★修正: 画像のようなグレーに変更 */
        border-radius: 50%;
        z-index: 9999;
        pointer-events: none;
        /* ★修正: 0.3sから0.15sにして、大きくなるスピードをキビキビと速くしました */
        transition: width 0.15s, height 0.15s, top 0.15s, left 0.15s, background-color 0.15s;
    }

    /* 押せる場所に乗ったときの変化 */
    .cursor-follower.is-active {
        width: 50px; /* 大きさはそのまま */
        height: 50px;
        top: -25px;  
        left: -25px; 
        background-color: rgba(255, 179, 71, 0.8); /* ★修正: 画像のような綺麗なオレンジ色に変更 */
    }
}

/* スマホサイズのときはカスタムカーソルを消す（指で操作するため） */
@media (max-width: 768px) {
    .cursor, .cursor-follower {
        display: none !important;
    }
}
```eof

コードをありがとうございます！確認したところ、スマホサイズになったときに一番上の目立つ画像（ヒーロー画像）が消えてしまう原因が分かりました。

原因は、画像を文字の横に「浮いた状態（absolute）」で配置する設定になっていて、スマホサイズになったときに画像の高さが「0」として扱われてしまっていたからです。

**修正した `style.css` を上に出力しました。**
この内容をまるごとコピーして、今の `style.css` に上書き保存してみてください！

### 主な修正内容
1.  **画像の基本設定を追加:** コードの真ん中あたりに `img { max-width: 100%; height: auto; }` を追加し、どんな画像でも画面からはみ出さないようにしました。
2.  **スマホ用（@media内）のヒーロー設定を修正:**
    *   `.hero` の高さを固定せず、内容に合わせるようにしました。
    *   `.hero-image-wrap` の「浮いた状態（absolute）」を解除し、通常の位置（relative）に戻しました。
    *   これで、スマホでは「上半分に画像、下半分に文字」という形で綺麗に表示されるはずです。

ぜひ、先ほどのブラウザでのスマホ表示確認（右クリック → 検証）で、画像がちゃんと出るようになったか確認してみてくださいね！