@charset "UTF-8";
/*============================================================
 共通変数
*============================================================*/
/*============================================================
 共通
*============================================================*/
html {
  font-size: 14px;
  line-height: 180%;
  font-family: "Noto Sans JP", sans-serif;
  color: #252525;
}

.en {
  font-family: "Hind", sans-serif;
}

a {
  transition: all ease 0.3s;
  color: #252525;
}
a:hover {
  opacity: 0.8;
}

.sm {
  font-size: 12px;
}

.forPC {
  display: inline;
}

.forSP {
  display: none;
}

/*============================================================
 パーツ
*============================================================*/
.parts-boxes {
  display: flex;
}

.parts-boxes[data-type=between] {
  justify-content: space-between;
}

.b {
  font-weight: bold;
}

.orderlist {
  margin: 24px 0;
}
.orderlist li {
  counter-increment: number 1;
  position: relative;
  padding-left: 24px;
  margin-bottom: 16px;
}
.orderlist li:before {
  content: counter(number);
  font-weight: bold;
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  color: #1356AF;
}
.orderlist li .txt {
  margin-left: 1em;
  text-indent: -2em;
  padding-left: 16px;
}
.orderlist li .num {
  margin-right: 10px;
}

.unorderlist {
  margin: 24px 0;
}
.unorderlist li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 16px;
}
.unorderlist li:before {
  content: "";
  font-weight: bold;
  position: absolute;
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 100px;
  top: 10px;
  left: 0;
  background-color: #1356AF;
}

#line {
  background-color: #00b900;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-left: 8px;
  padding-right: 40px;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  width: 300px;
  border-radius: 8px;
  text-align: center;
  height: 72px;
  line-height: 72px;
}
#line:before {
  content: "";
  background-image: url(../images/common/ico-line.png);
  width: 56px;
  height: 56px;
  display: block;
  background-size: contain;
}
#line:hover {
  opacity: 1;
}

#contact {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  width: 300px;
  border-radius: 8px;
  text-align: center;
  height: 72px;
  line-height: 72px;
  background-color: #1356AF;
  margin-left: 32px;
  position: relative;
  overflow: hidden;
  z-index: 9999;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
#contact:before, #contact:after {
  position: absolute;
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  background-color: #303b45;
  top: 0;
  left: -100%;
  z-index: -1;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
#contact:hover {
  opacity: 1;
}
#contact:hover::after {
  top: 0;
  left: 0;
}

.c_inner {
  max-width: 960px;
  width: 100%;
  margin: 0 auto;
}

.c_header {
  background-image: url(../images/common/c_back.jpg);
  text-align: center;
  padding: 80px 0 96px;
  position: relative;
}

.c_heading,
.page-news h2 {
  font-size: 32px;
  font-weight: 700;
  line-height: 160%;
  margin-bottom: 18px;
}

.c_headingsub,
.page-news h3 {
  font-size: 24px;
  font-weight: 700;
  line-height: 160%;
  margin-bottom: 18px;
}

.c_ttl {
  font-size: 56px;
  font-weight: 700;
  line-height: 110%;
  margin-bottom: 9px;
  color: #43464d;
}

.c_ttlsub {
  color: #1356AF;
  font-size: 24px;
  font-weight: 700;
}

.c_catch {
  line-height: 180%;
  margin-bottom: 24px;
}

.c_btn {
  width: 240px;
  background-color: #1356AF;
  color: #fff;
  text-align: center;
  justify-content: center;
  display: block;
  border-radius: 8px;
  padding: 14px 0;
  letter-spacing: 0.04em;
  line-height: 170%;
  position: relative;
  overflow: hidden;
  z-index: 9999;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.c_btn:before, .c_btn:after {
  position: absolute;
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  background-color: #303b45;
  top: 0;
  left: -100%;
  z-index: -1;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.c_btn:hover {
  opacity: 1;
}
.c_btn:hover::after {
  top: 0;
  left: 0;
}

.c_btn[data-type=sm] {
  width: 156px;
  height: 48px;
  line-height: 170%;
  margin-left: 20px;
}

.c_btn[data-type=arrow] {
  background-image: url(../images/common/ico-arrow-wh.svg);
  background-size: 12px;
  background-position: center right 22px;
  background-repeat: no-repeat;
  z-index: 2;
  position: relative;
  font-weight: bold;
}
.c_btn[data-type=arrow]:after {
  background-image: url(../images/common/ico-arrow-wh.svg);
  background-repeat: no-repeat;
  background-position: center right 20px;
}

.c_btn[data-type=white] {
  background-color: #fff;
}
.c_btn[data-type=white]:before, .c_btn[data-type=white]:after {
  background-color: #1356AF;
}
.c_btn[data-type=white]:hover {
  color: #fff;
  background-image: url(../images/common/ico-arrow-wh.svg);
}

.c_btn[data-type=border] {
  border: 2px solid #3e3e3e;
  color: #3e3e3e;
  background: none;
}
.c_btn[data-type=border]:hover {
  color: #fff;
}

a[data-type=file] {
  display: block;
  text-decoration: underline;
  margin-bottom: 24px;
}
a[data-type=file]:before {
  content: "";
  background-image: url(../images/common/ico-file.svg);
  background-position: left;
  background-repeat: no-repeat;
  width: 12px;
  height: 14px;
  display: inline-block;
  margin-right: 12px;
}

a[data-type=ex] {
  display: block;
  margin-bottom: 24px;
  text-decoration: underline;
}
a[data-type=ex]:before {
  content: "";
  background-image: url(../images/common/ico-ex.svg);
  background-position: left;
  background-repeat: no-repeat;
  width: 12px;
  height: 10px;
  display: inline-block;
  margin-right: 12px;
  background-size: contain;
}

a[data-type=link] {
  display: block;
  margin-bottom: 24px;
  position: relative;
  padding-left: 40px;
}
a[data-type=link]:before {
  content: "";
  background-image: url(../images/common/ico-link.svg);
  background-position: left;
  background-repeat: no-repeat;
  width: 23px;
  height: 23px;
  display: inline-block;
  margin-right: 12px;
  background-size: contain;
  position: absolute;
  top: 1px;
  left: 0;
}

.c_container {
  padding-top: 30px;
  padding-bottom: 80px;
}

.c_table {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 1rem;
}
.c_table dt, .c_table dd {
  padding-bottom: 1rem;
  font-size: 14px;
  border-bottom: 1px solid #4c4c4c;
  margin-top: 16px;
}
.c_table dt:last-of-type, .c_table dd:last-of-type {
  margin-bottom: 0;
}
.c_table dt {
  padding-right: 20px;
  font-weight: 700;
  width: 15%;
}
.c_table dd {
  width: 85%;
}

.c_blue {
  color: #1356AF;
  font-weight: bold;
}

.c_full {
  width: 100vw;
}

/*============================================================
 パンクず
*============================================================*/
.pankuz {
  position: absolute;
  width: 100%;
  bottom: 0;
  text-align: left;
  max-width: 1040px;
  left: 50%;
  transform: translateX(-50%);
  line-height: 200%;
  padding: 18px 40px;
  background-color: rgba(255, 255, 255, 0.8);
  color: #252525;
}
.pankuz a {
  text-decoration: underline;
  margin-right: 16px;
  margin-left: 16px;
}
.pankuz a.home {
  margin-left: 0;
}
.pankuz .post {
  margin-right: 16px;
  margin-left: 16px;
}

/*============================================================
 ヘッダー
*============================================================*/
.header__lead {
  background-color: #1356AF;
  color: #fff;
  padding: 6px 0 6px 24px;
}
.header__lead-txt {
  font-size: 12px;
}
.header__wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5px 24px;
}
.header__nav {
  display: flex;
  align-items: center;
}
.header__nav li {
  transition: all ease 0.3s;
}
.header__nav li:hover {
  opacity: 0.6;
}
.header__nav li + li {
  margin-left: 32px;
}
.header__nav a {
  font-weight: bold;
}
.header .gnav-logo {
  width: 240px;
}
.header .gnav-menu-search {
  border: 1px solid #252525;
  border-radius: 8px;
  text-align: center;
  height: 56px;
  width: 160px;
  line-height: 56px;
  cursor: pointer;
  transition: all ease 1s;
  background-image: url(../images/common/ico-arrow-header.svg);
  background-repeat: no-repeat;
  background-position: center right 7px;
  background-size: 15px 9px;
}
.header .gnav-menu-search + a {
  pointer-events: none;
}
.header .gnav-menu-search:hover {
  opacity: 1;
}
.header .gnav-menu-child {
  display: none;
  transition: all ease 1s;
  position: relative;
  z-index: 9999;
  background-color: #fff;
  bottom: 10px;
  border: 1px solid #000;
  border-top: 0;
  width: 101%;
  right: 1px;
  border-radius: 0 0 8px 8px;
}
.header .gnav-menu-child.open {
  display: block;
}
.header .gnav-menu-child li {
  margin-left: 0;
  position: relative;
  z-index: 9999;
  font-size: 12px;
}
.header .gnav-menu-contact {
  background-color: #1356AF;
  width: 160px;
  border-radius: 8px;
  text-align: center;
  height: 56px;
  line-height: 56px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  z-index: 2;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.header .gnav-menu-contact:before, .header .gnav-menu-contact:after {
  position: absolute;
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  background-color: #303b45;
  top: 0;
  left: -100%;
  z-index: -1;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.header .gnav-menu-contact:hover {
  opacity: 1;
}
.header .gnav-menu-contact:hover::after {
  top: 0;
  left: 0;
}
.header .gnav-menu-contact a {
  color: #fff;
  display: block;
}

#gnav-menu a.current:after {
  content: "";
  display: block;
  margin: 0 auto;
  width: 32px;
  height: 2px;
  background-color: #1356AF;
}

#gnav-menu-sp,
.gnav-menu-contact-sp,
.gnav-content-sp {
  display: none;
  transition: all ease 0.3s;
}

@media screen and (max-width: 1200px) {
  #gnav-menu {
    display: none;
  }

  .gnav-menu-contact-sp {
    display: block;
  }

  .gnav-sp {
    display: flex;
    align-items: center;
  }

  .toggle {
    height: 18px;
    margin-left: 18px;
    position: relative;
    z-index: 9999;
  }
  .toggle span {
    display: block;
    width: 20px;
    height: 2px;
    border-radius: 100px;
    background-color: #252525;
    position: relative;
    transition: all ease 0.3s;
  }
  .toggle span:nth-of-type(2) {
    top: 6px;
  }
  .toggle span:last-of-type {
    top: 12px;
  }
  .toggle.active span:first-of-type {
    transform: rotate(-45deg);
  }
  .toggle.active span:nth-of-type(2) {
    display: none;
  }
  .toggle.active span:last-of-type {
    transform: rotate(45deg);
    top: -1px;
  }

  .gnav-content-sp.open {
    display: block;
    padding-right: 21px;
    padding-left: 21px;
    margin-top: -130px;
    background-color: #fff;
    padding-top: 120px;
    padding-bottom: 72px;
    height: 100vh;
    position: relative;
    z-index: 9998;
  }
  .gnav-content-sp .service {
    margin-bottom: 32px;
    justify-content: space-between;
    display: flex;
  }
  .gnav-content-sp .service__item {
    width: 25%;
    text-align: center;
    border-radius: 8px;
    border: 1px solid #c8d4e4;
    padding: 14px 8px 20px 8px;
  }
  .gnav-content-sp .service__item + .service__item {
    margin-left: 16px;
  }
  .gnav-content-sp .service__item-ttl {
    font-weight: bold;
  }
  .gnav-content-sp .service__item-ttl .bg {
    font-weight: bold;
  }
  .gnav-content-sp .service__item-img {
    width: 80%;
    margin: 0 auto 10px;
  }

  #gnav-menu-sp {
    width: 100%;
    flex-direction: column;
    justify-content: center;
    display: flex;
    text-align: right;
    position: relative;
  }
  #gnav-menu-sp li {
    margin-bottom: 25px;
    background-image: url(../images/common/ico-arrow-bl.svg);
    background-repeat: no-repeat;
    background-size: 19px 17px;
    background-position: center right;
    padding-right: 50px;
  }
  #gnav-menu-sp a {
    font-size: 18px;
    font-weight: bold;
  }
}
/*============================================================
 CTAパーツ
*============================================================*/
.support {
  background-color: #1356AF;
  text-align: center;
  color: #fff;
  padding-top: 32px;
  padding-bottom: 40px;
}
.support__heading {
  font-size: 40px;
  font-weight: 700;
  line-height: 160%;
  margin-bottom: 15px;
}
.support__txt {
  margin-bottom: 24px;
}
.support__tel {
  position: relative;
  font-size: 56px;
  font-weight: 700;
  padding-left: 80px;
  line-height: 120%;
  display: table;
  position: relative;
  margin: 0 auto 32px;
}
.support__tel:before {
  content: "";
  background-image: url(../images/common/ico-tel.svg);
  display: block;
  background-repeat: no-repeat;
  position: absolute;
  left: 0;
  background-size: cover;
  height: 36px;
  width: 56px;
  top: 50%;
  transform: translateY(-50%);
}
.support__desc {
  line-height: 200%;
  margin-bottom: 32px;
}
.support__btn {
  background-color: #fff;
  color: #1356AF;
  background-image: url(../images/common/ico-arrow-blue.svg);
  background-repeat: no-repeat;
  background-position: center right 16px;
  width: 300px;
  font-weight: bold;
}

/*============================================================
 フッター
*============================================================*/
.footer .fcontact {
  background-image: url("../images/common/footer_bg.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  padding: 72px 0;
}
.footer .fcontact::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.2);
}
.footer .fcontact > * {
  position: relative;
  z-index: 2;
}
.footer .fcontact__catch {
  text-align: center;
  color: #fff;
  font-size: 32px;
  line-height: 180%;
  margin-bottom: 30px;
  font-weight: bold;
}
.footer .fcontact__links {
  justify-content: center;
}
.footer .fcontact__links a {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  width: 300px;
  border-radius: 8px;
  text-align: center;
  height: 72px;
  line-height: 72px;
}
.footer .fcontact__links-line {
  background-color: #00b900;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 8px;
}
.footer .fcontact__links-line:before {
  content: "";
  background-image: url(../images/common/ico-line.png);
  width: 56px;
  height: 56px;
  display: block;
  background-size: contain;
}
.footer .fcontact__links-line:hover {
  opacity: 1;
}
.footer .fcontact__links-contact {
  background-color: #1356AF;
  margin-left: 32px;
  position: relative;
  overflow: hidden;
  z-index: 9999;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.footer .fcontact__links-contact:before, .footer .fcontact__links-contact:after {
  position: absolute;
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  background-color: #303b45;
  top: 0;
  left: -100%;
  z-index: -1;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.footer .fcontact__links-contact:hover {
  opacity: 1;
}
.footer .fcontact__links-contact:hover::after {
  top: 0;
  left: 0;
}
.footer .fnav {
  background-color: #43464d;
  color: #fff;
  padding: 44px 97px 24px 97px;
}
.footer .fnav .parts-boxes {
  flex-wrap: wrap;
}
.footer .fnav__ttl {
  font-size: 20px;
  font-weight: bold;
}
.footer .fnav__ttl .bg {
  font-size: 32px;
}
.footer .fnav__name {
  width: 51.7%;
}
.footer .fnav__sitemap {
  width: 47.6%;
}
.footer .fnav__sitemap-ttl {
  color: #fff;
  font-size: 16px;
}
.footer .fnav__sitemap a:not(.fnav__sitemap-ttl) {
  color: #fff;
  font-size: 14px;
}
.footer .fnav__sitemap-ttl {
  font-size: 16px;
}
.footer .fnav__sitemap-child {
  margin-top: 7px;
  display: block;
}
.footer .fnav__links {
  margin-top: -54px;
}
.footer .fnav__links a {
  color: #fff;
}
.footer .fnav__links a:last-of-type {
  margin-bottom: 0;
}
.footer .fnav .copyright {
  text-align: center;
}

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