html {
    /* font-family: 'Oswald', sans-serif; */
    font-family: 'Noto Sans JP', sans-serif;
}


.pop { font-family: 'Poppins', sans-serif;}

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

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

/* ヘッダー */
header {
    padding: 27px 0;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: -0.04em;
}
header .logo .with { 
    color: #80BA4A;
}

header .logo .fun {
  color: darkorange;
}

.header_menu li {
    margin-left: 40px;
}
.header_menu li a {
    transition: .3s;
}
.header_menu li a:hover {
    color: darkorange;
    transition: .3s;
}


/* Hero */
.hero h1 {
  font-size: 2.2rem;
  margin-bottom: 15px;
  font-weight: 700;
  color: #ff7f32; /* 明るめのオレンジ */
}

.hero p {
  font-size: 1.2rem;
  color: #80BA4A; /* 爽やかなグリーン */
}


/* 募集要項 */
.recruit_info .title {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #80BA4A;
  border-left: 8px solid #ff7f32;
  padding-left: 10px;
}
.job_card {
  background: #f9f9f9;
  border: 2px solid #80BA4A;
  border-radius: 12px;
  padding: 20px;
}
.job_card h3 {
  color: #ff7f32;
  margin-bottom: 10px;
}

/* エントリーフォーム */
.entry_form .title {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #ff7f32;
  border-left: 8px solid #80BA4A;
  padding-left: 10px;
}
form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
form input, form textarea {
  border: 2px solid #ccc;
  border-radius: 8px;
  padding: 10px;
  font-size: 1rem;
}
form button {
  background: linear-gradient(90deg, #80BA4A, #ff7f32);
  color: #fff;
  padding: 12px;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  font-size: 1.1rem;
  transition: 0.3s;
}
form button:hover {
  opacity: 0.9;
}

/* フッター */
footer {
  background: #80BA4A;
  color: #fff;
  text-align: center;
  padding: 15px;
  margin-top: 40px;
}

/* 背景アニメーション */
#bg-animation {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: #000;
}
