/* Component Styles */

/* Section Titles */
.section-title {
    font-size: 28px;
    margin-bottom: 40px;
    text-align: center;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background-color: var(--accent-color);
    margin: 8px auto 0;
}

.section-title.small {
    font-size: 22px;
    margin-bottom: 20px;
}

.section-title.small::after {
    width: 40px;
    margin: 10px auto 0;
}

/* Buttons */
.download-btn, .more-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 700;
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: center;
}

.download-btn {
    background-color: var(--accent-color);
    color: white;
    margin: 0 10px;
    min-width: 140px;
}

.download-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    opacity: 1;
}

.download-btn i {
    margin-right: 8px;
}

.more-btn {
    background-color: transparent;
    color: var(--accent-color);
    border: 1px solid var(--accent-color);
    margin: 20px auto;
    display: block;
    width: 200px;
}

.more-btn:hover {
    background-color: var(--accent-color);
    color: white;
}

/* Social Icons */
.social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.social-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
    transition: all 0.3s ease;
}

.social-icon:hover {
    transform: scale(1.1);
    opacity: 1;
}

.social-icons.small {
    margin-top: 10px;
}

.social-icons.small .social-icon {
    width: 40px;
    height: 40px;
    font-size: 18px;
}

.social-icon.x img {
    width: 28px;            /* アイコンサイズ */
    height: auto;
    display: block;
    transition: opacity 0.3s ease;
  }
  
  /* ホバー時に半透明に */
  .social-icon.x:hover img {
    opacity: 0.7;
  }

.instagram {
    background: linear-gradient(45deg, #405DE6, #5851DB, #833AB4, #C13584, #E1306C, #FD1D1D);
}

.line {
    background-color: #06C755;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 40px 0;
}

.pagination-item {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    margin: 0 5px;
    border-radius: 50%;
    color: var(--text-color);
    font-weight: 500;
    transition: all 0.3s ease;
}

.pagination-item:hover {
    background-color: var(--light-gray);
}

.pagination-item.active {
    background-color: var(--accent-color);
    color: white;
}

.pagination-separator {
    margin: 0 5px;
}

.pagination-next {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-left: 5px;
}

.pagination-next:hover {
    background-color: var(--light-gray);
}