@charset "UTF-8";
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default padding */
ul,
ol {
  padding: 0;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
h5,
p,
ul,
ol,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Set core root defaults */
html {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  line-height: 1.5;
  min-height: 100vh;
  text-rendering: optimizeLegibility;
}

/* Remove list styles on ul, ol elements with a class attribute */
ul,
ol {
  list-style: none;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img {
  display: block;
  max-width: 100%;
  width: 100%;
}

/* Natural flow and rhythm in articles by default */
article > * + * {
  margin-top: 1em;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Blur images when they have no alt attribute */
/* フォームリセット */
input,
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}

textarea {
  resize: vertical;
}

input[type=submit],
input[type=button],
label,
button,
select {
  cursor: pointer;
}

select::-ms-expand {
  display: none;
}

/* ホバー */
a {
  -webkit-text-decoration: none;
  color: inherit;
  text-decoration: none;
  transition: opacity 0.3s;
}

/* リキッドレイアウト対応 */
/*********************************
	BASE SET
*********************************/
html {
  -webkit-text-size-adjust: 100%;
  font-size: 100%;
  overflow-x: hidden;
  scroll-behavior: auto;
}

body {
  --font-scale: 1;
  /* デフォルト（〜768） */
  --base-font-size: calc(4.2666666667vw * var(--font-scale));
  color: #211613;
  font-family: "Noto Serif JP", serif;
  font-size: calc(4.2666666667vw * 1);
  font-size: var(--base-font-size);
  line-height: 1.6;
  overflow-x: hidden;
  scroll-margin-top: calc(100 / 16 * (4.2666666667vw * 1));
  scroll-margin-top: calc(100 / 16 * calc(4.2666666667vw * 1));
  scroll-margin-top: calc(100 / 16 * var(--base-font-size));
  /* 768px〜 */
  /* $viewport-pc〜 */
}
@media screen and (min-width: 768px) {
  body {
    --base-font-size: calc(
      1.1111111111vw * var(--font-scale)
    );
  }
}
@media (min-width: 1440px) {
  body {
    --base-font-size: calc(16px * var(--font-scale));
  }
}

body:has(.l-drawer.is-open) {
  overflow-y: hidden;
}

a {
  display: inline-block;
  transition: all 0.3s ease 0s;
}
@media (hover: hover) {
  a:hover {
    opacity: 0.7;
  }
}

img {
  -o-object-fit: contain;
  height: auto;
     object-fit: contain;
}

input,
button,
select,
textarea {
  color: #211613;
  margin: 0;
  padding: 0;
}

summary {
  display: block;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

/* ====================================
  l-drawer（ドロワーメニュー）
==================================== */
.l-drawer {
  background: #00a161;
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow-y: auto;
  position: fixed;
  right: 0;
  top: 0;
  transform: translateX(calc(100% + 1px));
  transition: transform 1s cubic-bezier(0.4, 0, 0.2, 1);
  width: 100%;
  z-index: 100;
}
@media screen and (min-width: 768px) {
  .l-drawer {
    width: calc(453 / 16 * var(--base-font-size));
  }
}

.l-drawer.is-open {
  transform: translateX(0);
}

/* 閉じるボタンエリア */
.l-drawer__menu {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: calc(13 / 16 * var(--base-font-size));
  position: absolute;
  right: calc(16 / 16 * var(--base-font-size));
  top: calc(26 / 16 * var(--base-font-size));
}
@media screen and (min-width: 768px) {
  .l-drawer__menu {
    right: calc(54 / 16 * var(--base-font-size));
    top: calc(44 / 16 * var(--base-font-size));
  }
}

.l-drawer__close {
  align-items: center;
  background-color: #211613;
  border: 1.5px solid #211613;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  flex-shrink: 0;
  height: calc(18 / 16 * var(--base-font-size));
  justify-content: center;
  position: relative;
  transition: background 0.2s;
  width: calc(18 / 16 * var(--base-font-size));
}
@media screen and (min-width: 768px) {
  .l-drawer__close {
    background-color: #ffffff;
    border: 1.5px solid #ffffff;
    height: calc(24 / 16 * var(--base-font-size));
    width: calc(24 / 16 * var(--base-font-size));
  }
}
.l-drawer__close::before {
  border-left: 1.5px solid #ffffff;
  border-top: 1.5px solid #ffffff;
  content: "";
  display: block;
  height: calc(6 / 16 * var(--base-font-size));
  position: absolute;
  transform: rotate(135deg) translate(0.5px, 0.5px);
  width: calc(6 / 16 * var(--base-font-size));
}
@media screen and (min-width: 768px) {
  .l-drawer__close::before {
    border-left: 1.5px solid #00a161;
    border-top: 1.5px solid #00a161;
  }
}

.l-drawer__menu-label {
  font-size: calc(11 / 16 * var(--base-font-size));
  letter-spacing: 0.3em;
  transform: translateY(4em);
  transition: color 0.2s;
  writing-mode: vertical-rl;
}
@media screen and (min-width: 768px) {
  .l-drawer__menu-label {
    color: #ffffff;
    letter-spacing: 0.5em;
    transform: translateY(5em);
  }
}

/* ドロワー内STORIESリスト */
.l-drawer__stories {
  align-items: flex-start;
  display: flex;
  flex: 1;
  justify-content: end;
  padding: calc(80 / 16 * var(--base-font-size)) calc(60 / 16 * var(--base-font-size)) calc(40 / 16 * var(--base-font-size)) calc(40 / 16 * var(--base-font-size));
}
@media screen and (min-width: 768px) {
  .l-drawer__stories {
    padding: calc(80 / 16 * var(--base-font-size)) calc(90 / 16 * var(--base-font-size)) calc(40 / 16 * var(--base-font-size)) calc(40 / 16 * var(--base-font-size));
  }
}

.l-drawer__stories-list {
  display: flex;
  flex-direction: row-reverse;
  gap: calc(18 / 16 * var(--base-font-size));
}
@media screen and (min-width: 768px) {
  .l-drawer__stories-list {
    gap: calc(20 / 16 * var(--base-font-size));
  }
}

.l-drawer__stories-item {
  writing-mode: vertical-rl;
}

.l-drawer__stories-item a {
  -webkit-text-decoration: none;
  color: #ffffff;
  display: block;
  font-size: calc(15 / 16 * var(--base-font-size));
  letter-spacing: 0.1em;
  line-height: 1.3;
  text-decoration: none;
}
@media screen and (min-width: 768px) {
  .l-drawer__stories-item a {
    background-color: rgba(255, 255, 255, 0.5);
    color: #211613;
    font-size: calc(18 / 16 * var(--base-font-size));
    padding: 0.3em 0;
  }
}
.l-drawer__stories-item a:hover {
  opacity: 0.7;
}

.l-drawer__stories-label {
  color: #ffffff;
  font-size: calc(11 / 16 * var(--base-font-size));
  letter-spacing: 0.5em;
  margin-left: calc(30 / 16 * var(--base-font-size));
  padding-top: calc(2 / 16 * var(--base-font-size));
  writing-mode: vertical-rl;
}
@media screen and (min-width: 768px) {
  .l-drawer__stories-label {
    margin-left: calc(20 / 16 * var(--base-font-size));
  }
}

/* ドロワーナビゲーション */
.l-drawer__nav {
  padding: calc(0 / 16 * var(--base-font-size)) calc(36 / 16 * var(--base-font-size));
}
@media screen and (min-width: 768px) {
  .l-drawer__nav {
    padding: calc(0 / 16 * var(--base-font-size)) calc(58 / 16 * var(--base-font-size));
  }
}

.l-drawer__nav-list {
  display: flex;
  flex-direction: column;
  list-style: none;
}

.l-drawer__nav-link {
  -webkit-text-decoration: none;
  align-items: center;
  color: #ffffff;
  display: inline-flex;
  font-size: calc(15 / 16 * var(--base-font-size));
  font-weight: 500;
  gap: calc(12 / 16 * var(--base-font-size));
  letter-spacing: 0.05em;
  padding: 0.3em 0;
  text-decoration: none;
  transition: opacity 0.2s;
}
@media screen and (min-width: 768px) {
  .l-drawer__nav-link {
    font-size: calc(18 / 16 * var(--base-font-size));
    gap: calc(16 / 16 * var(--base-font-size));
  }
}
.l-drawer__nav-link:hover {
  opacity: 0.7;
}

.l-drawer__nav-icon {
  align-items: center;
  background: #ffffff;
  border-radius: 50%;
  display: inline-flex;
  flex-shrink: 0;
  height: calc(20 / 16 * var(--base-font-size));
  justify-content: center;
  width: calc(20 / 16 * var(--base-font-size));
}
@media screen and (min-width: 768px) {
  .l-drawer__nav-icon {
    height: calc(24 / 16 * var(--base-font-size));
    width: calc(24 / 16 * var(--base-font-size));
  }
}
.l-drawer__nav-icon::after {
  border-right: 1.5px solid #00a161;
  border-top: 1.5px solid #00a161;
  content: "";
  display: block;
  height: calc(6 / 16 * var(--base-font-size));
  transform: rotate(45deg) translate(-1px, 1px);
  width: calc(6 / 16 * var(--base-font-size));
}

/* 会社情報 */
.l-drawer__info {
  color: #ffffff;
  margin-top: auto;
  padding: calc(36 / 16 * var(--base-font-size)) calc(36 / 16 * var(--base-font-size)) calc(30 / 16 * var(--base-font-size));
}
@media screen and (min-width: 768px) {
  .l-drawer__info {
    padding: calc(36 / 16 * var(--base-font-size)) calc(60 / 16 * var(--base-font-size)) calc(40 / 16 * var(--base-font-size));
  }
}

.l-drawer__info-subtitle {
  font-size: calc(14 / 16 * var(--base-font-size));
  letter-spacing: 0.1em;
}
@media screen and (min-width: 768px) {
  .l-drawer__info-subtitle {
    font-size: calc(18 / 16 * var(--base-font-size));
  }
}

.l-drawer__info-company {
  margin-top: 0.5em;
  width: calc(240 / 16 * var(--base-font-size));
}
@media screen and (min-width: 768px) {
  .l-drawer__info-company {
    width: calc(280 / 16 * var(--base-font-size));
  }
}
.l-drawer__info-company img {
  height: auto;
  width: 100%;
}

.l-drawer__info-address {
  font-size: calc(11 / 16 * var(--base-font-size));
  font-style: normal;
  letter-spacing: 0.02em;
  margin-top: 1em;
  opacity: 0.8;
}
@media screen and (min-width: 768px) {
  .l-drawer__info-address {
    font-size: calc(13 / 16 * var(--base-font-size));
  }
}

.l-drawer__info-copy {
  font-size: calc(10 / 16 * var(--base-font-size));
  letter-spacing: 0.08em;
  margin-top: calc(30 / 16 * var(--base-font-size));
}
@media screen and (min-width: 768px) {
  .l-drawer__info-copy {
    font-size: calc(12 / 16 * var(--base-font-size));
  }
}

/* ====================================
  l-footer（フッター）
==================================== */
.l-footer {
  background: #00a161;
  color: #ffffff;
  padding: calc(25 / 16 * var(--base-font-size)) 8% calc(36 / 16 * var(--base-font-size));
  text-align: center;
}
@media screen and (min-width: 768px) {
  .l-footer {
    padding: calc(60 / 16 * var(--base-font-size)) calc(68 / 16 * var(--base-font-size)) calc(40 / 16 * var(--base-font-size));
    text-align: left;
  }
}

/* ナビエリア（PCのみ） */
.l-footer__nav-area {
  display: none;
}
@media screen and (min-width: 768px) {
  .l-footer__nav-area {
    display: block;
  }
}

.l-footer__nav-label {
  font-size: calc(12 / 16 * var(--base-font-size));
  letter-spacing: 0.4em;
}

.l-footer__menu {
  display: flex;
  gap: 7%;
  margin-top: 1em;
}

.l-footer__stories-list {
  display: flex;
  flex-direction: column;
  gap: 0.5em;
  list-style: none;
}

.l-footer__stories-link {
  -webkit-text-decoration: none;
  align-items: center;
  color: #ffffff;
  display: inline-flex;
  font-size: calc(18 / 16 * var(--base-font-size));
  gap: 1em;
  letter-spacing: 0.05em;
  text-decoration: none;
}

.l-footer__stories-icon {
  align-items: center;
  background: white;
  border-radius: 50%;
  display: inline-flex;
  flex-shrink: 0;
  height: calc(24 / 16 * var(--base-font-size));
  justify-content: center;
  width: calc(24 / 16 * var(--base-font-size));
}
.l-footer__stories-icon::after {
  border-right: 1.5px solid #00a161;
  border-top: 1.5px solid #00a161;
  content: "";
  display: block;
  height: calc(5 / 16 * var(--base-font-size));
  transform: rotate(45deg) translate(-1px, 1px);
  width: calc(5 / 16 * var(--base-font-size));
}

.l-footer__nav-list {
  display: flex;
  flex-direction: column;
  gap: 0.5em;
  list-style: none;
}

.l-footer__nav-link {
  -webkit-text-decoration: none;
  align-items: center;
  color: #ffffff;
  display: inline-flex;
  font-size: calc(18 / 16 * var(--base-font-size));
  gap: 1em;
  letter-spacing: 0.05em;
  text-decoration: none;
}

.l-footer__nav-icon {
  align-items: center;
  background: white;
  border-radius: 50%;
  display: inline-flex;
  flex-shrink: 0;
  height: calc(24 / 16 * var(--base-font-size));
  justify-content: center;
  width: calc(24 / 16 * var(--base-font-size));
}
.l-footer__nav-icon::after {
  border-right: 1.5px solid #00a161;
  border-top: 1.5px solid #00a161;
  content: "";
  display: block;
  height: calc(5 / 16 * var(--base-font-size));
  transform: rotate(45deg) translate(-1px, 1px);
  width: calc(5 / 16 * var(--base-font-size));
}

/* 会社情報エリア */
@media screen and (min-width: 768px) {
  .l-footer__info {
    align-items: flex-end;
    display: flex;
    flex-direction: column;
    margin-top: 0.5em;
    text-align: right;
  }
}

.l-footer__story-title {
  font-size: calc(15 / 16 * var(--base-font-size));
  letter-spacing: 0.1em;
}
@media screen and (min-width: 768px) {
  .l-footer__story-title {
    font-size: calc(22 / 16 * var(--base-font-size));
  }
}

.l-footer__logo {
  margin-left: auto;
  margin-right: auto;
  margin-top: 0.8em;
  width: calc(250 / 16 * var(--base-font-size));
}
@media screen and (min-width: 768px) {
  .l-footer__logo {
    margin: 1em 0 0;
    width: calc(440 / 16 * var(--base-font-size));
  }
}
.l-footer__logo img {
  height: auto;
  width: 100%;
}

/* 下段（コピーライト＋住所） */
.l-footer__bottom {
  align-items: center;
  display: flex;
  flex-direction: column-reverse;
  gap: calc(16 / 16 * var(--base-font-size));
  margin-top: calc(10 / 16 * var(--base-font-size));
}
@media screen and (min-width: 768px) {
  .l-footer__bottom {
    align-items: center;
    flex-direction: row;
    gap: calc(8 / 16 * var(--base-font-size));
    justify-content: space-between;
    margin-top: calc(40 / 16 * var(--base-font-size));
  }
}

.l-footer__address {
  font-size: calc(10 / 16 * var(--base-font-size));
  font-style: normal;
  letter-spacing: 0.088em;
}
@media screen and (min-width: 768px) {
  .l-footer__address {
    font-size: calc(16 / 16 * var(--base-font-size));
  }
}

.l-footer__copy {
  font-size: calc(10 / 16 * var(--base-font-size));
  letter-spacing: 0.08em;
}
@media screen and (min-width: 768px) {
  .l-footer__copy {
    font-size: calc(12 / 16 * var(--base-font-size));
  }
}

/* ====================================
  l-header（サイドバー: STORIESリスト＋MENUトリガー）
==================================== */
.l-header {
  align-items: flex-start;
  display: flex;
  position: absolute;
  right: calc(16 / 16 * var(--base-font-size));
  top: calc(26 / 16 * var(--base-font-size));
  z-index: 10;
}
@media screen and (min-width: 768px) {
  .l-header {
    right: calc(36 / 16 * var(--base-font-size));
    top: calc(25 / 16 * var(--base-font-size));
  }
}

/* ロゴ */
.l-header-logo {
  left: calc(18 / 16 * var(--base-font-size));
  position: absolute;
  top: calc(28 / 16 * var(--base-font-size));
  width: calc(254 / 16 * var(--base-font-size));
  z-index: 10;
}
@media screen and (min-width: 768px) {
  .l-header-logo {
    left: calc(68 / 16 * var(--base-font-size));
    top: calc(58 / 16 * var(--base-font-size));
    width: calc(386 / 16 * var(--base-font-size));
  }
}
.l-header-logo img {
  height: auto;
  width: 100%;
}

.p-top .l-header-logo {
  display: none;
}

/* 現在ページのSTORIESリンク */
.pg-story01 .l-header__stories-item:nth-child(1) a,
.pg-story02 .l-header__stories-item:nth-child(2) a,
.pg-story03 .l-header__stories-item:nth-child(3) a,
.pg-story04 .l-header__stories-item:nth-child(4) a {
  background-color: rgba(255, 255, 255, 0.8);
}

/* STORIESリスト（PCのみ） */
.l-header__stories {
  display: none;
}

@media screen and (min-width: 768px) {
  .p-top .l-header__stories,
  .pg-story01 .l-header__stories,
  .pg-story02 .l-header__stories,
  .pg-story03 .l-header__stories,
  .pg-story04 .l-header__stories {
    align-items: flex-start;
    display: flex;
    gap: calc(16 / 16 * var(--base-font-size));
    padding-top: calc(52 / 16 * var(--base-font-size));
  }
}

.l-header__stories-list {
  display: flex;
  flex-direction: row-reverse;
  gap: calc(20 / 16 * var(--base-font-size));
  list-style: none;
}

.l-header__stories-item a {
  -webkit-text-decoration: none;
  background-color: rgba(255, 255, 255, 0.5);
  display: block;
  font-size: calc(18 / 16 * var(--base-font-size));
  letter-spacing: 0.1em;
  line-height: 1.3;
  padding: 0.3em 0;
  text-decoration: none;
  writing-mode: vertical-rl;
}
.l-header__stories-item a:hover {
  background-color: white;
  opacity: 1;
}

.l-header__stories-label {
  color: #ffffff;
  font-size: calc(12 / 16 * var(--base-font-size));
  letter-spacing: 0.4em;
  padding-top: calc(4 / 16 * var(--base-font-size));
  writing-mode: vertical-rl;
}

/* MENUトリガー */
.l-header__menu {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: calc(10 / 16 * var(--base-font-size));
}
@media screen and (min-width: 768px) {
  .l-header__menu {
    gap: calc(13 / 16 * var(--base-font-size));
    padding: calc(20 / 16 * var(--base-font-size)) calc(16 / 16 * var(--base-font-size));
  }
}

.l-header__menu-btn {
  align-items: center;
  background-color: #211613;
  border: 1.5px solid #211613;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  height: calc(18 / 16 * var(--base-font-size));
  justify-content: center;
  position: relative;
  transition: background 0.2s;
  width: calc(18 / 16 * var(--base-font-size));
}
@media screen and (min-width: 768px) {
  .l-header__menu-btn {
    background-color: #ffffff;
    border: 1.5px solid #ffffff;
    height: calc(24 / 16 * var(--base-font-size));
    width: calc(24 / 16 * var(--base-font-size));
  }
}
.l-header__menu-btn::before {
  border-left: 1.5px solid #ffffff;
  border-top: 1.5px solid #ffffff;
  content: "";
  display: block;
  height: calc(6 / 16 * var(--base-font-size));
  position: absolute;
  transform: rotate(-45deg) translate(0.5px, 0.5px);
  width: calc(6 / 16 * var(--base-font-size));
}
@media screen and (min-width: 768px) {
  .l-header__menu-btn::before {
    border-left: 1.5px solid #211613;
    border-top: 1.5px solid #211613;
  }
}
.l-header__menu-btn:hover {
  background-color: #00a161;
  border: 1.5px solid #00a161;
}
@media screen and (min-width: 768px) {
  .l-header__menu-btn:hover::before {
    border-left: 1.5px solid #ffffff;
    border-top: 1.5px solid #ffffff;
  }
}

.l-header__menu-label {
  font-size: calc(11 / 16 * var(--base-font-size));
  letter-spacing: 0.3em;
  transform: translateY(4em);
  transition: color 0.2s;
  writing-mode: vertical-rl;
}
@media screen and (min-width: 768px) {
  .l-header__menu-label {
    color: #ffffff;
    letter-spacing: 0.5em;
    transform: translateY(5em);
  }
}

/* ====================================
  l-header-scroll（スクロール追従ヘッダー）
==================================== */
.l-header-scroll {
  height: 100lvh;
  left: 0;
  opacity: 0;
  pointer-events: none;
  position: fixed;
  right: 0;
  top: 0;
  transition: opacity 0.5s ease, transform 0.5s ease;
  z-index: 10;
}

.l-header-scroll.is-visible {
  opacity: 1;
}

/* ロゴ */
.l-header-scroll__logo {
  display: none;
  left: calc(50 / 16 * var(--base-font-size));
  pointer-events: none;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  transition: opacity 0.5s ease;
}
@media screen and (min-width: 768px) {
  .l-header-scroll__logo {
    display: block;
  }
}
.l-header-scroll__logo img {
  -o-object-fit: contain;
  aspect-ratio: 21/230;
  height: auto;
     object-fit: contain;
  width: calc(21 / 16 * var(--base-font-size));
}

.l-header-scroll.is-visible .l-header-scroll__logo {
  pointer-events: auto;
}

.l-header-scroll.is-footer-visible .l-header-scroll__logo,
.l-header-scroll.is-footer-visible .l-header-scroll__menu {
  opacity: 0;
  pointer-events: none;
}

/* MENUトリガー */
.l-header-scroll__menu {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: calc(13 / 16 * var(--base-font-size));
  pointer-events: none;
  position: absolute;
  right: calc(16 / 16 * var(--base-font-size));
  top: calc(26 / 16 * var(--base-font-size));
  transition: opacity 0.5s ease;
}
@media screen and (min-width: 768px) {
  .l-header-scroll__menu {
    right: calc(40 / 16 * var(--base-font-size));
    top: calc(50 / 16 * var(--base-font-size));
  }
}

.l-header-scroll.is-visible .l-header-scroll__menu {
  pointer-events: auto;
}

.l-header-scroll__menu-btn {
  align-items: center;
  background-color: #211613;
  border: 1.5px solid #211613;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  height: calc(24 / 16 * var(--base-font-size));
  justify-content: center;
  position: relative;
  transition: background 0.2s;
  width: calc(24 / 16 * var(--base-font-size));
}
.l-header-scroll__menu-btn::before {
  border-left: 1.5px solid #ffffff;
  border-top: 1.5px solid #ffffff;
  content: "";
  display: block;
  height: calc(6 / 16 * var(--base-font-size));
  position: absolute;
  transform: rotate(-45deg) translate(0.5px, 0.5px);
  width: calc(6 / 16 * var(--base-font-size));
}
.l-header-scroll__menu-btn:hover {
  background: rgba(33, 22, 19, 0.7);
}

.l-header-scroll__menu-label {
  color: #211613;
  font-size: calc(11 / 16 * var(--base-font-size));
  letter-spacing: 0.5em;
  transform: translateY(5em);
  transition: color 0.2s;
  writing-mode: vertical-rl;
}
@media screen and (min-width: 768px) {
  .l-header-scroll__menu-label {
    transform: translateY(5em);
  }
}

.l-inner {
  margin-left: auto;
  margin-right: auto;
  padding-left: 8%;
  padding-right: 8%;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .l-inner {
    max-width: 920px;
    padding-left: 60px;
    padding-right: 60px;
  }
}

.c-accordion__summary {
  align-items: center;
  background-color: #f2f2f2;
  border: 1px solid #ccc;
  cursor: pointer;
  display: flex;
  font-weight: 700;
  justify-content: space-between;
  list-style: none;
  padding: 1rem;
  position: relative;
  transition: background-color 0.3s;
}

.c-accordion__item.is-opened .c-accordion__summary {
  background-color: #e1f2f2;
}

.c-accordion__content {
  background-color: #fff;
  border: 1px solid #ccc;
  border-top: none;
  overflow: hidden;
  padding: 0 1rem;
}

.c-accordion__summary::-webkit-details-marker {
  display: none;
}

/* アイコンはデフォルトでは何も表示しない */
.c-accordion__icon {
  align-items: center;
  display: flex;
  flex-shrink: 0;
  height: 1rem;
  justify-content: center;
  margin-left: auto;
  position: relative;
  width: 1rem;
}

/* プラス記号 */
.c-accordion__icon--plus::before,
.c-accordion__icon--plus::after {
  background-color: #243239;
  content: "";
  height: 2px;
  left: 0;
  position: absolute;
  top: 50%;
  transition: transform 0.3s ease;
  width: 100%;
}

.c-accordion__icon--plus::after {
  transform: rotate(90deg);
}

.c-accordion__item.is-opened .c-accordion__icon--plus::after {
  transform: rotate(0deg);
}

/* ▼矢印パターン */
.c-accordion__icon--arrow {
  border: solid #243239;
  border-width: 0 2px 2px 0;
  display: inline-block;
  height: 0.5rem;
  padding: 3px;
  transform: rotate(45deg);
  transition: transform 0.3s ease;
  width: 0.5rem;
}

.c-accordion__item.is-opened .c-accordion__icon--arrow {
  transform: rotate(-135deg);
}

.c-back-to-top {
  align-items: center;
  background-color: #00beca;
  border: none;
  border-radius: 50%;
  bottom: 2rem;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  color: #fff;
  cursor: pointer;
  display: flex;
  font-size: 1.5rem;
  height: 48px;
  justify-content: center;
  line-height: 1;
  opacity: 0;
  position: fixed;
  right: 2rem;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  visibility: hidden;
  width: 48px;
  z-index: 999;
}

.c-back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
}

.c-back-to-top.is-hidden-bottom {
  opacity: 0 !important;
  visibility: hidden !important;
}

/* ベースボタン */
.c-button {
  align-items: center;
  background-color: #ffffff;
  border: none;
  border-radius: calc(30 / 16 * var(--base-font-size));
  color: #00a161;
  cursor: pointer;
  display: inline-flex;
  font-size: calc(14 / 16 * var(--base-font-size));
  font-weight: 600;
  justify-content: center;
  line-height: 1.5;
  padding: 1em 2em;
  transition: all 0.3s ease 0s;
}
@media screen and (min-width: 768px) {
  .c-button {
    font-size: calc(18 / 16 * var(--base-font-size));
  }
}

.c-card {
  background-color: #ffffff;
  border: 1px solid #e1f2f2;
  border-radius: calc(8 / 16 * var(--base-font-size));
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: box-shadow 0.3s ease;
}

.c-card__image {
  aspect-ratio: 16/9;
  overflow: hidden;
}
.c-card__image img {
  -o-object-fit: cover;
  display: block;
  height: 100%;
     object-fit: cover;
  width: 100%;
}

.c-card__body {
  display: flex;
  flex-direction: column;
  gap: calc(8 / 16 * var(--base-font-size));
  padding: calc(16 / 16 * var(--base-font-size));
}

.c-card__category {
  color: #8d9ba2;
  font-size: calc(12 / 16 * var(--base-font-size));
  font-weight: 500;
}

.c-card__title {
  color: #211613;
  font-size: calc(16 / 16 * var(--base-font-size));
  font-weight: 700;
}

.c-card__text {
  color: #8d9ba2;
  font-size: calc(14 / 16 * var(--base-font-size));
  font-weight: 400;
}

.c-checkbox-group {
  border: none;
  margin: 0;
  padding: 0;
}

.c-checkbox-group__legend {
  color: #211613;
  font-size: calc(14 / 16 * var(--base-font-size));
  font-weight: 700;
  margin-bottom: calc(8 / 16 * var(--base-font-size));
}

.c-checkbox-list {
  display: flex;
  flex-direction: column;
  gap: calc(12 / 16 * var(--base-font-size));
  list-style: none;
  margin: 0;
  padding: 0;
}

.c-checkbox-list__item {
  align-items: center;
  display: flex;
  gap: calc(8 / 16 * var(--base-font-size));
  position: relative;
}

.c-checkbox {
  align-items: center;
  display: flex;
  gap: calc(8 / 16 * var(--base-font-size));
  position: relative;
}

.c-checkbox__input {
  border: 0;
  height: 1px;
  margin: -1px;
  opacity: 0;
  padding: 0;
  position: absolute;
  width: 1px;
}
.c-checkbox__input:focus {
  outline: none;
}
.c-checkbox__input:focus-visible + .c-checkbox__label::before {
  outline: 2px solid #00a161;
  outline-offset: 2px;
}

/* 枠 */
.c-checkbox__label {
  color: #211613;
  cursor: pointer;
  font-size: calc(14 / 16 * var(--base-font-size));
  font-weight: 400;
  padding-left: calc(24 / 16 * var(--base-font-size));
  position: relative;
}
.c-checkbox__label::before {
  border: 1px solid #211613;
  border-radius: calc(4 / 16 * var(--base-font-size));
  content: "";
  height: calc(16 / 16 * var(--base-font-size));
  left: 0;
  position: absolute;
  top: calc(3 / 16 * var(--base-font-size));
  width: calc(16 / 16 * var(--base-font-size));
}
@media screen and (min-width: 768px) {
  .c-checkbox__label::before {
    height: calc(18 / 16 * var(--base-font-size));
    top: calc(4 / 16 * var(--base-font-size));
    width: calc(18 / 16 * var(--base-font-size));
  }
}
.c-checkbox__label::after {
  border: solid #ffffff;
  border-width: 0 0 2px 2px;
  content: "";
  height: calc(5 / 16 * var(--base-font-size));
  left: calc(3 / 16 * var(--base-font-size));
  opacity: 0;
  position: absolute;
  top: calc(10 / 16 * var(--base-font-size));
  transform: translateY(-50%) rotate(-45deg);
  transition: opacity 0.2s ease;
  width: calc(10 / 16 * var(--base-font-size));
}
@media screen and (min-width: 768px) {
  .c-checkbox__label::after {
    left: calc(4 / 16 * var(--base-font-size));
    top: calc(12 / 16 * var(--base-font-size));
  }
}

/* チェック時のマーク表示 */
.c-checkbox__input:checked + .c-checkbox__label::after {
  opacity: 1;
}

/* キーボード操作時のフォーカス見た目 */
.c-checkbox__input:focus-visible + .c-checkbox__label::before {
  outline: calc(2 / 16 * var(--base-font-size)) solid #ffffff;
  outline-offset: calc(2 / 16 * var(--base-font-size));
}

.c-fade {
  opacity: 0;
  transition: all 1.6s ease-in-out;
}
.c-fade.js-fade-up {
  transform: translateY(0px);
}
.c-fade.js-fade-down {
  transform: translateY(-20px);
}
.c-fade.js-fade-left {
  transform: translateX(20px);
}
.c-fade.js-fade-right {
  transform: translateX(-20px);
}
.c-fade.is-inview {
  opacity: 1;
  transform: translate(0, 0);
}

.c-fade-stagger {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1.6s ease-in-out, transform 1.6s ease-in-out;
}
.c-fade-stagger.is-inview {
  opacity: 1;
  transform: none;
}

.c-fixed-cta {
  -webkit-text-decoration: none;
  background-color: #00a5c0;
  border-radius: 9999px;
  bottom: 2rem;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  color: #fff;
  font-weight: 700;
  padding: 0.75rem 1.5rem;
  position: fixed;
  right: 2rem;
  text-decoration: none;
  transition: background-color 0.3s ease, opacity 0.3s ease, visibility 0.3s ease;
  z-index: 998;
}

.c-fixed-cta:hover {
  background-color: #008fa8;
}

.c-fixed-cta.is-hidden-bottom {
  opacity: 0 !important;
  visibility: hidden !important;
}

.c-floating {
  bottom: 0;
  left: 0;
  position: fixed;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  width: 100%;
  z-index: 1000;
}
@media screen and (min-width: 768px) {
  .c-floating {
    bottom: auto;
    bottom: initial;
    left: auto;
    left: initial;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: auto;
    width: initial;
  }
}
.c-floating.is-hidden {
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
}
@media screen and (min-width: 768px) {
  .c-floating.is-hidden {
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
  }
}

.c-floating__inner {
  background-color: #00a53b;
  color: #ffffff;
  display: flex;
  font-weight: 700;
  padding: calc(10 / 16 * var(--base-font-size)) calc(15 / 16 * var(--base-font-size));
}
@media screen and (min-width: 768px) {
  .c-floating__inner {
    border-radius: calc(10 / 16 * var(--base-font-size)) 0 0 calc(10 / 16 * var(--base-font-size));
    writing-mode: vertical-rl;
  }
}

.c-floating__link {
  align-items: center;
  display: flex;
  gap: calc(10 / 16 * var(--base-font-size));
  justify-content: center;
  padding: calc(5 / 16 * var(--base-font-size)) calc(5 / 16 * var(--base-font-size));
  width: 50%;
}
@media screen and (min-width: 768px) {
  .c-floating__link {
    justify-content: flex-start;
    padding: calc(10 / 16 * var(--base-font-size)) calc(5 / 16 * var(--base-font-size));
    width: auto;
    width: initial;
  }
}
.c-floating__link + .c-floating__link {
  border-left: 0.5px solid #ffffff;
}
@media screen and (min-width: 768px) {
  .c-floating__link + .c-floating__link {
    border-left: none;
    border-top: 0.5px solid #ffffff;
  }
}

.c-floating__link-icon img {
  aspect-ratio: 1/1;
  height: auto;
  width: calc(18 / 16 * var(--base-font-size));
}

.c-floating__link-text {
  font-size: calc(12 / 16 * var(--base-font-size));
}
@media screen and (min-width: 768px) {
  .c-floating__link-text {
    font-size: calc(16 / 16 * var(--base-font-size));
  }
}

.c-fontsize {
  align-items: center;
  display: flex;
}

.c-fontsize__list {
  align-items: center;
  display: flex;
  gap: calc(5 / 16 * var(--base-font-size));
  margin-left: 1em;
}

.c-fontsize__item button {
  display: block;
}
.c-fontsize__item button img {
  width: calc(18 / 16 * var(--base-font-size));
}

.c-form {
  width: 100%;
}

.c-form__input {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: #ffffff;
  border-radius: calc(8 / 16 * var(--base-font-size));
  display: block;
  font-size: calc(16 / 16 * var(--base-font-size));
  padding: calc(6 / 16 * var(--base-font-size)) calc(10 / 16 * var(--base-font-size));
  transition: border-color 0.2s ease;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .c-form__input {
    padding: calc(12 / 16 * var(--base-font-size)) calc(16 / 16 * var(--base-font-size));
  }
}
.c-form__input:focus {
  border-color: #00a161;
  outline: none;
}

.c-form__textarea {
  background-color: #ffffff;
  border: 1px solid #8d9ba2;
  border-radius: calc(8 / 16 * var(--base-font-size));
  color: #211613;
  display: block;
  font-size: calc(16 / 16 * var(--base-font-size));
  min-height: calc(160 / 16 * var(--base-font-size));
  padding: calc(12 / 16 * var(--base-font-size)) calc(16 / 16 * var(--base-font-size));
  resize: vertical;
  transition: border-color 0.2s ease;
  width: 100%;
}
.c-form__textarea:focus {
  border-color: #00a161;
  outline: none;
}

.c-link-arrow {
  align-items: baseline;
  display: inline-flex;
  font-size: calc(16 / 16 * var(--base-font-size));
  font-weight: 700;
  gap: calc(8 / 16 * var(--base-font-size));
  letter-spacing: 0.01em;
  line-height: 1.625;
  position: relative;
}
.c-link-arrow::before {
  aspect-ratio: 1/1;
  background-image: url(../images/common/arrow_right_02.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  flex-shrink: 0;
  margin-left: -1.125em;
  transform: translateY(0.2em);
  width: 1.125em;
}

*:has(> .c-link-arrow) {
  padding-left: 1em;
}

.c-link-bg {
  align-items: center;
  background-color: #00a53b;
  color: #ffffff;
  display: inline-flex;
  font-size: calc(16 / 16 * var(--base-font-size));
  font-weight: 700;
  gap: calc(8 / 16 * var(--base-font-size));
  justify-content: center;
  letter-spacing: 0.01em;
  line-height: 1.625;
  min-width: calc(300 / 16 * var(--base-font-size));
  padding: 0.8em;
  position: relative;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .c-link-bg {
    width: auto;
  }
}
.c-link-bg::before {
  aspect-ratio: 1/1;
  background-image: url(../images/common/arrow_right_circle_green_01.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  width: calc(18 / 16 * var(--base-font-size));
}

.c-link-file {
  align-items: center;
  color: #3fa9f5;
  display: inline-flex;
  flex-wrap: wrap;
  font-size: calc(14 / 16 * var(--base-font-size));
  gap: calc(5 / 16 * var(--base-font-size));
  line-height: 1.6;
  position: relative;
}
.c-link-file::after {
  aspect-ratio: 19/22;
  background-image: url(../images/common/icon_file_pdf_01.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  height: auto;
  width: 1em;
}
@media (hover: hover) {
  .c-link-file:hover {
    -webkit-text-decoration: underline;
    text-decoration: underline;
    text-decoration-thickness: 0.5px;
    text-underline-offset: 0.2em;
  }
}

.c-list {
  display: flex;
  flex-direction: column;
  gap: 0.6em;
  list-style: none;
  margin: 0;
  padding: 0;
}

.c-list__item {
  color: #211613;
  padding-left: 1.2em;
  position: relative;
}
.c-list__item::before {
  color: inherit;
  content: "・";
  font-size: inherit;
  font-weight: 700;
  left: 0;
  line-height: 1;
  position: absolute;
  top: 0;
  transform: translateY(33%);
}

/* 番号付きリスト */
.c-list--number .c-list__item::before {
  color: #00a161;
  content: counter(item) ".";
  counter-increment: item;
  font-weight: 700;
  left: 0;
  top: 0;
}

.c-list--number {
  counter-reset: item;
}

/* チェックマーク付きリスト */
.c-list--check .c-list__item::before {
  color: inherit;
  content: "✔";
  font-size: calc(14 / 16 * var(--base-font-size));
}

/* ローディングアニメーション */
.c-loading {
  align-items: center;
  animation: fadeOut 1s 3.5s forwards;
  background-color: #fff;
  display: flex;
  height: 100svh;
  justify-content: center;
  left: 0;
  position: fixed;
  top: 0;
  width: 100vw;
  z-index: 1000;
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    visibility: hidden;
  }
}
.c-loading__logo {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.c-loading__logo img:nth-of-type(1) {
  --logo-offset-x: 23px;
  animation: logo_image_fade 1s 1.5s forwards;
  max-width: 200px;
  opacity: 0;
  transform: translate(23px, 20px);
  transform: translate(var(--logo-offset-x), 20px);
  width: 100%;
}
@media screen and (min-width: 768px) {
  .c-loading__logo img:nth-of-type(1) {
    --logo-offset-x: 30px;
    max-width: 286px;
  }
}

.c-loading__logo img:nth-of-type(2) {
  animation: logo_text_fade 1s 0.5s forwards;
  max-width: 160px;
  opacity: 0;
  width: 80%;
}

@media screen and (min-width: 768px) {
  .c-loading__logo img:nth-of-type(2) {
    max-width: 230px;
  }
}
@keyframes logo_text_fade {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes logo_image_fade {
  0% {
    opacity: 0;
    transform: translate(20px, 20px);
    transform: translate(var(--logo-offset-x, 20px), 20px);
  }
  100% {
    opacity: 1;
    transform: translateX(20px);
    transform: translateX(var(--logo-offset-x, 20px));
  }
}
/* モーダルを開くボタン */
.c-modal-open {
  border: none;
  cursor: pointer;
  font-weight: bold;
}

/* モーダルと背景の指定 */
.c-modal {
  background: rgba(0, 0, 0, 0.8);
  box-sizing: border-box;
  height: 100%;
  left: 0;
  opacity: 0;
  overflow: auto;
  padding: 40px 20px;
  position: fixed;
  text-align: center;
  top: 0;
  transition: 0.3s;
  visibility: hidden;
  width: 100%;
  z-index: 10000;
}

/* モーダルの擬似要素の指定 */
.c-modal:before {
  content: "";
  display: inline-block;
  height: 100%;
  margin-left: -0.2em;
  vertical-align: middle;
}

/* クラスが追加された時の指定 */
.c-modal.is-active {
  opacity: 1;
  visibility: visible;
}

/* モーダル内側の指定 */
.c-modal-container {
  display: inline-block;
  max-width: calc(1400 / 16 * var(--base-font-size));
  position: relative;
  vertical-align: middle;
  width: 96%;
}
@media screen and (min-width: 768px) {
  .c-modal-container {
    width: 80%;
  }
}

/* モーダルを閉じるボタンの指定 */
.c-modal-close {
  align-items: center;
  background: #000;
  border-radius: 50%;
  color: #fff;
  cursor: pointer;
  display: flex;
  height: 30px;
  justify-content: center;
  position: absolute;
  right: 0px;
  top: 0px;
  transform: translateY(-120%);
  width: 30px;
  z-index: 100;
}

/* モーダルのコンテンツ部分の指定 */
.c-modal-content video {
  -o-object-fit: cover;
  height: auto;
     object-fit: cover;
  width: 100%;
}

.c-page-header {
  background-color: red;
  padding: calc(30 / 16 * var(--base-font-size)) 0;
}
@media screen and (min-width: 768px) {
  .c-page-header {
    padding: calc(40 / 16 * var(--base-font-size)) 0;
  }
}

.c-page-header__title {
  color: #1a1a1a;
  display: flex;
  font-size: calc(24 / 16 * var(--base-font-size));
  font-weight: 700;
  gap: 0.5em;
  position: relative;
}
@media screen and (min-width: 768px) {
  .c-page-header__title {
    font-size: calc(30 / 16 * var(--base-font-size));
  }
}

.c-page-header--gym .c-page-header__title::before {
  aspect-ratio: 1/1;
  background-image: url(../images/icon_page-header_gym.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  display: block;
  width: 1.7em;
}

.c-page-header--lesson .c-page-header__title::before {
  aspect-ratio: 1/1;
  background-image: url(../images/icon_page-header_lesson.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  display: block;
  width: 1.7em;
}

.c-pagination {
  align-items: stretch;
  display: flex;
  gap: calc(10 / 16 * var(--base-font-size));
  justify-content: center;
  margin-top: calc(40 / 16 * var(--base-font-size));
}
@media screen and (min-width: 768px) {
  .c-pagination {
    gap: calc(50 / 16 * var(--base-font-size));
  }
}

.c-pagination__prev button,
.c-pagination__next button {
  border: 1px solid #ccc;
  font-weight: 700;
  height: 100%;
  line-height: 1;
  padding: 0.8em;
  position: relative;
  transition: all 0.3s ease 0s;
  width: calc(40 / 16 * var(--base-font-size));
}
@media screen and (min-width: 768px) {
  .c-pagination__prev button,
  .c-pagination__next button {
    width: calc(175 / 16 * var(--base-font-size));
  }
}
.c-pagination__prev button::before,
.c-pagination__next button::before {
  -webkit-mask: url(../images/common/arrow_right_circle_01.svg);
  background-color: #00a53b;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  display: block;
  height: 1em;
          mask: url(../images/common/arrow_right_circle_01.svg);
  position: absolute;
  top: 50%;
  width: 1em;
}
.c-pagination__prev button span,
.c-pagination__next button span {
  display: none;
}
@media screen and (min-width: 768px) {
  .c-pagination__prev button span,
  .c-pagination__next button span {
    display: block;
  }
}
@media (hover: hover) {
  .c-pagination__prev button:hover,
  .c-pagination__next button:hover {
    background-color: #00a53b;
    color: #ffffff;
  }
  .c-pagination__prev button:hover::before,
  .c-pagination__next button:hover::before {
    background-color: #ffffff;
  }
}

.c-pagination__prev button::before {
  left: 0.7em;
  transform: translateY(-50%) rotate(180deg);
}
@media screen and (min-width: 768px) {
  .c-pagination__prev button::before {
    left: 1em;
  }
}

.c-pagination__next button::before {
  right: 0.7em;
  transform: translateY(-50%) rotate(0deg);
}
@media screen and (min-width: 768px) {
  .c-pagination__next button::before {
    right: 1em;
  }
}

.c-pagination__list {
  display: flex;
  gap: 0.5em;
}
@media screen and (min-width: 768px) {
  .c-pagination__list {
    gap: 1em;
  }
}

.c-pagination__list-item {
  align-content: center;
  display: grid;
  justify-content: center;
  place-content: center;
}
.c-pagination__list-item a {
  aspect-ratio: 1/1;
  background-color: #ffffff;
  border: 1px solid #ccc;
  font-size: calc(14 / 16 * var(--base-font-size));
  font-weight: 700;
  line-height: 1;
  padding: 0.8em;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .c-pagination__list-item a {
    font-size: calc(16 / 16 * var(--base-font-size));
  }
}
.c-pagination__list-item.c-pagination__list-item--active a {
  background-color: #00a53b;
  border-color: #00a53b;
  color: #ffffff;
}
@media (hover: hover) {
  .c-pagination__list-item a:hover {
    background-color: #00a53b;
    border-color: #00a53b;
    color: #ffffff;
    opacity: 1;
  }
}

.c-pdf-link a {
  background-color: #ffffff;
  border: 0.5px solid #cccccc;
  font-size: calc(14 / 16 * var(--base-font-size));
  font-weight: 700;
  letter-spacing: 0.025em;
  line-height: 1.8571428571;
  min-width: calc(230 / 16 * var(--base-font-size));
  padding: 0.7em;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .c-pdf-link a {
    width: auto;
  }
}
@media (hover: hover) {
  .c-pdf-link a:hover {
    background-color: #f2f2f2;
    opacity: 1;
  }
}
.c-pdf-link a span {
  display: flex;
  gap: 1em;
  justify-content: center;
}
.c-pdf-link a span::before {
  aspect-ratio: 19/22;
  background-image: url(../images/common/icon_file_pdf_01.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  display: block;
  height: auto;
  width: 1em;
}

.c-pdf-links {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 0.6em;
}
@media screen and (min-width: 768px) {
  .c-pdf-links {
    flex-direction: row;
    gap: 1.2em;
  }
}

.c-radio-group {
  border: none;
  margin: 0;
  padding: 0;
}

.c-radio-group__legend {
  color: #211613;
  font-size: calc(14 / 16 * var(--base-font-size));
  font-weight: 700;
  margin-bottom: calc(8 / 16 * var(--base-font-size));
}

.c-radio-list {
  display: flex;
  flex-direction: column;
  gap: calc(10 / 16 * var(--base-font-size));
  margin-bottom: 2em;
  margin-top: 0.6em;
}
@media screen and (min-width: 768px) {
  .c-radio-list {
    gap: calc(16 / 16 * var(--base-font-size));
    margin-bottom: 0;
    margin-top: 1em;
  }
}

.c-radio-list__item {
  align-items: center;
  display: flex;
  gap: calc(8 / 16 * var(--base-font-size));
  position: relative;
}

.c-radio {
  align-items: center;
  display: flex;
  gap: calc(8 / 16 * var(--base-font-size));
  position: relative;
}

/* input を視覚的に隠すがキーボード操作可能に */
.c-radio__input {
  border: 0;
  height: 1px;
  margin: -1px;
  opacity: 0;
  overflow: hidden;
  padding: 0;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

/* label をカスタムUI化 */
.c-radio__label {
  cursor: pointer;
  font-size: calc(15 / 16 * var(--base-font-size));
  font-weight: 400;
  padding-left: calc(24 / 16 * var(--base-font-size));
  position: relative;
}
@media screen and (min-width: 768px) {
  .c-radio__label {
    font-size: calc(18 / 16 * var(--base-font-size));
    padding-left: calc(46 / 16 * var(--base-font-size));
  }
}
.c-radio__label::before {
  border: 1px solid #211613;
  border-radius: 50%;
  box-sizing: border-box;
  content: "";
  height: calc(16 / 16 * var(--base-font-size));
  left: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  transition: border-color 0.2s ease;
  width: calc(16 / 16 * var(--base-font-size));
}
@media screen and (min-width: 768px) {
  .c-radio__label::before {
    height: calc(26 / 16 * var(--base-font-size));
    width: calc(26 / 16 * var(--base-font-size));
  }
}
.c-radio__label::after {
  background-color: #211613;
  border-radius: 50%;
  content: "";
  height: calc(8 / 16 * var(--base-font-size));
  left: calc(4 / 16 * var(--base-font-size));
  opacity: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  transition: opacity 0.2s ease;
  width: calc(8 / 16 * var(--base-font-size));
}
@media screen and (min-width: 768px) {
  .c-radio__label::after {
    height: calc(14 / 16 * var(--base-font-size));
    left: calc(6 / 16 * var(--base-font-size));
    width: calc(14 / 16 * var(--base-font-size));
  }
}

/* 選択されたときに内側の●を表示 */
.c-radio__input:checked + .c-radio__label::after {
  opacity: 1;
}

/* キーボード操作時のフォーカス見た目 */
.c-radio__input:focus-visible + .c-radio__label::before {
  outline: calc(2 / 16 * var(--base-font-size)) solid #00a161;
  outline-offset: calc(2 / 16 * var(--base-font-size));
}

.c-section-title-01 {
  font-size: calc(22 / 16 * var(--base-font-size));
  font-weight: 500;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .c-section-title-01 {
    font-size: calc(36 / 16 * var(--base-font-size));
  }
}

.c-section-title-02 {
  border-left: calc(3 / 16 * var(--base-font-size)) solid;
  color: #1a1a1a;
  font-size: calc(22 / 16 * var(--base-font-size));
  font-weight: 700;
  padding-left: 0.6em;
}
@media screen and (min-width: 768px) {
  .c-section-title-02 {
    border-left: calc(6 / 16 * var(--base-font-size)) solid;
    font-size: calc(26 / 16 * var(--base-font-size));
  }
}

.c-section-title-03 {
  border-bottom: calc(2 / 16 * var(--base-font-size)) solid;
  font-size: calc(20 / 16 * var(--base-font-size));
  padding-bottom: 0.5em;
}
@media screen and (min-width: 768px) {
  .c-section-title-03 {
    font-size: calc(24 / 16 * var(--base-font-size));
  }
}

.c-select {
  display: inline-block;
  max-width: calc(320 / 16 * var(--base-font-size));
  position: relative;
  width: 100%;
}

.c-select__input {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: #ffffff;
  border: 1px solid #e1f2f2;
  border-radius: calc(4 / 16 * var(--base-font-size));
  color: #211613;
  cursor: pointer;
  font-size: calc(16 / 16 * var(--base-font-size));
  font-weight: 400;
  padding: calc(12 / 16 * var(--base-font-size)) calc(40 / 16 * var(--base-font-size)) calc(12 / 16 * var(--base-font-size)) calc(12 / 16 * var(--base-font-size));
  transition: border-color 0.3s ease;
  width: 100%;
}
.c-select__input:focus {
  border-color: #00a161;
  outline: none;
}
.c-select__input:focus-visible {
  outline: calc(2 / 16 * var(--base-font-size)) solid #00a161;
  outline-offset: calc(2 / 16 * var(--base-font-size));
}

/* ▼アイコン（擬似要素） */
.c-select::after {
  background-color: #ffffff;
  border: solid #8d9ba2;
  border-width: 0 1px 1px 0;
  content: "";
  height: calc(10 / 16 * var(--base-font-size));
  pointer-events: none;
  position: absolute;
  right: calc(16 / 16 * var(--base-font-size));
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  width: calc(10 / 16 * var(--base-font-size));
  z-index: 1;
}

.c-slider {
  position: relative;
}

.c-slider .swiper-wrapper {
  display: flex;
}

.c-slider .swiper-slide {
  box-sizing: border-box;
  flex-shrink: 0;
  height: auto;
  text-align: center;
  width: 100%;
}

.c-slider .swiper-button-prev,
.c-slider .swiper-button-next {
  color: #243239;
}

.c-slider .swiper-pagination-bullet {
  background-color: #00beca;
  opacity: 1;
}

.c-slider .swiper-pagination-bullet-active {
  background-color: #00a5c0;
}

.c-tab__item {
  cursor: pointer;
}

.c-tab__content {
  display: none;
  opacity: 0;
  transition: opacity 0.4s ease;
  will-change: opacity;
}

.c-tab__content.is-visible {
  display: block;
  opacity: 1;
}

.c-table {
  overflow-y: hidden !important;
}

.c-table {
  -webkit-overflow-scrolling: touch;
  overflow-x: auto;
  width: 100%;
}
.c-table table {
  border-collapse: collapse;
  border-spacing: 0;
  border-top: 1px solid #ffffff;
  min-width: 600px;
  width: 100%;
}
.c-table tr {
  border-bottom: 1px solid #ffffff;
}
.c-table th,
.c-table td {
  font-size: calc(18 / 16 * var(--base-font-size));
  line-height: 1.5;
  padding: 1em 0;
  text-align: left;
}
.c-table th {
  font-weight: 400;
}
.c-video {
  aspect-ratio: 16/9;
  background-color: #000;
  position: relative;
  width: 100%;
}

.c-video__iframe,
.c-video__file {
  border: none;
  bottom: 0;
  display: block;
  height: 100%;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
}

.c-video__file {
  -o-object-fit: cover;
     object-fit: cover;
}

/* ページ全体 */
.p-about {
  background-color: #67be90;
  padding-top: calc(180 / 16 * var(--base-font-size));
}
@media screen and (min-width: 768px) {
  .p-about {
    padding-top: calc(250 / 16 * var(--base-font-size));
  }
}
.p-about .p-story__next {
  align-content: center;
  aspect-ratio: 562/430;
  display: grid;
  justify-content: center;
  place-content: center;
}
@media screen and (min-width: 768px) {
  .p-about .p-story__next {
    aspect-ratio: 1440/446;
  }
}

/* ページヘッダー */
.p-about__page-header {
  text-align: center;
}

.p-about__page-title {
  font-size: calc(25 / 16 * var(--base-font-size));
  font-weight: 400;
  letter-spacing: 0.15em;
}
@media screen and (min-width: 768px) {
  .p-about__page-title {
    font-size: calc(48 / 16 * var(--base-font-size));
  }
}

.p-about__intro {
  font-size: calc(14 / 16 * var(--base-font-size));
  letter-spacing: 0.04em;
  line-height: 2.3;
  margin-top: 2em;
}
@media screen and (min-width: 768px) {
  .p-about__intro {
    font-size: calc(22 / 16 * var(--base-font-size));
    line-height: 2.4545454545;
  }
}

/* 募集要項セクション */
.p-about__requirements {
  margin-top: calc(105 / 16 * var(--base-font-size));
  padding-bottom: calc(60 / 16 * var(--base-font-size));
}
@media screen and (min-width: 768px) {
  .p-about__requirements {
    margin-top: calc(130 / 16 * var(--base-font-size));
    padding-bottom: calc(180 / 16 * var(--base-font-size));
  }
}

.p-about__requirements-title .c-section-title-01 {
  color: #ffffff;
}

.p-about__info {
  border-top: 1px solid #211613;
  margin-top: calc(40 / 16 * var(--base-font-size));
}
@media screen and (min-width: 768px) {
  .p-about__info {
    margin-top: calc(80 / 16 * var(--base-font-size));
  }
}

.p-about__info-item {
  align-items: center;
  border-bottom: 1px solid #211613;
  display: flex;
  font-size: calc(13 / 16 * var(--base-font-size));
  gap: 1em;
  line-height: 1.5555555556;
  padding: 0.8em 0;
}
@media screen and (min-width: 768px) {
  .p-about__info-item {
    font-size: calc(18 / 16 * var(--base-font-size));
    padding: 1em 0;
  }
}

.p-about__info-title {
  flex-shrink: 0;
  width: calc(68 / 16 * var(--base-font-size));
}
@media screen and (min-width: 768px) {
  .p-about__info-title {
    width: calc(132 / 16 * var(--base-font-size));
  }
}

.p-about__info-description {
  flex: 1;
}
.p-about__safety {
  background-color: #d5ebdb;
  padding: calc(40 / 16 * var(--base-font-size)) 0 calc(72 / 16 * var(--base-font-size));
}
@media screen and (min-width: 768px) {
  .p-about__safety {
    padding: calc(120 / 16 * var(--base-font-size)) 0 calc(140 / 16 * var(--base-font-size));
  }
}

.p-about__safety-title .c-section-title-01 {
  color: #00a161;
}

.p-about__safety-description {
  font-size: calc(14 / 16 * var(--base-font-size));
  line-height: 1.9444444444;
  margin-top: 2em;
}
@media screen and (min-width: 768px) {
  .p-about__safety-description {
    font-size: calc(18 / 16 * var(--base-font-size));
    margin-top: 5em;
  }
}

.p-about__safety-image {
  margin-top: calc(34 / 16 * var(--base-font-size));
}
.p-about__safety-image img {
  border-radius: calc(10 / 16 * var(--base-font-size));
}

/* 採用メッセージセクション */
.p-about__report {
  padding: calc(45 / 16 * var(--base-font-size)) 0 calc(60 / 16 * var(--base-font-size));
}
@media screen and (min-width: 768px) {
  .p-about__report {
    padding: calc(150 / 16 * var(--base-font-size)) 0 calc(120 / 16 * var(--base-font-size));
  }
}

.p-about__report-title .c-section-title-01 {
  color: #ffffff;
}

.p-about__report-image {
  margin-top: calc(42 / 16 * var(--base-font-size));
}
@media screen and (min-width: 768px) {
  .p-about__report-image {
    margin-top: calc(100 / 16 * var(--base-font-size));
  }
}
.p-about__report-image img {
  margin-left: auto;
  margin-right: auto;
  max-width: calc(250 / 16 * var(--base-font-size));
  width: 53%;
}
@media screen and (min-width: 768px) {
  .p-about__report-image img {
    width: auto;
    width: initial;
  }
}

.p-about-report__subtitle {
  color: #ffffff;
  font-size: calc(14 / 16 * var(--base-font-size));
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 1.8;
  text-align: center;
  word-break: keep-all;
}
@media screen and (min-width: 768px) {
  .p-about-report__subtitle {
    font-size: calc(22 / 16 * var(--base-font-size));
    line-height: 1.5454545455;
    text-align: left;
  }
}

.p-about-report__text {
  font-size: calc(12 / 16 * var(--base-font-size));
  line-height: 1.875;
  margin-top: 1.5em;
}
@media screen and (min-width: 768px) {
  .p-about-report__text {
    font-size: calc(16 / 16 * var(--base-font-size));
    margin-top: 1em;
  }
}

.p-about__report-cta {
  margin-top: calc(50 / 16 * var(--base-font-size));
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-about__report-cta {
    margin-top: calc(86 / 16 * var(--base-font-size));
  }
}
.p-about__report-cta .c-button {
  min-width: calc(220 / 16 * var(--base-font-size));
}
@media screen and (min-width: 768px) {
  .p-about__report-cta .c-button {
    min-width: calc(332 / 16 * var(--base-font-size));
  }
}

.p-about__report-shidou {
  border-top: 0.5px solid #fff;
  margin: 80px auto 0;
  max-width: 560px;
  padding-top: 80px;
}

.p-about__access {
  background-color: #d5ebdb;
  padding: calc(40 / 16 * var(--base-font-size)) 0 0;
}
@media screen and (min-width: 768px) {
  .p-about__access {
    padding: calc(120 / 16 * var(--base-font-size)) 0 0;
  }
}

.p-about__access-title .c-section-title-01 {
  color: #00a161;
}

.p-about__access-description {
  font-size: calc(14 / 16 * var(--base-font-size));
  line-height: 1.9444444444;
  margin-top: 2em;
  text-align: center;
  word-break: keep-all;
}
@media screen and (min-width: 768px) {
  .p-about__access-description {
    font-size: calc(18 / 16 * var(--base-font-size));
  }
}
.p-about__access-description .u-display__pc-only {
  display: none;
}
@media screen and (min-width: 768px) {
  .p-about__access-description .u-display__pc-only {
    display: inline;
  }
}

.p-about__access-image {
  margin-top: calc(16 / 16 * var(--base-font-size));
}
@media screen and (min-width: 768px) {
  .p-about__access-image {
    margin-top: calc(34 / 16 * var(--base-font-size));
  }
}
.p-about__access-image img {
  -o-object-fit: cover;
  aspect-ratio: 5/3;
  border-radius: calc(10 / 16 * var(--base-font-size));
     object-fit: cover;
}
@media screen and (min-width: 768px) {
  .p-about__access-image img {
    aspect-ratio: 812/518;
  }
}

@media screen and (min-width: 768px) {
  .p-about__access-map {
    margin-top: calc(180 / 16 * var(--base-font-size));
  }
}
.p-about__access-map iframe {
  aspect-ratio: 1000/600;
  margin-top: calc(34 / 16 * var(--base-font-size));
  max-height: calc(600 / 16 * var(--base-font-size));
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-about__access-map iframe {
    aspect-ratio: 1440/600;
  }
}

.p-about__other-menu {
  display: block;
}
@media screen and (min-width: 768px) {
  .p-about__other-menu {
    display: none;
  }
}

/* ページ全体 */
.p-contact {
  background-color: #67be90;
  padding: calc(180 / 16 * var(--base-font-size)) 0 calc(48 / 16 * var(--base-font-size));
}
@media screen and (min-width: 768px) {
  .p-contact {
    padding: calc(250 / 16 * var(--base-font-size)) 0 calc(80 / 16 * var(--base-font-size));
  }
}

/* ページヘッダー */
.p-contact__page-header {
  text-align: center;
}

.p-contact__title {
  font-size: calc(25 / 16 * var(--base-font-size));
  font-weight: 400;
  letter-spacing: 0.15em;
}
@media screen and (min-width: 768px) {
  .p-contact__title {
    font-size: calc(48 / 16 * var(--base-font-size));
  }
}

.p-contact__intro {
  font-size: calc(14 / 16 * var(--base-font-size));
  letter-spacing: 0.04em;
  line-height: 2.3;
  margin-top: 2em;
}
@media screen and (min-width: 768px) {
  .p-contact__intro {
    font-size: calc(22 / 16 * var(--base-font-size));
    line-height: 2.4545454545;
  }
}

/* フォームエリア */
.p-contact__body {
  padding-bottom: calc(80 / 16 * var(--base-font-size));
}
@media screen and (min-width: 768px) {
  .p-contact__body {
    padding-bottom: calc(120 / 16 * var(--base-font-size));
  }
}

.p-contact__form {
  margin: calc(102 / 16 * var(--base-font-size)) auto 0;
  max-width: calc(800 / 16 * var(--base-font-size));
}
@media screen and (min-width: 768px) {
  .p-contact__form {
    margin: calc(140 / 16 * var(--base-font-size)) auto 0;
  }
}

@media screen and (min-width: 768px) {
  .p-contact__form-item {
    align-items: flex-start;
    display: flex;
    gap: calc(24 / 16 * var(--base-font-size));
  }
}
.p-contact__form-item + .p-contact__form-item {
  margin-top: calc(12 / 16 * var(--base-font-size));
}
@media screen and (min-width: 768px) {
  .p-contact__form-item + .p-contact__form-item {
    margin-top: calc(40 / 16 * var(--base-font-size));
  }
}

.p-contact__form-label {
  display: block;
  font-size: calc(16 / 16 * var(--base-font-size));
}
@media screen and (min-width: 768px) {
  .p-contact__form-label {
    flex-shrink: 0;
    font-size: calc(18 / 16 * var(--base-font-size));
    margin-bottom: 0;
    padding-top: calc(12 / 16 * var(--base-font-size));
    width: calc(200 / 16 * var(--base-font-size));
  }
}

.p-contact__form-field {
  margin-top: calc(5 / 16 * var(--base-font-size));
}
@media screen and (min-width: 768px) {
  .p-contact__form-field {
    flex: 1;
    margin-top: 0;
  }
}

/* ラジオラベルの色上書き */
.p-contact .c-radio__label {
  color: #211613;
}

/* 個人情報エリア */
.p-contact__privacy {
  margin-top: calc(20 / 16 * var(--base-font-size));
}
@media screen and (min-width: 768px) {
  .p-contact__privacy {
    margin-top: calc(46 / 16 * var(--base-font-size));
  }
}

.p-contact__privacy-title {
  font-size: calc(14 / 16 * var(--base-font-size));
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .p-contact__privacy-title {
    font-size: calc(16 / 16 * var(--base-font-size));
  }
}

.p-contact__privacy-text {
  font-size: calc(14 / 16 * var(--base-font-size));
  line-height: 2;
  margin-top: 0.5em;
}
@media screen and (min-width: 768px) {
  .p-contact__privacy-text {
    font-size: calc(16 / 16 * var(--base-font-size));
    margin-top: 0;
    margin-top: initial;
  }
}

.p-contact__privacy-check {
  align-items: center;
  display: flex;
  gap: calc(8 / 16 * var(--base-font-size));
  margin-top: calc(10 / 16 * var(--base-font-size));
}
@media screen and (min-width: 768px) {
  .p-contact__privacy-check {
    margin-top: calc(30 / 16 * var(--base-font-size));
  }
}

/* チェックボックスラベルの色上書き */
.p-contact .wpcf7-list-item-label {
  font-size: calc(12 / 16 * var(--base-font-size));
  padding-left: calc(22 / 16 * var(--base-font-size));
}
@media screen and (min-width: 768px) {
  .p-contact .wpcf7-list-item-label {
    font-size: calc(16 / 16 * var(--base-font-size));
    padding-left: calc(30 / 16 * var(--base-font-size));
  }
}

/* 送信ボタン */
.p-contact__submit {
  margin-top: calc(60 / 16 * var(--base-font-size));
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-contact__submit {
    margin-top: calc(108 / 16 * var(--base-font-size));
  }
}
.p-contact__submit .wpcf7-spinner {
  display: none;
}

.p-contact__submit-btn {
  background-color: #ffffff;
  border-radius: calc(999 / 16 * var(--base-font-size));
  color: #00a161;
  font-weight: 500;
  padding: calc(16 / 16 * var(--base-font-size)) calc(60 / 16 * var(--base-font-size));
  transition: opacity 0.3s ease;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-contact__submit-btn {
    min-width: calc(330 / 16 * var(--base-font-size));
    width: auto;
    width: initial;
  }
}
.p-contact__submit-btn:hover {
  opacity: 0.8;
}

/* ラジオボタン CF7出力対応 */
.p-contact .wpcf7-radio {
  display: flex;
  flex-direction: column;
  gap: calc(10 / 16 * var(--base-font-size));
  margin-bottom: 2em;
  margin-top: 0.6em;
}
@media screen and (min-width: 768px) {
  .p-contact .wpcf7-radio {
    gap: calc(16 / 16 * var(--base-font-size));
    margin-bottom: 0;
    margin-top: 1em;
  }
}

.p-contact .wpcf7-list-item {
  align-items: center;
  display: flex;
  margin: 0;
}

.p-contact .wpcf7-list-item label {
  align-items: center;
  cursor: pointer;
  display: flex;
}

.p-contact .wpcf7-list-item input[type=radio] {
  border: 0;
  height: 1px;
  margin: -1px;
  opacity: 0;
  overflow: hidden;
  padding: 0;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

.wpcf7-radio .wpcf7-list-item-label {
  color: #ffffff;
  cursor: pointer;
  font-size: calc(14 / 16 * var(--base-font-size));
  font-weight: 400;
  padding-left: calc(24 / 16 * var(--base-font-size));
  position: relative;
}
@media screen and (min-width: 768px) {
  .wpcf7-radio .wpcf7-list-item-label {
    font-size: calc(18 / 16 * var(--base-font-size));
    padding-left: calc(46 / 16 * var(--base-font-size));
  }
}
.wpcf7-radio .wpcf7-list-item-label::before {
  border: 1px solid #ffffff;
  border-radius: 50%;
  box-sizing: border-box;
  content: "";
  height: calc(16 / 16 * var(--base-font-size));
  left: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  transition: border-color 0.2s ease;
  width: calc(16 / 16 * var(--base-font-size));
}
@media screen and (min-width: 768px) {
  .wpcf7-radio .wpcf7-list-item-label::before {
    height: calc(26 / 16 * var(--base-font-size));
    width: calc(26 / 16 * var(--base-font-size));
  }
}
.wpcf7-radio .wpcf7-list-item-label::after {
  background-color: #ffffff;
  border-radius: 50%;
  content: "";
  height: calc(8 / 16 * var(--base-font-size));
  left: calc(4 / 16 * var(--base-font-size));
  opacity: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  transition: opacity 0.2s ease;
  width: calc(8 / 16 * var(--base-font-size));
}
@media screen and (min-width: 768px) {
  .wpcf7-radio .wpcf7-list-item-label::after {
    height: calc(14 / 16 * var(--base-font-size));
    left: calc(6 / 16 * var(--base-font-size));
    width: calc(14 / 16 * var(--base-font-size));
  }
}
.wpcf7-radio input[type=radio]:checked + .wpcf7-list-item-label::after {
  opacity: 1;
}
.wpcf7-radio input[type=radio]:focus-visible + .wpcf7-list-item-label::before {
  outline: calc(2 / 16 * var(--base-font-size)) solid #00a161;
  outline-offset: calc(2 / 16 * var(--base-font-size));
}

/* チェックボックス CF7出力対応 */
.p-contact__privacy-check .wpcf7-list-item {
  margin: 0;
}

.p-contact__privacy-check .wpcf7-list-item label {
  align-items: center;
  cursor: pointer;
  display: flex;
}

.p-contact__privacy-check .wpcf7-list-item input[type=checkbox] {
  border: 0;
  height: 1px;
  margin: -1px;
  opacity: 0;
  padding: 0;
  position: absolute;
  width: 1px;
}

.p-contact__privacy-check {
  /* チェック時のマーク表示 */
  /* キーボード操作時のフォーカス見た目 */
}
.p-contact__privacy-check .wpcf7-list-item-label {
  color: #211613;
  cursor: pointer;
  font-size: calc(12 / 16 * var(--base-font-size));
  font-weight: 400;
  padding-left: calc(24 / 16 * var(--base-font-size));
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-contact__privacy-check .wpcf7-list-item-label {
    font-size: calc(14 / 16 * var(--base-font-size));
  }
}
.p-contact__privacy-check .wpcf7-list-item-label::before {
  border: 1px solid #211613;
  border-radius: calc(4 / 16 * var(--base-font-size));
  content: "";
  height: calc(16 / 16 * var(--base-font-size));
  left: 0;
  position: absolute;
  top: calc(3 / 16 * var(--base-font-size));
  width: calc(16 / 16 * var(--base-font-size));
}
@media screen and (min-width: 768px) {
  .p-contact__privacy-check .wpcf7-list-item-label::before {
    height: calc(18 / 16 * var(--base-font-size));
    top: calc(4 / 16 * var(--base-font-size));
    width: calc(18 / 16 * var(--base-font-size));
  }
}
.p-contact__privacy-check .wpcf7-list-item-label::after {
  border: solid #ffffff;
  border-width: 0 0 2px 2px;
  content: "";
  height: calc(5 / 16 * var(--base-font-size));
  left: calc(3 / 16 * var(--base-font-size));
  opacity: 0;
  position: absolute;
  top: calc(10 / 16 * var(--base-font-size));
  transform: translateY(-50%) rotate(-45deg);
  transition: opacity 0.2s ease;
  width: calc(10 / 16 * var(--base-font-size));
}
@media screen and (min-width: 768px) {
  .p-contact__privacy-check .wpcf7-list-item-label::after {
    left: calc(4 / 16 * var(--base-font-size));
    top: calc(12 / 16 * var(--base-font-size));
  }
}
.p-contact__privacy-check .c-checkbox__input:checked + .wpcf7-list-item-label::after {
  opacity: 1;
}
.p-contact__privacy-check .c-checkbox__input:focus-visible + .wpcf7-list-item-label::before {
  outline: calc(2 / 16 * var(--base-font-size)) solid #ffffff;
  outline-offset: calc(2 / 16 * var(--base-font-size));
}

.p-contact__privacy-check .wpcf7-list-item input[type=checkbox]:checked + .wpcf7-list-item-label::after {
  opacity: 1;
}

.p-contact__privacy-check .wpcf7-list-item input[type=checkbox]:focus-visible + .wpcf7-list-item-label::before {
  outline: calc(2 / 16 * var(--base-font-size)) solid #ffffff;
  outline-offset: calc(2 / 16 * var(--base-font-size));
}

/* サンクスページ */
.p-contact__thanks {
  min-height: 20vh;
  padding-bottom: calc(80 / 16 * var(--base-font-size));
}
@media screen and (min-width: 768px) {
  .p-contact__thanks {
    min-height: 50vh;
    padding-bottom: calc(120 / 16 * var(--base-font-size));
  }
}

.p-contact__thanks-inner {
  padding-top: calc(60 / 16 * var(--base-font-size));
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-contact__thanks-inner {
    padding-top: calc(108 / 16 * var(--base-font-size));
  }
}

.p-contact__thanks-btn {
  margin-top: calc(60 / 16 * var(--base-font-size));
  text-align: center;
}
.p-contact__thanks-btn .c-button {
  min-width: calc(300 / 16 * var(--base-font-size));
}

/* ページ全体 */
.p-diary {
  background-color: #67be90;
  padding: calc(180 / 16 * var(--base-font-size)) 0 calc(0 / 16 * var(--base-font-size));
}
@media screen and (min-width: 768px) {
  .p-diary {
    padding: calc(250 / 16 * var(--base-font-size)) 0 calc(120 / 16 * var(--base-font-size));
  }
}

/* ページヘッダー */
.p-diary__page-header {
  text-align: center;
}

.p-diary__page-title {
  color: #211613;
  font-size: calc(25 / 16 * var(--base-font-size));
  font-weight: 400;
  letter-spacing: 0.15em;
}
@media screen and (min-width: 768px) {
  .p-diary__page-title {
    font-size: calc(48 / 16 * var(--base-font-size));
  }
}

.p-diary__intro {
  font-size: calc(14 / 16 * var(--base-font-size));
  letter-spacing: 0.04em;
  line-height: 2.3;
  margin-top: 2em;
}
@media screen and (min-width: 768px) {
  .p-diary__intro {
    font-size: calc(22 / 16 * var(--base-font-size));
    line-height: 2.4545454545;
  }
}

/* リストセクション */
.p-diary__list {
  margin-top: calc(106 / 16 * var(--base-font-size));
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .p-diary__list {
    margin-top: calc(136 / 16 * var(--base-font-size));
    overflow: visible;
  }
}

.p-diary__list-inner {
  max-width: 1080px;
}

.p-diary-list {
  display: flex;
  flex-direction: column;
  gap: calc(56 / 16 * var(--base-font-size));
}
.p-diary-list__heading {
  align-items: baseline;
  color: #d5ebdb;
  display: flex;
  flex-wrap: wrap;
  font-size: calc(16 / 16 * var(--base-font-size));
  gap: calc(8 / 16 * var(--base-font-size));
  letter-spacing: 0.04em;
  margin-bottom: calc(16 / 16 * var(--base-font-size));
}
@media screen and (min-width: 768px) {
  .p-diary-list__heading {
    font-size: calc(24 / 16 * var(--base-font-size));
    margin-bottom: calc(24 / 16 * var(--base-font-size));
  }
}

.p-diary-list__title {
  font-size: inherit;
  font-weight: 400;
}

.p-diary-list__period {
  font-size: inherit;
}

.p-diary-list__image {
  position: relative;
  width: 100vw;
}
@media screen and (min-width: 768px) {
  .p-diary-list__image {
    margin-left: 0;
    width: auto;
  }
}
.p-diary-list__image img {
  -o-object-fit: cover;
  aspect-ratio: 565/220;
  border: calc(2 / 16 * var(--base-font-size)) solid #d5ebdb;
  border-radius: calc(10 / 16 * var(--base-font-size));
  display: block;
  height: auto;
     object-fit: cover;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-diary-list__image img {
    aspect-ratio: 962/382;
    border: calc(3 / 16 * var(--base-font-size)) solid #d5ebdb;
    border-radius: calc(32 / 16 * var(--base-font-size));
  }
}

.p-diary-list__image::before,
.p-diary-list__image::after {
  background-image: url("../images/common/icon_tire_01.svg");
  background-repeat: no-repeat;
  background-size: contain;
  bottom: calc(-20 / 16 * var(--base-font-size));
  content: "";
  height: calc(32 / 16 * var(--base-font-size));
  position: absolute;
  width: calc(32 / 16 * var(--base-font-size));
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .p-diary-list__image::before,
  .p-diary-list__image::after {
    bottom: calc(-42 / 16 * var(--base-font-size));
    height: calc(88 / 16 * var(--base-font-size));
    width: calc(88 / 16 * var(--base-font-size));
  }
}

.p-diary-list__image::before {
  left: 13%;
}

.p-diary-list__image::after {
  right: 13%;
}

.p-diary-list__body {
  margin-top: calc(30 / 16 * var(--base-font-size));
}
@media screen and (min-width: 768px) {
  .p-diary-list__body {
    margin-top: calc(66 / 16 * var(--base-font-size));
  }
}

.p-diary-list__description {
  font-size: calc(14 / 16 * var(--base-font-size));
  line-height: 2.125;
  margin-left: auto;
  max-width: calc(576 / 16 * var(--base-font-size));
}
@media screen and (min-width: 768px) {
  .p-diary-list__description {
    font-size: calc(18 / 16 * var(--base-font-size));
  }
}

/* アニメーション：画像スライド */
.js-diary-slide {
  opacity: 0;
  transition: opacity 1.8s ease, transform 1.8s ease;
}

.js-diary-slide.is-inview {
  opacity: 1;
}

.p-diary-list__item:nth-child(odd) .js-diary-slide {
  transform: translateX(calc(-40 / 16 * var(--base-font-size)));
}
@media screen and (min-width: 768px) {
  .p-diary-list__item:nth-child(odd) .js-diary-slide {
    transform: translateX(calc(-60 / 16 * var(--base-font-size)));
  }
}
.p-diary-list__item:nth-child(odd) .js-diary-slide.is-inview {
  transform: translateX(0);
}
@media screen and (min-width: 768px) {
  .p-diary-list__item:nth-child(odd) .js-diary-slide.is-inview {
    transform: translateX(calc(24 / 16 * var(--base-font-size)));
  }
}
@media screen and (min-width: 768px) {
  .p-diary-list__item:nth-child(odd) .p-diary-list__heading {
    margin-left: calc(40 / 16 * var(--base-font-size));
  }
}
@media screen and (min-width: 768px) {
  .p-diary-list__item:nth-child(odd) .p-diary-list__body {
    transform: translateX(calc(24 / 16 * var(--base-font-size)));
  }
}
.p-diary-list__item:nth-child(odd) .p-diary-list__image {
  margin-right: 10vw;
}
@media screen and (min-width: 768px) {
  .p-diary-list__item:nth-child(odd) .p-diary-list__image {
    margin-right: 0;
    margin-right: initial;
  }
}

.p-diary-list__item:nth-child(even) .js-diary-slide {
  transform: translateX(calc(40 / 16 * var(--base-font-size)));
}
@media screen and (min-width: 768px) {
  .p-diary-list__item:nth-child(even) .js-diary-slide {
    transform: translateX(calc(60 / 16 * var(--base-font-size)));
  }
}
.p-diary-list__item:nth-child(even) .js-diary-slide.is-inview {
  transform: translateX(0);
}
@media screen and (min-width: 768px) {
  .p-diary-list__item:nth-child(even) .js-diary-slide.is-inview {
    transform: translateX(calc(-56 / 16 * var(--base-font-size)));
  }
}
@media screen and (min-width: 768px) {
  .p-diary-list__item:nth-child(even) .p-diary-list__heading {
    margin-left: calc(-40 / 16 * var(--base-font-size));
  }
}
@media screen and (min-width: 768px) {
  .p-diary-list__item:nth-child(even) .p-diary-list__body {
    transform: translateX(calc(-56 / 16 * var(--base-font-size)));
  }
}
.p-diary-list__item:nth-child(even) .p-diary-list__image {
  margin-left: -16vw;
}
@media screen and (min-width: 768px) {
  .p-diary-list__item:nth-child(even) .p-diary-list__image {
    margin-left: 0;
    margin-left: initial;
  }
}

/* アニメーション：テキストフェード（画像完了後に表示） */
.js-diary-text {
  opacity: 0;
  transition: opacity 1s ease 1.2s;
}

.js-diary-text.is-inview {
  opacity: 1;
}

.p-diary-list__item.is-more-hidden {
  display: none;
}

.p-diary__more {
  margin-top: calc(60 / 16 * var(--base-font-size));
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-diary__more {
    margin-top: calc(80 / 16 * var(--base-font-size));
  }
}
.p-diary__more .c-button {
  letter-spacing: 0.32em;
  width: 40%;
}
@media screen and (min-width: 768px) {
  .p-diary__more .c-button {
    min-width: calc(200 / 16 * var(--base-font-size));
    width: auto;
    width: initial;
  }
}

.p-diary__other-menu {
  display: block;
  margin-top: calc(80 / 16 * var(--base-font-size));
}
@media screen and (min-width: 768px) {
  .p-diary__other-menu {
    display: none;
    margin-top: 0;
    margin-top: initial;
  }
}

/* ページ全体 */
.p-recruit {
  background-color: #67be90;
  padding-top: calc(180 / 16 * var(--base-font-size));
}
@media screen and (min-width: 768px) {
  .p-recruit {
    padding-top: calc(250 / 16 * var(--base-font-size));
  }
}
.p-recruit .p-story__next {
  align-content: center;
  aspect-ratio: 562/430;
  display: grid;
  justify-content: center;
  place-content: center;
}
@media screen and (min-width: 768px) {
  .p-recruit .p-story__next {
    aspect-ratio: 1440/446;
  }
}

/* ページヘッダー */
.p-recruit__page-header {
  text-align: center;
}

.p-recruit__page-title {
  font-size: calc(25 / 16 * var(--base-font-size));
  font-weight: 400;
  letter-spacing: 0.15em;
}
@media screen and (min-width: 768px) {
  .p-recruit__page-title {
    font-size: calc(48 / 16 * var(--base-font-size));
  }
}

.p-recruit__intro {
  font-size: calc(14 / 16 * var(--base-font-size));
  letter-spacing: 0.04em;
  line-height: 2.3;
  margin-top: 2em;
}
@media screen and (min-width: 768px) {
  .p-recruit__intro {
    font-size: calc(22 / 16 * var(--base-font-size));
    line-height: 2.4545454545;
  }
}

/* 募集要項セクション */
.p-recruit__requirements {
  margin-top: calc(105 / 16 * var(--base-font-size));
  padding-bottom: calc(60 / 16 * var(--base-font-size));
}
@media screen and (min-width: 768px) {
  .p-recruit__requirements {
    margin-top: calc(130 / 16 * var(--base-font-size));
    padding-bottom: calc(180 / 16 * var(--base-font-size));
  }
}

.p-recruit__requirements-title .c-section-title-01 {
  color: #ffffff;
}

.p-recruit__info {
  border-top: 1px solid #211613;
  margin-top: calc(40 / 16 * var(--base-font-size));
}
@media screen and (min-width: 768px) {
  .p-recruit__info {
    margin-top: calc(80 / 16 * var(--base-font-size));
  }
}

.p-recruit__info-item {
  align-items: center;
  border-bottom: 1px solid #211613;
  display: flex;
  font-size: calc(13 / 16 * var(--base-font-size));
  gap: 1em;
  line-height: 1.5555555556;
  padding: 0.8em 0;
}
@media screen and (min-width: 768px) {
  .p-recruit__info-item {
    font-size: calc(18 / 16 * var(--base-font-size));
    padding: 1em 0;
  }
}

.p-recruit__info-title {
  flex-shrink: 0;
  width: calc(64 / 16 * var(--base-font-size));
}
@media screen and (min-width: 768px) {
  .p-recruit__info-title {
    width: calc(132 / 16 * var(--base-font-size));
  }
}

.p-recruit__info-description {
  flex: 1;
}
/* CTA */
.p-recruit__cta {
  margin-top: calc(50 / 16 * var(--base-font-size));
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-recruit__cta {
    margin-top: calc(134 / 16 * var(--base-font-size));
  }
}

.p-recruit__cta-btn {
  background-color: transparent;
  border: 1px solid #00a161;
  border-radius: calc(999 / 16 * var(--base-font-size));
  color: #00a161;
  font-size: calc(14 / 16 * var(--base-font-size));
  font-weight: 500;
  padding: calc(14 / 16 * var(--base-font-size)) calc(36 / 16 * var(--base-font-size));
  transition: background-color 0.3s ease, color 0.3s ease;
}
@media screen and (min-width: 768px) {
  .p-recruit__cta-btn {
    font-size: calc(16 / 16 * var(--base-font-size));
    padding: calc(16 / 16 * var(--base-font-size)) calc(60 / 16 * var(--base-font-size));
  }
}

.p-recruit__cta-btn:hover {
  background-color: #00a161;
  color: #ffffff;
}

/* 6つの働きがいポイントセクション */
.p-recruit__points {
  background-color: #d5ebdb;
  padding: calc(40 / 16 * var(--base-font-size)) 0 calc(72 / 16 * var(--base-font-size));
}
@media screen and (min-width: 768px) {
  .p-recruit__points {
    padding: calc(120 / 16 * var(--base-font-size)) 0 calc(130 / 16 * var(--base-font-size));
  }
}

.p-recruit__points-inner {
  max-width: 1160px;
}

.p-recruit__points-title .c-section-title-01 {
  color: #00a161;
}

.p-recruit__points-list {
  margin-left: auto;
  margin-right: auto;
  margin-top: calc(60 / 16 * var(--base-font-size));
  width: 80%;
}
@media screen and (min-width: 768px) {
  .p-recruit__points-list {
    margin-top: calc(100 / 16 * var(--base-font-size));
    width: auto;
    width: initial;
  }
}

/* 採用メッセージセクション */
.p-recruit__message {
  padding: calc(45 / 16 * var(--base-font-size)) 0 calc(60 / 16 * var(--base-font-size));
}
@media screen and (min-width: 768px) {
  .p-recruit__message {
    padding: calc(150 / 16 * var(--base-font-size)) 0 calc(120 / 16 * var(--base-font-size));
  }
}

.p-recruit__message-content {
  margin-top: calc(42 / 16 * var(--base-font-size));
}
@media screen and (min-width: 768px) {
  .p-recruit__message-content {
    margin-top: calc(90 / 16 * var(--base-font-size));
  }
}

.p-recruit__message-title .c-section-title-01 {
  color: #ffffff;
}

.p-recruit-message__subtitle {
  color: #211613;
  font-size: calc(15 / 16 * var(--base-font-size));
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 1.8;
  text-align: center;
  word-break: keep-all;
}
@media screen and (min-width: 768px) {
  .p-recruit-message__subtitle {
    font-size: calc(22 / 16 * var(--base-font-size));
    line-height: 1.5454545455;
    text-align: left;
  }
}

.p-recruit-message__text {
  font-size: calc(13 / 16 * var(--base-font-size));
  line-height: 1.875;
  margin-top: 1.5em;
}
@media screen and (min-width: 768px) {
  .p-recruit-message__text {
    font-size: calc(16 / 16 * var(--base-font-size));
    margin-top: 1em;
  }
}

.p-recruit-message__sign {
  font-size: calc(13 / 16 * var(--base-font-size));
  margin-left: auto;
  margin-right: auto;
  margin-top: 2em;
  max-width: calc(620 / 16 * var(--base-font-size));
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-recruit-message__sign {
    font-size: calc(18 / 16 * var(--base-font-size));
    text-align: right;
  }
}

.p-recruit__other-menu {
  display: block;
}
@media screen and (min-width: 768px) {
  .p-recruit__other-menu {
    display: none;
  }
}

/* ====================================
  p-story01（STORY #1 ページ固有）
==================================== */
.p-story01 .p-story__next {
  margin-top: calc(76 / 16 * var(--base-font-size));
}
@media screen and (min-width: 768px) {
  .p-story01 .p-story__next {
    margin-top: calc(200 / 16 * var(--base-font-size));
  }
}

/* ====================================
  p-story02（ストーリー#2 固有スタイル）
==================================== */
/* 見出し＋テキスト＋画像セクション
------------------------------------ */
.p-story02__info {
  margin-top: calc(40 / 16 * var(--base-font-size));
}
@media screen and (min-width: 768px) {
  .p-story02__info {
    margin-top: calc(110 / 16 * var(--base-font-size));
  }
}
.p-story02__info + .p-story02__info {
  margin-top: calc(40 / 16 * var(--base-font-size));
}
@media screen and (min-width: 768px) {
  .p-story02__info + .p-story02__info {
    margin-top: calc(100 / 16 * var(--base-font-size));
  }
}

/* 動画
------------------------------------ */
.p-story02__video {
  display: none;
}
@media screen and (min-width: 768px) {
  .p-story02__video {
    display: block;
    margin-top: calc(160 / 16 * var(--base-font-size));
  }
}
.p-story02__video + .p-story02__info {
  margin-top: calc(40 / 16 * var(--base-font-size));
}
@media screen and (min-width: 768px) {
  .p-story02__video + .p-story02__info {
    margin-top: calc(150 / 16 * var(--base-font-size));
  }
}

/* 車両紹介
------------------------------------ */
.p-story02__vehicle {
  background-color: #d2e8d9;
  margin-top: calc(60 / 16 * var(--base-font-size));
  overflow: hidden;
  padding: calc(36 / 16 * var(--base-font-size)) 0 calc(40 / 16 * var(--base-font-size));
}
@media screen and (min-width: 768px) {
  .p-story02__vehicle {
    margin-top: calc(120 / 16 * var(--base-font-size));
    padding: calc(94 / 16 * var(--base-font-size)) 0 calc(140 / 16 * var(--base-font-size));
  }
}

.p-story02__vehicle-inner {
  padding-left: 0;
  padding-right: 0;
}
@media screen and (min-width: 768px) {
  .p-story02__vehicle-inner {
    max-width: 1160px;
    padding-left: 60px;
    padding-right: 60px;
  }
}

/* ====================================
  p-story03（ストーリー#3 固有スタイル）
==================================== */
/* 見出し＋テキスト＋画像セクション
------------------------------------ */
.p-story03__info {
  margin-top: calc(40 / 16 * var(--base-font-size));
}
@media screen and (min-width: 768px) {
  .p-story03__info {
    margin-top: calc(110 / 16 * var(--base-font-size));
  }
}
.p-story03__info + .p-story03__info {
  margin-top: calc(40 / 16 * var(--base-font-size));
}
@media screen and (min-width: 768px) {
  .p-story03__info + .p-story03__info {
    margin-top: calc(100 / 16 * var(--base-font-size));
  }
}

/* 動画
------------------------------------ */
.p-story03__video {
  display: none;
}
@media screen and (min-width: 768px) {
  .p-story03__video {
    display: block;
    margin-top: calc(160 / 16 * var(--base-font-size));
  }
}
.p-story03__video + .p-story03__info {
  margin-top: calc(40 / 16 * var(--base-font-size));
}
@media screen and (min-width: 768px) {
  .p-story03__video + .p-story03__info {
    margin-top: calc(150 / 16 * var(--base-font-size));
  }
}

/* 車両紹介
------------------------------------ */
.p-story03__vehicle {
  background-color: #d2e8d9;
  margin-top: calc(60 / 16 * var(--base-font-size));
  overflow: hidden;
  padding: calc(36 / 16 * var(--base-font-size)) 0 calc(40 / 16 * var(--base-font-size));
}
@media screen and (min-width: 768px) {
  .p-story03__vehicle {
    margin-top: calc(120 / 16 * var(--base-font-size));
    padding: calc(94 / 16 * var(--base-font-size)) 0 calc(140 / 16 * var(--base-font-size));
  }
}

.p-story03__vehicle-inner {
  padding-left: 0;
  padding-right: 0;
}
@media screen and (min-width: 768px) {
  .p-story03__vehicle-inner {
    max-width: 1160px;
    padding-left: 60px;
    padding-right: 60px;
  }
}

/* ====================================
  p-story04（ストーリー#4 固有スタイル）
==================================== */
/* 見出し＋テキスト＋画像セクション
------------------------------------ */
.p-story04__info {
  margin-top: calc(40 / 16 * var(--base-font-size));
}
@media screen and (min-width: 768px) {
  .p-story04__info {
    margin-top: calc(110 / 16 * var(--base-font-size));
  }
}
.p-story04__info + .p-story04__info {
  margin-top: calc(40 / 16 * var(--base-font-size));
}
@media screen and (min-width: 768px) {
  .p-story04__info + .p-story04__info {
    margin-top: calc(100 / 16 * var(--base-font-size));
  }
}

/* CLEAN
------------------------------------ */
.p-story04__clean {
  margin-top: calc(100 / 16 * var(--base-font-size));
  overflow: hidden;
}

.p-story04__clean-items {
  display: flex;
  flex-direction: column;
  gap: calc(100 / 16 * var(--base-font-size));
}
@media screen and (min-width: 768px) {
  .p-story04__clean-items {
    gap: calc(200 / 16 * var(--base-font-size));
  }
}

.p-story04__clean-title {
  color: #00a161;
  font-size: calc(40 / 16 * var(--base-font-size));
  font-style: italic;
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1;
  margin-top: 0.8em;
  text-align: right;
}
@media screen and (min-width: 768px) {
  .p-story04__clean-title {
    font-size: calc(73 / 16 * var(--base-font-size));
    max-width: min(1040px, 50vw + 460px);
    padding-left: 60px;
    padding-right: 60px;
    transform: translateX(-60px);
    width: 100vw;
  }
}

.p-story04__clean-subtitle {
  color: #00a161;
  font-size: calc(19 / 16 * var(--base-font-size));
  font-weight: 500;
  letter-spacing: 0.04em;
  transform: translateX(-0.5em);
}
@media screen and (min-width: 768px) {
  .p-story04__clean-subtitle {
    font-size: calc(30 / 16 * var(--base-font-size));
  }
}

.p-story04__clean-main {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin-top: calc(40 / 16 * var(--base-font-size));
}
@media screen and (min-width: 768px) {
  .p-story04__clean-main {
    flex-direction: row;
    margin-top: calc(30 / 16 * var(--base-font-size));
    max-width: min(1040px, 50vw + 460px);
    padding-left: 60px;
    padding-right: 60px;
    transform: translateX(-60px);
    width: 100vw;
  }
}

@media screen and (min-width: 768px) {
  .p-story04__clean-main-text {
    width: 48%;
  }
}

.p-story04__clean-main-text-description {
  font-size: calc(15 / 16 * var(--base-font-size));
  letter-spacing: 0.04em;
  line-height: 2.25;
  margin-top: 1em;
}
@media screen and (min-width: 768px) {
  .p-story04__clean-main-text-description {
    font-size: calc(20 / 16 * var(--base-font-size));
    line-height: 2.5;
  }
}

.p-story04__clean-main-image {
  margin-top: calc(20 / 16 * var(--base-font-size));
}
@media screen and (min-width: 768px) {
  .p-story04__clean-main-image {
    margin-top: calc(80 / 16 * var(--base-font-size));
    width: 45.4347826087%;
  }
}
.p-story04__clean-main-image img {
  border-radius: calc(18 / 16 * var(--base-font-size));
}

.p-story04__clean-item--right .p-story04__clean-cover {
  display: block;
  margin: 0 calc(50% - 50vw);
  width: 100vw;
}
@media screen and (min-width: 768px) {
  .p-story04__clean-item--right .p-story04__clean-cover {
    margin-left: 0;
    margin-right: calc(50% - 50vw);
    width: calc(50% + 50vw);
  }
}
.p-story04__clean-item--right .p-story04__clean-cover img {
  -o-object-fit: cover;
  aspect-ratio: 535/410;
  height: auto;
     object-fit: cover;
}
@media screen and (min-width: 768px) {
  .p-story04__clean-item--right .p-story04__clean-cover img {
    aspect-ratio: 1120/544;
  }
}

.p-story04__clean-item--left .p-story04__clean-cover {
  display: block;
  margin: 0 calc(50% - 50vw);
  width: 100vw;
}
@media screen and (min-width: 768px) {
  .p-story04__clean-item--left .p-story04__clean-cover {
    margin-left: calc(50% - 50vw);
    margin-right: 0;
    width: calc(50% + 50vw);
  }
}
.p-story04__clean-item--left .p-story04__clean-cover img {
  -o-object-fit: cover;
  aspect-ratio: 536/430;
  height: 100%;
     object-fit: cover;
}
@media screen and (min-width: 768px) {
  .p-story04__clean-item--left .p-story04__clean-cover img {
    aspect-ratio: 1120/544;
  }
}

/* 動画
------------------------------------ */
.p-story04__video {
  display: none;
}
@media screen and (min-width: 768px) {
  .p-story04__video {
    display: block;
    margin-top: calc(160 / 16 * var(--base-font-size));
  }
}
.p-story04__video + .p-story04__info {
  margin-top: calc(40 / 16 * var(--base-font-size));
}
@media screen and (min-width: 768px) {
  .p-story04__video + .p-story04__info {
    margin-top: calc(150 / 16 * var(--base-font-size));
  }
}

/* 1日の業務の流れ
------------------------------------ */
.p-story04__flow {
  background-color: #d2e8d9;
  margin-top: calc(100 / 16 * var(--base-font-size));
  overflow: hidden;
  padding: calc(40 / 16 * var(--base-font-size)) 0 calc(56 / 16 * var(--base-font-size));
}
@media screen and (min-width: 768px) {
  .p-story04__flow {
    margin-top: calc(160 / 16 * var(--base-font-size));
    padding: calc(160 / 16 * var(--base-font-size)) 0;
  }
}

.p-story04__flow-inner {
  max-width: 1170px;
}

.p-story04__flow-title {
  color: #00a161;
  font-size: calc(22 / 16 * var(--base-font-size));
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 1.6;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-story04__flow-title {
    font-size: calc(36 / 16 * var(--base-font-size));
  }
}

/* p-flow-list（業務フロー一覧）
------------------------------------ */
.p-flow-list__slider {
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  margin-top: calc(28 / 16 * var(--base-font-size));
  width: 100vw;
}
@media screen and (min-width: 768px) {
  .p-flow-list__slider {
    margin-left: 0;
    margin-left: initial;
    margin-right: 0;
    margin-right: initial;
    margin-top: calc(124 / 16 * var(--base-font-size));
    width: auto;
    width: initial;
  }
}

.p-flow-list__slider.swiper {
  overflow: visible;
}

@media screen and (min-width: 768px) {
  .p-flow-list__items {
    grid-gap: calc(48 / 16 * var(--base-font-size)) calc(50 / 16 * var(--base-font-size));
    align-items: start;
    display: grid;
    gap: calc(48 / 16 * var(--base-font-size)) calc(50 / 16 * var(--base-font-size));
    grid-template-columns: repeat(3, 1fr);
    margin: 0;
    margin: initial;
    transform: none;
    width: auto;
    width: initial;
  }
}

.p-flow-list__item {
  width: 56vw;
}
@media screen and (min-width: 768px) {
  .p-flow-list__item {
    padding-bottom: calc(90 / 16 * var(--base-font-size));
  }
}
@media screen and (min-width: 768px) {
  .p-flow-list__item {
    width: 100%;
  }
}
@media screen and (min-width: 768px) {
  .p-flow-list__item:nth-of-type(3n - 1) {
    transform: translateY(calc(110 / 16 * var(--base-font-size)));
  }
}
@media screen and (min-width: 768px) {
  .p-flow-list__item:nth-of-type(3n) {
    transform: translateY(calc(220 / 16 * var(--base-font-size)));
  }
}

.p-flow-list__image {
  border-radius: calc(8 / 16 * var(--base-font-size));
  display: block;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .p-flow-list__image {
    border-radius: calc(12 / 16 * var(--base-font-size));
  }
}
.p-flow-list__image img {
  -o-object-fit: cover;
  aspect-ratio: 4/3;
  display: block;
  height: auto;
     object-fit: cover;
  width: 100%;
}

.p-flow-list__title {
  color: #00a161;
  font-size: calc(14 / 16 * var(--base-font-size));
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 1.5;
  margin-top: 1em;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-flow-list__title {
    font-size: calc(21 / 16 * var(--base-font-size));
    text-align: left;
  }
}

.p-flow-list__description {
  font-feature-settings: "palt";
  font-size: calc(14 / 16 * var(--base-font-size));
  line-height: 1.9285714286;
  margin-top: 0.8em;
}
@media screen and (min-width: 768px) {
  .p-flow-list__description {
    font-size: calc(16 / 16 * var(--base-font-size));
    letter-spacing: 0;
  }
}

.p-flow-list__slider .swiper-button-prev,
.p-flow-list__slider .swiper-button-next {
  background-image: url("../images/common/icon_slider-arrow_01.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  margin-top: 0;
  width: calc(24 / 16 * var(--base-font-size));
}
@media screen and (min-width: 768px) {
  .p-flow-list__slider .swiper-button-prev,
  .p-flow-list__slider .swiper-button-next {
    display: none;
  }
}

.p-flow-list__slider .swiper-button-next {
  left: calc(78vw + 30px);
  right: auto;
  top: 21vw;
  transform: translateX(-50%) translateY(-50%);
}

.p-flow-list__slider .swiper-button-prev {
  left: calc(22vw - 30px);
  top: 21vw;
  transform: translateX(-50%) translateY(-50%) scaleX(-1);
}

.p-flow-list__slider .swiper-button-prev::after,
.p-flow-list__slider .swiper-button-next::after {
  display: none;
}

/* ====================================
  p-top（body）
==================================== */
.home .l-footer {
  display: none;
}

.p-top {
  min-height: 0;
  overflow: hidden;
}

/* ====================================
  p-top-mv（メインビジュアル）
==================================== */
.p-top-mv {
  background: #1a1a1a;
  height: 100svh;
  overflow: hidden;
  position: relative;
  width: 100%;
}

/* 背景 */
.p-top-mv__bg {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}

/* SPスライダー */
.p-top-mv__slider {
  height: 100%;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-top-mv__slider {
    display: none;
  }
}

.p-top-mv__slide {
  backface-visibility: hidden;
  height: 100%;
  overflow: hidden;
}

.p-top-mv__slide-img {
  height: 100%;
  width: 100%;
}
.p-top-mv__slide-img img {
  -o-object-fit: cover;
  -o-object-position: center;
  animation: p-top-mv-pan 8.5s linear forwards;
  animation-play-state: paused;
  height: 100%;
     object-fit: cover;
     object-position: center;
  width: 100%;
}

.p-top.is-loaded .p-top-mv__slide-img img {
  animation-play-state: running;
}

@keyframes p-top-mv-pan {
  from {
    transform: scale(1.15) translateX(5%);
  }
  to {
    transform: scale(1.15) translateX(-5%);
  }
}
.p-top-mv__slider .swiper-pagination-bullet {
  background: #ffffff;
  opacity: 0.5;
}

.p-top-mv__slider .swiper-pagination-bullet-active {
  opacity: 1;
}

/* PC動画 */
.p-top-mv__pc-bg {
  bottom: 0;
  display: none;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}
@media screen and (min-width: 768px) {
  .p-top-mv__pc-bg {
    display: block;
  }
}
.p-top-mv__pc-bg video {
  -o-object-fit: cover;
  -o-object-position: center;
  height: 100%;
     object-fit: cover;
     object-position: center;
  width: 100%;
}

/* ロゴ */
.p-top-mv__logo {
  left: calc(18 / 16 * var(--base-font-size));
  position: absolute;
  top: calc(28 / 16 * var(--base-font-size));
  width: calc(254 / 16 * var(--base-font-size));
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .p-top-mv__logo {
    bottom: calc(44 / 16 * var(--base-font-size));
    left: calc(68 / 16 * var(--base-font-size));
    top: auto;
    width: calc(474 / 16 * var(--base-font-size));
  }
}
.p-top-mv__logo img {
  height: auto;
  width: 100%;
}

/* ナビゲーション（PCのみ） */
.p-top-mv__nav {
  display: none;
}
@media screen and (min-width: 768px) {
  .p-top-mv__nav {
    bottom: calc(172 / 16 * var(--base-font-size));
    display: block;
    left: calc(68 / 16 * var(--base-font-size));
    position: absolute;
    z-index: 1;
  }
}

.p-top-mv__nav-list {
  display: flex;
  flex-direction: column;
  gap: calc(2 / 16 * var(--base-font-size));
  list-style: none;
}

.p-top-mv__nav-link {
  -webkit-text-decoration: none;
  align-items: center;
  color: #ffffff;
  display: inline-flex;
  font-size: calc(18 / 16 * var(--base-font-size));
  font-weight: 500;
  gap: calc(12 / 16 * var(--base-font-size));
  letter-spacing: 0.05em;
  padding: calc(5 / 16 * var(--base-font-size)) 0;
  text-decoration: none;
}

.p-top-mv__nav-icon {
  align-items: center;
  background: #ffffff;
  border-radius: 50%;
  display: inline-flex;
  flex-shrink: 0;
  height: calc(26 / 16 * var(--base-font-size));
  justify-content: center;
  transition: opacity 0.2s;
  width: calc(26 / 16 * var(--base-font-size));
}
.p-top-mv__nav-icon::after {
  border-right: 1.5px solid #00a53b;
  border-top: 1.5px solid #00a53b;
  content: "";
  display: block;
  height: calc(6 / 16 * var(--base-font-size));
  transform: rotate(45deg) translate(-1px, 1px);
  width: calc(6 / 16 * var(--base-font-size));
}

/* ====================================
  p-top-mv アニメーション（PCのみ）
==================================== */
@keyframes p-top-fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes p-top-slide-from-left {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes p-top-slide-from-right {
  from {
    opacity: 0;
    transform: translateX(20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
/* ① 背景 */
@media screen and (min-width: 768px) {
  .p-top-mv__pc-bg {
    animation: p-top-fadein 1.5s ease both;
    animation-play-state: paused;
  }
}

@media screen and (min-width: 768px) {
  .p-top.is-loaded .p-top-mv__pc-bg {
    animation-play-state: running;
  }
}

/* ② ロゴ */
@media screen and (min-width: 768px) {
  .p-top-mv__logo {
    animation: p-top-fadein 1.2s ease both;
    animation-delay: 1.5s;
    animation-play-state: paused;
  }
}

@media screen and (min-width: 768px) {
  .p-top.is-loaded .p-top-mv__logo {
    animation-play-state: running;
  }
}

/* ③ ナビ（左から） */
@media screen and (min-width: 768px) {
  .p-top-mv__nav {
    animation: p-top-slide-from-left 1.2s ease both;
    animation-delay: 3s;
    animation-play-state: paused;
  }
}

@media screen and (min-width: 768px) {
  .p-top.is-loaded .p-top-mv__nav {
    animation-play-state: running;
  }
}

/* ③ ヘッダー（右から） */
@media screen and (min-width: 768px) {
  .p-top .l-header {
    animation: p-top-slide-from-right 1.2s ease both;
    animation-delay: 3s;
    animation-play-state: paused;
  }
}

@media screen and (min-width: 768px) {
  .p-top.is-loaded .l-header {
    animation-play-state: running;
  }
}

/* STORIESボタン・MOVIEボタン（SPのみ） */
.p-top-mv__sp-btns {
  bottom: calc(60 / 16 * var(--base-font-size));
  display: flex;
  gap: calc(10 / 16 * var(--base-font-size));
  left: 8%;
  position: absolute;
  right: 8%;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .p-top-mv__sp-btns {
    display: none;
  }
}

.p-top-mv__sp-btn {
  -webkit-text-decoration: none;
  align-items: center;
  background: none;
  border: 1px solid #ffffff;
  border-radius: calc(10 / 16 * var(--base-font-size));
  color: #ffffff;
  cursor: pointer;
  display: flex;
  flex: 1 1 0;
  font-family: inherit;
  font-size: calc(14 / 16 * var(--base-font-size));
  justify-content: center;
  letter-spacing: 0.3em;
  min-width: 0;
  padding: calc(14 / 16 * var(--base-font-size)) calc(36 / 16 * var(--base-font-size));
  position: relative;
  text-decoration: none;
  white-space: nowrap;
}
.p-top-mv__sp-btn::after {
  border-right: 1.5px solid #ffffff;
  border-top: 1.5px solid #ffffff;
  content: "";
  display: block;
  height: calc(8 / 16 * var(--base-font-size));
  position: absolute;
  right: calc(14 / 16 * var(--base-font-size));
  transform: rotate(45deg) translate(-1px, 1px);
  width: calc(8 / 16 * var(--base-font-size));
}

/* ====================================
  p-info（見出し＋テキスト＋画像セクション）
==================================== */
@media screen and (min-width: 768px) {
  .p-info {
    max-width: 560px;
    width: 57.1428571429%;
  }
}
.p-info.p-info--right {
  margin-left: auto;
}

.p-info__title {
  color: #16935c;
  font-size: calc(19 / 16 * var(--base-font-size));
  font-weight: 400;
  letter-spacing: 0.03em;
}
@media screen and (min-width: 768px) {
  .p-info__title {
    font-size: calc(30 / 16 * var(--base-font-size));
    letter-spacing: 0.04em;
  }
}

.p-info__text {
  font-size: calc(15 / 16 * var(--base-font-size));
  letter-spacing: 0.06em;
  line-height: 2.25;
  margin-top: calc(10 / 16 * var(--base-font-size));
  word-break: keep-all;
}
@media screen and (min-width: 768px) {
  .p-info__text {
    font-size: calc(20 / 16 * var(--base-font-size));
    letter-spacing: 0.04em;
    line-height: 2.5;
    margin-top: calc(24 / 16 * var(--base-font-size));
  }
}

.p-info__image {
  border-radius: calc(8 / 16 * var(--base-font-size));
  display: block;
  margin-top: calc(24 / 16 * var(--base-font-size));
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .p-info__image {
    border-radius: calc(18 / 16 * var(--base-font-size));
    margin-top: calc(40 / 16 * var(--base-font-size));
  }
}
.p-info__image img {
  display: block;
  height: auto;
  width: 100%;
}

.p-info--left .p-info__image {
  margin-left: calc(50% - 50vw);
  transform: translateX(-9%);
  width: 100vw;
}
@media screen and (min-width: 768px) {
  .p-info--left .p-info__image {
    margin-left: 0;
    margin-left: initial;
    transform: none;
    transform: initial;
    width: auto;
    width: initial;
  }
}

.p-info--right .p-info__image {
  margin-right: calc(50% - 50vw);
  width: 100vw;
}
@media screen and (min-width: 768px) {
  .p-info--right .p-info__image {
    margin-right: 0;
    margin-right: initial;
    width: auto;
    width: initial;
  }
}

/* 次のストーリー
------------------------------------ */
.p-other-menu {
  align-content: center;
  aspect-ratio: 562/430;
  display: grid;
  justify-content: center;
  overflow: hidden;
  place-content: center;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-other-menu {
    aspect-ratio: 1440/446;
  }
}
.p-other-menu.c-fade {
  transition: opacity 1.8s ease-in-out, transform 1.8s ease-in-out;
}

.p-other-menu__bg {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}
.p-other-menu__bg::after {
  background: rgba(0, 0, 0, 0.45);
  bottom: 0;
  content: "";
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}
.p-other-menu__bg picture {
  display: block;
  height: 100%;
  width: 100%;
}
.p-other-menu__bg img {
  -o-object-fit: cover;
  -o-object-position: center;
  height: 100%;
     object-fit: cover;
     object-position: center;
  width: 100%;
}

.p-other-menu__body {
  align-items: center;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: calc(300 / 16 * var(--base-font-size));
  opacity: 0;
  position: relative;
  transition: opacity 0.6s ease;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .p-other-menu__body {
    align-items: initial;
    min-height: calc(446 / 16 * var(--base-font-size));
  }
}

.p-story__next.is-inview .p-other-menu__body {
  opacity: 1;
  transition-delay: 1s;
}

.p-other-menu__story-num {
  font-size: calc(10 / 16 * var(--base-font-size));
  letter-spacing: 0.4em;
  margin-top: 2em;
}
@media screen and (min-width: 768px) {
  .p-other-menu__story-num {
    font-size: calc(12 / 16 * var(--base-font-size));
    margin-top: calc(0 / 16 * var(--base-font-size));
  }
}

.p-other-menu__title {
  font-size: calc(23 / 16 * var(--base-font-size));
  letter-spacing: 0.1em;
  line-height: 1.4;
  margin-top: 0.6em;
  text-align: center;
  word-break: keep-all;
}
@media screen and (min-width: 768px) {
  .p-other-menu__title {
    font-size: calc(40 / 16 * var(--base-font-size));
    text-align: left;
    text-align: initial;
  }
}

.p-other-menu__link {
  -webkit-text-decoration: none;
  align-items: center;
  color: #ffffff;
  display: inline-flex;
  font-size: calc(10 / 16 * var(--base-font-size));
  gap: 1em;
  letter-spacing: 0.4em;
  margin-top: 3em;
  text-decoration: none;
}
@media screen and (min-width: 768px) {
  .p-other-menu__link {
    font-size: calc(14 / 16 * var(--base-font-size));
    margin-top: 4em;
  }
}

.p-other-menu__link-icon {
  align-items: center;
  background: #ffffff;
  border-radius: 50%;
  display: inline-flex;
  flex-shrink: 0;
  height: calc(24 / 16 * var(--base-font-size));
  justify-content: center;
  transition: all 0.3s ease 0s;
  width: calc(24 / 16 * var(--base-font-size));
}
@media screen and (min-width: 768px) {
  .p-other-menu__link-icon {
    height: calc(34 / 16 * var(--base-font-size));
    width: calc(34 / 16 * var(--base-font-size));
  }
}
.p-other-menu__link-icon::after {
  border-right: 1.5px solid #00a53b;
  border-top: 1.5px solid #00a53b;
  content: "";
  display: block;
  height: calc(6 / 16 * var(--base-font-size));
  transform: rotate(45deg) translate(-1px, 1px);
  transition: all 0.3s ease 0s;
  width: calc(6 / 16 * var(--base-font-size));
}

.p-other-menu__menu {
  display: flex;
  flex-direction: column;
  gap: 0.5em;
  list-style: none;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-other-menu__menu {
    display: none;
  }
}

.p-other-menu__menu-link {
  -webkit-text-decoration: none;
  align-items: center;
  color: #ffffff;
  display: inline-flex;
  font-size: calc(14 / 16 * var(--base-font-size));
  gap: 1em;
  letter-spacing: 0.05em;
  text-decoration: none;
}

.p-other-menu__menu-icon {
  align-items: center;
  background-color: #ffffff;
  border-radius: 50%;
  display: inline-flex;
  flex-shrink: 0;
  height: calc(24 / 16 * var(--base-font-size));
  justify-content: center;
  width: calc(24 / 16 * var(--base-font-size));
}
.p-other-menu__menu-icon::after {
  border-right: 1.5px solid #211613;
  border-top: 1.5px solid #211613;
  content: "";
  display: block;
  height: calc(6 / 16 * var(--base-font-size));
  transform: rotate(45deg) translate(-1px, 1px);
  width: calc(6 / 16 * var(--base-font-size));
}

@media (hover: hover) {
  .p-story__next:hover {
    opacity: 0.8;
  }
  .p-story__next:hover .p-other-menu__link-icon {
    background-color: #00a53b;
  }
  .p-story__next:hover .p-other-menu__link-icon::after {
    border-right: 1.5px solid #ffffff;
    border-top: 1.5px solid #ffffff;
  }
}

/* ポイントグリッド */
.p-recruit-points {
  grid-gap: calc(48 / 16 * var(--base-font-size));
  display: grid;
  gap: calc(48 / 16 * var(--base-font-size));
  grid-template-columns: 1fr;
}
@media screen and (min-width: 768px) {
  .p-recruit-points {
    gap: calc(80 / 16 * var(--base-font-size)) calc(60 / 16 * var(--base-font-size));
    grid-template-columns: repeat(3, 1fr);
  }
}

.p-recruit-points__item {
  grid-gap: 0;
  display: grid;
  gap: 0;
  grid-row: span 3;
  grid-template-rows: subgrid;
}

.p-recruit-points__icon {
  align-content: center;
  display: grid;
  justify-content: center;
  place-content: center;
}
.p-recruit-points__icon img {
  height: auto;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}

.p-recruit-points__title {
  color: #00a161;
  font-size: calc(17 / 16 * var(--base-font-size));
  margin-top: 2em;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-recruit-points__title {
    font-size: calc(21 / 16 * var(--base-font-size));
  }
}

.p-recruit-points__description {
  font-size: calc(14 / 16 * var(--base-font-size));
  line-height: 1.9285714286;
  margin-top: 1em;
}
@media screen and (min-width: 768px) {
  .p-recruit-points__description {
    font-size: calc(16 / 16 * var(--base-font-size));
  }
}

.p-recruit-points__item:nth-child(1) .p-recruit-points__icon img {
  max-width: calc(134 / 16 * var(--base-font-size));
}
@media screen and (min-width: 768px) {
  .p-recruit-points__item:nth-child(1) .p-recruit-points__icon img {
    max-width: calc(160 / 16 * var(--base-font-size));
  }
}
.p-recruit-points__item:nth-child(2) .p-recruit-points__icon img {
  max-width: calc(163 / 16 * var(--base-font-size));
}
.p-recruit-points__item:nth-child(3) .p-recruit-points__icon img {
  max-width: calc(143 / 16 * var(--base-font-size));
}
.p-recruit-points__item:nth-child(4) .p-recruit-points__icon img {
  max-width: calc(158 / 16 * var(--base-font-size));
}
.p-recruit-points__item:nth-child(5) .p-recruit-points__icon img {
  max-width: calc(163 / 16 * var(--base-font-size));
}
.p-recruit-points__item:nth-child(6) .p-recruit-points__icon img {
  max-width: calc(218 / 16 * var(--base-font-size));
}

/* ====================================
  p-story（共通ストーリーページ）
==================================== */
/* MV
------------------------------------ */
.p-story__mv {
  background: #1a1a1a;
  height: 100svh;
  overflow: hidden;
  position: relative;
  width: 100%;
}

.p-story__mv-bg {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}
.p-story__mv-bg::after {
  background: linear-gradient(to top, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.1) 40%, transparent 60%);
  bottom: 0;
  content: "";
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}
.p-story__mv-bg picture {
  display: block;
  height: 100%;
  width: 100%;
}
.p-story__mv-bg img {
  -o-object-fit: cover;
  -o-object-position: center;
  height: 100%;
     object-fit: cover;
     object-position: center;
  width: 100%;
}

.p-story__mv-logo {
  left: calc(18 / 16 * var(--base-font-size));
  position: absolute;
  top: calc(28 / 16 * var(--base-font-size));
  width: calc(254 / 16 * var(--base-font-size));
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .p-story__mv-logo {
    left: calc(68 / 16 * var(--base-font-size));
    top: calc(58 / 16 * var(--base-font-size));
    width: calc(386 / 16 * var(--base-font-size));
  }
}
.p-story__mv-logo img {
  height: auto;
  width: 100%;
}

.p-story__mv-title-area {
  align-items: end;
  color: #ffffff;
  display: grid;
  height: 100%;
  justify-items: start;
  padding-bottom: calc(80 / 16 * var(--base-font-size));
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .p-story__mv-title-area {
    padding-bottom: calc(50 / 16 * var(--base-font-size));
  }
}

.p-story__mv-story-num {
  font-size: calc(10 / 16 * var(--base-font-size));
  font-weight: 300;
  letter-spacing: 0.3em;
  padding-left: 0.5em;
}
@media screen and (min-width: 768px) {
  .p-story__mv-story-num {
    font-size: calc(14 / 16 * var(--base-font-size));
    padding-left: 0;
  }
}

.p-story__mv-title {
  font-size: calc(29 / 16 * var(--base-font-size));
  font-weight: 400;
  letter-spacing: 0.1em;
  line-height: 1.7;
  margin-top: 0.4em;
  word-break: keep-all;
}
@media screen and (min-width: 768px) {
  .p-story__mv-title {
    font-size: calc(40 / 16 * var(--base-font-size));
    margin-top: 0.5em;
  }
}

/* 本文
------------------------------------ */
.p-story__body {
  margin-top: calc(36 / 16 * var(--base-font-size));
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .p-story__body {
    margin-top: calc(50 / 16 * var(--base-font-size));
  }
}

.p-story__body-content {
  display: flex;
  flex-direction: column;
  gap: calc(40 / 16 * var(--base-font-size));
}
@media screen and (min-width: 768px) {
  .p-story__body-content {
    gap: calc(120 / 16 * var(--base-font-size));
  }
}

.p-story__body-text {
  font-size: calc(15 / 16 * var(--base-font-size));
  line-height: 2.25;
  word-break: keep-all;
}
@media screen and (min-width: 768px) {
  .p-story__body-text {
    font-size: calc(22 / 16 * var(--base-font-size));
    letter-spacing: 0.04em;
    line-height: 2.5;
  }
}

.p-story__body-figure {
  display: block;
}
.p-story__body-figure img {
  display: block;
  height: auto;
  width: 100%;
}

.p-story__body-figure-sp {
  display: block;
}
@media screen and (min-width: 768px) {
  .p-story__body-figure-sp {
    display: none;
  }
}
.p-story__body-figure-sp img {
  border-radius: calc(18 / 16 * var(--base-font-size));
}

.p-story__body-figure-pc {
  display: none;
}
@media screen and (min-width: 768px) {
  .p-story__body-figure-pc {
    display: block;
  }
}

.p-story__body-figure-pc .c-video {
  aspect-ratio: unset;
  background-color: transparent;
}

.p-story__body-figure-pc .c-video__file {
  height: auto;
  position: static;
}

.p-story__body-figure-right {
  display: block;
  margin: 0 calc(50% - 50vw);
  width: 100vw;
}
@media screen and (min-width: 768px) {
  .p-story__body-figure-right {
    margin-left: 0;
    margin-right: calc(50% - 50vw);
    width: calc(50% + 50vw);
  }
}
.p-story__body-figure-right img {
  -o-object-fit: cover;
  aspect-ratio: 535/410;
  height: auto;
     object-fit: cover;
}
@media screen and (min-width: 768px) {
  .p-story__body-figure-right img {
    aspect-ratio: 1120/544;
  }
}

.p-story__body-figure-left {
  display: block;
  margin: 0 calc(50% - 50vw);
  width: 100vw;
}
@media screen and (min-width: 768px) {
  .p-story__body-figure-left {
    margin-left: calc(50% - 50vw);
    margin-right: 0;
    width: calc(50% + 50vw);
  }
}
.p-story__body-figure-left img {
  -o-object-fit: cover;
  aspect-ratio: 536/430;
  height: 100%;
     object-fit: cover;
}
@media screen and (min-width: 768px) {
  .p-story__body-figure-left img {
    aspect-ratio: 1120/544;
  }
}

/* 次のストーリー
------------------------------------ */
.p-story__next {
  display: block;
  overflow: hidden;
  position: relative;
}

.p-story__next.c-fade {
  transition: opacity 1.8s ease-in-out, transform 1.8s ease-in-out;
}

.p-story__next-bg {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}
.p-story__next-bg::after {
  background: rgba(0, 0, 0, 0.45);
  bottom: 0;
  content: "";
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}
.p-story__next-bg picture {
  display: block;
  height: 100%;
  width: 100%;
}
.p-story__next-bg img {
  -o-object-fit: cover;
  -o-object-position: center;
  height: 100%;
     object-fit: cover;
     object-position: center;
  width: 100%;
}

.p-story__next-body {
  align-items: center;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: calc(300 / 16 * var(--base-font-size));
  opacity: 0;
  position: relative;
  transition: opacity 0.6s ease;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .p-story__next-body {
    align-items: initial;
    min-height: calc(446 / 16 * var(--base-font-size));
  }
}

.p-story__next.is-inview .p-story__next-body {
  opacity: 1;
  transition-delay: 1s;
}

.p-story__next-story-num {
  font-size: calc(10 / 16 * var(--base-font-size));
  letter-spacing: 0.4em;
  margin-top: 2em;
}
@media screen and (min-width: 768px) {
  .p-story__next-story-num {
    font-size: calc(12 / 16 * var(--base-font-size));
    margin-top: calc(0 / 16 * var(--base-font-size));
  }
}

.p-story__next-title {
  font-size: calc(23 / 16 * var(--base-font-size));
  letter-spacing: 0.1em;
  line-height: 1.4;
  margin-top: 0.6em;
  text-align: center;
  word-break: keep-all;
}
@media screen and (min-width: 768px) {
  .p-story__next-title {
    font-size: calc(40 / 16 * var(--base-font-size));
    text-align: left;
    text-align: initial;
  }
}

.p-story__next-link {
  -webkit-text-decoration: none;
  align-items: center;
  color: #ffffff;
  display: inline-flex;
  font-size: calc(10 / 16 * var(--base-font-size));
  gap: 1em;
  letter-spacing: 0.4em;
  margin-top: 3em;
  text-decoration: none;
}
@media screen and (min-width: 768px) {
  .p-story__next-link {
    font-size: calc(14 / 16 * var(--base-font-size));
    margin-top: 4em;
  }
}

.p-story__next-link-icon {
  align-items: center;
  background: #ffffff;
  border-radius: 50%;
  display: inline-flex;
  flex-shrink: 0;
  height: calc(24 / 16 * var(--base-font-size));
  justify-content: center;
  transition: all 0.3s ease 0s;
  width: calc(24 / 16 * var(--base-font-size));
}
@media screen and (min-width: 768px) {
  .p-story__next-link-icon {
    height: calc(34 / 16 * var(--base-font-size));
    width: calc(34 / 16 * var(--base-font-size));
  }
}
.p-story__next-link-icon::after {
  border-right: 1.5px solid #00a53b;
  border-top: 1.5px solid #00a53b;
  content: "";
  display: block;
  height: calc(6 / 16 * var(--base-font-size));
  transform: rotate(45deg) translate(-1px, 1px);
  transition: all 0.3s ease 0s;
  width: calc(6 / 16 * var(--base-font-size));
}

.p-story__next-menu {
  display: flex;
  flex-direction: column;
  gap: 0.5em;
  list-style: none;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-story__next-menu {
    display: none;
  }
}

.p-story__next-menu-link {
  -webkit-text-decoration: none;
  align-items: center;
  color: #ffffff;
  display: inline-flex;
  font-size: calc(14 / 16 * var(--base-font-size));
  gap: 1em;
  letter-spacing: 0.05em;
  text-decoration: none;
}

.p-story__next-menu-icon {
  align-items: center;
  background-color: #ffffff;
  border-radius: 50%;
  display: inline-flex;
  flex-shrink: 0;
  height: calc(24 / 16 * var(--base-font-size));
  justify-content: center;
  width: calc(24 / 16 * var(--base-font-size));
}
.p-story__next-menu-icon::after {
  border-right: 1.5px solid #211613;
  border-top: 1.5px solid #211613;
  content: "";
  display: block;
  height: calc(6 / 16 * var(--base-font-size));
  transform: rotate(45deg) translate(-1px, 1px);
  width: calc(6 / 16 * var(--base-font-size));
}

@media (hover: hover) {
  .p-story__next:hover {
    opacity: 0.8;
  }
  .p-story__next:hover .p-story__next-link-icon {
    background-color: #00a53b;
  }
  .p-story__next:hover .p-story__next-link-icon::after {
    border-right: 1.5px solid #ffffff;
    border-top: 1.5px solid #ffffff;
  }
}

/* ====================================
  p-vehicle-list（車両紹介スライダー）
==================================== */
.p-vehicle-list {
  overflow: hidden;
}
.p-vehicle-list__catch {
  color: #16935c;
  font-size: calc(22 / 16 * var(--base-font-size));
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 1.7;
  padding-left: 8%;
  padding-right: 8%;
  text-align: center;
  word-break: keep-all;
}
@media screen and (min-width: 768px) {
  .p-vehicle-list__catch {
    font-size: calc(36 / 16 * var(--base-font-size));
    letter-spacing: 0.04em;
  }
}

.p-vehicle-list__slider {
  margin: 0 calc(50% - 50vw);
  margin-top: calc(32 / 16 * var(--base-font-size));
  width: 100vw;
}
@media screen and (min-width: 768px) {
  .p-vehicle-list__slider {
    margin: 0;
    margin: initial;
    margin-top: calc(80 / 16 * var(--base-font-size));
    width: auto;
    width: initial;
  }
}

.p-vehicle-list__slider.swiper {
  overflow: visible;
}
@media screen and (min-width: 768px) {
  .p-vehicle-list__slider.swiper {
    overflow: visible;
  }
}

@media screen and (min-width: 768px) {
  .p-vehicle-list__items {
    grid-gap: calc(53 / 16 * var(--base-font-size));
    display: grid;
    gap: calc(53 / 16 * var(--base-font-size));
    grid-template-columns: repeat(3, 1fr);
    margin: 0;
    margin: initial;
    transform: none;
    width: auto;
    width: initial;
  }
}

.p-vehicle-list__item {
  text-align: center;
  width: 56vw;
}
@media screen and (min-width: 768px) {
  .p-vehicle-list__item {
    width: 100%;
  }
}

.p-vehicle-list__image {
  border-radius: calc(8 / 16 * var(--base-font-size));
  display: block;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .p-vehicle-list__image {
    border-radius: calc(12 / 16 * var(--base-font-size));
  }
}
.p-vehicle-list__image img {
  -o-object-fit: cover;
  aspect-ratio: 4/3;
  display: block;
  height: auto;
     object-fit: cover;
  width: 100%;
}

.p-vehicle-list__name {
  color: #16935c;
  font-size: calc(14 / 16 * var(--base-font-size));
  font-weight: 400;
  letter-spacing: 0.04em;
  margin-top: 1em;
}
@media screen and (min-width: 768px) {
  .p-vehicle-list__name {
    font-size: calc(21 / 16 * var(--base-font-size));
  }
}

.p-vehicle-list__capacity {
  font-size: calc(13 / 16 * var(--base-font-size));
  margin-top: 0.8em;
}
@media screen and (min-width: 768px) {
  .p-vehicle-list__capacity {
    font-size: calc(16 / 16 * var(--base-font-size));
  }
}

.p-vehicle-list__slider .swiper-button-prev,
.p-vehicle-list__slider .swiper-button-next {
  background-image: url("../images/common/icon_slider-arrow_01.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: calc(24 / 16 * var(--base-font-size));
}
@media screen and (min-width: 768px) {
  .p-vehicle-list__slider .swiper-button-prev,
  .p-vehicle-list__slider .swiper-button-next {
    display: none;
  }
}

.p-vehicle-list__slider .swiper-button-next {
  right: 11.5%;
  transform: translateY(-60%);
}

.p-vehicle-list__slider .swiper-button-prev {
  left: 11.5%;
  transform: translateY(-60%) scaleX(-1);
}

.p-vehicle-list__slider .swiper-button-prev::after,
.p-vehicle-list__slider .swiper-button-next::after {
  display: none;
}

.u-align__center {
  text-align: center !important;
}

.u-align__left {
  text-align: left !important;
}

.u-align__right {
  text-align: right !important;
}

.u-color__initial {
  color: #000;
  color: initial;
}

.u-color__blue {
  color: #00a161;
}

.u-color__accent-01 {
  color: #00a5c0;
}

.u-display__none {
  display: none;
}

.u-display__pc-only {
  display: none;
}
@media screen and (min-width: 768px) {
  .u-display__pc-only {
    display: block;
  }
}

@media screen and (min-width: 768px) {
  .u-display__sp-only {
    display: none;
  }
}

.u-font__bold {
  font-weight: 700;
}

.u-font__normal {
  font-weight: 400;
}

.u-ellipsis {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.u-indent--0 {
  padding-left: 0em;
  text-indent: 0em;
}

.u-indent--10 {
  padding-left: 1em;
  text-indent: -1em;
}

.u-indent--15 {
  padding-left: 1.5em;
  text-indent: -1.5em;
}

.u-indent--20 {
  padding-left: 2em;
  text-indent: -2em;
}

.u-indent--25 {
  padding-left: 2.5em;
  text-indent: -2.5em;
}

.u-indent--30 {
  padding-left: 3em;
  text-indent: -3em;
}

.u-indent--40 {
  padding-left: 4em;
  text-indent: -4em;
}

.u-indent--50 {
  padding-left: 5em;
  text-indent: -5em;
}

.u-margin__top-0 {
  margin-top: 0 !important;
}

.u-margin__top-1em {
  margin-top: 1em;
}

.u-margin__top-2em {
  margin-top: 2em;
}

.u-margin__top-3em {
  margin-top: 3em;
}

/* Layout
========================================================================== */
/* Component
========================================================================== */
/* Pages
========================================================================== */
/* Project
========================================================================== */
/* Utility
========================================================================== */
/*# sourceMappingURL=style.css.map */
