@charset "UTF-8";

/* ========================================
 * 0. トップページ プレースホルダー
 * ======================================== */
.top-placeholder {
    width: 100%;
    height: 180px;
    background-color: #56bbd4; /* テーマカラー(水色) */
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* スマホ対応: 高さ調整 */
@media (max-width: 768px) {
    .top-placeholder {
        height: 180px;
    }
}

/* ========================================
 * 1. サイト全体の基本設定
 * ======================================== */
html {
    height: 100%;
}

body {
    background-color: #f2f2f2;
    color: #2EA0BD;
    font-family: 'Noto Sans JP', sans-serif;
    margin: 0;
    padding: 0;
    
    /* Sticky Footer用設定 */
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main {
    flex-grow: 1; /* フッターを最下部に押し下げる */
    padding: 0 5%;
    box-sizing: border-box;
}

h2 {
    color: #272727;
    text-align: center;
    font-family: 'montserrat', 'Noto Sans JP', sans-serif;
    font-weight: 700;
    font-size: 70px;
    margin: 50px;
    text-decoration: none;
}

.works-description {
    color: #272727;
    text-align: center;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 500;
    font-size: 15px;
    margin: 20px;
    text-decoration: none;
}

/* ========================================
 * 2. 【TOPページ専用】左側固定ナビ (.side-nav)
 * ======================================== */
.side-nav {
    position: fixed;
    left: 0;
    top: 0;
    height: 100vh;
    width: 240px;
    background: transparent;
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 1;
    transition: opacity 0.4s ease;
}

.side-nav.is-hidden {
    opacity: 0;
    pointer-events: none;
}

.side-nav nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.side-nav nav li {
    margin-left: 0;
    margin-bottom: 20px;
}

.side-nav nav a {
    font-family: 'montserrat', 'Noto Sans JP', sans-serif;
    font-weight: 700;
    text-decoration: none;
    color: #ffffff;
    font-size: 25px;
    transition: transform 0.2s ease, color 0.2s ease;
    transform-origin: left center;
    display: inline-block;
}

.side-nav nav a::before {
    content: '・ ';
}

.side-nav nav a:hover {
    color: #2EA0BD; /* ホバー色 */
    transform: scale(1.05);
}

header.nav-scrolled nav a,
body.page-no-hero .side-nav nav a {
    color: #2EA0BD;
}

header.nav-scrolled nav a:hover,
body.page-no-hero .side-nav nav a:hover {
    color: #2EA0BD; /* ホバー色 */
    transform: scale(1.05);
}

/* ========================================
 * 3. メイン & フッター余白設定
 * ======================================== */
main {
    padding: 0 5%;
    box-sizing: border-box;
}

.page-no-hero main {
    padding-top: 80px;
    padding-bottom: 50px;
}

body:not(.page-no-hero) main {
    padding-top: 100px;
    padding-bottom: 100px;
}

/* ========================================
 * 4. Works ギャラリー
 * ======================================== */
.filter-controls {
    text-align: center;
    margin-bottom: 30px;
}

.filter-btn {
    font-family: 'montserrat', 'Noto Sans JP', sans-serif;
    font-weight: 700;
    font-size: 12px;
    background-color: #60BBD1; /* 標準色 */
    color: #ffffff;
    border: 2px solid transparent;
    padding: 8px 25px;
    margin: 8px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.filter-btn:hover {
    background-color: #2EA0BD; /* ホバー色 */
    color: #ffffff;
    border: 2px solid transparent;
    transform: scale(1.05);
}

.filter-btn.active {
    background-color: #2EA0BD; /* 選択中色 */
    color: #ffffff;
    border: 2px solid transparent;
    transform: scale(1.05);
}

.works-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.works-gallery .work-item {
    border: none;
    display: flex;
    flex-direction: column;
}

.work-item {
    background-color: #ffffff;
    border-radius: 5px;
    border: 1px solid #eee;
    text-decoration: none;
    color: #333;
    overflow: hidden;
    transition: transform 0.2s;
}

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

.work-item video {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

.works-gallery .work-item-content {
    background-color: #ffffff;
    flex-grow: 1;
    transition: background-color 0.3s ease;
}

.works-gallery .work-item:hover .work-item-content {
    background-color: #60BBD1; /* ホバー時の背景色 */
}

.work-item-content {
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.work-genre-tag {
    display: inline-block;
    background-color: #272727;
    color: #ffffff;
    font-size: 10px;
    font-weight: bold;
    padding: 4px 40px;
    border-radius: 2px;
}

.works-gallery .work-item h3 {
    color: #272727;
    transition: color 0.3s ease;
}

.works-gallery .work-item:hover h3 {
    color: #ffffff;
}

.work-item h3 {
    font-family: 'montserrat', 'Noto Sans JP', sans-serif;
    font-weight: 700;
    font-size: 18px;
    margin: 0;
    color: #272727;
}

.works-gallery .work-item .work-client {
    color: #888888;
    opacity: 1.0;
    transition: color 0.3s ease;
}

.works-gallery .work-item:hover .work-client {
    color: #ffffff;
    opacity: 0.9;
}

.work-client {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 12px;
    color: #888888;
    margin: 4px 0 0 0;
    padding: 0;
    text-align: left;
}

.view-more-container {
    text-align: center;
    margin-top: 40px;
}

.works-gallery .work-item.is-hidden {
    display: none;
}

/* ========================================
 * 5. 詳細ページ (work-detail) 動画エリア
 * ======================================== */
.video-container {
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* 16:9比率 */
    margin-bottom: 20px;
    background-color: #000;
}

/* iframe (YouTube) */
.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* video (プレビュー動画) */
.video-container video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.credit {
    background-color: #fff;
    padding: 20px 30px;
    border-radius: 8px;
    margin-bottom: 30px;
    border: 1px solid #eee;
}

.credit h3 {
    border-bottom: 2px solid #eee;
    padding-bottom: 5px;
}

.credit p {
    line-height: 1.8;
}

.back-link {
    display: inline-block;
    padding: 10px 20px;
    background-color: #333;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.2s;
}

.back-link:hover {
    background-color: #555;
}

/* ========================================
 * 7. ハンバーガーメニュー & スライドナビ
 * ======================================== */
.hamburger-menu {
    position: fixed;
    top: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #60BBD1; /* 標準色 */
    border: none;
    z-index: 2000;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0; /* 初期状態は非表示 */
    pointer-events: none;
    transition: opacity 0.4s ease, transform 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
}

/* トップページでも常時表示 */
.page-no-hero .hamburger-menu,
.home .hamburger-menu {
    opacity: 1;
    pointer-events: auto;
}

/* トップページ背景色とのコントラスト調整 */
.home .hamburger-menu {
    background-color: #2EA0BD;
}

.hamburger-menu:hover {
    background-color: #2EA0BD; /* ホバー色 */
    border: none;
    transform: scale(1.05);
}

.hamburger-menu:hover .hamburger-line {
    background-color: #ffffff;
}

.hamburger-menu .hamburger-line {
    width: 28px;
    height: 3px;
    background-color: #ffffff;
    margin: 3px 0;
    transition: all 0.3s ease;
}

.hamburger-menu.is-visible {
    opacity: 1;
    pointer-events: auto;
}

/* ハンバーガーメニューの×変化 */
.hamburger-menu.is-open .hamburger-line:nth-child(1) {
    transform: translateY(4.5px) rotate(45deg);
}

.hamburger-menu.is-open .hamburger-line:nth-child(2) {
    transform: translateY(-4.5px) rotate(-45deg);
    opacity: 1;
}

/* スライド式メニュー */
.slide-out-nav {
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    box-sizing: border-box;
    height: 100vh;
    background-color: #ffffff;
    border-left: 1px solid #eee;
    z-index: 1999;
    padding: 100px 40px;
    transition: right 0.4s ease-in-out;
}

.slide-out-nav.is-open {
    right: 0;
}

.slide-out-nav nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
}

.slide-out-nav nav li {
    margin-bottom: 25px;
    margin-left: 0;
}

.slide-out-nav nav a {
    font-family: 'montserrat', 'Noto Sans JP', sans-serif;
    font-weight: 700;
    font-size: 16px;
    color: #2EA0BD;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    line-height: 1.2;
    transition: transform 0.2s ease, color 0.2s ease;
}

.slide-out-nav nav a:hover {
    color: #2EA0BD;
    transform: scale(1.05);
}

.nav-description {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 400;
    font-size: 10px;
    color: #272727;
    margin-top: 4px;
    transition: color 0.2s ease;
}

.slide-out-nav nav a:hover .nav-description {
    color: #2EA0BD;
}

/* ========================================
 * 8. PROFILE & CONTACT ページ
 * ======================================== */
.profile-page h2,
.contact-page h2,
.works h2 {
    font-family: 'montserrat', 'Noto Sans JP', sans-serif;
    font-weight: 700;
    font-size: 60px;
    color: #272727;
    text-align: center;
    margin: 0 0 40px 0;
}

.profile-content,
.contact-content {
    background-color: transparent;
    border: none;
    border-radius: 0;
    padding: 0;
    color: #333;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 16px;
    line-height: 1.9;
    max-width: 1500px;
    width: 100%;
    margin: 0 auto;
    box-sizing: border-box;
}

.profile-content p,
.contact-content p {
    margin-bottom: 25px;
}

.contact-content .intro-paragraph {
    margin-bottom: 8px;
    line-height: 1.6;
}

.profile-content a,
.contact-content a {
    color: #272727;
    text-decoration: none;
    font-weight: 700;
}

.profile-content a:hover,
.contact-content a:hover {
    text-decoration: underline;
}

/* 制作実績リンク */
#works-history-link {
    color: #2EA0BD;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
}

#works-history-link:hover {
    text-decoration: underline;
}

.contact-content h3 {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 700;
    font-size: 20px;
    color: #272727;
    margin: 0 0 5px 0;
}

.status-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 5px;
}

.contact-content .update-date {
    font-size: 14px;
    color: #888;
    margin: 0;
    padding-bottom: 2px;
}

.contact-content .highlight {
    background-color: transparent;
    font-weight: 700;
    color: #2EA0BD;
    display: block;
    padding: 0;
    margin-bottom: 20px;
    font-size: 19px;
}

.contact-content hr {
    border: none;
    border-top: 1px solid #eee;
    margin: 30px 0;
}

.contact-content .section-title {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 700;
    font-size: 18px;
    background-color: transparent;
    color: #333;
    padding: 0 0 5px 0;
    border-bottom: 2px solid #eee;
    display: block;
    margin: 20px 0 20px 0;
}

.client-status {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.client-status p {
    margin: 0;
    font-size: 16px;
    font-weight: 500;
}

.client-status span {
    font-weight: 700;
    margin-left: 5px;
    color: #2EA0BD;
}

/* CONTACTページ 個人様「×」の色 */
.client-status p:first-of-type span {
    color: #E9922E;
}

.note-left {
    font-size: 14px;
    color: #555;
    margin-top: 10px;
    margin-left: 0;
    text-align: left;
}

/* ========================================
 * 9. レスポンシブ対応
 * ======================================== */
@media (max-width: 1200px) {
    .works-gallery {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .hamburger-menu {
        top: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
    }

    .hamburger-menu .hamburger-line {
        width: 24px;
    }

    .hamburger-menu.is-open .hamburger-line:nth-child(1) {
        transform: translateY(3px) rotate(45deg);
    }

    .hamburger-menu.is-open .hamburger-line:nth-child(2) {
        transform: translateY(-3px) rotate(-45deg);
        opacity: 1;
    }

    .slide-out-nav {
        right: -260px;
        width: 240px;
    }

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

    h2,
    .profile-page h2,
    .contact-page h2,
    .works h2 {
        font-size: 40px;
    }

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

    .profile-content,
    .contact-content {
        padding: 20px;
        font-size: 15px;
    }
}

/* ========================================
 * 10. TOPページ コンテンツ
 * ======================================== */
.pickup,
.contact-cta,
.profile-cta {
    padding: 0;
    margin-bottom: 80px;
    background-color: transparent;
}

.pickup {
    margin-bottom: 80px;
}

.contact-cta {
    margin-bottom: 80px;
}

.profile-cta {
    margin-bottom: 0;
}

.content-wrapper {
    width: 100%;
    max-width: 1500px;
    margin-left: auto;
    margin-right: auto;
}

.pickup h2 {
    font-size: 50px;
    margin-bottom: 30px;
    text-align: left;
    color: #272727;
}

.pickup .content-wrapper .view-all-button-container {
    text-align: center;
    margin-top: 10px;
}

.section-header {
    display: flex;
    align-items: baseline;
    gap: 20px;
    margin-bottom: 0px;
}

.section-header h2 {
    font-size: 50px;
    color: #272727;
    margin: 0;
    text-align: left;
}

.section-header .section-subtitle {
    font-size: 14px;
    color: #888;
    margin: 0;
    padding-bottom: 10px;
    text-align: left;
    white-space: nowrap;
}

.contact-cta p,
.profile-cta p {
    color: #272727;
    line-height: 1.8;
    font-size: 16px;
    text-align: left;
    margin: 0 0 30px 0;
}

.profile-summary {
    display: flex;
    align-items: center;
    gap: 25px;
    margin-bottom: 30px;
    text-align: left;
}

.profile-image-cta img {
    width: 240px;
    height: 240px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    border: none;
    flex-shrink: 0;
}

.profile-text-cta {
    text-align: left;
}

.profile-text-cta h3 {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 700;
    font-size: 20px;
    color: #272727;
    margin: 0 0 10px 0;
}

.profile-text-cta p {
    margin-bottom: 0;
}

.content-wrapper .view-all-button-container {
    text-align: left;
    margin-top: 30px;
}

.view-all-btn {
    font-family: 'montserrat', 'Noto Sans JP', sans-serif;
    font-weight: 700;
    font-size: 14px;
    background-color: #60BBD1; /* 標準色 */
    color: #ffffff;
    border: 2px solid transparent;
    padding: 10px 40px;
    margin: 0;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
}

.view-all-btn:hover {
    background-color: #2EA0BD; /* ホバー色 */
    color: #ffffff;
    border: 2px solid transparent;
    transform: scale(1.05);
}

/* ========================================
 * 11. PICKUP スライダー (同期・固定幅)
 * ======================================== */
.pickup-gallery-wrapper {
    margin: 0 auto;
    overflow: hidden;
    position: relative;
    padding: 20px 0;
}

.slider-wrapper {
    position: relative;
    width: 100%;
}

.slider-track {
    display: flex;
    width: max-content;
    transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    will-change: transform;
}

.pickup-slide {
    flex-shrink: 0;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

/* スライドカード設定 */
.pickup-slide .work-item {
    display: block;
    text-decoration: none;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 100%;
}

/* --- PCサイズ (1025px以上) --- */
/* JS設定: pitch 400px */
@media screen and (min-width: 1025px) {
    .pickup-gallery-wrapper {
        width: 100%;
        max-width: 100%;
    }

    .pickup-slide {
        width: 400px;
        padding: 0 15px;
    }
}

/* --- タブレットサイズ (769px 〜 1024px) --- */
/* JS設定: pitch 300px */
@media screen and (max-width: 1024px) and (min-width: 769px) {
    .pickup-gallery-wrapper {
        width: 100%;
    }

    .pickup-slide {
        width: 300px;
        padding: 0 10px;
    }
}

/* --- スマホサイズ (768px以下) --- */
@media screen and (max-width: 768px) {
    .pickup-gallery-wrapper {
        width: 100%;
    }

    .pickup-slide {
        width: 85vw;
        padding: 0 10px;
    }

    .slider-dots {
        width: 100%;
        text-align: center;
        padding-top: 20px;
    }

    .slider-arrow {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}

/* ホバー時の挙動 */
.pickup-slide .work-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(46, 160, 189, 0.2);
}

.pickup-slide .work-item:hover .slide-info {
    background-color: #60BBD1;
}

.pickup-slide .work-item:hover .slide-info h3,
.pickup-slide .work-item:hover .slide-info p,
.pickup-slide .work-item:hover .work-client {
    color: #ffffff !important;
}

/* 画像・動画エリア */
.media-container {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #000;
}

.media-container video,
.media-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block; 
}

/* 情報エリア */
.slide-info {
    padding: 20px 25px;
    min-height: 100px;
    background-color: #ffffff;
    transition: background-color 0.3s ease;
    text-align: left;
}

.slide-info h3 {
    margin: 10px 0 5px 0;
    font-size: 16px;
    color: #272727;
}

.slide-info .work-client {
    font-size: 12px;
    color: #888;
    margin: 0;
}

/* 矢印ナビゲーション */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    z-index: 100;
    color: #2EA0BD;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    transition: opacity 0.3s;
}

.slider-arrow:hover {
    background: #2EA0BD;
    color: #fff;
}

.prev { left: 20px; }
.next { right: 20px; }

@media (max-width: 600px) {
    .slider-arrow {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }

    .prev { left: 10px; }
    .next { right: 10px; }
}

/* ドットナビゲーション */
.slider-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 30px;
}

.dot {
    width: 10px;
    height: 10px;
    background: #ddd;
    border-radius: 50%;
    cursor: pointer;
    transition: 0.3s;
}

.dot.active {
    background: #2EA0BD;
    transform: scale(1.4);
}

/* ========================================
 * 12. TOPページ スマホ対応
 * ======================================== */
@media (max-width: 768px) {
    .top-placeholder {
        height: 100px;
    }

    body:not(.page-no-hero) main {
        margin-top: 60px;
        margin-bottom: 0;
    }

    .contact-cta,
    .profile-cta {
        padding: 40px 0;
    }

    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        margin-bottom: 20px;
    }

    .section-header h2 {
        font-size: 40px;
        text-align: left;
        margin-bottom: 0;
    }

    .section-header .section-subtitle {
        text-align: left;
        padding-bottom: 0;
    }

    .profile-summary {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .profile-image-cta img {
        width: 360px;
        height: 360px;
    }

    .content-wrapper .view-all-button-container {
        text-align: center;
    }

    .pickup {
        margin-bottom: 60px;
    }

    .pickup h2 {
        text-align: left;
    }

    .pickup .content-wrapper .view-all-button-container {
        text-align: center;
    }
}

/* ========================================
 * 13. ページローダー (スプラッシュスクリーン)
 * ======================================== */

/* アイコンが下から登場 */
@keyframes loaderSlideIn {
    0% {
        transform: translateY(100px) scale(0.8);
        opacity: 0;
    }
    100% {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
}

/* 背景フェードアウト */
@keyframes loaderBgFadeOut {
    from { opacity: 1; }
    to { opacity: 0; }
}

/* ローダー背景 */
#loader-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #2EA0BD; /* メインカラー */
    z-index: 9999;
    display: grid;
    place-items: center;
    opacity: 1;
    pointer-events: auto;
}

#loader-bg.is-fading-out {
    animation: loaderBgFadeOut 0.5s ease-out forwards;
    pointer-events: none;
}

/* ローダーアイコン */
.loader-icon {
    width: 80px;
    height: 80px;
    background-color: #ffffff;
    border-radius: 50%;
    z-index: 10;
    opacity: 0;
    animation: loaderSlideIn 1.0s cubic-bezier(0, 1, 0.2, 1) 0.2s forwards;
}

/* ========================================
 * 14. お問い合わせフォーム
 * ======================================== */
.contact-form {
    margin-top: 30px;
}

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

.form-group label {
    display: block;
    font-weight: 700;
    color: #333;
    margin-bottom: 8px;
    font-size: 14px;
}

.form-group label .required {
    color: #E9922E; /* 必須マーク色 */
    font-size: 12px;
    margin-left: 5px;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 16px;
    background-color: #f9f9f9;
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.form-group input[type="text"]:focus,
.form-group input[type="email"]:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #2EA0BD;
    background-color: #ffffff;
    box-shadow: 0 0 5px rgba(46, 160, 189, 0.3);
}

.radio-group label {
    display: inline-block;
    margin-right: 20px;
    font-weight: 400;
    font-size: 16px;
}

.radio-group input[type="radio"] {
    margin-right: 5px;
}

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

.submit-btn {
    width: 300px;
    max-width: 100%;
}

.contact-form .submit-btn {
    background-color: #60BBD1; /* 標準色 */
    color: #ffffff;
    border-color: transparent;
}

.contact-form .submit-btn:hover {
    background-color: #2EA0BD; /* ホバー色 */
    color: #ffffff;
    border-color: transparent;
    transform: scale(1.05);
}

.privacy-check a {
    color: #2EA0BD;
    text-decoration: underline;
    font-weight: 700;
    transition: opacity 0.2s;
}

.privacy-check a:hover {
    opacity: 0.7;
}

/* ========================================
 * 15. 確認モーダル
 * ======================================== */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 3000;
    opacity: 0;
    animation: fadeIn 0.3s forwards;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal-content {
    background-color: #ffffff;
    padding: 30px 40px;
    border-radius: 8px;
    width: 90%;
    max-width: 600px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    max-height: 80vh;
    overflow-y: auto;
}

.modal-content h3 {
    text-align: center;
    color: #2EA0BD;
    margin-top: 0;
}

#confirm-data {
    background-color: #f9f9f9;
    border: 1px solid #eee;
    border-radius: 5px;
    padding: 10px 20px;
    margin-top: 20px;
    margin-bottom: 30px;
}

#confirm-data p {
    margin: 10px 0;
    color: #333;
}

#confirm-data pre {
    white-space: pre-wrap;
    word-wrap: break-word;
    background-color: #fff;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.modal-buttons {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.modal-btn {
    font-family: 'montserrat', 'Noto Sans JP', sans-serif;
    font-weight: 700;
    font-size: 14px;
    border: 2px solid transparent;
    padding: 10px 20px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    flex-grow: 1;
}

.modal-btn.submit {
    background-color: #2EA0BD; /* 決定色 */
    color: #ffffff;
}

.modal-btn.submit:hover {
    transform: scale(1.05);
    opacity: 0.9;
}

.modal-btn.cancel {
    background-color: #ccc;
    color: #333;
}

.modal-btn.cancel:hover {
    background-color: #b3b3b3;
    transform: scale(1.05);
}

.modal-content.large-content {
    max-width: 700px;
    padding: 40px;
    height: auto;
}

/* プライバシーポリシー本文エリア */
.privacy-text-content {
    max-height: 400px;
    overflow-y: auto;
    border: 1px solid #eee;
    padding: 20px 40px;
    margin-bottom: 20px;
    line-height: 1.8;
    text-align: left;
    background-color: #f9f9f9;
    white-space: normal;
    color: #272727;
}

.privacy-text-content h4 {
    color: #2EA0BD;
    margin-top: 20px;
    margin-bottom: 10px;
}

.privacy-text-content ul {
    list-style-type: disc;
    padding-left: 20px;
    margin: 10px 0 20px 0;
}

.privacy-text-content li {
    margin-bottom: 5px;
}

.privacy-text-content a {
    color: #2EA0BD;
    text-decoration: underline;
}

.privacy-text-content a:hover {
    text-decoration: none;
    opacity: 0.8;
}

.privacy-footer-date {
    margin-top: 30px;
    text-align: right;
    font-size: 12px;
    color: #888;
}

.privacy-text-content p {
    margin: 0;
    font-size: 15px;
}

/* 制作実績モーダル本文エリア */
.works-history-content {
    max-height: 400px;
    overflow-y: auto;
    border: 1px solid #eee;
    padding: 20px;
    margin-bottom: 20px;
    line-height: 1.8;
    text-align: left;
    background-color: #f9f9f9;
    white-space: pre-wrap;
}

.works-history-content p {
    margin: 0;
    font-size: 15px;
}

/* ========================================
 * 16. 送信完了ページ (Thanks Page)
 * ======================================== */
.thanks-page h2 {
    font-family: 'montserrat', 'Noto Sans JP', sans-serif;
    font-weight: 700;
    font-size: 70px;
    color: #2EA0BD;
    text-align: center;
    margin: 0 0 30px 0;
}

.thanks-content {
    background-color: #ffffff;
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 60px 40px;
    color: #333;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 16px;
    line-height: 1.9;
    text-align: center;
}

.thanks-content p {
    margin-bottom: 25px;
}

.thanks-content .view-all-button-container {
    margin-top: 50px;
}

@media (max-width: 600px) {
    .thanks-page h2 {
        font-size: 40px;
    }

    .thanks-content {
        padding: 40px 20px;
    }
}

/* ========================================
 * 17. Contact ページ 2カラムレイアウト
 * ======================================== */
.intro-section {
    text-align: center;
    padding-bottom: 30px;
    margin-bottom: 30px;
    border-bottom: 1px solid #eee;
}

.intro-section .section-title {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.contact-grid {
    display: flex;
    gap: 60px;
}

.contact-column-left {
    flex: 1;
    min-width: 0;
}

.contact-column-right {
    flex: 1;
    min-width: 0;
    padding-left: 0;
    border-left: none;
}

.contact-column-right .contact-form {
    margin-top: 0;
}

.contact-column-right .section-title {
    margin-top: 0;
}

/* ========================================
 * 18. 2カラムレイアウト (スマホ対応)
 * ======================================== */
@media (max-width: 900px) {
    .contact-grid {
        flex-direction: column;
        gap: 30px;
    }

    .contact-column-right {
        padding-left: 0;
        border-left: none;
        padding-top: 30px;
        border-top: 1px solid #eee;
    }

    .intro-section {
        text-align: left;
    }

    .intro-section .section-title {
        text-align: left;
        margin-left: 0;
        margin-right: 0;
    }
}

/* ========================================
 * 19. スクロールインジケーター (Hero下部)
 * ======================================== */
@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(10px);
    }
}

.scroll-indicator {
    position: absolute;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #f2f2f2;
    opacity: 1;
    transition: opacity 0.5s ease-out;
}

.scroll-indicator span {
    font-family: 'montserrat', sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.scroll-indicator .arrow {
    width: 0;
    height: 0;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-top: 22px solid #f2f2f2;
    animation: bounce 2s infinite ease-in-out;
}

.scroll-indicator.is-hidden {
    opacity: 0;
    pointer-events: none;
}

/* ========================================
 * 20. TOPページ V字シェイプ (main::before)
 * ======================================== */
body.home main {
    position: relative;
    padding-top: 50px;
    margin-top: 0;
    z-index: 1;
}

body.home main::before {
    content: '';
    display: block;
    width: 100%;
    height: 100px;
    background-color: #56bbd4; /* ヘッダー背景色と同一に設定 */
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    clip-path: polygon(0 0, 100% 0, 50% 100%);
}

.hero {
    margin-bottom: -1px;
}

@media (max-width: 768px) {
    body.home main {
        padding-top: 30px;
    }

    body.home main::before {
        height: 60px;
    }
}

/* ========================================
 * 21. Contactページ スケジュール表示
 * ======================================== */
.schedule-section {
    margin-bottom: 30px;
    background-color: transparent;
    border-radius: 0;
    padding: 0;
    box-shadow: none;
}

.schedule-header {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.schedule-icon {
    font-size: 24px;
    color: #2EA0BD;
    margin-right: 10px;
}

.schedule-title {
    font-size: 18px;
    font-weight: 700;
    color: #272727;
    margin: 0;
    flex-grow: 1;
}

.schedule-update-date {
    font-size: 12px;
    color: #888;
    font-weight: 700;
}

.schedule-divider {
    border: none;
    border-top: 1px solid #eee;
    margin: 10px 0;
}

.schedule-item {
    display: flex;
    align-items: center;
    padding: 3px 0;
    font-size: 15px;
    font-weight: 500;
}

.schedule-period {
    color: #272727;
    min-width: 60px;
}

.schedule-period.year {
    font-weight: 700;
}

.schedule-period.month {
    margin-left: 10px;
}

.schedule-status-text {
    flex-grow: 1;
    text-align: right;
    margin-right: 15px;
    font-weight: 700;
}

.schedule-status-icon {
    font-size: 18px;
    font-weight: 700;
    min-width: 20px;
    text-align: center;
}

.schedule-item.status-unavailable .schedule-status-text,
.schedule-item.status-unavailable .schedule-status-icon {
    color: #aaaaaa;
}

.schedule-item.status-limited .schedule-status-text,
.schedule-item.status-limited .schedule-status-icon {
    color: #2EA0BD;
}

.schedule-item.status-available .schedule-status-text,
.schedule-item.status-available .schedule-status-icon {
    color: #2EA0BD;
}

/* 「残りわずか」の色設定 */
.contact-page .schedule-item.status-limited .schedule-status-text,
.contact-page .schedule-item.status-limited .schedule-status-icon,
.home .contact-cta .schedule-item.status-limited .schedule-status-text,
.home .contact-cta .schedule-item.status-limited .schedule-status-icon {
    color: #E9922E;
}

@media (max-width: 600px) {
    .schedule-item {
        font-size: 14px;
    }

    .schedule-period {
        min-width: 50px;
    }

    .schedule-status-text {
        margin-right: 10px;
    }
}

/* ========================================
 * 22. TOPページ CONTACT 2カラムレイアウト
 * ======================================== */
.contact-cta-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 30px;
}

.contact-cta-left .schedule-section {
    margin-bottom: 0;
}

.contact-cta-right h4 {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 700;
    font-size: 18px;
    color: #272727;
    margin: 0 0 15px 0;
    padding-bottom: 5px;
    border-bottom: 1px solid #eee;
}

.contact-cta-right p {
    font-size: 15px;
    margin-bottom: 30px;
}

.contact-cta-right p:last-of-type {
    margin-bottom: 10px;
}

.contact-cta-right .view-all-button-container {
    margin-top: 0;
    text-align: left;
}

@media (max-width: 900px) {
    .contact-cta-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-cta-right {
        padding-top: 40px;
        border-top: 1px solid #eee;
    }

    .contact-cta-right .view-all-button-container {
        text-align: center;
    }
}

/* ========================================
 * 23. 共通フッター (site-footer)
 * ======================================== */
.site-footer {
    background-color: #2c2c2c;
    color: #a0a0a0;
    padding: 50px 0;
    font-size: 14px;
    position: relative;
    overflow: hidden;
}

.site-footer::after {
    content: '';
    position: absolute;
    bottom: -100px;
    right: -100px;
    width: 200px;
    height: 200px;
    background-color: #2EA0BD;
    border-radius: 50%;
    opacity: 1;
    z-index: 0;
    transition: transform 0.4s ease-out;
}

.site-footer:hover::after {
    transform: translateX(-20px);
}

.site-footer::before {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 200px;
    height: 200px;
    background-color: #2EA0BD;
    border-radius: 50%;
    opacity: 1;
    z-index: 0;
    transition: transform 0.4s ease-out;
}

.site-footer:hover::before {
    transform: translateX(20px);
}

.footer-content {
    width: 90%;
    max-width: 1500px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 30px;
    position: relative;
    z-index: 1;
}

.footer-left {
    flex-basis: 300px;
    flex-grow: 1;
}

.footer-right {
    flex-basis: 500px;
    flex-grow: 1;
    text-align: right;
}

.footer-hello {
    font-family: 'montserrat', 'Noto Sans JP', sans-serif;
    font-weight: 700;
    font-size: 14px;
    color: #777;
    margin: 0 0 15px 0;
    font-style: normal;
    text-transform: uppercase;
}

.social-icons a {
    color: #a0a0a0;
    font-size: 24px;
    margin-right: 15px;
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: #2EA0BD; /* ホバー色 */
    opacity: 1;
}

.social-icons a:last-child {
    margin-right: 0;
}

.copyright {
    font-size: 12px;
    color: #777;
    margin: 20px 0 0 0;
}

.footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
    display: flex;
    justify-content: flex-end;
    gap: 25px;
    flex-wrap: wrap;
}

.footer-nav a {
    font-family: 'montserrat', 'Noto Sans JP', sans-serif;
    font-weight: 500;
    color: #d0d0d0;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
}

.footer-nav a:hover {
    color: #2EA0BD; /* ホバー色 */
    opacity: 1;
}

@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-left,
    .footer-right {
        flex-basis: auto;
        text-align: center;
        width: 100%;
    }

    .footer-nav ul {
        justify-content: center;
        gap: 15px;
    }

    .social-icons {
        margin-bottom: 20px;
    }

    .site-footer::before,
    .site-footer::after {
        width: 150px;
        height: 150px;
        bottom: -75px;
    }

    .site-footer::before { left: -75px; }
    .site-footer::after { right: -75px; }
}

/* ========================================
 * 24. Profileページ レイアウト調整
 * ======================================== */
.profile-grid {
    display: flex;
    align-items: flex-start;
    gap: 60px;
}

.profile-text-content {
    flex: 2;
    min-width: 0;
}

/* 名前と肩書きブロック */
.profile-name-block {
    margin-bottom: 15px;
    line-height: 1.6;
}

.profile-name-block strong {
    font-size: 18px;
}

.profile-role {
    font-size: 15px;
    font-weight: 500;
    color: #555;
    margin-top: 5px;
    display: inline-block;
}

/* --- PC表示 --- */
.profile-image-container {
    flex: 1;
    min-width: 0;
    text-align: right;
    margin-top: 68px;
}

/* 画像とクレジットのラッパー */
.profile-img-wrap {
    display: inline-block;
    position: relative;
    text-align: right;
}

.profile-main-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    display: block;
}

/* クレジット (PC) */
.icon-credit {
    font-family: 'fot-tsukuardgothic-std', sans-serif !important;
    font-size: 14px;
    color: #555;
    text-align: right;
    margin-top: 10px;
    display: block;
    width: 100%;
}

.icon-credit a {
    color: #2EA0BD;
    text-decoration: none;
}

.icon-credit a:hover {
    text-decoration: underline;
    opacity: 1;
}

/* --- スマホ・タブレット対応 (768px以下) --- */
@media (max-width: 768px) {
    .profile-grid {
        flex-direction: column-reverse;
        gap: 30px;
    }

    .profile-text-content {
        text-align: left;
    }

    .profile-image-container {
        display: block;
        width: 100%;
        margin-top: 0;
        text-align: center;
    }

    .profile-img-wrap {
        display: inline-block;
        margin: 0 auto;
        text-align: right;
    }

    .profile-main-image {
        max-width: 300px;
        width: 100%;
    }

    .icon-credit {
        position: static;
        display: block;
        margin-top: 5px;
        background-color: transparent;
        padding: 0;
        border-radius: 0;
        text-align: right;
        font-size: 12px;
        color: #555;
        line-height: 1.4;
    }
}

/* ========================================
 * 25. Work Detail ページ
 * ======================================== */

/* 「戻る」ボタン */
.back-link {
    display: inline-block;
    padding: 8px 18px;
    background-color: #60BBD1; /* 標準色 */
    color: #ffffff;
    text-decoration: none;
    border-radius: 999px;
    font-family: 'montserrat', 'Noto Sans JP', sans-serif;
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 30px;
    transition: all 0.2s ease;
}

.back-link:hover {
    background-color: #2EA0BD; /* ホバー色 */
    transform: scale(1.05);
}

.work-detail-client-subtitle {
    font-size: 14px;
    color: #888888;
    margin: 5px 0 15px 0;
    line-height: 1.4;
    font-weight: 500;
}

/* 3:7 の2カラムグリッド */
.work-detail-grid {
    display: grid;
    grid-template-columns: 3fr 7fr;
    gap: 40px;
    margin-bottom: 40px;
}

.work-detail-full-width {
    width: 100%;
    max-width: 1500px;
    margin: 0 auto;
    padding: 0;
    box-sizing: border-box;
    margin-top: 50px;
    margin-bottom: 50px;
}

.work-detail-grid {
    margin-bottom: 0;
}

/* 左カラム: タイトル */
.work-detail-left h2 {
    font-size: 40px;
    text-align: left;
    margin: 0 0 5px 0;
    color: #272727;
    line-height: 1.4;
}

/* 左カラム: クライアント名 */
.work-detail-client {
    font-size: 14px;
    color: #888;
    margin: 0 0 15px 0;
    line-height: 1.6;
    font-weight: 500;
}

/* 左カラム: ジャンルタグ */
.work-detail-genre-tag {
    display: inline-block;
    background-color: #272727;
    color: #ffffff;
    font-size: 10px;
    font-weight: 700;
    padding: 6px 20px;
    border-radius: 2px;
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 30px;
}

/* 左カラム: リリース情報 */
.work-info p {
    font-size: 14px;
    color: #333;
    margin-bottom: 30px;
}

.work-info p strong {
    font-family: 'montserrat', 'Noto Sans JP', sans-serif;
    font-weight: 700;
    display: block;
    color: #2EA0BD;
    font-size: 12px;
    margin-bottom: 5px;
    text-transform: uppercase;
}

.work-info p span {
    font-weight: 500;
    line-height: 1.6;
    font-size: 14px;
}

/* 左カラム: クレジット/意図セクション */
.work-detail-left .credit {
    margin-bottom: 0;
    padding: 0;
    background-color: transparent;
    border: none;
    border-radius: 0;
}

.work-detail-left .credit h3 {
    font-family: 'montserrat', 'Noto Sans JP', sans-serif;
    font-weight: 700;
    display: block;
    color: #2EA0BD;
    font-size: 12px;
    margin: 30px 0 5px 0;
    text-transform: uppercase;
    border-bottom: none;
    padding-bottom: 0;
}

.work-detail-left .credit h3:first-of-type {
    margin-top: 0;
}

.work-detail-left .credit p {
    font-weight: 500;
    line-height: 1.6;
    font-size: 14px;
    color: #333;
    margin-bottom: 0;
}

/* スマホ表示対応 */
@media (max-width: 900px) {
    .work-detail-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .work-detail-left h2 {
        font-size: 32px;
    }

    .work-detail-genre-tag {
        padding: 4px 15px;
        margin-bottom: 20px;
    }

    .work-detail-client {
        margin-bottom: 15px;
    }

    .work-info p {
        margin-bottom: 20px;
    }
}

/* ========================================
 * 26. ページ遷移エフェクト
 * ======================================== */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeOut {
    from { opacity: 1; }
    to { opacity: 0; }
}

body {
    opacity: 0;
    transition: opacity 0.15s ease-out;
}

body.fade-in-start {
    opacity: 0;
    animation: fadeIn 0.15s ease-out forwards;
}

body.fade-out-start {
    opacity: 1;
    animation: fadeOut 0.15s ease-in forwards;
}

/* =========================================
 * 27. Work Detail (Pick Images)
 * ========================================= */
.pick-images-gallery {
    margin-top: 0;
    border-top: 1px solid #ddd;
    padding-top: 20px;
    padding-left: 5%;
    padding-right: 5%;
}

.pick-images-gallery .image-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 15px;
}

.pick-images-gallery .image-grid a img {
    width: 100%;
    aspect-ratio: 16 / 9;
    height: auto;
    object-fit: cover;
    border-radius: 4px;
    display: block;
}

/* スマホ表示では1列に変更 */
@media (max-width: 600px) {
    .pick-images-gallery .image-grid {
        grid-template-columns: 1fr; /* ★修正: 2列(repeat(2, 1fr)) から 1列(1fr) に変更 */
    }
}

@media (max-width: 900px) {
    .work-detail-full-width {
        margin-top: 30px;
        margin-bottom: 30px;
    }
}

/* ========================================
 * 28. スマホ表示の余白調整（TOPページ）
 * ======================================== */
@media (max-width: 768px) {
    /* スケジュールとボタンエリアの間隔調整 */
    .contact-cta-grid {
        gap: 20px !important;
    }

    .contact-cta-left .schedule-section {
        margin-bottom: 0 !important;
    }

    .contact-cta-right {
        padding-top: 0 !important;
        margin-top: 0 !important;
    }
}

/* ========================================
 * 29. TOPページ ヘッダータイトル＆背景調整
 * ======================================== */
.hero-title-container {
    position: absolute;
    top: 50px;
    left: 50px;
    z-index: 10;
    text-align: left;
    color: #ffffff;
    width: auto;
}

/* 英語タイトル */
.hero-en-title {
    font-size: 40px;
    font-weight: 700;
    margin: 0;
    line-height: 1;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 0.05em;
    opacity: 0.9;
}

/* 日本語サブタイトル */
.hero-jp-subtitle {
    font-size: 12px;
    font-weight: 500;
    margin: 0;
    line-height: 1.5;
    font-family: 'Noto Sans JP', sans-serif;
    opacity: 0.9;
}

/* V字背景色調整 */
.top-placeholder::after {
    border-top-color: #56bbd4 !important;
}

@media (max-width: 768px) {
    .hero-title-container {
        top: 30px;
        left: 30px;
    }

    .hero-en-title {
        font-size: 32px;
    }

    .hero-jp-subtitle {
        font-size: 13px;
    }
}

/* ========================================
 * 30. スマホ表示 PICKUPレイアウト微調整 (完全版)
 * ======================================== */
@media (max-width: 768px) {
    /* 1. PICKUP見出しブロックの下余白を【完全削除 (0px)】 */
    /* 元の margin-bottom: 20px を強制的に0にします */
    .pickup .section-header {
        margin-bottom: 0 !important;
        padding-bottom: 0 !important;
    }

    /* 2. サブタイトル(制作映像から抜粋！)自体の下余白も念のため削除 */
    .section-header .section-subtitle {
        margin-bottom: 0 !important;
        padding-bottom: 0 !important;
    }
    
    /* 3. 動画スライダーエリア自体の上の隙間（20px分）を【完全削除】 */
    .pickup-gallery-wrapper {
        padding-top: 0 !important; 
        margin-top: 0 !important;
    }
}

/* ========================================
 * 31. スマホ表示 CONTACTスケジュールヘッダー調整
 * ======================================== */
@media (max-width: 600px) {
    .schedule-header {
        display: flex;
        flex-direction: column; /* 縦並びにする */
        align-items: flex-start; /* 左揃え */
        gap: 5px; /* タイトルと日付の間に少し隙間を空ける */
        margin-bottom: 15px; /* 下の表との間隔 */
    }

    .schedule-title {
        width: 100%;
        margin: 0;
    }
    
    .schedule-update-date {
        /* 必要であれば日付の文字サイズ等を微調整 */
        font-size: 12px;
        color: #888;
        margin-left: 0; /* 左寄せ */
    }
}