@charset "UTF-8";

/* =========================
   Base
========================= */

:root {
  --color-text: #1f1f1f;
  --color-muted: #5f5a52;
  --color-white: #ffffff;
  --color-bg: #ffffff;
  --color-bg-soft: #f7fbf0;
  --color-border: rgba(111, 166, 75, .22);
  --color-main: #6fa64b;
  --color-main-dark: #4f7f35;
  --color-accent: #e09a3b;

  --container: 1120px;
  --container-narrow: 920px;
  --container-wide: 1240px;

  --font-serif:
    "Yu Mincho",
    "YuMincho",
    "Hiragino Mincho ProN",
    "HGS明朝E",
    serif;
  --font-sans:
    "Yu Gothic",
    "YuGothic",
    "Hiragino Kaku Gothic ProN",
    "Meiryo",
    sans-serif;

  --shadow-card:
    0 18px 42px rgba(0, 0, 0, .07);
  --shadow-strong:
    0 24px 60px rgba(0, 0, 0, .12);

  --z-header: 100;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  min-width: 1200px;
  margin: 0;
  background: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-sans);
  font-size: 1.6rem;
  line-height: 1.8;
  letter-spacing: .03em;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

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

h1,
h2,
h3,
p {
  margin-top: 0;
}

p {
  margin-bottom: 1.1em;
}

/* =========================
   Common Layout
========================= */

.section-inner {
  width: min(92%, var(--container));
  margin-inline: auto;
}

.section-inner--narrow {
  width: min(100% - 48px, var(--container-narrow));
}

.section-inner--wide {
  width: min(92%, var(--container-wide));
}

/* =========================
   Header
========================= */

.header {
  position: sticky;
  top: 0;
  z-index: var(--z-header);
  border-bottom: 1px solid rgba(7, 21, 37, .10);
  background: rgba(246, 241, 232, .92);
  backdrop-filter: blur(16px);
}

.header__inner {
  display: flex;
  align-items: center;
  width: min(100% - 80px, 1400px);
  height: 90px;
  margin: 0 auto;
}

.header__logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  transition:
    opacity .25s ease,
    transform .25s ease;
}

.header__logo:hover {
  opacity: .78;
  transform: translateY(-1px);
}

.header__logo img {
  width: 220px;
  height: auto;
}

/* =========================
   Hero
========================= */

.hero {
  position: relative;
  height: 340px;
  overflow: hidden;
  background: #eaf5d8;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      90deg,
      #eaf5d8 0%,
      #eaf5d8 24%,
      rgba(234, 245, 216, .96) 34%,
      rgba(234, 245, 216, .82) 46%,
      rgba(234, 245, 216, .42) 60%,
      rgba(234, 245, 216, 0) 74%
    );
}

.hero__image {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.hero__content {
  position: relative;
  z-index: 2;
  width: 1120px;
  height: 100%;
  margin: 0 auto;
  padding-top: 58px;
}
.hero__lead {
  width: 560px;
  margin: 20px 0 0;
  color: #4f574b;
  font-size: 1.55rem;
  font-weight: 500;
  line-height: 1.9;
  letter-spacing: .035em;
}

/* =========================
   08. パンくず
========================= */

.breadcrumb {
  padding:
    clamp(9px, 1vw, 14px)
    0;
  font-size: clamp(1.45rem, 1vw, 1.56rem);
}

.breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.breadcrumb li {
  list-style: none;
}

.breadcrumb li + li::before {
  content: ">";
  margin-right: 10px;
}

.breadcrumb a {
  color: inherit;
  text-decoration: none;
}

.breadcrumb a:hover {
  text-decoration: none;
}

/* =========================
   制作対応例・職種一覧
========================= */

.examples-intro {
  padding:
    86px
    0
    96px;
  background: #ffffff;
}

.examples-intro .section-inner {
  width: min(1120px, calc(100% - 64px));
  margin: 0 auto;
}

.examples-intro__heading {
  max-width: 820px;
  margin: 0 auto 48px;
  text-align: center;
}

.section-label {
  display: inline-block;
  margin-bottom: 16px;
  color: #7b9a43;
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: .16em;
}

.examples-intro__heading h2 {
  margin: 0;
  color: #243024;
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.55;
  letter-spacing: .05em;
}

.examples-intro__heading p {
  margin:
    22px
    auto
    0;
  color: #4f574f;
  font-size: 1.6rem;
  line-height: 2;
  letter-spacing: .04em;
}

.job-card-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap:
    30px
    28px;
}

.job-card {
  background: #ffffff;
  border: 1px solid rgba(123, 154, 67, .18);
  border-radius: 22px;
  overflow: hidden;
  box-shadow:
    0 14px 34px rgba(42, 61, 38, .08);
}

.job-card > a {
  display: block;
  height: 100%;
  color: inherit;
  text-decoration: none;
}

.job-card__image {
  height: 214px;
  background: #eef4e7;
  overflow: hidden;
}

.job-card__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    transform .45s ease;
}

.job-card__body {
  position: relative;
  padding:
    24px
    24px
    28px;
}

.job-card__number {
  display: inline-block;
  margin-bottom: 10px;
  color: #8aa84f;
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: .12em;
}

.job-card h3 {
  margin: 0;
  color: #253025;
  font-family: var(--font-serif);
  font-size: 2.1rem;
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: .05em;
}

.job-card p {
  margin:
    12px
    0
    0;
  color: #505a50;
  font-size: 1.45rem;
  line-height: 1.85;
  letter-spacing: .04em;
}

.job-card__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  color: #6f8f37;
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: .04em;
}

.job-card__link::after {
  content: "";
  width: 22px;
  height: 1px;
  background: currentColor;
  transition:
    width .25s ease;
}

.job-card > a:hover .job-card__image img {
  transform: scale(1.04);
}

.job-card > a:hover .job-card__link::after {
  width: 34px;
}

.job-card--consult {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 32% 1fr;
  background:
    linear-gradient(
      135deg,
      #ffffff 0%,
      #f7faf2 100%
    );
}

.job-card--consult .job-card__image {
  height: 100%;
  min-height: 270px;
}

.job-card--consult .job-card__body {
  display: block;
  padding:
    30px
    40px
    32px;
}

.job-card--consult h3 {
  font-size: 2.35rem;
}

.job-card--consult > .job-card__body > p {
  max-width: 760px;
  font-size: 1.48rem;
  line-height: 1.8;
}

.job-card--consult:hover .job-card__image img {
  transform: scale(1.04);
}

/* =========================
   その他職種カード内の相談導線
========================= */

.consult-contact {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 22px;
  padding-top: 20px;
  border-top: 1px solid rgba(123, 154, 67, .18);
}

.consult-contact__tel {
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
}

.consult-contact__label {
  display: block;
  margin-bottom: 3px;
  color: #7b6a43;
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: .06em;
}

.consult-contact__number {
  display: inline-block;
  color: #25231f;
  font-size: 2.35rem;
  font-weight: 800;
  line-height: 1.3;
  text-decoration: none;
  letter-spacing: .03em;
}

.consult-contact__tel p {
  margin: 3px 0 0;
  color: #5f5a52;
  font-size: 1.35rem;
  line-height: 1.55;
}

.consult-contact__button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: auto;
  min-width: 230px;
  height: 54px;
  padding:
    0
    28px;
  background: #2f2a22;
  border-radius: 999px;
  color: #ffffff;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  letter-spacing: .04em;
  white-space: nowrap;
  box-shadow:
    0 12px 26px rgba(47, 42, 34, .16);
  transition:
    opacity .2s ease,
    transform .2s ease,
    box-shadow .2s ease;
}

.consult-contact__button:hover {
  opacity: .9;
  transform: translateY(-2px);
  box-shadow:
    0 16px 32px rgba(47, 42, 34, .20);
}



/* =========================
   15. Footer
========================= */

.footer {
  padding:
    clamp(64px, 7vw, 92px)
    0
    clamp(28px, 3vw, 40px);
  color: #ffffff;
  background:
    linear-gradient(
      180deg,
      #0f1317 0%,
      #171b20 100%
    );
}

.footer__inner {
  display: grid;
  grid-template-columns:
    1.1fr
    .9fr;
  gap: clamp(36px, 3vw, 56px);
  width: min(88%, var(--container));
  margin: 0 auto;
}

.footer__logo-link {
  display: inline-block;
  color: inherit;
  transition:
    opacity .3s ease,
    transform .3s ease,
    text-shadow .3s ease;
}

.footer__logo-link:hover {
  opacity: .72;
  transform: translateY(-2px);
  text-shadow:
    0 0 8px rgba(255, 255, 255, .18),
    0 0 18px rgba(255, 255, 255, .14);
}

.footer__logo {
  margin-bottom: 24px;
  color: #ffffff;
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 2vw, 3.2rem);
  line-height: 1.6;
  letter-spacing: .08em;
}

.footer__lead {
  max-width: 520px;
  margin-bottom: 32px;
  color: rgba(255, 255, 255, .72);
  font-size: 1.5rem;
  line-height: 2;
}

.footer__contact p {
  margin: 0;
  color: rgba(255, 255, 255, .88);
  font-size: 1.45rem;
  line-height: 2;
}

.footer__nav-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.footer__sns {
  display: flex;
  gap: 18px;
  margin-bottom: 34px;
}

.footer__sns a {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 999px;
  background: rgba(255, 255, 255, .06);
  transition:
    transform .2s ease,
    background .2s ease;
}

.footer__sns a:hover {
  background: rgba(255, 255, 255, .12);
  transform: translateY(-2px);
}

.footer__nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap:
    14px
    18px;
  max-width: 460px;
}

.footer__nav a {
  color: rgba(255, 255, 255, .78);
  font-size: 1.4rem;
  transition: color .2s ease;
}

.footer__nav a:hover {
  color: #ffffff;
}

.footer__copy {
  display: block;
  margin-top: 64px;
  color: rgba(255, 255, 255, .42);
  font-size: 1.2rem;
  letter-spacing: .06em;
  text-align: center;
}

/* =========================
   Focus
========================= */

a:focus-visible {
  outline: 3px solid var(--color-accent);
  outline-offset: 4px;
}