@charset "UTF-8";
/* body */
.scroll_top_btn {
    display: none;
}
.container {
    background-image: url(../images/lapraline_background_1-yellow.png);
    background-size: contain;
}

/* main2 */
.article_header h2 {
    padding: 100px 0;
    flex-direction: column;
    align-items: center;
    width: 200px;
    color: var(--txt-color, #56452D);
    text-align: center;
    font-family: "Playfair Display";
    font-size: 1.8rem;
    font-style: italic;
    font-weight: 400;
    line-height: 1.7;
    letter-spacing: 2.5px;
    margin: 30px auto;
    border-bottom: none;
}
.article_top_img {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    margin: 0 auto 50px;
    position: relative;
    height: 600px;
    width: 375px;
}
.article_top_img img {
    position: absolute;
    height: auto;
    object-fit: cover;
}
.article_top_img .top_main4 {
    width: 134px;
    height: 164px;
    aspect-ratio: 67/82;
    border-radius: 10px;
    background: url('../images/top_main4.png') lightgray -5.273px 0.577px / 108.955% 98.833% no-repeat;
    top: 20px;
    left: 40px;
}
.article_top_img .top_main5 {
    width: 125px;
    height: 151px;
    border-radius: 10px;
    background: url('../images/top_main5.png') lightgray 0.299px 0.005px / 100% 100.081% no-repeat;
    top: 150px;
    right: 40px;
}
.article_top_img .top_main2 {
    width: 98px;
    height: 132px;
    aspect-ratio: 49/66;
    border-radius: 10px;
    background: url('../images/top_main2.png') lightgray -0.266px 0px / 100.542% 100% no-repeat;
    top: 260px;
    left: 50px;
}
.article_top_img .top_main1 {
    width: 100px;
    height: 116px;
    border-radius: 10px;
    background: url('../images/top_main1.png') lightgray 50% / contain no-repeat;
    top: 380px;
    right: 70px;
}
.article_top_img .top_main3 {
    width: 91px;
    height: 120px;
    border-radius: 10px;
    background: url('../images/top_main3.png') lightgray 50% / contain no-repeat;
    top: 500px;
    left: 80px;
}

/* WORKSHOPセクション */
.section_workshop {
    display: flex;
    width: 100%;
    margin: 100px auto 0;
    padding: 0 0 100px 0;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 50px;
    border-radius: 50px;
    background-color: var(--default_yellow ,#FFFAE7);
}
.workshop_header_bg {
    width: 100%;
    height: 82px;
    border-radius: 50px 50px 0 0;
    background-image: url(../images/lapraline_background_3.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.section_workshop h2 {
    color: var(--txt-color, #56452D);
    text-align: center;
    font-family: "Mrs Saint Delafield";
    font-size: 52px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 2.6px;
}
.section_workshop > p {
    width: 230px;
    color: var(--txt-color, #56452D);
    text-align: center;
    font-family: "Playfair Display";
    font-size: 1.5rem;
    font-weight: 400;
    line-height: 1.5;
    letter-spacing: 0.9px;
}
.workshop_item-1 {
    width: 335px;
    height: 230px;
    background-image: url(../images/workshop_jerry2.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 10px;
    position: relative;
}
.workshop_item-2 {
    width: 335px;
    height: 230px;
    background-image: url(../images/workshop_cake1.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 10px;
    position: relative;
}
.workshop_item-3 {
    width: 335px;
    height: 230px;
    background-image: url(../images/workshop_dry2.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 10px;
    position: relative;
}
.workshop_item-4 {
    width: 335px;
    height: 230px;
    background-image: url(../images/workshop_terrezo1.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 50% 40%;
    border-radius: 10px;
    position: relative;
}
.workshop_item-1::after,
.workshop_item-2::after,
.workshop_item-3::after,
.workshop_item-4::after {
    content: '';
    display: inline-block;
    width: 45px;
    height: 40px;
    background-image: url(../images/logo/workshop_btn.png);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    bottom: 10px;
    right: 10px;
    z-index: 10;
    cursor: pointer;
}
/* workshop_btn押したとき */
.workshop_overlay {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 5000;
    overflow-y: auto;
    overscroll-behavior: contain;
    padding: 30px 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s ease;
    background-color: rgba(243,237,227,0.7);
}
/* .workshop_overlay.active表示 */
.workshop_overlay.active {
    opacity: 1;
    visibility: visible;
}
.workshop_overlay_content {
    margin: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: auto;
    background-image: url(../images/lapraline_background_1.png);
    background-size: contain;
    position: relative;
    transform: translateY(20px);
    transition: transform 0.5s ease;
}
.workshop_overlay.active .workshop_overlay_content {
    transform: translateY(0);
}
body:has(.workshop_overlay.active),
html:has(.workshop_overlay.active) {
    overflow: hidden;
}
.workshop_close_btn {
    color: var(--text_color,#56452D);
    text-align: center;
    font-family: "Playfair Display";
    font-size: 5rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    position: absolute;
    top: 0;
    right: 10px;
    cursor: pointer;
    z-index: 6000;
}
.slider_container {
    width: 375px;
    height: 485px;
    border-radius: 0 0 10px 10px;
    overflow: hidden;
}
.slider_images {
    width: 100%;
    height: 484px;
    display: flex;
    transition: transform 0.5s ease-in-out;
}
.slider_images img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    flex-shrink: 0;
}
.workshop_desc {
    display: flex;
    width: 375px;
    padding: 20px;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}
.workshop_name {
    color: var(--txt-color, #56452D);
    text-align: center;
    font-family: "Playfair Display";
    font-size: 2.2rem;
    font-style: italic;
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: 1.1px;
}
.workshop_price {
    color: var(--txt-color, #56452D);
    text-align: center;
    font-family: "Playfair Display";
    font-size: 2rem;
    font-weight: 500;
    line-height: 2.4; /* 24px 120% */
    letter-spacing: 1px;
}
.book_btn {
    background-color: var(--text_color,#56452D);
    margin: 0 auto;
}

/* ABOUTセクション */
.section_about {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 100px 0;
    position: relative;
    width: 100%;
    margin: 0 auto;
}
.about_content_wrapper {
    position: relative;
    width: 100%;
    height: auto;
    aspect-ratio: 375 / 750;
}
.section_about_text {
    position: absolute;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    display: flex;
    width: 64%;
    padding: 10px 5px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.70);
}
.section_about_text h3 {
    display: flex;
    padding: 10px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    align-self: stretch;
    color: var(--txt-color, #56452D);
    text-align: center;
    font-family: "Playfair Display";
    font-size: 1.3rem;
    font-weight: 400;
    letter-spacing: 0.75px;
}
.section_about_text a {
    display: flex;
    padding: 10px 20px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
    border: 1px solid var(--txt-color, #56452D);
    color: var(--txt-color, #56452D);
    text-transform: uppercase;
    font-size: 1.3rem;
    font-weight: 400;
    letter-spacing: 0.65px;
    cursor: pointer;
}
.section_about img {
    position: absolute;
    width: 100%;
    height: auto;
    object-fit: cover;
    z-index: 0;
}
.section_about .top_about4 {
    width: 24%;
    height: 22.7%;
    top: 9.3%;
    left: 0;
    border-radius: 0 10px 10px 0;
}
.section_about .top_about3 {
    width: 39.5%;
    height: 26.7%;
    top: 0;
    right: 26.7%;
    border-radius: 10px;
}
.section_about .top_about2 {
    width: 16%;
    height: 26.7%;
    top: 6.7%;
    right: 0;
    border-radius: 10px 0 0 10px;
}
.section_about .top_about5 {
    width: 37.6%;
    height: 26.7%;
    bottom: 4.7%;
    right: 4%;
    border-radius: 10px;
}
.section_about .top_about1 {
    width: 37.6%;
    height: 26.7%;
    bottom: 10.7%;
    left: 2.7%;
    border-radius: 10px;
}

/* GALLERYセクション */
.section_gallery {
    background: rgba(207, 221, 227, 0.50);
    width: 100%;
    padding-top: 100px;
    margin: 0 auto 100px;
}
.section_gallery h2 {
    margin: 0 auto;
    width: 124px;
    height: 80px;
}
.instagram {
    margin-top: 50px;
}
.insta_btn {
    display: flex;
    width: 100%;
    max-width: 375px;
    margin: 40px auto 0;
    padding: 5px 0;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 10px;
    background: var(--default_pink, #F1CDCE);
    position: relative;
    cursor: pointer;
}
.insta_btn p {
    margin: 0 auto;
    color: var(--txt-color, #56452D);
    text-align: center;
    font-family: "Playfair Display";
    font-size: 1.7rem;
    font-weight: 400;
    letter-spacing: 0.85px;
}
.insta_btn::after {
    content: '';
    display: inline-block;
    width: 20px;
    height: 18px;
    background-image: url(../images/logo/logo_link-br.png);
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    top: 28%;
    right: 30%;
}
.tiktok {
    width: 100%;
    margin-top: 50px;
    padding-bottom: 100px;
    display: flex;
    flex-direction: column;
    justify-content:center;
}
.tiktok_feeds {
    display: flex;
    justify-content: space-between;
    width: 100%;
    padding: 0 10px;
    margin-bottom: 50px;
}
.tiktok_feed-1, .tiktok_feed-2, .tiktok_feed-3 {
    flex-basis: calc((100% - 20px) / 3);
    max-width: calc((100% - 20px) / 3);
    position: relative;
}

.tiktok_feeds .tiktok-embed {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.36);
    transform-origin: center center;
    width: 325px;
}
.tiktok_btn {
    margin: 0 auto;
    display: flex;
    width: 100%;
    max-width: 375px;
    padding: 5px 0;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    background: var(--default_pink, #F1CDCE);
    position: relative;
    cursor: pointer;
}
.tiktok_btn p {
    margin: 0 auto;
    color: var(--txt-color, #56452D);
    text-align: center;
    font-family: "Playfair Display";
    font-size: 1.7rem;
    font-weight: 400;
    letter-spacing: 0.85px;
}
.tiktok_btn::after {
    content: '';
    display: inline-block;
    width: 20px;
    height: 18px;
    background-image: url(../images/logo/logo_link-br.png);
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    top: 28%;
    right: 30%;
}

/* MARKETセクション */
.section_market {
    display: flex;
    width: 100%;
    flex-direction: column;
    align-items: center;
    gap: 50px;
    text-align: center;
    margin: 0 auto 100px;
}
.line {
    width: 1px;
    height: 50px;
    background: var(--text_color, #56452D);
}
.section_market h2 {
    width: 310px;
    height: 80px;
}
.section_market p {
    color: var(--txt-color, #56452D);
    text-align: center;
    font-family: "Playfair Display";
    font-size: 1.5rem;
    font-style: italic;
    font-weight: 400;
    letter-spacing: 0.75px;
}
.section_market_visual {
    width: 350px;
    height: 250px;
    border-radius: 10px;
    background-image: url(../images/top_market.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}
.section_market a {
    display: flex;
    width: 235px;
    height: 60px;
    padding: 5px 10px;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    opacity: 0.9;
    background: var(--default_yellow, #FFFAE7);
    color: var(--txt-color, #56452D);
    text-align: center;
    font-family: "Playfair Display";
    font-size: 2rem;
    font-weight: 400;
    letter-spacing: 1.05px;
    cursor: pointer;
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%);
}


/* INFORMATIONセクション */
.section_info {
    display: flex;
    width: 100%;
    margin: 0 auto;
    padding: 50px 0;
    flex-direction: column;
    align-items: center;
    gap: 50px;
    background: var(--default_yellow, #FFFAE7);
}
.section_info h2 {
    width: 190px;
    height: 80px;
}
.info_topipcs {
    display: flex;
    width: 349px;
    height: 92px;
    padding: 0 10px;
    justify-content: center;
    align-items: center;
    gap: 15px;
}
.info_cc, .info_faq, .info_contact {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    cursor: pointer;
}
.info_cc a, .info_faq a, .info_contact a {
    width: 50px;
    height: 50px;
}
.info_cc p, .info_faq p, .info_contact p {
    text-align: center;
    font-family: "Playfair Display";
    font-size: 1.3rem;
    font-weight: 500;
    letter-spacing: 0.7px;
}

/* PC・タブレット（769px以上）向けのスタイル */
@media screen and (min-width: 769px) {
    .section_workshop {
        padding-left: 0;
        padding-right: 0;
    }
    .workshop_header_bg{
        width: 375px;
    }
    .section_about {
        width: 375px;
    }
    .about_content_wrapper {
        width: 375px;
    }
    .section_about_text {
        width: 240px;
    }
    .section_about .top_about4 {
        width: 90px;
        height: 170px;
        top: 70px;
        left: 0;
    }
    .section_about .top_about3 {
        width: 148px;
        height: 200px;
        top: 0;
        right: 100px;
    }
    .section_about .top_about2 {
        width: 60px;
        height: 200px;
    }
    .section_about .top_about5 {
        width: 141px;
        height: 200px;
        bottom: 35px;
        right: 15px;
    }
    .section_about .top_about1 {
        width: 141px;
        height: 200px;
        bottom: 80px;
        left: 10px;
    }
    .section_gallery {
        width: 375px;
    }
    .section_market {
        width: 375px;
    }
    .section_info {
        width: 375px;
    }
}
