/* style.css - ひめそば採用LP */

/* リセットとベーススタイル */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Noto Sans JP', 'Hiragino Mincho ProN', serif;
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul, ol {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

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

section {
    padding: 80px 0;
}

.section-title {
    font-family: 'Hiragino Mincho ProN', serif;
    font-size: 32px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
    position: relative;
    color: #333;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: #8D6E63;
}

.section-lead {
    text-align: center;
    font-size: 18px;
    margin-bottom: 40px;
    color: #666;
}

.sub-section-title {
    font-size: 24px;
    text-align: center;
    margin-bottom: 30px;
    color: #5D4037;
}

/* ヘッダー */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

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

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 40px;
    margin-right: 15px;
}

.himesoba-logo img {
    height: 30px;
}

.global-nav ul {
    display: flex;
    align-items: center;
}

.global-nav li {
    margin-left: 25px;
}

.global-nav a {
    font-size: 14px;
    font-weight: 500;
    color: #333;
    position: relative;
}

.global-nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #8D6E63;
    transition: width 0.3s ease;
}

.global-nav a:hover::after {
    width: 100%;
}

.entry-btn a {
    display: inline-block;
    background-color: #8D6E63;
    color: #fff;
    padding: 8px 15px;
    border-radius: 30px;
    font-weight: 500;
}

.entry-btn a:hover {
    background-color: #6D4C41;
    transform: translateY(-2px);
}

.menu-trigger {
    display: none;
    width: 30px;
    height: 20px;
    position: relative;
    cursor: pointer;
}

.menu-trigger span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: #333;
    position: absolute;
    transition: all 0.3s ease;
}

.menu-trigger span:nth-child(1) {
    top: 0;
}

.menu-trigger span:nth-child(2) {
    top: 9px;
}

.menu-trigger span:nth-child(3) {
    bottom: 0;
}

.menu-trigger.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.menu-trigger.active span:nth-child(2) {
    opacity: 0;
}

.menu-trigger.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* ヒーローセクション */
.hero {
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    position: relative;
    padding: 100px 0 0;
    background-color: #F5F5F5;
    overflow: hidden;
}

.hero-content {
    width: 50%;
    padding-left: 5%;
    z-index: 2;
}

.main-copy {
    font-family: 'Hiragino Mincho ProN', serif;
    font-size: 38px;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 20px;
    color: #333;
}

.sub-text {
    font-size: 18px;
    margin-bottom: 40px;
    color: #666;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 700;
    text-align: center;
    transition: all 0.3s ease;
}

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

.btn-primary {
    background-color: #8D6E63;
    color: #fff;
    box-shadow: 0 4px 10px rgba(141, 110, 99, 0.3);
}

.btn-primary:hover {
    background-color: #6D4C41;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(141, 110, 99, 0.4);
}

.btn-secondary {
    background-color: #fff;
    color: #8D6E63;
    border: 2px solid #8D6E63;
}

.btn-secondary:hover {
    background-color: #EFEBE9;
    transform: translateY(-3px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.hero-slider {
    position: absolute;
    right: 0;
    top: 0;
    width: 50%;
    height: 100%;
    overflow: hidden;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease;
}

.slide.active {
    opacity: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ひめそばとは */
.about {
    background-color: #fff;
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('images/pattern.png');
    background-size: 200px;
    opacity: 0.03;
    pointer-events: none;
}

.about-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-top: 60px;
    position: relative;
    z-index: 1;
}

.about-image {
    width: 45%;
    padding-right: 30px;
}

.about-image img {
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-text {
    width: 55%;
    padding-left: 30px;
}

.feature-item {
    margin-bottom: 30px;
}

.feature-item h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #5D4037;
}

.feature-item i {
    margin-right: 10px;
    color: #8D6E63;
}

.feature-item p {
    color: #666;
    line-height: 1.8;
}

/* 仕事内容・働く魅力 */
.job {
    background-color: #EFEBE9;
    position: relative;
}

.job-categories {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    margin-bottom: 60px;
}

.job-category {
    width: calc(50% - 20px);
    min-width: 280px;
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.category-header {
    background-color: #8D6E63;
    color: #fff;
    padding: 20px;
    display: flex;
    align-items: center;
}

.category-icon {
    width: 50px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-right: 15px;
}

.category-header h3 {
    font-size: 20px;
    font-weight: 500;
}

.category-content {
    padding: 25px;
}

.job-list {
    margin-bottom: 15px;
}

.job-list li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 10px;
    color: #5D4037;
}

.job-list li:before {
    content: '•';
    position: absolute;
    left: 0;
    top: 0;
    color: #8D6E63;
}

.job-note {
    color: #888;
    font-size: 14px;
}

.job-benefits {
    margin-top: 60px;
}

.benefits-items {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.benefit-item {
    width: calc(33.33% - 30px);
    min-width: 280px;
    background-color: #fff;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background-color: #D7CCC8;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: #5D4037;
}

.benefit-item h4 {
    font-size: 18px;
    margin-bottom: 15px;
    line-height: 1.4;
    color: #5D4037;
}

.benefit-item p {
    color: #666;
    font-size: 15px;
}

/* スタッフの声 */
.voice {
    background-color: #fff;
    position: relative;
}

.voice::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('images/pattern.png');
    background-size: 200px;
    opacity: 0.03;
    pointer-events: none;
}

.voice-items {
    max-width: 900px;
    margin: 60px auto 0;
    position: relative;
    z-index: 1;
}

.voice-item {
    display: flex;
    flex-wrap: wrap;
    background-color: #f9f9f9;
    border-radius: 10px;
    margin-bottom: 40px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.voice-image {
    width: 30%;
    position: relative;
    overflow: hidden;
}

.voice-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.voice-content {
    width: 70%;
    padding: 30px;
}

.voice-header {
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.voice-header h3 {
    font-size: 22px;
    margin-bottom: 5px;
    color: #5D4037;
}

.voice-meta {
    color: #8D6E63;
    font-size: 14px;
}

.voice-text p {
    color: #666;
    line-height: 1.8;
}

/* 店舗紹介 */
.shops {
    background-color: #EFEBE9;
}

.shop-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    margin-top: 60px;
}

.shop-item {
    width: 100%;
    max-width: 500px;
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.shop-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.shop-image {
    height: 250px;
    overflow: hidden;
}

.shop-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.shop-item:hover .shop-image img {
    transform: scale(1.05);
}

.shop-content {
    padding: 25px;
}

.shop-content h3 {
    font-size: 24px;
    margin-bottom: 10px;
    color: #5D4037;
}

.shop-address {
    color: #666;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.shop-info p {
    margin-bottom: 8px;
    color: #666;
    font-size: 14px;
}

.shop-info i {
    color: #8D6E63;
    margin-right: 8px;
    width: 20px;
    text-align: center;
}

.shop-note {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 50px;
}

.note-item {
    display: flex;
    align-items: center;
    background-color: #fff;
    padding: 15px 25px;
    border-radius: 50px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.note-item i {
    color: #8D6E63;
    font-size: 20px;
    margin-right: 10px;
}

/* 募集要項 */
.requirements {
    background-color: #fff;
    position: relative;
}

.requirements::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('images/pattern.png');
    background-size: 200px;
    opacity: 0.03;
    pointer-events: none;
}

.req-table-wrapper {
    max-width: 900px;
    margin: 60px auto 0;
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1;
}

.req-table {
    width: 100%;
    border-collapse: collapse;
}

.req-table th {
    background-color: #8D6E63;
    color: #fff;
    text-align: center;
    padding: 15px;
    width: 25%;
    font-weight: 500;
    border-bottom: 1px solid #D7CCC8;
}

.req-table td {
    padding: 20px;
    border-bottom: 1px solid #eee;
}

.req-table tr:last-child th,
.req-table tr:last-child td {
    border-bottom: none;
}

.badge {
    display: inline-block;
    background-color: #EFEBE9;
    color: #5D4037;
    padding: 3px 10px;
    border-radius: 30px;
    font-size: 14px;
    margin-right: 5px;
    margin-bottom: 5px;
    font-weight: 500;
}

.job-content {
    margin-bottom: 20px;
}

.job-content h4 {
    margin-bottom: 10px;
}

.req-list {
    margin-bottom: 10px;
}

.req-list li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 5px;
}

.req-list li:before {
    content: '\f058';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: #8D6E63;
    position: absolute;
    left: 0;
    top: 0;
}

.req-note {
    color: #666;
    font-size: 14px;
    margin-top: 5px;
}

/* よくある質問 */
.faq {
    background-color: #EFEBE9;
}

.faq-list {
    max-width: 800px;
    margin: 60px auto 0;
}

.faq-item {
    background-color: #fff;
    border-radius: 10px;
    margin-bottom: 20px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.faq-question {
    padding: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    position: relative;
}

.faq-icon {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: #8D6E63;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin-right: 15px;
    flex-shrink: 0;
}

.faq-question h3 {
    font-size: 18px;
    font-weight: 500;
    flex-grow: 1;
}

.faq-toggle {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 10px;
    transition: all 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 20px;
    display: flex;
}

.faq-answer .faq-icon {
    background-color: #A1887F;
    margin-top: 5px;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 20px 20px;
}

.faq-answer p {
    flex-grow: 1;
    padding-left: 15px;
    color: #666;
    line-height: 1.8;
}

/* 応募セクション */
.entry {
    background-color: #d3b8b0;
    color: #fff;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.entry::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('images/pattern.png');
    background-size: 200px;
    opacity: 0.05;
    pointer-events: none;
}

.entry .section-title:after {
    background-color: #fff;
}

.entry-lead {
    font-size: 18px;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.entry-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 70px;
    position: relative;
    z-index: 1;
}

.btn-line {
    background-color: #06C755;
    color: #fff;
    padding: 20px 40px;
    min-width: 300px;
    border-radius: 50px;
    box-shadow: 0 10px 20px rgba(6, 199, 85, 0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.btn-line:hover {
    background-color: #05A847;
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(6, 199, 85, 0.4);
}

.btn-mail {
    background-color: #fff;
    color: #5D4037;
    padding: 20px 40px;
    min-width: 300px;
    border-radius: 50px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.btn-mail:hover {
    background-color: #EFEBE9;
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.btn-sub {
    display: block;
    font-size: 12px;
    font-weight: 400;
    margin-top: 5px;
}

.entry-flow {
    max-width: 700px;
    margin: 0 auto;
    text-align: left;
    position: relative;
    z-index: 1;
}

.flow-title {
    text-align: center;
    font-size: 24px;
    margin-bottom: 40px;
}

.flow-list {
    position: relative;
}

.flow-list:before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 20px;
    width: 2px;
    background-color: #fff;
}

.flow-list li {
    display: flex;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.flow-list li:last-child {
    margin-bottom: 0;
}

.flow-num {
    width: 40px;
    height: 40px;
    background-color: #fff;
    color: #5D4037;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    margin-right: 20px;
    flex-shrink: 0;
}

.flow-content {
    flex-grow: 1;
}

.flow-content h4 {
    font-size: 18px;
    margin-bottom: 5px;
}

.flow-content p {
    font-size: 14px;
    opacity: 0.9;
}

/* 応募フォームの営業避け注意書きスタイル */
.form-caution {
  max-width: 650px; /* フォームの最大幅に合わせると綺麗です */
  margin: 0 auto 30px; /* 中央寄せと、下の要素との間隔 */
  padding: 15px 20px;
  border: 1px solid #ffbaba; /* 枠線の色（赤系） */
  border-radius: 8px;
  background-color: #fff5f5; /* 背景色（薄い赤系） */
  color: #c53030; /* 文字色（濃い赤系）*/
  text-align: left;
  font-size: 15px;
}

.form-caution p {
  margin: 0;
  line-height: 1.6;
}

.form-caution strong {
  font-size: 16px;
}



/* フッター */
footer {
    background-color: #333;
    color: #fff;
    padding-top: 60px;
    font-size: 14px;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 30px; /* カラム間の隙間 */
    padding-bottom: 50px;
}

/* 各カラムの基本設定 */
.footer-logo,
.footer-links,
.footer-social, /* 追加 */
.footer-info {
    flex: 1; /* スペースを分け合う */
    min-width: 180px; /* カラムの最小幅 */
}

/* カラムごとの見出しスタイル */
.footer-links h4,
.footer-social h4,
.footer-info h4 {
    font-size: 1.1em;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #555;
    font-weight: 600;
}

/* ロゴエリア */
.footer-logo {
    max-width: 160px;
    flex-grow: 0;
    flex-shrink: 0;
    min-width: 160px; /* ロゴの幅を固定 */
}
.footer-logo img {
    max-width: 100%;
    height: auto;
}

/* リンクエリア */
.footer-links {
    flex-grow: 1.5; /* 少し広めに */
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(130px, 1fr)); /* 列数を自動調整 */
    gap: 15px;
}
.footer-links a {
    font-size: 14px;
    color: #ddd;
    text-decoration: none;
    transition: color 0.3s ease;
}
.footer-links a:hover {
    color: #FF5722;
    text-decoration: underline;
}

/* SNSエリア */
.footer-social ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column; /* 縦に並べる */
    gap: 15px; /* 縦の間隔 */
}

.footer-social a {
    display: inline-flex; /* アイコンとテキストを横並び */
    align-items: center;
    font-size: 14px;
    color: #ddd;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-social a .fab { /* Font Awesome アイコン */
    font-size: 1.4em; /* アイコンサイズ */
    margin-right: 12px;
    width: 25px; /* アイコンの幅を確保 */
    text-align: center;
    color: #fff; /* アイコン自体の色 */
}

.footer-social a:hover {
    color: #FF5722;
}
/* ホバー時にアイコンの色を変える場合 (任意) */
.footer-social a:hover .fa-instagram { color: #e1306c; }
.footer-social a:hover .fa-youtube { color: #FF0000; }


/* 会社情報エリア */
.footer-info {
    text-align: left; /* 左寄せに変更 (4カラムなら右寄せよりバランスが良いかも) */
}
.footer-info p {
    font-size: 14px;
    margin: 0 0 8px 0;
    color: #ddd;
    line-height: 1.6;
}
.footer-info p:last-child { margin-bottom: 0; }

/* コピーライト */
.copyright { /* ...変更なし... */ }

/* =============================================== */
/* レスポンシブ対応 */
/* =============================================== */
@media screen and (max-width: 992px) { /* タブレットなど */
    .footer-content {
        gap: 40px 30px;
    }
    .footer-logo,
    .footer-links,
    .footer-social,
    .footer-info {
        flex: 1;
        min-width: calc(50% - 15px); /* 2カラムレイアウト */
        text-align: left;
    }
    .footer-logo {
        flex-basis: 100%;
        text-align: center;
        margin-bottom: 10px;
    }
}

@media screen and (max-width: 768px) { /* スマートフォン */
    .footer-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 40px;
    }

    .footer-logo,
    .footer-links,
    .footer-social,
    .footer-info {
        width: 100%;
        min-width: unset;
        text-align: center;
    }

    .footer-links ul {
        grid-template-columns: 1fr; /* 1カラム */
        gap: 15px;
    }

    .footer-social ul {
        flex-direction: row; /* スマホでは横並び */
        justify-content: center;
        gap: 25px;
    }
}

/* アニメーション */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.8s ease forwards;
}

/* レスポンシブ対応 */
@media screen and (max-width: 1024px) {
    .main-copy {
        font-size: 32px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .benefit-item {
        width: calc(50% - 30px);
    }
}

@media screen and (max-width: 768px) {
    .header-inner {
        height: 60px;
    }
    
    .global-nav {
        display: none;
        position: fixed;
        top: 60px;
        left: 0;
        width: 100%;
        background-color: rgba(255, 255, 255, 0.95);
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
        z-index: 1000;
    }
    
    .global-nav.active {
        display: block;
    }
    
    .global-nav ul {
        flex-direction: column;
        padding: 20px 0;
    }
    
    .global-nav li {
        margin: 10px 0;
        text-align: center;
    }
    
    .menu-trigger {
        display: block;
    }
    
    .logo img {
        height: 30px;
    }
    
    .himesoba-logo img {
        height: 25px;
    }
    
    .hero {
        flex-direction: column;
        height: auto;
        padding-top: 60px;
    }
    
    .hero-content {
        width: 100%;
        padding: 40px 20px;
        text-align: center;
    }
    
    .hero-slider {
        position: relative;
        width: 100%;
        height: 300px;
    }
    
    .main-copy {
        font-size: 28px;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .about-content {
        flex-direction: column;
    }
    
    .about-image, .about-text {
        width: 100%;
        padding: 0;
    }
    
    .about-image {
        margin-bottom: 30px;
    }
    
    .job-category {
        width: 100%;
    }
    
    .benefit-item {
        width: 100%;
    }
    
    .voice-image, .voice-content {
        width: 100%;
    }
    
    .voice-image {
        height: 300px;
    }
    
    .req-table th {
        width: 30%;
    }
    
    .entry-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-line, .btn-mail {
        width: 100%;
    }
}

@media screen and (max-width: 480px) {
    .section-title {
        font-size: 24px;
    }
    
    .main-copy {
        font-size: 24px;
    }
    
    .sub-text {
        font-size: 16px;
    }
    
    .hero-slider {
        height: 230px;
    }
    
    .req-table {
        display: block;
    }
    
    .req-table tbody, .req-table tr {
        display: block;
        width: 100%;
    }
    
    .req-table tr {
        margin-bottom: 20px;
        border-bottom: 1px solid #eee;
    }
    
    .req-table th, .req-table td {
        display: block;
        width: 100%;
        border-bottom: none;
    }
    
    .req-table th {
        text-align: left;
        padding: 10px 15px;
    }
    
    .flow-list:before {
        left: 19px;
    }
}

/* FAQ さらに見るボタン */
.more-button-container {
    text-align: center;
    margin-top: 40px; /* FAQリストとの余白 */
}

.btn-more {
    padding: 12px 40px;
    border: 2px solid #8D6E63; /* 枠線の色 */
    color: #8D6E63; /* 文字色 */
    background-color: #fff; /* 背景色 */
    font-weight: 700;
}

.btn-more:hover {
    background-color: #EFEBE9; /* ホバー時の背景色 */
    color: #5D4037; /* ホバー時の文字色 */
    transform: translateY(-3px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}