@charset "UTF-8";
/*------------------------------------------------------------------------------
  reset PC
------------------------------------------------------------------------------*/
html {
  color: #000;
  word-break: normal;
  line-break: strict;
  height: 100%;
  margin: 0 auto;
  -webkit-appearance: none;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  height: 100%;
  margin: 0 auto;
}

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

img {
  border: 0;
  margin: 0;
  display: block;
  width: 100%;
}

p {
  margin: 0;
  padding: 0;
  overflow-wrap: break-word;
  word-wrap: break-word;
}

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

figure {
  margin: 0;
  padding: 0;
}

input,
select,
textarea,
button {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

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

textarea {
  resize: vertical;
}

::-webkit-input-placeholder {
  color: rgba(34, 34, 34, 0.4);
}

:-ms-input-placeholder {
  color: rgba(34, 34, 34, 0.4);
}

::-ms-input-placeholder {
  color: rgba(34, 34, 34, 0.4);
}

::-moz-placeholder {
  color: rgba(34, 34, 34, 0.4);
}

::placeholder {
  color: rgba(34, 34, 34, 0.4);
}

button {
  border: none;
  cursor: pointer;
}

table {
  border-collapse: collapse;
  table-layout: auto;
  border-spacing: 0;
}

th, td {
  border: none;
  padding: 0;
  margin: 0;
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 14px;
  font-weight: 500;
  margin: 0;
  padding: 0;
}

main {
  display: block;
}

#wrapper {
  position: relative;
  overflow: hidden;
}

dl, dt, dd {
  padding: 0;
  margin: 0;
}

address {
  font-style: normal;
}

@media only screen and (min-width: 768px) {
  .sp {
    display: none !important;
  }
  a[href^="tel:"] {
    pointer-events: none;
  }
}
.c-svg {
  display: inline-block;
  fill: currentColor;
  vertical-align: top;
}

@media only screen and (max-width: 767px) {
  body {
    font-size: 14px;
    position: relative;
    -webkit-appearance: none;
    -webkit-text-size-adjust: 100%;
  }
  input[type=submit] {
    -webkit-text-size-adjust: 100%;
  }
  input,
  select,
  textarea {
    font-size: 16px;
  }
  .pc {
    display: none !important;
  }
}
/*------------------------------------------------------------------------------
  base
------------------------------------------------------------------------------*/
html {
  font-size: 10px;
}
@media only screen and (min-width: 768px) {
  html {
    font-size: 0.9090909091vw;
  }
}
@media (min-width: 1100px) {
  html {
    font-size: 10px;
  }
}
@media (max-width: 375px) {
  html {
    font-size: 2.6666666667vw;
  }
}

body {
  color: #1D1D1D;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.06em;
  position: relative;
}

/* 表示領域外へはスクロールさせない */
.no_scroll {
  overflow: hidden;
}

/* -----------------------------------------------
* layout エントリーポイント
-------------------------------------------------- */
/* ------------------------------------------------
l-header
--------------------------------------------------- */
.l-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 777;
}

/* --------------------------------
l-inner
----------------------------------- */
.l-inner {
  max-width: 1260px;
  margin-inline: auto;
  padding-inline: 30px;
  width: 100%;
}
@media only screen and (max-width: 767px) {
  .l-inner {
    padding-inline: 20px;
    max-width: 600px;
  }
}

.l-inner--1100 {
  max-width: 1100px;
}
@media only screen and (max-width: 767px) {
  .l-inner--1100 {
    max-width: 600px;
  }
}

.l-inner--900 {
  max-width: 900px;
}
@media only screen and (max-width: 767px) {
  .l-inner--900 {
    max-width: 600px;
  }
}

/* -----------------------------------------------
* Modules エントリーポイント
-------------------------------------------------- */
/* ------------------------------------------------
c-btn
--------------------------------------------------- */
.c-btn {
  display: grid;
  place-items: center;
  position: relative;
  text-align: center;
  height: 5rem;
  min-width: 30rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  font-size: 2rem;
  letter-spacing: 0.1em;
  color: #fff;
  text-transform: uppercase;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}
@media only screen and (max-width: 767px) {
  .c-btn {
    min-width: 24rem;
    font-size: 1.8rem;
  }
}

.c-btn::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%) translateX(0);
          transform: translateY(-50%) translateX(0);
  width: 6rem;
  height: 0.2rem;
  background-color: #fff;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
@media only screen and (max-width: 767px) {
  .c-btn::after {
    width: 4rem;
  }
}

.c-btn--black {
  background-color: #1D1D1D;
  color: #fff;
}

.c-btn--green {
  background-color: #399d26;
  color: #fff;
}

.c-btn--border-white {
  background-color: transparent;
  color: #fff;
  border: 0.2rem solid #fff;
}

.c-btn--white {
  background-color: #fff;
  color: #1D1D1D;
  border: 0.2rem solid #1D1D1D;
}

.c-btn--white::after {
  background-color: #1D1D1D;
}

.c-btn--fixed {
  background-color: #399d26;
}
@media only screen and (max-width: 767px) {
  .c-btn--fixed {
    width: 100%;
    min-width: 17rem;
  }
  .c-btn--fixed::after {
    width: 2rem;
  }
}

.c-btn--recruit {
  background-color: #94BF4E;
}

.c-btn--post {
  padding-inline: 2rem;
  min-width: 24rem;
  background-color: #94BF4E;
}
@media only screen and (max-width: 767px) {
  .c-btn--post {
    height: 4rem;
    min-width: initial;
    padding-inline: 3rem 3.2rem;
  }
}

.c-btn--post span {
  font-size: 1.6rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
}
@media only screen and (max-width: 767px) {
  .c-btn--post span {
    font-size: 1.4rem;
  }
}

.c-btn--post::after {
  width: 4rem;
}
@media only screen and (max-width: 767px) {
  .c-btn--post::after {
    width: 2rem;
  }
}

.c-btn--green:hover {
  background-color: #205c29;
}

.c-btn:hover::after {
  -webkit-transform: translateY(-50%) translateX(3rem);
          transform: translateY(-50%) translateX(3rem);
}
@media only screen and (max-width: 767px) {
  .c-btn:hover::after {
    -webkit-transform: translateY(-50%) translateX(2rem);
            transform: translateY(-50%) translateX(2rem);
  }
}

.c-btn--fixed:hover {
  background-color: #205c29;
}

.c-btn--post:hover {
  background-color: #205c29;
}

@media only screen and (max-width: 767px) {
  .c-btn--fixed:hover::after {
    -webkit-transform: translateY(-50%) translateX(1rem);
            transform: translateY(-50%) translateX(1rem);
  }
}

.c-btn--post:hover::after {
  -webkit-transform: translateY(-50%) translateX(2rem);
          transform: translateY(-50%) translateX(2rem);
}
@media only screen and (max-width: 767px) {
  .c-btn--post:hover::after {
    -webkit-transform: translateY(-50%) translateX(1rem);
            transform: translateY(-50%) translateX(1rem);
  }
}

/* ------------------------------------------------
c-text
--------------------------------------------------- */
.c-text {
  margin-top: 2.6rem;
  color: #fff;
  font-size: max(1.6rem, 12px);
  line-height: 1.75;
  text-align: justify;
  letter-spacing: 0.15em;
}
@media only screen and (max-width: 767px) {
  .c-text {
    font-size: 1.4rem;
  }
}

.c-text--black {
  color: #1D1D1D;
}

/* ------------------------------------------------
c-section-title
--------------------------------------------------- */
.c-section-title span {
  display: block;
}

.c-section-title span:nth-of-type(1) {
  font-family: "Oswald", sans-serif;
  font-size: 6rem;
  font-weight: 700;
  text-transform: uppercase;
}
@media only screen and (max-width: 767px) {
  .c-section-title span:nth-of-type(1) {
    font-size: 4rem;
  }
}

.c-section-title span:nth-of-type(2) {
  margin-top: 1rem;
  font-size: max(1.6rem, 12px);
  letter-spacing: 0.2em;
  line-height: 1.75;
  color: #399d26;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 1rem;
     -moz-column-gap: 1rem;
          column-gap: 1rem;
}
@media only screen and (max-width: 767px) {
  .c-section-title span:nth-of-type(2) {
    margin-top: 1rem;
    font-size: 1.4rem;
  }
}

.c-section-title--white span:nth-of-type(1) {
  color: #fff;
}

.c-section-title span:nth-of-type(2)::after {
  background-color: #399d26;
  content: "";
  height: 1px;
  width: 6rem;
  display: inline-block;
}

.c-section-title--center {
  text-align: center;
}

.c-section-title--center span:nth-of-type(2) {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 1rem;
     -moz-column-gap: 1rem;
          column-gap: 1rem;
}

.c-section-title--center span:nth-of-type(2)::before {
  background-color: #399d26;
  content: "";
  height: 1px;
  width: 6rem;
  display: inline-block;
}

.c-section-title--black {
  color: #1D1D1D;
}

.c-section-title--contact {
  text-align: center;
}

.c-section-title--contact span:nth-of-type(1) {
  font-size: 6rem;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .c-section-title--contact span:nth-of-type(1) {
    font-size: 4rem;
  }
}

.c-section-title--contact span:nth-of-type(2) {
  display: block;
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}
@media only screen and (max-width: 767px) {
  .c-section-title--contact span:nth-of-type(2) {
    font-size: 1.6rem;
  }
}

.c-section-title--contact span:nth-of-type(2)::after {
  display: none;
}

/* ------------------------------------------------
c-line
--------------------------------------------------- */
.c-line {
  max-width: 1100px;
  width: 100%;
  margin-inline: auto;
  height: 27px;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .c-line {
    height: 20px;
  }
}
.c-line::before {
  content: "";
  position: absolute;
  top: 0;
  width: calc(100% + (100vw - 100%) / 2);
  height: 100%;
  background-color: #399d26;
}

.c-line--top::before {
  left: 3rem;
}
@media only screen and (max-width: 767px) {
  .c-line--top::before {
    left: 2rem;
  }
}

.c-line--bottom::before {
  right: 3rem;
}
@media only screen and (max-width: 767px) {
  .c-line--bottom::before {
    right: 2rem;
  }
}

/* --------------------------------
c-hamburger
----------------------------------- */
.c-hamburger {
  display: none;
}
@media only screen and (max-width: 767px) {
  .c-hamburger {
    width: 26px;
    height: inherit;
    margin-left: auto;
    position: relative;
    display: block;
    z-index: 999;
  }
}

.c-hamburger span {
  position: absolute;
  display: block;
  height: 2px;
  width: 26px;
  background-color: #fff;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  opacity: 1;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.c-hamburger:hover {
  cursor: pointer;
}

.c-hamburger span:nth-child(1) {
  top: 36%;
}

.c-hamburger span:nth-child(3) {
  top: 64%;
}

.c-hamburger.is-step01 span:nth-child(1) {
  top: 50%;
}

.c-hamburger.is-step01 span:nth-child(3) {
  top: 50%;
}

.c-hamburger.is-step02 span:nth-child(1) {
  top: 50%;
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
          transform: translate(-50%, -50%) rotate(-45deg);
  width: 30px;
}

.c-hamburger.is-step02 span:nth-child(2) {
  opacity: 0;
}

.c-hamburger.is-step02 span:nth-child(3) {
  top: 50%;
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
          transform: translate(-50%, -50%) rotate(45deg);
  width: 30px;
}

/* ------------------------------------------------
c-head
--------------------------------------------------- */
.c-head {
  width: min(41.6666666667vw, 600px);
  aspect-ratio: 1/1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-inline: 7rem;
}
@media only screen and (max-width: 767px) {
  .c-head {
    width: calc(100% - 3rem);
    aspect-ratio: auto;
    padding: 3rem 4rem;
  }
}

.c-head-box {
  max-width: 350px;
  width: 100%;
}

/* ------------------------------------------------
c-scroll
--------------------------------------------------- */
.c-scroll {
  position: absolute;
  bottom: 18rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  font-family: "Oswald", sans-serif;
  font-size: max(1.4rem, 10px);
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.4285714286;
  text-transform: uppercase;
}

.c-scroll ::before {
  -webkit-animation: scroll 2s infinite;
          animation: scroll 2s infinite;
  background-color: #1D1D1D;
  bottom: -7rem;
  content: "";
  height: 6rem;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  width: 1px;
}

@-webkit-keyframes scroll {
  0% {
    -webkit-transform: scale(1, 0);
            transform: scale(1, 0);
    -webkit-transform-origin: 0 0;
            transform-origin: 0 0;
  }
  50% {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
    -webkit-transform-origin: 0 0;
            transform-origin: 0 0;
  }
  51% {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
    -webkit-transform-origin: 0 100%;
            transform-origin: 0 100%;
  }
  100% {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
    -webkit-transform-origin: 0 100%;
            transform-origin: 0 100%;
  }
}

@keyframes scroll {
  0% {
    -webkit-transform: scale(1, 0);
            transform: scale(1, 0);
    -webkit-transform-origin: 0 0;
            transform-origin: 0 0;
  }
  50% {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
    -webkit-transform-origin: 0 0;
            transform-origin: 0 0;
  }
  51% {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
    -webkit-transform-origin: 0 100%;
            transform-origin: 0 100%;
  }
  100% {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
    -webkit-transform-origin: 0 100%;
            transform-origin: 0 100%;
  }
}
/* ------------------------------------------------
パンくず
--------------------------------------------------- */
.c-breadcrumbs {
  padding-block: 1.5rem 1.7rem;
  padding-inline: min(13.8888888889vw, 20rem);
  font-size: 1.4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media only screen and (max-width: 767px) {
  .c-breadcrumbs {
    padding-block: 1.2rem;
    padding-inline: 2rem;
    font-size: 1.2rem;
  }
}

/* 矢印（>）部分 */
.c-breadcrumbs .l-inner > span {
  display: inline-block;
  font-size: 1em;
  line-height: 1;
}

/* パンくずリンクとテキスト */
.c-breadcrumbs a,
.c-breadcrumbs span {
  display: inline-block;
  vertical-align: middle;
}

.c-breadcrumbs a {
  cursor: pointer;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

.c-breadcrumbs a:hover {
  opacity: 0.5;
}

.c-breadcrumbs span:not(:last-of-type) {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}

.c-breadcrumbs .current-item {
  padding-top: 0.4rem;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1; /* 任意の行数を指定 */
}
@media only screen and (max-width: 767px) {
  .c-breadcrumbs .current-item {
    padding-top: 0.2rem;
  }
}

.c-breadcrumbs .breadcrumb-icon {
  margin-top: 0.5rem;
  display: block;
  width: 0.8rem;
  aspect-ratio: 1/1;
  border-top: 2px solid #399d26;
  border-right: 2px solid #399d26;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

/* ------------------------------------------------
c-company-title
--------------------------------------------------- */
.c-company-title {
  text-align: center;
}

.c-company-title span {
  display: block;
}

.c-company-title span:nth-of-type(1) {
  font-size: 4rem;
  font-weight: 700;
  line-height: 1.45;
}
@media only screen and (max-width: 767px) {
  .c-company-title span:nth-of-type(1) {
    font-size: 3.2rem;
  }
}

.c-company-title span:nth-of-type(2) {
  margin-top: 1rem;
  font-size: max(2rem, 14px);
  line-height: 1.5;
  color: #399d26;
  font-weight: 700;
  font-family: "Oswald", sans-serif;
  text-transform: uppercase;
}
@media only screen and (max-width: 767px) {
  .c-company-title span:nth-of-type(2) {
    font-size: 1.4rem;
  }
}

.c-company-title--white span {
  color: #fff;
}

.c-company-title--white span:nth-of-type(2) {
  color: #fff;
}

/* ------------------------------------------------
c-business-title
--------------------------------------------------- */
.c-business-title span {
  display: block;
  text-align: center;
}

.c-business-title span:nth-of-type(1) {
  font-size: 10rem;
  font-weight: 700;
  font-family: "Oswald", sans-serif;
  color: transparent;
  -webkit-text-stroke: 1px #399d26;
  text-transform: uppercase;
}
@media only screen and (max-width: 767px) {
  .c-business-title span:nth-of-type(1) {
    font-size: 7rem;
  }
}

.c-business-title span:nth-of-type(2) {
  margin-top: -1.6rem;
  font-size: 4rem;
  font-weight: 700;
}
@media only screen and (max-width: 767px) {
  .c-business-title span:nth-of-type(2) {
    font-size: 3.2rem;
  }
}

.c-business-title--white span:nth-of-type(2) {
  color: #fff;
}

/* -----------------------------------------------
* Page エントリーポイント
-------------------------------------------------- */
/* common */
/* ------------------------------------------------
p-header
--------------------------------------------------- */
.p-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 8rem;
  color: #fff;
  background-color: transparent;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
  padding-right: 1.6rem;
  text-align: right;
}
@media only screen and (max-width: 767px) {
  .p-header {
    height: 6rem;
    padding-inline: 1.6rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

@media only screen and (max-width: 767px) {
  .p-header-logo {
    width: 11rem;
    position: relative;
    z-index: 1000;
  }
}

.p-header.is-bg {
  background-color: #1D1D1D;
}

.p-header-logo--before {
  visibility: hidden;
  opacity: 0;
  display: block;
  width: min(13.8194444444vw, 19.9rem);
  aspect-ratio: 1/1;
  background-color: #fff;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transition: opacity 0.3s, visibility 0.3s;
  transition: opacity 0.3s, visibility 0.3s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media only screen and (max-width: 767px) {
  .p-header-logo--before {
    display: none;
  }
}

.p-header-logo--after {
  position: absolute;
  top: 0;
  left: 3.6rem;
  opacity: 0;
  visibility: hidden;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: opacity 0.3s, visibility 0.3s;
  transition: opacity 0.3s, visibility 0.3s;
}
@media only screen and (max-width: 767px) {
  .p-header-logo--after {
    display: none;
  }
}

.p-header-logo--before.is-show,
.p-header-logo--after.is-show {
  opacity: 1;
  visibility: visible;
}

.p-header-logo--before .p-header-logo__img {
  width: 7.5rem;
  width: min(5.2083333333vw, 7.5rem);
  position: relative;
}

.p-header-logo--after .p-header-logo__img {
  width: 13rem;
}

.p-header__right {
  height: inherit;
  display: inline-block;
}

/* ------------------------------------------------
p-header-nav
--------------------------------------------------- */
.p-header-nav {
  height: inherit;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 2.4rem;
     -moz-column-gap: 2.4rem;
          column-gap: 2.4rem;
}

.p-header-nav__lists {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: inherit;
}

.p-header-nav__list {
  height: inherit;
}

.p-header-nav__list a {
  height: inherit;
  display: grid;
  place-content: center;
  padding-inline: 2.4rem;
  position: relative;
  text-transform: uppercase;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

.p-header-nav__list a span {
  text-align: center;
  font-size: max(1.8rem, 13px);
  font-family: "Oswald", sans-serif;
  letter-spacing: 0.06em;
  line-height: 1.1111111111;
  font-weight: 700;
  color: #fff;
}

.p-header-nav__list a span:nth-child(2) {
  color: #399d26;
  font-family: "Noto Sans JP", sans-serif;
  font-size: max(1.2rem, 10px);
  letter-spacing: 0.1em;
  line-height: 1.6666666667;
}

.p-header-nav__list a:hover {
  opacity: 0.7;
}

/* --------------------------------
p-drawer
----------------------------------- */
.p-drawer {
  position: fixed;
  top: 0;
  right: 0;
  height: 100%;
  width: 100%;
  color: #fff;
  padding-inline: 3rem;
  overflow-y: scroll;
  padding-bottom: 6rem;
  z-index: 888;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  background-color: #1D1D1D;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}

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

.p-drawer__info {
  margin-top: 6rem;
}

/* --------------------------------
p-drawer-nav
----------------------------------- */
.p-drawer-nav__lists {
  margin-top: 9rem;
}

.p-drawer-nav__list {
  text-align: left;
}

.p-drawer-nav__list a {
  display: block;
  position: relative;
  padding: 1.6rem 1.6rem 1.6rem 0;
  font-size: 1.6rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  min-width: 14rem;
}

/* --------------------------------
p-drawer-info
----------------------------------- */
.p-drawer-info__content {
  text-align: left;
}

.p-drawer-info__name {
  font-size: 2rem;
  letter-spacing: 0.1em;
}

.p-drawer-info__address {
  margin-top: 1.6rem;
  font-size: 1.4rem;
  line-height: 1.6;
  letter-spacing: 0.08em;
}

.p-drawer-info__tel {
  margin-top: 1.6rem;
  font-size: 2rem;
  letter-spacing: 0.06em;
  font-family: "Oswald", sans-serif;
}

.p-drawer-info__tel a {
  display: inline-block;
}

/* ------------------------------------------------
p-footer
--------------------------------------------------- */
.p-footer {
  position: relative;
  padding-block: 6.6rem 6.3rem;
  background-color: #1D1D1D;
  color: #fff;
}
@media only screen and (max-width: 767px) {
  .p-footer {
    padding-block: 4.8rem 5.6rem;
  }
}

.p-footer__inner {
  width: 100%;
  padding-inline: 8.3333333333vw 7.5vw;
}
@media (min-width: 768px) and (max-width: 1260px) {
  .p-footer__inner {
    padding-inline: 30px 18px;
  }
}
@media only screen and (max-width: 767px) {
  .p-footer__inner {
    padding-inline: 20px;
  }
}

.p-footer__contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media only screen and (max-width: 767px) {
  .p-footer__contents {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.p-footer__right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media only screen and (max-width: 767px) {
  .p-footer__right {
    margin-top: 2.4rem;
  }
}

.p-footer__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
@media only screen and (max-width: 767px) {
  .p-footer__head {
    margin-inline: auto;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.p-footer__btn {
  margin-top: 4.4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  padding-right: 1.2rem;
}
@media only screen and (max-width: 767px) {
  .p-footer__btn {
    margin-top: 2.4rem;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.p-footer__privacy {
  margin-top: 2rem;
  font-size: max(1.4rem, 11px);
  padding: 1.6rem 1.2rem;
  letter-spacing: 0.1em;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
@media only screen and (max-width: 767px) {
  .p-footer__privacy {
    font-size: 1.4rem;
    padding: 1.2rem;
    display: inline-block;
  }
}

.p-footer__foot {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
}
@media only screen and (max-width: 767px) {
  .p-footer__foot {
    margin-top: 2.4rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-inline: auto;
  }
}

.p-footer__foot small {
  font-size: 1.2rem;
  font-weight: 300;
  letter-spacing: 0.06em;
  line-height: 3.3333333333;
}

/* ------------------------------------------------
p-footer-info
--------------------------------------------------- */
.p-footer-info {
  color: #fff;
}
@media only screen and (max-width: 767px) {
  .p-footer-info {
    display: contents;
  }
}

@media only screen and (max-width: 767px) {
  .p-footer-info__company {
    margin-top: 0;
  }
}

.p-footer-info__company a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-column-gap: 2.4rem;
     -moz-column-gap: 2.4rem;
          column-gap: 2.4rem;
}
@media only screen and (max-width: 767px) {
  .p-footer-info__company a {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.p-footer-info__name {
  margin-top: 2rem;
  font-size: 2.4rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.1666666667;
}
@media only screen and (max-width: 767px) {
  .p-footer-info__name {
    margin-top: 2.4rem;
    font-size: 1.6rem;
    text-align: center;
  }
}

.p-footer-info__logo {
  width: 15rem;
}
@media only screen and (max-width: 767px) {
  .p-footer-info__logo {
    width: 20rem;
    padding-right: 0.6rem;
  }
}

.p-footer-info__content {
  margin-top: 5rem;
}
@media only screen and (max-width: 767px) {
  .p-footer-info__content {
    margin-top: 2.4rem;
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
}

.p-footer-info__content p {
  font-size: max(1.6rem, 12px);
  font-weight: 500;
  line-height: 1.75;
  letter-spacing: 0.1em;
}
@media only screen and (max-width: 767px) {
  .p-footer-info__content p {
    text-align: center;
    font-size: 1.2rem;
    line-height: 1.875;
  }
}

/* ------------------------------------------------
p-footer-nav
--------------------------------------------------- */
.p-footer-nav__lists {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media only screen and (max-width: 767px) {
  .p-footer-nav__lists {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.p-footer-nav__list a {
  font-size: max(1.6rem, 12px);
  padding: 1.6rem 1.2rem;
  letter-spacing: 0.1em;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
@media only screen and (max-width: 767px) {
  .p-footer-nav__list a {
    font-size: 1.4rem;
    padding: 1.2rem;
    display: inline-block;
  }
}

.p-footer-nav__list a:hover {
  opacity: 0.7;
}

/* ------------------------------------------------
p-fixed
--------------------------------------------------- */
.p-fixed {
  position: fixed;
  bottom: 0;
  right: 3rem;
  z-index: 666;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 4rem;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
@media only screen and (max-width: 767px) {
  .p-fixed {
    right: 0;
    width: 100%;
    padding-inline: 2rem;
    gap: 4%;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.p-fixed.is-hidden {
  opacity: 0;
  pointer-events: none;
}

/* ------------------------------------------------
p-lower-head
--------------------------------------------------- */
.p-lower-head__img {
  position: relative;
  margin-left: auto;
  width: calc(100% - min(13.8888888889vw, 20rem));
  border-bottom: 2.7rem solid #399d26;
  height: 32.7rem;
  overflow: hidden;
}
@media only screen and (max-width: 767px) {
  .p-lower-head__img {
    width: 100%;
    height: 20rem;
  }
}
.p-lower-head__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top left;
     object-position: top left;
}

.p-lower-head__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: absolute;
  bottom: min(4.1666666667vw, 6rem);
  left: min(5.6944444444vw, 8.2rem);
  font-weight: 700;
}
.p-lower-head__title span {
  display: block;
}
.p-lower-head__title span:nth-child(1) {
  font-family: "Oswald", sans-serif;
  font-size: 6rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
}
@media only screen and (max-width: 767px) {
  .p-lower-head__title span:nth-child(1) {
    font-size: 3.6rem;
    letter-spacing: 0.04em;
  }
}
.p-lower-head__title span:nth-child(2) {
  margin-top: 1.6rem;
  font-size: 2rem;
  color: #399d26;
  letter-spacing: 0.2em;
}
@media only screen and (max-width: 767px) {
  .p-lower-head__title span:nth-child(2) {
    margin-top: 0.8rem;
    font-size: 1.4rem;
  }
}

/* ------------------------------------------------
ページネーション
--------------------------------------------------- */
.wp-pagenavi {
  margin-top: 10.9rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 2rem;
  -webkit-column-gap: 2.1rem;
     -moz-column-gap: 2.1rem;
          column-gap: 2.1rem;
}
@media only screen and (max-width: 767px) {
  .wp-pagenavi {
    -webkit-column-gap: 1rem;
       -moz-column-gap: 1rem;
            column-gap: 1rem;
    margin-top: 5rem;
  }
}

.wp-pagenavi span,
.wp-pagenavi a {
  display: block;
  width: 4.8rem;
  height: 5.6rem;
  color: #1D1D1D;
  border: 1px solid #1D1D1D !important;
  background-color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  line-height: 1.4;
}
@media only screen and (max-width: 767px) {
  .wp-pagenavi span,
  .wp-pagenavi a {
    margin-top: 5.6rem;
    font-size: 1.6rem;
    width: 3.4rem;
    height: 4rem;
  }
}

.wp-pagenavi span:hover,
.wp-pagenavi a:hover {
  background-color: #1D1D1D;
  color: #fff;
}

.wp-pagenavi span.current {
  color: #fff;
  border: 1px solid #1D1D1D;
  background-color: #1D1D1D;
}

/* ------------------------------------------------
p-post-pagination
--------------------------------------------------- */
.p-post-pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-column-gap: 4rem;
     -moz-column-gap: 4rem;
          column-gap: 4rem;
}
@media only screen and (max-width: 767px) {
  .p-post-pagination {
    -webkit-column-gap: 1rem;
       -moz-column-gap: 1rem;
            column-gap: 1rem;
  }
}

.p-post-pagination__item {
  width: 10rem;
  height: 5.6rem;
}
@media only screen and (max-width: 767px) {
  .p-post-pagination__item {
    width: 8rem;
    height: 3.8rem;
  }
}

.prev-link,
.next-link {
  width: 100%;
  height: inherit;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 1.4rem;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
@media only screen and (max-width: 767px) {
  .prev-link,
  .next-link {
    font-size: 1.2rem;
  }
}

.prev-link:hover,
.next-link:hover {
  opacity: 0.6;
}

/* --------------------------------
js-fadeUp
----------------------------------- */
.js-fadeUp {
  -webkit-transition: opacity 1.2s, -webkit-transform 1s;
  transition: opacity 1.2s, -webkit-transform 1s;
  transition: opacity 1.2s, transform 1s;
  transition: opacity 1.2s, transform 1s, -webkit-transform 1s;
  -webkit-transition-delay: 0.3s;
          transition-delay: 0.3s;
  opacity: 0;
  -webkit-transform: translateY(50px);
          transform: translateY(50px);
}
@media only screen and (max-width: 767px) {
  .js-fadeUp {
    -webkit-transition: opacity 1s, -webkit-transform 0.6s;
    transition: opacity 1s, -webkit-transform 0.6s;
    transition: opacity 1s, transform 0.6s;
    transition: opacity 1s, transform 0.6s, -webkit-transform 0.6s;
    -webkit-transition-delay: 0s;
            transition-delay: 0s;
    -webkit-transform: translateY(30px);
            transform: translateY(30px);
  }
}

.js-fadeUp--01 {
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
}

.js-fadeUp--02 {
  -webkit-transition-delay: 0.5s;
          transition-delay: 0.5s;
}
@media only screen and (max-width: 767px) {
  .js-fadeUp--02 {
    -webkit-transition-delay: 0.3s;
            transition-delay: 0.3s;
  }
}

.js-fadeUp--03 {
  -webkit-transition-delay: 0.7s;
          transition-delay: 0.7s;
}
@media only screen and (max-width: 767px) {
  .js-fadeUp--03 {
    -webkit-transition-delay: 0.5s;
            transition-delay: 0.5s;
  }
}

.js-fadeUp--Right {
  -webkit-transition: opacity 1.2s, -webkit-transform 1s;
  transition: opacity 1.2s, -webkit-transform 1s;
  transition: opacity 1.2s, transform 1s;
  transition: opacity 1.2s, transform 1s, -webkit-transform 1s;
  -webkit-transform: translate(10%, 50px);
          transform: translate(10%, 50px);
}
@media only screen and (max-width: 767px) {
  .js-fadeUp--Right {
    -webkit-transition: opacity 1s, -webkit-transform 0.6s;
    transition: opacity 1s, -webkit-transform 0.6s;
    transition: opacity 1s, transform 0.6s;
    transition: opacity 1s, transform 0.6s, -webkit-transform 0.6s;
    -webkit-transform: translate(5%, 50px);
            transform: translate(5%, 50px);
  }
}

.js-fadeUp--Left {
  -webkit-transition: opacity 1.2s, -webkit-transform 1s;
  transition: opacity 1.2s, -webkit-transform 1s;
  transition: opacity 1.2s, transform 1s;
  transition: opacity 1.2s, transform 1s, -webkit-transform 1s;
  -webkit-transform: translate(-10%, 50px);
          transform: translate(-10%, 50px);
}
@media only screen and (max-width: 767px) {
  .js-fadeUp--Left {
    -webkit-transition: opacity 1s, -webkit-transform 0.6s;
    transition: opacity 1s, -webkit-transform 0.6s;
    transition: opacity 1s, transform 0.6s;
    transition: opacity 1s, transform 0.6s, -webkit-transform 0.6s;
    -webkit-transform: translate(-5%, 50px);
            transform: translate(-5%, 50px);
  }
}

.js-fadeUp.is-inview {
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
  opacity: 1;
}

/* --------------------------------
js-fadeRight js-fadeLeft
----------------------------------- */
.js-fadeRight {
  -webkit-transition: opacity 1.2s, -webkit-transform 1s;
  transition: opacity 1.2s, -webkit-transform 1s;
  transition: opacity 1.2s, transform 1s;
  transition: opacity 1.2s, transform 1s, -webkit-transform 1s;
  -webkit-transition-delay: 0.5s;
          transition-delay: 0.5s;
  -webkit-transform: translateX(100px);
          transform: translateX(100px);
  opacity: 0;
}
@media only screen and (max-width: 767px) {
  .js-fadeRight {
    -webkit-transition: opacity 0.8s, -webkit-transform 0.5s;
    transition: opacity 0.8s, -webkit-transform 0.5s;
    transition: opacity 0.8s, transform 0.5s;
    transition: opacity 0.8s, transform 0.5s, -webkit-transform 0.5s;
    -webkit-transform: translateX(50px);
            transform: translateX(50px);
  }
}

.js-fadeLeft {
  -webkit-transition: opacity 1.2s, -webkit-transform 1s;
  transition: opacity 1.2s, -webkit-transform 1s;
  transition: opacity 1.2s, transform 1s;
  transition: opacity 1.2s, transform 1s, -webkit-transform 1s;
  -webkit-transition-delay: 0.5s;
          transition-delay: 0.5s;
  -webkit-transform: translateX(-100px);
          transform: translateX(-100px);
  opacity: 0;
}
@media only screen and (max-width: 767px) {
  .js-fadeLeft {
    -webkit-transition: opacity 0.8s, -webkit-transform 0.5s;
    transition: opacity 0.8s, -webkit-transform 0.5s;
    transition: opacity 0.8s, transform 0.5s;
    transition: opacity 0.8s, transform 0.5s, -webkit-transform 0.5s;
    -webkit-transform: translateX(-50px);
            transform: translateX(-50px);
  }
}

.js-fadeLeft--02 {
  -webkit-transition: opacity 1.2s, -webkit-transform 1s;
  transition: opacity 1.2s, -webkit-transform 1s;
  transition: opacity 1.2s, transform 1s;
  transition: opacity 1.2s, transform 1s, -webkit-transform 1s;
  -webkit-transition-delay: 0.3s;
          transition-delay: 0.3s;
  -webkit-transform: translateX(-50px);
          transform: translateX(-50px);
}
@media only screen and (max-width: 767px) {
  .js-fadeLeft--02 {
    -webkit-transition: opacity 1s, -webkit-transform 0.6s;
    transition: opacity 1s, -webkit-transform 0.6s;
    transition: opacity 1s, transform 0.6s;
    transition: opacity 1s, transform 0.6s, -webkit-transform 0.6s;
    -webkit-transition-delay: 0s;
            transition-delay: 0s;
    -webkit-transform: translate(0, 30px);
            transform: translate(0, 30px);
  }
}

.js-fadeRight.is-inview {
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
  opacity: 1;
}

.js-fadeLeft.is-inview {
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
  opacity: 1;
}

/* --------------------------------
js-catch
----------------------------------- */
.js-catch {
  -webkit-transform: translateX(-7rem);
          transform: translateX(-7rem);
  clip-path: inset(0 100% 0 0);
  opacity: 0;
}

.js-catch--01 {
  -webkit-transition: 2.8s clip-path cubic-bezier(0.4, 0, 0.3, 0.96) 0.3s, opacity 1s ease-in 0.5s, -webkit-transform 0.6s ease-in 0.3s;
  transition: 2.8s clip-path cubic-bezier(0.4, 0, 0.3, 0.96) 0.3s, opacity 1s ease-in 0.5s, -webkit-transform 0.6s ease-in 0.3s;
  transition: 2.8s clip-path cubic-bezier(0.4, 0, 0.3, 0.96) 0.3s, transform 0.6s ease-in 0.3s, opacity 1s ease-in 0.5s;
  transition: 2.8s clip-path cubic-bezier(0.4, 0, 0.3, 0.96) 0.3s, transform 0.6s ease-in 0.3s, opacity 1s ease-in 0.5s, -webkit-transform 0.6s ease-in 0.3s;
}

.js-catch--02 {
  -webkit-transition: 2.8s clip-path cubic-bezier(0.4, 0, 0.3, 0.96) 1.7s, opacity 1s ease-in 1.7s, -webkit-transform 0.6s ease-in 1.7s;
  transition: 2.8s clip-path cubic-bezier(0.4, 0, 0.3, 0.96) 1.7s, opacity 1s ease-in 1.7s, -webkit-transform 0.6s ease-in 1.7s;
  transition: 2.8s clip-path cubic-bezier(0.4, 0, 0.3, 0.96) 1.7s, transform 0.6s ease-in 1.7s, opacity 1s ease-in 1.7s;
  transition: 2.8s clip-path cubic-bezier(0.4, 0, 0.3, 0.96) 1.7s, transform 0.6s ease-in 1.7s, opacity 1s ease-in 1.7s, -webkit-transform 0.6s ease-in 1.7s;
}

.js-catch--03 {
  -webkit-transition: 2.6s clip-path cubic-bezier(0.4, 0, 0.3, 0.96) 2.9s, opacity 1s ease-in 3s, -webkit-transform 0.6s ease-in 2.9s;
  transition: 2.6s clip-path cubic-bezier(0.4, 0, 0.3, 0.96) 2.9s, opacity 1s ease-in 3s, -webkit-transform 0.6s ease-in 2.9s;
  transition: 2.6s clip-path cubic-bezier(0.4, 0, 0.3, 0.96) 2.9s, transform 0.6s ease-in 2.9s, opacity 1s ease-in 3s;
  transition: 2.6s clip-path cubic-bezier(0.4, 0, 0.3, 0.96) 2.9s, transform 0.6s ease-in 2.9s, opacity 1s ease-in 3s, -webkit-transform 0.6s ease-in 2.9s;
}

.js-catch.is-show {
  clip-path: inset(0 0 0 0);
  -webkit-transform: translateX(0);
          transform: translateX(0);
  opacity: 1;
}

/* page */
/* ------------------------------------------------
p-top
--------------------------------------------------- */
.p-top__container {
  position: relative;
  overflow: hidden;
  margin-top: -12rem;
  padding-top: 12rem;
}

.p-top__logo {
  position: absolute;
  z-index: 2;
  top: 0;
  left: -0.5rem;
  font-size: 15rem;
  font-weight: 700;
  font-family: "Oswald", sans-serif;
  letter-spacing: 0.12em;
  color: transparent;
  -webkit-text-stroke: 1px #1D1D1D;
  text-transform: uppercase;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
}
@media only screen and (max-width: 767px) {
  .p-top__logo {
    font-size: 7rem;
    left: 0.5rem;
    top: 3rem;
  }
}

/* ------------------------------------------------
p-top-fv
--------------------------------------------------- */
.p-top-fv {
  width: 100%;
  position: relative;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100vh;
  background-image: url(../img/common/bg_steel.jpg);
  background-repeat: repeat;
  background-position: top center;
  background-size: cover;
}
@media only screen and (max-width: 767px) {
  .p-top-fv {
    display: block;
  }
}

.p-top-fv__scroll {
  position: relative;
  width: min(13.8888888889vw, 20rem);
}

.p-top-fv__movie {
  width: calc(100vw - min(13.8888888889vw, 20rem));
  z-index: 5;
  overflow: hidden;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .p-top-fv__movie {
    width: 100%;
    height: 100vh;
  }
}

.p-top-fv__movie::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  mix-blend-mode: multiply;
  z-index: 1;
}

.p-top-fv__movie video {
  width: 100%;
  height: 100vh;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transform: scale(1.01);
          transform: scale(1.01);
}
@media only screen and (max-width: 767px) {
  .p-top-fv__movie video {
    -o-object-position: center center;
       object-position: center center;
  }
}

.p-top-fv__contents {
  position: absolute;
  z-index: 5;
  top: 0;
  left: min(13.8888888889vw, 20rem);
  width: calc(100vw - min(13.8888888889vw, 20rem));
  height: 100%;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  padding-bottom: 20vh;
  padding-left: 10rem;
}
@media only screen and (max-width: 767px) {
  .p-top-fv__contents {
    width: 100%;
    left: 0;
    padding-bottom: 16vh;
    padding-inline: 3rem;
  }
}
.p-top-fv__contents h1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 3.2rem;
}
@media only screen and (max-width: 767px) {
  .p-top-fv__contents h1 {
    row-gap: 2rem;
  }
}
.p-top-fv__contents h1 span {
  display: block;
  font-size: 6.2rem;
  font-weight: 700;
  white-space: nowrap;
}
@media only screen and (max-width: 767px) {
  .p-top-fv__contents h1 span {
    font-size: 2.6rem;
  }
}
.p-top-fv__contents p {
  margin-top: 3rem;
  font-size: 1.6rem;
  line-height: 1.875;
  font-family: "Oswald", sans-serif;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
@media only screen and (max-width: 767px) {
  .p-top-fv__contents p {
    margin-top: 2.4rem;
    font-size: 1rem;
  }
}

.p-top-fv__logo {
  position: absolute;
  top: 50%;
  left: 8rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 70rem;
  opacity: 0.2;
}
@media (min-width: 768px) and (max-width: 900px) {
  .p-top-fv__logo {
    top: 55%;
  }
}
@media only screen and (max-width: 767px) {
  .p-top-fv__logo {
    max-width: 50rem;
    width: 100%;
    padding-inline: 3rem;
    left: 0;
    top: initial;
    -webkit-transform: translateY(0);
            transform: translateY(0);
    bottom: 30vh;
  }
}

/* ------------------------------------------------
p-top__strength
--------------------------------------------------- */
.p-top-strength {
  margin-top: -9.5rem;
  position: relative;
  padding-block: 18.6rem 22rem;
  background-color: #fff;
  overflow: hidden;
}
@media only screen and (max-width: 767px) {
  .p-top-strength {
    margin-top: 0;
    padding-block: 6rem 12rem;
  }
}

.p-top-strength__bg {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: auto;
}
.p-top-strength__bg img {
  width: auto;
  height: 100%;
}

.p-top-strength__inner {
  position: relative;
}

.p-top-strength__body {
  margin-top: 7.5rem;
  max-width: 1040px;
  margin-inline: auto;
}
@media only screen and (max-width: 767px) {
  .p-top-strength__body {
    margin-top: 5.6rem;
  }
}

.p-top-strength__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 4rem;
}
@media only screen and (max-width: 767px) {
  .p-top-strength__items {
    row-gap: 3rem;
  }
}
@media only screen and (max-width: 484px) {
  .p-top-strength__items {
    row-gap: 2.4rem;
  }
}

.p-strength-item {
  position: relative;
  padding-left: 8rem;
  padding-bottom: 3.6rem;
}
@media only screen and (max-width: 767px) {
  .p-strength-item {
    padding-left: 3.6rem;
    padding-bottom: 2.4rem;
  }
}

.p-strength-item::before {
  content: "";
  position: absolute;
  left: 0.2rem;
  bottom: 0;
  width: 12rem;
  height: 0.6rem;
  background-color: #399d26;
  -webkit-transform: rotate(-55deg);
          transform: rotate(-55deg);
  -webkit-transform-origin: bottom left;
          transform-origin: bottom left;
  border-radius: 3px 0 0 0;
}
@media only screen and (max-width: 767px) {
  .p-strength-item::before {
    width: 7rem;
    height: 0.3rem;
    -webkit-transform: rotate(-70deg);
            transform: rotate(-70deg);
  }
}

.p-strength-item::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 0.6rem;
  width: 100%;
  background-color: #399d26;
  border-radius: 0 0 0 3px;
}
@media only screen and (max-width: 767px) {
  .p-strength-item::after {
    height: 0.3rem;
    width: 100%;
  }
}

.p-strength-item:nth-child(2) {
  margin-left: 8rem;
}
@media only screen and (max-width: 767px) {
  .p-strength-item:nth-child(2) {
    margin-left: 0;
  }
}

.p-strength-item:nth-child(3) {
  margin-left: 16rem;
}
@media only screen and (max-width: 767px) {
  .p-strength-item:nth-child(3) {
    margin-left: 0;
  }
}
@media only screen and (max-width: 484px) {
  .p-strength-item:nth-child(3) {
    margin-top: 1.4rem;
  }
}

@media only screen and (max-width: 484px) {
  .p-strength-item:nth-child(2)::before {
    width: 8rem;
  }
}

.p-strength-item:nth-child(1)::after {
  width: calc(100% - 16rem);
}
@media only screen and (max-width: 767px) {
  .p-strength-item:nth-child(1)::after {
    width: 100%;
  }
}

.p-strength-item:nth-child(2)::after {
  width: calc(100% - 8rem);
}
@media only screen and (max-width: 767px) {
  .p-strength-item:nth-child(2)::after {
    width: 100%;
  }
}

.p-strength-item__content {
  padding-left: 7rem;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .p-strength-item__content {
    padding-left: 4rem;
  }
}

.p-strength-item__content::before {
  position: absolute;
  content: attr(data-number);
  top: 46%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  font-size: 8.5rem;
  font-weight: 700;
  color: #399d26;
  font-family: "Oswald", sans-serif;
}
@media only screen and (max-width: 767px) {
  .p-strength-item__content::before {
    font-size: 5.6rem;
  }
}

.p-strength-item__title {
  font-size: 3.6rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.2;
  -webkit-transform: scale(1, 1.1);
          transform: scale(1, 1.1);
}
@media only screen and (max-width: 767px) {
  .p-strength-item__title {
    font-size: 2rem;
    -webkit-font-feature-settings: "palt";
            font-feature-settings: "palt";
  }
}

/* ------------------------------------------------
p-top__service
--------------------------------------------------- */
.p-top-service {
  padding-bottom: 16rem;
  position: relative;
  background-image: url(../img/common/bg_steel.jpg);
  background-repeat: repeat;
  background-position: top center;
  background-size: cover;
}
@media only screen and (max-width: 767px) {
  .p-top-service {
    padding-bottom: 16rem;
    background-repeat: repeat-y;
    background-size: 100%;
  }
}

.p-top-service__container {
  max-width: 1440px;
  width: 100%;
  margin-inline: auto;
  position: relative;
  top: -6.9444444444vw;
  z-index: 5;
}
@media screen and (min-width: 1440px) {
  .p-top-service__container {
    top: -100px;
  }
}

.p-service-head {
  margin-left: auto;
  background-color: #1D1D1D;
}

.p-top-service__body {
  margin-top: -24.3055555556vw;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  -webkit-column-gap: 5.8rem;
     -moz-column-gap: 5.8rem;
          column-gap: 5.8rem;
  width: min(83.3333333333vw, 1200px);
  margin-inline: auto;
  position: relative;
}
@media screen and (min-width: 1440px) {
  .p-top-service__body {
    margin-top: -350px;
  }
}
@media only screen and (max-width: 767px) {
  .p-top-service__body {
    margin-top: 4rem;
    grid-template-columns: 1fr;
    row-gap: 3rem;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    max-width: 600px;
    width: 100%;
    padding-inline: 3rem;
  }
}

.p-top-service__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 6.5rem;
}
@media only screen and (max-width: 767px) {
  .p-top-service__items {
    display: contents;
  }
}

.p-top-service__items:nth-child(2) {
  margin-top: 25rem;
}
@media only screen and (max-width: 767px) {
  .p-top-service__items:nth-child(2) {
    margin-top: 0;
  }
}

@media only screen and (max-width: 767px) {
  .p-service-item:nth-of-type(1) {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}

@media only screen and (max-width: 767px) {
  .p-service-item:nth-of-type(2) {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}

@media only screen and (max-width: 767px) {
  .p-service-item:nth-of-type(3) {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
}

@media only screen and (max-width: 767px) {
  .p-service-item:nth-of-type(4) {
    -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
  }
}

.p-service-item > a {
  position: relative;
  display: block;
  width: 100%;
  border: 2px solid #fff;
}

@media only screen and (max-width: 767px) {
  .p-service-item {
    -webkit-box-ordinal-group: initial;
        -ms-flex-order: initial;
            order: initial;
  }
}

.p-service-item__img {
  position: relative;
  overflow: hidden;
}

.p-service-item__img::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  mix-blend-mode: multiply;
  background-color: rgba(51, 51, 51, 0.5);
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
  z-index: 1;
}

.p-service-item__img img {
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}

.p-service-item__title {
  background-color: #399d26;
  position: absolute;
  top: 0;
  left: 0;
  width: min(12.5vw, 180px);
  width: clamp(120px, 12.5vw, 180px);
  aspect-ratio: 1/1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 3;
}
@media only screen and (max-width: 767px) {
  .p-service-item__title {
    width: 11rem;
  }
}

.p-service-item__title span {
  color: #fff;
}

.p-service-item__title span:nth-child(1) {
  font-family: "Oswald", sans-serif;
  font-size: 2rem;
  line-height: 1;
}
@media only screen and (max-width: 767px) {
  .p-service-item__title span:nth-child(1) {
    font-size: 1.6rem;
  }
}

.p-service-item__title span:nth-child(2) {
  margin-top: 1rem;
  font-size: clamp(16px, 1.6666666667vw, 24px);
  line-height: 1.1666666667;
  letter-spacing: 0.2em;
}
@media only screen and (max-width: 767px) {
  .p-service-item__title span:nth-child(2) {
    margin-top: 0.6rem;
    font-size: 1.6rem;
  }
}

.p-service-item__more {
  position: absolute;
  bottom: 2rem;
  right: 0;
  height: 3rem;
  width: 14rem;
  z-index: 3;
}
@media only screen and (max-width: 767px) {
  .p-service-item__more {
    bottom: 0;
    width: 10rem;
  }
}

.p-service-item__more span {
  color: #399d26;
  font-size: 2rem;
  font-weight: 700;
  font-family: "Oswald", sans-serif;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media only screen and (max-width: 767px) {
  .p-service-item__more span {
    font-size: 1.6rem;
  }
}

.p-service-item__more span::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 6rem;
  height: 0.2rem;
  background-color: #399d26;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
@media only screen and (max-width: 767px) {
  .p-service-item__more span::after {
    width: 4rem;
  }
}

.p-service-item a:hover .p-service-item__more span::after {
  -webkit-transform: translateY(-50%) translateX(3rem);
          transform: translateY(-50%) translateX(3rem);
}
@media only screen and (max-width: 767px) {
  .p-service-item a:hover .p-service-item__more span::after {
    -webkit-transform: translateY(-50%) translateX(1rem);
            transform: translateY(-50%) translateX(1rem);
  }
}

.p-service-item a:hover .p-service-item__img img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.p-service-item a:hover .p-service-item__img::before {
  background-color: rgba(51, 51, 51, 0);
}

.p-top-service__btn {
  position: absolute;
  bottom: 0;
  left: 0;
}
@media only screen and (max-width: 767px) {
  .p-top-service__btn {
    position: static;
    margin-top: 4rem;
  }
}

/* ------------------------------------------------
p-top__facility
--------------------------------------------------- */
.p-top-facility {
  padding-bottom: 15rem;
  background-color: #1D1D1D;
}
@media only screen and (max-width: 767px) {
  .p-top-facility {
    padding-bottom: 5rem;
  }
}

.p-top-facility__container {
  margin-top: -6.9444444444vw;
  position: relative;
  z-index: 10;
  max-width: 1440px;
  width: 100%;
  margin-inline: auto;
}
@media (min-width: 1440px) {
  .p-top-facility__container {
    margin-top: -100px;
  }
}
@media (max-width: 767px) {
  .p-top-facility__container {
    margin-top: -100px;
  }
}

.p-facility-head {
  background-color: #fff;
}

.p-facility-head__btn {
  margin-top: 4rem;
}

.p-top-facility__body {
  margin-top: max(-15.9722222222vw, -230px);
  width: min(83.3333333333vw, 1200px);
  margin-inline: auto;
}
@media only screen and (max-width: 767px) {
  .p-top-facility__body {
    margin-top: 3rem;
    width: 100%;
    padding-left: 3rem;
  }
}

.p-top-facility__img {
  margin-left: auto;
  width: min(54.1666666667vw, 780px);
}
@media only screen and (max-width: 767px) {
  .p-top-facility__img {
    width: 100%;
  }
}

/* ------------------------------------------------
p-top__product
--------------------------------------------------- */
.p-top-product {
  padding-block: 11rem 13rem;
  position: relative;
  overflow: hidden;
  background-image: url(../img/common/bg_steel.jpg);
  background-repeat: no-repeat;
  background-position: center, center;
  background-size: cover;
}
@media only screen and (max-width: 767px) {
  .p-top-product {
    background-repeat: repeat-y;
    background-size: 100%;
    padding-block: 8rem;
  }
}

.p-top-product__deco {
  position: absolute;
  top: 0;
  left: 0;
  width: auto;
  height: 48.6111111111vw;
}
@media only screen and (max-width: 767px) {
  .p-top-product__deco {
    height: 60%;
  }
}
.p-top-product__deco img {
  height: 100%;
  width: auto;
}

.p-top-product__container {
  max-width: 1440px;
  width: 100%;
  margin-inline: auto;
}

.p-product-head {
  background-color: #1D1D1D;
  margin-left: auto;
  position: relative;
  z-index: 1;
}

.p-product-head__btn {
  margin-top: 4rem;
}

.p-top-product__body {
  margin-top: max(-15.9722222222vw, -230px);
  width: min(83.3333333333vw, 1200px);
  margin-inline: auto;
}
@media only screen and (max-width: 767px) {
  .p-top-product__body {
    margin-top: 3rem;
    width: 100%;
    padding-right: 3rem;
  }
}

.p-top-product__img {
  position: relative;
  z-index: 3;
  width: min(54.1666666667vw, 780px);
}
@media only screen and (max-width: 767px) {
  .p-top-product__img {
    width: 100%;
  }
}

/* ------------------------------------------------
p-top__company
--------------------------------------------------- */
.p-top-company {
  padding-block: 12rem 6.5rem;
}
@media only screen and (max-width: 767px) {
  .p-top-company {
    padding-block: 8rem 4.8rem;
  }
}

.p-top-company__body {
  margin-top: 5rem;
}
@media only screen and (max-width: 767px) {
  .p-top-company__body {
    margin-top: 2rem;
  }
}

.p-company-address {
  font-size: max(1.8rem, 13px);
  letter-spacing: 0.1em;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .p-company-address {
    font-size: 1.4rem;
  }
}

.p-company-address p {
  line-height: 2.2222222222;
}
.p-company-address p:nth-child(1) {
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}
.p-company-address p:nth-child(2) {
  margin-top: 1.6rem;
  line-height: 1.6;
}

.p-top-company__banner {
  margin-top: 12rem;
}
@media only screen and (max-width: 767px) {
  .p-top-company__banner {
    margin-top: 4.8rem;
  }
}

.p-top-company__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 4rem;
     -moz-column-gap: 4rem;
          column-gap: 4rem;
}
@media only screen and (max-width: 767px) {
  .p-top-company__items {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 2.4rem;
    max-width: 400px;
    width: 100%;
    margin-inline: auto;
  }
}

.p-company-link a {
  position: relative;
  display: block;
  overflow: hidden;
}

.p-company-link a span {
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  color: #fff;
  font-size: 2rem;
  letter-spacing: 0.1em;
  line-height: 1.35;
}
@media only screen and (max-width: 767px) {
  .p-company-link a span {
    font-size: 1.8rem;
  }
}

.p-company-link__img {
  overflow: hidden;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}

.p-company-link__img::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
  z-index: 1;
}

.p-company-link__img img {
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}

.p-company-link a:hover .p-company-link__img img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.p-company-link a:hover .p-company-link__img::before {
  background-color: rgba(51, 51, 51, 0);
}

.p-top-company__map {
  margin-top: 7.5rem;
  aspect-ratio: 1040/376;
  width: 100%;
}
@media only screen and (max-width: 767px) {
  .p-top-company__map {
    margin-top: 2.4rem;
    max-width: 400px;
    aspect-ratio: 400/300;
    width: 100%;
    margin-inline: auto;
  }
}

.p-top-company__map iframe {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-top-company__btn {
  margin-top: 8rem;
  display: grid;
  place-items: center;
}
@media only screen and (max-width: 767px) {
  .p-top-company__btn {
    margin-top: 4.8rem;
  }
}

/* ------------------------------------------------
p-top-news
--------------------------------------------------- */
.p-top-news {
  padding-block: 6.5rem 15rem;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .p-top-news {
    padding-block: 4.8rem 8rem;
  }
}

.p-top-news__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media only screen and (max-width: 767px) {
  .p-top-news__body {
    display: block;
  }
}

.p-top-news__items {
  margin-top: 2rem;
  width: 81rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 1rem;
}
@media only screen and (max-width: 767px) {
  .p-top-news__items {
    width: 100%;
    row-gap: 2rem;
  }
}

.p-news-link {
  position: relative;
  border-bottom: 1px solid #969393;
}

.p-news-link::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 1px;
  height: 2rem;
  background-color: #969393;
}

.p-news-link a {
  height: inherit;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 2rem 2.4rem;
  -webkit-column-gap: 9rem;
     -moz-column-gap: 9rem;
          column-gap: 9rem;
  font-size: max(1.6rem, 12px);
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
@media only screen and (max-width: 767px) {
  .p-news-link a {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-column-gap: 2rem;
       -moz-column-gap: 2rem;
            column-gap: 2rem;
    padding: 1rem 1.6rem;
  }
}
.p-news-link a time {
  font-size: max(1.4rem, 10px);
}
@media only screen and (max-width: 767px) {
  .p-news-link a time {
    font-size: 1.2rem;
  }
}

.p-news-link a:hover {
  opacity: 0.7;
}

.p-news-link__title {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 1.6rem;
}
@media only screen and (max-width: 767px) {
  .p-news-link__title {
    margin-top: 0.8rem;
    font-size: 1.4rem;
  }
}

.p-top-news__btn {
  margin-top: 4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
@media only screen and (max-width: 767px) {
  .p-top-news__btn {
    margin-top: 5rem;
    text-align: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

/* ------------------------------------------------
p-top__recruit
--------------------------------------------------- */
.p-top-recruit {
  padding-block: 7rem 12rem;
  background-color: #1D1D1D;
  border-bottom: 2px solid #399d26;
}
@media only screen and (max-width: 767px) {
  .p-top-recruit {
    padding-block: 4.8rem 7rem;
  }
}

.p-top-recruit__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 4rem;
     -moz-column-gap: 4rem;
          column-gap: 4rem;
}
@media only screen and (max-width: 767px) {
  .p-top-recruit__container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 6rem;
  }
}

.p-recruit-head {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.p-recruit-head__btn {
  margin-top: 3rem;
}
@media only screen and (max-width: 767px) {
  .p-recruit-head__btn {
    text-align: center;
  }
}

.p-top-recruit__img {
  margin-top: 5rem;
  width: min(55.5555555556vw, 800px);
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media only screen and (max-width: 767px) {
  .p-top-recruit__img {
    margin-top: 0;
    width: 100%;
  }
}

.p-top-recruit__img img {
  aspect-ratio: 800/430;
  -o-object-fit: cover;
     object-fit: cover;
}

/* ------------------------------------------------
p-business-link
--------------------------------------------------- */
.p-business-link {
  margin-top: 9rem;
}
@media only screen and (max-width: 767px) {
  .p-business-link {
    margin-top: 4rem;
  }
}

.p-business-link__btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 6rem;
     -moz-column-gap: 6rem;
          column-gap: 6rem;
}
@media only screen and (max-width: 767px) {
  .p-business-link__btns {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 3rem;
  }
}

/* ------------------------------------------------
p-business
--------------------------------------------------- */
.p-business-service {
  padding-block: 12rem 16rem;
}
@media only screen and (max-width: 767px) {
  .p-business-service {
    padding-block: 6rem 8rem;
  }
}

.p-business-service__text {
  margin-top: 3.2rem;
  text-align: center;
  font-size: max(1.6rem, 12px);
  line-height: 1.875;
}
@media only screen and (max-width: 767px) {
  .p-business-service__text {
    font-size: 1.4rem;
    text-align: justify;
  }
}

@media only screen and (max-width: 767px) {
  .p-business-service__body {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    max-width: 600px;
    width: 100%;
    margin-inline: auto;
  }
}

.p-business-service__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 8.5rem;
}
@media only screen and (max-width: 767px) {
  .p-business-service__items {
    display: contents;
  }
}

.p-business-item {
  padding-top: 8.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 4.4rem;
     -moz-column-gap: 4.4rem;
          column-gap: 4.4rem;
}
@media only screen and (max-width: 767px) {
  .p-business-item {
    padding-top: 6rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 2rem;
  }
}

.p-business-item__img {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 48rem;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .p-business-item__img {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    width: 100%;
  }
}

.p-business-item__img img {
  aspect-ratio: 480/300;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-business-item__body {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media only screen and (max-width: 767px) {
  .p-business-item__body {
    display: contents;
  }
}

.p-business-item__title {
  font-size: 3rem;
  font-weight: 700;
  padding-bottom: 3rem;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .p-business-item__title {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    font-size: 2.4rem;
    padding-bottom: 1.6rem;
  }
}

.p-business-item__title::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: -7rem;
  width: 30rem;
  height: 0.6rem;
  background-color: #399d26;
}
@media only screen and (max-width: 767px) {
  .p-business-item__title::before {
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    width: 100%;
    height: 0.3rem;
  }
}

.p-business-item__text {
  margin-top: 2rem;
  font-weight: 500;
  font-size: max(1.6rem, 12px);
  line-height: 1.75;
  text-align: justify;
}
@media only screen and (max-width: 767px) {
  .p-business-item__text {
    margin-top: 0;
    font-size: 1.4rem;
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
}

/* ------------------------------------------------
p-business-facility
--------------------------------------------------- */
.p-business-facility {
  background-color: #1D1D1D;
  padding-block: 10rem 16rem;
}
@media only screen and (max-width: 767px) {
  .p-business-facility {
    padding-block: 6rem 8rem;
  }
}

.p-business-facility__body {
  margin-top: 13.6rem;
}
@media only screen and (max-width: 767px) {
  .p-business-facility__body {
    margin-top: 6rem;
  }
}

.p-business-facility__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 7rem;
}
@media only screen and (max-width: 767px) {
  .p-business-facility__container {
    row-gap: 3rem;
    max-width: 600px;
    width: 100%;
    margin-inline: auto;
  }
}

.p-business-facility__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 4rem;
     -moz-column-gap: 4rem;
          column-gap: 4rem;
}
@media only screen and (max-width: 767px) {
  .p-business-facility__items {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 4rem;
  }
}

.p-facility-item {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 2.4rem;
  color: #fff;
}
@media only screen and (max-width: 767px) {
  .p-facility-item {
    row-gap: 1.6rem;
  }
}

.p-facility-item__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 1rem;
     -moz-column-gap: 1rem;
          column-gap: 1rem;
  padding-bottom: 1rem;
  border-bottom: 3px solid #399d26;
}
@media only screen and (max-width: 767px) {
  .p-facility-item__title {
    padding-bottom: 0.6rem;
    border-bottom: 1px solid #399d26;
    -webkit-column-gap: 0.6rem;
       -moz-column-gap: 0.6rem;
            column-gap: 0.6rem;
  }
}

.p-facility-item__title span:nth-of-type(1) {
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.4285714286;
  text-indent: -0.5em;
}
@media only screen and (max-width: 767px) {
  .p-facility-item__title span:nth-of-type(1) {
    font-size: 1.8rem;
  }
}

.p-facility-item__title small {
  font-size: max(1.2rem, 10px);
}
@media only screen and (max-width: 767px) {
  .p-facility-item__title small {
    font-size: 1rem;
  }
}

.p-facility-item__lists {
  margin-top: 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 1.6rem;
}
@media only screen and (max-width: 767px) {
  .p-facility-item__lists {
    margin-top: 1rem;
    row-gap: 1rem;
  }
}

.p-facility-item__list {
  display: grid;
  grid-template-columns: 21rem 1fr;
}
@media only screen and (max-width: 767px) {
  .p-facility-item__list {
    grid-template-columns: 19rem 1fr;
  }
}

.p-facility-item__range {
  font-size: max(1.6rem, 12px);
  font-weight: 700;
  line-height: 1.5;
}
@media only screen and (max-width: 767px) {
  .p-facility-item__range {
    font-size: 1.4rem;
  }
}

.p-facility-item__value {
  font-size: max(1.6rem, 12px);
  font-weight: 700;
  line-height: 1.5;
}
@media only screen and (max-width: 767px) {
  .p-facility-item__value {
    font-size: 1.4rem;
  }
}

.p-facility-item__value small {
  font-size: max(1.2rem, 10px);
}
@media only screen and (max-width: 767px) {
  .p-facility-item__value small {
    font-size: 1rem;
  }
}

.p-facility-item__img {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.p-facility-item__body--others {
  margin-top: 0;
}

.p-facility-item__lists--others {
  row-gap: 2rem;
}

.p-facility-item__list--others {
  grid-template-columns: 16rem 1fr;
}
@media only screen and (max-width: 767px) {
  .p-facility-item__list--others {
    grid-template-columns: 12rem 1fr;
  }
}

.p-facility-item__range--others {
  font-size: max(2rem, 14px);
}
@media only screen and (max-width: 767px) {
  .p-facility-item__range--others {
    font-size: 1.4rem;
  }
}

.p-facility-item__value--others {
  font-size: max(2rem, 14px);
}
@media only screen and (max-width: 767px) {
  .p-facility-item__value--others {
    font-size: 1.4rem;
  }
}

/* ------------------------------------------------
p-business-products
--------------------------------------------------- */
.p-business-products {
  padding-block: 14rem;
}
@media only screen and (max-width: 767px) {
  .p-business-products {
    padding-block: 8rem;
  }
}

.p-business-products__body {
  margin-top: 9rem;
}
@media only screen and (max-width: 767px) {
  .p-business-products__body {
    margin-top: 4rem;
  }
}

.p-business-products__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 8rem;
}
@media only screen and (max-width: 767px) {
  .p-business-products__items {
    row-gap: 4rem;
    max-width: 600px;
    width: 100%;
    margin-inline: auto;
  }
}

.p-products-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 1.8rem;
}

.p-products-block__title {
  font-size: 3rem;
  font-weight: 700;
  padding: 1.8rem 3.6rem;
  border-bottom: 0.6rem solid #399d26;
  border-left: 0.6rem solid #399d26;
}
@media only screen and (max-width: 767px) {
  .p-products-block__title {
    font-size: 1.8rem;
    padding: 1.2rem 1.6rem;
    border-bottom: 0.3rem solid #399d26;
    border-left: 0.3rem solid #399d26;
  }
}

.p-products-block__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 4.8rem;
     -moz-column-gap: 4.8rem;
          column-gap: 4.8rem;
}
@media only screen and (max-width: 767px) {
  .p-products-block__body {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 1.6rem;
  }
}

.p-products-block__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 4rem;
}
@media only screen and (max-width: 767px) {
  .p-products-block__items {
    row-gap: 2rem;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}

.p-products-introduction__title {
  font-size: 3rem;
  font-weight: 700;
  color: #399d26;
}
@media only screen and (max-width: 767px) {
  .p-products-introduction__title {
    font-size: 1.8rem;
  }
}

.p-products-introduction__text {
  margin-top: 1rem;
  font-size: max(1.6rem, 12px);
  line-height: 1.5;
  text-align: justify;
}
@media only screen and (max-width: 767px) {
  .p-products-introduction__text {
    margin-top: 0.6rem;
    font-size: 1.4rem;
  }
}

.p-products-block__img {
  margin-top: 3.6rem;
  width: 37rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media only screen and (max-width: 767px) {
  .p-products-block__img {
    margin-top: 0;
    width: 100%;
  }
}

/* ------------------------------------------------
p-facility-spec
--------------------------------------------------- */
.p-facility-spec {
  margin-top: 13.6rem;
  background-color: #fff;
}
@media only screen and (max-width: 767px) {
  .p-facility-spec {
    margin-top: 6rem;
    overflow: scroll;
  }
}

.p-facility-spec::-webkit-scrollbar {
  height: 0.6rem;
}

.p-facility-spec::-webkit-scrollbar-track {
  background-color: #fff;
}

.p-facility-spec::-webkit-scrollbar-thumb {
  background-color: #399d26;
  border-radius: 100vh;
  border-radius: 0;
}

.p-facility-spec__table {
  border-collapse: collapse;
  width: 100%;
  text-align: center;
  border: 0.5rem solid #399d26;
}
@media only screen and (max-width: 767px) {
  .p-facility-spec__table {
    white-space: nowrap;
  }
}

.p-facility-spec__table th,
td {
  padding: 1.6rem 2.4rem;
  border: 1px solid #1D1D1D;
  font-size: max(1.6rem, 12px);
}
@media only screen and (max-width: 767px) {
  .p-facility-spec__table th,
  td {
    font-size: 1.4rem;
    padding: 1rem 1.8rem;
  }
}

.p-facility-spec__table th {
  font-weight: 500;
}

.p-facility-spec__thead th {
  background-color: #e1e1e1;
  border-bottom: 2px solid #1D1D1D;
}

/* ------------------------------------------------
p-company-philosophy
--------------------------------------------------- */
.p-company-philosophy {
  position: relative;
  padding-bottom: 14rem;
}
@media only screen and (max-width: 767px) {
  .p-company-philosophy {
    padding-bottom: 6rem;
  }
}

.p-company-philosophy__bg {
  position: absolute;
  top: 0;
  right: 0;
  width: auto;
  height: 48.6111111111vw;
}
@media only screen and (max-width: 767px) {
  .p-company-philosophy__bg {
    height: 60%;
  }
}
.p-company-philosophy__bg img {
  height: 100%;
  width: auto;
}

.p-company-philosophy__deco {
  width: 25rem;
  height: 35rem;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media only screen and (max-width: 767px) {
  .p-company-philosophy__deco {
    width: 15rem;
    height: 20rem;
  }
}

.p-company-philosophy__head {
  margin-top: 7.6rem;
  position: relative;
  z-index: 3;
}
@media only screen and (max-width: 767px) {
  .p-company-philosophy__head {
    margin-top: 3.6rem;
  }
}

.p-company-philosophy__body {
  margin-top: 15rem;
  position: relative;
  z-index: 3;
}
@media only screen and (max-width: 767px) {
  .p-company-philosophy__body {
    margin-top: 4.8rem;
  }
}

.p-company-philosophy__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 3.6rem;
  width: 84rem;
  margin-inline: auto;
}
@media only screen and (max-width: 767px) {
  .p-company-philosophy__items {
    width: 100%;
  }
}

.p-company-philosophy__item {
  font-size: max(1.8rem, 13px);
  font-weight: 700;
}
@media only screen and (max-width: 767px) {
  .p-company-philosophy__item {
    font-size: 1.6rem;
    line-height: 1.4;
    text-indent: -1.3em;
    padding-left: 1.3em;
    text-align: justify;
  }
}

/* ------------------------------------------------
p-company-greeting
--------------------------------------------------- */
.p-company-greeting {
  padding-block: 14rem;
}
@media only screen and (max-width: 767px) {
  .p-company-greeting {
    padding-block: 6rem;
  }
}

.p-greeting-content {
  margin-top: 4rem;
}
@media only screen and (max-width: 767px) {
  .p-greeting-content {
    margin-top: 2.6rem;
  }
}

.p-greeting-content__greeting {
  font-size: max(1.8rem, 13px);
  font-weight: 700;
  line-height: 1.875;
  text-align: justify;
}
@media only screen and (max-width: 767px) {
  .p-greeting-content__greeting {
    font-size: 1.6rem;
  }
}

.p-greeting-content__name {
  margin-top: 6rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  -webkit-column-gap: 1.6rem;
     -moz-column-gap: 1.6rem;
          column-gap: 1.6rem;
}
@media only screen and (max-width: 767px) {
  .p-greeting-content__name {
    margin-top: 3rem;
  }
}

.p-greeting-content__name span:nth-of-type(1) {
  font-size: max(1.6rem, 12px);
  font-weight: 700;
}
@media only screen and (max-width: 767px) {
  .p-greeting-content__name span:nth-of-type(1) {
    font-size: 1.4rem;
  }
}

.p-greeting-content__name span:nth-of-type(2) {
  font-size: max(2rem, 14px);
  font-weight: 700;
  line-height: 1.6666666667;
}
@media only screen and (max-width: 767px) {
  .p-greeting-content__name span:nth-of-type(2) {
    font-size: 1.8rem;
  }
}

/* ------------------------------------------------
p-company-overview
--------------------------------------------------- */
.p-company-overview {
  position: relative;
  overflow: hidden;
  background-image: url(../img/common/bg_steel.jpg);
  background-repeat: repeat;
  background-position: top, center;
  background-size: cover;
}
@media only screen and (max-width: 767px) {
  .p-company-overview {
    background-repeat: repeat-y;
    background-size: 100%;
  }
}

.p-company-overview__wrap {
  position: relative;
}

.p-company-overview__bg {
  width: 100%;
  height: 36rem;
}
@media only screen and (max-width: 767px) {
  .p-company-overview__bg {
    height: 30rem;
  }
}

.p-company-overview__bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-company-overview__bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  mix-blend-mode: multiply;
  background-color: rgba(51, 51, 51, 0.8);
}

.p-company-overview__head {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.p-company-overview__body {
  margin-top: -8rem;
  background-color: #fff;
  padding-inline: 8rem;
  padding-block: 8rem 10rem;
  position: relative;
  z-index: 2;
}
@media only screen and (max-width: 767px) {
  .p-company-overview__body {
    margin-top: -4rem;
    padding-block: 1.6rem 3rem;
    padding-inline: 2rem;
  }
}

.p-overview-info__list {
  display: grid;
  grid-template-columns: 16rem 1fr;
  padding: 3rem 2.6rem;
  border-bottom: 1px solid #707070;
}
@media only screen and (max-width: 767px) {
  .p-overview-info__list {
    grid-template-columns: 1fr;
    row-gap: 1rem;
    padding: 1.6rem 0.8rem;
  }
}

.p-overview-info__list:last-of-type {
  border-bottom: none;
}

.p-overview-info__label {
  font-size: max(1.8rem, 13px);
  line-height: 1.7777777778;
}
@media only screen and (max-width: 767px) {
  .p-overview-info__label {
    font-size: 1.6rem;
  }
}

.p-overview-info__value {
  font-size: max(1.8rem, 13px);
  line-height: 1.7777777778;
}
@media only screen and (max-width: 767px) {
  .p-overview-info__value {
    font-size: 1.4rem;
  }
}

.p-overview-info__value span {
  margin-left: 6rem;
  text-transform: uppercase;
}
@media only screen and (max-width: 767px) {
  .p-overview-info__value span {
    margin-left: 0;
  }
}

.p-overview-info__value-second {
  margin-top: 3rem;
}
@media only screen and (max-width: 767px) {
  .p-overview-info__value-second {
    margin-top: 1.6rem;
  }
}

.p-overview-info__factory {
  text-indent: -0.5em;
}

.p-company-overview__map {
  margin-top: 12rem;
  width: 100%;
  aspect-ratio: 1440/400;
}
@media only screen and (max-width: 767px) {
  .p-company-overview__map {
    margin-top: 6rem;
    aspect-ratio: 375/300;
  }
}

.p-company-overview__map iframe {
  width: 100%;
  height: 100%;
}

/* ------------------------------------------------
p-company-history
--------------------------------------------------- */
.p-company-history {
  padding-block: 9.6rem 13.6rem;
}
@media only screen and (max-width: 767px) {
  .p-company-history {
    padding-block: 6rem 8rem;
  }
}

.p-company-history__content {
  margin-top: 6rem;
}
@media only screen and (max-width: 767px) {
  .p-company-history__content {
    margin-top: 3rem;
  }
}

.p-company-history__lists {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.p-company-history__list {
  display: grid;
  grid-template-columns: 15rem 1fr;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding: 2.6rem 3.4rem;
  border-bottom: 1px solid #1D1D1D;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .p-company-history__list {
    grid-template-columns: 1fr;
    row-gap: 1rem;
    padding: 2rem 1.6rem;
  }
}

.p-company-history__list::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 1px;
  height: 6rem;
  background-color: #1D1D1D;
}

.p-company-history__date {
  font-size: max(1.6rem, 12px);
  line-height: 1.875;
}
@media only screen and (max-width: 767px) {
  .p-company-history__date {
    font-size: 1.4rem;
  }
}

.p-company-history__event {
  font-size: max(1.8rem, 13px);
  line-height: 1.7777777778;
}
@media only screen and (max-width: 767px) {
  .p-company-history__event {
    font-size: 1.4rem;
  }
}

/* ------------------------------------------------
p-contact
--------------------------------------------------- */
.p-contact {
  position: relative;
  z-index: 3;
  background-color: #f3f3f3;
}

.p-contact__container {
  padding-bottom: 20rem;
}
@media only screen and (max-width: 767px) {
  .p-contact__container {
    padding-bottom: 9.6rem;
  }
}

.p-contact__tel {
  padding-block: 8rem 16rem;
}
@media only screen and (max-width: 767px) {
  .p-contact__tel {
    padding-block: 4rem 8rem;
  }
}

.p-tel__body {
  margin-top: 4rem;
  text-align: center;
  padding-block: 5.6rem;
  background-color: #fff;
}
@media only screen and (max-width: 767px) {
  .p-tel__body {
    margin-top: 2.4rem;
    padding-block: 3rem;
  }
}

.p-tel__body a {
  font-size: 5.6rem;
  font-weight: 700;
  line-height: 1.4;
  color: #399d26;
  font-family: "Oswald", sans-serif;
  letter-spacing: 0.1em;
  position: relative;
  padding-left: 6rem;
}
@media only screen and (max-width: 767px) {
  .p-tel__body a {
    font-size: 3.2rem;
    padding-left: 3rem;
  }
}

.p-tel__body a::before {
  content: "";
  position: absolute;
  top: 55%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 4.8rem;
  height: 4.8rem;
  -webkit-mask-image: url(../img/common/icon_tel.svg);
          mask-image: url(../img/common/icon_tel.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-size: 100%;
          mask-size: 100%;
  background-color: #399d26;
  aspect-ratio: 1/1;
}
@media only screen and (max-width: 767px) {
  .p-tel__body a::before {
    width: 2.4rem;
    height: 2.4rem;
  }
}

.p-tel__business-hours {
  margin-top: 1.1rem;
  font-size: 1.8rem;
  line-height: 1.5;
  font-weight: 700;
}
@media only screen and (max-width: 767px) {
  .p-tel__business-hours {
    margin-top: 0.5rem;
    font-size: 1.4rem;
  }
}

.p-tel__form {
  padding-block: 10.2rem 17.6rem;
}
@media only screen and (max-width: 767px) {
  .p-tel__form {
    padding-block: 5.6rem 8rem;
  }
}

.p-form__body {
  margin-top: 4rem;
  background-color: #fff;
  padding: 8rem;
}
@media only screen and (max-width: 767px) {
  .p-form__body {
    margin-top: 2.4rem;
    padding: 2rem 2rem 4rem;
  }
}

.p-form__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.p-form__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-bottom: 0.1rem solid #d9dbde;
  padding: 3.2rem 0;
}
@media only screen and (max-width: 767px) {
  .p-form__item {
    padding: 2rem 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.p-form__item:last-child {
  border-bottom: none;
}

.p-form-item__label {
  font-size: 1.6rem;
  line-height: 1.4;
  width: 21rem;
  padding-top: 1.8rem;
}
@media only screen and (max-width: 767px) {
  .p-form-item__label {
    padding-top: 0;
    font-size: 1.5rem;
    width: 100%;
    margin-top: 0;
  }
}

.p-form-item__label span {
  font-size: 1.2rem;
  color: #fff;
  background-color: #E00E0F;
  padding: 0.1rem 0.7rem 0.2rem;
  margin-left: 0.8rem;
  line-height: 1;
}

.p-form dd {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media only screen and (max-width: 767px) {
  .p-form dd {
    margin-top: 0.8rem;
    width: 100%;
  }
}

input[type=text],
input[type=tel],
input[type=email] {
  width: 100%;
  height: 5rem;
  background: #ebebeb;
  font-size: 1.6rem;
  line-height: 1.4;
  font-weight: 400;
  padding: 1.8rem 0 1.8rem 2.4rem;
}
@media only screen and (max-width: 767px) {
  input[type=text],
  input[type=tel],
  input[type=email] {
    padding: 0.8rem 0 0.8rem 1.2rem;
    font-size: 1.5rem;
    height: 4rem;
  }
}

.p-form-item__textarea {
  width: 100%;
}
@media only screen and (max-width: 767px) {
  .p-form-item__textarea {
    margin-top: 0.8rem;
  }
}

textarea {
  background: #ebebeb;
  width: 100%;
  min-height: 35rem;
  padding: 1.8rem 2.4rem;
  font-size: 1.6rem;
  line-height: 1.6;
  font-weight: 400;
}
@media only screen and (max-width: 767px) {
  textarea {
    min-height: 20rem;
    padding: 0.8rem 0.8rem 0.8rem 1.2rem;
    font-size: 1.5rem;
  }
}

.p-contact-check {
  margin-top: 3.3rem;
  padding-left: 23rem;
}
@media only screen and (max-width: 767px) {
  .p-contact-check {
    margin-top: 1em;
    text-align: left;
    padding: 0;
  }
}

.p-contact-check__checkbox {
  cursor: pointer;
}

.p-contact__check input + span {
  position: relative;
  font-size: max(1.6rem, 12px);
  line-height: 1.4444444444;
  padding-left: max(3.6rem, 20px);
  cursor: pointer;
}
@media only screen and (max-width: 767px) {
  .p-contact__check input + span {
    font-size: 1.2rem;
    padding-left: 2.5rem;
    display: block;
  }
}

.p-contact__check input + span::before {
  position: absolute;
  content: "";
  top: 54%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 2.6rem;
  aspect-ratio: 1/1;
  background: #ebebeb;
}
@media only screen and (max-width: 767px) {
  .p-contact__check input + span::before {
    width: 1.8rem;
    top: 0.1rem;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

.p-contact__check input + span::after {
  position: absolute;
  content: "";
  top: 47%;
  left: 0.62rem;
  -webkit-transform: translateY(-50%) rotate(-40deg);
          transform: translateY(-50%) rotate(-40deg);
  width: max(1.5rem, 10px);
  height: 1.2rem;
  border-left: 3px solid #399d26;
  border-bottom: 3px solid #399d26;
  display: none;
}
@media only screen and (max-width: 767px) {
  .p-contact__check input + span::after {
    top: 0.9rem;
    left: 0.4rem;
    width: 1rem;
    height: 0.6rem;
  }
}

[type=checkbox]:checked + span::after {
  display: block;
}

.wpcf7-acceptance {
  cursor: pointer;
}

.p-contact__button {
  margin-top: 10.1rem;
  width: 26rem;
  height: 7rem;
  margin-inline: auto;
}
@media only screen and (max-width: 767px) {
  .p-contact__button {
    width: 20rem;
    margin-top: 5rem;
    height: 5rem;
  }
}

input[type=submit] {
  width: 100%;
  height: 100%;
  font-size: 2rem;
  letter-spacing: 0.2em;
  line-height: 1.5;
  background-color: #c3c0c0;
  padding-left: 1rem;
  color: #fff;
  cursor: not-allowed;
}
@media only screen and (max-width: 767px) {
  input[type=submit] {
    font-size: 1.6rem;
  }
}

.wpcf7-submit.is-active {
  background: #399d26;
  cursor: pointer;
}

.wpcf7-spinner {
  display: none;
}

.wpcf7-list-item {
  margin: 0;
}

.wpcf7-form-control-wrap > .wpcf7-not-valid-tip {
  display: none;
  margin-top: 10px;
}
.wpcf7-form-control-wrap.is-show > .wpcf7-not-valid-tip {
  display: block;
  font-size: 1.6rem;
  margin-top: max(1.3rem, 7px);
}
@media only screen and (max-width: 767px) {
  .wpcf7-form-control-wrap.is-show > .wpcf7-not-valid-tip {
    font-size: 1.2rem;
  }
}

.wpcf7-form-control-wrap.is-show .wpcf7-not-valid-tip {
  display: block !important;
  font-size: max(1.2rem, 10px);
  margin-top: max(1.3rem, 7px);
}
@media only screen and (max-width: 767px) {
  .wpcf7-form-control-wrap.is-show .wpcf7-not-valid-tip {
    margin-top: 0.5rem;
    font-size: 1rem;
  }
}

/* ------------------------------------------------
p-news
--------------------------------------------------- */
.p-news {
  position: relative;
  z-index: 3;
  min-height: 60rem;
}
@media only screen and (max-width: 767px) {
  .p-news {
    min-height: initial;
  }
}

.p-news__container {
  padding-block: 13.6rem 18rem;
}
@media only screen and (max-width: 767px) {
  .p-news__container {
    padding-block: 4rem 8rem;
  }
}

.p-news__inner {
  max-width: 1000px;
  width: 100%;
  margin-inline: auto;
  padding-inline: 30px;
}
@media only screen and (max-width: 767px) {
  .p-news__inner {
    padding-inline: 20px;
    max-width: 600px;
  }
}

/* ------------------------------------------------
p-news-list
--------------------------------------------------- */
.p-news-list {
  border-bottom: 1px solid #1D1D1D;
}

.p-news-list:first-child {
  border-top: 1px solid #1D1D1D;
}

.p-news-list a {
  display: grid;
  grid-template-columns: 15rem 1fr;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 3.2rem 4.5rem;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
@media only screen and (max-width: 767px) {
  .p-news-list a {
    grid-template-columns: 1fr;
    row-gap: 1rem;
    padding: 1.6rem 2rem;
  }
}

.p-news-list__day {
  font-size: max(1.4rem, 10px);
  letter-spacing: 0.1em;
  line-height: 1.4285714286;
}
@media only screen and (max-width: 767px) {
  .p-news-list__day {
    font-size: 1.2rem;
  }
}

.p-news-list__title {
  font-size: max(1.6rem, 12px);
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.1em;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 1;
}
@media only screen and (max-width: 767px) {
  .p-news-list__title {
    font-size: 1.4rem;
  }
}

.p-news-list a:hover {
  opacity: 0.5;
}

/* ------------------------------------------------
p-news-post
--------------------------------------------------- */
.p-news-post {
  position: relative;
  z-index: 3;
  min-height: 60rem;
}
@media only screen and (max-width: 767px) {
  .p-news-post {
    min-height: initial;
  }
}

.p-news-post__container {
  padding-block: 9.4rem 16rem;
}
@media only screen and (max-width: 767px) {
  .p-news-post__container {
    padding-block: 4rem 6.4rem;
  }
}

.p-news-post__title h1 {
  font-size: 3.2rem;
  line-height: 1.5;
}
@media only screen and (max-width: 767px) {
  .p-news-post__title h1 {
    font-size: 2.2rem;
  }
}

.p-news-post__day {
  margin-top: 1.6rem;
  display: block;
  font-size: max(1.8rem, 13px);
}
@media only screen and (max-width: 767px) {
  .p-news-post__day {
    font-size: 1.2rem;
  }
}

.p-news-post__content p {
  margin-top: 4rem;
  font-size: max(1.8rem, 12px);
  line-height: 2;
}
@media only screen and (max-width: 767px) {
  .p-news-post__content p {
    font-size: 1.4rem;
  }
}

.p-news-post__content h2 {
  margin-top: 6rem;
  padding-left: 2.4rem;
  font-size: 2.8rem;
  line-height: 1.7142857143;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .p-news-post__content h2 {
    font-size: 2rem;
  }
}

.p-news-post__content h2::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 0.8rem;
  height: 80%;
  background-color: #399d26;
}

.p-news-post__content h3 {
  margin-top: 9rem;
  font-size: 2.4rem;
  line-height: 2;
  padding-bottom: 1rem;
  border-bottom: 1px solid #1D1D1D;
}
@media only screen and (max-width: 767px) {
  .p-news-post__content h3 {
    font-size: 1.8rem;
  }
}

.p-news-post__pagination {
  margin-top: 11rem;
}
@media only screen and (max-width: 767px) {
  .p-news-post__pagination {
    margin-top: 8rem;
  }
}

/* ------------------------------------------------
p-privacy-policy
--------------------------------------------------- */
.p-privacy-policy__container {
  padding-block: 11.2rem 16.8rem;
}
@media only screen and (max-width: 767px) {
  .p-privacy-policy__container {
    padding-block: 5.6rem 8rem;
  }
}
.p-privacy-policy__container h2 {
  font-size: 3.2rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  padding-bottom: 2rem;
}
@media only screen and (max-width: 767px) {
  .p-privacy-policy__container h2 {
    font-size: 2.4rem;
    padding-bottom: 1rem;
  }
}
.p-privacy-policy__container h3 {
  margin-top: 6.4rem;
  font-size: 2.4rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}
@media only screen and (max-width: 767px) {
  .p-privacy-policy__container h3 {
    margin-top: 4rem;
    font-size: 1.8rem;
  }
}
.p-privacy-policy__container h4 {
  margin-top: 3.2rem;
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}
@media only screen and (max-width: 767px) {
  .p-privacy-policy__container h4 {
    margin-top: 1.6rem;
    font-size: 1.6rem;
  }
}
.p-privacy-policy__container p,
.p-privacy-policy__container ul li {
  font-size: max(1.5rem, 11px);
  line-height: 1.5;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
@media only screen and (max-width: 767px) {
  .p-privacy-policy__container p,
  .p-privacy-policy__container ul li {
    font-size: 1.4rem;
    text-align: justify;
  }
}
.p-privacy-policy__container ul,
.p-privacy-policy__container p {
  margin-top: 2.4rem;
}
@media only screen and (max-width: 767px) {
  .p-privacy-policy__container ul,
  .p-privacy-policy__container p {
    margin-top: 1.6rem;
  }
}
.p-privacy-policy__container p span,
.p-privacy-policy__container p a {
  text-transform: uppercase;
}

.p-privacy-policy__address {
  margin-top: 1.6rem;
}

.p-privacy-policy__address p {
  margin-top: 0.4rem;
}

.p-privacy-policy__list ul li {
  text-indent: -1em;
  padding-left: 1.5em;
}

/* ------------------------------------------------
p-thanks
--------------------------------------------------- */
.p-thanks {
  position: relative;
  z-index: 3;
}

.p-thanks__container {
  padding-block: 12.8rem;
  min-height: 100rem;
}
@media only screen and (max-width: 767px) {
  .p-thanks__container {
    padding-block: 6.4rem;
    min-height: initial;
  }
}

.p-thanks__title {
  text-align: center;
  font-size: 4rem;
  letter-spacing: 0.06em;
}
@media only screen and (max-width: 767px) {
  .p-thanks__title {
    font-size: 3rem;
  }
}

.p-thanks__contents {
  margin-top: 7.2rem;
  max-width: 80rem;
  margin-inline: auto;
}
@media only screen and (max-width: 767px) {
  .p-thanks__contents {
    margin-top: 4rem;
    max-width: 446px;
  }
}

.p-thanks__lead {
  font-size: 2rem;
  text-align: center;
  line-height: 1.6;
}

.p-thanks__text {
  margin-top: 3.2rem;
  font-size: 1.6rem;
  line-height: 1.875;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .p-thanks__text {
    font-size: 1.4rem;
    text-align: justify;
  }
}

.p-thanks__btn {
  margin-top: 8rem;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media only screen and (max-width: 767px) {
  .p-thanks__btn {
    margin-top: 5rem;
  }
}
.p-thanks__btn a {
  font-size: 1.6rem;
}
@media only screen and (max-width: 767px) {
  .p-thanks__btn a {
    font-size: 1.4rem;
  }
}

/* --------------------------------
utility
----------------------------------- */
@media only screen and (max-width: 767px) {
  .u-pc {
    display: none;
  }
}

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

.u-ib {
  display: inline-block;
}/*# sourceMappingURL=style.css.map */