@charset "utf-8";
/* CSS Document */

	.cta-block {
    margin-top: 50px;
    padding: 35px 30px;
    background: linear-gradient(145deg, #ffffff, #f3f3f3);
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 10px 28px rgba(0,0,0,0.08);
    border: 1px solid #e5e5e5;
}

.cta-block h2 {
    margin-bottom: 15px;
    font-size: 26px;
    font-weight: 700;
    color: #333;
}

.cta-block p {
    margin-bottom: 25px;
    font-size: 16px;
    color: #555;
    line-height: 1.6;
}

.cta-button {
    display: inline-block;
    padding: 14px 32px;
    background: #333;
    color: #fff;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.25s ease;
}

.cta-button:hover {
    background: #000;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.area-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.area-box {
    display: block;
    padding: 18px 20px;
    background: #ffffff;
    border-radius: 12px;
    text-align: center;
    font-weight: 600;
    color: #333;
    text-decoration: none;
    border: 1px solid #e5e5e5;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
    transition: all 0.25s ease;
}

.area-box:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 24px rgba(0,0,0,0.10);
    border-color: #d0d0d0;
}
		
.area-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.area-list a {
    display: block;
    background: linear-gradient(145deg, #ffffff, #f7f7f7);
    padding: 22px 24px;
    margin-bottom: 22px;
    border-radius: 16px;
    border: 1px solid #e5e5e5;
    box-shadow: 0 6px 16px rgba(0,0,0,0.06);
    transition: all 0.28s ease;
    text-decoration: none;
    color: inherit;
    position: relative;
}

.area-list a:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 32px rgba(0,0,0,0.12);
    border-color: #d6d6d6;
}

.area-icon {
    font-size: 26px;
    margin-right: 10px;
    vertical-align: middle;
}

.area-title {
    font-size: 20px;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.area-list a p {
    margin: 0;
    color: #555;
    line-height: 1.55;
}

.home-area-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
    margin: 40px 0;
}

@media (max-width: 1024px) {
    .home-area-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .home-area-grid {
        grid-template-columns: repeat(1, 1fr);
    }
}

.home-area-box {
    display: block;
    background: linear-gradient(145deg, #ffffff, #f7f7f7);
    padding: 24px 26px;
    border-radius: 16px;
    border: 1px solid #e5e5e5;
    text-decoration: none;
    color: #333;
    box-shadow: 0 6px 16px rgba(0,0,0,0.06);
    transition: all 0.28s ease;
}

.home-area-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 32px rgba(0,0,0,0.12);
    border-color: #d6d6d6;
}

.home-area-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.home-area-icon {
    font-size: 22px;
    margin-right: 8px;
}

.home-area-box p {
    margin: 0;
    color: #555;
    line-height: 1.55;
    font-size: 15px;
}

.product-card {
    background: linear-gradient(145deg, #ffffff, #f3f3f3);
    border-radius: 18px;
    padding: 12px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.12);
    transition: all 0.3s ease;
    overflow: hidden;
}

.product-card img {
    width: 100%;
    border-radius: 14px;
    transition: transform 0.35s ease;
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 28px rgba(0,0,0,0.18);
}

.product-card:hover img {
    transform: scale(1.05);
}

.left-sidebar {
    position: sticky;
    top: 20px; /* distance from top when scrolling */
    align-self: flex-start;
}

