@charset "UTF-8";

/*
 * =========================================
 * スマホ用設定 (max-width: 768px & 600px)
 * =========================================
 */

@media screen and (max-width: 768px) {
    .header_title p:first-of-type {
        font-size: 1.2rem;
    }

    .header_title p:nth-of-type(2) {
        font-size: 0.6rem;
    }

    /* メインビジュアル */
    .main_visual-sp {
        display: block;
        height: auto;
        width: 100%;
    }

    .main_visual_content {
        color: #000;
        background-color: rgb(255, 249, 236);
        max-width: 1000px;
        padding: 0 20px;
        margin-top: 0px;
    }

    .main_visual {
        position: relative;
        background-color: rgb(255, 249, 236);
        background-image: none;
        background-size: cover;
        background-position: center;
        background-blend-mode: overlay;
        display: flex;
        justify-content: center;
        align-items: center;
        text-align: center;
        height: 10vh;
    }
    
    /* ▼▼▼ 文字サイズ調整箇所 ▼▼▼ */
    .main_copy {
        font-size: 1.6rem; /* キャッチコピーのサイズ */
    }
    
    .main_message {
        font-size: 0.95rem; /* 本文のサイズ */
        line-height: 1;
        width: 100%;
    }
    
    .message_strong {
        font-size: 1.1rem; /* 強調文のサイズ */
    }
    /* ▲▲▲ ここまで ▲▲▲ */

    .sp_break {
        display: block;
    }

    /* イベント情報 */
    .event_highlight {
        flex-direction: column; 
    }
    .event_img_box {
        width: 100%;
        height: auto;
    }
    .event_text_box {
        width: 100%;
        padding: 25px;
    }
    .event_name {
        font-size: 1.5rem;
    }

    .event_btn_area {
        text-align: center;
    }

    /* お問い合わせ */
    .contact_container {
        padding: 40px 20px;
    }
    
    .contact_mail {
        font-size: 1.4rem;
    }
    
    .pc_break {
        display: none;
    }

    .instagram_embed_area {
        display: none;
    }

    .instagram_embed_area-sp {
        display: block; /* SP用エリアはSPで表示 */
        width: 100%;
    }

    /* SnapWidgetのiframeをレスポンシブ対応させる (SP用エリア内) */
    .instagram_embed_area-sp iframe {
        /* SP専用のiframeサイズ (width:510px, height:765px) に合わせて調整 */
        height: 700px !important; /* SPで最適な高さに調整 */
        width: 100% !important; 
        max-width: 100% !important;
        border: none;
        display: block;
        margin: 0 auto;
        margin-top: 10px;
    }

    .sns_btn {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 200px;
        padding: 15px 0;
        border-radius: 50px;
        text-decoration: none;
        font-weight: 700;
        color: #fff;
        transition: transform 0.3s, opacity 0.3s;
        box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    }
}


@media screen and (max-width: 600px) {
    /* お知らせリスト */
    .news_list li > a,
    .news_list li > div {
        flex-direction: column;
        align-items: flex-start;
    }
    .news_meta {
        margin-bottom: 8px;
    }

    /* SNSボタン */
    .sns_buttons {
        flex-direction: column; 
        align-items: center;
    }
    .sns_btn {
        width: 100%;
        max-width: 300px;
    }
}