/*
Theme Name: Yakkyoku 2025 Theme
Theme URI: https://example.com
Author: Holssi Lab
Description: 2025年トレンドを取り入れた調剤薬局向けオリジナルテーマ
Version: 1.0
*/

/* 基本設定 */
body {
    background-color: #FAFAFA;
    color: #2D3748;
    overflow-x: hidden;
}
html {
    scroll-behavior: smooth;
}
.img-hover-zoom {
    overflow: hidden;
}
.img-hover-zoom img {
    transition: transform 0.5s ease;
}
.img-hover-zoom:hover img {
    transform: scale(1.05);
}
.blob {
    position: absolute;
    filter: blur(80px);
    z-index: -1;
    opacity: 0.6;
    animation: move 10s infinite alternate;
}
@keyframes move {
    from { transform: translate(0, 0); }
    to { transform: translate(20px, -20px); }
}

/* --- Contact Form 7 Custom Styles --- */
.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"],
.wpcf7 textarea {
    width: 100%;
    padding: 1rem 1.5rem;
    border: 1px solid #e2e8f0;
    border-radius: 1rem;
    background-color: #ffffff;
    font-size: 1rem;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}
.wpcf7 input:focus,
.wpcf7 textarea:focus {
    outline: none;
    border-color: #4ECDC4;
    box-shadow: 0 0 0 3px rgba(78, 205, 196, 0.2);
}
.wpcf7 input[type="submit"] {
    display: block;
    width: 100%;
    background-color: #FF6B6B;
    color: white;
    font-weight: bold;
    padding: 1rem 2rem;
    border: none;
    border-radius: 9999px;
    cursor: pointer;
    transition: transform 0.2s, background-color 0.2s;
    margin-top: 1rem;
}
.wpcf7 input[type="submit"]:hover {
    background-color: #ff5252;
    transform: translateY(-2px);
}
.wpcf7 label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: bold;
    color: #4a5568;
    font-size: 0.95rem;
}
/* --- Smash Balloon Instagram Feed Custom Styles --- */

/* 余白の調整 */
.instagram-feed-wrapper {
    padding: 0 1rem;
}

/* 画像を角丸にする */
#sb_instagram .sbi_photo {
    border-radius: 1rem !important;
    transition: transform 0.3s ease !important;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

/* ホバー時に少し浮き上がらせる */
#sb_instagram .sbi_photo:hover {
    transform: scale(1.03) rotate(1deg) !important;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    z-index: 10;
}

/* "Load More" ボタンのデザイン変更 */
#sb_instagram #sbi_load .sbi_load_btn {
    background: #fff !important;
    color: #FF6B6B !important;
    border: 2px solid #FF6B6B !important;
    border-radius: 9999px !important;
    font-weight: bold !important;
    padding: 10px 25px !important;
    transition: all 0.3s ease !important;
}
#sb_instagram #sbi_load .sbi_load_btn:hover {
    background: #FF6B6B !important;
    color: #fff !important;
}