/* 
  Mio's Choice - Soft & Natural Landing Page Theme
  モバイルファースト・女性向けデザイン
*/

:root {
    --bg-color: #faf7f5;
    --text-color: #524743;
    --text-light: #8c7e77;
    --accent-color: #d19a8c;
    --accent-hover: #b87b6c;
    --secondary-color: #b5a49c;
    --secondary-hover: #9c8a82;
    --box-bg: #ffffff;
    --border-color: #eeddd8;
    --card-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
  }
  
  * {
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Zen Maru Gothic', 'Hiragino Kaku Gothic ProN', 'Meiryo', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    margin: 0;
    padding: 0;
    line-height: 1.8;
    letter-spacing: 0.04em;
    -webkit-font-smoothing: antialiased;
  }
  
  /* ==============================
     Layout & Container
     ============================== */
  .container {
    max-width: 600px; /* モバイルファーストで幅を抑えめに設定 */
    margin: 0 auto;
    padding: 0 20px;
  }
  
  .text-center {
    text-align: center;
  }
  
  /* ==============================
     Header
     ============================== */
  header {
    text-align: center;
    padding: 24px 0;
    font-size: 1.4rem;
    font-weight: 700;
    color: #a88175;
    border-bottom: 1px dashed var(--border-color);
    margin-bottom: 40px;
    background-color: rgba(250, 247, 245, 0.9);
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(4px);
  }
  
  /* ==============================
     Typography & Shared
     ============================== */
  .section-title {
    text-align: center;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 30px;
    color: #8c6a61;
  }
  
  /* ==============================
     Hero Section
     ============================== */
  .hero {
    text-align: center;
    margin-bottom: 60px;
  }
  
  .hero h1 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.6;
    color: #8c6a61;
  }
  
  .hero p {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 24px;
  }
  
  .hero-img {
    width: 100%;
    max-width: 280px;
    border-radius: 20px;
    margin-bottom: 30px;
    background-color: var(--border-color); /* 画像リンク切れ時のプレースホルダー */
    aspect-ratio: 4/5;
    object-fit: cover;
    box-shadow: var(--card-shadow);
  }
  
  /* ==============================
     Buttons
     ============================== */
  .cv-button {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    background-color: var(--accent-color);
    color: #fff;
    text-decoration: none;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 4px 12px rgba(209, 154, 140, 0.4);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    border: none;
    cursor: pointer;
  }
  
  .cv-button:hover, 
  .cv-button:active {
    background-color: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(209, 154, 140, 0.5);
  }
  
  .block-btn {
    display: block;
    width: 100%;
  }
  
  .secondary-btn {
    background-color: var(--secondary-color);
    box-shadow: 0 4px 12px rgba(181, 164, 156, 0.4);
  }
  
  .secondary-btn:hover,
  .secondary-btn:active {
    background-color: var(--secondary-hover);
    box-shadow: 0 6px 16px rgba(181, 164, 156, 0.5);
  }
  
  /* ==============================
     Pain Points
     ============================== */
  .pain-points-section {
    margin-bottom: 60px;
  }
  
  .pain-points {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  
  .pain-card {
    background: var(--box-bg);
    border: 1px dashed var(--border-color);
    padding: 24px 20px;
    border-radius: 16px;
    text-align: center;
  }
  
  .pain-card h3 {
    font-size: 1.1rem;
    color: #8c6a61;
    margin: 0 0 12px 0;
  }
  
  .pain-card p {
    margin: 0;
    font-size: 0.95rem;
    color: var(--text-light);
  }
  
  /* ==============================
     Reasons (Trust Section)
     ============================== */
  .reasons {
    background-color: #fcece8;
    padding: 40px 24px;
    border-radius: 24px;
    margin-bottom: 60px;
  }
  
  .reasons .section-title {
    margin-bottom: 40px;
  }
  
  .reason-item {
    margin-bottom: 28px;
    background: rgba(255, 255, 255, 0.6);
    padding: 20px;
    border-radius: 16px;
  }
  
  .reason-item:last-child {
    margin-bottom: 0;
  }
  
  .reason-item h4 {
    font-size: 1.1rem;
    color: #8c6a61;
    margin: 0 0 8px 0;
    display: flex;
    align-items: center;
    gap: 8px;
  }
  
  .reason-item p {
    margin: 0;
    font-size: 0.95rem;
    color: var(--text-color);
  }
  
  /* ==============================
     Job Recommendations
     ============================== */
  .job-list {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-bottom: 60px;
  }
  
  .job-card {
    background: var(--box-bg);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
    border: 1px solid var(--border-color);
  }
  
  .job-img {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    background-color: var(--border-color); /* 画像リンク切れ時のプレースホルダー */
    display: block;
  }
  
  .job-content {
    padding: 24px 20px;
  }
  
  .job-tags {
    display: inline-block;
    background-color: #f7e6e2;
    color: #b8624d;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 16px;
  }
  
  .job-title {
    font-size: 1.4rem;
    color: #8c6a61;
    margin: 0 0 16px 0;
  }
  
  .job-desc {
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0 0 20px 0;
  }
  
  .job-voice {
    background-color: #faf7f5;
    padding: 16px;
    border-radius: 12px;
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 24px;
    border-left: 3px solid var(--accent-color);
  }
  
  /* ==============================
     FAQ Section
     ============================== */
  .faq-section {
    margin-bottom: 60px;
  }
  
  details {
    background: var(--box-bg);
    border: 1px solid var(--border-color);
    padding: 20px;
    border-radius: 16px;
    margin-bottom: 16px;
    transition: all 0.3s ease;
  }
  
  summary {
    font-weight: 700;
    cursor: pointer;
    list-style: none; /* Hide default arrow */
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #8c6a61;
    font-size: 1.05rem;
  }
  
  /* Custom arrow logic */
  summary::-webkit-details-marker {
    display: none;
  }
  details[open] .icon {
    transform: rotate(180deg);
  }
  .icon {
    transition: transform 0.3s ease;
    font-size: 0.8rem;
    color: var(--accent-color);
  }
  
  details p {
    margin: 16px 0 0 0;
    padding-top: 16px;
    border-top: 1px dashed var(--border-color);
    font-size: 0.95rem;
    color: var(--text-color);
  }
  
  /* ==============================
     Footer
     ============================== */
  footer {
    text-align: center;
    padding: 40px 20px;
    background-color: #f7efe9;
    font-size: 0.9rem;
    color: #a88175;
    border-radius: 40px 40px 0 0;
  }
  
  footer p {
    margin: 0 0 8px 0;
    font-style: italic;
  }
  
  footer .copyright {
    font-size: 0.8rem;
    font-style: normal;
    opacity: 0.8;
  }
  
  /* ==============================
     Transitions & Animations
     ============================== */
  @keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
  }
  
  .job-card, .pain-card, .reason-item {
    animation: fadeIn 0.6s ease-out forwards;
  }
  
  /* Responsive adjust for larger screens (though mobile first is critical) */
  @media (min-width: 768px) {
    .container {
      max-width: 800px;
    }
    .pain-points {
      flex-direction: row;
    }
    .pain-card {
      flex: 1;
    }
    .reasons-grid {
      display: flex;
      flex-direction: row;
      gap: 20px;
    }
    .reason-item {
      flex: 1;
      margin-bottom: 0;
    }
  }
  