@charset "UTF-8";
/* index.html
---------------------------------------------------- */
#main-visual {
  position: relative;
  z-index: 2;
  padding-top: max(22vh, 160px);
  overflow: clip;
}
@media screen and (max-width: 991px) {
  #main-visual {
    padding-top: 180px;
  }
}
@media screen and (max-width: 767px) {
  #main-visual {
    padding-top: 110px;
  }
}
#main-visual .mv-catch {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  padding: 0 min(6.25vw, 120px);
  margin-top: max(33vh, 240px);
}
@media screen and (max-width: 991px) {
  #main-visual .mv-catch {
    position: relative;
    padding: 0 40px;
    margin-top: 0;
    margin-bottom: 80px;
  }
}
@media screen and (max-width: 767px) {
  #main-visual .mv-catch {
    padding: 0 20px;
    margin-bottom: 60px;
  }
}
#main-visual .mv-catch .company-name {
  font-size: 1.125em;
  margin-bottom: 2em;
  box-shadow: 4px 4px 8px rgba(60, 60, 60, 0.2);
}
@media screen and (max-width: 767px) {
  #main-visual .mv-catch .company-name {
    font-size: 0.9em;
    margin-bottom: 1.25em;
  }
}
#main-visual .mv-catch .mv-catch-slider .swiper-wrapper .swiper-slide {
  width: 100% !important;
  height: auto !important;
}
#main-visual .mv-catch .mv-catch-slider .swiper-wrapper .swiper-slide h2 {
  opacity: 0;
  transform: translateY(16px);
}
#main-visual .mv-catch .mv-catch-slider .swiper-wrapper .swiper-slide h2 span.__jp {
  font-size: max(3.25rem, 2.25em);
  font-feature-settings: normal;
  box-shadow: 4px 4px 8px rgba(60, 60, 60, 0.2);
}
@media screen and (max-width: 767px) {
  #main-visual .mv-catch .mv-catch-slider .swiper-wrapper .swiper-slide h2 span.__jp {
    font-size: min(4.8vw, 1.375em);
    line-height: 2.4em;
    letter-spacing: 0;
  }
}
#main-visual .mv-catch .mv-catch-slider .swiper-wrapper .swiper-slide h2 span.__jp .__sp-br {
  display: none;
}
@media screen and (max-width: 767px) {
  #main-visual .mv-catch .mv-catch-slider .swiper-wrapper .swiper-slide h2 span.__jp .__sp-br {
    display: inline;
  }
}
#main-visual .mv-catch .mv-catch-slider .swiper-wrapper .swiper-slide h2 span.__en {
  display: block;
  color: #bbb;
  margin-top: 1em;
}
@media screen and (max-width: 767px) {
  #main-visual .mv-catch .mv-catch-slider .swiper-wrapper .swiper-slide h2 span.__en {
    font-size: 0.9em;
    margin-top: 1.6em;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  10% {
    opacity: 1;
    transform: translateY(0);
  }
  94% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(0);
  }
}
#main-visual .mv-img {
  width: 60%;
  height: max(78vh, 560px);
  box-shadow: 4px 4px 8px rgba(60, 60, 60, 0.2);
  margin-left: auto;
}
@media screen and (max-width: 991px) {
  #main-visual .mv-img {
    width: calc(100% - 120px);
    height: auto;
    aspect-ratio: 3/2;
  }
}
@media screen and (max-width: 767px) {
  #main-visual .mv-img {
    width: calc(100% - 80px);
    aspect-ratio: 4/3;
  }
}
#main-visual .mv-img .mv-img-slider {
  width: 100%;
  height: 100%;
}
#main-visual .mv-img .mv-img-slider .swiper-img {
  width: 100%;
  height: 100%;
}
#main-visual .mv-img .mv-img-slider .swiper-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@keyframes zoomPan {
  0% {
    transform: scale(1.3) translateX(3%);
  }
  100% {
    transform: scale(1.3) translateX(-3%);
  }
}
#main-visual .mv-img .mv-img-slider .swiper-slide-active .swiper-img img,
#main-visual .mv-img .mv-img-slider .swiper-slide-duplicate-active .swiper-img img,
#main-visual .mv-img .mv-img-slider .swiper-slide-prev .swiper-img img {
  animation: zoomPan 8s linear 0s normal both;
}
#main-visual .mv-scroll {
  position: absolute;
  z-index: 2;
  bottom: 0;
  left: 0;
  padding: 0 20px;
}
#main-visual .mv-scroll .mv-scroll-inner {
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  align-items: flex-start;
}
#main-visual .mv-scroll .mv-scroll-inner p {
  font-weight: 700;
  font-size: 12px;
  transform-origin: left;
  transform: translateX(1.5em) translateY(-1em) rotate(90deg);
}
@media screen and (max-width: 767px) {
  #main-visual .mv-scroll .mv-scroll-inner p {
    font-size: 10px;
  }
}
@keyframes lineAnime {
  0% {
    transform: scale(1, 0);
    transform-origin: 0 0;
  }
  50% {
    transform: scale(1, 1);
    transform-origin: 0 0;
  }
  51% {
    transform: scale(1, 1);
    transform-origin: 0 100%;
  }
  100% {
    transform: scale(1, 0);
    transform-origin: 0 100%;
  }
}
#main-visual .mv-scroll .mv-scroll-inner::before {
  content: "";
  display: block;
  margin: 0 auto;
  width: 1px;
  height: max(20lvh, 160px);
  background: #fff;
  animation: lineAnime 3s cubic-bezier(0.8, 0, 0, 0.8) infinite;
}
@media screen and (max-width: 767px) {
  #main-visual .mv-scroll .mv-scroll-inner::before {
    height: 140px;
  }
}

.sec-about {
  z-index: 4;
}
.sec-about::before {
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  content: "";
  display: block;
  width: 100%;
  height: calc(100% - 15 * 1rem);
  background-image: linear-gradient(0deg, #efefef, transparent);
}
.sec-about .sec-inner {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 1199px) {
  .sec-about .sec-inner {
    display: block;
  }
}
.sec-about .sec-inner .sec-ttl {
  flex-shrink: 0;
  margin-right: 7.5rem;
}
@media screen and (max-width: 1199px) {
  .sec-about .sec-inner .sec-ttl {
    margin-right: 0;
  }
}
.sec-about .sec-inner .sec-content {
  width: 100%;
}
@media screen and (max-width: 1199px) {
  .sec-about .sec-inner .sec-content {
    margin-top: 2em;
  }
}
.sec-about .sec-inner .sec-content .sec-catch h3 {
  font-weight: 700;
  font-size: max(2rem, 1.375em);
  font-feature-settings: normal;
}
@media screen and (max-width: 767px) {
  .sec-about .sec-inner .sec-content .sec-catch h3 {
    font-size: 1.125em;
  }
}
.sec-about .sec-inner .sec-content .sec-txt {
  margin-top: 2em;
}
.sec-about .about-video {
  margin-top: max(7.5rem, 4em);
  margin-bottom: -15rem;
}
@media screen and (max-width: 767px) {
  .sec-about .about-video {
    margin-top: 3em;
  }
}
.sec-about .about-video .video-wrap {
  width: calc(100% - 16.25 * 1rem);
  aspect-ratio: 12/5;
  overflow: clip;
  box-shadow: 4px 4px 8px rgba(60, 60, 60, 0.2);
}
@media screen and (max-width: 991px) {
  .sec-about .about-video .video-wrap {
    width: calc(100% - 40px);
  }
}
@media screen and (max-width: 767px) {
  .sec-about .about-video .video-wrap {
    width: calc(100% - 20px);
  }
}
.sec-about .about-video .video-wrap video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transform: scale(1.05);
}

.sec-products {
  padding-top: calc(8.75 * 1rem + 15 * 1rem);
}
@media screen and (max-width: 1199px) {
  .sec-products {
    padding-top: calc(100px + 15 * 1rem);
  }
}
@media screen and (max-width: 767px) {
  .sec-products {
    padding-top: calc(56px + 15 * 1rem);
  }
}
.sec-products .sec-img {
  display: flex;
  justify-content: space-between;
  margin-top: 3em;
}
@media screen and (max-width: 767px) {
  .sec-products .sec-img {
    display: block;
    margin-top: 2em;
  }
}
.sec-products .sec-img .img-wrap {
  width: calc(33.3333333333% - max(1.875rem, 1em) * 2 / 3);
  aspect-ratio: 4/3;
  box-shadow: 4px 4px 8px rgba(60, 60, 60, 0.2);
}
@media screen and (max-width: 767px) {
  .sec-products .sec-img .img-wrap {
    width: 100%;
    margin-top: 1em;
  }
}
.sec-products .sec-img .img-wrap img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.sec-products .sec-link {
  margin-top: max(5rem, 3em);
}
.sec-products .sec-link .__linkbtn01 {
  margin: 0 auto;
}

.sec-strength .sec-content {
  display: flex;
  justify-content: space-between;
  margin-top: max(5rem, 3em);
}
@media screen and (max-width: 991px) {
  .sec-strength .sec-content {
    display: block;
  }
}
@media screen and (max-width: 767px) {
  .sec-strength .sec-content {
    margin-top: 2em;
  }
}
.sec-strength .sec-content .sticky-wrap {
  position: sticky;
  left: 0;
  height: -moz-max-content;
  height: max-content;
  width: 35rem;
  display: flex;
}
@media screen and (max-width: 991px) {
  .sec-strength .sec-content .sticky-wrap {
    position: relative;
    top: 0 !important;
    width: 100%;
  }
}
.sec-strength .sec-content .sticky-wrap .progress-bar {
  --progress: 0px;
  position: relative;
  flex-shrink: 0;
  width: 3px;
  background-color: #bbb;
  margin-right: 3.75rem;
}
@media screen and (max-width: 991px) {
  .sec-strength .sec-content .sticky-wrap .progress-bar {
    display: none;
  }
}
.sec-strength .sec-content .sticky-wrap .progress-bar::after {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  display: block;
  width: 100%;
  height: var(--progress);
  background-color: #103364;
  transition: all 0.6s ease;
}
.sec-strength .sec-content .sticky-wrap .progress-bar .progress-dot {
  position: absolute;
  z-index: 2;
  top: var(--progress);
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 20px;
  padding: 4px;
  border-radius: 50%;
  background-color: rgba(16, 51, 100, 0.2);
  transition: all 0.6s ease;
}
.sec-strength .sec-content .sticky-wrap .progress-bar .progress-dot::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: #103364;
}
.sec-strength .sec-content .sticky-wrap .sticky-content {
  width: 100%;
  padding-bottom: 120px;
}
@media screen and (max-width: 991px) {
  .sec-strength .sec-content .sticky-wrap .sticky-content {
    padding-bottom: 0;
  }
}
.sec-strength .sec-content .sticky-wrap .sticky-content .sec-img {
  width: 100%;
  aspect-ratio: 4/3;
  box-shadow: 4px 4px 8px rgba(60, 60, 60, 0.2);
}
.sec-strength .sec-content .sticky-wrap .sticky-content .sec-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.sec-strength .sec-content .sticky-wrap .sticky-content .sec-link {
  margin-top: 3em;
}
.sec-strength .sec-content .sticky-wrap .sticky-content .sec-link .__linkbtn01 {
  margin-left: auto;
}
.sec-strength .sec-content .strength-list {
  width: calc(100% - 35 * 1rem - 8.75 * 1rem);
}
@media screen and (max-width: 991px) {
  .sec-strength .sec-content .strength-list {
    width: 100%;
    margin-top: 3em;
  }
}
@media screen and (max-width: 767px) {
  .sec-strength .sec-content .strength-list {
    margin-top: 2em;
  }
}
.sec-strength .sec-content .strength-list ul .strength-list-item {
  padding: max(5rem, 3em) 0;
  border-bottom: solid 1px #bbb;
}
@media screen and (max-width: 991px) {
  .sec-strength .sec-content .strength-list ul .strength-list-item {
    padding: 2em 0;
  }
}
.sec-strength .sec-content .strength-list ul .strength-list-item:nth-of-type(1) {
  padding-top: 0;
}
.sec-strength .sec-content .strength-list ul .strength-list-item .item-num {
  font-weight: 600;
  padding-bottom: 0.3em;
}
.sec-strength .sec-content .strength-list ul .strength-list-item .item-name {
  margin-top: 1.2em;
}
.sec-strength .sec-content .strength-list ul .strength-list-item .item-txt {
  margin-top: 1em;
  margin-bottom: 0.4em;
}
@media screen and (max-width: 767px) {
  .sec-strength .sec-content .strength-list ul .strength-list-item .item-txt {
    margin-top: 0.6em;
    margin-bottom: 0;
  }
}
@media screen and (max-width: 991px) {
  .sec-strength .sec-content .sec-link {
    margin-top: 2em;
    margin-bottom: -2em;
  }
  .sec-strength .sec-content .sec-link .__linkbtn01 {
    margin-left: auto;
  }
}
@media screen and (max-width: 767px) {
  .sec-strength .sec-content .sec-link {
    margin-bottom: 0;
  }
}

@media screen and (max-width: 767px) {
  .sec-equipment .sec-ttl {
    margin-top: 1em;
  }
}
.sec-equipment .equipment-list {
  padding: 0 max(1.25rem, 10px);
  margin-top: 3em;
}
@media screen and (max-width: 767px) {
  .sec-equipment .equipment-list {
    margin-top: 2em;
  }
}
.sec-equipment .equipment-list .equipment-list-content {
  pointer-events: none;
  display: flex;
  justify-content: space-between;
  margin-top: max(1.25rem, 10px);
}
@media screen and (max-width: 991px) {
  .sec-equipment .equipment-list .equipment-list-content {
    display: block;
  }
}
.sec-equipment .equipment-list .equipment-list-content .txt-wrap {
  color: #fff;
  background-image: linear-gradient(135deg, #103364, #007c8e);
  box-shadow: 4px 4px 8px rgba(60, 60, 60, 0.2);
  position: relative;
  z-index: 2;
  width: calc(50% - max(1.25rem, 10px) * 1 / 2);
  padding: max(6.25rem, 3em) max(5rem, 3em);
}
@media screen and (max-width: 991px) {
  .sec-equipment .equipment-list .equipment-list-content .txt-wrap {
    width: 100%;
    padding: 60px 40px;
  }
}
@media screen and (max-width: 767px) {
  .sec-equipment .equipment-list .equipment-list-content .txt-wrap {
    padding: 40px 20px 27px;
  }
}
.sec-equipment .equipment-list .equipment-list-content .txt-wrap::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(135deg, #103364, #007c8e);
  transform: scale(-1);
  opacity: 0;
  transition: all 0.36s ease;
}
.sec-equipment .equipment-list .equipment-list-content .txt-wrap .flex-wrap {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-top: max(7.5rem, 4em);
}
@media screen and (max-width: 767px) {
  .sec-equipment .equipment-list .equipment-list-content .txt-wrap .flex-wrap {
    display: block;
  }
}
.sec-equipment .equipment-list .equipment-list-content .txt-wrap .flex-wrap .content-txt p::before {
  margin-right: 1em;
}
@media screen and (max-width: 767px) {
  .sec-equipment .equipment-list .equipment-list-content .txt-wrap .flex-wrap .content-link {
    margin-top: 2em;
  }
}
@media screen and (max-width: 767px) {
  .sec-equipment .equipment-list .equipment-list-content .txt-wrap .flex-wrap .content-link .__linkbtn01 {
    margin-left: auto;
  }
}
.sec-equipment .equipment-list .equipment-list-content .txt-wrap .flex-wrap .content-link .__linkbtn01 a {
  pointer-events: auto;
}
.sec-equipment .equipment-list .equipment-list-content .img-wrap {
  background-size: cover;
  width: calc(50% - max(1.25rem, 10px) * 1 / 2);
}
@media screen and (max-width: 991px) {
  .sec-equipment .equipment-list .equipment-list-content .img-wrap {
    width: 100%;
    height: 300px;
    margin-top: 10px;
  }
}
@media screen and (max-width: 767px) {
  .sec-equipment .equipment-list .equipment-list-content .img-wrap {
    height: 240px;
  }
}
.sec-equipment .equipment-list .equipment-list-content .img-wrap::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  opacity: 0;
  transition: all 0.36s ease;
}
.sec-equipment .equipment-list .equipment-list-content:hover .txt-wrap::before {
  opacity: 1;
}
.sec-equipment .equipment-list .equipment-list-content:hover .img-wrap::before {
  opacity: 1;
}
.sec-equipment .equipment-list .equipment-list-content.__production .img-wrap {
  background-image: url(../images/production-img.jpg);
  background-position: 50% 90%;
}
.sec-equipment .equipment-list .equipment-list-content.__inspection {
  flex-direction: row-reverse;
}
.sec-equipment .equipment-list .equipment-list-content.__inspection .img-wrap {
  background-image: url(../images/inspection-img.jpg);
  background-position: 50% 100%;
}

.sec-news .sec-inner {
  position: relative;
  display: flex;
  margin-top: 1em;
}
@media screen and (max-width: 991px) {
  .sec-news .sec-inner {
    display: block;
    margin-top: 0;
  }
}
.sec-news .sec-inner .left-content {
  flex-shrink: 0;
  margin-right: 7.5rem;
}
@media screen and (max-width: 991px) {
  .sec-news .sec-inner .left-content {
    margin-right: 0;
  }
}
.sec-news .sec-inner .left-content .category-list {
  margin-top: 3em;
}
@media screen and (max-width: 767px) {
  .sec-news .sec-inner .left-content .category-list {
    margin-top: 2em;
  }
}
@media screen and (max-width: 991px) {
  .sec-news .sec-inner .left-content .category-list ul {
    display: flex;
    flex-wrap: wrap;
  }
}
.sec-news .sec-inner .left-content .category-list .category-btn {
  cursor: pointer;
  text-align: center;
  width: 14em;
  padding-top: 0.6em;
  padding-bottom: 0.7em;
  margin-top: 0.8em;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 991px) {
  .sec-news .sec-inner .left-content .category-list .category-btn {
    width: calc(50% - 0.5em);
    margin-top: 1em;
    margin-right: 1em;
  }
  .sec-news .sec-inner .left-content .category-list .category-btn:nth-of-type(2n) {
    margin-right: 0;
  }
}
@media screen and (max-width: 767px) {
  .sec-news .sec-inner .left-content .category-list .category-btn {
    padding-top: 0.4em;
    padding-bottom: 0.5em;
  }
}
.sec-news .sec-inner .left-content .category-list .category-btn.__current {
  color: #fff;
  background-color: #3966af;
  border-color: #3966af;
}
.sec-news .sec-inner .news-list-wrap {
  position: relative;
  width: 100%;
  height: 32em;
}
@media screen and (max-width: 991px) {
  .sec-news .sec-inner .news-list-wrap {
    margin-top: 2em;
  }
}
.sec-news .sec-inner .news-list-wrap .news-list {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding-right: 2em;
  overflow-y: scroll;
  opacity: 0;
  z-index: 0;
  pointer-events: none;
  transition: all 0.4s ease;
}
.sec-news .sec-inner .news-list-wrap .news-list.__visible {
  opacity: 1;
  z-index: 1;
  pointer-events: auto;
}
.sec-news .sec-inner .news-list-wrap .news-list {
  -ms-overflow-style: none; /* IE, Edge 対応 */
  scrollbar-width: none; /* Firefox 対応 */
}
.sec-news .sec-inner .news-list-wrap .news-list::-webkit-scrollbar {
  display: none; /* Chrome, Safari 対応 */
}
.sec-news .sec-inner .sec-link {
  margin-top: 3em;
}
@media screen and (max-width: 991px) {
  .sec-news .sec-inner .sec-link .__linkbtn01 {
    margin-left: auto;
  }
}/*# sourceMappingURL=index.css.map */