/* ===========================================
   リセット・共通
=========================================== */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: -apple-system,BlinkMacSystemFont,'Segoe UI','Roboto','Helvetica Neue',Arial,sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fafafa;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }

/* ===========================================
   コンテナ・セクション見出し
=========================================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.section-header {
    text-align: center;
    margin-bottom: 50px;
}
.section-header h2 {
    font-size: 2.5rem;
    color: #E6381C;
    font-weight: 800;
    margin-bottom: 15px;
}
.section-subtitle {
    font-size: 1.2rem;
    color: #666;
    font-weight: 500;
}

/* ===========================================
   ボタン
=========================================== */
.btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    text-align: center;
    transition: all 0.3s;
    cursor: pointer;
    border: none;
    position: relative;
}
.btn-primary {
    background: linear-gradient(135deg,#E6381C 0%,#ff6b47 100%);
    color: white;
    box-shadow: 0 8px 25px rgba(230,56,28,.3);
}
.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(230,56,28,.4);
}
.btn-secondary {
    background: white;
    color: #E6381C;
    border: 2px solid #E6381C;
}
.btn-secondary:hover {
    background: #E6381C;
    color: white;
    transform: translateY(-3px);
}
.btn-line {
    background: #00C300;
    color: white;
    font-size: 1.2rem;
    padding: 20px 40px;
    box-shadow: 0 10px 30px rgba(0, 195, 0, 0.3);
    display: flex; flex-direction: column; align-items: center;
    min-width: 200px;
}
.btn-line:hover { background: #00A300; color: white; transform: translateY(-5px); }
.btn-email {
    background: white;
    color: #E6381C;
    font-size: 1.2rem;
    padding: 20px 40px;
    display: flex; flex-direction: column; align-items: center;
    min-width: 200px;
    border: 2px solid white;
}
.btn-email:hover {
    background: transparent;
    color: white;
    border-color: white;
}
.btn-note {
    font-size: 0.85rem; margin-top: 5px; opacity: 0.8; font-weight: 400;
}

/* ===========================================
   ハンバーガーメニュー
=========================================== */
.mobile-nav {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1300;
}
.hamburger {
    width: 50px; height: 50px;
    background: rgba(230,56,28,.9);
    border-radius: 50%; display: flex;
    flex-direction: column; justify-content: center;
    align-items: center; cursor: pointer;
    transition: all .3s;
}
.hamburger span {
    width: 20px; height: 2px; background: white;
    margin: 2px 0; transition: all .3s;
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px,5px);}
.hamburger.active span:nth-child(2) { opacity: 0;}
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(7px,-6px);}
.nav-menu {
    position: fixed; top: 0; right: -300px; width: 280px; height: 100vh;
    background: white; box-shadow: -5px 0 20px rgba(0,0,0,0.1);
    padding: 80px 20px 20px; transition: right 0.3s;
    z-index: 1100;
}


.nav-menu.active { right: 0; }
.nav-menu a {
    display: block; padding: 15px 0;
    color: #333; text-decoration: none;
    font-weight: 600; border-bottom: 1px solid #eee;
    transition: color .3s;
}
.nav-menu a:hover { color: #E6381C; }


/* ===========================================
   ヒーローセクション
=========================================== */
.hero {
    min-height: 60vh;
    background: #E6381C url('./image/D16B518D-6830-4015-A89E-DD263131B136.jpg') center center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero-content { z-index:3; text-align:center; color:white; max-width:800px; width:100%; }
.hero-title { font-size:4rem; font-weight:900; line-height:1.2; margin-bottom:20px; text-shadow:3px 3px 6px rgba(0,0,0,0.8);}

.hero-subtitle {font-size:1.4rem; background:rgba(0,0,0,0.6); padding:25px; border-radius:15px; margin-bottom:40px; text-shadow:2px 2px 4px rgba(0,0,0,0.8);}
.hero-buttons {display:flex;justify-content:center;gap:20px;flex-wrap:wrap;}
.scroll-indicator {
    position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%);
    color: white; text-align: center; opacity: 0.9; z-index: 3;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
}
.scroll-arrow {
    width: 2px; height: 30px; background: white;
    margin: 10px auto; position: relative;
    animation: scroll-bounce 2s infinite;
    box-shadow: 0 0 4px rgba(0,0,0,0.5);
}
.scroll-arrow::after {
    content: ''; position: absolute; bottom: 0; left: -4px;
    width: 0; height:0;
    border-left: 5px solid transparent;
    border-right:5px solid transparent;
    border-top:8px solid white;
    filter:drop-shadow(0 0 2px rgba(0,0,0,0.5));
}
@keyframes scroll-bounce {
    0%,20%,50%,80%,100% { transform: translateY(0);}
    40% { transform: translateY(-10px);}
    60% { transform: translateY(-5px);}
}
@media (max-width: 968px){ .hero{min-height:50vh;} .hero-title{font-size:3.2rem;} }
@media (max-width: 576px){ .hero{min-height:45vh; padding:20px 0;} .hero-title{font-size:2.5rem;} .hero-buttons{flex-direction:column;align-items:center;} .btn{max-width:90%;width:100%;} }
@media (max-width: 400px){ .hero{min-height:40vh;} .hero-title{font-size:2rem;} .hero-subtitle{font-size:1rem;} }

/* ===========================================
   仕事内容＆1日の流れ
=========================================== */
.job-info { padding: 90px 0; background: white; }
.job-detail-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 30px; margin: 40px 0;
}
.job-detail-item {
    background: #f8f9fa; padding: 25px 20px; border-radius: 12px;
}
.job-detail-item h4 { font-size: 1.3rem; color: #E6381C; margin-bottom: 10px; font-weight:700;}
.job-points { margin:30px 0 10px 0; list-style:none;}
.job-points li {margin: 0 0 10px 0; font-size: 1.10rem;}
.job-flowchart {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 700px;
  margin: 50px auto 0 auto;
  position: relative;
}
.job-flow-step {
  display: flex;
  align-items: center;
  width: 100%;
  background: white;
  border-radius: 18px;
  padding: 18px 22px;
  box-shadow: 0 8px 24px rgba(230, 56, 28, 0.09);
}
.flow-image {
  flex: 0 0 220px;
  width: 220px;
  height: 220px;
  margin-right: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.flow-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 14px;
  border: 3px solid #E6381C;
  background: #f5f5f5;
}
/* テキスト部分の幅を抑え気味に */
.flow-text {
  flex: 1;
  min-width: 0;
  max-width: 260px;
  color: #222;
  font-size: 0.97rem;
}
.flow-text h4 {
  font-size: 1.08rem;
  color: #E6381C;
  margin-bottom: 5px;
  font-weight: 700;
  line-height: 1.3;
}
.flow-text p {
  font-size: 0.96rem;
  line-height: 1.5;
  color: #333;
  margin: 0;
}
.flow-arrow {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  margin: 0 0 14px 90px;
}
.flow-arrow span {
  font-size: 2.1rem;
  color: #E6381C;
}
@media (max-width: 900px) {
  .job-flowchart {max-width:98vw;}
  .job-flow-step {flex-direction:column;align-items:flex-start; padding:16px 8px;}
  .flow-image {margin-right:0; width:90vw; max-width:95vw; height:160px;}
  .flow-text {max-width:100%; margin-top:8px; text-align:left;}
  .flow-arrow {margin-left:10vw;}
}
@media (max-width: 480px) {
  .flow-image {width: 95vw; height: 120px;}
  .flow-arrow {margin-left:15vw;}
}

.job-summary {margin:30px 0 0 0; font-size:1.1rem;}
.job-summary ul {margin-top:10px;}
.job-summary li {margin:0 0 0 18px;}
.job-points-container {
  display: flex;
  gap: 40px;
  justify-content: center;
  margin-top: 30px;
}
.job-point-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 180px;
  text-align: center;
  background-color: #E6381C;      /* メインカラー */
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(230, 56, 28, 0.3);
  color: white;                   /* 全体の文字色も白 */
}
.job-point-icon {
  font-size: 3rem;
  margin-bottom: 10px;
                   /* アイコンも白で統一 */
}
.job-point-text {
  font-size: 1.1rem;
  color: white;                   /* テキストも白でコントラスト強化 */
  line-height: 1.4;
}
@media (max-width: 600px) {
  .job-points-container { flex-direction: column; align-items: center; gap: 20px; }
}


@media (max-width:900px) { .job-detail-grid{grid-template-columns:1fr;} }
@media (max-width:600px) { .job-schedule td,.job-schedule th{font-size:0.95rem;padding:8px;} }

/* ===========================================
   スタッフの声スライダー
=========================================== */
.voice { padding: 100px 0; background: linear-gradient(135deg,#f8f9fa 0%,#e9ecef 100%);}
.voice-slider {position:relative; background:#fff; border-radius:20px; box-shadow:0 15px 50px rgba(0,0,0,0.1); overflow:hidden; margin-bottom:60px;}
.voice-slider-container {position:relative;width:100%;height:350px;overflow:hidden;}
.voice-slide {position:absolute;top:0;left:0;width:100%;height:100%;opacity:0;transform:translateX(100%);transition:all .5s;}
.voice-slide.active {opacity:1;transform:translateX(0);}
.voice-card {display:flex;align-items:center;width:100%;height:100%;padding:40px;gap:40px;}
.staff-image {flex:0 0 200px;height:200px;}
.staff-image img {width:100%;height:100%;object-fit:cover;border-radius:20px;border:4px solid #E6381C;box-shadow:0 10px 30px rgba(230,56,28,0.15);}
.voice-content {flex:1;display:flex;flex-direction:column;gap:25px;}
.staff-details h4 {font-size:1.8rem;color:#E6381C; margin-bottom:7px; font-weight:700;}
.staff-position {color:#666;font-size:1.1rem;}
.voice-text {background:#f8f9fa;padding:25px;border-radius:15px;border-left:4px solid #E6381C;}
.voice-text p {font-size:1.2rem;line-height:1.8;color:#333;}
.voice-navigation {display:flex;align-items:center;justify-content:center;padding:30px;background:rgba(230,56,28,0.05);gap:30px;}
.nav-btn {width:50px;height:50px;background:#E6381C;color:#fff;border-radius:50%;font-size:1.5rem;border:none;cursor:pointer;}
.nav-btn:disabled {background:#ccc;cursor:not-allowed;}
.voice-indicators {display:flex;gap:15px;}
.voice-indicator {width:15px;height:15px;border-radius:50%;background:rgba(230,56,28,.3);cursor:pointer;}
.voice-indicator.active {background:#E6381C;transform:scale(1.3);}
.voice-indicator:hover {background:rgba(230,56,28,0.7);}
@media (max-width: 968px){
    .voice-slider-container{height:400px;}
    .voice-card{padding:30px;gap:30px;}
    .staff-image {flex: 0 0 150px; height:150px;}
    .staff-details h4 {font-size:1.5rem;}
    .voice-text p {font-size:1.1rem;}
}
@media (max-width:576px){
    .voice-slider-container{height:auto;min-height:420px;}
    .voice-card {flex-direction:column;text-align:center;padding:25px 20px;gap:20px;}
    .staff-image{flex:none;width:120px;height:120px;margin:0 auto;}
    .voice-navigation{padding:20px;gap:18px;}
    .nav-btn{width:38px;height:38px;font-size:1.1rem;}
    .voice-indicator{width:10px;height:10px;}
}

/* ===========================================
   会社紹介（4枚自動スライド）
=========================================== */
.company { padding: 100px 0; background: white; }
.company-content { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;}
.company-slider { position:relative; border-radius:20px; overflow: hidden; box-shadow: 0 15px 40px rgba(0,0,0,.1);}
.slider-container { position:relative; width:100%; height:400px; overflow:hidden;}
.slide {
    position:absolute; top:0;left:0; width:100%; height:100%; opacity:0;
    transition:opacity 0.5s;
}
.slide.active { opacity:1; }
.slide img { width:100%; height:100%; object-fit:cover; }
.slider-indicators {
    position:absolute; bottom:20px; left:50%; transform: translateX(-50%);
    display:flex; gap:10px; z-index:10;
}
.indicator {
    width:12px; height:12px; border-radius:50%; background:rgba(255,255,255,0.5);
    cursor:pointer; transition:all .3s; backdrop-filter:blur(5px);
}
.indicator.active {background:#E6381C;transform:scale(1.2);}
.indicator:hover {background:rgba(230,56,28,0.8);}
.company-text h3 {font-size:2rem;color:#E6381C;margin-bottom:25px;font-weight:700;}
.company-text p {font-size:1.1rem;line-height:1.8;margin-bottom:20px;color:#555;}
.company-values { margin-top: 40px; }
.value-item { display: flex; align-items: center; margin-bottom: 25px; padding: 20px; background: #f8f9fa; border-radius: 15px; transition:.3s;}
.value-item:hover { background:#E6381C; color:white;}
.value-icon { font-size:2rem; margin-right:20px; min-width:60px;}
.value-item h4 { font-size:1.2rem; margin-bottom:5px;}
.value-item p { color:#666;}
.value-item:hover p { color:rgba(255,255,255,0.9);}
@media (max-width:968px){
    .company-content{grid-template-columns:1fr;gap:40px;}
    .slider-container{height:300px;}
}
@media (max-width:576px){
    .slider-container{height:200px;}
    .slider-indicators{bottom:8px;}
    .indicator{width:10px;height:10px;}
}

/* ===========================================
   福利厚生・募集要項
=========================================== */
.benefits { padding: 100px 0; background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);}
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 80px;
}
.benefit-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.3s;
    border: 2px solid transparent;
}
.benefit-card:hover {
    transform: translateY(-8px);
    border-color: #E6381C;
    box-shadow: 0 20px 50px rgba(230,56,28,0.12);
}
.benefit-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}
.benefit-card h3 {
    font-size: 1.4rem;
    color: #E6381C;
    margin-bottom: 15px;
    font-weight: 700;
}
.benefit-card p {
    color: #666;
    line-height: 1.7;
}
.job-requirements {
    background: white;
    padding: 50px; border-radius: 20px; box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}
.job-requirements h3 {
    font-size: 2rem;
    color: #E6381C;
    text-align: center;
    margin-bottom: 40px;
}
.requirements-table {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.req-row {
    display: grid;
    grid-template-columns: 150px 1fr;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
    align-items: center;
}
.req-label {
    font-weight: 700;
    color: #E6381C;
    font-size: 1.1rem;
}
.req-value {
    color: #333;
    font-size: 1.1rem;
}
@media (max-width:968px){
    .benefits-grid { grid-template-columns:1fr; }
    .req-row { grid-template-columns:1fr; }
}

/* ===========================================
   Q&Aセクション
=========================================== */
.faq { padding: 100px 0; background: white; }
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
    background: #f8f9fa;
    border-radius: 15px;
    margin-bottom: 20px;
    overflow: hidden;
    transition: all 0.3s;
}
.faq-item:hover { box-shadow: 0 5px 20px rgba(230,56,28,.1);}
.faq-question {
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: white;
    transition: all .3s;
}
.faq-question:hover {
    background: #E6381C;
    color: white;
}
.faq-question h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0;
}
.faq-toggle {
    font-size: 1.5rem;
    font-weight: 700;
    transition: transform 0.3s;
}
.faq-item.active .faq-toggle { transform: rotate(45deg);}
.faq-answer {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s;
}
.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 25px 30px;
}
.faq-answer p {
    color: #666;
    line-height: 1.7;
    font-size: 1.05rem;
}

/* ===========================================
   応募セクション
=========================================== */
.apply {
    padding: 100px 0;
    background: linear-gradient(135deg, #E6381C 0%, #ff6b47 100%);
    color: white;
    text-align: center;
}
.apply-content h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    font-weight: 800;
}
.apply-subtitle {
    font-size: 1.3rem;
    margin-bottom: 50px;
    opacity: 0.95;
}
.apply-buttons {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}
.contact-info {
    background: rgba(255,255,255,0.1);
    padding: 40px;
    border-radius: 20px;
    margin-bottom: 40px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}
.contact-info h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 700;
}
.phone-number {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 10px;
    color: #FFE066;
}
.phone-hours { font-size: 1rem; opacity: 0.9; }
.company-info { opacity: 0.92; }
.company-info h4 { font-size:1.2rem;margin-bottom:10px;font-weight:600;}
.company-info p {font-size: 1rem;}
.apply-buttons {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-bottom: 60px;
  flex-wrap: wrap;
}
.btn-indeed {
  background: #2164f3;
  color: #fff;
  font-weight: 700;
  padding: 18px 32px;
  border-radius: 30px;
  text-decoration: none;
  transition: background .2s, box-shadow .2s, transform .2s;
  box-shadow: 0 8px 22px rgba(33, 100, 243, 0.18);
}
.btn-indeed:hover {
  background: #1753cb;
  transform: translateY(-3px) scale(1.03);
}

.btn-engage {
  background: #00AEE4;
  color: #fff;
  font-weight: 700;
  padding: 18px 32px;
  border-radius: 30px;
  text-decoration: none;
  transition: background .2s, box-shadow .2s, transform .2s;
  box-shadow: 0 8px 22px rgba(4,153,104,0.15);
}
.btn-engage:hover {
  background: #0075FF;
  transform: translateY(-3px) scale(1.03);
}

.btn-email {
  background: #fff;
  color: #E6381C;
  border: 2px solid #fff;
  font-weight: 700;
  padding: 18px 32px;
  border-radius: 30px;
  text-decoration: none;
  transition: background .2s, box-shadow .2s, color .2s, transform .2s;
  box-shadow: 0 8px 22px rgba(230,56,28,0.10);
}
.btn-email:hover {
  background: #E6381C;
  color: #fff;
  border-color: #fff;
  transform: translateY(-3px) scale(1.03);
}

@media (max-width: 700px) {
  .apply-buttons { flex-direction: column; gap: 18px; align-items: center;}
  .btn-indeed, .btn-engage, .btn-email {width: 100%; max-width: 350px; text-align:center;}
}

/* ===========================================
   フッター
=========================================== */
.footer {
    background:#333; color:#fff; text-align:center; padding:30px 0;
    font-size:0.95rem; opacity:0.85;
}
.footer-logo {
    text-align: center;
    margin-bottom: 18px;
}

.footer-logo img {
    height: 36px;
    width: auto;
    vertical-align: middle;
    /* 白いシャドウを追加して視認性向上 */
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.8)) 
            drop-shadow(0 2px 4px rgba(255, 255, 255, 0.6));
}

/* ホバー時により強いシャドウ効果 */
.footer-logo img:hover {
    filter: drop-shadow(0 0 12px rgba(255, 255, 255, 1.0)) 
            drop-shadow(0 3px 6px rgba(255, 255, 255, 0.8));
    transition: filter 0.3s ease;
}

/* ===========================================
   トップに戻るボタン
=========================================== */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px; height: 50px;
    background: #E6381C;
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(230,56,28,0.30);
}
.scroll-to-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(230,56,28,0.42);
}

/* ===========================================
   レスポンシブデザインまとめ
=========================================== */
@media (max-width: 968px){
    .container { padding: 0 10px; }
    .section-header h2 { font-size:2rem;}
    .voice-slider, .company-slider, .apply-content, .benefits, .faq, .job-info, .company {padding:60px 0;}
    .apply-content h2{font-size:2.2rem;}
}
@media (max-width: 576px){
    .section-header h2 {font-size:1.6rem;}
    .job-detail-grid{gap:15px;}
    .benefits-grid, .job-highlights{grid-template-columns:1fr;}
    .job-card, .benefit-card, .highlight-item{padding:18px 10px;}
    .job-schedule th, .job-schedule td{font-size:0.95rem;}
    .apply-content h2{font-size:2rem;}
    .apply-subtitle{font-size:1.05rem;}
    .contact-info{padding:22px 10px;}
    .footer{font-size:0.9rem;}
    .company-values{margin-top:18px;}
}
@media (max-width: 400px){
    .hero-title{font-size:1.4rem;}
    .apply-content h2{font-size:1.5rem;}
    .btn, .btn-line, .btn-email{width:100%; padding:10px 12px;}
    .job-detail-item, .job-points, .job-summary, .job-schedule{font-size:0.97rem;}
    .schedule-item,.value-item{padding:12px;}
}


.footer-logo {
    text-align: center;
    margin-bottom: 18px;
}

.footer-logo img {
    height: 36px;
    width: auto;
    vertical-align: middle;
}
