/* extracted style block 1 from pages/contents/sodium.blade.php */
.page-home .section-inner {
    max-width: 55%;
    padding-left: 0%;
}
.menu-container {
    width: 100%;
    padding: 0;
    box-sizing: border-box;
    margin-top: 6%;
    margin-bottom: 2%;
}

/* メニューリスト */
.menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2vw;
}

/* メニューアイテム */
.menu-item {
    background: #ffdab9;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    transition: transform 0.3s ease, background 0.3s ease;
    display: flex; /* フレックスボックスを適用 */
    align-items: center; /* 垂直方向中央揃え */
    justify-content: center; /* 水平方向中央揃え */
    height: 8vw; /* 高さを指定 */
}

/* リンクのスタイル調整 */
.menu-item a {
    text-decoration: none;
    color: #333;
    font-size: 1vw;
    font-weight: bold;
    display: block;
}


/* 背景色を変える */
.item1 { background: #ffddaa; }
.item2 { background: #ffd4b2; }
.item3 { background: #ffcc99; }

/* ホバー時のエフェクト */
.menu-item:hover {
    transform: scale(1.05);
    background: #ffb380;
}

/* レスポンシブ設定 */
@media screen and (max-width: 768px) {
    .menu-list {
        display: block;
    }
    .menu-item {
        margin-bottom: 15px;
    }
    .page-home .section-inner {
        max-width: 85%;
        padding-left: 0%;
    }
    p.text {
        font-weight: 500;
        font-size: 13px;
        line-height: 22px;
        color: #000;
    }
.menu-item a {
    text-decoration: none;
    color: #333;
    font-size: 12px;
    font-weight: bold;
    display: block;
}


}

/* extracted style attributes */
.csp-s-b75fad0009{margin-bottom: 20px;}
.csp-s-cad980f4b7{width:100%;}
