@charset "utf-8";
body, html {
    position: relative;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 18px;
    line-height: 1.8;
    color: #333;
    margin: 0;
    padding: 0;
    width: 100%;
    overflow: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    text-rendering: optimizeLegibility !important;
	-webkit-font-smoothing: antialiased !important;

  animation: fadeIn 1.5s ease 0s 1 normal;
  -webkit-animation: fadeIn 1.5s ease 0s 1 normal;
}
body::before {
    content: '';
    display: block;
    width: 100vw;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 0;
    background-image: url(../img/bg01.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

/*--- 画面全体をフェードイン(animation設定) ---*/
@keyframes fadeIn {
    0% {opacity: 0}
    100% {opacity: 1}
}
@-webkit-keyframes fadeIn {
    0% {opacity: 0}
    100% {opacity: 1}
}

@keyframes fadeOut {
    0% {opacity: 1}
    100% {opacity: 0}
}
@-webkit-keyframes fadeOut {
    0% {opacity: 1}
    100% {opacity: 0}
}

.visible-content {
  animation: fadeIn 0.5s ease 0s 1 forwards;
  -webkit-animation: fadeIn 0.5s ease 0s 1 forwards;
}
.hidden-content {
  animation: fadeOut 0.5s ease 0s 1 forwards;
  -webkit-animation: fadeOut 0.5s ease 0s 1 forwards;
}


a {
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
a:hover {
    text-decoration: none;
    outline: none;
}
a img {
  opacity: 1;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
a img:hover {
    /*opacity: 0.7;*/
}
.fa-file-pdf {
    color: #DD4147;
}
h1, h2, h3, h4, h5, h6 {
    position: relative;
    font-weight: bold;
    line-height: 1.3;
    letter-spacing: 0.02em;
    position: relative;
    margin: 0 auto 2rem;
}
h1, h2, h3 {
    font-family: roboto, 'Noto Sans JP', sans-serif;
}
h1 {
    display: block;
    color: #123086;
    font-size: 2.2em;
    letter-spacing: 0.1em;
    margin-bottom: 2.5rem;
}
h2 {
    display: table;
    color: #123086;
    font-size: 2em;
    letter-spacing: 0.1em;
    margin-bottom: 2.5rem;
    margin-left: 0;
    padding: 0;
}
h2.text-center { margin-left: auto; }
h2::before {
    opacity: 0;
    content: '';
    display: block;
    width: 60px;
    height: 60px;
    position: absolute;
    top: -0.9em;
    left: -30px;
    z-index: 0;
    background-image: url(../img/tit-icon01.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}
h2.animated::before { animation: rotateIn; animation-duration: 1.5s; animation-delay: 0.5s; animation-fill-mode: forwards; }
h3 {
    color: #123086;
    display: table;
    position: relative;
    font-size: 1.6rem;
    margin-left: 0;
}
h3::after {
    content: '';
    display: block;
    width: 3em;
    height: 3px;
    position: absolute;
    top: 50%;
    left: calc(100% + 1rem);
    background-color: #B9B9B9;
}
h4 {
    position: relative;
    font-size: 1.3rem;
    margin-bottom: 1.2rem;
}
h4::after {
    content: "";
    background-color: #C30008;
    display: block;
    width: 1.2em;
    height: 3px;
    position: relative;
    z-index: 10;
    margin-top: 0.4rem;
}
h5 {
    color: #123086;
    font-size: 1.25rem;
    font-weight: 700;
}
h6 {
    display: table;
    font-size: 1.1rem;
    padding-bottom: 0.2em;
    margin-bottom: 1rem;
    margin-left: 0;
    border-bottom: 1px solid #B9B9B9;
}
h7 {
    display: flex;
    align-items: center;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1rem;
}
h7::before {
    font-family: "Font Awesome 6 Free";
    content: "\f45c";
    font-size: 1em;
    font-weight: 900;
    margin-top: 0.15em;
    padding-right: 0.5em;
    color: #123086;
}
.titsub {
    font-size: 16px;
    /*font-weight: 500;*/
    letter-spacing: 0.02em;
    margin-left: 1em;
}
.titsub.block-item {
    display: block ;
    margin-top: 0.5em;
    margin-left: 0;
    vertical-align: middle;
}
.center-item { margin-left: auto; }
.center-item .titsub { text-align: center; }

/*--- flex 横 ---*/
.flex-box {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}
.flex1 > div, .flex1 > li { width: 100%; }
.flex2 > div, .flex2 > li { width: calc(100% / 2); }
.flex3 > div, .flex3 > li { width: calc(100% / 3); }
.flex4 > div, .flex4 > li { width: calc(100% / 4); }
.flex5 > div, .flex5 > li { width: calc(100% / 5); }

/*--- flex 縦 ---*/
.flex-column {
    display: flex;
    flex-flow: column;
    justify-content: space-between;
    height: 100%;
}

/*--- grid ---*/
.grid-box {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-gap: 2em;
}
.other-content .grid-box { margin-bottom: 3em; }
.grid-wrap0 { grid-gap: 0; }
.grid-wrap15 { grid-gap: 15px; }
.grid2 { grid-template-columns: 1fr 1fr; }
.grid3 { grid-template-columns: 1fr 1fr 1fr; }
.grid4 { grid-template-columns: 1fr 1fr 1fr 1fr; }
.grid5 { grid-template-columns: 1fr 1fr 1fr 1fr 1fr; }
.grid6 { grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr; }
.contact-grid { grid-gap: 1em; }
.contact-grid .btn00 a { margin-top: 0!important; }

/*--- TEXT OPTION ---*/
.en-txt {
    font-family: roboto, 'Noto Sans JP', sans-serif;
    font-size: 1.2em;
    letter-spacing: 0.1em;
}
.st-txt {
    font-size: 1.3em;
    font-weight: bold;
    line-height: 1.2;
    letter-spacing: 0.02em;
    margin-bottom: 1em;
}
.txtblock { display: block; }
.txtinblock { display: inline-block; }
.color-wh { color: #fff; }
.color-bk { color: #000; }
.color-red { color: #C30008; }

.box-wh {
    width: 100%;
    max-width: 907px;
    margin: 0 auto;
    padding: 3em;
    background-color: #fff;
}
.shdw-item {
    -webkit-filter: drop-shadow(0px 0px 55px rgba(18, 48, 134,0.16));
    -moz-filter: drop-shadow(0px 0px 55px rgba(18, 48, 134,0.16));
    -ms-filter: drop-shadow(0px 0px 55px rgba(18, 48, 134,0.16));
    filter: drop-shadow(0px 0px 55px rgba(18, 48, 134,0.16));
}

.recaptcha_policy {
  padding: 0;
  margin: 0;
  text-align: center;
  font-size: 11px !important;
  color: #444 !important;
}
.recaptcha_policy a {
  font-size: 11px !important;
  color: #111 !important;
}
.grecaptcha-badge { visibility: hidden; }


/*--- BOTTON OPTION ---*/
.btn-wrap { margin: 2em auto; }
.btn00 { position: relative; z-index: 1; }
.btn00 a, .btn00 > div {
    color: #fff;
    font-family: roboto, 'Noto Sans JP', sans-serif;
    font-weight: 500;
    line-height: 1.3;
    text-align: center;
    width: 100%;
    max-width: 12em;
    position: relative;
    display: inline-block;
    margin: 1em auto 0;
    padding: 15px 70px;
    text-align: center;
    border-radius: 50px;
    text-decoration: none;
    transition: .4s;
    overflow: hidden;
}
.btn00 a::before, .btn00 > div::before {
    content: '';
    display: block;
    width: 100%;
    height: 101%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
    background: #123086;
    background: linear-gradient(55deg, #c30008 0%, #123086 100%);
    border-bottom: 100%;
    transform-origin: 100% 50%;
    transform: scaleX(0);
    transition: transform ease .4s;
}
.btn00 a:hover::before, a:hover .btn00 > div::before {
    transform-origin: 0% 50%;
    transform: scaleX(1);
}
.btn00 a span, .btn00 > div span { position: relative; }
.btn00 a span.arrow, .btn00 > div span.arrow {
    display: block;
    width: 60px;
    height: 20px;
    position: absolute;
    top: 50%;
    right: 15px;
    z-index: 10;
    transform: translateY(-50%);
}
.btn00 a span.arrow::before, .btn00 a span.arrow::after,
.btn00 > div span.arrow::before, .btn00 > div span.arrow::after {
    content: '';
    display: block;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    transition: transform .3s;
}
.btn00 a span.arrow::before, .btn00 > div span.arrow::before {
    width: 30px;
    height: 1px;
    background-color: #fff;
    left: 0;
    transform-origin: right top;
    transform: scale(1, 1) translateY(-50%);
}
.btn00 a span.arrow::after, .btn00 > div span.arrow::after {
    width: 10px;
    height: 10px;
    border-radius: 100%;
    border: 1px solid #fff;
    right: 15px;
}
.btn00 a:hover span.arrow::before, a:hover .btn00 > div span.arrow::before { animation: btn-line 0.3s ease 0s 1 forwards; transform-origin: right top; }
.btn00 a:hover span.arrow::after, a:hover .btn00 > div span.arrow::after { animation: btn-circle 0.3s ease 0s 1 forwards; }
.full-btn a {
    width: 100%!important;
    border-radius: 15px;
    min-height: 5em;
    display: flex;
    justify-content: center;
    align-items: center;
}

@keyframes btn-line {
    0% { left: 0; transform: scale(1, 1) translateY(-50%); }
    100% { left: auto; right: 0; transform: scale(0.2, 1) translateY(-50%); background-color: #fff; }
}
@keyframes btn-circle {
    0% { width: 10px; height: 10px; right: 15px; }
    100% { width: 20px; height: 20px; right: 0; border-color: #fff; }
}

/*--- .btn01 ---*/
.btn01 a { background-color: #C30008; }

/*--- .btn02 ---*/
.btn02 a, .btn02 > div { color: #123086; background-color: #fff; }
.btn02 a span.arrow::before, .btn02 > div span.arrow::before { background-color: #123086; }
.btn02 a span.arrow::after, .btn02 > div span.arrow::after { border-color: #123086; }
.btn02 a:hover, a:hover .btn02 > div { color: #fff; }


/* --------------------------------------------
    コンテンツ
-------------------------------------------- */
#content-main {
    position: relative;
    width: 100%;
    margin-top: 90px;
}
section {
    position: relative;
    width: calc(100% + 30px);
    margin: 0 -15px;
    padding: 0;
}
.section-wh { background-color: #fff; }
.section-gy { background-color: #F4F4F4!important; }
.section-bl { background-color: #123086; color: #fff; }
.section-wh90 { background-color: rgba(255, 255, 255, 0.9); }
.section-cream { background-color: #FAF8F0; }
.content-wrap {
    width: 80%;
    max-width: 1000px;
    margin: 0 auto;
    padding: 5em 0;
}
.w90 {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
}
.content-wrap p {
    margin: 0 auto 1em;
	padding: 0;
    line-height: 1.8;
    letter-spacing: 0.02em;
}

/*--- MOVIE ---*/
.full-video {
    position: relative;
    line-height: 0;
    height: 56vw;
    max-height: calc(100vh - 90px);
    overflow-y: hidden;
}
.full-video video {
    display: block;
    height: auto;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}
/*.full-video::before {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: rgba(44, 99, 255, 0.2);
}*/

/*--- .scrolldown ---*/
.scrolldown { /*スクロールダウン全体の場所*/
    position: absolute;
    right: 6.5%;
    bottom: 0;
    z-index: 10;
    height: 110px;
    border-left: 2px solid rgba(255,255,255,1);
}
.scrolldown span { /*Scrollテキストの描写*/
    position: absolute;
    top: 0;
    left: 0;
    color: #2D4FAF;
    font-family: roboto, 'Noto Sans JP', sans-serif;
    font-size: 16px;
    font-weight: bold;
    line-height: 2;
    letter-spacing: 0.1em;
    -webkit-writing-mode: vertical-rl;
    -ms-writing-mode: tb-rl;
    -o-writing-mode: vertical-rl;
    writing-mode: vertical-rl;
}
.scrolldown::after { /* 線の描写 */
    content: "";
    position: absolute;
    top: 0;
    left: -2px;
    width: 2px;
    height: 75px;
    background: #2D4FAF;
    animation: pathmove 2.7s ease-in-out infinite;
    opacity: 0;
}
/*高さ・位置・透過が変化して線が上から下に動く*/
@keyframes pathmove{
  0%{
    height: 15px;
    top: 0;
    opacity: 0;
  }
  30%{
    height: 50px;
    opacity: 1;
  }
  100%{
    height: 15px;
    top: 100px;
    opacity: 0;
  }
}
@media screen and (max-width: 991px) {
    .scrolldown { right: 35px; }
    .scrolldown span { line-height: 2; }
}
@media screen and (max-width: 767px) {
    .scrolldown { display: none; }
}


/*--- .info-wrap ---*/
.info-wrap {
  width: 100%;
  margin: 0 auto;
}
.tabs-wrap { overflow: auto; }
.nav-tabs {
    position: relative;
    z-index: 10;
    width: 100%;
    /*min-width: 810px;*/
    display: flex;
    flex-flow: wrap;
    /*white-space: nowrap;
    overflow-x: auto;*/
    border: none;
    padding: 0!important;
    margin: 0!important;
}
.nav-tabs > li { margin-top: 7px; margin-bottom: 0!important; }
.nav-tabs > li::before { display: none!important; }
.nav-tabs li a {
  background: #2D4FAF;
  font-size: 0.9em;
  font-weight: bold;
  line-height: 1;
  letter-spacing: 0.01em;
  color: #fff;
  margin-right: 6px;
  border: none;
  border-radius: 0;
  border-top-right-radius: 10px;
  border-top-left-radius: 10px;
  padding: 18px 0.5em;
  text-align: center;
  width: 8em;
}
.nav-tabs li:last-child a { margin-right: 0; }
.nav-tabs li a:hover {
  background: #063D81;
  color: #fff;
}
.nav-tabs > li.active > a, .nav-tabs > li.active > a:hover, .nav-tabs > li.active > a:focus {
  background: #fff;
  color: #000;
  border: none;
}
.tab-content > .tab-pane {
  position: relative;
}
.tab-content .btn00 { text-align: center; }
.tab-content .btn01 a { max-width: 16em; }
.tab-wrap {
    position: relative;
    z-index: 0;
    background-color: #fff;
    margin: 0 auto 2em;
    padding: 16px 40px;
    -webkit-filter: drop-shadow(0px 3px 20px rgba(0,0,0,0.15));
    -moz-filter: drop-shadow(0px 3px 20px rgba(0,0,0,0.15));
    -ms-filter: drop-shadow(0px 3px 20px rgba(0,0,0,0.15));
    filter: drop-shadow(0px 3px 20px rgba(0,0,0,0.15));
}
ul.information {
  list-style-type: none;
  padding: 0!important;
  margin: 0!important;
}
ul.information li {
    display: block!important;
    margin-bottom: 0!important;
    padding: 18px 0;
    border-bottom: 1px solid #ccc;
}
ul.information li::before { display: none!important; }
ul.information li:last-child { border-bottom: none; }
ul.information li a {
    color: #000;
    /*
  padding: 18px 0;
    */
  margin: 0;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
  display: block;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}
ul.information li a:hover, ul.information li a:focus {
    color: #003B83;
    text-decoration: none;
    outline: none;
}
ul.information li span {
  padding-right: 1.5em;
}
ul.information li span.news-cat {
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: 0.02em;
    display: inline-block;
    width: 7em;
    padding: 0.3em 0.5em 0.4em;
    margin-right: 1.5em;
    text-align: center;
    background: #2D4FAF;
    vertical-align: middle;
}
ul.information li span.news-tit {
    padding-right: 0;
}


/*--- sec02 ---*/
.prod-flex {
    width: 100%;
    max-width: 900px;
    margin: 6em auto 8em;
}
.prod-flex:last-child { margin-bottom: 0; }
.prod-flex .img-item { flex: 1; margin-top: -3em; position: relative; }
.prod-flex .img-item .img-wrap { position: relative; z-index: 1; }
.prod-flex .txt-item { width: 22em; }
.prod-flex .txt-wrap {
    width: 100%;
    max-width: 19em;
}
.prod-flex:nth-child(2n-1) .txt-wrap { margin-left: auto; }
.prod-flex .img-item::before {
    content: '';
    display: block;
    position: absolute;
    z-index: 0;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
}
.prod-box01 .img-item::before {
    width: 530px;
    height: 300px;
    top: -9em;
    left: 35%;
    background-image: url(../img/sec02-icon01.png);
}
.prod-box02 .img-item::before {
    width: 590px;
    height: 316px;
    top: -12em;
    right: 20%;
    background-image: url(../img/sec02-icon02.png);
}
.prod-box03 .img-item::before {
    width: 480px;
    height: 316px;
    top: -9em;
    left: 55%;
    background-image: url(../img/sec02-icon03.png);
}


/*--- sec03 ---*/
.case-box a, .case-box a:hover, .case-box a:focus { color: #fff; text-decoration: none; outline: none; }
.case-flex { min-height: 25em; }
.case-flex .item01 { flex: 1; position: relative; overflow: hidden; }
.case-flex .item01 img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
    object-fit: cover;
}

.case-flex .item02 {
    width: 26em;
    display: flex;
    align-items: center;
}
.case-flex .item02 .item-wrap {
    width: 100%;
    max-width: 17em;
    margin: 0 auto;
    padding: 3em 2em;
}


/*--- sec04 ---*/
.sec04-img { position: relative; }
.sec04-img .sec04-subimg {
    display: block;
    width: 55%;
    height: auto;
    position: absolute;
    bottom: -30%;
    left: 50%;
    object-fit: contain;
}


/*--- sec05 ---*/
#content-main .grid-box .grid-item > div {
    height: auto;
    padding: 1.5em;
    text-align: center;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    height: 100%;
    /*min-height: 16em;*/
}
#content-main .grid-box .txt-wrap {
    color: #fff;
    width: 100%;
    height: 100%;
    padding: 0;
}
#content-main .grid-box .txt-wrap > p {
    display: block;
    width: 100%;
    max-width: 30em;
    margin: 0 auto;
    padding: 0 1rem;
}
#content-main .grid-box .txt-wrap .btn00 a { margin-top: 1.5em; }

.sec05-box .grid-item > div { padding: 5.5em 1.5em!important; }
.sec05-box .grid-item > div.box01 { background-image: url(../img/bgimg-after.png); }
.sec05-box .grid-item > div.box02 { background-image: url(../img/bgimg-faqv2.jpg); }

/*--- sec06 ---*/
.sec06 {
    background-image: url(../img/sec06-bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top center;
}

/*--- sec07 ---*/
.sec07-box .txt-wrap .btn00 a { margin-top: 0!important; }
.sec07-box .grid-item > div { padding: 8em 1.5em!important; }
.sec07-box .grid-item > div.box01 { background-image: url(../img/bgimg-ir.png); }
.sec07-box .grid-item > div.box02 { background-image: url(../img/bgimg-recruitv2.jpg); }


/* --------------------------------------------
    footer
-------------------------------------------- */
#ft01 {
    position: relative;
    width: 100%;
    margin: 0 auto;
    margin-right: 0;
    padding: 0;
    background-color: #122352;
    background-repeat: no-repeat;
}
#ft01::before {
    content: '';
    display: block;
    width: calc(5% + 15em);
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
    background-color: #F2F2F2;
}
#ft01 .ft-wrap {
    position: relative;
    z-index: 10;
    font-size: 1em;
    width: 90%;
    max-width: 1350px;
    margin: 0 auto;
    padding: 3em 0 2em;
}
.ft-wrap .ft-txt { width: 15em; }
.ft-wrap .ft-txt a { color: #333!important; }
.ft-wrap .grid-box {
    flex: 1;
    padding-left: 3em;
    grid-gap: 1em;
}

#ft01 .ft-logo {
    width: 166px;
    line-height: 1;
    margin-bottom: 35px;
    padding-bottom: 10px;
    border-bottom: 3px solid #333;
}
#ft01 a {
    color: #fff;
    font-size: 16px;
    text-decoration: none;
    outline: none;
}
#ft01 a:hover, #ft01 a:focus {
    text-decoration: none;
    outline: none;
}
.ft-list {
    margin: 0 auto 1.5em;
    padding: 0 0 0 1em;
    border-left: 1px solid #fff;
}
.ft-list li {
    list-style: none;
    display: block;
    color: #fff;
    line-height: 1.3;
    margin: 0 auto 0.5em;
    padding: 0;
}
.ft-list li:last-child { margin-bottom: 0; }
.ft-list li a {
    line-height: 1;
    padding: 0;
}

.ft-flex {
    justify-content: space-between;
    margin-top: 1.5em;
}
.ft-menu02 {
    margin: 0;
    padding: 0;
}
.ft-menu02 li {
    list-style: none;
    color: #fff;
    line-height: 1.3;
    margin: 0 auto 10px;
    padding: 0;
}
.ft-bnr a {
    display: block;
    width: 100%;
    max-width: 160px;
    margin-left: auto;
}

#ft01 .ft-cp {
    position: relative;
    z-index: 10;
    color: #333;
    font-size: 13px;
    letter-spacing: 0.1em;
    margin: 0 auto;
    padding: 12px;
    text-align: center;
    background-color: #fff;
}
.ft-wrap .flex-box { flex: 1; justify-content: flex-start; width: auto; padding-left: 2em; }
.ft-wrap .flex-box .flex-item { padding-right: 1em; }
/*
.ft-wrap .grid-box .last-item {
grid-column-start: 4;
grid-column-end: 5;
grid-row-start: 2;
grid-row-end: 3;
}
*/
.last-item { width: auto!important; }
.sns-list > div {
    display: inline-block;
    width: 48px;
    margin-right: 10px;
}
.sns-list > div:last-child { width: 60px; }


/* --------------------------------------------
    SideBtn
-------------------------------------------- */
.sidebtn {
    position: fixed;
    bottom: 50px;
    right: 0;
    z-index: 999;
    display: none;
}
.sidebtn a {
    color: #fff;
    font-family: roboto, 'Noto Sans JP', sans-serif;
    font-size: 18px;
    font-weight: bold;
    line-height: 1;
    letter-spacing: 0.1em;
    display: flex;
    flex-flow: column;
    justify-content: center;
    width: 50px;
    margin: 0 auto;
    padding: 25px 15px 25px 15px;
    background-color: #C30008;
    border: none;
    -webkit-writing-mode: vertical-rl;
    -ms-writing-mode: tb-rl;
    -o-writing-mode: vertical-rl;
    writing-mode: vertical-rl;
}
.sidebtn a:hover {
    color: #fff;
    background-color: #DD4147;
    text-decoration: none;
    outline: none;
}



.topBtn {
    display: flex;
    color: #fff;
    font-family: roboto, 'Noto Sans JP', sans-serif;
    font-size: 20px;
    font-weight: bold;
    line-height: 1;
    letter-spacing: 0.15em;
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 100;
    padding: 0;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
    -webkit-writing-mode: vertical-rl;
    -ms-writing-mode: tb-rl;
    -o-writing-mode: vertical-rl;
    writing-mode: vertical-rl;
}
.topBtn span {
    display: block;
    width: 20px;
    height: 60px;
    margin-bottom: 15px;
    position: relative;
    transform: rotate(-90deg);
}
.topBtn span::before, .topBtn span::after {
    content: '';
    display: block;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    transition: transform .3s;
}
.topBtn span::before {
    width: 30px;
    height: 1px;
    background-color: #fff;
    left: -5px;
    transform-origin: right top;
    transform: scale(1, 1) translateX(-50%);
}
.topBtn span::after {
    width: 10px;
    height: 10px;
    border-radius: 100%;
    border: 1px solid #fff;
    top: 50%;
    left: 15px;
}
.topBtn:hover span::before { animation: btn-line-ft 0.3s ease 0s 1 forwards; transform-origin: right top; }
.topBtn:hover span::after { animation: btn-circle-ft 0.3s ease 0s 1 forwards; }
@keyframes btn-line-ft {
    0% { left: 0; transform: scale(1, 1) translateX(-50%); }
    100% { left: auto; right: 0; transform: scale(0.2, 1) translateX(-50%); background-color: #fff; }
}
@keyframes btn-circle-ft {
    0% { width: 10px; height: 10px; left: 15px; }
    100% { width: 20px; height: 20px; left: 0; border-color: #fff; }
}


/* --------------------------------------------
    other page
-------------------------------------------- */
.other-content h1 {
    font-size: 2em;
}
.other-content h1 span {
    position: relative;
    display: table;
    font-size: 0.7em;
    margin-bottom: 0.5rem;
    text-transform: capitalize;
}
.other-content h1 span::before {
    content: '';
    display: block;
    width: 30px;
    height: 3px;
    position: absolute;
    top: 50%;
    left: calc(100% + 0.5em);
    background-color: #C30008;
}
.other-content h2 { font-size: 1.75em; }
.other-content h3 { font-size: 1.6em; }
.other-content h4 { font-size: 1.35em; margin-bottom: 2rem; }
.other-content h5 { font-size: 1.25em; margin-bottom: 1.5rem; }
.other-content h6 { font-size: 1.1em; margin-bottom: 1rem; }

.other-content .btn00 { text-align: center; }
.other-content .btn00 a { padding: 15px 50px; width: auto; max-width: 100%; }

#titbar {
    background-image: url(../img/titbar.png);
    background-position: center bottom;
    background-repeat: no-repeat;
    background-color: #fff;
    background-size: cover;
    padding: 0 15px 10em;
}
#titbar h1 {
    display: block;
    width: 88%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2em 0 0;
}

/*---------- breadcrumb ----------*/
.breadcrumb {
    display: block;
    width: 88%;
    max-width: 1200px;
    background-color: #fff;
    margin: 0 auto!important;
    padding: 0!important;
    text-align: right;
}
.breadcrumb ul {
    list-style: none;
    margin: 0!important;
    padding: 0!important;
}
.breadcrumb ul li {
    display: initial!important;
    color: #B9B9B9;
    position: relative;
    display: inline-block;
    font-size: 15px;
    margin: 0;
    margin-bottom: 0.6em!important;
    padding: 0!important;
}
.breadcrumb ul li::before { display: none; }
.breadcrumb ul li:not(:last-child)::after {
    font-family: "Font Awesome 6 Free";
    content: "\f054";
    font-size: 13px;
    font-weight: 900;
    position: relative;
    padding: 0 10px;
    color: #333;
}
.breadcrumb ul li a {
    color: #333;
    border-bottom: 1px solid #333;
}

/*--- section content ---*/
.other-content { position: relative; }
.other-content section { background-color: #fff; }
.other-content .content-wrap {
    width: 82%;
    max-width: 1180px;
    padding: 8em 0;
}
.other-content .content-wrap p {
    line-height: 1.8;
}

.other-content .row > div {
    padding-left: 1em;
    padding-right: 1em;
}
.other-content .row-img {
    display: block;
    height: 100%;
    margin-bottom: 1em;
}
.other-content .row-img img { margin: 0 auto; }
.other-content .row-map {
    line-height: 1;
    border: 1px solid #707070;
}
.other-content .row-map iframe {
    width: 100%;
    height: 410px;
}

/*--- ul ol ---*/
.other-content ol {
    margin-bottom: 2em;
    padding-left: 4%;
}
.other-content ol li {
    margin-bottom: 1em;
    padding-left: 10px;
    line-height: 1.8;
}
.other-content ol li > ul { margin-top: 10px; margin-bottom: 0; padding-left: 1em; }

.other-content ul {
    margin-bottom: 2em;
    padding-left: 2%;
}
.other-content ul li {
    list-style: none;
    display: flex;
    position: relative;
    margin-bottom: 0.8em;
    padding-left: 1.5em;
}
/*.other-content ul.list-rc li::before {*/
.other-content ul li::before {
    font-family: "Font Awesome 6 Free";
    content: "\f111";
    font-size: 0.9em;
    font-weight: 900;
    margin-top: 0.2em;
    padding-right : 0.5em;
    color: #123086;
    position: absolute;
    left: 0;
    top: 0;
}
.other-content h5 > a, .other-content h5 > a:hover, .other-content h5 > a:focus { color: #C30008; }
.other-content h5 > a:hover, .other-content h5 > a:focus { text-decoration: underline; }

/*--- table ---*/
  .js-scrollable {
    width: 100%;
    overflow: scroll;
  }
  .js-scrollable table {
    width: 100%;
    /*min-width: 800px;*/
  }
  .js-scrollable table tr th, .js-scrollable table tr td {
    display: table-cell;
    width: auto!important;
  }
  .js-scrollable table tr th { white-space: nowrap; }

.other-content table {
    width: 100%;
    margin: 3em auto 0;
    border: 1px solid #C4C4C4;
    border-collapse: collapse;
}

.other-content table.table_speclist01 {
    margin-bottom: 4em;
}

.other-content table tr {
    background-color: #FFF;
}
.other-content table tr th, .other-content table tr td {
    font-size: 0.95em;
    line-height: 1.3;
    letter-spacing: 0.02em;
    padding: 15px 30px;
    vertical-align: top;
    border: 1px solid #C4C4C4;
}
.other-content table tr th {
    background-color: #EDF2FE;
}
.other-content table.table_speclist01 tr th {
    width: 300px;
}
.other-content table tr th p, .other-content table tr td p {
    line-height: 1.6!important;
    text-align: left;
}
.other-content table tr th p:last-of-type, .other-content table tr td p:last-of-type {
    margin-bottom: 0;
}
.contentarea img {
    max-width: 100%;
    height: auto;
}
.other-content table.no-responsive {  }
.other-content table tr th.year, .other-content table tr th.month { text-align: center; padding: 12px 10px; }
.other-content table tr th.year { background-color: #dee0e2; }
.other-content table tr th.month { background-color: #f5f5f5; }


.prmag .mag-img01 img {
    /*
    border: solid 1px #ccc;*/
    box-shadow: 0 2px 5px 0 #ccc;
}


/* ページネーション BTN */
.contentarea .pagenate > ul {
  margin: 40px 0 0;
  padding: 0;
  text-align: center;
  display: flex!important;
  justify-content: center;
  flex-flow: wrap;
}
.contentarea .pagenate > ul.visible-xs { display: none!important; }
.contentarea .pagenate > ul > li { padding-left: 0.3em!important; }
.contentarea .pagenate > ul > li > a,
.contentarea .pagenate > ul > li > span {
    font-family: roboto, 'Noto Sans JP', sans-serif!important;
    color: #123086!important;
    font-size: 15px!important;
    font-weight: bold!important;
    line-height: 1.5!important;
    padding: 0.5em 0.8em!important;
    border: 2px solid #123086!important;
    border-radius: 5px!important;
}
.contentarea .pagenate > ul > li::before { display: none!important; }
.contentarea .pagenate > ul > li > span, .contentarea .pagenate > ul > li > a:hover {
    color: #fff!important;
    background-color: #123086!important;
    border-color: #123086!important;
}
.contentarea .pagenate > ul > li > span { padding: 0; }

@media screen and (max-width: 767px) {
    .contentarea .pagenate > ul.hidden-xs { display: none!important; }
    .contentarea .pagenate > ul.visible-xs { display: flex!important; }
    .contentarea .pagenate > ul.visible-xs:last-child { margin-top: 0!important; }
}

/* PageBute ページネーション */
/*
.contentarea .pagenate > ul {
  margin: 40px 0 0;
  padding: 0;
  text-align: center;
}
.contentarea .pagenate > ul > li {
  display: inline-block !important;
  padding: 0 10px !important;
  margin: 0;
    border: none;
}
.contentarea .pagenate > ul > li:before {
  background-color: transparent;
  display: none;
  padding: 0;
}
.contentarea .pagenate > ul > li > a {
  padding: 0;
}
.contentarea .pagenate > ul > li > span {
  padding: 0;
}

/* ページネーション .ais-Pagination-link */
.ais-Pagination-link {
    font-family: roboto, 'Noto Sans JP', sans-serif!important;
    color: #123086!important;
    font-size: 15px!important;
    font-weight: bold!important;
    line-height: 1.5!important;
    padding: 0.5em 0.8em!important;
    border: 2px solid #123086!important;
    border-radius: 5px!important;
}
.ais-Pagination-item::before { display: none!important; }
.ais-Pagination-item--selected .ais-Pagination-link {
    color: #fff!important;
    background-color: #123086!important;
    border-color: #123086!important;
}
.ais-Pagination-item + .ais-Pagination-item { margin-left: 0!important; padding-left: 0.7em!important; }
.ais-Pagination-list > .ais-Pagination-item:first-child { padding-left: 0!important; }


/* --------------------------------------------
    スライダー slick
-------------------------------------------- */
.slider-wrap {
    width: 90%;
    max-width: 600px;
    margin: 0 auto 1em;
}
.slick-slider {
    display: block;
    width: calc(100% - 80px);
    margin: 0 auto!important;
    padding: 0!important;
}
.slick-slide .slide-item {
    margin-bottom: 0!important;
    padding-left: 0!important;
}
.slick-slide .slide-item::before { display: none!important; }
#single-slider .slick-slide > div { padding: 0 6px; }
#tmb-single-slider .slick-slide > div { padding: 12px 6px; }
.slick-slide img { margin: 0 auto; }
.slide-arrow {
    display: inline-block;
    position: absolute;
    top: 50%;
    z-index: 100;
    cursor: pointer;
}
.prev-arrow { left: -40px; }
.next-arrow { right: -40px; }
.slide-arrow img { width: 50px; height: auto; }
@media screen and (max-width: 768px) {
  .slick-slider { width: calc(100% - 30px); }
  #tmb-single-slider { width: 100%; margin-bottom: 15px; }
  .slick-slide .slide-item { width: 100%; }
  #single-slider .slick-slide > div { padding: 0 3px; }
  #tmb-single-slider .slick-slide > div { padding: 6px 3px; }
  .slide-arrow img { width: 42px; }
  .prev-arrow { left: -30px; }
  .next-arrow { right: -30px; }
}



/* --------------------------------------------
    step BTN
-------------------------------------------- */
.step-list {
    display: flex;
    flex-wrap: wrap;
    margin: 0 auto 3em;
}
.step-list .item {
    position: relative;
    width: calc(100% / 4);
    text-align: center;
    align-items: center;
    justify-content: center;
}
.step-list .item .item-wrap {
    color: #fff;
    font-size: 0.9em;
    font-weight: 600;
    line-height: 1.3;
    position: relative;
    display: block;
    height: 100px;
    padding: 1em 2em;
    background: #123086;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}
.step-list .item .item-wrap span { display: block; width: 100%; }
.step-list .item:first-child .item-wrap { padding-left: 15px; padding-right: calc(1em + 15px); }
.step-list .item:last-child .item-wrap { padding-right: 15px; padding-left: calc(1em + 15px); }
.step-list .item:not(:last-child) .item-wrap::after, .step-list .item:not(:last-child) .item-wrap::before {
    content: "";
    width: 16px;
    height: 50%;
    background: #fff;
    position: absolute;
    right: -10px;
    z-index: 2;
}
.step-list .item .item-wrap::before {
    top: 0;
    -webkit-transform: skew(20deg) translateX(50%);
    transform: skew(20deg) translateX(50%);
    -webkit-transform-origin: bottom;
    transform-origin: bottom;
}
.step-list .item .item-wrap::after {
    bottom: 0;
    -webkit-transform: skew(-20deg) translateX(50%);
    transform: skew(-20deg) translateX(50%);
    -webkit-transform-origin: top;
    transform-origin: top;
}
@media screen and (max-width: 700px) {
    .step-list { display: block; }
    .step-list .item { width: 100%; }
    .step-list .item .item-wrap {
        font-size: 1em;
        height: auto;
        margin: 0 auto;
        padding: 2.5em 1em 1.5em;
    }
    .step-list .item:first-child .item-wrap { padding: 1em 1em; }
    .step-list .item:last-child .item-wrap { padding: 2.5em 1em 1em; }
    .step-list .item .item-wrap::before, .step-list .item .item-wrap::after, .step-list .item::before, .step-list .item::after {
        content: "";
        position: absolute;
        z-index: 2;
        width: 400px!important;
        height: 1.5em!important;
        background-color: transparent!important;
        top: auto;
        bottom: 0;
        border-style: solid;
        -webkit-transform-origin: bottom;
        transform-origin: bottom;
        -webkit-transform: skew(0deg) translateX(0%);
        transform: skew(0deg) translateX(0%);
    }
    .step-list .item::before, .step-list .item::after {
        top: 100%;
        bottom: auto;
    }
    .step-list .item .item-wrap::before, .step-list .item::before {
        right: auto;
        left: 50%;
        border-width: 0 0 1.5em 400px;
        border-color: transparent transparent #fff transparent;
    }
    .step-list .item::before {
        border-width: 1.5em 400px 0 0;
        border-color: #fff transparent transparent transparent;
    }
    .step-list .item .item-wrap::after, .step-list .item::after {
        left: auto;
        right: 50%!important;
        border-width: 1.5em 0 0 400px;
        border-color: transparent transparent transparent #fff;
    }
    .step-list .item::after {
        border-width: 0 400px 1.5em 0;
        border-color: transparent #fff transparent transparent;
    }
    .step-list .item:last-child a::before, .step-list .item:last-child a::after, .step-list .item:last-child::before, .step-list .item:last-child::after { display: none; }
}


/* --------------------------------------------
    社長ごあいさつ .company-msg
-------------------------------------------- */
.company-msg {
    position: relative;
    display: flex;
    height: auto;
    min-height: 60vw;
    background-image: url(../img/company-bg01.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}
.company-msg::before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: rgba(255, 255, 255, 0.1);
    mix-blend-mode: overlay;
}
.company-msg .msg-txt {
    position: relative;
    display: flex;
    justify-content: end;
    align-items: center;
    /*align-items: flex-start;*/
    padding: 3em;
    padding-left: 4em;
    padding-right: 0;
    width: 60vw;
    /*max-width: 1120px;*/
}
/*
.company-msg .msg-txt::before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: rgba(96, 137, 255, 0.8);
    mix-blend-mode: multiply;
}
*/
.company-msg .msg-txt .txt-wrap { position: relative; z-index: 10; }
.company-msg .msg-txt .box-wh { font-size: 0.92em; background-color: rgba(255,255,255,0.9); }
@media screen and (max-width: 1280px) {
    .company-msg .msg-txt { width: 65vw; }
}
@media screen and (max-width: 1080px) {
    .company-msg { min-height: auto; }
    .company-msg .msg-txt { width: 70vw; }
}
@media screen and (max-width: 992px) {
    .company-msg { display: block; padding-bottom: 4em; background-color: #fff; background-image: none; }
    .company-msg .msg-txt { display: block; width: 82%; margin: 0 auto; padding: 0; }
    .company-msg .msg-txt .box-wh { font-size: 1em; padding: 0; }
}
@media screen and (max-width: 767px) {
    .company-msg .msg-txt { width: 90%; }
}


/* --------------------------------------------
    レトロフィット list 画像
-------------------------------------------- */
.square-img {
    position: relative;
    width: 100%;
}
.square-img::before {
    content: "";
    display: block;
    padding-top: 100%;
}
.square-img img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    margin: auto;
    object-fit: cover;
    /*
    width: 90%;
    height: 90%;
    top: 5%;
    left: 5%;
    object-fit: contain;
    */
}
/* 即納可 のとき */
.sokunou::after {
    position: absolute;
    content: '';
    display: block;
    width: 60px;
    height: 60px;
    left: 15px;
    top: 15px;
    z-index: 15;
    background-image: url(../img/delivery-icon01.png);
    background-size: contain;
    background-repeat: no-repeat;
}

/* SOLD OUT のとき */
.soldout::before, .nego::before {
    position: relative;
    z-index: 1;
    mix-blend-mode: multiply;
    background-color: rgba(18, 48, 134, 0.6);
}
.soldout::after, .nego::after {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
}
.soldout::after { background-image: url(../img/soldout.png); }
.nego::after { background-image: url(../img/nego.png); }


.retro_itemlist01 {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
}
.retro_itemlist01 > div {
    width: calc(100%/3);
}
.retro_itemlist01 .retro_name01 {
    font-weight: 700;
    font-size: 20px;
    margin: 8px 0;
}
.retro_subtit01 {
}
.retro_itemlist01 .retro_subtit01 {
    font-size: 16px;
    line-height: 1.5;
    margin-top: 8px;
}
.retro_itemdetail01 .retro_subtit01 {
    font-size: 18px;
    line-height: 1.8;
    margin: 0 0 1em;
}
.retro_reference01 {
    display: inline-block;
    font-weight: 700;
    font-size: 14px;
}
.retro_itemlist01 .retro_reference01 {
    margin: 0 0px 0px;
}
.retro_itemdetail01 .retro_reference01 {
    margin: 0 0px 20px;
    
}
.retro_status01 {
    display: inline-block;
}
.retro_itemlist01 .retro_status01 {
    margin: 0 20px 0 0;
}
.retro_itemdetail01 .retro_status01 {
    margin: 0 20px 20px 0;
}

.retro_itemdetail01 .retro_status01 span,
.retro_itemlist01 .retro_status01 span {
    font-size: 14px;
    font-weight: 700;
    padding: 1px 10px;
    display: inline-block;
    border-radius: 20px;
    background-color: #f2f2f2;
}
.retro_itemdetail01 .retro_status01 .before,
.retro_itemlist01 .retro_status01 .before {
    color: #C30008;
    border: solid 1px #C30008;
}
.retro_itemdetail01 .retro_status01 .after,
.retro_itemlist01 .retro_status01 .after {
/*
    color: #122352;
    border: solid 1px #122352;
*/
    color: #fff;
    background-color: #122352;
}
.retro_itemlist01 .retro_link01 {
    display: block;
    /*
    border: solid 1px #eee;
    */
}


/* --------------------------------------------
    センターレス研削盤 list
-------------------------------------------- */
/* もとに戻す BTN */
.ais-ClearRefinements-button {
    color: #fff!important;
    font-size: 15px!important;
    font-weight: bold!important;
    line-height: 1.3!important;
    letter-spacing: 0.05em!important;
    text-align: center!important;
    padding: 0.6em 1em!important;
    border-radius: 0!important;
    background-color: #123086!important;
}
.ais-ClearRefinements-button:hover { background-color: #0e2669!important; }
/* 商品 LIST */
.ais-Hits-list { padding: 0!important; }
.ais-Hits-item { padding: 1em!important; border: 1px solid #F2F2F2!important; }
.ais-Hits-item a { color: #333; }
.hit-name {
    color: #123086;
    font-family: roboto, 'Noto Sans JP', sans-serif;
    font-size: 0.9em;
    font-weight: bold;
    letter-spacing: 0.02em;
}
.hit-price {
    color: #fff;
    font-size: 13px;
    font-weight: bold;
    line-height: 1.3;
    text-align: center;
    padding: 0.5em;
    background-color: #123086;
}

/* --------------------------------------------
    お知らせ ＆ ブログ 一覧
-------------------------------------------- */
.topics .tech-box .tech-img {
    position: relative;
    width: 100%;
    height: fit-content;
    margin: 0 auto 10px;
    overflow: hidden;
}
.topics .tech-box .tech-img::before {
    content: "";
    display: block;
    padding-top: 56.25%;
}
.topics .tech-box .tech-img img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    margin: auto;
    object-fit: cover;
    -webkit-transition: 1s;
    -o-transition: 1s;
    transition: 1s;
}
.topics .tech-box .tech-data {
    background: #2D4FAF;
    font-size: 15px;
    font-weight: bold;
    line-height: 1;
    letter-spacing: 0.05em;
    color: #fff;
    border: none;
    border-radius: 0;
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
    padding: 12px 15px;
    text-align: center;
    width: auto;
}
@media screen and (max-width: 767px) {
    .topics .tech-box .tech-data { font-size: 13px; border-top-right-radius: 5px; border-top-left-radius: 5px; padding: 8px 10px; }
}

/* --------------------------------------------
    技術ニュース list .tech-box
-------------------------------------------- */
.tech-box {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 4em 2em;
}
.tech-box .tech-item {
    display: grid;
    grid-template-columns: 1fr;
}
.tech-box .tech-tit {
    width: 100%;
    color: #123086;
    font-weight: bold;
    line-height: 1.3;
    margin: 10px auto 6px;
    overflow: hidden;
    height: 2.7em;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}
.tech-box .tech-txt {
    width: 100%;
    line-height: 1.5;
    font-size: 0.9em;
    overflow: hidden;
    height: 4.6em;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}
.tech-box .btn00, .tech-box .btn00 a {
    width: 100%!important;
}
@media screen and (max-width: 767px) {
    .tech-box { grid-template-columns: 1fr 1fr; grid-gap: 2em 1em; }
}


/* --------------------------------------------
    search-tab
-------------------------------------------- */
.search-tab {
    padding-top: 5em;
    background-color: #fff;
}
.search-tab .search-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
}
.search-tab .search-list a {
    color: #333;
    font-size: 16px;
    font-weight: bold;
    line-height: 1.5;
    letter-spacing: 0.1em;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    width: 25%;
    padding: 2.5em 0;
    overflow: hidden;
    background-color: #F2F2F2;
    border-top: 1px solid #D9D9D9;
    border-bottom: 1px solid #D9D9D9;
}
.search-tab .part2 a {
    width: 50%;
}

.search-tab .search-list a:not(:last-child) { border-right: 1px solid #D9D9D9; }
.search-tab .search-list a.btn-active { background-color: #fff; border-bottom: none; }
/*
.search-tab .search-list a::before {
    content: '';
    display: inline-block;
    position: absolute;
    top: 0;
    left: 0;
    -webkit-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
    transform: translateY(-100%);
    width: 100%;
    height: 100%;
    background-color: #F2F2F2;
    -webkit-transition: -webkit-transform .2s ease;
    transition: -webkit-transform .2s ease;
    -o-transition: transform .2s ease;
    transition: transform .2s ease;
    transition: transform .2s ease, -webkit-transform .2s ease;
}
.search-tab .search-list a::after {
    font-family: "Font Awesome 5 Free";
    content: '\f078';
    color: #123086;
    font-weight: 900;
    font-size: 1em;
    line-height: 1;
    display: inline-block;
    vertical-align: bottom;
    position: absolute;
    right: 2em;
    -webkit-transition: transform 0.3s ease;
    -moz-transition: transform 0.3s ease;
    -o-transition: transform 0.3s ease;
    transition: transform 0.3s ease;
}
.search-tab .search-list a span { position: relative; z-index: 10; }
*/
.search-tab .search-list a span.search-sub {
    color: #123086;
    font-family: roboto, 'Noto Sans JP', sans-serif;
    font-size: 13px;
    letter-spacing: 0.2em;
    display: block;
    width: 100%;
    text-align: center;
}
/*
.search-tab .search-list a:hover, .search-tab .search-list a:focus { color: #333; text-decoration: none; outline: none; }
.search-tab .search-list a:hover::before, .search-tab .search-list a.btn-active::before {
    -webkit-transform: translate(0);
    -ms-transform: translate(0);
    transform: translate(0);
}
.search-tab .search-list a:hover::after, .search-tab .search-list a.btn-active::after { transform: translateY(50%); }
*/
@media screen and (max-width: 767px) {
    .search-tab { padding-top: 3em; }
    .search-tab .search-list a { font-size: 12px; letter-spacing: 0.05em; padding: 1.5em 0; width: 50%; }
    .search-tab .search-list a span.search-sub { font-size: 11px; }
/*
    .search-tab .search-list {
        display: -webkit-box;
        display: -ms-blockbox;
        display: block;
    }
    .search-tab .search-list a:not(:last-child) { border-right: none; border-bottom: 1px solid #D9D9D9; }
    .search-tab .search-list a span.search-sub { display: none; }
*/
}


/* --------------------------------------------
    work-parts-box
-------------------------------------------- */
@media screen and (max-width: 767px) {
    .work-parts-box { grid-template-columns: 1fr 1fr!important; grid-gap: 1.5em!important; }
}
@media screen and (max-width: 460px) {
    .work-parts-box { grid-template-columns: 1fr!important; }
}

/* --------------------------------------------
    Q & A
-------------------------------------------- */
.cp_qa *, .cp_qa *:after, .cp_qa *:before {
	-webkit-box-sizing: border-box;
	        box-sizing: border-box;
}
.cp_qa {
    position: relative;
    width: 100%;
    max-width: 1100px;
	overflow-x: hidden;
	margin: 0 auto;
	/*color: #333333;*/
    /*color: #C30008;*/
}
.cp_qa .cp_actab {
    padding: 1.5em 0.5em;
    background-color: #fff;
    border-radius: 2px;
    border-bottom: 1px solid #f2f2f2;
}
.cp_qa .cp_actab:last-of-type { border-bottom: none; }
.cp_qa .cp_for {
	font-size: 1em;
    font-weight: normal;
	position: relative;
	display: block;
	width: 100%;
	margin: 0;
	padding: 0;
	cursor: pointer;
}
.cp_qa .cp_for p {
    color: #000;
    margin: 0;
	padding: 10px 4em 10px 3em;
}
.cp_qa .cp_actab-content { display: none; }
.cp_qa .cp_actab-content .cp_txtA {
    background-color: #FAF8F0;
    margin: 0 1em 0 1em;
    padding: 1.5em 2em;
    border-radius: 20px;
}
.cp_qa .cp_actab-content p {
    color: #333;
    margin-bottom: 0;
}
.cp_qa .cp_numQ {
    color: #C30008;
    font-family: roboto, 'Noto Sans JP', sans-serif;
    font-style: normal;
    font-size: 2.2em;
    font-weight: bold;
    line-height: 1.3;
    display: inline-block;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}
.cp_qa .cp_actab-content {
	font-size: 1em;
    font-weight: normal;
	position: relative;
	overflow: hidden;
	height: 0;
	margin: 0 auto;
	padding: 0 14px;
	-webkit-transition: 0.4s ease;
	        transition: 0.4s ease;
	opacity: 0;
}
.cp_qa .cp_actab .open ~ .cp_actab-content {
	height: auto;
	padding: 14px;
	opacity: 1;
}
.cp_qa .cp_plus {
    /*color: #000;*/
    color: #C30008;
	font-size: 1.5em;
    line-height: 100%;
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 0;
    margin: 0 auto;
    -webkit-transition: 0.2s ease;
    transition: 0.2s ease;
}
.cp_qa .cp_actab input[type=checkbox]:checked ~ .cp_for .cp_plus {
	-webkit-transform: rotate(45deg) translateY(-50%);
	        transform: rotate(45deg) translateY(-50%);
    right: 35px;
}
.cp_qa .cp_actab input[type=checkbox] {
  display: none;
}
@media screen and (max-width: 460px) {
    .cp_qa .cp_actab { padding: 1em 0.5em; }
    .cp_qa .cp_for p { padding: 10px 2em 10px 2.5em; }
    .cp_qa .cp_plus { right: 0; }
    .cp_qa .cp_actab input[type=checkbox]:checked ~ .cp_for .cp_plus { right: 10px; }
}


/* --------------------------------------------
    A-Form
-------------------------------------------- */
.aform-header { display: none!important; }
.aform-content dl {
    margin: 0.125em 0;
    padding: 0.5em 0;
    display: flex;
    border-bottom: 1px dotted #F2F2F2;
}
.aform-content dl:last-child { border-bottom: none; }
.aform-content dl dt {
    font-weight: bold;
    width: 35%;
    margin-right: 2.5%;
    background: #F2F2F2;
    padding: 10px;
}
.aform-content dl dd {
    margin: 0 0 0.5em;
    width: 65%;
}
.aform-name-ul, .aform-radio-ul {
    margin-bottom: 0!important;
    padding-left: 0!important;
}
.aform-name-ul li, .aform-radio-ul li { padding-left: 0!important; }
.aform-name-ul li:last-child, .aform-radio-ul li:last-child { margin-bottom: 0!important; }
.aform-name-ul li::before, .aform-radio-ul li::before { display: none!important; }

.aform-name-ul label { margin-right: 5px; }

.aform-radio-ul li { margin-bottom: 0!important; }
.aform-content input[type="radio"], .aform-content input[type="checkbox"] { margin-right: 5px; margin-top: 0; }
.aform-content label { margin-top: 5px; }

.aform-upload { margin-bottom: 5px!important; }

.aform-required {
    color: #fff!important;
    font-size: 14px!important;
    font-weight: bold!important;
    line-height: 1!important;
    display: inline-block!important;
    margin-left: 5px!important;
    padding: 0.3em!important;
    background: #C30008!important;
    border-radius: 3px!important;
    vertical-align: bottom!important;
}

.aform-button-area { text-align: center; }
.aform-button-area input {
    color: #fff!important;
    font-size: 18px!important;
    width: auto!important;
    font-size: 1em!important;
    font-weight: bold!important;
    line-height: 1!important;
    letter-spacing: 0.1em!important;
    display: inline-block!important;
    margin: 30px 5px!important;
    padding: 20px 5em!important;
    background: #C30008!important;
    background-size: 110%!important;
    background-position: center!important;
    border: none!important;
    border-radius: 50px!important;
    -moz-transition: all 0.5s ease 0s;
    -o-transition: all 0.5s ease 0s;
    -webkit-transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease 0s;
    transition: all 0.5s ease 0s;
}
.aform-button-area input:hover { background: #DD4147!important; }
@media screen and (max-width: 767px) {
  .aform-content dl { display: block; }
  .aform-content dl dt { width: 100%; margin-right: 0; margin-bottom: 15px; padding: 10px 15px; }
  .aform-content dl dd { width: 100%; }
  .aform-content dl dd input, .aform-content dl dd textarea { width: 100%; max-width: 100%; }
  .aform-content .aform-name-ul input { max-width: calc(100% - 2em); }
}


/* --------------------------------------------
    記事
-------------------------------------------- */
.single-content .content-wrap img { max-width: 100%; height: auto; }


/* --------------------------------------------
    Responsive
-------------------------------------------- */
@media screen and (min-width: 1600px) {
  #ft01::before { width: calc(44vw - 16em); }
}
@media screen and (max-width: 991px) {
    body, html { font-size: 17px; }
    .grid4 { grid-template-columns: 1fr 1fr 1fr; }
    .grid5 { grid-template-columns: 1fr 1fr 1fr; }
    .contact-grid { grid-template-columns: 1fr 1fr; }
    .content-wrap { width: 90%; padding: 5em 0; }
    .sidebtn a { font-size: 17px; width: 46px; }
    .prod-flex { margin: 4em auto 6em; }
    .prod-flex .txt-item { width: 19em; }
    .prod-flex .txt-wrap { max-width: 17em; }
    .prod-flex .img-item { margin-top: -1.5em; }
    .prod-box01 .img-item::before { width: 420px; height: 240px; }
    .prod-box02 .img-item::before { width: 500px; height: 270px; top: -11em; }
    .prod-box03 .img-item::before { width: 400px; height: 280px; }
    .case-flex .item02 { width: 46vw; }
    .sec05-box .grid-item > div { padding: 3em 0.5em!important; }
    .sec07-box .grid-item > div { padding: 6em 1.5em!important; }
    .ft-wrap .flex-box > div { width: calc(100% / 3); }
}

@media screen and (max-width: 767px) {
    body, html { font-size: 16px; line-height: 1.6; }
    h2, h3, h4, h5, h6 { margin-bottom: 35px; letter-spacing: 0.05em; }
    h2 { font-size: 1.8rem; }
    h2::before {  width: 50px; height: 50px; top: -1em; left: -25px; }
    h3 { font-size: 1.5rem; }
    h4 { font-size: 1.3rem; }
    h5 { font-size: 1.2rem; }
    h6 { font-size: 1.1rem; }

    .btn00 { text-align: center; }
    .box-wh { padding: 2em 1.5em; }
    .content-wrap { width: 88%; padding: 4em 0; }
    .flex-box, .flex-column { display: block; }
    .flex-box > div { width: 100%; }
    .grid-box { grid-template-columns: 1fr; }
    .grid4 { grid-template-columns: 1fr 1fr; }
    .grid6 { grid-gap: 5px!important; }
    .grid-wrap15 { grid-template-columns: 1fr 1fr 1fr!important; }
    #content-main .grid-box .grid-item > div { min-height: auto; }
    .w90 { width: 100%; }

    /*.nav-tabs { min-width: 38em; }*/
    /*.nav-tabs li a { width: 6em; }*/
    .tab-wrap { padding: 1em 1.5em; }
    .prod-flex { width: 100%; max-width: 460px; }
    .prod-flex .txt-item { width: 100%; }
    .prod-flex .txt-wrap { max-width: 22em; margin: 0 auto 5em; }
    .prod-flex:last-of-type .txt-wrap { margin-bottom: 0; }
    .prod-flex .img-item .img-wrap { width: 100%; max-width: 460px; margin: 0 auto 1em; }
    .case-flex .item01 img { position: relative; top: 0; left: 0; transform: translate(0, 0); }
    .case-flex .item02 { width: 100%; }
    .case-flex .item02 .item-wrap { max-width: 21em; }
    .sec04-img { margin-top: 1.5em; }

    .sidebtn { bottom: 0; left: 50%; right: auto; transform: translateX(-50%); }
    .sidebtn a {
        font-size: 18px;
        width: auto;
        padding: 18px 30px;
        -webkit-writing-mode: horizontal-tb;
        -ms-writing-mode: lr-tb;
        -o-writing-mode: horizontal-tb;
        writing-mode: horizontal-tb;
    }

    #ft01::before { width: 100%; height: 17em; }
    #ft01 a { font-size: 15px; }
    #ft01 .ft-wrap { padding: 1.5em 0; }
    #ft01 .ft-logo { width: 160px; margin-bottom: 1em; }
    .ft-wrap .ft-txt { width: 100%; margin-bottom: 2.5em; }
    /*.ft-wrap .grid-box { padding-left: 0; padding-top: 2em; }*/
    .ft-wrap .flex-box { display: flex; padding-left: 0; padding-top: 2em; }
    .ft-wrap .flex-box > div { width: calc(100% / 2); }
    #ft01 .ft-cp { font-size: 12px; letter-spacing: 0.05em; }
    .topBtn { color: #122352!important; }
    .topBtn span::before { background-color: #122352; }
    .topBtn span::after { border: 1px solid #122352; }
    @keyframes btn-line-ft {
        0% { left: 0; transform: scale(1, 1) translateX(-50%); }
        100% { left: auto; right: 0; transform: scale(0.2, 1) translateX(-50%); background-color: #122352; }
    }
    @keyframes btn-circle-ft {
        0% { width: 10px; height: 10px; left: 15px; }
        100% { width: 20px; height: 20px; left: 0; border-color: #122352; }
    }
    
    
    /* テーブル縦積み */
	.table_speclist01 {
		display: table; /* or inline-table */
		border-collapse: collapse;
	}
	.table_speclist01 tr {
		display: table-row;
		border: none;
	}
	.table_speclist01 th,
	.table_speclist01 td {
		width: 100%;
		display: block;
		overflow-x: auto;
		white-space: normal;
		-webkit-overflow-scrolling: auto;
	}
    .retro_itemlist01 > div {
        width: 100%;
    }
    .retro_itemdetail01 .retro_subtit01 {
        font-size: 16px;
    }

    .other-content::after {
        content: '';
        display: block;
        width: 92%;
        max-width: 1046px;
        height: 5px;
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        z-index: 1;
        background-color: #122352;
        border-radius: 15px;
    }
    .other-content h1, .other-content h2, .other-content h3, .other-content h4, .other-content h5, .other-content h6 { letter-spacing: 0.02em; }
    .other-content h1 { font-size: 1.55rem; }
    .other-content h2 { font-size: 1.4rem; }
    .other-content h3 { font-size: 1.3rem; }
    .other-content h4 { font-size: 1.25rem; }
    .other-content h5 { font-size: 1.2rem; }
    .other-content h6 { font-size: 1.1rem; }
    .other-content h1 .titsub, .other-content h2 .titsub, .other-content h3 .titsub, .other-content h4 .titsub, .other-content h5 .titsub, .other-content h6 .titsub { display: block; margin-left: 0; }
    .other-content .btn00 a { width: 100%; }
    .other-content .flex-box { display: block; }
    .other-content .grid-box { grid-template-columns: 1fr; }
    .other-content .content-wrap { width: 90%; padding: 4em 0; }
    .other-content .w90 { width: 96%; }
    .other-content table tr th, .other-content table tr td { padding: 12px 15px; }
    
    .other-content table.table_speclist01 tr th {
        width: auto;
    }
    
  .js-scrollable table, table.no-responsive {
    width: 100%;
    /*min-width: 800px;*/
  }
  .js-scrollable table tr th, .js-scrollable table tr td,
  table.no-responsive tr th, table.no-responsive tr td {
    display: table-cell;
    width: auto!important;
  }
  .js-scrollable table tr td:last-child, table.no-responsive tr td:last-child { padding-top: 12px!important; }

}
@media screen and (max-width: 700px) {
    ul.information li span.news-cat { margin-right: 0;  font-size: 12px; padding: 0.2em 0.5em; vertical-align: baseline; }
    ul.information li span.news-tit {
        padding-top: 5px;
        display: block;
        overflow: hidden;
        white-space: nowrap;
        text-overflow: ellipsis;
    }
    #titbar { padding-bottom: 7em; }
    #titbar h1 { width: 96%; }
    #titbar h1 span { font-size: 0.8em; letter-spacing: 0.1em; }
}
@media screen and (max-width: 600px) {
    h2::before { width: 40px; height: 40px; top: -0.7em; left: -18px; }
    .prod-flex { margin: 3em auto 6em; }
    .prod-box01 .img-item::before { width: 300px; height: 180px; top: -7em; left: 30%; }
    .prod-box02 .img-item::before { width: 330px; height: 190px; top: -8em; right: 15%; }
    .prod-box03 .img-item::before { width: 300px; height: 220px; top: -8em; left: 40%; }
}
@media screen and (max-width: 575px) {
    .nav-tabs { display: grid; grid-template-columns: repeat(3, 1fr); gap: 5px; }
    .nav-tabs::before, .nav-tabs::after { display: none; }
    .nav-tabs > li { margin-top: 0; }
    .nav-tabs li a { font-size: 13px; width: auto; margin-right: 0; padding: 18px 0; }
}