@charset "utf-8";

:root {
  --ink: #4A4B4A;
  --brown: #4A4B4A;
  --coffee: #4A4B4A;
  --cream: #FFF;
  --milk: #FFF;
  --mint: #4A4B4A;
  --green: #4A4B4A;
  --orange: #4A4B4A;
  --entry-red: #C93434;
  --salmon: #4A4B4A;
  --line: rgba(74, 75, 74, .22);
  --muted: #4A4B4A;
  --white: #FFF;
  --shadow: 0 18px 42px rgba(74, 75, 74, .12);
}

* { box-sizing: border-box; }
html { font-size: 62.5%; scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--milk);
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  line-height: 1.9;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; vertical-align: bottom; }
a { color: inherit; text-decoration: none; transition: .2s ease; }
ul, ol { margin: 0; padding: 0; list-style: none; }
button, input, textarea, select { font: inherit; }
.center { text-align: center; }
.inner { width: min(1120px, calc(100% - 40px)); margin: 0 auto; }
.narrow { width: min(900px, calc(100% - 40px)); }
.section { position: relative; padding: 44px 0; overflow: hidden; }
.section > .inner {
  position: relative;
  z-index: 1;
  padding: 52px;
  border: 1px solid rgba(74, 75, 74, .24);
  border-radius: 28px;
  background: var(--white);
  box-shadow: 0 18px 42px rgba(74, 75, 74, .08);
}
.section-cream { background: var(--cream); }
.section-dark { background: var(--white); color: var(--ink); }
.lead { max-width: 840px; margin: 0 auto 34px; font-size: 1.8rem; }
.note { color: var(--muted); font-size: 1.4rem; }
.fade { opacity: 0; transform: translateY(22px); transition: opacity .75s ease, transform .75s ease; }
.fade.active { opacity: 1; transform: translateY(0); }

.site-header {
  position: fixed;
  z-index: 30;
  top: 0;
  left: 0;
  width: 100%;
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 24px;
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 8px 24px rgba(74, 75, 74, .12);
  backdrop-filter: blur(10px);
}
.header-logo {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  line-height: 1.05;
  color: var(--brown);
  font-weight: 900;
}
.header-logo img {
  display: block;
  width: 42px;
  height: 42px;
  object-fit: contain;
}
.header-logo span {
  display: inline-flex;
  flex-direction: column;
}
.header-logo strong { font-size: 2.1rem; }
.header-logo small { margin-top: 4px; color: var(--green); font-size: 1.1rem; letter-spacing: .12em; }
.header-nav { display: flex; align-items: center; gap: 18px; font-weight: 800; font-size: 1.4rem; }
.header-nav a:last-child {
  min-width: 132px;
  padding: 10px 18px;
  border-radius: 999px;
  background: var(--entry-red);
  color: var(--white);
  text-align: center;
}
.header-nav a:hover { color: var(--green); }
.header-nav a:last-child:hover { color: var(--white); transform: translateY(-1px); }

.fixed-cta {
  position: fixed;
  z-index: 35;
  right: 18px;
  bottom: 18px;
  display: flex;
  gap: 10px;
}
.fixed-cta a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 20px;
  border-radius: 999px 999px 999px 14px;
  color: var(--white);
  font-weight: 900;
  box-shadow: 0 10px 28px rgba(74, 75, 74, .22);
}
.fixed-cta .tel { background: #000; }
.fixed-cta .entry { background: var(--entry-red); }

.hero { padding-top: 72px; background: var(--brown); }
.hero a { display: block; }
.hero img { display: block; width: 100%; height: auto; }

.sec-title { margin: 0 0 34px; text-align: center; }
.sec-title .en {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  color: var(--green);
  font-size: 1.3rem;
  font-weight: 900;
  letter-spacing: .12em;
}
.sec-title .en::before,
.sec-title .en::after {
  content: "";
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--salmon);
  box-shadow: 14px 8px 0 -3px var(--orange);
}
.sec-title h2 {
  margin: 0;
  color: var(--brown);
  font-size: clamp(3rem, 4.2vw, 4.8rem);
  line-height: 1.35;
  font-weight: 900;
}
.section-dark .sec-title h2,
.section-dark .sec-title .en,
.section-dark .lead { color: var(--ink); }

.intro-section::before,
.section-skills::before {
  content: "";
  position: absolute;
  right: max(20px, calc((100% - 1120px) / 2));
  top: 34px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 58%, rgba(74, 75, 74, .12) 0 18%, transparent 19%),
              radial-gradient(circle at 33% 32%, rgba(74, 75, 74, .12) 0 9%, transparent 10%),
              radial-gradient(circle at 67% 32%, rgba(74, 75, 74, .12) 0 9%, transparent 10%),
              radial-gradient(circle at 25% 54%, rgba(74, 75, 74, .12) 0 8%, transparent 9%),
              radial-gradient(circle at 75% 54%, rgba(74, 75, 74, .12) 0 8%, transparent 9%);
  opacity: .8;
  pointer-events: none;
}

.intro-grid {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: 34px;
  align-items: stretch;
}
.cat-card,
.white-card {
  padding: 34px;
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}
.cat-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--ink);
}
.cat-card strong { display: block; margin: 20px 0 8px; color: var(--ink); font-size: 2.2rem; }
.cat-card p { margin: 0; font-weight: 700; }
.white-card h3 { margin: 0 0 14px; color: var(--brown); font-size: 2.5rem; line-height: 1.45; }
.white-card p { margin: 0 0 14px; }
.white-card p:last-child { margin-bottom: 0; }

.cat-icon {
  display: block;
  width: 116px;
  max-width: 42%;
  height: auto;
  margin: 0 auto;
  filter: drop-shadow(0 10px 16px rgba(74, 75, 74, .18));
}
.cat-icon.contact {
  width: 96px;
  max-width: 38%;
  margin-bottom: 18px;
}

.cat-face {
  position: relative;
  width: 98px;
  height: 78px;
  border-radius: 48% 48% 42% 42%;
  background: var(--orange);
  box-shadow: inset 0 -12px 0 rgba(74, 75, 74, .16);
}
.cat-face::before,
.cat-face::after {
  content: "";
  position: absolute;
  top: -16px;
  width: 34px;
  height: 34px;
  background: var(--orange);
  transform: rotate(45deg);
}
.cat-face::before { left: 8px; border-radius: 6px 0 0 0; }
.cat-face::after { right: 8px; border-radius: 0 6px 0 0; }
.cat-face.small { width: 78px; height: 62px; margin-bottom: 18px; background: var(--ink); }
.cat-face.small::before,
.cat-face.small::after { background: var(--ink); }

.point-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.point-card {
  position: relative;
  min-height: 100%;
  padding: 30px 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}
.point-card::after {
  content: "";
  position: absolute;
  right: 18px;
  top: 18px;
  width: 34px;
  height: 30px;
  border-radius: 50% 50% 45% 45%;
  background: radial-gradient(circle at 50% 65%, var(--salmon) 0 32%, transparent 33%),
              radial-gradient(circle at 30% 28%, var(--salmon) 0 15%, transparent 16%),
              radial-gradient(circle at 50% 18%, var(--salmon) 0 13%, transparent 14%),
              radial-gradient(circle at 70% 28%, var(--salmon) 0 15%, transparent 16%);
}
.point-card span { color: var(--orange); font-weight: 900; font-size: 1.4rem; }
.point-card h3 { margin: 8px 0 12px; color: var(--brown); font-size: 2.2rem; line-height: 1.45; }
.point-card p { margin: 0; }

.work-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.work-card {
  position: relative;
  overflow: hidden;
  min-height: 100%;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
  color: var(--ink);
}
.work-card::before {
  content: "";
  position: absolute;
  right: -30px;
  bottom: -38px;
  width: 150px;
  height: 128px;
  border-radius: 50%;
  background: rgba(74, 75, 74, .08);
}
.work-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 68px;
  height: 68px;
  margin-bottom: 16px;
  border-radius: 50% 50% 50% 14px;
  background: var(--orange);
  color: var(--white);
  font-weight: 900;
}
.work-card h3 { margin: 0 0 12px; color: var(--ink); font-size: 2.4rem; line-height: 1.4; }
.work-card li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 8px;
}
.work-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .78em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--salmon);
}
.work-card p { margin: 16px 0 0; }
.work-img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  margin-top: 22px;
  border-radius: 8px;
  object-fit: cover;
  filter: grayscale(1);
  box-shadow: 0 14px 30px rgba(74, 75, 74, .16);
}
.mini-note {
  margin-top: 24px;
  padding: 18px 22px;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: var(--white);
  text-align: center;
  font-weight: 800;
}

.appeal-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.appeal-card {
  padding: 30px 26px;
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}
.appeal-card h3 { margin: 16px 0 10px; color: var(--brown); font-size: 2.2rem; line-height: 1.45; }
.appeal-card p { margin: 0; }
.appeal-icon {
  display: block;
  width: 128px;
  height: 128px;
  margin: 0 auto 18px;
  object-fit: contain;
}
.paw {
  width: 58px;
  height: 52px;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 65%, var(--orange) 0 28%, transparent 29%),
              radial-gradient(circle at 30% 30%, var(--salmon) 0 15%, transparent 16%),
              radial-gradient(circle at 50% 18%, var(--salmon) 0 13%, transparent 14%),
              radial-gradient(circle at 70% 30%, var(--salmon) 0 15%, transparent 16%);
}

.data-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.data-card {
  min-height: 172px;
  padding: 26px 18px;
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
  text-align: center;
}
.data-label { display: block; color: var(--brown); font-weight: 900; }
.data-main {
  display: block;
  margin: 10px 0;
  color: var(--orange);
  font-size: 4rem;
  font-weight: 900;
  line-height: 1;
}
.data-main small { font-size: 1.7rem; }

.section-skills { background: var(--white); }
.skill-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  max-width: 920px;
  margin: 0 auto 28px;
}
.skill-tags span {
  min-width: 112px;
  padding: 12px 18px;
  border: 1px solid var(--line);
  border-radius: 999px 999px 999px 10px;
  background: var(--white);
  box-shadow: 0 10px 24px rgba(74, 75, 74, .08);
  color: var(--brown);
  font-weight: 900;
  text-align: center;
}

.table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  box-shadow: var(--shadow);
}
.recruit-heading {
  display: flex;
  align-items: center;
  justify-content: center;
  width: max-content;
  min-width: 180px;
  margin: 12px auto 18px;
  padding: 10px 24px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  background: var(--white);
  color: var(--ink);
  font-size: 2rem;
  font-weight: 900;
  line-height: 1.4;
}
.table + .recruit-heading {
  margin-top: 42px;
}
.table th,
.table td {
  padding: 18px 22px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}
.table th {
  width: 26%;
  color: var(--brown);
  background: var(--white);
  font-weight: 900;
}
.table a { color: var(--green); font-weight: 800; }
.map-box {
  overflow: hidden;
  height: 420px;
  margin-top: 28px;
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}
.map-box iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.flow-list { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; counter-reset: flow; }
.flow-list li {
  position: relative;
  padding: 26px 22px;
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
  counter-increment: flow;
}
.flow-list li::before {
  content: counter(flow, decimal-leading-zero);
  display: block;
  color: var(--orange);
  font-weight: 900;
}
.flow-list h3 { margin: 6px 0 8px; color: var(--brown); font-size: 2rem; }
.flow-list p { margin: 0; font-size: 1.5rem; }

.contact-grid { display: grid; grid-template-columns: .88fr 1.12fr; gap: 32px; align-items: start; }
.contact-card {
  padding: 30px;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--ink);
  box-shadow: var(--shadow);
}
.contact-card h3 { margin: 0 0 12px; font-size: 2.4rem; }
.contact-tel { display: block; margin: 10px 0 12px; color: var(--ink); font-size: 3.4rem; font-weight: 900; line-height: 1.2; }
.form-card {
  padding: 26px;
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}
.form-table { width: 100%; border-collapse: collapse; }
.form-table th,
.form-table td { padding: 14px 0; text-align: left; vertical-align: top; border-bottom: 1px solid var(--line); }
.form-table th { width: 30%; color: var(--brown); font-weight: 900; }
.required { color: var(--ink); }
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="file"],
textarea,
select {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
  font-size: 1.6rem;
}
.radio-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
}
.radio-list label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
}
.radio-list input {
  width: auto;
}
.file-note {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 1.3rem;
  line-height: 1.6;
}
input:focus,
textarea:focus,
select:focus { outline: 3px solid rgba(74, 75, 74, .18); border-color: var(--mint); }
.error { margin-top: 5px; color: var(--ink); font-size: 1.4rem; font-weight: 900; }
.privacy {
  height: 230px;
  overflow-y: auto;
  margin-top: 28px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  font-size: 1.4rem;
}
.privacy h3,
.privacy h4 { margin: 0 0 8px; color: var(--brown); }
.privacy p { margin: 0 0 14px; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  min-width: 220px;
  padding: 0 28px;
  border: 0;
  border-radius: 999px 999px 999px 14px;
  cursor: pointer;
  font-weight: 900;
  font-size: 1.7rem;
  line-height: 1.2;
}
.btn-primary { background: var(--orange); color: var(--white); box-shadow: 0 12px 24px rgba(74, 75, 74, .22); }
.btn-outline { border: 2px solid var(--green); background: var(--white); color: var(--green); }
.btn:hover { transform: translateY(-1px); }
.form-actions { display: flex; justify-content: center; gap: 14px; margin-top: 24px; flex-wrap: wrap; }

.lower-main { padding-top: 72px; }
.lower-section { padding: 70px 0; min-height: 58vh; background: var(--cream); }
.lower-title { margin: 0 0 24px; color: var(--brown); font-size: 3.4rem; text-align: center; line-height: 1.35; }
.complete-text {
  margin: 0 0 34px;
  padding: 60px 24px;
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
  text-align: center;
  font-size: 1.9rem;
  font-weight: 700;
}

.site-footer {
  padding: 34px 20px;
  background: var(--brown);
  color: var(--white);
  text-align: center;
  font-size: 1.4rem;
}
.footer-logo { margin-bottom: 8px; font-size: 2rem; font-weight: 900; }
.copyright { margin-top: 18px; color: rgba(255,255,255,.72); }
.pc{display: block; }
.sp{display: none; }

@media (max-width: 900px) {
.pc{display: none; }
.sp{display: block; }
  body { font-size: 1.5rem; }
  .inner,
  .narrow { width: min(100% - 28px, 1120px); }
  .section { padding: 22px 0; }
  .section > .inner {
    padding: 30px 18px;
    border-radius: 18px;
  }
  .site-header { min-height: 60px; padding: 10px 14px; }
  .header-logo { gap: 7px; }
  .header-logo img { width: 32px; height: 32px; }
  .header-logo strong { font-size: 1.45rem; }
  .header-logo small { font-size: .95rem; }
  .header-nav a:not(:last-child) { display: none; }
  .header-nav a:last-child { min-width: 104px; padding: 8px 12px; font-size: 1.3rem; }
  .hero { padding-top: 60px; }
  .fixed-cta { left: 10px; right: 10px; bottom: 10px; }
  .fixed-cta a { flex: 1; min-height: 48px; padding: 0 10px; font-size: 1.4rem; }
  .sec-title h2 { font-size: 3rem; }
  .lead { font-size: 1.6rem; text-align: left; }
  .intro-section::before,
  .section-skills::before { width: 120px; height: 120px; right: -24px; top: 16px; }
  .intro-grid,
  .point-grid,
  .work-grid,
  .appeal-list,
  .data-grid,
  .contact-grid,
  .flow-list { grid-template-columns: 1fr; }
  .cat-card,
  .white-card,
  .work-card,
  .appeal-card,
  .contact-card,
  .form-card { padding: 24px; }
  .data-card { min-height: auto; }
  .data-main { font-size: 3.5rem; }
  .skill-tags { justify-content: flex-start; }
  .skill-tags span { min-width: calc(50% - 6px); }
  .table th,
  .table td,
  .form-table th,
  .form-table td { display: block; width: 100%; padding: 13px 14px; }
  .table th,
  .form-table th { border-bottom: 0; }
  .form-table th,
  .form-table td { padding-left: 0; padding-right: 0; }
  .map-box { height: 320px; }
  .contact-tel { font-size: 2.7rem; }
  .btn { width: 100%; min-width: 0; }
  .lower-main { padding-top: 60px; }
  .lower-section { padding: 48px 0 74px; }
  .lower-title { font-size: 2.8rem; }
  .complete-text { padding: 36px 20px; font-size: 1.7rem; }
  .site-footer { padding-bottom: 86px; }
}
