@charset "UTF-8";

@charset "UTF-8";
/* ===============================================
style.scss
================================================ */
:root {
  /* Colors */
  --color-primary: #85B231;
  --color-secondary: rgba(177, 206, 123, 0.8);
  --color-bg-light: #F4F9E9;
  --color-bg-service: #F5F6F7;
  --color-bg-table-category: #F3F7EA;
  --color-text-main: #3c3c3c;
  --color-border: #ccc;
  --color-white: #fff;
  --color-orange: #F29443;
  --color-orange-dark: #f48324;
  --color-beige-light: #fde6d3;
  --color-bg-kennie: #fef6f0;
  --color-green: #008D4E;
  --color-bg-nike: #edf6f2;
  --color-nike-green: #007a46;
  --color-nike-table-first: #d9ebe3;
  --color-text-note: #8a8a8a;
  --color-bg-placeholder: #0066cc;
  --color-bg-philosophy: #f8f9f9;
  --color-bg-catalog: #f6faf1;
}

/* ===============================================
style.scss
================================================ */
/* ===============================================
_reset.scss
================================================ */
/* -------------------------------------------------
リセット
---------------------------------------------------- */
* {
  box-sizing: border-box;
}

/*
html, body
---------------------------------------------------- */
html,
body {
  margin: 0;
  padding: 0;
}

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

/* body */
body {
  font-size: 1.6rem;
  line-height: 1.6;
  color: #3c3c3c;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-weight: 400;
  overflow-x: hidden;
}
@media screen and (max-width : 767px) {
  html,
  body {
    overflow-x: hidden;
  }
}

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

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

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

/*
h1, h2, h3, h4, h5, h6
---------------------------------------------------- */
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  font-weight: normal;
}

/* p */
p {
  margin: 0;
}

/* ===============================================
_font.scss
================================================ */
/* Noto Sans JP
   ========================================================================== */
@font-face {
  font-family: "Noto Sans JP";
  src: url("../assets/fonts/Noto_Sans_JP/NotoSans-Thin.woff2") format("woff2"), url("../assets/fonts/Noto_Sans_JP/NotoSans-Thin.woff") format("woff");
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Noto Sans JP";
  src: url("../assets/fonts/Noto_Sans_JP/NotoSans-Light.woff2") format("woff2"), url("../assets/fonts/Noto_Sans_JP/NotoSans-Light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Noto Sans JP";
  src: url("../assets/fonts/Noto_Sans_JP/NotoSans-Regular.woff2") format("woff2"), url("../assets/fonts/Noto_Sans_JP/NotoSans-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Noto Sans JP";
  src: url("../assets/fonts/Noto_Sans_JP/NotoSans-Medium.woff2") format("woff2"), url("../assets/fonts/Noto_Sans_JP/NotoSans-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
/* Oswald
   ========================================================================== */
@font-face {
  font-family: "Oswald";
  src: url("../assets/fonts/Oswald/Oswald-VariableFont_wght.woff2") format("woff2 supports variations"), url("../assets/fonts/Oswald/Oswald-VariableFont_wght.woff2") format("woff2"), url("../assets/fonts/Oswald/Oswald-VariableFont_wght.woff") format("woff");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}
/* ===============================================
style.scss
================================================ */
/* ===============================================
_header.scss
================================================ */
/* ===============================================
style.scss
================================================ */
/* ===============================================
_mixin.scss
================================================ */
/* mq */
/* clearfix */
/* media-retina */
/* title-en */
/* title-ja */
/* -------------------------------------------------
SP共通デザイン調整用のmixin（PC版には影響しません）
---------------------------------------------------- */
/* sp-sub-mainvisual-height - サブページMVの高さ共通化（SPのみ） */
/* sp-section-title-ja - セクション日本語タイトルの共通スタイル（SPのみ） */
/* sp-section-title-en - セクション英語タイトルの共通スタイル（SPのみ） */
/* description-text - 説明文の共通スタイル */
/* heading-line - 緑背景のラベルデザイン（親要素） */
/* heading-line-item - 背景色付きのラベルデザイン（各ラベル） */
/* primary-heading - プライマリーカラーの見出しスタイル */
/* -------------------------------------------------
.l-header
---------------------------------------------------- */
.l-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  width: 100%;
  background-color: transparent;
  transition: background-color 0.4s ease, opacity 0.8s ease-out, transform 0.8s ease-out;
  opacity: 0;
  transform: translateY(-100%);
}
body.is-subpage .l-header {
  background-color: #fff;
}

.l-header.is-header-visible {
  opacity: 1;
  transform: translateY(0);
}

/* -------------------------------------------------
.l-header.is-scrolled
---------------------------------------------------- */
.l-header.is-scrolled {
  background-color: #fff;
}

/* -------------------------------------------------
.l-header__inner
---------------------------------------------------- */
.l-header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 28px 38px;
}
@media screen and (min-width : 1024px) {
  .l-header__inner {
    max-width: none;
  }
}
@media screen and (max-width: 1200px) {
  .l-header__inner {
    padding: 24px 30px;
  }
}
@media screen and (min-width : 768px) and (max-width : 1023px) {
  .l-header__inner {
    max-width: 100%;
    padding: 24px 30px;
  }
}
@media screen and (max-width : 767px) {
  .l-header__inner {
    padding: 20px 20px;
  }
}

/* -------------------------------------------------
.l-header__left
---------------------------------------------------- */
.l-header__left {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  gap: 20px;
  margin-right: 170px;
}
@media screen and (max-width: 1200px) {
  .l-header__left {
    margin-right: 120px;
    gap: 16px;
  }
}
@media screen and (max-width: 1100px) {
  .l-header__left {
    margin-right: 80px;
    gap: 14px;
  }
}
@media screen and (min-width : 768px) and (max-width : 1023px) {
  .l-header__left {
    margin-right: 60px;
    gap: 14px;
  }
}
@media screen and (max-width: 900px) {
  .l-header__left {
    margin-right: 40px;
    gap: 12px;
  }
}
@media screen and (max-width : 767px) {
  .l-header__left {
    margin-right: 0;
    gap: 12px;
  }
}

/* -------------------------------------------------
.l-header__logo
---------------------------------------------------- */
.l-header__logo {
  margin: 0;
  font-size: 0;
  line-height: 0;
  flex-shrink: 0;
}

/* -------------------------------------------------
.l-header__logo-img
---------------------------------------------------- */
.l-header__logo-img {
  width: 280px;
  height: auto;
  transition: filter 0.4s ease;
}
@media screen and (max-width: 1230px) {
  .l-header__logo-img {
    width: 240px;
  }
}
@media screen and (max-width: 1100px) {
  .l-header__logo-img {
    width: 220px;
  }
}
@media screen and (min-width : 768px) and (max-width : 1023px) {
  .l-header__logo-img {
    width: 200px;
  }
}
@media screen and (max-width: 900px) {
  .l-header__logo-img {
    width: 180px;
  }
}
@media screen and (max-width : 767px) {
  .l-header__logo-img {
    width: 200px;
  }
}
.l-header.is-scrolled .l-header__logo-img {
  filter: brightness(0);
}
body.is-subpage .l-header__logo-img {
  filter: brightness(0);
}

/* -------------------------------------------------
.l-header__navigation
---------------------------------------------------- */
.l-header__navigation {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-shrink: 1;
  min-width: 0;
}
@media screen and (max-width: 1200px) {
  .l-header__navigation {
    gap: 20px;
  }
}
@media screen and (max-width: 1100px) {
  .l-header__navigation {
    gap: 16px;
  }
}
@media screen and (min-width : 768px) and (max-width : 1023px) {
  .l-header__navigation {
    gap: 14px;
  }
}
@media screen and (max-width: 900px) {
  .l-header__navigation {
    gap: 12px;
  }
}
@media screen and (max-width : 767px) {
  .l-header__navigation {
    gap: 18px;
  }
}

/* -------------------------------------------------
.l-header__nav-list
---------------------------------------------------- */
.l-header__nav-list {
  display: flex;
  align-items: center;
  gap: 28px;
  margin: 0;
  padding: 0;
  flex-shrink: 1;
  min-width: 0;
}
@media screen and (max-width: 1200px) {
  .l-header__nav-list {
    gap: 20px;
  }
}
@media screen and (max-width: 1100px) {
  .l-header__nav-list {
    gap: 16px;
  }
}
@media screen and (min-width : 768px) and (max-width : 1023px) {
  .l-header__nav-list {
    gap: 14px;
  }
}
@media screen and (max-width: 900px) {
  .l-header__nav-list {
    gap: 12px;
  }
}
@media screen and (max-width : 767px) {
  .l-header__nav-list {
    display: none;
    gap: 18px;
  }
}

/* -------------------------------------------------
.l-header__nav-item
---------------------------------------------------- */
.l-header__nav-item {
  list-style: none;
}

/* -------------------------------------------------
.l-header__nav-link
---------------------------------------------------- */
.l-header__nav-link {
  display: flex;
  align-items: center;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-weight: 400;
  font-size: 1.9rem;
  text-decoration: none;
  letter-spacing: 0.13em;
  color: #fff;
  transition: color 0.4s ease, opacity 0.3s;
  white-space: nowrap;
  flex-shrink: 0;
}
@media screen and (max-width: 1200px) {
  .l-header__nav-link {
    font-size: 1.7rem;
  }
}
@media screen and (max-width: 1100px) {
  .l-header__nav-link {
    font-size: 1.5rem;
  }
}
@media screen and (min-width : 768px) and (max-width : 1023px) {
  .l-header__nav-link {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 900px) {
  .l-header__nav-link {
    font-size: 1.3rem;
  }
}
@media screen and (max-width : 767px) {
  .l-header__nav-link {
    font-size: 1.3rem;
  }
}
.l-header__nav-link:hover {
  opacity: 0.7;
}
.l-header.is-scrolled .l-header__nav-link {
  color: #3c3c3c;
}
body.is-subpage .l-header__nav-link {
  color: #3c3c3c;
}

/* -------------------------------------------------
.l-header__nav-arrow
---------------------------------------------------- */
.l-header__nav-arrow {
  display: inline-block;
  width: 8px;
  height: 8px;
  margin: -4px 0 0 8px;
  border-right: 1px solid #fff;
  border-bottom: 1px solid #fff;
  transform: rotate(45deg);
  transition: border-color 0.4s ease;
}
.l-header.is-scrolled .l-header__nav-arrow {
  border-right-color: #85B231;
  border-bottom-color: #85B231;
}
body.is-subpage .l-header__nav-arrow {
  border-right-color: #85B231;
  border-bottom-color: #85B231;
}

/* -------------------------------------------------
.l-header__menu-button
---------------------------------------------------- */
.l-header__menu-button {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  padding: 0;
  cursor: pointer;
  background-color: transparent;
  border: 1px solid #fff;
  border-radius: 4px;
  transition: background-color 0.4s ease, border-color 0.4s ease;
  flex-shrink: 0;
  margin-left: 8px;
}
body.is-subpage .l-header__menu-button {
  border-color: #85B231;
}
@media screen and (max-width: 1200px) {
  .l-header__menu-button {
    width: 42px;
    height: 42px;
  }
}
@media screen and (max-width: 1100px) {
  .l-header__menu-button {
    width: 40px;
    height: 40px;
    margin-left: 6px;
  }
}
@media screen and (min-width : 768px) and (max-width : 1023px) {
  .l-header__menu-button {
    width: 38px;
    height: 38px;
    margin-left: 4px;
  }
}
@media screen and (max-width: 900px) {
  .l-header__menu-button {
    width: 36px;
    height: 36px;
    margin-left: 2px;
  }
}
@media screen and (max-width : 767px) {
  .l-header__menu-button {
    width: 36px;
    height: 36px;
    margin-left: 0;
  }
}
.l-header__menu-button.is-active {
  background-color: #fff;
  border-color: #fff;
}
.l-header.is-scrolled .l-header__menu-button {
  background-color: #85B231;
  border-color: #85B231;
}
body.is-subpage .l-header__menu-button {
  background-color: #85B231;
  border-color: #85B231;
}

/* -------------------------------------------------
.l-header__menu-hamburger
---------------------------------------------------- */
.l-header__menu-hamburger {
  position: absolute;
  top: 50%;
  left: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  width: 24px;
  margin-top: -7.5px;
  margin-left: -12px;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
@media screen and (max-width : 767px) {
  .l-header__menu-hamburger {
    width: 20px;
    margin-top: -7.5px;
    margin-left: -10px;
  }
}
.l-header__menu-button.is-active .l-header__menu-hamburger {
  opacity: 0;
  visibility: hidden;
}

/* -------------------------------------------------
.l-header__menu-icon
---------------------------------------------------- */
.l-header__menu-icon {
  display: block;
  width: 24px;
  height: 0;
  border-top: 1px solid #fff;
  flex-shrink: 0;
  transition: border-color 0.4s ease;
}
@media screen and (max-width : 767px) {
  .l-header__menu-icon {
    width: 20px;
  }
}
body.is-subpage .l-header__menu-icon {
  border-top-color: #fff;
}
.l-header.is-scrolled .l-header__menu-button .l-header__menu-icon {
  border-top-color: #fff;
}
body.is-subpage .l-header__menu-button .l-header__menu-icon {
  border-top-color: #fff;
}

/* -------------------------------------------------
.l-header__menu-close
---------------------------------------------------- */
.l-header__menu-close {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 24px;
  height: 24px;
  margin-top: -12px;
  margin-left: -12px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
@media screen and (max-width : 767px) {
  .l-header__menu-close {
    width: 20px;
    height: 20px;
    margin-top: -10px;
    margin-left: -10px;
  }
}
.l-header__menu-button.is-active .l-header__menu-close {
  opacity: 1;
  visibility: visible;
}

/* -------------------------------------------------
.l-header__menu-close-icon
---------------------------------------------------- */
.l-header__menu-close-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 24px;
  height: 1px;
  margin-top: -1px;
  margin-left: -12px;
  background-color: #85B231;
  transform-origin: center center;
}
@media screen and (max-width : 767px) {
  .l-header__menu-close-icon {
    width: 20px;
    height: 1px;
    margin-left: -10px;
  }
}
.l-header__menu-close-icon:nth-child(1) {
  transform: rotate(45deg);
}
.l-header__menu-close-icon:nth-child(2) {
  transform: rotate(-45deg);
}

/* ===============================================
style.scss
================================================ */
/* ===============================================
_header.scss
================================================ */
/* ===============================================
_footer.scss
================================================ */
/* -------------------------------------------------
.l-footer
---------------------------------------------------- */
.l-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  height: auto;
  padding: 0;
  background-color: #85B231;
  color: #fff;
}
@media screen and (min-width : 768px) and (max-width : 1023px) {
  .l-footer {
    height: auto;
    min-height: auto;
    padding: 0;
  }
}
@media screen and (max-width : 767px) {
  .l-footer {
    height: auto;
    min-height: auto;
    padding: 0;
  }
}

/* -------------------------------------------------
.l-footer__inner
---------------------------------------------------- */
.l-footer__inner {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  max-width: 1280px;
  height: 100%;
  margin: 0 auto;
  padding: 48px 40px 20px;
}
@media screen and (min-width : 768px) and (max-width : 1023px) {
  .l-footer__inner {
    padding: 42px 35px 20px;
  }
}
@media screen and (max-width : 767px) {
  .l-footer__inner {
    padding: 20px 15px 8px;
  }
}

/* -------------------------------------------------
.l-footer__logo
---------------------------------------------------- */
.l-footer__logo {
  position: absolute;
  top: 48px;
  left: 40px;
}
@media screen and (min-width : 768px) and (max-width : 1023px) {
  .l-footer__logo {
    top: 42px;
    left: 35px;
  }
}
@media screen and (max-width : 767px) {
  .l-footer__logo {
    position: static;
    margin: 0 0 15px;
  }
}

/* -------------------------------------------------
.l-footer__logo-img
---------------------------------------------------- */
.l-footer__logo-img {
  width: 311px;
  height: auto;
}
@media screen and (min-width : 768px) and (max-width : 1023px) {
  .l-footer__logo-img {
    width: 275px;
  }
}
@media screen and (max-width : 767px) {
  .l-footer__logo-img {
    width: 200px;
  }
}

/* -------------------------------------------------
.l-footer__content
---------------------------------------------------- */
.l-footer__content {
  display: flex;
  align-items: flex-start;
  flex: 1;
  gap: 40px;
  padding: 90px 0 0;
}
@media screen and (min-width: 1221px) {
  .l-footer__content {
    gap: 80px;
  }
}
@media screen and (min-width : 768px) and (max-width : 1023px) {
  .l-footer__content {
    flex-direction: column;
    gap: 30px;
    padding: 60px 0 0;
  }
}
@media screen and (max-width : 767px) {
  .l-footer__content {
    flex-direction: column;
    gap: 20px;
    padding: 0;
  }
}

/* -------------------------------------------------
.l-footer__left
---------------------------------------------------- */
.l-footer__left {
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  gap: 0;
}
@media screen and (max-width : 767px) {
  .l-footer__left {
    gap: 10px;
  }
}

/* -------------------------------------------------
.l-footer__divider
---------------------------------------------------- */
.l-footer__divider {
  display: none;
}
@media screen and (max-width : 767px) {
  .l-footer__divider {
    display: block;
    width: 100%;
    height: 1px;
    margin: 0;
    background-color: #fff;
  }
}

/* -------------------------------------------------
.l-footer__address
---------------------------------------------------- */
.l-footer__address {
  font-style: normal;
}

/* -------------------------------------------------
.l-footer__address-item
---------------------------------------------------- */
.l-footer__address-item {
  margin: 0 0 4px;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.84;
  letter-spacing: 0.13em;
}
@media screen and (min-width : 768px) and (max-width : 1023px) {
  .l-footer__address-item {
    font-size: 1.3rem;
    line-height: 1.6;
  }
}
@media screen and (max-width : 767px) {
  .l-footer__address-item {
    margin: 0 0 2px;
    font-size: 1.3rem;
    line-height: 1.6;
    letter-spacing: 0.13em;
  }
}

/* -------------------------------------------------
.l-footer__navigation
---------------------------------------------------- */
.l-footer__navigation {
  display: flex;
  justify-content: flex-start;
  gap: 30px;
  align-items: flex-start;
  flex-shrink: 0;
  width: 100%;
  max-width: 900px;
}
@media screen and (min-width: 1221px) {
  .l-footer__navigation {
    gap: 60px;
  }
}
@media screen and (min-width : 768px) and (max-width : 1023px) {
  .l-footer__navigation {
    flex-wrap: nowrap;
    justify-content: space-between;
    gap: 10px;
    max-width: none;
  }
}
@media screen and (max-width : 767px) {
  .l-footer__navigation {
    display: grid;
    grid-template-columns: auto auto auto;
    gap: 10px 15px;
    width: 100%;
    justify-content: space-between;
  }
}

/* -------------------------------------------------
.l-footer__nav-column
---------------------------------------------------- */
.l-footer__nav-column {
  display: flex;
  flex-direction: column;
}
@media screen and (max-width : 767px) {
  .l-footer__nav-column {
    margin: 0;
  }
  .l-footer__nav-column:first-child {
    grid-column: 1/-1;
    margin: 0;
  }
  .l-footer__nav-column:nth-child(2) {
    grid-column: 1;
    grid-row: 2;
  }
  .l-footer__nav-column:nth-child(3) {
    grid-column: 2;
    grid-row: 2;
  }
  .l-footer__nav-column:nth-child(4) {
    grid-column: 3;
    grid-row: 2;
  }
  .l-footer__nav-column:nth-child(5) {
    grid-column: 3;
    grid-row-start: 2;
    margin-top: 80px;
  }
}

/* -------------------------------------------------
.l-footer__nav-title
---------------------------------------------------- */
.l-footer__nav-title {
  margin: 0 0 14px;
  font-size: 1.9rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.13em;
  white-space: nowrap;
}
@media screen and (min-width : 768px) and (max-width : 1023px) {
  .l-footer__nav-title {
    font-size: 1.6rem;
    margin: 0 0 12px;
  }
}
@media screen and (max-width : 767px) {
  .l-footer__nav-title {
    font-size: 1.3rem;
    margin: 0 0 8px;
  }
}

/* -------------------------------------------------
.l-footer__nav-list
---------------------------------------------------- */
.l-footer__nav-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin: 0;
  padding: 0;
}
@media screen and (max-width : 767px) {
  .l-footer__nav-list {
    gap: 6px;
  }
}

/* -------------------------------------------------
.l-footer__nav-item
---------------------------------------------------- */
.l-footer__nav-item {
  list-style: none;
}

/* -------------------------------------------------
.l-footer__nav-link
---------------------------------------------------- */
.l-footer__nav-link {
  display: flex;
  align-items: center;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.5;
  text-decoration: none;
  letter-spacing: 0.13em;
  white-space: nowrap;
  color: #fff;
  transition: opacity 0.3s;
  position: relative;
}

.l-menu__nav-link {
  position: relative;
}

.l-menu__nav-link::after,
.l-footer__nav-link::after {
  position: absolute;
  left: 0;
  content: '';
  width: 100%;
  height: 1px;
  background: #FFF;
  bottom: -2px;               /*アンダーラインがaタグの下端から現れる*/
  transform: scale(0, 1);     /*アンダーラインの縮尺比率。ホバー前はx方向に0*/
  transform-origin: left top; /*変形（アンダーラインの伸長）の原点がaタグ（各メニュー）の左端*/
  transition: transform 0.3s; /*変形の時間*/
  opacity: 0.8;
}

.l-menu__nav-link::after {
  bottom: -5px;
}

@media (hover: hover) {
  .l-menu__nav-link:hover::after,
  .l-footer__nav-link:hover::after {
    transform: scale(1, 1);     /*ホバー後、x軸方向に1（相対値）伸長*/
  }

  .l-menu__nav-link:hover {
    opacity: 0;
  }
}

@media screen and (min-width : 768px) and (max-width : 1023px) {
  .l-footer__nav-link {
    font-size: 1.25rem;
  }
}
@media screen and (max-width : 767px) {
  .l-footer__nav-link {
    font-size: 1.1rem;
  }
}

/* -------------------------------------------------
.l-footer__nav-link-icon
---------------------------------------------------- */
.l-footer__nav-link-icon {
  display: inline-block;
  margin: 0 0 0 0;
  padding-right: 8px;
  font-size: 1rem;
  font-weight: 100;
  line-height: 1;
  opacity: 0.8;
}
.l-footer__nav-link-icon::before {
  content: "＞";
}
@media screen and (max-width : 767px) {
  .l-footer__nav-link-icon {
    margin: 0 4px 0 0;
    font-size: 0.9rem;
  }
}

/* -------------------------------------------------
.l-footer__copyright
---------------------------------------------------- */
.l-footer__copyright {
  margin: 0;
  padding: 20px 0 0;
  text-align: center;
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.05em;
  opacity: 0.8;
}
@media screen and (max-width : 767px) {
  .l-footer__copyright {
    padding: 20px 0 5px;
  }
}

/* -------------------------------------------------
.l-footer__copyright-spacer
---------------------------------------------------- */
.l-footer__copyright-spacer {
  display: inline-block;
  width: 1.5em;
}

/* ===============================================
style.scss
================================================ */
/* ===============================================
_main.scss
================================================ */
/* -------------------------------------------------
.l-main
---------------------------------------------------- */
.l-main {
  margin: 0;
  padding: 0;
  background-color: #fff;
  min-height: 100vh;
}

/* ===============================================
style.scss
================================================ */
/* ===============================================
_header.scss
================================================ */
/* ===============================================
_menu.scss
================================================ */
/* -------------------------------------------------
.l-menu
---------------------------------------------------- */
.l-menu {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 2000;
  width: 100%;
  height: 100%;
  background-color: #85B231;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.l-menu.is-active {
  opacity: 1;
  visibility: visible;
}

/* メニュー表示時のスクロールバー表示 */
html.is-menu-open {
  position: relative;
  overflow-x: hidden;
  overflow-y: scroll;
}

body.is-menu-open {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

/* -------------------------------------------------
.l-menu__inner
---------------------------------------------------- */
.l-menu__inner {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 1280px;
  height: 100%;
  margin: 0 auto;
  padding: 114px 0 0;
  opacity: 0;
  transform: translateY(-30px);
  transition: transform 0.5s ease 0.1s, opacity 0.5s ease 0.1s;
}
.l-menu.is-active .l-menu__inner {
  opacity: 1;
  transform: translateY(0);
}
@media screen and (min-width : 1024px) {
  .l-menu__inner {
    max-width: none;
  }
}
@media screen and (max-width : 767px) {
  .l-menu__inner {
    padding-top: 80px;
  }
}

/* -------------------------------------------------
.l-menu__header
---------------------------------------------------- */
.l-menu__header {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-height: 114px;
  margin-bottom: 0;
  padding: 0;
  border-bottom: none;
}
@media screen and (min-width : 768px) and (max-width : 1023px) {
  .l-menu__header {
    margin-bottom: 60px;
  }
}
@media screen and (max-width : 767px) {
  .l-menu__header {
    min-height: 80px;
    border-bottom: 1px solid #fff;
  }
}

/* -------------------------------------------------
.l-menu__header-inner
---------------------------------------------------- */
.l-menu__header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1280px;
  padding: 38px;
}
@media screen and (min-width : 1024px) {
  .l-menu__header-inner {
    max-width: none;
  }
}
@media screen and (max-width: 1300px) {
  .l-menu__header-inner {
    padding: 30px;
  }
}
@media screen and (max-width: 1200px) {
  .l-menu__header-inner {
    padding: 28px;
  }
}
@media screen and (max-width : 767px) {
  .l-menu__header-inner {
    padding: 20px;
  }
}

/* -------------------------------------------------
.l-menu__logo-img
---------------------------------------------------- */
.l-menu__logo-img {
  width: 280px;
  height: auto;
}
@media screen and (max-width: 1230px) {
  .l-menu__logo-img {
    width: 240px;
  }
}
@media screen and (max-width: 1100px) {
  .l-menu__logo-img {
    width: 220px;
  }
}
@media screen and (min-width : 768px) and (max-width : 1023px) {
  .l-menu__logo-img {
    width: 200px;
  }
}
@media screen and (max-width: 900px) {
  .l-menu__logo-img {
    width: 180px;
  }
}
@media screen and (max-width : 767px) {
  .l-menu__logo-img {
    width: 200px;
  }
}

/* -------------------------------------------------
.l-menu__close
---------------------------------------------------- */
.l-menu__close {
  position: relative;
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  cursor: pointer;
  background-color: #fff;
  border: none;
  border-radius: 4px;
  transition: opacity 0.3s ease;
}
.l-menu.is-active .l-menu__close {
  display: flex;
}
.l-menu__close:hover {
  opacity: 0.7;
}
@media screen and (max-width: 1200px) {
  .l-menu__close {
    width: 42px;
    height: 42px;
  }
}
@media screen and (max-width: 1100px) {
  .l-menu__close {
    width: 40px;
    height: 40px;
  }
}
@media screen and (min-width : 768px) and (max-width : 1023px) {
  .l-menu__close {
    width: 38px;
    height: 38px;
  }
}
@media screen and (max-width: 900px) {
  .l-menu__close {
    width: 36px;
    height: 36px;
  }
}
@media screen and (max-width : 767px) {
  .l-menu__close {
    width: 36px;
    height: 36px;
  }
}

/* -------------------------------------------------
.l-menu__close-icon
---------------------------------------------------- */
.l-menu__close-icon {
  position: relative;
  display: block;
  width: 24px;
  height: 2px;
  background-color: #85B231;
  transform: rotate(45deg);
}
.l-menu__close-icon::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #85B231;
  transform: rotate(90deg);
}
@media screen and (max-width: 1200px) {
  .l-menu__close-icon {
    width: 22px;
  }
}
@media screen and (max-width: 1100px) {
  .l-menu__close-icon {
    width: 20px;
  }
}
@media screen and (min-width : 768px) and (max-width : 1023px) {
  .l-menu__close-icon {
    width: 19px;
  }
}
@media screen and (max-width: 900px) {
  .l-menu__close-icon {
    width: 18px;
  }
}
@media screen and (max-width : 767px) {
  .l-menu__close-icon {
    width: 20px;
  }
}

/* -------------------------------------------------
.l-menu__navigation
---------------------------------------------------- */
.l-menu__navigation {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 60px;
  width: 100%;
  max-width: 1200px;
  margin: 96px auto 0;
  padding: 0 30px;
}
@media screen and (min-width : 1024px) {
  .l-menu__navigation {
    max-width: 1200px;
  }
}
@media screen and (max-width: 1300px) {
  .l-menu__navigation {
    max-width: 1100px;
    gap: 50px;
  }
}
@media screen and (max-width: 1100px) {
  .l-menu__navigation {
    max-width: 900px;
    gap: 40px;
  }
}
@media screen and (min-width : 768px) and (max-width : 1023px) {
  .l-menu__navigation {
    grid-template-columns: repeat(2, 1fr);
    gap: 60px 40px;
    max-width: 100%;
    padding: 0 30px;
  }
}
@media screen and (max-width : 767px) {
  .l-menu__navigation {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 20px;
    margin-top: 0;
    padding: 30px 20px 0;
    overflow-y: auto;
  }
}

/* -------------------------------------------------
.l-menu__nav-column
---------------------------------------------------- */
.l-menu__nav-column {
  display: flex;
  flex-direction: column;
  /*opacity: 0;
  transform: translateY(20px);
  transition: transform 0.4s ease, opacity 0.4s ease;*/
}
/*.l-menu.is-active .l-menu__nav-column:nth-child(1) {
  transition-delay: 0.2s;
  opacity: 1;
  transform: translateY(0);
}
.l-menu.is-active .l-menu__nav-column:nth-child(2) {
  transition-delay: 0.3s;
  opacity: 1;
  transform: translateY(0);
}
.l-menu.is-active .l-menu__nav-column:nth-child(3) {
  transition-delay: 0.4s;
  opacity: 1;
  transform: translateY(0);
}
.l-menu.is-active .l-menu__nav-column:nth-child(4) {
  transition-delay: 0.5s;
  opacity: 1;
  transform: translateY(0);
}*/

/* -------------------------------------------------
.l-menu__nav-title
---------------------------------------------------- */
.l-menu__nav-title {
  display: inline-block;
  width: 206px;
  margin: 0;
  padding-bottom: 24px;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 2.6rem;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.13em;
  white-space: nowrap;
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}
@media screen and (max-width: 1300px) {
  .l-menu__nav-title {
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 1100px) {
  .l-menu__nav-title {
    font-size: 2.2rem;
    width: 180px;
  }
}
@media screen and (max-width : 767px) {
  .l-menu__nav-title {
    width: auto;
    font-size: 1.8rem;
    font-weight: bold;
    padding-bottom: 12px;
    border-bottom: 1px solid #fff;
  }
}

/* -------------------------------------------------
.l-menu__nav-list
---------------------------------------------------- */
.l-menu__nav-list {
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}
@media screen and (max-width : 767px) {
  .l-menu__nav-list {
    margin: 16px 0 0;
  }
}

/* -------------------------------------------------
.l-menu__nav-item
---------------------------------------------------- */
.l-menu__nav-item {
  margin-bottom: 18px;
}
@media screen and (max-width : 767px) {
  .l-menu__nav-item {
    margin-bottom: 12px;
  }
  .l-menu__nav-item:last-child {
    margin-bottom: 0;
  }
}

/* -------------------------------------------------
.l-menu__nav-link
---------------------------------------------------- */
.l-menu__nav-link {
  display: flex;
  align-items: center;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 1.9rem;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0.13em;
  white-space: nowrap;
  color: #fff;
  text-decoration: none;
  opacity: 1;
  transition: opacity 0.3s;
}
.l-menu__nav-link:hover {
  opacity: 1;
}
@media screen and (max-width: 1300px) {
  .l-menu__nav-link {
    font-size: 1.7rem;
  }
}
@media screen and (max-width: 1100px) {
  .l-menu__nav-link {
    font-size: 1.5rem;
  }
}
@media screen and (max-width : 767px) {
  .l-menu__nav-link {
    font-size: 1.4rem;
  }
}

/* -------------------------------------------------
.l-menu__nav-link-icon
---------------------------------------------------- */
.l-menu__nav-link-icon {
  display: inline-block;
  margin-right: 8px;
  font-size: 1.6rem;
  line-height: 1;
  color: #fff;
}
.l-menu__nav-link-icon::before {
  content: ">";
}
@media screen and (max-width: 1300px) {
  .l-menu__nav-link-icon {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 1100px) {
  .l-menu__nav-link-icon {
    font-size: 1.4rem;
  }
}
@media screen and (max-width : 767px) {
  .l-menu__nav-link-icon {
    margin-right: 4px;
    font-size: 1.4rem;
  }
}

/* -------------------------------------------------
.c-menu-banner
---------------------------------------------------- */
.c-menu-banner {
  flex: 0 0 auto;
  width: 630px;
  max-width: 100%;
  height: 160px;
  margin: 100px auto 120px;
  border-radius: 12px;
  overflow: hidden;
}
.c-menu-banner__link {
  display: flex;
  align-items: stretch;
  width: 100%;
  height: 160px;
  text-decoration: none;
}
.c-menu-banner__left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex: 0 0 380px;
  width: 380px;
  padding: 24px 28px;
  background-color: #193c64;
  text-align: center;
}
.c-menu-banner__logo {
  display: block;
  margin: 0;
}
.c-menu-banner__logo-img {
  display: block;
  width: 310px;
  height: auto;
  margin: -6px 0 0 0;
}
.c-menu-banner__link-text {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 12px 0 0;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: 0.13em;
  color: #fff;
}
.c-menu-banner__arrow {
  display: inline-block;
  width: 0;
  height: 0;
  margin: 0 0 0 3px;
  vertical-align: middle;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  border-left: 6px solid #fff;
  transition: transform 0.25s ease;
}
.c-menu-banner__link:hover .c-menu-banner__arrow {
  transform: translateX(2px);
}
.c-menu-banner__right {
  flex: 1 1 auto;
  min-width: 0;
  overflow: hidden;
}
.c-menu-banner__image {
  transform-origin: center center;
  transform: scale(1.65);
  display: block;
  width: 100%;
  height: 100%;
  min-height: 160px;
  object-fit: cover;
  object-position: center 85%;
  transition: transform 0.5s ease;
}
.c-menu-banner__link:hover .c-menu-banner__image {
  transform: scale(1.8);
}
@media screen and (max-width: 767px) {
  .c-menu-banner {
    width: 75%;
    height: 70px;
    margin: 42px auto 60px;
    border-radius: 4px;
  }
  .c-menu-banner__link {
    flex-direction: row;
    height: 70px;
  }
  .c-menu-banner__left {
    flex: 0 0 auto;
    width: 52%;
    padding: 6px 12px;
  }
  .c-menu-banner__logo-img {
    width: 100%;
    max-width: 120px;
    height: auto;
    margin: 0;
  }
  .c-menu-banner__link-text {
    font-size: 10px;
    margin: 4px 0 0;
  }
  .c-menu-banner__arrow {
    margin: 0 0 0 2px;
    border-top-width: 3px;
    border-bottom-width: 3px;
    border-left-width: 4px;
  }
  .c-menu-banner__link:hover .c-menu-banner__arrow {
    transform: translateX(1px);
  }
  .c-menu-banner__right {
    flex: 1 1 auto;
    min-width: 0;
    min-height: 70px;
  }
  .c-menu-banner__image {
    min-height: 70px;
  }
}
@media screen and (min-width: 1024px) {
  .c-menu-banner {
    width: 560px;
    height: 120px;
    margin: 80px auto 120px;
  }
  .c-menu-banner__link {
    height: 120px;
  }
  .c-menu-banner__left {
    flex: 0 0 340px;
    width: 340px;
    padding: 14px 24px;
  }
  .c-menu-banner__logo-img {
    width: 240px;
  }
  .c-menu-banner__link-text {
    margin: 8px 0 0;
    font-size: 16px;
  }
  .c-menu-banner__image {
    min-height: 120px;
  }
}

/* ===============================================
style.scss
================================================ */
/* ===============================================
_header.scss
================================================ */
/* ===============================================
_side-nav.scss
================================================ */
/* -------------------------------------------------
.l-side-nav
---------------------------------------------------- */
.l-side-nav {
  position: fixed;
  top: 50%;
  right: 0;
  z-index: 100;
  transform: translateY(-50%);
  display: block;
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}
@media screen and (max-width : 767px) {
  .l-side-nav {
    top: 96px;
    right: 0;
    transform: none;
  }
}
.l-side-nav.is-visible {
  opacity: 1;
  pointer-events: auto;
}
.l-side-nav {
  /* -------------------------------------------------
  .l-side-nav__list
  ---------------------------------------------------- */
}
.l-side-nav__list {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin: 0;
  padding: 0;
  gap: 10px;
  list-style: none;
}
@media screen and (max-width : 767px) {
  .l-side-nav__list {
    gap: 6px;
  }
}
.l-side-nav {
  /* -------------------------------------------------
  .l-side-nav__item
  ---------------------------------------------------- */
}
.l-side-nav__item {
  position: relative;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  width: 60px;
  height: 30px;
}
@media screen and (max-width : 767px) {
  .l-side-nav__item {
    width: 44px;
    height: 22px;
  }
}
.l-side-nav {
  /* -------------------------------------------------
  .l-side-nav__link
  ---------------------------------------------------- */
}
.l-side-nav__link {
  position: absolute;
  right: 21px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 26px;
  height: 26px;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.13em;
  line-height: 1;
  text-decoration: none;
  color: #999;
  transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}
@media screen and (max-width : 767px) {
  .l-side-nav__link {
    right: 14px;
    width: 20px;
    height: 20px;
    font-size: 11px;
    letter-spacing: 0.1em;
  }
}
.l-side-nav__link {
  /* 円の装飾 */
}
.l-side-nav__link::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: -1;
  transform: translate(-50%, -50%) scale(0.5);
  display: block;
  width: 26px;
  height: 26px;
  opacity: 0;
  background-color: #fff;
  border: 1px solid #85B231;
  border-radius: 50%;
  transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}
@media screen and (max-width : 767px) {
  .l-side-nav__link::before {
    width: 20px;
    height: 20px;
  }
}
.l-side-nav__link {
  /* 右に伸びる線 */
}
.l-side-nav__link::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -21px;
  transform: translateY(-50%);
  display: block;
  width: 15px;
  height: 1px;
  background-color: #999;
  transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}
@media screen and (max-width : 767px) {
  .l-side-nav__link::after {
    right: -14px;
    width: 10px;
  }
}
.l-side-nav__link.is-active {
  right: 31px;
  color: #85B231;
}
@media screen and (max-width : 767px) {
  .l-side-nav__link.is-active {
    right: 20px;
  }
}
.l-side-nav__link.is-active::before {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
}
.l-side-nav__link.is-active::after {
  right: -31px;
  width: 25px;
  background-color: #85B231;
}
@media screen and (max-width : 767px) {
  .l-side-nav__link.is-active::after {
    right: -20px;
    width: 18px;
  }
}

/* ===============================================
style.scss
================================================ */
/* ===============================================
_header.scss
================================================ */
/* ===============================================
_contact.scss
================================================ */
/* -------------------------------------------------
.p-contact
---------------------------------------------------- */
.p-contact {
  width: 100%;
  padding: 100px 0 70px;
  background-color: #F4F9E9;
}
@media screen and (min-width : 768px) and (max-width : 1023px) {
  .p-contact {
    padding: 80px 0 80px;
  }
}
@media screen and (max-width : 767px) {
  .p-contact {
    padding: 40px 0 40px;
  }
}

/* -------------------------------------------------
.p-contact__inner
---------------------------------------------------- */
.p-contact__inner {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
  text-align: center;
}
@media screen and (min-width : 768px) and (max-width : 1023px) {
  .p-contact__inner {
    max-width: 100%;
    padding: 0 45px;
  }
}
@media screen and (max-width : 767px) {
  .p-contact__inner {
    padding: 0;
  }
}

/* -------------------------------------------------
.p-contact__title-en
---------------------------------------------------- */
.p-contact__title-en {
  margin: 0;
  font-family: "Oswald", sans-serif;
  font-size: 6rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.38;
  color: #85B231;
}
@media screen and (min-width : 768px) and (max-width : 1023px) {
  .p-contact__title-en {
    font-size: 4rem;
    line-height: 1.38;
  }
}
@media screen and (max-width : 767px) {
  .p-contact__title-en {
    font-size: 2.8rem;
    line-height: 1.32;
  }
}
.p-contact__title-en {
  color: rgba(177, 206, 123, 0.8);
}

/* -------------------------------------------------
.p-contact__title-ja
---------------------------------------------------- */
.p-contact__title-ja {
  font-size: 2.2rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  margin: 15px 0 0;
  color: #3c3c3c;
}
@media screen and (max-width : 767px) {
  .p-contact__title-ja {
    font-size: 1.4rem;
    margin: 0;
  }
}

/* -------------------------------------------------
.p-contact__description
---------------------------------------------------- */
.p-contact__description {
  margin: 40px 0 60px;
  font-size: 1.7rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  line-height: 2;
  color: #3c3c3c;
}
@media screen and (max-width: 1200px) {
  .p-contact__description {
    font-size: 1.42vw;
  }
}
@media screen and (min-width : 768px) and (max-width : 1023px) {
  .p-contact__description {
    font-size: 1.6rem;
  }
}
@media screen and (max-width : 767px) {
  .p-contact__description {
    font-size: 1.4rem;
    letter-spacing: 0.05em;
    line-height: 1.6;
  }
}
@media screen and (min-width : 768px) and (max-width : 1023px) {
  .p-contact__description {
    margin: 35px 0 55px;
  }
}
@media screen and (max-width : 767px) {
  .p-contact__description {
    font-size: 1.25rem;
    margin: 20px 0 20px;
  }
}

/* -------------------------------------------------
.p-contact__list
---------------------------------------------------- */
.p-contact__list {
  display: grid;
  grid-template-columns: repeat(3, auto);
  justify-content: center;
  justify-items: center;
  gap: 2.8rem;
  margin: 0;
  padding: 0;
  font-weight: 500;
}
@media screen and (min-width : 1024px) {
  .p-contact__list {
    grid-template-columns: repeat(3, minmax(0, 34rem));
    gap: 2.4rem;
    margin: 0;
    width: 100%;
    max-width: 100%;
  }
}
@media screen and (min-width : 768px) and (max-width : 1023px) {
  .p-contact__list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 2rem;
    margin: 0;
    width: 100%;
    max-width: 100%;
  }
}
@media screen and (max-width : 767px) {
  .p-contact__list {
    grid-template-columns: 1fr;
    gap: 2.8rem;
    margin: 0;
  }
}

/* -------------------------------------------------
.p-contact__item
---------------------------------------------------- */
.p-contact__item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 34rem;
  height: 8.5rem;
  margin: 0;
  padding: 0;
  text-align: center;
  background-color: transparent;
  border: 1px solid #85B231;
  border-radius: 8px;
  transition: all 0.3s ease;
}
@media screen and (min-width : 1024px) {
  .p-contact__item {
    width: 100%;
    max-width: 34rem;
    height: auto;
    min-height: 7.75rem;
    padding: 11px;
  }
}
@media screen and (min-width : 768px) and (max-width : 1023px) {
  .p-contact__item {
    width: 100%;
    max-width: 100%;
    height: auto;
    min-height: 8.5rem;
    padding: 10px;
  }
}
@media screen and (max-width : 767px) {
  .p-contact__item {
    width: 80%;
    height: auto;
    min-height: auto;
    padding: 6px;
  }
}
.p-contact__item--link:hover {
  background-color: #85B231;
}
.p-contact__item--link:hover .p-contact__label,
.p-contact__item--link:hover .p-contact__value {
  color: #fff;
}

/* -------------------------------------------------
.p-contact__label
---------------------------------------------------- */
.p-contact__label {
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.13em;
  color: #85B231;
  transition: color 0.3s ease;
}
@media screen and (min-width : 768px) and (max-width : 1023px) {
  .p-contact__label {
    font-size: 1.45rem;
  }
}

/* -------------------------------------------------
.p-contact__value
---------------------------------------------------- */
.p-contact__value {
  margin: 0;
  font-size: 2.1rem;
  font-weight: 400;
  letter-spacing: 0.13em;
  color: #3c3c3c;
  word-break: break-all;
  overflow-wrap: break-word;
  transition: color 0.3s ease;
}
@media screen and (min-width : 768px) and (max-width : 1023px) {
  .p-contact__value {
    font-size: 1.8rem;
  }
}
@media screen and (max-width : 767px) {
  .p-contact__value {
    font-size: 1.6rem;
  }
}

/* -------------------------------------------------
.p-contact__scroll-top
---------------------------------------------------- */
.p-contact__scroll-top {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 40px;
  background-color: #C6DB9E;
}

/* -------------------------------------------------
.p-contact__scroll-top-link
---------------------------------------------------- */
.p-contact__scroll-top-link {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  text-decoration: none;
  transition: opacity 0.3s;
}
.p-contact__scroll-top-link:hover {
  opacity: 0.7;
}

/* -------------------------------------------------
.p-contact__scroll-top-icon
---------------------------------------------------- */
.p-contact__scroll-top-icon {
  display: block;
  width: 12px;
  height: 12px;
  margin: 6px 0 0;
  border-top: 2px solid #85B231;
  border-left: 2px solid #85B231;
  transform: rotate(45deg);
}

/* ===============================================
style.scss
================================================ */
/* ===============================================
_header.scss
================================================ */
/* ===============================================
_home.scss
================================================ */
/* -------------------------------------------------
.p-mainvisual
---------------------------------------------------- */
.p-mainvisual {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: auto;
  min-height: 760px;
  padding: 100px 0 0;
}
@media screen and (min-width : 1024px) {
  .p-mainvisual {
    --width: 1280;
    height: calc(760 / var(--width) * 100vw);
    max-height: 100vh;
    min-height: 760px;
    padding: 100px 0 0;
  }
}
@media screen and (min-width : 768px) and (max-width : 1023px) {
  .p-mainvisual {
    height: 70vh;
    min-height: 500px;
    padding: 80px 0 0;
  }
}
@media screen and (max-width : 767px) {
  .p-mainvisual {
    height: 100vh;
    min-height: 100vh;
    padding: 0;
  }
}

/* -------------------------------------------------
.p-mainvisual__image
---------------------------------------------------- */
.p-mainvisual__image {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

/* -------------------------------------------------
.p-mainvisual__image-img
---------------------------------------------------- */
.p-mainvisual__image-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 60%;
}
@media screen and (min-width : 1024px) {
  .p-mainvisual__image-img {
    object-position: center 55%;
  }
}
@media screen and (max-width : 767px) {
  .p-mainvisual__image-img {
    object-position: 25% 65%;
    object-fit: cover;
    transform: scale(1.1);
    transform-origin: center center;
  }
}

/* -------------------------------------------------
.p-mainvisual__overlay
---------------------------------------------------- */
.p-mainvisual__overlay {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
}

/* -------------------------------------------------
.p-mainvisual__content
---------------------------------------------------- */
.p-mainvisual__content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}
@media screen and (min-width : 1024px) {
  .p-mainvisual__content {
    max-width: none;
    padding: 0 80px;
  }
}
@media screen and (max-width: 1025px) {
  .p-mainvisual__content {
    padding: 0 60px;
  }
}
@media screen and (min-width : 768px) and (max-width : 1023px) {
  .p-mainvisual__content {
    max-width: 100%;
    padding: 0 45px;
  }
}
@media screen and (max-width : 767px) {
  .p-mainvisual__content {
    flex-direction: column;
    justify-content: center;
    padding: 0 20px;
  }
}

/* -------------------------------------------------
.p-mainvisual__left
---------------------------------------------------- */
.p-mainvisual__left {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
@media screen and (min-width : 768px) and (max-width : 1023px) {
  .p-mainvisual__left {
    gap: 25px;
  }
}
@media screen and (max-width : 767px) {
  .p-mainvisual__left {
    width: 100%;
    align-items: center;
    text-align: center;
    gap: 20px;
  }
}

/* -------------------------------------------------
.p-mainvisual__heading
---------------------------------------------------- */
.p-mainvisual__heading {
  display: flex;
  flex-direction: column;
  gap: 26px;
  margin: 0;
}
@media screen and (min-width : 768px) and (max-width : 1023px) {
  .p-mainvisual__heading {
    gap: 26px;
  }
}
@media screen and (max-width : 767px) {
  .p-mainvisual__heading {
    gap: 12px;
    align-items: center;
    text-align: center;
  }
}

/* -------------------------------------------------
.p-mainvisual__heading-line
---------------------------------------------------- */
.p-mainvisual__heading-line {
  margin: 0;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 2.7rem;
  font-weight: 400;
  letter-spacing: 0.16em;
  line-height: 1.2;
  color: #fff;
}
.p-mainvisual__heading-line:first-child {
  font-size: 2.7rem;
}
@media screen and (max-width: 1025px) {
  .p-mainvisual__heading-line:first-child {
    font-size: 2.5rem;
  }
}
@media screen and (min-width : 768px) and (max-width : 1023px) {
  .p-mainvisual__heading-line:first-child {
    font-size: 2.35rem;
  }
}
@media screen and (max-width : 767px) {
  .p-mainvisual__heading-line:first-child {
    font-size: 1.45rem;
  }
}
.p-mainvisual__heading-line:last-child {
  font-size: 4.5rem;
}
@media screen and (max-width: 1025px) {
  .p-mainvisual__heading-line:last-child {
    font-size: 4.2rem;
  }
}
@media screen and (min-width : 768px) and (max-width : 1023px) {
  .p-mainvisual__heading-line:last-child {
    font-size: 3.85rem;
  }
}
@media screen and (max-width : 767px) {
  .p-mainvisual__heading-line:last-child {
    font-size: 2.4rem;
  }
}
@media screen and (max-width : 767px) {
  .p-mainvisual__heading-line {
    letter-spacing: 0.16em;
    line-height: 1.5;
    text-align: center;
  }
}

/* -------------------------------------------------
.p-mainvisual__button
---------------------------------------------------- */
.p-mainvisual__button {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 252px;
  height: 42px;
  padding: 0;
  margin: 0;
  gap: 8px;
  overflow: hidden;
  text-decoration: none;
  background-color: #85B231;
  border-radius: 6px;
  transition: color 0.2s cubic-bezier(0.45, 0, 0.55, 1);
}
@media screen and (min-width : 768px) and (max-width : 1023px) {
  .p-mainvisual__button {
    width: 252px;
    height: 42px;
  }
}
@media screen and (max-width : 767px) {
  .p-mainvisual__button {
    width: 200px;
    height: 38px;
    margin: 16px 0 0;
  }
}
.p-mainvisual__button::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  background-color: #fff;
  transform: scale(0, 1);
  transform-origin: left top;
  transition: transform 0.2s cubic-bezier(0.45, 0, 0.55, 1);
}
.p-mainvisual__button:hover {
  color: #85B231;
}
.p-mainvisual__button:hover::after {
  transform: scale(1, 1);
}
.p-mainvisual__button:hover .p-mainvisual__button-text {
  color: #85B231;
}
.p-mainvisual__button:hover .p-mainvisual__button-arrow {
  color: #85B231;
}

/* -------------------------------------------------
.p-mainvisual__button-text
---------------------------------------------------- */
.p-mainvisual__button-text {
  position: relative;
  z-index: 1;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0.16em;
  line-height: 1;
  color: #fff;
  transition: color 0.2s cubic-bezier(0.45, 0, 0.55, 1);
}
@media screen and (min-width : 768px) and (max-width : 1023px) {
  .p-mainvisual__button-text {
    font-size: 18px;
    letter-spacing: 0.16em;
  }
}
@media screen and (max-width : 767px) {
  .p-mainvisual__button-text {
    font-size: 1.4rem;
    letter-spacing: 0.16em;
  }
}

/* -------------------------------------------------
.p-mainvisual__button-arrow
---------------------------------------------------- */
.p-mainvisual__button-arrow {
  position: relative;
  z-index: 1;
  font-size: 18px;
  color: #fff;
  transition: color 0.2s cubic-bezier(0.45, 0, 0.55, 1);
}
@media screen and (min-width : 768px) and (max-width : 1023px) {
  .p-mainvisual__button-arrow {
    font-size: 18px;
  }
}
@media screen and (max-width : 767px) {
  .p-mainvisual__button-arrow {
    font-size: 1.4rem;
  }
}

/* -------------------------------------------------
.p-mainvisual__right
---------------------------------------------------- */
.p-mainvisual__right {
  position: absolute;
  top: 50%;
  right: 40px;
  z-index: 2;
  transform: translateY(-50%);
}
@media screen and (max-width: 1200px) {
  .p-mainvisual__right {
    right: 30px;
  }
}
@media screen and (max-width: 1100px) {
  .p-mainvisual__right {
    right: 20px;
  }
}
@media screen and (min-width : 768px) and (max-width : 1023px) {
  .p-mainvisual__right {
    right: 15px;
  }
}
@media screen and (max-width : 767px) {
  .p-mainvisual__right {
    position: absolute;
    top: 50%;
    right: 3rem;
    padding: 0;
    margin: 0;
    transform: translateY(-50%);
    width: auto;
  }
}

/* -------------------------------------------------
.p-mainvisual__vertical-text
---------------------------------------------------- */
.p-mainvisual__vertical-text {
  margin: 0;
  padding: 0;
  font-family: "Oswald", sans-serif;
  font-size: 7.6vw;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1;
  white-space: nowrap;
  color: rgba(177, 206, 123, 0.8);
  writing-mode: vertical-rl;
}
@media screen and (min-width : 1024px) {
  .p-mainvisual__vertical-text {
    font-size: 7.6vw;
    letter-spacing: 0.05em;
  }
}
@media screen and (min-width : 1024px) and (min-width: 1700px) {
  .p-mainvisual__vertical-text {
    font-size: 130px;
  }
}
@media screen and (max-width: 1025px) {
  .p-mainvisual__vertical-text {
    font-size: 8rem;
    letter-spacing: 0.05em;
  }
}
@media screen and (min-width : 768px) and (max-width : 1023px) {
  .p-mainvisual__vertical-text {
    font-size: 8rem;
    letter-spacing: 0.05em;
  }
}
@media screen and (max-width : 767px) {
  .p-mainvisual__vertical-text {
    margin: 0;
    padding: 0;
    font-size: 6.4rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    line-height: 0.4;
    opacity: 0.8;
    text-align: right;
  }
}

/* -------------------------------------------------
.p-message
---------------------------------------------------- */
.p-message {
  position: relative;
  width: 100%;
  height: 620px;
  padding: 0;
  overflow: hidden;
  background-color: #fff;
}
@media screen and (min-width : 768px) and (max-width : 1023px) {
  .p-message {
    height: 620px;
    padding: 0;
  }
}
@media screen and (max-width : 767px) {
  .p-message {
    height: auto;
    min-height: auto;
  }
}

/* -------------------------------------------------
.p-message__bg
---------------------------------------------------- */
.p-message__bg {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
}
.p-message__bg::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.9);
}

/* -------------------------------------------------
.p-message__bg-inner
---------------------------------------------------- */
.p-message__bg-inner {
  position: absolute;
  top: 50%;
  right: -130px;
  display: grid;
  grid-template-columns: repeat(2, 240px);
  grid-auto-rows: 170px;
  gap: 8px;
  width: max-content;
  transform: translateY(-50%) rotate(35deg) scale(1.2);
  transform-origin: center center;
}
@media screen and (max-width : 767px) {
  .p-message__bg-inner {
    right: -460px;
  }
}

/* -------------------------------------------------
.p-message__bg-inner-item
---------------------------------------------------- */
.p-message__bg-inner-item {
  width: 240px;
  height: 170px;
  margin: 0;
  padding: 0;
  overflow: hidden;
  box-sizing: border-box;
}

/* -------------------------------------------------
.p-message__bg-inner-img
---------------------------------------------------- */
.p-message__bg-inner-img {
  display: block;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  opacity: 0.6;
  object-fit: cover;
}

/* -------------------------------------------------
.p-message__inner
---------------------------------------------------- */
.p-message__inner {
  position: relative;
  z-index: 2;
  display: flex;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 125px 40px 100px;
}
@media screen and (min-width : 768px) and (max-width : 1023px) {
  .p-message__inner {
    max-width: 100%;
    padding: 107px 45px 85px;
    flex-wrap: nowrap;
  }
}
@media screen and (max-width : 767px) {
  .p-message__inner {
    position: relative;
    flex-direction: row;
    align-items: flex-start;
    gap: 0;
    padding: 60px 0 40px 20px;
    box-sizing: border-box;
  }
}

/* -------------------------------------------------
.p-message__left
---------------------------------------------------- */
.p-message__left {
  display: flex;
  align-items: flex-start;
  flex: 0 0 auto;
  gap: 60px;
}
@media screen and (min-width : 768px) and (max-width : 1023px) {
  .p-message__left {
    flex: 0 0 auto;
    gap: 50px;
    min-width: 0;
  }
}
@media screen and (max-width : 767px) {
  .p-message__left {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    flex: 0 0 auto;
    width: auto;
    margin: 0;
    gap: 0;
  }
}

/* -------------------------------------------------
.p-message__heading
---------------------------------------------------- */
.p-message__heading {
  text-align: left;
}
@media screen and (min-width : 768px) and (max-width : 1023px) {
  .p-message__heading {
    margin: 0;
    text-align: left;
  }
}
@media screen and (max-width : 767px) {
  .p-message__heading {
    position: relative;
    margin: 0;
    padding: 0;
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
}

/* -------------------------------------------------
.p-message__content
---------------------------------------------------- */
@media screen and (max-width : 767px) {
  .p-message__content {
    margin: 0;
    padding: 0;
  }
}

/* -------------------------------------------------
.p-message__title-ja-in-right (スマホ版のみ表示)
---------------------------------------------------- */
.p-message__title-ja-in-right {
  display: none;
}
@media screen and (max-width : 767px) {
  .p-message__title-ja-in-right {
    display: block;
    margin: 0 0 15px;
    font-size: 1.5rem;
    font-weight: 400;
    line-height: 1.5;
    letter-spacing: 0.2em;
    color: #85B231;
  }
}

/* -------------------------------------------------
.p-message__title-en
---------------------------------------------------- */
.p-message__title-en {
  margin: 0;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 2.3rem;
  font-weight: 400;
  line-height: 2.3043478261;
  letter-spacing: 0.16em;
  color: #85B231;
  writing-mode: horizontal-tb;
}
@media screen and (min-width : 768px) and (max-width : 1023px) {
  .p-message__title-en {
    font-size: 2.05rem;
    line-height: 2.4634146341;
  }
}

/* -------------------------------------------------
.p-message__title-en-pc
---------------------------------------------------- */
.p-message__title-en-pc {
  font-weight: 400;
}
@media screen and (max-width : 767px) {
  .p-message__title-en-pc {
    display: none;
  }
}

/* -------------------------------------------------
.p-message__title-en-sp
---------------------------------------------------- */
.p-message__title-en-sp {
  display: none;
}
@media screen and (max-width : 767px) {
  .p-message__title-en-sp {
    display: inline;
    writing-mode: vertical-rl;
    font-size: 1.4rem;
    line-height: 1;
    letter-spacing: 0.15em;
    white-space: nowrap;
    margin-top: -20px;
  }
}

/* -------------------------------------------------
.p-message__title-ja
---------------------------------------------------- */
.p-message__title-ja {
  margin: 12px 0 20px;
  font-size: 1.6rem;
  font-weight: 300;
  line-height: 22px;
  letter-spacing: 0.2em;
  color: #85B231;
}
@media screen and (min-width : 768px) and (max-width : 1023px) {
  .p-message__title-ja {
    font-size: 1.5rem;
    margin: 11.5px 0 17px;
  }
}
@media screen and (max-width : 767px) {
  .p-message__title-ja {
    display: none;
  }
}

/* -------------------------------------------------
.p-message__line
---------------------------------------------------- */
.p-message__line {
  width: 1px;
  height: 395px;
  flex-shrink: 0;
  background-color: #85B231;
}
@media screen and (min-width : 768px) and (max-width : 1023px) {
  .p-message__line {
    height: 120px;
  }
}
@media screen and (max-width : 767px) {
  .p-message__line {
    position: absolute;
    top: calc(15.4rem + 1.5em - 0.3rem);
    left: calc(0.4rem + 0.5px);
    width: 1px;
    height: 150px;
    min-height: 0;
    max-height: 180px;
    margin: 0;
    flex-shrink: 0;
    align-self: auto;
    transform: translateX(-50%);
    z-index: 1;
    overflow: hidden;
  }
}

/* -------------------------------------------------
.p-message__right
---------------------------------------------------- */
.p-message__right {
  flex: 1;
  padding: 0 0 0 60px;
  min-width: 0;
}
@media screen and (max-width: 1180px) {
  .p-message__right {
    padding: 0 0 0 50px;
  }
}
@media screen and (max-width: 1100px) {
  .p-message__right {
    padding: 0 0 0 40px;
  }
}
@media screen and (min-width : 768px) and (max-width : 1023px) {
  .p-message__right {
    flex: 1;
    padding: 0 0 0 50px;
    min-width: 0;
  }
}
@media screen and (max-width : 767px) {
  .p-message__right {
    flex: 1;
    width: auto;
    max-width: 100%;
    padding: 0 0 0 25px;
    text-align: left;
    margin: 0;
  }
}

/* -------------------------------------------------
.p-message__text
---------------------------------------------------- */
.p-message__text {
  margin: -10px 0 0;
  padding: 0;
  font-size: 1.9rem;
  font-weight: 400;
  line-height: 59px;
  letter-spacing: 0.1em;
  color: #3c3c3c;
}
@media screen and (max-width: 1180px) {
  .p-message__text {
    font-size: 1.75rem;
    line-height: 3em;
  }
}
@media screen and (max-width: 1100px) {
  .p-message__text {
    font-size: 1.6rem;
    line-height: 2.8em;
  }
}
@media screen and (min-width : 768px) and (max-width : 1023px) {
  .p-message__text {
    font-size: 1.65rem;
    line-height: 2.75em;
    letter-spacing: 0.1em;
    margin: -9px 0 0;
  }
}
@media screen and (max-width : 767px) {
  .p-message__text {
    margin: 0;
    font-size: 1.3rem;
    line-height: 2.5;
    letter-spacing: 0.05em;
  }
}

/* -------------------------------------------------
.p-message__text-emphasis
---------------------------------------------------- */
.p-message__text-emphasis {
  font-weight: 400;
  color: #3c3c3c;
}

/* -------------------------------------------------
.p-message__slogan
---------------------------------------------------- */
.p-message__slogan {
  position: absolute;
  top: 40px;
  right: 60px;
  flex: 0 0 auto;
}
@media screen and (max-width: 1180px) {
  .p-message__slogan {
    right: 50px;
  }
}
@media screen and (max-width: 1100px) {
  .p-message__slogan {
    right: 40px;
  }
}
@media screen and (min-width : 768px) and (max-width : 1023px) {
  .p-message__slogan {
    position: absolute;
    top: 56px;
    right: 45px;
    flex: 0 0 auto;
    width: auto;
    max-width: 50px;
    margin: 0;
  }
}
@media screen and (max-width : 767px) {
  .p-message__slogan {
    position: absolute;
    top: calc(2.25rem + 15px + 5.72rem - 4.2rem);
    left: calc(25px + (1.3rem * 1.05 * 19) + 26px);
    right: auto;
    flex: 0 0 auto;
    width: auto;
    max-width: 50px;
    margin: 0;
  }
}

/* -------------------------------------------------
.p-message__slogan-text
---------------------------------------------------- */
.p-message__slogan-text {
  margin: 0;
  writing-mode: vertical-rl;
  font-size: 4.5rem;
  font-weight: 300;
  font-feature-settings: "palt";
  line-height: 1.5;
  letter-spacing: 12px;
  color: #85B231;
}
@media screen and (max-width: 1180px) {
  .p-message__slogan-text {
    font-size: 3.5rem;
  }
}
@media screen and (max-width: 1100px) {
  .p-message__slogan-text {
    font-size: 3rem;
  }
}
@media screen and (min-width : 768px) and (max-width : 1023px) {
  .p-message__slogan-text {
    writing-mode: vertical-rl;
    font-size: 2.2rem;
    line-height: 1.4;
  }
}
@media screen and (max-width : 767px) {
  .p-message__slogan-text {
    writing-mode: vertical-rl;
    font-size: 2rem;
    line-height: 1.4;
  }
}

/* -------------------------------------------------
.p-message__slogan-punctuation
---------------------------------------------------- */
.p-message__slogan-punctuation {
  display: inline-block;
  vertical-align: top;
  line-height: 1;
  font-feature-settings: normal;
  transform: translate(0.4em, -0.6em);
}

/* -------------------------------------------------
.p-whats
---------------------------------------------------- */
.p-whats {
  width: 100%;
  padding: 80px 0 96px;
  background-color: #fff;
}
@media screen and (max-width : 767px) {
  .p-whats {
    padding: 40px 0;
  }
}

/* -------------------------------------------------
.p-whats__inner
---------------------------------------------------- */
.p-whats__inner {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}
@media screen and (min-width : 768px) and (max-width : 1023px) {
  .p-whats__inner {
    max-width: 100%;
    padding: 0 45px;
  }
}
@media screen and (max-width : 767px) {
  .p-whats__inner {
    padding: 0 20px;
  }
}

/* -------------------------------------------------
.p-whats__header
---------------------------------------------------- */
.p-whats__header {
  margin: 0 0 30px;
}
@media screen and (max-width : 767px) {
  .p-whats__header {
    margin: 0 0 20px;
  }
}

/* -------------------------------------------------
.p-whats__title-group
---------------------------------------------------- */
.p-whats__title-group {
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 0 0 10px;
}
@media screen and (max-width : 767px) {
  .p-whats__title-group {
    gap: 10px;
    margin: 0 0 5px;
  }
}

/* -------------------------------------------------
.p-whats__title-en
---------------------------------------------------- */
.p-whats__title-en {
  margin: 0;
  font-family: "Oswald", sans-serif;
  font-size: 6rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.38;
  color: #85B231;
}
@media screen and (min-width : 768px) and (max-width : 1023px) {
  .p-whats__title-en {
    font-size: 4rem;
    line-height: 1.38;
  }
}
@media screen and (max-width : 767px) {
  .p-whats__title-en {
    font-size: 2.8rem;
    line-height: 1.32;
  }
}

/* -------------------------------------------------
.p-whats__title-ja
---------------------------------------------------- */
.p-whats__title-ja {
  font-size: 2.2rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  margin: 6px 0 0;
  color: #3c3c3c;
}
@media screen and (max-width : 767px) {
  .p-whats__title-ja {
    font-size: 1.4rem;
    margin: 4px 0 0;
  }
}

/* -------------------------------------------------
.p-whats__company-name
---------------------------------------------------- */
.p-whats__company-name {
  margin: 0;
  font-family: "Oswald", sans-serif;
  font-size: 6rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.38;
  color: #85B231;
}
@media screen and (min-width : 768px) and (max-width : 1023px) {
  .p-whats__company-name {
    font-size: 4rem;
    line-height: 1.38;
  }
}
@media screen and (max-width : 767px) {
  .p-whats__company-name {
    font-size: 2.8rem;
    line-height: 1.32;
  }
}

/* -------------------------------------------------
.p-whats__description
---------------------------------------------------- */
.p-whats__description {
  margin: 0 0 50px;
  font-size: 1.7rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  line-height: 2;
  color: #3c3c3c;
}
@media screen and (max-width: 1200px) {
  .p-whats__description {
    font-size: 1.42vw;
  }
}
@media screen and (min-width : 768px) and (max-width : 1023px) {
  .p-whats__description {
    font-size: 1.6rem;
  }
}
@media screen and (max-width : 767px) {
  .p-whats__description {
    font-size: 1.4rem;
    letter-spacing: 0.05em;
    line-height: 1.6;
  }
}
@media screen and (min-width : 768px) and (max-width : 1023px) {
  .p-whats__description {
    margin: 0 0 45px;
  }
}
@media screen and (max-width : 767px) {
  .p-whats__description {
    margin: 0 0 30px;
  }
}

/* -------------------------------------------------
.p-whats__card-list
---------------------------------------------------- */
.p-whats__card-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 38px;
}
@media screen and (min-width : 1024px) {
  .p-whats__card-list {
    grid-template-columns: repeat(2, minmax(0, 520px));
    justify-content: center;
    gap: 33px;
  }
}
@media screen and (min-width : 768px) and (max-width : 1023px) {
  .p-whats__card-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 31px;
  }
}
@media screen and (max-width : 767px) {
  .p-whats__card-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

/* -------------------------------------------------
.c-card
---------------------------------------------------- */
.c-card {
  position: relative;
  width: 100%;
  height: 280px;
  overflow: hidden;
  background-color: #85B231;
  border-radius: 12px;
}
@media screen and (min-width : 1024px) {
  .c-card {
    width: 100%;
    max-width: 520px;
    height: 280px;
  }
}
@media screen and (max-width : 767px) {
  .c-card {
    width: 100%;
    height: auto;
    border-radius: 8px;
  }
}

/* -------------------------------------------------
.c-card__link
---------------------------------------------------- */
.c-card__link {
  display: flex;
  width: 100%;
  height: 100%;
  text-decoration: none;
}
@media screen and (max-width : 767px) {
  .c-card__link {
    flex-direction: column;
    height: auto;
    min-height: 0;
  }
}

/* -------------------------------------------------
.c-card__overlay
---------------------------------------------------- */
.c-card__overlay {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex: 0 0 50%;
  padding: 40px 20px;
  background-color: #85B231;
}
@media screen and (min-width : 768px) and (max-width : 1023px) {
  .c-card__overlay {
    padding: 32px 16px;
  }
}
@media screen and (max-width : 767px) {
  .c-card__overlay {
    flex: 0 0 auto;
    padding: 18px 12px;
    order: 2;
  }
}

/* -------------------------------------------------
.c-card__title
---------------------------------------------------- */
.c-card__title {
  margin: 26px 0 0;
  font-size: 3.4rem;
  font-weight: 400;
  letter-spacing: 0.25em;
  color: #fff;
  white-space: nowrap;
}
@media screen and (min-width : 768px) and (max-width : 1023px) {
  .c-card__title {
    font-size: 2.9rem;
    margin: 23px 0 0;
  }
}
@media screen and (max-width : 767px) {
  .c-card__title {
    margin: 0 0 2px;
    font-size: 1.6rem;
    letter-spacing: 0.25em;
  }
}

/* -------------------------------------------------
.c-card__text
---------------------------------------------------- */
.c-card__text {
  margin: 0 0 45px;
  font-size: 1.8rem;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #fff;
  white-space: nowrap;
}
@media screen and (min-width : 768px) and (max-width : 1023px) {
  .c-card__text {
    font-size: 1.6rem;
    margin: 0 0 40px;
  }
}
@media screen and (max-width : 767px) {
  .c-card__text {
    margin: 0 0 6px;
    font-size: 1.1rem;
    letter-spacing: 0.3em;
  }
}

/* -------------------------------------------------
.c-card__arrow
---------------------------------------------------- */
.c-card__arrow {
  position: relative;
  width: 50px;
  height: 1px;
  background-color: #fff;
  transition: transform 0.3s ease;
}
@media (max-width: 1199px) {
  .c-card__arrow {
    width: 60px;
  }
}
@media screen and (max-width : 767px) {
  .c-card__arrow {
    width: 26px;
    margin-top: 4px;
  }
}
.c-card__arrow::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 10px;
  height: 1px;
  background-color: #fff;
  transform: rotate(45deg);
  transform-origin: right center;
}
@media screen and (max-width : 767px) {
  .c-card__arrow::after {
    width: 8px;
  }
}
.c-card:hover .c-card__arrow {
  transform: translateX(5px);
}

/* -------------------------------------------------
.c-card__image
---------------------------------------------------- */
.c-card__image {
  flex: 0 0 50%;
  height: 100%;
  overflow: hidden;
}
@media screen and (max-width : 767px) {
  .c-card__image {
    flex: 0 0 auto;
    width: 100%;
    aspect-ratio: 1/0.72;
    order: 1;
  }
}

/* -------------------------------------------------
.c-card__image-img
---------------------------------------------------- */
.c-card__image-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition-duration: 0.5s;
}
@media screen and (max-width : 767px) {
  .c-card__image-img {
    height: 100%;
  }
}
.c-card:hover .c-card__image-img {
  transform: scale(1.2);
}
.p-whats__card-list .c-card:nth-child(2) .c-card__image-img {
  object-position: right center;
}

/* -------------------------------------------------
.p-topics
---------------------------------------------------- */
.p-topics {
  width: 100%;
  padding: 0;
  background-color: #fff;
}
@media screen and (min-width : 768px) and (max-width : 1023px) {
  .p-topics {
    padding: 80px 0;
  }
}
@media screen and (max-width : 767px) {
  .p-topics {
    padding: 0;
  }
}

/* -------------------------------------------------
.p-topics__inner
---------------------------------------------------- */
.p-topics__inner {
  position: relative;
  display: flex;
  justify-content: center;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 100px 0;
}
.p-topics__inner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background-color: #ccc;
}
@media screen and (min-width : 768px) and (max-width : 1023px) {
  .p-topics__inner::before {
    left: 45px;
    right: 45px;
  }
}
@media screen and (max-width : 767px) {
  .p-topics__inner::before {
    left: 20px;
    right: 20px;
  }
}
@media screen and (min-width : 768px) and (max-width : 1023px) {
  .p-topics__inner {
    max-width: 100%;
    padding: 80px 45px 80px;
  }
}
@media screen and (max-width : 767px) {
  .p-topics__inner {
    flex-direction: column;
    align-items: center;
    padding: 30px 15px 40px;
  }
}

/* -------------------------------------------------
.p-topics__left
---------------------------------------------------- */
.p-topics__left {
  display: flex;
  align-items: stretch;
  flex: 0 0 auto;
  gap: 98px;
}
@media screen and (min-width : 768px) and (max-width : 1023px) {
  .p-topics__left {
    gap: 79px;
  }
}
@media screen and (max-width : 767px) {
  .p-topics__left {
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin: 0 0 20px;
  }
}

/* -------------------------------------------------
.p-topics__heading
---------------------------------------------------- */
.p-topics__heading {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}
@media screen and (max-width : 767px) {
  .p-topics__heading {
    align-items: center;
  }
}

/* -------------------------------------------------
.p-topics__title-en
---------------------------------------------------- */
.p-topics__title-en {
  margin: 0;
  font-family: "Oswald", sans-serif;
  font-size: 6rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.38;
  color: #85B231;
}
@media screen and (min-width : 768px) and (max-width : 1023px) {
  .p-topics__title-en {
    font-size: 4rem;
    line-height: 1.38;
  }
}
@media screen and (max-width : 767px) {
  .p-topics__title-en {
    font-size: 2.8rem;
    line-height: 1.32;
  }
}

/* -------------------------------------------------
.p-topics__title-ja
---------------------------------------------------- */
.p-topics__title-ja {
  font-size: 2.2rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  margin: 15px 0 0;
  text-align: left;
  color: #3c3c3c;
}
@media screen and (max-width : 767px) {
  .p-topics__title-ja {
    font-size: 1.4rem;
    margin: 0;
    text-align: center;
  }
}

/* -------------------------------------------------
.p-topics__line
---------------------------------------------------- */
.p-topics__line {
  width: 1px;
  height: 100%;
  background-color: #85B231;
}
@media screen and (max-width : 767px) {
  .p-topics__line {
    display: none;
  }
}

/* -------------------------------------------------
.p-topics__right
---------------------------------------------------- */
.p-topics__right {
  flex: 0 0 auto;
  padding: 0 0 0 70px;
}
@media screen and (min-width : 768px) and (max-width : 1023px) {
  .p-topics__right {
    padding: 0 0 0 40px;
  }
}
@media screen and (max-width : 767px) {
  .p-topics__right {
    padding: 0;
  }
}

/* -------------------------------------------------
.p-topics__list
---------------------------------------------------- */
.p-topics__list {
  display: flex;
  flex-direction: column;
  gap: 25px;
}
@media screen and (min-width : 768px) and (max-width : 1023px) {
  .p-topics__list {
    gap: 22px;
  }
}
@media screen and (max-width : 767px) {
  .p-topics__list {
    align-items: center;
    width: 100%;
    gap: 12px;
  }
}

/* -------------------------------------------------
.p-topics__item
---------------------------------------------------- */
.p-topics__item {
  display: flex;
  align-items: baseline;
  gap: 40px;
}
@media screen and (min-width : 768px) and (max-width : 1023px) {
  .p-topics__item {
    gap: 32px;
  }
}
@media screen and (max-width : 767px) {
  .p-topics__item {
    align-items: center;
    gap: 0;
    width: 100%;
    max-width: 100%;
  }
}

/* -------------------------------------------------
.p-topics__title
---------------------------------------------------- */
.p-topics__title {
  display: none;
}

/* -------------------------------------------------
.p-topics__date
---------------------------------------------------- */
.p-topics__date {
  flex: 0 0 120px;
  font-size: 1.7rem;
  font-weight: 400;
  line-height: 26px;
  letter-spacing: 0.1em;
  color: #3c3c3c;
}
@media screen and (min-width : 768px) and (max-width : 1023px) {
  .p-topics__date {
    flex: 0 0 100px;
    font-size: 1.55rem;
    line-height: 1.55em;
    letter-spacing: 0.1em;
  }
}
@media screen and (max-width : 767px) {
  .p-topics__date {
    flex: 0 0 auto;
    margin: 0 20px 0 0;
    font-size: 1.2rem;
    line-height: 1.5;
    letter-spacing: 0.05em;
  }
}

/* -------------------------------------------------
.p-topics__text
---------------------------------------------------- */
.p-topics__text {
  flex: 1;
  margin: 0;
  font-size: 1.7rem;
  font-weight: 400;
  line-height: 26px;
  letter-spacing: 0.1em;
  color: #3c3c3c;
  white-space: nowrap;
}
@media screen and (min-width : 768px) and (max-width : 1023px) {
  .p-topics__text {
    font-size: 1.55rem;
    line-height: 1.55em;
    letter-spacing: 0.1em;
  }
}
@media screen and (max-width : 767px) {
  .p-topics__text {
    flex: 1;
    margin: 0;
    font-size: 1.2rem;
    line-height: 1;
    letter-spacing: 0.05em;
    white-space: normal;
  }
}

/* ===============================================
style.scss
================================================ */
/* ===============================================
_header.scss
================================================ */
/* ===============================================
_about.scss
================================================ */
/* -------------------------------------------------
.p-sub-mainvisual
---------------------------------------------------- */
.p-sub-mainvisual {
  position: relative;
  width: 100%;
  height: 475px;
}
@media screen and (min-width : 768px) and (max-width : 1023px) {
  .p-sub-mainvisual {
    height: 500px;
  }
}
@media screen and (max-width : 767px) {
  .p-sub-mainvisual {
    height: 25vh;
  }
}
.p-sub-mainvisual {
  margin: 100px 0 20px;
  overflow: hidden;
}
@media screen and (min-width : 768px) and (max-width : 1023px) {
  .p-sub-mainvisual {
    margin: 92px 0 20px;
  }
}
@media screen and (max-width : 767px) {
  .p-sub-mainvisual {
    margin: 76px 0 20px;
  }
}

.p-sub-mainvisual__image {
  width: 100%;
  height: 100%;
}

.p-sub-mainvisual__image-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
@media screen and (max-width : 767px) {
  .p-sub-mainvisual__image-img {
    object-position: 50% center;
  }
}

.p-sub-mainvisual__image-bg {
  display: flex;
  width: 100%;
  height: 100%;
}
@media screen and (max-width : 767px) {
  .p-sub-mainvisual__image-bg {
    flex-direction: column;
  }
}

.p-sub-mainvisual__image-bg-item {
  flex: 0 0 33.333%;
  width: 33.333%;
  height: 100%;
  overflow: hidden;
}
@media screen and (min-width : 768px) and (max-width : 1023px) {
  .p-sub-mainvisual__image-bg-item {
    flex: 0 0 33.333%;
    width: 33.333%;
    height: 100%;
  }
}
@media screen and (max-width : 767px) {
  .p-sub-mainvisual__image-bg-item {
    flex: 0 0 33.333%;
    width: 100%;
    height: 33.333%;
  }
}
.p-sub-mainvisual__image-bg-item:nth-child(3) .p-sub-mainvisual__image-bg-img {
  transform: scale(1.4);
  object-position: 70% center;
}
@media screen and (max-width : 767px) {
  .p-sub-mainvisual__image-bg-item:nth-child(3) .p-sub-mainvisual__image-bg-img {
    transform: scale(1.5);
    object-position: center 0%;
  }
}

.p-sub-mainvisual__image-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.1);
}
@media screen and (max-width : 767px) {
  .p-sub-mainvisual__image-bg-img {
    transform: scale(1.3);
  }
}

.p-sub-mainvisual__content {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
}

.p-sub-mainvisual__title {
  text-align: center;
  color: #fff;
}

.p-sub-mainvisual__title-ja {
  display: block;
  font-size: 50px;
  font-weight: 500;
  letter-spacing: 0.15em;
}
@media screen and (max-width : 767px) {
  .p-sub-mainvisual__title-ja {
    font-size: 3rem;
  }
}

.p-sub-mainvisual__title-en {
  display: block;
  margin: 10px 0 0;
  font-size: 25px;
  letter-spacing: 0.3em;
}
@media screen and (max-width : 767px) {
  .p-sub-mainvisual__title-en {
    margin: 5px 0 0;
    font-size: 1.6rem;
  }
}

/* -------------------------------------------------
.p-breadcrumb
---------------------------------------------------- */
.p-breadcrumb {
  width: 100%;
  background-color: #fff;
}

.p-breadcrumb__inner {
  max-width: 1280px;
  width: 90%;
  margin: 0 auto;
  padding: 20px 0;
}

.p-breadcrumb__list {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
}

.p-breadcrumb__item {
  font-size: 1.6rem;
  color: #3c3c3c;
  /* 1200px以下での流動的な調整 */
}
@media screen and (max-width: 1200px) {
  .p-breadcrumb__item {
    font-size: 1.33vw;
  }
}
@media screen and (max-width : 767px) {
  .p-breadcrumb__item {
    font-size: 1.4rem;
  }
}
.p-breadcrumb__item + .p-breadcrumb__item::before {
  content: "▶";
  margin: 0 2.1rem;
  font-size: 1.6rem;
  color: #606060;
}
@media screen and (max-width: 1200px) {
  .p-breadcrumb__item + .p-breadcrumb__item::before {
    font-size: 1.33vw;
    margin: 0 1.75vw;
  }
}
@media screen and (max-width : 767px) {
  .p-breadcrumb__item + .p-breadcrumb__item::before {
    font-size: 1.2rem;
    margin: 0 1.5rem;
  }
}
.p-breadcrumb__item[aria-current=page] {
  color: #85B231;
}

.p-breadcrumb__link {
  color: #3c3c3c;
  text-decoration: none;
  transition: color 0.3s;
}
.p-breadcrumb__link:hover {
  color: #85B231;
}

/* -------------------------------------------------
.p-about
---------------------------------------------------- */
.p-about {
  width: 100%;
  padding: 60px 0 100px;
}
@media screen and (max-width : 767px) {
  .p-about {
    padding: 10px 0 60px;
  }
}

.p-about__inner {
  max-width: 1280px;
  width: 90%;
  margin: 0 auto;
}
@media screen and (max-width : 767px) {
  .p-about__inner {
    width: 100%;
    padding: 0 15px;
  }
}

/* -------------------------------------------------
.p-about__title
---------------------------------------------------- */
.p-about__title {
  margin: 6rem 0 2rem;
  font-size: 3.2rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: #3c3c3c;
}
@media screen and (max-width: 1200px) {
  .p-about__title {
    margin: 8.33vw 0 2rem;
    font-size: 2.67vw;
  }
}
@media screen and (min-width : 768px) and (max-width : 1023px) {
  .p-about__title {
    margin: 8rem 0 2rem;
    font-size: 2.8rem;
  }
}
@media screen and (max-width : 767px) {
  .p-about__title {
    margin: 0 0 1rem;
    font-size: 2rem;
  }
}

/* -------------------------------------------------
.p-about__nav
---------------------------------------------------- */
.p-about__nav {
  margin: 0 0 80px;
}
@media screen and (max-width : 767px) {
  .p-about__nav {
    margin: 0 0 40px;
  }
}

.p-about__nav-list {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 2.4rem;
  list-style: none;
  padding: 0;
  margin: 0;
}
@media screen and (max-width: 1200px) {
  .p-about__nav-list {
    gap: 2vw;
  }
}
@media screen and (min-width : 768px) and (max-width : 1023px) {
  .p-about__nav-list {
    gap: 2rem;
  }
}
@media screen and (max-width : 767px) {
  .p-about__nav-list {
    flex-wrap: nowrap;
    gap: 0.8rem;
  }
}

.p-about__nav-link {
  position: relative;
  margin: 0;
  padding: 0;
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: #3c3c3c;
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.3s;
}
.p-about__nav-link::before {
  content: "⌵";
  display: inline-block;
  margin: 0 5px 0 0;
  color: #3c3c3c;
  font-weight: bold;
}
.p-about__nav-link::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 14px;
  width: calc(100% - 14px);
  height: 1px;
  background-color: #3c3c3c;
}
.p-about__nav-link:hover {
  color: #85B231;
}
.p-about__nav-link:hover::after {
  background-color: #85B231;
}
@media screen and (max-width: 1200px) {
  .p-about__nav-link {
    font-size: 1.33vw;
  }
}
@media screen and (min-width : 768px) and (max-width : 1023px) {
  .p-about__nav-link {
    font-size: 1.5rem;
  }
}
@media screen and (max-width : 767px) {
  .p-about__nav-link {
    font-size: 1.2rem;
    letter-spacing: 0.05em;
  }
}
@media screen and (max-width : 767px) {
  .p-about__nav-link::before {
    margin: 0 2px 0 0;
  }
}

/* -------------------------------------------------
.p-about-section
---------------------------------------------------- */
.p-about-section {
  margin: 10rem 0 0;
}
.p-about-section:first-of-type {
  margin: 10rem 0 0;
}
@media screen and (max-width: 1200px) {
  .p-about-section {
    margin: 8.33vw 0 0;
  }
  .p-about-section:first-of-type {
    margin: 8.33vw 0 0;
  }
}
@media screen and (min-width : 768px) and (max-width : 1023px) {
  .p-about-section {
    margin: 8rem 0 0;
  }
  .p-about-section:first-of-type {
    margin: 8rem 0 0;
  }
}
@media screen and (max-width : 767px) {
  .p-about-section {
    margin: 6rem 0 0;
  }
  .p-about-section:first-of-type {
    margin: 6rem 0 0;
  }
}

.p-about-section__header {
  margin: 0 0 4rem;
}
@media screen and (max-width: 1200px) {
  .p-about-section__header {
    margin: 0 0 3.33vw;
  }
}
@media screen and (min-width : 768px) and (max-width : 1023px) {
  .p-about-section__header {
    margin: 0 0 3.5rem;
  }
}
@media screen and (max-width : 767px) {
  .p-about-section__header {
    margin: 0 0 2rem;
  }
}

.p-about-section__title-en {
  margin: 0;
  font-family: "Oswald", sans-serif;
  font-size: 6rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.38;
  color: #85B231;
}
@media screen and (min-width : 768px) and (max-width : 1023px) {
  .p-about-section__title-en {
    font-size: 4rem;
    line-height: 1.38;
  }
}
@media screen and (max-width : 767px) {
  .p-about-section__title-en {
    font-size: 2.8rem;
    line-height: 1.32;
  }
}
@media screen and (max-width : 767px) {
  .p-about-section__title-en {
    margin: 0 0 5px;
  }
}
@media screen and (max-width : 767px) {
  .p-about-section__title-en {
    font-size: 3rem;
  }
}

.p-about-section__title-ja {
  font-size: 2.2rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  margin: 2.4rem 0 0;
  color: #3c3c3c;
}
@media screen and (max-width : 767px) {
  .p-about-section__title-ja {
    font-size: 1.4rem;
    margin: 0;
    color: #3c3c3c;
  }
}

/* -------------------------------------------------
.p-about-vision
---------------------------------------------------- */
@media screen and (max-width : 767px) {
  .p-about-section.p-about-vision {
    margin: 3rem 0 0;
  }
}

.p-about-vision {
  width: 100%;
  padding: 0 0 100px;
}
@media screen and (max-width: 1200px) {
  .p-about-vision {
    padding: 0 0 8.33vw;
  }
}
@media screen and (min-width : 768px) and (max-width : 1023px) {
  .p-about-vision {
    padding: 0 0 80px;
  }
}
@media screen and (max-width : 767px) {
  .p-about-vision {
    padding: 0 0 40px;
  }
}

.p-about-vision__heading,
.p-about-service__heading {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin: 0 0 4rem;
  font-size: 3.2rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1;
}
@media screen and (max-width: 1200px) {
  .p-about-vision__heading,
  .p-about-service__heading {
    margin: 0 0 3.33vw;
    font-size: 2.6vw;
  }
}
@media screen and (min-width : 768px) and (max-width : 1023px) {
  .p-about-vision__heading,
  .p-about-service__heading {
    margin: 0 0 3.5rem;
  }
}
@media screen and (max-width : 767px) {
  .p-about-vision__heading,
  .p-about-service__heading {
    margin: 0 0 2rem;
    font-size: 1.8rem;
  }
}

.p-about-vision__heading-line,
.p-about-service__heading-line {
  display: inline-block;
  height: 5.2rem;
  margin: 0 0 2.4rem;
  padding: 0 20px;
  box-sizing: border-box;
  line-height: 5.2rem;
  font-size: 3.2rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: #fff;
  background-color: #85B231;
  white-space: nowrap;
}
.p-about-vision__heading-line:last-child,
.p-about-service__heading-line:last-child {
  margin: 0;
}
@media screen and (max-width: 1200px) {
  .p-about-vision__heading-line,
  .p-about-service__heading-line {
    height: 4.3vw;
    margin: 0 0 2vw;
    padding: 0 1.25vw;
    line-height: 4.3vw;
    font-size: 2.6vw;
  }
}
@media screen and (min-width : 768px) and (max-width : 1023px) {
  .p-about-vision__heading-line,
  .p-about-service__heading-line {
    font-size: 2.8rem;
    margin: 0 0 3.3rem;
    padding: 0 13px;
  }
}
@media screen and (max-width : 767px) {
  .p-about-vision__heading-line,
  .p-about-service__heading-line {
    height: 3.6rem;
    margin: 0 0 1.2rem;
    padding: 0 12px;
    line-height: 3.6rem;
    font-size: 1.8rem;
  }
}
.p-about-vision__heading-line,
.p-about-service__heading-line {
  margin: 0 0 4rem;
}
@media screen and (max-width : 767px) {
  .p-about-vision__heading-line,
  .p-about-service__heading-line {
    margin: 0 0 1rem;
    padding: 0 10px;
    font-size: 1.55rem;
    letter-spacing: 0.04em;
  }
}

.p-about-vision__text {
  max-width: 900px;
  margin: 0 0 60px;
  font-size: 1.7rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  line-height: 2;
  color: #3c3c3c;
}
@media screen and (max-width: 1200px) {
  .p-about-vision__text {
    font-size: 1.42vw;
  }
}
@media screen and (min-width : 768px) and (max-width : 1023px) {
  .p-about-vision__text {
    font-size: 1.6rem;
  }
}
@media screen and (max-width : 767px) {
  .p-about-vision__text {
    font-size: 1.4rem;
    letter-spacing: 0.05em;
    line-height: 1.6;
  }
}
@media screen and (max-width : 767px) {
  .p-about-vision__text {
    max-width: 100%;
    margin: 0 0 20px;
  }
}

.p-about-vision__diagram {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  background-color: #fff;
  padding: 60px 20px;
  text-align: center;
}
@media screen and (max-width: 1200px) {
  .p-about-vision__diagram {
    padding: 5vw 1.67vw;
  }
}
@media screen and (min-width : 768px) and (max-width : 1023px) {
  .p-about-vision__diagram {
    padding: 50px 15px;
  }
}
@media screen and (max-width : 767px) {
  .p-about-vision__diagram {
    padding: 20px 0 0;
  }
}

.p-about-vision__diagram-title {
  margin: 0 0 40px;
  font-size: 2.3rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  line-height: 1.6;
}
@media screen and (max-width: 1200px) {
  .p-about-vision__diagram-title {
    margin: 0 0 3.33vw;
    font-size: 1.92vw;
  }
}
@media screen and (min-width : 768px) and (max-width : 1023px) {
  .p-about-vision__diagram-title {
    margin: 0 0 3.5rem;
    font-size: 2rem;
  }
}
@media screen and (max-width : 767px) {
  .p-about-vision__diagram-title {
    margin: 0 0 1.5rem;
    font-size: 1.4rem;
  }
}

.p-about-vision__diagram-title-text {
  display: block;
  color: #85B231;
  font-size: 3.4rem;
  font-weight: 500;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 1200px) {
  .p-about-vision__diagram-title-text {
    font-size: 2.83vw;
  }
}
@media screen and (min-width : 768px) and (max-width : 1023px) {
  .p-about-vision__diagram-title-text {
    font-size: 3rem;
  }
}
@media screen and (max-width : 767px) {
  .p-about-vision__diagram-title-text {
    font-size: 1.8rem;
  }
}

.p-about-vision__diagram-circles {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4rem;
  margin: 0 0 5rem;
}
@media screen and (max-width: 1200px) {
  .p-about-vision__diagram-circles {
    gap: 3.33vw;
    margin: 0 0 4.17vw;
  }
}
@media screen and (min-width : 768px) and (max-width : 1023px) {
  .p-about-vision__diagram-circles {
    gap: 3.5rem;
    margin: 0 0 4.5rem;
  }
}
@media screen and (max-width : 767px) {
  .p-about-vision__diagram-circles {
    flex-direction: row;
    gap: 0.7rem;
    margin: 0 0 3rem;
  }
}

.p-about-vision__circle {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  width: 32rem;
  height: 32rem;
  border: 1px solid #85B231;
  border-radius: 50%;
  padding: 20px;
}
@media screen and (max-width: 1200px) {
  .p-about-vision__circle {
    width: 26.67vw;
    height: 26.67vw;
  }
}
@media screen and (min-width : 768px) and (max-width : 1023px) {
  .p-about-vision__circle {
    width: 28rem;
    height: 28rem;
  }
}
@media screen and (max-width : 767px) {
  .p-about-vision__circle {
    width: 14.5rem;
    height: 14.5rem;
    padding: 10px;
  }
}

.p-about-vision__circle-title {
  position: relative;
  margin: 7.5rem 0 1.4rem;
  padding: 0 0 1.4rem;
  font-size: 3rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: #85B231;
}
.p-about-vision__circle-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 105%;
  height: 1px;
  background-color: #85B231;
}
@media screen and (max-width: 1200px) {
  .p-about-vision__circle-title {
    margin: 6.67vw 0 1.2vw;
    padding: 0 0 1.2vw;
    font-size: 2.5vw;
  }
}
@media screen and (min-width : 768px) and (max-width : 1023px) {
  .p-about-vision__circle-title {
    margin: 7rem 0 1.2rem;
    padding: 0 0 1.2rem;
    font-size: 2.6rem;
  }
}
@media screen and (max-width : 767px) {
  .p-about-vision__circle-title {
    margin: 3rem 0 0.8rem;
    padding: 0 0 0.8rem;
    font-size: 1.5rem;
  }
}

.p-about-vision__circle-text {
  font-size: 2rem;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.07em;
}
@media screen and (max-width: 1200px) {
  .p-about-vision__circle-text {
    font-size: 1.83vw;
  }
}
@media screen and (min-width : 768px) and (max-width : 1023px) {
  .p-about-vision__circle-text {
    font-size: 1.8rem;
  }
}
@media screen and (max-width : 767px) {
  .p-about-vision__circle-text {
    font-size: 1.1rem;
    line-height: 1.4;
  }
}

.p-about-vision__diagram-cross {
  position: relative;
  width: 70px;
  height: 70px;
}
@media screen and (max-width : 767px) {
  .p-about-vision__diagram-cross {
    width: 30px;
    height: 30px;
  }
}
.p-about-vision__diagram-cross::before, .p-about-vision__diagram-cross::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 1px;
  background-color: #85B231;
}
.p-about-vision__diagram-cross::before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.p-about-vision__diagram-cross::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.p-about-vision__diagram-footer {
  font-size: 1.7rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  line-height: 2;
  color: #3c3c3c;
}
@media screen and (max-width: 1200px) {
  .p-about-vision__diagram-footer {
    font-size: 1.42vw;
  }
}
@media screen and (min-width : 768px) and (max-width : 1023px) {
  .p-about-vision__diagram-footer {
    font-size: 1.6rem;
  }
}
@media screen and (max-width : 767px) {
  .p-about-vision__diagram-footer {
    font-size: 1.4rem;
    letter-spacing: 0.05em;
    line-height: 1.6;
  }
}
.p-about-vision__diagram-footer {
  font-size: 1.8rem;
}
@media screen and (max-width : 767px) {
  .p-about-vision__diagram-footer {
    font-size: 1.2rem;
  }
}

/* -------------------------------------------------
.p-about-service
---------------------------------------------------- */
.p-about-service {
  margin: 0;
  padding: 100px 0;
  background-color: #F5F6F7;
}
@media screen and (max-width: 1200px) {
  .p-about-service {
    padding: 8.33vw 0;
  }
}
@media screen and (min-width : 768px) and (max-width : 1023px) {
  .p-about-service {
    padding: 80px 0;
  }
}
@media screen and (max-width : 767px) {
  .p-about-service {
    padding: 40px 0;
  }
}

.p-about-service__text {
  max-width: 900px;
  margin: 0 0 60px;
  font-size: 1.7rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  line-height: 2;
  color: #3c3c3c;
}
@media screen and (max-width: 1200px) {
  .p-about-service__text {
    font-size: 1.42vw;
  }
}
@media screen and (min-width : 768px) and (max-width : 1023px) {
  .p-about-service__text {
    font-size: 1.6rem;
  }
}
@media screen and (max-width : 767px) {
  .p-about-service__text {
    font-size: 1.4rem;
    letter-spacing: 0.05em;
    line-height: 1.6;
  }
}
@media screen and (max-width : 767px) {
  .p-about-service__text {
    max-width: 100%;
    margin: 0 0 40px;
  }
}

.p-about-service__table-wrapper {
  overflow-x: auto;
}

.p-about-service__table {
  width: 100%;
  min-width: 1075px;
  border-collapse: collapse;
  border: 1px solid #85B231;
  background-color: #F5F6F7;
}
@media screen and (max-width : 767px) {
  .p-about-service__table {
    min-width: 0;
  }
}

.p-about-service__table-row {
  height: 120px;
}
@media screen and (max-width : 767px) {
  .p-about-service__table-row {
    height: auto;
  }
}

.p-about-service__table-row--sub {
  height: 80px;
}
@media screen and (max-width : 767px) {
  .p-about-service__table-row--sub {
    height: auto;
  }
}

.p-about-service__table-row--last {
  height: 130px;
}
@media screen and (max-width : 767px) {
  .p-about-service__table-row--last {
    height: auto;
  }
}

.p-about-service__category {
  width: 180px;
  padding: 20px;
  border: 1px solid #85B231;
  background-color: #F3F7EA;
  font-size: 2.2rem;
  font-weight: 400;
  text-align: center;
  vertical-align: middle;
  letter-spacing: 0.2em;
  color: #3c3c3c;
}
@media screen and (max-width : 767px) {
  .p-about-service__category {
    width: 15%;
    padding: 10px 3px;
    font-size: 1.1rem;
    letter-spacing: 0.1em;
    line-height: 1.4;
  }
}

.p-about-service__table-th {
  width: 170px;
  padding: 20px;
  border: 1px solid #85B231;
  background-color: transparent;
  font-size: 2rem;
  font-weight: 400;
  text-align: center;
  vertical-align: middle;
  letter-spacing: 0.2em;
  color: #3c3c3c;
}
@media screen and (max-width : 767px) {
  .p-about-service__table-th {
    width: 17%;
    padding: 10px 5px;
    font-size: 1rem;
    letter-spacing: 0;
  }
}

.p-about-service__table-th--left {
  width: 895px;
  padding: 20px 20px 20px 65px;
  border: 1px solid #85B231;
  background-color: transparent;
  font-size: 2rem;
  font-weight: 400;
  text-align: left;
  vertical-align: middle;
  letter-spacing: 0.2em;
  color: #3c3c3c;
}
@media screen and (max-width : 767px) {
  .p-about-service__table-th--left {
    width: auto;
    padding: 10px;
    font-size: 1.1rem;
    letter-spacing: 0;
  }
}

.p-about-service__table-th--combined {
  width: 895px;
  padding: 20px 20px 20px 65px;
  border: 1px solid #85B231;
  background-color: transparent;
  font-size: 2rem;
  font-weight: 500;
  text-align: left;
  vertical-align: middle;
  letter-spacing: 0.2em;
  color: #3c3c3c;
}
@media screen and (max-width : 767px) {
  .p-about-service__table-th--combined {
    width: auto;
    padding: 10px;
    font-size: 1.1rem;
    letter-spacing: 0;
  }
}

.p-about-service__table-td {
  width: 725px;
  padding: 20px 20px 20px 62px;
  border: 1px solid #85B231;
  background-color: transparent;
  color: #3c3c3c;
}
@media screen and (max-width: 1200px) {
  .p-about-service__table-td {
    padding: 20px 20px 20px 5.17vw;
  }
}
@media screen and (max-width : 767px) {
  .p-about-service__table-td {
    width: auto;
    padding: 10px;
  }
}

.p-about-service__list {
  display: grid;
  grid-template-columns: repeat(4, auto);
  justify-content: start;
  gap: 5px 30px;
  list-style: none;
  padding: 0;
  margin: 0;
}
@media screen and (max-width: 1200px) {
  .p-about-service__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width : 767px) {
  .p-about-service__list {
    grid-template-columns: 1fr;
    gap: 2px;
  }
}

/* -------------------------------------------------
.p-about-service__list--sp-two-columns（SPのみ2カラム）
---------------------------------------------------- */
@media screen and (max-width : 767px) {
  .p-about-service__list--sp-two-columns {
    grid-template-columns: repeat(2, 1fr);
    gap: 2px 12px;
  }
}

/* -------------------------------------------------
.p-about-service__list--narrow（2行目以降の項目幅を制限）
---------------------------------------------------- */
@media screen and (min-width : 768px) and (max-width : 1023px) {
  .p-about-service__list--narrow {
    grid-template-columns: 150px auto;
    gap: 2px 8px;
    justify-content: start;
  }
}
@media screen and (max-width : 767px) {
  .p-about-service__list--narrow {
    grid-template-columns: 80px auto;
    gap: 2px 8px;
    justify-content: start;
  }
}
@media screen and (min-width : 768px) and (max-width : 1023px) {
  .p-about-service__list--narrow .p-about-service__list-item {
    max-width: 150px;
  }
}
@media screen and (max-width : 767px) {
  .p-about-service__list--narrow .p-about-service__list-item {
    max-width: 70px;
  }
}

.p-about-service__list--slash {
  display: flex;
  flex-wrap: wrap;
  grid-template-columns: none;
  gap: 0;
}
.p-about-service__list--slash .p-about-service__list-item {
  display: flex;
  align-items: center;
  font-size: 2rem;
}
@media screen and (max-width : 767px) {
  .p-about-service__list--slash .p-about-service__list-item {
    font-size: 1.1rem;
  }
}
.p-about-service__list--slash .p-about-service__list-item:not(:last-child)::after {
  content: "／";
  margin: 0 0.5em;
}

.p-about-service__list--ceiling {
  grid-template-columns: 160px 180px auto;
  column-gap: 20px;
}
@media screen and (max-width : 767px) {
  .p-about-service__list--ceiling {
    grid-template-columns: 1fr;
    column-gap: 0;
  }
}
.p-about-service__list--ceiling .p-about-service__list-item:nth-child(1),
.p-about-service__list--ceiling .p-about-service__list-item:nth-child(2),
.p-about-service__list--ceiling .p-about-service__list-item:nth-child(3),
.p-about-service__list--ceiling .p-about-service__list-item:nth-child(4),
.p-about-service__list--ceiling .p-about-service__list-item:nth-child(5),
.p-about-service__list--ceiling .p-about-service__list-item:nth-child(6) {
  white-space: nowrap;
}
@media screen and (max-width : 767px) {
  .p-about-service__list--ceiling .p-about-service__list-item:nth-child(1),
  .p-about-service__list--ceiling .p-about-service__list-item:nth-child(2),
  .p-about-service__list--ceiling .p-about-service__list-item:nth-child(3),
  .p-about-service__list--ceiling .p-about-service__list-item:nth-child(4),
  .p-about-service__list--ceiling .p-about-service__list-item:nth-child(5),
  .p-about-service__list--ceiling .p-about-service__list-item:nth-child(6) {
    white-space: normal;
  }
}
.p-about-service__list--ceiling .p-about-service__list-item:nth-child(4) {
  grid-column: 1;
  grid-row: 2;
}
@media screen and (max-width : 767px) {
  .p-about-service__list--ceiling .p-about-service__list-item:nth-child(4) {
    grid-column: auto;
    grid-row: auto;
  }
}
.p-about-service__list--ceiling .p-about-service__list-item:nth-child(5) {
  grid-column: 2;
  grid-row: 2;
}
@media screen and (max-width : 767px) {
  .p-about-service__list--ceiling .p-about-service__list-item:nth-child(5) {
    grid-column: auto;
    grid-row: auto;
  }
}
.p-about-service__list--ceiling .p-about-service__list-item:nth-child(6) {
  grid-column: 3;
  grid-row: 2;
}
@media screen and (max-width : 767px) {
  .p-about-service__list--ceiling .p-about-service__list-item:nth-child(6) {
    grid-column: auto;
    grid-row: auto;
  }
}
.p-about-service__list--ceiling .p-about-service__list-item:nth-child(7) {
  grid-column: 1;
  grid-row: 3;
  white-space: nowrap;
}
@media screen and (max-width : 767px) {
  .p-about-service__list--ceiling .p-about-service__list-item:nth-child(7) {
    grid-column: 1/-1;
    grid-row: auto;
    white-space: normal;
  }
}

/* -------------------------------------------------
.p-about-service__list--ceiling.p-about-service__list--sp-two-columns（SPのみ2カラム）
---------------------------------------------------- */
@media screen and (max-width : 767px) {
  .p-about-service__list--ceiling.p-about-service__list--sp-two-columns {
    grid-template-columns: repeat(2, 1fr);
    gap: 2px 12px;
  }
}

.p-about-service__list-item {
  font-size: 1.7rem;
  font-weight: 400;
  text-align: left;
  letter-spacing: 0.2em;
  line-height: 1.2;
}
@media screen and (max-width : 767px) {
  .p-about-service__list-item {
    font-size: 1rem;
    letter-spacing: 0;
  }
}

.p-about-service__table-td--other {
  padding: 20px 20px 20px 65px;
  font-size: 2rem;
  text-align: left;
  letter-spacing: 0.2em;
  line-height: 1.7;
}
@media screen and (max-width : 767px) {
  .p-about-service__table-td--other {
    padding: 10px;
    font-size: 1.1rem;
    letter-spacing: 0;
  }
}

/* -------------------------------------------------
.p-about-company
---------------------------------------------------- */
.p-about-company {
  margin: 0;
  padding: 100px 0 50px;
}
@media screen and (max-width: 1200px) {
  .p-about-company {
    padding: 8.33vw 0 4.17vw;
  }
}
@media screen and (min-width : 768px) and (max-width : 1023px) {
  .p-about-company {
    padding: 80px 0 40px;
  }
}
@media screen and (max-width : 767px) {
  .p-about-company {
    padding: 60px 0 30px;
  }
}

.p-about-company__content {
  width: 90%;
  max-width: 1280px;
  margin: 100px auto 0;
}
@media screen and (max-width: 1200px) {
  .p-about-company__content {
    margin: 8.33vw auto 0;
  }
}
@media screen and (max-width : 767px) {
  .p-about-company__content {
    margin: 3rem auto 0;
  }
}

.p-about-company__flex {
  display: flex;
  justify-content: flex-start;
  gap: 100px;
}
@media screen and (min-width : 768px) and (max-width : 1023px) {
  .p-about-company__flex {
    flex-direction: column;
    gap: 40px;
  }
}
@media screen and (max-width : 767px) {
  .p-about-company__flex {
    flex-direction: column;
    gap: 15px;
  }
}

/* -------------------------------------------------
.p-about-company__label
---------------------------------------------------- */
.p-about-company__label {
  position: relative;
  margin: 0 0 14px;
  font-size: 1.9rem;
  line-height: 1;
  color: #3c3c3c;
}
@media screen and (max-width: 1200px) {
  .p-about-company__label {
    margin: 0 0 1.17vw;
    font-size: 1.58vw;
  }
}
@media screen and (max-width : 767px) {
  .p-about-company__label {
    width: 100px;
    margin: 0;
    font-size: 1.2rem;
    letter-spacing: 0.1em;
    line-height: 1.6;
    flex-shrink: 0;
  }
}
.p-about-company__label::after {
  content: "";
  display: block;
  width: min(560px, 100%);
  height: 1px;
  margin: 14px 0 0;
  background-color: #85B231;
}
@media screen and (max-width: 1200px) {
  .p-about-company__label::after {
    margin: 1.17vw 0 0;
  }
}
@media screen and (max-width : 767px) {
  .p-about-company__label::after {
    display: none;
  }
}
.p-about-company__sub .p-about-company__label, .p-about-company__extra .p-about-company__label {
  margin: 0 0 18px;
}
@media screen and (max-width: 1200px) {
  .p-about-company__sub .p-about-company__label, .p-about-company__extra .p-about-company__label {
    margin: 0 0 1.5vw;
  }
}
@media screen and (max-width : 767px) {
  .p-about-company__sub .p-about-company__label, .p-about-company__extra .p-about-company__label {
    margin: 0;
  }
}
.p-about-company__sub .p-about-company__label::after, .p-about-company__extra .p-about-company__label::after {
  margin: 18px 0 0;
}
@media screen and (max-width: 1200px) {
  .p-about-company__sub .p-about-company__label::after, .p-about-company__extra .p-about-company__label::after {
    margin: 1.5vw 0 0;
  }
}
@media screen and (max-width : 767px) {
  .p-about-company__affiliates .p-about-company__label {
    width: 100px;
    margin: 0;
    flex-shrink: 0;
  }
}

.p-about-company__label--sub {
  font-size: 1.9rem;
  letter-spacing: 0.1em;
  line-height: 1.79;
  color: #3c3c3c;
}
@media screen and (max-width: 1200px) {
  .p-about-company__label--sub {
    font-size: 1.58vw;
    line-height: 1.79;
  }
}
@media screen and (max-width : 767px) {
  .p-about-company__label--sub {
    width: 55px;
    font-size: 1.2rem;
    line-height: 1.6;
    flex-shrink: 0;
  }
}

.p-about-company__value {
  margin: 14px 0 0;
  font-size: 1.9rem;
  letter-spacing: 0.1em;
  line-height: 1.79;
  color: #3c3c3c;
}
@media screen and (max-width: 1200px) {
  .p-about-company__value {
    margin: 1.17vw 0 0;
    font-size: 1.58vw;
    line-height: 1.79;
  }
}
@media screen and (max-width : 767px) {
  .p-about-company__value {
    margin: 0;
    font-size: 1.2rem;
    line-height: 1.6;
    flex: 1;
  }
}
.p-about-company__extra-item .p-about-company__value {
  margin: 18px 0 0;
  line-height: 2;
}
@media screen and (max-width: 1200px) {
  .p-about-company__extra-item .p-about-company__value {
    margin: 1.5vw 0 0;
    line-height: 2;
  }
}
@media screen and (max-width : 767px) {
  .p-about-company__extra-item .p-about-company__value {
    margin: 0;
    line-height: 1.6;
  }
}
.p-about-company__value.p-about-company__value--list {
  display: block;
}
.p-about-company__value.p-about-company__value--list .p-about-company__value-item {
  display: inline;
}
.p-about-company__value.p-about-company__value--list .p-about-company__value-item + .p-about-company__value-item::before {
  content: "、";
}
@media screen and (max-width : 767px) {
  .p-about-company__value.p-about-company__value--list {
    display: flex;
    flex-direction: column;
    gap: 0;
    text-align: left;
    line-height: 1.6;
  }
  .p-about-company__value.p-about-company__value--list .p-about-company__value-item {
    display: block;
  }
  .p-about-company__value.p-about-company__value--list .p-about-company__value-item + .p-about-company__value-item::before {
    content: none;
  }
}
.p-about-company__value.p-about-company__value--list .p-about-company__value-note {
  margin: 0.5em 0 0;
}
@media screen and (max-width : 767px) {
  .p-about-company__value.p-about-company__value--list .p-about-company__value-note {
    margin: 0.5rem 0 0;
  }
}
.p-about-company__affiliate-row .p-about-company__value {
  margin: 0;
  line-height: 1.79;
}
@media screen and (max-width: 1200px) {
  .p-about-company__affiliate-row .p-about-company__value {
    line-height: 1.79;
  }
}
@media screen and (max-width : 767px) {
  .p-about-company__affiliate-row .p-about-company__value {
    line-height: 1.6;
    font-size: 1.1rem;
  }
}

.p-about-company__value--bold {
  margin: 0 0 8px;
  font-size: 1.9rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.1em;
  color: #3c3c3c;
}
@media screen and (max-width: 1200px) {
  .p-about-company__value--bold {
    margin: 0 0 0.67vw;
    font-size: 1.58vw;
  }
}
@media screen and (max-width : 767px) {
  .p-about-company__value--bold {
    margin: 0 0 1rem;
    font-size: 1.3rem;
  }
}

.c-link-email {
  text-decoration: none;
  font-weight: inherit;
  color: inherit;
  transition: color 0.3s ease;
}
.c-link-email:hover {
  color: #85B231;
}

/* -------------------------------------------------
.p-about-company__main
---------------------------------------------------- */
.p-about-company__main {
  width: 580px;
}
@media screen and (max-width: 1200px) {
  .p-about-company__main {
    width: 42.2vw;
  }
}
@media screen and (min-width : 768px) and (max-width : 1023px) {
  .p-about-company__main {
    width: 100%;
  }
}
@media screen and (max-width : 767px) {
  .p-about-company__main {
    width: 100%;
  }
}

.p-about-company__list {
  display: flex;
  flex-direction: column;
  margin: 0;
  padding: 0;
}

.p-about-company__item {
  margin: 0 0 62px;
}
@media screen and (max-width: 1200px) {
  .p-about-company__item {
    margin: 0 0 5.17vw;
  }
}
@media screen and (max-width : 767px) {
  .p-about-company__item {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin: 0;
    padding: 15px 0;
    border-top: 1px solid #85B231;
  }
  .p-about-company__item:first-child {
    border-top: none;
  }
  .p-about-company__item:last-child {
    border-bottom: 1px solid #85B231;
  }
}
.p-about-company__item:last-child {
  margin: 0;
}

/* -------------------------------------------------
.p-about-company__sub
---------------------------------------------------- */
.p-about-company__sub {
  width: 560px;
}
@media screen and (max-width: 1200px) {
  .p-about-company__sub {
    width: 42.2vw;
  }
}
@media screen and (min-width : 768px) and (max-width : 1023px) {
  .p-about-company__sub {
    width: 100%;
  }
}
@media screen and (max-width : 767px) {
  .p-about-company__sub {
    width: 100%;
  }
}

/* -------------------------------------------------
.p-about-company__affiliates
---------------------------------------------------- */
.p-about-company__affiliates {
  margin: 0 0 62px;
  padding: 0;
}
@media screen and (max-width: 1200px) {
  .p-about-company__affiliates {
    margin: 0 0 5.17vw;
  }
}
@media screen and (max-width : 767px) {
  .p-about-company__affiliates {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    width: 100%;
    margin: 0;
    padding: 15px 0;
    border-bottom: 1px solid #85B231;
  }
}

.p-about-company__affiliate-list {
  margin: 0;
  padding: 0;
  list-style: none;
}
@media screen and (max-width : 767px) {
  .p-about-company__affiliate-list {
    flex: 1;
  }
}

.p-about-company__affiliate-item {
  margin: 0 0 44px;
}
@media screen and (max-width: 1200px) {
  .p-about-company__affiliate-item {
    margin: 0 0 3.67vw;
  }
}
@media screen and (max-width : 767px) {
  .p-about-company__affiliate-item {
    margin: 0 0 1.5rem;
    padding: 0;
  }
  .p-about-company__affiliate-item:last-child {
    margin: 0;
  }
}
.p-about-company__affiliate-item:last-child {
  margin: 0;
}

.p-about-company__affiliate-info {
  margin: 0;
}

.p-about-company__affiliate-row {
  display: flex;
  gap: 10px;
}
@media screen and (max-width : 767px) {
  .p-about-company__affiliate-row {
    gap: 0;
    margin: 0 0 0.2rem;
  }
  .p-about-company__affiliate-row:last-child {
    margin: 0;
  }
}

/* -------------------------------------------------
.p-about-company__extra
---------------------------------------------------- */
.p-about-company__extra {
  margin: 0;
}

.p-about-company__extra-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.p-about-company__extra-item {
  margin: 0 0 62px;
}
@media screen and (max-width: 1200px) {
  .p-about-company__extra-item {
    margin: 0 0 5.17vw;
  }
}
@media screen and (max-width : 767px) {
  .p-about-company__extra-item {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin: 0;
    padding: 15px 0;
    border-top: 1px solid #85B231;
  }
  .p-about-company__extra-item:first-child {
    border-top: none;
  }
  .p-about-company__extra-item:last-child {
    border-bottom: 1px solid #85B231;
  }
}
.p-about-company__extra-item:nth-child(3) {
  margin: 0 0 100px;
}
@media screen and (max-width: 1200px) {
  .p-about-company__extra-item:nth-child(3) {
    margin: 0 0 8.33vw;
  }
}
@media screen and (max-width : 767px) {
  .p-about-company__extra-item:nth-child(3) {
    margin: 0;
  }
}
.p-about-company__extra-item:last-child {
  margin: 0;
}

/* -------------------------------------------------
.c-link-map
---------------------------------------------------- */
.c-link-map {
  display: inline-block;
  margin: 0 0 0 10px;
  font-size: 1.9rem;
  font-weight: 500;
  color: #85B231;
  text-decoration: none;
  transition: color 0.3s;
}
@media screen and (max-width: 1200px) {
  .c-link-map {
    margin: 0 0 0 0.83vw;
    font-size: 1.58vw;
  }
}
@media screen and (max-width : 767px) {
  .c-link-map {
    font-size: 1.2rem;
  }
}
.c-link-map:hover {
  color: rgb(103.1189427313, 138.0088105727, 37.9911894273);
  text-decoration: underline;
}

/* -------------------------------------------------
.p-about-history
---------------------------------------------------- */
.p-about-section.p-about-history {
  margin: 0;
  padding: 50px 0;
}
@media screen and (max-width: 1200px) {
  .p-about-section.p-about-history {
    margin: 0;
    padding: 4.17vw 0;
  }
}
@media screen and (min-width : 768px) and (max-width : 1023px) {
  .p-about-section.p-about-history {
    margin: 0;
    padding: 40px 0;
  }
}
@media screen and (max-width : 767px) {
  .p-about-section.p-about-history {
    margin: 0;
    padding: 30px 0;
  }
}

.p-about-history__banner {
  margin: 60px 0 0;
  display: flex;
  justify-content: center;
}
@media screen and (max-width : 767px) {
  .p-about-history__banner {
    margin: 0;
  }
}

.p-about-history__link {
  position: relative;
  display: block;
  width: 900px;
  height: 300px;
  overflow: hidden;
  text-decoration: none;
}
@media screen and (min-width : 768px) and (max-width : 1023px) {
  .p-about-history__link {
    width: 100%;
    height: 250px;
  }
}
@media screen and (max-width : 767px) {
  .p-about-history__link {
    width: 100%;
    height: 140px;
  }
}
.p-about-history__link:hover .p-about-history__bg {
  transform: scale(1.05);
}
.p-about-history__link:hover .p-about-history__arrow {
  transform: translateX(10px);
}

.p-about-history__bg {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.p-about-history__bg::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
}

.p-about-history__bg-item {
  flex: 0 0 300px;
  width: 300px;
  height: 300px;
  overflow: hidden;
}
@media screen and (min-width : 768px) and (max-width : 1023px) {
  .p-about-history__bg-item {
    flex: 1;
    width: auto;
    height: 100%;
  }
}
@media screen and (max-width : 767px) {
  .p-about-history__bg-item {
    flex: 1;
    width: auto;
    height: 100%;
  }
}
.p-about-history__bg-item:nth-child(2) .p-about-history__bg-img, .p-about-history__bg-item:nth-child(3) .p-about-history__bg-img {
  transform: scale(1.15);
}

.p-about-history__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.p-about-history__content {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  text-align: center;
  color: #fff;
  pointer-events: none;
}

.p-about-history__title {
  margin: 0 -0.3em 0 0;
  font-size: 4rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  line-height: 1;
}
@media screen and (max-width : 767px) {
  .p-about-history__title {
    font-size: 2.4rem;
  }
}

.p-about-history__en {
  margin: 15px -0.4em 0 0;
  font-size: 2rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
}
@media screen and (max-width : 767px) {
  .p-about-history__en {
    margin: 5px -0.4em 0 0;
    font-size: 1.4rem;
  }
}

.p-about-history__arrow {
  position: relative;
  width: 80px;
  height: 1px;
  margin: 30px 0 0;
  background-color: #fff;
  transition: transform 0.3s ease;
}
.p-about-history__arrow::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 10px;
  height: 1px;
  background-color: #fff;
  transform: rotate(45deg);
  transform-origin: right center;
}
@media screen and (max-width : 767px) {
  .p-about-history__arrow {
    width: 50px;
    margin: 20px 0 0;
  }
  .p-about-history__arrow::after {
    width: 8px;
  }
}

/* -------------------------------------------------
.p-about-access
---------------------------------------------------- */
.p-about-access {
  width: 100%;
  margin: 0;
  padding: 50px 0 40px;
}
@media screen and (max-width: 1200px) {
  .p-about-access {
    padding: 4.17vw 0 8.33vw;
  }
}
@media screen and (min-width : 768px) and (max-width : 1023px) {
  .p-about-access {
    padding: 40px 0 80px;
  }
}
@media screen and (max-width : 767px) {
  .p-about-access {
    padding: 30px 0 0;
  }
}

.p-about-access__content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
}
@media screen and (max-width: 1200px) {
  .p-about-access__content {
    gap: 5vw;
  }
}
@media screen and (min-width : 768px) and (max-width : 1023px) {
  .p-about-access__content {
    flex-direction: column;
    gap: 40px;
  }
}
@media screen and (max-width : 767px) {
  .p-about-access__content {
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
  }
}

.p-about-access__left {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width : 767px) {
  .p-about-access__left {
    display: contents;
  }
}

.p-about-access__info {
  flex: 0 0 auto;
}
@media screen and (min-width : 768px) and (max-width : 1023px) {
  .p-about-access__info {
    flex: 0 0 auto;
  }
}
@media screen and (max-width : 767px) {
  .p-about-access__info {
    order: 3;
    width: 100%;
    text-align: left;
  }
}

.p-about-access__header {
  margin: 0 0 4rem;
}
@media screen and (max-width: 1200px) {
  .p-about-access__header {
    margin: 0 0 3.33vw;
  }
}
@media screen and (min-width : 768px) and (max-width : 1023px) {
  .p-about-access__header {
    margin: 0 0 3.5rem;
  }
}
@media screen and (max-width : 767px) {
  .p-about-access__header {
    order: 1;
    margin: 0;
    text-align: left;
  }
}

.p-about-access__title-en {
  margin: 0;
  font-family: "Oswald", sans-serif;
  font-size: 6rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.38;
  color: #85B231;
}
@media screen and (min-width : 768px) and (max-width : 1023px) {
  .p-about-access__title-en {
    font-size: 4rem;
    line-height: 1.38;
  }
}
@media screen and (max-width : 767px) {
  .p-about-access__title-en {
    font-size: 2.8rem;
    line-height: 1.32;
  }
}
.p-about-access__title-en {
  font-size: 6rem;
  letter-spacing: 0.1em;
  line-height: 1;
  color: #85B231;
}
@media screen and (max-width: 1200px) {
  .p-about-access__title-en {
    font-size: 5vw;
  }
}
@media screen and (min-width : 768px) and (max-width : 1023px) {
  .p-about-access__title-en {
    font-size: 4.5rem;
  }
}
@media screen and (max-width : 767px) {
  .p-about-access__title-en {
    font-size: 4rem;
    text-align: left;
  }
}
@media screen and (max-width : 767px) {
  .p-about-access__title-en {
    margin: 0 0 5px;
  }
}

.p-about-access__title-ja {
  font-size: 2.2rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  margin: 2rem 0 0;
  color: #3c3c3c;
}
@media screen and (max-width: 1200px) {
  .p-about-access__title-ja {
    margin: 1.6vw 0 0;
    font-size: 2.83vw;
  }
}
@media screen and (min-width : 768px) and (max-width : 1023px) {
  .p-about-access__title-ja {
    margin: 1.6rem 0 0;
    font-size: 3rem;
  }
}
@media screen and (max-width : 767px) {
  .p-about-access__title-ja {
    margin: 1.4rem 0 0;
    font-size: 2.8rem;
    text-align: left;
  }
}
@media screen and (max-width : 767px) {
  .p-about-access__title-ja {
    font-size: 1.4rem;
    margin: 0;
    color: #3c3c3c;
  }
}

.p-about-access__zip {
  margin: 0 0 1.2rem;
  font-size: 1.9rem;
  letter-spacing: 0.1em;
  line-height: 1;
  color: #3c3c3c;
}
@media screen and (max-width: 1200px) {
  .p-about-access__zip {
    margin: 0 0 1vw;
    font-size: 1.58vw;
  }
}
@media screen and (max-width : 767px) {
  .p-about-access__zip {
    font-size: 1.7rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    line-height: 2;
    color: #3c3c3c;
    margin: 0;
  }
}
@media screen and (max-width : 767px) and (max-width: 1200px) {
  .p-about-access__zip {
    font-size: 1.42vw;
  }
}
@media screen and (max-width : 767px) and (min-width : 768px) and (max-width : 1023px) {
  .p-about-access__zip {
    font-size: 1.6rem;
  }
}
@media screen and (max-width : 767px) and (max-width : 767px) {
  .p-about-access__zip {
    font-size: 1.4rem;
    letter-spacing: 0.05em;
    line-height: 1.6;
  }
}

.p-about-access__address {
  margin: 0 0 1.2rem;
  font-size: 1.9rem;
  letter-spacing: 0.1em;
  line-height: 1.2;
  color: #3c3c3c;
}
@media screen and (max-width: 1200px) {
  .p-about-access__address {
    margin: 0 0 1vw;
    font-size: 1.58vw;
  }
}
@media screen and (max-width : 767px) {
  .p-about-access__address {
    font-size: 1.7rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    line-height: 2;
    color: #3c3c3c;
    margin: 0;
  }
}
@media screen and (max-width : 767px) and (max-width: 1200px) {
  .p-about-access__address {
    font-size: 1.42vw;
  }
}
@media screen and (max-width : 767px) and (min-width : 768px) and (max-width : 1023px) {
  .p-about-access__address {
    font-size: 1.6rem;
  }
}
@media screen and (max-width : 767px) and (max-width : 767px) {
  .p-about-access__address {
    font-size: 1.4rem;
    letter-spacing: 0.05em;
    line-height: 1.6;
  }
}

.p-about-access__tel {
  font-size: 1.9rem;
  letter-spacing: 0.1em;
  line-height: 1;
  color: #3c3c3c;
}
@media screen and (max-width: 1200px) {
  .p-about-access__tel {
    font-size: 1.58vw;
  }
}
@media screen and (max-width : 767px) {
  .p-about-access__tel {
    font-size: 1.7rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    line-height: 2;
    color: #3c3c3c;
  }
}
@media screen and (max-width : 767px) and (max-width: 1200px) {
  .p-about-access__tel {
    font-size: 1.42vw;
  }
}
@media screen and (max-width : 767px) and (min-width : 768px) and (max-width : 1023px) {
  .p-about-access__tel {
    font-size: 1.6rem;
  }
}
@media screen and (max-width : 767px) and (max-width : 767px) {
  .p-about-access__tel {
    font-size: 1.4rem;
    letter-spacing: 0.05em;
    line-height: 1.6;
  }
}

.p-about-access__map {
  flex: 0 0 auto;
  width: 500px;
  height: 340px;
  max-width: 100%;
  overflow: hidden;
}
@media screen and (max-width: 1200px) {
  .p-about-access__map {
    width: 41.67vw;
    max-width: 500px;
    height: 28.33vw;
  }
}
@media screen and (min-width : 768px) and (max-width : 1023px) {
  .p-about-access__map {
    width: 100%;
    max-width: 500px;
    height: auto;
    aspect-ratio: 500/340;
  }
}
@media screen and (max-width : 767px) {
  .p-about-access__map {
    order: 2;
    width: 100%;
    max-width: 500px;
    height: auto;
    aspect-ratio: 500/340;
  }
}

.p-about-access__map-img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}
@media screen and (min-width : 768px) and (max-width : 1023px) {
  .p-about-access__map-img {
    width: 100%;
    height: auto;
  }
}
@media screen and (max-width : 767px) {
  .p-about-access__map-img {
    width: 100%;
    height: auto;
  }
}

/* ===============================================
style.scss
================================================ */
/* ===============================================
_header.scss
================================================ */
/* ===============================================
_history.scss
================================================ */
/* -------------------------------------------------
.p-history
---------------------------------------------------- */
.p-history {
  width: 100%;
  padding: 0 0 100px;
}
@media screen and (max-width : 767px) {
  .p-history {
    padding: 40px 0 0;
  }
}

.p-history__inner {
  max-width: 1280px;
  width: 90%;
  margin: 0 auto;
  padding: 78px 40px 0;
}
@media screen and (min-width : 768px) and (max-width : 1023px) {
  .p-history__inner {
    width: 100%;
    max-width: 100%;
    padding: 78px 45px 0;
  }
}
@media screen and (max-width : 767px) {
  .p-history__inner {
    width: 100%;
    padding: 20px 15px 0;
  }
}

/* -------------------------------------------------
.p-history__nav
---------------------------------------------------- */
.p-history__nav {
  margin: 0 0 80px;
}
@media screen and (max-width : 767px) {
  .p-history__nav {
    margin: 0 0 40px;
  }
}

.p-history__nav-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}
@media screen and (max-width : 767px) {
  .p-history__nav-list {
    gap: 10px;
  }
}

.p-history__nav-item {
  width: auto;
  min-width: 0;
}
@media screen and (max-width : 767px) {
  .p-history__nav-item {
    flex: 1 1 calc(50% - 5px);
  }
}

.p-history__nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 255px;
  height: 65px;
  padding: 0;
  font-size: 19px;
  font-weight: 400;
  line-height: 1.3;
  text-align: center;
  text-decoration: none;
  letter-spacing: 0.16em;
  color: #85B231;
  background-color: #fff;
  border: 1px solid #85B231;
  border-radius: 0;
  transition: all 0.3s;
}
@media screen and (max-width : 767px) {
  .p-history__nav-link {
    width: 100%;
    height: auto;
    padding: 12px 10px;
    font-size: 1.2rem;
    letter-spacing: 0.1em;
  }
}
.p-history__nav-link:hover {
  background-color: rgba(133, 178, 49, 0.1);
}
.p-history__nav-link.is-active {
  color: #fff;
  background-color: #85B231;
  border-color: #85B231;
}
.p-history__nav-link.is-active:hover {
  background-color: rgb(103.1189427313, 138.0088105727, 37.9911894273);
}

/* -------------------------------------------------
.p-history__timeline
---------------------------------------------------- */
.p-history__timeline {
  position: relative;
  width: 100%;
  margin: 126px 0 0;
}
@media screen and (max-width : 767px) {
  .p-history__timeline {
    margin: 40px 0 0;
  }
}
.p-history__timeline::before {
  position: absolute;
  top: var(--border-top, 0);
  left: var(--border-left, 178px);
  z-index: 0;
  width: 1px;
  height: var(--border-height, 100%);
  margin: 0 0 0 -0.5px;
  background-color: #9D9D9D;
  content: "";
}
@media screen and (max-width : 767px) {
  .p-history__timeline::before {
    display: none;
  }
}

.p-history__era {
  margin: 0;
}

.p-history__timeline-list {
  position: relative;
  margin: 0;
  padding: 0;
  list-style: none;
}
@media screen and (max-width : 767px) {
  .p-history__timeline-list {
    margin: 0 0 50px;
  }
}

.p-history__timeline-item {
  position: relative;
  display: flex;
  align-items: flex-start;
  height: 135px;
  margin: 0;
  padding: 0;
}
@media screen and (max-width : 767px) {
  .p-history__timeline-item {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    height: auto;
    margin: 0 0 40px;
    gap: 40px;
  }
}
.p-history__timeline-item::before {
  position: absolute;
  top: var(--dot-top, 50%);
  left: var(--dot-left, 178px);
  z-index: 2;
  transform: translateY(-50%);
  width: 15px;
  height: 15px;
  margin: 0 0 0 -7.5px;
  background-color: #85B231;
  border-radius: 50%;
  content: "";
}
@media screen and (max-width : 767px) {
  .p-history__timeline-item::before {
    top: 10px;
    left: 110px;
    transform: none;
    width: 13px;
    height: 13px;
    margin: 0 0 0 -6.5px;
  }
}
.p-history__timeline-item::after {
  display: none;
}
@media screen and (max-width : 767px) {
  .p-history__timeline-item::after {
    position: absolute;
    top: 10px;
    left: 110px;
    z-index: 1;
    display: block;
    width: 1px;
    height: calc(100% + 40px);
    margin: 0 0 0 -0.5px;
    background-color: #9D9D9D;
    content: "";
  }
}
@media screen and (max-width : 767px) {
  .p-history__timeline-item:last-child {
    margin: 0;
  }
}
@media screen and (max-width : 767px) {
  .p-history__timeline-item:first-child::before {
    margin: 0 0 0 -6.5px;
  }
}

@media screen and (max-width : 767px) {
  .p-history__era:last-child .p-history__timeline-item:last-child::after {
    display: none;
  }
}

.p-history__timeline-year {
  position: absolute;
  top: 50%;
  left: 0;
  z-index: 0;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: auto;
  padding: 0;
  text-align: left;
}
@media screen and (max-width : 767px) {
  .p-history__timeline-year {
    position: relative;
    z-index: 0;
    transform: none;
    flex: 0 0 100px;
    width: 100px;
    margin: 0;
    padding: 5px 0 0;
    text-align: left;
  }
}

.p-history__timeline-year-ad {
  display: flex;
  align-items: baseline;
  margin: 0 0 14px;
  line-height: 1.2;
  color: #85B231;
}
@media screen and (max-width : 767px) {
  .p-history__timeline-year-ad {
    margin: 0 0 10px;
  }
}

.p-history__timeline-year-number {
  font-size: 47px;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: #85B231;
}
@media screen and (min-width : 768px) and (max-width : 1023px) {
  .p-history__timeline-year-number {
    font-size: 2.4rem;
  }
}
@media screen and (max-width : 767px) {
  .p-history__timeline-year-number {
    font-size: 2rem;
  }
}

.p-history__timeline-year-unit {
  margin: 0 0 0 16px;
  font-size: 25px;
  color: #85B231;
}
@media screen and (min-width : 768px) and (max-width : 1023px) {
  .p-history__timeline-year-unit {
    font-size: 1.8rem;
  }
}
@media screen and (max-width : 767px) {
  .p-history__timeline-year-unit {
    margin: 0 0 0 2px;
    font-size: 1.4rem;
  }
}

.p-history__timeline-year-jp {
  display: block;
  font-size: 19px;
  line-height: 1.4;
  text-align: left;
  letter-spacing: 0.16em;
  color: #3c3c3c;
}
@media screen and (min-width : 768px) and (max-width : 1023px) {
  .p-history__timeline-year-jp {
    font-size: 1.3rem;
  }
}
@media screen and (max-width : 767px) {
  .p-history__timeline-year-jp {
    font-size: 1.1rem;
  }
}

.p-history__timeline-content {
  padding: calc(var(--dot-top, 50%) - 15px) 0 0 calc(var(--dot-left, 178px) + 50px);
}
@media screen and (max-width : 767px) {
  .p-history__timeline-content {
    flex: 1;
    width: auto;
    margin: 0;
    padding: 5px 0 0;
    text-align: left;
  }
}

.p-history__timeline-text {
  margin: 0;
  font-size: 1.7rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  line-height: 2;
  color: #3c3c3c;
}
@media screen and (max-width: 1200px) {
  .p-history__timeline-text {
    font-size: 1.42vw;
  }
}
@media screen and (min-width : 768px) and (max-width : 1023px) {
  .p-history__timeline-text {
    font-size: 1.6rem;
  }
}
@media screen and (max-width : 767px) {
  .p-history__timeline-text {
    font-size: 1.4rem;
    letter-spacing: 0.05em;
    line-height: 1.6;
  }
}
@media screen and (max-width : 767px) {
  .p-history__timeline-text {
    font-size: 1.3rem;
    line-height: 1.8;
  }
}

/* ===============================================
style.scss
================================================ */
/* ===============================================
_header.scss
================================================ */
/* ===============================================
_privacy.scss
================================================ */
/* -------------------------------------------------
.p-privacy-policy
---------------------------------------------------- */
.p-privacy-policy {
  width: 100%;
  padding: 60px 0 100px;
  background-color: #fff;
}
@media screen and (max-width : 767px) {
  .p-privacy-policy {
    padding: 40px 0 0;
  }
}

/* -------------------------------------------------
.p-privacy-policy__inner
---------------------------------------------------- */
.p-privacy-policy__inner {
  width: 90%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}
@media screen and (min-width : 768px) and (max-width : 1023px) {
  .p-privacy-policy__inner {
    width: 100%;
    max-width: 100%;
    padding: 0 45px;
  }
}
@media screen and (max-width : 767px) {
  .p-privacy-policy__inner {
    width: 100%;
    padding: 0 15px;
  }
}

/* -------------------------------------------------
.p-privacy-policy__title-en
---------------------------------------------------- */
.p-privacy-policy__title-en {
  margin: 0;
  font-family: "Oswald", sans-serif;
  font-size: 6rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.38;
  color: #85B231;
}
@media screen and (min-width : 768px) and (max-width : 1023px) {
  .p-privacy-policy__title-en {
    font-size: 4rem;
    line-height: 1.38;
  }
}
@media screen and (max-width : 767px) {
  .p-privacy-policy__title-en {
    font-size: 2.8rem;
    line-height: 1.32;
  }
}
.p-privacy-policy__title-en {
  margin: 0 0 10px;
}
@media screen and (max-width : 767px) {
  .p-privacy-policy__title-en {
    margin: 0 0 5px;
  }
}

/* -------------------------------------------------
.p-privacy-policy__title-ja
---------------------------------------------------- */
.p-privacy-policy__title-ja {
  font-size: 2.2rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  margin: 2.4rem 0 40px;
  color: #3c3c3c;
}
@media screen and (max-width : 767px) {
  .p-privacy-policy__title-ja {
    font-size: 1.4rem;
    margin: 0;
    color: #3c3c3c;
  }
}
@media screen and (max-width : 767px) {
  .p-privacy-policy__title-ja {
    margin-bottom: 20px;
  }
}

/* -------------------------------------------------
.p-privacy-policy__content
---------------------------------------------------- */
.p-privacy-policy__content {
  width: 100%;
  font-weight: 500;
}

/* -------------------------------------------------
.p-privacy-policy__text
---------------------------------------------------- */
.p-privacy-policy__text {
  margin: 0 0 30px;
  font-size: 1.7rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  line-height: 2;
  color: #3c3c3c;
}
@media screen and (max-width: 1200px) {
  .p-privacy-policy__text {
    font-size: 1.42vw;
  }
}
@media screen and (min-width : 768px) and (max-width : 1023px) {
  .p-privacy-policy__text {
    font-size: 1.6rem;
  }
}
@media screen and (max-width : 767px) {
  .p-privacy-policy__text {
    font-size: 1.4rem;
    letter-spacing: 0.05em;
    line-height: 1.6;
  }
}
@media screen and (max-width : 767px) {
  .p-privacy-policy__text {
    margin: 0 0 30px;
  }
}

/* Border共通スタイル */
.p-privacy-policy__text--border {
  margin: 0 0 52px;
  padding: 0 0 52px;
  font-size: 1.7rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  line-height: 2;
  color: #3c3c3c;
}
@media screen and (max-width: 1200px) {
  .p-privacy-policy__text--border {
    font-size: 1.42vw;
  }
}
@media screen and (min-width : 768px) and (max-width : 1023px) {
  .p-privacy-policy__text--border {
    font-size: 1.6rem;
  }
}
@media screen and (max-width : 767px) {
  .p-privacy-policy__text--border {
    font-size: 1.4rem;
    letter-spacing: 0.05em;
    line-height: 1.6;
  }
}
.p-privacy-policy__text--border {
  border-bottom: 1px solid #9D9D9D;
}
@media screen and (max-width : 767px) {
  .p-privacy-policy__text--border {
    margin: 0 0 30px;
    padding: 0 0 40px;
  }
}
.p-privacy-policy__text--border--top {
  margin: 52px 0 0;
  padding: 52px 0 0;
  font-size: 1.7rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  line-height: 2;
  color: #3c3c3c;
}
@media screen and (max-width: 1200px) {
  .p-privacy-policy__text--border--top {
    font-size: 1.42vw;
  }
}
@media screen and (min-width : 768px) and (max-width : 1023px) {
  .p-privacy-policy__text--border--top {
    font-size: 1.6rem;
  }
}
@media screen and (max-width : 767px) {
  .p-privacy-policy__text--border--top {
    font-size: 1.4rem;
    letter-spacing: 0.05em;
    line-height: 1.6;
  }
}
.p-privacy-policy__text--border--top {
  border-bottom: none;
  border-top: 1px solid #9D9D9D;
}
@media screen and (max-width : 767px) {
  .p-privacy-policy__text--border--top {
    margin: 40px 0 0;
    padding: 40px 0 0;
  }
}

/* -------------------------------------------------
.p-privacy-policy__heading
---------------------------------------------------- */
.p-privacy-policy__heading {
  margin: 50px 0 20px;
  font-size: 2rem;
  line-height: 1.6;
  letter-spacing: 0.1em;
  color: #3c3c3c;
}
@media screen and (max-width : 767px) {
  .p-privacy-policy__heading {
    margin: 40px 0 15px;
    font-size: 1.8rem;
    line-height: 1.5;
  }
}

/* -------------------------------------------------
.p-privacy-policy__list
---------------------------------------------------- */
.p-privacy-policy__list {
  margin: 0 0 30px;
  padding: 0;
  list-style: none;
}
.p-privacy-policy__list:last-child {
  margin: 0;
}
@media screen and (max-width : 767px) {
  .p-privacy-policy__list {
    margin: 0 0 25px;
  }
}

/* -------------------------------------------------
.p-privacy-policy__list-item
---------------------------------------------------- */
.p-privacy-policy__list-item {
  position: relative;
  margin: 0;
  padding: 0 0 0 25px;
  font-size: 1.7rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  line-height: 2;
  color: #3c3c3c;
}
@media screen and (max-width: 1200px) {
  .p-privacy-policy__list-item {
    font-size: 1.42vw;
  }
}
@media screen and (min-width : 768px) and (max-width : 1023px) {
  .p-privacy-policy__list-item {
    font-size: 1.6rem;
  }
}
@media screen and (max-width : 767px) {
  .p-privacy-policy__list-item {
    font-size: 1.4rem;
    letter-spacing: 0.05em;
    line-height: 1.6;
  }
}
@media screen and (max-width : 767px) {
  .p-privacy-policy__list-item {
    margin: 0 0 12px;
    padding: 0 0 0 20px;
  }
}
.p-privacy-policy__list-item::before {
  position: absolute;
  top: 0;
  left: 0;
  color: #3c3c3c;
  content: "・";
}

/* -------------------------------------------------
.p-privacy-policy__contact
---------------------------------------------------- */
.p-privacy-policy__contact {
  margin: 60px 0 0;
  padding: 0;
}
@media screen and (max-width : 767px) {
  .p-privacy-policy__contact {
    margin: 50px 0 60px;
    padding: 0;
    text-align: left;
  }
}

/* -------------------------------------------------
.p-privacy-policy__contact-heading
---------------------------------------------------- */
.p-privacy-policy__contact-heading {
  margin: 0 0 8px;
  font-size: 1.8rem;
  line-height: 1.6;
  letter-spacing: 0.1em;
  color: #85B231;
}
@media screen and (max-width : 767px) {
  .p-privacy-policy__contact-heading {
    margin: 0 0 6px;
    font-size: 1.6rem;
    line-height: 1.5;
  }
}

/* -------------------------------------------------
.p-privacy-policy__contact-text
---------------------------------------------------- */
.p-privacy-policy__contact-text {
  margin: 0;
  font-size: 1.7rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  line-height: 2;
  color: #3c3c3c;
}
@media screen and (max-width: 1200px) {
  .p-privacy-policy__contact-text {
    font-size: 1.42vw;
  }
}
@media screen and (min-width : 768px) and (max-width : 1023px) {
  .p-privacy-policy__contact-text {
    font-size: 1.6rem;
  }
}
@media screen and (max-width : 767px) {
  .p-privacy-policy__contact-text {
    font-size: 1.4rem;
    letter-spacing: 0.05em;
    line-height: 1.6;
  }
}
@media screen and (max-width : 767px) {
  .p-privacy-policy__contact-text {
    margin: 0 0 15px;
  }
}

/* ===============================================
style.scss
================================================ */
/* ===============================================
_header.scss
================================================ */
/* ===============================================
_products.scss
================================================ */
/* -------------------------------------------------
.p-products
---------------------------------------------------- */
.p-products {
  width: 100%;
  padding: 60px 0 0;
}
@media screen and (max-width : 767px) {
  .p-products {
    padding: 10px 0 0;
  }
}

.p-products__inner {
  max-width: 1280px;
  width: 90%;
  margin: 0 auto;
}
@media screen and (max-width : 767px) {
  .p-products__inner {
    width: 100%;
    padding: 0 15px;
  }
}

/* -------------------------------------------------
.p-products__title
---------------------------------------------------- */
.p-products__title {
  margin: 6rem 0 2rem;
  font-size: 3.2rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: #3c3c3c;
}
@media screen and (max-width: 1200px) {
  .p-products__title {
    margin: 8.33vw 0 2rem;
    font-size: 2.67vw;
  }
}
@media screen and (min-width : 768px) and (max-width : 1023px) {
  .p-products__title {
    margin: 8rem 0 2rem;
    font-size: 2.8rem;
  }
}
@media screen and (max-width : 767px) {
  .p-products__title {
    margin: 0 0 1rem;
    font-size: 2rem;
  }
}

/* -------------------------------------------------
.p-products__nav
---------------------------------------------------- */
.p-products__nav {
  margin: 0 0 80px;
}
@media screen and (max-width : 767px) {
  .p-products__nav {
    margin: 0 0 35px;
  }
}

.p-products__nav-list {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 2.4rem;
  list-style: none;
  padding: 0;
  margin: 0;
}
@media screen and (max-width: 1200px) {
  .p-products__nav-list {
    gap: 2vw;
  }
}
@media screen and (min-width : 768px) and (max-width : 1023px) {
  .p-products__nav-list {
    gap: 2rem;
  }
}
@media screen and (max-width : 767px) {
  .p-products__nav-list {
    flex-wrap: wrap;
    gap: 0.8rem;
    row-gap: 0.8rem;
  }
}

.p-products__nav-link {
  position: relative;
  font-size: 1.6rem;
  letter-spacing: 0.1em;
  text-decoration: none;
  color: #3c3c3c;
  transition: color 0.3s;
  white-space: nowrap;
}
.p-products__nav-link::before {
  content: "⌵";
  display: inline-block;
  margin: 0 5px 0 0;
  color: #3c3c3c;
  font-weight: bold;
}
@media screen and (max-width : 767px) {
  .p-products__nav-link::before {
    margin: 0 2px 0 0;
  }
}
.p-products__nav-link::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 14px;
  width: calc(100% - 14px);
  height: 1px;
  background-color: #3c3c3c;
}
.p-products__nav-link:hover {
  color: #85B231;
}
.p-products__nav-link:hover::after {
  background-color: #85B231;
}
@media screen and (max-width: 1200px) {
  .p-products__nav-link {
    font-size: 1.33vw;
  }
}
@media screen and (min-width : 768px) and (max-width : 1023px) {
  .p-products__nav-link {
    font-size: 1.5rem;
  }
}
@media screen and (max-width : 767px) {
  .p-products__nav-link {
    font-size: 1.2rem;
    letter-spacing: 0.05em;
  }
}

/* -------------------------------------------------
.p-products__intro
---------------------------------------------------- */
.p-products__intro {
  margin: 80px 0 80px;
}
@media screen and (max-width : 767px) {
  .p-products__intro {
    margin: 0 0 40px;
  }
}

.p-products__intro-text {
  margin: 0 0 2rem;
  font-size: 1.7rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  line-height: 2;
  color: #3c3c3c;
}
@media screen and (max-width: 1200px) {
  .p-products__intro-text {
    font-size: 1.42vw;
  }
}
@media screen and (min-width : 768px) and (max-width : 1023px) {
  .p-products__intro-text {
    font-size: 1.6rem;
  }
}
@media screen and (max-width : 767px) {
  .p-products__intro-text {
    font-size: 1.4rem;
    letter-spacing: 0.05em;
    line-height: 1.6;
  }
}
.p-products__intro-text:last-child {
  margin: 0;
}

.p-products__intro-text--green {
  margin: 0 0 40px;
  font-size: 2.7rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 2.22;
  color: #85B231;
}
@media screen and (max-width: 1200px) {
  .p-products__intro-text--green {
    font-size: 2.25vw;
    line-height: 2.22;
  }
}
@media screen and (min-width : 768px) and (max-width : 1023px) {
  .p-products__intro-text--green {
    font-size: 2rem;
    line-height: 1.8;
  }
}
@media screen and (max-width : 767px) {
  .p-products__intro-text--green {
    font-size: 1.6rem;
    letter-spacing: 0.05em;
    line-height: 1.6;
  }
}
@media screen and (max-width : 767px) {
  .p-products__intro-text--green {
    margin: 0 0 20px;
  }
}

/* -------------------------------------------------
.p-products__category-cards
---------------------------------------------------- */
.p-products__category-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  width: 100vw;
  margin: 0 calc(50% - 50vw) 0;
}
@media screen and (max-width : 767px) {
  .p-products__category-cards {
    grid-template-columns: repeat(2, 1fr);
    margin: 0 calc(50% - 50vw) 0;
  }
}

.p-products__category-card {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.p-products__category-card-link {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
  text-decoration: none;
}

.p-products__category-card-link:hover .p-products__category-card-img {
  transform: scale(1.05);
}

.p-products__category-card-link:hover .p-products__category-card-icon {
  transform: translateX(-50%) translateY(3px);
}

.p-products__category-card-image {
  position: relative;
  width: 100%;
  height: 325px;
  overflow: hidden;
}
@media screen and (max-width : 767px) {
  .p-products__category-card-image {
    height: 180px;
  }
}

.p-products__category-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.p-products__category-card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: 40px 20px;
  background-color: rgba(0, 0, 0, 0.3);
  box-sizing: border-box;
}
@media screen and (max-width : 767px) {
  .p-products__category-card-overlay {
    padding: 30px 15px;
  }
}

.p-products__category-card-content {
  position: absolute;
  top: 47%;
  left: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  transform: translate(-50%, -50%);
  text-align: center;
}

.p-products__category-card-title {
  margin: 0;
  font-size: 1.7rem;
  font-weight: 300;
  letter-spacing: 0.1em;
  line-height: 1.3;
  color: #fff;
}
@media screen and (max-width : 767px) {
  .p-products__category-card-title {
    font-size: 1rem;
  }
}

.p-products__category-card-en {
  margin: 0;
  font-family: "Oswald", sans-serif;
  font-size: 6rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1.3;
  color: #fff;
}
@media screen and (max-width : 767px) {
  .p-products__category-card-en {
    font-size: 2.4rem;
  }
}

.p-products__category-card-ja {
  margin: 0;
  font-size: 1.7rem;
  font-weight: 300;
  letter-spacing: 0.1em;
  line-height: 1.3;
  color: #fff;
}
@media screen and (max-width : 767px) {
  .p-products__category-card-ja {
    font-size: 1.2rem;
  }
}

.p-products__category-card-icon {
  position: absolute;
  bottom: 40px;
  left: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background-color: transparent;
  border: 1px solid #ccc;
  border-radius: 50%;
  transform: translateX(-50%);
  transition: transform 0.3s ease;
}
@media screen and (max-width : 767px) {
  .p-products__category-card-icon {
    bottom: 16px;
    width: 30px;
    height: 30px;
  }
}

.p-products__category-card-arrow {
  display: block;
  font-size: 1.2rem;
  color: #fff;
}
@media screen and (max-width : 767px) {
  .p-products__category-card-arrow {
    font-size: 1rem;
  }
}

/* -------------------------------------------------
.p-products-section
---------------------------------------------------- */
.p-products-section {
  margin: 10rem 0 0;
}
.p-products-section:first-of-type {
  margin: 10rem 0 0;
}
@media screen and (max-width: 1200px) {
  .p-products-section {
    margin: 8.33vw 0 0;
  }
  .p-products-section:first-of-type {
    margin: 8.33vw 0 0;
  }
}
@media screen and (min-width : 768px) and (max-width : 1023px) {
  .p-products-section {
    margin: 8rem 0 0;
  }
  .p-products-section:first-of-type {
    margin: 8rem 0 0;
  }
}
@media screen and (max-width : 767px) {
  .p-products-section {
    margin: 6rem 0 0;
  }
  .p-products-section:first-of-type {
    margin: 6rem 0 0;
  }
}

.p-products-section__header {
  margin: 0 0 4rem;
}
@media screen and (max-width: 1200px) {
  .p-products-section__header {
    margin: 0 0 3.33vw;
  }
}
@media screen and (min-width : 768px) and (max-width : 1023px) {
  .p-products-section__header {
    margin: 0 0 3.5rem;
  }
}
@media screen and (max-width : 767px) {
  .p-products-section__header {
    margin: 0 0 2rem;
  }
}

.p-products-section__title-en {
  margin: 0;
  font-family: "Oswald", sans-serif;
  font-size: 6rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.38;
  color: #85B231;
}
@media screen and (min-width : 768px) and (max-width : 1023px) {
  .p-products-section__title-en {
    font-size: 4rem;
    line-height: 1.38;
  }
}
@media screen and (max-width : 767px) {
  .p-products-section__title-en {
    font-size: 2.8rem;
    line-height: 1.32;
  }
}
@media screen and (max-width : 767px) {
  .p-products-section__title-en {
    margin: 0 0 5px;
  }
}
.p-products-section__title-en {
  font-size: 6rem;
  line-height: 1;
}
@media screen and (max-width: 1200px) {
  .p-products-section__title-en {
    font-size: 5vw;
  }
}
@media screen and (min-width : 768px) and (max-width : 1023px) {
  .p-products-section__title-en {
    font-size: 4.5rem;
  }
}
@media screen and (max-width : 767px) {
  .p-products-section__title-en {
    font-size: 3rem;
  }
}

.p-products-kennie .p-products-section__title-en {
  margin: 0;
  color: #f48324;
}

.p-products-section__title-ja {
  font-size: 2.2rem;
  font-weight: 400;
  letter-spacing: 0.2em;
}
@media screen and (max-width : 767px) {
  .p-products-section__title-ja {
    font-size: 1.4rem;
    margin: 0;
    color: #3c3c3c;
  }
}
.p-products-section__title-ja {
  margin: 0;
  font-size: 2.2rem;
  font-weight: 500;
  color: #3c3c3c;
}
@media screen and (max-width: 1200px) {
  .p-products-section__title-ja {
    margin: 0;
    font-size: 1.83vw;
  }
}
@media screen and (min-width : 768px) and (max-width : 1023px) {
  .p-products-section__title-ja {
    margin: 0;
    font-size: 2rem;
  }
}
@media screen and (max-width : 767px) {
  .p-products-section__title-ja {
    margin: 0;
    font-size: 1.4rem;
  }
}

.p-products-section__title-ja--sub {
  margin: 1rem 0 0;
  font-size: 1.7rem;
  font-weight: 400;
}
@media screen and (max-width : 767px) {
  .p-products-section__title-ja--sub {
    margin: 0.7rem 0 0;
    font-size: 1.5rem;
  }
}

.p-products-kennie .p-products-section__title-ja--lead,
.p-products-nike .p-products-section__title-ja--lead {
  margin: 0 0 22px;
  font-size: 1.9rem;
  font-weight: 400;
}
@media screen and (max-width: 1200px) {
  .p-products-kennie .p-products-section__title-ja--lead,
  .p-products-nike .p-products-section__title-ja--lead {
    margin: 0 0 1.83vw;
    font-size: 1.58vw;
  }
}
@media screen and (min-width : 768px) and (max-width : 1023px) {
  .p-products-kennie .p-products-section__title-ja--lead,
  .p-products-nike .p-products-section__title-ja--lead {
    margin: 0 0 19px;
    font-size: 1.7rem;
  }
}
@media screen and (max-width : 767px) {
  .p-products-kennie .p-products-section__title-ja--lead,
  .p-products-nike .p-products-section__title-ja--lead {
    margin: 0 0 0.7rem;
    font-size: 1.4rem;
  }
}

.p-products-kennie .p-products-section__title-ja--sub,
.p-products-nike .p-products-section__title-ja--sub {
  margin: 22px 0 0;
  font-size: 2.3rem;
  font-weight: 400;
}
@media screen and (max-width: 1200px) {
  .p-products-kennie .p-products-section__title-ja--sub,
  .p-products-nike .p-products-section__title-ja--sub {
    margin: 1.83vw 0 0;
    font-size: 1.92vw;
  }
}
@media screen and (min-width : 768px) and (max-width : 1023px) {
  .p-products-kennie .p-products-section__title-ja--sub,
  .p-products-nike .p-products-section__title-ja--sub {
    margin: 19px 0 0;
    font-size: 2rem;
  }
}
@media screen and (max-width : 767px) {
  .p-products-kennie .p-products-section__title-ja--sub,
  .p-products-nike .p-products-section__title-ja--sub {
    margin: 0.7rem 0 0;
    font-size: 1.4rem;
  }
}

/* -------------------------------------------------
.p-products-kennie
---------------------------------------------------- */
.p-products-section.p-products-kennie {
  position: relative;
  margin: 0;
  padding: 10rem 0;
  background-color: #fef6f0;
}
.p-products-section.p-products-kennie:first-of-type {
  margin: 0;
}
@media screen and (max-width: 1200px) {
  .p-products-section.p-products-kennie {
    margin: 0;
    padding: 8.33vw 0;
  }
  .p-products-section.p-products-kennie:first-of-type {
    margin: 0;
  }
}
@media screen and (min-width : 768px) and (max-width : 1023px) {
  .p-products-section.p-products-kennie {
    margin: 0;
    padding: 8rem 0;
  }
  .p-products-section.p-products-kennie:first-of-type {
    margin: 0;
  }
}
@media screen and (max-width : 767px) {
  .p-products-section.p-products-kennie {
    margin: 0;
    padding: 4rem 0;
  }
  .p-products-section.p-products-kennie:first-of-type {
    margin: 0;
  }
}

.p-products-kennie__nav {
  position: fixed;
  top: 50%;
  right: 40px;
  z-index: 100;
  transform: translateY(-50%);
}
@media screen and (max-width : 767px) {
  .p-products-kennie__nav {
    display: none;
  }
}

.p-products-kennie__nav-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.p-products-kennie__nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  font-size: 1.4rem;
  font-weight: 500;
  color: #3c3c3c;
  text-decoration: none;
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: 50%;
  transition: all 0.3s;
}
.p-products-kennie__nav-link:hover {
  color: #fff;
  background-color: #f48324;
  border-color: #f48324;
}

.p-products-kennie__spec-table-wrapper {
  margin: 0 0 86px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
@media screen and (max-width: 1200px) {
  .p-products-kennie__spec-table-wrapper {
    margin: 0 0 7.17vw;
  }
}
@media screen and (min-width : 768px) and (max-width : 1023px) {
  .p-products-kennie__spec-table-wrapper {
    margin: 0 0 75px;
  }
}
@media screen and (max-width : 767px) {
  .p-products-kennie__spec-table-wrapper {
    margin: 0 0 40px;
    overflow-x: visible;
  }
}

.p-products-kennie__spec-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border: 1px solid #fff;
}
@media screen and (max-width : 767px) {
  .p-products-kennie__spec-table {
    table-layout: auto;
    width: 420px;
    min-width: 420px;
  }
}

.p-products-kennie__spec-tr {
  height: 60px;
}
@media screen and (max-width : 767px) {
  .p-products-kennie__spec-tr {
    height: auto;
  }
}

.p-products-kennie__spec-tr--ss {
  height: 118px;
}
@media screen and (max-width : 767px) {
  .p-products-kennie__spec-tr--ss {
    height: auto;
  }
}

/* ---
KENNIE spec table（SPのみ）：ヘッダー行は固定表示、白部分（tbody）だけ横スクロール
--- */
.p-products-kennie__spec-table-head {
  display: none;
}

.p-products-kennie__spec-table-scroll {
  display: block;
}

@media screen and (max-width : 767px) {
  .p-products-kennie__spec-table-head {
    display: block;
    width: 100%;
    border: 1px solid #fff;
    border-bottom: none;
  }
  .p-products-kennie__spec-table-head-row {
    display: grid;
    grid-template-columns: 150px 1fr;
  }
  .p-products-kennie__spec-table-head-cell {
    padding: 10px;
    font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    line-height: 1.5;
    text-align: center;
    background-color: #f48324;
    color: #fff;
    border-right: 1px solid #fff;
    white-space: nowrap;
  }
  .p-products-kennie__spec-table-head-cell:last-child {
    border-right: none;
  }
  .p-products-kennie__spec-table-head-cell--first {
    position: sticky;
    left: 0;
    z-index: 3;
  }
  .p-products-kennie__spec-table-scroll {
    overflow-x: auto;
    background-color: #fff;
    border: 1px solid #fff;
    border-top: none;
    -webkit-overflow-scrolling: touch;
    position: relative;
  }
  .p-products-kennie__spec-table thead {
    display: none;
  }
  .p-products-kennie__spec-td:not(.p-products-kennie__spec-td--first) {
    min-width: 260px;
  }
}
.p-products-kennie__spec-th {
  padding: 20px;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 20px;
  font-weight: 300;
  letter-spacing: 0.1em;
  line-height: 1.5;
  text-align: center;
  background-color: #f48324;
  color: #fff;
  border: 1px solid #fff;
}
@media screen and (max-width: 1075px) {
  .p-products-kennie__spec-th {
    padding: 15px 10px;
    font-size: 1.6rem;
  }
}
.p-products-kennie__spec-th:first-child {
  width: 280px;
}
@media screen and (max-width : 767px) {
  .p-products-kennie__spec-th:first-child {
    position: sticky;
    left: 0;
    z-index: 3;
    width: 150px;
    min-width: 150px;
  }
}
.p-products-kennie__spec-th:last-child {
  width: 800px;
}
@media screen and (max-width : 767px) {
  .p-products-kennie__spec-th:last-child {
    min-width: 0;
  }
}
@media screen and (max-width : 767px) {
  .p-products-kennie__spec-th {
    padding: 6px;
    font-size: 1.1rem;
  }
}

.p-products-kennie__spec-td {
  padding: 20px 20px 20px 42px;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 20px;
  font-weight: 300;
  letter-spacing: 0.1em;
  line-height: 1.5;
  color: #3c3c3c;
  background-color: #fff;
  border: 1px solid #fde6d3;
}
.p-products-kennie__spec-td:not(.p-products-kennie__spec-td--first) {
  border-left: 1px solid #fff;
}
.p-products-kennie__spec-table tbody tr:first-child .p-products-kennie__spec-td:not(.p-products-kennie__spec-td--first) {
  border-top: 1px solid #fff;
}
@media screen and (max-width: 1075px) {
  .p-products-kennie__spec-td {
    padding: 15px 10px;
    font-size: 1.6rem;
  }
  .p-products-kennie__spec-td:not(.p-products-kennie__spec-td--first) {
    font-size: 1.4rem;
    text-align: left;
  }
}
@media screen and (max-width : 767px) {
  .p-products-kennie__spec-td {
    padding: 12px 10px;
    font-size: 1.1rem;
    letter-spacing: 0.05em;
    line-height: 1.6;
    white-space: nowrap;
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
  }
  .p-products-kennie__spec-td:not(.p-products-kennie__spec-td--first) {
    font-size: 1.1rem;
  }
}

.p-products-kennie__spec-td--first {
  padding: 0 0 0 30px;
  border: 1px solid #fff;
  background-color: #fde6d3;
  font-weight: 400;
  line-height: 1.5;
}
@media screen and (max-width: 1075px) {
  .p-products-kennie__spec-td--first {
    padding: 15px 10px;
  }
}
@media screen and (max-width : 767px) {
  .p-products-kennie__spec-td--first {
    position: sticky;
    left: 0;
    z-index: 2;
    padding: 6px;
    font-size: 1.1rem;
    text-align: left;
    width: 150px;
    min-width: 150px;
    max-width: 150px;
    white-space: normal;
  }
}

.p-products-kennie__spec-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.p-products-kennie__spec-list-item {
  margin: 0 0 0.5rem;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 20px;
  font-weight: 300;
  letter-spacing: 0.1em;
  line-height: 1.2;
}
@media screen and (max-width: 1075px) {
  .p-products-kennie__spec-list-item {
    font-size: 1.4rem;
  }
}
.p-products-kennie__spec-list-item:last-child {
  margin: 0;
}
@media screen and (max-width : 767px) {
  .p-products-kennie__spec-list-item {
    font-size: 1.1rem;
    letter-spacing: 0;
    line-height: 1.6;
  }
}

.p-products-kennie__spec-list-item:not(.p-products-kennie__spec-list-item--bullet) + .p-products-kennie__spec-list-item--bullet {
  margin: 16px 0 0;
}
@media screen and (max-width : 767px) {
  .p-products-kennie__spec-list-item:not(.p-products-kennie__spec-list-item--bullet) + .p-products-kennie__spec-list-item--bullet {
    margin: 10px 0 0;
  }
}

.p-products-kennie__noki {
  margin: 0 0 80px;
}
@media screen and (max-width: 1200px) {
  .p-products-kennie__noki {
    margin: 0 0 6.67vw;
  }
}
@media screen and (min-width : 768px) and (max-width : 1023px) {
  .p-products-kennie__noki {
    margin: 0 0 70px;
  }
}
@media screen and (max-width : 767px) {
  .p-products-kennie__noki {
    margin: 0 0 40px;
  }
}

.p-products-kennie__noki-text {
  margin: 0;
  font-size: 1.7rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  line-height: 2;
  color: #3c3c3c;
}
@media screen and (max-width: 1200px) {
  .p-products-kennie__noki-text {
    font-size: 1.42vw;
  }
}
@media screen and (min-width : 768px) and (max-width : 1023px) {
  .p-products-kennie__noki-text {
    font-size: 1.6rem;
  }
}
@media screen and (max-width : 767px) {
  .p-products-kennie__noki-text {
    font-size: 1.4rem;
    letter-spacing: 0.05em;
    line-height: 1.6;
  }
}
.p-products-kennie__noki-text:last-child {
  margin: 0;
}

.p-products-kennie__overclip {
  margin: 0;
}
@media screen and (max-width: 1200px) {
  .p-products-kennie__overclip {
    margin: 0 0 6.67vw;
  }
}
@media screen and (min-width : 768px) and (max-width : 1023px) {
  .p-products-kennie__overclip {
    margin: 0 0 70px;
  }
}
@media screen and (max-width : 767px) {
  .p-products-kennie__overclip {
    margin: 0;
  }
}

.p-products-kennie__section-title {
  margin: 0 0 34px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin: 0 0 4rem;
  font-size: 3.2rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1;
}
@media screen and (max-width: 1200px) {
  .p-products-kennie__section-title {
    margin: 0 0 3.33vw;
    font-size: 2.6vw;
  }
}
@media screen and (min-width : 768px) and (max-width : 1023px) {
  .p-products-kennie__section-title {
    margin: 0 0 3.5rem;
  }
}
@media screen and (max-width : 767px) {
  .p-products-kennie__section-title {
    margin: 0 0 2rem;
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 1200px) {
  .p-products-kennie__section-title {
    margin: 0 0 3.17vw;
  }
}
@media screen and (min-width : 768px) and (max-width : 1023px) {
  .p-products-kennie__section-title {
    margin: 0 0 33px;
  }
}
@media screen and (max-width : 767px) {
  .p-products-kennie__section-title {
    margin: 0 0 16px;
  }
}

.p-products-kennie__section-title-line {
  display: inline-block;
  height: 5.2rem;
  margin: 0 0 2.4rem;
  padding: 0 20px;
  box-sizing: border-box;
  line-height: 5.2rem;
  font-size: 3.2rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: #fff;
  background-color: #f48324;
  white-space: nowrap;
}
.p-products-kennie__section-title-line:last-child {
  margin: 0;
}
@media screen and (max-width: 1200px) {
  .p-products-kennie__section-title-line {
    height: 4.3vw;
    margin: 0 0 2vw;
    padding: 0 1.25vw;
    line-height: 4.3vw;
    font-size: 2.6vw;
  }
}
@media screen and (min-width : 768px) and (max-width : 1023px) {
  .p-products-kennie__section-title-line {
    font-size: 2.8rem;
    margin: 0 0 3.3rem;
    padding: 0 13px;
  }
}
@media screen and (max-width : 767px) {
  .p-products-kennie__section-title-line {
    height: 3.6rem;
    margin: 0 0 1.2rem;
    padding: 0 12px;
    line-height: 3.6rem;
    font-size: 1.8rem;
  }
}
.p-products-kennie__section-title-line {
  margin: 0;
}

.p-products-kennie__section-title-line--sp-first {
  margin: 0 0 24px;
}
@media screen and (max-width : 767px) {
  .p-products-kennie__section-title-line--sp-first {
    margin: 0 0 12px;
  }
}

.p-products-kennie__section-subtitle {
  margin: 0 0 34px;
  font-size: 2.6rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1.6;
  color: #f48324;
}
@media screen and (max-width: 1200px) {
  .p-products-kennie__section-subtitle {
    font-size: 2.17vw;
    line-height: 1.4;
    margin: 0 0 3.17vw;
  }
}
@media screen and (min-width : 768px) and (max-width : 1023px) {
  .p-products-kennie__section-subtitle {
    font-size: 2.3rem;
    line-height: 1.4;
    font-weight: 600;
    margin: 0 0 33px;
  }
}
@media screen and (max-width : 767px) {
  .p-products-kennie__section-subtitle {
    font-size: 1.6rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    line-height: 1.6;
    margin: 0 0 10px;
  }
}

.p-products-kennie__overclip-text {
  margin: 0;
  font-size: 1.7rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  line-height: 2;
  color: #3c3c3c;
}
@media screen and (max-width: 1200px) {
  .p-products-kennie__overclip-text {
    font-size: 1.42vw;
  }
}
@media screen and (min-width : 768px) and (max-width : 1023px) {
  .p-products-kennie__overclip-text {
    font-size: 1.6rem;
  }
}
@media screen and (max-width : 767px) {
  .p-products-kennie__overclip-text {
    font-size: 1.4rem;
    letter-spacing: 0.05em;
    line-height: 1.6;
  }
}

.p-products-kennie__overclip-detail {
  display: grid;
  margin: 46px 0 0;
  grid-template-columns: 1fr;
  gap: 30px;
}
@media screen and (max-width : 767px) {
  .p-products-kennie__overclip-detail {
    gap: 20px;
  }
}

.p-products-kennie__overclip-detail-title {
  position: relative;
  margin: 0 0 28px;
  padding: 0 0 0 20px;
  font-size: 2.4rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: #3c3c3c;
}
.p-products-kennie__overclip-detail-title::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: -10px;
  width: 6px;
  background-color: #f48324;
}
.p-products-kennie__overclip-detail-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  height: 1px;
  background-color: #f48324;
}
@media screen and (max-width: 1200px) {
  .p-products-kennie__overclip-detail-title {
    font-size: 2vw;
    margin: 0 0 2.33vw;
    padding: 0 0 0 1.67vw;
  }
}
@media screen and (min-width : 768px) and (max-width : 1023px) {
  .p-products-kennie__overclip-detail-title {
    font-size: 2.1rem;
    margin: 0 0 24px;
    padding: 0 0 0 17px;
  }
}
@media screen and (max-width : 767px) {
  .p-products-kennie__overclip-detail-title {
    font-size: 1.6rem;
    letter-spacing: 0.05em;
    margin: 0 0 20px;
    padding: 0 0 0 15px;
  }
}

.p-products-kennie__overclip-detail-item--clip .p-products-kennie__overclip-detail-title::after {
  width: 310px;
}

.p-products-kennie__overclip-detail-item--reinforcement .p-products-kennie__overclip-detail-title::after {
  width: 330px;
}

.p-products-kennie__overclip-detail-text {
  margin: 0 0 32px;
  font-size: 1.7rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  line-height: 2;
  color: #3c3c3c;
}
@media screen and (max-width: 1200px) {
  .p-products-kennie__overclip-detail-text {
    font-size: 1.42vw;
  }
}
@media screen and (min-width : 768px) and (max-width : 1023px) {
  .p-products-kennie__overclip-detail-text {
    font-size: 1.6rem;
  }
}
@media screen and (max-width : 767px) {
  .p-products-kennie__overclip-detail-text {
    font-size: 1.4rem;
    letter-spacing: 0.05em;
    line-height: 1.6;
  }
}
@media screen and (max-width: 1200px) {
  .p-products-kennie__overclip-detail-text {
    margin: 0 0 2.67vw;
  }
}
@media screen and (min-width : 768px) and (max-width : 1023px) {
  .p-products-kennie__overclip-detail-text {
    margin: 0 0 28px;
  }
}
@media screen and (max-width : 767px) {
  .p-products-kennie__overclip-detail-text {
    margin: 0 0 20px;
  }
}

/* -------------------------------------------------
.p-products-nike
---------------------------------------------------- */
.p-products-section.p-products-nike {
  position: relative;
  margin: 0;
  padding: 10rem 0;
  background-color: #edf6f2;
}
.p-products-section.p-products-nike:first-of-type {
  margin: 0;
}
@media screen and (max-width: 1200px) {
  .p-products-section.p-products-nike {
    margin: 0;
    padding: 8.33vw 0;
  }
  .p-products-section.p-products-nike:first-of-type {
    margin: 0;
  }
}
@media screen and (min-width : 768px) and (max-width : 1023px) {
  .p-products-section.p-products-nike {
    margin: 0;
    padding: 8rem 0;
  }
  .p-products-section.p-products-nike:first-of-type {
    margin: 0;
  }
}
@media screen and (max-width : 767px) {
  .p-products-section.p-products-nike {
    margin: 0;
    padding: 4rem 0;
  }
  .p-products-section.p-products-nike:first-of-type {
    margin: 0;
  }
}

.p-products-nike .p-products-section__title-en {
  color: #007a46;
}

.p-products-nike .p-products-section__title-en {
  margin: 0;
}

.p-products-nike__spec-table-wrapper {
  margin: 0 0 86px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
@media screen and (max-width: 1200px) {
  .p-products-nike__spec-table-wrapper {
    margin: 0 0 7.17vw;
  }
}
@media screen and (min-width : 768px) and (max-width : 1023px) {
  .p-products-nike__spec-table-wrapper {
    margin: 0 0 75px;
  }
}
@media screen and (max-width : 767px) {
  .p-products-nike__spec-table-wrapper {
    margin: 0 0 40px;
    overflow-x: visible;
  }
}

.p-products-nike__spec-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border: 1px solid #fff;
}
@media screen and (max-width : 767px) {
  .p-products-nike__spec-table {
    table-layout: auto;
    width: 440px;
    min-width: 440px;
  }
}

.p-products-nike__spec-tr {
  height: 60px;
}
@media screen and (max-width : 767px) {
  .p-products-nike__spec-tr {
    height: auto;
  }
}

.p-products-nike__spec-tr--ss {
  height: 118px;
}
@media screen and (max-width : 767px) {
  .p-products-nike__spec-tr--ss {
    height: auto;
  }
}

/* ---
NIKE spec table（SPのみ）：ヘッダー行は固定表示、白部分（tbody）だけ横スクロール
--- */
.p-products-nike__spec-table-head {
  display: none;
}

.p-products-nike__spec-table-scroll {
  display: block;
}

@media screen and (max-width : 767px) {
  .p-products-nike__spec-table-head {
    display: block;
    width: 100%;
    border: 1px solid #fff;
    border-bottom: none;
  }
  .p-products-nike__spec-table-head-row {
    display: grid;
    grid-template-columns: 158px 1fr;
  }
  .p-products-nike__spec-table-head-cell {
    padding: 10px;
    font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    line-height: 1.5;
    text-align: center;
    background-color: #007a46;
    color: #fff;
    border-right: 1px solid #fff;
    white-space: nowrap;
  }
  .p-products-nike__spec-table-head-cell:last-child {
    border-right: none;
  }
  .p-products-nike__spec-table-head-cell--first {
    position: sticky;
    left: 0;
    z-index: 3;
  }
  .p-products-nike__spec-table-scroll {
    overflow-x: auto;
    background-color: #fff;
    border: 1px solid #fff;
    border-top: none;
    -webkit-overflow-scrolling: touch;
    position: relative;
  }
  .p-products-nike__spec-table thead {
    display: none;
  }
  .p-products-nike__spec-td:not(.p-products-nike__spec-td--first) {
    min-width: 270px;
  }
}
.p-products-nike__spec-th {
  padding: 20px;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 20px;
  font-weight: 300;
  letter-spacing: 0.1em;
  line-height: 1.5;
  text-align: center;
  background-color: #007a46;
  color: #fff;
  border: 1px solid #fff;
}
@media screen and (max-width: 1075px) {
  .p-products-nike__spec-th {
    padding: 15px 10px;
    font-size: 1.6rem;
  }
}
.p-products-nike__spec-th:first-child {
  width: 280px;
}
@media screen and (max-width : 767px) {
  .p-products-nike__spec-th:first-child {
    position: sticky;
    left: 0;
    z-index: 3;
    width: 158px;
    min-width: 158px;
  }
}
.p-products-nike__spec-th:last-child {
  width: 800px;
}
@media screen and (max-width : 767px) {
  .p-products-nike__spec-th:last-child {
    min-width: 0;
  }
}
@media screen and (max-width : 767px) {
  .p-products-nike__spec-th {
    padding: 6px;
    font-size: 1.1rem;
  }
}

.p-products-nike__spec-td {
  padding: 20px 20px 20px 42px;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 20px;
  font-weight: 300;
  letter-spacing: 0.1em;
  line-height: 1.5;
  color: #3c3c3c;
  background-color: #fff;
  border: 1px solid #edf6f2;
}
.p-products-nike__spec-td:not(.p-products-nike__spec-td--first) {
  border-left: 1px solid #fff;
}
.p-products-nike__spec-table tbody tr:first-child .p-products-nike__spec-td:not(.p-products-nike__spec-td--first) {
  border-top: 1px solid #fff;
}
@media screen and (max-width: 1075px) {
  .p-products-nike__spec-td {
    padding: 15px 10px;
    font-size: 1.6rem;
  }
  .p-products-nike__spec-td:not(.p-products-nike__spec-td--first) {
    font-size: 1.4rem;
    text-align: left;
  }
}
@media screen and (max-width : 767px) {
  .p-products-nike__spec-td {
    padding: 12px 10px;
    font-size: 1.1rem;
    letter-spacing: 0.05em;
    line-height: 1.6;
    white-space: nowrap;
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
  }
  .p-products-nike__spec-td:not(.p-products-nike__spec-td--first) {
    font-size: 1.1rem;
  }
}

.p-products-nike__spec-td--first {
  padding: 0 0 0 30px;
  background-color: #d9ebe3;
  font-weight: 400;
  line-height: 1.5;
  border: 1px solid #fff;
}
@media screen and (max-width: 1075px) {
  .p-products-nike__spec-td--first {
    padding: 15px 10px;
  }
}
@media screen and (max-width : 767px) {
  .p-products-nike__spec-td--first {
    position: sticky;
    letter-spacing: 0.02em;
    left: 0;
    z-index: 2;
    padding: 6px;
    font-size: 1.1rem;
    text-align: left;
    width: 158px;
    min-width: 158px;
    max-width: 158px;
    white-space: normal;
  }
}

.p-products-nike__spec-subtitle {
  font-size: 17px;
}
@media screen and (max-width: 1075px) {
  .p-products-nike__spec-subtitle {
    font-size: 1.2rem;
  }
}
@media screen and (max-width : 767px) {
  .p-products-nike__spec-subtitle {
    font-size: 1rem;
  }
}

.p-products-nike__spec-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.p-products-nike__spec-list-item {
  margin: 0 0 0.5rem;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 20px;
  font-weight: 300;
  letter-spacing: 0.1em;
  line-height: 1.2;
}
@media screen and (max-width: 1075px) {
  .p-products-nike__spec-list-item {
    font-size: 1.4rem;
  }
}
.p-products-nike__spec-list-item:last-child {
  margin: 0;
}
@media screen and (max-width : 767px) {
  .p-products-nike__spec-list-item {
    font-size: 1.1rem;
    letter-spacing: 0;
    line-height: 1.6;
  }
}

.p-products-nike__spec-list-item:not(.p-products-nike__spec-list-item--bullet) + .p-products-nike__spec-list-item--bullet {
  margin: 16px 0 0;
}
@media screen and (max-width : 767px) {
  .p-products-nike__spec-list-item:not(.p-products-nike__spec-list-item--bullet) + .p-products-nike__spec-list-item--bullet {
    margin: 10px 0 0;
  }
}

.p-products-nike__spec-list-item--bullet {
  margin: 0 0 0;
  font-size: 17px;
  line-height: 1.47;
}
@media screen and (max-width: 1075px) {
  .p-products-nike__spec-list-item--bullet {
    font-size: 1.4rem;
  }
}
@media screen and (max-width : 767px) {
  .p-products-nike__spec-list-item--bullet {
    font-size: 1.1rem;
    letter-spacing: 0.05em;
    line-height: 1.6;
  }
}

.p-products-nike__ss {
  margin: 0;
}
@media screen and (max-width: 1200px) {
  .p-products-nike__ss {
    margin: 0 0 6.67vw;
  }
}
@media screen and (min-width : 768px) and (max-width : 1023px) {
  .p-products-nike__ss {
    margin: 0 0 70px;
  }
}
@media screen and (max-width : 767px) {
  .p-products-nike__ss {
    margin: 0 0 10px;
  }
}

.p-products-nike__ss-title {
  margin: 0 0 34px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin: 0 0 4rem;
  font-size: 3.2rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1;
}
@media screen and (max-width: 1200px) {
  .p-products-nike__ss-title {
    margin: 0 0 3.33vw;
    font-size: 2.6vw;
  }
}
@media screen and (min-width : 768px) and (max-width : 1023px) {
  .p-products-nike__ss-title {
    margin: 0 0 3.5rem;
  }
}
@media screen and (max-width : 767px) {
  .p-products-nike__ss-title {
    margin: 0 0 2rem;
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 1200px) {
  .p-products-nike__ss-title {
    margin: 0 0 3.17vw;
  }
}
@media screen and (min-width : 768px) and (max-width : 1023px) {
  .p-products-nike__ss-title {
    margin: 0 0 33px;
  }
}
@media screen and (max-width : 767px) {
  .p-products-nike__ss-title {
    margin: 0 0 20px;
  }
}

.p-products-nike__ss-title-line {
  display: inline-block;
  height: 5.2rem;
  margin: 0 0 2.4rem;
  padding: 0 20px;
  box-sizing: border-box;
  line-height: 5.2rem;
  font-size: 3.2rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: #fff;
  background-color: #007a46;
  white-space: nowrap;
}
.p-products-nike__ss-title-line:last-child {
  margin: 0;
}
@media screen and (max-width: 1200px) {
  .p-products-nike__ss-title-line {
    height: 4.3vw;
    margin: 0 0 2vw;
    padding: 0 1.25vw;
    line-height: 4.3vw;
    font-size: 2.6vw;
  }
}
@media screen and (min-width : 768px) and (max-width : 1023px) {
  .p-products-nike__ss-title-line {
    font-size: 2.8rem;
    margin: 0 0 3.3rem;
    padding: 0 13px;
  }
}
@media screen and (max-width : 767px) {
  .p-products-nike__ss-title-line {
    height: 3.6rem;
    margin: 0 0 1.2rem;
    padding: 0 12px;
    line-height: 3.6rem;
    font-size: 1.8rem;
  }
}
.p-products-nike__ss-title-line {
  margin: 0;
}

.p-products-nike__ss-headline {
  margin: 0 0 34px;
  font-size: 2.6rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1.6;
  color: #007a46;
}
@media screen and (max-width: 1200px) {
  .p-products-nike__ss-headline {
    font-size: 2.17vw;
    line-height: 1.4;
    margin: 0 0 3.17vw;
  }
}
@media screen and (min-width : 768px) and (max-width : 1023px) {
  .p-products-nike__ss-headline {
    font-size: 2.3rem;
    line-height: 1.4;
    margin: 0 0 33px;
  }
}
@media screen and (max-width : 767px) {
  .p-products-nike__ss-headline {
    font-size: 1.6rem;
    letter-spacing: 0.05em;
    line-height: 1.8;
    margin: 0 0 20px;
  }
}

.p-products-nike__ss-text {
  margin: 0;
  font-size: 1.7rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  line-height: 2;
  color: #3c3c3c;
}
@media screen and (max-width: 1200px) {
  .p-products-nike__ss-text {
    font-size: 1.42vw;
  }
}
@media screen and (min-width : 768px) and (max-width : 1023px) {
  .p-products-nike__ss-text {
    font-size: 1.6rem;
  }
}
@media screen and (max-width : 767px) {
  .p-products-nike__ss-text {
    font-size: 1.4rem;
    letter-spacing: 0.05em;
    line-height: 1.6;
  }
}
.p-products-nike__ss-text:last-child {
  margin: 0;
}

.p-products-nike__ss-note {
  margin: 6px 0 0;
  letter-spacing: 0.1em;
  color: #8a8a8a;
}
@media screen and (max-width : 767px) {
  .p-products-nike__ss-note {
    font-size: 1.3rem;
    letter-spacing: 0.05em;
  }
}

/* -------------------------------------------------
.p-products-philosophy
---------------------------------------------------- */
.p-products-section.p-products-philosophy {
  padding: 0 0 96px;
}
@media screen and (max-width : 767px) {
  .p-products-section.p-products-philosophy {
    padding: 0 0 60px;
  }
}

.p-products-philosophy__box {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto 30px;
  padding: 30px;
  background-color: #f8f9f9;
  border-radius: 10px;
}
.p-products-philosophy__box:last-child {
  margin: 0 auto;
}
@media screen and (max-width : 767px) {
  .p-products-philosophy__box {
    width: 100%;
    margin: 0 0 20px;
    padding: 10px;
  }
}

.p-products-philosophy__title {
  margin: 0 0 20px;
  font-size: 1.9rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1.5;
  color: #3c3c3c;
}
@media screen and (max-width : 767px) {
  .p-products-philosophy__title {
    margin: 0 0 10px;
    font-size: 1.6rem;
    letter-spacing: 0.05em;
  }
}

.p-products-philosophy__text {
  margin: 0;
  font-size: 1.7rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  line-height: 2;
  color: #3c3c3c;
}
@media screen and (max-width: 1200px) {
  .p-products-philosophy__text {
    font-size: 1.42vw;
  }
}
@media screen and (min-width : 768px) and (max-width : 1023px) {
  .p-products-philosophy__text {
    font-size: 1.6rem;
  }
}
@media screen and (max-width : 767px) {
  .p-products-philosophy__text {
    font-size: 1.4rem;
    letter-spacing: 0.05em;
    line-height: 1.6;
  }
}

/* -------------------------------------------------
.p-products-catalog
---------------------------------------------------- */
.p-products-section.p-products-catalog {
  padding: 96px 0;
  margin: 0;
  background-color: #f6faf1;
}
@media screen and (max-width : 767px) {
  .p-products-section.p-products-catalog {
    padding: 30px 0 60px;
  }
}

.p-products-catalog .p-products-section__header {
  text-align: center;
  margin: 0 0 4rem;
}
@media screen and (max-width: 1200px) {
  .p-products-catalog .p-products-section__header {
    margin: 0 0 3.33vw;
  }
}
@media screen and (min-width : 768px) and (max-width : 1023px) {
  .p-products-catalog .p-products-section__header {
    margin: 0 0 3.5rem;
  }
}
@media screen and (max-width : 767px) {
  .p-products-catalog .p-products-section__header {
    margin: 0 0 2rem;
  }
}

.p-products-catalog .p-products-section__title-ja--lead {
  margin: 0 0 22px;
  font-weight: 400;
}
@media screen and (max-width: 1200px) {
  .p-products-catalog .p-products-section__title-ja--lead {
    margin: 0 0 1.83vw;
  }
}
@media screen and (min-width : 768px) and (max-width : 1023px) {
  .p-products-catalog .p-products-section__title-ja--lead {
    margin: 0 0 19px;
  }
}
@media screen and (max-width : 767px) {
  .p-products-catalog .p-products-section__title-ja--lead {
    margin: 0 0 0.7rem;
  }
}

.p-products-catalog .p-products-section__title-en {
  margin: 0;
}

.p-products-catalog .p-products-section__title-ja--sub {
  margin: 22px 0 0;
  font-size: 2.3rem;
  font-weight: 400;
}
@media screen and (max-width: 1200px) {
  .p-products-catalog .p-products-section__title-ja--sub {
    margin: 1.83vw 0 0;
    font-size: 1.92vw;
  }
}
@media screen and (min-width : 768px) and (max-width : 1023px) {
  .p-products-catalog .p-products-section__title-ja--sub {
    margin: 19px 0 0;
    font-size: 2rem;
  }
}
@media screen and (max-width : 767px) {
  .p-products-catalog .p-products-section__title-ja--sub {
    margin: 0.7rem 0 0;
    font-size: 1.5rem;
  }
}

.p-products-catalog__intro-text {
  margin: 0 0 65px;
  text-align: center;
  font-size: 1.7rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  line-height: 2;
  color: #3c3c3c;
}
@media screen and (max-width: 1200px) {
  .p-products-catalog__intro-text {
    font-size: 1.42vw;
  }
}
@media screen and (min-width : 768px) and (max-width : 1023px) {
  .p-products-catalog__intro-text {
    font-size: 1.6rem;
  }
}
@media screen and (max-width : 767px) {
  .p-products-catalog__intro-text {
    font-size: 1.4rem;
    letter-spacing: 0.05em;
    line-height: 1.6;
  }
}
@media screen and (max-width : 767px) {
  .p-products-catalog__intro-text {
    margin: 0 0 30px;
  }
}

.p-products-catalog__grid {
  display: grid;
  grid-template-columns: repeat(3, 216px);
  justify-content: center;
  column-gap: 96px;
  row-gap: 78px;
}
@media screen and (min-width : 768px) and (max-width : 1023px) {
  .p-products-catalog__grid {
    grid-template-columns: repeat(2, 216px);
    column-gap: 40px;
    row-gap: 40px;
  }
}
@media screen and (max-width : 767px) {
  .p-products-catalog__grid {
    padding: 0 15px;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 30px;
    row-gap: 35px;
  }
}

.p-products-catalog__item-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 216px;
}
@media screen and (max-width : 767px) {
  .p-products-catalog__item-wrapper {
    width: 100%;
  }
}

.p-products-catalog__item {
  display: block;
  width: 216px;
  height: 310px;
  overflow: hidden;
  background-color: #fff;
  border: 2px solid #85B231;
  border-radius: 10px;
  text-decoration: none;
  transition: transform 0.3s ease;
}
.p-products-catalog__item:hover {
  transform: scale(1.05);
}
@media screen and (max-width : 767px) {
  .p-products-catalog__item {
    width: 100%;
    height: auto;
    aspect-ratio: 216/310;
  }
}

.p-products-catalog__image {
  position: relative;
  width: 216px;
  height: 310px;
  background-size: 216px 310px;
  background-position: center;
  background-repeat: no-repeat;
}
@media screen and (max-width : 767px) {
  .p-products-catalog__image {
    width: 100%;
    height: 100%;
    background-size: cover;
  }
}

.p-products-catalog__item-wrapper:nth-child(1) .p-products-catalog__image {
  background-image: url("../assets/images/bnr_catalog_01_lg.jpg");
}

.p-products-catalog__item-wrapper:nth-child(2) .p-products-catalog__image {
  background-image: url("../assets/images/bnr_catalog_02_lg.jpg");
}

.p-products-catalog__item-wrapper:nth-child(3) .p-products-catalog__image {
  background-image: url("../assets/images/bnr_catalog_03_lg.jpg");
}

.p-products-catalog__item-wrapper:nth-child(4) .p-products-catalog__image {
  background-image: url("../assets/images/bnr_catalog_04_lg.jpg");
}

.p-products-catalog__item-wrapper:nth-child(5) .p-products-catalog__image {
  background-image: url("../assets/images/bnr_catalog_05_lg.jpg");
}

.p-products-catalog__item-wrapper:nth-child(6) .p-products-catalog__image {
  background-image: url("../assets/images/bnr_catalog_06_lg.jpg");
}

.p-products-catalog__label {
  margin: 20px 0 0;
  text-align: center;
}
@media screen and (max-width : 767px) {
  .p-products-catalog__label {
    margin: 8px 0 0;
  }
}

.p-products-catalog__title {
  margin: 0;
  font-size: 1.7rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  line-height: 2;
  color: #3c3c3c;
}
@media screen and (max-width: 1200px) {
  .p-products-catalog__title {
    font-size: 1.42vw;
  }
}
@media screen and (min-width : 768px) and (max-width : 1023px) {
  .p-products-catalog__title {
    font-size: 1.6rem;
  }
}
@media screen and (max-width : 767px) {
  .p-products-catalog__title {
    font-size: 1.4rem;
    letter-spacing: 0.05em;
    line-height: 1.6;
  }
}
.p-products-catalog__title {
  font-size: 1.6rem;
  white-space: nowrap;
}
@media screen and (max-width : 767px) {
  .p-products-catalog__title {
    font-size: 1.2rem;
    letter-spacing: 0.05em;
    white-space: normal;
  }
}

/* -------------------------------------------------
.p-products-original
---------------------------------------------------- */
.p-products-original {
  padding: 0;
}

.p-products-original__banner {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 240px;
  margin: 0 0 80px;
  background-image: url("../assets/images/bg_product_04_lg.jpg");
  background-size: cover;
  background-position: center 45%;
}
.p-products-original__banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.25);
  pointer-events: none;
}
@media screen and (max-width : 767px) {
  .p-products-original__banner {
    height: 150px;
    margin: 0 0 40px;
    background-position: center 55%;
  }
}

.p-products-original__banner-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  width: 90%;
  max-width: 1280px;
  height: 100%;
  margin: 0 auto;
}

.p-products-original__subtitle-top {
  margin: 0 0 10px;
  font-size: 17px;
  font-weight: 300;
  letter-spacing: 0.1em;
  line-height: 1.5;
  text-align: left;
  color: #fff;
}
@media screen and (max-width : 767px) {
  .p-products-original__subtitle-top {
    margin: 0 0 10px;
    font-size: 1.4rem;
  }
}

.p-products-original__subtitle-bottom {
  margin: 10px 0 0;
  font-size: 17px;
  font-weight: 300;
  letter-spacing: 0.1em;
  line-height: 1.5;
  text-align: left;
  color: #fff;
}
@media screen and (max-width : 767px) {
  .p-products-original__subtitle-bottom {
    margin: 8px 0 0;
    font-size: 1.4rem;
  }
}

.p-products-original__banner-title {
  text-align: left;
  color: #fff;
}

.p-products-original__banner-title-en {
  display: block;
  font-family: "Oswald", sans-serif;
  font-size: 4.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1.2;
}
@media screen and (max-width : 767px) {
  .p-products-original__banner-title-en {
    font-size: 2.2rem;
  }
}

.p-products-original__banner-title-ja {
  display: block;
  margin: 5px 0 0;
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.2em;
}
@media screen and (max-width : 767px) {
  .p-products-original__banner-title-ja {
    font-size: 1.4rem;
  }
}

.p-products-original__intro {
  margin: 0 0 80px;
}
@media screen and (max-width : 767px) {
  .p-products-original__intro {
    margin: 0 0 40px;
  }
}

.p-products-original__intro-text {
  margin: 0;
  font-size: 1.7rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  line-height: 2;
  color: #3c3c3c;
}
@media screen and (max-width: 1200px) {
  .p-products-original__intro-text {
    font-size: 1.42vw;
  }
}
@media screen and (min-width : 768px) and (max-width : 1023px) {
  .p-products-original__intro-text {
    font-size: 1.6rem;
  }
}
@media screen and (max-width : 767px) {
  .p-products-original__intro-text {
    font-size: 1.4rem;
    letter-spacing: 0.05em;
    line-height: 1.6;
  }
}
@media screen and (max-width : 767px) {
  .p-products-original__intro-text {
    text-align: left;
  }
}

/* -------------------------------------------------
.p-products-original__spec-group
---------------------------------------------------- */
.p-products-original__spec-group {
  margin: 80px 0 50px;
}
@media screen and (max-width : 767px) {
  .p-products-original__spec-group {
    margin: 0;
  }
}

.p-products-original__combination {
  margin: 80px 0 50px;
}
@media screen and (max-width : 767px) {
  .p-products-original__combination {
    margin: 30px 0 0;
  }
}

/* -------------------------------------------------
.p-products-original__combination-block
----------------------------------------------------- */
.p-products-original__combination-block {
  width: 100vw;
  margin: 80px calc(50% - 50vw) 50px;
  padding: 80px 0 50px;
  background-color: #f4f5f6;
}
@media screen and (max-width : 767px) {
  .p-products-original__combination-block {
    margin: 30px calc(50% - 50vw) 0;
    padding: 30px 0 40px;
  }
}

.p-products-original__combination-inner {
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
}
@media screen and (max-width : 767px) {
  .p-products-original__combination-inner {
    width: 100%;
    padding: 0 15px;
    overflow: visible;
  }
}

.p-products-original__combination-block .p-products-original__combination-title {
  width: 982px;
  max-width: 100%;
  margin: 0 auto 40px;
  padding-left: 0;
  box-sizing: border-box;
}
@media screen and (min-width : 1201px) {
  .p-products-original__combination-block .p-products-original__combination-title {
    min-width: 982px;
  }
}
@media screen and (min-width : 768px) and (max-width : 1023px) {
  .p-products-original__combination-block .p-products-original__combination-title {
    width: clamp(638px, calc(700px + 72 * (100vw - 768px) / 255), 772px);
    max-width: 100%;
    margin: 0 auto 40px;
  }
}
@media screen and (min-width : 1024px) and (max-width : 1200px) {
  .p-products-original__combination-block .p-products-original__combination-title {
    width: calc(976px + 6 * (100vw - 1024px) / 176);
    max-width: 100%;
    margin: 0 auto 40px;
  }
}
@media screen and (max-width : 767px) {
  .p-products-original__combination-block .p-products-original__combination-title {
    width: 100%;
    margin: 0 0 20px;
  }
}

.p-products-original__combination-item {
  display: flex;
  flex-direction: column;
  padding-bottom: 8px;
  overflow: visible;
}

.p-products-original__combination-item-title {
  margin: 0 0 20px;
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 0.1em;
  line-height: 1.5;
  text-align: left;
  color: #3c3c3c;
}
@media screen and (max-width : 767px) {
  .p-products-original__combination-item-title {
    margin: 0 0 8px;
    font-size: 1.2rem;
    letter-spacing: 0.05em;
  }
}

.p-products-original__combination-item-desc {
  margin: 20px 0 0;
  padding: 0 0 4px;
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 1.6;
  text-align: left;
  color: #3c3c3c;
}
@media screen and (max-width : 767px) {
  .p-products-original__combination-item-desc {
    margin: 8px 0 0;
    padding: 0 0 4px;
    font-size: 1.2rem;
  }
}

.p-products-original__combination-slider-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0;
}
@media screen and (min-width : 1024px) and (max-width : 1200px) {
  .p-products-original__combination-slider-wrapper {
    overflow: visible;
  }
}
@media screen and (max-width : 767px) {
  .p-products-original__combination-slider-wrapper {
    overflow: visible;
  }
}

.p-products-original__combination-slider-content {
  width: 982px;
  max-width: 100%;
  margin: 0 auto;
  box-sizing: border-box;
}
@media screen and (min-width : 1201px) {
  .p-products-original__combination-slider-content {
    min-width: 982px;
  }
}
@media screen and (min-width : 768px) and (max-width : 1023px) {
  .p-products-original__combination-slider-content {
    width: clamp(638px, calc(700px + 72 * (100vw - 768px) / 255), 772px);
    max-width: 100%;
    margin: 0 auto;
    box-sizing: border-box;
  }
  .p-products-original__combination-slider-viewport {
    overflow: hidden;
    width: 100%;
  }
  .p-products-original__combination-slider-wrapper .js-combination-slider {
    overflow: hidden;
    width: 100%;
  }
  .p-products-original__combination-slider-wrapper .js-combination-slider .swiper-wrapper {
    display: flex;
    flex-wrap: nowrap;
  }
  .p-products-original__combination-slider-wrapper .js-combination-slider .swiper-slide {
    flex: 0 0 314px;
    width: 314px;
    box-sizing: border-box;
    overflow: hidden;
  }
  .p-products-original__combination-slider-wrapper .js-combination-slider .p-products-original__combination-item .p-products-original__image {
    width: 314px;
    height: 234px;
    overflow: hidden;
  }
  .p-products-original__combination-slider-wrapper .js-combination-slider .p-products-original__combination-item .p-products-original__image .p-products-original__img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}
@media screen and (min-width : 1024px) and (max-width : 1200px) {
  .p-products-original__combination-slider-content {
    width: calc(976px + 6 * (100vw - 1024px) / 176);
    max-width: 100%;
    margin: 0 auto;
    box-sizing: border-box;
  }
}
@media screen and (min-width : 1024px) and (max-width : 1100px) {
  .p-products-original__combination-inner {
    width: 100%;
    padding: 0 16px;
    box-sizing: border-box;
  }
  .p-products-original__combination-slider-wrapper .js-combination-slider .swiper-slide {
    width: 314px;
    flex: 0 0 314px;
  }
  .p-products-original__combination-slider-wrapper .js-combination-slider .p-products-original__combination-item .p-products-original__image {
    width: 314px;
    height: 234px;
  }
  .p-products-original__combination-slider-wrapper .js-combination-slider .p-products-original__combination-item .p-products-original__image .p-products-original__img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

.p-products-original__combination-slider-viewport {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.p-products-original__combination-slider-wrapper .js-combination-slider {
  overflow: hidden;
  margin: 0;
  width: 100%;
}

.p-products-original__combination-slider-wrapper .js-combination-slider .swiper-slide {
  box-sizing: border-box;
  overflow: visible;
  width: 314px;
  height: auto;
  padding-bottom: 4px;
  flex-shrink: 0;
}
@media screen and (max-width : 767px) {
  .p-products-original__combination-slider-wrapper .js-combination-slider .swiper-slide {
    width: calc((100% - 10px) / 2);
  }
}

.p-products-original__combination-arrow {
  position: absolute;
  top: 38%;
  z-index: 2;
  transform: translateY(-50%);
  width: 72px;
  height: 72px;
  margin: 0;
  padding: 0;
  font-size: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  transition: opacity 0.2s ease;
}
.p-products-original__combination-arrow:hover {
  opacity: 0.7;
}
.p-products-original__combination-arrow:disabled,
.p-products-original__combination-arrow.swiper-button-disabled {
  opacity: 0.35;
  cursor: not-allowed;
}
.p-products-original__combination-arrow::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-60%, -50%) rotate(-135deg);
  width: 18px;
  height: 18px;
  border: solid #9d9d9d;
  border-width: 2px 2px 0 0;
}
.p-products-original__combination-arrow--next::after {
  transform: translate(-40%, -50%) rotate(45deg);
}
.p-products-original__combination-arrow--prev {
  left: calc(50% - 491px - 72px);
  right: auto;
}
.p-products-original__combination-arrow--next {
  left: auto;
  right: calc(50% - 491px - 72px);
}
@media screen and (max-width : 1100px) {
  .p-products-original__combination-arrow--prev {
    left: 16px;
  }
  .p-products-original__combination-arrow--next {
    right: 16px;
  }
}
@media screen and (max-width : 960px) {
  .p-products-original__combination-arrow--prev {
    left: 0;
    margin: 0;
  }
  .p-products-original__combination-arrow--next {
    right: 0;
    margin: 0;
  }
}
@media screen and (min-width : 1024px) and (max-width : 1200px) {
  .p-products-original__combination-arrow--prev {
    left: 0;
    margin: 0;
  }
  .p-products-original__combination-arrow--next {
    right: 0;
    margin: 0;
  }
}
@media screen and (max-width : 767px) {
  .p-products-original__combination-arrow {
    top: 35%;
    width: 48px;
    height: 48px;
  }
  .p-products-original__combination-arrow::after {
    width: 12px;
    height: 12px;
  }
  .p-products-original__combination-arrow--prev {
    left: 0;
    margin: 0 0 0 -27px;
  }
  .p-products-original__combination-arrow--next {
    right: 0;
    margin: 0 -27px 0 0;
  }
  .p-products-original__combination-slider-wrapper .js-combination-slider .swiper-wrapper {
    align-items: flex-start;
  }
  .p-products-original__combination-block .p-products-original__image .p-products-original__img {
    object-position: center top;
  }
}

.p-products-original__combination-scrollbar.p-products-original__combination-scrollbar,
.p-products-original__combination-scrollbar.p-products-original__combination-scrollbar.swiper-scrollbar-horizontal {
  position: relative;
  top: auto;
  right: auto;
  bottom: auto;
  left: auto;
  width: 100%;
  height: 4px;
  margin: 50px 0 0;
  box-sizing: border-box;
  background: #d8d8d8;
  border-radius: 0;
  cursor: pointer;
}
@media screen and (max-width : 767px) {
  .p-products-original__combination-scrollbar.p-products-original__combination-scrollbar,
  .p-products-original__combination-scrollbar.p-products-original__combination-scrollbar.swiper-scrollbar-horizontal {
    margin: 15px 0 0;
    height: 3px;
  }
}

.p-products-original__combination-scrollbar .swiper-scrollbar-drag {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #3c3c3c;
  border-radius: 0;
  cursor: grab;
}
.p-products-original__combination-scrollbar .swiper-scrollbar-drag:active {
  cursor: grabbing;
}

.p-products-original__spec-group--border {
  margin: 100px 0;
  padding: 100px 0 0;
  border-top: 1px solid #9d9d9d;
}
@media screen and (max-width : 767px) {
  .p-products-original__spec-group--border {
    margin: 40px 0;
    padding: 40px 0 0;
  }
}

.p-products-original__group-title {
  margin: 0 0 40px;
  font-size: 32px;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1.5;
  text-align: center;
  color: #3c3c3c;
}
@media screen and (max-width : 767px) {
  .p-products-original__group-title {
    margin: 0;
    font-size: 1.6rem;
  }
}

.p-products-original__combination-title {
  margin: 0;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-align: left;
  color: #3c3c3c;
}
@media screen and (max-width : 767px) {
  .p-products-original__combination-title {
    margin: 0 0 20px;
    font-size: 1.6rem;
    letter-spacing: 0.05em;
  }
}

.p-products-original__grid {
  display: grid;
  grid-template-columns: repeat(3, 314px);
  justify-content: center;
  column-gap: 20px;
  row-gap: 50px;
}
@media screen and (max-width: 1200px) {
  .p-products-original__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.67vw;
  }
}
@media screen and (min-width : 768px) and (max-width : 1023px) {
  .p-products-original__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}
@media screen and (max-width : 767px) {
  .p-products-original__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    row-gap: 0;
  }
}
@media screen and (min-width: 1201px) {
  .p-products-original__grid--3col {
    grid-template-columns: repeat(3, 314px);
    justify-content: center;
  }
}

.p-products-original__item {
  display: flex;
  flex-direction: column;
}

.p-products-original__label {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  width: fit-content;
  max-width: 100%;
  height: 3.5em;
  margin: 0 auto 20px;
  font-size: 17px;
  letter-spacing: 0.1em;
  line-height: 1.5;
  text-align: left;
  color: #3c3c3c;
}
@media screen and (max-width : 767px) {
  .p-products-original__label {
    line-height: 1.2;
    height: 4em;
    margin: 0 auto 10px;
    font-size: 1.2rem;
    letter-spacing: 0.05em;
  }
}

.p-products-original__image {
  position: relative;
  overflow: hidden;
  width: 314px;
  height: 234px;
  margin: 0 auto;
  background-color: #0066cc;
}
@media screen and (max-width : 767px) {
  .p-products-original__image {
    width: 100%;
    height: auto;
    aspect-ratio: 314/234;
  }
}
.p-products-original__image.js-hover-switch {
  cursor: pointer;
}

.p-products-original__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transition: opacity 0.5s ease;
}

.p-products-original__img--hover {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.p-products-original__img.p-products-original__img--zoom {
  transform: scale(1.2);
  transform-origin: center center;
}

.p-products-original__img.p-products-original__img--zoom.p-products-original__img--zoom-origin-br {
  transform-origin: 70% 90%;
}

.p-products-original__image--scale-product06 {
  overflow: hidden;
}
.p-products-original__image--scale-product06 .p-products-original__img {
  transform: scale(1.15);
  transform-origin: 60% 40%;
}

.p-products-original__image--scale-product10 {
  overflow: hidden;
}
.p-products-original__image--scale-product10 .p-products-original__img--main {
  transform: scale(1.55);
  transform-origin: 44% 75%;
}

@media (hover: hover) {
  .p-products-original__image.js-hover-switch:hover .p-products-original__img--hover {
    opacity: 1;
  }
  .p-products-original__image.js-hover-switch:hover .p-products-original__img--main {
    opacity: 0;
  }
}
@media screen and (max-width : 767px) {
  .p-products-original__image.js-hover-switch.is-touched .p-products-original__img--hover {
    opacity: 1;
  }
  .p-products-original__image.js-hover-switch.is-touched .p-products-original__img--main {
    opacity: 0;
  }
}
/* -------------------------------------------------
.p-products-original__slider-wrapper
---------------------------------------------------- */
.p-products-original__slider-wrapper {
  position: relative;
  width: 100vw;
  margin: 0 calc(50% - 50vw);
  padding: 40px 0;
}
@media screen and (max-width : 767px) {
  .p-products-original__slider-wrapper {
    padding: 0;
    overflow-x: hidden;
  }
}

.p-products-original__slider-wrapper .js-original-slider {
  padding: 0 50px 50px;
  margin: 0;
  overflow: visible;
}
@media screen and (max-width : 767px) {
  .p-products-original__slider-wrapper .js-original-slider {
    padding: 0 20px 40px;
  }
}
.p-products-original__slider-wrapper .js-original-slider .swiper-scrollbar {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: 1085px;
  height: 1px;
  background: #d8d8d8;
  border-radius: 0;
  cursor: pointer;
}
@media screen and (max-width : 767px) {
  .p-products-original__slider-wrapper .js-original-slider .swiper-scrollbar {
    width: 80%;
    bottom: 10px;
  }
}
.p-products-original__slider-wrapper .js-original-slider .swiper-scrollbar .swiper-scrollbar-drag {
  background: #3c3c3c;
  border-radius: 0;
  cursor: grab;
}
.p-products-original__slider-wrapper .js-original-slider .swiper-scrollbar .swiper-scrollbar-drag:active {
  cursor: grabbing;
}
.p-products-original__slider-wrapper .js-original-slider .swiper-slide {
  width: auto;
  height: auto;
}
.p-products-original__slider-wrapper .js-original-slider .swiper-slide-img {
  width: 100%;
  height: auto;
  border: 1px solid #ccc;
}

@media screen and (max-width : 1024px) {
  .p-products-original__combination .p-products-original__slider-wrapper {
    width: 100%;
    margin: 0;
  }
}
@media screen and (min-width : 768px) and (max-width : 1023px) {
  .p-products-original__combination .js-original-slider .swiper-slide {
    width: 314px;
    box-sizing: border-box;
  }
  .p-products-original__combination .js-original-slider .swiper-slide-img {
    width: 314px;
    height: 234px;
    object-fit: cover;
  }
}
@media screen and (max-width : 767px) {
  .p-products-original__combination .p-products-original__slider-wrapper {
    overflow-x: visible;
  }
  .p-products-original__combination .js-original-slider .swiper-slide {
    width: calc((100% - 20px) / 2);
    box-sizing: border-box;
  }
  .p-products-original__combination .js-original-slider .swiper-slide-img {
    width: 100%;
    height: auto;
    aspect-ratio: 314 / 234;
    object-fit: cover;
  }
}

/* -------------------------------------------------
.p-products-works
---------------------------------------------------- */
.p-products-works {
  padding: 0;
}

.p-products-works.p-products-original__spec-group--border {
  margin: 100px 0 100px;
}
@media screen and (max-width : 767px) {
  .p-products-works.p-products-original__spec-group--border {
    margin: 50px 0 40px;
    padding: 20px 0 0;
    border-top: none;
  }
}

.p-products-works.p-products-original__spec-group--border .p-products-works__banner {
  margin: 100px 0 0;
}
@media screen and (max-width : 767px) {
  .p-products-works.p-products-original__spec-group--border .p-products-works__banner {
    margin: 0;
  }
}

.p-products-works__banner {
  display: flex;
  justify-content: center;
}

.p-products-works__link {
  position: relative;
  display: block;
  width: 900px;
  height: 300px;
  overflow: hidden;
  text-decoration: none;
}
@media screen and (min-width : 768px) and (max-width : 1023px) {
  .p-products-works__link {
    width: 100%;
    height: 250px;
  }
}
@media screen and (max-width : 767px) {
  .p-products-works__link {
    width: 100%;
    height: 140px;
  }
}
.p-products-works__link:hover .p-products-works__bg {
  transform: scale(1.05);
}
.p-products-works__link:hover .p-products-works__arrow {
  transform: translateX(10px);
}

.p-products-works__bg {
  position: relative;
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.p-products-works__bg::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
}

.p-products-works__bg-item {
  flex: 1;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.p-products-works__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.p-products-works__content {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  text-align: center;
  color: #fff;
  pointer-events: none;
}

.p-products-works__title {
  margin: 0 -0.3em 0 0;
  font-size: 4rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  line-height: 1;
}
@media screen and (max-width : 767px) {
  .p-products-works__title {
    font-size: 2.4rem;
  }
}

.p-products-works__en {
  margin: 15px -0.4em 0 0;
  font-size: 2rem;
  letter-spacing: 0.4em;
  line-height: 1;
  text-transform: uppercase;
}
@media screen and (max-width : 767px) {
  .p-products-works__en {
    margin: 5px -0.4em 0 0;
    font-size: 1.4rem;
  }
}

.p-products-works__arrow {
  position: relative;
  width: 80px;
  height: 1px;
  margin: 30px 0 0;
  background-color: #fff;
  transition: transform 0.3s ease;
}
.p-products-works__arrow::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 10px;
  height: 1px;
  background-color: #fff;
  transform: rotate(45deg);
  transform-origin: right center;
}
@media screen and (max-width : 767px) {
  .p-products-works__arrow {
    width: 50px;
    margin: 20px 0 0;
  }
  .p-products-works__arrow::after {
    width: 8px;
  }
}

/* ===============================================
style.scss
================================================ */
/* ===============================================
_header.scss
================================================ */
/* ===============================================
_recruit.scss
================================================ */
/* -------------------------------------------------
.p-recruit
---------------------------------------------------- */
.p-recruit {
  padding: 0 0 10rem;
}
@media screen and (max-width : 767px) {
  .p-recruit {
    padding: 0 0 6rem;
  }
}

.p-recruit__inner {
  max-width: 1280px;
  width: 90%;
  margin: 0 auto;
}

/* -------------------------------------------------
.p-recruit-section
---------------------------------------------------- */
.p-recruit-section {
  margin: 10rem 0 0;
}
@media screen and (max-width : 767px) {
  .p-recruit-section {
    margin: 6rem 0 0;
  }
}

/* -------------------------------------------------
.p-recruit__heading
---------------------------------------------------- */
.p-recruit__heading {
  font-size: 2.7rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 2.22;
  color: #85B231;
}
@media screen and (max-width: 1200px) {
  .p-recruit__heading {
    font-size: 2.25vw;
    line-height: 2.22;
  }
}
@media screen and (min-width : 768px) and (max-width : 1023px) {
  .p-recruit__heading {
    font-size: 2rem;
    line-height: 1.8;
  }
}
@media screen and (max-width : 767px) {
  .p-recruit__heading {
    font-size: 1.6rem;
    letter-spacing: 0.05em;
    line-height: 1.6;
  }
}
.p-recruit__heading {
  margin: 0 0 1rem;
}
@media screen and (max-width : 767px) {
  .p-recruit__heading {
    margin: 0 0 1rem;
  }
}

/* -------------------------------------------------
.c-title-label
---------------------------------------------------- */
.c-title-label {
  display: inline-block;
  height: 5.2rem;
  margin: 0 0 2.4rem;
  padding: 0 20px;
  box-sizing: border-box;
  line-height: 5.2rem;
  font-size: 3.2rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: #fff;
  background-color: #85B231;
  white-space: nowrap;
}
.c-title-label:last-child {
  margin: 0;
}
@media screen and (max-width: 1200px) {
  .c-title-label {
    height: 4.3vw;
    margin: 0 0 2vw;
    padding: 0 1.25vw;
    line-height: 4.3vw;
    font-size: 2.6vw;
  }
}
@media screen and (min-width : 768px) and (max-width : 1023px) {
  .c-title-label {
    font-size: 2.8rem;
    margin: 0 0 3.3rem;
    padding: 0 13px;
  }
}
@media screen and (max-width : 767px) {
  .c-title-label {
    height: 3.6rem;
    margin: 0 0 1.2rem;
    padding: 0 12px;
    line-height: 3.6rem;
    font-size: 1.8rem;
  }
}
.c-title-label {
  margin: 0 0 4rem;
}
@media screen and (max-width : 767px) {
  .c-title-label {
    margin: 0 0 2rem;
  }
}

/* -------------------------------------------------
.c-primary-heading
---------------------------------------------------- */
.c-primary-heading {
  font-size: 2.7rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 2.22;
  color: #85B231;
}
@media screen and (max-width: 1200px) {
  .c-primary-heading {
    font-size: 2.25vw;
    line-height: 2.22;
  }
}
@media screen and (min-width : 768px) and (max-width : 1023px) {
  .c-primary-heading {
    font-size: 2rem;
    line-height: 1.8;
  }
}
@media screen and (max-width : 767px) {
  .c-primary-heading {
    font-size: 1.6rem;
    letter-spacing: 0.05em;
    line-height: 1.6;
  }
}
.c-primary-heading {
  margin: 0 0 1rem;
}

/* -------------------------------------------------
.p-recruit-education
---------------------------------------------------- */
.p-recruit-education {
  margin: 8rem 0 0;
}
@media screen and (max-width: 1200px) {
  .p-recruit-education {
    margin: 8.33vw 0 0;
  }
}
@media screen and (min-width : 768px) and (max-width : 1023px) {
  .p-recruit-education {
    margin: 8rem 0 0;
  }
}
@media screen and (max-width : 767px) {
  .p-recruit-education {
    margin: 6rem 0 0;
  }
}

.p-recruit-education__text {
  font-size: 1.7rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  line-height: 2;
  color: #3c3c3c;
}
@media screen and (max-width: 1200px) {
  .p-recruit-education__text {
    font-size: 1.42vw;
  }
}
@media screen and (min-width : 768px) and (max-width : 1023px) {
  .p-recruit-education__text {
    font-size: 1.6rem;
  }
}
@media screen and (max-width : 767px) {
  .p-recruit-education__text {
    font-size: 1.4rem;
    letter-spacing: 0.05em;
    line-height: 1.6;
  }
}
.p-recruit-education__text {
  margin: 0 0 4rem;
}
@media screen and (max-width : 767px) {
  .p-recruit-education__text {
    margin: 0 0 3rem;
  }
}

.p-recruit-education__plan-title {
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1.5;
  margin: 0 0 2.4rem;
}
@media screen and (max-width: 1200px) {
  .p-recruit-education__plan-title {
    font-size: 1.67vw;
  }
}
@media screen and (min-width : 768px) and (max-width : 1023px) {
  .p-recruit-education__plan-title {
    font-size: 1.8rem;
  }
}
@media screen and (max-width : 767px) {
  .p-recruit-education__plan-title {
    font-size: 1.6rem;
    letter-spacing: 0.05em;
    margin: 0 0 2rem;
  }
}

.p-recruit-education__table-container {
  width: 100%;
  margin: 0 0 4rem;
}
@media screen and (max-width: 1130px) {
  .p-recruit-education__table-container {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}
@media screen and (max-width : 767px) {
  .p-recruit-education__table-container {
    width: 100%;
    margin: 0 0 4rem;
  }
}

.p-recruit-education__table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
  min-width: 1056px;
}
@media screen and (max-width : 767px) {
  .p-recruit-education__table {
    min-width: 605px;
  }
}

.p-recruit-education__table-th,
.p-recruit-education__table-td,
.p-recruit-education__table-label {
  padding: 15px;
  text-align: center;
  font-size: 2rem;
  letter-spacing: 0.1em;
  line-height: 1.5;
  border: 1px solid #fff;
}
@media screen and (max-width: 1200px) {
  .p-recruit-education__table-th,
  .p-recruit-education__table-td,
  .p-recruit-education__table-label {
    font-size: 1.67vw;
  }
}
@media screen and (min-width : 768px) and (max-width : 1023px) {
  .p-recruit-education__table-th,
  .p-recruit-education__table-td,
  .p-recruit-education__table-label {
    font-size: 1.8rem;
  }
}
@media screen and (max-width : 767px) {
  .p-recruit-education__table-th,
  .p-recruit-education__table-td,
  .p-recruit-education__table-label {
    font-size: 1.1rem;
    padding: 10px;
  }
}

.p-recruit-education__table-th {
  height: 50px;
  font-weight: 400;
  color: #fff;
  background-color: #b0cd79;
}
@media screen and (max-width: 1200px) {
  .p-recruit-education__table-th {
    height: 4.17vw;
  }
}
@media screen and (min-width : 768px) and (max-width : 1023px) {
  .p-recruit-education__table-th {
    height: 45px;
  }
}
@media screen and (max-width : 767px) {
  .p-recruit-education__table-th {
    height: 40px;
  }
}
.p-recruit-education__table-th--fixed {
  width: 176px;
  font-weight: 400;
  background-color: #85B231;
}
@media screen and (max-width: 1200px) {
  .p-recruit-education__table-th--fixed {
    width: 14.67vw;
  }
}
@media screen and (min-width : 768px) and (max-width : 1023px) {
  .p-recruit-education__table-th--fixed {
    width: 160px;
  }
}
@media screen and (max-width: 1130px) {
  .p-recruit-education__table-th--fixed {
    position: sticky;
    left: 0;
    z-index: 2;
  }
}
@media screen and (max-width : 767px) {
  .p-recruit-education__table-th--fixed {
    position: sticky;
    left: 0;
    z-index: 2;
    width: 100px;
    background-color: #85B231;
  }
}

.p-recruit-education__table-label {
  font-weight: 400;
  color: #fff;
  background-color: #85B231;
}
.p-recruit-education__table-label--fixed {
  width: 176px;
}
@media screen and (max-width: 1200px) {
  .p-recruit-education__table-label--fixed {
    width: 14.67vw;
  }
}
@media screen and (min-width : 768px) and (max-width : 1023px) {
  .p-recruit-education__table-label--fixed {
    width: 160px;
  }
}
@media screen and (max-width: 1130px) {
  .p-recruit-education__table-label--fixed {
    position: sticky;
    left: 0;
    z-index: 2;
  }
}
@media screen and (max-width : 767px) {
  .p-recruit-education__table-label--fixed {
    position: sticky;
    left: 0;
    z-index: 2;
    width: 100px;
    background-color: #85B231;
  }
}

.p-recruit-education__table-td {
  vertical-align: middle;
  color: #3c3c3c;
  background-color: #e0eccb;
}

.p-recruit-education__table-row {
  height: 50px;
}
@media screen and (max-width: 1200px) {
  .p-recruit-education__table-row {
    height: 4.17vw;
  }
}
@media screen and (min-width : 768px) and (max-width : 1023px) {
  .p-recruit-education__table-row {
    height: 45px;
  }
}
@media screen and (max-width : 767px) {
  .p-recruit-education__table-row {
    height: 40px;
  }
}
.p-recruit-education__table-row--center {
  height: 90px;
}
@media screen and (max-width: 1200px) {
  .p-recruit-education__table-row--center {
    height: 7.5vw;
  }
}
@media screen and (min-width : 768px) and (max-width : 1023px) {
  .p-recruit-education__table-row--center {
    height: 80px;
  }
}
@media screen and (max-width : 767px) {
  .p-recruit-education__table-row--center {
    height: 70px;
  }
}
.p-recruit-education__table-row--center .p-recruit-education__table-td {
  text-align: center;
}

.p-recruit-education__table-inner {
  display: inline-block;
  text-align: left;
}

/* -------------------------------------------------
.p-recruit-license
---------------------------------------------------- */
.p-recruit-license__item {
  margin: 0 0 7.6rem;
}
@media screen and (max-width: 1200px) {
  .p-recruit-license__item {
    margin: 0 0 6.33vw;
  }
}
@media screen and (min-width : 768px) and (max-width : 1023px) {
  .p-recruit-license__item {
    margin: 0 0 6rem;
  }
}
@media screen and (max-width : 767px) {
  .p-recruit-license__item {
    margin: 0 0 4rem;
  }
}
.p-recruit-license__item:last-child {
  margin: 0;
}

.p-recruit-license__header {
  display: flex;
  align-items: center;
  gap: 0;
  margin: 0 0 2rem;
}

.p-recruit-license__number {
  font-family: "Oswald", sans-serif;
  font-size: 4rem;
  font-weight: 500;
  line-height: 1;
  color: #c2d898;
}
@media screen and (max-width : 767px) {
  .p-recruit-license__number {
    font-size: 3rem;
  }
}

.p-recruit-license__line {
  display: block;
  width: 1px;
  height: 4rem;
  margin: 0 18px;
  background-color: #c2d898;
}
@media screen and (max-width : 767px) {
  .p-recruit-license__line {
    height: 3rem;
    margin: 0 12px;
  }
}

.p-recruit-license__title {
  font-size: 2.4rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1.6;
  color: #3c3c3c;
}
@media screen and (max-width : 767px) {
  .p-recruit-license__title {
    font-size: 1.8rem;
    letter-spacing: 0.05em;
  }
}

.p-recruit-license__text {
  font-size: 1.7rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  line-height: 2;
  color: #3c3c3c;
}
@media screen and (max-width: 1200px) {
  .p-recruit-license__text {
    font-size: 1.42vw;
  }
}
@media screen and (min-width : 768px) and (max-width : 1023px) {
  .p-recruit-license__text {
    font-size: 1.6rem;
  }
}
@media screen and (max-width : 767px) {
  .p-recruit-license__text {
    font-size: 1.4rem;
    letter-spacing: 0.05em;
    line-height: 1.6;
  }
}
.p-recruit-license__text {
  margin: 0 0 3rem;
}

.p-recruit-license__table-title {
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1.6;
  margin: 0 0 2.4rem;
}
@media screen and (max-width: 1200px) {
  .p-recruit-license__table-title {
    font-size: 1.67vw;
  }
}
@media screen and (min-width : 768px) and (max-width : 1023px) {
  .p-recruit-license__table-title {
    font-size: 1.8rem;
  }
}
@media screen and (max-width : 767px) {
  .p-recruit-license__table-title {
    font-size: 1.6rem;
  }
}

.p-recruit-license__table {
  width: 653px;
  height: 230px;
  border-collapse: collapse;
}
@media screen and (max-width: 1200px) {
  .p-recruit-license__table {
    width: 54.42vw;
    height: 19.17vw;
  }
}
@media screen and (min-width : 768px) and (max-width : 1023px) {
  .p-recruit-license__table {
    width: 580px;
    height: 200px;
  }
}
@media screen and (max-width : 767px) {
  .p-recruit-license__table {
    width: 100%;
    height: auto;
  }
}

.p-recruit-license__table-th,
.p-recruit-license__table-td,
.p-recruit-license__table-label {
  padding: 15px;
  text-align: center;
  font-size: 2rem;
  letter-spacing: 0.1em;
  line-height: 1.5;
  border: 1px solid #fff;
}
@media screen and (max-width: 1200px) {
  .p-recruit-license__table-th,
  .p-recruit-license__table-td,
  .p-recruit-license__table-label {
    font-size: 1.67vw;
  }
}
@media screen and (min-width : 768px) and (max-width : 1023px) {
  .p-recruit-license__table-th,
  .p-recruit-license__table-td,
  .p-recruit-license__table-label {
    font-size: 1.8rem;
  }
}
@media screen and (max-width : 767px) {
  .p-recruit-license__table-th,
  .p-recruit-license__table-td,
  .p-recruit-license__table-label {
    font-size: 1.1rem;
    padding: 10px;
  }
}

.p-recruit-license__table-row {
  height: 50px;
}
@media screen and (max-width: 1200px) {
  .p-recruit-license__table-row {
    height: 4.17vw;
  }
}
@media screen and (min-width : 768px) and (max-width : 1023px) {
  .p-recruit-license__table-row {
    height: 45px;
  }
}
@media screen and (max-width : 767px) {
  .p-recruit-license__table-row {
    height: 40px;
  }
}

.p-recruit-license__table-th {
  height: 50px;
  text-align: center;
  font-weight: 400;
  color: #fff;
  background-color: #85b231;
}
@media screen and (max-width: 1200px) {
  .p-recruit-license__table-th {
    height: 4.17vw;
  }
}
@media screen and (min-width : 768px) and (max-width : 1023px) {
  .p-recruit-license__table-th {
    height: 45px;
  }
}
@media screen and (max-width : 767px) {
  .p-recruit-license__table-th {
    height: 40px;
  }
}

.p-recruit-license__table-label {
  width: 200px;
  text-align: center;
  font-weight: 400;
  color: #3c3c3c;
  background-color: #e0eccb;
}
@media screen and (max-width : 767px) {
  .p-recruit-license__table-label {
    width: 120px;
  }
}

.p-recruit-license__table-td {
  text-align: center;
  color: #3c3c3c;
  background-color: #e0eccb;
}

.p-recruit-license__table-inner {
  display: inline-block;
  text-align: left;
}

/* -------------------------------------------------
.p-recruit-jobs
---------------------------------------------------- */
.p-recruit-jobs {
  margin: 10.6rem 0 0;
}
@media screen and (max-width: 1200px) {
  .p-recruit-jobs {
    margin: 8.83vw 0 0;
  }
}
@media screen and (min-width : 768px) and (max-width : 1023px) {
  .p-recruit-jobs {
    margin: 8rem 0 0;
  }
}
@media screen and (max-width : 767px) {
  .p-recruit-jobs {
    margin: 6rem 0 0;
  }
}

.p-recruit-jobs__banner {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 240px;
  margin: 0 0 80px;
  background-image: url("../assets/images/bg_recruit_02_lg.jpg");
  background-size: cover;
  background-position: center 65%;
  background-repeat: no-repeat;
}
@media screen and (min-width : 768px) and (max-width : 1023px) {
  .p-recruit-jobs__banner {
    background-position: center 75%;
  }
}
@media screen and (max-width : 767px) {
  .p-recruit-jobs__banner {
    height: 140px;
    margin: 0 0 40px;
    background-position: center 100%;
  }
}
@media screen and (max-width: 375px) {
  .p-recruit-jobs__banner {
    height: 120px;
    background-size: 180% auto;
    background-position: center bottom;
  }
}
@media screen and (max-width: 280px) {
  .p-recruit-jobs__banner {
    height: 100px;
    background-size: 220% auto;
    background-position: center bottom;
  }
}
.p-recruit-jobs__banner::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: rgba(0, 0, 0, 0.2);
}

.p-recruit-jobs__banner-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  width: 90%;
  max-width: 1280px;
  height: 100%;
  margin: 0 auto;
}

.p-recruit-jobs__banner-title-en {
  font-family: "Oswald", sans-serif;
  font-size: 6rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1;
  color: #fff;
}
@media screen and (max-width : 767px) {
  .p-recruit-jobs__banner-title-en {
    font-size: 3.5rem;
  }
}

.p-recruit-jobs__banner-subtitle {
  margin: 10px 0 0;
  font-size: 1.8rem;
  font-weight: 300;
  letter-spacing: 0.1em;
  color: #fff;
}
@media screen and (max-width : 767px) {
  .p-recruit-jobs__banner-subtitle {
    margin: 0;
    font-size: 1.4rem;
  }
}

.p-recruit-jobs__intro {
  margin: 0 0 80px;
}
@media screen and (max-width : 767px) {
  .p-recruit-jobs__intro {
    margin: 0 0 30px;
  }
}

.p-recruit-jobs__intro-text {
  font-size: 1.7rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  line-height: 2;
  color: #3c3c3c;
}
@media screen and (max-width: 1200px) {
  .p-recruit-jobs__intro-text {
    font-size: 1.42vw;
  }
}
@media screen and (min-width : 768px) and (max-width : 1023px) {
  .p-recruit-jobs__intro-text {
    font-size: 1.6rem;
  }
}
@media screen and (max-width : 767px) {
  .p-recruit-jobs__intro-text {
    font-size: 1.4rem;
    letter-spacing: 0.05em;
    line-height: 1.6;
  }
}

.p-recruit-jobs__list {
  margin: 0 0 38px;
}

.p-recruit-jobs__item {
  margin: 0 0 5rem;
}
@media screen and (max-width : 767px) {
  .p-recruit-jobs__item {
    margin: 0 0 3rem;
  }
}
.p-recruit-jobs__item:last-child {
  margin: 0;
}

.p-recruit-jobs__item-header {
  display: flex;
  align-items: center;
  margin: 0 0 2rem;
}

.p-recruit-jobs__item-number {
  display: flex;
  align-items: center;
  font-family: "Oswald", sans-serif;
  font-size: 3.2rem;
  font-weight: 500;
  line-height: 1;
  color: #B2D17B;
}
.p-recruit-jobs__item-number::after {
  display: block;
  width: 1px;
  height: 3.2rem;
  margin: 0 22px;
  content: "";
  background-color: #B2D17B;
}
@media screen and (max-width : 767px) {
  .p-recruit-jobs__item-number::after {
    height: 2.4rem;
    margin: 0 15px;
  }
}

.p-recruit-jobs__item-title {
  font-size: 2.7rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: #3c3c3c;
}
@media screen and (max-width : 767px) {
  .p-recruit-jobs__item-title {
    font-size: 2rem;
    letter-spacing: 0.05em;
  }
}

.p-recruit-jobs__item-description {
  font-size: 1.7rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  line-height: 2;
  color: #3c3c3c;
}
@media screen and (max-width: 1200px) {
  .p-recruit-jobs__item-description {
    font-size: 1.42vw;
  }
}
@media screen and (min-width : 768px) and (max-width : 1023px) {
  .p-recruit-jobs__item-description {
    font-size: 1.6rem;
  }
}
@media screen and (max-width : 767px) {
  .p-recruit-jobs__item-description {
    font-size: 1.4rem;
    letter-spacing: 0.05em;
    line-height: 1.6;
  }
}
.p-recruit-jobs__item-description {
  margin: 0 0 4rem;
}
@media screen and (max-width : 767px) {
  .p-recruit-jobs__item-description {
    margin: 0 0 2rem;
  }
}

/* -------------------------------------------------
.p-recruit-jobs__flow
---------------------------------------------------- */
.p-recruit-jobs__flow {
  display: flex;
  justify-content: center;
  width: 1082px;
  height: 215px;
}
@media screen and (max-width: 1200px) {
  .p-recruit-jobs__flow {
    width: 90.17vw;
    height: 17.92vw;
  }
}
@media screen and (min-width : 768px) and (max-width : 1023px) {
  .p-recruit-jobs__flow {
    width: 100%;
    height: auto;
    min-height: 190px;
  }
}
@media screen and (max-width : 767px) {
  .p-recruit-jobs__flow {
    flex-direction: column;
    width: 100%;
    height: auto;
    gap: 0;
  }
}

.p-recruit-jobs__flow-item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 383px;
  height: 215px;
  padding: 40px 30px;
}
@media screen and (max-width: 1200px) {
  .p-recruit-jobs__flow-item {
    width: 31.92vw;
    height: 17.92vw;
    padding: 3.33vw 2.5vw;
  }
}
@media screen and (min-width : 1024px) {
  .p-recruit-jobs__flow-item:first-child {
    margin: 0 0 0 -20px;
    background-color: #e7f0d6;
    clip-path: polygon(0% 0%, 92.43% 0%, 100% 50%, 92.43% 100%, 0% 100%);
  }
  .p-recruit-jobs__flow-item:nth-child(2) {
    margin: 0 0 0 -20px;
    background-color: #dae8c1;
    clip-path: polygon(0% 0%, 92.43% 0%, 100% 50%, 92.43% 100%, 0% 100%, 7.57% 50%);
  }
  .p-recruit-jobs__flow-item:last-child {
    margin: 0 0 0 -20px;
    background-color: #cee0ac;
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%, 7.57% 50%);
  }
}
@media screen and (min-width : 768px) and (max-width : 1023px) {
  .p-recruit-jobs__flow-item {
    width: 35%;
    height: 180px;
    padding: 35px 35px;
  }
  .p-recruit-jobs__flow-item:first-child {
    margin-left: 0;
    background-color: #e7f0d6;
    clip-path: polygon(0% 0%, 90% 0%, 100% 50%, 90% 100%, 0% 100%);
  }
  .p-recruit-jobs__flow-item:nth-child(2) {
    margin: 0 0 0 -3%;
    background-color: #dae8c1;
    clip-path: polygon(0% 0%, 90% 0%, 100% 50%, 90% 100%, 0% 100%, 10% 50%);
  }
  .p-recruit-jobs__flow-item:last-child {
    margin: 0 0 0 -3%;
    background-color: #cee0ac;
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%, 10% 50%);
  }
}
@media screen and (max-width : 767px) {
  .p-recruit-jobs__flow-item {
    width: 100%;
    height: auto;
    padding: 25px 40px 45px;
    background-color: #e7f0d6;
    clip-path: polygon(0% 0%, 100% 0%, 100% calc(100% - 22px), 50% 100%, 0% calc(100% - 22px));
  }
  .p-recruit-jobs__flow-item:nth-child(2) {
    margin: -20px 0 0;
    padding: 45px 40px;
    background-color: #dae8c1;
    clip-path: polygon(0% 0%, 50% 22px, 100% 0%, 100% calc(100% - 22px), 50% 100%, 0% calc(100% - 22px));
  }
  .p-recruit-jobs__flow-item:last-child {
    margin: -20px 0 0;
    padding: 40px 40px 20px;
    background-color: #cee0ac;
    clip-path: polygon(0% 0%, 50% 22px, 100% 0%, 100% 100%, 0% 100%);
  }
}

.p-recruit-jobs__flow-inner {
  width: 100%;
  padding: 0 0 0 30px;
  text-align: left;
}
@media screen and (max-width: 1200px) {
  .p-recruit-jobs__flow-inner {
    padding: 0 0 0 4vw;
  }
}
@media screen and (min-width : 768px) and (max-width : 1023px) {
  .p-recruit-jobs__flow-inner {
    padding: 0;
    text-align: center;
  }
}
@media screen and (max-width : 767px) {
  .p-recruit-jobs__flow-inner {
    max-width: 100%;
    padding: 0;
    text-align: center;
  }
}

.p-recruit-jobs__flow-number {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 3.2rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: #85B231;
}
@media screen and (max-width: 1200px) {
  .p-recruit-jobs__flow-number {
    font-size: 2.67vw;
  }
}
@media screen and (min-width : 768px) and (max-width : 1023px) {
  .p-recruit-jobs__flow-number {
    font-size: 2.8rem;
  }
}
@media screen and (max-width : 767px) {
  .p-recruit-jobs__flow-number {
    font-size: 2.4rem;
    text-align: center;
  }
}

.p-recruit-jobs__flow-text {
  font-size: 1.7rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  line-height: 2;
  color: #3c3c3c;
}
@media screen and (max-width: 1200px) {
  .p-recruit-jobs__flow-text {
    font-size: 1.42vw;
  }
}
@media screen and (min-width : 768px) and (max-width : 1023px) {
  .p-recruit-jobs__flow-text {
    font-size: 1.6rem;
  }
}
@media screen and (max-width : 767px) {
  .p-recruit-jobs__flow-text {
    font-size: 1.4rem;
    letter-spacing: 0.05em;
    line-height: 1.6;
  }
}
.p-recruit-jobs__flow-text {
  line-height: 1.82;
  white-space: nowrap;
}
@media screen and (min-width : 768px) and (max-width : 1023px) {
  .p-recruit-jobs__flow-text {
    font-size: 1.4rem;
    white-space: normal;
    text-align: center;
  }
  .p-recruit-jobs__flow-text br {
    display: none;
  }
}
@media screen and (max-width : 767px) {
  .p-recruit-jobs__flow-text {
    line-height: 1.6;
    white-space: normal;
    text-align: center;
  }
}

.p-recruit-jobs__flow-footer {
  font-size: 1.7rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  line-height: 2;
  color: #3c3c3c;
}
@media screen and (max-width: 1200px) {
  .p-recruit-jobs__flow-footer {
    font-size: 1.42vw;
  }
}
@media screen and (min-width : 768px) and (max-width : 1023px) {
  .p-recruit-jobs__flow-footer {
    font-size: 1.6rem;
  }
}
@media screen and (max-width : 767px) {
  .p-recruit-jobs__flow-footer {
    font-size: 1.4rem;
    letter-spacing: 0.05em;
    line-height: 1.6;
  }
}
.p-recruit-jobs__flow-footer {
  margin: 2.2rem 0 0;
  text-align: left;
}
@media screen and (max-width: 1200px) {
  .p-recruit-jobs__flow-footer {
    margin: 1.83vw 0 0;
  }
}
@media screen and (min-width : 768px) and (max-width : 1023px) {
  .p-recruit-jobs__flow-footer {
    margin: 1rem 0 0;
  }
}
@media screen and (max-width : 767px) {
  .p-recruit-jobs__flow-footer {
    margin: 1.5rem 0 0;
  }
}

/* -------------------------------------------------
.p-recruit-contact
---------------------------------------------------- */
.p-recruit-contact {
  padding: 5rem 0 0;
  border-top: 1px solid #ccc;
}
@media screen and (max-width : 767px) {
  .p-recruit-contact {
    margin: 3rem 0 0;
    padding: 3rem 0 0;
  }
}

.p-recruit-contact__section:not(:last-child) {
  padding: 0 0 5rem;
}
@media screen and (max-width: 1200px) {
  .p-recruit-contact__section:not(:last-child) {
    padding: 0 0 4vw;
  }
}
@media screen and (min-width : 768px) and (max-width : 1023px) {
  .p-recruit-contact__section:not(:last-child) {
    padding: 0 0 4.5rem;
  }
}
@media screen and (max-width : 767px) {
  .p-recruit-contact__section:not(:last-child) {
    padding: 0 0 3rem;
  }
}
.p-recruit-contact__section:last-child {
  padding: 5rem 0 0;
  border-top: 1px solid #ccc;
}
@media screen and (max-width: 1200px) {
  .p-recruit-contact__section:last-child {
    padding: 4vw 0 0;
  }
}
@media screen and (min-width : 768px) and (max-width : 1023px) {
  .p-recruit-contact__section:last-child {
    padding: 4.5rem 0 0;
  }
}
@media screen and (max-width : 767px) {
  .p-recruit-contact__section:last-child {
    padding: 3rem 0 0;
  }
}

.p-recruit-contact__text {
  font-size: 1.7rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  line-height: 2;
  color: #3c3c3c;
}
@media screen and (max-width: 1200px) {
  .p-recruit-contact__text {
    font-size: 1.42vw;
  }
}
@media screen and (min-width : 768px) and (max-width : 1023px) {
  .p-recruit-contact__text {
    font-size: 1.6rem;
  }
}
@media screen and (max-width : 767px) {
  .p-recruit-contact__text {
    font-size: 1.4rem;
    letter-spacing: 0.05em;
    line-height: 1.6;
  }
}

.p-recruit-contact__info {
  margin: 3rem 0 0;
  font-size: 1.7rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  line-height: 2;
  color: #3c3c3c;
}
@media screen and (max-width: 1200px) {
  .p-recruit-contact__info {
    font-size: 1.42vw;
  }
}
@media screen and (min-width : 768px) and (max-width : 1023px) {
  .p-recruit-contact__info {
    font-size: 1.6rem;
  }
}
@media screen and (max-width : 767px) {
  .p-recruit-contact__info {
    font-size: 1.4rem;
    letter-spacing: 0.05em;
    line-height: 1.6;
  }
}

.c-link-email {
  text-decoration: none;
  font-weight: inherit;
  color: inherit;
  transition: color 0.3s ease;
}
.c-link-email:hover {
  color: #85B231;
}

/* ===============================================
style.scss
================================================ */
/* ===============================================
_header.scss
================================================ */
/* ===============================================
_works.scss
================================================ */
/* -------------------------------------------------
.p-works
---------------------------------------------------- */
.p-works {
  width: 100%;
  padding: 80px 0 100px;
}
@media screen and (max-width : 767px) {
  .p-works {
    padding: 40px 0;
  }
}

.p-works__inner {
  width: 90%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}
@media screen and (min-width : 768px) and (max-width : 1023px) {
  .p-works__inner {
    width: 100%;
    max-width: 100%;
    padding: 0 45px;
  }
}
@media screen and (max-width : 767px) {
  .p-works__inner {
    width: 100%;
    padding: 0 0 0 10px;
  }
}

/* -------------------------------------------------
.p-works__catch
---------------------------------------------------- */
.p-works__catch {
  margin: 0 0 80px;
}
@media screen and (max-width : 767px) {
  .p-works__catch {
    margin: 0 0 40px;
  }
}

.p-works__catch-heading {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin: 0 0 4rem;
  font-size: 3.2rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1;
}
@media screen and (max-width: 1200px) {
  .p-works__catch-heading {
    margin: 0 0 3.33vw;
    font-size: 2.6vw;
  }
}
@media screen and (min-width : 768px) and (max-width : 1023px) {
  .p-works__catch-heading {
    margin: 0 0 3.5rem;
  }
}
@media screen and (max-width : 767px) {
  .p-works__catch-heading {
    margin: 0 0 2rem;
    font-size: 1.8rem;
  }
}

.p-works__catch-line {
  display: inline-block;
  height: 5.2rem;
  margin: 0 0 2.4rem;
  padding: 0 20px;
  box-sizing: border-box;
  line-height: 5.2rem;
  font-size: 3.2rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: #fff;
  background-color: #85B231;
  white-space: nowrap;
}
.p-works__catch-line:last-child {
  margin: 0;
}
@media screen and (max-width: 1200px) {
  .p-works__catch-line {
    height: 4.3vw;
    margin: 0 0 2vw;
    padding: 0 1.25vw;
    line-height: 4.3vw;
    font-size: 2.6vw;
  }
}
@media screen and (min-width : 768px) and (max-width : 1023px) {
  .p-works__catch-line {
    font-size: 2.8rem;
    margin: 0 0 3.3rem;
    padding: 0 13px;
  }
}
@media screen and (max-width : 767px) {
  .p-works__catch-line {
    height: 3.6rem;
    margin: 0 0 1.2rem;
    padding: 0 12px;
    line-height: 3.6rem;
    font-size: 1.8rem;
  }
}

/* -------------------------------------------------
.p-works__section
---------------------------------------------------- */
.p-works__section {
  margin: 0;
}

.p-works__section-title {
  margin: 0 0 40px;
  font-size: 2.7rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 2.22;
  color: #85B231;
}
@media screen and (max-width: 1200px) {
  .p-works__section-title {
    font-size: 2.25vw;
    line-height: 2.22;
  }
}
@media screen and (min-width : 768px) and (max-width : 1023px) {
  .p-works__section-title {
    font-size: 2rem;
    line-height: 1.8;
  }
}
@media screen and (max-width : 767px) {
  .p-works__section-title {
    font-size: 1.6rem;
    letter-spacing: 0.05em;
    line-height: 1.6;
  }
}
@media screen and (max-width : 767px) {
  .p-works__section-title {
    margin: 0 0 10px;
  }
}

/* -------------------------------------------------
.p-works__list
---------------------------------------------------- */
.p-works__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid #d8d8d8;
  border-bottom: 1px solid #d8d8d8;
}
@media screen and (max-width : 767px) {
  .p-works__list {
    grid-template-columns: repeat(2, 1fr);
  }
}

.p-works__item {
  position: relative;
  display: flex;
  align-items: center;
  box-sizing: border-box;
  width: 100%;
  height: 122px;
  padding: 0 24px 0 46px;
  font-size: 1.7rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  line-height: 2;
  color: #3c3c3c;
}
@media screen and (max-width: 1200px) {
  .p-works__item {
    font-size: 1.42vw;
  }
}
@media screen and (min-width : 768px) and (max-width : 1023px) {
  .p-works__item {
    font-size: 1.6rem;
  }
}
@media screen and (max-width : 767px) {
  .p-works__item {
    font-size: 1.4rem;
    letter-spacing: 0.05em;
    line-height: 1.6;
  }
}
.p-works__item {
  letter-spacing: 0.05em;
  line-height: 1.47;
  border-bottom: 1px solid #d8d8d8;
}
.p-works__item:last-child {
  border-bottom: none;
}
.p-works__item::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 24px;
  width: 4px;
  height: 54px;
  transform: translateY(-50%);
  background-color: #85B231;
}
@media screen and (min-width : 768px) and (max-width : 1023px) {
  .p-works__item {
    height: 11.91vw;
    padding: 0 2.34vw 0 4.49vw;
  }
  .p-works__item::before {
    left: 2.34vw;
    height: 5.27vw;
  }
}
@media screen and (max-width : 767px) {
  .p-works__item {
    min-height: 60px;
    height: auto;
    padding: 10px 1px 10px 10px;
    font-size: 1.1rem;
    letter-spacing: 0;
  }
  .p-works__item::before {
    left: 1px;
    width: 2px;
    height: 20px;
  }
}

/* -------------------------------------------------
.p-works__note
---------------------------------------------------- */
.p-works__note {
  margin: 20px 0 0;
  font-size: 1.7rem;
  letter-spacing: 0.05em;
  text-align: right;
  color: #3c3c3c;
}
@media screen and (max-width : 767px) {
  .p-works__note {
    font-size: 1.4rem;
  }
}

/* ===============================================
_header.scss
================================================ */
/* ===============================================
_utility.scss
================================================ */
/* -------------------------------------------------
スクロールアニメーション（フェードイン）
---------------------------------------------------- */
.js-fade-in {
  opacity: 0;
  transform: translateY(120px);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

.js-fade-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* -------------------------------------------------
スマホ版専用改行
---------------------------------------------------- */
.u-br-sp {
  display: none;
}
@media screen and (min-width : 768px) and (max-width : 1023px) {
  .u-br-sp {
    display: block;
  }
}
@media screen and (max-width : 767px) {
  .u-br-sp {
    display: block;
  }
}

/* -------------------------------------------------
PC版専用改行
---------------------------------------------------- */
.u-br-pc {
  display: block;
}
@media screen and (min-width : 768px) and (max-width : 1023px) {
  .u-br-pc {
    display: none;
  }
}
@media screen and (max-width : 767px) {
  .u-br-pc {
    display: none;
  }
}

/* -------------------------------------------------
表示・非表示切り替え
---------------------------------------------------- */
@media screen and (max-width : 767px) {
  .u-hidden-sp {
    display: none !important;
  }
}

.u-visible-sp {
  display: none !important;
}
@media screen and (max-width : 767px) {
  .u-visible-sp {
    display: block !important;
  }
}

/* -------------------------------------------------
リンク装飾
---------------------------------------------------- */
.u-link-inherit {
  color: inherit;
  text-decoration: none;
}
/*# sourceMappingURL=maps/style.css.map */

/* -------------------------------------------------
強制的に調整
---------------------------------------------------- */
.fancybox-title-float #fancybox-title {
  font-weight: normal!important;
  line-height: 1.5!important;
  font-size: 13px!important;
}