/* =========================================================
   FONT
========================================================= */

@font-face {
  font-family: "IPAexMincho";
  src: url("../fonts/ipaexm.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}


/* =========================================================
   ROOT
========================================================= */

:root {
  --bg: #00100f;
  --green: #9ac739;
  --contact-bg: #172c29;
  --white: #f3f3ef;

  --header-height: 90px;

  /* MV写真が始まる位置 */
  --mv-side: 18.5%;
}


/* =========================================================
   RESET / BASE
========================================================= */

html {
  margin: 0;
  padding: 0;
}

body {
  margin: 0;
  padding: 0;

  background: var(--bg);
  color: #fff;

  font-family:
    "IPAexMincho",
    "Yu Mincho",
    "Hiragino Mincho ProN",
    serif;

  font-weight: 400;
}

body * {
  box-sizing: border-box;
}

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

a {
  position: relative;
  display: block;

  color: inherit;
  text-decoration: none;

  transition: opacity .3s ease;
}

a:hover {
  opacity: .6;
}

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

.sp_none {
  display: block;
}

.sp_on {
  display: none;
}

.wrap {
  width: 100%;
  overflow: hidden;
}


/* =========================================================
   HEADER
========================================================= */

.header {
  position: fixed;

  top: 0;
  left: 0;

  z-index: 1000;

  width: 100%;
  height: var(--header-height);

  background: var(--bg);

  transition: background .4s ease;
}

.header-color {
  background: rgba(0, 16, 15, .96);
}

.header-top {
  width: 94%;
  height: 100%;

  margin: 0 auto;

  display: flex;
  align-items: center;
}


/* =========================================================
   LOGO
========================================================= */

.logo {
  flex-shrink: 0;
}

.logo a:hover {
  opacity: .7;
}

.logo img {
  width: 250px;
  height: auto;
}


/* =========================================================
   PC MENU
========================================================= */

.header-menu {
  display: flex;
  align-items: center;

  margin-left: auto;
}

.menu-list {
  margin-left: 10px;
}

.menu-list p {
  margin: 0;

  padding: 20px 18px;

  color: #fff;

  font-size: 12px;
  font-weight: 400;

  letter-spacing: .2em;

  white-space: nowrap;
}

.menu-list a:hover {
  opacity: .55;
}


/* =========================================================
   HAMBURGER NAV
========================================================= */

.hb-menu {
  display: none;
}

nav.hbnav {
  position: fixed;

  top: 0;
  left: -280px;
  bottom: 0;

  z-index: 1001;

  display: block;

  width: 280px;

  background: var(--bg);

  opacity: 0;

  transition:
    left .45s ease,
    opacity .45s ease;
}

.open nav.hbnav {
  left: 0;
  opacity: 1;
}

nav .inner {
  padding: 100px 25px 30px;
}

nav .inner ul {
  margin: 0;
  padding: 0;

  list-style: none;
}

nav .inner ul li {
  margin: 0;

  border-bottom: 1px solid rgba(255, 255, 255, .35);
}

nav .inner ul li a {
  padding: 20px 10px;

  color: #fff;

  font-family: "IPAexMincho", serif;

  font-size: 14px;
  font-weight: 400;

  letter-spacing: .2em;

  text-align: center;
}

nav .inner ul li a:hover {
  background: rgba(255, 255, 255, .06);

  opacity: 1;
}

p.hb-title {
  margin: 0 0 30px;

  color: #fff;

  font-size: 15px;
  font-weight: 400;

  line-height: 2;

  letter-spacing: .2em;

  text-align: center;
}


/* =========================================================
   HAMBURGER BUTTON
========================================================= */

.toggle_btn {
  position: absolute;

  top: 20px;
  right: 25px;

  z-index: 1002;

  width: 36px;
  height: 30px;

  cursor: pointer;
}

.toggle_btn span {
  position: absolute;

  left: 0;

  display: block;

  width: 36px;
  height: 1px;

  background: #fff;

  transition: .4s ease;
}

.toggle_btn span:nth-child(1) {
  top: 5px;
}

.toggle_btn span:nth-child(2) {
  top: 14px;
}

.toggle_btn span:nth-child(3) {
  top: 23px;
}

.open .toggle_btn span:nth-child(1) {
  top: 14px;

  transform: rotate(45deg);
}

.open .toggle_btn span:nth-child(2) {
  opacity: 0;
}

.open .toggle_btn span:nth-child(3) {
  top: 14px;

  transform: rotate(-45deg);
}


/* =========================================================
   TOP
========================================================= */

.top {
  width: 100%;

  padding-top: var(--header-height);

  background: var(--bg);

  overflow: hidden;
}


/* =========================================================
   MAIN VISUAL
========================================================= */

.top-mv {
  position: relative;

  width: 100%;

  height: calc(100vh - var(--header-height));
  height: calc(100dvh - var(--header-height));

  min-height: 0;

  background: var(--bg);

  overflow: hidden;
}

/* =========================================================
   HERO GREEN LINE
========================================================= */

.top-mv::after {
  content: "";

  position: absolute;

  z-index: 20;

  left: 0;
  bottom: 0;

  width: 100%;
  height: 4px;

  background: var(--green);

  transform: scaleX(0);
  transform-origin: left center;

  animation: greenLine 6s ease-in-out infinite;
}

@keyframes greenLine {

  0% {
    transform: scaleX(0);
    transform-origin: left center;
  }

  40% {
    transform: scaleX(1);
    transform-origin: left center;
  }

  65% {
    transform: scaleX(1);
    transform-origin: right center;
  }

  100% {
    transform: scaleX(0);
    transform-origin: right center;
  }

}


/* =========================================================
   MV PHOTO
========================================================= */

.top-mv__image {
  position: absolute;

  top: 0;
  right: 0;

  width: calc(100% - var(--mv-side));
  height: 100%;

  overflow: hidden;
}

.top-mv__image img {
  position: absolute;

  top: -80px;
  left: -2px;

  width: calc(100% + 4px);
  max-width: none;

  height: calc(100% + 160px);

  object-fit: cover;
  object-position: center center;

  will-change: transform;
}


/* =========================================================
   MV COPY
========================================================= */

.top-mv__copy {
  position: absolute;

  inset: 0;

  z-index: 2;

  pointer-events: none;
}


/* =========================================================
   MV JAPANESE
========================================================= */

.top-mv__title {
  position: absolute;

  top: 155px;

  right: calc(100% - var(--mv-side) - 25px);

  margin: 0;

  writing-mode: vertical-rl;
  text-orientation: mixed;

  color: #fff;

  font-family: "IPAexMincho", serif;

  font-size: 30px;
  font-weight: 400;

  line-height: 1.9;

  letter-spacing: .5em;

  white-space: nowrap;
}


/* =========================================================
   MV ENGLISH
========================================================= */

.top-mv__en {
  position: absolute;

  top: 155px;

  right: calc(100% - var(--mv-side) + 110px);

  margin: 0;

  writing-mode: vertical-rl;
  text-orientation: mixed;

  color: #fff;

  font-family: "Times New Roman";

  font-size: 10px;

  line-height: 1.4;

  letter-spacing: .3em;

  white-space: nowrap;
}


/* Cだけ緑 */

.top-mv__en span {
  color: var(--green);
}


/* =========================================================
   COMMON VERTICAL TITLE
========================================================= */

.top-heading {
  position: relative;
}


.top-heading--vertical {
  position: relative;

  display: flex;
  flex-direction: row;
  align-items: flex-start;

  gap: 8px;

  padding-left: 18px;
}


.top-heading--vertical::before {
  content: "";

  position: absolute;

  left: 0;
  top: 0;
  bottom: -10px;

  width: 1px;

  background: var(--green);
}


/* 英語 */

.top-heading__en {
  margin: 0;

  writing-mode: vertical-rl;
  text-orientation: mixed;

  color: #fff;

  font-family: "Times New Roman";

  font-size: 10px;

  line-height: 1;

  letter-spacing: .2em;

  white-space: nowrap;
}


/* 頭文字だけ緑 */

.top-heading__en::first-letter {
  color: var(--green);
}


/* 日本語 */

.top-heading__jp {
  margin: 0;

  writing-mode: vertical-rl;
  text-orientation: upright;

  color: #fff;

  font-family: "IPAexMincho", serif;

  font-size: 27px;
  font-weight: 400;

  line-height: 1.5;

  letter-spacing: .4em;

  white-space: nowrap;
}


/* =========================================================
   MORE BUTTON
========================================================= */

.top-more {
  display: flex;

  align-items: center;
  justify-content: center;

  width: 250px;
  height: 46px;

  margin-top: 32px;

  color: var(--green);

  font-size: 11px;

  letter-spacing: .18em;

  border: 1px solid var(--green);

  transition:
    color .3s ease,
    background .3s ease;
}

.top-more:hover {
  color: var(--bg);

  background: var(--green);

  opacity: 1;
}

.top-more--center {
  margin-right: auto;
  margin-left: auto;
}


/* =========================================================
   PARALLAX COMMON
========================================================= */

.top-company__image,
.top-business-image,
.top-equipment__image {
  overflow: hidden;
}


.top-company__image img,
.top-business-image img,
.top-equipment__image img {
  position: relative;

  top: -90px;
  left: -2px;

  width: calc(100% + 4px);
  max-width: none;

  height: calc(100% + 180px);

  object-fit: cover;

  will-change: transform;
}


/* =========================================================
   COMPANY
========================================================= */

.top-company {
  position: relative;

  display: grid;

  grid-template-columns: 46% 54%;

  width: 100%;

  min-height: 850px;

  background: var(--bg);
}


/* COMPANY IMAGE */

.top-company__image {
  width: 100%;

  height: 760px;
}

.top-company__image img {
  object-position: center center;
}


/* =========================================================
   COMPANY CONTENT
========================================================= */

.top-company__content {
  position: relative;

  display: block;

  padding:
    110px
    100px
    140px
    80px;
}


/* 会社情報タイトル */

.top-company__content .top-heading {
  margin-bottom: 65px;
}


/* 本文 */

.top-company__body {
  width: 100%;
  max-width: 550px;

  padding-top: 0;
}


/* リード */

.top-company__lead {
  margin: 0 0 35px;

  color: #fff;

  font-size: 24px;

  line-height: 2;

  letter-spacing: .2em;
}


/* 本文 */

.top-company__text {
  margin: 0;

  color: #fff;

  font-size: 12px;

  line-height: 2.8;

  letter-spacing: .13em;
}


/* =========================================================
   BUSINESS TITLE
========================================================= */

.top-business-title {
  display: flex;

  align-items: center;
  justify-content: center;

  width: 100%;

  padding: 80px 0;

  background: var(--bg);
}


/* =========================================================
   BUSINESS IMAGE
========================================================= */

.top-business-image {
  position: relative;

  width: 100%;
  height: 500px;

  overflow: hidden;

  border-top: 4px solid var(--green);
}

.top-business-image img {
  position: relative;

  top: -70px;

  width: 100%;
  max-width: none;

  height: calc(100% + 140px);

  object-fit: cover;
  object-position: center center;

  will-change: transform;
}


/* =========================================================
   SINCE 1960
========================================================= */

.top-history {
  display: flex;

  align-items: center;
  justify-content: center;

  width: 100%;

  min-height: 620px;

  padding: 90px 30px 100px;

  background: var(--bg);
}

.top-history__inner {
  width: 100%;
  max-width: 1100px;

  text-align: center;
}

.top-history__year {
  margin: 0;

  color: rgba(130, 151, 145, .28);

  font-family: "Times New Roman";

  font-size: 140px;
  font-weight: 400;

  line-height: .9;

  letter-spacing: .08em;
}

.top-history__en {
  margin: 28px 0 38px;

  color: rgba(130, 151, 145, .28);

  font-family: "Times New Roman";

  font-size: 11px;

  letter-spacing: .35em;
}

.top-history__text {
  margin: 0;

  color: #fff;

  font-size: 12px;

  line-height: 2.4;

  letter-spacing: .4em;
}


/* =========================================================
   EQUIPMENT
========================================================= */

.top-equipment {
  position: relative;

  display: grid;

  grid-template-columns: 46% 54%;

  width: 100%;

  min-height: 790px;

  background: var(--bg);

  border-top: 4px solid var(--green);
}


/* EQUIPMENT IMAGE */

.top-equipment__image {
  width: 100%;

  height: 830px;
}

.top-equipment__image img {
  object-position: center center;
}


/* EQUIPMENT CONTENT */

.top-equipment__content {
  display: grid;

  grid-template-columns: 110px 1fr;

  align-items: center;

  column-gap: 70px;

  padding:
    90px
    100px
    100px
    80px;
}

.top-equipment__body {
  max-width: 550px;

  padding-top: 100px;
}

.top-equipment__lead {
  margin: 0 0 28px;

  color: #fff;

  font-size: 24px;

  line-height: 2;

  letter-spacing: .18em;
}

.top-equipment__text {
  margin: 0;

  color: #fff;

  font-size: 12px;

  line-height: 2.5;

  letter-spacing: .13em;
}


/* =========================================================
   RECAPTCHA
========================================================= */

.recaptcha p,
.recaptcha a {
  margin-top: 10px;

  font-size: .8rem;

  line-height: 1.2rem;

  letter-spacing: .08em;
}

.grecaptcha-badge {
  visibility: hidden;
}


/* =========================================================
   CONTACT US
========================================================= */

.footer-contact {
  width: 100%;

  padding: 90px 20px 95px;

  background: var(--contact-bg);

  text-align: center;
}


.footer-contact__inner {
  width: 100%;
  max-width: 1000px;

  margin: 0 auto;
}


/* CONTACT US */

.footer-contact__title {
  margin: 0;

  color: rgba(255, 255, 255, .15);

  font-family: "Times New Roman";

  font-size: 82px;
  font-weight: 400;

  line-height: 1;

  letter-spacing: .1em;
}


/* 日本語 */

.footer-contact__text {
  margin: 35px 0 0;

  color: #fff;

  font-size: 16px;

  letter-spacing: .25em;
}


/* BUTTON */

.footer-contact__button {
  position: relative;

  display: flex;

  align-items: center;
  justify-content: center;

  width: 300px;
  height: 48px;

  margin: 32px auto 0;

  color: var(--green);

  font-size: 11px;

  letter-spacing: .18em;

  border: 1px solid var(--green);

  transition:
    color .3s ease,
    background .3s ease;
}


.footer-contact__button:hover {
  color: var(--bg);

  background: var(--green);

  opacity: 1;
}


/* =========================================================
   FOOTER
========================================================= */

.footer {
  width: 100%;

  padding: 55px 0 60px;

  background: var(--bg);
}


.footer__inner {
  position: relative;

  display: flex;

  align-items: flex-start;

  width: 90%;

  margin: 0 auto;
}


/* =========================================================
   FOOTER COMPANY
========================================================= */

.footer__company {
  width: 280px;
}


.footer__company-name {
  margin: 0 0 20px;

  color: #fff;

  font-size: 15px;

  letter-spacing: .22em;
}


.footer__address {
  margin: 0;

  color: #fff;

  font-size: 10px;

  line-height: 2;

  letter-spacing: .13em;
}


/* =========================================================
   FOOTER NAV
========================================================= */

.footer__nav {
  display: flex;

  align-items: center;

  gap: 34px;

  margin-left: auto;
}


.footer__nav a {
  color: #fff;

  font-size: 10px;

  letter-spacing: .14em;

  white-space: nowrap;
}


/* =========================================================
   COPYRIGHT
========================================================= */

.footer__copy {
  position: absolute;

  right: 0;
  bottom: -25px;

  margin: 0;

  color: rgba(255, 255, 255, .7);

  font-family: "Times New Roman";

  font-size: 9px;

  letter-spacing: .1em;
}


/* =========================================================
   COMPANY PAGE
========================================================= */

.company-page {
  width: 100%;
  padding-top: var(--header-height);
  background: var(--bg);
  overflow: hidden;
}


/* =========================================================
   COMPANY MV
========================================================= */

.company-mv {
  position: relative;

  width: 100%;

  height: calc(100vh - var(--header-height));
  height: calc(100dvh - var(--header-height));

  background: var(--bg);

  overflow: hidden;
}


/* =========================================================
   BREADCRUMB
========================================================= */

.company-mv__breadcrumb {
  position: absolute;

  z-index: 5;

  top: 38px;
  left: 4.1%;

  display: flex;
  align-items: center;

  gap: 7px;

  color: #fff;

  font-size: 11px;

  letter-spacing: .15em;
}

.company-mv__breadcrumb a {
  display: inline;

  color: #fff;
}


/* =========================================================
   COMPANY MV TITLE
========================================================= */

.company-mv__title {
  position: absolute;

  z-index: 5;

  top: 135px;
  left: 8.3%;

  display: flex;
  align-items: flex-start;

  gap: 8px;

  padding-left: 20px;
}


/* 縦線 */

.company-mv__title::before {
  content: "";

  position: absolute;

  top: 0;
  left: 0;
  bottom: -12px;

  width: 1px;

  background: var(--green);
}


/* ENGLISH */

.company-mv__en {
  margin: 0;

  writing-mode: vertical-rl;
  text-orientation: mixed;

  color: #fff;

  font-family: "Times New Roman";

  font-size: 10px;

  line-height: 1;

  letter-spacing: .2em;

  white-space: nowrap;
}

.company-mv__en span {
  color: var(--green);
}


/* JAPANESE */

.company-mv__jp {
  margin: 0;

  writing-mode: vertical-rl;
  text-orientation: upright;

  color: #fff;

  font-family: "IPAexMincho", serif;

  font-size: 30px;
  font-weight: 400;

  line-height: 1.5;

  letter-spacing: .4em;

  white-space: nowrap;
}


/* =========================================================
   COMPANY MV IMAGE
========================================================= */

.company-mv__image {
  position: absolute;

  z-index: 1;

  left: 0;
  right: 0;
  bottom: 0;

  width: 100%;
  height: 73%;

  background: var(--bg);

  overflow: hidden;
}

.company-mv__image img {
  position: absolute;

  top: -80px;
  left: -2px;

  width: calc(100% + 4px);
  max-width: none;

  height: calc(100% + 160px);

  object-fit: cover;
  object-position: center center;

  will-change: transform;
}


/* =========================================================
   COMPANY MV GREEN LINE
========================================================= */

.company-mv::after {
  content: "";

  position: absolute;

  z-index: 20;

  left: 0;
  bottom: 0;

  width: 100%;
  height: 4px;

  background: var(--green);

  transform: scaleX(0);
  transform-origin: left center;

  animation: greenLine 6s ease-in-out infinite;
}


/* =========================================================
   COMMON SECTION HEADING
========================================================= */

.company-section-heading {
  position: relative;
}

.company-section-heading--center {
  display: flex;
  justify-content: center;

  margin-bottom: 90px;
}

.company-section-heading__title {
  position: relative;

  display: flex;
  align-items: flex-start;

  gap: 8px;

  padding-left: 18px;
}


/* 縦線 */

.company-section-heading__title::before {
  content: "";

  position: absolute;

  top: 0;
  left: 0;
  bottom: -12px;

  width: 1px;

  background: var(--green);
}


/* ENGLISH */

.company-section-heading__en {
  margin: 0;

  writing-mode: vertical-rl;
  text-orientation: mixed;

  color: #fff;

  font-family: "Times New Roman";

  font-size: 10px;

  line-height: 1;

  letter-spacing: .2em;

  white-space: nowrap;
}

.company-section-heading__en span {
  color: var(--green);
}


/* JAPANESE */

.company-section-heading__jp {
  margin: 0;

  writing-mode: vertical-rl;
  text-orientation: upright;

  color: #fff;

  font-family: "IPAexMincho", serif;

  font-size: 27px;
  font-weight: 400;

  line-height: 1.5;

  letter-spacing: .4em;

  white-space: nowrap;
}


/* =========================================================
   MESSAGE
========================================================= */

.company-message {
  position: relative;

  width: 100%;
  height: 880px;

  background: var(--bg);

  overflow: hidden;
}


/* =========================================================
   MESSAGE HEADING
========================================================= */

.company-message__heading {
  position: absolute;

  z-index: 5;

  top: 85px;
  left: 50%;

  transform: translateX(-50%);
}


/* タイトル本体 */

.company-message__heading .company-section-heading__title {
  position: relative;

  display: flex;
  align-items: flex-start;

  gap: 8px;

  padding-left: 18px;
}


/* 緑の縦線 */

.company-message__heading .company-section-heading__title::before {
  content: "";

  position: absolute;

  top: 0;
  left: 0;
  bottom: -12px;

  width: 1px;

  background: var(--green);
}


/* =========================================================
   MESSAGE MAIN
========================================================= */

.company-message__main {
  position: absolute;

  left: 0;
  right: 0;
  bottom: 0;

  display: grid;

  grid-template-columns: 52.5% 47.5%;

  align-items: center;

  width: 100%;
  height: 570px;
}


/* =========================================================
   MESSAGE IMAGE
========================================================= */
.company-message__image {
  position: relative;

  width: 100%;
  aspect-ratio: 829 / 574;

  background: var(--bg);

  overflow: hidden;
}

.company-message__image img {
  display: block;

  width: 100%;
  height: 100%;

  object-fit: contain;
  object-position: center center;
}

.company-message__content {
  display: flex;

  align-items: center;

  height: 100%;

  padding:
    70px
    70px
    70px
    90px;
}


.company-message__body {
  width: 100%;
  max-width: 530px;
}


/* タイトル */

.company-message__lead {
  margin: 0 0 40px;

  color: #fff;

  font-family: "IPAexMincho", serif;

  font-size: 20px;
  font-weight: 400;

  line-height: 2.2;

  letter-spacing: .18em;
}


/* 本文 */

.company-message__text {
  margin: 0;

  color: #fff;

  font-size: 11px;

  line-height: 2.6;

  letter-spacing: .12em;
}


.company-profile {
  width: 100%;

  padding:
    90px
    0
    120px;

  background: var(--bg);
}

.company-profile__inner {
  width: 82%;
  max-width: 1180px;

  margin: 0 auto;
}


/* TITLE */

.company-profile__heading {
  display: flex;
  justify-content: center;

  margin-bottom: 95px;
}


/* TABLE */

.company-profile__table {
  width: 100%;

  border-top: 1px solid rgba(154, 199, 57, .65);
}

.company-profile__row {
  display: grid;

  grid-template-columns: 230px 1fr;

  width: 100%;

  padding: 18px 45px;

  border-bottom: 1px solid rgba(154, 199, 57, .65);
}

.company-profile__label {
  margin: 0;

  color: #fff;

  font-size: 11px;
  line-height: 2;

  letter-spacing: .2em;
}

.company-profile__value {
  margin: 0;

  color: #fff;

  font-size: 11px;
  line-height: 2;

  letter-spacing: .14em;
}


/* MAP */

.company-profile__map {
  width: 100%;
  height: 500px;

  margin-top: 75px;
}

.company-profile__map iframe {
  display: block;

  width: 100%;
  height: 100%;

  border: 0;

  filter: grayscale(1);
}

/* =========================================================
   HISTORY
========================================================= */

.company-history {
  width: 100%;

  padding:
    90px
    0
    140px;

  background: var(--bg);
}

.company-history__inner {
  width: 82%;
  max-width: 1050px;

  margin: 0 auto;
}


/* TITLE */

.company-history__heading {
  display: flex;
  justify-content: center;

  margin-bottom: 80px;
}


/* TIMELINE */

.company-history__timeline {
  position: relative;

  width: 100%;
}


/* 縦線 */

.company-history__timeline::before {
  content: "";

  position: absolute;

  top: 16px;
  bottom: 20px;

  left: 185px;

  width: 1px;

  background: rgba(154, 199, 57, .45);
}


/* ITEM */

.company-history__item {
  position: relative;

  display: grid;

  grid-template-columns:
    150px
    70px
    1fr;

  width: 100%;

  min-height: 125px;
}


/* YEAR */

.company-history__year {
  margin: -5px 0 0;

  color: rgba(255, 255, 255, .12);

  font-family: "Times New Roman";

  font-size: 48px;
  line-height: 1;

  letter-spacing: .08em;
}


/* POINT */

.company-history__point {
  position: relative;

  width: 22px;
  height: 22px;

  margin-left: 24px;

  border: 1px solid rgba(154, 199, 57, .5);
  border-radius: 50%;

  background: var(--bg);
}

.company-history__point::before {
  content: "";

  position: absolute;

  top: 50%;
  left: 50%;

  width: 7px;
  height: 7px;

  background: var(--green);

  border-radius: 50%;

  transform: translate(-50%, -50%);
}


/* CONTENT */

.company-history__content {
  padding:
    0
    0
    45px;
}


.company-history__title {
  margin: 0 0 10px;

  color: #fff;

  font-size: 14px;
  font-weight: 400;

  line-height: 1.8;

  letter-spacing: .16em;
}


.company-history__text {
  margin: 0;

  color: #fff;

  font-size: 9px;

  line-height: 2;

  letter-spacing: .12em;
}


/* IMAGE */

.company-history__image {
  position: relative;

  width: 500px;
  height: 300px;

  margin-top: 22px;

  overflow: hidden;
}

.company-history__image img {
  position: absolute;

  top: -40px;
  left: -2px;

  display: block;

  width: calc(100% + 4px);
  max-width: none;

  height: calc(100% + 80px);

  object-fit: cover;

  filter: grayscale(1);

  clip-path: inset(1px);

  will-change: transform;
}


/* 画像がある項目は下を広めに */

.company-history__item--image {
  min-height: 390px;
}

.company-history__item--image .company-history__content {
  padding-bottom: 65px;
}

.top-mv__image,
.top-company__image,
.top-business-image,
.top-equipment__image,
.company-mv__image,
.company-message__image,
.company-history__image {
  overflow: hidden;
}

.top-mv__image img,
.top-company__image img,
.top-business-image img,
.top-equipment__image img,
.company-mv__image img,
.company-message__image img,
.company-history__image img {
  clip-path: inset(1px);
}

/* =========================================================
   SERVICES BUSINESS
========================================================= */

.services-business {
  width: 100%;

  padding:
    85px
    0
    150px;

  background: var(--bg);
}


/* TITLE */

.services-business__heading {
  display: flex;
  justify-content: center;

  margin-bottom: 90px;
}


/* ROW */

.services-business__row {
  display: grid;

  grid-template-columns: 52% 48%;

  align-items: center;

  width: 100%;

  margin-bottom: 85px;
}

.services-business__row:last-child {
  margin-bottom: 0;
}


/* 02 */

.services-business__row--reverse {
  grid-template-columns: 48% 52%;
}


/* IMAGE */

.services-business__image {
  position: relative;

  width: 100%;
  height: 360px;

  overflow: hidden;
}

.services-business__image img {
  position: absolute;

  top: -45px;
  left: -2px;

  width: calc(100% + 4px);
  max-width: none;

  height: calc(100% + 90px);

  object-fit: cover;
  object-position: center center;

  clip-path: inset(1px);

  will-change: transform;
}


/* CONTENT */

.services-business__content {
  width: 100%;
  max-width: 500px;

  padding-left: 70px;
}

.services-business__row--reverse .services-business__content {
  justify-self: end;

  padding-right: 70px;
  padding-left: 0;
}


/* NUMBER */

.services-business__number {
  margin: 0 0 12px;

  color: var(--green);

  font-family: "Times New Roman";

  font-size: 42px;
  line-height: 1;

  letter-spacing: .1em;
}


/* JAPANESE */

.services-business__title {
  margin: 0 0 7px;

  color: #fff;

  font-family: "IPAexMincho", serif;

  font-size: 17px;
  font-weight: 400;

  letter-spacing: .15em;
}


/* ENGLISH */

.services-business__en {
  margin: 0 0 22px;

  color: rgba(255, 255, 255, .14);

  font-family: "Times New Roman";

  font-size: 30px;

  letter-spacing: .12em;
}


/* TEXT */

.services-business__text {
  margin: 0;

  color: #fff;

  font-size: 10px;
  line-height: 2.2;

  letter-spacing: .12em;
}

/* =========================================================
   SERVICES REASON
========================================================= */

.services-reason {
  width: 100%;

  padding:
    100px
    0
    140px;

  background: var(--bg);
}

.services-reason__inner {
  width: 82%;
  max-width: 1200px;

  margin: 0 auto;
}


/* TITLE */

.services-reason__heading {
  display: flex;
  justify-content: center;

  margin-bottom: 100px;
}


/* ITEMS */

.services-reason__items {
  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 28px;
}


/* CARD */

.services-reason__item {

    padding: 30px 20px;

  border: 1px solid var(--green);

  text-align: center;
}


/* ENGLISH */

.services-reason__en {
  margin: 0;

  color: #fff;

  font-family: "Times New Roman";

  font-size: 11px;
  letter-spacing: .22em;

  text-align: center;

  white-space: nowrap;
}


/* ICON */

.services-reason__icon {
  display: flex;

  align-items: center;
  justify-content: center;

  height: 125px;

  margin:
    20px
    auto
    15px;
}

.services-reason__icon img {
  display: block;

  width: auto;
  max-width: 145px;
  max-height: 100px;
}


/* TITLE */

.services-reason__title {
  margin: 0 0 20px;

  color: #fff;

  font-family: "IPAexMincho", serif;

  font-size: 20px;
  font-weight: 400;

  letter-spacing: .2em;
  text-align: center;
}


/* LEAD */

.services-reason__lead {
  margin: 0 0 20px;

  color: #fff;

  font-size: 13px;
  line-height: 2;
text-align: center;
  letter-spacing: .18em;
}


/* TEXT */

.services-reason__text {
  margin: 0;

  color: #fff;

  font-size: 9px;
  line-height: 2.2;

  letter-spacing: .1em;
  text-align: center;
}

/* =========================================================
   PROCESSING
========================================================= */

.services-processing {
  width: 100%;

  padding:
    100px
    0
    120px;

  background: var(--bg);
}

.services-processing__inner {
  width: 82%;
  max-width: 1200px;

  margin: 0 auto;
}

.services-processing__heading {
  display: flex;
  justify-content: center;

  margin-bottom: 100px;
}

.services-processing__items {
  display: grid;

  grid-template-columns: repeat(6, 1fr);

  gap:
    28px
    22px;
}

.services-processing__item {
  display: flex;

  flex-direction: column;

  align-items: center;
  justify-content: center;

  height: 130px;

  padding: 20px 15px;

  background: #172c29;

  text-align: center;
}

.services-processing__jp {
  margin: 0;

  color: #fff;

  font-size: 11px;

  letter-spacing: .15em;
}

.services-processing__item span {
  display: block;

  width: 70px;
  height: 1px;

  margin: 15px 0 12px;

  background: var(--green);
}

.services-processing__en {
  margin: 0;

  color: #fff;

  font-family: "Times New Roman";

  font-size: 8px;

  letter-spacing: .15em;
}


/* =========================================================
   MATERIALS
========================================================= */

.services-materials {
  width: 100%;

  padding:
    90px
    0
    120px;

  background: #172c29;
}

.services-materials__inner {
  width: 72%;
  max-width: 1000px;

  margin: 0 auto;
}

.services-materials__heading {
  display: flex;
  justify-content: center;

  margin-bottom: 90px;
}

.services-materials__items {
  display: grid;

  grid-template-columns: repeat(5, 1fr);

  gap: 22px;
}

.services-materials__item {
  display: flex;

  flex-direction: column;

  align-items: center;
  justify-content: center;

  height: 135px;

  padding: 20px 15px;

  border: 1px solid rgba(154, 199, 57, .7);

  text-align: center;
}

.services-materials__jp {
  margin: 0;

  color: #fff;

  font-size: 11px;

  letter-spacing: .15em;
}

.services-materials__item span {
  display: block;

  width: 70px;
  height: 1px;

  margin: 15px 0 12px;

  background: var(--green);
}

.services-materials__en {
  margin: 0;

  color: #fff;

  font-family: "Times New Roman";

  font-size: 8px;

  letter-spacing: .15em;
}

/* =========================================================
   INDUSTRIES
========================================================= */

.services-industries {
  width: 100%;

  padding:
    100px
    0
    140px;

  background: var(--bg);
}

.services-industries__inner {
  width: 82%;
  max-width: 1200px;

  margin: 0 auto;
}


/* TITLE */

.services-industries__heading {
  display: flex;
  justify-content: center;

  margin-bottom: 95px;
}


/* ITEMS */

.services-industries__items {
  display: grid;

  grid-template-columns: repeat(4, 1fr);

  gap: 45px;
}


/* ITEM */

.services-industries__item {
  display: flex;

  flex-direction: column;

  align-items: center;
  justify-content: center;

  height: 190px;

  padding: 25px;

  background: #172c29;

  text-align: center;
}


/* NUMBER */

.services-industries__number {
  margin: 0 0 12px;

  color: #fff;

  font-family: "Times New Roman";

  font-size: 23px;

  letter-spacing: .08em;
}


/* ICON */

.services-industries__icon {
  display: flex;

  align-items: center;
  justify-content: center;

  height: 65px;
}

.services-industries__icon img {
  display: block;

  width: auto;
  max-width: 80px;
  max-height: 60px;
}


/* JAPANESE */

.services-industries__jp {
  margin: 8px 0 0;

  color: #fff;

  font-size: 11px;

  letter-spacing: .18em;
}


/* LINE */

.services-industries__item > span {
  display: block;

  width: 85px;
  height: 1px;

  margin: 10px 0 9px;

  background: var(--green);
}


/* ENGLISH */

.services-industries__en {
  margin: 0;

  color: #fff;

  font-family: "Times New Roman";

  font-size: 8px;

  letter-spacing: .15em;
}


/* NOTE */

.services-industries__note {
  display: flex;

  align-items: center;
  justify-content: center;

  width: 100%;
  height: 70px;

  margin-top: 90px;

  border: 1px solid rgba(154, 199, 57, .7);

  color: #fff;

  font-size: 11px;

  letter-spacing: .18em;

  text-align: center;
}

/* =========================================================
   EQUIPMENT MAIN
========================================================= */

.equipment-main {
  width: 100%;

  padding:
    90px
    0
    150px;

  background: var(--bg);
}

.equipment-main__inner {
  width: 82%;
  max-width: 1200px;

  margin: 0 auto;
}


/* TITLE */

.equipment-main__heading {
  display: flex;
  justify-content: center;

  margin-bottom: 90px;
}


/* =========================================================
   CATEGORY
========================================================= */

.equipment-category {
  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap:
    35px
    30px;

  margin-bottom: 140px;
}

.equipment-category__item {
  display: flex;

  flex-direction: column;

  align-items: center;
  justify-content: center;

  height: 95px;

  border: 1px solid var(--green);
  border-radius: 60px;

  color: var(--green);

  text-align: center;

  transition:
    background .3s ease,
    color .3s ease;
}

.equipment-category__item:hover {
  background: var(--green);

  color: var(--bg);

  opacity: 1;
}

.equipment-category__number {
  margin: 0 0 8px;

  font-family: "Times New Roman";

  font-size: 25px;

  line-height: 1;

  letter-spacing: .15em;
}

.equipment-category__name {
  margin: 0;

  font-size: 15px;

  letter-spacing: .18em;
}


/* ARROW */

.equipment-category__arrow {
  position: relative;

  display: block;

  width: 11px;
  height: 11px;

  margin-top: 7px;

  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;

  transform: rotate(45deg);
}


/* =========================================================
   EQUIPMENT LIST
========================================================= */
.equipment-list {
  width: 100%;

  margin-bottom: 95px;

  scroll-margin-top: 120px;
}

.equipment-list:last-child {
  margin-bottom: 0;
}

.equipment-list__heading {
  position: relative;

  display: block;

  margin-bottom: 45px;

  padding-left: 28px;
}

.equipment-list__heading::before {
  content: "";

  position: absolute;

  top: 0;
  bottom: 0;
  left: 0;

  width: 4px;

  background: var(--green);
}

.equipment-list__heading-top {
  display: flex;

  align-items: baseline;

  gap: 18px;
}

.equipment-list__number {
  margin: 0;

  color: var(--green);

  font-family: "Times New Roman";

  font-size: 34px;

  line-height: 1.2;

  letter-spacing: .15em;
}

.equipment-list__title {
  margin: 0;

  color: #fff;

  font-family: "IPAexMincho", serif;

  font-size: 27px;
  font-weight: 400;

  line-height: 1.4;

  letter-spacing: .2em;
}

.equipment-list__en {
  margin:
    5px
    0
    0;

  color: var(--green);

  font-family: "Times New Roman";

  font-size: 15px;

  letter-spacing: .3em;
}

/* =========================================================
   TABLE SCROLL
========================================================= */

.equipment-table-scroll {
  width: 100%;

  overflow-x: auto;
  overflow-y: hidden;

  scrollbar-width: none;
}

.equipment-table-scroll::-webkit-scrollbar {
  display: none;
}


/* =========================================================
   TABLE
========================================================= */

.equipment-table {
  width: 1650px;
  min-width: 1650px;

  border-collapse: collapse;

  color: #fff;

  text-align: center;
}

.equipment-table th,
.equipment-table td {
  height: 55px;

  padding: 10px 18px;

  border: 1px solid rgba(255, 255, 255, .65);

  vertical-align: middle;

  white-space: nowrap;
}

.equipment-table th {
  background: #172c29;

  font-size: 9px;
  font-weight: 400;

  line-height: 1.5;

  letter-spacing: .12em;

  text-align: center;
  vertical-align: middle;
}

.equipment-table td {
  font-size: 10px;

  line-height: 1.8;

  letter-spacing: .18em;

  text-align: center;
  vertical-align: middle;
}


/* =========================================================
   CUSTOM SCROLLBAR
========================================================= */

.equipment-scrollbar {
  display: flex;

  align-items: center;

  width: 100%;

  margin-top: 20px;
}


/* 左右矢印 */

.equipment-scrollbar__arrow {
  flex-shrink: 0;

  width: 25px;
  height: 25px;

  padding: 0;

  border: 0;

  background: transparent;

  color: #fff;

  font-family: "Times New Roman";

  font-size: 18px;
  line-height: 1;

  cursor: pointer;
}

.equipment-scrollbar__arrow:hover {
  color: var(--green);

  opacity: 1;
}


/* TRACK */

.equipment-scrollbar__track {
  position: relative;

  flex: 1;

  height: 9px;

  margin:
    0
    12px;

  background: rgba(255, 255, 255, .18);

  border-radius: 10px;

  cursor: pointer;
}


/* 緑バー */

.equipment-scrollbar__thumb {
  position: absolute;

  top: 0;
  left: 0;

  width: 35%;
  height: 9px;

  background: var(--green);

  border-radius: 10px;

  cursor: grab;
}

.equipment-scrollbar__thumb:active {
  cursor: grabbing;
}


/* GUIDE TEXT */

.equipment-scrollbar p {
  flex-shrink: 0;

  margin:
    0
    10px
    0
    8px;

  color: #fff;

  font-size: 9px;

  letter-spacing: .15em;

  white-space: nowrap;
}

/* =========================================================
   CONTACT PAGE
========================================================= */

.contact-page {
  width: 100%;

  padding-top: var(--header-height);

  background: var(--bg);
}

.contact-breadcrumb {
  display: flex;

  align-items: center;

  gap: 7px;

  width: 92%;

  margin:
    38px
    auto
    0;

  color: #fff;

  font-size: 11px;

  letter-spacing: .15em;
}

.contact-breadcrumb a {
  display: inline;

  color: #fff;
}


/* =========================================================
   CONTACT MAIN
========================================================= */

.contact-main {
  width: 100%;

  padding:
    55px
    0
    40px;
}


/* TITLE */

.contact-heading {
  display: flex;
  justify-content: center;

  margin-bottom: 70px;
}


/* LEAD */

.contact-lead {
  margin-bottom: 45px;

  text-align: center;
}

.contact-lead p {
  margin: 0 0 12px;

  color: #fff;

  font-size: 11px;

  line-height: 2;

  letter-spacing: .18em;
}

.contact-lead p:last-child {
  margin-bottom: 0;
}


/* =========================================================
   FORM
========================================================= */

.contact-form {
  width: 72%;
  max-width: 900px;

  margin: 0 auto;
}

.contact-form__row {
  display: grid;

  grid-template-columns: 170px 1fr;

  align-items: center;

  width: 100%;

  margin-bottom: 14px;
}

.contact-form__label {
  color: #fff;

  font-size: 12px;

  letter-spacing: .14em;
}

.contact-form__label span {
  color: #fff;
}


/* INPUT */

.contact-form__field {
  position: relative;

  width: 100%;
}

.contact-form__field input[type="text"],
.contact-form__field input[type="email"],
.contact-form__field input[type="tel"],
.contact-form__field select,
.contact-form__field textarea {
  display: block;

  width: 100%;

  border: 0;
  border-radius: 0;

  outline: none;

  background: #efefef;

  color: #111;

  font-family: "IPAexMincho", serif;

  font-size: 13px;
}

.contact-form__field input[type="text"],
.contact-form__field input[type="email"],
.contact-form__field input[type="tel"],
.contact-form__field select {
  height: 46px;

  padding:
    0
    15px;
}


/* SELECT */

.contact-form__field select {
  appearance: none;
  -webkit-appearance: none;

  cursor: pointer;
}

.contact-form__field:has(select)::after {
  content: "";

  position: absolute;

  top: 17px;
  right: 20px;

  width: 10px;
  height: 10px;

  border-right: 2px solid #111;
  border-bottom: 2px solid #111;

  transform: rotate(45deg);

  pointer-events: none;
}


/* FILE */

.contact-form__row--file {
  margin-top: 22px;
  margin-bottom: 25px;
}

.contact-form__field input[type="file"] {
  color: #fff;

  font-size: 9px;
}

.contact-form__field input[type="file"]::file-selector-button {
  margin-right: 20px;

  padding:
    6px
    28px;

  border: 0;
  border-radius: 20px;

  background: #efefef;

  color: #111;

  font-family: "IPAexMincho", serif;

  font-size: 9px;

  cursor: pointer;
}

.contact-form__file-note {
  margin-left: 15px;

  color: #fff;

  font-size: 9px;

  letter-spacing: .1em;
}


/* TEXTAREA */

.contact-form__row--textarea {
  align-items: flex-start;
}

.contact-form__row--textarea .contact-form__label {
  padding-top: 15px;
}

.contact-form__field textarea {
  height: 210px;

  padding: 15px;

  resize: vertical;
}


/* PRIVACY */

.contact-form__privacy {
  margin-top: 40px;

  text-align: center;
}

.contact-form__privacy a {
  display: inline-block;

  color: #fff;

  font-size: 11px;

  letter-spacing: .08em;

  text-decoration: underline;
}


/* SUBMIT */

.contact-form__submit {
  margin-top: 22px;

  text-align: center;
}

.contact-form__submit input[type="submit"] {
  width: 300px;
  height: 45px;

  border: 0;
  border-radius: 0;

  background: #172c29;

  color: #fff;

  font-family: "IPAexMincho", serif;

  font-size: 12px;

  letter-spacing: .25em;

  cursor: pointer;

  transition:
    background .3s ease,
    color .3s ease;
}

.contact-form__submit input[type="submit"]:hover {
  background: var(--green);

  color: var(--bg);
}


/* CF7 */

.contact-form .wpcf7-spinner {
  display: block;

  margin: 15px auto 0;
}

.contact-form .wpcf7-not-valid-tip {
  margin-top: 5px;

  font-size: 10px;
}

.contact-form .wpcf7-response-output {
  margin:
    30px
    0
    0;

  color: #fff;

  font-size: 11px;

  line-height: 2;

  letter-spacing: .1em;
}

.contact-form__row--file .wpcf7-form-control-wrap {
  display: block;
  width: 100%;
}

.contact-form__field input[type="file"] {
  width: 100%;
  max-width: none;

  color: #fff;

  font-size: 9px;
}

/* =========================================================
   CONTACT PHONE
========================================================= */

.contact-phone {
  width: 100%;

  margin-bottom: 100px;
}

.contact-phone__box {
  display: flex;

  flex-direction: column;

  align-items: center;
  justify-content: center;

  width: 72%;
  max-width: 900px;
  min-height: 180px;

  margin: 0 auto;

  border: 1px solid var(--green);
  border-radius: 120px;

  color: #fff;

  text-align: center;

  transition:
    background .3s ease,
    color .3s ease;
}

.contact-phone__box:hover {
  background: rgba(154, 199, 57, .05);

  opacity: 1;
}

.contact-phone__lead {
  margin: 0 0 15px;

  font-size: 17px;

  letter-spacing: .2em;
}

.contact-phone__number {
  display: flex;

  align-items: center;
  justify-content: center;

  gap: 15px;
}

.contact-phone__icon {
  width: 38px;
  height: 38px;

  color: #fff;
}

.contact-phone__number span {
  font-family: "Times New Roman";

  font-size: 42px;

  line-height: 1;

  letter-spacing: .15em;
}

.contact-phone__time {
  margin: 22px 0 0;

  font-size: 11px;

  letter-spacing: .18em;
}

/* =========================================================
   PRIVACY PAGE
========================================================= */

.privacy-page {
  width: 100%;

  padding-top: var(--header-height);

  background: var(--bg);
}


/* BREADCRUMB */

.privacy-breadcrumb {
  display: flex;

  align-items: center;

  gap: 7px;

  width: 92%;

  margin:
    38px
    auto
    0;

  color: #fff;

  font-size: 11px;

  letter-spacing: .15em;
}

.privacy-breadcrumb a {
  display: inline;

  color: #fff;
}


/* MAIN */

.privacy-main {
  width: 100%;

  padding:
    55px
    0
    140px;
}


/* TITLE */

.privacy-heading {
  display: flex;

  justify-content: center;

  margin-bottom: 100px;
}

.privacy-content {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  color: #fff;
  font-size: 16px;
  line-height: 2.1;
  letter-spacing: .08em;
}

.privacy-content p {
  margin: 0 0 22px;
}

.privacy-content h2 {
  margin: 56px 0 22px;
  font-size: 28px;
  font-weight: 400;
  line-height: 1.7;
  letter-spacing: .14em;
  color: #fff;
}

.privacy-content h3 {
  margin: 38px 0 14px;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: .12em;
  color: #fff;
}

.privacy-content ul,
.privacy-content ol {
  margin: 0 0 24px 1.5em;
  padding: 0;
}

.privacy-content li {
  margin-bottom: 10px;
  line-height: 2;
}

.privacy-content strong {
  font-weight: 400;
  color: #fff;
}

.privacy-content a {
  color: #fff;
  text-decoration: underline;
}

.privacy-content br {
  line-height: 2;
}

/* =========================================================
   TEXT REVEAL
========================================================= */

/* 基本 */
.reveal-text {
  opacity: 0;

  transform: translateY(24px);

  filter: blur(4px);

  transition:
    opacity .9s ease,
    transform .9s ease,
    filter .9s ease;
}

.reveal-text.is-show {
  opacity: 1;

  transform: translateY(0);

  filter: blur(0);
}


/* タイトル */
.reveal-text--title {
  transform: translateY(34px);

  transition-duration: 1.05s;
}

.reveal-text--title.is-show {
  transform: translateY(0);
}


/* 縦書きタイトル */
.top-heading.reveal-text,
.company-section-heading.reveal-text,
.company-mv__title.reveal-text,
.company-section-heading__title.reveal-text {
  transform: translateY(30px);
}

.top-heading.reveal-text.is-show,
.company-section-heading.reveal-text.is-show,
.company-mv__title.reveal-text.is-show,
.company-section-heading__title.reveal-text.is-show {
  transform: translateY(0);
}


/* =========================================================
   COMPANY PROFILE REVEAL
========================================================= */

/*
  会社概要は p 単体ではなく row 単位で表示。
  事業内容の .company-profile__value が div の場合でも
  中の文章まで確実に表示される。
*/

.company-profile__row.reveal-text {
  opacity: 0;

  transform: translateY(20px);

  filter: blur(3px);

  transition:
    opacity .8s ease,
    transform .8s ease,
    filter .8s ease;
}

.company-profile__row.reveal-text.is-show {
  opacity: 1;

  transform: translateY(0);

  filter: blur(0);
}


/* row の中に JS で reveal-text が付いても二重アニメにしない */
.company-profile__row .reveal-text {
  opacity: 1;

  transform: none;

  filter: none;

  transition: none;
}


/* =========================================================
   ACCESSIBILITY
========================================================= */

@media (prefers-reduced-motion: reduce) {

  .reveal-text,
  .reveal-text--title,
  .company-profile__row.reveal-text {
    opacity: 1;

    transform: none;

    filter: none;

    transition: none;
  }

}
