@charset "UTF-8";
@font-face {
  font-family: "icomoon";
  src: url("/assets/fonts/icomoon.eot?92qpvy");
  src: url("/assets/fonts/icomoon.eot?92qpvy#iefix") format("embedded-opentype"), url("/assets/fonts/icomoon.ttf?92qpvy") format("truetype"), url("/assets/fonts/icomoon.woff?92qpvy") format("woff"), url("/assets/fonts/icomoon.svg?92qpvy#icomoon") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: block;
}
/* ===========================================
    トップページ
    /index.html
=========================================== */
.opening-logo {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
}
.opening-logo .title-logo {
  width: min(25rem, 40vw);
}
.opening-logo.start {
  animation: opening-logo 1.8s linear;
}
.opening-logo.start .title-logo {
  animation: opening-logo-image 1.8s ease;
}
.opening-logo.hidden {
  display: none;
}

@keyframes opening-logo {
  0% {
    opacity: 1;
  }
  80% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes opening-logo-image {
  0% {
    transform: scale(1.2);
    opacity: 0;
  }
  30% {
    transform: scale(1);
  }
  70% {
    opacity: 1;
  }
}
.hero-movie {
  position: absolute;
  z-index: 1;
  width: 100%;
  height: min(100vh - 8rem, 80vw);
  opacity: 0;
  transition: opacity 1s ease;
}
@media screen and (max-width: 767px) {
  .hero-movie {
    height: calc(100svh - 6rem);
  }
}
.hero-movie.visible {
  opacity: 1;
}
.hero-movie video {
  position: fixed;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 767px) {
  .hero-movie video {
    height: calc(100svh - 6rem);
  }
}
.hero-movie video::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #c6ceee;
  mix-blend-mode: multiply;
}
.hero-movie__copy {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  line-height: 1.4;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .hero-movie__copy {
    padding-bottom: 10vw;
    gap: 5rem;
  }
}
.hero-movie__copy .main-copy {
  font-family: "Cormorant SC", serif;
  font-weight: 600;
  font-style: normal;
  font-size: min(4.5rem, 8vw);
  letter-spacing: 0.05em;
  color: #ffffff;
  transform: translateY(10rem);
  opacity: 0;
  transition: 1s ease;
}
.hero-movie__copy .sub-copy {
  font-family: serif;
  font-weight: 400;
  font-style: normal;
  font-size: min(2.5rem, 4vw);
  letter-spacing: 0.25em;
  color: #ffffff;
  transform: translateY(10rem);
  opacity: 0;
  transition: 1s ease;
  transition-delay: 0.3s;
}
.hero-movie__copy.visible .main-copy {
  transform: translateY(0);
  opacity: 1;
}
.hero-movie__copy.visible .sub-copy {
  transform: translateY(0);
  opacity: 1;
}
.hero-movie__copy.visible.end {
  transition: 1s;
  transform: scale(0.5);
  opacity: 0;
}
.hero-movie__logo {
  position: absolute;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 1s ease;
}
.hero-movie__logo .title-logo {
  width: min(25rem, 40vw);
  transform: scale(1.2);
  opacity: 0;
  transition: 1s ease;
  transition-delay: 0.5s;
}
.hero-movie__logo.visible {
  opacity: 1;
}
.hero-movie__logo.visible .title-logo {
  transform: scale(1);
  opacity: 1;
}
.hero-movie__scroll {
  position: absolute;
  bottom: max(2vw, 2rem);
  right: max(2vw, 2rem);
  width: auto;
  padding-top: 5rem;
  line-height: 1.2;
  text-align: center;
}
.hero-movie__scroll span:first-child {
  font-family: "Cormorant SC", serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: #ffffff;
}
.hero-movie__scroll span:last-child {
  position: absolute;
  top: 0;
  left: 50%;
  width: 1px;
  height: 4.5rem;
  background-color: rgba(255, 255, 255, 0.5);
}
.hero-movie__scroll span:last-child::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  animation: hero-movie-scroll 3s infinite both;
}

@keyframes hero-movie-scroll {
  0% {
    transform-origin: top;
    transform: scaleY(0);
  }
  39% {
    transform-origin: top;
    transform: scaleY(1);
  }
  40% {
    transform-origin: bottom;
    transform: scaleY(1);
  }
  100% {
    transform-origin: bottom;
    transform: scaleY(0);
  }
}
body.top main {
  position: relative;
  z-index: 2;
  margin-top: min(100vh - 8rem, 80vw);
  background-color: #ffffff;
}
@media screen and (max-width: 767px) {
  body.top main {
    margin-top: calc(100svh - 6rem);
  }
}

.top-about__inner {
  display: flex;
  align-items: center;
  gap: 0 11rem;
}
.top-about__text {
  width: 34rem;
}
.top-about__image {
  flex: 1;
}
.top-about__title {
  align-items: flex-start;
}
.top-about__copy {
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .top-about__inner {
    display: block;
  }
  .top-about__text {
    width: 100%;
  }
  .top-about__image {
    width: 100vw;
    margin: 5vw -5vw;
  }
  .top-about__title {
    align-items: center;
  }
}

.top-csr {
  position: relative;
  min-height: 50rem;
  margin-top: 12rem;
}
.top-csr > a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: url(/assets/images/top/bnr__csr.jpg) center center/cover no-repeat;
  background-attachment: fixed;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: 0.3s;
}
.top-csr > a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #004385;
  mix-blend-mode: multiply;
  opacity: 0;
  transition: 0.3s;
}
.top-csr > a .button--view-more > span {
  border-color: #ffffff;
  background-color: rgba(255, 255, 255, 0.7);
}
@media screen and (min-width: 768px) {
  .top-csr > a:hover::before {
    opacity: 0.8;
  }
  .top-csr > a:hover .button--view-more > span {
    background-color: #ffffff;
    color: #004385;
  }
}
@media screen and (max-width: 767px) {
  .top-csr {
    min-height: 70vw;
  }
  .top-csr > a {
    background-attachment: scroll;
  }
}

.movie {
  position: relative;
  width: 96%;
  margin: 0 auto;
}
.movie--header {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 100%;
  color: #ffffff;
}
.movie video {
  width: 100%;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .movie {
    width: 100%;
  }
}

/* ===========================================
    加賀産業について
    /about/index.html
=========================================== */
.about-message__link {
  position: relative;
  display: block;
  overflow: hidden;
}
.about-message__link::before {
  content: "";
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #004385;
  mix-blend-mode: multiply;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.about-message__link img {
  transition: transform 0.3s ease;
}
.about-message__link figcaption {
  position: absolute;
  z-index: 2;
  top: 0;
  right: 15%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.about-message__link figcaption p {
  transition: color 0.3s ease;
}
.about-message__link figcaption p:first-child {
  letter-spacing: 0.2em;
}
.about-message__link figcaption p:first-child em {
  display: block;
  font-family: "Play", sans-serif;
  font-size: 2.6rem;
  color: #004385;
  transition: color 0.3s ease;
}
.about-message__link figcaption p:last-child {
  margin-top: 3rem;
  display: flex;
  align-items: center;
  font-family: "Play", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #004385;
  transition: 0.3s ease;
}
.about-message__link figcaption p:last-child::before {
  content: "";
  width: 5.2em;
  height: 1em;
  margin-right: 1em;
  background-image: url(/assets/images/common/icon__view_blue.svg);
  background-position: center center;
  background-size: contain;
  background-repeat: no-repeat;
}
@media screen and (min-width: 768px) {
  .about-message__link:hover::before {
    opacity: 0.8;
  }
  .about-message__link:hover img {
    transform: scale(1.05);
  }
  .about-message__link:hover figcaption p {
    color: #ffffff;
  }
  .about-message__link:hover figcaption p:first-child em {
    color: #ffffff;
  }
  .about-message__link:hover figcaption p:last-child {
    transform: translateX(2rem);
  }
  .about-message__link:hover figcaption p:last-child::before {
    background-image: url(/assets/images/common/icon__view_white.svg);
  }
}
@media screen and (max-width: 767px) {
  .about-message__link figcaption {
    position: static;
    padding: 2rem 10% 3rem;
    background-color: #004385;
  }
  .about-message__link figcaption p {
    color: #ffffff;
  }
  .about-message__link figcaption p:first-child em {
    font-size: 2rem;
    color: #ffffff;
  }
  .about-message__link figcaption p:first-child span {
    font-size: 1em;
  }
  .about-message__link figcaption p:last-child {
    justify-content: flex-end;
    color: #ffffff;
  }
  .about-message__link figcaption p:last-child::before {
    background-image: url(/assets/images/common/icon__view_white.svg);
  }
}

.about-banner {
  position: relative;
}
.about-banner .text {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  padding-right: 15%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
}
.about-banner .text p {
  letter-spacing: 0.1em;
}
.about-banner .text p em {
  display: block;
  font-family: "Play", sans-serif;
  font-size: 2.6rem;
  color: #004385;
}
@media screen and (max-width: 767px) {
  .about-banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.3);
  }
  .about-banner figure {
    width: 100%;
    height: 80vw;
  }
  .about-banner figure img {
    -o-object-fit: cover;
       object-fit: cover;
    width: 100%;
    height: 100%;
  }
  .about-banner .text {
    padding-right: 5%;
  }
}

.about-block {
  display: flex;
}
.about-block .title {
  flex: 1;
  margin-right: 3em;
  font-size: 1.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: #004385;
}
.about-block .title > span {
  display: inline-block;
}
.about-block .subttl {
  margin-bottom: 1em;
  font-size: 1.06em;
  font-weight: 500;
}
.about-block .text {
  width: 60%;
}
.about-block .text p {
  line-height: 1.8;
  text-align: justify;
}
body.en .about-block .text p {
  text-align: left;
}
.about-block .text p:not(:last-child) {
  margin-bottom: 1.5em;
}
.about-block .text p > span {
  display: inline-block;
}
@media screen and (max-width: 1280px) {
  .about-block .title {
    margin-right: 0;
    margin-bottom: 1em;
    font-size: 1.8rem;
    letter-spacing: 0.05em;
  }
  .about-block .text p > span {
    display: inline;
  }
}
@media screen and (max-width: 767px) {
  .about-block {
    flex-direction: column;
  }
  .about-block .text {
    width: 100%;
  }
}

/* ===========================================
    代表のごあいさつ | 加賀産業について
    /about/message/index.html
=========================================== */
.img-ceo {
  position: relative;
  margin-bottom: min(10rem, 10vw);
}
.img-ceo figcaption {
  position: absolute;
  bottom: 0;
  right: 0;
  padding: 8% 0 0 5%;
  background-color: #ffffff;
}
.img-ceo figcaption .copy {
  margin-bottom: 1em;
  font-size: 2.6rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: #004385;
}
body.en .img-ceo figcaption .copy {
  letter-spacing: 0.05em;
}
.img-ceo figcaption .name {
  letter-spacing: 0.1em;
}
.img-ceo figcaption .name span {
  display: block;
}
.img-ceo figcaption .name em {
  margin-right: 1em;
  font-size: 2.6rem;
  font-weight: 500;
  letter-spacing: 0.2em;
}
body.en .img-ceo figcaption .name em {
  letter-spacing: 0.1em;
}
.img-ceo figcaption .name small {
  font-family: "Play", sans-serif;
}
@media screen and (max-width: 767px) {
  .img-ceo {
    display: flex;
    flex-direction: column-reverse;
  }
  .img-ceo figcaption {
    position: static;
    margin-bottom: 1em;
    padding: 0;
  }
  .img-ceo figcaption .copy {
    font-size: 2.2rem;
    letter-spacing: 0.05em;
  }
  .img-ceo figcaption .name {
    font-size: 1.3rem;
  }
  .img-ceo figcaption .name em {
    font-size: 2.6rem;
  }
}

/* ===========================================
    サステナビリティ
    /csr/index.html
=========================================== */
.csr-mission {
  padding-top: min(7rem, 10vw);
}
.csr-mission__table {
  width: 100%;
  margin: 1em 0;
}
.csr-mission__table th, .csr-mission__table td {
  padding: 0.75em 1.5em;
  border: solid 2px #004385;
  vertical-align: middle;
  font-weight: 500;
}
.csr-mission__table th {
  width: 25%;
  background-color: #004385;
  text-align: center;
  color: #ffffff;
}
.csr-mission__table td {
  color: #004385;
}
.csr-mission__table td:not(:last-of-type) {
  background-color: #E5ECF3;
  text-align: center;
}
.csr-mission__table td ul li {
  padding-left: 1em;
  text-indent: -1em;
}
.csr-mission__table td ul li::before {
  content: "■";
}
.csr-mission__copy {
  display: flex;
  align-items: center;
  font-size: 1.2em;
  font-weight: 500;
  color: #004385;
}
.csr-mission__copy dt {
  width: 10em;
  margin-right: 1em;
  padding: 0.25em 0;
  border: solid 2px #004385;
  background-color: #E5ECF3;
  text-align: center;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .csr-mission__table {
    border-bottom: solid 2px #004385;
  }
  .csr-mission__table th, .csr-mission__table td {
    display: block;
    width: 100%;
    padding: 1em;
  }
  .csr-mission__table td {
    border-width: 1px 2px 0;
  }
  .csr-mission__table td:not(:last-of-type) {
    border-width: 2px 2px 0;
  }
  .csr-mission__table td ul li:not(:last-child) {
    margin-bottom: 0.5em;
  }
  .csr-mission__copy {
    flex-direction: column;
  }
  .csr-mission__copy dt {
    width: 100%;
    margin: 0 0 1em;
  }
}

.by2050__table01 {
  width: 100%;
  line-height: 1.4;
  font-size: 1.4rem;
  color: #004385;
}
.by2050__table01 th, .by2050__table01 td {
  padding: 0.75em 1em;
  vertical-align: middle;
  text-align: center;
  font-weight: 500;
}
.by2050__table01 thead {
  background-color: #004385;
}
.by2050__table01 thead th {
  border: solid 2px #ffffff;
  color: #ffffff;
}
.by2050__table01 thead th:first-child {
  border-left-color: #004385;
}
.by2050__table01 thead th:last-child {
  border-right-color: #004385;
}
.by2050__table01 thead tr:first-child th {
  border-top-color: #004385;
}
.by2050__table01 thead tr:first-child th:last-child {
  border-bottom-color: #004385;
}
.by2050__table01 thead tr:last-child th {
  border-bottom-color: #004385;
  font-family: "Play", sans-serif;
}
.by2050__table01 tbody th, .by2050__table01 tbody td {
  border: solid #004385;
  border-width: 1px 2px;
}
.by2050__table01 tbody tr:first-child td:last-child {
  border-bottom-width: 2px;
  text-align: center;
}
.by2050__table01 tbody tr:last-child th, .by2050__table01 tbody tr:last-child td {
  border-bottom-width: 2px;
}

.scope {
  padding-bottom: min(10rem, 10vw);
}

.kaga-report {
  padding: min(10em, 10vw) 0;
  border: solid #b2b2b2;
  border-width: 1px 0;
}
.kaga-report__banner a {
  width: min(80%, 40rem);
  margin: 0 auto;
  padding: 2em;
  background: url(/assets/images/csr/bg-report.jpg) center center/cover no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-family: "Play", sans-serif;
  letter-spacing: 0.1em;
  color: #ffffff;
  transition: opacity 0.3s;
}
.kaga-report__banner a:hover {
  opacity: 0.8;
}
.kaga-report__banner a em {
  display: inline-block;
  margin-bottom: 0.25em;
  line-height: 1.2;
  font-size: 2.3rem;
  font-weight: 700;
}

/* ===========================================
    事業紹介 共通
=========================================== */
@media screen and (min-width: 684px) and (max-width: 860px) {
  body.modal-page {
    font-size: 1em;
  }
}

.modal-header {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 60px;
  padding: 0.5em 1em;
  text-align: center;
  background-color: #004385;
  color: #ffffff;
}

.modal-title > * {
  display: inline-block;
}
.modal-title em {
  font-size: 1.3em;
  font-weight: 700;
}

.modal-text {
  width: min(80%, 660px);
  margin: 0 auto;
}
.modal-text p {
  margin-top: 1em;
}

.modal-subttl {
  margin: 5rem 0 3rem;
  text-align: center;
  color: #004385;
}
.modal-subttl > * {
  display: inline-block;
}
.modal-subttl em {
  font-size: 1.2em;
  font-weight: 700;
}

.modal-figure {
  width: min(90%, 1100px);
  margin: 5rem auto;
}

.modal-detail {
  width: min(90%, 1100px);
  margin: 5rem auto;
  padding: 2rem 5%;
  border: solid #000000;
  border-width: 1px 0;
  display: flex;
  align-items: center;
}
.modal-detail--text {
  flex: 1;
}
.modal-detail--img {
  width: min(40%, 420px);
  text-align: center;
}
.modal-detail--dlist {
  margin-bottom: 2em;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1em;
}
.modal-detail--dlist dt {
  width: 8em;
  padding: 0.25em;
  background-color: #004385;
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 1.3;
  text-align: center;
  font-size: 0.8em;
  color: #ffffff;
}
.modal-detail--dlist dd {
  width: calc(100% - 9em);
}
@media screen and (max-width: 683px) {
  .modal-detail {
    display: block;
  }
  .modal-detail--img {
    width: 100%;
  }
  .modal-detail--dlist {
    display: block;
  }
  .modal-detail--dlist dd {
    width: 100%;
    margin: 0.5em 0 1em;
  }
}

/* ===========================================
    航空宇宙事業
    /aerospace/index.html
=========================================== */
/* 航空宇宙事業 トップ
------------------------------------------- */
.banner--aero-about {
  background-image: url(/assets/images/aerospace/top/bnr-about.webp);
}

.aero-strength a {
  height: clamp(50rem, 26.0416666667vw, 80rem);
  padding: 0 7%;
  display: flex;
  align-items: center;
  background: url(/assets/images/aerospace/top/img-strength.webp) center center/cover no-repeat;
}
.aero-strength a > div {
  width: 45%;
}
.aero-strength a .view-more {
  margin-top: 3rem;
  display: flex;
  align-items: center;
  font-family: "Play", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #000000;
  transition: 0.3s ease;
}
.aero-strength a .view-more::before {
  content: "";
  width: 5.2em;
  height: 1em;
  margin-right: 1em;
  background-image: url(/assets/images/common/icon__view_black.svg);
  background-position: center center;
  background-size: contain;
  background-repeat: no-repeat;
}
@media screen and (min-width: 768px) {
  .aero-strength a:hover .view-more {
    transform: translateX(1em);
  }
}
@media screen and (max-width: 767px) {
  .aero-strength a {
    display: block;
    height: auto;
    padding: 10% 10% 0;
    background-image: none;
    background-color: #ded2bc;
  }
  .aero-strength a > div {
    width: 100%;
  }
}
.aero-strength__title {
  margin-bottom: 0.75em;
  line-height: 1.2;
  font-family: "Play", sans-serif;
  font-size: 3.6rem;
  letter-spacing: 0.1em;
  color: #004385;
}
body.en .aero-strength__title {
  letter-spacing: 0.05em;
}
.aero-strength__text {
  margin-bottom: 3em;
  line-height: 2;
  text-align: justify;
  letter-spacing: 0.1em;
}
body.en .aero-strength__text {
  text-align: left;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 768px) {
  .aero-strength__text {
    font-size: min(1.8rem, 1.3vw);
  }
}
@media screen and (max-width: 767px) {
  .aero-strength__title {
    margin-bottom: 0.5em;
    font-size: 2.8rem;
    letter-spacing: 0.05em;
  }
  .aero-strength__text {
    text-align: justify;
  }
  .aero-strength__img {
    width: 100%;
    height: 10em;
    background: url(/assets/images/aerospace/top/img-strength.webp) right center/130% auto no-repeat;
  }
}

/* 航空宇宙事業の強み
------------------------------------------- */
.aerospace-strength .strength-box {
  position: relative;
  margin-top: 3rem;
}
.aerospace-strength .strength-box .bg {
  width: 0;
  height: 100%;
  overflow: hidden;
  transition-property: width;
  transition-duration: 0.5s;
}
.aerospace-strength .strength-box .bg img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
  filter: blur(10px);
  transform: scale(1.05);
  transition-property: filter;
  transition-duration: 0.5s;
  transition-delay: 1s;
}
.aerospace-strength .strength-box .contents {
  color: #ffffff;
  opacity: 0;
  transition-property: opacity;
  transition-duration: 0.5s;
  transition-delay: 1s;
}
.aerospace-strength .strength-box.visible .bg {
  width: 100%;
}
.aerospace-strength .strength-box.visible .bg img {
  filter: blur(0);
}
.aerospace-strength .strength-box.visible .contents {
  opacity: 1;
}
.aerospace-strength .strength-box:nth-child(odd) .bg {
  margin-left: 100%;
  transition-property: width, margin-left;
  transition-duration: 0.5s, 0.5s;
}
.aerospace-strength .strength-box:nth-child(odd).visible .bg {
  margin-left: 0;
}
.aerospace-strength .strength-box .text p {
  line-height: 2;
}
@media screen and (min-width: 768px) {
  .aerospace-strength .strength-box .contents {
    position: absolute;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .aerospace-strength .strength-01 {
    height: 600px;
  }
  .aerospace-strength .strength-01 .text {
    width: 55%;
  }
  .aerospace-strength .strength-01 .img {
    flex: 1;
  }
  .aerospace-strength .strength-01 .img img {
    display: block;
    width: min(73%, 396px);
    margin: 0 auto;
  }
  .aerospace-strength .strength-02 {
    height: 850px;
  }
  .aerospace-strength .strength-03 {
    height: 950px;
  }
  .aerospace-strength .strength-04 {
    height: 638px;
  }
}
@media screen and (max-width: 767px) {
  .aerospace-strength .strength-box .contents {
    position: relative;
    padding: 10vw 0;
  }
  .aerospace-strength .strength-box .bg {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
  }
}

/* ===========================================
    建産機事業
    /machinery/index.html
=========================================== */
.banner--machin-about {
  background-image: url(/assets/images/machinery/top/bnr-about.webp);
}

.machin-strength {
  position: relative;
}
.machin-strength .banner::before {
  background-color: #000000;
  mix-blend-mode: multiply;
}
.machin-strength .banner::after {
  margin-top: 5rem;
}
@media screen and (max-width: 767px) {
  .machin-strength .banner {
    position: relative;
    height: 60vw;
    background: url(/assets/images/machinery/top/bnr-strength.webp) center center/cover no-repeat;
  }
  .machin-strength .banner figure {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  .machin-strength .banner figure img {
    opacity: 0;
  }
  .machin-strength .banner figure figcaption {
    padding-bottom: 2em;
    font-size: 1.6rem;
  }
  .machin-strength .banner::after {
    margin-top: 2em;
  }
}

/* 建産機事業の強み
------------------------------------------- */
.machinery-strength .strength-box {
  position: relative;
  margin-top: 3rem;
}
.machinery-strength .strength-box .bg {
  width: 0;
  height: 100%;
  overflow: hidden;
  transition-property: width;
  transition-duration: 0.5s;
}
.machinery-strength .strength-box .bg img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
  filter: blur(10px);
  transform: scale(1.05);
  transition-property: filter;
  transition-duration: 0.5s;
  transition-delay: 1s;
}
.machinery-strength .strength-box .contents {
  color: #ffffff;
  opacity: 0;
  transition-property: opacity;
  transition-duration: 0.5s;
  transition-delay: 1s;
}
.machinery-strength .strength-box.visible .bg {
  width: 100%;
}
.machinery-strength .strength-box.visible .bg img {
  filter: blur(0);
}
.machinery-strength .strength-box.visible .contents {
  opacity: 1;
}
.machinery-strength .strength-box:nth-child(odd) .bg {
  margin-left: 100%;
  transition-property: width, margin-left;
  transition-duration: 0.5s, 0.5s;
}
.machinery-strength .strength-box:nth-child(odd).visible .bg {
  margin-left: 0;
}
.machinery-strength .strength-box .text p {
  line-height: 2;
}
@media screen and (min-width: 768px) {
  .machinery-strength .strength-box .contents {
    position: absolute;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .machinery-strength .strength-01 {
    height: 600px;
  }
  .machinery-strength .strength-01 .text {
    width: 55%;
  }
  .machinery-strength .strength-01 .img {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .machinery-strength .strength-01 .img img {
    display: block;
    width: min(73%, 396px);
    margin: 0 auto;
  }
  .machinery-strength .strength-02 {
    height: 850px;
  }
  .machinery-strength .strength-03 {
    height: 850px;
  }
}
@media screen and (max-width: 767px) {
  .machinery-strength .strength-box .contents {
    position: relative;
    padding: 10vw 0;
  }
  .machinery-strength .strength-box .bg {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
  }
  .machinery-strength .strength-03 .img {
    margin-top: 5vw;
  }
}

/* ===========================================
    DP事業
    /dp/index.html
=========================================== */
.banner--dp-about {
  background-image: url(/assets/images/dp/top/bnr-about.webp);
}

.dp-access__gmap iframe {
  width: 100%;
  height: min(65rem, 50vh);
}
@media screen and (max-width: 767px) {
  .dp-access__gmap iframe {
    height: 100vw;
  }
}

.dp-point {
  display: flow-root;
}
.dp-point:not(:last-child) {
  margin-bottom: 2em;
}
.dp-point dt {
  float: left;
  width: 10rem;
  margin-top: 0.2em;
  background-color: #004385;
  text-align: center;
  font-family: "Play", sans-serif;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #ffffff;
}
.dp-point dt + dd {
  padding-left: 12rem;
  font-size: 1.2em;
  font-weight: 700;
  color: #004385;
}
.dp-point dt + dd + dd {
  clear: both;
  padding-top: 0.5em;
}
@media screen and (max-width: 767px) {
  .dp-point dt {
    float: none;
    margin-bottom: 0.75em;
  }
  .dp-point dt + dd {
    padding-left: 0;
  }
}

/* ===========================================
    取扱商品 | DP事業
    /dp/products/
=========================================== */
.product-cat li > * {
  position: relative;
  display: block;
}
.product-cat li > *::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.product-cat li > * figure {
  position: relative;
  overflow: hidden;
}
.product-cat li > * figure img {
  transition: transform 0.3s ease;
}
.product-cat li > * figure figcaption {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-size: 1.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  color: #ffffff;
  text-shadow: 0 0 5px #000000;
}
.product-cat li > a::after {
  background-color: rgba(0, 0, 0, 0.6);
  transition: background-color 0.3s ease;
}
.product-cat li > a.active::after {
  background-color: rgba(0, 67, 133, 0.3);
}
@media screen and (min-width: 768px) {
  .product-cat li > a:hover::after {
    background-color: rgba(0, 67, 133, 0.3);
  }
  .product-cat li > a:hover figure img {
    transform: scale(1.1);
  }
}
.product-cat li > span::after {
  background-color: rgba(0, 67, 133, 0.3);
}

.product-box {
  flex-direction: row-reverse;
}
@media screen and (max-width: 767px) {
  .product-box {
    flex-direction: column-reverse;
  }
}
.product-box--text {
  flex: 1;
  padding-left: 7.5%;
}
.product-box--text .text-inner {
  margin-top: 4rem;
}
.product-box--text .list li {
  padding-left: 1em;
  text-indent: -1em;
}
.product-box--text .list li::before {
  content: "・";
}
@media screen and (max-width: 767px) {
  .product-box--text {
    margin-top: 4rem;
    padding-left: 0;
  }
}
.product-box--img {
  width: min(55.8333333333%, 670px);
}
.product-box--img .slide-navigation {
  display: flex;
  flex-wrap: wrap;
  gap: 2%;
}
.product-box--img .slide-navigation .item {
  position: relative;
  width: 32%;
  margin-bottom: 2%;
  opacity: 0.7;
  transition: opacity 0.3s;
}
.product-box--img .slide-navigation .item:hover {
  opacity: 1;
}
.product-box--img .slide-navigation .item.thumbnail-current {
  opacity: 1;
}
.product-box--img .slide-navigation .item.thumbnail-current::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: solid 1px #4c7baa;
}
@media screen and (max-width: 767px) {
  .product-box--img {
    width: 100%;
  }
}
.product-box .omoiyari--flex {
  align-items: center;
}
.product-box .omoiyari--img {
  width: 3rem;
}
.product-box .omoiyari--text {
  flex: 1;
  padding-left: 2em;
  font-size: 0.9em;
}

/* ===========================================
    NEWS
    /news/index.html
=========================================== */
.cat-list {
  margin-bottom: min(10rem, 10vw);
  border: solid 1px #004385;
  background-color: #004385;
  display: flex;
  gap: 1px;
}
@media screen and (max-width: 767px) {
  .cat-list {
    flex-wrap: wrap;
  }
}
.cat-list > * {
  flex: 1;
}
@media screen and (max-width: 767px) {
  .cat-list > * {
    flex: auto;
    width: calc((100% - 1px) / 2);
  }
  .cat-list > *:first-child {
    width: 100%;
  }
}
.cat-list > * a {
  display: block;
  padding: 0.5em;
  background-color: #ffffff;
  line-height: 1.4;
  text-align: center;
  color: #004385;
  transition: 0.3s;
}
.cat-list > * a:hover {
  background-color: rgba(255, 255, 255, 0.7);
}
.cat-list > * a.active {
  background-color: #004385;
  color: #ffffff;
  pointer-events: none;
}

.pagenation {
  margin-top: min(5rem, 7vw);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
.pagenation a,
.pagenation .current_page {
  width: 3em;
  height: 3em;
  margin: 0.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.pagenation a {
  background-color: rgba(0, 67, 133, 0.1);
  transition: background-color 0.3s;
}
.pagenation a:hover {
  background-color: rgba(0, 67, 133, 0.3);
}
.pagenation .current_page {
  background-color: rgba(0, 67, 133, 0.7);
  color: #ffffff;
}
@media screen and (max-width: 767px) {
  .pagenation a,
  .pagenation .current_page {
    width: 2em;
    height: 2em;
    margin: 0.25rem;
  }
}

/* ===========================================
    NEWS Entry
    /news/entry.html
=========================================== */
.news-entry__thumb {
  margin-top: min(5rem, 7vw);
}
.news-entry__thumb img {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 800px;
  margin: 0 auto;
}
.news-entry__body {
  display: flow-root;
  margin-top: min(5rem, 7vw);
  line-height: 2;
}
.news-entry__body p {
  margin-top: 1em;
}
.news-entry__body a {
  text-decoration: underline;
  color: #004385;
}
.news-entry__body a:hover {
  text-decoration: none;
}
.news-entry__body img[class*=mt-image] {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 800px;
  margin: 1em 0;
}
.news-entry__image {
  margin-top: 5rem;
}
.news-entry__image > figure {
  margin-top: min(3rem, 3vw);
}
.news-entry__button {
  margin-top: min(10rem, 15vw);
}

/* ===========================================
    採用情報
    /recruit/index.html
=========================================== */
.recruit-message {
  position: relative;
  background-color: #004385;
}
.recruit-message__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.recruit-message__bg .bg01 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 3;
}
.recruit-message__bg .bg01::before, .recruit-message__bg .bg01::after {
  content: "";
  position: absolute;
  width: 200%;
  height: 100%;
  background: url(/assets/images/recruit/message-bg01.webp) left center/100% auto no-repeat;
  mix-blend-mode: color-burn;
  opacity: 0.5;
}
@media screen and (max-width: 767px) {
  .recruit-message__bg .bg01::before, .recruit-message__bg .bg01::after {
    background-size: 100% 60%;
  }
}
.recruit-message__bg .bg01::before {
  animation: message-bg-before 45s linear infinite;
}
.recruit-message__bg .bg01::after {
  animation: message-bg-after 45s linear infinite;
}
.recruit-message__bg .bg02 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 2;
}
.recruit-message__bg .bg02::before, .recruit-message__bg .bg02::after {
  content: "";
  position: absolute;
  width: 200%;
  height: 100%;
  background: url(/assets/images/recruit/message-bg02.webp) left center/100% auto no-repeat;
  mix-blend-mode: color-burn;
  opacity: 0.5;
}
@media screen and (max-width: 767px) {
  .recruit-message__bg .bg02::before, .recruit-message__bg .bg02::after {
    background-size: 100% 60%;
  }
}
.recruit-message__bg .bg02::before {
  animation: message02-bg-before 15s linear infinite;
}
.recruit-message__bg .bg02::after {
  animation: message02-bg-after 15s linear infinite;
}
.recruit-message__inner {
  position: relative;
  z-index: 5;
  padding-bottom: 15rem;
}

@keyframes message-bg-before {
  0% {
    left: 0;
  }
  100% {
    left: -200%;
  }
}
@keyframes message-bg-after {
  0% {
    left: 200%;
  }
  100% {
    left: 0%;
  }
}
@keyframes message02-bg-before {
  0% {
    right: 0;
  }
  100% {
    right: -200%;
  }
}
@keyframes message02-bg-after {
  0% {
    right: 200%;
  }
  100% {
    right: 0%;
  }
}
.recruit-arealist li {
  padding: 0.75em 0.75em 0.75em 1em;
  border: solid 2px #004385;
  border-radius: 0.4em;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  font-weight: 700;
}
.recruit-arealist li:not(:first-child) {
  margin-top: 1.5em;
}
.recruit-arealist li em {
  color: #004385;
}
.recruit-arealist li div {
  margin-left: auto;
  display: flex;
}
.recruit-arealist li div > * {
  margin-left: 0.5em;
  padding: 0.75em 1em;
  border-radius: 0.4em;
}
.recruit-arealist li div span {
  background-color: rgba(0, 67, 133, 0.2);
  font-weight: 400;
  color: #004385;
}
.recruit-arealist li div a {
  border: solid 2px #004385;
  background-color: #004385;
  color: #ffffff;
  transition: 0.3s;
}
@media (hover: hover) and (pointer: fine) {
  .recruit-arealist li div a:hover {
    background-color: #ffffff;
    color: #004385;
  }
}
@media screen and (max-width: 767px) {
  .recruit-arealist li {
    flex-direction: column;
  }
  .recruit-arealist li em {
    width: 100%;
    text-align: center;
  }
  .recruit-arealist li div {
    width: 100%;
    margin: 0.5em 0 0;
    flex-direction: column;
  }
  .recruit-arealist li div > * {
    margin: 0.5em 0 0;
  }
}

@media screen and (min-width: 768px) {
  .recruit-entry {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .recruit-entry > * {
    margin-bottom: 0;
  }
}

.recruit-entrylist {
  flex: 1;
}
.recruit-entrylist li:not(:first-child) {
  margin-top: 1em;
}
.recruit-entrylist li > * {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1em 0;
  border-bottom: solid 1px #ffffff;
  color: #ffffff;
}
.recruit-entrylist li > a {
  transition: 0.3s;
}
.recruit-entrylist li > a::after {
  content: "\ea3c";
  font-family: "icomoon" !important;
}
.recruit-entrylist li > a:hover {
  padding: 1em;
}
.recruit-entrylist li > span {
  opacity: 0.5;
}
@media screen and (min-width: 768px) {
  .recruit-entrylist {
    max-width: 66.6666666667%;
  }
}

/* ===========================================
    募集要項 | 採用情報
    /recruit/application/
=========================================== */
.recruit-application {
  margin: 7rem 0 10rem;
}
.recruit-application table {
  width: 100%;
}
.recruit-application table th, .recruit-application table td {
  padding: 1em;
  border: solid 1px #b2b2b2;
}
.recruit-application table th {
  width: 20rem;
  background-color: #E5ECF3;
  color: #004385;
}
@media screen and (max-width: 767px) {
  .recruit-application table {
    border-bottom: solid 1px #b2b2b2;
  }
  .recruit-application table th, .recruit-application table td {
    display: block;
    width: 100%;
  }
  .recruit-application table th {
    min-width: initial;
    border-width: 1px 1px 0;
  }
  .recruit-application table td {
    border-width: 0 1px;
  }
}/*# sourceMappingURL=pages.css.map */