:root{
  /* ロゴの雰囲気（暖色×やさしい色）に寄せつつ、全体は落ち着いたトーン */
  --bg: #ffffff;
  --panel: #ffffff;
  --ink: #2b2a28;
  --muted: #6b6761;
  --line: #e9e4dc;

  --primary: #f6ff00;   /* やさしいオレンジ */
  --primary2:#ffee00;   /* しめ色 */
  --accent: #5aa6c8;    /* 青系アクセント（控えめ） */
  --mint:   #6fbf8f;    /* グリーン（控えめ） */

  --radius: 18px;
  --shadow: 0 10px 30px rgba(32, 24, 16, .08);
}

*{ box-sizing:border-box; }
html,body{ height:100%; }
body{
  margin:0;
  font-family: "Noto Sans JP", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Meiryo", sans-serif;
  color:var(--ink);
  background: radial-gradient(1200px 600px at 20% 0%, #fff 0%, var(--bg) 60%) fixed;
}

a{ color:inherit; text-decoration:none; }
a:hover{ text-decoration:underline; }

.container{
  width:min(1100px, calc(100% - 20px));
  margin-inline:auto;
}

.site-header{
  position:sticky;
  top:0;
  z-index:10;
  background: rgba(251,250,247,.82);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding:14px 0;
}
.brand{
  display:flex;
  align-items:center;
  gap:12px;
}
.brand-logo{
  width:64px;
  height:64px;
  object-fit:contain;
  border-radius:14px;
  background:#fff;
  border:1px solid var(--line);
  box-shadow: 0 8px 18px rgba(32,24,16,.06);
}
.brand-text{ line-height:1.05; }
.brand-kicker{
  margin:0;
  font-size:12px;
  color:var(--muted);
  letter-spacing:.08em;
}
.brand-name{
  margin:4px 0 0 0;
  font-weight:800;
  font-size:16px;
}

.nav{
  display:flex;
  gap:14px;
  font-size:14px;
  color:var(--muted);
}
.nav a{
  padding:10px 10px;
  border-radius:999px;
}
.nav a:hover{
  text-decoration:none;
  background:#ffffff;
  border:1px solid var(--line);
}

.hero{
  padding:0 0 10px;

}
.hero-inner{
  display:grid;
  grid-template-columns: 1.25fr .85fr;
  gap:22px;
  align-items:center;
}

.heros {
    background: url(../img/takuzi2main.jpg);
    background-size: cover;
    background-position: center;
    padding:10px 20px 10px;
}
.hero h1{

  margin:0 0 10px 0;
  font-size: clamp(20px, 3vw, 34px);
  letter-spacing: .02em;
}
.lead{
  margin:170px 0 16px 0;
  color:#fff;
  line-height:1;
  background: #ffcc0097;
  padding: 5px;
  border-radius: 6px;
  text-shadow: .2px .2px 3px #000;
}

.hero-badges{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin: 14px 0 18px;
}
.badge{
  font-size:12px;
  color: #3a3732;
  background: #fff;
  border:1px solid var(--line);
  padding:8px 12px;
  border-radius:999px;
}

.cta{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin: 10px auto;
  text-align: center;
  align-items: center;
  justify-content: center;
}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:12px 16px;
  border-radius: 12px;
  border:1px solid transparent;
  font-weight:700;
  font-size:14px;
  text-decoration:none !important;
}
.btn.primary{
  background: linear-gradient(180deg, var(--primary) 0%, var(--primary2) 100%);
  color:#373737;
  box-shadow: 0 14px 24px rgba(121, 127, 10, 0.18);
}
.btn.primary:hover{ filter:brightness(1.03); }
.btn.ghost{
  background:#fff;
  border:1px solid var(--line);
  color:var(--ink);
}
.btn.ghost:hover{ border-color:#d9d2c7; }

.note{
  margin: 10px 0 0;
  font-size:12px;
  color:var(--muted);
}

.hero-card{
  background: linear-gradient(180deg, #fff7abba 0%, #fffaf6 100%);
  border:1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding:18px 18px 16px;
}
.card-title{
  margin:0 0 10px;
  font-size:16px;
}
.checklist{
  margin:0;
  padding:0 0 0 18px;
  color:var(--muted);
  line-height:1.8;
}
.mini{
  margin-top:14px;
}
.mini-box{
  padding:12px 12px;
  background:#fff;
  border:1px solid var(--line);
  border-radius: 14px;
  text-align: center;
}
.mini-label{
  margin:0;
  font-size:12px;
  color:var(--muted);
}
.mini-value{
  margin:6px 0 0;
  font-weight:800;
}

.price {
    margin: 10px;
}


.price-box {
    background: #ffef9f;
    padding:10px 20px;
    border-radius: 4px;
}
.section{
  padding: 36px 0;
}
.section.alt{
  background: linear-gradient(180deg, rgba(90,166,200,.08) 0%, rgba(111,191,143,.06) 100%);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.section-head{
  margin-bottom: 16px;
}
.section-head h2{
  margin:0 0 6px;
  font-size:22px;
}
.section-head p{
  margin:0;
  color:var(--muted);
  line-height:1.7;
}

.grid.two{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:16px;
}

.panel{
  background: var(--panel);
  border:1px solid var(--line);
  border-radius: var(--radius);
  padding:18px;
  box-shadow: 0 10px 26px rgba(32,24,16,.05);
}
.panel h3{
  margin:0 0 12px;
  font-size:16px;
}

.table-wrap{
  overflow:auto;
  border-radius: 14px;
  border:1px solid var(--line);
}
.table{
  width:100%;
  border-collapse:collapse;
  background:#fff;
}
.table th, .table td{
  padding:12px 12px;
  border-bottom: 1px solid var(--line);
  font-size:14px;
}
.table thead th{
  background: #ffffb5;
  color:#433f39;
  text-align:left;
  font-weight:800;
}
.table tr:last-child td{ border-bottom:none; }
.table .right{ text-align:right; font-variant-numeric: tabular-nums; }

.kv{
  list-style:none;
  padding:0;
  margin:0;
  display:grid;
  gap:10px;
}
.kv li{
  display:flex;
  gap:10px;
  align-items:flex-start;
  padding:12px;
  border:1px solid var(--line);
  border-radius: 14px;
  background:#fff;
}
.kv .k{
  width: 92px;
  flex: 0 0 92px;
  color:var(--muted);
  font-size:13px;
}
.kv .v{
  font-weight:700;
  font-size:14px;
}

.callout{
  margin-top:16px;
  padding:16px 18px;
  border-radius: var(--radius);
  border:1px solid rgba(90,166,200,.25);
  background: rgba(90,166,200,.10);
}
.callout-title{
  margin:0 0 6px;
  font-weight:900;
}
.callout-text{
  margin:0;
  color: var(--muted);
  line-height:1.8;
}

.big{
  font-size:18px;
  margin: 0 0 8px;
}
.small{
  margin:0;
  font-size:12px;
  color:var(--muted);
  line-height:1.8;
}

.footer-cta{
  margin-top:16px;
}
.footer-cta-box{
  padding:18px;
  border-radius: var(--radius);
  border:1px dashed #d9d2c7;
  background: #fff;
}

.site-footer{
  padding: 18px 0 26px;
}
.footer-inner{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:12px;
  border-top:1px solid var(--line);
  padding-top:14px;
}
.muted{ color:var(--muted); margin:0; font-size:12px; }
.to-top{
  font-size:12px;
  color:var(--muted);
}

@media (max-width: 860px){
  .hero-inner{ grid-template-columns: 1fr; }
  .grid.two{ grid-template-columns: 1fr; }
  .nav{ display:none; }
  .brand-logo{ width:56px; height:56px; }
}


.lists {
    padding: 20px 0;
    text-align: center;
    background: #fcffdf;
}

.lists-container {
    margin: 10px;
    background: #ffffff;
    border-radius: 10px;
    padding: 20px;
}

.list-items p {
    border-bottom: 2px solid yellow;
   border-radius: 6px;
    margin: 10px auto;
    padding: 20px 0;
    font-weight: bold;
    color: #3a3732;
}


.time {
    text-align: center;
    padding: 30px 0;

}

.time-box {
    margin: 20px;
    border: 1px solid #bdbdbd;
    border-bottom: none;
}

.titme-text {
    margin: 0;
    padding: 20px 0;
    border-bottom: 1px solid #bdbdbd;
}


.common {
    padding: 30px 0;
    text-align: center;
    margin: 16px;
}

.common-text {
    line-height: 1.8;
}

.imgs {
    background: #ffe600;
    width: 100%;
    height: 200px;
    margin: 10px auto;
    border-radius: 10px;
}

/* ===== 求人（スタッフ募集） ===== */
.recruit-card h3{
  margin-bottom: 10px;
}

.recruit-pay{
  display:flex;
  align-items:baseline;
  justify-content:space-between;
  gap:10px;
  padding:12px 14px;
  border:1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  margin-bottom: 12px;
}

.recruit-label{
  margin:0;
  font-size:12px;
  color:var(--muted);
  letter-spacing:.06em;
}

.recruit-value{
  margin:0;
  font-size:14px;
  font-weight:700;
}
.recruit-value strong{
  font-size:18px;
  font-weight:900;
}

.recruit-list{
  margin:0;
  padding:0;
  list-style:none;
  display:grid;
  gap:10px;
}

.recruit-list li{
  position:relative;
  padding:12px 12px 12px 44px;
  border:1px solid var(--line);
  border-radius: 14px;
  background:#fff;
  color:#3a3732;
  font-weight:700;
  line-height:1.4;
}

.recruit-list li::before{
  content:"";
  position:absolute;
  left:14px;
  top:50%;
  transform:translateY(-50%);
  width:18px;
  height:18px;
  border-radius: 6px;
  background: linear-gradient(180deg, rgba(217,121,89,.35) 0%, rgba(181,90,74,.25) 100%);
  border:1px solid rgba(181,90,74,.25);
  box-shadow: 0 8px 14px rgba(181,90,74,.12);
}

.recruit-note{
  margin:12px 0 0;
  color:var(--muted);
  font-size:12px;
  line-height:1.8;
}

.recruit-contact{
  margin-top: 16px;
  background: linear-gradient(180deg, rgba(255, 249, 236, .9) 0%, #fff 100%);
  border: 1px solid var(--line);
}

.recruit-actions{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin: 12px 0 14px;
  justify-content:center;
}

.qr-grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:12px;
  margin-top: 10px;
}

.qr-card{
  margin:0;
  padding:12px;
  border:1px solid var(--line);
  border-radius: var(--radius);
  background:#fff;
  box-shadow: 0 10px 22px rgba(32,24,16,.05);
  text-align:center;
}

.qr-img{
  width:100%;
  max-width: 220px;
  object-fit: cover;
  border-radius: 14px;
  border:1px solid var(--line);
  background:#fff;
}

.qr-cap{
  margin-top: 8px;
  font-size:12px;
  color:var(--muted);
}

/* スマホ最適化（あなたの既存 @media と噛み合うように） */
@media (max-width: 560px){
  .recruit-pay{
    flex-direction:column;
    align-items:flex-start;
  }
  .recruit-actions .btn{
    width:100%;
  }
  .qr-grid{
    grid-template-columns: 1fr;
  }
  .qr-img{
    max-width: 260px;
    margin-inline:auto;
  }
}

/* 求人詳細（3カラム→スマホ1カラム） */
.grid.three{
  display:grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap:16px;
}

.recruit-detail{
  margin-top: 16px;
}

.recruit-bullets{
  margin:0;
  padding-left: 18px;
  color: var(--ink);
  line-height: 1.9;
}

.recruit-mini{
  margin-top: 10px;
}

.recruit-map{
  margin-top: 12px;
  text-align:center;
}

/* レスポンシブ */
@media (max-width: 980px){
  .grid.three{
    grid-template-columns: 1fr;
  }
}

.recruit-img {
    width: 100%;
}

img {
    width: 100%;
    height: 100%;
}