@charset "UTF-8";
/*
******************************
    fadeアニメーション
*******************************
*/
/* 初期状態 */
.js-fadeInTrigger,
.js-fadeUpTrigger,
.js-fadeDownTrigger,
.js-fadeLeftTrigger,
.js-fadeRightTrigger {
  opacity: 0;
}

/* その場でfade */
.fadeIn {
  animation-name: fadeInAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeInAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/* 下からfade */
.fadeUp {
  animation-name: fadeUpAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* 上からfade */
.fadeDown {
  animation-name: fadeDownAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeDownAnime {
  from {
    opacity: 0;
    transform: translateY(-100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* 左からfade */
.fadeLeft {
  animation-name: fadeLeftAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeLeftAnime {
  from {
    opacity: 0;
    transform: translateX(-100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
/* 右からfade */
.fadeRight {
  animation-name: fadeRightAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeRightAnime {
  from {
    opacity: 0;
    transform: translateX(100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
/*
******************************
    背景が徐々に透明度が濃くなるアニメーション 
*******************************
*/
@keyframes moveanime {
  0% {
    bottom: 35px;
  }
  50% {
    bottom: 60px;
  }
  100% {
    bottom: 35px;
  }
}
/*
******************************
    画像やテキストのワイプ表示アニメーション 
*******************************
*/
.img-wrap {
  opacity: 0;
}

.img-animation {
  animation: img-opacity 2s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  overflow: hidden;
  position: relative !important;
}

.img-animation:before {
  animation: img-animation 2s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  background: black;
  bottom: 0;
  content: "";
  left: 0;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 1;
}

/* 画像やテキストのワイプ表示のアニメーション1 */
@keyframes img-opacity {
  100% {
    opacity: 1;
  }
}
/* 画像やテキストのワイプ表示のアニメーション2 */
@keyframes img-animation {
  99% {
    opacity: 1;
  }
  100% {
    transform: translateX(100%);
    opacity: 0;
  }
}
/*
******************************
    メインビジュアルでスライドする画像を少しずつ拡大していくアニメーション
*******************************
*/
@keyframes img-expansion {
  100% {
    transform: scale(1.2, 1.2);
  }
}
/*
******************************
    スクロールダウンで高さ・位置・透過が変化して線が上から下に動くアニメーション 
*******************************
*/
@keyframes pathmove {
  0% {
    height: 0;
    top: 0;
    opacity: 0;
  }
  30% {
    height: 100px;
    opacity: 1;
  }
  100% {
    height: 0;
    top: 150px;
    opacity: 0;
  }
}
/*
******************************
    セクションの横棒が伸びるアニメーション
*******************************
*/
.js-lineExtend.is-animated {
  border-top: 1px solid black;
  animation: lineExtend 1s ease-in-out forwards;
  display: inline-block;
  position: relative;
  top: 3px;
}

@keyframes lineExtend {
  0% {
    width: 0;
  }
  100% {
    width: 220px;
  }
}
/*
******************************
    画像がblurしながら浮かび上がるアニメーション
*******************************
*/
.blur {
  -webkit-animation-name: imageBlur;
  animation-name: imageBlur;
  opacity: 1;
  transition: 0.8s;
}

@-webkit-keyframes imageBlur {
  from {
    opacity: 0;
    -webkit-filter: blur(15px);
    -moz-filter: blur(15px);
    -ms-filter: blur(15px);
    -o-filter: blur(15px);
    filter: blur(15px);
  }
  to {
    opacity: 1;
    -webkit-filter: blur(0px);
    -moz-filter: blur(0px);
    -ms-filter: blur(0px);
    -o-filter: blur(0px);
    filter: blur(0px);
  }
}
@keyframes imageBlur {
  from {
    opacity: 0;
    -webkit-filter: blur(15px);
    -moz-filter: blur(15px);
    -ms-filter: blur(15px);
    -o-filter: blur(15px);
    filter: blur(15px);
  }
  to {
    opacity: 1;
    -webkit-filter: blur(0px);
    -moz-filter: blur(0px);
    -ms-filter: blur(0px);
    -o-filter: blur(0px);
    filter: blur(0px);
  }
}
/*
******************************
    readButton
*******************************
*/
.readBtn a {
  font-size: 1.4rem;
  position: relative;
  display: flex;
  justify-content: space-around;
  align-items: center;
  width: 220px;
  max-width: 220px;
  padding: 20px 25px;
  transition: 0.3s ease-in-out;
  font-weight: 500;
  transform: skew(-10deg, 0deg);
  background: #054A91;
  color: #fff;
  border: 1px solid #787878;
}

.readBtn a span {
  transform: skewX(10deg);
}

.readBtn a:before {
  content: "";
  width: 65px;
  height: 1px;
  position: absolute;
  right: -20px;
  background: #313131;
  top: 35%;
  transition: 0.2s ease-in-out;
}

.readBtn a:after {
  content: "";
  width: 40px;
  height: 1px;
  position: absolute;
  right: -5px;
  background: #313131;
  top: 55%;
  transition: 0.2s ease-in-out;
}

.readBtn a:hover {
  background: #054A91;
  color: #fff;
  background: #fff;
  color: #313131;
}

.readBtn a:hover:before,
.readBtn a:hover:after {
  transform: translateX(10px);
}

/*
******************************
    トップへ戻るボタン 
*******************************
*/
#page-top {
  position: absolute;
  right: 35px;
  bottom: 35px;
  height: 50px;
  text-decoration: none;
  font-weight: bold;
  transform: rotate(90deg);
  font-size: 90%;
  line-height: 2rem;
  color: #fff;
  padding: 0 0 0 35px;
  border-top: solid 1px;
  animation: moveanime 2s ease-in-out infinite;
}

#page-top::before {
  content: "";
  display: block;
  position: absolute;
  top: -1px;
  left: 0px;
  width: 15px;
  border-top: solid 1px;
  transform: rotate(35deg);
  transform-origin: left top;
}

/*
******************************
    header
*******************************
*/
.header {
  background: #fff;
}
@media screen and (max-width: 479px) {
  .header {
    position: fixed;
  }
}
@media screen and (min-width:480px) and (max-width:959px) {
  .header {
    position: fixed;
  }
}

.header * {
  color: black;
}
@media screen and (max-width: 479px) {
  .header * {
    color: #fff;
  }
}
@media screen and (min-width:480px) and (max-width:959px) {
  .header * {
    color: #fff;
  }
}

@media screen and (max-width: 479px) {
  .hamburger span {
    background: black;
  }
}
@media screen and (min-width:480px) and (max-width:959px) {
  .hamburger span {
    background: black;
  }
}

@media screen and (max-width: 479px) {
  .hamburger.active span {
    background: #fff;
  }
}
@media screen and (min-width:480px) and (max-width:959px) {
  .hamburger.active span {
    background: black;
  }
}

@media screen and (min-width:480px) and (max-width:959px) {
  .globalMenuSp__item-head {
    border-top: 1px solid #fff;
  }
}

/*
******************************
    pageHeader
*******************************
*/
.pageHeader {
  position: relative;
}

.pageHeader__bgImg {
  height: 300px;
  width: 100%;
  margin-top: 80px;
  background-size: cover;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 479px) {
  .pageHeader__bgImg {
    height: 200px;
    background-position: center;
  }
}
@media screen and (min-width:480px) and (max-width:959px) {
  .pageHeader__bgImg {
    height: 200px;
    background-position: center;
  }
}

.pageHeader__sectionTitle {
  font-size: 5rem;
  font-weight: 800;
  text-align: center;
  color: #054A91;
  margin-bottom: 16px;
  background: -webkit-linear-gradient(180deg, rgb(0, 63, 255), rgb(255, 255, 255));
  background-size: 300% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  z-index: 99;
}
@media screen and (max-width: 479px) {
  .pageHeader__sectionTitle {
    font-size: 4rem;
  }
}
@media screen and (min-width:480px) and (max-width:959px) {
  .pageHeader__sectionTitle {
    font-size: 4rem;
  }
}

.pageHeader__sectionTitle:after {
  content: "";
  margin: 0 auto;
  display: block;
  width: 49px;
  height: 2px;
  border-radius: 2px;
  background: #fff;
  z-index: 99;
}

.pageHeader__sectionTitle-sub {
  font-size: 1.6rem;
  font-weight: 800;
  text-align: center;
  color: #fff;
  z-index: 99;
}

.pageHeader__mask {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 300px;
  z-index: 10;
  overflow: hidden;
}
@media screen and (max-width: 479px) {
  .pageHeader__mask {
    height: 200px;
  }
}
@media screen and (min-width:480px) and (max-width:959px) {
  .pageHeader__mask {
    height: 200px;
  }
}

.pageHeader__mask-mask1 {
  height: 300px;
  z-index: 15;
  background: rgba(1, 63, 147, 0.35);
}

/*
******************************
    本ページ共通
*******************************
*/
/*
******************************
    pageHeader
*******************************
*/
.pageHeader__bgImg {
  background-image: url(../../img/webp/ヘッダー画像.webp);
}

/*
******************************
    search
*******************************
*/
.search {
  padding-block: 64px;
  background: #E9E9F3;
}
@media screen and (max-width: 479px) {
  .search {
    padding-block: 40px;
  }
}
@media screen and (min-width:480px) and (max-width:959px) {
  .search {
    padding-block: 40px;
  }
}

.search__wrapper {
  width: 1180px;
  max-width: 90%;
  margin: 0px auto;
}

.search__sectionTitle {
  font-size: 2.5rem;
  position: relative;
  padding-left: 72px;
  margin-bottom: 40px;
}

.search__sectionTitle::before {
  content: url(../../img/webp/虫眼鏡.webp);
  vertical-align: middle;
  padding-right: 5px;
  transform: scale(0.17);
  display: inline-block;
  position: absolute;
  top: -108px;
  left: -100px;
}

.search__description {
  font-size: 1.6rem;
}

.search__wrapper > .search__description:nth-child(3) {
  margin-bottom: 24px;
}

.search__searchArea {
  display: flex;
  align-items: flex-end;
  gap: 64px;
}
@media screen and (max-width: 479px) {
  .search__searchArea {
    gap: 16px;
    flex-direction: column;
  }
}
@media screen and (min-width:480px) and (max-width:959px) {
  .search__searchArea {
    gap: 16px;
    flex-direction: column;
  }
}

.search__majorClassification,
.search__minorClassification {
  display: flex;
  flex-direction: column;
  width: 35%;
}
@media screen and (max-width: 479px) {
  .search__majorClassification,
  .search__minorClassification {
    width: 100%;
  }
}
@media screen and (min-width:480px) and (max-width:959px) {
  .search__majorClassification,
  .search__minorClassification {
    width: 100%;
  }
}

.search__majorClassificationHead,
.search__minorClassificationHead {
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 0.2em;
}

.search__majorClassificationSelectBox,
.search__minorClassificationSelectBox {
  padding-inline: 16px;
  border: none;
  height: 55px;
  font-weight: 800;
  font-size: 1.6rem;
}

/*
******************************
    stickySearch
*******************************
*/
.stickySearch {
  position: fixed;
  width: 100%;
  background: #e9e9f3;
  top: 80px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s;
  z-index: 99;
}

.stickySearch.js-sticky {
  background: #e9e9f3;
  top: 80px;
  opacity: 1;
  pointer-events: unset;
}

.stickySearch__searchArea {
  display: flex;
  align-items: flex-end;
  gap: 10px;
}
@media screen and (max-width: 479px) {
  .stickySearch__searchArea {
    gap: 16px;
    flex-direction: row;
  }
}
@media screen and (min-width:480px) and (max-width:959px) {
  .stickySearch__searchArea {
    gap: 16px;
    flex-direction: row;
  }
}

.stickySearch__wrapper {
  width: 1180px;
  max-width: 90%;
  margin-inline: auto;
  padding-block: 16px;
}

.stickySearch__majorClassification,
.stickySearch__minorClassification {
  display: flex;
  flex-direction: column;
  width: 35%;
}
@media screen and (max-width: 479px) {
  .stickySearch__majorClassification,
  .stickySearch__minorClassification {
    width: calc((100% - 10px) / 2);
  }
}
@media screen and (min-width:480px) and (max-width:959px) {
  .stickySearch__majorClassification,
  .stickySearch__minorClassification {
    width: calc((100% - 10px) / 2);
  }
}

.stickySearch__majorClassificationHead,
.stickySearch__minorClassificationHead {
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 0.2em;
}

.stickySearch__majorClassificationSelectBox,
.stickySearch__minorClassificationSelectBox {
  padding-inline: 16px;
  border: none;
  height: 40px;
  font-weight: 800;
  font-size: 1.4rem;
}
@media screen and (max-width: 479px) {
  .stickySearch__majorClassificationSelectBox,
  .stickySearch__minorClassificationSelectBox {
    padding-inline: 8px;
    font-size: 1.2rem;
  }
}
@media screen and (min-width:480px) and (max-width:959px) {
  .stickySearch__majorClassificationSelectBox,
  .stickySearch__minorClassificationSelectBox {
    padding-inline: 8px;
    font-size: 1.2rem;
  }
}

/*
******************************
    product
*******************************
*/
.product__wrapper {
  width: 1180px;
  max-width: 90%;
  margin-inline: auto;
  padding-block: 128px;
}
@media screen and (max-width: 479px) {
  .product__wrapper {
    margin-inline: auto;
    padding-block: 40px;
  }
}
@media screen and (min-width:480px) and (max-width:959px) {
  .product__wrapper {
    margin-inline: auto;
    padding-block: 40px;
  }
}

.product__makerName {
  font-size: 2rem;
  background: #054A91;
  color: #fff;
  padding: 16px;
  margin-bottom: 64px;
  position: relative;
}
@media screen and (max-width: 479px) {
  .product__makerName {
    order: 1;
    margin-bottom: 32px;
  }
}
@media screen and (min-width:480px) and (max-width:959px) {
  .product__makerName {
    order: 1;
    margin-bottom: 32px;
  }
}

.product__makerName:before {
  position: absolute;
  display: block;
  content: "";
  top: -4px;
  left: 0;
  width: 100%;
  height: calc(100% + 4px);
  box-sizing: content-box;
  border-top: solid 2px #054A91;
  border-bottom: solid 2px #054A91;
}

.product__contents {
  display: flex;
  flex-direction: column;
  gap: 72px;
}
@media screen and (max-width: 479px) {
  .product__contents {
    gap: 72px;
  }
}
@media screen and (min-width:480px) and (max-width:959px) {
  .product__contents {
    gap: 72px;
  }
}

.product__makerSiteLink {
  text-decoration: underline;
  position: relative;
  z-index: 20;
  transition: 0.4s;
}

.product__makerSiteLink:hover {
  opacity: 0.6;
}

.product__productItem {
  display: flex;
  align-items: center;
  gap: 48px;
  justify-content: space-between;
}
@media screen and (max-width: 479px) {
  .product__productItem {
    gap: 16px;
    flex-direction: column;
    align-items: start;
  }
}
@media screen and (min-width:480px) and (max-width:959px) {
  .product__productItem {
    gap: 16px;
    flex-direction: column;
    align-items: start;
  }
}

.product__productImageWrapper {
  width: 40%;
}
@media screen and (max-width: 479px) {
  .product__productImageWrapper {
    width: 100%;
    order: 2;
  }
}
@media screen and (min-width:480px) and (max-width:959px) {
  .product__productImageWrapper {
    width: 100%;
    order: 2;
  }
}

.product__productImage {
  width: 100%;
  height: 320px;
  object-fit: contain;
}
@media screen and (max-width: 479px) {
  .product__productImage {
    height: auto;
  }
}
@media screen and (min-width:480px) and (max-width:959px) {
  .product__productImage {
    height: auto;
  }
}

.product__productInfo {
  width: 55%;
}
@media screen and (max-width: 479px) {
  .product__productInfo {
    display: contents;
  }
}
@media screen and (min-width:480px) and (max-width:959px) {
  .product__productInfo {
    display: contents;
  }
}

.product__productName {
  font-size: 2.4rem;
  border-bottom: 1px solid #054A91;
  margin-bottom: 16px;
  padding-bottom: 16px;
}
@media screen and (max-width: 479px) {
  .product__productName {
    margin-bottom: 0px;
    padding-bottom: 4px;
    width: 100%;
  }
}
@media screen and (min-width:480px) and (max-width:959px) {
  .product__productName {
    margin-bottom: 0px;
    padding-bottom: 4px;
    width: 100%;
  }
}

.product__productDescription {
  font-size: 1.4rem;
  width: 100%;
}
@media screen and (max-width: 479px) {
  .product__productDescription {
    order: 3;
  }
}
@media screen and (min-width:480px) and (max-width:959px) {
  .product__productDescription {
    order: 3;
    font-size: 1.6rem;
  }
}

.product__productDescription ul {
  list-style: disc;
  padding-left: 1.5em;
  margin-top: 16px;
}

.product__catalogs {
  display: flex;
  flex-wrap: wrap;
  column-gap: 10px;
  order: 4;
  width: 100%;
}

.product__catalog {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 64px;
  background: #446587;
  color: #fff;
  margin-top: 24px;
  font-size: 1.2rem;
  order: 4;
}
@media screen and (max-width: 479px) {
  .product__catalog {
    width: 60%;
    font-size: 1.1rem;
    padding: 10px 24px;
  }
}
@media screen and (min-width:480px) and (max-width:959px) {
  .product__catalog {
    width: 60%;
    font-size: 1.3rem;
    padding: 10px 24px;
  }
}

.product__catalogs .product__catalog {
  padding: 12px 8px;
  margin-top: 18px;
  width: calc((100% - 20px) / 3);
  text-align: center;
}
@media screen and (max-width: 479px) {
  .product__catalogs .product__catalog {
    font-size: 1.1rem;
    width: calc((100% - 10px) / 2);
  }
}
@media screen and (min-width:480px) and (max-width:959px) {
  .product__catalogs .product__catalog {
    font-size: 1.3rem;
    width: calc((100% - 10px) / 2);
  }
}

.fa-file-pdf:before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  margin-right: 10px;
  font-size: 2.4rem;
  font-style: initial;
}

.product__makerSiteLink-bottom {
  width: 100%;
  font-size: 2rem;
  text-align: right;
  color: #054A91;
  display: inline-block;
}

.product__pdfs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}
@media screen and (max-width: 479px) {
  .product__pdfs {
    order: 4;
    margin-top: 0px;
  }
}
@media screen and (min-width:480px) and (max-width:959px) {
  .product__pdfs {
    order: 4;
    margin-top: 0px;
  }
}

.product__merchandiseName {
  font-size: 1.6rem;
}

.product__merchandiseName::before {
  content: "■";
  margin-right: 4px;
}

.product__merchandiseDesc {
  padding-left: 1.45em;
}

.product__merchandiseWrapper:nth-child(-n+2) {
  margin-bottom: 10px;
}

.product__constructionExample {
  font-size: 2rem;
  font-weight: 800;
  border-left: 8px solid #054A91;
  padding-left: 10px;
  margin-block: 16px;
}

.product__constructionExampleImages {
  display: flex;
  flex-wrap: wrap;
  column-gap: 10px;
  row-gap: 24px;
}

.product__constructionExampleImageWrapper {
  width: calc((100% - 20px) / 3);
}
@media screen and (max-width: 479px) {
  .product__constructionExampleImageWrapper {
    width: calc((100% - 10px) / 2);
  }
}

.product__constructionExampleImageWrapper figcaption {
  font-size: 1.4rem;
}

.product__constructionExampleImage {
  width: 100%;
}

.product__productImageFigcaption {
  font-size: 1.4rem;
}

.product__contents {
  display: none;
}

.product__contents.active {
  display: flex;
}

/*========= 
モーダル表示のためのCSS 
===============*/
#pdf1,
#pdf2,
#pdf3,
#pdf4,
#pdf5 {
  display: none;
}

/*モーダルの横幅を変更したい場合*/
.modaal-container {
  max-width: 700px;
}

@media screen and (max-width: 479px) {
  .modaal-content-container {
    padding: 10px;
  }
}

.modaal-close:focus:after,
.modaal-close:focus:before,
.modaal-close:hover:after,
.modaal-close:hover:before {
  background: #666;
}

.modal-open {
  display: inline-block;
  text-align: center;
  background: #446587;
  padding: 10px;
  color: #fff;
  width: calc(33.3333333333% - 6.6666666667px);
  font-size: 1rem;
  border-radius: 8px;
  transition: 0.7s;
}
@media screen and (max-width: 479px) {
  .modal-open {
    width: calc(50% - 5px);
  }
}
@media screen and (min-width:480px) and (max-width:959px) {
  .modal-open {
    width: calc(50% - 5px);
    font-size: 1.2rem;
  }
}
@media screen and (min-width:960px) and (max-width:1279px) {
  .modal-open {
    font-size: clamp(8px, 0.124rem + 0.63vw, 10px);
  }
}

.modal-open:hover {
  opacity: 0.7;
}

button#modaal-close {
  position: absolute;
  right: 10px;
  top: 10px;
  background: black;
  width: 30px;
  height: 30px;
}

button.modaal-close:after,
button.modaal-close:before {
  display: block;
  content: " ";
  position: absolute;
  top: 7px;
  left: 14px;
  width: 3px;
  height: 16px;
  border-radius: 4px;
  background: #fff;
  -webkit-transition: background 0.2s ease-in-out;
  transition: background 0.2s ease-in-out;
}

@media screen and (max-width: 479px) {
  div.modaal-inner-wrapper {
    padding: 80px 14px;
  }
}

@media screen and (max-width: 479px) {
  div.modaal-content-container {
    padding-block: 35px;
    padding-inline: 16px;
  }
}

/*
******************************
    contactAndRecruit
*******************************
*/
.contactAndRecruit {
  display: none;
}/*# sourceMappingURL=product.css.map */