/* arigatokara 男性専用のお花屋さん - index.css */

/* Google Fonts インポート */
@import url('https://fonts.googleapis.com/css2?family=Pacifico&family=Great+Vibes&display=swap');

/* リセットCSS */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "游明朝", "Yu Mincho", "MS P明朝", "MS PMincho", serif;
    overflow-x: hidden;
}

/* ヒーローセクション */
.hero-section {
    height: 200vh;
    position: relative;
    background: #f5f5f5;
}

/* ヘッダー */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 2rem;
    z-index: 100;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.header-left {
    display: flex;
    align-items: center;
}

.online-shop-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: #333;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-size: 0.9rem;
    transition: background 0.3s ease;
}

.online-shop-btn:hover {
    background: #555;
}

.shop-icon {
    width: 16px;
    height: 16px;
}

.logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    font-size: 1.5rem;
    font-weight: 300;
    color: #333;
    letter-spacing: 0.2em;
}

.header-right {
    display: flex;
    align-items: center;
}

.hamburger-menu {
    width: 30px;
    height: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    cursor: pointer;
    padding: 5px 0;
}

.hamburger-line {
    width: 100%;
    height: 2px;
    background: #333;
    transition: all 0.3s ease;
}

.hamburger-menu:hover .hamburger-line {
    background: #666;
}

/* ビデオセクション */
.video-container {
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    height: calc(100vh - 80px);
    display: flex;
    z-index: 1;
}

.video-half {
    width: 50%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.1s ease-out;
    flex-shrink: 0;
}

.video-left {
    background-image: url("images/arigatokara-start.jpg");
    position: relative;
}

.video-right {
    background-image: url("images/arigatokara-start3.jpg");
    position: relative;
}

.video-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: 'Great Vibes', 'Pacifico', cursive;
    font-size: 2.8rem;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.4);
    font-weight: 400;
    letter-spacing: 0.02em;
    /* pointer-events: none; この行を削除またはコメントアウト */
    z-index: 2;
    white-space: nowrap;
    text-align: center;
    min-width: 200px;
}

    .columns-logo-link {
            display: inline-block;
            transition: transform 0.3s ease, filter 0.3s ease;
            text-decoration: none;
        }

        .columns-logo-link:hover {
            transform: scale(1.05);
            filter: brightness(1.1);
        }

        .columns-logo-link img {
            pointer-events: none; /* 画像自体のドラッグを防ぐ */
        }

/* オープン日ボックス */
.opening-date-box {
    position: absolute;
    top: 50%;
    right: -20rem;
    transform: translateY(-50%);
    background: #79c06e;
    border-radius: 15px;
    padding: 1.5rem 2rem;
    text-align: center;
    color: white;
    font-family: "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "游明朝", "Yu Mincho", "MS P明朝", "MS PMincho", serif;
　　box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(5px);
    z-index: 3;
}

.opening-year {
    font-size: 2.5rem;
    font-weight: 300;
    line-height: 1;
    margin-bottom: 0.3rem;
    letter-spacing: 0.1em;
}

.opening-date {
    font-size: 3rem;
    font-weight: 600;
    line-height: 1;
    margin-bottom: 0.2rem;
    color: #ffffff;
}

.opening-text {
    font-size: 1.5rem;
    font-weight: 400;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}


/* テキストオーバーレイ */
.text-overlay {
    position: fixed;
    top: calc(50% + 40px);
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #666;
    z-index: 10;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.text-overlay.visible {
    opacity: 1;
}

.main-title {
    font-size: 2rem;
    font-weight: 300;
    margin-bottom: 1rem;
    letter-spacing: 0.1em;
}

.subtitle {
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 1rem;
}

.vision-link {
    display: inline-block;
    padding: 0.8rem 2rem;
    border: 2px solid #666;
    color: #666;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    border-radius: 30px;
    transition: all 0.3s ease;
    margin-top: 0.5rem;
}

.vision-link:hover {
    background: #666;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 102, 102, 0.3);
}

.date-label {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-bottom: 0.5rem;
}

/* コンテンツセクション */
.content-section {
    height: 200vh;
    background: transparent;
    display: flex;
     flex-direction: column;
     align-items: center;
     justify-content: flex-start;
    position: relative;
    z-index: 20;
    padding-top: 10vh;
}


  /* missionセクション上の画像 */
        .mission-image {
            width: 90%;
            max-width: 600px;
            margin-bottom: 2rem;
            text-align: center;
        }

        .mission-image img {
            width: 100%;
            height: auto;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .mission-image img:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
        }


.pickup-block {
    max-width: 600px;
    width: 100%;
    padding: 2.5rem 2.5rem;
    text-align: center;
}


/* ABOUT USコンテンツ */
.about-content {
    margin-bottom: 2rem;
}

.opening-image {
    width: 100%;
    max-width: 600px;
    margin-bottom: 1rem;
    text-align: center;
}

.opening-image img {
    width: 100%;
    max-width: 600px;
    height: auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}



.mission-title {
    font-size: 2.0rem;
    font-weight: 300;
    color: #666;
    margin-bottom: 1rem;
    letter-spacing: 0.1em;
}

/* スクロールインジケーター */
.scroll-indicator {
    position: fixed;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 0.9rem;
    z-index: 15;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* フッターセクション */
.footer-section {
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    padding: 3rem 2rem 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    margin-top: 3rem;
}

.footer-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.footer-logo {
    margin-bottom: 1.5rem;
}

.footer-logo img {
    height: 60px;
    width: auto;
}

.footer-info {
    margin-bottom: 2rem;
    color: #666;
}

.company-name {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #333;
}

.company-address {
    font-size: 0.9rem;
    margin-bottom: 0.3rem;
    line-height: 1.4;
}

.company-phone {
    font-size: 0.9rem;
    margin-bottom: 0.3rem;
}

.footer-icons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.footer-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f5f5f5;
    border-radius: 50%;
    color: #666;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-icon:hover {
    background: #745848;
    color: white;
    transform: translateY(-2px);
}

.footer-icon svg {
    width: 20px;
    height: 20px;
}

.instagram-icon:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.contact-icon:hover {
    background: #745848;
}

.footer-copyright {
    font-size: 0.8rem;
    color: #888;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    /* ヒーローセクションを通常の高さに変更 */
    .hero-section {
        height: auto !important;
        min-height: auto !important;
        position: relative !important;
        padding-bottom: 0 !important;
    }
    
    /* ビデオコンテナを縦並びに変更 */
    .video-container {
        position: relative !important;
        top: 80px !important;
        height: auto !important;
        flex-direction: column !important;
        margin-bottom: 0 !important;
    }
    
    .video-half {
        width: 100% !important;
        height: 40vh !important; /* 50vhから40vhに変更してより短く */
        transform: none !important; /* スクロール効果を無効化 */
        margin-bottom: 0 !important;
    }
    
    /* テキストオーバーレイを静的な位置に変更 */
    .text-overlay {
        position: relative !important;
        top: auto !important;
        left: auto !important;
        transform: none !important;
        opacity: 1 !important;
        padding: 3rem 1rem !important;
        background: #f5f5f5 !important;
        margin: 0 !important;
        margin-top: 2rem !important; /* 画像との間隔を追加 */
        z-index: 30 !important; /* より高いz-indexを設定 */
    }
    
    /* スクロールインジケーターを非表示 */
    .scroll-indicator {
        display: none !important;
    }
  
  /* オープン日ボックスのモバイル対応 */
.opening-date-box {
    right: 0.5rem;
    padding: 1rem 1.5rem;
    border-radius: 12px;
}

.opening-year {
    font-size: 1.8rem;
    margin-bottom: 0.1rem;
}

.opening-date {
    font-size: 2.2rem;
    margin-bottom: 0.2rem;
}

.opening-text {
    font-size: 1rem;
}
    
    /* コンテンツセクションを通常の高さに変更 */
    .content-section {
        height: auto !important;
        padding-top: 2rem !important;
    }
    
   /* missionセクション上の画像のモバイル対応 */
            .mission-image {
                max-width: 90%;
                margin-bottom: 1rem;
                padding: 0;
            }

            .mission-image img {
                border-radius: 8px;
            }
  
.opening-image {
        max-width: 100%;
           }

    .header {
        padding: 0 1rem;
    }

   .logo img {
        height: 40px;
        width: auto;
    }
    
    .logo {
        font-size: 1.2rem;
    }
    
    .online-shop-btn {
        font-size: 0; /* テキストを非表示 */
        padding: 0.6rem;
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        gap: 0; /* gapを削除 */
    }
    
    /* アイコンのサイズを調整 */
    .shop-icon {
        width: 20px;
        height: 20px;
        flex-shrink: 0;
    }
    
    
    .main-title{
        font-size: 1.5rem;
    }
  
   .mission-title{
    font-size: 1.3rem;
    padding: 0 0.5rem;
    }

    .subtitle {
        font-size: 0.9rem;
        max-width: 300px;
        padding: 0 2rem;
    }
    
    .vision-link {
        font-size: 0.8rem;
        padding: 0.7rem 1.8rem;
    }
    
    .video-text {
        font-size: 2rem;
        min-width: 150px;
    }
    
    .pickup-block {
        max-width: 350px;
        padding: 2rem 1.5rem;
    }
    


    .footer-section {
        padding: 2rem 1rem 1.5rem;
        margin-top: 2rem;
    }

    .footer-logo img {
        height: 50px;
    }

    .footer-info {
        margin-bottom: 1.5rem;
    }

    .company-name {
        font-size: 1rem;
    }

    .company-address,
    .company-phone {
        font-size: 0.8rem;
    }

    .footer-icons {
        gap: 1rem;
        margin-bottom: 1.5rem;
    }

    .footer-icon {
        width: 35px;
        height: 35px;
    }

    .footer-icon svg {
        width: 18px;
        height: 18px;
    }
}