@charset "UTF-8";
/* common */
:root {
    --text_color: #56452D;
    --default_yellow: #FFFAE7;
    --default_pink: #F1CDCE;
    --default_blue: #CFDDE3;      
    --default_white: #FFF;      
    --background_color_pink: #FBEEEA;
    --background_color_BG: #F3EDE3;  
}
html {
    font-size: 62.5%;
    scroll-behavior: smooth;
}

body {
    padding-top: 45px; 
    font-family: 
    'Playfair Display', 
    'Mrs Saint Delafield';
    font-style: normal;
    color: var(--text_color, #56452D);
    line-height: 1.5;
    box-sizing: border-box; 
    position: relative;
}

/* ページトップへ戻るボタン */
.scroll_top_btn {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2.5rem;
    color: var(--text_color, #56452D);
    position: fixed;
    z-index: 10000;
    width: 50px;
    height: 50px;
    bottom: 10px;
    right: 0%;
    cursor: pointer;
    text-decoration: none;
}
img {
    max-width: 100%;
    height: auto;
}
.container {
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    min-height: calc(100vh - 45px);
}
.header_book_btn {
    cursor: pointer;
    display: flex;
    width: 75px;
    height: 20px;
    padding: 5px 10px;
    justify-content: center;
    align-items: center;
    gap: 5px;
    border-radius: 5px;
    background: var(--default_pink, #F1CDCE);
    position: relative;
    transition: 0.4s;
}
.header_book_btn::after {
    content: '';
    display: inline-block;
    width: 15px;
    height: 14px;
    background-image: url(../images/logo/logo_link.png);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}
.header_book_btn p {
    color: var(--default_white, #FFF);
    text-align: center;
    font-family: "Playfair Display";
    font-size: 1.2rem;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 0.6px;
}
.header_book_btn:hover {
    opacity: 0.8;
}
.book_btn {
    cursor: pointer;
    display: flex;
    width: 170px;
    padding: 10px 20px 10px 0;
    justify-content: center;
    align-items: center;
    gap: 5px;
    border-radius: 10px;
    background: var(--txt-color, #56452D);
    position: relative;
    transition: 0.4s;
}
.book_btn::after {
    content: '';
    display: inline-block;
    width: 25px;
    height: 24px;
    background-image: url(../images/logo/logo_link.png);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    top: 20%;
    right: 20%;
}
.book_btn p {
    color: var(--default_white, #FFF);
    text-align: center;
    font-family: "Playfair Display";
    font-size: 1.8rem;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 0.9px;
}
.book_btn:hover {
    opacity: 0.7;
}
h2 {
    color: var(--txt-color, #56452D);
    text-align: center;
    font-family: "Mrs Saint Delafield";
    font-size: 5.2rem;
    font-weight: 400;
    letter-spacing: 2.6px;
    border-bottom: 1px solid var(--txt-color, #56452D);
}

/* header */
.header {
    position: fixed;
    top: 0;
    z-index: 1000;
    display: flex;
    width: 100%;
    padding: 5px 10px;
    justify-content: space-between;
    align-items: center;
    background-image: url(../images/lapraline_background_3.png);
    background-size: cover;
}
.header_logo {
    width: 39px;
    height: 36px;
    cursor: pointer;
}
.hamburger_btn_container {
    width: 80px;
}
.hamburger_btn {
    width: 20px;
    cursor: pointer;
}

/* hamburger menu */
.nav {
    background-color: rgba(255, 250, 231, 0.9);
    display: flex;
    width: 100%;
    height: 100vh;
    padding-bottom: 50px;
    flex-direction: column;
    align-items: center;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    transform: translateX(-100%);
    transition: transform 0.4s;
}
/* .nav.active表示 */
.nav.active {
    transform: translate(0);
}
.nav_header {
    display: flex;
    width: 100%;
    padding: 5px 10px;
    align-items: center;
}
.close_btn {
    width: 40px;
    cursor: pointer;
}
.nav .nav_menu {
    margin: 80px auto 0;
}
.nav .nav_menu_about {
    display: flex;
    gap: 20px;
    margin-bottom: 50px;
}
.nav .nav_menu_section {
    width: 150px;
    height: 20px;
    margin-bottom: 15px;
    color: var(--text_color,#56452D);
    font-family: "Playfair Display";
    font-size: 1.7rem;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 0.9px;
}
.nav .nav_menu_topic {
    margin-bottom: 10px;
    width: 150px;
    height: 20px;
    color: var(--text_color,#56452D);
    text-align: left;
    font-family: "Playfair Display";
    font-size: 1.5rem;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 0.75px;
}
.nav_menu_topic::before {
    content: '';
    display: inline-block;
    width: 15px;
    height: 1px;
    background-color: var(--text_color, #56452D);
    vertical-align: middle;
    margin-right: 8px;
}
.nav .nav_menu_info {
    display: flex;
    gap: 20px;
}
.nav .nav_sns {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 50px auto 0;
}
.nav .nav_sns_icon {
    width: 40px;
    height: 37px;
}
.nav .book_btn {
    background-color: var(--default_pink ,#F1CDCE);
    margin: 50px auto 0;
}

/* main */
.main {
    flex: 1;
}
.mainVisual {
    display: flex;
    width: 100%;
    height: 100vh;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 0 0 50px 50px;
    position: relative;
    text-align: center;
}
.mainVisual_img {
    border-radius: 0 0 50px 50px;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 2.0s ease-in-out;
}
.mainVisual_img.active {
    opacity: 1;
}
.mainVisual_logo {
    width: 50%;
    flex-shrink: 0;
    position: relative;
    top: auto;
    left: auto;
    transform: none;
}
.top_sns {
    display: flex;
    padding: 10px;
    margin: 0 auto;
    justify-content: center;
    align-items: center;
    gap: 30px;
    position: absolute;
    top: 90%;
    border-radius: 10px;
    opacity: 0.5;
    background: var(--default_white, #FFF);
}
.top_sns img {
    width: 40px;
    height: 37px;
    aspect-ratio: 40/37;
}
/* スクロールフェードイン用のアニメーション */
.fade-up {
    opacity: 0;
    transform: translateY(50px); /* 下に50pxずらしておく */
    transition: opacity 1.0s ease, transform 1.0s ease; /* 1秒かけて変化 */
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0); /* 元の位置に戻す */
}

/* フッター */
.footer {
    display: flex;
    width: 100%;
    padding: 30px 0;
    margin: 0 auto;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 25px;
    background-color: var(--default_blue, #CFDDE3);
}
.footer a {
    width: 100px;
}
.footer .book_btn a {
    width: 100%;
}
.nav_menu {
    padding-left: 30px;
}
.nav_menu_about {
    display: flex;
    gap: 20px;
    margin-bottom: 50px;
}
.nav_menu_section {
    width: 150px;
    height: 20px;
    margin-bottom: 15px;
    color: var(--text_color,#56452D);
    font-family: "Playfair Display";
    font-size: 1.4rem;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 0.9px;
}
.nav_menu_topic {
    margin-bottom: 10px;
    width: 150px;
    height: 20px;
    color: var(--text_color,#56452D);
    text-align: left;
    font-family: "Playfair Display";
    font-size: 1.3rem;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 0.75px;
}
.nav_menu_topic::before {
    content: '';
    display: inline-block;
    width: 15px;
    height: 1px;
    background-color: var(--text_color, #56452D);
    vertical-align: middle;
    margin-right: 8px;
}
.nav_menu_info {
    display: flex;
    gap: 20px;
}
.nav_sns {
    display: flex;
    width: 180px;
    height: 40px;
    justify-content: center;
    align-items: center;
    gap: 30px;
    flex-shrink: 0;
}
/* --- Hover Effects --- */

/* 1. これから動きをつける全要素に、滑らかな変化（transition）を事前設定 */
a,
button,
.hamburger_btn,
.close_btn,
.scroll_top_btn,
.Q-1 .FAQ-img,
.workshop_item-1, .workshop_item-2, .workshop_item-3, .workshop_item-4, .insta_btn, .tiktok_btn {
    transition: all 0.3s ease-in-out;
}

/* 2. テキストリンクのホバー効果：文字色を#E8923Bに変更し、少し拡大 */
a:hover {
    color: #E8923B;
    transform: scale(1.05);
}

/* 3. 画像やアイコンのホバー効果：少し拡大し、透明度を少し下げる */
.header_logo:hover,
.hamburger_btn:hover,
.close_btn:hover,
.nav_sns a:hover,
.top_sns a:hover,
.info_topipcs a:hover,
.scroll_top_btn:hover,
.Q-1 .FAQ-img:hover {
    opacity: 0.8;
    transform: scale(1.1);
    cursor: pointer;
}

/* 4. BOOKボタンなど背景色を持つボタンのホバー効果：背景色を#E8923Bに変更し、少し拡大 */
.book_btn:hover,
.header_book_btn:hover,
.Submit:hover {
    background-color: #E8923B;
    transform: scale(1.05);
}

/* 拡大させずに背景色だけ変えるボタン（SEE MARKET, Instagram, TikTok） */
.insta_btn:hover,
.tiktok_btn:hover {
    background-color: #E8923B;
    transform: none;
}

/* ボタン内の文字色が意図せず変わらないように設定 */
.book_btn:hover p, 
.header_book_btn:hover p, 
.Submit:hover,
.insta_btn:hover p,
.tiktok_btn:hover p  {
    color: var(--default_white, #FFF);
}

/* PC用固定リンク画像（デフォルトは非表示） */
.pc-candle-link {
    display: none;
}

/* PC・タブレット（769px以上）向けのスタイル */
@media screen and (min-width: 769px) and (max-width: 1129px) {
    body {
        padding-top: 0;
        /* 複数の背景画像をカンマ区切りで指定（手前が上） */
        /* pc-candleImg-2.png はボタンとして配置するため背景からは削除 */
        background-image: 
            url(../images/lapraline_background_4.jpg);

        /* それぞれの画像の位置を設定 */
        background-position: 
            center;                 /* lapraline_background_4.jpgを中央に */

        /* それぞれの画像のサイズを設定 */
        background-size: 
            cover; /* lapraline_background_4.jpg */

        /* 画像の繰り返しと固定を設定 */
        background-repeat: no-repeat; /* 両方の画像を繰り返さない */
        background-attachment: fixed;
    }
    
    .container {
        width: 375px;
        box-shadow: 0 0 50px rgba(180,112,44,10);
        min-height: 100vh;
    }
    .header {
        display: block;
        background: none;
        padding: 0;
        height: 0;
    }
    /* モバイル用のロゴとBOOKボタンは非表示 */
    .header_logo, .header_book_btn {
        display: none;
    }
    /* ハンバーガーボタンを pc-candleImg-2.png に置き換えて配置 */
    .hamburger_btn_container {
        position: fixed;
        top: 30px;
        left: 30px;
        width: 100px;
        z-index: 2000;
    }
    .hamburger_btn {
        width: 100px;
        height: auto;
        content: url('../images/pc-candleImg-2.png'); /* 画像を差し替え */
        transition: transform 0.3s ease;
    }
    .close_btn {
        display: none;
    }
    .mainVisual {
        width: 375px;
        height: 723px;
    }
    .footer {
        width: 375px;
    }
    
    /* PC用固定リンク画像の表示設定 */
    .pc-candle-link {
        display: block;
        position: fixed;
        bottom: 50px;
        right: 10px;
        width: 200px;
        z-index: 900;
    }
}

@media screen and (min-width: 1130px) {
    body {
        padding-top: 0;
        /* 複数の背景画像をカンマ区切りで指定（手前が上） */
        background-image: 
            url(../images/lapraline_background_4.jpg);

        /* それぞれの画像の位置を設定 */
        background-position: 
            center;                 /* lapraline_background_4.jpgを中央に */

        /* それぞれの画像のサイズを設定 */
        background-size: 
            cover; /* lapraline_background_4.jpg */

        /* 画像の繰り返しと固定を設定 */
        background-repeat: no-repeat; /* 両方の画像を繰り返さない */
        background-attachment: fixed;

        position: relative;
    }
        
    .container {
            width: 375px;
            box-shadow: 0 0 50px rgba(180,112,44,10);
            min-height: 100vh;
    }
    .header {
        display: block;
        background: none;
        height: 0;
    }
    /* ハンバーガーボタン等は全て非表示 */
    .hamburger_btn_container, .header_logo, .header_book_btn {
        display: none;
    }
    .mainVisual {
        width: 375px;
        height: 723px;
    }
    .footer {
        width: 375px;
    }
    
    /* メニューを左側に固定表示 */
    .nav {
        transform: none; /* 常に表示 */
        background-color: transparent;
        width: auto;
        height: auto;
        position: fixed;
        top: 50px;
        left: 50px;
        padding: 0;
        align-items: flex-start;
        z-index: 1000;
    }
    .nav_header {
        display: none; /* 閉じるボタンを非表示 */
    }
    .nav_menu {
        margin: 0;
        position: static;
    }
    .nav_menu_about {
        display: flex;
        gap: 20px;
        margin-bottom: 50px;
    }
    .nav_menu_section {
        width: 150px;
        height: 20px;
        margin-bottom: 15px;
        color: var(--text_color,#56452D);
        font-family: "Playfair Display";
        font-size: 1.7rem;
        font-weight: 400;
        line-height: 1;
        letter-spacing: 0.9px;
    }
    .nav_menu_topic {
        margin-bottom: 10px;
        width: 150px;
        height: 20px;
        color: var(--text_color,#56452D);
        text-align: left;
        font-family: "Playfair Display";
        font-size: 1.5rem;
        font-weight: 400;
        line-height: 1;
        letter-spacing: 0.75px;
    }
    .nav_menu_topic::before {
        content: '';
        display: inline-block;
        width: 15px;
        height: 1px;
        background-color: var(--text_color, #56452D);
        vertical-align: middle;
        margin-right: 8px;
    }
    .nav_menu_info {
        display: flex;
        gap: 20px;
    }
    .nav .nav_sns {
        margin: 50px auto 0;
        justify-content: flex-start;
    }
    .nav .book_btn {
       display: none;
    }

    /* PC用固定リンク画像の表示設定 */
    .pc-candle-link {
        display: block;
        position: fixed;
        bottom: 50px;
        right: 10px;
        width: 200px;
        z-index: 900;
    }
}
