/* ここに新卒採用ページ専用のスタイル */

.hero {
    position: relative;
    height: 400px;
    background: 
        linear-gradient(to bottom, rgb(184, 252, 167), rgba(255,165,0,0)),
        url("images/20010.jpg") center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
}

.page-top-image {
    width: 100%;
    margin: 0;
    object-fit: cover;
}

.page-top-image img {
    width: 100%;
    height: 100%;
    display: block;
}

.heading-container {
    text-align: center;
    margin: 10px auto;
}

.heading-container h2 {
    font-size: 32px;
    font-weight: bold;
    color: red;
}

.section-header {
    max-width: 1200px;
    margin: 60px auto 20px;
    padding-left: 20px;
    text-align: left;
}

.section-header h3 {
    font-size: 24px;
    font-weight: bold;
    color: #000000;
}

.image-gallery {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 40px;
    max-width: 800px;
    margin: 0 auto;
    flex-wrap: nowrap;
}

.image-gallery .column {
    flex: 0 0 45%;
}

.image-gallery .column:hover {
    transform: translateY(-5px);
    box-shadow: none !important;
}

.image-gallery .column img {
    width: 600px !important;
    height: 200px !important;
}

.image-gallery .column:hover img {
    transform: scale(1.05);
}

.image-gallery .column a,
.image-gallery .column img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 10px;
    transition: transform 0.4s ease;
}

.image-gallery .column .text-link {
    font-size: 24px;
    font-weight: bold;
    color: #003300;
    text-decoration: none;
    margin-top: 10px;
}

.image-gallery .column .text-link:hover {
    color: #66bb66;
    text-decoration: underline;
}

.text-only-section {
    text-align: center;
    margin: 60px auto 30px;
}

.text-only-section h3 {
    font-size: 32px;
    font-weight: bold;
    color: red;
}

/* 社員の声 ギャラリー */
.voice-gallery {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto 60px;
    padding: 0 20px;
}

.voice-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    width: 350px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.voice-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.voice-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.voice-card:hover .voice-image img {
    transform: scale(1.05);
}

.voice-text {
    padding: 20px;
    text-align: center;
}

.voice-text h4 {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 8px;
    color: #333;
}

.voice-text p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

/* 横スクロールギャラリー */
.scroll-gallery-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.scroll-gallery {
    display: flex;
    overflow-x: auto;
    gap: 20px;
    padding: 20px 0;
    scroll-behavior: smooth;
}

.scroll-gallery::-webkit-scrollbar {
    height: 8px;
}

.scroll-gallery::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 4px;
}

.scroll-gallery::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.scroll-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.3);
    color: #fff;
    border: none;
    font-size: 24px;
    width: 40px;
    height: 60px;
    cursor: pointer;
    z-index: 10;
    border-radius: 5px;
}

.left-btn {
    left: 0;
}

.right-btn {
    right: 0;
}

.scroll-btn:hover {
    background: rgba(0,0,0,0.6);
}

/* レスポンシブ対応 */
@media (max
