@charset "UTF-8";

* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}
body {
  color: #000;
  font-family: 'Noto Sans JP', sans-serif;
  line-height: 1.7;
}
.wrapper {
  width: 100%;
  overflow: hidden;
}
img {
  max-width: 100%;
  height: auto;
}
.sp {
  display: none;
}
.btn_disabled {
  opacity: .3;
  pointer-events: none;
}

@media screen and (max-width: 767px) {
  .sp {
    display: block;
  }
  .pc {
    display: none;
  }
}

/*----------------------------------------------------
	HEADER
----------------------------------------------------*/

@media screen and (min-width: 1021px) {
  header {
    width: 100%;
    background: #fff;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    transform: translate3d(0, 0, 0);
  }
  header .inner {
    width: 100%;
    height: 90px;
    padding: 0 0 0 30px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .customize-support header {
    top: 32px;
  }
  header .logo {
    width: 200px;
    margin: 0 10px 0 0;
  }
  header #menu {
    display: none;
  }
  header nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }
  header nav ul.gnav {
    margin: 0 20px 0 0;
    display: flex;
    align-items: stretch;
    justify-content: flex-end;
  }
  header nav ul.gnav > li {
    height: 100%;
    font-size: 14px;
  }
  header nav ul.gnav > li > a {
    height: 90px;
    padding: 0 13px;
    color: #000;
    font-weight: 500;
    text-decoration: none;
    display: flex;
    align-items: center;
    position: relative;
    transition: .3s;
    position: relative;
    transform: translate3d(0, 0, 0);
  }
  header nav ul.gnav > li > a:after {
    content: "";
    width: 0;
    height: 2.5px;
    background: #0b3180;
    position: absolute;
    bottom: 30px;
    left: 50%;
    transition: .3s;
  }
  header nav ul.gnav > li > a:hover:after {
    width: calc(100% - 20px);
    left: 10px;
  }
  header nav ul.gnav > li.products > a::before {
    content: "";
    width: 10px;
    height: 10px;
    border-right: 2.5px solid #0b3180;
    border-bottom: 2.5px solid #0b3180;
    position: absolute;
    left: 50%;
    bottom: 19px;
    transform: translate(-50%,0) rotate(45deg);
  }
  /* sub navi */
  header nav ul.gnav > li .snav_wrap {
    width: 100%;
    height: 0;
    padding: 0 5%;
    background: #fff;
    overflow: hidden;
    position: absolute;
    top: 90px;
    left: 0;
    transition: .3s;
  }
  header nav ul.gnav > li .snav_wrap.active {
    height: 172px;
  }
  header nav ul.gnav > li ul.snav {
    max-width: 1200px;
    margin: 0 auto;
    padding: 10px 0 20px;
    display: flex;
    justify-content: space-between;
    gap: 15px;
  }
  header nav ul.gnav > li ul.snav li {
    display: flex;
  }
  header nav ul.gnav > li ul.snav li a {
    color: #000;
    font-size: 11px;
    font-feature-settings: "palt";
    letter-spacing: 1px;
    text-align: center;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    justify-content: space-between;

  }
  header nav ul.gnav > li ul.snav li a p {
    margin: 0 0 5px 0;
    padding: 0 0 7px 0;
    line-height: 1.4;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    position: relative;
  }
  header nav ul.gnav > li ul.snav li a p:after {
    content: "";
    width: 0;
    height: 3px;
    background: #0b3180;
    position: absolute;
    bottom: 0;
    left: 50%;
    transition: .3s;
  }
  header nav ul.gnav > li ul.snav li a:hover p::after {
    width: 100%;
    left: 0;
  }
  
  header nav ul.btn {
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }
  header nav ul.btn li {
    position: relative;
  }
  header nav ul.btn li a {
    height: 90px;
    padding: 0 20px 0 40px;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.4;
    text-decoration: none;
    display: flex;
    align-items: center;
    transition: .3s;
  }
  header nav ul.btn li em {
    font-size: 12px;
    font-style: normal;
  }
  header nav ul.btn li a:hover {
    opacity: .7;
  }
  header nav ul.btn li.contact a {
    background: #c50012 url(../images/common/header_icon.png) no-repeat 20px center;
  }
  header nav ul.btn li.download a {
    background: #0b3180 url(../images/common/header_icon.png) no-repeat 20px center;
  }
  @media screen and (max-width: 1310px) {
    header .logo {
      width: 200px;
    }
    header nav ul.gnav {
      margin: 0 15px 0 0;
    }
    header nav ul.gnav > li > a {
      padding: 0 8px;
      font-size: 13px;
    }
    header nav ul.btn li {
      font-size: 13px;
    }
    header nav ul.gnav > li > a:hover:after {
      width: calc(100% - 10px);
      left: 5px;
    }
  }
  @media screen and (max-width: 1200px) {
    header .logo {
      width: 170px;
    }
    header nav ul.gnav > li > a {
      padding: 0 8px;
      font-size: 11px;
    }
    header nav ul.btn li a {
      padding: 0 15px 0 35px;
      font-size: 11px;
      background-position: 15px center!important;
    }
    header nav ul.gnav > li > a:hover:after {
      width: calc(100% - 8px);
      left: 4px;
    }
  }
}
@media screen and (max-width: 1020px) {
  header {
    width: 100%;
    background: #fff;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
  }
  header .inner {
    width: 100%;
    height: 60px;
    padding: 0;
    position: relative;
    display: block;
  }
  .customize-support header {
    top: 46px;
  }
  header .logo {
    width: 140px;
    position: absolute;
    top: 50%;
    left: 20px;
    transform: translate(0, -50%);
  }
  header #menu {
    width: 60px;
    height: 60px;
    margin: 0 0 0 auto;
    position: relative;
    cursor: pointer;
    transition: .3s;
    display: block;
  }
  header #menu:hover {
    opacity: .8;
  }
  header #menu span {
    position: absolute;
    left: 15px;
    width: 30px;
    height: 2px;
    -webkit-transition: .3s;
    -moz-transition: .3s;
    -ms-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
    background-color: #000;
    will-change: transform;
  }
  header #menu span:nth-child(1) {
    top: 19px;
  }
  header #menu span:nth-of-type(2) {
    top: 29px;
  }
  header #menu span:nth-of-type(3) {
    top: 39px;
  }
  header #menu.active span:nth-child(1) {
    transform: translateY(10px) rotate(-45deg);
  }
  header #menu.active span:nth-of-type(2) {
    opacity: 0;
  }
  header #menu.active span:nth-of-type(3) {
    transform: translateY(-10px) rotate(45deg);
  }
  header nav {
    height: 0;
    background: #fff;
    overflow-x: scroll;
    display: block;
    -webkit-overflow-scrolling: touch;
    transition: .3s;
  }
  header nav.active {
    height: calc(100vh - 60px);
  }
  header nav ul.gnav {
    width: 100%;
    padding: 0 20px;
    display: block;
  }
  header nav ul.gnav > li {
    font-size: 13px;
    border-bottom: 1px solid #ccc;
  }
  header nav ul.gnav > li > a {
    width: 100%;
    padding: 15px 5px;
    font-weight: 500;
    color: #000;
    text-decoration: none;
    display: block;
    transition: .3s;
    position: relative;
  }
  header nav ul.gnav > li.products > a {
    padding: 15px 5px 5px 5px;
    pointer-events: none;
  }
  header nav ul.gnav > li ul.snav {
    padding: 0 0 15px 0;
  }
  header nav ul.gnav > li ul.snav li a {
    padding: 5px 5px 5px 5px;
    color: #000;
    text-decoration: none;
    display: block;
    align-items: center;
    position: relative;
    transition: .3s;
  }
  header nav ul.gnav > li ul.snav li a img {
    display: none;
  }
  header nav ul.gnav > li ul.snav li a p br {
    display: none;
  }
  header nav ul.btn {
    padding: 0 20px 100px 20px;
    display: block;
  }
  header nav ul.btn li {
    margin: 15px 0 0 0;
  }
  header nav ul.btn li a {
    height: auto;
    padding: 15px 5px 15px 40px;
    color: #fff;
    font-size: 14px;
    line-height: 1.4;
    text-decoration: none;
    display: flex;
    align-items: center;
    transition: .3s;
  }
  header nav ul.btn li a:hover {
    opacity: .7;
  }
  header nav ul.btn li.contact a {
    background: #c50012 url(../images/common/header_icon.png) no-repeat 20px center;
  }
  header nav ul.btn li.download a {
    background: #0b3180 url(../images/common/header_icon.png) no-repeat 20px center;
  }
  header nav ul.btn li a br {
    content: "";
    display: inline;
    margin: 0 10px 0 0;
  }
  header nav ul.btn li em {
    font-size: 12px;
    font-style: normal;
    display: block;
  }
}

/*----------------------------------------------------
	SECTION
----------------------------------------------------*/

section {
  padding: 90px 0 0 0;
  color: #595757;
}
section a {
  color: #595757;
}
section a:hover {
  text-decoration: none;
}
@media screen and (max-width: 1020px) {
  section {
    padding: 60px 0 0 0;
  }
}

/*----------------------------------------------------
	BREADCLUMBS
----------------------------------------------------*/

.breadcrumbs {
  max-width: 1060px;
  margin: 0 auto 20px;
  padding: 20px 30px;
}
.breadcrumbs ul {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}
.breadcrumbs ul li {
  color: #808080;
  font-size: 10px;
}
.breadcrumbs ul li a {
  color: #808080;
}
.breadcrumbs ul li a:hover {
  text-decoration: underline;
  opacity: 1;
}
.breadcrumbs ul li:after {
  padding: 0 5px;
  content: "＞";
}
.breadcrumbs ul li:last-child:after {
  padding: 0;
  content: "";
}
@media screen and (max-width: 767px) {
  .breadcrumbs {
    margin: 0 0 30px 0;
    padding: 10px;
  }
}

/*----------------------------------------------------
	CONTACT AREA
----------------------------------------------------*/

.contact_area {
  padding: 50px 30px;
  background: #0b3180;
}
.contact_area .inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 0 30px 0;
  color: #fff;
  border-bottom: 1px solid #fff;
}
.contact_area h3 {
  margin: 0 0 30px 0;
  text-align: center;
  position: relative;
}
.contact_area h3 span {
  padding: 0 30px;
  font-size: 22px;
  font-weight: 500;
  position: relative;
  z-index: 2;
  display: inline-block;
  background: #0b3180;
}
.contact_area h3:after {
  content: "";
  width: 100%;
  height: 1px;
  background: #fff;
  position: absolute;
  left: 0;
  top: 50%;
}
.contact_area a.btn {
  width: 300px;
  margin: 0 auto 30px;
  padding: 15px 0 18px 0;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  text-align: center;
  text-decoration: none;
  line-height: 1;
  background: #c30012;
  border-radius: 50px;
  display: block;
  transition: .3s;
}
.contact_area a.btn:hover {
  opacity: .7;
}
.contact_area ul {
  display: flex;
  justify-content: center;
}
.contact_area ul li {
  height: 52px;
  margin: 0 15px;
  padding: 0 0 15px 40px;
  font-size: 24px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 2px;
  display: flex;
  align-items: center;
}
.contact_area ul li span {
  font-size: 12px;
}
.contact_area ul li.tel {
  background: url(../images/common/ico_tel.png) no-repeat left center / 30px 52px;
}
.contact_area ul li.fax {
  background: url(../images/common/ico_fax.png) no-repeat left center / 30px 52px;
}
.contact_area ul li a {
  color: #fff;
  text-decoration: none;
}
.contact_area ul li.fax a {
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .contact_area {
    padding: 40px 20px;
  }
  .contact_area h3 span {
    padding: 0 20px;
    font-size: 16px;
  }
  .contact_area a.btn {
    width: 260px;
  margin: 0 auto 30px;
    font-size: 13px;
  }
  .contact_area ul {
    width: 270px;
    margin: 0 auto;
    display: block;
  }
  .contact_area ul li {
    margin: 0 15px;
    padding: 0 0 15px 40px;
    font-size: 16px;
    font-weight: 700;
  }
  .contact_area ul li span {
    font-size: 10px;
  }
}


/*----------------------------------------------------
	PAGETOP
----------------------------------------------------*/

.pagetop a {
  width: 60px;
  margin: 50px auto 20px;
  padding: 40px 0 0 0;
  color: #808080;
  font-size: 11px;
  font-weight: 500;
  text-align: center;
  text-decoration: none;
  background: url(../images/common/pagetop.png) no-repeat center 10px / 28px auto;
  display: block;
  transition: .3s;
}
.pagetop a:hover {
  background: url(../images/common/pagetop.png) no-repeat center 0 / 28px auto;
  display: block;
  opacity: .7;
}
@media screen and (max-width: 767px) {
  .pagetop a {
    margin: 30px auto 20px;
  }
}

/*----------------------------------------------------
	footer
----------------------------------------------------*/

footer {
  width: 100%;
  padding: 80px 30px 0 30px;
  line-height: 2;
  background: #f3f3f3;
  position: relative;
}
footer .inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 0 50px 0;
  display: flex;
  justify-content: space-between;
}
footer .box {
  width: 300px;
}
footer .box .logo {
  width: 185px;
}
footer .box .company {
  margin: 20px 0 0 0;
  font-size: 12px;
}
footer .box .company a {
  color: #000;
  text-decoration: none;
  pointer-events: none;
}
footer .box .map a {
  padding: 4px 8px 6px 8px;
  color: #000;
  font-size: 11px;
  line-height: 1;
  text-decoration: none;
  border: 1px solid #000;
  display: inline-block;
  transition: .3s;
}
footer .box .map a:hover {
  opacity: .5;
}
footer .box ul.sns {
  margin: 20px 0 0 0;
  display: flex;
}
footer .box ul.sns li {
  width: 34px;
  margin: 0 10px 0 0;
  transition: .3s;
}
footer .box ul.sns li:hover {
  opacity: .5;
}
footer .nav {
  width: calc(100% - 340px);
  font-size: 12px;
  line-height: 2.2;
  display: flex;
  justify-content: space-between;
}
footer .nav ul li {
  color: #000;
  font-weight: 500;
}
footer .nav ul li a {
  color: #000;
  font-weight: 500;
  text-decoration: none;
}
footer .nav ul li a[target="_blank"] {
  padding: 0 20px 0 0;
  background: url(../images/common/blank.png) no-repeat right center / 12px auto;
}
footer ul li a:hover {
  text-decoration: underline;
}
footer .nav > ul > li > ul > li {
  position: relative;
}
footer .nav > ul > li > ul > li a {
  font-size: 11px;
  font-weight: 400;
  font-feature-settings: "palt";
  letter-spacing: 1px;
}
footer .copy {
  padding: 0 0 30px 0;
  font-size: 10px;
  text-align: center;
}
@media screen and (max-width: 1040px) {
  footer .box {
    width: 230px;
  }
  footer .box .company {
    font-size: 10px;
  }
  footer .nav {
    width: calc(100% - 250px);
    font-size: 10px;
  }
  footer .nav > ul > li > ul > li a {
    font-size: 10px;
  }
}
@media screen and (max-width: 767px) {
  footer {
    width: 100%;
    padding: 40px 20px 0 20px;
  }
  footer .inner {
    padding: 0 0 20px 0;
    display: block;
  }
  footer .box {
    width: 100%;
    padding: 0 0 20px 0;
    border-bottom: 1px solid #ddd;
  }
  footer .box .logo {
    width: 140px;
  }
  footer .box .company {
    font-size: 12px;
  }
  footer .nav {
    width: 100%;
    padding: 20px 0 0 0;
    line-height: 2.5;
    display: block;
  }
  footer .nav > ul > li > ul {
    margin: 0 0 0 1em;
  }
}

@media screen and (max-width: 600px) {
	#wpadminbar {
    position: fixed!important;
	}
}