.insta{
    width: 80%;
    margin: 0 auto;
    text-align: center;
}

.insta_logo{
    width: 400px;
    margin: 80px auto;
}
.insta_logo img{
    max-width: 300px;
}
.p-footer-instagram{
    width: 80%;
    margin: 0 auto;
    text-align: center;
}

/* Responsive styles for home catch heading */
.home_catch {
    line-height: 1.4;
}

/* Style for kanji and hiragana */
.home_catch .kanji {
    font-size: 1.2em;
    font-weight: bold;
}

.home_catch .hiragana {
    font-size: 0.85em;
}

/* Mobile styles */
@media screen and (max-width: 767px) {
    .home_catch.home_catch_50 {
        font-size: 28px !important;
        line-height: 1.6;
        word-break: keep-all;
        overflow-wrap: break-word;
    }
    
    /* Adjust kanji and hiragana sizes for mobile */
    .home_catch .kanji {
        font-size: 1.3em;
    }
    
    .home_catch .hiragana {
        font-size: 0.8em;
    }
    
    /* Keep text together to avoid awkward breaks */
    .home_catch span {
        display: inline-block;
        white-space: nowrap;
    }
    .insta{
    width: 250px;
    margin: 0 auto;
    text-align: center;
}

.insta_logo{
    width: 200px;
    margin: 80px auto;
}
.insta_logo img{
    max-width: 200px;
}
}

/* =============================================================================
   サイドバーウィジェット スタイル
   ============================================================================= */

.p-sidebar .widget {
    margin-bottom: 30px;
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.p-sidebar .widget-title {
    font-size: 18px;
    font-weight: bold;
    color: #333;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f0f0f0;
    position: relative;
}

.p-sidebar .widget-title:before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 40px;
    height: 2px;
    background: linear-gradient(45deg, #ff6b6b, #ee5a52);
}

/* カテゴリーリスト */
.widget_categories ul,
.widget_welcart_categories ul,
.widget_recent_entries ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.widget_categories li,
.widget_welcart_categories li,
.widget_recent_entries li {
    margin-bottom: 8px;
    padding: 8px 0;
    border-bottom: 1px solid #f5f5f5;
}

.widget_categories li:last-child,
.widget_welcart_categories li:last-child,
.widget_recent_entries li:last-child {
    border-bottom: none;
}

.widget_categories a,
.widget_welcart_categories a,
.widget_recent_entries a {
    color: #666;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
    display: block;
    padding: 5px 0;
}

.widget_categories a:hover,
.widget_welcart_categories a:hover,
.widget_recent_entries a:hover {
    color: #ff6b6b;
}

/* 検索フォーム */
.widget_welcart_search .search-form {
    position: relative;
}

.widget_welcart_search input[type="text"] {
    width: 100%;
    padding: 10px 40px 10px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 25px;
    font-size: 14px;
    background: #fafafa;
    transition: border-color 0.3s ease;
}

.widget_welcart_search input[type="text"]:focus {
    outline: none;
    border-color: #ff6b6b;
    background: #fff;
}

.widget_welcart_search input[type="submit"] {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    background: #ff6b6b;
    border: none;
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 12px;
    transition: background 0.3s ease;
}

.widget_welcart_search input[type="submit"]:hover {
    background: #ee5a52;
}

/* レスポンシブ対応 */
@media screen and (max-width: 767px) {
    .p-sidebar .widget {
        margin-bottom: 20px;
        padding: 15px;
    }
    
    .p-sidebar .widget-title {
        font-size: 16px;
        margin-bottom: 12px;
    }
    
    .widget_categories a,
    .widget_welcart_categories a,
    .widget_recent_entries a {
        font-size: 13px;
    }
}