/* ベーススタイル */
body {
    font-family: 'Noto Sans JP', sans-serif;
    color: #333;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background-color: #f8f8f8; /* わずかに明るい背景 */
}

/* 親しみやすさ・元気さを出すためのフォント */
h1, h2, h3, h4, .catch-phrase, .entry-button {
    font-family: 'M PLUS Rounded 1c', sans-serif;
    color: #ff6600; /* テーマカラー：オレンジ */
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-padding {
    padding: 60px 0;
}

/* ヘッダー */
header {
    background-color: #ffffff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

header h1 {
    font-size: 24px;
    margin: 0;
    color: #007bff; /* アクセントカラー：青 */
}

header nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
}

header nav ul li a {
    text-decoration: none;
    color: #333;
    font-weight: bold;
    padding: 10px 15px;
    transition: color 0.3s;
}

header nav ul li a:hover {
    color: #ff6600;
}

/* メインビジュアル */
#hero {
    height: 60vh;
    background: url('') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    color: #fff;
}

.hero-content {
    background-color: rgba(255, 102, 0, 0.85); /* オレンジのオーバーレイで文字を見やすく */
    padding: 30px 40px;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
}

.catch-phrase {
    font-size: 32px;
    font-weight: 900;
    margin-bottom: 10px;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

#hero h2 {
    font-size: 48px;
    margin: 0 0 20px 0;
    color: #fff;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

/* 共通タイトル */
.section-title {
    font-size: 30px;
    text-align: center;
    margin-bottom: 40px;
    color: #ff6600;
    padding-bottom: 10px;
    border-bottom: 3px solid #ffd1a0; /* 薄いオレンジの下線 */
    display: inline-block;
    width: auto;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
}

/* メッセージ */
#message p {
    font-size: 18px;
    max-width: 800px;
    margin: 20px auto;
    text-align: center;
}

#message strong {
    color: #ff6600;
}

/* 魅力セクション */
#appeal {
    background-color: #fff;
}

.point-list {
    display: flex;
    justify-content: space-around;
    gap: 20px;
    margin-bottom: 50px;
}

.point-item {
    background-color: #fff7e6; /* 薄いイエロー/オレンジ */
    border: 3px solid #ff6600;
    border-radius: 10px;
    padding: 30px;
    flex: 1;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.point-item:hover {
    transform: translateY(-5px);
}

.point-item h4 {
    font-size: 24px;
    margin-top: 0;
    color: #007bff; /* アクセントカラー */
}

/* point-item 内の画像スタイル */
.point-item .point-image {
    max-width: 100%; /* 親要素の幅に合わせて最大幅を100%に */
    height: auto;    /* アスペクト比を維持 */
    border-radius: 8px; /* 角を丸くして親しみやすさを出す */
    margin: 15px 0;  /* 上下の余白 */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* 軽い影で立体感 */
}

/* 先輩の声 */
.voice-container h4 {
    font-size: 24px;
    text-align: center;
    color: #ff6600;
    margin-bottom: 20px;
}

.voice-card {
  background-color: #ffffff;
    border-left: 5px solid #ff6600;
    padding: 20px;
    margin: 20px auto;
    max-width: 700px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    
    /* 追加：写真とテキストを横並びにするためにFlexboxを使用 */
    display: flex;
    align-items: flex-start; /* 上端を揃える */
    gap: 15px; /* 写真とテキストの間の余白 */
}

/* 従業員の写真スタイル */
.staff-photo {
    width: 80px;  /* 写真の幅 */
    height: 80px; /* 写真の高さ */
    border-radius: 50%; /* 丸形にする */
    object-fit: cover; /* 画像がはみ出さないように調整 */
    border: 2px solid #ff6600; /* 枠線 */
    flex-shrink: 0; /* 縮小されないようにする */
}

/* テキスト部分の調整 */
.voice-card p {
    margin: 0; /* デフォルトのマージンをリセット */
}

.voice-text {
    font-style: italic;
    margin-bottom: 10px; /* テキストと名前の間に余白 */
    flex-grow: 1; /* 残りのスペースを埋める */
}

.voice-name {
    text-align: right;
    font-weight: bold;
    color: #555;
    font-size: 15px; /* 少し小さめに */
    margin-top: -5px; /* テキストに近づける */
}

/* 募集要項 */
#requirements {
    background-color: #f0f0f0;
}

.requirements-box {
    background-color: #ffffff;
    padding: 30px;
    margin-bottom: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.requirements-box h4 {
    color: #ff6600;
    border-bottom: 2px solid #ffd1a0;
    padding-bottom: 5px;
    margin-top: 0;
}

.requirements-box ul {
    list-style: none;
    padding: 0;
}

.requirements-box li {
    background: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23ff6600"><path d="M9 16.2L4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4L9 16.2z"/></svg>') no-repeat left 5px;
    background-size: 20px;
    padding-left: 30px;
    margin-bottom: 10px;
    font-size: 17px;
}

.selection-flow {
    text-align: center;
    margin-bottom: 40px;
}

.selection-flow h4 {
    color: #ff6600;
    font-size: 24px;
}

.selection-flow p {
    font-size: 18px;
    font-weight: bold;
    color: #007bff;
}

.note, .note-interview {
    font-size: 16px;
    color: #666;
    margin-top: 15px;
}

/* ボタン共通 */
.entry-button {
    display: inline-block;
    background-color: #ff6600;
    color: #fff;
    text-decoration: none;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 900;
    transition: background-color 0.3s, transform 0.1s;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

.entry-button:hover {
    background-color: #ff8c42;
    transform: translateY(-2px);
}

.entry-button.large {
    font-size: 22px;
    padding: 20px 50px;
    margin: 30px auto 0 auto;
    display: block;
    max-width: 400px;
    text-align: center;
}

/* フッター */
footer {
    background-color: #333;
    color: #fff;
    padding: 20px 0;
    text-align: center;
    font-size: 14px;
}

footer .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-links a {
    color: #ffd1a0;
    text-decoration: none;
    margin-left: 15px;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #fff;
}

/* レスポンシブ対応（スマートフォン向け） */
@media (max-width: 768px) {
    .header-inner {
        flex-direction: column;
        text-align: center;
    }

    header nav ul {
        justify-content: center;
        margin-top: 10px;
    }

    .catch-phrase {
        font-size: 24px;
    }

    #hero h2 {
        font-size: 32px;
    }

    .point-list {
        flex-direction: column;
    }

    footer .container {
        flex-direction: column;
    }

    .footer-links {
        margin-top: 10px;
    }
}

/* レスポンシブ対応の調整（スマートフォン向け） */
@media (max-width: 480px) {
    .voice-card {
        flex-direction: column; /* スマートフォンでは縦並びにする */
        align-items: center; /* 中央揃え */
        text-align: center;
    }
    .voice-name {
        text-align: center; /* 名前も中央揃え */
    }
    .staff-photo {
        margin-bottom: 10px; /* 写真の下に余白 */
    }
}