    :root {
      /* ====== カラー変数（キキララ調） ====== */

      /* 背景（ブロック用） */
      --bg-pink:   #FEF7F6;
      --bg-lilac:  #fcf5fc;

      /* カード背景 */
      --card-bg:       #FFFFFF;
      --card-bg-soft:  #f0f0f0;

      /* 文字色 */
      --text-hero:    #fc7762;
      --text-heading: #eb7967;
      --text-main:    #7F6F2E;
      --text-strong:  #4b3e4d;
      --text-sub:     #8A86A5;
      --text-white:   #fff;

      /* ブランド系ブルー（a, sticky-cta で使用） */
      --brand-blue:       #4a90e2;
      --brand-blue-light: #7ab8ff;

      /* アクセント */
      --accent-blue:  #AFCDFB; /* CTAボタン色 */
      --accent-lilac: #CD7EA0; /* ポイントカード見出し */
      --accent-pink:  #FF9EBB; /* 看護理念・研修など */

      /* ボタン */
      --btn-bg:    #ffebf0;
      --btn-hover: #ffc1ba;
    }

    /* base */
    * { box-sizing: border-box; }
    html, body { margin: 0; padding: 0; }

    body {
      font-family: "Zen Maru Gothic", "Noto Sans JP", sans-serif;
      background: var(--bg-lilac);
      color: var(--text-main);
      font-size: 17px;
      line-height: 1.8;
      padding-bottom: 72px; /* sticky-cta 分の余白 */
    }

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


    section {
      padding: 10px;
      text-align: center;
      width: 100%;
    }

    .container {
      max-width: 1100px;
      margin: 0 auto;
      padding: 0 5px;
    }


    section h3 {
      font-size: 36px;
      font-weight: 700;
      color: var(--text-heading);
      position: relative;
      display: inline-block;
      padding: 0;
      margin-bottom: 25px;
    }

    section h3::after {
      content: "";
      position: absolute;
      left: 50%;
      transform: translateX(-50%);
      bottom: -15px;
      width: 100px;
      height: 3px;
      background: var(--text-hero);
      border-radius: 2px;
    }

    @media (max-width:480px){
      section h3 { font-size: 23px; }
    }

    /* links */
    a {
      /*color: inherit !important;*/         /* 親の色を完全に引き継ぐ */
  text-decoration: none;             /* 下線不要ならそのまま */
    }
    a:hover {
      color: var(--brand-blue-light);
      opacity: .8;
    }

    /* strong 強調文字*/
    strong { color: var(--text-strong); }

    /* ブロックサブタイトル スローガン強調文字*/
    .highlight-slogan {
      font-size: 21px;
      color: var(--text-main);
      font-weight: 700;
      display: inline-block;
      margin-bottom: 15px;
    }


    /* header */
    .header {
      background: var(--card-bg-soft);
      padding: 0;
      position: sticky;
      top: 0;
      z-index: 1000;
      box-shadow: 0 2px 5px rgba(0,0,0,.1);
    }

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

    .logo {
      display: flex;
      align-items: center;
      gap: 12px;
      font-weight: 700;
      color: #222;
      margin: 0;
    }

    .logo a {
      display: flex;
      align-items: center;
      gap: 10px;
      color: inherit;
    }

    .logo img { height: 40px; }

    .logo-text {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      width: max-content;
    }

    .logo-text .main-title {
      font-size: 20px;
      line-height: 1.2;
      display: block;
    }

    .logo-text .sub-title {
      font-size: 13.5px;
      color: #666;
      letter-spacing: .5px;
      line-height: 1.1;
      display: block;
      white-space: nowrap;
    }

    .menu-toggle {
      display: none;
      font-size: 28px;
      background: none;
      border: none;
      cursor: pointer;
    }

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

    .nav li { margin-left: 30px; }

    .nav a {
      color: #555;
      font-weight: 400;
      font-size: 18px;
    }

    .nav a:hover { color: #007bff; }

    @media (max-width:768px){
      .menu-toggle { display: block; 
    margin-left: auto;   /* ★ 右端へ押し込む */
    margin-right: 10px;  /* 好みで調整してOK */}
      .nav ul {
        position: absolute;
        top: 70px;
        right: 20px;
        width: 200px;
        flex-direction: column;
        background: var(--card-bg-soft);
        box-shadow: 0 4px 10px rgba(0,0,0,.1);
        opacity: 0;
        pointer-events: none;
        transition: opacity .3s ease;
      }
      .nav ul.active {
        opacity: 1;
        pointer-events: auto;
      }
      .nav li {
        margin: 0;
        border-bottom: 1px solid #ddd;
      }
      .nav li:last-child { border-bottom: none; }
      .nav a {
        display: block;
        padding: 10px 15px;
      }
    }



    /* hero */
    .hero {
      position: relative;
      overflow: hidden;
    }

    .hero::before {
      content: "";
      position: absolute;
      inset: 0;
      background: url("./photo/img05.jpg") center/cover no-repeat;
      filter: blur(6px) brightness(1.05) saturate(1.25) hue-rotate(15deg);
      transform: scale(1.1);
      z-index: 0;
    }

    .hero-content {
      position: relative;
      z-index: 1;
      display: flex;
      justify-content: center;
padding: 10px 20px;
    }

    .hero-block {
      background: rgba(255, 250, 255, 0.55);
      backdrop-filter: blur(4px);
      display: inline-block;
      padding: 10px 20px;
      border-radius: 18px;
      max-width: 900px;
      width: 100%;
    }

    .hero-text h2 {
      font-size: 60px;
      line-height: 1.2;
      font-weight: 700;
      color: var(--text-hero);
      letter-spacing: 1px;
      text-shadow: 0 2px 5px rgba(255,255,255,.9);
      margin: 0 0 15px;
      display: inline-block;
      padding-bottom: 2px;
      border-bottom: 4px solid;
      border-radius: 2px;
    }

    .hero-text p {
      color: var(--text-strong);
      font-size: 18px;
      line-height: 1.8;
      margin: 0;
    }

    /* ボタン共通 */
    .btn-group {
      width: 100%;
      
      margin: 25px auto 0;
      display: flex;
      flex-direction: column;
      gap: 16px;
      align-items: center;
    }

  @media (min-width: 768px) {
    .btn-group {
      flex-direction: row;   /* ← これが必須！ */
      display: flex;
      gap: 20px;
      justify-content: center;
      max-width: none;       /* ← optional（必要なら） */
    }
  }

/* ボタンはリンクの一般hoverルールを無効化 */
a.btn:hover {
  color: var(--text-strong) !important;
  opacity: 1 !important;
}

    .btn {
      display: block;
      width: 100%;
      padding: 8px 28px;
      border-radius: 25px;
      background: var(--btn-bg);
      border: 0.7px solid var(--text-heading);
      color: var(--text-strong);
      font-size: 25px;
      font-weight: 600;       /* 太さを少し強調 */
      text-align: center;
      white-space: nowrap;
      box-sizing: border-box;
      transition: background-color .3s ease, transform .2s ease;
    }

    .btn:hover {
      background: var(--btn-hover);
      transform: translateY(-3px);
      color: var(--text-strong) !important;
    }





    @media (max-width: 480px) {
      body {
        font-size: 14px;
        line-height: 1.75;
      }

      .hero-text h2 {
        font-size: 34px;
      }

      .btn {
        font-size: 20px;
      }
    }

    /* page-summary（ほぼ見えないSEO用） */
    .page-summary {
      font-size: 2px !important;
      opacity: 0.05 !important;
      color: transparent !important;
      background: none !important;
      padding: 0 !important;
      margin: 0 !important;
      border: none !important;
      height: 1px;
      overflow: hidden;
    }
    .page-summary p { margin: .2rem 0 .6rem; }
    .page-summary ul { margin: 0; padding-left: 1.2em; }

    /* about 理念*/
    .about {
      background: var(--bg-pink);
      padding: 15px;
 
    }

    .about p {
      max-width: 900px;
      margin: 0 auto;
      font-size: 18px;
      
      text-align: left;
      line-height: 1.8;
    }



    .about-images {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
      gap: 20px;
      margin: 15px auto;
      max-width: 900px;
      padding: 5px 0;
    }

    .about-images img {
      border-radius: 10px;
      box-shadow: 0 4px 10px rgba(0,0,0,.1);
      object-fit: cover;
      max-width: 100%;
      margin: 0 auto;
    }

    /* list blocks（理念など） */
    .list-item {
      display: flex;
      align-items: flex-start;
      background: var(--card-bg);
      border-left: 6px solid var(--accent-pink);
      border-radius: 8px;
      padding: 15px;
      margin-bottom: 15px;
      text-align: left;
    }

    .list-item .num {
      background: var(--accent-pink);
      color: var(--text-white);
      font-weight: 700;
      font-size: 18px;
      border-radius: 50%;
      width: 36px;
      height: 36px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      margin-right: 15px;
      aspect-ratio: 1 / 1;
    }



    .nursing-philosophy {
      max-width: 900px;
      margin: 0 auto;
    }

    /* work points */
    .work-points { background: var(--bg-lilac); }

    .points-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 25px;
      justify-content: center;
      max-width: 900px;
      margin: 0 auto;
    }

    .point-card {
      background: var(--card-bg);
      border-radius: 12px;
      padding: 5px 15px 15px;
      margin-top: 5px;
      text-align: left;
      box-shadow: 0 5px 15px rgba(0,0,0,.08);
      transition: transform .3s ease, box-shadow .3s ease;
    }

    .point-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 10px 20px rgba(0,0,0,.12);
    }

    .point-card h4 {
      display: flex;
      align-items: center;
      justify-content: flex-start;
      gap: 8px;
      color: var(--accent-lilac);
      font-size: 20px;
      margin: 12px 0;
    }

    .point-card h4 img {
      width: 24px;
      height: auto;
      vertical-align: middle;
      display: inline-block;
    }

    .point-card > p,
    .point-card > span,
    .point-card > div:not(.highlight) {
      font-size: 14px;
      line-height: 1.7;
      color: var(--text-main);
      margin-bottom: 12px;
    }

    .point-card ul {
      list-style: none;
      margin: 0;
      padding: 0;
    }

    .point-card li {
      position: relative;
      padding-left: 20px;
      margin-bottom: 8px;
      color: var(--text-main);
      font-size: 15px;
      line-height: 1.6;
    }

    .point-card li::before {
      content: "✔";
      position: absolute;
      left: 0;
      color: var(--text-hero);
      font-weight: bold;
    }

    .point-card.highlight {
      border: 2px solid #ffb300;
      box-shadow: 0 6px 18px rgba(255,179,0,.25);
      position: relative;
      background: linear-gradient(180deg, #fffdf5 0%, #fff 100%);
    }

    .point-card.highlight::before {
      content: "注目ポイント";
      position: absolute;
      top: -12px;
      left: 16px;
      background: #ffb300;
      color: #fff;
      font-size: 13px;
      font-weight: 700;
      padding: 2px 12px;
      border-radius: 15px;
      letter-spacing: .5px;
    }

    .point-card.highlight h4 {
      color: var(--accent-lilac);
      position: relative;
    }

    .point-card.highlight h4::after {
      content: "";
      position: absolute;
      left: 0;
      bottom: 2px;
      width: 100%;
      height: 6px;
      background: linear-gradient(90deg, rgba(255,200,0,.35), rgba(255,255,0,0));
      border-radius: 3px;
      z-index: -1;
    }

    /* training program 研修プログラム*/
    .training-program {
      background: var(--bg-lilac);
      
    }

    .training-grid {
      display: flex;
      justify-content: center;
      gap: 30px;
      flex-wrap: nowrap;
      overflow-x: auto;
    }

    .training-column {
      display: flex;
      flex-direction: column;
      gap: 15px;
    }

    .month-item {
      display: flex;
      align-items: stretch;
      border-radius: 10px;
      overflow: hidden;
    }

    .month {
      background: var(--accent-pink);
      color: var(--text-white);
      font-weight: 700;
      width: 80px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-top-left-radius: 10px;
      border-bottom-left-radius: 10px;
      font-size: 18px;
      margin-right: 4px;
    }

    .month-group {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      background: var(--accent-pink);
      color: var(--text-white);
      font-weight: 700;
      width: 80px;
      border-top-left-radius: 10px;
      border-bottom-left-radius: 10px;
      margin-right: 4px;
      padding: 4px 0;
    }

    .month-group .month {
      width: 40px;
      height: 38px;
      display: flex;
      align-items: center;
      justify-content: center;
      
      margin: 3px 0;
      border: none;
    }

    .detail {
      flex: 1;
      background: var(--card-bg);
      border: 1px dashed #b6490d;
      border-left: none;
      border-top-right-radius: 10px;
      border-bottom-right-radius: 10px;
      padding: 12px 15px;
      
      color: var(--text-main);
      width: 300px;
      text-align: left;
    }

    @media (max-width:768px){
      .training-grid {
        flex-direction: column;
        align-items: center;
        gap: 20px;
      }
      .training-column {
        width: 100%;
        max-width: 500px;
      }
      .month-item {
        justify-content: center;
      }
    }

/* 中途採用看護師オリエンテーション */
.orient ul {
  margin: 0 auto;      /* UL を左右中央に配置 */
  text-align: left;    /* 文字は左揃え */
  max-width: 500px;    /* 必要なら幅を制限（任意） */
  padding-left: 1.2em; /* 箇条書きの余白（任意） */  
      color: var(--text-main);
}

    /* senpai message 先輩からのメッセージ*/
    .senpai-message {
      background: var(--bg-pink);
      
    }

    .senpai-block {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 20px;
      margin-bottom: 40px;
      max-width: 900px;
      margin: 0 auto 40px;
      width: 100%;
    }

    .senpai-block.reverse { flex-direction: row-reverse; }

    .senpai-text {
      flex: 1 1 60%;
      background: var(--card-bg);
      padding: 20px;
      border-radius: 12px;
      text-align: left;
    }

    .senpai-photo {
      flex: 1 1 35%;
      
    }

    .senpai-photo img {
      width: 100%;
      object-fit: cover;
      -webkit-mask-image: radial-gradient(
        ellipse at center,
        rgba(0,0,0,1) 55%,
        rgba(0,0,0,.6) 70%,
        rgba(0,0,0,.2) 85%,
        rgba(0,0,0,0) 100%
      );
      mask-image: radial-gradient(
        ellipse at center,
        rgba(0,0,0,1) 55%,
        rgba(0,0,0,.6) 70%,
        rgba(0,0,0,.2) 85%,
        rgba(0,0,0,0) 100%
      );
      -webkit-mask-repeat: no-repeat;
      mask-repeat: no-repeat;
      filter: brightness(1.1) contrast(.95);
      transition: transform .4s ease, filter .4s ease;
    }

    .senpai-photo img:hover {
      transform: scale(1.05);
      filter: brightness(1.15) contrast(1);
    }

    @media (max-width:800px){
      .senpai-block,
      .senpai-block.reverse {
        flex-direction: column;
        gap: 20px;
      }
      .senpai-photo img { max-width: 200px; margin: 0 auto; }
    }

    /* ryou（職員寮） */
    .ryou {
      background: var(--bg-pink);
      
    }

    .ryou-text {
      flex: 1 1 60%;
      /*background: var(--card-bg);*/
      
      /*border-radius: 12px;*/
       max-width: 900px;   /* ← 幅900pxにする */
  width: 100%;        /* スマホ時は崩れない */
  margin: 0 auto;     /* ← 真ん中に配置される */
      text-align: left;

    }

    @media (max-width:768px){
      .ryou-block,
      .ryou-block.reverse {
        flex-direction: column;
        gap: 20px;
      }

    }

    /* contact（お問合せ） */
    .contact {
      background: var(--bg-pink);
    }

    .contact-flex {
      max-width: 800px;
      margin: 0 auto;
    }

    .contact-info {
      text-align: left;
    }

    .contact-info p { margin: 0 0 10px; }

    .contact-info a {
      color: inherit !important;         /* 親の色を完全に引き継ぐ */
      text-decoration: none;             /* 下線不要ならそのまま */
    }

    .furigana {
      font-size: .9em;
      white-space: nowrap;
      margin-left: 4px;
      vertical-align: middle;
    }

    .sns-link {
      margin-top: 10px;
      text-align: left;
    }

    .sns-link a {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      color: #e4405f;
      font-weight: 600;
      font-size: 15.5px;
    }

    .sns-icon {
      width: 22px;
      height: 22px;
      vertical-align: middle;
    }

    .contact-info iframe {
      width: 100%;
      height: auto;
      aspect-ratio: 16 / 9;
      border: 0;
      border: none;
      outline: none;
    }

@media (min-width: 768px) {
  .contact-flex {
    display: flex;
    align-items: stretch; /* ★高さを揃えてくれる */
    gap: 15px;
  }

  .contact-info {
    width: 50%;
  }

  .contact-map {
    width: 55%;
  }

  .contact-info,
  .contact-map {
    display: flex;
    flex-direction: column; /* 高さ揃えのために必要 */
  }

  .contact-map iframe {
flex-grow: 1;           /* ★残り高さをすべて埋める */
    width: 80%;
    height: 350px;
    border: none;
    outline: none;
  }
}



    /* contact form */
    .contact-form {
      background: var(--bg-lilac);
      
    }

    .contact-form .container {
      max-width: 900px;
      background: var(--card-bg);
      padding: 0 10px 10px 10px;
      border-radius: 12px;
      box-shadow: 0 5px 15px rgba(0,0,0,.1);
    }

    .contact-form p {
      color: var(--text-main);
      margin: 15px;
      text-align: left;
    }

    .contact-form form {
      display: flex;
      flex-direction: column;
      text-align: left;
    }

    .contact-form label {
      margin-bottom: 3px;
      font-weight: 600;
    }

    .contact-form input,
    .contact-form textarea {
      margin-bottom: 20px;
      padding: 12px;
      border: 1px solid #ccc;
      border-radius: 6px;
      font-size: 16px;
      width: 100%;
    }

    /* 求人エントリー h3 を関連施設と統一イメージで中央揃え */
    #form h3 {
      font-size: 28px;
      color: var(--text-hero);
      margin-bottom: 25px;
      position: relative;
      display: inline-block;
    }

    #form h3::after {
      content: "";
      position: absolute;
      left: 50%;
      transform: translateX(-50%);
      bottom: -10px;
      width: 100px;
      height: 3px;
      background: var(--text-heading);
      border-radius: 2px;
    }

button,
input[type="submit"],
input[type="button"] {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-weight: 600;  /* 太字がほしいなら */
}


    /* faq */
    #faq {
      text-align: center;
      margin: 0 auto;
      padding: 20px 0;
      background: var(--bg-lilac);
    }

    #faq h3 {
      text-align: center;
      color: var(--text-hero);
      font-weight: 700;
      margin-bottom: 1rem;
    }

    #faq dl {
      text-align: left;
      margin: 0;
      padding: 10px;
      display: block;
      font-size: 1.05rem;
      max-width: 800px;
      margin-inline: auto;
    }

    #faq dt {
      font-weight: 700;
      color: var(--text-strong);
      margin-top: 1.2em;
    }

    #faq dd {
      margin: .2em 0 1em 0;
      color: var(--text-main);
      line-height: 1.6;
    }

    /* flow */
    #flow {
      background: var(--bg-lilac);
      padding: 20px 0 30px;
    }

    .flow-steps {
      display: flex;
      flex-wrap: nowrap;
      align-items: center;
      justify-content: center;
      gap: 1rem;
      padding: 5px 0;
      overflow-x: auto;
    }

    .step {
      background: var(--card-bg);
      border: 2px solid #cde8ef;
      border-radius: 10px;
      box-shadow: 0 4px 10px rgba(0,0,0,.05);
      padding: 1rem 1rem;
      width: 220px;
      text-align: center;
      transition: transform .2s ease;
    }

    .step:hover { transform: translateY(-3px); }

    .icon {
      font-size: 2rem;
      margin-bottom: .5rem;
    }

    .arrow {
      font-size: 1.8rem;
      color: var(--brand-blue);
      font-weight: 700;
    }

    #flow p {
      font-size: .95rem;
      color: var(--text-main);
      margin: 0;
      line-height: 1.4;
    }

    @media (max-width:768px){
      .flow-steps {
        flex-direction: column;
      }
      .arrow {
        transform: rotate(90deg);
        margin: .5rem 0;
      }
    }

    /* footer */
    .footer {
      background: var(--card-bg-soft);
      text-align: center;
      padding: 15px 0;
      color: #555;
      font-size: 14px;
      border-top: 1px solid #ddd;
    }

    /* sticky cta (mobile only) */
    .sticky-cta {
      position: fixed;
      left: 0;
      right: 0;
      bottom: 0;
      z-index: 9999;
      background: transparent;
      display: flex;
      gap: .5rem;
      align-items: center;
      justify-content: space-between;
      padding: .6rem .8rem;
    }

    .sticky-cta a {
      display: block;
      text-align: center;
      font-weight: 700;
      border-radius: .75rem;
      padding: .6rem .8rem;
    }

    .sticky-cta .cta-call,
    .sticky-cta .cta-entry {
      flex: 1;
      background: var(--accent-blue);
      color: var(--text-strong);
    }

    @media (min-width:992px){
      .sticky-cta { display: none; }
    }

