@import url(https://fonts.googleapis.com/css2?family=Antonio&family=Noto+Sans+JP:wght@500;700&display=swap);
@charset "UTF-8";
/**********************************
*
* 基本変数
*
**********************************/
/* color */
/*********************************
*
* mixin
*
**********************************/
/*-------------------- font family --------------------*/
/*-------------------- font style --------------------*/
/* .text {
    @include fontStyle1(black, 20px, 600);
}

.text2 {
    // 引数は初期値のを使用
    @include fontStyle1();
} */
/*-------------------- mixin medeia query --------------------*/
/*
.sample {
    @include pcTab {
        プロパティ: 値;
    };
}
*/
/*-------------------- video --------------------*/
/* .wrap_video {
    width: 780px;
    margin: 0 auto;
    .box_video {
        @include mixin_video;
    }
}
 */
.txt_video-cap {
  margin-top: 12px;
  text-align: left;
  font-size: 15px;
  font-weight: bold;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}

/* .wrap_video {
    width: 780px;
    margin: 0 auto;
    .box_video {
        @include mixin_video;
    }
}

.txt_video-cap {
    margin-top: 12px;
    text-align: left;
    font-size: 15px;
    font-weight: bold;
    font-feature-settings: "palt";
} */
/* @import url('https://fonts.googleapis.com/css2?family=Antonio&family=Noto+Sans+JP:wght@500;700&display=swap');
 */
/*-----------------------------------------------

    common setting

-------------------------------------------------*/
html {
  font-size: 62.5%;
}

body {
  background: #fff;
  color: #111;
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ Pro", "游ゴシック", "Hiragino Kaku Gothic Pro", "游ゴシック", YuGothic, "メイリオ", Meiryo, Helvetica, sans-serif;
  font-size: 15px;
  font-size: 1.5rem;
  line-height: 1;
  position: relative;
  text-align: center;
  -webkit-text-size-adjust: 100%;
     -moz-text-size-adjust: 100%;
      -ms-text-size-adjust: 100%;
          text-size-adjust: 100%;
  font-smoothing: antialiased;
  width: auto;
  height: auto;
}

a {
  text-decoration: none;
}

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

img {
  vertical-align: bottom;
  image-rendering: -webkit-optimize-contrast;
}

/*-----------------------------------------------

    animation

-------------------------------------------------*/
@-webkit-keyframes show {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes show {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/*-----------------------------------------------

    versatility parts

-------------------------------------------------*/
.display-pc {
  display: none !important;
}

.display-sp {
  display: block;
}

/*-----------------------------------------------

    button-page-top

-------------------------------------------------*/
.button-page-top {
  position: fixed;
  bottom: 10px;
  right: 10px;
  width: 34px;
  height: 34px;
  background: #004D99;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
}

.button-page-top__arrow {
  width: 14.4px;
  height: 7.2px;
  background: url(../images/arrow-top.svg) center/14.4px 7.2px no-repeat;
}

/*-----------------------------------------------

    page-contents

-------------------------------------------------*/
.page-contents {
  display: none;
}

.page-contents__intro {
  margin-bottom: 70px;
}

.page-contents__sub-intro {
  margin-bottom: 30px;
}

.page-contents__quality-first {
  padding-bottom: 50px;
}

.page-contents__news {
  margin-bottom: 60px;
}

.page-contents__top-aboutus {
  /* margin-bottom: 60px; */
}

.page-contents__section-contact {
  padding: 60px 0 31px;
}

.page-contents__company-overview, .page-contents__company-history, .page-contents__company-headfactory {
  margin-bottom: 50px;
}

.page-contents__company-partner {
  margin-bottom: 72px;
}

.page-contents__company-brochure, .page-contents__contact-form {
  margin-bottom: 20px;
}

/*-----------------------------------------------

    intro

-------------------------------------------------*/
.intro {
  width: 100%;
}

.intro__inner {
  position: relative;
  width: 100%;
  height: 100%;
  /* padding-top: 40px; //ヘッダーfixedで背景をヘッダーに被らせない場合はpaddingをつける */
}

.intro__background {
  width: 100%;
  height: 100%;
  height: calc(100% - 50px);
  height: calc(100vh - 50px);
  position: absolute !important;
  top: 50px;
  left: 0;
  overflow: hidden;
  z-index: -10;
  /* height: calc(211 / 375 * 100vw); */
  /* background: url(../img/sp__intro-bg.jpg) center / cover no-repeat; */
}

.intro__background-video {
  /* display: none; */
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%) scale(1);
          transform: translateX(-50%) scale(1);
  z-index: -1;
  -o-object-fit: cover;
     object-fit: cover;
}

.intro__bg-grid {
  position: absolute;
  width: 100%;
  height: calc(100% - 50px);
  top: 50px;
  left: 0;
  background: url(../images/grid.png) repeat;
}

.intro__container {
  /* position: absolute;
        top: 50px;
        left: 0;
        width: 100%;
        height: calc(211 / 375 * 100vw); */
  width: 100%;
  height: calc(100% - 50px);
  min-height: 100vh;
  position: relative;
  top: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.intro__center-box {
  width: 100%;
  padding: 20px 0 29px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  top: 25px;
}

.intro__bg-heading {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: #004D99;
  mix-blend-mode: multiply;
}

.intro__heading {
  z-index: 1;
}

.intro__heading-text {
  font-size: 18px;
  font-weight: bold;
  color: #fff;
  margin-bottom: 24px;
  display: inline-block;
}

.intro__heading-image {
  width: 180px;
  height: 152px;
  margin: 0 auto;
}

.intro__button-scroll-down {
  position: absolute;
  bottom: 6%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
}
.intro__button-scroll-down.anime {
  -webkit-animation-name: show;
          animation-name: show;
  -webkit-animation-duration: 0.8s;
          animation-duration: 0.8s;
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
  -webkit-animation-iteration-count: 1;
          animation-iteration-count: 1;
  -webkit-animation-direction: normal;
          animation-direction: normal;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  visibility: visible;
}

.intro__intro-header {
  position: absolute;
  top: 0;
  left: 0;
}

/*-----------------------------------------------

    sub-intro

-------------------------------------------------*/
.sub-intro {
  position: relative;
  width: 100%;
}
.sub-intro:before {
  content: "";
  display: block;
  padding-top: calc(58.93% + 50px);
  /* 高さを幅の75%に固定 */
}

.sub-intro__inner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.sub-intro__background {
  position: absolute;
  top: 50px;
  left: 0;
  width: 100%;
  height: calc(100% - 50px);
  background: url(../images/sp__sub-bg-products@3x.png) center/cover no-repeat;
}

.sub-intro__background_example {
  background: url(../images/sp__sub-bg-example@3x.png) center/cover no-repeat;
}

.sub-intro__background_company {
  background: url(../images/sp__sub-bg-company@3x.png) center/cover no-repeat;
}

.sub-intro__background_contact {
  background: url(../images/sp__sub-bg-contact@3x.png) center/cover no-repeat;
}

.sub-intro__container {
  position: absolute;
  top: 50px;
  left: 0;
  width: 100%;
  height: calc(100% - 50px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.sub-intro__center-box {
  padding: 0 15px;
}

.sub-intro__heading-text {
  display: inline-block;
  color: #fff;
  font-size: 30px;
  font-weight: bold;
  font-weight: 700;
  /* @include fontFam1(); */
  margin-bottom: 20px;
}

.sub-intro__description-text {
  color: #fff;
  font-size: 14px;
  font-weight: normal;
  font-weight: 500;
  line-height: 2;
  text-align: left;
}

.sub-intro__intro-header {
  position: absolute;
  top: 0;
  left: 0;
}

/*-----------------------------------------------

    intro-header

-------------------------------------------------*/
.intro-header {
  width: 100%;
  height: 50px;
  background: #fff;
  position: fixed;
  z-index: 10;
}

.intro-header__container {
  padding: 0 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.intro-header__page-title {
  /* color: #fff;
        font-size: 14px;
        font-size: 1.4rem;
        font-weight: bold;
        font-weight: 700; */
}

.intro-header__page-title-img {
  width: 146.25px;
  height: 30px;
}

.intro-header__sp-nav-button {
  /*IE11*/
  position: absolute;
  right: 16px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 1;
}

.intro-header__pc-header-nav {
  display: none;
}

.button-scroll-down__link {
  padding-top: 42px;
  color: #fff;
  font-size: 13px;
  font-weight: bold;
  font-weight: 700;
  position: relative;
  text-decoration: none;
}

.button-scroll-down__text {
  color: #fff;
  font-size: 13px;
  font-weight: bold;
  font-weight: 700;
}

.button-scroll-down__arrow {
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 28px;
  height: 12px;
  background: url(../images/scroll-arrow.svg) center/28px 12px no-repeat;
  -webkit-animation: sdb 1.5s infinite;
  animation: sdb 1.5s infinite;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* IE11 */
@media all and (-ms-high-contrast: none) {
  *::-ms-backdrop, .button-scroll-down .button-scroll-down__arrow {
    animation: unset;
  }
}
@-webkit-keyframes sdb {
  0% {
    -webkit-transform: translate(0, 0) translateX(-50%);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    -webkit-transform: translate(0, 20px) translateX(-50%);
    opacity: 0;
  }
}
@keyframes sdb {
  0% {
    -webkit-transform: translate(0, 0) translateX(-50%);
            transform: translate(0, 0) translateX(-50%);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    -webkit-transform: translate(0, 20px) translateX(-50%);
            transform: translate(0, 20px) translateX(-50%);
    opacity: 0;
  }
}
.sp-header-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  /* height: -webkit-fill-available; */
  background: #fff;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.sp-header-nav__inner {
  position: relative;
  /* top: -50px; */
}

.sp-header-nav__list-item:not(:last-child) {
  margin-bottom: 30px;
}

.sp-header-nav__list-item_contact {
  /* padding: 13px 30px;
        background-color: #CA0B1A; */
}

.sp-header-nav__link {
  font-family: "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ Pro", sans-serif;
  color: #2C2C2C;
  font-size: 14px;
  font-size: 1.4rem;
  font-weight: bold;
  font-weight: 700;
  text-decoration: none;
}

.sp-header-nav__link_contact {
  color: #fff;
  padding: 13px 30px;
  background-color: #CA0B1A;
  display: block;
}

.sp-header-nav__logo-link {
  display: block;
  margin-bottom: 60px;
}

.sp-header-nav__logo-img {
  width: 182.07px;
  height: 100px;
  margin: 0 auto;
}

.show .sp-header-nav {
  opacity: 1;
  visibility: visible;
}

/*-----------------------------------------------

    sp-nav-button

-------------------------------------------------*/
.sp-nav-button {
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  width: 20px;
  height: 13px;
  padding: 5px;
  cursor: pointer;
  opacity: 1;
  visibility: visible;
  -webkit-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
  -webkit-transition-property: opacity, visibility;
  transition-property: opacity, visibility;
}

.sp-nav-button__inner {
  position: relative;
  width: 100%;
  height: 100%;
}

.sp-nav-button__line {
  display: inline-block;
  width: 20px;
  height: 2px;
  background-color: #707070;
  position: absolute;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  /* &:nth-child(3) {
            bottom: 0px;
            left: 0px;
        } */
}
.sp-nav-button__line:nth-child(1) {
  top: 0px;
  left: 0px;
}
.sp-nav-button__line:nth-child(2) {
  bottom: 0px;
  left: 0px;
}

.show .sp-nav-button .sp-nav-button__line {
  /* &:nth-child(3) {
            transform: rotate(-45deg);
            bottom: 8px;
        } */
}
.show .sp-nav-button .sp-nav-button__line:nth-child(1) {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  top: 6px;
}
.show .sp-nav-button .sp-nav-button__line:nth-child(2) {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  bottom: 5px;
}

/*-----------------------------------------------

    hover

-------------------------------------------------*/
.header-nav__link, .button-scroll-down__link {
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.header-nav__link:hover, .button-scroll-down__link:hover {
  opacity: 0.7;
}

.sp-nav-button {
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.sp-nav-button:hover {
  /* opacity: .7; */
}

.sp-header-nav__link {
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.sp-header-nav__link:hover {
  opacity: 0.7;
}

/*-----------------------------------------------

    section-header

-------------------------------------------------*/
.section-header {
  padding-bottom: 10px;
  border-bottom: 1px solid #2C2C2C;
}

.section-header__text {
  color: #2C2C2C;
  font-size: 24px;
  font-weight: bold;
  font-weight: 700;
  line-height: 1.3;
}

.section-header_left, .section-header_right {
  text-align: left;
}

/*-----------------------------------------------

    quality-first

-------------------------------------------------*/
.quality-first {
  background: url(../images/quality-first.svg) top 0 left 0/38px 272.77px no-repeat;
}

.quality-first__container {
  /* padding-left: calc(53 / 375 * 100%);
        padding-right: calc(15 / 375 * 100%); */
  /* background: url(../images/quality-first.svg) top 0 left 0 / 38px 272.77px no-repeat; */
}

.quality-first__section-header {
  margin-bottom: 20px;
  padding-left: 14.1333333333%;
  padding-right: 4%;
}

.quality-first__description-text {
  padding-left: 14.1333333333%;
  padding-right: 4%;
  color: #2C2C2C;
  font-size: 16px;
  font-weight: normal;
  font-weight: 500;
  line-height: 1.75;
  text-align: left;
  margin-bottom: 30px;
}

.quality-first-list__item:not(:last-child) {
  margin-bottom: 30px;
}

.quality-first-list__image {
  width: 74.6666666667%;
  margin: 0 auto;
  margin-bottom: 20px;
}

.quality-first-list__heading-text {
  color: #2C2C2C;
  font-size: 24px;
  font-weight: bold;
  font-weight: 700;
  margin-bottom: 10px;
}

.quality-first-list__read-text {
  color: #2C2C2C;
  font-size: 16px;
  font-weight: normal;
  font-weight: 500;
  line-height: 1.75;
  padding-bottom: 50px;
  margin-bottom: 17px;
  position: relative;
}
.quality-first-list__read-text:after {
  content: "";
  display: inline-block;
  width: 1px;
  height: 30px;
  background: #2C2C2C;
  position: absolute;
  bottom: 0;
  left: 50%;
  /* transform: translateX(-50%); */
}

.quality-first-list__button-more {
  /* margin: 0 auto; */
  /* width: 160px;
        height: 40px; */
  /* border-radius: 20px; */
  /* display: flex;
        justify-content: center;
        align-items: center;
        background: #004D99; */
}

.quality-first-list__button-more-link {
  cursor: pointer;
  margin: 0 auto;
  width: 160px;
  height: 40px;
  border-radius: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #004D99;
  font-family: "Antonio", sans-serif;
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  font-weight: 700;
  letter-spacing: 0.1em;
}

/*-----------------------------------------------

    news

-------------------------------------------------*/
.news {
  background: url(../images/news.svg) top 0 right 0/33px 94.27px no-repeat;
}

.news__section-header {
  margin-bottom: 20px;
  padding-right: 14.1333333333%;
  padding-left: 4%;
}

.news__news-detail {
  padding-right: 14.1333333333%;
  padding-left: 4%;
}

.news-detail__image {
  width: 100%;
  margin-bottom: 20px;
}

.news-detail__inner {
  text-align: left;
}

.news-detail__title {
  color: #2C2C2C;
  font-size: 18px;
  font-weight: bold;
  font-weight: 700;
  line-height: 1.333;
  margin-bottom: 6px;
}

.news-detail__date {
  color: #2C2C2C;
  font-size: 14px;
  font-weight: normal;
  font-weight: 500;
  line-height: 1.333;
  margin-bottom: 14px;
}

.news-detail__post {
  color: #2C2C2C;
  font-size: 16px;
  font-weight: normal;
  font-weight: 500;
  line-height: 1.5;
}

/*-----------------------------------------------

    top-aboutus

-------------------------------------------------*/
.top-aboutus__inner {
  position: relative;
  width: 100%;
}
.top-aboutus__inner:before {
  content: "";
  display: block;
  padding-top: 55.46%;
  /* 高さを幅の55.46%に固定 */
}

.top-aboutus__background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../images/sp_top-aboutus@3x.png) center/cover no-repeat;
}

.top-aboutus__text-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.top-aboutus__text1 {
  font-family: "Antonio", sans-serif;
  color: #fff;
  font-size: 30px;
  font-weight: bold;
  font-weight: 700;
  letter-spacing: 0.3em;
  margin-bottom: 8px;
}

.top-aboutus__text2 {
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  font-weight: 700;
}

.top-aboutus__link {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  cursor: pointer;
}

/*-----------------------------------------------

    section-contact

-------------------------------------------------*/
.section-contact__container {
  padding: 0 15px;
}

.section-contact__text1 {
  font-size: 16px;
  color: #2C2C2C;
  line-height: 1.5;
  text-align: center;
  margin-bottom: 20px;
}

.section-contact__tel {
  margin-bottom: 12px;
}

.section-contact__tel-text {
  font-family: "Antonio", sans-serif;
  font-size: 50px;
  color: #2C2C2C;
  padding-left: 40px;
  background: url(../images/icon-contact.svg) left 0 top 1.1rem/27px 50px no-repeat;
}

.section-contact__text2 {
  font-size: 16px;
  color: #2C2C2C;
  line-height: 1.5;
  text-align: center;
  margin-bottom: 20px;
}

.section-contact__button-contact {
  margin-bottom: 50px;
}

.section-contact__logo {
  display: inline-block;
}

.section-contact__logo-img {
  width: 163.86px;
  height: 90px;
  margin: 0 auto;
}

.button-contact {
  width: 100%;
  max-width: 345px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #CA0B1A;
  padding: 30px 0;
}

.button-contact__link {
  display: block;
  font-family: "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ Pro", sans-serif;
  font-size: 20px;
  font-weight: bold;
  font-weight: 700;
  color: #fff;
}

/*-----------------------------------------------

    footer

-------------------------------------------------*/
.footer {
  background-color: #2C2C2C;
  padding: 30px 0 23px;
}

.footer__footer-nav {
  margin-bottom: 16px;
}

.footer__copy-text {
  font-size: 11px;
  font-weight: normal;
  font-weight: 500;
  color: #fff;
}

.footer-nav__nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
}

.footer-nav__nav-link {
  font-family: "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ Pro", sans-serif;
  color: #fff;
  font-size: 14px;
  font-size: 1.4rem;
  font-weight: bold;
  font-weight: 700;
  text-decoration: none;
}

.vegas-overlay {
  width: 100%;
  height: 247px;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-color: #004D99;
  mix-blend-mode: multiply;
  opacity: 1;
}

.vegas-timer {
  display: none;
}

/*-----------------------------------------------

    sub-products

-------------------------------------------------*/
.sub-products__contents-index {
  padding: 0 15px;
  margin-bottom: 42px;
}

.sub-products__products-detail:not(:last-child) {
  margin-bottom: 50px;
}

/*-----------------------------------------------

    contents-index

-------------------------------------------------*/
.contents-index__item {
  position: relative;
  text-align: left;
}
.contents-index__item:not(:last-child) {
  margin-bottom: 10px;
}

.contents-index__new {
  background: #CB0B1C;
  border: solid 2px #fff;
  color: #fff;
  font-size: 1.2rem;
  letter-spacing: 0.05em;
  line-height: 1.8;
  padding: 0 0.5em;
  position: absolute;
  left: -0.8em;
  top: -0.5em;
  z-index: 1;
}
.contents-index__new::before {
  background: #fff;
  content: "";
  position: absolute;
  right: -2.75rem;
  top: -0.18em;
  width: 2.6rem;
  height: 2.6rem;
  -webkit-clip-path: polygon(0 0, 50% 100%, 0 100%);
          clip-path: polygon(0 0, 50% 100%, 0 100%);
}
.contents-index__new::after {
  background: #CB0B1C;
  content: "";
  position: absolute;
  right: -2.14rem;
  top: 0.02rem;
  width: 2.15rem;
  height: 2.15rem;
  -webkit-clip-path: polygon(0 0, 50% 100%, 0 100%);
          clip-path: polygon(0 0, 50% 100%, 0 100%);
}

.contents-index__item-body {
  line-height: 1.4;
  width: 100%;
  height: 70px;
  position: relative;
  padding-left: 90px;
  padding-right: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: url(../images/arrow-bottom.svg) center right 15px/16.54px 8.27px no-repeat;
  background-color: #004D99;
}
.contents-index__item-body:before {
  content: "";
  display: block;
  width: 66px;
  height: 100%;
  position: absolute;
  left: 10px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.contents-index__item-body_1:before {
  background: url(../images/icon-index1.svg) center center/66.14px 39.7px no-repeat;
}

.contents-index__item-body_2:before {
  background: url(../images/icon-index2.svg) center center/66px 40.13px no-repeat;
}

.contents-index__item-body_3:before {
  background: url(../images/icon-index3.svg) center center/66px 41px no-repeat;
}

.contents-index__item-body_4:before {
  background: url(../images/icon-index4.svg) center center/66px 35.24px no-repeat;
}

.contents-index__item-body_5:before {
  background: url(../images/icon-index5.svg) center center/42.9px 44.16px no-repeat;
}

.contents-index__item-text {
  color: #fff;
  font-size: 14px;
  font-weight: bold;
  font-weight: 700;
}

.contents-index__link {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  cursor: pointer;
}

.products-detail-top {
  padding-bottom: 30px;
}

.products-detail-top__inner {
  padding: 0 15px;
}

.products-detail-top__img {
  width: 100%;
  margin-bottom: 20px;
}

.products-detail-top__description-text {
  color: #2E2E2E;
  font-size: 16px;
  font-weight: normal;
  font-weight: 500;
  line-height: 1.75;
  text-align: left;
}

.products-detail-top__example-images {
  padding: 0 15px;
  margin-bottom: 30px;
}

.products-detail-bottom {
  padding: 30px 0 40px;
  background: url(../images/ptn-products-detail.png) center repeat;
  background-color: #F0F0F0;
}

.products-detail-bottom__container {
  padding: 0 15px;
}

.products-detail-bottom__block1 {
  margin-bottom: 30px;
}

.products-detail-bottom__block1-heading {
  margin-bottom: 30px;
  text-align: left;
}

.products-detail-bottom__block1-heading-text {
  color: #2E2E2E;
  font-size: 24px;
  font-weight: bold;
  font-weight: 700;
  line-height: 1.333;
}

.products-detail-bottom__block2 {
  margin-bottom: 37px;
}

.products-detail-bottom__block2-video {
  margin-top: 30px;
}

.block1-list__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-align: left;
}
.block1-list__item:not(:last-child) {
  margin-bottom: 20px;
}

.block1-list__number {
  width: 8.9855072464%;
}

.block1-list__number-text {
  font-family: "Antonio", sans-serif;
  color: #004D99;
  font-size: 50px;
  font-weight: bold;
  font-weight: 700;
}

.block1-list__inner {
  width: 91.0144927536%;
  border-left: 1px solid #2C2C2C;
  padding-left: 5.7324840764%;
}

.block1-list__heading-text {
  color: #2E2E2E;
  font-size: 18px;
  font-weight: bold;
  font-weight: 700;
  margin-bottom: 16px;
}

.block1-list__description-text {
  color: #2E2E2E;
  font-size: 16px;
  font-weight: normal;
  font-weight: 500;
  line-height: 1.75;
}

.block2-image-list__item:not(:last-child) {
  margin-bottom: 20px;
}

.block2-image-list__img {
  width: 100%;
}

.wrap_video {
  width: 100%;
  margin: 0 auto;
}
.wrap_video .box_video {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}
.wrap_video .box_video iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100% !important;
  height: 100% !important;
}

.example-images__item:not(:last-child) {
  margin-bottom: 20px;
}

.example-images__image {
  width: 100%;
  margin-bottom: 12px;
}

.example-images__cap {
  color: #2E2E2E;
  font-size: 14px;
  font-weight: bold;
  font-weight: 700;
  border-bottom: 1px dotted #9D9D9D;
  line-height: 1.333;
  padding: 0 0 5px;
  margin: 0 0 5px;
}

.sub-button {
  position: relative;
  width: 100%;
  padding: 32px 8px;
  max-width: 345px;
  margin: 0 auto;
  background-color: #004D99;
  text-align: center;
}

.sub-button__text {
  font-family: "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ Pro", sans-serif;
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  line-height: 1.4;
}

.sub-button__link {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  cursor: pointer;
}

.sub-heading {
  position: relative;
  padding: 0 15px 30px;
  margin-bottom: 10px;
}
.sub-heading:after {
  content: "";
  display: block;
  width: 1px;
  height: 30px;
  background: #2C2C2C;
  position: absolute;
  bottom: 0;
  left: 50%;
}

.sub-heading__heading-text {
  border-bottom: 1px solid #2C2C2C;
  color: #2E2E2E;
  font-size: 24px;
  font-weight: bold;
  line-height: 1.2;
  padding-bottom: 18px;
}

/*-----------------------------------------------

    company-overview

-------------------------------------------------*/
.company-overview__container {
  padding: 0 15px;
}

.company-overview__top {
  margin-bottom: 30px;
}

.company-overview__description-text {
  text-align: left;
  color: #2E2E2E;
  font-size: 16px;
  font-weight: normal;
  font-weight: 500;
  line-height: 1.75;
}
.company-overview__description-text:not(:last-child) {
  margin-bottom: 1em;
}

.company-overview__dl {
  text-align: left;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 100%;
}

.company-overview__dt {
  width: 102px;
  padding: 0 0 0 10px;
  color: #2E2E2E;
  font-size: 14px;
  font-weight: normal;
  font-weight: 500;
  line-height: 2;
}
.company-overview__dt:nth-of-type(odd) {
  background-color: #F0F0F0;
}

.company-overview__dd {
  width: calc(100% - 102px);
  padding: 0 10px 0 0;
  color: #2E2E2E;
  font-size: 14px;
  font-weight: normal;
  font-weight: 500;
  line-height: 2;
}
.company-overview__dd a {
  text-decoration: underline;
  color: #2E2E2E;
  font-size: 14px;
  font-weight: normal;
  font-weight: 500;
}
.company-overview__dd:nth-of-type(odd) {
  background-color: #F0F0F0;
}

/*-----------------------------------------------

    company-history

-------------------------------------------------*/
.company-history__sub-heading {
  margin-bottom: 28px;
}

.company-history__inner {
  padding: 0 15px;
}

.company-history__list {
  /* text-align: left;
        display: flex;
        flex-wrap: wrap;
        width: 100%; */
}

.company-history__list-item {
  text-align: left;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 100%;
  border-bottom: 1px dotted #9D9D9D;
  padding: 3px 0;
}
.company-history__list-item:first-child {
  border-top: 1px dotted #9D9D9D;
}

.company-history__year {
  width: 56px;
  /* padding: 0 0 0 10px; */
  color: #2E2E2E;
  font-size: 14px;
  font-weight: normal;
  font-weight: 500;
  line-height: 2;
}

.company-history__history-text {
  width: calc(100% - 56px);
  /* padding: 0 10px 0 0; */
  color: #2E2E2E;
  font-size: 14px;
  font-weight: normal;
  font-weight: 500;
  line-height: 2;
  position: relative;
}

/*-----------------------------------------------

    company-headfactory

-------------------------------------------------*/
.company-headfactory__google-map {
  margin-bottom: 30px;
}
.company-headfactory__google-map iframe {
  width: 100%;
  height: 450px;
  margin-bottom: 30px;
}

.company-headfactory__google-map-cap {
  padding: 0 15px;
  text-align: left;
  color: #2E2E2E;
  font-size: 16px;
  font-weight: normal;
  font-weight: 500;
  line-height: 1.75;
}

.company-headfactory__factory-image-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 100%;
}

.company-headfactory__factory-image {
  width: 50%;
}

.company-headfactory__bottom {
  padding: 30px 15px;
  background: url(../images/ptn-products-detail.png) center repeat;
  background-color: #F0F0F0;
  text-align: left;
}

.company-headfactory__heading-text {
  color: #2E2E2E;
  font-size: 20px;
  font-weight: normal;
  font-weight: 500;
  line-height: 1.4;
  margin-bottom: 12px;
}

.company-headfactory__description-text {
  color: #2E2E2E;
  font-size: 16px;
  font-weight: normal;
  font-weight: 500;
  line-height: 1.75;
}

/*-----------------------------------------------

    company-partner

-------------------------------------------------*/
.company-partner {
  /*ul*/
  /*li*/
  /*ul*/
  /*li*/
}

.company-partner__inner {
  padding: 0 15px;
}

.company-partner__partner-list-item:not(:last-child) {
  margin-bottom: 15px;
}

.company-partner__partner-list-heading {
  width: 100%;
  height: 40px;
  background: #2E2E2E;
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  font-weight: 700;
  line-height: 40px;
  margin-bottom: 15px;
}

.company-partner__child-list-item {
  width: 100%;
  border-left: 1px solid #2C2C2C;
  border-right: 1px solid #2C2C2C;
  padding: 2px 6px;
  color: #2E2E2E;
  font-size: 15px;
  font-weight: normal;
  font-weight: 500;
  line-height: 1.86;
}
.company-partner__child-list-item:not(:last-child) {
  margin-bottom: 12px;
}

/*-----------------------------------------------

    company-brochure

-------------------------------------------------*/
.company-brochure__button-brochure {
  padding: 0 15px;
}

.button-brochure {
  width: 100%;
  height: 100px;
  position: relative;
}

.button-brochure__line-lefttop {
  position: absolute;
  top: 0;
  left: 0;
  width: 25px;
  height: 25px;
}
.button-brochure__line-lefttop:before {
  content: "";
  display: block;
  background: #2C2C2C;
  width: 1px;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.button-brochure__line-lefttop:after {
  content: "";
  display: block;
  background: #2C2C2C;
  width: 100%;
  height: 1px;
  position: absolute;
  top: 0;
  left: 0;
}

.button-brochure__line-righttop {
  position: absolute;
  top: 0;
  right: 0;
  width: 25px;
  height: 25px;
}
.button-brochure__line-righttop:before {
  content: "";
  display: block;
  background: #2C2C2C;
  width: 1px;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
}
.button-brochure__line-righttop:after {
  content: "";
  display: block;
  background: #2C2C2C;
  width: 100%;
  height: 1px;
  position: absolute;
  top: 0;
  right: 0;
}

.button-brochure__line-leftbottom {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 25px;
  height: 25px;
}
.button-brochure__line-leftbottom:before {
  content: "";
  display: block;
  background: #2C2C2C;
  width: 1px;
  height: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
}
.button-brochure__line-leftbottom:after {
  content: "";
  display: block;
  background: #2C2C2C;
  width: 100%;
  height: 1px;
  position: absolute;
  bottom: 0;
  left: 0;
}

.button-brochure__line-rightbottom {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 25px;
  height: 25px;
}
.button-brochure__line-rightbottom:before {
  content: "";
  display: block;
  background: #2C2C2C;
  width: 1px;
  height: 100%;
  position: absolute;
  bottom: 0;
  right: 0;
}
.button-brochure__line-rightbottom:after {
  content: "";
  display: block;
  background: #2C2C2C;
  width: 100%;
  height: 1px;
  position: absolute;
  bottom: 0;
  right: 0;
}

.button-brochure__inner {
  background: url(../images/ptn-products-detail.png) center repeat;
  background-color: #fff;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.button-brochure__button-text {
  color: #2E2E2E;
  font-size: 24px;
  font-weight: bold;
  font-weight: 700;
}

.button-brochure__link {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
}

/*-----------------------------------------------

    contact-form

-------------------------------------------------*/
.contact-form__container {
  padding: 0 15px;
  text-align: left;
}

.contact-form__form-item:not(:last-of-type) {
  margin-bottom: 15px;
}

.form-item__heading {
  padding-left: 9px;
  border-left: 5px solid #CA0B1A;
  margin-bottom: 15px;
}

.form-item__heading-text {
  color: #2E2E2E;
  font-size: 16px;
  font-weight: normal;
  font-weight: 500;
  line-height: 1.5;
}

.form-item__input {
  padding: 0 5px;
  width: 100%;
  height: 40px;
  border-radius: 0;
  background: #F0F0F0;
  border: none;
  color: #2E2E2E;
  font-size: 16px;
  font-weight: normal;
  font-weight: 500;
}
.form-item__input:focus {
  outline: none;
}

.form-item__select {
  padding: 0 5px;
  width: 100%;
  height: 40px;
  max-width: 320px;
  border-radius: 0;
  border: none;
  color: #2E2E2E;
  font-size: 16px;
  font-weight: normal;
  font-weight: 500;
  background: url(../images/icon-select-arrow.svg) center right 10px/11.92px 6px no-repeat;
  background-color: #F0F0F0;
}
.form-item__select:focus {
  outline: none;
}

.form-item__textarea {
  padding: 5px 5px;
  width: 100%;
  height: 450px;
  border-radius: 0;
  background: #F0F0F0;
  border: none;
  color: #2E2E2E;
  font-size: 16px;
  font-weight: normal;
  font-weight: 500;
  line-height: 1.75;
}
.form-item__textarea:focus {
  outline: none;
}

.form-item__submit {
  padding-top: 25px;
}

.form-item__submit-button {
  width: 100%;
  height: 80px;
  max-width: 345px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #CA0B1A;
  border: none;
  border-radius: 0;
  font-family: "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ Pro", sans-serif;
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  font-weight: 700;
  /* pointer-events: none;
        opacity: 0.35; */
  cursor: pointer;
}
.form-item__submit-button:focus {
  outline: none;
}
.form-item__submit-button.active {
  pointer-events: unset;
  opacity: 1;
}

.form-item_submit {
  text-align: center;
}

select {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  /* デフォルトのスタイルを無効 */
}
select::-ms-expand {
  display: none;
  /* デフォルトのスタイルを無効(IE用) */
}

.page-contents_contact .section-contact__button-contact {
  display: none;
}
.page-contents_contact .section-contact__text2 {
  margin-bottom: 68px;
}

.screen-reader-response {
  line-height: 1.3;
  padding: 0 15px;
  text-align: left;
  margin-bottom: 20px;
}
.screen-reader-response ul {
  display: none;
}

.wpcf7-not-valid-tip {
  color: #CA0B1A;
  margin-top: 6px;
  display: inline-block;
  font-size: 12px;
  width: 100%;
}

.wpcf7-response-output {
  display: none;
}

/*-----------------------------------------------

    lightcase(js pluginn)

-------------------------------------------------*/
.lightcase-icon-play {
  display: none !important;
}

/* #lightcase-info {
    display: none!important;
    opacity: 0!important;
} */
#lightcase-sequenceInfo {
  display: none !important;
  opacity: 0 !important;
}

#lightcase-overlay {
  background: #fff;
  opacity: 0.95 !important;
}

a[class*=lightcase-icon-].lightcase-icon-close {
  width: 20px;
  height: 20px;
}

.lightcase-icon-close:before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: url(../images/lightcase-button-close.svg) center/20px 20px no-repeat;
}

.lightcase-icon-prev, a[class*=lightcase-icon-].lightcase-icon-prev {
  width: 10px;
  height: 20px;
}

.lightcase-icon-prev:before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: url(../images/lightcase-button-prev.svg) center/10px 20px no-repeat;
}

.lightcase-icon-next, a[class*=lightcase-icon-].lightcase-icon-next {
  width: 10px;
  height: 20px;
}

.lightcase-icon-next:before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: url(../images/lightcase-button-next.svg) center/10px 20px no-repeat;
}

.lightcase-icon-spin:before {
  content: "" !important;
}

html[data-lc-type=image] #lightcase-content .lightcase-contentInner {
  position: relative;
  left: -1px;
}

#lightcase-caption {
  text-shadow: none;
}

.caption {
  display: none;
}

#lightcase-case {
  padding: 0 15px;
}

.lightcase-fullScreenMode #lightcase-info {
  padding: 15px 0 0 0;
  /* width: calc(100% - 30px); */
  width: 100%;
}

/* custom-caption */
.custom-caption__list {
  /* display: flex;
        flex-wrap: wrap; */
  width: 100%;
}

.custom-caption__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  border-bottom: 1px dotted #9D9D9D;
}
.custom-caption__item:not(:last-child) {
  margin-bottom: 3px;
}

.custom-caption__rabel-text {
  width: 115px;
  color: #2E2E2E;
  font-size: 14px;
  font-weight: bold;
  font-weight: 700;
  line-height: 1.75;
}

.custom-caption__description-text {
  width: calc(100% - 115px);
  color: #2E2E2E;
  font-size: 14px;
  font-weight: bold;
  font-weight: 700;
  line-height: 1.75;
}

.page-contents_products #lightcase-info {
  padding: 0;
}

/*2307*/
.mgt10 {
  margin-top: 10px;
}

.contents-index__item-body_low {
  width: 100%;
  height: 70px;
  position: relative;
  padding-left: 90px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: url(../images/arrow-bottom.svg) center right 15px/16.54px 8.27px no-repeat;
  background-color: #CA0B1A;
}
.contents-index__item-body_low:before {
  content: "";
  display: block;
  width: 66px;
  height: 100%;
  position: absolute;
  left: 10px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.contents-index__item-body_6:before {
  background: url(../images/icon-index6.svg) center center/66.14px 39.7px no-repeat;
}

.sub-heading__heading-text_contact {
  border-bottom: 1px solid #2C2C2C;
  color: #2E2E2E;
  font-size: 18px;
  font-weight: bold;
  font-weight: 700;
  padding-bottom: 18px;
}

/*# sourceMappingURL=style.css.map*/