@charset "UTF-8";
/* ------------------------------------------------------------- */
/* layout / parts                                                */
/* ------------------------------------------------------------- */
.pc {
  display: block !important;
}
.sp {
  display: none !important;
}
body.lock {
  overflow: hidden;
}
/*-----------------画像--------------------*/
img.fit-cover {
  object-fit: cover;
}
img.fit-contain {
  object-fit: contain;
}
figure img {
  width: 100%;
}
img {
  vertical-align: top;
  max-width: 100%;
}
.header-wrap {
  position: fixed;
  display: inline-block;
  z-index: 500;
  background-color: #fff;
  width: 100%;
  box-shadow: 0px 0.2rem 0.2rem -0.2rem rgba(0, 0, 0, 0.2);
  top: 0;
}
/*-----------------flex--------------------*/
.flex {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.flex.nowrap {
  flex-wrap: nowrap;
}
.flex.right {
  justify-content: flex-end;
}
.flex.center {
  justify-content: center;
}
.flex.left {
  justify-content: flex-start;
}
.flex.vertical {
  flex-direction: column;
  align-items: flex-start;
}
.flex.al-center {
  align-items: center;
}
.flex.al-top {
  align-items: flex-start;
}
.flex.al-bottom {
  align-items: flex-end;
}
.v-center {
  display: flex;
  justify-content: center;
  align-items: center;
}
/*-----------------Link--------------------*/
a {
  text-decoration: none;
  transition: all .3s ease;
}
section li > a {
  display: block;
}
a {
  color: inherit;
}
a:hover {
  opacity: 0.7;
}
/*----------------btn---------------------*/
.btn-b, input.btn-b {
  font-weight: bold;
  position: relative;
  display: block;
  width: 35rem;
  color: #fff;
  text-align: center;
  font-size: 1.8rem;
  line-height: 3;
  margin: 0 auto;
  z-index: 0;
  appearance: none;
  -webkit-appearance: none;
  border-radius: 3.3rem;
  background-color: #242478;
  transition: all 0.3s ease-in-out;
}
.btn-b::after, input.btn-b::after {
  position: absolute;
  top: 50%;
  right: 6%;
  content: '';
  display: inline-block;
  width: 0.8rem;
  height: 1.2rem;
  background-size: contain;
  background-repeat: no-repeat;
  transform: translate(0, -50%);
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  background-image: url(../image/btn-arw.png);
  transition: right 0.3s ease-in-out;
}
.btn-b:hover, input.btn-b:hover {
  filter: brightness(80%);
  -webkit-filter: brightness(80%);
  -moz-filter: brightness(80%);
  -o-filter: brightness(80%);
  -ms-filter: brightness(80%);
  opacity: 1;
}
.btn-b:hover::after, input.btn-b:hover::after {
  right: 5%;
}
.btn-w, input.btn-w {
  font-weight: bold;
  position: relative;
  display: block;
  width: 35rem;
  color: #00005f;
  text-align: center;
  font-size: 1.8rem;
  line-height: 3;
  margin: 0 auto;
  z-index: 0;
  appearance: none;
  -webkit-appearance: none;
  border-radius: 3.3rem;
  border: solid 0.1rem #00005f;
  background-color: none;
  transition: all 0.3s ease-in-out;
}
.btn-w::after, input.btn-w::after {
  position: absolute;
  top: 50%;
  right: 6%;
  content: '';
  display: inline-block;
  width: 0.8rem;
  height: 1.2rem;
  background-size: contain;
  background-repeat: no-repeat;
  transform: translate(0, -50%);
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  background-image: url(../image/btn-arw-w.png);
  transition: right 0.3s ease-in-out;
}
.btn-w:hover, input.btn-w:hover {
  background-color: #00005f44;
  opacity: 1;
}
.btn-w:hover::after, input.btn-w:hover::after {
  right: 5%;
}
.btn-g {
  background-color: #68612b;
}
/*-----------------BG--------------------*/
.bg-grey {
  background-color: #333333;
  color: #fff;
}
.bg-db {
  background-color: #08193E;
}
.bg-b {
  background-color: #111111;
}
.bg-lb {
  background-color: #3974B9;
}
/*----------------text---------------------*/
.txt-c {
  text-align: center;
}
.txt-l {
  text-align: left;
}
.txt-r {
  text-align: right;
}
/*----------------section-tittle---------------------*/
h2.ttl {
  font-size: 3.4rem;
  color: #00005f;
  font-weight: bold;
}
@media (min-width: 769px) {
  /* ------------------------------------------------------------- */
  /* layout / parts                                                */
  /* ------------------------------------------------------------- */
  /* body {
    min-width: 135rem;
  } */

}
@media (max-width: 768px) {
  /* ------------------------------------------------------------- */
  /* layout / parts                                                */
  /* ------------------------------------------------------------- */
  .pc {
    display: none !important;
  }
  .sp {
    display: block !important;
  }
  body {
    min-width: auto;
    font-size: 14px;
  }
  .inner {
    width: 90%;
  }
  .inner.large_inner {
    width: 90%;
  }
  .main {
    width: 100%;
  }
  .contents {
    padding-top: 2rem;
    padding-bottom: 4rem;
  }
  aside {
    width: 100%;
    padding: 0 5vw;
  }
  section {
    overflow: hidden;
  }
  p {
    font-size: 1.6rem;
  }
  h2.ttl {
    font-size: 2.7rem;
  }
  a:hover {
    opacity: 1;
  }
  .btn-b, input.btn-b {
    width: 80%;
  }
  .reverse {
    flex-wrap: wrap;
  }
  h2.ttl span {
    font-size: 3rem;
  }
  h1 {
    font-size: 2.3rem;
  }
  .hd-txt {
    width: 100%;
  }
  .lower.padding-90 {
    padding: 9rem 0 9rem;
  }
  .paddingt-60 {
    padding-top: 0;
  }
  .padding-60-90 {
    padding: 0 0 9rem;
  }
}
@media (max-width: 480px) {
  .btn-b, input.btn-b {
    width: 100%;
  }
}
/* ------------------------------------------------------------- */
/* header                                                        */
/* ------------------------------------------------------------- */
header .header-inner {
  width: 100%;
  max-width: 130rem;
}
header .header-logo {
  margin-left: 3rem;
}
header .pc li {
  margin-right: 4rem;
}
@media (max-width: 1200px) {
  header .pc li {
    margin-right: 2rem;
    font-size: 12px;
  } 
}
header .header-contact-btn {
  width: 10rem;
  color: #ffffff;
  font-size: 1.3rem;
  padding: 2rem 0;
}

header .header-contact-btn p {
  margin-top: 0.7rem;
  font-size: 1.4rem;
}
@media (max-width: 1200px) {
  header .header-contact-btn p {
    margin-top: 0.7rem;
    font-size: 1rem;
  }
}
header .header-contact-btn img {
  height: 2rem;
  margin-bottom: 1rem;
}
@media (max-width: 1380px) {
  header {
    width: 136.8rem;
  }
}
@media (max-width: 1200px) {
  header .header-logo img {
    width: 20rem;
    height: auto;
  }
  header .header-logo {
    margin-left: 1.5rem;
  }
}
@media (max-width: 900px) {
  header .pc li {
    margin-right: 2rem;
  }
  header .header-contact-btn {
    width: 7rem;
    color: #ffffff;
    font-size: 12px;
  }
}
@media (max-width: 768px) {
  header {
    width: 100%;
  }
  .sub_menu {
    display: none;
  }
  .link_btn {
    display: none;
  }
  header .fit-contain {
    width: 64%;
  }
  .header_70 {
    height: 5.3rem;
    padding: 0 1.6rem;
  }
  header .header-logo {
    margin-left: 1rem;
  }
  header .header-logo img {
    width: 20rem;
    height: auto;
    margin-left: 0px;
    padding: 0;
  }
  .contact_button.flex {
    display: none;
  }
  .seach_area {
    display: none;
  }
  /* header, .header-left a {height: 50px;} */
  header .header-right {
    display: none;
  }
  header .hd-ttl {
    font-size: 1rem;
  }
  header .hd-logo {
    height: 2.5rem;
    margin-top: 0.2rem;
  }
  header .hd-btn {
    height: 7rem;
    border-radius: 3.5rem;
  }
  /* ----- SP Menu ----- */
  .btn-menu {
    width: 5rem;
    height: 5rem;
    position: fixed;
    right: 0;
    top: 0;
    transition: .3s;
    z-index: 100;
  }
  .menu-trigger, .menu-trigger span {
    display: inline-block;
    transition: all .4s;
  }
  .menu-trigger span {
    position: absolute;
    left: 23%;
    width: 55%;
    height: 0.3rem;
    background-color: #fff;
  }
  .menu-trigger span:nth-of-type(1) {
    top: 1.3rem;
  }
  .menu-trigger span:nth-of-type(2) {
    top: 2.3rem;
  }
  .menu-trigger span:nth-of-type(3) {
    bottom: 1.3rem;
  }
  .menu-trigger.active span:nth-of-type(1) {
    transform: translateY(1.1rem) rotate(-315deg);
  }
  .menu-trigger.active span:nth-of-type(2) {
    opacity: 0;
  }
  .menu-trigger.active span:nth-of-type(3) {
    transform: translateY(-0.9rem) rotate(315deg);
  }
  .sp-nav-wrap nav {
    transition: all .3s ease;
    transform: translateX(100%);
  }
  .sp-nav-wrap nav.active {
    transform: translateX(0);
    display: flex;
    flex-direction: column-reverse;
    justify-content: flex-end;
  }
  .sp-nav-wrap nav {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10;
    width: 100vw;
    height: 100%;
    background-color: #fff;
    padding: 5rem 0;
    display: flex;
    flex-direction: column;
    justify-content: top;
  }
  .sp-nav-wrap .sp-nav {
    width: 100%;
    margin: 0 auto;
  }
  .sp-nav-wrap nav .sp-nav a {
    display: block;
    font-weight: bold;
    width: 80%;
    margin-left: auto;
    margin-right: auto;
    font-size: 1.9rem;
    padding: 1.9rem 0;
    position: relative;
  }
  .sp-nav-wrap nav li {
    color: #242478;
    border-bottom: 1px solid #242478;
  }
  .sp-nav-wrap nav li:first-child {
    border-top: 1px solid #242478;
  }
  .sp-nav-wrap nav .hd-btn {
    margin-top: 4rem;
    margin-bottom: 0;
    background-image: none;
    line-height: 1;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  header .header-contact-btn {
    width: calc(100% / 3);
  }
}



/*--------220413header-----------*/
header .header-logo-wrap .header-title {
  text-align: left;
  margin-left: 3rem;
  font-size: 1.1rem;
  width: 100%;
  margin-top: 0;
}
header .jpx_logo {
  margin-left: 2rem;
}
header .jpx_logo img {
  max-width: 4.6rem;
}
footer .jpx_logo img {
  max-width: 4.6rem;
}
footer .jpx_logo {
  margin-left: 2rem;
}
footer .copy__wrap {
  padding: 3rem 2rem;
  width: 1340px;
  max-width: 100%;
  margin: 0 auto;
}
footer ul.copy__right {
  margin-right: 5rem;
}
footer .copy__right li {
  padding: 0 3rem;
  border-right: 1px solid #000;
}
footer .copy__right li:last-child {
  border-right: none;
  padding-right: 0;
}
footer .copy {
  color: #6e7786;
  font-size: 1.2rem;
}
@media (max-width: 768px) {
  header {
    position: fixed;
    background-color: #fff;
    z-index: 9999;
    top: 0;
  }
  .header-logo-wrap {
    display: flex;
    height: 8rem;
  }
  header .btn-menu {
    top: 15px;
    background-color: inherit;
	right: 10px;
  }
  header .menu-trigger span {
    background-color: #3333ab;
  }
  .sp-nav-wrap nav {
    padding: 8rem 0;
  }
  header .jpx_logo {
    margin-left: 1rem;
  }
  header .header-logo img {
    width: 16rem;
  }
  header .jpx_logo img {
    max-width: 3.5rem;
  }
  header .header-logo-wrap .header-title {
    margin-left: 1rem;
    margin-top: 0;
  }
  footer .copy {
    margin-left: auto;
  }
}
/*ポップアップ*/
.side-download.side-list-block.fixed.download-area02 {
  position: fixed;
  left: inherit;
  right: inherit;
  bottom: 40px;
  width: 93.4rem;
  border: 2px solid #ddd;
  background-color: #fff;
  text-align: left;
  line-height: 1.6;
  padding: 10px;
  z-index: 999;
  transition: .5s;
  border: none;
  border-top: 25px solid #00005f;
  box-shadow: rgb(0 0 0 / 47%) 0px 3px 8px;
}
.download-item-wrap {
  display: flex;
  justify-content: space-around;
}
.download-item {
  display: flex;
  justify-content: center;
  border-right: 1px solid #ddd;
  padding: 10px;
  width: 33.333%;
gap:2rem;
}
.download-item:hover {
  opacity: 0.7;
}
.download-item .txt_wrap p {
  font-size: 1.4rem;
}
.download-item .txt_wrap .ttl {
  font-size: 1.6rem;
  font-weight: bold;
}
.download-item:last-child {
  border-right: none;
}
.download-area02 {
  display: none;
}
.download-area02 #batsu {
  position: absolute;
  top: -24px;
  left: 8px;
  color: #fff;
  font-weight: bold;
}
.download-area02.none {
  display: none !important;
}
@media (max-width: 768px) {
  .side-download.side-list-block.fixed.download-area02 {
    display: none !important;
  }
  .dowmload-SP p {
    position: relative;
    text-indent: -1.8rem;
    padding-left: 2rem;
  }
  .dowmload-SP p a {
    color: #00005f;
  }
  .dowmload-SP p::before {
    content: url(../image/btn-arw-w.png);
    margin-right: 1rem;
  }
}
.ma_knowhow_relateinfo li {
  background-color: #fff;
}
.ma_continuation_relateinfo li {
  background-color: #fff;
}
/*220912*/
@media (max-width: 768px) {
  footer .copy__wrap {
    padding: 3rem;
  }
  footer ul.copy__right {
    margin: auto;
    font-size: 1.3rem;
    padding: 1.3rem 0;
  }
  footer .copy__right li:first-child {
    padding-left: 0;
  }
  .p-footer-cta {
    padding: 0;
  }
}
.header-wrap {
  align-items: center;
}
.header-logo-wrap {
  display: flex;
  align-items: center;
  flex-direction: column;
  max-width: 100%;
  margin-left: 1.5rem;
  padding: 0;
}
header .header-logo {
  margin-left: 0;
}
header .header-logo-wrap .header-title {
  margin-left: 0;
}
header .header-contact-btn {
  padding: 2.5rem 0;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
header .header-contact-btn p {
  margin-top: 0.3rem;
  line-height: 1;
}
.header-logo-img, .footer-logo-img {
  width: 200px !important; /*レギュレーションの為変えない*/
  margin-bottom: 13px;
  margin-top: 13px;
}
@media (max-width: 1200px) {
  .header-logo-img, .footer-logo-img {
    width: 164px !important; /*レギュレーションの為変えない*/
    margin-bottom: 13px;
    margin-top: 13px;
  }
  }
.footer-logo-txt {
  font-size: 10px;
  margin-top: 8px;
}
.footer-tosho-logo {
  width: 46px;
}
@media (max-width: 768px) {
  .header-logo-wrap {
    height: 8rem;
    display: block;
    max-width: 100%;
    margin-left: 1.5rem;
  }
  article {
    margin-top: 9rem;
  }
  .p-footer-nav__logo {
    margin: auto;
  }
}
.c-floating-banner {
    display: none;
    z-index: 999;
    position: fixed;
    right: 16px;
    bottom: 16px;
    width: 260px;
    background: #fff;
}
.c-floating-banner a {
    transition: 0.3s;
    display: block;
}
.c-floating-banner a img{
    height: auto;
    width: 100%;
}
.c-floating-banner__close {
    position: absolute;
    top: 1px;
    left: -30px;
}
.c-floating-banner__close span {
    display: block;
    position: relative;
    top: -1px;
    width: 30px;
    height: 30px;
    background: #333;
    cursor: pointer;
}
.c-floating-banner__close span::before,
.c-floating-banner__close span::after {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 3px;
    height: 25px;
    background: #fff;
    content: "";
}
.c-floating-banner__close span::before {
    transform: translate(-50%, -50%) rotate(45deg);
}
.c-floating-banner__close span::after {
    transform: translate(-50%, -50%) rotate(-45deg);
}
.c-floating-banner.is-close {
    display: none !important;
}
@media (max-width: 768px) {
    .c-floating-banner {
        right: 0;
        bottom: 0;
        width: 40% !important;
    }
}