@charset "UTF-8";

/*
 * ========================================
 * 1. 基本設定
 * ========================================
 */

:root {
  --color-base: #f7f5f1;
  --color-white: #fffdfc;
  --color-green: #4f6f5a;
  --color-green-dark: #2f3a32;
  --color-green-light: #e5ece6;
  --color-orange: #f3b68e;
  --color-orange-light: #fcede3;
  --color-text: #4a4a45;
  --color-border: #d8e0da;
  --color-gray: #efefec;
  --content-width: 1180px;
  --medium-width: 980px;
  --narrow-width: 800px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  margin: 0;
  color: var(--color-text);
  background-color: var(--color-base);
  font-family: "Helvetica Neue",
    Arial,
    "Hiragino Kaku Gothic ProN",
    "Hiragino Sans",
    Meiryo,
    sans-serif;
  font-size: 16px;
  line-height: 1.8;
  overflow-x: hidden;
}

body.is-menu-open {
  overflow: hidden;
}

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

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

button {
  color: inherit;
  background: none;
  border: none;
  font: inherit;
  cursor: pointer;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1,
h2,
h3,
h4,
p,
dl,
dd {
  margin: 0;
}

.pc-only {
  display: inline;
}

.sp-only {
  display: none;
}

/*
 * ========================================
 * 2. 共通レイアウト
 * ========================================
 */

.section {
  padding: 120px 0;
}

.section__inner {
  width: min(calc(100% - 80px), var(--content-width));
  margin: 0 auto;
}

.section__inner--medium {
  max-width: var(--medium-width);
}

.section__inner--narrow {
  max-width: var(--narrow-width);
}

.section-heading {
  margin-bottom: 55px;
}

.section-heading--center {
  text-align: center;
}

.section-heading__en {
  margin-bottom: 14px;
  color: var(--color-orange);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.15em;
  line-height: 1;
}

.section-heading__title {
  color: var(--color-green);
  font-size: 42px;
  font-weight: 500;
  letter-spacing: 0.07em;
  line-height: 1.5;
}

.section-heading__description {
  margin-top: 24px;
  color: var(--color-text);
  font-size: 16px;
  line-height: 2;
}

.sp-only,
.sp-description-gap {
  display: none;
}

.section-button {
  display: flex;
  justify-content: center;
  margin-top: 50px;
}

/*
 * ========================================
 * 3. 共通ボタン
 * ========================================
 */

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 230px;
  min-height: 58px;
  padding: 14px 30px;
  border: 2px solid var(--color-green);
  border-radius: 30px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-align: center;
  transition: color 0.3s,
    background-color 0.3s,
    border-color 0.3s,
    transform 0.3s;
}

.button:hover {
  transform: translateY(-3px);
}

.button--outline {
  color: var(--color-green);
  background-color: rgba(255, 255, 255, 0.85);
}

.button--outline:hover {
  color: #fff;
  background-color: var(--color-green);
}

.button--green {
  color: #fff;
  background-color: var(--color-green);
}

.button--green:hover {
  color: #fff;
  background-color: var(--color-orange);
  border-color: var(--color-orange);
}

.button--small-outline {
  min-width: 200px;
  min-height: 50px;
  padding: 10px 25px;
  color: var(--color-green);
  background-color: var(--color-white);
  font-size: 14px;
}

.button--small-outline:hover {
  color: #fff;
  background-color: var(--color-green);
}

.button--job {
  min-width: 205px;
  min-height: 46px;
  margin-top: 25px;
  padding: 9px 25px;
  color: #fff;
  background-color: var(--color-green);
  font-size: 14px;
}

.button--job:hover {
  color: #fff;
  background-color: var(--color-orange);
  border-color: var(--color-orange);
}

.button--wide {
  min-width: 290px;
}

.button--entry {
  min-width: 270px;
  gap: 35px;
}

/*
 * ========================================
 * 4. ヘッダー
 * ========================================
 */

/* SP版にも使われる現在の基本設定 */

.header {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  height: 100px;
  background-color: rgba(255, 255, 255, 0.78);
  border-bottom: 1px solid rgba(79, 111, 90, 0.12);
}

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

.header__logo {
  display: flex;
  align-items: flex-end;
  flex-shrink: 0;
  gap: 24px;
  color: #111;
  text-decoration: none;
}

.header__logo-main {
  color: #111;
  font-size: 34px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.17em;
}

.header__logo-sub {
  color: #222;
  font-size: 15px;
  font-weight: 700;
  white-space: nowrap;
}

.header__nav {
  margin-left: auto;
}

.header__nav-list {
  display: flex;
  align-items: center;
  gap: 40px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.header__nav-list a {
  position: relative;
  color: #434743;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s;
}

/* 下線は最初は見えない */

.header__nav-list a::after {
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--color-orange);
  content: "";
  transition: width 0.3s;
}

/* カーソルが重なった項目だけオレンジ */

.header__nav-list a:hover {
  color: var(--color-orange);
}

.header__nav-list a:hover::after {
  width: 100%;
}

.header__entry-button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 205px;
  min-height: 56px;
  margin-left: 45px;
  padding: 0 27px;
  color: #fff;
  background-color: var(--color-green);
  border-radius: 30px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  transition: background-color 0.3s,
    transform 0.3s;
}

.header__entry-button:hover {
  color: #fff;
  background-color: var(--color-orange);
  transform: translateY(-2px);
}

.header__entry-arrow {
  margin-left: 18px;
}

.header__menu-button,
.sp-menu {
  display: none;
}

/*
 * ========================================
 * PC版だけのヘッダー調整
 * ========================================
 */

@media (min-width: 768px) {
  .header {
    height: 92px;
    /* 白を薄くして、後ろの家の空間を見せる */
    background-color: rgba(255, 255, 255, 0.2);
    /* 写真を少しぼかして文字を読みやすくする */
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
  }

  .header__inner {
    width: min(calc(100% - 100px), 1620px);
  }

  .header__logo {
    align-items: center;
    gap: 28px;
  }

  .header__logo-main {
    font-size: 36px;
    font-weight: 800;
    letter-spacing: 0.18em;
  }

  .header__logo-sub {
    font-size: 16px;
    font-weight: 700;
  }

  .header__nav-list {
    gap: 48px;
  }

  .header__nav-list a {
    color: #2f332f;
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    font-weight: 500;
  }

  /* 通常時は全項目を黒にする */

  .header__nav-list a,
  .header__nav-list a:visited {
    color: #3f433f;
  }

  /* カーソルが重なった項目だけオレンジ */

  .header__nav-list a:hover,
  .header__nav-list a:focus-visible {
    color: var(--color-orange);
  }

  .header__entry-button {
    width: 220px;
    min-height: 58px;
    margin-left: 65px;
    padding: 0 28px;
    border: 1px solid rgba(255, 255, 255, 0.55);
    border-radius: 32px;
    font-size: 16px;
    letter-spacing: 0.08em;
  }

  .header__entry-button,
  .header__entry-button:visited {
    color: #fff;
  }

  .header__entry-button:hover,
  .header__entry-button:focus-visible {
    color: #fff;
    background-color: var(--color-orange);
  }

  .header__entry-arrow {
    font-size: 20px;
    font-weight: 400;
  }
}

/*
 * ========================================
 * 5. ファーストビュー
 * ========================================
 */

.fv {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 780px;
  height: 100vh;
  background-image: url("../images/fv.jpg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  overflow: hidden;
}

.fv__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
  90deg,
  rgba(255, 255, 255, 0.38) 0%,
  rgba(255, 255, 255, 0.22) 32%,
  rgba(255, 255, 255, 0.04) 55%,
  rgba(255, 255, 255, 0) 70%
);
}

.fv__inner {
  position: relative;
  z-index: 2;
  width: min(calc(100% - 80px), 1440px);
  margin: 0 auto;
  padding-top: 100px;
}

.fv__content {
  width: 610px;
}

.fv__label {
  margin-bottom: 20px;
  color: var(--color-orange);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.fv__title {
  color: var(--color-green-dark);
  font-size: clamp(38px, 3.5vw, 54px);
  font-weight: 400;
  line-height: 1.65;
  letter-spacing: 0.08em;
}

/* ここに追加 */

@media (min-width: 768px) {
  .fv__title {
    margin-left: 60px;
    font-size: clamp(34px, 3vw, 48px);
  }
}

.fv__title span {
  display: block;
}

.fv__title span:nth-child(2) {
  margin-left: 55px;
}

.fv__text {
  margin-top: 45px;
  margin-left: 120px;
  color: var(--color-text);
  font-size: 19px;
  font-weight: 500;
  line-height: 2.1;
}

.fv__buttons {
  display: flex;
  gap: 20px;
  margin-top: 55px;
  margin-left: 15px;
}

/*
 * ========================================
 * 6. メッセージ
 * ========================================
 */

.message {
  background-color: var(--color-orange-light);
  text-align: center;
}

.message__body {
  color: var(--color-text);
  font-size: 17px;
  line-height: 2.2;
}

.message__body p + p {
  margin-top: 25px;
}

/*
 * ========================================
 * 7. 私たちについて
 * ========================================
 */

.about {
  padding: 0;
}

.about__background {
  min-height: 700px;
  padding: 140px 0;
  background-image: linear-gradient(
      90deg,
      rgba(247, 245, 241, 0.96) 0%,
      rgba(247, 245, 241, 0.86) 36%,
      rgba(247, 245, 241, 0.12) 66%,
      rgba(247, 245, 241, 0) 100%
    ),
    url("../images/about.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.about__content {
  width: 490px;
}

.about__text {
  font-size: 16px;
  line-height: 2.1;
}

.about__text p + p {
  margin-top: 23px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 30px;
  margin-top: 38px;
  padding-bottom: 5px;
  color: var(--color-green);
  border-bottom: 1px solid var(--color-green);
  font-size: 15px;
  font-weight: 700;
  transition: color 0.3s,
    border-color 0.3s;
}

.text-link:hover {
  color: var(--color-orange);
  border-color: var(--color-orange);
}

/*
 * ========================================
 * 8. 事業紹介
 * ========================================
 */

.business {
  background-color: var(--color-white);
}

/*
 * ========================================
 * 事業カードと詳細の配置
 * ========================================
 */

.business__list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  align-items: stretch;
}

/*
 * PC版では3枚のカードを1段目、
 * 詳細を2段目に配置します。
 */

.business-card[data-business-card="baby"] {
  grid-column: 1;
  grid-row: 1;
}

.business-card[data-business-card="photo"] {
  grid-column: 2;
  grid-row: 1;
}

.business-card[data-business-card="community"] {
  grid-column: 3;
  grid-row: 1;
}

.business-detail {
  grid-column: 1 / -1;
  grid-row: 2;
}

/*
 * ========================================
 * 事業カード
 * ========================================
 */

.business-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  background-color: #fff;
  border: 2px solid transparent;
  border-radius: 16px;
  box-shadow: 0 8px 25px rgba(47, 58, 50, 0.06),
    0 0 0 1px #e4e5e1;
  overflow: hidden;
  transition: transform 0.3s,
    border-color 0.3s,
    box-shadow 0.3s,
    background-color 0.3s;
}

@media (hover: hover) {
  .business-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 35px rgba(47, 58, 50, 0.11),
      0 0 0 1px #e4e5e1;
  }
}

.business-card.is-active {
  background-color: #fffaf7;
  border-color: var(--color-orange);
  box-shadow: 0 14px 35px rgba(243, 182, 142, 0.2);
}

.business-card__image {
  height: 230px;
  overflow: hidden;
}

.business-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

@media (hover: hover) {
  .business-card:hover .business-card__image img {
    transform: scale(1.04);
  }
}

.business-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  min-height: 270px;
  padding: 30px;
}

.business-card__number {
  color: var(--color-orange);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.business-card__title {
  margin-top: 8px;
  color: var(--color-green-dark);
  font-size: 22px;
  font-weight: 600;
  line-height: 1.5;
}

.business-card__text {
  margin-top: 18px;
  font-size: 15px;
  line-height: 1.9;
}

.business-card__button {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
  width: 100%;
  margin-top: auto;
  padding-top: 24px;
  color: var(--color-green);
  font-family: inherit;
  font-size: 14px;
  font-weight: 700;
  background: none;
  border: 0;
  cursor: pointer;
}

.business-card__arrow {
  font-size: 18px;
  transition: transform 0.3s;
}

@media (hover: hover) {
  .business-card__button:hover {
    color: var(--color-orange);
  }

  .business-card__button:hover .business-card__arrow {
    transform: translateX(4px);
  }
}

.business-card.is-active .business-card__button {
  color: var(--color-orange);
}

/*
 * ========================================
 * 詳細エリア
 * ========================================
 */

.business-detail[hidden] {
  display: none;
}

.business-detail {
  position: relative;
  min-width: 0;
  margin-top: 4px;
  padding: 58px 40px 38px;
  background-color: #fffaf7;
  border: 1px solid #f1d2bd;
  border-radius: 16px;
  box-shadow: 0 12px 35px rgba(47, 58, 50, 0.08);
}

.business-detail.is-open {
  animation: businessDetailOpen 0.45s ease both;
}

@keyframes businessDetailOpen {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* 閉じるボタン */

.business-detail__close {
  position: absolute;
  top: 17px;
  right: 22px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 5px;
  color: var(--color-green-dark);
  font-family: inherit;
  font-size: 13px;
  background: none;
  border: 0;
  cursor: pointer;
}

@media (hover: hover) {
  .business-detail__close:hover {
    color: var(--color-orange);
  }
}

/* 詳細見出し */

.business-detail__main-title {
  padding-right: 100px;
  color: var(--color-green-dark);
  font-size: 24px;
  font-weight: 600;
  line-height: 1.6;
}

/*
 * ========================================
 * 商品・サービス3枚
 * ========================================
 */

.business-products {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 28px;
}

.business-product {
  min-width: 0;
  background-color: #fff;
  border: 1px solid #e7ddd5;
  border-radius: 14px;
  overflow: hidden;
}

.business-product__image {
  height: 210px;
  overflow: hidden;
}

.business-product__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.business-product__body {
  min-height: 120px;
  padding: 20px;
}

.business-product__title {
  color: var(--color-green-dark);
  font-size: 17px;
  font-weight: 600;
  line-height: 1.6;
}

.business-product__text {
  margin-top: 8px;
  font-size: 13px;
  line-height: 1.8;
}

/*
 * ========================================
 * 大切にしていること・関わる職種
 * ========================================
 */

.business-detail__information {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: 30px;
  background-color: #fff;
  border: 1px solid #e7ddd5;
  border-radius: 14px;
  overflow: hidden;
}

.business-detail__important {
  padding: 32px;
}

.business-detail__important-heading,
.business-detail__community-heading,
.business-detail__voices-heading {
  display: flex;
  align-items: center;
  gap: 14px;
}

.business-detail__important-icon,
.business-detail__community-icon,
.business-detail__voice-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.business-detail__sub-title,
.business-detail__roles-title {
  color: var(--color-green);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.6;
}

.business-detail__information-text,
.business-detail__community-text {
  margin-top: 20px;
  font-size: 14px;
  line-height: 2;
}

/* 関わる職種 */

.business-detail__roles {
  padding: 32px;
  border-left: 1px solid #e7ddd5;
}

.business-detail__role-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 24px;
}

.business-detail__role {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 52px;
  padding: 10px 18px;
  color: var(--color-green);
  font-size: 13px;
  line-height: 1.5;
  text-decoration: none;
  background-color: #fff;
  border: 1px solid var(--color-green);
  border-radius: 100px;
  transition: color 0.3s,
    background-color 0.3s,
    border-color 0.3s;
}

.business-detail__role:focus-visible {
  outline: 3px solid rgba(243, 182, 142, 0.5);
  outline-offset: 3px;
}

@media (hover: hover) {
  .business-detail__role:hover {
    color: #fff;
    background-color: var(--color-orange);
    border-color: var(--color-orange);
  }
}

/*
 * ========================================
 * コミュニティ詳細
 * ========================================
 */

.business-detail__information--community {
  grid-template-columns: 1.45fr 0.75fr;
}

.business-detail__community-left {
  min-width: 0;
}

.business-detail__community-important {
  padding: 30px;
}

.business-detail__voices {
  padding: 30px;
  border-top: 1px solid #e7ddd5;
}

.business-detail__voice-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 20px;
}

.business-detail__voice-card {
  position: relative;
  margin: 0;
  padding: 22px;
  background-color: #fffaf7;
  border: 1px solid #f1d2bd;
  border-radius: 12px;
}

.business-detail__voice-text {
  font-size: 13px;
  line-height: 1.8;
}

.business-detail__voice-text::before {
  margin-right: 8px;
  color: var(--color-orange);
  font-size: 22px;
  font-weight: 700;
  content: "“";
}

.business-detail__voice-person {
  display: block;
  margin-top: 10px;
  color: #777;
  font-size: 11px;
  font-style: normal;
}

/*
 * ========================================
 * 事業紹介・スマートフォン版
 * ========================================
 */

@media (max-width: 767px) {
  .business__list {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  /*
   * SP版ではHTMLの並び順に戻します。
   * カードのすぐ下へ詳細が表示されます。
   */

  .business-card[data-business-card],
  .business-detail {
    grid-column: 1;
    grid-row: auto;
  }

  /* 事業カード */

  .business-card {
    transform: none;
  }

  .business-card__image {
    height: 210px;
  }

  .business-card__body {
    min-height: 0;
    padding: 24px 22px;
  }

  .business-card__title {
    font-size: 20px;
  }

  .business-card__text {
    margin-top: 14px;
    font-size: 14px;
  }

  .business-card__button {
    margin-top: 20px;
    padding-top: 0;
  }

  /* 詳細エリア */

  .business-detail {
    width: 100%;
    margin-top: 0;
    padding: 56px 20px 26px;
    border-radius: 16px;
  }

  .business-detail__close {
    top: 15px;
    right: 16px;
  }

  .business-detail__main-title {
    padding-right: 0;
    font-size: 22px;
    line-height: 1.55;
  }

  /* 商品・サービス */

  .business-products {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-top: 24px;
  }

  .business-product__image {
    height: 210px;
  }

  .business-product__body {
    min-height: 0;
    padding: 20px;
  }

  .business-product__title {
    font-size: 18px;
  }

  /* 詳細下側 */

  .business-detail__information,
  .business-detail__information--community {
    grid-template-columns: 1fr;
    margin-top: 24px;
  }

  .business-detail__important,
  .business-detail__community-important,
  .business-detail__voices,
  .business-detail__roles {
    padding: 24px 20px;
  }

  .business-detail__roles {
    border-top: 1px solid #e7ddd5;
    border-left: 0;
  }

  .business-detail__information-text,
  .business-detail__community-text {
    margin-top: 16px;
    font-size: 13px;
    line-height: 1.9;
  }

  .business-detail__sub-title,
  .business-detail__roles-title {
    font-size: 16px;
  }

  .business-detail__important-icon,
  .business-detail__community-icon,
  .business-detail__voice-icon {
    width: 42px;
    height: 42px;
  }

  /* 利用者の声 */

  .business-detail__voice-list {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .business-detail__voice-card {
    padding: 20px;
  }

  /* 職種ボタン */

  .business-detail__role-list {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .business-detail__role {
    min-height: 52px;
  }
}

/*
 * ========================================
 * 9. 大切にしている価値観
 * ========================================
 */

.value {
  position: relative;
  overflow: hidden;
  padding: 120px 0;
  background-color: #fff8f3;
}

/* 背景画像 */

.value::before {
  content: "";
  position: absolute;
  inset: -40px;
  background-image: url("../images/value-bg.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  opacity: 0.45;
  pointer-events: none;
}

/* 文字と円を背景画像より前に表示 */

.value .section__inner {
  position: relative;
  z-index: 1;
}

.value .section__inner {
  width: min(1200px, calc(100% - 80px));
  margin: 0 auto;
}

.value__layout {
  display: grid;
  grid-template-columns: 36% 64%;
  align-items: center;
  min-height: 640px;
}

/*
 * 左側
 * ----------------------------------------
 */

.value__heading {
  position: relative;
  z-index: 2;
  padding-right: 40px;
}

.value__en {
  margin: 0 0 40px;
  color: #f29a68;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.value__main-title {
  margin: 0;
  color: #4f6f5a;
  font-size: 40px;
  font-weight: 500;
  line-height: 1.45;
  letter-spacing: 0.06em;
}

.value__introduction {
  margin: 42px 0 0;
  color: #4a4a45;
  font-size: 16px;
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.04em;
}

/*
 * 右側の円
 * ----------------------------------------
 */

.value__circles {
  position: relative;
  width: 760px;
  max-width: 100%;
  height: 620px;
  margin-left: auto;
}

.value-circle {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 340px;
  height: 340px;
  box-sizing: border-box;
  border-radius: 50%;
  text-align: center;
}

/* 上の円 */

.value-circle--01 {
  top: 0;
  left: 50%;
  z-index: 1;
  border: none;
  background-color: #fcede3;
  transform: translateX(-50%);
}

/* 左下の円 */

.value-circle--02 {
  bottom: 0;
  left: 45px;
  z-index: 2;
  border: none;
  background-color: #e5ece6;
}

/* 右下の円 */

.value-circle--03 {
  right: 45px;
  bottom: 0;
  z-index: 3;
  border: 2px solid #f3b68e;
  background-color: rgba(255, 255, 255, 0.88);
}

/*
 * 円の中の文字
 * ----------------------------------------
 */

.value-circle__number {
  margin: 0;
  color: #f29a68;
  font-family: "Montserrat", sans-serif;
  font-size: 38px;
  font-weight: 400;
  line-height: 1;
}

.value-circle__title {
  margin: 28px 0 0;
  color: #4f6f5a;
  font-size: 19px;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.04em;
}

.value-circle__text {
  margin: 22px 0 0;
  color: #4a4a45;
  font-size: 14px;
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.02em;
}

/*
 * ========================================
 * 大切にしている価値観・スマートフォン版
 * ========================================
 */

@media (max-width: 767px) {
  .value {
    padding: 80px 0;
  }

  .value .section__inner {
    width: calc(100% - 40px);
  }

  .value__layout {
    display: block;
    min-height: auto;
  }

  .value__heading {
    padding-right: 0;
  }

  .value__en {
    margin-bottom: 22px;
    font-size: 12px;
  }

  .value__main-title {
    font-size: 30px;
    line-height: 1.5;
  }

  .value__introduction {
    margin-top: 28px;
    font-size: 14px;
    line-height: 2;
  }

  .value__circles {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    height: auto;
    margin-top: 55px;
  }

  .value-circle {
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
    width: min(300px, 82vw);
    height: min(300px, 82vw);
    transform: none;
  }

  .value-circle--01 {
    z-index: 1;
  }

  .value-circle--02 {
    z-index: 2;
    margin-top: -20px;
    margin-right: 35px;
  }

  .value-circle--03 {
    z-index: 3;
    margin-top: -20px;
    margin-left: 35px;
  }

  .value-circle__number {
    font-size: 32px;
  }

  .value-circle__title {
    margin-top: 22px;
    font-size: 17px;
  }

  .value-circle__text {
    margin-top: 16px;
    font-size: 12px;
    line-height: 1.9;
  }
}

/*
 * ========================================
 * 10. 社員紹介
 * ========================================
 */

.people {
  background-color: var(--color-base);
}

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

.people-card {
  display: grid;
  grid-template-columns: 52% 48%;
  min-height: 270px;
  background-color: var(--color-white);
  border-radius: 16px;
  box-shadow: 0 8px 25px rgba(47, 58, 50, 0.06);
  overflow: hidden;
  transition: transform 0.3s,
    box-shadow 0.3s;
}

.people-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 32px rgba(47, 58, 50, 0.1);
}

.people-card__image {
  min-height: 270px;
  overflow: hidden;
}

.people-card__image img {
  height: 100%;
  object-fit: cover;
}

.people-card__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 30px 25px;
}

.people-card__department {
  color: #e99f73;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.6;
}

.people-card__name {
  margin-top: 10px;
  color: var(--color-green-dark);
  font-size: 23px;
  font-weight: 600;
}

.people-card__link {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  width: fit-content;
  margin-top: 30px;
  padding-bottom: 3px;
  color: var(--color-green);
  border-bottom: 1px solid var(--color-green);
  font-size: 13px;
  font-weight: 700;
  transition: color 0.3s,
    border-color 0.3s;
}

.people-card__link:hover {
  color: var(--color-orange);
  border-color: var(--color-orange);
}

/*
 * ========================================
 * 11. 働く環境
 * ========================================
 */

.environment {
  background-color: var(--color-orange-light);
}

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

.environment-card {
  background-color: var(--color-white);
  border-radius: 16px;
  box-shadow: 0 8px 25px rgba(47, 58, 50, 0.06);
  overflow: hidden;
  transition: transform 0.3s,
    box-shadow 0.3s;
}

.environment-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 32px rgba(47, 58, 50, 0.1);
}

.environment-card__image {
  height: 240px;
  overflow: hidden;
}

.environment-card__image img {
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

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

.environment-card__body {
  min-height: 205px;
  padding: 28px;
}

.environment-card__number {
  color: var(--color-orange);
  font-size: 13px;
  font-weight: 700;
}

.environment-card__title {
  margin-top: 5px;
  color: var(--color-green-dark);
  font-size: 21px;
}

.environment-card__text {
  margin-top: 15px;
  font-size: 14px;
  line-height: 1.9;
}

/*
 * ========================================
 * 12. 職種・仕事紹介
 * ========================================
 */

.jobs {
  background-color: var(--color-base);
}

.jobs__list {
  display: grid;
  gap: 22px;
}

.job-card__link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  width: fit-content;
  margin: 24px 0 0 auto;
  padding: 10px 20px;
  color: var(--color-green);
  background-color: var(--color-white);
  border: 1.5px solid var(--color-green);
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition: color 0.3s,
    background-color 0.3s;
}

.job-card__link:hover {
  color: var(--color-white);
  background-color: var(--color-green);
}

.job-card {
  background-color: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  box-shadow: 0 5px 18px rgba(47, 58, 50, 0.04);
  overflow: hidden;
}

.job-card--green {
  background-color: var(--color-green-light);
}

.job-card__button {
  display: block;
  position: relative;
  width: 100%;
  min-height: 135px;
  padding: 25px 75px 25px 35px;
  text-align: left;
}

.job-card__heading {
  display: grid;
  grid-template-columns: 85px 220px 1fr;
  align-items: center;
  gap: 25px;
}

.job-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 78px;
  height: 78px;
  background-color: rgba(255, 255, 255, 0.78);
  border-radius: 50%;
}

.job-card__icon img {
  width: 58px;
  height: 58px;
  object-fit: contain;
}

.job-card__name {
  color: var(--color-green-dark);
  font-size: 22px;
  font-weight: 700;
}

.job-card__summary {
  font-size: 15px;
  line-height: 1.8;
}

.job-card__toggle {
  position: absolute;
  top: 50%;
  right: 30px;
  color: var(--color-green);
  font-size: 32px;
  font-weight: 300;
  line-height: 1;
  transform: translateY(-50%);
}

.job-card__content {
  display: none;
  padding: 0 35px 35px;
}

.job-card.is-open .job-card__content {
  display: block;
}

.job-card__details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 55px;
  padding: 25px 25px 5px;
  border-top: 1px solid rgba(79, 111, 90, 0.18);
}

.job-card__subtitle {
  position: relative;
  padding-left: 24px;
  color: var(--color-green);
  font-size: 18px;
  font-weight: 600;
}

.job-card__subtitle::before {
  position: absolute;
  top: 7px;
  left: 0;
  width: 16px;
  height: 16px;
  border: 2px solid #8ba894;
  border-radius: 50%;
  content: "";
}

.job-card__work-list {
  margin-top: 16px;
}

.job-card__work-list li {
  position: relative;
  padding-left: 16px;
  font-size: 15px;
  line-height: 1.9;
}

.job-card__work-list li::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "・";
}

.job-card__description {
  margin-top: 16px;
  font-size: 15px;
  line-height: 1.9;
}

/*
 * ========================================
 * 13. 募集要項
 * ========================================
 */

.requirements {
  background-color: var(--color-white);
}

.requirements__tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 35px;
}

.requirements__tab {
  min-height: 42px;
  padding: 8px 21px;
  color: var(--color-green);
  background-color: #fff;
  border: 1px solid var(--color-green);
  border-radius: 22px;
  font-size: 13px;
  font-weight: 700;
  transition: color 0.3s,
    background-color 0.3s,
    border-color 0.3s;
}

.requirements__tab:hover,
.requirements__tab.is-active {
  color: #fff;
  background-color: var(--color-orange);
  border-color: var(--color-orange);
}

.requirements__panel {
  display: none;
}

.requirements__panel.is-active {
  display: block;
}

.requirements__table {
  background-color: #fff;
  border: 1px solid var(--color-border);
  border-radius: 12px;
  box-shadow: 0 7px 24px rgba(47, 58, 50, 0.06);
  overflow: hidden;
}

.requirements__row {
  display: grid;
  grid-template-columns: 190px 1fr;
  border-bottom: 1px solid var(--color-border);
}

.requirements__row:last-child {
  border-bottom: none;
}

.requirements__row dt {
  padding: 22px 27px;
  color: var(--color-green-dark);
  background-color: var(--color-green-light);
  font-size: 14px;
  font-weight: 700;
}

.requirements__row dd {
  padding: 22px 30px;
  font-size: 14px;
  line-height: 1.9;
}

/*
 * ========================================
 * 14. 選考フロー
 * ========================================
 */

.flow {
  overflow: hidden;
  padding: 120px 0;
  background-color: #fff8f3;
}

.flow .section__inner {
  width: min(1320px, calc(100% - 80px));
  margin: 0 auto;
}

/*
 * 見出し
 * ----------------------------------------
 */

.flow .section-heading {
  text-align: center;
}

.flow .section-heading__en {
  margin: 0 0 22px;
  color: #df8656;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.flow .section-heading__title {
  margin: 0;
  color: #4f6f5a;
  font-size: 40px;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.08em;
}

.flow .section-heading__description {
  margin: 34px 0 0;
  color: #4a4a45;
  font-size: 16px;
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.03em;
}

/*
 * カード全体
 * ----------------------------------------
 */

.flow__list {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 46px;
  margin: 80px 0 0;
  padding: 0;
  list-style: none;
}

/*
 * カード
 * ----------------------------------------
 */

.flow-card {
  position: relative;
  min-height: 270px;
  box-sizing: border-box;
  padding: 24px 25px 30px;
  background-color: #ffffff;
  border: 1.5px solid #eadfd7;
  border-radius: 16px;
  text-align: left;
}

/* カード間の三角矢印 */

.flow-card:not(:last-child)::after {
  position: absolute;
  top: 50%;
  right: -33px;
  width: 0;
  height: 0;
  border-top: 11px solid transparent;
  border-bottom: 11px solid transparent;
  border-left: 15px solid #e8ddc5;
  content: "";
  transform: translateY(-50%);
}

/*
 * 01〜05の円
 * ----------------------------------------
 */

.flow-card__number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  margin: 0;
  color: #2f3a32;
  background-color: #f3b68e;
  border-radius: 50%;
  font-family: "Montserrat", sans-serif;
  font-size: 17px;
  font-weight: 500;
  line-height: 1;
}

/*
 * カード見出し
 * ----------------------------------------
 */

.flow-card__title {
  margin: 28px 0 0;
  color: #2f3a32;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.04em;
}

/*
 * カード説明文
 * ----------------------------------------
 */

.flow-card__text {
  margin: 20px 0 0;
  color: #4a4a45;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.9;
  letter-spacing: 0.02em;
}

/*
 * エントリーボタン
 * ----------------------------------------
 */

.flow__button {
  display: flex;
  justify-content: center;
  margin-top: 60px;
}

.flow__entry-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 340px;
  min-height: 60px;
  color: #ffffff;
  background-color: #4f6f5a;
  border: 1px solid #4f6f5a;
  border-radius: 16px;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  transition: color 0.3s,
    background-color 0.3s;
}

.flow__entry-button:hover {
  color: #4f6f5a;
  background-color: #ffffff;
}

/*
 * ========================================
 * 15. よくある質問
 * ========================================
 */

.faq {
  background-color: var(--color-base);
}

.faq__list {
  display: grid;
  gap: 14px;
}

.faq-item {
  background-color: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  overflow: hidden;
}

.faq-item__question {
  display: grid;
  grid-template-columns: 42px 1fr 40px;
  align-items: center;
  width: 100%;
  min-height: 76px;
  padding: 15px 23px;
  text-align: left;
}

.faq-item__question-mark {
  color: var(--color-orange);
  font-size: 20px;
  font-weight: 700;
}

.faq-item__question-text {
  color: var(--color-green-dark);
  font-size: 15px;
  font-weight: 600;
}

.faq-item__toggle {
  color: var(--color-green);
  font-size: 26px;
  font-weight: 300;
  text-align: right;
}

.faq-item__answer {
  display: none;
  background-color: var(--color-green-light);
}

.faq-item.is-open .faq-item__answer {
  display: block;
}

.faq-item__answer-inner {
  display: grid;
  grid-template-columns: 42px 1fr;
  padding: 22px 63px 22px 23px;
  border-top: 1px solid var(--color-border);
}

.faq-item__answer-mark {
  color: var(--color-green);
  font-size: 20px;
  font-weight: 700;
}

.faq-item__answer p {
  font-size: 14px;
  line-height: 1.9;
}

/*
 * ========================================
 * 16. エントリー
 * ========================================
 */

.entry {
  padding: 130px 0 140px;
  background-color: #fff8f3;
  text-align: center;
}

.entry .section__inner {
  width: min(1200px, calc(100% - 80px));
  margin: 0 auto;
}

.entry__content {
  max-width: 1000px;
  margin: 0 auto;
}

.entry__label {
  margin: 0;
  color: #df8656;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.entry__message {
  margin-top: 62px;
}

.entry__company-name {
  margin: 0;
  color: #4f6f5a;
  font-size: 32px;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.04em;
}

.entry__title {
  margin: 26px 0 0;
  color: #4f6f5a;
  font-size: 42px;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.06em;
}

.entry__text {
  margin: 62px 0 0;
  color: #4a4a45;
  font-size: 18px;
  font-weight: 500;
  line-height: 2.4;
  letter-spacing: 0.03em;
}

.entry__button {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(500px, 100%);
  min-height: 72px;
  margin: 92px auto 0;
  padding: 0 70px;
  color: #ffffff;
  background-color: #4f6f5a;
  border: 2px solid #4f6f5a;
  border-radius: 18px;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-decoration: none;
  transition: color 0.3s,
    background-color 0.3s;
}

.entry__button-arrow {
  position: absolute;
  top: 50%;
  right: 30px;
  font-size: 30px;
  font-weight: 400;
  line-height: 1;
  transform: translateY(-53%);
}

.entry__button:hover {
  color: #4f6f5a;
  background-color: #ffffff;
}

/*
 * ========================================
 * 17. フッター
 * ========================================
 */

.footer {
  padding: 58px 0 46px;
  color: #ffffff;
  background-color: #2f3a32;
}

.footer__inner {
  width: min(1200px, calc(100% - 80px));
  margin: 0 auto;
  text-align: center;
}

.footer__nav {
  margin: 0;
}

.footer__nav ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px 32px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer__nav a {
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s;
}

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

.footer__copyright {
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
}

.footer__copyright small {
  font-size: inherit;
}

/*
 * ========================================
 * 18. タブレット版
 * ========================================
 */

@media screen and (max-width: 1100px) {
  .header__inner {
    width: calc(100% - 48px);
  }

  .header__logo-main {
    font-size: 27px;
  }

  .header__logo-sub {
    display: none;
  }

  .header__nav-list {
    gap: 23px;
  }

  .header__entry-button {
    width: 170px;
    margin-left: 25px;
    padding: 0 20px;
    font-size: 13px;
  }

  .fv__inner {
    width: calc(100% - 70px);
  }

  .fv__content {
    width: 530px;
  }

  .fv__title {
    font-size: 50px;
  }

  .value__layout {
    grid-template-columns: 30% 70%;
  }

  .value__circles {
    transform: scale(0.88);
    transform-origin: right center;
  }

  .people-card {
    grid-template-columns: 1fr;
  }

  .people-card__image {
    min-height: auto;
    height: 240px;
  }

  .job-card__heading {
    grid-template-columns: 75px 175px 1fr;
    gap: 18px;
  }

  .flow__list {
    grid-template-columns: 1fr;
    gap: 42px;
    max-width: 600px;
    margin-right: auto;
    margin-left: auto;
  }

  .flow-card {
    min-height: 220px;
  }

  .flow-card:not(:last-child)::after {
    display: block;
    top: auto;
    right: auto;
    bottom: -29px;
    left: 50%;
    border-top: 15px solid #e8ddc5;
    border-right: 11px solid transparent;
    border-bottom: 0;
    border-left: 11px solid transparent;
    transform: translateX(-50%);
  }
}

/*
 * ========================================
 * 19. スマートフォン版
 * ========================================
 */

@media screen and (max-width: 767px) {
  body {
    font-size: 14px;
  }

  html {
    scroll-padding-top: 70px;
  }

  .pc-only {
    display: none;
  }

  .sp-only {
    display: inline;
  }

  /* 共通部分 */

  .section {
    padding: 80px 0;
  }

  /* ABOUT下側の余白を小さくする */

  .about {
    padding-bottom: 0px;
  }

  .section__inner,
  .footer__inner {
    width: calc(100% - 40px);
  }

  .section-heading {
    margin-bottom: 38px;
  }

  .section-heading__en {
    margin-bottom: 10px;
    font-size: 11px;
  }

  .section-heading__title {
    font-size: 30px;
    line-height: 1.5;
  }

  .career-jobs .section-heading__description {
    margin-top: 17px;
    font-size: 13px;
    line-height: 1.9;
    letter-spacing: 0;
    text-align: center;
  }

  .career-jobs .section-heading__description .pc-only {
    display: none;
  }

  .career-jobs .section-heading__description .sp-only {
    display: inline;
  }

  .career-jobs .section-heading__description .sp-description-gap {
    display: block;
    height: 8px;
  }

  .section-button {
    margin-top: 35px;
  }

  .button {
    min-width: 0;
    min-height: 50px;
    padding: 11px 19px;
    font-size: 13px;
  }

  .button--small-outline {
    min-width: 180px;
  }

  .button--wide {
    min-width: 240px;
  }

  /* ヘッダー */

  .header {
    position: absolute;
    height: 70px;
  }

  .header__inner {
    width: calc(100% - 40px);
  }

  .header__logo-main {
    font-size: 22px;
    letter-spacing: 0.13em;
  }

  .header__nav,
  .header__entry-button {
    display: none;
  }

  .header__menu-button {
    position: relative;
    z-index: 102;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    width: 42px;
    height: 42px;
    margin-left: auto;
  }

  .header__menu-button span {
    display: block;
    width: 27px;
    height: 2px;
    margin-left: auto;
    background-color: var(--color-green-dark);
    transition: transform 0.3s,
      opacity 0.3s;
  }

  .header__menu-button.is-open span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .header__menu-button.is-open span:nth-child(2) {
    opacity: 0;
  }

  .header__menu-button.is-open span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .sp-menu {
    position: fixed;
    top: 0;
    right: -100%;
    z-index: 101;
    display: block;
    width: min(85%, 360px);
    height: 100vh;
    padding: 100px 35px 40px;
    background-color: var(--color-white);
    box-shadow: -10px 0 30px rgba(47, 58, 50, 0.13);
    overflow-y: auto;
    transition: right 0.35s;
  }

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

  .sp-menu__list {
    display: grid;
    gap: 0;
  }

  .sp-menu__list a {
    display: block;
    padding: 13px 0;
    color: var(--color-green-dark);
    border-bottom: 1px solid var(--color-border);
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    font-weight: 500;
  }

  .sp-menu__entry-button {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
    padding: 14px 20px;
    color: #fff;
    background-color: var(--color-green);
    border-radius: 25px;
    font-size: 13px;
    font-weight: 700;
  }

  /* ファーストビュー */

  .fv {
    display: block;
    min-height: 850px;
    height: calc(100svh - 70px);
    background-image: url("../images/fv-sp.png");
    /* 家族3人をアップで表示 */
    background-position: calc(100% + 20px) -30px;
    background-size: auto 1080px;
    background-repeat: no-repeat;
    background-color: #fffdfc;
  }

  .fv__overlay {
    background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0) 48%,
    rgba(255, 255, 255, 0.65) 66%,
    rgba(255, 255, 255, 0.96) 78%,
    rgba(255, 255, 255, 1) 100%
  );
  }

  .fv__inner {
    display: flex;
    align-items: flex-end;
    width: calc(100% - 56px);
    height: 100%;
    margin: 0 auto;
    padding: 0 0 65px;
  }

  .fv__content {
    width: 100%;
  }

  .fv__title {
    font-size: 25px;
    font-weight: 500;
    line-height: 1.65;
    letter-spacing: 0.08em;
    text-shadow: 0 1px 3px rgba(255, 255, 255, 1),
    0 0 10px rgba(255, 255, 255, 0.95),
    0 0 20px rgba(255, 255, 255, 0.8);
  }

  .fv__title span {
    display: block;
  }

  .fv__title span:nth-child(2) {
    margin-left: 22px;
  }

  .fv__text {
    margin-top: 20px;
    margin-left: 60px;
    font-size: 12px;
    line-height: 2;
  }

  .fv__buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    margin-top: 30px;
    margin-left: 0;
  }

  .fv__buttons .button {
    width: 225px;
    min-height: 42px;
    padding: 10px 20px;
    font-size: 13px;
  }

  /* メッセージ */

  .message__body {
    font-size: 14px;
    line-height: 2;
  }

  .message__body p + p {
    margin-top: 18px;
  }

  /* 私たちについて */

  .about__background {
    min-height: 680px;
    padding: 75px 0 330px;
    background-image: linear-gradient(
        180deg,
        rgba(247, 245, 241, 1) 0%,
        rgba(247, 245, 241, 0.98) 38%,
        rgba(247, 245, 241, 0.5) 55%,
        rgba(247, 245, 241, 0.08) 68%,
        rgba(247, 245, 241, 0) 78%
      ),
      url("../images/about-sp.png");
    background-size: 100% 100%,
      100% auto;
    background-position: center,
      center calc(100% + 50px);
    background-repeat: no-repeat,
      no-repeat;
  }

  .about__content {
    width: 100%;
    text-shadow: 0 1px 10px rgba(247, 245, 241, 0.95);
  }

  .about__text {
    font-size: 13px;
    line-height: 2;
  }

  .about__text p + p {
    margin-top: 17px;
  }

  .text-link {
    margin-top: 25px;
    font-size: 13px;
  }

  /* 事業紹介 */

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

  .business-card__image {
    height: 210px;
  }

  .business-card__body {
    min-height: 0;
    padding: 24px;
  }

  .business-card__title {
    font-size: 20px;
  }

  .business-card__text {
    margin-top: 12px;
    font-size: 13px;
  }

  /* 価値観 */

  .value__layout {
    display: block;
    min-height: 0;
  }

  .value__heading {
    padding-right: 0;
    text-align: center;
  }

  .value__introduction {
    font-size: 13px;
  }

  .value__circles {
    display: grid;
    gap: 15px;
    width: 100%;
    height: auto;
    margin-top: 40px;
    transform: none;
  }

  .value-circle {
    position: static;
    width: 230px;
    height: 230px;
    margin: 0 auto;
    transform: none;
  }

  .value-circle__title {
    font-size: 19px;
  }

  /* 社員紹介 */

  .people__list {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .people-card {
    grid-template-columns: 1fr;
  }

  .people-card__image {
    height: 220px;
  }

  .people-card__body {
    padding: 22px;
  }

  .people-card__name {
    margin-top: 7px;
    font-size: 21px;
  }

  .people-card__link {
    margin-top: 20px;
  }

  /* 働く環境 */

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

  .environment-card__image {
    height: 220px;
  }

  .environment-card__body {
    min-height: 0;
    padding: 23px;
  }

  .environment-card__title {
    font-size: 20px;
  }

  /* 職種 */

  .jobs__list {
    gap: 15px;
  }

  .job-card__button {
    min-height: 0;
    padding: 20px 50px 20px 18px;
  }

  .job-card__heading {
    grid-template-columns: 58px 1fr;
    gap: 13px;
  }

  .job-card__icon {
    width: 56px;
    height: 56px;
  }

  .job-card__icon img {
    width: 42px;
    height: 42px;
  }

  .job-card__name {
    font-size: 17px;
  }

  .job-card__summary {
    grid-column: 1 / -1;
    font-size: 12px;
    line-height: 1.8;
  }

  .job-card__toggle {
    right: 17px;
    font-size: 27px;
  }

  .job-card__content {
    padding: 0 18px 22px;
  }

  .job-card__details {
    grid-template-columns: 1fr;
    gap: 27px;
    padding: 20px 3px 0;
  }

  .job-card__subtitle {
    font-size: 15px;
  }

  .job-card__work-list li,
  .job-card__description {
    font-size: 12px;
  }

  .button--job {
    min-width: 180px;
    min-height: 43px;
  }

  /* 募集要項 */

  .requirements__tabs {
    justify-content: flex-start;
    gap: 8px;
    margin-bottom: 25px;
  }

  .requirements__tab {
    min-height: 38px;
    padding: 7px 14px;
    font-size: 11px;
  }

  .requirements__row {
    grid-template-columns: 1fr;
  }

  .requirements__row dt {
    padding: 12px 17px;
    font-size: 12px;
  }

  .requirements__row dd {
    padding: 15px 17px 20px;
    font-size: 12px;
  }

  /* 選考フロー */

  .flow__list {
    grid-template-columns: 1fr;
    gap: 13px;
  }

  .flow-card {
    min-height: 0;
    padding: 22px;
  }

  .flow-card__title {
    margin-top: 5px;
    font-size: 17px;
  }

  .flow-card__text {
    margin-top: 8px;
    font-size: 12px;
  }

  .flow-card:not(:last-child)::after {
    display: block;
    top: auto;
    right: 50%;
    bottom: -20px;
    content: "↓";
    transform: translateX(50%);
  }

  /* FAQ */

  .faq-item__question {
    grid-template-columns: 30px 1fr 28px;
    min-height: 70px;
    padding: 14px;
  }

  .faq-item__question-mark {
    font-size: 17px;
  }

  .faq-item__question-text {
    padding-right: 5px;
    font-size: 12px;
  }

  .faq-item__toggle {
    font-size: 22px;
  }

  .faq-item__answer-inner {
    grid-template-columns: 30px 1fr;
    padding: 17px 42px 17px 14px;
  }

  .faq-item__answer-mark {
    font-size: 17px;
  }

  .faq-item__answer p {
    font-size: 12px;
  }

  /* エントリー */

  .entry__company-name {
    font-size: 15px;
  }

  .entry__title {
    font-size: 26px;
    line-height: 1.6;
  }

  .entry__text {
    margin-top: 18px;
    font-size: 13px;
  }

  .entry .button {
    margin-top: 30px;
  }

  /* フッター */

  .footer {
    padding: 38px 0 23px;
  }

  .footer__logo {
    font-size: 20px;
  }

  .footer__nav ul {
    flex-direction: column;
    gap: 10px;
  }
}

/*
 * ========================================
 * SP版ヘッダー内エントリーボタン
 * ========================================
 */

/* PC版では非表示 */

.header__sp-entry-button {
  display: none;
}

/* SP版だけ表示 */

@media (max-width: 767px) {
  .header__sp-entry-button {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-left: auto;
    margin-right: 10px;
    padding: 10px 25px;
    border-radius: 999px;
    background-color: #4f6f5a;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    line-height: 1;
    white-space: nowrap;
  }

  .header__menu-button {
    flex-shrink: 0;
    margin-left: 0;
  }

  .about__title-second {
    display: inline-block;
    margin-left: 60px;
  }
}

/*
 * ========================================
 * メッセージ見出し
 * ========================================
 */

.message {
  background-color: #fff8f3;
}

.message .section-heading__en {
  color: #f3a372;
}

.message__title {
  color: #2f3a32;
  font-size: clamp(32px, 3.5vw, 52px);
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.08em;
  text-align: center;
}

.message__title-line {
  display: block;
}

.message__title-small {
  font-size: 0.7em;
}

.message__title strong {
  color: #4f7a61;
  font-size: 0.87em;
  font-weight: 400;
}

/* SP版 */

@media (max-width: 767px) {
  .message__title {
    font-size: 25px;
    line-height: 1.8;
    letter-spacing: 0.04em;
  }
}

/*
 * ========================================
 * MESSAGEの画像あしらい
 * ========================================
 */

.message {
  position: relative;
  overflow: hidden;
}

.message__decoration {
  position: absolute;
  z-index: 0;
  display: block;
  height: auto;
  object-fit: contain;
  pointer-events: none;
}

/* 左上 */

.message__decoration--left {
  top: 0;
  left: 0;
  width: 380px;
}

/* 右下 */

.message__decoration--right {
  right: 0;
  bottom: 0;
  width: 430px;
}

/* 文章をあしらいより手前にする */

.message .section__inner {
  position: relative;
  z-index: 1;
}

@media (max-width: 767px) {
  .message__decoration--left {
    top: 0;
    left: 0;
    width: 170px;
  }

  .message__decoration--right {
    right: -20px;
    bottom: -10px;
    width: 200px;
  }
}

/* PC版：ABOUTの背景をさらに見えやすくする */

@media (min-width: 768px) {
  .about__background {
    background-image: linear-gradient(
        90deg,
        rgba(247, 245, 241, 0.55) 0%,
        rgba(247, 245, 241, 0.4) 28%,
        rgba(247, 245, 241, 0.12) 48%,
        rgba(247, 245, 241, 0) 62%
      ),
      url("../images/about.jpg");
    background-size: cover;
    background-position: 60% center;
  }

  .about__content {
    width: min(620px, 48vw);
    text-shadow: none;
  }
}

/* PC版：ABOUTラベルと見出しの間隔 */

@media (min-width: 768px) {
  .about .section-heading__en {
    margin-bottom: 35px;
    transform: translateY(-10px);
  }

  /* 見出しと本文の間は短くする */

  .about .section-heading {
    margin-bottom: 30px;
  }
}

/*
 * ========================================
 * ABOUT見出しの文字設定
 * ========================================
 */

/* ABOUT：小さく・オレンジ */

.about .section-heading__en {
  margin-bottom: 20px;
  color: #f3a372;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
}

/* 私たちについて：本文より少し大きく */

.about__subtitle {
  margin-bottom: 24px;
  color: #2f3a32;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.6;
}

/* 家族をやさしくつつむ。：最も大きく・グリーン */

.about .about__title {
  color: #4f6f5a;
  font-size: clamp(34px, 3vw, 46px);
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.06em;
}

/* SP版 */

@media (max-width: 767px) {
  .about .section-heading__en {
    margin-bottom: 8px;
    font-size: 11px;
    transform: translateY(-15px);
  }

  .about {
    padding-top: 30px;
  }

  .about__subtitle {
    margin-bottom: 18px;
    font-size: 16px;
  }

  .about .section-heading {
    margin-bottom: 10px;
  }

  .about .about__title {
    font-size: 24px;
    font-weight: 500;
    letter-spacing: 0.03em;
    white-space: nowrap;
  }

  /* 社員紹介・スマートフォン版 */

  .people-card__body {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 32px 26px 36px;
  }

  .people-card__department {
    margin: 0;
  }

  .people-card__name {
    margin-top: 14px;
  }

  .people-card__link {
    align-self: flex-end;
    margin-top: 5px;
    margin-right: 10px;
    font-size: 13px;
    white-space: nowrap;
  }

  .people__list {
    gap: 55px;
  }
}

/*
 * ========================================
 * 職種・仕事紹介
 * ========================================
 */

.career-jobs {
  padding: 110px 0 120px;
  background-color: var(--color-base, #f7f5f1);
}

/* 職種カード全体 */

.career-jobs__cards {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 24px;
  max-width: 1120px;
  margin: 65px auto 0;
}

/* 上段3枚 */

.career-card:nth-child(1),
.career-card:nth-child(2),
.career-card:nth-child(3) {
  grid-column: span 2;
}

/* 下段2枚を中央に配置 */

.career-card:nth-child(4) {
  grid-column: 2 / 4;
}

.career-card:nth-child(5) {
  grid-column: 4 / 6;
}

/*
 * ========================================
 * 職種カード
 * ========================================
 */

.career-card {
  min-width: 0;
}

.career-card__button {
  display: flex;
  flex-direction: column;
  position: relative;
  width: 100%;
  height: 100%;
  padding: 0;
  overflow: hidden;
  color: var(--color-text, #4a4a45);
  background-color: #fff;
  border: 1px solid rgba(79, 111, 90, 0.18);
  border-radius: 18px;
  box-shadow: 0 8px 28px rgba(47, 58, 50, 0.06);
  text-align: left;
  cursor: pointer;
  transition: transform 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}

.career-card__button:hover {
  transform: translateY(-5px);
  border-color: rgba(79, 111, 90, 0.5);
  box-shadow: 0 14px 34px rgba(47, 58, 50, 0.12);
}

/* 選択中のカード */

.career-card.is-active .career-card__button {
  border: 2px solid var(--color-green, #4f6f5a);
  box-shadow: 0 12px 32px rgba(79, 111, 90, 0.16);
}

/* カード画像 */

.career-card__image {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background-color: #e5ece6;
}

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

.career-card__button:hover .career-card__image img {
  transform: scale(1.04);
}

/* カード内の文字 */

.career-card__body {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  width: 100%;
  min-height: 145px;
  padding: 25px 58px 25px 25px;
}

.career-card__name {
  display: block;
  color: var(--color-green-dark, #2f3a32);
  font-size: 21px;
  font-weight: 700;
  line-height: 1.5;
}

.career-card__summary {
  display: block;
  margin-top: 12px;
  color: var(--color-text, #4a4a45);
  font-size: 14px;
  line-height: 1.8;
}

/* ＋・−ボタン */

.career-card__toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  right: 19px;
  bottom: 25px;
  width: 34px;
  height: 34px;
  color: #fff;
  background-color: var(--color-green, #4f6f5a);
  border-radius: 50%;
  font-size: 23px;
  font-weight: 300;
  line-height: 1;
  transition: color 0.3s ease,
    background-color 0.3s ease,
    transform 0.3s ease;
}

.career-card__button:hover .career-card__toggle {
  background-color: var(--color-orange, #f3b68e);
  transform: rotate(90deg);
}

.career-card.is-active .career-card__toggle {
  background-color: var(--color-orange, #f3b68e);
  transform: rotate(0deg);
}

/*
 * ========================================
 * 職種詳細
 * ========================================
 */

.career-details {
  max-width: 1120px;
  margin: 45px auto 0;
  padding: 45px;
  background-color: #fff;
  border: 1px solid rgba(79, 111, 90, 0.25);
  border-radius: 22px;
  box-shadow: 0 12px 40px rgba(47, 58, 50, 0.08);
  animation: careerDetailsFade 0.45s ease;
}

.career-details[hidden],
.career-details__panel[hidden] {
  display: none !important;
}

@keyframes careerDetailsFade {
  from {
    opacity: 0;
    transform: translateY(15px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* 詳細上部の見出し */

.career-details__heading {
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(79, 111, 90, 0.18);
  text-align: center;
}

.career-details__label {
  color: var(--color-orange, #f3b68e);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.career-details__title {
  margin-top: 8px;
  color: var(--color-green, #4f6f5a);
  font-size: 32px;
  font-weight: 700;
  line-height: 1.4;
}

.career-details__lead {
  margin-top: 14px;
  color: var(--color-text, #4a4a45);
  font-size: 15px;
  line-height: 1.9;
}

/* 表とやりがいの2カラム */

.career-details__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.65fr);
  align-items: start;
  gap: 38px;
  margin-top: 38px;
}

/*
 * ========================================
 * 募集要項表
 * ========================================
 */

.career-details__table {
  overflow: hidden;
  background-color: #fff;
  border: 1px solid rgba(79, 111, 90, 0.25);
  border-radius: 14px;
}

.career-details__row {
  display: grid;
  grid-template-columns: 155px 1fr;
  border-bottom: 1px solid rgba(79, 111, 90, 0.2);
}

.career-details__row:last-child {
  border-bottom: none;
}

.career-details__row dt {
  display: flex;
  align-items: center;
  padding: 20px 22px;
  color: var(--color-green-dark, #2f3a32);
  background-color: var(--color-green-light, #e5ece6);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.7;
}

.career-details__row dd {
  display: flex;
  align-items: center;
  min-width: 0;
  padding: 20px 24px;
  color: var(--color-text, #4a4a45);
  font-size: 14px;
  line-height: 1.9;
}

/*
 * ========================================
 * やりがいポイント
 * ========================================
 */

.career-details__appeal {
  overflow: hidden;
  background-color: #f8f4ee;
  border-radius: 16px;
}

.career-details__appeal-image {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.career-details__appeal-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.career-details__appeal-body {
  padding: 26px 25px 30px;
}

.career-details__appeal-label {
  color: var(--color-orange, #f3b68e);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.career-details__appeal-title {
  margin-top: 7px;
  color: var(--color-green-dark, #2f3a32);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.6;
}

.career-details__appeal-text {
  margin-top: 15px;
  color: var(--color-text, #4a4a45);
  font-size: 14px;
  line-height: 1.9;
}

/* エントリーボタン */

.career-details__entry {
  display: flex;
  justify-content: center;
  margin-top: 42px;
}

.career-details__entry .button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(100%, 390px);
  min-height: 58px;
  padding: 14px 30px;
  color: #fff;
  background-color: var(--color-green, #4f6f5a);
  border: 1px solid var(--color-green, #4f6f5a);
  border-radius: 50px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  transition: color 0.3s ease,
    background-color 0.3s ease,
    border-color 0.3s ease,
    transform 0.3s ease;
}

.career-details__entry .button:hover {
  color: #fff;
  background-color: var(--color-orange, #f3b68e);
  border-color: var(--color-orange, #f3b68e);
  transform: translateY(-3px);
}

/*
 * ========================================
 * タブレット版
 * ========================================
 */

@media (max-width: 1024px) {
  .career-jobs__cards {
    gap: 18px;
  }

  .career-card__body {
    min-height: 150px;
    padding: 22px 52px 22px 20px;
  }

  .career-card__name {
    font-size: 18px;
  }

  .career-card__summary {
    font-size: 13px;
  }

  .career-details {
    padding: 35px;
  }

  .career-details__layout {
    grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
    gap: 25px;
  }

  .career-details__row {
    grid-template-columns: 130px 1fr;
  }

  .career-details__row dt,
  .career-details__row dd {
    padding: 18px;
  }
}

/*
 * ========================================
 * 職種・仕事紹介
 * スマートフォン版
 * ========================================
 */

@media (max-width: 767px) {
  .career-jobs {
    padding: 75px 0 85px;
  }

  /* カードを縦1列にする */

  .career-jobs__cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
    width: 100%;
    margin-top: 42px;
  }

  .career-card:nth-child(1),
  .career-card:nth-child(2),
  .career-card:nth-child(3),
  .career-card:nth-child(4),
  .career-card:nth-child(5) {
    grid-column: auto;
  }

  /* スマートフォンのカード */

  .career-card__button {
    display: grid;
    grid-template-columns: 115px minmax(0, 1fr);
    min-height: 128px;
    border-radius: 14px;
  }

  .career-card__button:hover {
    transform: none;
  }

  .career-card__image {
    width: 115px;
    height: 100%;
    min-height: 128px;
    aspect-ratio: auto;
  }

  .career-card__button:hover .career-card__image img {
    transform: none;
  }

  .career-card__body {
    justify-content: center;
    min-height: 128px;
    padding: 20px 45px 20px 18px;
  }

  .career-card__name {
    font-size: 17px;
    line-height: 1.5;
  }

  .career-card__summary {
    margin-top: 7px;
    font-size: 11px;
    line-height: 1.7;
  }

  .career-card__toggle {
    right: 13px;
    bottom: 50%;
    width: 29px;
    height: 29px;
    font-size: 19px;
    transform: translateY(50%);
  }

  .career-card__button:hover .career-card__toggle {
    background-color: var(--color-green, #4f6f5a);
    transform: translateY(50%);
  }

  .career-card.is-active .career-card__toggle {
    background-color: var(--color-orange, #f3b68e);
    transform: translateY(50%);
  }

  /* 詳細エリア */

  .career-details {
    width: 100%;
    margin-top: 30px;
    padding: 27px 17px 30px;
    border-radius: 16px;
  }

  .career-details__heading {
    padding: 0 5px 24px;
  }

  .career-details__label {
    font-size: 10px;
  }

  .career-details__title {
    margin-top: 5px;
    font-size: 24px;
  }

  .career-details__lead {
    margin-top: 10px;
    font-size: 12px;
    line-height: 1.8;
    text-align: left;
  }

  /* 表とやりがいを縦にする */

  .career-details__layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 25px;
  }

  /* スマートフォンの募集要項表 */

  .career-details__table {
    border-radius: 11px;
  }

  .career-details__row {
    display: grid;
    grid-template-columns: 1fr;
  }

  .career-details__row dt {
    display: block;
    padding: 11px 15px;
    font-size: 12px;
  }

  .career-details__row dd {
    display: block;
    padding: 14px 15px 17px;
    font-size: 12px;
    line-height: 1.8;
  }

  /* スマートフォンのやりがい */

  .career-details__appeal {
    border-radius: 12px;
  }

  .career-details__appeal-image {
    aspect-ratio: 16 / 10;
  }

  .career-details__appeal-body {
    padding: 22px 18px 25px;
  }

  .career-details__appeal-label {
    font-size: 9px;
  }

  .career-details__appeal-title {
    margin-top: 5px;
    font-size: 17px;
    line-height: 1.6;
  }

  .career-details__appeal-text {
    margin-top: 12px;
    font-size: 12px;
    line-height: 1.9;
  }

  /* スマートフォンのエントリーボタン */

  .career-details__entry {
    margin-top: 28px;
  }

  .career-details__entry .button {
    width: 100%;
    min-height: 52px;
    padding: 12px 18px;
    font-size: 13px;
  }
}

/*
 * ========================================
 * 小さいスマートフォン
 * ========================================
 */

@media (max-width: 374px) {
  .career-card__button {
    grid-template-columns: 100px minmax(0, 1fr);
  }

  .career-card__image {
    width: 100px;
  }

  .career-card__body {
    padding-left: 14px;
  }

  .career-card__name {
    font-size: 15px;
  }

  .career-card__summary {
    font-size: 10px;
  }

  .career-details {
    padding-right: 13px;
    padding-left: 13px;
  }
}

/* 詳細が表示されたことを分かりやすくする */

.career-details:not([hidden]) {
  position: relative;
  scroll-margin-top: 110px;
}

.career-details:not([hidden])::before {
  position: absolute;
  top: -17px;
  left: 50%;
  padding: 7px 22px;
  color: #fff;
  background-color: var(--color-orange, #f3b68e);
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  content: "選択した職種の詳細";
  transform: translateX(-50%);
  white-space: nowrap;
}

@media (max-width: 767px) {
  .career-details:not([hidden]) {
    scroll-margin-top: 85px;
  }

  .career-details:not([hidden])::before {
    top: -14px;
    padding: 6px 17px;
    font-size: 10px;
  }
}

/*
 * ========================================
 * 働く人・社員紹介
 * ========================================
 */

.people {
  overflow: hidden;
  background-color: #f7f5f1;
}

.people .section__inner {
  width: min(1180px, calc(100% - 80px));
  margin: 0 auto;
}

/* 社員カード一覧 */

.people__cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 38px 42px;
  margin-top: 64px;
}

/* 社員カード */

.people-card {
  display: grid;
  grid-template-columns: 52% 48%;
  min-height: 310px;
  overflow: hidden;
  border-radius: 20px;
  background-color: #fff;
  box-shadow: 0 15px 40px rgba(74, 74, 69, 0.08);
}

.people-card__image {
  min-height: 310px;
  overflow: hidden;
}

.people-card__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.people-card__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 42px 34px;
}

.people-card__position {
  margin: 0 0 18px;
  color: #e99568;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.7;
}

.people-card__name {
  margin: 0;
  color: #2f3a32;
  font-size: 28px;
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 1.5;
}

/* インタビューボタン */

.people-card__button {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: fit-content;
  min-width: 190px;
  margin-top: 42px;
  padding: 0 0 8px;
  border: 0;
  border-bottom: 1px solid #4f6f5a;
  background: transparent;
  color: #4f6f5a;
  font-family: inherit;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.5;
  cursor: pointer;
  transition: color 0.3s ease,
    border-color 0.3s ease;
}

.people-card__arrow {
  display: inline-block;
  margin-left: 26px;
  font-size: 19px;
  transition: transform 0.3s ease;
}

@media (hover: hover) {
  .people-card__button:hover {
    color: #e99568;
    border-color: #e99568;
  }

  .people-card__button:hover .people-card__arrow {
    transform: translateX(6px);
  }
}

/* 選択中のボタン */

.people-card__button.is-active {
  color: #e99568;
  border-color: #e99568;
}

.people-card__button.is-active .people-card__arrow {
  transform: rotate(90deg);
}

/*
 * ========================================
 * インタビュー詳細
 * ========================================
 */

/* hidden属性がある間は非表示 */

.interview-detail[hidden] {
  display: none !important;
}

.interview-detail {
  position: relative;
  margin-top: 70px;
  padding: 70px 72px;
  border: 1px solid rgba(79, 111, 90, 0.13);
  border-radius: 28px;
  background-color: #fff;
  box-shadow: 0 20px 60px rgba(74, 74, 69, 0.09);
  animation: interviewFadeIn 0.5s ease;
}

@keyframes interviewFadeIn {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* 閉じるボタン */

.interview-detail__close {
  position: absolute;
  top: 26px;
  right: 28px;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid #4f6f5a;
  border-radius: 50%;
  background-color: #fff;
  color: #4f6f5a;
  font-family: inherit;
  font-size: 27px;
  font-weight: 300;
  line-height: 1;
  cursor: pointer;
  transition: color 0.3s ease,
    background-color 0.3s ease,
    transform 0.3s ease;
}

@media (hover: hover) {
  .interview-detail__close:hover {
    background-color: #4f6f5a;
    color: #fff;
    transform: rotate(90deg);
  }
}

/* インタビュー上部 */

.interview-detail__header {
  padding-right: 80px;
  text-align: center;
}

.interview-detail__position {
  margin: 0 0 14px;
  color: #e99568;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.7;
}

.interview-detail__name {
  margin: 0;
  color: #2f3a32;
  font-size: 32px;
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1.5;
}

.interview-detail__catch {
  margin: 25px 0 0;
  color: #4f6f5a;
  font-size: 36px;
  font-weight: 500;
  letter-spacing: 0.07em;
  line-height: 1.7;
}

/* プロフィール */

.interview-detail__profile {
  margin-top: 50px;
  padding: 30px 36px;
  border-radius: 16px;
  background-color: #faf9f7;
}

.interview-profile {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 48px;
  margin: 0;
}

.interview-profile__item {
  display: grid;
  grid-template-columns: 80px 1fr;
  align-items: start;
  margin: 0;
}

.interview-profile__item dt {
  color: #4f6f5a;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.8;
}

.interview-profile__item dd {
  margin: 0;
  color: #4a4a45;
  font-size: 14px;
  line-height: 1.8;
}

/* 質問部分と仕事風景 */

.interview-detail__contents {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(360px, 0.82fr);
  align-items: center;
  gap: 58px;
  margin-top: 58px;
}

.interview-detail__text {
  min-width: 0;
}

.interview-question {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 16px;
  padding: 0 0 28px;
  margin: 0 0 28px;
  border-bottom: 1px dashed #d8c7b0;
}

.interview-question:last-child {
  margin-bottom: 0;
}

.interview-question__label {
  margin: 0;
  color: #e99568;
  font-family: Arial, sans-serif;
  font-size: 26px;
  font-weight: 700;
  line-height: 1.4;
}

.interview-question__body h4 {
  margin: 2px 0 13px;
  color: #4f6f5a;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.03em;
  line-height: 1.7;
}

.interview-question__body p {
  margin: 0;
  color: #4a4a45;
  font-size: 14px;
  line-height: 2;
}

/* 仕事風景画像 */

.interview-detail__work-image {
  overflow: hidden;
  border-radius: 18px;
  background-color: #f7f5f1;
  box-shadow: 0 15px 35px rgba(74, 74, 69, 0.08);
}

.interview-detail__work-image img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

/* 応募者へのメッセージ */

.interview-message {
  display: grid;
  grid-template-columns: 54px 1fr;
  align-items: center;
  gap: 20px;
  margin-top: 54px;
  padding: 28px 34px;
  border-radius: 16px;
  background-color: #eef2eb;
}

.interview-message__icon {
  margin: 0;
  color: #4f6f5a;
  font-size: 38px;
  line-height: 1;
  text-align: center;
}

.interview-message__body h4 {
  margin: 0 0 8px;
  color: #4f6f5a;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.6;
}

.interview-message__body p {
  margin: 0;
  color: #4a4a45;
  font-size: 14px;
  line-height: 1.9;
}

/*
 * ========================================
 * 社員紹介・タブレット版
 * ========================================
 */

@media (max-width: 1024px) {
  .people .section__inner {
    width: min(900px, calc(100% - 60px));
  }

  .people__cards {
    gap: 30px;
  }

  .people-card {
    grid-template-columns: 48% 52%;
    min-height: 280px;
  }

  .people-card__image {
    min-height: 280px;
  }

  .people-card__body {
    padding: 30px 25px;
  }

  .people-card__name {
    font-size: 24px;
  }

  .people-card__button {
    min-width: 170px;
    margin-top: 30px;
    font-size: 14px;
  }

  .interview-detail {
    padding: 60px 48px;
  }

  .interview-detail__contents {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .interview-detail__work-image {
    width: min(600px, 100%);
    margin: 0 auto;
  }
}

/*
 * ========================================
 * 社員紹介・スマートフォン版
 * ========================================
 */

@media (max-width: 767px) {
  .people .section__inner {
    width: calc(100% - 40px);
  }

  .people .section-heading__description {
    line-height: 1.9;
  }

  /* 社員カード */

  .people__cards {
    grid-template-columns: 1fr;
    gap: 26px;
    margin-top: 42px;
  }

  .people-card {
    grid-template-columns: 45% 55%;
    min-height: 210px;
    border-radius: 16px;
  }

  .people-card__image {
    min-height: 210px;
  }

  .people-card__body {
    padding: 24px 18px;
  }

  .people-card__position {
    margin-bottom: 10px;
    font-size: 11px;
    line-height: 1.6;
  }

  .people-card__name {
    font-size: 20px;
    letter-spacing: 0.03em;
  }

  .people-card__button {
    width: 100%;
    min-width: 0;
    margin-top: 25px;
    padding-bottom: 6px;
    font-size: 12px;
  }

  .people-card__arrow {
    margin-left: 10px;
    font-size: 16px;
  }

  /* インタビュー詳細 */

  .interview-detail {
    margin-top: 44px;
    padding: 58px 20px 30px;
    border-radius: 20px;
  }

  .interview-detail__close {
    top: 14px;
    right: 14px;
    width: 39px;
    height: 39px;
    font-size: 23px;
  }

  .interview-detail__header {
    padding-right: 0;
  }

  .interview-detail__position {
    font-size: 11px;
  }

  .interview-detail__name {
    font-size: 25px;
  }

  .interview-detail__catch {
    margin-top: 18px;
    font-size: 24px;
    letter-spacing: 0.04em;
    line-height: 1.65;
  }

  /* プロフィール */

  .interview-detail__profile {
    margin-top: 34px;
    padding: 22px 18px;
  }

  .interview-profile {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .interview-profile__item {
    grid-template-columns: 64px 1fr;
    padding-bottom: 11px;
    border-bottom: 1px solid rgba(216, 199, 176, 0.6);
  }

  .interview-profile__item:last-child {
    padding-bottom: 0;
    border-bottom: 0;
  }

  .interview-profile__item dt,
  .interview-profile__item dd {
    font-size: 12px;
  }

  /* インタビュー本文 */

  .interview-detail__contents {
    grid-template-columns: 1fr;
    gap: 32px;
    margin-top: 38px;
  }

  .interview-question {
    grid-template-columns: 31px 1fr;
    gap: 9px;
    padding-bottom: 24px;
    margin-bottom: 24px;
  }

  .interview-question__label {
    font-size: 21px;
  }

  .interview-question__body h4 {
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 15px;
    line-height: 1.65;
  }

  .interview-question__body p {
    font-size: 13px;
    line-height: 1.9;
  }

  .interview-detail__work-image {
    width: 100%;
    border-radius: 14px;
  }

  /* 応募者へのメッセージ */

  .interview-message {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 34px;
    padding: 24px 20px;
    text-align: left;
  }

  .interview-message__icon {
    text-align: left;
  }

  .interview-message__body h4 {
    font-size: 16px;
  }

  .interview-message__body p {
    font-size: 13px;
    line-height: 1.9;
  }
}

/*
 * ========================================
 * 小さいスマートフォン
 * ========================================
 */

@media (max-width: 390px) {
  .people-card {
    grid-template-columns: 42% 58%;
  }

  .people-card__body {
    padding: 20px 14px;
  }

  .people-card__position {
    font-size: 10px;
  }

  .people-card__name {
    font-size: 18px;
  }

  .people-card__button {
    font-size: 11px;
  }

  .interview-detail {
    padding-right: 16px;
    padding-left: 16px;
  }
}

/*
 * ========================================
 * インタビュー詳細・シンプル表示
 * ========================================
 */

.interview-detail {
  padding-top: 72px;
  padding-bottom: 58px;
}

.interview-detail__contents {
  align-items: center;
  margin-top: 0;
}

.interview-detail__side {
  align-self: center;
}

.interview-detail__catch-under-image {
  position: relative;
  margin: 30px 0 0;
  padding-top: 24px;
  color: #4f6f5a;
  font-size: 25px;
  font-weight: 500;
  letter-spacing: 0.07em;
  line-height: 1.75;
  text-align: center;
}

.interview-detail__catch-under-image::before {
  position: absolute;
  top: 0;
  left: 50%;
  width: 46px;
  height: 2px;
  background-color: #f3b68e;
  content: "";
  transform: translateX(-50%);
}

/* SP版 */

@media (max-width: 767px) {
  .interview-detail {
    padding-top: 65px;
    padding-bottom: 32px;
  }

  .interview-detail__contents {
    gap: 30px;
    margin-top: 0;
  }

  .interview-detail__side {
    display: flex;
    flex-direction: column;
  }

  .interview-detail__work-image {
    order: 1;
  }

  .interview-detail__catch-under-image {
    order: 2;
    margin-top: 22px;
    padding-top: 19px;
    font-size: 20px;
    line-height: 1.7;
  }
}

/*
 * ========================================
 * PC版・社員カードを少し小さくする
 * ========================================
 */

@media (min-width: 1025px) {
  .people .section__inner {
    width: min(1080px, calc(100% - 80px));
  }

  .people__cards {
    gap: 28px 32px;
    margin-top: 50px;
  }

  .people-card {
    grid-template-columns: 50% 50%;
    min-height: 255px;
    border-radius: 17px;
  }

  .people-card__image {
    min-height: 255px;
  }

  .people-card__body {
    padding: 28px 25px;
  }

  .people-card__position {
    margin-bottom: 12px;
    font-size: 12px;
    line-height: 1.6;
  }

  .people-card__name {
    font-size: 24px;
  }

  .people-card__button {
    min-width: 170px;
    margin-top: 30px;
    font-size: 13px;
  }

  .people-card__arrow {
    margin-left: 18px;
    font-size: 17px;
  }
}

/*
 * ========================================
 * SP版・インタビューを社員カード直下に表示
 * ========================================
 */

@media (max-width: 767px) {
  .people__cards > .interview-detail {
    grid-column: 1 / -1;
    width: 100%;
    margin-top: -10px;
    margin-bottom: 10px;
  }
}

/* 事業紹介の詳細へ移動した際のヘッダー分の余白 */

.business-detail {
  scroll-margin-top: 120px;
}

@media (max-width: 767px) {
  .business-detail {
    scroll-margin-top: 90px;
  }
}

/* 事業詳細へ移動したときのヘッダー分の余白 */

[data-business-detail] {
  scroll-margin-top: 120px;
}

@media (max-width: 767px) {
  [data-business-detail] {
    scroll-margin-top: 90px;
  }
}

/*
 * ========================================
 * 働く環境・もっと見る
 * ========================================
 */

.environment-more-button {
  display: flex;
  justify-content: center;
  margin-top: 56px;
}

.environment-toggle,
.environment-close {
  width: 240px;
  min-height: 58px;
  padding: 12px 28px;
  border: 2px solid #4f6f5a;
  border-radius: 999px;
  background-color: #fff;
  color: #4f6f5a;
  font-family: inherit;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: background-color 0.3s ease,
    color 0.3s ease,
    transform 0.3s ease;
}

.environment-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.environment-toggle:hover,
.environment-close:hover {
  background-color: #4f6f5a;
  color: #fff;
  transform: translateY(-2px);
}

.environment-toggle-icon {
  font-size: 22px;
  font-weight: 400;
  line-height: 1;
}

/* 最初は非表示 */

.environment-details {
  display: grid;
  grid-template-rows: 0fr;
  margin-top: 40px;
  opacity: 0;
  visibility: hidden;
  transition: grid-template-rows 0.6s ease,
    opacity 0.4s ease,
    visibility 0.6s ease;
}

/* 表示された状態 */

.environment-details.is-open {
  grid-template-rows: 1fr;
  opacity: 1;
  visibility: visible;
}

.environment-details-inner {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid #eadccd;
  border-radius: 28px;
  background-color: rgba(255, 255, 255, 0.72);
  box-shadow: 0 18px 45px rgba(79, 62, 48, 0.05);
}

.environment-detail-row {
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  gap: 55px;
  padding: 48px 50px;
}

.environment-detail-row + .environment-detail-row {
  border-top: 1px solid #eadccd;
}

.environment-detail-title {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 22px;
}

.environment-detail-number {
  color: #4f6f5a;
  font-family: "Montserrat", sans-serif;
  font-size: 17px;
  font-weight: 700;
}

.environment-detail-title h3 {
  margin: 0;
  color: #4f6f5a;
  font-size: 25px;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.environment-detail-heading > p {
  margin: 0;
  color: #4a4a45;
  font-size: 15px;
  line-height: 2;
}

/* 制度・サポート */

.environment-support-list {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 8px;
}

.environment-support-item {
  min-height: 150px;
  padding: 22px 8px 18px;
  border: 1px solid #eadfd5;
  border-radius: 12px;
  background-color: #fff;
  text-align: center;
  display: grid;
  grid-template-rows: 58px 1fr;
  justify-items: center;
  align-items: start;
}

.environment-support-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  margin: 0;
  border: 2px solid #4f6f5a;
  border-radius: 50%;
  color: #4f6f5a;
  font-size: 24px;
  line-height: 1;
}

.environment-support-item:nth-child(4) .environment-support-icon,
.environment-support-item:nth-child(5) .environment-support-icon {
  border-color: #f3b68e;
  color: #e99d70;
}

.environment-support-item p {
  align-self: start;
  margin: 12px 0 0;
  color: #2f3a32;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.7;
}

/* オフィス・社内託児所 */

.environment-office-images {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  align-items: center;
}

.environment-office-image {
  margin: 0;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  border-radius: 12px;
  background-color: #f3eee8;
}

.environment-office-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* 詳細内の閉じるボタン */

.environment-close-button {
  display: flex;
  justify-content: center;
  padding: 0 20px 44px;
}

.environment-close {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

/* 開いている間、上側のボタンを隠す */

.environment-more-button.is-hidden {
  display: none;
}

/*
 * ========================================
 * 働く環境・スマートフォン版
 * ========================================
 */

@media (max-width: 767px) {
  .environment-more-button {
    margin-top: 36px;
  }

  .environment-toggle,
  .environment-close {
    width: 210px;
    min-height: 54px;
    font-size: 14px;
  }

  .environment-details {
    margin-top: 30px;
  }

  .environment-details-inner {
    width: calc(100% - 32px);
    border-radius: 20px;
  }

  .environment-detail-row {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 36px 20px;
  }

  .environment-detail-title {
    gap: 12px;
    margin-bottom: 16px;
  }

  .environment-detail-number {
    font-size: 14px;
  }

  .environment-detail-title h3 {
    font-size: 21px;
  }

  .environment-detail-heading > p {
    font-size: 14px;
    line-height: 1.9;
  }

  .environment-detail-heading > p br {
    display: none;
  }

  .environment-support-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .environment-support-item {
    min-height: 135px;
    padding: 18px 6px;
  }

  .environment-support-icon {
    width: 46px;
    height: 46px;
    margin-bottom: 12px;
    font-size: 21px;
  }

  .environment-support-item p {
    font-size: 12px;
  }

  .environment-office-images {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .environment-office-image {
    aspect-ratio: 16 / 10;
  }

  .environment-close-button {
    padding-bottom: 36px;
  }
}

/*
 * ========================================
 * SP版：働く環境と職種カードの画像バランス
 * ========================================
 */

@media (max-width: 767px) {
  /* 働く環境の画像を少し低くする */

  .environment-card__image {
    height: 210px;
  }

  .environment-card__image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

/*
 * ========================================
 * SP版：職種カードを縦型にする
 * ========================================
 */

@media (max-width: 767px) {
  /* カード全体 */

  .career-card__button {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 240px auto;
    width: 100%;
    padding: 0;
    overflow: hidden;
  }

  /* 画像を囲んでいる部分 */

  .career-card__button > :has(img) {
    grid-column: 1;
    grid-row: 1;
    width: 100%;
    height: 240px;
    min-height: 0;
  }

  /* 画像 */

  .career-card__button img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 0;
    object-fit: cover;
    object-position: center;
  }

  /* 白い文章部分 */

  .career-card__body {
    grid-column: 1;
    grid-row: 2;
    width: 100%;
    min-height: 145px;
    padding: 20px 82px 20px 28px;
    box-sizing: border-box;
  }

  /* 職種名 */

  .career-card__name {
    display: block;
    margin: 0 0 10px;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.4;
  }

  /* 短い説明文 */

  .career-card__summary {
    display: block;
    margin: 0;
    font-size: 15px;
    line-height: 1.7;
  }

  /* ＋ボタン */

  .career-card__toggle {
    position: static;
    grid-column: 1;
    grid-row: 2;
    justify-self: end;
    align-self: center;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    min-width: 48px;
    margin-right: 24px;
    padding: 0;
    border-radius: 50%;
    transform: none;
  }
}

/*
 * ========================================
 * SP版：選考フローを横並び・コンパクトにする
 * ========================================
 */

@media (max-width: 767px) {
  .flow-card {
    width: 100%;
    min-height: 0;
    margin: 0 auto;
    padding: 20px 18px;
    display: grid;
    /* 左側を小さくして、文章側を広くする */
    grid-template-columns: 105px minmax(0, 1fr);
    grid-template-rows: auto auto;
    column-gap: 16px;
    row-gap: 8px;
    align-items: center;
    box-sizing: border-box;
    text-align: left;
  }

  /* 01〜05の丸 */

  .flow-card__number {
    grid-column: 1;
    grid-row: 1;
    width: 48px;
    height: 48px;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    justify-self: center;
    font-size: 17px;
    line-height: 1;
  }

  /* エントリーなどの見出し */

  .flow-card__title {
    grid-column: 1;
    grid-row: 2;
    width: 100%;
    margin: 0;
    font-size: 16px;
    line-height: 1.4;
    text-align: center;
    white-space: nowrap;
  }

  /* 右側の短い説明文 */

  .flow-card__text {
    grid-column: 2;
    grid-row: 1 / 3;
    width: 100%;
    margin: 0;
    font-size: 13px;
    line-height: 1.9;
    text-align: left;
    word-break: normal;
    overflow-wrap: anywhere;
  }

  /* HTMLに入っているbrを無効にする */

  .flow-card__text br {
    display: none;
  }
}

@media (max-width: 767px) {
  .career-details {
    width: 100%;
    margin: 14px 0 28px;
  }
}

/*
 * ========================================
 * エントリー：葉っぱのあしらい
 * ========================================
 */

.entry {
  position: relative;
  overflow: hidden;
}

.entry__leaf {
  position: absolute;
  z-index: 0;
  width: clamp(220px, 24vw, 400px);
  height: auto;
  opacity: 0.6;
  pointer-events: none;
}

/* 右上：下向き */

.entry__leaf--top {
  top: -35px;
  right: -35px;
  transform: rotate(180deg);
}

/* 左下：上向き */

.entry__leaf--bottom {
  bottom: -45px;
  left: -35px;
  transform: none;
}

/* 文章やボタンを葉っぱより前に出す */

.entry .section__inner {
  position: relative;
  z-index: 1;
}

@media (max-width: 767px) {
  .entry__leaf {
    width: 190px;
    opacity: 0.6;
  }

  /* 右上：下向き */

  .entry__leaf--top {
    top: -10px;
    right: -20px;
    transform: rotate(180deg);
  }

  /* 左下：上向き */

  .entry__leaf--bottom {
    bottom: -35px;
    left: -20px;
    transform: none;
  }
}

/* 大切にしている価値観・SP背景調整 */

@media (max-width: 767px) {
  .value::before {
    inset: auto -40px -50px;
    width: calc(100% + 80px);
    height: 420px;
    background-size: auto 420px;
    background-position: 32% bottom;
    opacity: 0.55;
  }
}