@charset "UTF-8";

/* デスクトップ */
@media (min-width: 1025px) {
    .step{
        width: 1000px;
        margin: 0 auto;
        text-align: center;
    }
    .step img{
        width: 100%;
    }
    .h2ttl{
        margin: 20px auto;
    }
}

/* タブレット */
@media (min-width: 641px) and (max-width: 1024px) {
    .step{
        width: 600px;
        margin: 0 auto;
        text-align: center;
    }
    .step img{
        width: 100%;
        margin-top: -40px;
    }
    
}

/* モバイル */
@media (max-width: 640px) {
    .step{
        width: 90%;
        margin: 60px auto;
        text-align: center;
    }
    .step img{
        width: 100%;
        margin-top: 20px;
    }
}


@charset "UTF-8";

/* デスクトップ */
@media (min-width: 1025px) {
    .step{
        width: 1000px;
        margin: 0 auto;
        text-align: center;
    }
    .step img{
        width: 100%;
    }
    .h2ttl{
        margin: 20px auto;
    }
}

/* タブレット */
@media (min-width: 641px) and (max-width: 1024px) {
    .step{
        width: 600px;
        margin: 0 auto;
        text-align: center;
    }
    .step img{
        width: 100%;
        margin-top: -40px;
    }
    
}

/* モバイル */
@media (max-width: 640px) {
    .step{
        width: 90%;
        margin: 60px auto;
        text-align: center;
    }
    .step img{
        width: 100%;
        margin-top: 20px;
    }
}


/* Benefits Section Layout */
.benefits-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px; /* 各メリット間のスペース */
    max-width: 1200px;
    margin: 0 auto;
}
.benefits-section h2{
    margin-bottom: 20px;
}

/* Individual Point Item Styles */
.point-item {
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    padding: 30px;
    text-align: center;
    flex: 1; /* Flex item grows to fill space */
    min-width: 280px; /* Minimum width for responsiveness */
    max-width: 350px; /* Maximum width for larger screens */
    box-sizing: border-box; /* Include padding and border in the element's total width and height */
    transition: transform 0.3s ease-out; /* For zoom-on-hover */
}

.point-item p {
    font-size: 1.1em;
    color: #555;
}

/* New: Point Icon Styles */
.point-icon {
    width: 80px; /* アイコンの幅 */
    height: auto; /* 高さは自動調整 */
    margin: 15px auto 25px auto; /* 上下左右の余白 */
    display: block; /* 中央寄せのためにブロック要素に */
}

/* 3つのメリット */
/* Fade-in & Slide-up Effect */
.fade-slide-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.fade-slide-in.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Zoom-on-Hover Effect */
.zoom-on-hover:hover {
    transform: scale(1.03); /* わずかに拡大 */
}

/* Counter Animation */
.counter-value {
    font-size: 1.5em; /* 数値のフォントサイズ調整 */
    font-weight: bold;
    color: #FF9A0C; /* カウンターの色 */
}
main{
    margin: 100px 0;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .point-item {
        max-width: 90%; /* On smaller screens, allow items to take more width */
    }
}