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

body {
  font-family: "Hiragino Kaku Gothic ProN", "Noto Sans JP", sans-serif;
  color: #333;
  line-height: 1.8;
  background-color: #ffffff;
}

.container {
  width: 90%;
  max-width: 960px;
  margin: 0 auto;
}

/* ヘッダー */
.header {
  background-color: #7FAEC6;
  color: #fff;
  padding: 24px 0;
  text-align: center;
}

.header h1 {
  font-size: 1.8rem;
}

.company {
  font-size: 0.9rem;
}

/* パララックス */
.parallax {
  background-image: url("../images/hero05.webp");
  min-height: 60vh;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}

.parallax-overlay {
  background: rgba(255, 255, 255, 0.2);
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
}

.parallax-overlay h2 {
  font-size: 2.6rem;
  color: #fff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

/* セクション共通 */
.intro,
.service,
.info {
  padding: 40px 0;
}

h3 {
  font-size: 1.4rem;
  margin-bottom: 16px;
  color: #7FAEC6;
}

.service ul {
  list-style: disc;
  padding-left: 20px;
}

.service li {
  margin-bottom: 8px;
}

/* Google Map */
.map {
  width: 100%;
  aspect-ratio: 16 / 9;
}

.map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* フッター */
.footer {
  background-color: #7FAEC6;
  color: #fff;
  text-align: center;
  padding: 16px 0;
  font-size: 0.8rem;
}

/* スマホ対応 */
@media (max-width: 768px) {
  .parallax {
    background-attachment: scroll; /* iOS対策 */
  }

  .parallax-overlay h2 {
    font-size: 1.8rem;
  }

  .header h1 {
    font-size: 1.4rem;
  }
}

/* 求人募集 */
.recruit {
        background-color: #F4F9FB;
        padding: 56px 0;
      }
      
      .recruit-inner {
        display: flex;
        gap: 32px;
        align-items: flex-start;
      }
      
      /* 画像 */
      .recruit-image {
        flex: 1;
      }
      
      .recruit-image img {
        width: 100%;
        height: auto;
        border-radius: 12px;
        box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
      }
      
      /* テキスト側 */
      .recruit-content {
        flex: 1;
      }
      
      .recruit-message {
        margin-bottom: 24px;
        font-size: 1rem;
      }
      
      .recruit-box {
        background-color: #ffffff;
        border-radius: 8px;
        padding: 24px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
      }
      
      .recruit-box h4 {
        margin-top: 16px;
        margin-bottom: 4px;
        color: #7FAEC6;
        font-size: 1.05rem;
      }
      
      .recruit-box p {
        margin-bottom: 8px;
      }
      
      .recruit-contact {
        margin-top: 16px;
        font-weight: bold;
      }
      
      /* スマホ対応 */
      @media (max-width: 768px) {
        .recruit-inner {
          flex-direction: column;
        }
      
        .recruit-image {
          margin-bottom: 24px;
        }
      }
      /* 求人：歓迎する人物像 */
.recruit-welcome {
        margin-top: 8px;
        margin-bottom: 16px;
        padding-left: 20px;
        list-style: disc;
      }
      
      .recruit-welcome li {
        margin-bottom: 6px;
        line-height: 1.6;
      }
      /* 強調見出し（未経験・ブランクOK） */
.recruit-highlight {
        color: #4A90B8;
        font-size: 1.2rem;
        margin-bottom: 8px;
        position: relative;
        padding-left: 28px;
      }
      
      .recruit-highlight::before {
        content: "★";
        position: absolute;
        left: 0;
        top: 0;
        color: #F5A623;
      }
      
      /* 補足説明 */
      .recruit-note {
        margin-bottom: 20px;
        font-size: 0.95rem;
        color: #555;
      }
      
      /* 歓迎リスト（アイコン付き） */
      .recruit-welcome {
        list-style: none;
        padding-left: 0;
        margin-bottom: 16px;
      }
      
      .recruit-welcome li {
        position: relative;
        padding-left: 28px;
        margin-bottom: 10px;
        line-height: 1.6;
      }
      
      /* チェックアイコン（CSSのみ） */
      .recruit-welcome li::before {
        content: "✓";
        position: absolute;
        left: 0;
        top: 0;
        color: #7FAEC6;
        font-weight: bold;
      }
      
      /* 特に強調したい項目 */
      .recruit-welcome li.emphasis {
        font-weight: bold;
        color: #333;
      }
      
      .recruit-welcome li.emphasis::before {
        content: "◎";
        color: #4A90B8;
      }
      