@charset "UTF-8";

/*!
Theme Name: Cocoon Child
Template:   cocoon-master
Version:    1.1.0
*/

/************************************
** 子テーマ用のスタイルを書く
************************************/
/*必要ならばここにコードを書く*/

/************************************
** レスポンシブデザイン用のメディアクエリ
************************************/
/*1240px以下*/
@media screen and (max-width: 1240px){
  /*必要ならばここにコードを書く*/
}

/*1023px以下*/
@media screen and (max-width: 1023px){
  /*必要ならばここにコードを書く*/
}

/*834px以下*/
@media screen and (max-width: 834px){
  /*必要ならばここにコードを書く*/
}

/*480px以下*/
@media screen and (max-width: 480px){
  /*必要ならばここにコードを書く*/
}


<style>
  :root {
    --navy: #0a1628;
    --blue: #1a3a5c;
    --sky: #1e7fc1;
    --accent: #e8a000;
    --accent2: #e05c00;
    --light: #f5f8fc;
    --white: #ffffff;
    --text: #1a2233;
    --muted: #5a6a80;
    --border: #d0dcea;
    --green: #1a7a4a;
    --red: #c0392b;
  }

  * { margin: 0; padding: 0; box-sizing: border-box; }

  body {
    font-family: 'Noto Sans JP', sans-serif;
    color: var(--text);
    background: var(--light);
    line-height: 1.8;
    font-size: 16px;
  }

  /* HERO */
  .hero {
    background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 60%, #1a4a7a 100%);
    color: white;
    padding: 0;
    position: relative;
    overflow: hidden;
  }
  .hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(30,127,193,0.3) 0%, transparent 70%);
    border-radius: 50%;
  }
  .hero-inner {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 24px 48px;
    position: relative;
    z-index: 1;
  }
  .hero-badge {
    display: inline-block;
    background: var(--accent);
    color: var(--navy);
    font-size: 12px;
    font-weight: 700;
    padding: 4px 14px;
    border-radius: 2px;
    letter-spacing: 0.08em;
    margin-bottom: 18px;
  }
  .hero h1 {
    font-family: 'Noto Serif JP', serif;
    font-size: clamp(22px, 4vw, 36px);
    font-weight: 900;
    line-height: 1.4;
    margin-bottom: 20px;
    letter-spacing: -0.01em;
  }
  .hero h1 span { color: var(--accent); }
  .hero-lead {
    font-size: 15px;
    color: rgba(255,255,255,0.82);
    max-width: 620px;
    margin-bottom: 32px;
    line-height: 1.9;
  }
  .hero-cta {
    display: inline-block;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent2) 100%);
    color: white;
    font-size: 17px;
    font-weight: 700;
    padding: 16px 40px;
    border-radius: 4px;
    text-decoration: none;
    letter-spacing: 0.04em;
    box-shadow: 0 4px 20px rgba(232,160,0,0.4);
    transition: transform 0.2s, box-shadow 0.2s;
  }
  .hero-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(232,160,0,0.5); }
  .hero-stats {
    display: flex;
    gap: 32px;
    margin-top: 40px;
    padding-top: 32px;
    border-top: 1px solid rgba(255,255,255,0.15);
    flex-wrap: wrap;
  }
  .hero-stat { text-align: center; }
  .hero-stat .num {
    font-family: 'Noto Serif JP', serif;
    font-size: 28px;
    font-weight: 900;
    color: var(--accent);
    display: block;
    line-height: 1;
  }
  .hero-stat .label { font-size: 11px; color: rgba(255,255,255,0.65); margin-top: 4px; letter-spacing: 0.06em; }

  /* MAIN LAYOUT */
  .container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 24px;
  }

  /* SECTION */
  section { padding: 56px 0; }
  section:nth-child(even) { background: white; }

  h2 {
    font-family: 'Noto Serif JP', serif;
    font-size: clamp(20px, 3vw, 28px);
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 28px;
    padding-bottom: 14px;
    border-bottom: 3px solid var(--sky);
    position: relative;
  }
  h2::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--accent);
  }

  h3 {
    font-family: 'Noto Serif JP', serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--blue);
    margin: 28px 0 12px;
  }

  p { margin-bottom: 16px; }

  /* POINT CARDS */
  .point-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    margin: 28px 0;
  }
  .point-card {
    background: var(--light);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 24px 20px;
    position: relative;
    overflow: hidden;
  }
  .point-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 4px; height: 100%;
    background: var(--sky);
  }
  .point-card .icon { font-size: 28px; margin-bottom: 10px; }
  .point-card h4 { font-weight: 700; color: var(--navy); font-size: 15px; margin-bottom: 6px; }
  .point-card p { font-size: 13px; color: var(--muted); margin: 0; line-height: 1.7; }

  /* JOB CARDS */
  .job-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 28px;
    margin-bottom: 20px;
    box-shadow: 0 2px 12px rgba(10,22,40,0.06);
    position: relative;
  }
  .job-card .job-badge {
    display: inline-block;
    background: var(--sky);
    color: white;
    font-size: 11px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 2px;
    margin-bottom: 10px;
    letter-spacing: 0.06em;
  }
  .job-card h3 { margin: 0 0 16px; font-size: 19px; color: var(--navy); }
  .job-detail-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 16px;
  }
  .job-detail-item { display: flex; flex-direction: column; gap: 2px; }
  .job-detail-item .key { font-size: 11px; color: var(--muted); font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; }
  .job-detail-item .val { font-size: 15px; font-weight: 700; color: var(--text); }
  .job-detail-item .val.highlight { color: var(--accent2); font-size: 17px; }
  .job-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 14px; }
  .job-tag {
    background: #e8f0fb;
    color: var(--sky);
    font-size: 12px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 20px;
  }
  .job-tag.free { background: #e8f7ee; color: var(--green); }

  /* CTA BUTTON */
  .btn-main {
    display: inline-block;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent2) 100%);
    color: white;
    font-size: 16px;
    font-weight: 700;
    padding: 14px 36px;
    border-radius: 4px;
    text-decoration: none;
    letter-spacing: 0.04em;
    box-shadow: 0 4px 16px rgba(232,160,0,0.35);
    transition: transform 0.2s, box-shadow 0.2s;
    text-align: center;
  }
  .btn-main:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(232,160,0,0.45); }
  .btn-block { display: block; text-align: center; margin: 24px 0; }

  /* TRANSPORT TABLE */
  .transport-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    font-size: 14px;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(10,22,40,0.08);
  }
  .transport-table th {
    background: var(--navy);
    color: white;
    padding: 12px 16px;
    text-align: left;
    font-size: 12px;
    letter-spacing: 0.06em;
    font-weight: 700;
  }
  .transport-table td { padding: 12px 16px; border-bottom: 1px solid var(--border); vertical-align: top; }
  .transport-table tr:last-child td { border-bottom: none; }
  .transport-table tr:nth-child(even) td { background: var(--light); }
  .transport-table .accent-cell { font-weight: 700; color: var(--sky); }

  /* INFO BOX */
  .info-box {
    background: #e8f0fb;
    border-left: 4px solid var(--sky);
    border-radius: 4px;
    padding: 18px 20px;
    margin: 20px 0;
  }
  .info-box p { margin: 0; font-size: 14px; color: var(--blue); }
  .info-box strong { color: var(--navy); }

  .warn-box {
    background: #fff8e8;
    border-left: 4px solid var(--accent);
    border-radius: 4px;
    padding: 18px 20px;
    margin: 20px 0;
  }
  .warn-box p { margin: 0; font-size: 14px; color: #7a5a00; }

  /* SPOT GRID */
  .spot-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
    margin: 24px 0;
  }
  .spot-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(10,22,40,0.06);
  }
  .spot-card-header {
    background: linear-gradient(135deg, var(--blue) 0%, var(--sky) 100%);
    color: white;
    padding: 16px 18px;
  }
  .spot-card-header .cat { font-size: 11px; letter-spacing: 0.1em; opacity: 0.8; font-weight: 700; margin-bottom: 4px; }
  .spot-card-header h4 { font-size: 16px; font-weight: 700; }
  .spot-card-body { padding: 16px 18px; font-size: 13px; color: var(--muted); line-height: 1.75; }
  .spot-card-body strong { color: var(--text); }

  /* CHECKLIST */
  .check-list { list-style: none; padding: 0; margin: 16px 0; }
  .check-list li {
    padding: 10px 0 10px 32px;
    border-bottom: 1px solid var(--border);
    position: relative;
    font-size: 15px;
  }
  .check-list li:last-child { border-bottom: none; }
  .check-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--green);
    font-weight: 900;
    font-size: 16px;
  }

  /* STEP */
  .steps { margin: 24px 0; }
  .step {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    margin-bottom: 20px;
  }
  .step-num {
    background: var(--sky);
    color: white;
    font-size: 14px;
    font-weight: 900;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-family: 'Noto Serif JP', serif;
  }
  .step-body h4 { font-weight: 700; color: var(--navy); margin-bottom: 4px; }
  .step-body p { font-size: 14px; color: var(--muted); margin: 0; }

  /* FINAL CTA */
  .final-cta {
    background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%);
    color: white;
    text-align: center;
    padding: 64px 24px;
  }
  .final-cta h2 {
    color: white;
    border-bottom-color: rgba(255,255,255,0.2);
    font-size: clamp(20px, 3.5vw, 30px);
  }
  .final-cta h2::after { background: var(--accent); }
  .final-cta p { color: rgba(255,255,255,0.8); max-width: 560px; margin: 0 auto 32px; }
  .final-cta .btn-main { font-size: 18px; padding: 18px 48px; }

  /* FOOTER */
  footer {
    background: var(--navy);
    color: rgba(255,255,255,0.5);
    text-align: center;
    padding: 24px;
    font-size: 12px;
    line-height: 1.8;
  }

  /* TOC */
  .toc {
    background: white;
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 24px 28px;
    margin: 32px 0;
  }
  .toc h4 { font-weight: 700; color: var(--navy); margin-bottom: 14px; font-size: 14px; letter-spacing: 0.06em; }
  .toc ol { padding-left: 20px; }
  .toc li { margin-bottom: 8px; }
  .toc a { color: var(--sky); text-decoration: none; font-size: 14px; }
  .toc a:hover { text-decoration: underline; }

  @media (max-width: 600px) {
    .job-detail-row { grid-template-columns: 1fr; }
    .hero-stats { gap: 20px; }
    .hero-stat .num { font-size: 22px; }
  }
</style>










