/* ==============================================================
   ベース設定
   ============================================================== */
body {
  font-family: 'Noto Sans JP', sans-serif;
  /* 全ページ共通フォント */
  margin: 0;
  padding: 0;
  background-color: #f9fff9;
  /* ページ背景(淡い緑)  */
  color: #333;
  /* 既定テキスト色      */
}

.container {
  /* 各セクションの横幅制御 */
  max-width: 1100px;
  margin: 0 auto;
  padding: 32px 24px;
}

/* ==============================================================
     汎用ボタン
     ============================================================== */
.button {
  display: inline-block;
  background: #2e7d32;
  color: #fff;
  padding: .6em 1.6em;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: background .3s, box-shadow .3s;
}

.button:hover {
  background: #60a060;
  box-shadow: 0 4px 8px rgba(0, 0, 0, .2);
}

/* ==============================================================
     ヘッダー
     ============================================================== */
#header {
  position: relative;
  width: 100%;
  background-color: #b2d8b2;
  /* 薄緑ヘッダー背景     */
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  z-index: 1000;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  column-gap: 60px;
}

header .logo {
  font-size: 29px;
  font-weight: bold;
  color: #2f4f2f;
}

/* ==============================================================
     横並びナビゲーション
     ============================================================== */
.main-nav ul {
  gap: 24px;
}

/* li 間余白 */
.main-nav ul li+li {
  position: relative;
}

.main-nav ul li+li::before {
  /* 縦区切りバー */
  content: "";
  position: absolute;
  left: -12px;
  top: 0;
  width: 1px;
  height: 100%;
  background: #555;
  opacity: .5;
}

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

nav ul li a {
  color: #2f4f2f;
  text-decoration: none;
  font-weight: 500;
}

nav ul li a:hover {
  text-decoration: underline;
}

/* ==============================================================
     ハンバーガー
     ============================================================== */
.hamburger {
  width: 32px;
  height: 24px;
  position: relative;
  margin-left: auto;
  background: transparent;
  border: none;
  cursor: pointer;
  display: none;
  z-index: 1100;
}

.hamburger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 3px;
  background: #2f4f2f;
  transition: transform .3s, opacity .3s, top .3s;
}

.hamburger span:nth-child(1) {
  top: 0;
}

.hamburger span:nth-child(2) {
  top: 10px;
}

.hamburger span:nth-child(3) {
  top: 20px;
}

/* × アイコン時 */
.hamburger.active span:nth-child(1) {
  top: 10px;
  transform: rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  top: 10px;
  transform: rotate(-45deg);
}

.visually-hidden {
  /* アクセシビリティ用 h1 */
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  clip: rect(0 0 0 0);
  overflow: hidden;
}

/* ==============================================================
   Swiper メインビジュアル
   ============================================================== */
.swiper-container {
  width: 100%;
  margin-bottom: 0;
  position: relative;
  height: calc(100dvh - 80px);
}

.swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.swiper-pagination-bullet {
  background: #a8d5a2;
  opacity: .5;
}

.swiper-pagination-bullet-active {
  background: #2e7d32;
}

/* ==============================================================
   検索サークル
   ============================================================== */
.search-circle {
  position: absolute;
  top: 65%;
  right: 5%;
  transform: translateY(-50%);
  width: 45vmin;
  height: 45vmin;
  max-width: 380px;
  max-height: 380px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .9);
  box-shadow: 0 4px 12px rgba(0, 0, 0, .2);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  padding: 2.5rem;
  text-align: center;
  z-index: 60;
}

/* 円周のグラデーションリング */
.search-circle::before {
  content: "";
  pointer-events: none;
  position: absolute;
  inset: 0;
  border-radius: 50%;
  padding: 8px;
  background: conic-gradient(#27e0623f 180deg, #f48c24a2 360deg);
  -webkit-mask: radial-gradient(closest-side, transparent 93%, #000 94%);
  mask: radial-gradient(closest-side, transparent 93%, #000 94%);
}

.search-circle h3 {
  margin: 0;
  font-size: 22px;
  font-weight: bold;
  color: #333;
}

/* --- インプット＋ボタン行（PC 横並び） ------------------------- */
.search-row {
  width: 100%;
  max-width: 440px;
  display: flex;
  gap: .6rem;
  flex-wrap: wrap;
}

.search-row input,
.search-row select {
  flex: 1 1 0;
  min-width: 140px;
  padding: .55em .9em;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: .9rem;
  box-sizing: border-box;
}

.search-row button {
  flex: 0 0 96px;
  height: 36px;
  line-height: 36px;
  margin-left: auto;
  background: #2e7d32;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: .9rem;
  cursor: pointer;
}

.search-row button:hover {
  background: #60a060;
}

/* ==============================================================
   NEWS セクション
   ============================================================== */
.news-section {
  padding: 3rem 1rem;
  max-width: 1100px;
  margin: auto;
}

.news-section h2 {
  margin: 0 0 2rem;
  font-size: 32px;
  color: #2e7d32;
}

.news-list {
  list-style: none;
  margin-bottom: 30px;
  padding: 0;
  border-top: 1px solid #d0d0d0;
}

.news-list li {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 1.2rem 0;
  border-bottom: 1px solid #d0d0d0;
}

.news-list time {
  min-width: 110px;
  color: #666;
  font-weight: 600;
}

.news-tag {
  background: #555;
  color: #fff;
  border-radius: 9999px;
  padding: .2rem 1rem;
  font-size: 12px;
}

.news-title {
  color: #2e7d32;
}

.news-list a {
  text-decoration: none;
}

.news-list a:hover .news-title {
  text-decoration: underline;
}

.news-btn {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
  border: 1px solid #bbb;
  border-radius: 50px;
  padding: .9rem 2rem;
  font-weight: 600;
  color: #333;
  text-decoration: none;
}

.circle-arrow {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #52e110d7;
  color: #fff;
  font-size: 1.1rem;
}

.news-btn:hover {
  background: #f7f7f7;
}

/* ==============================================================
   お問い合わせフォーム
   ============================================================== */
.contact-section {
  background: #f0f8f0;
  padding: 48px 16px;
}

.contact-section h2 {
  margin: 0 0 32px;
  font-size: 28px;
  color: #2e7d32;
  display: flex;
  align-items: center;
  gap: 8px;
}

.contact-form {
  max-width: 640px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-row label {
  font-weight: 600;
  color: #2f4f2f;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #ccc;
  border-radius: 12px;
  font-size: 15px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, .08) inset;
  box-sizing: border-box;
}

.contact-form textarea {
  resize: vertical;
}

.contact-btn {
  align-self: flex-start;
  background: #2e7d32;
  color: #fff;
  border: none;
  padding: 12px 28px;
  border-radius: 25px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: .3s, box-shadow .3s;
}

.contact-btn:hover {
  background: #60a060;
  box-shadow: 0 4px 8px rgba(0, 0, 0, .18);
}

/* ==============================================================
      共通要素 - 見出し / サービス紹介カラム
      ============================================================== */
h2 {
  color: #2e7d32;
  border-left: 5px solid #81c784;
  padding-left: .5em;
  margin-bottom: .5em;
}

.columns {
  display: flex;
  flex-wrap: wrap;
  gap: 1em;
  margin-top: 1em;
}

/* ---直下のdiv全て------------------------------- */
.columns>div {
  flex: 1;
  min-width: 200px;
  background: #e8f5e9;
  padding: 1em;
  border-radius: 8px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, .1);
  text-align: center;
}

ul {
  padding-left: 1em;
}

/* ==============================================================
      フッター
      ============================================================== */
.site-footer {
  background: #e8f5e9;
  padding: 48px 0 24px;
  font-size: 14px;
  color: #2f4f2f;
  position: relative;
}

.footer-inner {
  display: flex;
  gap: 48px;
}

.site-footer small {
  display: block;
  width: 100%;
  text-align: center;
  margin-top: 40px;
  font-size: 13px;
  color: #2f4f2f;
}

.footer-nav {
  display: flex;
  flex: 1;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 32px;
}

.footer-col h4 {
  margin: 0 0 6px;
  font-size: 16px;
}

.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-col li {
  margin-bottom: 4px;
}

.footer-col a {
  color: #2f4f2f;
  text-decoration: none;
  font-size: 14px;
}

.footer-col a:hover {
  text-decoration: underline;
}

.footer-logo {
  font-size: 32px;
  margin-right: 5px;
}

.footer-brand a {
  font-size: 20px;
  font-weight: 600;
  text-decoration: none;
  color: #2f4f2f;
}

.footer-brand address {
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  margin: 12px 0 15px;
  font-style: normal;
}

.footer-brand .sns a {
  color: #2f4f2f;
  font-size: 20px;
  margin-right: 10px;
}

.footer-brand .sns a:hover {
  color: #60a060;
}

/* ==============================================================
   shops.index
   ============================================================== */

.shop-card {
  margin-bottom: 64px;
}

.shop-card h3 {
  margin: 0 0 16px;
  font-size: 1.5rem;
  color: #2e7d32;
}

.shop-flex {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.shop-photo {
  flex: 1 1 320px;
}

.shop-photo img {
  width: 100%;
  height: 100%;
  border-radius: 8px;
}

.shop-info {
  flex: 1 1 320px;
  min-width: 260px;
}

.shop-map iframe {
  width: 100%;
  height: 260px;
  border: 0;
  border-radius: 8px;
  margin-top: 12px;
}

/* ==============================================================
   採用情報ページ専用
   ============================================================== */

.recruit-hero {
  position: relative;
  overflow: hidden;
  line-height: 0;
}

.recruit-hero img {
  width: 100%;
  height: calc(100dvh - 80px);
  vertical-align: middle;
  object-fit: cover;
}

.recruit-hero .hero-copy {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  text-align: center;
  padding: 6%;
  color: #fff;
  text-shadow: 0 2px 6px rgba(0, 0, 0, .4);
  z-index: 5;
}

.recruit-hero h2 {
  border: none;
  font-size: 35px;
  margin-bottom: 1rem;
  line-height: 1.35;
}

.recruit-hero p {
  max-width: 760px;
  line-height: 1.7;
  font-size: 16px;
  margin: 0;
}

/* ---------- 募集職種 ------------------------------------- */
.recruit-jobs {
  padding-top: 64px;
}

.job-card {
  border: 1px solid #c8e6c9;
  border-radius: 12px;
  padding: 32px;
  margin-bottom: 40px;
  background: #fbfffb;
  box-shadow: 0 2px 6px rgba(0, 0, 0, .08);
}

.job-card h3 {
  margin-top: 0;
  margin-bottom: 16px;
  font-size: 26px;
  color: #2e7d32;
}

.job-card ul {
  margin: 0 0 24px 1.2em;
  padding: 0;
  list-style: disc;
  line-height: 1.8;
}

.job-card .button {
  font-size: .95rem;
}

/* ---------- 福利厚生 ------------------------------------- */
.recruit-benefits {
  padding-top: 32px;
}

.benefit-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.benefit-list li {
  background: #e8f5e9;
  border-radius: 10px;
  padding: 20px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, .06);
}

.benefit-list i {
  font-size: 1.4rem;
  color: #2e7d32;
}

/* ---------- 選考フロー ----------------------------------- */
.recruit-flow {
  padding-top: 32px;
}

.recruit-flow ol {
  counter-reset: step;
  margin-left: 0;
  padding-left: 0;
  list-style: none;
}

.recruit-flow li {
  position: relative;
  padding-left: 60px;
  margin-bottom: 24px;
  font-size: 17px;
}

.recruit-flow li::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 0;
  top: 0;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  border-radius: 50%;
  background: #2e7d32;
  color: #fff;
  font-weight: 700;
}

/* ---------- エントリーフォーム --------------------------- */
.recruit-entry {
  padding-top: 32px;
}

.recruit-entry .contact-form {
  max-width: 680px;
}

.recruit-entry .contact-btn {
  margin-top: 4px;
}





/* ==============================================================
      スマホ向けレイアウト 
      ============================================================== */
@media (max-width:768px) {

  /* ---ハンバーガーメニュー ------------------------------- */
  .hamburger {
    position: fixed;
    top: 18px;
    right: 24px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 32px;
    height: 24px;
    background: none;
    border: none;
    z-index: 1100;
  }

  .main-nav {
    position: fixed;
    top: 0;
    right: 0;
    width: 70%;
    max-width: 260px;
    height: 100vh;
    background: #b2d8b2;
    transform: translateX(100%);
    transition: transform .3s;
    z-index: 999;
    box-shadow: -4px 0 8px rgba(0, 0, 0, .2);
  }

  .main-nav.open {
    transform: translateX(0);
  }

  .main-nav ul {
    flex-direction: column;
    gap: 1.2em;
    margin-top: 80px;
    text-align: center;
  }

  .main-nav ul li {
    width: 100%;
  }

  .main-nav ul li a {
    display: block;
    padding: .5em 0;
  }

  .header-inner {
    display: flex;
    align-items: center;
    padding: 12px 16px;
  }

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

  .swiper-container {
    height: 200px;
    margin-bottom: 24px;
  }

  .columns {
    flex-direction: column;
  }

  .container {
    padding: 32px 16px;
  }

  .news-section h2 {
    font-size: 1.6rem;
  }

  .search-circle {
    position: static;
    transform: none;
    margin: 32px auto 40px;
    width: 90%;
    max-width: 480px;
    border-radius: 24px;
  }

  .search-circle::before {
    display: none;
  }

  .search-row input,
  .search-row select {
    min-width: 0;
    width: 100%;
  }

  .search-row button {
    width: 100%;
    margin-left: 0;
  }

  .footer-inner {
    flex-direction: column;
    gap: 32px;
    text-align: center;
  }

  .footer-nav {
    flex-direction: column;
    gap: 24px;
  }

  .footer-col {
    margin-bottom: 12px;
  }

  .footer-col h4 {
    font-size: 20px;
  }

  /* ------------shops.html--------------------------- */

  .store-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .store-card {
    flex-direction: column;
  }

  .store-card img {
    width: 100%;
    height: auto;
  }

  .map-wrapper iframe {
    width: 100%;
    height: 260px;
  }

  .container {
    padding: 24px 16px;
  }

  /* ------------recruit.html--------------------------- */

  .recruit-hero img {
    height: 320px;
  }

  .recruit-hero .hero-copy {
    justify-content: flex-end;
    align-items: flex-start;
    text-align: left;
    padding: 0 4% 5%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.45) 80%)
  }

  .recruit-hero h2 {
    font-size: 32px;
    line-height: 1.35;
    color: #3eff48cf;
  }

  .recruit-hero p {
    font-size: 16px;
    max-width: 640px;
  }

  /* ---------- news.html ---------- */

  .news-section h2 {
    font-size: 26px;
    margin-bottom: 1.2rem;
  }


  .news-list li {
    flex-direction: column;
    align-items: flex-start;
    gap: .6rem;
    padding: 1.0rem 0;
  }

  .news-list time {
    min-width: auto;
    font-size: .9rem;
  }

  .news-tag {
    font-size: 11px;
    padding: .15rem .8rem;
  }

  .news-title {
    font-size: 16px;
    line-height: 1.6;
  }

  .news-btn {
    width: 100%;
    justify-content: center;
  }

  /* ---------- privacy.html---------- */
  .privacy-section,
  .privacy-container {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .privacy-section h2,
  .privacy-section h3 {
    font-size: 20px;
    margin-top: 2rem;
    margin-bottom: .8rem;
  }

  .privacy-section ul,
  .privacy-section ol {
    padding-left: 1.1em;
  }
}