:root{
  --main:#f4b52a;
  --main-dark:#e7a61a;
  --text:#333;
  --white:#fff;
  --light:#faf8f3;
  --gray:#f5f5f5;
  --border:#e5e5e5;
  --shadow:0 10px 30px rgba(0,0,0,.08);
}

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

html{
  scroll-behavior:smooth;
}

body{
  font-family:'Noto Sans JP',sans-serif;
  color:var(--text);
  line-height:1.8;
  overflow-x:hidden;
  background:#fff;
}

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

a{
  text-decoration:none;
}

ul{
  list-style:none;
}

.container{
  width:min(1200px,92%);
  margin:auto;
}

.section{
  padding:100px 0;
}

.gray{
  background:var(--light);
}

.center{
  text-align:center;
}

h2{
  font-size:clamp(2rem,4vw,3rem);
  margin-bottom:50px;
  font-weight:900;
  color:#222;
}

h2,
.hero-content h2{
  font-family:'Zen Maru Gothic',sans-serif;
  color:#F6B62D;
  font-weight:700;
  letter-spacing:.08em;
}

/* =====================
HEADER
===================== */

.header{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  z-index:9999;
  background:rgba(255,255,255,.95);
  backdrop-filter:blur(12px);
  box-shadow:0 3px 20px rgba(0,0,0,.06);
}

.header-inner{
  height:90px;
  display:flex;
  align-items:center;
  justify-content:space-between;
}

.logo{
  display:flex;
  align-items:center;
  gap:15px;
  color:#333;
}

.logo img{
  height:58px;
}

.logo-text h1{
  font-size:1.2rem;
  font-weight:900;
}

.logo-text p{
  font-size:.8rem;
  color:#777;
}

.pc-nav ul{
  display:flex;
  gap:28px;
  align-items:center;
}

.pc-nav a{
  position:relative;

  color:#666;
  font-size:0.95rem;
  font-weight:700;

  padding:8px 0;

  font-family:'Zen Maru Gothic',sans-serif;

  transition:color .3s ease;
}

.pc-nav a::after{
  content:"";

  position:absolute;
  left:50%;
  bottom:-8px;

  width:0;
  height:2px;

  background:#E7A61A;

  transform:translateX(-50%);
  transition:width .3s ease;

  border-radius:10px;
}

.pc-nav a:hover{
  color:#D89200;
}

.pc-nav a:hover::after{
  width:100%;
}
.header-right{
  display:flex;
  align-items:center;
  gap:15px;
}

.insta{
  color:#333;
  font-size:2.5rem;
}

.tel-btn{
  background:var(--main);
  color:#fff;
  padding:12px 18px;
  border-radius:999px;
  font-weight:700;
}

.hamburger{
  display:none;
  width:40px;
  height:40px;
  border:none;
  background:none;
  cursor:pointer;
}

.hamburger span{
  display:block;
  height:3px;
  background:#333;
  margin:7px 0;
}

.sp-menu{
  display:none;
}

/* =====================
HERO
===================== */

.hero{
  position:relative;
  height:100vh;
  min-height:750px;
  background:url("../image/hero.jpg") center center/cover no-repeat;
  display:flex;
  align-items:center;
  justify-content:center;
}

.recruit-hero{
  background:
  url("../image/staffmain.jpg")
  center center / cover no-repeat;
}

.hero-overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(
    rgba(255,255,255,.45),
    rgba(255,255,255,.25)
  );
}

.hero-content{
  position:relative;
  z-index:10;
  text-align:center;
  width:100%;
  max-width:1000px;
  margin:0 auto;
}
.hero-content h2{
  color:#FF9E00;
  font-weight:900;
  margin-bottom:10px;
  text-shadow:
    0 0 15px rgba(255,255,255,1),
    0 0 30px rgba(255,255,255,.8);
}

.hero-content p{
  font-family:'Zen Maru Gothic',sans-serif;

  font-size:clamp(1.3rem,2vw,1.8rem);

  color:#E79200;
  font-weight:700;

  margin-bottom:55px;

  text-shadow:
    0 0 10px rgba(255,255,255,.9),
    0 0 20px rgba(255,255,255,.6);

  letter-spacing:.08em;

  text-align:center;
}

.hero-btns{
  display:flex;
  justify-content:center;
  gap:15px;
  flex-wrap:wrap;
}

.btn-main,
.btn-sub{
  padding:16px 32px;
  border-radius:999px;
  font-weight:700;
}

.btn-main{
  background:var(--main);
  color:#fff;
}

.btn-sub{
  background:#fff;
  border:2px solid #fff;
  color:#f4b52a;
}

/* =====================
SERVICE
===================== */

.service-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:30px;
}

.service-card{
  background:#fff;
  border-radius:25px;
  overflow:hidden;
  box-shadow:var(--shadow);
}

.service-card img{
  height:260px;
  width:100%;
  object-fit:cover;
}

.service-card h3{
  padding:25px 25px 10px;
  font-size:1.4rem;
}

.service-card p{
  padding:0 25px 25px;
}

/* =====================
FLOW
===================== */

.flow-grid{
  display:grid;
  grid-template-columns:repeat(5,1fr);
  gap:20px;
}

.flow-step{
  background:#fff;
  border-radius:20px;
  padding:30px 20px;
  text-align:center;
  box-shadow:var(--shadow);

  display:flex;
  flex-direction:column;
  align-items:center;

  min-height:280px;
}

.flow-step span{
  display:block;
  color:#F6B62D;
  font-size:1rem;
  font-weight:700;
}

.flow-step img{
  width:120px;
  height:120px;
  object-fit:contain;

  margin:15px 0 20px;
}

.flow-step p{
  margin:0;
  font-size:1.1rem;
  font-weight:700;
  color:#333;
}

/* =====================
FAQ
===================== */

.faq-wrap{
  max-width:900px;
}

.faq-item{
  margin-bottom:15px;
  border-radius:15px;
  overflow:hidden;
  box-shadow:var(--shadow);
}

.faq-question{
  width:100%;
  border:none;
  background:#fff;
  padding:24px;
  text-align:left;
  cursor:pointer;
  font-weight:700;
  font-size:1rem;
}

.faq-answer{
  max-height:0;
  overflow:hidden;
  opacity:0;

  transition:
    max-height .45s ease,
    opacity .3s ease;

  background:rgba(255,255,255,.88);
}

.faq-answer p{
  padding:0 20px;
}

.faq-item.active .faq-answer{
  max-height:200px;
  opacity:1;
}

.faq-item.active .faq-answer p{
  padding:20px;
}


#faq{
  position:relative;
  background:url("../image/backfaq.jpg") center center / cover fixed;
}

#faq::before{
  content:"";
  position:absolute;
  inset:0;

  background:rgba(255,255,255,.80);

  z-index:0;
}

#faq .container{
  position:relative;
  z-index:1;
}

/* =====================
VOICE
===================== */

.voice-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:25px;
}

.voice-card{
  background:#fff;
  padding:35px;
  border-radius:20px;
  box-shadow:var(--shadow);
}

.voice-card strong{
  display:block;
  margin-top:20px;
  color:var(--main-dark);
}

/* =====================
ABOUT
===================== */

.about-text{
  max-width:900px;
  margin:0 auto 50px;
  text-align:center;
}

.office-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:30px;
}

.office-card{
  background:#fff;
  border-radius:20px;
  padding:25px;
  box-shadow:var(--shadow);

  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:20px;
}

.office-card h3{
  margin-bottom:15px;
}

.office-info{
  flex:1;
}

.office-map{
  width:300px;
  flex-shrink:0;
}

.office-map iframe{
  width:100%;
  height:200px;
  border:none;
  border-radius:15px;
}

/* =====================
FORM
===================== */

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

.contact-form input,
.contact-form select,
.contact-form textarea{
  width:100%;
  padding:18px;
  margin-bottom:20px;
  border:1px solid var(--border);
  border-radius:12px;
  font-size:16px;
  background:#fff;
}

.contact-form button{
  width:100%;
  background:var(--main);
  color:#fff;
  border:none;
  padding:18px;
  border-radius:999px;
  font-size:18px;
  cursor:pointer;
  font-weight:700;
  margin-bottom:70px;
}

.recruit-fixed{
  position:fixed;
  left:20px;
  bottom:30px;
  z-index:999;

  width:150px;
  height:130px;

  display:flex;
  align-items:center;
  justify-content:center;

  text-align:center;
  padding:15px;

  background:rgba(150,205,85,.92);

  color:#fff;
  font-family:'Zen Maru Gothic',sans-serif;
  font-size:0.95rem;
  font-weight:700;

  backdrop-filter:blur(12px);
  -webkit-backdrop-filter:blur(12px);

  border-radius:
  58% 42% 63% 37% /
  35% 62% 38% 65%;

  box-shadow:
    0 10px 30px rgba(150,205,85,.25),
    0 4px 15px rgba(0,0,0,.08);

  transition:.3s ease;
}

.recruit-fixed::before{
  content:"";

  position:absolute;
  inset:-6px;

  background:rgba(180,220,120,.35);

  border-radius:
    55% 45% 50% 50% /
    45% 55% 50% 50%;

  filter:blur(10px);

  z-index:-1;
}

.recruit-fixed:hover{
  transform:translateY(-3px);

  background:rgba(150,205,85,.98);
}

/* =====================
FOOTER
===================== */

footer{
  background:linear-gradient(
    180deg,
    #F9C24C 0%,
    #F6B62D 100%
  );
  color:#fff;
  text-align:center;
  padding:50px 20px;
}

.footer-inner{
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  gap:60px;
}

.footer-logo{
  min-width:180px;
}

.footer-logo img{
  width:180px;
  height:auto;
}

.footer-office{
  flex:1;
}

.footer-office h4{
  font-size:1.2rem;
  font-weight:700;
  color:#fff;
}

.footer-office p{
  color:#fff;
  line-height:1.8;
}

#contact{
  padding-bottom:0;
  margin-bottom:0;
}

footer{
  margin:0;
}

/* =====================
ANIMATION
===================== */

.fade{
  opacity:0;
  transform:translateY(40px);
  transition:.8s;
}

.fade.show{
  opacity:1;
  transform:none;
}

/* =====================
MOBILE
===================== */

.recruit-table{
  width:100%;
  border-collapse:collapse;
}

.recruit-table tr{
  border-bottom:1px solid #e9e9e9;
}

@media (max-width:900px){

  html,body{
    width:100%;
    max-width:100%;
    overflow-x:hidden;
  }

  body{
    font-size:clamp(14px,3.7vw,16px);
    line-height:1.75;
  }

  /* ===== HEADER ===== */
  .header{
    z-index:9999;
  }

  .header-inner{
    height:88px;
    width:calc(100% - 28px);
  }

  .logo{
    min-width:0;
    gap:10px;
    max-width:calc(100% - 58px);
  }

  .logo img{
    width:auto;
    height:48px;
    flex-shrink:0;
  }

  .logo-text{
    min-width:0;
  }

  .logo-text h1{
    font-size:clamp(18px,5.2vw,22px);
    line-height:1.2;
    white-space:nowrap;
  }

  .logo-text p{
    margin-top:4px;
    font-size:clamp(12px,3.4vw,15px);
    line-height:1.2;
    white-space:nowrap;
  }

  .pc-nav,
  .header-right{
    display:none;
  }

  .hamburger{
    display:block;
    position:relative;
    z-index:10001;
    width:46px;
    height:46px;
    padding:5px;
    flex-shrink:0;
  }

  .hamburger span{
    display:block;
    width:36px;
    height:3px;
    margin:6px auto;
    background:#333;
    border-radius:3px;
    transition:transform .3s ease, opacity .2s ease;
  }

  .hamburger.active span:nth-child(1){
    transform:translateY(9px) rotate(45deg);
  }

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

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

  /* ===== SMARTPHONE MENU ===== */
  .sp-menu{
    display:flex;
    flex-direction:column;
    position:fixed;
    top:88px;
    right:-100%;
    width:min(82vw,320px);
    height:calc(100svh - 88px);
    padding:8px 0 env(safe-area-inset-bottom);
    background:rgba(255,255,255,.98);
    box-shadow:-8px 0 28px rgba(0,0,0,.12);
    transition:right .35s ease;
    z-index:10000;
    overflow-y:auto;
  }

  .sp-menu.open{
    right:0;
  }

  .sp-menu a{
    display:block;
    padding:16px 24px;
    color:#333;
    font-family:'Zen Maru Gothic',sans-serif;
    font-size:15px;
    font-weight:700;
    border-bottom:1px solid #eee;
  }

  .sp-menu .sp-recruit-link{
    color:#fff;
    background:#9acd55;
    margin:14px 18px;
    border:none;
    border-radius:999px;
    text-align:center;
  }

  /* ===== HERO ===== */
  .hero{
    height:calc(100svh - 88px);
    min-height:620px;
    max-height:820px;
    margin-top:88px;
    background-position:center center;
  }

  .hero-content{
    width:calc(100% - 28px);
    max-width:520px;
    padding:22px 0 28px;
  }

  .hero-content h2{
    width:100%;
    margin:0 auto 12px;
    font-size:clamp(1.65rem,7.5vw,2.15rem);
    line-height:1.38;
    letter-spacing:.045em;
    word-break:keep-all;
  }

  .hero-content p{
    width:100%;
    margin:0 auto 28px;
    font-size:clamp(.9rem,4vw,1.08rem);
    line-height:1.55;
    letter-spacing:.025em;
  }

  .hero-btns{
    width:100%;
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:10px;
    align-items:center;
  }

  .btn-main,
  .btn-sub{
    min-width:0;
    padding:clamp(11px,3vw,15px) 8px;
    font-size:clamp(.82rem,3.7vw,1rem);
    line-height:1.35;
    text-align:center;
    white-space:nowrap;
  }

  /* ===== COMMON SECTIONS ===== */
  .section{
    padding:clamp(58px,13vw,78px) 0;
  }

  .container{
    width:calc(100% - 28px);
  }

  h2{
    margin-bottom:30px;
    font-size:clamp(1.55rem,6.8vw,2rem);
    line-height:1.4;
    letter-spacing:.04em;
  }

  h3{
    font-size:clamp(1.05rem,4.8vw,1.3rem);
    line-height:1.5;
  }

  p{
    line-height:1.8;
  }

  /* ===== SERVICE ===== */
  .service-grid,
  .voice-grid,
  .office-grid,
  .flow-grid{
    grid-template-columns:1fr;
  }

  .service-grid{
    gap:22px;
  }

  .service-card{
    border-radius:20px;
  }

  .service-card img{
    height:auto;
    aspect-ratio:16 / 9;
    object-fit:cover;
  }

  .service-card h3{
    padding:19px 20px 8px;
    font-size:clamp(1.05rem,4.8vw,1.3rem);
  }

  .service-card p{
    padding:0 20px 20px;
    font-size:clamp(.86rem,3.6vw,.98rem);
  }

  /* ===== FLOW ===== */
  .flow-grid{
    gap:16px;
  }

  .flow-step{
    min-height:0;
    padding:22px 18px;
    border-radius:18px;
  }

  .flow-step img{
    width:90px;
    height:90px;
    margin:10px 0 12px;
  }

  .flow-step p{
    font-size:clamp(.88rem,3.6vw,1rem);
  }

  /* ===== FAQ ===== */
  .faq-question{
    padding:17px 18px;
    font-size:clamp(.9rem,3.8vw,1rem);
  }

  .faq-answer p{
    font-size:clamp(.85rem,3.6vw,.96rem);
  }

  /* ===== VOICE ===== */
  .voice-grid{
    gap:16px;
  }

  .voice-card{
    padding:24px 20px;
  }

  /* ===== ABOUT / OFFICE ===== */
  .about-text{
    margin-bottom:32px;
    font-size:clamp(.88rem,3.7vw,1rem);
  }

  .office-card{
    flex-direction:column;
    align-items:stretch;
    gap:16px;
    padding:20px;
  }

  .office-card h3{
    margin-bottom:10px;
  }

  .office-map{
    width:100%;
  }

  .office-map iframe{
    width:100%;
    height:230px;
  }

  /* ===== FORM ===== */
  .contact-form input,
  .contact-form select,
  .contact-form textarea{
    padding:15px;
    margin-bottom:14px;
    font-size:16px;
  }

  .contact-form button{
    padding:15px;
    margin-bottom:45px;
    font-size:clamp(.95rem,4vw,1.1rem);
  }

  /* ===== RECRUIT FLOATING BUTTON ===== */
  /* PCの大きな緑色の有機形状はスマホでは小型ピル型に変更 */
  .recruit-fixed{
    left:12px;
    right:auto;
    bottom:calc(14px + env(safe-area-inset-bottom));
    width:94px;
    height:48px;
    padding:0 8px;
    border-radius:999px;
    background:rgba(150,205,85,.96);
    font-size:12px;
    line-height:1.2;
    letter-spacing:.02em;
    box-shadow:0 5px 16px rgba(0,0,0,.14);
    backdrop-filter:blur(8px);
    -webkit-backdrop-filter:blur(8px);
  }

  .recruit-fixed::before{
    display:none;
  }

  .recruit-fixed:hover{
    transform:none;
    background:rgba(150,205,85,.96);
  }

  /* ===== FOOTER ===== */
  .footer-inner{
    flex-direction:column;
    text-align:center;
    gap:30px;
  }

  .footer-logo{
    margin:auto;
    min-width:0;
  }

  .footer-logo img{
    width:150px;
    margin:auto;
  }
}

@media (max-width:380px){
  .header-inner{
    width:calc(100% - 20px);
  }

  .logo img{
    height:44px;
  }

  .logo-text h1{
    font-size:18px;
  }

  .logo-text p{
    font-size:12px;
  }

  .hero-content h2{
    font-size:1.55rem;
  }

  .hero-content p{
    font-size:.88rem;
  }

  .hero-btns{
    gap:7px;
  }

  .btn-main,
  .btn-sub{
    padding-left:5px;
    padding-right:5px;
    font-size:.78rem;
  }

  .recruit-fixed{
    left:10px;
    right:auto;
    bottom:calc(10px + env(safe-area-inset-bottom));
    width:88px;
    height:44px;
    font-size:11px;
  }
}
