@charset "UTF-8";
/* COMPASS
 * ----------------------------------------------- */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  font-size: 100%;
  vertical-align: baseline;
}

html {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

caption, th, td {
  text-align: left;
  font-weight: normal;
  vertical-align: middle;
}

q, blockquote {
  quotes: none;
}
q:before, q:after, blockquote:before, blockquote:after {
  content: "";
  content: none;
}

a img {
  border: none;
}

article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary {
  display: block;
}

/* BASE
 * ----------------------------------------------- */
/* MEDIA QUERIES
 * ----------------------------------------------- */
/* ADDITIONAL RESET
 * ----------------------------------------------- */
*,
*:before,
*:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

body * {
  max-height: 99999em;
}

body img {
  display: block;
  max-width: 100%;
  max-height: none;
}

input,
label,
select,
button,
textarea {
  margin: 0;
  border: 0;
  padding: 0;
  display: inline-block;
  vertical-align: middle;
  white-space: normal;
  background: none;
  font: inherit;
  line-height: 1;
}

input:focus,
button:focus,
select:focus {
  outline: 0;
}

/* Make webkit render the search input like a normal text field */
input[type=search] {
  -webkit-appearance: textfield;
}

/* Turn off the recent search for webkit. It adds about 15px padding on the left */
::-webkit-search-decoration {
  display: none;
}

/* Turn off scroll bars in IE unless needed */
textarea {
  overflow: auto;
  white-space: pre-line;
}

/* PRINTING
 * ----------------------------------------------- */
@media print {
  body {
    -webkit-print-color-adjust: exact;
  }

  html,
  body {
    margin: 0;
  }

  @page {
    margin: 0;
  }
  @page :left {
    margin: 0;
  }
  @page :right {
    margin: 0;
  }
  @page :first {
    margin-top: 0;
  }
}
/* GENERAL
 * ----------------------------------------------- */
body {
  color: #000;
  font-family: YuGothic, "Yu Gothic", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "游ゴシック", "メイリオ", Meiryo, Verdana, sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.4;
  -webkit-text-size-adjust: none;
  -moz-text-size-adjust: none;
  -ms-text-size-adjust: none;
}

.ft-serif {
  font-family: "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "Hiragino Mincho Pro", "Times New Roman", "游明朝", YuMincho, "メイリオ", Meiryo, Georgia, serif;
}

.noto-serif {
  font-family: "Noto Serif JP", serif;
}

/* HELPERS
 * ----------------------------------------------- */
a {
  color: #000;
  text-decoration: none;
}

.hidden {
  display: none;
}

.invisible {
  visibility: hidden;
}

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

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

.text-right {
  text-align: right;
}

.text-justify {
  text-align: justify;
}

.text-nowrap {
  white-space: nowrap;
}

.text-lowercase {
  text-transform: lowercase;
}

.text-uppercase {
  text-transform: uppercase;
}

.text-capitalize {
  text-transform: capitalize;
}

.container {
  min-width: 1260px;
}

.wrapper {
  width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.wrapper-company {
  width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

/* RESPONSIVE
 * ----------------------------------------------- */
@media print, (min-width: 768px) {
  .sm {
    display: none !important;
  }

  .trans {
    filter: progid:DXImageTransform.Microsoft.Alpha(enabled=false);
    opacity: 1;
    -moz-transition: opacity 0.26s ease;
    -o-transition: opacity 0.26s ease;
    -webkit-transition: opacity 0.26s ease;
    transition: opacity 0.26s ease;
  }
  .trans:hover {
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=80);
    opacity: 0.8;
  }

  .tel:not(.wpcf7-form-control-wrap) {
    pointer-events: none;
  }
}
@media only screen and (max-width: 767px) {
  main {
    overflow: hidden;
  }

  .md {
    display: none !important;
  }

  html {
    font-size: 26.667vw;
  }

  body {
    font-size: 0.24rem;
  }

  .container {
    width: auto;
    min-width: 320px;
  }

  .wrapper {
    width: auto;
    margin: 0;
    padding-left: 0.12rem;
    padding-right: 0.12rem;
  }

  .wrapper-company {
    width: auto;
    margin: 0;
    padding-left: 0.15rem;
    padding-right: 0.15rem;
  }
}
/* PARTS
 * ----------------------------------------------- */
header {
  background-color: #fafafa;
  position: -webkit-sticky;
  position: sticky;
  top: 0px;
  z-index: 999;
}
header .wrapper {
  display: flex;
  height: 80px;
  align-items: center;
}
header .logo {
  width: 79.5px;
  height: 37.5px;
}
header .logo a {
  display: block;
  width: 100%;
}
header .navigation-wrapper {
  display: flex;
  align-items: center;
  margin-left: auto;
}
header .navigation {
  height: 100%;
}
header .list-nav {
  display: flex;
  height: 100%;
}
header .item-nav {
  padding-top: 25px;
}
header .link-nav {
  display: block;
  height: 100%;
  font-size: 14px;
  margin: 0 20px;
  padding: 6px 0;
  color: #001255;
  font-weight: 500;
  position: relative;
  transition: all 0.3s;
  letter-spacing: normal;
}
header .link-nav:after {
  content: "";
  width: 100%;
  height: 2px;
  background-color: #fcde62;
  opacity: 0;
  visibility: hidden;
  position: absolute;
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%);
}
header .btn-contact {
  display: flex;
  width: 154px;
  height: 38px;
  margin-left: 20px;
  font-size: 14px;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  background-color: #001255;
  color: #FFF;
  border: 1px solid #001255;
  opacity: 1 !important;
  transition: all 0.2s;
}
header .menu {
  display: block;
  width: 100%;
  padding: 50px 0;
  position: absolute;
  top: 80px;
  left: 0;
  background-color: #f8f8f8;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
}
header .menu .wrapper {
  display: block;
  height: auto;
  padding: 0 50px;
}
header .menu .link-title {
  display: flex;
  width: 100%;
  border-bottom: 1px solid #fff;
  align-items: flex-end;
  padding-bottom: 6px;
}
header .menu .link-title .text {
  display: flex;
  align-items: flex-start;
}
header .menu .link-title .jp {
  font-size: 22px;
  font-weight: bold;
  line-height: 1;
  color: #001255;
}
header .menu .link-title .en {
  padding: 5px 0 0 16px;
  font-size: 14px;
  font-weight: 900;
  line-height: 1.44;
  letter-spacing: 1.6px;
  color: #656f9a;
}
header .menu .link-title .btn {
  font-size: 16px;
  color: #001255;
  flex: 1;
  line-height: 1.3;
  margin-right: 34px;
  padding-right: 27px;
  text-align: right;
  position: relative;
}
header .menu .link-title .btn:before {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  border-top: 1px solid #001255;
  border-right: 1px solid #001255;
  transform: translateY(-50%) rotate(45deg);
  position: absolute;
  top: 50%;
  right: 0;
}
header .menu .list-menu-link {
  margin-top: 25px;
  display: flex;
  flex-wrap: wrap;
}
header .menu .list-menu-link .item-menu {
  width: 360px;
  margin-right: 10px;
}
header .menu .list-menu-link .item-menu:nth-child(3n) {
  margin-right: 0;
}
header .menu .link-menu {
  display: block;
  padding: 14px 0;
  font-size: 16px;
  font-weight: bold;
  line-height: 1.7;
  color: #001255;
  border-bottom: 1px solid #001255;
  position: relative;
}
header .menu .link-menu:after {
  content: "";
  border: solid #001255;
  border-width: 0 1px 1px 0;
  padding: 4px;
  position: absolute;
  right: 31px;
  top: 50%;
  transform: translateY(-50%) rotate(-45deg);
}
header .menu.menu-service .list-sub-menu-link {
  margin-top: 15px;
}
header .menu.menu-service .link-sub-menu {
  display: flex;
  width: 100%;
  height: 56px;
  align-items: center;
  font-size: 14px;
  font-weight: bold;
  line-height: 1.5;
  color: #001255;
  background-color: #FFF;
  border: 1px solid #b1b7cc;
  position: relative;
}
header .menu.menu-service .link-sub-menu:after {
  content: "";
  border: solid #001255;
  border-width: 0 1px 1px 0;
  padding: 4px;
  position: absolute;
  right: 31px;
  top: 50%;
  transform: translateY(-50%) rotate(-45deg);
}
header .menu.menu-service .ico {
  width: 24px;
  height: 24px;
  margin: 0 16px 0 25px;
}
header .menu.menu-product .item-menu:first-child .list-sub-menu-link {
  margin: 0;
}
header .menu.menu-product .list-menu-link {
  margin-top: 10px;
}
header .menu.menu-product .list-sub-menu-link {
  width: 97%;
  padding-left: 25px;
  margin: 0;
}
header .menu.menu-product .link-sub-menu {
  display: block;
  padding: 12px 0;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.71;
  color: #001255;
  border-bottom: 1px solid #B1B7CC;
  position: relative;
}
header .menu.menu-product .link-sub-menu:after {
  content: "";
  border: 1px solid #001255;
  border-width: 0 1px 1px 0;
  padding: 4px;
  position: absolute;
  right: 31px;
  top: 50%;
  transform: translateY(-50%) rotate(-45deg);
}

@media print, (min-width: 768px) {
  header .item-nav:hover .link-nav:after {
    opacity: 1;
    visibility: visible;
    transition: all 0.3s;
  }
  header .link-nav.active {
    font-weight: bold;
  }
  header .link-nav.active:after {
    opacity: 1;
    visibility: visible;
    transition: all 0.3s;
  }
  header .link-nav:hover:after, header .link-nav:hover + .menu {
    opacity: 1;
    visibility: visible;
    transition: all 0.3s;
  }
  header .menu {
    display: block !important;
  }
  header .menu.menu-product {
    display: block !important;
  }
  header .menu:hover {
    opacity: 1;
    visibility: visible;
    transition: all 0.3s;
  }
  header .navigation-wrapper {
    display: flex !important;
    height: 80px !important;
  }
  header .btn-contact:hover {
    background-color: #fff;
    color: #001255;
  }
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  header .btn-contact {
    margin-bottom: 6px;
  }
}
@media only screen and (max-width: 767px) {
  header .logo {
    width: 125px;
    height: 25px;
  }
  header .btn-menu {
    width: 32px;
    height: 24px;
    padding-top: 1px;
    margin-left: auto;
  }
  header .btn-menu span {
    display: block;
    width: 100%;
    height: 4px;
    background-color: #001255;
    box-shadow: 0px 10px 0 0px #001255, 0px 20px 0 0px #001255;
  }
  header .btn-menu.active span {
    background-color: transparent;
    box-shadow: none;
    position: relative;
  }
  header .btn-menu.active span:before,
  header .btn-menu.active span:after {
    content: "";
    width: 34px;
    height: 1px;
    border-top: 2px solid #001255;
    border-radius: 1px;
    position: absolute;
    top: 12px;
    left: 0;
    transform: rotate(45deg);
  }
  header .btn-menu.active span:after {
    top: 12px;
    left: -1px;
    transform: rotate(-45deg);
  }
  header .wrapper {
    height: 50px;
  }
  header .navigation-wrapper {
    display: none;
    position: absolute;
    width: 100%;
    top: 50px;
    padding: 0 24px 93px;
    left: 0;
    background: #FFF;
    overflow: auto;
    z-index: 101;
  }
  header .navigation {
    height: auto;
  }
  header .list-nav {
    display: block;
    padding: 16px 10px 10px 5px;
  }
  header .item-nav {
    padding: 0;
  }
  header .link-nav {
    display: block;
    height: auto;
    margin: 0 46px 0 -4px;
    padding: 14px 0;
    font-weight: 900;
    font-family: "Noto Serif JP", serif;
    border-bottom: 1px solid #001255;
    position: relative;
  }
  header .link-nav:before {
    content: "";
    display: block;
    width: 8px;
    height: 8px;
    border-top: 1px solid #001255;
    border-right: 1px solid #001255;
    transform: translateY(-50%) rotate(45deg);
    position: absolute;
    top: 50%;
    right: 7%;
    transition: transform 0.3s;
  }
  header .link-nav.is-open:before {
    transform: translateY(-50%) rotate(135deg);
  }
  header .btn-contact {
    margin: 14px 0 15px;
    font-family: YuGothic, "Yu Gothic", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "游ゴシック", "メイリオ", Meiryo, Verdana, sans-serif;
  }
  header .list-link .item {
    line-height: 35px;
  }
  header .list-link .link {
    display: inline-block;
    margin-bottom: 3px;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.71;
    color: #001255;
  }
  header .list-link .link.highlight {
    font-weight: bold;
  }
  header .menu {
    display: none;
    width: 100%;
    padding: 0;
    opacity: 1;
    visibility: visible;
    position: static;
    background: transparent;
    transition: none;
  }
  header .menu .wrapper {
    padding-right: 0;
  }
  header .menu .list-menu-link {
    display: block;
    margin-top: 0;
    margin-right: 46px;
  }
  header .menu .list-menu-link .item-menu {
    width: 100%;
    margin: 0;
  }
  header .menu .link-menu {
    width: 100%;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.43;
    color: #001255;
    font-family: "Noto Serif JP", serif;
  }
  header .menu .link-menu:after {
    content: "";
    display: block;
    width: 8px;
    height: 8px;
    border: none;
    padding: 0;
    border-top: 1px solid #001255;
    border-right: 1px solid #001255;
    transform: translateY(-50%) rotate(45deg);
    position: absolute;
    top: 50%;
    right: 7%;
  }
  header .menu .list-sub-menu-link {
    display: none;
  }
  header .menu .item-menu:first-child .list-sub-menu-link {
    margin: 0 0 0 24px;
  }
  header .menu.menu-service .list-sub-menu-link {
    display: none;
    margin-left: 24px;
  }
  header .menu.menu-service .link-sub-menu {
    width: 100%;
    padding: 14px 0;
    height: auto;
    border: none;
    border-bottom: 1px solid #001255;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.43;
    font-family: "Noto Serif JP", serif;
  }
  header .menu.menu-service .link-sub-menu:after {
    display: block;
    width: 8px;
    height: 8px;
    border: none;
    padding: 0;
    border-top: 1px solid #001255;
    border-right: 1px solid #001255;
    transform: translateY(-50%) rotate(45deg);
    right: 7%;
  }
  header .menu.menu-service .item-sub-menu {
    margin: 0;
  }
  header .menu.menu-service .ico {
    display: none;
  }
  header .menu.menu-product .list-menu-link {
    margin: 0 46px 0 0;
  }
  header .menu.menu-product .link-menu {
    width: 100%;
  }
  header .menu.menu-product .list-sub-menu-link {
    display: none;
    width: 100%;
  }
  header .menu.menu-product .link-sub-menu:after {
    content: "";
    display: block;
    width: 8px;
    height: 8px;
    padding: 0;
    border: none;
    border-top: 1px solid #001255;
    border-right: 1px solid #001255;
    transform: translateY(-50%) rotate(45deg);
    position: absolute;
    top: 50%;
    right: 7%;
  }
}
footer {
  position: relative;
  overflow: hidden;
}
footer.has-bg {
  background-color: #f8f8f8;
}
footer.has-bg:after {
  z-index: 1;
}
footer.has-bg .copy-right {
  position: relative;
  z-index: 2;
}
footer:after {
  content: "";
  display: block;
  width: 685px;
  height: 360px;
  background: url("../img/top/bg_banner_03.png") center/cover no-repeat;
  position: absolute;
  right: calc(50% - 720px);
  bottom: -17px;
  z-index: -1;
}
footer .wrapper {
  display: flex;
  padding-top: 100px;
  position: relative;
  z-index: 2;
}
footer .intro {
  padding-top: 34px;
  margin-right: 74px;
}
footer .intro .logo {
  display: block;
  width: 278px;
  height: 38px;
}
footer .intro .address {
  margin: 37px 0 28px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.75;
  color: #001255;
}
footer .intro .btn-tel,
footer .intro .btn-fax {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.75;
  color: #001255;
}
footer .intro .btn-tel span,
footer .intro .btn-fax span {
  font-weight: bold;
  margin-right: 5px;
}
footer .intro .btn-tel .tel,
footer .intro .btn-fax .tel {
  color: #001255;
}
footer .intro .btn-contact {
  display: flex;
  width: 154px;
  height: 38px;
  margin: 53px 0 40px;
  align-items: center;
  justify-content: center;
  background-color: #001255;
  color: #FFF;
  font-size: 16px;
  font-weight: bold;
  line-height: 1.69;
  border: 1px solid #001255;
  opacity: 1 !important;
  transition: all 0.2s;
}
footer .intro .partners {
  display: block;
  width: 157px;
  height: 100px;
}
footer .list-item {
  padding-top: 13px;
}
footer .list-item .item {
  padding-bottom: 23px;
}
footer .list-item .link {
  display: inline-block;
  font-size: 16px;
  font-weight: 900;
  line-height: 1.44;
  color: #001255;
}
footer .list-item .link:after {
  bottom: -2px;
}
footer .list-item .sub-list-item {
  padding: 8px 0 0 8px;
}
footer .list-item .sub-link {
  display: inline-block;
  padding-bottom: 3px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.69;
  color: #001255;
}
footer .list-item .sub-link:after {
  bottom: 4px;
}
footer .list-item .text {
  margin-top: 4px;
  font-size: 14px;
  font-weight: bold;
  line-height: 1.71;
  color: rgba(0, 18, 85, 0.3);
}
footer .list-item .list-part {
  padding-top: 5px;
}
footer .first-list {
  width: 239px;
}
footer .first-list .sub-list-item .sub-item:last-child .sub-link {
  margin-bottom: -2px;
}
footer .second-list {
  width: 414px;
  padding-top: 15px;
}
footer .second-list .sub-list-item {
  padding-top: 4px;
}
footer .second-list .sub-link {
  padding-bottom: 4px;
}
footer .last-list {
  padding-top: 15px;
  white-space: nowrap;
}
footer .last-list .text {
  margin-top: 10px;
  line-height: 1.3;
}
footer .last-list .item-sub-part .sub-link {
  padding: 3px 0 0 0;
  margin-left: 8px;
}
footer .last-list .item-sub-part .sub-link:after {
  bottom: 1px;
}
footer .last-list .list-part {
  padding-left: 8px;
}
footer .copy-right {
  display: flex;
  height: 31px;
  margin-top: 106px;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 500;
  line-height: 1.5;
  color: #FFF;
  background-color: #001255;
}
footer .btn-to-top {
  display: flex;
  width: 154px;
  height: 38px;
  padding-left: 28px;
  align-items: center;
  color: #FFF;
  font-size: 14px;
  font-weight: bold;
  line-height: 1.43;
  background-color: #001255;
  cursor: pointer;
  position: absolute;
  right: 0;
  top: 0;
  border: 1px solid #001255;
  opacity: 1 !important;
  transition: all 0.2s;
}
footer .btn-to-top .ico {
  margin-right: 8px;
}

@media print, (min-width: 768px) {
  footer .intro .btn-contact:hover,
  footer .btn-to-top:hover {
    background-color: #fff;
    color: #001255;
  }
  footer .list-item .link,
  footer .list-item .sub-link {
    position: relative;
  }
  footer .list-item .link:after,
  footer .list-item .sub-link:after {
    content: "";
    height: 1px;
    width: 100%;
    position: absolute;
    left: 0;
    background: #fcde62;
    opacity: 0;
    visibility: hidden;
  }
  footer .list-item .link:hover:after,
  footer .list-item .sub-link:hover:after {
    opacity: 1;
    visibility: visible;
  }
  footer .list-item span.link:after {
    display: none !important;
  }
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  footer .intro .btn-contact {
    padding-top: 6px;
  }
  footer .btn-to-top {
    padding-bottom: 4px;
  }
}
@media only screen and (max-width: 767px) {
  footer {
    background-color: #f8f8f8;
  }
  footer:after {
    width: 2.39rem;
    height: 1.25rem;
    bottom: 0.16rem;
    right: -0.12rem;
    z-index: 1;
  }
  footer .wrapper {
    padding-top: 1.17rem;
  }
  footer .intro {
    padding: 0;
    margin: 0;
  }
  footer .intro .address {
    margin: 0.4rem 0 0.14rem;
    font-size: 0.16rem;
    line-height: 1.5;
  }
  footer .intro .btn-tel,
  footer .intro .btn-fax {
    font-size: 0.16rem;
  }
  footer .intro .btn-tel span,
  footer .intro .btn-fax span {
    margin-right: 0.05rem;
  }
  footer .intro .partners {
    width: 1.07rem;
    height: 0.68rem;
    margin-top: 0.53rem;
  }
  footer .copy-right {
    height: 0.31rem;
    margin-top: 0.16rem;
    font-size: 0.08rem;
    line-height: 1.38;
    position: relative;
    z-index: 3;
  }
  footer .btn-to-top {
    width: 1.54rem;
    height: 0.38rem;
    padding-left: 0.28rem;
    right: 0.24rem;
    font-size: 0.14rem;
  }
  footer .btn-to-top .ico {
    margin-right: 0.08rem;
  }
}
.cmn-title .en {
  display: block;
  padding-bottom: 20px;
  margin-bottom: 26px;
  font-size: 16px;
  font-weight: 900;
  line-height: 1.44;
  letter-spacing: 1.6px;
  text-align: center;
  color: #656f9a;
  position: relative;
}
.cmn-title .en:after {
  content: "";
  display: block;
  width: 45px;
  height: 2px;
  background-color: #fcde62;
  position: absolute;
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%);
}
.cmn-title .jp {
  display: block;
  font-size: 40px;
  font-weight: bold;
  font-style: normal;
  font-stretch: normal;
  line-height: 1;
  letter-spacing: normal;
  text-align: center;
  color: #001255;
}
.cmn-title.line-white .en:after {
  background-color: #FFF;
}

@media only screen and (max-width: 767px) {
  .cmn-title .en {
    padding-bottom: 0.19rem;
    margin-bottom: 0.19rem;
    font-size: 0.12rem;
    line-height: 1.42;
    letter-spacing: 1.2px;
  }
  .cmn-title .en:after {
    width: 0.3rem;
  }
  .cmn-title .jp {
    font-size: 0.28rem;
    line-height: 1.43;
  }
}
.cmn-button {
  display: flex;
  width: 224px;
  height: 56px;
  margin: 0 auto;
  padding-left: 42px;
  align-items: center;
  font-size: 14px;
  font-weight: 900;
  line-height: 1.43;
  color: #FFF;
  background: #001255 url("../img/top/ico_arrow_next_white.png") 77% center/50px 9px no-repeat;
  transition: all 0.2s;
  opacity: 1 !important;
}
.cmn-button.is-white {
  background: #FFF url("../img/top/ico_arrow_next_blue.png") 77% center/50px 9px no-repeat;
  color: #001255;
}

@media print, (min-width: 768px) {
  .cmn-button:not(.is-white) {
    border: 1px solid #001255;
  }
  .cmn-button:not(.is-white):hover {
    background-color: #FFF;
    background-image: url("../img/top/ico_arrow_next_white_on.png");
    color: #001255;
  }
  .cmn-button.is-white {
    border: 1px solid #fff;
  }
  .cmn-button.is-white:hover {
    background-image: url("../img/top/ico_arrow_next_blue_on.png");
    background-color: #001255;
    color: #fff;
  }
}
@media only screen and (max-width: 767px) {
  .cmn-button {
    width: 2.24rem;
    height: 0.56rem;
    padding-left: 0.42rem;
    font-size: 0.14rem;
    background-size: 0.51rem 0.075rem;
  }
}
.btn-download {
  background-color: #F8F8F8;
  font-weight: 900;
  text-align: center;
  color: #001157;
  display: block;
  position: relative;
}
.btn-download::after {
  content: "";
  background-image: url(../img/company/icn_pdf.png);
  background-repeat: no-repeat;
  background-size: auto 100%;
  background-position: 0 0;
  position: absolute;
}

@media print, (min-width: 768px) {
  .btn-download {
    width: 200px;
    height: 40px;
    padding: 6px 18px 10px 0;
    font-size: 14px;
  }
  .btn-download::after {
    width: 18px;
    height: 20px;
    top: 10px;
    right: 26px;
  }
}
@media only screen and (max-width: 767px) {
  .btn-download {
    width: 2rem;
    height: 0.4rem;
    padding: 0.1rem 0.2rem 0.1rem 0;
    font-size: 0.14rem;
  }
  .btn-download::after {
    width: 0.18rem;
    height: 0.2rem;
    top: 0.1rem;
    right: 0.26rem;
  }
}
.section-contact {
  padding: 60px 0 110px;
  background-color: #fcde62;
}
.section-contact .content {
  display: flex;
  margin-top: 54px;
  justify-content: center;
}
.section-contact .btn-tel {
  display: flex;
  width: 453px;
  height: 86px;
  align-items: center;
  justify-content: center;
  border-top: 1px solid #001255;
  border-bottom: 1px solid #001255;
  margin-right: 63px;
}
.section-contact .btn-tel .text {
  margin-right: 8px;
  font-size: 12px;
  font-weight: bold;
  line-height: 1.67;
  color: #001255;
  text-align: right;
}
.section-contact .btn-tel .tel {
  font-size: 44px;
  font-weight: bold;
  line-height: 1.45;
  color: #001255;
  pointer-events: auto;
}
.section-contact .btn-web {
  display: flex;
  width: 453px;
  height: 86px;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: bold;
  font-style: normal;
  font-stretch: normal;
  line-height: 1.45;
  letter-spacing: normal;
  text-align: left;
  color: #FFF;
  background-color: #001255;
  border: 1px solid #001255;
  opacity: 1 !important;
  transition: all 0.2s;
}

@media print, (min-width: 768px) {
  .section-contact .btn-web:hover {
    background-color: #fff;
    color: #001255;
  }
}
@media only screen and (max-width: 767px) {
  .section-contact {
    padding: 0.41rem 0 0.8rem;
  }
  .section-contact .content {
    display: block;
    margin-top: 0.4rem;
  }
  .section-contact .btn-tel {
    width: 100%;
    height: 0.66rem;
    margin-bottom: 0.12rem;
    justify-content: flex-start;
  }
  .section-contact .btn-tel .text {
    margin: 0 0.08rem 0 0.1rem;
    font-size: 0.09rem;
    line-height: 1.78;
  }
  .section-contact .btn-tel .tel {
    font-size: 0.33rem;
    line-height: 1.42;
  }
  .section-contact .btn-web {
    width: 100%;
    height: 0.66rem;
    font-size: 0.2rem;
    line-height: 1.7;
    font-family: YuGothic, "Yu Gothic", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "游ゴシック", "メイリオ", Meiryo, Verdana, sans-serif;
  }
}
.section-page-title {
  padding: 80px 0 60px;
  background: #001255 url("../img/top/bg_banner_03.png") 102.5% 40%/540px 284px no-repeat;
}
.section-page-title .wrapper {
  padding-left: 0.24rem;
  padding-right: 0.24rem;
}
.section-page-title .cmn-title .en,
.section-page-title .cmn-title .jp {
  text-align: left;
  color: #FFF;
}
.section-page-title .cmn-title .en {
  padding-bottom: 22px;
  margin-bottom: 20px;
}
.section-page-title .cmn-title .en:after {
  left: 0;
  transform: translate(0);
}
.section-page-title .cmn-title .jp {
  line-height: 1.43;
}
.section-page-title .text {
  display: block;
  width: 75%;
  margin: 6px 0 8px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.38;
  color: #FFF;
}

@media print, (min-width: 768px) {
  .section-page-title.has-text {
    background-position: 102.5% 50%;
    min-height: 320px;
  }
}
@media only screen and (max-width: 767px) {
  .section-page-title {
    padding: 0.32rem 0 0.3rem;
    background: #001255 url("../img/top/bg_banner_03.png") 117.5% -0.13rem/1.66rem 0.87rem no-repeat;
  }
  .section-page-title .cmn-title .jp {
    font-size: 0.24rem;
    line-height: 1.47;
  }
  .section-page-title .cmn-title .en {
    padding-bottom: 0.09rem;
    margin-bottom: 0.09rem;
  }
  .section-page-title .cmn-title .en:after {
    width: 0.45rem;
  }
  .section-page-title .text {
    width: 100%;
    margin: 0.06rem 0 -0.02rem;
    font-size: 0.14rem;
    line-height: 1.73;
  }
}
.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  padding-top: 8px;
  padding-bottom: 8px;
}
.breadcrumbs.wrapper {
  padding-left: 0.24rem;
  padding-right: 0.24rem;
}
.breadcrumbs .img {
  width: 16px;
  height: 12.5px;
}
.breadcrumbs .item {
  margin-right: 12px;
  position: relative;
}
.breadcrumbs .item:after {
  content: "";
  width: 1px;
  height: 14px;
  border-right: 1px solid #b1b7cc;
  background: #b1b7cc;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 11;
}
.breadcrumbs .item.is-current:after {
  display: none;
}
.breadcrumbs .item.is-current .link {
  color: #001255;
  font-weight: bold;
}
.breadcrumbs .link {
  display: flex;
  height: 100%;
  margin-right: 12px;
  align-items: flex-start;
  font-size: 12px;
  color: #b1b7cc;
  font-weight: 500;
}
.breadcrumbs .link-blue {
  color: #656F9A;
}

@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .breadcrumbs .item {
    padding-top: 5px;
  }
  .breadcrumbs .item:after {
    top: 4px;
  }
  .breadcrumbs .item:first-child {
    padding-top: 0;
  }
  .breadcrumbs .link {
    align-items: center;
  }
}
@media only screen and (max-width: 767px) {
  .breadcrumbs {
    padding-top: 0.08rem;
    padding-bottom: 0.08rem;
  }
  .breadcrumbs.about-page {
    padding-bottom: 0.05rem;
  }
  .breadcrumbs .img {
    width: 0.16rem;
    height: 0.125rem;
  }
  .breadcrumbs .item {
    margin-right: 0.12rem;
  }
  .breadcrumbs .item:after {
    content: "";
    width: 1px;
    height: 0.14rem;
  }
  .breadcrumbs .item.is-current .link {
    font-weight: 500;
  }
  .breadcrumbs .link {
    margin-right: 0.12rem;
    font-size: 0.12rem;
  }
}
.list-anchor {
  display: flex;
}
.list-anchor .item {
  display: flex;
  width: 380px;
  height: 165px;
  margin-right: 30px;
  background-color: rgba(248, 248, 248, 0.6);
}
.list-anchor .item:last-child {
  margin-right: 0;
}
.list-anchor .link {
  padding-left: 186px;
  position: relative;
}
.list-anchor .img {
  width: 139px;
  height: 99px;
  position: absolute;
  top: 53%;
  left: 23px;
  transform: translateY(-50%);
}
.list-anchor .title {
  margin: 41px 0 59px;
  font-size: 24px;
  font-weight: bold;
  line-height: 0.75;
  color: #001255;
}
.list-anchor .text {
  padding-right: 50px;
  font-size: 12px;
  font-weight: 900;
  line-height: 1.42;
  color: #001255;
  background: url("../img/top/ico_arrow_short_next_blue.svg") right 6px/37px 7.5px no-repeat;
}

@media only screen and (max-width: 767px) {
  .list-anchor {
    display: block;
  }
  .list-anchor .item {
    width: 100%;
    height: 1.23rem;
    margin: 0 0 0.16rem;
  }
  .list-anchor .link {
    padding-left: 1.77rem;
  }
  .list-anchor .img {
    width: 1.39rem;
    height: 0.99rem;
    top: 52%;
    left: 0.22rem;
  }
  .list-anchor .title {
    margin: 0.23rem 0 0.19rem;
    font-size: 0.2rem;
    line-height: 1.45;
  }
  .list-anchor .text {
    font-size: 0.12rem;
    padding-right: 0.58rem;
    line-height: 1.42;
    background-position: right 0.07rem;
    background-size: 0.34rem 0.075rem;
  }
}
.section-title {
  padding-left: 56px;
  font-size: 28px;
  font-weight: bold;
  line-height: 0.86;
  letter-spacing: 1.43px;
  color: #001255;
  position: relative;
}
.section-title:before {
  content: "";
  width: 40px;
  height: 2px;
  background-color: #fcde62;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

@media only screen and (max-width: 767px) {
  .section-title {
    padding-left: 0.2rem;
    font-size: 0.18rem;
    line-height: 1.33;
    letter-spacing: 0.92px;
  }
  .section-title:before {
    top: 0.13rem;
    width: 0.16rem;
  }
}
.slick-slider {
  -ms-touch-action: auto;
  touch-action: auto;
}

.item-event {
  width: 280px;
  margin: 0 26.5px 35px 0;
  box-shadow: 0 0 10px 0 rgba(0, 12, 56, 0.05);
  background-color: #FFF;
  text-align: right;
}
.item-event:nth-child(4n) {
  margin-right: 0;
}
.item-event .item-link {
  display: block;
  width: 100%;
  position: relative;
  height: 100%;
  padding-bottom: 65px;
}
.item-event .item-title {
  height: 50px;
  margin: 26px 0 31px;
  padding: 0 16px;
  font-size: 16px;
  font-weight: bold;
  line-height: 1.5;
  color: #001255;
  text-align: left;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden !important;
  display: -webkit-box;
}
.item-event .img {
  position: relative;
  overflow: hidden;
  background: #aaa;
}
.item-event .img img {
  width: 100%;
  max-width: none;
  transform: scale(1);
  transition: all 0.3s;
}
.item-event .label {
  display: flex;
  align-items: center;
  position: absolute;
  right: 10px;
  bottom: 16px;
}
.item-event .label span {
  display: flex;
  height: 24px;
  min-width: 72px;
  margin: 0 6px;
  justify-content: center;
  align-items: center;
  background-color: #FFF;
  font-size: 12px;
  font-weight: bold;
  line-height: 1.42;
  color: #001255;
}
.item-event .table-event {
  width: 88%;
  margin: 0 auto;
}
.item-event .table-event th {
  width: 54px;
  font-size: 10px;
  font-weight: bold;
  line-height: 1.7;
  color: #656f9a;
}
.item-event .table-event td {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.71;
  color: #001255;
}
.item-event .link {
  display: block;
  padding-right: 56px;
  position: absolute;
  right: 15px;
  bottom: 20px;
  font-size: 12px;
  font-weight: 900;
  line-height: 1.42;
  color: #001255;
  background: url("../img/top/ico_arrow_next_blue.svg") right center/42px 7.5px no-repeat;
}

@media print, (min-width: 768px) {
  .item-event .item-link:hover img {
    transform: scale(1.1);
    transition: all 0.3s;
  }
}
@media only screen and (max-width: 767px) {
  .item-event {
    width: 2.8rem;
    max-width: 100%;
    margin: 0 auto;
    box-shadow: 0 0 0.1rem 0 rgba(0, 12, 56, 0.05);
  }
  .item-event .link {
    right: 0.38rem;
  }
  .item-event .item-link {
    padding-bottom: 0.65rem;
  }
  .item-event .item-title {
    height: 0.5rem;
    margin: 0.26rem 0 0.31rem;
    padding: 0 0.16rem;
    font-size: 0.16rem;
  }
  .item-event .label {
    right: 0.1rem;
    bottom: 0.16rem;
  }
  .item-event .label span {
    height: 0.24rem;
    font-family: YuGothic, "Yu Gothic", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "游ゴシック", "メイリオ", Meiryo, Verdana, sans-serif;
    min-width: 0.72rem;
    margin: 0 0.06rem;
    font-size: 0.12rem;
  }
  .item-event .table-event th {
    width: 0.54rem;
    font-size: 0.1rem;
  }
  .item-event .table-event td {
    font-size: 0.14rem;
  }
}
.pager {
  margin-top: 15px;
}
.pager li {
  padding: 0 5px;
  margin: 0px 4px;
}
.pager .ul-pager {
  display: flex;
  align-items: center;
  justify-content: center;
}
.pager .page-numbers {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.69;
  color: #090031;
}
.pager .page-numbers.current {
  font-weight: bold;
}
.pager .dots {
  display: inline-block;
  padding-bottom: 10px;
}
.pager .next {
  margin-left: 21px;
}
.pager .next a {
  display: block;
  width: 51px;
  height: 7.5px;
  background: url("../img/top/ico_arrow_next_blue.svg") center/cover no-repeat;
}
.pager .prev {
  margin-right: 21px;
}
.pager .prev a {
  display: block;
  width: 51px;
  height: 7.5px;
  background: url("../img/common/ico_arrow_prev_blue.svg") center/cover no-repeat;
}

@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .pager .next a,
  .pager .prev a {
    margin-bottom: 7px;
  }
}
@media only screen and (max-width: 767px) {
  .pager {
    margin-top: 0.19rem;
  }
  .pager li {
    padding: 0 0.05rem;
    margin: 0px 0.04rem;
  }
  .pager .page-numbers {
    font-size: 0.16rem;
  }
  .pager .dots {
    padding-bottom: 0.1rem;
  }
  .pager .next {
    margin-left: 0.21rem;
  }
  .pager .next a {
    width: 0.51rem;
    height: 0.075rem;
    background: url("../img/top/ico_arrow_next_blue.svg") center/cover no-repeat;
  }
  .pager .prev {
    margin-right: 0.21rem;
  }
  .pager .prev a {
    width: 0.51rem;
    height: 0.075rem;
    background: url("../img/common/ico_arrow_prev_blue.svg") center/cover no-repeat;
  }
}
.item-news .link-news {
  display: flex;
  width: 100%;
  min-height: 72px;
  padding-left: 78px;
  align-items: center;
  border-bottom: 1px solid #b1b7cc;
  background: url("../img/top/ico_arrow_next_blue.svg") 94% center/42px 7.5px no-repeat;
}
.item-news .time {
  font-size: 14px;
  font-weight: normal;
  line-height: 1.43;
  color: #656f9a;
}
.item-news .time + .text {
  margin-left: 148px;
}
.item-news .label {
  display: inline-flex;
  min-width: 100px;
  height: 24px;
  margin: 0 24px;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: bold;
  line-height: 1.42;
  color: #FFF;
  background-color: #001255;
}
.item-news .text {
  flex: 1;
  padding: 22px 120px 22px 0;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.69;
  color: #001255;
}

@media print, (min-width: 768px) {
  .item-news .link-news .text span {
    display: inline;
    padding-bottom: 4px;
  }
  .item-news .link-news:hover .text span {
    border-bottom: 1px solid #fcde62;
  }
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .item-news .text {
    padding-top: 6px;
  }
}
@media only screen and (max-width: 767px) {
  .item-news .link-news {
    height: auto;
    min-height: auto;
    padding: 0 0 0.12rem;
    margin-bottom: 0.16rem;
    flex-wrap: wrap;
    background: transparent;
  }
  .item-news .time {
    font-size: 0.12rem;
    line-height: 1;
  }
  .item-news .time + .text {
    margin-left: 0;
  }
  .item-news .label {
    width: 1rem;
    height: 0.24rem;
    margin: 0 0.24rem;
    font-size: 0.12rem;
    line-height: 1;
  }
  .item-news .text {
    flex-basis: 100%;
    width: 100%;
    margin-top: 0.04rem;
    padding: 0;
    font-size: 0.14rem;
    line-height: 1.71;
  }
}
.contact-block-cmn {
  margin: 80px 0 102px;
  padding: 125px 0 120px;
  background-color: #f8f8f8;
}
.contact-block-cmn .intro {
  margin: 34px 0 51px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.71;
  text-align: center;
  color: #656f9a;
}
.contact-block-cmn .list-content {
  display: flex;
  width: 802px;
  margin: 0 auto;
}
.contact-block-cmn .list-content .item:first-child {
  flex-basis: 60%;
}
.contact-block-cmn .list-content .item:last-child .content .text {
  margin-bottom: 37px;
}
.contact-block-cmn .list-content .content-title {
  margin: 40px 0;
  padding-bottom: 30px;
  font-size: 24px;
  font-weight: bold;
  line-height: 1;
  color: #656f9a;
  position: relative;
}
.contact-block-cmn .list-content .content-title:after {
  content: "";
  display: block;
  width: 45px;
  height: 2px;
  background-color: #fcde62;
  position: absolute;
  left: 0;
  top: 100%;
}
.contact-block-cmn .list-content .content {
  width: auto;
}
.contact-block-cmn .content {
  width: 400px;
  margin: 58px auto 0;
  padding-left: 10px;
}
.contact-block-cmn .content .address {
  font-size: 18px;
  font-weight: bold;
  line-height: 1.56;
  color: #001255;
}
.contact-block-cmn .content .text {
  margin: 7px 0 45px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.333;
  color: #001255;
}
.contact-block-cmn .content .txt-recruit {
  font-size: 18px;
}
.contact-block-cmn .content .btn {
  display: flex;
  align-items: center;
  margin-bottom: 19px;
}
.contact-block-cmn .content .btn span {
  display: block;
  width: 70px;
  margin-right: 12px;
  font-size: 12px;
  font-weight: bold;
  line-height: 2;
  color: #656f9a;
  position: relative;
}
.contact-block-cmn .content .btn span:not(.link):after {
  content: "";
  display: block;
  width: 32px;
  height: 1px;
  border-top: 1px solid #656f9a;
  position: absolute;
  right: 0;
  top: 50%;
}
.contact-block-cmn .content .btn .add-more {
  width: auto;
  margin: 4px 0 0 2px;
}
.contact-block-cmn .content .btn .add-more::after {
  display: none !important;
}
.contact-block-cmn .content .btn .link {
  display: block;
  width: auto;
  font-size: 28px;
  font-weight: bold;
  line-height: 1;
  color: #001255;
}
.contact-block-cmn .btn-inquiries {
  display: flex;
  margin: 85px auto 0;
  width: 453px;
  height: 86px;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 20px;
  font-weight: bold;
  line-height: 1.45;
  color: #ffffff;
  background: #001255;
  border: 1px solid #001255;
  opacity: 1 !important;
  transition: all 0.2s;
}

@media print, (min-width: 768px) {
  .contact-block-cmn .btn-inquiries:hover {
    background-color: #fff;
    color: #001255;
  }

  .contact-block-cmn .content-recruit {
    padding-left: 0;
  }
  .contact-block-cmn .content-recruit .btn {
    margin-left: 35px;
  }
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .contact-block-cmn .list-content:last-child.item .content .text {
    padding-bottom: 38px;
  }
}
@media only screen and (max-width: 767px) {
  .contact-block-cmn {
    margin: 0.8rem -0.12rem 0;
    width: calc(100% + .24rem);
    padding: 0.37rem 0.12rem 0.6rem;
  }
  .contact-block-cmn .intro {
    margin: 0;
    padding: 0.22rem 0;
    font-size: 0.14rem;
  }
  .contact-block-cmn .list-content {
    display: block;
    width: 100%;
  }
  .contact-block-cmn .list-content .content {
    padding-left: 0;
    margin-top: 0.45rem;
  }
  .contact-block-cmn .list-content .content-title {
    font-size: 0.24rem;
  }
  .contact-block-cmn .list-content .item:first-child {
    padding-bottom: 0.08rem;
  }
  .contact-block-cmn .content {
    margin-top: 0.54rem;
    width: 3rem;
    padding-left: 0.1rem;
  }
  .contact-block-cmn .content.content-recruit {
    width: 3.5rem;
  }
  .contact-block-cmn .content .address {
    font-size: 0.18rem;
  }
  .contact-block-cmn .content .text {
    margin: 0.07rem 0 0.42rem;
    font-size: 0.14rem;
  }
  .contact-block-cmn .content .btn {
    margin-bottom: 0.19rem;
  }
  .contact-block-cmn .content .btn span {
    width: 0.7rem;
    margin-right: 0.12rem;
    font-size: 0.12rem;
  }
  .contact-block-cmn .content .btn span:after {
    width: 0.32rem;
  }
  .contact-block-cmn .content .btn .add-more {
    margin: 0.04rem 0 0 0.02rem;
  }
  .contact-block-cmn .content .btn .link {
    font-size: 0.28rem;
  }
  .contact-block-cmn .btn-inquiries {
    width: 100%;
    height: 0.86rem;
    margin-top: 0.46rem;
    font-size: 0.2rem;
  }
}
.company-link .list-link > li a {
  display: block;
  font-weight: bold;
  line-height: 1.4;
  color: #001255;
  border-bottom: 1px solid #001255;
  position: relative;
}
.company-link .list-link > li a::after {
  content: "";
  border: solid #001255;
  border-width: 0 1px 1px 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%) rotate(-45deg);
}
.company-link .list-link .current {
  display: none;
}

@media print, (min-width: 768px) {
  .company-link {
    padding: 20px 0 115px;
  }
  .company-link .list-link {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: -20px;
  }
  .company-link .list-link > li {
    width: 320px;
    margin-right: 20px;
  }
  .company-link .list-link > li a {
    padding: 20px 0;
    font-size: 20px;
    line-height: 1.4;
  }
  .company-link .list-link > li a::after {
    padding: 4px;
    right: 31px;
  }
}
@media only screen and (max-width: 767px) {
  .company-link {
    padding: 0.2rem 0 1.2rem;
  }
  .company-link .list-link {
    width: 2.7rem;
    margin: 0 auto;
  }
  .company-link .list-link > li a {
    padding: 0.15rem 0;
    font-size: 0.14rem;
  }
  .company-link .list-link > li a::after {
    padding: 0.04rem;
    right: 0.15rem;
  }
}
/* PAGES
 * ----------------------------------------------- */
.block-top-keyvisual {
  height: 728px;
  /*background: url("../img/top/bg_banner_01.png") -19px -8px/1633px 747px no-repeat, url("../img/top/bg_banner_02.jpg") left top/1440px 728px no-repeat;*/
  background: url("../img/top/bg_banner_02.jpg") left top/1440px 728px no-repeat;
  position: relative;
}
.block-top-keyvisual:after {
  content: "";
  display: block;
  width: 685px;
  height: 360px;
  background: url("../img/top/bg_banner_03.png") center/cover no-repeat;
  position: absolute;
  top: 486px;
  left: calc(50% - 800px);
}
.block-top-keyvisual .title {
  padding-top: 210px;
  font-size: 77px;
  font-weight: bold;
  color: #001255;
  line-height: 1.31;
}
.block-top-keyvisual .title .text-small {
  margin-right: 4px;
  font-size: 35px;
  line-height: 2.66;
}
.block-top-keyvisual .link {
  display: inline-block;
  margin-top: 30px;
  padding: 0 70px 15px 25px;
  font-size: 16px;
  font-weight: 900;
  line-height: 1.44;
  color: #001255;
  background: url("../img/top/ico_arrow_next_blue.svg") right 8px/50.2px 7.5px no-repeat;
  position: relative;
  z-index: 2;
}
.block-top-keyvisual .link:after {
  content: "";
  display: block;
  width: 269px;
  height: 2px;
  background-color: #001255;
  position: absolute;
  top: 100%;
  left: 0;
}

/* TOP｜バナー
 * ----------------------------------------------- */

.block-top-keyvisual .top-banner {
  position: absolute;
  background: #FEDE3D;
  width: 385px;
  height: 100px;
  z-index: 3;
  top: 70%;
  right: 0;
  display: block;
  box-shadow: 0 3px 32px 0 rgba(0, 0, 0, 0.48);
}

@media only screen and (max-width: 767px) {
  .block-top-keyvisual .top-banner {
    width: 95%;
    top: 79%;
    right: 0;
    left: 0;
    margin: 0 auto;
    display: block;
    box-shadow: 0 3px 15px 0 rgba(0, 0, 0, 0.32);
  }
}

.block-top-keyvisual .top-banner_detail {
  padding: 15px 20px;
  font-size: 12px;
  color: #0E0150;
}

.block-top-keyvisual .top-banner_detail .detail-bold {
  font-size: 16px;
  font-weight: 900;
  letter-spacing: -0.5px;
}

@media only screen and (max-width: 767px) {
  .block-top-keyvisual .top-banner_detail .detail-bold {
    font-size: 13px;
    font-weight: 900;
    letter-spacing: -0.5px;
  }
}

.block-top-keyvisual .top-banner_btn {
  position: relative;
  display: inline-block;
  color: #fff;
  padding: 7px 70px 7px 9px;
  margin-top: 10px;
  background: #0E0150 url(../img/top/ico_arrow_next_white.png) 90% center/35px 9px no-repeat;
  transition: all 0.2s;
  font-size: 12px;
  font-weight: 900;
}

@media only screen and (max-width: 767px) {
  .block-top-keyvisual .top-banner_btn {
    font-size: 11px;
    font-weight: 900;
  }
}

.block-top-keyvisual .top-banner_btn:hover {
  color: #0E0150ff;
  background: #fff url(../img/top/ico_arrow_next_blue.png) 90% center/35px 9px no-repeat;
  cursor: pointer;
}

.block-top-keyvisual .top-banner_img {
  position: absolute;
  right: 0;
  bottom: 0;
}

/* TOP｜スクロールバナー
 * ----------------------------------------------- */

.scroll-banner {
  position: fixed;
  background: #fcde62;
  width: 418px;
  height: 70px;
  z-index: 12;
  right: 0;
  top: 90%;
  box-shadow: 0 3px 24px 0 rgba(0, 0, 0, 0.16);
  transition: all 0.2s;
  will-change: scroll-position;
}

.scroll-banner:hover {
  background: #0E0150;
}

@media only screen and (max-width: 767px) {
  .scroll-banner {
    width: 90%;
    left: 0;
    margin: 0 auto;
    top: 81%;
  }
}

.scroll-banner_btn {
  display: block;
  color: #0E0150;
  font-size: 12px;
  padding: 7px 70px 7px 9px;
  margin-top: 10px;
  background:url(../img/top/ico_arrow_next_blue.png) 90% center/35px 9px no-repeat;
  transition: all 0.2s;
}

.scroll-banner_btn:hover {
  color: #fff;
  background: url(../img/top/ico_arrow_next_white.png) 90% center/35px 9px no-repeat;
}

.detail-bold {
  font-size: 16.5px;
  font-weight: 900;
}

@media only screen and (max-width: 767px) {
  .detail-bold {
    font-size: 14px;
    font-weight: 900;
  }
}

.scroll-hidden {
  display: none;
}



.section-top-strength {
  background-color: #FFF;
  padding: 108px 0 114px;
}
.section-top-strength .wrapper {
  display: flex;
}
.section-top-strength .intro {
  flex-basis: 37%;
  padding-top: 32px;
}
.section-top-strength .intro .text {
  max-width: 78%;
  margin: 18px auto 53px;
  font-size: 16px;
  font-weight: 600;
  font-style: normal;
  font-stretch: normal;
  line-height: 1.88;
  letter-spacing: 0.82px;
  color: #001255;
}
.section-top-strength .content {
  padding: 0 48px;
  flex: 1;
}
.section-top-strength .content .item {
  display: flex;
  align-items: flex-start;
}
.section-top-strength .content .description {
  flex: 1;
}
.section-top-strength .content .order {
  display: block;
  width: 45px;
  padding: 9px 0 3px;
  margin-right: 30px;
  font-size: 16px;
  font-weight: 900;
  color: #b1b7cc;
  line-height: 1.44;
  letter-spacing: 1.6px;
  text-align: center;
  position: relative;
}
.section-top-strength .content .order:after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  border-top: 1px solid #b1b7cc;
  position: absolute;
  top: 100%;
  left: 0;
}
.section-top-strength .content .text {
  margin: 7px 0 35px 0;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.38;
  color: #000c38;
}
.section-top-strength .content .is-highlight {
  margin: 0;
  font-size: 21px;
  font-weight: bold;
  line-height: 1.14;
  color: #001255;
}

.section-top-content {
  margin-bottom: 38px;
  overflow: hidden;
  position: relative;
}
.section-top-content:after {
  content: "";
  display: block;
  width: 873px;
  height: 416px;
  background: url(../img/top/bg_content_left.png) right center/cover no-repeat;
  position: absolute;
  bottom: -28px;
  left: calc(50% - 965px);
  z-index: -1;
}
.section-top-content .wrapper {
  display: flex;
  align-items: flex-start;
}
.section-top-content .img-box {
  flex-basis: 45%;
  margin-top: 68px;
  position: relative;
}
.section-top-content .img-box .img {
  width: 464px;
  height: 340px;
  margin: 140px 0 0 -40px;
}
.section-top-content .img-box .item {
  position: absolute;
}
.section-top-content .img-box .first-item {
  top: 8px;
  right: 219px;
}
.section-top-content .img-box .second-item {
  top: 41px;
  right: 100px;
}
.section-top-content .img-box .third-item {
  top: 112px;
  right: 9px;
}
.section-top-content .img-box .img-item {
  width: 66px;
  height: 66px;
  margin: 0 auto;
}
.section-top-content .img-box .text {
  margin-top: 5px;
  font-size: 12px;
  font-weight: bold;
  line-height: 1.17;
  text-align: center;
  color: #001255;
  white-space: nowrap;
}
.section-top-content .content {
  flex: 1;
  padding-top: 68px;
  min-height: 500px;
  position: relative;
  background-color: #f8f8f8;
}
.section-top-content .content:after {
  content: "";
  display: block;
  width: 100vw;
  height: 100%;
  background-color: #f8f8f8;
  position: absolute;
  top: 0;
  right: 100%;
  z-index: -1;
}
.section-top-content .content .text {
  padding-left: 115px;
  margin: 38px auto 72px;
  font-size: 16px;
  font-weight: 600;
  line-height: 2;
  letter-spacing: 0.82px;
  color: #001255;
}
.section-top-content .content .cmn-button {
  position: absolute;
  left: 50%;
  bottom: 60px;
  transform: translateX(-50%);
}
.section-top-content.img-right:after {
  width: 915px;
  height: 400px;
  bottom: -26px;
  left: auto;
  right: calc(50% - 982px);
  background: url(../img/top/bg_content_right.png) left center/cover no-repeat;
}
.section-top-content.img-right .content:after {
  right: 0;
  left: 100%;
}
.section-top-content.img-right .content .text {
  padding-left: 104px;
}
.section-top-content.img-right .img-box {
  order: 1;
}
.section-top-content.img-right .img-box .img {
  width: 509px;
  height: 307px;
  margin: 164px 0 0 88px;
}
.section-top-content.img-right .img-box .first-item {
  right: 262px;
}
.section-top-content.img-right .img-box .second-item {
  right: 353px;
}
.section-top-content.img-right .img-box .third-item {
  top: 105px;
  right: 462px;
}
.section-top-content.img-right .img-box .text {
  font-size: 10px;
  line-height: 1.1;
}

.section-top-event {
  margin-top: 90px;
  padding: 100px 0;
  background-color: #f7fafd;
  overflow: hidden;
}
.section-top-event .list-event {
  display: flex;
  flex-wrap: wrap;
  margin-top: 42px;
}
.section-top-event .list-event .item-event {
  margin-bottom: 0;
  position: relative;
  height: 100%;
}
.section-top-event .item-slick:nth-child(4n) .item-event {
  margin-right: 0;
}
.section-top-event .cmn-button {
  margin-top: 2px;
  padding-left: 44px;
  background: #001255 url("../img/top/ico_arrow_next_white.svg") 76% center/50px 7.5px no-repeat;
}

.section-top-news {
  padding: 100px 0;
}
.section-top-news .cmn-button {
  padding-left: 44px;
  background: #001255 url("../img/top/ico_arrow_next_white.svg") 76% center/50px 7.5px no-repeat;
}
.section-top-news .list-news {
  margin: 54px auto 40px;
  width: 1000px;
}

@media only screen and (min-width: 1500px) {
  .block-top-keyvisual {
    /*background: url("../img/top/bg_banner_01.png") calc(50% + 100px) center/1633px 747px no-repeat, url("../img/top/bg_banner_02.jpg") center/cover no-repeat;*/
    background: url("../img/top/bg_banner_02.jpg") center/cover no-repeat;
  }
}
@media print, (min-width: 768px) {
  .section-top-event .list-event .item-slick {
    margin-bottom: 35px;
  }
}
@media only screen and (max-width: 767px) {
  .block-top-keyvisual {
    height: 5.66rem;
    background: url("../img/top/sp/bg_banner_01.png") -0.76rem 3rem/4.51rem 2.6rem no-repeat, url("../img/top/sp/bg_banner_02.jpg") center top/3.75rem 2.93rem no-repeat
  }
  .block-top-keyvisual:after {
    width: 2.9rem;
    height: 1.52rem;
    top: auto;
    bottom: 0;
    left: -0.56rem;
  }
  .block-top-keyvisual .title {
    padding-top: 2.65rem;
    font-size: 0.34rem;
  }
  .block-top-keyvisual .title .text-small {
    font-size: 0.15rem;
  }
  .block-top-keyvisual .link {
    margin-top: 0.3rem;
    padding: 0 0.58rem 0.06rem 0.15rem;
    font-size: 0.12rem;
    line-height: 1.42;
    background: url(../img/top/ico_arrow_next_blue.svg) right 0.05rem/0.34rem 0.075rem no-repeat;
  }
  .block-top-keyvisual .link:after {
    width: 2rem;
  }

  .section-top-strength {
    padding: 0 0 0.97rem;
    position: relative;
  }
  .section-top-strength .cmn-button {
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
  }
  .section-top-strength .wrapper {
    display: block;
  }
  .section-top-strength .intro {
    padding-top: 0.24rem;
  }
  .section-top-strength .intro .text {
    max-width: 100%;
    padding: 0 0.2rem;
    margin: 0.08rem 0;
    font-size: 0.14rem;
    line-height: 1.71;
    letter-spacing: 0.71px;
  }
  .section-top-strength .content {
    padding: 0;
  }
  .section-top-strength .content .list-item {
    margin-top: 0.59rem;
    padding-left: 0.17rem;
  }
  .section-top-strength .content .item {
    margin-bottom: 0.17rem;
  }
  .section-top-strength .content .order {
    width: auto;
    padding: 0.03rem 0;
    font-size: 0.16rem;
    line-height: 1.44;
    letter-spacing: 1.6px;
    color: rgba(0, 18, 85, 0.3);
  }
  .section-top-strength .content .text {
    font-size: 0.2rem;
    line-height: 1.6;
  }

  .section-top-content {
    margin-top: 0.6rem;
    overflow: unset;
  }
  .section-top-content:after {
    display: none;
  }
  .section-top-content .wrapper {
    flex-wrap: wrap;
    background-color: #f8f8f8;
    position: relative;
  }
  .section-top-content .wrapper:after {
    content: "";
    width: 0.24rem;
    height: 100%;
    background: #FFF;
    position: absolute;
    top: 0;
    left: calc(100% - .24rem);
  }
  .section-top-content .wrapper:before {
    content: "";
    width: 100%;
    height: 0.16rem;
    background: #FFF;
    position: absolute;
    bottom: 0;
    left: 0;
  }
  .section-top-content .img-box {
    flex-basis: 100%;
    order: 1;
    margin-top: 0;
    padding-top: 0.68rem;
    position: relative;
  }
  .section-top-content .img-box:after {
    content: "";
    width: 537px;
    height: 296px;
    background: url(../img/top/sp/bg_content_left.png) center/cover no-repeat;
    position: absolute;
    bottom: -0.58rem;
    right: 0.67rem;
    z-index: 1;
  }
  .section-top-content .img-box .item {
    z-index: 11;
  }
  .section-top-content .img-box .img {
    width: 2.63rem;
    height: 1.92rem;
    margin: 0.38rem 0 0 -0.35rem;
    position: relative;
    z-index: 3;
  }
  .section-top-content .img-box .img-item {
    width: 0.445rem;
    height: 0.445rem;
  }
  .section-top-content .img-box .first-item {
    top: 0.32rem;
    right: 1.27rem;
  }
  .section-top-content .img-box .second-item {
    top: 0.72rem;
    right: 0.58rem;
  }
  .section-top-content .img-box .second-item .img-item {
    width: 0.485rem;
    height: 0.485rem;
  }
  .section-top-content .img-box .third-item {
    top: 1.5rem;
    right: 0.2rem;
  }
  .section-top-content .img-box .third-item .img-item {
    width: 0.48rem;
    height: 0.48rem;
  }
  .section-top-content .img-box .text {
    margin-top: 0.03rem;
    font-size: 0.08rem;
    line-height: 1.13;
  }
  .section-top-content .content {
    padding: 0.52rem 0.1rem 0 0;
    min-height: auto;
    position: static;
  }
  .section-top-content .content .text {
    padding: 0 0.15rem;
    margin: 0.25rem 0 0;
    font-size: 0.14rem;
    line-height: 1.73;
    letter-spacing: 0.9px;
    font-family: "Noto Serif JP", serif;
  }
  .section-top-content .content .cmn-button {
    width: 1.66rem;
    height: 0.32rem;
    padding-left: 0.34rem;
    font-size: 0.12rem;
    bottom: -0.2rem;
    left: 74.7%;
    background: transparent url("../img/top/ico_arrow_next_blue.svg") 89% center/0.335rem 0.075rem no-repeat;
    border-bottom: 2px solid #001255;
    color: #001255;
  }
  .section-top-content.img-right {
    margin-top: 0.83rem;
  }
  .section-top-content.img-right .wrapper:after {
    left: auto;
    right: calc(100% - .24rem);
  }
  .section-top-content.img-right .wrapper:before {
    bottom: -9px;
  }
  .section-top-content.img-right .content {
    padding: 0.52rem 0 0 0.1rem;
  }
  .section-top-content.img-right .content:after {
    display: none;
  }
  .section-top-content.img-right .content .text {
    padding-left: 0.15rem;
  }
  .section-top-content.img-right .content .cmn-button {
    bottom: -0.53rem;
    left: 25%;
  }
  .section-top-content.img-right .img-box {
    flex-basis: calc(100% + .24rem);
    margin-right: -0.24rem;
  }
  .section-top-content.img-right .img-box:after {
    width: 530px;
    height: 314px;
    background: url(../img/top/sp/bg_content_right.png) center/cover no-repeat;
    bottom: -0.78rem;
    right: auto;
    left: 0.71rem;
  }
  .section-top-content.img-right .img-box .img {
    width: 3.09rem;
    height: 1.86rem;
    margin: 0.55rem 0 0 0.85rem;
  }
  .section-top-content.img-right .img-box .img-item {
    width: 0.43rem;
    height: 0.43rem;
  }
  .section-top-content.img-right .img-box .first-item {
    top: 1.87rem;
    right: 2.81rem;
  }
  .section-top-content.img-right .img-box .first-item .img-item {
    width: 0.477rem;
    height: 0.477rem;
  }
  .section-top-content.img-right .img-box .second-item {
    top: 1.02rem;
    right: 2.46rem;
  }
  .section-top-content.img-right .img-box .third-item {
    top: 0.49rem;
    right: 1.67rem;
  }
  .section-top-content.img-right .img-box .text {
    font-size: 0.06rem;
    line-height: 1.17;
    margin-top: 0.05rem;
  }

  .section-top-event {
    margin-top: 1.16rem;
    padding: 0.41rem 0;
  }
  .section-top-event .wrapper {
    padding: 0;
  }
  .section-top-event .list-event {
    margin-top: 0.6rem;
  }
  .section-top-event .slick-slide {
    margin: 0 0.12rem;
  }
  .section-top-event .slick-list {
    margin: 0 -0.12rem;
  }
  .section-top-event .cmn-button {
    margin-top: 0.54rem;
  }
  .section-top-event .slick-track {
    display: flex;
  }
  .section-top-event .slick-track .slick-slide {
    height: auto;
  }
  .section-top-event .slick-track .slick-slide > div,
  .section-top-event .slick-track .slick-slide .item-slick {
    position: relative;
    height: 100%;
  }

  .section-top-news {
    padding: 0.8rem 0 1.2rem;
  }
  .section-top-news .list-news {
    width: 100%;
    margin: 0.57rem auto 0.42rem;
  }
  .section-top-news .cmn-button {
    padding-left: 0.44rem;
    background-size: 0.5rem 0.075rem;
  }
}
.section-solution-content {
  padding: 68px 0 88px;
}
.section-solution-content .list-content {
  padding-top: 88px;
}
.section-solution-content .list-content .text {
  margin: 22px 0 19px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.38;
  color: #000c38;
}
.section-solution-content .item-content {
  margin-bottom: 38px;
}
.section-solution-content .list-item {
  display: flex;
  flex-wrap: wrap;
}
.section-solution-content .list-item .item {
  width: 380px;
  margin: 0 30px 30px 0;
  background-color: rgba(248, 248, 248, 0.6);
}
.section-solution-content .list-item .item:nth-child(3n) {
  margin-right: 0;
}
.section-solution-content .list-item .link {
  display: block;
  width: 100%;
  padding: 28px 17px 26px;
}
.section-solution-content .list-item .img {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 124px;
  height: 124px;
  margin: 0 auto;
  border-radius: 50%;
  overflow: hidden;
}
.section-solution-content .list-item .img.bg-dark-blue {
  background-image: linear-gradient(to bottom, #001e8e, #000f47);
}
.section-solution-content .list-item .img.bg-blue {
  background-image: linear-gradient(50deg, #001e8e, #032fd7);
}
.section-solution-content .list-item .img.bg-green {
  background-image: linear-gradient(50deg, #032c28, #0a6259);
}
.section-solution-content .list-item .img img {
  transform: scale(1);
  transition: all 0.3s;
}
.section-solution-content .list-item .item-title {
  margin: 10px 0 12px;
  font-size: 18px;
  font-weight: bold;
  line-height: 1;
  text-align: center;
  color: #001255;
}
.section-solution-content .list-item .item-text {
  padding: 0 15px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.57;
  text-align: center;
  color: #001255;
  max-height: 42px;
  overflow: hidden;
}
.section-solution-content .list-item .item-link {
  display: block;
  margin-top: 23px;
  font-size: 12px;
  font-weight: 900;
  line-height: 1.42;
  color: #001255;
  text-align: center;
}
.section-solution-content .list-item .item-link span {
  display: inline-block;
  padding-right: 64px;
  background: url("../img/top/ico_arrow_next_blue.svg") right 4px/50px 7.5px no-repeat;
}

@media print, (min-width: 768px) {
  .section-solution-content .list-item .link:hover img {
    transform: scale(1.05);
    transition: all 0.3s;
  }
}
@media only screen and (max-width: 767px) {
  .section-solution-content {
    padding: 0.25rem 0 0.75rem;
  }
  .section-solution-content .wrapper {
    padding: 0 0.12rem;
  }
  .section-solution-content .list-content {
    padding-top: 0.27rem;
  }
  .section-solution-content .item-content {
    margin-bottom: 0.43rem;
  }
  .section-solution-content .list-item {
    display: block;
    margin-top: 0.16rem;
  }
  .section-solution-content .list-item .item {
    width: 100%;
    margin: 0 0 0.08rem;
  }
  .section-solution-content .list-item .link {
    display: flex;
    padding: 0.22rem 0.12rem;
  }
  .section-solution-content .list-item .img {
    margin-top: 0.02rem;
    width: 0.84rem;
    height: 0.84rem;
  }
  .section-solution-content .list-item .description {
    flex: 1;
    padding-left: 0.1rem;
  }
  .section-solution-content .list-item .item-title {
    font-size: 0.16rem;
    line-height: 1.38;
    text-align: left;
    margin: 0;
  }
  .section-solution-content .list-item .item-text {
    font-size: 0.12rem;
    line-height: 1.33;
    text-align: left;
    padding: 0.05rem 0;
    max-height: none;
  }
  .section-solution-content .list-item .item-link {
    margin-top: 0;
    font-size: 0.12rem;
    line-height: 1.42;
    text-align: right;
  }
  .section-solution-content .list-item .item-link span {
    padding-right: 0.62rem;
  }
}
.section-customization-preamble {
  padding-top: 91px;
}
.section-customization-preamble .list-item {
  display: flex;
  flex-wrap: wrap;
  margin-top: 63px;
}
.section-customization-preamble .item {
  width: 380px;
  margin-right: 30px;
  border: solid 2px #001255;
}
.section-customization-preamble .item:nth-child(3n) {
  margin-right: 0;
}
.section-customization-preamble .label,
.section-customization-preamble .text {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.63;
  color: #FFF;
}
.section-customization-preamble .text {
  margin-top: 7px;
}
.section-customization-preamble .label {
  font-weight: bold;
}
.section-customization-preamble .title-block {
  min-height: 160px;
  padding: 15px 30px;
  background-color: #001255;
}
.section-customization-preamble .description {
  padding: 23px 30px 38px;
}
.section-customization-preamble .description .label,
.section-customization-preamble .description .text {
  color: #001255;
}

.section-customization-point {
  margin-top: 40px;
  padding-top: 41px;
}
.section-customization-point .list-item {
  margin-top: 63px;
}
.section-customization-point .item {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}
.section-customization-point .label {
  display: flex;
  width: 160px;
  height: 40px;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: bold;
  line-height: 1.56;
  color: #FFF;
  background-color: #001255;
}
.section-customization-point .text {
  margin-left: 40px;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.56;
  color: #001255;
}

.section-customization-advantages {
  margin-top: 40px;
  padding-top: 64px;
}
.section-customization-advantages .list-item {
  margin-top: 35px;
}
.section-customization-advantages .item {
  display: flex;
  padding: 60px 60px 53px;
  margin-bottom: 60px;
  background-color: #f8f8f8;
}
.section-customization-advantages .item:nth-child(2) {
  padding-bottom: 60px;
}
.section-customization-advantages .item:nth-child(2) .text {
  margin-top: 28px;
}
.section-customization-advantages .img-box {
  flex-basis: 540px;
}
.section-customization-advantages .description {
  flex: 1;
}
.section-customization-advantages .title-item {
  font-size: 24px;
  font-weight: bold;
  line-height: 1.17;
  color: #001255;
}
.section-customization-advantages .text {
  width: 90%;
  margin-top: 16px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.63;
  color: #001255;
}

.section-customization-features {
  padding-top: 37px;
}
.section-customization-features .img {
  margin: 63px auto 40px;
}
.section-customization-features .content {
  padding: 0 15% 0 17.4%;
  margin: 0 auto;
}
.section-customization-features .sub-title {
  font-size: 24px;
  font-weight: bold;
  line-height: 1.17;
  color: #001255;
}
.section-customization-features .text {
  margin-top: 20px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.63;
  color: #001255;
}

.section-customization-description {
  margin-top: 50px;
  padding-top: 53px;
}
.section-customization-description .content {
  width: 1000px;
  margin: 0 auto;
}

.list-heading {
  margin-top: 63px;
}
.list-heading .item {
  margin-bottom: 57px;
}
.list-heading .item:last-child {
  margin-bottom: 42px;
  padding-top: 8px;
}
.list-heading .item-title {
  font-weight: bold;
  color: #000c38;
  position: relative;
}
.list-heading .h2 {
  padding-bottom: 8px;
  font-size: 24px;
  line-height: 1.46;
  border-bottom: 1px solid #001255;
}
.list-heading .h2:before {
  content: "";
  width: 200px;
  height: 4px;
  background-color: #001255;
  position: absolute;
  bottom: 0;
  left: 0;
}
.list-heading .h3 {
  padding-left: 16px;
  font-size: 20px;
  line-height: 1.4;
}
.list-heading .h3:before {
  content: "";
  width: 4px;
  height: 32px;
  background-color: #001255;
  position: absolute;
  bottom: -1px;
  left: 0;
}
.list-heading .h4 {
  padding: 0 0 11px 14px;
  font-size: 18px;
  line-height: 1;
  border-bottom: 1px solid #001255;
}
.list-heading .h4:before {
  content: "";
  width: 2px;
  height: 24px;
  background-color: #001255;
  position: absolute;
  bottom: 6px;
  left: 0;
}
.list-heading .text {
  margin-top: 33px;
  font-size: 16px;
  font-weight: 500;
  line-height: 2;
  color: #000c38;
}
.list-heading .text b {
  font-weight: bold;
}
.list-heading .text .link {
  color: #7c6e00;
  text-decoration: underline;
}
.list-heading .text .link.has-ico {
  padding-right: 16px;
  margin-right: 5px;
  background: url("../img/common/ico_link_blank.svg") right 45%/13px 12px no-repeat;
  position: relative;
}
.list-heading .text .link.has-ico:after {
  content: "";
  width: 25px;
  height: 1px;
  border-bottom: 1px solid #7c6e00;
  position: absolute;
  left: 85%;
  bottom: 3px;
}

.base-list {
  margin-bottom: 16px;
}
.base-list.style-circle li {
  position: relative;
  padding-left: 17px;
}
.base-list.style-circle li:before {
  content: "";
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background-color: #000c38;
  position: absolute;
  top: 14px;
  left: 7px;
}
.base-list.style-decimal {
  list-style: none;
  counter-reset: counter-number;
}
.base-list.style-decimal li {
  counter-increment: counter-number;
}
.base-list.style-decimal li:before {
  content: counter(counter-number) ". ";
  font-weight: bold;
  margin-right: 6px;
}
.base-list li {
  font-size: 16px;
  font-weight: 500;
  line-height: 2;
  color: #090031;
}

.base-table {
  width: 100%;
  border: 1px solid #b1b7cc;
}
.base-table th,
.base-table td {
  width: 33.333%;
  font-size: 16px;
  color: #000c38;
}
.base-table th {
  font-weight: bold;
  line-height: 1.69;
  background-color: #ecf4fc;
  text-align: center;
}
.base-table td {
  font-weight: 500;
  line-height: 1.25;
}

.table-vertical {
  margin-top: 43px;
}
.table-vertical th,
.table-vertical td {
  border-right: 1px solid #b1b7cc;
  border-bottom: 1px solid #b1b7cc;
}
.table-vertical th {
  padding: 14px 0 13px;
}
.table-vertical td {
  padding: 8px 24px 6px;
}

.table-horizontal {
  margin-top: 64px;
  width: 100%;
  border: 1px solid #b1b7cc;
}
.table-horizontal th,
.table-horizontal td {
  border-bottom: 1px solid #b1b7cc;
}
.table-horizontal td {
  padding: 0 24px;
}
.table-horizontal th {
  width: 12.4%;
  padding: 14px 0 13px;
  border-right: 1px solid #b1b7cc;
}

.section-customization-product {
  margin-top: 70px;
  padding-top: 73px;
}
.section-customization-product .list-item {
  margin-top: 63px;
  border-top: 1px solid #b1b7cc;
}
.section-customization-product .item {
  display: flex;
  padding: 26px 0 23px;
  border-bottom: 1px solid #b1b7cc;
}
.section-customization-product .item-title {
  width: 440px;
  padding-top: 3px;
  font-size: 16px;
  font-weight: bold;
  line-height: 1.44;
  color: #001255;
}
.section-customization-product .label,
.section-customization-product .text,
.section-customization-product p,
.section-customization-product strong {
  font-size: 16px;
  font-weight: bold;
  line-height: 1.95;
  color: #000c38;
}
.section-customization-product .text,
.section-customization-product p {
  font-weight: 500;
}

.section-customization-intro {
  margin-top: 50px;
  padding-top: 47px;
}
.section-customization-intro .list-item {
  display: flex;
  flex-wrap: wrap;
  margin-top: 43px;
}
.section-customization-intro .item-slick {
  margin: 20px 26.5px 0 0;
}
.section-customization-intro .item-slick:nth-child(4n) {
  margin-right: 0;
}
.section-customization-intro .item {
  width: 280px;
  padding: 19px;
  border: 1px solid #001255;
  background-color: #FFF;
}
.section-customization-intro .img {
  margin: 0 auto;
  width: 240px;
  height: 124px;
}
.section-customization-intro .text {
  padding: 19px 0 20px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.25;
  color: #001255;
}
.section-customization-intro .label {
  display: flex;
  width: 78px;
  height: 30px;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: bold;
  line-height: 1.5;
  color: #FFF;
  background-color: #001255;
}

.section-customization-results {
  margin-top: 50px;
  padding-top: 47px;
}
.section-customization-results .list-item {
  display: flex;
  flex-wrap: wrap;
  margin-top: 63px;
}
.section-customization-results .item {
  width: 580px;
  padding: 48px 20px 32px;
  margin-right: 40px;
  background-color: #f8f8f8;
}
.section-customization-results .item:nth-child(2n) {
  margin-right: 0;
}
.section-customization-results .item:nth-child(n + 3) {
  margin-top: 40px;
}
.section-customization-results .item-title {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.4;
  color: #656f9a;
}
.section-customization-results .item-title span {
  min-width: 154px;
  display: inline-block;
  font-size: 28px;
  font-weight: bold;
  line-height: 0.86;
  letter-spacing: 1.22px;
  color: #001255;
}
.section-customization-results .item-table {
  margin-top: 23px;
}
.section-customization-results .item-table th {
  width: 90px;
  font-size: 16px;
  font-weight: bold;
  line-height: 1.75;
  color: #001255;
  position: relative;
  padding-bottom: 16px;
}
.section-customization-results .item-table th:after {
  content: "";
  width: 2px;
  height: 28px;
  background-color: #b1b7cc;
  position: absolute;
  top: 0;
  right: 0;
}
.section-customization-results .item-table td {
  padding: 0 0 16px 16px;
  font-size: 20px;
  font-weight: bold;
  line-height: 1.4;
  color: #000c38;
}
.section-customization-results .item-table td span {
  margin-left: 26px;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.56;
  color: #656f9a;
}
.section-customization-results .text {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.63;
  color: #000c38;
}

.section-customization-services {
  margin-top: 60px;
  padding-top: 51px;
}
.section-customization-services .list-item {
  display: flex;
  flex-wrap: wrap;
  margin-top: 63px;
}
.section-customization-services .item {
  width: 580px;
  margin-right: 40px;
  background-color: #f8f8f8;
}
.section-customization-services .item:nth-child(2n) {
  margin-right: 0;
}
.section-customization-services .link {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  padding: 48px 40px 40px;
  position: relative;
}
.section-customization-services .item-title {
  flex-basis: 100%;
  font-size: 28px;
  font-weight: bold;
  line-height: 0.86;
  letter-spacing: 1.43px;
  color: #001255;
}
.section-customization-services .content {
  flex: 1;
  padding: 17px 28px 0 0;
}
.section-customization-services .img-box {
  display: flex;
  width: 218px;
  height: 218px;
  margin-top: 20px;
  background: #FFF;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}
.section-customization-services .img-box img {
  transform: scale(1);
  transition: all 0.3s;
}
.section-customization-services .text {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.63;
  color: #001255;
}
.section-customization-services .btn {
  display: flex;
  width: 180px;
  height: 48px;
  padding: 0 62px 0 0;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 900;
  line-height: 1.42;
  color: #001255;
  background: #FFF url("../img/top/ico_arrow_next_blue.png") 80% 47%/50px 7px no-repeat;
  position: absolute;
  bottom: 40px;
  left: 75px;
}

.section-customization-contact {
  width: 800px;
  height: 180px;
  margin: 120px auto 160px;
  border-radius: 4px;
  background-color: rgba(236, 244, 252, 0.6);
  text-align: center;
}
.section-customization-contact .title {
  padding: 39px 0 9px;
  font-size: 18px;
  font-weight: bold;
  line-height: 1.56;
  color: #656f9a;
}
.section-customization-contact .tel {
  font-size: 44px;
  font-weight: bold;
  line-height: 1;
  color: #001255;
}
.section-customization-contact .text {
  padding-top: 4px;
  font-size: 14px;
  font-weight: 500;
  line-height: 2;
  color: #001255;
}

@media print, (min-width: 768px) {
  .section-customization-services .link:hover img {
    transform: scale(1.05);
    transition: all 0.3s;
  }
  .section-customization-services .link:hover .btn {
    background-color: #001255;
    background-image: url("../img/top/ico_arrow_next_blue_on.png");
    color: #fff;
  }

  .section-customization-product .list-item {
    border-top: 0;
  }
  .section-customization-product .item {
    justify-content: space-between;
    padding: 0;
    border-bottom: 0;
  }
  .section-customization-product .item:first-child .item-title,
  .section-customization-product .item:first-child .description {
    border-top: 1px solid #b1b7cc;
  }
  .section-customization-product .item > * {
    border-bottom: 1px solid #b1b7cc;
    padding: 25px 0;
  }
  .section-customization-product .item .item-title {
    width: 400px;
  }
  .section-customization-product .item .description {
    width: calc(100% - 460px);
    padding-left: 50px;
  }
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .section-customization-product .item-title {
    padding-top: 0;
  }

  .section-customization-results .item-table td {
    padding-top: 5px;
    padding-bottom: 11px;
  }

  .section-customization-services .link {
    padding-right: 39px;
  }

  .list-heading .text .link.has-ico {
    background-position: right 35%;
  }
  .list-heading .text .link.has-ico:after {
    bottom: 7px;
  }
}
@media only screen and (max-width: 767px) {
  .section-customization-preamble {
    padding-top: 0.3rem;
  }
  .section-customization-preamble .wrapper {
    padding: 0 0.12rem;
  }
  .section-customization-preamble .list-item {
    margin-top: 0.16rem;
  }
  .section-customization-preamble .item {
    width: 100%;
    margin: 0 0 0.32rem;
  }
  .section-customization-preamble .label,
  .section-customization-preamble .text {
    font-size: 0.16rem;
  }
  .section-customization-preamble .title-block {
    padding: 0.09rem 0.1rem 0.19rem;
    min-height: auto;
  }
  .section-customization-preamble .title-block .label {
    line-height: 1.44;
    color: #b1b7cc;
  }
  .section-customization-preamble .title-block .text {
    margin-top: 0.05rem;
    line-height: 1.69;
  }
  .section-customization-preamble .description {
    padding: 0.09rem 0.1rem 0.22rem;
  }
  .section-customization-preamble .description .label {
    line-height: 1.44;
    color: #656f9a;
  }
  .section-customization-preamble .description .text {
    line-height: 1.63;
  }

  .section-customization-point {
    margin-top: 0.17rem;
    padding-top: 0;
  }
  .section-customization-point .wrapper {
    padding: 0 0.12rem;
  }
  .section-customization-point .list-item {
    margin-top: 0.44rem;
  }
  .section-customization-point .item {
    display: block;
    margin-bottom: 0.19rem;
  }
  .section-customization-point .label {
    width: 0.65rem;
    height: 0.28rem;
    font-size: 0.12rem;
    line-height: 1.5;
  }
  .section-customization-point .text {
    margin-left: 0;
    padding-right: 0.27rem;
    font-size: 0.18rem;
    font-weight: 500;
    line-height: 1.56;
  }

  .section-customization-advantages {
    padding-top: 0;
    margin-top: 0.64rem;
  }
  .section-customization-advantages .wrapper {
    padding: 0 0.12rem;
  }
  .section-customization-advantages .list-item {
    margin-top: 0.44rem;
  }
  .section-customization-advantages .item {
    display: block;
    padding: 0.33rem 0.12rem 0.24rem;
    margin-bottom: 0.4rem;
  }
  .section-customization-advantages .item:nth-child(2) {
    padding-bottom: 0.24rem;
  }
  .section-customization-advantages .img-box {
    margin-top: 0.26rem;
  }
  .section-customization-advantages .title-item {
    font-size: 0.2rem;
    line-height: 1.4;
  }
  .section-customization-advantages .text {
    width: 100%;
    margin-top: 0.07rem;
    font-size: 0.16rem;
    line-height: 1.63;
  }

  .section-customization-features {
    padding-top: 0.27rem;
  }
  .section-customization-features .img {
    margin: 0.22rem auto 0.19rem;
    height: auto;
  }
  .section-customization-features .content {
    padding: 0;
  }
  .section-customization-features .sub-title {
    font-size: 0.16rem;
    line-height: 1.75;
    color: #090031;
  }
  .section-customization-features .text {
    margin-top: 0.4rem;
    font-size: 0.16rem;
    line-height: 1.63;
    color: #090031;
  }

  .section-customization-description {
    margin-top: 0.5rem;
    padding-top: 0.42rem;
  }
  .section-customization-description .content {
    width: 100%;
  }

  .list-heading {
    margin-top: 0.27rem;
  }
  .list-heading .item {
    margin-bottom: 0.15rem;
  }
  .list-heading .item:last-child {
    margin-bottom: 0.08rem;
    padding-top: 0;
  }
  .list-heading .h2 {
    padding-bottom: 0.03rem;
    font-size: 0.2rem;
    line-height: 1.4;
    color: #090031;
  }
  .list-heading .h2:before {
    width: 0.65rem;
    height: 0.04rem;
  }
  .list-heading .h3 {
    padding-left: 0.08rem;
    font-size: 0.18rem;
    line-height: 1.5;
    color: #090031;
  }
  .list-heading .h3:before {
    display: block;
    width: 0.04rem;
    height: 100%;
    bottom: 0;
  }
  .list-heading .h4 {
    padding: 0 0 0.08rem 0.08rem;
    font-size: 0.16rem;
    font-weight: bold;
    line-height: 1.44;
    color: #090031;
  }
  .list-heading .h4:before {
    display: block;
    width: 0.02rem;
    height: calc(100% - .11rem);
    bottom: 0.1rem;
  }
  .list-heading .text {
    margin-top: 0.08rem;
  }
  .list-heading .text .link.has-ico {
    padding-right: 0.16rem;
    margin-right: 0.05rem;
    background: url("../img/common/ico_link_blank.svg") right 45%/0.13rem 0.12rem no-repeat;
  }
  .list-heading .text .link.has-ico:after {
    width: 0.25rem;
    left: 85%;
    bottom: 0.03rem;
  }

  .base-list {
    margin-bottom: 0.08rem;
  }
  .base-list.style-circle li:before {
    width: 0.03rem;
    height: 0.03rem;
    top: 0.14rem;
    left: 0.07rem;
  }
  .base-list.style-decimal li:before {
    margin-right: 0.06rem;
  }
  .base-list li {
    font-size: 0.16rem;
  }

  .table-wrapper {
    width: 100%;
    overflow: auto;
    padding-bottom: 0.21rem;
  }

  .base-table {
    width: 1000px;
  }
  .base-table th,
  .base-table td {
    font-size: 0.16rem;
  }

  .table-vertical {
    margin-top: 0.43rem;
  }
  .table-vertical td {
    padding: 0.14rem 0 0.13rem;
  }
  .table-vertical td {
    padding: 0.08rem 0.16rem 0.06rem;
  }

  .table-horizontal {
    margin-top: 0.57rem;
  }
  .table-horizontal td {
    padding: 0 0.24rem;
  }
  .table-horizontal th {
    width: 4.3%;
    padding: 0.14rem 0 0.13rem;
  }

  .section-customization-product {
    padding-top: 0.59rem;
    margin-top: 0;
  }
  .section-customization-product .list-item {
    margin-top: 0.41rem;
  }
  .section-customization-product .item {
    display: block;
    padding: 0.26rem 0 0.32rem;
  }
  .section-customization-product .description {
    margin-top: 0.2rem;
  }
  .section-customization-product .item-title {
    width: 100%;
    padding-top: 0.06rem;
    font-size: 0.16rem;
  }
  .section-customization-product .label,
  .section-customization-product .text,
  .section-customization-product p,
  .section-customization-product strong {
    font-size: 0.16rem;
  }

  .section-customization-intro {
    margin-top: 0;
    padding-top: 0.62rem;
  }
  .section-customization-intro .wrapper {
    padding: 0;
  }
  .section-customization-intro .section-title {
    margin-left: 0.24rem;
  }
  .section-customization-intro .list-item {
    margin-top: 0.21rem;
  }
  .section-customization-intro .item {
    width: 2.8rem;
    max-width: 100%;
    padding: 0.19rem;
  }
  .section-customization-intro .img {
    width: 2.4rem;
    height: 1.24rem;
  }
  .section-customization-intro .text {
    padding: 0.19rem 0 0.2rem;
    font-size: 0.16rem;
  }
  .section-customization-intro .label {
    width: 0.78rem;
    height: 0.3rem;
    font-size: 0.12rem;
  }
  .section-customization-intro .slick-slide {
    margin: 0 0.12rem;
  }
  .section-customization-intro .slick-list {
    margin: 0 -0.12rem;
  }

  .section-customization-results {
    padding-top: 0.62rem;
    margin-top: 0;
  }
  .section-customization-results .list-item {
    display: block;
    margin-top: 0.41rem;
  }
  .section-customization-results .item {
    width: 100%;
    margin: 0 0 0.4rem 0;
    padding: 0.46rem 0.2rem 0.37rem;
  }
  .section-customization-results .item:nth-child(n + 3) {
    margin-top: 0.4rem;
  }
  .section-customization-results .item-title {
    font-size: 0.18rem;
    line-height: 1.56;
  }
  .section-customization-results .item-title span {
    min-width: 1.29rem;
    font-size: 0.24rem;
    line-height: 1;
  }
  .section-customization-results .item-table {
    width: 100%;
    margin-top: 0.22rem;
  }
  .section-customization-results .item-table th {
    font-size: 0.14rem;
    line-height: 2;
    width: 0.9rem;
    display: block;
  }
  .section-customization-results .item-table th:after {
    width: 0.02rem;
    height: 0.28rem;
  }
  .section-customization-results .item-table td {
    padding: 0 0 0.16rem 0.16rem;
    font-size: 0.2rem;
  }
  .section-customization-results .item-table td span {
    margin-left: 0.26rem;
    font-size: 0.16rem;
    white-space: nowrap;
  }
  .ios .section-customization-results .item-table td span {
    margin-left: 0.2rem;
  }
  .section-customization-results .text {
    font-size: 0.16rem;
    line-height: 1.38;
    color: #001255;
  }

  .section-customization-services {
    margin-top: 0;
    padding-top: 0.22rem;
  }
  .section-customization-services .list-item {
    margin-top: 0.41rem;
  }
  .section-customization-services .item {
    width: 100%;
    margin: 0 0 0.4rem;
  }
  .section-customization-services .link {
    display: block;
    padding: 0.28rem 0.2rem 0.97rem;
  }
  .section-customization-services .item-title {
    font-size: 0.24rem;
    line-height: 1.17;
    letter-spacing: 1.22px;
  }
  .section-customization-services .content {
    padding: 0.13rem 0;
  }
  .section-customization-services .img-box {
    width: 2.18rem;
    height: 2.18rem;
    margin: 0.07rem auto;
  }
  .section-customization-services .text {
    font-size: 0.16rem;
    line-height: 1.38;
  }
  .section-customization-services .btn {
    width: 1.8rem;
    height: 0.48rem;
    padding: 0 0.62rem 0 0;
    font-size: 0.12rem;
    bottom: 0.31rem;
    background-size: 0.5rem 0.09rem;
    left: 0.75rem;
  }

  .section-customization-contact {
    width: calc(100% - .24rem);
    height: 2.47rem;
    margin: 0.64rem 0.12rem 0.8rem;
  }
  .section-customization-contact .title {
    padding: 0.58rem 0 0;
    font-size: 0.16rem;
    line-height: 1.75;
  }
  .section-customization-contact .tel {
    font-size: 0.44rem;
    line-height: 1;
  }
  .section-customization-contact .text {
    padding-top: 0.04rem;
    font-size: 0.14rem;
  }
}
.main-contact {
  margin-top: 60px;
  padding-bottom: 160px;
}
.main-contact .sec-inner {
  max-width: 840px;
  margin: 0 auto;
}
.main-contact .ttl-contact {
  line-height: 1.78;
  font-size: 18px;
  font-weight: bold;
  color: #001255;
  margin-top: 50px;
}

@media only screen and (max-width: 767px) {
  .main-contact {
    margin-top: 0.36rem;
    padding-bottom: 1.2rem;
  }
  .main-contact .ttl-contact {
    line-height: 1.71;
    font-size: 0.14rem;
    margin-top: 0.44rem;
  }
}
.step-nav {
  display: flex;
  justify-content: center;
}
.step-nav li {
  width: 110px;
  height: 110px;
  border: solid 2px #001255;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  font-weight: bold;
  color: #001255;
  margin: 0 20px;
  position: relative;
}
.step-nav li::before {
  position: absolute;
  content: "";
  right: -25px;
  width: 10px;
  height: 10px;
  border-top: 2px solid #001255;
  border-right: 2px solid #001255;
  border-radius: 2px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.step-nav li:last-child::before {
  display: none;
}
.step-nav li.is-active {
  background: #001255;
  color: #fff;
}

@media only screen and (max-width: 767px) {
  .step-nav li {
    width: 0.72rem;
    height: 0.72rem;
    border-width: 0.02rem;
    font-size: 0.16rem;
    margin: 0 0.13rem;
  }
  .step-nav li::before {
    right: -0.17rem;
    width: 0.08rem;
    height: 0.08rem;
    border-width: 0.02rem;
    border-radius: 0.02rem;
  }
}
.form-contact {
  position: relative;
}
.form-contact .is_agree {
  display: block;
  width: 100%;
  text-align: center;
}
.form-contact .is_agree .wpcf7-list-item {
  color: #001255;
}
.form-contact .is_agree .wpcf7-list-item input {
  opacity: 0;
}
.form-contact .is_agree .wpcf7-list-item input:checked + .wpcf7-list-item-label:after {
  opacity: 1;
  visibility: visible;
}
.form-contact .is_agree .wpcf7-list-item-label {
  position: relative;
  cursor: pointer;
  color: #001255;
}
.form-contact .is_agree .wpcf7-list-item-label:before {
  content: "";
  width: 16px;
  height: 16px;
  border-radius: 2px;
  border: solid 1px #b1b7cc;
  background-color: #FFF;
  position: absolute;
  top: 0;
  left: -25px;
}
.form-contact .is_agree .wpcf7-list-item-label:after {
  content: "";
  display: block;
  width: 10px;
  height: 16px;
  border: solid #001255;
  border-width: 0 4px 4px 0;
  border-radius: 1px;
  transform: rotate(45deg);
  opacity: 0;
  visibility: hidden;
  position: absolute;
  left: -20px;
  bottom: 0;
}
.form-contact.custom-wpcf7c-confirmed .table-contact tr th, .form-contact.custom-wpcf7c-confirmed .table-contact tr td {
  padding-top: 28px;
  padding-bottom: 28px;
}
.form-contact.custom-wpcf7c-confirmed .wpcf7-button {
  margin-top: 10px;
}
.form-contact .table-contact {
  margin-top: 60px;
  width: 100%;
}
.form-contact .table-contact tr {
  border-top: 1px solid #ecf4fc;
  border-bottom: 1px solid #ecf4fc;
}
.form-contact .table-contact th {
  width: 240px;
  padding: 48px 10px 29px 24px;
  vertical-align: top;
}
.form-contact .table-contact th.no-label {
  padding-top: 32px;
}
.form-contact .table-contact th .name-input {
  font-size: 16px;
  font-weight: 700;
  color: #001255;
  position: relative;
}
.form-contact .table-contact .required {
  font-weight: 500;
  color: #7c6e00;
  font-family: YuGothic, "Yu Gothic", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "游ゴシック", "メイリオ", Meiryo, Verdana, sans-serif;
  font-size: 12px;
  position: absolute;
  right: 0;
  top: 50%;
  margin-top: -0.7em;
}
.form-contact .table-contact td {
  padding: 16px 0px 19px;
  font-size: 16px;
  font-weight: 500;
  color: #001255;
}
.form-contact .table-contact td .text-area {
  line-height: 2;
  margin-top: -3px;
}
.form-contact .table-contact .txt-input {
  font-size: 12px;
  font-weight: 500;
  color: #001255;
  margin-bottom: 5px;
}
.form-contact .table-contact .wpcf7-form-control.wpcf7-radio {
  display: block;
  padding-left: 20px;
}
.form-contact .table-contact .wpcf7-form-control.wpcf7-radio .wpcf7-list-item {
  display: block;
  width: 100%;
  margin: 10px 0;
}
.form-contact .table-contact .wpcf7-form-control.wpcf7-radio .wpcf7-list-item .wpcf7-list-item-label {
  font-weight: 500;
  font-size: 16px;
  color: #656f9a;
  padding-left: 33px;
  position: relative;
  line-height: 1.7;
  display: block;
  cursor: pointer;
}
.form-contact .table-contact .wpcf7-form-control.wpcf7-radio .wpcf7-list-item .wpcf7-list-item-label::before {
  position: absolute;
  content: "";
  width: 20px;
  height: 20px;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  border: solid 1px #b1b7cc;
  border-radius: 50%;
}
.form-contact .table-contact .wpcf7-form-control.wpcf7-radio .wpcf7-list-item input {
  position: absolute;
  width: 1px;
  visibility: hidden;
  opacity: 0;
}
.form-contact .table-contact .wpcf7-form-control.wpcf7-radio .wpcf7-list-item input:checked + .wpcf7-list-item-label {
  color: #001255;
}
.form-contact .table-contact .wpcf7-form-control.wpcf7-radio .wpcf7-list-item input:checked + .wpcf7-list-item-label::after {
  position: absolute;
  content: "";
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #001255;
  top: 50%;
  transform: translateY(-50%);
  left: 2px;
}
.form-contact .table-contact .wpcf7-select {
  display: block;
  width: 100%;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  height: 48px;
  background-color: #ecf4fc;
  background-image: url("../img/common/ico_arrow.svg");
  background-repeat: no-repeat;
  background-position: right 40px center;
  background-size: 12px;
  font-size: 16px;
  padding: 0 20px;
  position: relative;
}
.form-contact .table-contact .wpcf7-select::-ms-expand {
  display: none;
}
.form-contact .table-contact .wpcf7-select option {
  color: #001255;
}
.form-contact .table-contact .wpcf7-select option[value=""][disabled] {
  display: none;
}
.form-contact .table-contact .wpcf7-select:required:invalid {
  color: #b1b7cc;
}
.form-contact .table-contact .wpcf7-text,
.form-contact .table-contact .wpcf7-textarea {
  display: block;
  width: 100%;
  -webkit-appearance: none;
  height: 48px;
  font-size: 16px;
  padding: 10px 20px;
  background-color: #ecf4fc;
  color: #001255;
  line-height: 27px;
}
.form-contact .table-contact .wpcf7-text::placeholder,
.form-contact .table-contact .wpcf7-textarea::placeholder {
  color: #b1b7cc;
  opacity: 1;
  line-height: normal;
}
.form-contact .table-contact .wpcf7-text:-ms-input-placeholder,
.form-contact .table-contact .wpcf7-textarea:-ms-input-placeholder {
  color: #b1b7cc;
  line-height: normal;
}
.form-contact .table-contact .row-input.is-second {
  margin-top: 20px;
}
.form-contact .table-contact .wpcf7-textarea {
  height: 155px;
  resize: none;
  -webkit-appearance: none;
  padding: 20px;
  outline: none;
  line-height: 2;
}
.form-contact .list-checkbox {
  display: block;
  text-align: center;
}
.form-contact .list-checkbox .wpcf7-list-item .wpcf7-list-item-label {
  font-weight: 500;
  font-size: 16px;
  color: #656f9a;
  padding-left: 33px;
  position: relative;
  line-height: 1.7;
  display: block;
  cursor: pointer;
}
.form-contact .list-checkbox .wpcf7-list-item .wpcf7-list-item-label::before {
  position: absolute;
  content: "";
  width: 20px;
  height: 20px;
  left: 0;
  top: 3px;
  border: solid 1px #b1b7cc;
  border-radius: 2px;
}
.form-contact .list-checkbox .wpcf7-list-item input {
  position: absolute;
  width: 1px;
  visibility: hidden;
  opacity: 0;
}
.form-contact .list-checkbox .wpcf7-list-item input:checked + .wpcf7-list-item-label {
  color: #001255;
}
.form-contact .list-checkbox .wpcf7-list-item input:checked + .wpcf7-list-item-label::after {
  content: "";
  display: block;
  width: 12px;
  height: 19px;
  border: solid #001255;
  border-width: 0 4px 4px 0;
  border-radius: 1px;
  transform: rotate(45deg);
  position: absolute;
  left: 7px;
  bottom: 10px;
}
.form-contact .note-confirm {
  color: #656f9a;
  margin-top: 10px;
  margin-bottom: 80px;
}
.form-contact .note-confirm a {
  color: inherit;
  text-decoration: underline;
}
.form-contact .btn-back {
  position: absolute;
  bottom: 15px;
  left: 0;
  color: #001255;
  font-weight: bold;
  font-size: 14px;
  padding-left: 60px;
  background: url("../img/common/ico_arrow_back.svg") no-repeat left center/49px;
  cursor: pointer;
}
.form-contact .wpcf7-button {
  display: block;
  width: 225px;
  margin: 60px auto 0;
  height: 56px;
  line-height: 56px;
  padding-left: 50px;
  background-color: #001255;
  background-image: url("../img/common/ico_arrow_form.svg");
  background-repeat: no-repeat;
  background-position: right 50px center;
  background-size: 50px;
  font-family: "Noto Serif JP", serif;
  color: #fff;
  font-weight: 900;
  font-size: 14px;
  text-align: left;
  cursor: pointer;
  border: 1px solid #001255;
  opacity: 1 !important;
  transition: all 0.2s;
}

.form-thanks .thanks-letter {
  font-size: 16px;
  font-weight: 500;
  line-height: 2;
  color: #001255;
  padding: 40px 0;
  border-top: 1px solid #b1b7cc;
  border-bottom: 1px solid #b1b7cc;
  margin-bottom: 80px;
}

@media print, (min-width: 768px) {
  .form-contact .wpcf7-button:hover {
    background-image: url(../img/top/ico_arrow_next_white_on.png);
    background-color: #fff;
    color: #001255;
  }
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .form-contact .table-contact .wpcf7-select {
    background-size: 12px 9px;
  }
  .form-contact input,
  .form-contact select {
    padding-top: 3px !important;
  }
}
@media only screen and (max-width: 767px) {
  .form-contact.custom-wpcf7c-confirmed .wpcf7-button {
    margin-top: 0.2rem;
  }
  .form-contact .is_agree .wpcf7-list-item-label {
    padding-top: 0.03rem;
    font-size: 0.12rem;
  }
  .form-contact .is_agree .wpcf7-list-item-label:before {
    width: 0.16rem;
    height: 0.16rem;
    left: -0.25rem;
    top: 0.03rem;
  }
  .form-contact .is_agree .wpcf7-list-item-label:after {
    width: 0.1rem;
    height: 0.16rem;
    border-width: 0 0.04rem 0.04rem 0;
    left: -0.2rem;
  }
  .form-contact .table-contact {
    margin-top: 0.46rem;
  }
  .form-contact .table-contact th, .form-contact .table-contact td {
    display: block;
    width: 100%;
  }
  .form-contact .table-contact th {
    padding: 0.3rem 0 0.2rem !important;
  }
  .form-contact .table-contact th .name-input {
    font-size: 0.16rem;
  }
  .form-contact .table-contact .required {
    font-size: 0.12rem;
    position: relative;
    right: auto;
    top: auto;
    margin-right: 0.12rem;
  }
  .form-contact .table-contact td {
    padding: 0 0 0.24rem !important;
    font-size: 0.16rem;
  }
  .form-contact .table-contact td .text-area {
    margin-top: 0;
    line-height: 1.7;
  }
  .form-contact .table-contact .txt-input {
    font-size: 0.12rem;
    margin-bottom: 0.08rem;
  }
  .form-contact .table-contact .wpcf7-form-control.wpcf7-radio {
    padding-left: 0;
  }
  .form-contact .table-contact .wpcf7-form-control.wpcf7-radio .wpcf7-list-item {
    display: block;
    width: 100%;
    margin: 0.12rem 0;
  }
  .form-contact .table-contact .wpcf7-form-control.wpcf7-radio .wpcf7-list-item:last-child {
    margin-bottom: 0;
  }
  .form-contact .table-contact .wpcf7-form-control.wpcf7-radio .wpcf7-list-item .wpcf7-list-item-label {
    font-size: 0.16rem;
    padding-left: 0.33rem;
    line-height: 1.4;
  }
  .form-contact .table-contact .wpcf7-form-control.wpcf7-radio .wpcf7-list-item .wpcf7-list-item-label::before {
    width: 0.2rem;
    height: 0.2rem;
    top: 0;
    transform: translateY(0);
  }
  .form-contact .table-contact .wpcf7-form-control.wpcf7-radio .wpcf7-list-item input:checked + .wpcf7-list-item-label::after {
    transform: translateY(0);
    width: 0.16rem;
    height: 0.16rem;
    top: 0.02rem;
    left: 0.02rem;
  }
  .form-contact .table-contact .wpcf7-select {
    height: 0.48rem;
    background-position: right 0.2rem center;
    background-size: 0.12rem;
    font-size: 0.16rem;
    padding: 0 0.2rem;
  }
  .form-contact .table-contact .wpcf7-text,
  .form-contact .table-contact .wpcf7-textarea {
    height: 0.48rem;
    font-size: 0.16rem;
    padding: 0 0.2rem;
  }
  .form-contact .table-contact .row-input.is-second {
    margin-top: 0.1rem;
  }
  .form-contact .table-contact .wpcf7-textarea {
    height: 1.55rem;
    padding: 0.2rem;
  }
  .form-contact .note-confirm {
    margin-top: 0.2rem;
    margin-bottom: 0.6rem;
    font-size: 0.12rem;
  }
  .form-contact .list-checkbox .wpcf7-list-item .wpcf7-list-item-label {
    font-size: 0.16rem;
    padding-left: 0.33rem;
    line-height: 1.4;
  }
  .form-contact .list-checkbox .wpcf7-list-item .wpcf7-list-item-label::before {
    width: 0.2rem;
    height: 0.2rem;
    top: 0;
  }
  .form-contact .list-checkbox .wpcf7-list-item input:checked + .wpcf7-list-item-label {
    color: #001255;
  }
  .form-contact .list-checkbox .wpcf7-list-item input:checked + .wpcf7-list-item-label::after {
    width: 0.12rem;
    height: 0.21rem;
    top: -0.07rem;
    left: 0.06rem;
  }
  .form-contact .btn-back {
    position: relative;
    bottom: auto;
    left: auto;
    font-size: 0.14rem;
    padding-left: 0.6rem;
    background-size: 0.5rem;
    margin-top: 0.4rem;
    display: flex;
  }
  .form-contact .wpcf7-button {
    width: 2.25rem;
    margin: 0.6rem auto 0;
    height: 0.56rem;
    line-height: 0.56rem;
    padding-left: 0.5rem;
    background-position: right 0.5rem center;
    background-size: 0.5rem;
    font-size: 0.14rem;
  }

  .form-thanks .thanks-letter {
    font-size: 0.16rem;
    padding: 0.4rem 0;
    margin-bottom: 0.6rem;
  }
}
.section-device-content {
  padding: 67px 0 112px;
}
.section-device-content .wrapper {
  display: flex;
}
.section-device-content .compact-block {
  width: 270px;
}
.section-device-content .compact-block .sub-link,
.section-device-content .compact-block .category {
  display: block;
  padding: 14px 0 13px;
  font-size: 14px;
  font-weight: 900;
  line-height: 1.43;
  color: #001255;
  border-bottom: 1px solid #001255;
  position: relative;
}
.section-device-content .compact-block .link:after,
.section-device-content .compact-block .sub-link:after,
.section-device-content .compact-block .category:after {
  content: "";
  border: solid #001255;
  border-width: 0 1px 1px 0;
  padding: 4px;
  position: absolute;
  right: 17px;
  top: 53%;
  transform: translateY(-50%) rotate(-45deg);
  transition: transform 0.2s;
}
.section-device-content .compact-block .sub-link.is-open:after {
  transform: translateY(-50%) rotate(45deg);
}
.section-device-content .compact-block .list-sub-item,
.section-device-content .compact-block .children {
  margin-left: 24px;
}
.section-device-content .compact-block .children {
  display: none;
}
.section-device-content .compact-block .children .sub-link {
  display: block;
  padding: 13px 0 11px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.71;
  color: #001255;
  border-bottom: 1px solid #B1B7CC;
  position: relative;
}
.section-device-content .compact-block .children .sub-link:after {
  border: solid #656F9A;
  border-width: 0 1px 1px 0;
}
.section-device-content .product-block {
  flex: 1;
  margin-left: 130px;
  padding-top: 16px;
}
.section-device-content .product-block .section-title + .list-product {
  padding: 31px 0 20px;
}
.section-device-content .product-block .item {
  margin-bottom: 13px;
}
.section-device-content .product-block .list-sub-item {
  padding-top: 43px;
}
.section-device-content .product-block .sub-item {
  padding-bottom: 20px;
}
.section-device-content .product-block .list-product {
  padding-top: 9px;
}
.section-device-content .product-block .sub-title {
  font-size: 16px;
  font-weight: bold;
  line-height: 1.69;
  color: #656f9a;
}
.section-device-content .product-block .product-item {
  margin-bottom: 20px;
}
.section-device-content .product-block .product-link {
  display: flex;
  padding: 20px 40px;
  box-shadow: 0 0 5px 0 rgba(0, 18, 85, 0.05);
  background-color: #f8f8f8;
  position: relative;
}
.section-device-content .product-block .product-link .img {
  display: block;
  margin-top: 5px;
  width: 140px;
  height: 140px;
  overflow: hidden;
}
.section-device-content .product-block .product-link .img img {
  transform: scale(1);
  transition: all 0.3s;
}
.section-device-content .product-block .product-link .content {
  flex: 1;
  margin-left: 33px;
  padding-top: 2px;
}
.section-device-content .product-block .product-link .product-title {
  font-size: 20px;
  font-weight: bold;
  line-height: 1.4;
  color: #001255;
  min-height: 56px;
}
.section-device-content .product-block .product-link .text {
  margin-top: 7px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.57;
  color: #000c38;
}
.section-device-content .product-block .product-link .btn {
  display: inline-block;
  margin-top: 21px;
  padding-right: 62px;
  font-size: 12px;
  font-weight: 900;
  line-height: 1.42;
  color: #001255;
  background: url("../img/top/ico_arrow_next_blue.svg") right center/50px 9px no-repeat;
  position: absolute;
  right: 40px;
  bottom: 21px;
}

@media print, (min-width: 768px) {
  .section-device-content .product-block .product-link:hover img {
    transform: scale(1.1);
    transition: all 0.3s;
  }
  .section-device-content .compact-block .list-item {
    display: block !important;
  }

  .js-fixed-nav {
    padding-bottom: 0 !important;
  }
  .js-fixed-nav .compact-block {
    top: auto !important;
  }

  .compact-block a > span {
    padding-bottom: 4px;
    display: inline;
  }
  .compact-block a > span:hover {
    border-bottom: 1px solid #fcde62;
  }
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .section-device-content .compact-block .sub-link {
    padding: 15px 0 9px;
  }
}
@media only screen and (max-width: 767px) {
  .section-device-content {
    padding: 0.24rem 0 112px;
  }
  .section-device-content .wrapper {
    display: block;
    padding: 0 0.12rem;
  }
  .section-device-content .compact-block {
    width: 2.95rem;
    padding: 0 0.12rem;
  }
  .section-device-content .compact-block .link,
  .section-device-content .compact-block .category {
    font-size: 0.14rem;
    padding: 0.14rem 0 0.13rem;
  }
  .section-device-content .compact-block .link:after,
  .section-device-content .compact-block .sub-link:after,
  .section-device-content .compact-block .category:after {
    padding: 0.04rem;
    right: 0.17rem;
  }
  .section-device-content .compact-block .list-sub-item {
    margin-left: 0.24rem;
  }
  .section-device-content .compact-block .sub-link {
    padding: 0.13rem 0 0.11rem;
    font-size: 0.14rem;
  }
  .section-device-content .compact-block .category:after {
    right: 0.15rem;
    top: 48%;
    transform: translateY(-50%) rotate(45deg);
    transition: all 0.3s;
  }
  .section-device-content .compact-block .category.active:after {
    transform: translateY(0) rotate(-135deg);
    transition: all 0.3s;
  }
  .section-device-content .compact-block .list-item {
    display: none;
    background: #fff;
  }
  .section-device-content .product-block {
    margin: 0;
    padding-top: 0.43rem;
  }
  .section-device-content .product-block .section-title + .list-product {
    padding: 0.13rem 0;
  }
  .section-device-content .product-block .item {
    margin-bottom: 0.17rem;
  }
  .section-device-content .product-block .list-product {
    padding-top: 0.1rem;
  }
  .section-device-content .product-block .product-item {
    margin-bottom: 0.16rem;
  }
  .section-device-content .product-block .list-sub-item {
    padding-top: 0.27rem;
  }
  .section-device-content .product-block .sub-item {
    padding-bottom: 0.03rem;
  }
  .section-device-content .product-block .sub-title {
    font-size: 0.16rem;
  }
  .section-device-content .product-block .product-link {
    padding: 0.16rem 0.16rem 0;
    min-height: 1.73rem;
  }
  .ios .section-device-content .product-block .product-link {
    padding-bottom: 0.16rem;
  }
  .section-device-content .product-block .product-link .img {
    margin-top: 0;
    width: 1.4rem;
    height: 1.4rem;
  }
  .section-device-content .product-block .product-link .content {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    margin-left: 0.08rem;
    padding-top: 0;
  }
  .section-device-content .product-block .product-link .product-title {
    font-size: 0.18rem;
    line-height: 1;
    min-height: auto;
  }
  .section-device-content .product-block .product-link .text {
    margin-top: 0.07rem;
    width: 100%;
    font-size: 0.12rem;
    line-height: 1.4;
    color: #001255;
  }
  .section-device-content .product-block .product-link .btn {
    display: flex;
    width: 100%;
    margin: 0.12rem 0 0.24rem;
    position: static;
    align-self: flex-end;
    justify-content: flex-end;
  }
  .ios .section-device-content .product-block .product-link .btn {
    margin-bottom: 0.08rem;
  }

  .js-fixed-nav {
    position: relative;
    z-index: 990;
  }
  .js-fixed-nav .compact-block {
    position: absolute;
    left: 2px;
    top: 0;
  }
  .js-fixed-nav.fixed .compact-block {
    position: fixed;
    left: 14px;
    z-index: 999;
    background: #fff;
  }
}
.block-termination-intro {
  padding-top: 68px;
}
.block-termination-intro .wrapper {
  display: flex;
}
.block-termination-intro .selection-block .item {
  padding-bottom: 8px;
}
.block-termination-intro .selection-block .item-select {
  display: flex;
  margin-bottom: 13px;
}
.block-termination-intro .selection-block .text {
  font-size: 12px;
  font-weight: 500;
  line-height: 1.55;
  color: #001255;
}
.block-termination-intro .selection-block .link-select {
  display: flex;
  width: 240px;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.5;
  color: #656f9a;
  background-color: #f8f8f8;
  transition: all 0.3s;
}
.block-termination-intro .selection-block .link-select.active {
  font-weight: bold;
  color: #FFF;
  background-color: #001255;
  transition: all 0.3s;
}
.block-termination-intro .selection-block .btn-warranty {
  display: flex;
  width: 240px;
  min-height: 38px;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  font-weight: bold;
  line-height: 2;
  color: #001255;
  border: 1px solid #001255;
}
.block-termination-intro .description {
  flex: 1;
  margin-top: -4px;
  padding: 0 60px 0 44px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.75;
  color: #000c38;
}
.block-termination-intro .img {
  margin-right: 55px;
  flex-basis: 275px;
  height: 297px;
}

.section-termination-feature {
  margin-top: 61px;
  padding-top: 68px;
  background-color: #f8f8f8;
}
.section-termination-feature .list-item {
  display: flex;
  flex-wrap: wrap;
  margin-top: 48px;
  padding-bottom: 30px;
}
.section-termination-feature .item {
  width: 280px;
  padding: 20px 20px 23px;
  margin-bottom: 30px;
  background-color: #FFF;
  margin-right: 26.5px;
}
.section-termination-feature .item:nth-child(4n) {
  margin-right: 0;
}
.section-termination-feature .item-title {
  min-height: 42px;
  margin: 4px 0 14px;
  font-size: 18px;
  font-weight: bold;
  line-height: 1.22;
  color: #001255;
}
.section-termination-feature .text {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.6;
  color: #000c38;
}

.section-termination-details {
  margin-top: 50px;
  padding-top: 58px;
}
.section-termination-details .table-details {
  margin-top: 63px;
  border-top: 1px solid #b1b7cc;
}
.section-termination-details .table-details tr {
  border-bottom: 1px solid #b1b7cc;
}
.section-termination-details .table-details th {
  width: 380px;
  font-size: 16px;
  font-weight: bold;
  line-height: 2;
  color: #001255;
  vertical-align: text-top;
}
.section-termination-details .table-details td {
  padding: 25px 0;
  font-size: 16px;
  font-weight: 500;
  line-height: 2;
  color: #000c38;
  vertical-align: text-top;
}
.section-termination-details .table-details td .label {
  display: block;
  width: 100%;
  font-weight: bold;
  line-height: 1.85;
}

.section-termination-download {
  margin-top: 60px;
  padding: 68px 0 17px;
}
.section-termination-download .intro {
  margin: 47px 0 33px;
  font-size: 16px;
  font-weight: bold;
  line-height: 1.63;
  color: #001255;
}
.section-termination-download .content {
  display: flex;
  align-items: flex-start;
  padding: 60px;
  border-radius: 4px;
  background-color: #f8f8f8;
}
.section-termination-download .img-box {
  width: 440px;
  padding: 32px 20px 20px;
  background-color: #FFF;
}
.section-termination-download .img-box img {
  width: 190px;
  height: 270px;
  margin: 0 auto;
}
.section-termination-download .sub-title {
  margin: 16px 0 6px;
  font-size: 18px;
  font-weight: bold;
  line-height: 1.22;
  text-align: center;
  color: #001255;
}
.section-termination-download .description {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.63;
  text-align: center;
  color: #001255;
}
.section-termination-download .form-checkbox .mwform-checkbox-field {
  opacity: 1;
  visibility: visible;
}
.section-termination-download .form-checkbox input {
  opacity: 0;
}
.section-termination-download .form-checkbox .mwform-checkbox-field-text {
  color: #001255;
  position: relative;
  cursor: pointer;
}
.section-termination-download .form-checkbox .mwform-checkbox-field-text:before {
  content: "";
  width: 16px;
  height: 16px;
  border-radius: 2px;
  border: solid 1px #b1b7cc;
  background-color: #FFF;
  position: absolute;
  top: 0;
  left: -25px;
}
.section-termination-download .form-checkbox .mwform-checkbox-field-text:after {
  content: "";
  display: block;
  width: 10px;
  height: 16px;
  border: solid #001255;
  border-width: 0 4px 4px 0;
  border-radius: 1px;
  transform: rotate(45deg);
  opacity: 0;
  visibility: hidden;
  position: absolute;
  left: -20px;
  bottom: 5px;
}

.form-download {
  flex: 1;
  padding: 0px 0 0 40px;
}
.form-download .wpcf7-form-control-wrap {
  width: 100%;
}
.form-download .form-row {
  margin-bottom: 14px;
}
.form-download .form-row:last-of-type {
  margin-bottom: 0;
}
.form-download .form-label {
  display: block;
  width: 100%;
  padding-bottom: 4px;
  font-size: 14px;
  font-weight: bold;
  line-height: 1.43;
  color: #001255;
}
.form-download .form-input {
  display: flex;
  width: 600px;
  height: 44px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.71;
  color: #b1b7cc;
}
.form-download .form-input .mw-element {
  width: 100%;
  height: 100%;
  padding: 0 20px;
  background-color: #ecf4fc;
}
.form-download .form-input .mw-element::placeholder {
  font-size: 14px;
  font-weight: 500;
  color: #b1b7cc;
  line-height: 44px;
}
.form-download .text,
.form-download .link {
  display: inline-block;
  margin: 8px 0 36px;
  text-align: center;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.67;
  color: #656f9a;
}
.form-download .link {
  margin: 0;
  text-decoration: underline;
}
.form-download .mwform-select:required:invalid {
  color: #b1b7cc;
}
.form-download .mwform-select {
  color: #001255;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: url("../img/common/ico_arrow_down.svg") 93% 50%/13px 7px no-repeat;
}
.form-download .mwform-select::-ms-expand {
  display: none;
}
.form-download .mwform-select option {
  color: #000;
}
.form-download .mwform-select option[disabled] {
  display: none;
}
.form-download .form-checkbox {
  display: block;
  font-size: 12px;
  font-weight: 500;
  padding-left: 12px;
  line-height: 1.67;
  color: #001255;
  text-align: center;
}
.form-download .form-checkbox input {
  opacity: 0;
  visibility: hidden;
}
.form-download .is_agree {
  display: block;
  text-align: center;
  margin-bottom: 20px;
}
.form-download .is_agree input:checked + .wpcf7-list-item-label:after {
  opacity: 1;
  visibility: visible;
}
.form-download .is_agree input {
  opacity: 0;
}
.form-download .is_agree .wpcf7-list-item-label {
  color: #001255;
  position: relative;
  cursor: pointer;
}
.form-download .is_agree .wpcf7-list-item-label:before {
  content: "";
  width: 16px;
  height: 16px;
  border-radius: 2px;
  border: solid 1px #b1b7cc;
  background-color: #FFF;
  position: absolute;
  top: 0;
  left: -25px;
}
.form-download .is_agree .wpcf7-list-item-label:after {
  content: "";
  display: block;
  width: 10px;
  height: 16px;
  border: solid #001255;
  border-width: 0 4px 4px 0;
  border-radius: 1px;
  transform: rotate(45deg);
  opacity: 0;
  visibility: hidden;
  position: absolute;
  left: -20px;
  bottom: 5px;
}
.form-download .btn-submit {
  display: flex;
  margin: 5px auto 0;
  width: 224px;
  height: 56px;
  padding-right: 53px;
  align-items: center;
  justify-content: center;
  color: #FFF;
  font-size: 14px;
  font-weight: 900;
  line-height: 1.43;
  background: #001255 url("../img/top/ico_arrow_next_white.png") 77% center/40px 7px no-repeat;
  cursor: pointer;
  border: 1px solid #001255;
  opacity: 1 !important;
  transition: all 0.2s;
}

@media print, (min-width: 768px) {
  .form-download .btn-submit:hover {
    background-image: url(../img/top/ico_arrow_next_white_on.png);
    background-color: #fff;
    color: #001255;
  }

  .wrap-table-seprate {
    margin: 0 -50px;
  }
  .wrap-table-seprate table {
    border-collapse: separate;
    border-spacing: 50px 0;
    border-top: 0 !important;
  }
  .wrap-table-seprate table tr {
    border-bottom: 0;
  }
  .wrap-table-seprate table tr:first-child th, .wrap-table-seprate table tr:first-child td {
    border-top: 1px solid #b1b7cc;
  }
  .wrap-table-seprate table th, .wrap-table-seprate table td {
    border-bottom: 1px solid #b1b7cc;
  }
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .block-termination-intro .selection-block .btn-warranty {
    padding-top: 6px;
  }

  .form-download .form-input .mw-element {
    padding-top: 3px;
  }
}
@media only screen and (max-width: 767px) {
  .block-termination-intro {
    padding-top: 0.23rem;
  }
  .block-termination-intro .wrapper {
    flex-wrap: wrap;
    padding: 0 0.12rem;
  }
  .block-termination-intro .selection-block {
    order: 1;
    width: 100%;
    margin-top: 0.3rem;
  }
  .block-termination-intro .selection-block .item {
    padding-bottom: 0;
  }
  .block-termination-intro .selection-block .text {
    font-size: 0.12rem;
    line-height: 1.5;
    color: #000c38;
  }
  .block-termination-intro .selection-block .list-select {
    display: flex;
    flex-wrap: wrap;
    margin-top: 0.02rem;
  }
  .block-termination-intro .selection-block .item-select {
    margin-right: 0.105rem;
  }
  .block-termination-intro .selection-block .item-select:last-child {
    margin-right: 0;
  }
  .block-termination-intro .selection-block .link-select {
    text-align: center;
    width: 1.1rem;
    height: 0.54rem;
    font-size: 0.1rem;
    line-height: 1.2;
  }
  .block-termination-intro .selection-block .link-select.is-big {
    width: 1.7rem;
    height: 0.38rem;
    font-size: 12px;
    font-weight: 500;
    line-height: 1.5;
  }
  .block-termination-intro .selection-block .link-select.active {
    font-weight: 500;
  }
  .block-termination-intro .selection-block .btn-warranty {
    margin-top: 0.06rem;
    width: 2.39rem;
    height: 0.48rem;
    font-size: 0.16rem;
    line-height: 1.75;
  }
  .block-termination-intro .description {
    order: 2;
    margin-top: 30px;
    padding: 0;
    font-size: 0.16rem;
    font-weight: 500;
    line-height: 1.5;
    color: #001255;
  }
  .block-termination-intro .img {
    flex-basis: 100%;
    margin: 0;
    height: auto;
  }
  .block-termination-intro .img img {
    width: 1.9rem;
    height: 2.05rem;
    margin: 0 auto;
  }

  .section-termination-feature {
    margin-top: 0.51rem;
    padding-top: 0.62rem;
  }
  .section-termination-feature .list-item {
    display: block;
    margin-top: 0.41rem;
    padding-bottom: 0.46rem;
  }
  .section-termination-feature .item {
    width: 2.8rem;
    min-height: 2.35rem;
    margin: 0 auto 0.15rem;
    padding: 0.2rem 0.2rem 0.23rem;
  }
  .section-termination-feature .item:nth-child(4n) {
    margin-right: auto;
  }
  .section-termination-feature .item-title {
    font-size: 0.18rem;
    margin: 0.04rem 0 0.15rem;
  }
  .section-termination-feature .text {
    font-size: 0.14rem;
    line-height: 1.6;
  }

  .section-termination-details {
    padding-top: 0.62rem;
    margin-top: 0;
  }
  .section-termination-details .table-details {
    width: 100%;
    margin-top: 0.73rem;
  }
  .section-termination-details .table-details tr:first-child td,
  .section-termination-details .table-details tr:nth-child(2) td {
    padding-top: 0;
  }
  .section-termination-details .table-details th,
  .section-termination-details .table-details td {
    display: block;
    width: 100%;
  }
  .section-termination-details .table-details th {
    padding: 0.28rem 0 0;
  }
  .section-termination-details .table-details td {
    padding: 0.15rem 0 0.24rem;
  }

  .section-termination-download {
    margin-top: 0;
    padding: 0.62rem 0 0.4rem;
    overflow: hidden;
  }
  .section-termination-download .intro {
    margin: 0.25rem 0 0.33rem;
    font-size: 0.14rem;
    line-height: 1.71;
  }
  .section-termination-download .content {
    display: block;
    width: calc(100% + .24rem);
    margin: 0 -0.12rem;
    padding: 40px 26px;
  }
  .section-termination-download .img-box {
    width: 3rem;
    padding: 0.15rem 0 0;
  }
  .section-termination-download .img-box img {
    width: 1.9rem;
    height: 2.7rem;
  }
  .section-termination-download .sub-title {
    width: calc(100% + .28rem);
    margin: 0.15rem -0.14rem 0;
    padding-top: 0.16rem;
    font-size: 0.18rem;
    background-color: #f8f8f8;
  }
  .section-termination-download .description {
    width: calc(100% + .28rem);
    margin: 0.03rem -0.14rem 0;
    font-size: 0.16rem;
    background-color: #f8f8f8;
  }
  .section-termination-download .form-checkbox .is_agree .wpcf7-list-item-label {
    font-size: 0.12rem;
  }
  .section-termination-download .form-checkbox .mwform-checkbox-field-text {
    padding-top: 0.03rem;
  }
  .section-termination-download .form-checkbox .mwform-checkbox-field-text:before {
    width: 0.16rem;
    height: 0.16rem;
    left: -0.25rem;
  }
  .section-termination-download .form-checkbox .mwform-checkbox-field-text:after {
    width: 0.1rem;
    height: 0.16rem;
    border-width: 0 0.04rem 0.04rem 0;
    left: -0.2rem;
    bottom: 0.05rem;
  }

  .form-download {
    width: calc(100% + .28rem);
    margin: 0.22rem -0.14rem 0;
    padding: 0;
  }
  .form-download .is_agree .wpcf7-list-item-label {
    font-size: 0.12rem;
    padding-top: 0.03rem;
  }
  .form-download .is_agree .wpcf7-list-item-label:before {
    width: 0.16rem;
    height: 0.16rem;
    left: -0.25rem;
    top: 0.03rem;
  }
  .form-download .is_agree .wpcf7-list-item-label:after {
    width: 0.1rem;
    height: 0.16rem;
    border-width: 0 0.04rem 0.04rem 0;
    left: -0.2rem;
    bottom: 0.05rem;
  }
  .form-download .form-row {
    margin-bottom: 0.14rem;
  }
  .form-download .form-input {
    width: 100%;
    height: 0.44rem;
    font-size: 0.14rem;
  }
  .form-download .form-input .mw-element {
    padding: 0 0.2rem;
  }
  .form-download .form-input .mw-element::placeholder {
    font-size: 0.14rem;
    line-height: normal;
  }
  .form-download .form-label {
    padding-bottom: 0.04rem;
    font-size: 0.14rem;
  }
  .form-download .text,
  .form-download .link {
    margin: 0.23rem 0 0.34rem;
    font-size: 0.12rem;
    text-align: left;
  }
  .form-download .link {
    margin: 0;
  }
  .form-download .mwform-select {
    background: url("../img/common/ico_arrow_down.svg") 95% 50%/0.13rem 0.07rem no-repeat;
  }
  .form-download .form-checkbox {
    font-size: 0.12rem;
    padding-left: 0.12rem;
  }
  .form-download .wpcf7-list-item-label {
    padding-top: 0.03rem;
  }
  .form-download .wpcf7-list-item-label:before {
    width: 0.16rem;
    height: 0.16rem;
    left: -0.25rem;
  }
  .form-download .wpcf7-list-item-label:after {
    width: 0.1rem;
    height: 0.16rem;
    border-width: 0 0.04rem 0.04rem 0;
    left: -0.2rem;
    bottom: 0.05rem;
  }
  .form-download .btn-submit {
    margin: 0.05rem auto 0;
    width: 2.24rem;
    height: 0.56rem;
    padding-right: 0.53rem;
    font-size: 0.14rem;
    background-size: 0.4rem 0.07rem;
  }
}
.section-about-content {
  overflow: hidden;
}
.section-about-content .title {
  padding-bottom: 29px;
  margin-bottom: 40px;
  font-size: 40px;
  font-weight: bold;
  line-height: 0.6;
  color: #001255;
  position: relative;
}
.section-about-content .title:after {
  content: "";
  display: block;
  width: 40px;
  height: 4px;
  background-color: #fcde62;
  position: absolute;
  top: 100%;
  left: 0;
}
.section-about-content .text {
  font-size: 16px;
  font-weight: bold;
  line-height: 2;
  color: #001255;
}
.section-about-content .label {
  font-size: 100px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 10px;
  color: #f8f8f8;
  position: absolute;
}

.section-about-knowledge {
  margin-top: 127px;
  padding-bottom: 58px;
}
.section-about-knowledge .wrapper {
  display: flex;
}
.section-about-knowledge .img-box {
  flex-basis: calc(56.5% + 36px);
  margin-left: -36px;
  position: relative;
}
.section-about-knowledge .img-box:after {
  content: "";
  display: block;
  width: 654px;
  height: 319px;
  background: url("../img/about/bg_knowledge.png") center/cover no-repeat;
  position: absolute;
  top: 38px;
  left: 10px;
}
.section-about-knowledge .img-box img {
  position: relative;
  z-index: 3;
  width: 713px;
}
.section-about-knowledge .content {
  flex: 1;
  padding: 20px 0 0 54px;
  position: relative;
}
.section-about-knowledge .label {
  left: 54px;
  bottom: 48px;
}

.section-about-experience {
  padding: 121px 0 119px;
  background: url("../img/about/bg_experience.jpg") center/cover no-repeat;
}
.section-about-experience .wrapper {
  display: flex;
}
.section-about-experience .content {
  padding-top: 96px;
  flex-basis: 576px;
  position: relative;
}
.section-about-experience .content .label {
  left: 0;
  bottom: -48px;
}
.section-about-experience .data-block {
  display: flex;
  flex: 1;
  position: relative;
  z-index: 3;
}
.section-about-experience .data-block .text {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.57;
  color: #001255;
}
.section-about-experience .data-block .highlight {
  font-size: 24px;
  font-weight: bold;
  line-height: 1.75;
  color: #001255;
}
.section-about-experience .data-block .value {
  font-size: 100px;
  font-weight: bold;
  line-height: 0.42;
  color: #001255;
}
.section-about-experience .data-block .main-data {
  flex-basis: 300px;
  min-height: 430px;
  padding: 97px 0 0 38px;
  background-color: rgba(255, 255, 255, 0.8);
}
.section-about-experience .data-block .main-data .value {
  margin-top: 58px;
}
.section-about-experience .data-block .main-data .value .highlight {
  margin-left: 7px;
}
.section-about-experience .data-block .main-data .text {
  margin-top: 15px;
  padding-right: 40px;
}
.section-about-experience .data-block .list-data {
  flex: 1;
  padding-left: 25px;
}
.section-about-experience .data-block .list-data .item-data {
  padding: 21px 38px 0 38px;
  min-height: 202px;
  background-color: rgba(255, 255, 255, 0.8);
  margin-bottom: 25px;
}
.section-about-experience .data-block .list-data .item-data .value {
  margin-top: 12px;
  text-align: right;
}
.section-about-experience .data-block .list-data .item-data .text {
  text-align: right;
}
.section-about-experience .data-block .list-data .item-data:last-child {
  margin-bottom: 0;
}
.section-about-experience .data-block .list-data .item-data:last-child .value {
  margin-top: 35px;
}
.section-about-experience .data-block .list-data .item-data:last-child .text {
  margin-right: 13px;
}

.section-about-confidence {
  padding: 161px 0 160px;
}
.section-about-confidence .wrapper {
  display: flex;
}
.section-about-confidence .img-box {
  flex-basis: 400px;
  box-shadow: 0 1px 20px 0 rgba(0, 18, 85, 0.16);
}
.section-about-confidence .content {
  flex: 1;
  margin: 21px 0 0 100px;
  position: relative;
}
.section-about-confidence .content .label {
  bottom: -51px;
  left: 0;
}

.section-about-challenge {
  position: relative;
  overflow: hidden;
}
.section-about-challenge:after {
  content: "";
  display: block;
  width: 1440px;
  height: 100%;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background: url("../img/about/bg_challenge.jpg") center/cover no-repeat;
  z-index: -1;
}
.section-about-challenge .wrapper {
  padding: 160px 0;
  display: flex;
  position: relative;
}
.section-about-challenge .wrapper:before, .section-about-challenge .wrapper:after {
  content: "";
  display: block;
  width: 50vw;
  height: 100%;
  position: absolute;
  left: calc(100% + 120px);
  top: 0;
  background-color: #F8F8FA;
}
.section-about-challenge .wrapper:after {
  left: auto;
  right: calc(100% + 120px);
}
.section-about-challenge .content {
  padding-top: 40px;
  position: relative;
  flex: 1;
}
.section-about-challenge .content .label {
  bottom: -33px;
  color: #dbdeeb;
}
.section-about-challenge .philosophy-block {
  flex-basis: 544px;
  height: 312px;
  padding-top: 72px;
  background: rgba(228, 232, 245, 0.6);
  position: relative;
  z-index: 3;
}
.section-about-challenge .philosophy-block .list-item {
  margin-top: 12px;
}
.section-about-challenge .philosophy-block .sub-title {
  font-size: 20px;
  font-weight: bold;
  line-height: 1.8;
  text-align: center;
  color: #000c38;
}
.section-about-challenge .philosophy-block .name,
.section-about-challenge .philosophy-block .value {
  font-size: 16px;
  font-weight: bold;
  line-height: 2;
  color: #000c38;
}
.section-about-challenge .philosophy-block .name {
  width: 47%;
  display: inline-block;
  padding-right: 7px;
  letter-spacing: 1.92px;
  text-align: right;
}

.section-about-support {
  padding: 100px 0 79px;
  background: #f8f8f8;
}
.section-about-support .wrapper {
  display: flex;
}
.section-about-support .img-box {
  flex-basis: 600px;
}
.section-about-support .content {
  flex: 1;
  padding: 90px 0 0 80px;
  position: relative;
}
.section-about-support .content .label {
  bottom: -5px;
  color: #FFF;
}

.section-about-case {
  padding: 148px 0 23px;
}
.section-about-case .list-item {
  width: 800px;
  margin: 68px auto;
}
.section-about-case .item {
  margin-bottom: 18.5px;
  border: 1px solid #001255;
  background-color: #FFF;
}
.section-about-case .link {
  display: flex;
  width: 100%;
  padding: 24px 54px 20px 24px;
}
.section-about-case .img-box {
  display: flex;
  width: 180px;
  height: 180px;
  padding: 15px;
  background-color: #f8f8f8;
}
.section-about-case .img {
  display: flex;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.section-about-case .img img {
  transform: scale(1);
  transition: all 0.3s;
}
.section-about-case .item-content {
  flex: 1;
  padding-left: 39px;
  position: relative;
}
.section-about-case .item-title {
  display: flex;
  align-items: flex-start;
  font-size: 22px;
  font-weight: bold;
  line-height: 1;
  color: #001255;
}
.section-about-case .item-title span {
  width: 62px;
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 1.2px;
  color: #656f9a;
}
.section-about-case .text {
  min-height: 84px;
  margin-top: 22px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.57;
  color: #000c38;
}
.section-about-case .label {
  display: flex;
  margin-top: 24px;
  width: 78px;
  height: 30px;
  align-items: center;
  justify-content: center;
  background-color: #ecf4fc;
  font-size: 12px;
  font-weight: bold;
  line-height: 1.67;
  color: #001255;
}
.section-about-case .btn-download {
  display: flex;
  width: 224px;
  height: 56px;
  padding-right: 57px;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  font-weight: bold;
  line-height: 1.44;
  color: #FFF;
  position: absolute;
  right: 0;
  bottom: 3px;
  background: #001255 url("../img/top/ico_arrow_next_white.png") 80% 45%/50px 7px no-repeat;
  border: 1px solid #001255;
  opacity: 1 !important;
  transition: all 0.2s;
}

@media print, (min-width: 768px) {
  .section-about-case .link.is-download:hover img {
    transform: scale(1.05);
    transition: all 0.3s;
  }
  .section-about-case .link.is-download:hover .btn-download {
    background-color: #fff;
    background-image: url("../img/top/ico_arrow_next_white_on.png");
    color: #001255;
  }
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .section-about-experience .data-block .list-data:last-child .item-data .value {
    white-space: nowrap;
    margin-left: -16px;
  }
}
@media only screen and (max-width: 767px) {
  .section-about-content .wrapper {
    position: relative;
  }
  .section-about-content .title {
    font-size: 0.22rem;
    line-height: 1.09;
    letter-spacing: 1.12px;
    padding-bottom: 0.17rem;
    margin-bottom: 0.19rem;
  }
  .section-about-content .title:after {
    width: 0.32rem;
    height: 0.02rem;
  }
  .section-about-content .text {
    font-size: 0.14rem;
    line-height: 1.75;
    letter-spacing: 0.7px;
  }
  .section-about-content .label {
    font-size: 0.57rem;
    line-height: 1.43;
    letter-spacing: 0;
    transform: rotate(90deg);
  }

  .section-about-knowledge {
    margin-top: 0;
    padding: 0 0 0.8rem;
  }
  .section-about-knowledge .wrapper {
    display: flex;
    flex-wrap: wrap;
    padding-top: 1.05rem;
  }
  .section-about-knowledge .img-box {
    padding-top: 0.18rem;
    flex-basis: calc(100% + .48rem);
    order: 1;
    margin: 0 -0.24rem;
  }
  .section-about-knowledge .img-box:after {
    display: none;
  }
  .section-about-knowledge .img-box img {
    width: 100%;
  }
  .section-about-knowledge .content {
    position: static;
    padding: 0;
  }
  .section-about-knowledge .label {
    right: -1.32rem;
    top: 2.33rem;
    left: auto;
    bottom: auto;
    letter-spacing: -1px;
    opacity: 0.1;
    color: #b1b7cc;
  }

  .section-about-experience {
    padding: 0.1rem 0 1rem;
  }
  .section-about-experience .wrapper {
    display: block;
    position: relative;
  }
  .section-about-experience .content {
    position: static;
  }
  .section-about-experience .content .label {
    left: -1.74rem;
    bottom: auto;
    top: 6.63rem;
    line-height: 1.44;
    letter-spacing: 5.7px;
  }
  .section-about-experience .data-block {
    display: block;
    width: calc(100% + .12rem);
    margin: 0.8rem -0.12rem 0 0;
    padding-left: 0.73rem;
  }
  .section-about-experience .data-block .text {
    font-size: 0.14rem;
    line-height: 1.29;
    text-align: right;
  }
  .section-about-experience .data-block .highlight {
    font-size: 0.2rem;
    line-height: 1.9;
    text-align: right;
  }
  .section-about-experience .data-block .value {
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    font-size: 0.8rem;
    text-align: right;
    line-height: 0.5;
  }
  .section-about-experience .data-block .main-data {
    min-height: 2.41rem;
    padding: 0.2rem 0.24rem;
    margin-bottom: 0.16rem;
  }
  .section-about-experience .data-block .main-data .value {
    margin: 0.58rem 0 0.27rem;
  }
  .section-about-experience .data-block .main-data .value .highlight {
    font-size: 0.24rem;
    margin-left: 0.08rem;
    line-height: 0;
  }
  .section-about-experience .data-block .main-data .text {
    margin-top: 0;
    padding-right: 0;
    letter-spacing: 0;
  }
  .section-about-experience .data-block .list-data {
    padding-left: 0;
  }
  .section-about-experience .data-block .list-data .item-data {
    min-height: 1.7rem;
    padding: 0.21rem 0.23rem 0 0.24rem;
    margin-bottom: 0.16rem;
  }
  .section-about-experience .data-block .list-data .item-data .text {
    letter-spacing: 0;
  }
  .section-about-experience .data-block .list-data .item-data .value {
    margin: 0.03rem 0 0.24rem;
  }
  .section-about-experience .data-block .list-data .item-data .value .highlight {
    font-size: 0.24rem;
    line-height: 0;
  }
  .section-about-experience .data-block .list-data .item-data:last-child .text {
    margin-right: 0;
  }
  .section-about-experience .data-block .list-data .item-data:last-child .value {
    margin-top: 0.03rem;
    line-height: 1;
  }
  .section-about-experience .data-block .list-data .item-data:last-child .value .highlight {
    font-size: 0.24rem;
    line-height: 1.3;
  }

  .section-about-confidence {
    padding: 1.2rem 0;
  }
  .section-about-confidence .wrapper {
    flex-wrap: wrap;
  }
  .section-about-confidence .img-box {
    order: 1;
    margin-top: 0.57rem;
    flex-basis: 75.3%;
  }
  .section-about-confidence .content {
    flex-basis: 100%;
    margin: 0;
  }
  .section-about-confidence .content .label {
    line-height: 1.43;
    bottom: -1.12rem;
    left: 0.69rem;
    letter-spacing: 0.075rem;
  }
  .section-about-confidence .title {
    line-height: 1.45;
  }

  .section-about-challenge {
    padding: 1.02rem 0 1.01rem;
  }
  .section-about-challenge:after {
    width: 3.75rem;
    height: 6.73rem;
    background: url("../img/about/sp/bg_challenge.png") center/cover no-repeat;
    transform: translateX(0);
    left: 0;
  }
  .section-about-challenge .wrapper {
    display: block;
    padding: 0 0.4rem 0 1.22rem;
  }
  .section-about-challenge .title {
    line-height: 1.45;
  }
  .section-about-challenge .content {
    padding-top: 0;
  }
  .section-about-challenge .content .label {
    font-size: 0.6rem;
    right: 0.62rem;
    top: 1.79rem;
    bottom: auto;
    letter-spacing: 0.06rem;
  }
  .section-about-challenge .philosophy-block {
    height: auto;
    min-height: 2.36rem;
    margin-top: 0.4rem;
    padding: 0.22rem 0 0 0.12rem;
  }
  .section-about-challenge .philosophy-block .list-item {
    margin-top: 0.12rem;
  }
  .section-about-challenge .philosophy-block .item {
    margin-bottom: 0.09rem;
  }
  .section-about-challenge .philosophy-block .sub-title {
    font-size: 0.18rem;
    line-height: 2;
    text-align: left;
  }
  .section-about-challenge .philosophy-block .name,
  .section-about-challenge .philosophy-block .value {
    display: block;
    width: 100%;
    font-size: 0.12rem;
    line-height: 1.67;
    text-align: left;
    letter-spacing: 0;
  }
  .section-about-challenge .philosophy-block .value {
    line-height: 2;
  }

  .section-about-support {
    padding: 1.08rem 0 1.44rem;
    position: relative;
  }
  .section-about-support .wrapper {
    flex-wrap: wrap;
    position: static;
  }
  .section-about-support .content {
    flex-basis: 100%;
    padding: 0;
    position: static;
  }
  .section-about-support .content .label {
    transform: rotate(0);
    bottom: 0;
    left: 0.3rem;
    letter-spacing: 0.05rem;
    line-height: 0.9;
  }
  .section-about-support .img-box {
    order: 1;
    margin-top: 0.58rem;
    margin-left: -0.24rem;
  }

  .section-about-case {
    padding: 1rem 0 0.23rem;
  }
  .section-about-case .wrapper {
    padding: 0 0.12rem;
  }
  .section-about-case .list-item {
    width: 100%;
    margin-top: 0.6rem;
  }
  .section-about-case .item {
    margin-bottom: 0.16rem;
  }
  .section-about-case .link {
    display: block;
    padding: 0.24rem 0.12rem 0.17rem;
    position: relative;
  }
  .section-about-case .img-box {
    width: 1.8rem;
    height: 1.8rem;
    padding: 0.15rem;
  }
  .section-about-case .item-content {
    position: static;
    padding: 0;
  }
  .section-about-case .item-title {
    display: flex;
    max-width: 1.3rem;
    flex-wrap: wrap;
    font-size: 0.2rem;
    line-height: 1.2;
    position: absolute;
    top: 0.24rem;
    left: 2.03rem;
  }
  .section-about-case .item-title span {
    display: block;
    width: 100%;
    margin-bottom: 0.16rem;
    font-size: 0.12rem;
    line-height: 1.3;
  }
  .section-about-case .text {
    min-height: auto;
    margin-top: 0.13rem;
    font-size: 0.14rem;
    line-height: 1.6;
  }
  .section-about-case .label {
    width: 0.5rem;
    height: 0.22rem;
    font-size: 0.1rem;
    line-height: 1.7;
    position: absolute;
    top: 1.58rem;
    left: 2.03rem;
  }
  .section-about-case .btn-download {
    width: 2.24rem;
    height: 0.56rem;
    padding-right: 0.59rem;
    margin: 0.26rem auto 0.06rem;
    font-size: 0.14rem;
    line-height: 1.43;
    position: static;
    background-size: 0.5rem 0.07rem;
    background-position: 78% 50%;
  }
}
.section-seminar-content {
  margin-bottom: 148px;
}
.section-seminar-content .list-event {
  display: flex;
  flex-wrap: wrap;
  margin-top: 74px;
}

@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .section-seminar-content .pager .next {
    padding-bottom: 8px;
  }
}
@media only screen and (max-width: 767px) {
  .section-seminar-content {
    margin-bottom: 0.68rem;
  }
  .section-seminar-content .list-event {
    margin-top: 0.25rem;
  }
  .section-seminar-content .item-event {
    width: 100%;
    margin-bottom: 0.24rem;
    padding-bottom: 0.155rem;
  }
  .section-seminar-content .item-event:last-child {
    margin-bottom: 0;
  }
  .section-seminar-content .item-event .link {
    right: 0.15rem;
  }
}
.section-detail-content {
  padding-top: 109px;
  position: relative;
}
.section-detail-content.page-news .list-heading {
  margin-top: 56px;
}
.section-detail-content.page-news .step-flow .btn-page {
  width: 224px;
  background-position: 77% 47%;
}
.section-detail-content.page-news .base-list.style-decimal {
  margin-top: 8px;
}
.section-detail-content:after {
  content: "";
  display: block;
  width: 100%;
  height: 262px;
  background: #001255 url("../img/top/bg_banner_03.png") 102.5% 40%/540px 284px no-repeat;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.section-detail-content .wrapper {
  background-color: #FFF;
  width: 1000px;
  padding: 80px 80px 70px;
  position: relative;
  box-shadow: 0 3px 10px 0 rgba(0, 12, 56, 0.05);
}
.section-detail-content .intro {
  position: absolute;
  right: 0;
  top: -37px;
}
.section-detail-content .list-label {
  display: flex;
  align-items: center;
}
.section-detail-content .list-label .label {
  display: flex;
  width: 100px;
  height: 24px;
  margin-left: 8px;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: bold;
  line-height: 1.42;
  color: #001255;
  background-color: #FFF;
}
.section-detail-content .list-label .time {
  width: 150px;
  padding-left: 23px;
  font-size: 16px;
  font-weight: bold;
  line-height: 1.69;
  color: #ffffff;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.6);
}
.section-detail-content .title {
  padding-bottom: 42px;
  margin-bottom: 36px;
  font-size: 32px;
  font-weight: bold;
  line-height: 1.44;
  color: #000c38;
  border-bottom: 1px solid #b1b7cc;
}
.section-detail-content .title + .text {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.63;
  color: #000c38;
}
.section-detail-content .table-detail {
  width: 100%;
  margin-top: 14px;
  padding: 26px 32px;
  background-color: #f7fafd;
}
.section-detail-content .table-detail .table {
  width: 100%;
}
.section-detail-content .table-detail th {
  width: 73px;
  vertical-align: text-top;
  font-size: 16px;
  font-weight: bold;
  line-height: 1.44;
  color: #001255;
  position: relative;
}
.section-detail-content .table-detail th:after {
  content: "";
  display: block;
  width: 1px;
  height: 16px;
  border-right: 1px solid #b1b7cc;
  position: absolute;
  top: 7px;
  right: 0;
}
.section-detail-content .table-detail td {
  vertical-align: text-top;
  padding-top: 1px;
  padding-left: 13px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.88;
  color: #000c38;
}
.section-detail-content .table-detail .has-link {
  position: relative;
  padding-bottom: 23px;
}
.section-detail-content .table-detail .has-link .link {
  font-size: 16px;
  line-height: 1.69;
  font-weight: normal;
  color: #7c6e00;
  position: absolute;
  left: 13px;
  bottom: 3px;
  text-decoration: underline;
}
.section-detail-content .table-detail .has-link .link.has-ico {
  padding-right: 16px;
  margin-right: 5px;
  background: url(../img/common/ico_link_blank.svg) right 45%/13px 12px no-repeat;
}
.section-detail-content .table-detail .has-link .link.has-ico:after {
  content: "";
  width: 25px;
  height: 1px;
  border-bottom: 1px solid #7c6e00;
  position: absolute;
  left: 85%;
  bottom: 6px;
}
.section-detail-content .list-heading {
  margin-top: 38px;
}
.section-detail-content .list-heading .item:last-child {
  margin-bottom: 18px;
}
.section-detail-content .base-list {
  margin-bottom: 0;
}
.section-detail-content .table-vertical {
  margin-top: 51px;
}
.section-detail-content .table-vertical td {
  padding: 8px 16px 6px;
}
.section-detail-content .table-horizontal {
  margin-top: 60px;
}
.section-detail-content .table-horizontal th {
  width: 16.8%;
}
.section-detail-content .table-horizontal td {
  padding: 0 16px;
}
.section-detail-content .btn-join {
  text-align: center;
  margin-top: 105px;
}
.section-detail-content .btn-join span {
  font-size: 16px;
  font-weight: bold;
  line-height: 1.69;
  color: #000c38;
}
.section-detail-content .btn-join .btn {
  display: flex;
  margin: 10px auto;
  padding-right: 60px;
  align-items: center;
  justify-content: center;
  width: 253px;
  height: 56px;
  font-size: 14px;
  font-weight: 900;
  line-height: 1.43;
  color: #FFF;
  background: #001255 url("../img/top/ico_arrow_next_white.png") 81% 47%/50px 9px no-repeat;
}
.section-detail-content .step-flow {
  margin: 89px 0 130px;
}
.section-detail-content .step-flow .wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0;
  box-shadow: none;
  position: relative;
}
.section-detail-content .step-flow .btn-page {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 295px;
  height: 56px;
  padding-right: 60px;
  font-size: 14px;
  font-weight: 900;
  line-height: 1.43;
  color: #ffffff;
  background: #001255 url("../img/top/ico_arrow_next_white.png") 84% 47%/50px 9px no-repeat;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 9;
  border: 1px solid #001255;
  opacity: 1 !important;
  transition: all 0.2s;
}
.section-detail-content .step-flow .btn-page + .btn-next {
  margin-left: auto;
}
.section-detail-content .step-flow .btn {
  font-size: 16px;
  font-weight: 900;
  line-height: 1.44;
  color: #001255;
}
.section-detail-content .step-flow .btn-prev {
  margin-left: 32px;
  padding-left: 65px;
  background: url("../img/common/ico_arrow_prev_blue.svg") left 50%/50px 7.5px no-repeat;
}
.section-detail-content .step-flow .btn-next {
  margin-right: 32px;
  padding-right: 65px;
  background: url("../img/top/ico_arrow_next_blue.svg") right 50%/50px 7.5px no-repeat;
}

@media print, (min-width: 768px) {
  .section-detail-content .step-flow .btn-page:hover {
    background-image: url(../img/top/ico_arrow_next_white_on.png);
    background-color: #fff;
    color: #001255;
  }
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .section-detail-content .table-horizontal td {
    padding-top: 5px;
  }
  .section-detail-content .table-vertical td {
    padding: 10px 16px 4px;
  }
  .section-detail-content .list-label .time {
    padding-top: 5px;
  }
  .section-detail-content .table-detail th::after {
    top: 5px;
  }
}
@media only screen and (max-width: 767px) {
  .section-detail-content {
    padding: 1.3rem 0.12rem 0.9rem;
  }
  .section-detail-content.page-news .list-heading {
    margin-top: 0.33rem;
  }
  .section-detail-content.page-news .step-flow .btn-page {
    flex-basis: 100%;
    margin: 0 0.64rem 0.38rem;
    width: 100%;
    background-position: 77% 47%;
  }
  .section-detail-content:after {
    height: 2.34rem;
    background: #001255 url("../img/top/bg_banner_03.png") 117.5% -0.13rem/1.66rem 0.87rem no-repeat;
  }
  .section-detail-content .wrapper {
    width: 100%;
    padding: 0.38rem 0.12rem 1.02rem;
  }
  .section-detail-content .intro {
    top: -0.36rem;
  }
  .section-detail-content .list-label .label {
    width: 0.6rem;
    height: 0.24rem;
    margin-left: 0.08rem;
    font-size: 0.12rem;
  }
  .section-detail-content .list-label .time {
    width: 0.88rem;
    padding-left: 0.17rem;
    font-size: 0.12rem;
    font-weight: 500;
  }
  .section-detail-content .title {
    padding-bottom: 0.37rem;
    margin-bottom: 0.36rem;
    font-size: 0.22rem;
    color: #001255;
    line-height: 1.5;
    margin-right: -1px;
  }
  .section-detail-content .title + .text {
    font-size: 0.16rem;
  }
  .section-detail-content .table-detail {
    margin-top: 0.17rem;
    padding: 0.18rem 0.2rem;
  }
  .section-detail-content .table-detail th {
    width: 0.73rem;
    font-size: 0.16rem;
  }
  .section-detail-content .table-detail th:after {
    height: 0.16rem;
    top: 0.07rem;
  }
  .section-detail-content .table-detail td {
    padding-top: 0.02rem;
    font-size: 0.16rem;
    padding-left: 0.13rem;
    line-height: 1.8;
  }
  .section-detail-content .table-detail .has-link {
    padding-bottom: 0.32rem;
  }
  .section-detail-content .table-detail .has-link .link {
    bottom: 0.06rem;
    font-size: 0.16rem;
    left: 0.13rem;
  }
  .section-detail-content .table-detail .has-link .link.has-ico {
    padding-right: 0.16rem;
    margin-right: 0.05rem;
    background: url("../img/common/ico_link_blank.svg") right 45%/0.13rem 0.12rem no-repeat;
  }
  .section-detail-content .table-detail .has-link .link.has-ico:after {
    width: 0.25rem;
    left: 85%;
    bottom: 0.06rem;
  }
  .section-detail-content .list-heading {
    margin-top: 0.38rem;
  }
  .section-detail-content .list-heading .item {
    margin-bottom: 0.34rem;
  }
  .section-detail-content .list-heading .text {
    margin-top: 0.1rem;
    line-height: 1.8;
  }
  .section-detail-content .base-list.style-circle li {
    line-height: 1.8;
  }
  .section-detail-content .base-list.style-decimal {
    margin-top: 0.32rem;
  }
  .section-detail-content .base-list.style-decimal li {
    line-height: 1.8;
  }
  .section-detail-content .table-vertical {
    margin-top: 0.55rem;
  }
  .section-detail-content .table-vertical td {
    padding: 0.08rem 0.16rem 0.06rem;
  }
  .section-detail-content .table-horizontal {
    margin-top: 0.6rem;
  }
  .section-detail-content .table-horizontal th {
    width: 4.3%;
  }
  .section-detail-content .table-horizontal td {
    padding: 0 0.16rem;
  }
  .section-detail-content .btn-join {
    margin-top: 0.29rem;
  }
  .section-detail-content .btn-join span {
    font-size: 0.16rem;
  }
  .section-detail-content .btn-join .btn {
    padding-right: 0.6rem;
    margin: 0.26rem auto;
    width: 2.53rem;
    height: 0.56rem;
    font-size: 0.14rem;
    background-size: 0.5rem 0.09rem;
  }
  .section-detail-content .step-flow {
    margin: 0.6rem 0 0;
  }
  .section-detail-content .step-flow .wrapper {
    flex-wrap: wrap;
  }
  .section-detail-content .step-flow .btn-page {
    margin: 0 auto 0.58rem;
    width: 2.95rem;
    height: 0.56rem;
    padding-right: 0.6rem;
    font-size: 0.14rem;
    background-size: 0.5rem 0.09rem;
    position: static;
    transform: none;
  }
  .section-detail-content .step-flow .btn {
    font-size: 0.12rem;
    font-weight: bold;
    line-height: 1.42;
  }
  .section-detail-content .step-flow .btn-prev {
    order: 1;
    margin-left: 0.12rem;
    padding-left: 0.43rem;
    background-size: 0.34rem 0.06rem;
  }
  .section-detail-content .step-flow .btn-next {
    order: 2;
    margin-right: 0.12rem;
    padding-right: 0.43rem;
    background-size: 0.34rem 0.06rem;
  }
}
.block-news-content {
  padding: 14px 0 186px;
}
.block-news-content .wrapper {
  display: flex;
}
.block-news-content .accordion-block {
  flex-basis: 200px;
  padding-top: 53px;
  padding-right: 40px;
}
.block-news-content .accordion-block .link,
.block-news-content .accordion-block .category {
  display: block;
  padding: 14px 0 11px 16px;
  font-size: 14px;
  font-weight: bold;
  line-height: 1.71;
  color: #001255;
  border-bottom: solid 1px #001255;
  position: relative;
}
.block-news-content .accordion-block .link:after,
.block-news-content .accordion-block .category:after {
  content: "";
  border: solid #001255;
  border-width: 0 1px 1px 0;
  padding: 4px;
  position: absolute;
  right: 20px;
  top: 53%;
  transform: translateY(-50%) rotate(-45deg);
}
.block-news-content .content-block {
  flex: 1;
}
.block-news-content .content-block .list-news {
  margin: 54px auto 52px;
  width: 1000px;
}
.block-news-content .content-block .item-news .link-news {
  background-position: 93.9% 53%;
}

@media print, (min-width: 768px) {
  .block-news-content .list-item {
    display: block !important;
  }

  .block-news-content .accordion-block .link,
  .block-news-content .accordion-block .category {
    position: relative;
  }
  .block-news-content .accordion-block .link:before,
  .block-news-content .accordion-block .category:before {
    content: "";
    width: 52px;
    height: 1px;
    background: #fcde62;
    position: absolute;
    left: 15px;
    bottom: 9px;
    opacity: 0;
  }
  .block-news-content .accordion-block .link:hover:before,
  .block-news-content .accordion-block .category:hover:before {
    opacity: 1;
  }
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .block-news-content .accordion-block .link {
    padding: 15px 0 9px 16px;
  }
  .block-news-content .accordion-block .link:after {
    top: 50%;
  }
}
@media only screen and (max-width: 767px) {
  .block-news-content {
    padding: 0 0 1.08rem;
  }
  .block-news-content .wrapper {
    display: block;
  }
  .block-news-content .accordion-block {
    padding-top: 0.24rem;
    padding-right: 0.57rem;
  }
  .block-news-content .accordion-block .category:after {
    right: 0.15rem;
    top: 48%;
    transform: translateY(-50%) rotate(45deg);
    transition: all 0.3s;
  }
  .block-news-content .accordion-block .category.active:after {
    transform: translateY(0) rotate(-135deg);
    transition: all 0.3s;
  }
  .block-news-content .accordion-block .list-item {
    display: none;
  }
  .block-news-content .accordion-block .category,
  .block-news-content .accordion-block .link {
    padding: 0.13rem 0 0.12rem;
  }
  .block-news-content .content-block .list-news {
    width: 100%;
    margin: 0.42rem auto 0.67rem;
  }
  .block-news-content .content-block .item-news .link-news {
    padding-bottom: 0.12rem;
    margin-bottom: 0.18rem;
  }
  .block-news-content .content-block .item-news .label {
    margin-left: auto;
    margin-right: 0;
    width: 0.83rem;
    height: 0.2rem;
    font-size: 0.1rem;
    line-height: 1.2;
  }
  .block-news-content .content-block .item-news .text {
    margin-top: 0.06rem;
  }
  .block-news-content .pager .next,
  .block-news-content .pager .prev {
    margin-top: 0.03rem;
  }
}
.section-support-content {
  padding-top: 93px;
}
.section-support-content .intro {
  margin: 37px 0 36px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.88;
  color: #001255;
}
.section-support-content .list-step-flow {
  margin-bottom: 80px;
}
.section-support-content .list-step-flow.is-detail .item-content {
  position: relative;
}
.section-support-content .list-step-flow.is-detail .item-content:after {
  content: "";
  display: block;
  width: 7px;
  height: 21px;
  background: url("../img/support/ico_arrow_short_down.svg") center/cover no-repeat;
  position: absolute;
  top: 112%;
  left: 50%;
  transform: translateX(-50%);
}
.section-support-content .list-step-flow.is-detail .item-step-flow:last-child .item-content:after {
  display: none;
}
.section-support-content .item-step {
  display: flex;
  padding: 29px 40px;
  margin-bottom: 17px;
  align-items: center;
  background-color: #f7fafd;
}
.section-support-content .item-step .label {
  display: block;
  width: 158px;
  padding-left: 24px;
  font-size: 18px;
  font-weight: bold;
  line-height: 1.22;
  color: #001255;
}
.section-support-content .item-step:last-child {
  background-color: #f8f8f8;
}
.section-support-content .item-step:last-child .label {
  text-align: center;
  padding-right: 16px;
  padding-left: 0;
}
.section-support-content .item-step:last-child .list-item {
  padding-left: 152px;
}
.section-support-content .item-step:last-child .item-content:nth-child(2) {
  margin: 0 68px 0 32px;
}
.section-support-content .list-item {
  display: flex;
  flex: 1;
}
.section-support-content .item-content {
  display: block;
  text-align: center;
  justify-content: center;
  width: 200px;
  height: 96px;
  background-color: #b1b7cc;
  position: relative;
}
.section-support-content .item-content:nth-child(2) {
  margin: 0 154px 0 78px;
}
.section-support-content .item-content.bg-white {
  border: solid 1px #001255;
  background-color: #ffffff;
}
.section-support-content .item-content.bg-white .order {
  color: rgba(0, 18, 85, 0.3);
}
.section-support-content .item-content.bg-white .text {
  color: #001255;
}
.section-support-content .item-content.is-step-one:before {
  content: "";
  display: block;
  width: 21px;
  height: 120px;
  background: url("../img/support/ico_arrow_long_down.svg") center/cover no-repeat;
  position: absolute;
  top: 117%;
  left: 45%;
}
.section-support-content .item-content.is-step-three:before, .section-support-content .item-content.is-step-three:after {
  content: "";
  display: block;
  width: 7.5px;
  height: 48px;
  background: url("../img/support/ico_arrow_down.svg") center/cover no-repeat;
  position: absolute;
  top: 117%;
  left: 81%;
}
.section-support-content .item-content.is-step-three:after {
  background: url("../img/support/ico_arrow_up.svg") center/cover no-repeat;
  top: 117%;
  left: 20%;
}
.section-support-content .item-content.is-step-five:before, .section-support-content .item-content.is-step-five:after {
  content: "";
  display: block;
  width: 7.5px;
  height: 48px;
  background: url("../img/support/ico_arrow_up.svg") center/cover no-repeat;
  position: absolute;
  bottom: 116%;
  left: 47%;
}
.section-support-content .item-content.is-step-five:before {
  width: 50px;
  height: 7.5px;
  background: url("../img/support/ico_arrow_next.svg") center/cover no-repeat;
  bottom: auto;
  top: 50%;
  left: -29%;
}
.section-support-content .order {
  display: block;
  margin: 16px 0 15px;
  font-size: 16px;
  font-weight: 900;
  line-height: 1.44;
  letter-spacing: 1.6px;
  color: rgba(0, 18, 85, 0.3);
}
.section-support-content .text {
  font-size: 20px;
  font-weight: bold;
  line-height: 1.2;
  color: #ffffff;
}
.section-support-content .item-step-flow {
  display: flex;
  align-items: center;
  position: relative;
  padding-left: 121px;
  margin-bottom: 44px;
}
.section-support-content .item-step-flow .type {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  text-align: center;
  background-color: #f7fafd;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.section-support-content .item-step-flow .type .img {
  width: 50px;
  height: 50px;
  margin: 13px auto 0;
}
.section-support-content .item-step-flow .type span {
  font-size: 14px;
  font-weight: bold;
  line-height: 1.43;
  color: #001255;
}
.section-support-content .item-step-flow .type.is-repairer {
  background-color: #f8f8f8;
}
.section-support-content .item-step-flow .type.is-repairer .img {
  margin-top: 9px;
  width: 36px;
  height: 36px;
}
.section-support-content .item-step-flow .type.is-repairer span {
  font-size: 12px;
  line-height: 1.33;
}
.section-support-content .item-step-flow .item-content,
.section-support-content .item-step-flow .item-content:nth-child(2) {
  margin: 0 32px 0 0;
}
.section-support-content .item-step-flow .description {
  flex: 1;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  color: #000c38;
}
.section-support-content .item-step-flow .description .note {
  display: block;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.67;
  color: #656f9a;
}

.section-support-download {
  padding-top: 33px;
}
.section-support-download .list-item {
  width: 240px;
  margin: 0 auto;
  padding: 73px 0 0 35px;
}
.section-support-download .list-item .item {
  font-size: 16px;
  font-weight: 500;
  line-height: 2;
  color: #001255;
  position: relative;
}
.section-support-download .list-item .item:before {
  content: "";
  display: block;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background-color: #001255;
  position: absolute;
  top: 45%;
  left: -9px;
}
.section-support-download .download-block {
  margin-top: 34px;
  padding-bottom: 71px;
  background-color: #f8f8f8;
}
.section-support-download .download-block .btn-download {
  display: flex;
  margin: 31px auto 30px;
  padding-right: 53px;
  width: 240px;
  height: 56px;
  align-items: center;
  justify-content: center;
  background: #001255 url("../img/top/ico_arrow_next_white.svg") 91% center/40px 7.5px no-repeat;
  font-size: 14px;
  font-weight: 900;
  line-height: 1.43;
  color: #ffffff;
  border: 1px solid #001255;
  opacity: 1 !important;
  transition: all 0.2s;
}
.section-support-download .download-block .note {
  font-size: 16px;
  font-weight: 500;
  line-height: 2;
  text-align: center;
  color: #656f9a;
}
.section-support-download .repair-block {
  width: 514px;
  margin: 40px auto;
  padding: 30px 0 22px;
  border: solid 1px #001255;
  background-color: #ffffff;
}
.section-support-download .repair-block .title {
  font-size: 16px;
  font-weight: 500;
  line-height: 2;
  color: #001255;
  text-align: center;
}
.section-support-download .repair-block .list-item {
  padding: 0 0 0 39px;
}

@media print, (min-width: 768px) {
  .section-support-download .download-block .btn-download:hover {
    background-image: url(../img/top/ico_arrow_next_blue.svg);
    background-color: #fff;
    color: #001255;
  }
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .section-support-download .download-block .btn-download {
    padding-top: 7px;
  }
  .section-support-download .list-item .item::before {
    top: 35%;
  }

  .section-support-content .item-content.is-step-one::before {
    width: 22px;
    height: 124px;
  }
}
@media only screen and (max-width: 767px) {
  .section-support-content {
    padding-top: 0.32rem;
  }
  .section-support-content .intro {
    margin: 0.2rem 0 0.51rem;
    font-size: 0.16rem;
  }
  .section-support-content .list-step-flow {
    display: flex;
    align-items: flex-start;
    margin: 0 -0.12rem;
    width: calc(100% + .24rem);
    justify-content: space-between;
  }
  .section-support-content .list-step-flow .item-step {
    flex-wrap: wrap;
    flex-basis: 1.68rem;
    width: 1.68rem;
    padding: 0.2rem 0.09rem;
  }
  .section-support-content .list-step-flow .item-step img {
    width: 0.54rem;
    height: 0.54rem;
    margin: 0 auto;
  }
  .section-support-content .list-step-flow .item-step:last-child img {
    margin-top: 0.06rem;
    width: 0.4rem;
    height: 0.4rem;
  }
  .section-support-content .list-step-flow .item-step:last-child .label {
    margin-top: 2px;
    line-height: 1.3;
  }
  .section-support-content .list-step-flow .item-step:last-child .list-item {
    margin-top: 0.97rem;
    padding: 0;
  }
  .section-support-content .list-step-flow .item-step:last-child .item-content:nth-child(2) {
    margin: 0.56rem 0 0.51rem;
  }
  .section-support-content .list-step-flow .item-step .label {
    text-align: center;
    padding: 0;
    font-size: 0.14rem;
    font-weight: bold;
    line-height: 1.57;
    color: #001255;
  }
  .section-support-content .list-item {
    display: block;
    margin-top: 0.24rem;
  }
  .section-support-content .item-content {
    width: 1.5rem;
    height: 0.84rem;
  }
  .section-support-content .item-content:nth-child(2) {
    margin: 0.54rem 0 1.35rem;
  }
  .section-support-content .item-content.is-step-one:before {
    width: 0.51rem;
    height: 0.21rem;
    background-image: url("../img/support/sp/ico_arrow_next_long.svg");
    top: 61%;
    left: 105%;
  }
  .section-support-content .item-content.is-step-three:before, .section-support-content .item-content.is-step-three:after {
    width: 0.2rem;
    height: 0.075rem;
    background-image: url("../img/support/sp/ico_arrow_next.svg");
    top: 92%;
    left: 104%;
  }
  .section-support-content .item-content.is-step-three:after {
    background-image: url("../img/support/sp/ico_arrow_prev.svg");
    top: 27%;
  }
  .section-support-content .item-content.is-step-five:before {
    width: 0.2rem;
    height: 0.075rem;
    background-image: url("../img/support/sp/ico_arrow_prev.svg");
    top: 46%;
    left: -18%;
  }
  .section-support-content .item-content.is-step-five:after {
    width: 0.075rem;
    height: 0.2rem;
    background-image: url("../img/support/sp/ico_arrow_down.svg");
    bottom: 118%;
  }
  .section-support-content .item-content .order {
    padding: 0.2rem 0 0.04rem;
    margin: 0;
    font-size: 0.12rem;
    line-height: 1.42;
    letter-spacing: 1.2px;
  }
  .section-support-content .item-content .text {
    font-size: 0.16rem;
    line-height: 1.5;
  }
  .section-support-content .list-step-flow.is-detail {
    display: block;
    margin: 0.83rem 0 0;
    width: 100%;
  }
  .section-support-content .list-step-flow.is-detail .item-step-flow {
    display: block;
    padding: 0;
    margin: 0 0 0.26rem;
  }
  .section-support-content .list-step-flow.is-detail .item-content {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 2.14rem;
    height: 0.38rem;
    padding: 0;
  }
  .section-support-content .list-step-flow.is-detail .item-content:after {
    display: none;
  }
  .section-support-content .list-step-flow.is-detail .item-content .order {
    padding: 0;
    margin: 0 0.14rem;
  }
  .section-support-content .list-step-flow.is-detail .description {
    margin-top: 0.12rem;
    line-height: 1.75;
    font-size: 0.14rem;
    font-weight: 500;
  }
  .section-support-content .list-step-flow.is-detail .description .note {
    display: block;
    padding: 0.05rem 0 0.03rem;
    font-size: 0.12rem;
  }

  .section-support-download {
    padding: 0.78rem 0 1.21rem;
  }
  .section-support-download .list-item {
    width: 2.4rem;
    padding: 0.33rem 0 0 0.35rem;
  }
  .section-support-download .list-item .item {
    font-size: 0.16rem;
  }
  .section-support-download .download-block {
    margin: 0.41rem -0.12rem 0;
    width: calc(100% + .24rem);
    padding-bottom: 0.36rem;
  }
  .section-support-download .download-block .btn-download {
    margin: 0.31rem auto 0.3rem;
    padding-right: 0.53rem;
    width: 2.4rem;
    height: 0.56rem;
    font-size: 0.14rem;
    background-size: 0.4rem 0.075rem;
  }
  .section-support-download .download-block .note {
    font-size: 0.14rem;
    line-height: 1.43;
    padding: 0 0.13rem;
    text-align: left;
  }
  .section-support-download .repair-block {
    margin: 0.24rem -0.12rem 0;
    width: calc(100% + .24rem);
  }
  .section-support-download .repair-block .title {
    font-size: 0.14rem;
    line-height: 2.29;
  }
  .section-support-download .repair-block .list-item {
    padding: 0.02rem 0 0.09rem 0.49rem;
  }
  .section-support-download .repair-block .list-item .item {
    font-size: 0.14rem;
    line-height: 2.29;
  }
}
.section-sales-content {
  padding-top: 68px;
}
.section-sales-content .list-sales-end {
  width: 100%;
  margin-bottom: 120px;
}
.section-sales-content .list-sales-end .item:first-child {
  padding: 0;
  border-bottom: none;
}
.section-sales-content .list-sales-end .item:first-child .end-time,
.section-sales-content .list-sales-end .item:first-child .name {
  padding-bottom: 14px;
  padding-top: 0;
  font-size: 14px;
  font-weight: bold;
  font-style: normal;
  font-stretch: normal;
  line-height: 1.43;
  letter-spacing: normal;
  text-align: left;
  color: #001255;
  border-bottom: 2px solid #fcde62;
}
.section-sales-content .list-sales-end .item:first-child .name {
  border-color: #b1b7cc;
}
.section-sales-content .list-sales-end .item {
  display: flex;
  padding: 20px 0;
  align-items: flex-start;
  border-bottom: 1px solid #B1B7CC;
}
.section-sales-content .list-sales-end .end-time {
  display: block;
  padding-top: 8px;
  width: 300px;
  padding-left: 24px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.69;
  color: #656f9a;
}
.section-sales-content .list-sales-end .name {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding-left: 24px;
  flex: 1;
  font-size: 16px;
  font-weight: bold;
  line-height: 1.69;
  color: #001255;
}
.section-sales-content .list-sales-end .text {
  display: block;
  flex: 1;
  padding-top: 8px;
  font-size: 16px;
  font-weight: bold;
  line-height: 1.69;
  color: #001255;
}
.section-sales-content .list-sales-end .list-link {
  text-align: right;
}
.section-sales-content .list-sales-end .item-link {
  margin-top: 8px;
}
.section-sales-content .list-sales-end .item-link:first-child {
  margin: 0;
}
.section-sales-content .list-sales-end .link {
  display: inline-block;
  padding: 10px 98px 10px 46px;
  text-align: right;
  font-size: 14px;
  font-weight: 900;
  line-height: 1.43;
  color: #001255;
  background: #f8f8f8;
  position: relative;
}
.section-sales-content .list-sales-end .link:after {
  content: "";
  width: 40px;
  height: 7.5px;
  background: url("../img/top/ico_arrow_next_blue.svg") right center/cover no-repeat;
  position: absolute;
  right: 45px;
  top: 50%;
  transform: translateY(-50%);
}
.section-sales-content .contact-block-cmn .btn-inquiries {
  margin-top: 87px;
}

@media print, (min-width: 768px) {
  .section-sales-content .list-sales-end .link:hover {
    background: #001255;
    color: #f8f8f8;
    opacity: 1 !important;
    transition: all 0.2s;
  }
  .section-sales-content .list-sales-end .link:hover:after {
    background-image: url("../img/top/ico_arrow_next_white.svg");
  }
}
@media only screen and (max-width: 767px) {
  .section-sales-content {
    padding: 0.3rem 0 1.2rem;
  }
  .section-sales-content .list-sales-end .item:first-child {
    display: flex;
  }
  .section-sales-content .list-sales-end .item:first-child .end-time,
  .section-sales-content .list-sales-end .item:first-child .name {
    padding: 0 0 0.24rem;
    font-size: 0.14rem;
  }
  .section-sales-content .list-sales-end .item:first-child .end-time {
    position: relative;
  }
  .section-sales-content .list-sales-end .item:first-child .end-time:after {
    content: "/";
    margin-left: 0.04rem;
  }
  .section-sales-content .list-sales-end .item:first-child .end-time:before {
    content: "";
    width: 1.06rem;
    height: 1px;
    border-top: 2px solid #fcde62;
    position: absolute;
    bottom: -2px;
    left: 0;
  }
  .section-sales-content .list-sales-end .end-time {
    width: auto;
    padding: 0 0 0 0.1rem;
    margin-right: 0.08rem;
    font-size: 0.16rem;
    font-weight: 500;
    line-height: 1.5;
  }
  .section-sales-content .list-sales-end .name {
    display: block;
    padding: 0 0 0 0.1rem;
    font-size: 0.16rem;
  }
  .section-sales-content .list-sales-end .item {
    display: block;
    padding: 0.2rem 0 0.24rem;
  }
  .section-sales-content .list-sales-end .text {
    min-height: 0.42rem;
    padding-top: 0;
    font-size: 0.16rem;
    line-height: 1.5;
  }
  .section-sales-content .list-sales-end .list-link {
    margin: 0 0 0 -0.1rem;
    width: calc(100% + .1rem);
  }
  .section-sales-content .list-sales-end .item-link {
    margin-top: 0.04rem;
  }
  .section-sales-content .list-sales-end .item-link:first-child {
    margin-top: 0;
  }
  .section-sales-content .list-sales-end .link {
    font-size: 0.14rem;
    padding: 0.1rem 0.76rem 0.1rem 0.24rem;
  }
  .section-sales-content .list-sales-end .link:after {
    right: 0.22rem;
  }
  .section-sales-content .contact-block-cmn {
    padding-bottom: 1.2rem;
  }
  .section-sales-content .contact-block-cmn .btn-inquiries {
    margin-top: 0.66rem;
  }
}
.section-download-content {
  padding: 67px 0 95px;
}
.section-download-content .wrapper {
  display: flex;
}
.section-download-content .compact-block {
  width: 270px;
}
.section-download-content .compact-block .link,
.section-download-content .compact-block .category {
  display: block;
  padding: 14px 0 13px;
  font-size: 14px;
  font-weight: 900;
  line-height: 1.43;
  color: #001255;
  border-bottom: 1px solid #001255;
  position: relative;
}
.section-download-content .compact-block .link:after,
.section-download-content .compact-block .sub-link:after,
.section-download-content .compact-block .category:after {
  content: "";
  border: solid #001255;
  border-width: 0 1px 1px 0;
  padding: 4px;
  position: absolute;
  right: 17px;
  top: 53%;
  transform: translateY(-50%) rotate(-45deg);
}
.section-download-content .compact-block .list-sub-item {
  margin-left: 24px;
}
.section-download-content .compact-block .sub-link {
  display: block;
  padding: 13px 0 11px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.71;
  color: #001255;
  border-bottom: 1px solid #B1B7CC;
  position: relative;
}
.section-download-content .compact-block .sub-link:after {
  border: solid #656F9A;
  border-width: 0 1px 1px 0;
}
.section-download-content .product-block {
  flex: 1;
  margin-left: 130px;
  padding-top: 9px;
}
.section-download-content .product-block .section-title + .list-product {
  padding: 31px 0 20px;
}
.section-download-content .product-block .item {
  margin-bottom: 29px;
}
.section-download-content .product-block .list-sub-item {
  padding-top: 35px;
}
.section-download-content .product-block .sub-item {
  padding-bottom: 11px;
}
.section-download-content .product-block .list-product {
  padding-top: 18px;
}
.section-download-content .product-block .sub-title {
  font-size: 16px;
  font-weight: bold;
  line-height: 1.69;
  color: #656f9a;
}
.section-download-content .product-block .product-item {
  margin-bottom: 24px;
}
.section-download-content .product-block .product-link {
  display: flex;
  padding: 20px 56px 23px 24px;
  background-color: #f8f8f8;
  position: relative;
}
.section-download-content .product-block .product-link .img {
  display: flex;
  margin-top: 5px;
  width: 180px;
  height: 180px;
  padding: 10px 25px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #FFF;
}
.section-download-content .product-block .product-link .img img {
  transform: scale(1);
  transition: all 0.3s;
  max-height: 100%;
}
.section-download-content .product-block .product-link .content {
  flex: 1;
  margin-left: 40px;
  padding-top: 7px;
  text-align: right;
}
.section-download-content .product-block .product-link .product-title {
  font-size: 18px;
  font-weight: bold;
  line-height: 1.33;
  color: #001255;
  text-align: left;
}
.section-download-content .product-block .product-link .text {
  min-height: 48px;
  margin-top: 11px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  color: #000c38;
  text-align: left;
}
.section-download-content .product-block .product-link .btn {
  display: inline-flex;
  width: 224px;
  height: 56px;
  align-items: center;
  justify-content: center;
  padding-right: 53px;
  font-size: 14px;
  font-weight: 900;
  line-height: 1.43;
  text-align: left;
  color: #ffffff;
  background: #001255 url("../img/top/ico_arrow_next_white.png") 69% center/40px 7px no-repeat;
  position: absolute;
  right: 56px;
  bottom: 27px;
  border: 1px solid #001255;
  opacity: 1 !important;
  transition: all 0.2s;
}

.popup {
  display: none;
}

.popup-form-download {
  width: 100%;
  background: rgba(248, 248, 248, 0.95);
  padding-top: 105px;
  height: 90vh;
}
.popup-form-download .title {
  padding-bottom: 26px;
  margin-bottom: 17px;
  font-size: 40px;
  font-weight: bold;
  line-height: 1;
  color: #001255;
  text-align: center;
  position: relative;
}
.popup-form-download .title:after {
  content: "";
  width: 45px;
  height: 2px;
  background-color: #e6cb00;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
}
.popup-form-download .intro {
  font-size: 16px;
  font-weight: 500;
  line-height: 2;
  text-align: center;
  color: #001255;
}
.popup-form-download .form-wrapper {
  padding-left: 14px;
  margin-top: 40px;
}
.popup-form-download .content {
  display: flex;
  align-items: flex-start;
  padding-bottom: 310px;
  position: relative;
}
.popup-form-download .img-box {
  flex-basis: 500px;
  background-color: #FFF;
}
.popup-form-download .img-box img {
  width: 190px;
  height: 270px;
  margin: 0 auto;
}
.popup-form-download .img-box .label {
  display: block;
  width: 100%;
  margin-top: 24px;
  margin-bottom: 10px;
  font-size: 14px;
  font-weight: bold;
  line-height: 1.43;
  text-align: center;
  color: #001255;
}
.popup-form-download .img-box .description {
  padding: 19px 32px 26px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.88;
  color: #001255;
  text-align: center;
}
.popup-form-download .form-download {
  padding-left: 36px;
}
.popup-form-download .form-download .text {
  margin-bottom: 19px;
}
.popup-form-download .agree-block {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
.popup-form-download .agree-block .text {
  width: 100%;
}

.fancybox-slide--html .fancybox-close-small {
  right: 29px;
  top: 40px;
}
.fancybox-slide--html .fancybox-close-small svg {
  opacity: 0;
}
.fancybox-slide--html .fancybox-close-small:after {
  content: "";
  width: 36px;
  height: 36px;
  background: url("../img/common/ico_close.svg") center/cover no-repeat;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 11;
}

@media print, (min-width: 768px) {
  .section-download-content .product-block .product-link:hover img {
    transform: scale(1.1);
    transition: all 0.3s;
  }
  .section-download-content .product-block .product-link .btn:hover {
    background-image: url(../img/top/ico_arrow_next_white_on.png);
    background-color: #fff;
    color: #001255;
  }
  .section-download-content .compact-block .list-item {
    display: block !important;
  }
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .section-download-content .compact-block .sub-link {
    padding: 15px 0 9px;
  }
}
@media only screen and (max-width: 767px) {
  .section-download-content {
    padding: 0.24rem 0 0.59rem;
  }
  .section-download-content .wrapper {
    display: block;
  }
  .section-download-content .compact-block {
    width: 2.7rem;
  }
  .section-download-content .compact-block .link,
  .section-download-content .compact-block .category {
    font-size: 0.14rem;
    padding: 0.14rem 0 0.13rem;
  }
  .section-download-content .compact-block .link:after,
  .section-download-content .compact-block .sub-link:after,
  .section-download-content .compact-block .category:after {
    padding: 0.04rem;
    right: 0.17rem;
  }
  .section-download-content .compact-block .list-sub-item {
    margin-left: 0.24rem;
  }
  .section-download-content .compact-block .sub-link {
    padding: 0.13rem 0 0.11rem;
    font-size: 0.14rem;
  }
  .section-download-content .compact-block .category:after {
    right: 0.15rem;
    top: 48%;
    transform: translateY(-50%) rotate(45deg);
    transition: all 0.3s;
  }
  .section-download-content .compact-block .category.active:after {
    transform: translateY(0) rotate(-135deg);
    transition: all 0.3s;
  }
  .section-download-content .compact-block .list-item {
    display: none;
  }
  .section-download-content .product-block {
    margin: 0;
    padding-top: 0.63rem;
  }
  .section-download-content .product-block .section-title + .list-product {
    padding: 0.13rem 0;
  }
  .section-download-content .product-block .item {
    margin-bottom: 0.27rem;
  }
  .section-download-content .product-block .list-product {
    padding-top: 0.18rem;
    width: calc(100% + .24rem);
    margin: 0 -0.12rem;
  }
  .section-download-content .product-block .product-item {
    margin-bottom: 0.24rem;
  }
  .section-download-content .product-block .list-sub-item {
    padding-top: 0.2rem;
  }
  .section-download-content .product-block .sub-item {
    padding-bottom: 0.11rem;
  }
  .section-download-content .product-block .sub-title {
    font-size: 0.16rem;
  }
  .section-download-content .product-block .product-link {
    display: block;
    padding: 0.4rem 0 0.24rem;
    min-height: 1.73rem;
  }
  .section-download-content .product-block .product-link .img {
    padding: 0.15rem 0.35rem;
    width: 2.54rem;
    height: 2.54rem;
    margin: 0 auto;
  }
  .section-download-content .product-block .product-link .content {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    margin: 0;
    padding: 0.26rem 0.12rem 0.16rem;
  }
  .section-download-content .product-block .product-link .product-title {
    font-size: 0.16rem;
    line-height: 1.5;
    min-height: auto;
  }
  .section-download-content .product-block .product-link .text {
    margin-top: 0.02rem;
    width: 100%;
    font-size: 0.14rem;
    line-height: 1.7;
    color: #001255;
  }
  .section-download-content .product-block .product-link .btn {
    display: flex;
    width: 2.24rem;
    height: 0.56rem;
    margin: 0.18rem auto 0;
    position: static;
    align-self: center;
  }

  .popup-form-download {
    height: 100%;
  }
  .popup-form-download .title {
    font-size: 0.2rem;
    line-height: 1;
    padding-bottom: 0.12rem;
    margin-bottom: 0.11rem;
  }
  .popup-form-download .title:after {
    width: 0.23rem;
    height: 1px;
  }
  .popup-form-download .intro {
    font-size: 0.14rem;
    font-weight: 500;
    line-height: 1.57;
    text-align: center;
  }
  .popup-form-download .content {
    padding-bottom: 0.3rem;
  }
  .popup-form-download .form-wrapper {
    margin-top: 0.26rem;
    padding-left: 0;
  }
  .popup-form-download .form-download {
    padding: 0;
    width: 100%;
    margin: 0;
  }
  .popup-form-download .form-download .form-input {
    width: 100%;
  }
  .popup-form-download .form-download .text,
  .popup-form-download .form-download .link {
    font-size: 0.1rem;
    font-weight: 500;
    line-height: 1.6;
    text-align: center;
    color: #656f9a;
    margin: 0 0 0.09rem;
  }
  .popup-form-download .form-download .text {
    width: 100%;
  }
  .popup-form-download .form-download .link {
    margin: 0;
  }
  .popup-form-download .agree-block {
    padding-bottom: 0;
    position: static;
    transform: translateX(0);
  }

  .fancybox-slide--html {
    padding: 0;
  }
  .fancybox-slide--html .fancybox-close-small {
    right: 0.04rem;
    top: 0.24rem;
  }
  .fancybox-slide--html .fancybox-close-small:after {
    top: 50%;
    width: 0.24rem;
    height: 0.24rem;
  }

  .fancybox-content {
    padding: 0.58rem 0 0 !important;
    background-color: rgba(248, 248, 248, 0.95) !important;
  }
}
.section-company-message .message-container {
  background: #FAFAFA;
  -moz-box-shadow: 0 3px 10px rgba(0, 12, 56, 0.05);
  -webkit-box-shadow: 0 3px 10px rgba(0, 12, 56, 0.05);
  box-shadow: 0 3px 10px rgba(0, 12, 56, 0.05);
  border-radius: 5px;
}
.section-company-message .message-title {
  font-weight: bold;
  color: #001255;
  line-height: 1.2;
  text-align: center;
  position: relative;
}
/*.section-company-message .message-title:before, .section-company-message .message-title::after {
  position: absolute;
  content: "";
  background-size: auto 100%;
  background-repeat: no-repeat;
  background-position: 0 0;
  left: 50%;
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}*/
/*.section-company-message .message-title::before {
  background-image: url(../img/company/icn_multily.png);
}
.section-company-message .message-title:after {
  background-image: url(../img/company/icn_equal.png);
}*/
.section-company-message .message-img img {
  width: 100%;
  display: block;
}
.section-company-message .message-txt {
  font-weight: 500;
}
.section-company-message .message-txt p {
  color: #000C38;
}
.section-company-message .message-sign {
  text-align: right;
  font-weight: 500;
  line-height: 1.5;
}
.section-company-message .message-sign .name {
  font-weight: bold;
  letter-spacing: 11px;
  font-size: 18px;
}

@media print, (min-width: 768px) {
  .section-company-message {
    padding: 75px 0 60px;
  }
  .section-company-message .message-container {
    padding: 100px 100px 115px;
    margin-top: 50px;
  }
  .section-company-message .message-content {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-align-items: center;
    align-items: center;
    margin-bottom: 60px;
    flex-direction: row-reverse;
  }
  .section-company-message .message-title {
    font-size: 36px;
    line-height: 1.2;
    letter-spacing: 0.07em;
  }
  .section-company-message .message-title:before, .section-company-message .message-title::after {
    width: 24px;
    height: 24px;
  }
  .section-company-message .message-title::before {
    top: 60px;
  }
  .section-company-message .message-title:after {
    top: 152px;
  }
  .section-company-message .message-title p {
    margin-bottom: 16px;
  }
  .section-company-message .message-title p:last-child {
    margin-bottom: 0;
  }
  .section-company-message .message-img {
    width: 185px;
    order: 2;
  }
  .section-company-message .message-txt {
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 115px;
  }
  .section-company-message .message-txt p {
    margin-bottom: 20px;
  }
  .section-company-message .message-sign {
    font-size: 16px;
    line-height: 1.5;
    color: #000C38;
  }
  .section-company-message .message-sign .name {
    margin-top: 5px;
    letter-spacing: 11px;
    font-size: 18px;
  }
}
@media only screen and (max-width: 767px) {
  .section-company-message {
    padding: 0.15rem 0 0.6rem;
  }
  .section-company-message .message-container {
    padding: 0.38rem 0.12rem 0.3rem;
    border-radius: 5px;
    margin-top: 0.4rem;
  }
  .section-company-message .message-title {
    font-size: 0.2rem;
    line-height: 1.2;
    text-align: center;
    letter-spacing: 0.05em;
  }
  .section-company-message .message-title:before, .section-company-message .message-title::after {
    width: 0.2rem;
    height: 0.2rem;
  }
  .section-company-message .message-title::before {
    top: 0.35rem;
  }
  .section-company-message .message-title:after {
    top: 0.9rem;
  }
  .section-company-message .message-title p {
    margin-bottom: 0.36rem;
  }
  .section-company-message .message-img {
    width: 1.85rem;
    margin: 0 auto 0.26rem;
  }
  .section-company-message .message-txt {
    font-size: 0.14rem;
    line-height: 1.85;
    margin-bottom: 1.5rem;
  }
  .section-company-message .message-txt p {
    margin-bottom: 0.2rem;
  }
  .section-company-message .message-sign {
    font-size: 0.16rem;
    line-height: 1.3;
  }
  .section-company-message .name {
    margin-top: 0.08rem;
  }
}
.section-company-about .txt,
.section-company-about .about-txt {
  font-weight: 500;
  color: #001255;
}
.section-company-about .about-title {
  font-weight: bold;
  line-height: 1.6;
  color: #000C38;
}
.section-company-about .eng {
  font-weight: 900;
  letter-spacing: 0.03em;
  color: #EFEFEF;
}
.section-company-about .eng strong {
  color: #FCDE62;
}

@media print, (min-width: 768px) {
  .section-company-about {
    padding: 65px 0 85px;
  }
  .section-company-about .txt,
  .section-company-about .about-txt {
    font-size: 16px;
    line-height: 1.9;
  }
  .section-company-about .txt {
    margin: 25px 0 80px;
  }
  .section-company-about .about-container {
    background: url(../img/company/bg_moon.jpg) no-repeat 50px 70px;
    background-size: 990px 431px;
  }
  .section-company-about .eng {
    font-size: 80px;
    font-weight: 900;
    letter-spacing: 0.03em;
    color: #EFEFEF;
    margin-left: -50px;
  }
  .section-company-about .eng strong {
    color: #FCDE62;
  }
  .section-company-about .about-title {
    font-size: 20px;
    margin: -34px 0 10px;
  }
  .section-company-about .about-container {
    *zoom: 1;
  }
  .section-company-about .about-container:after {
    content: "";
    display: table;
    clear: both;
  }
  .section-company-about .about-content {
    width: 400px;
  }
  .section-company-about .about-content:first-child {
    margin-left: 450px;
  }
  .section-company-about .about-content:nth-child(2) {
    margin: -70px 0 0 40px;
  }
  .section-company-about .about-content:last-child {
    float: right;
    margin: -75px -20px 0 0;
  }
}
@media only screen and (max-width: 767px) {
  .section-company-about {
    padding: 0.28rem 0 0.3rem;
  }
  .section-company-about .txt {
    font-size: 0.14rem;
    line-height: 1.5;
  }
  .section-company-about .about-txt {
    font-size: 0.15rem;
    line-height: 1.7;
    margin-right: 0.05rem;
  }
  .section-company-about .txt {
    margin: 0.24rem 0 0.25rem;
  }
  .section-company-about .about-title {
    font-size: 0.2rem;
    margin: -0.2rem 0 0.05rem;
  }
  .section-company-about .about-title span {
    display: block;
  }
  .section-company-about .eng {
    font-size: 0.4rem;
    margin-left: -0.25rem;
  }
  .section-company-about .about-content {
    margin-bottom: 0.58rem;
    position: relative;
    padding-left: 0.3rem;
  }
  .section-company-about .about-content::after {
    position: absolute;
    content: "";
    background: url(../img/company/bg_moon.jpg) no-repeat 0 0;
    background-size: auto 100%;
    height: 1.57rem;
    top: 0.2rem;
    right: -0.34rem;
    left: -0.1rem;
    z-index: -1;
  }
}
.section-company-info .information-name {
  font-weight: bold;
}
.section-company-info .information-name,
.section-company-info .information-txt {
  color: #001255;
}
.section-company-info .information-txt {
  font-weight: 500;
}
.section-company-info .information-txt .link {
  color: #7C6E00;
  text-decoration: underline;
}
.section-company-info .link-location {
  display: block;
  text-align: center;
  color: #001255;
  background: #F8F8F8;
  position: relative;
  font-weight: 900;
}
.section-company-info .link-location::after {
  background: url(../img/top/ico_arrow_short_next_blue.svg) right center no-repeat;
  background-size: auto 100%;
  position: absolute;
  content: "";
  top: 50%;
}
.section-company-info .list-description {
  list-style: decimal;
}
.section-company-info .info-block {
  display: -webkit-flex;
  display: flex;
}

@media print, (min-width: 768px) {
  .section-company-info {
    padding: 77px 0 60px;
  }
  .section-company-info .informaion-container {
    background: #fff;
    -moz-box-shadow: 0 3px 10px rgba(0, 12, 56, 0.05);
    -webkit-box-shadow: 0 3px 10px rgba(0, 12, 56, 0.05);
    box-shadow: 0 3px 10px rgba(0, 12, 56, 0.05);
    padding: 82px 66px;
    margin-top: 45px;
  }
  .section-company-info .information-content {
    display: -webkit-flex;
    display: flex;
  }
  .section-company-info .information-content:first-child .information-name,
  .section-company-info .information-content:first-child .information-txt {
    border-top: 1px solid #B1B7CC;
  }
  .section-company-info .information-name {
    width: 200px;
    margin-right: 60px;
    line-height: 1.3;
  }
  .section-company-info .information-txt {
    width: 600px;
    line-height: 1.7;
  }
  .section-company-info .information-name,
  .section-company-info .information-txt {
    border-bottom: 1px solid #B1B7CC;
    font-size: 16px;
    padding: 26px 0;
  }
  .section-company-info .info {
    line-height: 1.9;
  }
  .section-company-info .info-block {
    display: -webkit-flex;
    display: flex;
    margin-bottom: 8px;
  }
  .section-company-info .info-inner {
    width: 120px;
    margin-right: 40px;
  }
  .section-company-info .info-employee {
    line-height: 2;
  }
  .section-company-info .info-location {
    line-height: 1.5;
  }
  .section-company-info .space {
    margin-left: 15px;
  }
  .section-company-info .link-location {
    font-size: 14px;
    padding: 10px 46px 10px 0;
    width: 200px;
    height: 40px;
    margin-top: 30px;
    font-weight: 900;
  }
  .section-company-info .link-location::after {
    width: 40px;
    height: 6px;
    right: 35px;
    margin-top: -5px;
  }
  .section-company-info .list-description {
    line-height: 2;
    padding-left: 20px;
  }
  .section-company-info .contact-nunber {
    padding-right: 32px;
    margin-right: 12px;
    color: #656F9A;
    font-size: 12px;
    font-weight: bold;
    line-height: 2;
    position: relative;
  }
  .section-company-info .contact-nunber::after {
    content: "";
    background: #656F9A;
    width: 16px;
    height: 1px;
    top: 50%;
    right: 0;
    position: absolute;
  }
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .section-company-info .information-name,
  .section-company-info .information-txt {
    padding: 29px 0 23px;
  }
}
@media only screen and (max-width: 767px) {
  .section-company-info {
    padding: 0.16rem 0 0.3rem;
  }
  .section-company-info .informaion-container {
    margin-top: 0.4rem;
    padding: 0 0.1rem;
  }
  .section-company-info .information-content {
    border-bottom: 1px solid #B1B7CC;
    padding: 0.32rem 0 0.22rem;
  }
  .section-company-info .information-content:first-child {
    border-top: 1px solid #B1B7CC;
  }
  .section-company-info .information-name {
    font-size: 0.16rem;
    line-height: 1;
    margin-bottom: 0.12rem;
  }
  .section-company-info .information-txt {
    font-size: 0.14rem;
    line-height: 1.4;
  }
  .section-company-info .information-txt .link {
    font-size: 0.14rem;
  }
  .section-company-info .information-txt .info-inner {
    margin-right: 0.35rem;
  }
  .section-company-info .information-txt .txt-long {
    line-height: 1.2;
  }
  .section-company-info .info-block {
    margin-bottom: 0.1rem;
  }
  .section-company-info .info-employee .info-inner {
    width: 1rem;
  }
  .section-company-info .link-location {
    width: 200px;
    height: 40px;
    padding: 10px 46px 10px 0;
    margin: 0 auto;
  }
  .section-company-info .link-location::after {
    width: 40px;
    height: 6px;
    right: 35px;
    margin-top: -5px;
  }
  .section-company-info .list-description {
    line-height: 1.9;
    padding-left: 0.15rem;
  }
  .section-company-info .number-content {
    margin-top: 0.1rem;
  }
  .section-company-info .contact-nunber {
    padding-right: 0.32rem;
    margin-right: 0.12rem;
    color: #656F9A;
    font-size: 0.12rem;
    font-weight: bold;
    line-height: 2;
    position: relative;
  }
  .section-company-info .contact-nunber::after {
    content: "";
    background: #656F9A;
    width: 0.16rem;
    height: 0.01rem;
    top: 50%;
    right: 0;
    position: absolute;
  }
}
.section-company-offices .office-location {
  color: #001255;
}
.section-company-offices .office-address {
  font-weight: 500;
}
.section-company-offices .office-content {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: flex-start;
  align-items: flex-start;
}
.section-company-offices .name {
  font-weight: bold;
}
.section-company-offices .map {
  display: block;
  color: #7C6E00;
  text-decoration: underline;
}
.section-company-offices .office-contact {
  color: #656F9A;
  position: relative;
}
.section-company-offices .office-contact::after {
  content: "";
  background: #656F9A;
  top: 50%;
  right: 0;
  position: absolute;
}
.section-company-offices .web {
  color: #7C6E00;
  text-decoration: underline;
}

@media print, (min-width: 768px) {
  .section-company-offices {
    padding: 75px 0 40px;
  }
  .section-company-offices .list-offices {
    background: #fff;
    -moz-box-shadow: 0 3px 10px rgba(0, 12, 56, 0.05);
    -webkit-box-shadow: 0 3px 10px rgba(0, 12, 56, 0.05);
    box-shadow: 0 3px 10px rgba(0, 12, 56, 0.05);
    padding: 80px 70px;
    margin-top: 48px;
  }
  .section-company-offices .office-location {
    display: -webkit-flex;
    display: flex;
    font-size: 16px;
  }
  .section-company-offices .office-location:first-child .office-name,
  .section-company-offices .office-location:first-child .office-address {
    border-top: 1px solid #656F9A;
  }
  .section-company-offices .office-name {
    width: 200px;
    margin-right: 60px;
  }
  .section-company-offices .office-address {
    width: 600px;
  }
  .section-company-offices .office-name,
  .section-company-offices .office-address {
    border-bottom: 1px solid #656F9A;
    padding: 30px 0 26px;
  }
  .section-company-offices .office-content {
    margin-bottom: 16px;
  }
  .section-company-offices .office-content:last-child {
    margin-bottom: 0;
  }
  .section-company-offices .name {
    margin-bottom: 22px;
  }
  .section-company-offices .map {
    font-size: 14px;
  }
  .section-company-offices .office-txt {
    line-height: 1.5;
    width: 80%;
  }
  .section-company-offices .office-contact {
    font-size: 14px;
    padding-right: 28px;
    margin-right: 12px;
    line-height: 1.8;
  }
  .section-company-offices .office-contact::after {
    width: 16px;
    height: 1px;
    margin-top: -3px;
  }
  .section-company-offices .txt {
    font-size: 14px;
  }
}
@media only screen and (max-width: 767px) {
  .section-company-offices {
    padding: 0.16rem 0 0.35rem;
  }
  .section-company-offices .list-offices {
    margin-top: 0.38rem;
    padding: 0 0.1rem;
  }
  .section-company-offices .office-location {
    font-size: 14px;
    border-bottom: 1px solid #656F9A;
    padding: 0.35rem 0 0.18rem;
  }
  .section-company-offices .office-location:first-child {
    border-top: 1px solid #656F9A;
  }
  .section-company-offices .office-name {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    margin-bottom: 0.18rem;
  }
  .section-company-offices .office-content {
    margin-bottom: 0.12rem;
  }
  .section-company-offices .name {
    font-weight: bold;
    font-size: 16px;
  }
  .section-company-offices .map {
    font-size: 14px;
  }
  .section-company-offices .office-txt {
    line-height: 1.4;
    width: 2.5rem;
  }
  .section-company-offices .office-contact {
    font-size: 0.14rem;
    padding-right: 0.28rem;
    margin-right: 0.12rem;
    line-height: 1.5;
  }
  .section-company-offices .office-contact::after {
    width: 16px;
    height: 1px;
  }
  .section-company-offices .txt {
    font-size: 0.14rem;
    margin-top: 0.1rem;
  }

  .section-company-affiliated .office-name {
    display: block;
  }
}
.section-company-structure .chart-tree {
  margin: 0 auto;
}
.section-company-structure .first-list {
  display: -webkit-flex;
  display: flex;
}
.section-company-structure .first-list span {
  background: #ECF4FC;
  display: inline-block;
  color: #001255;
}
.section-company-structure .structure-content {
  font-weight: 500;
}
.section-company-structure .structure-content span {
  background: #ECF4FC;
  display: inline-block;
  color: #001255;
}
.section-company-structure .structure-chart {
  position: relative;
}
.section-company-structure .structure-chart > li {
  position: relative;
}
.section-company-structure .structure-chart > li::after {
  content: "";
  height: 1px;
  position: absolute;
  background: #001255;
}

@media print, (min-width: 768px) {
  .section-company-structure {
    padding: 75px 50px;
  }
  .section-company-structure .chart-tree {
    width: 875px;
    margin: 0 auto;
  }
  .section-company-structure .first-list {
    display: -webkit-flex;
    display: flex;
    font-size: 16px;
    margin-top: 60px;
  }
  .section-company-structure .first-list span {
    background: #ECF4FC;
    display: inline-block;
    height: 40px;
    color: #001255;
    padding: 10px 0;
    width: 88px;
    text-align: center;
    margin-left: -8px;
  }
  .section-company-structure .director-board {
    margin: 0 40px 40px 0;
    position: relative;
  }
  .section-company-structure .director-board::before {
    content: "";
    width: 1px;
    height: 40px;
    background: #001255;
    bottom: -40px;
    left: 36px;
    position: absolute;
  }
  .section-company-structure .structure-content {
    font-size: 16px;
    font-weight: 500;
  }
  .section-company-structure .structure-content span {
    background: #ECF4FC;
    padding: 10px 20px;
    display: inline-block;
    height: 40px;
    color: #001255;
    margin-bottom: 20px;
    text-align: center;
  }
  .section-company-structure .structure-content .parent {
    width: 88px;
    margin-left: -8px;
  }
  .section-company-structure .structure-chart {
    position: relative;
    padding-left: 140px;
  }
  .section-company-structure .structure-chart > li {
    margin: 0 0 20px 0;
    position: relative;
  }
  .section-company-structure .structure-chart > li::before {
    content: "";
    width: 1px;
    height: calc(100% + 40px);
    background: #001255;
    top: 0;
    left: -104px;
    position: absolute;
  }
  .section-company-structure .structure-chart > li:first-child:before {
    height: calc(100% + 60px);
    top: -20px;
  }
  .section-company-structure .structure-chart > li:last-child::before {
    height: 50%;
    top: auto;
    bottom: 100%;
  }
  .section-company-structure .structure-chart > li::after {
    content: "";
    width: 103px;
    height: 1px;
    top: 20px;
    left: -103px;
    position: absolute;
    background: #001255;
  }
  .section-company-structure .structure-chart .has-child {
    display: -webkit-flex;
    display: flex;
  }
  .section-company-structure .structure-chart .has-child > span {
    margin-right: 40px;
    position: relative;
  }
  .section-company-structure .structure-chart .has-child > span:before {
    content: "";
    width: 20px;
    height: 1px;
    top: 20px;
    right: -20px;
    position: absolute;
    background: #001255;
  }
  .section-company-structure .child > li,
  .section-company-structure .second-child > li {
    position: relative;
  }
  .section-company-structure .child > li:before,
  .section-company-structure .second-child > li:before {
    content: "";
    height: 100%;
    border-left: 1px solid #001255;
    position: absolute;
    left: -20px;
    top: 20px;
  }
  .section-company-structure .child > li:first-child::before,
  .section-company-structure .second-child > li:first-child::before {
    top: 20px;
  }
  .section-company-structure .child > li:last-child.has-child::before,
  .section-company-structure .second-child > li:last-child.has-child::before {
    height: 40px;
  }
  .section-company-structure .child > li:last-child::before,
  .section-company-structure .second-child > li:last-child::before {
    height: 50%;
    top: -20px;
  }
  .section-company-structure .child > li::after,
  .section-company-structure .second-child > li::after {
    content: "";
    width: 20px;
    height: 1px;
    top: 20px;
    left: -20px;
    position: absolute;
    background: #001255;
  }
}
@media only screen and (max-width: 767px) {
  .section-company-structure {
    padding: 0.16rem 0 0.3rem;
  }
  .section-company-structure .chart-tree {
    margin-top: 0.4rem;
    padding: 0 0.1rem;
  }
  .section-company-structure .first-list span {
    font-size: 0.12rem;
    padding: 0.1rem 0;
    width: 0.74rem;
    height: 0.36rem;
    margin-bottom: 0.12rem;
    text-align: center;
  }
  .section-company-structure .director-board {
    margin-right: 0.2rem;
    position: relative;
  }
  .section-company-structure .director-board::after {
    content: "";
    width: 0.2rem;
    height: 1px;
    background: #001255;
    right: -0.2rem;
    top: 0.2rem;
    position: absolute;
    z-index: -1;
  }
  .section-company-structure .structure-content span {
    font-size: 0.12rem;
    padding: 0.1rem 0.1rem;
    height: 0.36rem;
    margin-bottom: 0.12rem;
    text-align: center;
  }
  .section-company-structure .structure-content .parent {
    width: 0.74rem;
  }
  .section-company-structure .structure-chart {
    margin-left: 0.36rem;
  }
  .section-company-structure .structure-chart > li {
    margin-left: 20px;
    position: relative;
  }
  .section-company-structure .structure-chart > li::before {
    content: "";
    border-left: 1px solid #001255;
    width: 0.01rem;
    height: 100%;
    top: 0.2rem;
    left: -0.2rem;
    position: absolute;
    z-index: -1;
  }
  .section-company-structure .structure-chart > li:first-child:before {
    height: calc( 100% + 0.92rem);
    top: -0.72rem;
  }
  .section-company-structure .structure-chart > li:last-child:before {
    height: 50%;
    top: auto;
    bottom: 100%;
  }
  .section-company-structure .structure-chart > li::after {
    width: 0.2rem;
    height: 1px;
    top: 0.18rem;
    left: -0.2rem;
  }
  .section-company-structure .child,
  .section-company-structure .second-child {
    margin-left: 0.36rem;
  }
  .section-company-structure .child > li,
  .section-company-structure .second-child > li {
    position: relative;
  }
  .section-company-structure .child > li::before,
  .section-company-structure .second-child > li::before {
    content: "";
    border-left: 1px solid #001255;
    width: 0.01rem;
    height: 100%;
    top: 0;
    left: -0.2rem;
    position: absolute;
    z-index: -1;
  }
  .section-company-structure .child > li:first-child:before,
  .section-company-structure .second-child > li:first-child:before {
    height: calc(100% + 0.18rem);
    top: -0.16rem;
  }
  .section-company-structure .child > li:last-child:before,
  .section-company-structure .second-child > li:last-child:before {
    height: 0.35rem;
    top: -0.16rem;
  }
  .section-company-structure .child li {
    position: relative;
  }
  .section-company-structure .child li::after {
    content: "";
    width: 0.2rem;
    height: 1px;
    top: 0.18rem;
    left: -0.2rem;
    background: #001255;
    position: absolute;
    z-index: -1;
  }
  .section-company-structure .horizontal-line {
    display: -webkit-flex;
    display: flex;
  }
  .section-company-structure .horizontal-line .child > li:first-child::after {
    width: 0.4rem;
    left: -0.4rem;
  }
  .section-company-structure .horizontal-line .child > li:first-child::before {
    height: calc(100% - 0.24rem);
    top: 0.18rem;
  }
}
@media only screen and (max-width: 374px) {
  .section-company-structure .director-board::before {
    left: 0.39rem;
  }
  .section-company-structure .structure-content > span::before {
    left: 0.39rem;
  }
}
.section-company-history .history-container {
  position: relative;
}
.section-company-history .history-row {
  position: relative;
  color: #001255;
  font-weight: 500;
  z-index: 2;
}
.section-company-history .year {
  font-weight: 900;
  letter-spacing: 0.1em;
}
.section-company-history .company-name,
.section-company-history .history-event {
  position: relative;
}
.section-company-history .company-name:after,
.section-company-history .history-event:after {
  content: "";
  position: absolute;
  background: #FCDE62;
  z-index: 5;
}
.section-company-history .year-head {
  font-weight: 900;
}
.section-company-history .head {
  font-weight: 900;
}
.section-company-history .head::after {
  display: none;
}

@media print, (min-width: 768px) {
  .section-company-history {
    padding: 77px 0 50px;
  }
  .section-company-history .history-container {
    background: #ECF4FC;
    padding-bottom: 45px;
    margin-top: 57px;
  }
  .section-company-history .history-container:before, .section-company-history .history-container::after {
    position: absolute;
    content: "";
    top: 0;
    width: 553px;
    height: 100%;
  }
  .section-company-history .history-container::before {
    left: 0;
    background: #F8F8F8;
  }
  .section-company-history .history-container::after {
    right: 0;
    background: #F7FAFD;
  }
  .section-company-history .history-row {
    *zoom: 1;
    font-size: 14px;
  }
  .section-company-history .history-row:after {
    content: "";
    display: table;
    clear: both;
  }
  .section-company-history .first-row {
    padding-top: 42px;
  }
  .section-company-history .first-row .year {
    padding: 55px 0 10px;
  }
  .section-company-history .company-name {
    float: left;
    width: 553px;
    text-align: right;
    line-height: 1.78;
    padding: 10px 20px 8px 0;
  }
  .section-company-history .year {
    width: 94px;
    position: absolute;
    left: 50%;
    top: 0;
    text-align: center;
    background: #ECF4FC;
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    padding: 14px 0 10px;
  }
  .section-company-history .year.year-head {
    background: #fff;
    padding: 12px 0;
  }
  .section-company-history .history-event {
    float: right;
    width: 553px;
    line-height: 1.78;
    padding: 12px 0 12px 20px;
  }
  .section-company-history .company-name,
  .section-company-history .history-event {
    position: relative;
  }
  .section-company-history .company-name:after,
  .section-company-history .history-event:after {
    width: 16px;
    height: 1px;
    top: 28px;
    margin-top: -6px;
  }
  .section-company-history .company-name::after {
    right: -8px;
  }
  .section-company-history .history-event::after {
    left: -8px;
  }
  .section-company-history .head::after {
    display: none;
  }
}
@media only screen and (max-width: 767px) {
  .section-company-history {
    padding: 0.16rem 0 0.1rem;
  }
  .section-company-history .wrapper {
    padding-left: 0.12rem;
    padding-right: 0.12rem;
  }
  .section-company-history .history-heading {
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-align-items: center;
    align-items: center;
    margin-bottom: 0.12rem !important;
  }
  .section-company-history .history-heading .history-content {
    width: 1.1rem;
  }
  .section-company-history .history-heading .company-name {
    background: transparent;
    padding: 0;
    margin-bottom: 0.07rem;
    margin-top: 0.1rem;
  }
  .section-company-history .history-heading .company-name span {
    background: #F8F8F8;
    padding: 0.04rem 0.08rem;
  }
  .section-company-history .history-heading .history-event {
    padding: 0.05rem;
  }
  .section-company-history .history-container::after {
    background: #ECF4FC;
    width: 0.8rem;
    top: 0.52rem;
    left: 0;
    bottom: -0.16rem;
    content: "";
    position: absolute;
  }
  .section-company-history .history-row {
    display: -webkit-flex;
    display: flex;
    margin-bottom: 0.1rem;
  }
  .section-company-history .year {
    font-size: 0.12rem;
    background: #ECF4FC;
    width: 0.8rem;
    text-align: center;
    padding: 0.05rem 0;
  }
  .section-company-history .year-head {
    background: transparent;
    font-size: 0.12rem;
  }
  .section-company-history .history-content {
    font-size: 0.12rem;
    width: 2.75rem;
  }
  .section-company-history .company-name {
    font-size: 0.12rem;
    background: #F8F8F8;
    margin-bottom: 0.02rem;
    padding: 0.05rem 0.12rem 0.05rem 0.2rem;
  }
  .section-company-history .history-event {
    font-size: 0.12rem;
    background: #F7FAFF;
    padding: 0.05rem 0.12rem 0.05rem 0.2rem;
  }
  .section-company-history .company-name::after,
  .section-company-history .history-event::after {
    width: 0.16rem;
    height: 1px;
    left: -0.08rem;
    top: 0.12rem;
  }
  .section-company-history .head {
    font-size: 0.12rem;
  }
}
.section-company-notice .section-txt {
  font-weight: 500;
  color: #001255;
}
.section-company-notice .list-download {
  font-weight: bold;
}
.section-company-notice .list-download > li {
  border-bottom: 1px solid #B1B7CC;
}
.section-company-notice .list-download > li:first-child {
  border-top: 2px solid #B1B7CC;
}
.section-company-notice .list-txt {
  color: #001255;
  font-weight: bold;
}
.section-company-notice .adobe-txt {
  font-weight: 500;
  color: #001255;
}
.section-company-notice .adobe-download {
  display: block;
}
.section-company-notice .adobe-download img {
  display: block;
  width: 100%;
}

@media print, (min-width: 768px) {
  .section-company-notice {
    font-size: 16px;
    padding: 77px 0 70px;
  }
  .section-company-notice .section-txt {
    margin: 40px 0 55px;
  }
  .section-company-notice .list-download {
    line-height: 1.9;
  }
  .section-company-notice .list-download > li {
    border-bottom: 1px solid #B1B7CC;
    padding: 24px 0 18px 25px;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-align-items: center;
    align-items: center;
  }
  .section-company-notice .list-download > li:first-child {
    position: relative;
  }
  .section-company-notice .list-download > li:first-child::after {
    content: "";
    width: 300px;
    height: 2px;
    top: -2px;
    right: 0;
    background: #FCDE62;
    position: absolute;
  }
  .section-company-notice .list-txt {
    margin-right: auto;
  }
  .section-company-notice .adobe {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    align-items: center;
    margin: 20px 0;
  }
  .section-company-notice .adobe-txt {
    font-size: 16px;
    margin-right: 145px;
    line-height: 1.9;
  }
  .section-company-notice .adobe-download {
    width: 158px;
  }
}
@media only screen and (max-width: 767px) {
  .section-company-notice {
    font-size: 0.14rem;
    padding: 0.16rem 0 0;
  }
  .section-company-notice .wrapper {
    padding-left: 0.12rem;
    padding-right: 0.12rem;
  }
  .section-company-notice .section-txt {
    margin: 0.24rem 0 0.38rem;
    line-height: 1.4;
  }
  .section-company-notice .list-download > li {
    padding: 0.3rem 0 0.3rem;
  }
  .section-company-notice .list-txt {
    margin-bottom: 0.14rem;
  }
  .section-company-notice .adobe {
    margin: 0.24rem 0 0.35rem;
  }
  .section-company-notice .adobe-txt {
    font-size: 0.14rem;
    margin-bottom: 0.16rem;
  }
  .section-company-notice .adobe-download {
    width: 1.58rem;
    margin: 0 auto;
  }
}
.section-recruit-intro .wrapper {
  position: relative;
}
.section-recruit-intro .wrapper::after {
  content: "";
  position: absolute;
  z-index: -1;
}
.section-recruit-intro .recruit-intro {
  color: #001255;
  font-weight: bold;
  line-height: 2.13;
}

@media print, (min-width: 768px) {
  .section-recruit-intro .wrapper {
    padding: 24px 0 85px;
  }
  .section-recruit-intro .wrapper::after {
    background: url(../img/recruit/bg_intro.jpg) no-repeat right 0;
    background-size: auto 100%;
    width: 960px;
    height: 238px;
    top: 0;
    right: 0;
  }
  .section-recruit-intro .recruit-intro {
    font-size: 23px;
  }
}
@media only screen and (max-width: 767px) {
  .section-recruit-intro {
    margin-top: 0.07rem;
    padding: 0.26rem 0 0.6rem;
  }
  .section-recruit-intro .wrapper::after {
    background: url(../img/recruit/bg_intro.jpg) no-repeat right center;
    background-size: auto 100%;
    height: 0.98rem;
    top: -0.75rem;
    right: -0.12rem;
    left: 1.2rem;
  }
  .section-recruit-intro .recruit-intro {
    font-size: 0.14rem;
    padding: 0 0.14rem;
  }
}
.section-recruit-environment .environment-container {
  position: relative;
  background: #F8F8F8;
}
.section-recruit-environment .enviroment-bg {
  font-weight: 900;
  letter-spacing: 0.1em;
  line-height: 1.35;
  color: #EFEFEF;
  text-align: center;
  position: absolute;
  top: 0;
  left: 50%;
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  z-index: -1;
}
.section-recruit-environment .title {
  text-align: center;
  color: #001255;
  font-weight: bold;
}
.section-recruit-environment .environment-txt {
  font-weight: bold;
  text-align: center;
  line-height: 1.6;
  color: #001255;
}
.section-recruit-environment .working-place .img-place img {
  width: 100%;
  display: block;
}
.section-recruit-environment .working-place .place-txt {
  background: #fff;
}
.section-recruit-environment .working-place .place-txt p {
  color: #001255;
  line-height: 1.66;
}
.section-recruit-environment .video-introduction {
  background: #fff;
}
.section-recruit-environment .video-introduction .video-title {
  text-align: center;
  color: #001255;
  font-weight: bold;
}
.section-recruit-environment .video-introduction .video-txt {
  line-height: 1.9;
  font-weight: 500;
  color: #001255;
  text-align: center;
}
.section-recruit-environment .video-introduction .img-video {
  margin: 0 auto;
}
.section-recruit-environment .video-introduction .img-video img {
  width: 100%;
  display: block;
}

@media print, (min-width: 768px) {
  .section-recruit-environment {
    padding: 220px 0 235px;
  }
  .section-recruit-environment .environment-container {
    background: #F8F8F8;
    padding: 30px 90px 100px;
  }
  .section-recruit-environment .enviroment-bg {
    font-size: 100px;
    margin-top: -110px;
  }
  .section-recruit-environment .title {
    font-size: 40px;
    top: -42px;
    position: absolute;
    left: 50%;
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }
  .section-recruit-environment .environment-txt {
    font-size: 20px;
  }
  .section-recruit-environment .working-place {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-align-items: center;
    align-items: center;
    padding: 56px 0 150px;
    margin-right: -10px;
  }
  .section-recruit-environment .working-place .img-place {
    width: 350px;
  }
  .section-recruit-environment .working-place .place-content {
    position: relative;
  }
  .section-recruit-environment .working-place .place-content.work-room {
    margin-top: -50px;
    margin-left: 30px;
  }
  .section-recruit-environment .working-place .place-content.work-room .place-txt {
    bottom: 0;
    right: -250px;
  }
  .section-recruit-environment .working-place .place-content.hall {
    margin-bottom: 60px;
  }
  .section-recruit-environment .working-place .place-content.hall .place-txt {
    top: 10px;
    left: -250px;
    text-align: right;
    padding: 12px 36px 12px 0;
  }
  .section-recruit-environment .working-place .place-content.study-room .place-txt {
    width: 305px;
    bottom: 0;
    left: -285px;
    text-align: right;
    padding: 12px 36px 12px 0;
  }
  .section-recruit-environment .working-place .place-txt {
    position: absolute;
    padding: 12px 0 12px 36px;
    width: 272px;
  }
  .section-recruit-environment .working-place .place-txt p {
    font-size: 18px;
  }
  .section-recruit-environment .video-introduction {
    padding: 40px 0;
    width: 1000px;
    margin: 0 auto;
  }
  .section-recruit-environment .video-introduction .video-title {
    font-size: 40px;
    margin: -70px 0 14px;
  }
  .section-recruit-environment .video-introduction .video-txt {
    font-size: 16px;
    margin-bottom: 30px;
  }
  .section-recruit-environment .video-introduction .img-video {
    width: 640px;
  }
}
@media only screen and (max-width: 767px) {
  .section-recruit-environment {
    padding: 0.4rem 0 0.5rem;
    margin-bottom: 0.55rem;
  }
  .section-recruit-environment .enviroment-bg {
    font-size: 0.35rem;
    margin-top: -0.38rem;
  }
  .section-recruit-environment .environment-container {
    padding: 0.2rem 0.12rem 0.6rem;
  }
  .section-recruit-environment .title {
    font-size: 0.18rem;
    margin: -0.35rem 0 0.15rem;
  }
  .section-recruit-environment .environment-txt {
    font-size: 0.13rem;
    margin-bottom: 0.75rem;
  }
  .section-recruit-environment .working-place {
    padding: 0.2rem 0 0.2rem;
  }
  .section-recruit-environment .place-content {
    margin-bottom: 0.94rem;
    position: relative;
  }
  .section-recruit-environment .place-content.hall .place-txt, .section-recruit-environment .place-content.study-room .place-txt {
    top: -0.5rem;
    left: 0.12rem;
  }
  .section-recruit-environment .place-content.study-room .place-txt {
    width: 2.3rem;
  }
  .section-recruit-environment .place-content.work-room .place-txt {
    top: -0.5rem;
    right: 0.12rem;
  }
  .section-recruit-environment .place-content.work-room, .section-recruit-environment .place-content.hall {
    text-align: right;
  }
  .section-recruit-environment .place-txt {
    font-size: 0.14rem;
    font-weight: bold;
    width: 2rem;
    position: absolute;
    padding: 0.1rem;
  }
  .section-recruit-environment .video-introduction {
    margin-top: -0.3rem;
    padding: 0.2rem 0 0.3rem;
  }
  .section-recruit-environment .video-introduction .video-title {
    font-size: 0.18rem;
    margin: -0.3rem 0 0.14rem;
  }
  .section-recruit-environment .video-introduction .video-txt {
    font-size: 0.13rem;
    font-weight: bold;
    margin-bottom: 0.2rem;
  }
  .section-recruit-environment .video-introduction .img-video {
    width: 3rem;
  }
}
.section-recruit-interview {
  background: rgba(228, 232, 245, 0.6);
  position: relative;
}
.section-recruit-interview .interview-bg {
  font-weight: 900;
  text-align: center;
  color: #DBDEEB;
  letter-spacing: 0.1em;
  position: absolute;
  left: 50%;
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  z-index: -1;
}
.section-recruit-interview .title {
  text-align: center;
  color: #001255;
  font-weight: bold;
}
.section-recruit-interview .position {
  background: #fff;
  position: relative;
}
.section-recruit-interview .position.long .position-name {
  writing-mode: vertical-lr;
  -ms-writing-mode: tb-rl;
}
.section-recruit-interview .sub-title {
  font-weight: bold;
  color: #001255;
}
.section-recruit-interview .content-txt {
  font-weight: 500;
  color: #001255;
  line-height: 1.9;
}
.section-recruit-interview .date {
  color: #656F9A;
  font-weight: bold;
}
.section-recruit-interview .position-name {
  font-weight: 900;
  letter-spacing: 0.1em;
  color: #DBDEEB;
  position: absolute;
}

@media print, (min-width: 768px) {
  .section-recruit-interview {
    padding: 10px 0 30px;
  }
  .section-recruit-interview .wrapper {
    padding: 0 85px;
  }
  .section-recruit-interview .interview-bg {
    font-size: 100px;
    top: -110px;
  }
  .section-recruit-interview .title {
    font-size: 40px;
    margin: -52px 0 75px;
  }
  .section-recruit-interview .interview-position {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-align-items: flex-start;
    align-items: flex-start;
    padding: 0 0 100px;
  }
  .section-recruit-interview .position {
    width: 495px;
    padding: 45px 24px 30px;
  }
  .section-recruit-interview .position.long {
    width: 362px;
    padding: 45px 35px 30px 24px;
  }
  .section-recruit-interview .position.long .position-name {
    top: 20px;
    bottom: -200px;
    right: -35px;
  }
  .section-recruit-interview .position:first-child {
    margin: 30px 40px 25px 0;
  }
  .section-recruit-interview .position:nth-child(2) {
    margin: 0 35px 150px 0;
  }
  .section-recruit-interview .position:nth-child(3) {
    margin: -150px 70px 0 95px;
  }
  .section-recruit-interview .sub-title {
    font-size: 18px;
    margin-bottom: 15px;
    line-height: 1.7;
  }
  .section-recruit-interview .content-txt {
    font-size: 16px;
    margin-bottom: 40px;
  }
  .section-recruit-interview .date {
    font-size: 12px;
  }
  .section-recruit-interview .position-name {
    font-size: 48px;
    top: -35px;
    right: 0;
  }
}
@media only screen and (max-width: 767px) {
  .section-recruit-interview {
    padding: 0.3rem 0 0.24rem;
  }
  .section-recruit-interview .interview-position {
    padding: 0 0.12rem;
  }
  .section-recruit-interview .interview-bg {
    font-size: 0.35rem;
    top: -0.4rem;
  }
  .section-recruit-interview .title {
    font-size: 0.18rem;
    margin: -0.44rem 0 0.6rem;
  }
  .section-recruit-interview .position {
    width: 3.15rem;
    padding: 0.4rem 0.24rem 0.35rem;
    margin-bottom: 0.44rem;
  }
  .section-recruit-interview .position.long .position-name {
    top: 0.7rem;
    bottom: 0rem;
    right: -0.18rem;
  }
  .section-recruit-interview .position:nth-child(odd) {
    margin-left: 0.12rem;
  }
  .section-recruit-interview .position:nth-child(1) .position-name {
    left: -0.12rem;
  }
  .section-recruit-interview .position:nth-child(3) .position-name {
    left: -0.15rem;
  }
  .section-recruit-interview .position-name {
    font-size: 0.24rem;
    top: -0.2rem;
    right: -0.12rem;
  }
  .section-recruit-interview .date {
    font-size: 0.12rem;
  }
  .section-recruit-interview .sub-title {
    font-size: 0.16rem;
    margin-bottom: 0.08rem;
    line-height: 1.5;
  }
  .section-recruit-interview .content-txt {
    font-size: 0.14rem;
    margin-bottom: 0.7rem;
    line-height: 1.7;
  }
}
.section-recruit-contact .list-contact > li {
  letter-spacing: 0.05em;
  font-weight: bold;
  position: relative;
}
.section-recruit-contact .list-contact > li::before {
  content: "";
  position: absolute;
}
.section-recruit-contact .list-contact > li.yellow {
  background: linear-gradient(to right, #fcde62 0%, #ceab1d 100%);
  color: #001255;
}
.section-recruit-contact .list-contact > li.yellow .contact-heading::after {
  background: #7C6E00;
}
.section-recruit-contact .list-contact > li.blue {
  background: linear-gradient(to right, #001e8e 0%, #000c38 100%);
  color: #fff;
}
.section-recruit-contact .list-contact > li.blue .contact-heading::after {
  background: #FCDE62;
}
.section-recruit-contact .contact-heading {
  text-align: center;
  position: relative;
}
.section-recruit-contact .contact-heading::after {
  content: "";
  bottom: 0;
  left: 50%;
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  position: absolute;
}
.section-recruit-contact .contact-txt {
  text-align: center;
}
.section-recruit-contact .img-contact {
  margin: 0 auto;
}
.section-recruit-contact .img-contact img {
  width: 100%;
  display: block;
}

@media print, (min-width: 768px) {
  .section-recruit-contact {
    padding: 100px 0 60px;
  }
  .section-recruit-contact .list-contact {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
  }
  .section-recruit-contact .list-contact > li {
    width: 580px;
    padding: 62px 0 50px;
  }
  .section-recruit-contact .list-contact > li::before {
    background: url(../img/common/icn_mask.svg) no-repeat 0 0;
    background-size: auto 100%;
    width: 262px;
    height: 138px;
    top: -21px;
    left: -40px;
  }
  .section-recruit-contact .contact-heading {
    font-size: 22px;
    padding-bottom: 18px;
    margin-bottom: 22px;
  }
  .section-recruit-contact .contact-heading::after {
    width: 32px;
    height: 2px;
  }
  .section-recruit-contact .contact-txt {
    font-size: 14px;
    margin-bottom: 44px;
  }
  .section-recruit-contact .img-contact {
    width: 200px;
  }
}
@media only screen and (max-width: 767px) {
  .section-recruit-contact {
    padding: 1rem 0 0;
    margin-bottom: -0.5rem;
  }
  .section-recruit-contact .list-contact {
    margin: 0 -0.24rem -0.5rem;
  }
  .section-recruit-contact .list-contact > li {
    padding: 0.37rem 0.15rem 0.32rem;
  }
  .section-recruit-contact .list-contact > li::before {
    background: url(../img/common/sp/icn_mask.svg) no-repeat 0 0;
    background-size: auto 100%;
    width: 2.62rem;
    height: 1.38rem;
    top: -0.21rem;
    left: -0.4rem;
  }
  .section-recruit-contact .list-contact .content {
    position: relative;
    z-index: 10;
  }
  .section-recruit-contact .contact-heading {
    font-size: 0.22rem;
    padding-bottom: 0.16rem;
    margin-bottom: 0.18rem;
  }
  .section-recruit-contact .contact-heading::after {
    width: 0.32rem;
    height: 2px;
  }
  .section-recruit-contact .contact-txt {
    font-size: 0.14rem;
    margin-bottom: 0.36rem;
  }
  .section-recruit-contact .img-contact {
    width: 2rem;
  }
  .section-recruit-contact .contact-block-cmn {
    margin: 0.8rem 0;
    width: 100%;
  }
}
.section-security .serurity-container {
  background: #FAFAFA;
  -moz-box-shadow: 0 3px 10px rgba(0, 12, 56, 0.05);
  -webkit-box-shadow: 0 3px 10px rgba(0, 12, 56, 0.05);
  box-shadow: 0 3px 10px rgba(0, 12, 56, 0.05);
  font-weight: 500;
  line-height: 1.5;
}
.section-security .serurity-container .txt {
  color: #000C38;
}
.section-security .serurity-container .list-title {
  font-weight: bold;
  color: #000C38;
  line-height: 1em;
  border-left: 2px solid #FCDE62;
}
.section-security .serurity-container .list-security > li {
  color: #000C38;
}
.section-security .serurity-container .sign {
  text-align: right;
}
.section-security .serurity-container .sign-info p {
  color: #000C38;
}
.section-security .serurity-container .sign-name {
  font-weight: bold;
  color: #000C38;
}

@media print, (min-width: 768px) {
  .section-security {
    padding: 50px 0 160px;
  }
  .section-security .serurity-container {
    width: 1000px;
    margin: 0 auto;
    font-size: 16px;
    padding: 78px 100px 75px;
  }
  .section-security .serurity-container .txt {
    margin-bottom: 55px;
  }
  .section-security .serurity-container .list-title {
    padding-left: 10px;
    margin-bottom: 14px;
  }
  .section-security .serurity-container .list-security {
    margin-bottom: 35px;
  }
  .section-security .serurity-container .list-security > li {
    margin-bottom: 25px;
  }
  .section-security .serurity-container .sign-info {
    margin-bottom: 4px;
  }
}
@media only screen and (max-width: 767px) {
  .section-security {
    padding: 0.5rem 0 0.84rem;
  }
  .section-security .serurity-container {
    font-size: 0.14rem;
    padding: 0.4rem 0.22rem 0.28rem;
    margin: 0 0.04rem;
  }
  .section-security .serurity-container .txt {
    margin-bottom: 0.68rem;
  }
  .section-security .serurity-container .list-title {
    padding-left: 10px;
    margin-bottom: 0.14rem;
    font-size: 0.16rem;
  }
  .section-security .serurity-container .list-txt {
    font-size: 0.14rem;
  }
  .section-security .serurity-container .list-security > li {
    margin-bottom: 0.35rem;
  }
  .section-security .serurity-container .sign {
    margin-top: 0.5rem;
    font-size: 0.16rem;
    line-height: 1.5;
  }
  .section-security .serurity-container .sign-info {
    margin-bottom: 0.05rem;
  }
}
.section-privacy .privacy-container {
  background: #FAFAFA;
  -moz-box-shadow: 0 3px 10px rgba(0, 12, 56, 0.05);
  -webkit-box-shadow: 0 3px 10px rgba(0, 12, 56, 0.05);
  box-shadow: 0 3px 10px rgba(0, 12, 56, 0.05);
  font-weight: 500;
  line-height: 1.5;
}
.section-privacy .sign {
  color: #000C38;
  text-align: right;
}
.section-privacy .list-privacy > li {
  color: #000C38;
}
.section-privacy .list-privacy h2 {
  font-weight: bold;
}
.section-privacy .sign .name {
  font-weight: bold;
}

@media print, (min-width: 768px) {
  .section-privacy {
    padding: 50px 0 160px;
  }
  .section-privacy .privacy-container {
    width: 1000px;
    margin: 0 auto;
    font-size: 16px;
    padding: 78px 100px 75px;
  }
  .section-privacy .privacy-container p + p {
    margin-top: 22px;
  }
  .section-privacy .list-privacy > li {
    margin-bottom: 16px;
  }
  .section-privacy .list-privacy > li:first-child {
    margin-bottom: 18px;
  }
  .section-privacy .list-privacy h2 {
    margin-bottom: 4px;
  }
  .section-privacy .list-privacy .title-intro {
    margin-bottom: 16px;
  }
  .section-privacy .sub-list {
    margin-top: 10px;
  }
  .section-privacy .sign .title {
    margin-top: 20px;
  }
  .section-privacy .sign .name {
    margin-top: 5px;
  }
}
@media only screen and (max-width: 767px) {
  .section-privacy {
    padding: 0.52rem 0 0.64rem;
  }
  .section-privacy .privacy-container {
    font-size: 0.14rem;
    padding: 0.38rem 0.24rem 0.33rem;
    line-height: 1.4;
    margin: 0 0.04rem;
  }
  .section-privacy .privacy-container p + p {
    margin-top: 0.14rem;
  }
  .section-privacy .list-privacy > li {
    margin-bottom: 0.38rem;
  }
  .section-privacy .list-privacy > li:first-child {
    margin-bottom: 0.65rem;
  }
  .section-privacy .list-privacy h2 {
    margin-bottom: 0.12rem;
  }
  .section-privacy .list-privacy .title-intro {
    margin-bottom: 0.2rem;
  }
  .section-privacy .sub-list {
    margin-top: 0.25rem;
  }
  .section-privacy .sign {
    font-size: 0.16rem;
    line-height: 1.6;
    margin-top: 0.6rem;
  }
  .section-privacy .sign p + p {
    margin-top: 0;
  }
  .section-privacy .sign .name {
    margin-top: 0.05rem !important;
  }

  .section-contact .wrapper {
    padding-left: 0.24rem;
    padding-right: 0.24rem;
  }
}
.section-site-map .main-link > li > a, .section-site-map .main-link > li > span {
  font-weight: bold;
  color: #000C38;
  line-height: 1em;
  border-left: 2px solid #FCDE62;
}
.section-site-map .sub-link {
  border-left: 1px solid #B0B7CF;
}
.section-site-map .sub-link > li > a {
  font-weight: 500;
  color: #000C38;
}
.section-site-map .color > li > a {
  color: #001255;
}
.section-site-map .sub-link .blur-txt {
  font-weight: bold;
  color: rgba(0, 18, 85, 0.3);
}
.section-site-map .sub-link .blur-txt a {
  font-weight: 500;
  color: #001255;
}
.section-site-map .no-border {
  border-left: none;
}
.section-site-map .child-link > li > span {
  font-weight: bold;
  color: #B1B7CC;
}

@media print, (min-width: 768px) {
  .section-site-map .site-map-container {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    padding: 48px 0 125px;
    margin-left: 20px;
  }
  .section-site-map .first-col {
    width: 285px;
  }
  .section-site-map .second-col {
    width: 485px;
  }
  .section-site-map .third-col {
    width: 220px;
  }
  .section-site-map ul {
    font-size: 16px;
  }
  .section-site-map .main-link > li {
    margin-bottom: 20px;
  }
  .section-site-map .main-link > li > a, .section-site-map .main-link > li > span {
    padding-left: 10px;
  }
  .section-site-map .sub-link {
    margin: 10px 0 0 12px;
    padding-left: 12px;
  }
  .section-site-map .sub-link > li {
    margin-bottom: 10px;
  }
  .section-site-map .sub-link .blur-txt {
    font-size: 12px;
    margin-bottom: 12px;
  }
  .section-site-map .sub-link .blur-txt a {
    margin-bottom: 10px;
  }
  .section-site-map .link-product {
    margin-top: 4px;
  }
  .section-site-map .link-product > li {
    margin-bottom: 10px;
  }
  .section-site-map .child-link > li {
    margin-bottom: 20px;
  }
}
@media only screen and (max-width: 767px) {
  .section-site-map .wrapper {
    padding-left: 0.24rem;
    padding-right: 0.24rem;
  }
  .section-site-map .site-map-container {
    padding: 0.28rem 0 1rem;
  }
  .section-site-map .first-col {
    margin-bottom: 0.25rem;
  }
  .section-site-map .second-col {
    margin-bottom: 0.25rem;
  }
  .section-site-map ul {
    font-size: 0.16rem;
  }
  .section-site-map .main-link > li {
    margin-bottom: 0.2rem;
  }
  .section-site-map .main-link > li > a {
    padding-left: 0.08rem;
  }
  .section-site-map .sub-link {
    margin: 0.1rem 0 0 0.12rem;
    padding-left: 0.12rem;
  }
  .section-site-map .sub-link > li {
    margin-bottom: 0.08rem;
  }
  .section-site-map .sub-link .blur-txt {
    font-size: 0.12rem;
    margin-bottom: 0.12rem;
  }
  .section-site-map .sub-link .blur-txt a {
    margin-bottom: 0.1rem;
  }
  .section-site-map .link-product {
    margin-top: 0.04rem;
  }
  .section-site-map .link-product > li {
    margin-bottom: 0.1rem;
  }
  .section-site-map .child-link > li {
    margin-bottom: 0.15rem;
  }
}

/*------------------------------------------------------------
error
------------------------------------------------------------*/
div.wpcf7-validation-errors, div.wpcf7-acceptance-missing {
  border: 2px solid #f7e700;
  font-size: 12px;
}

span.wpcf7-not-valid-tip {
  color: #f00;
  font-size: 1em;
  font-weight: normal;
  display: block;
  font-size: 12px !important;
}

/*------------------------------------------------------------
ubcl
------------------------------------------------------------*/
.ubclBox {
  margin: 57px 0 64px;
}
.ubclBox p {
  margin-top: 0 !important;
}
.ubclBox .wrapper {
  padding: 53px 0 0;
  max-width: 1000px;
  background-color: #f7fafd;
}
.ubclBox .ubclTtl {
  margin: 4px 0 29px;
  font-size: 22px;
  line-height: 1.41;
  letter-spacing: 0.88px;
  text-align: center;
  color: #001255;
  font-weight: 700;
}
.ubclBox .ubclTtl span {
  display: inline-block;
  border-bottom: 1px solid #656f9a;
}
.ubclBox .topBox {
  margin-bottom: 5px;
  padding: 0 0 44px;
  position: relative;
  border-bottom: 2px solid #001255;
  z-index: 10;
}
.ubclBox .topBox:before {
  margin-left: -80px;
  position: absolute;
  left: 50%;
  bottom: -31px;
  border-left: 80px solid transparent;
  border-right: 80px solid transparent;
  border-top: 26px solid #f7fafd;
  content: '';
}
.ubclBox .topBox:after {
  margin-left: -75px;
  position: absolute;
  left: 50%;
  bottom: -2px;
  height: 4px;
  width: 150px;
  background-color: #f7fafd;
  content: '';
}
.ubclBox .topBox .txt {
  font-size: 16px;
  font-weight: 500;
  text-align: center;
  line-height: 1.75;
  color: #7c6e00;
}
.ubclBox .topBox .txt span {
  padding: 0 20px;
  background: url("../img/ubcl/ubcl-icon01.png") left bottom no-repeat,url("../img/ubcl/ubcl-icon02.png") right bottom no-repeat;
  background-size: auto 100%;
}
.ubclBox ul {
  text-align: center;
}
.ubclBox ul li {
  margin: 0 58px;
  max-width: 140px;
  display: inline-block;
  font-size: inherit !important;
  padding-left: 0 !important;
  line-height: inherit !important;
  position: static !important;
}
.ubclBox ul li img {
  display: block;
  width: 72px;
  margin: 0 auto 4px;
}
.ubclBox ul li span {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.43;
  text-align: center;
  color: #000c38;
}
.ubclBox .blueBox {
  padding: 45px 20px 56px;
  text-align: center;
  position: relative;
  background-color: #001255;
}
.ubclBox .blueBox::before {
  margin-left: 37px;
  position: absolute;
  left: 50%;
  top: -34px;
  width: 2px;
  height: 80px;
  transform: rotate(72deg);
  -webkit-transform: rotate(72deg);
  background-color: #001255;
  content: '';
  z-index: 100;
}
.ubclBox .blueBox::after {
  margin-left: -39px;
  position: absolute;
  left: 50%;
  top: -34px;
  width: 2px;
  height: 80px;
  transform: rotate(117deg);
  -webkit-transform: rotate(108deg);
  background-color: #001255;
  content: '';
  z-index: 100;
}
.ubclBox .blueBox .ttl {
  margin-bottom: 13px;
  font-size: 24px;
  font-weight: 900;
  line-height: 1.72;
  letter-spacing: 1.92px;
  color: #fff;
}
.ubclBox .blueBox .text {
  margin-bottom: 25px;
  font-size: 14px;
  font-weight: 500;
  line-height: 2;
  color: #fff;
}
.ubclBox .blueBox .imgBox {
  position: absolute;
  right: 100px;
  top: 37.5%;
  width: 118px;
}
.ubclBox .blueBox .imgBox img {
  max-width: 100%;
}
.ubclBox .blueBox .imgBox span {
  display: inline-block;
  width: 83px;
  position: absolute;
  top: -35px;
  right: -35px;
}
.ubclBox .cmn-button {
  width: 280px;
}
.ubclBox .cmn-button:hover {
  border-bottom-color: #FFF;
}
.editor-area .ubclBox ul li::before {
  display: none;
}
.editor-area .ubclBox {
  margin: 25px 0 0;
}
.editor-area .ubclBox ul {
  margin-top: 0;
}
@media all and (min-width: 768px) {
	.sp {
		display: none !important;
	}
}
@media only screen and (max-width: 767px) {
  .ubclBox {
    margin: 57px 0 81px;
  }
  .ubclBox .wrapper {
    padding: 54px 0 0;
  }
  .ubclBox .topBox {
    margin-bottom: 2px;
    padding: 0 0 58px;
  }
  .ubclBox .topBox::before {
    margin-left: -86px;
    bottom: -36px;
    border-left: 86px solid transparent;
    border-right: 86px solid transparent;
    border-top: 34px solid #f7fafd;
  }
  .ubclBox .topBox::after {
    margin-left: -79px;
    bottom: -3px;
    width: 158px;
  }
  .ubclBox .blueBox::before {
    margin-left: 39px;
    top: -30px;
    height: 86px;
    transform: rotate(68deg);
    -webkit-transform: rotate(68deg);
  }
  .ubclBox .blueBox::after {
    margin-left: -41px;
    top: -30px;
    height: 86px;
    transform: rotate(12deg);
    -webkit-transform: rotate(112deg);
  }
  .ubclBox .topBox .txt {
    font-size: 14px;
  }
  .ubclBox .ubclTtl {
    margin: 7px 0 35px;
    line-height: 1.7;
  }
  .ubclBox ul {
    margin: 0 auto;
    width: 65%;
  }
  .ubclBox ul li {
    margin:0 0 9px;
    max-width: inherit;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .ubclBox ul li:last-child {
    margin-bottom: 0;
  }
  .ubclBox ul li img {
    margin: 0;
    width: 60px;
  }
  .ubclBox ul li span {
    width: calc(100% - 68px);
    text-align: left;
    font-size: 16px;
    line-height: 1.25;
    margin-top: 2px;
  }
  .ubclBox .blueBox {
    padding: 56px 20px 56px;
  }
  .ubclBox .blueBox .ttl {
    margin-bottom: 0;
    font-size: 20px;
    line-height: 3;
    letter-spacing: 1.6px;
  }
  .ubclBox .blueBox .ttl span {
    display: inline-block;
    line-height: 1.5;
  }
  .ubclBox .blueBox .text {
    margin-bottom: 76px;
    font-size: 12px;
  }
  .ubclBox .cmn-button {
    width: 327px;
    height: 0.7rem;
    font-size: 16px;
    padding-left: 0.67rem;
    margin: 0 auto;
  }
  .ubclBox .linkBtn {
    position: relative;
  }
  .ubclBox .blueBox .imgBox {
    width: 79px;
    top: -51px;
    right: 15px;
    border-radius: 50%;
    box-shadow: 0px 0px 10px rgba(0,0,0,0.2);
  }
  .ubclBox .blueBox .imgBox span {
    width: 66px;
    top: -36px;
    right: -23px;
  }
  .ubclBox .cmn-button::after {
    display: none;
  }
  .editor-area .ubclBox {
    margin: 25px -0.12rem 0;
  }
}
@media only screen and (max-width: 365px) {
  .ubclBox .cmn-button {
    width: 260px;
    font-size: 14px;
    padding-left: 0.37rem;
  }
}

/*------------------------------------------------------------
contact
------------------------------------------------------------*/
.formUsb .tabP,
.formUsb .ttl {
  max-width: 800px;
  margin: 0 auto;
  box-sizing: border-box;
}
.formUsb .tabP {
  font-size: 16px;
  color: #001255;
  padding: 48px 24px 34px 4px;
}
.formUsb .tabP .span01 {
  font-weight: bold;
}
.formUsb .tabP span {
  margin-right: 45px;
  display: inline-block;
}
.formUsb .ttl {
  margin-bottom: 35px;
  font-size: 16px;
  font-weight: 500;
  color: #000c38;
  line-height: 1.5;
}
.formUsb .comusbBox {
  margin-bottom: 49px;
}
.formUsb .comusbBox img {
  margin: 0 auto;
  width: 100px;
}
.formUsb .comusbBox table td {
  border-right: solid 1px #b1b7cc;
  width: 33.31%;
  vertical-align: top;
}
.formUsb .comusbBox table td:last-child {
  border-right: none;
}
.formUsb .comusbBox table td span {
  display: block;
  line-height: 1.25;
  text-align: center;
  margin-top: 5px;
}
.formUsb .comusbBox ul li {
  padding-left: 1em;
  text-indent: -1em;
}
.formUsb .grayBox {
  margin: 0 -80px;
  padding: 76px 100px 80px;
  width: 1000px;
  box-shadow: 0 3px 10px 0 rgba(0, 12, 56, 0.05);
  background-color: #fafafa;
}
.formUsb .grayBox .grayTtl {
  margin-bottom: 26px;
  font-size: 16px;
  color: #000c38;
  font-weight: bold;
}
.formUsb .grayBox .qaDl {
  margin-bottom: 25px;
}
.formUsb .grayBox .qaDl dt {
  margin: 23px 0 10px;
  font-size: 16px;
  color: #000c38;
  font-weight: bold;
}
.formUsb .grayBox .qaDl dt:first-child {
  margin-top: 0;
}
.formUsb .grayBox .qaDl dt span {
  padding-left: 11px;
  display: inline-block;
  position: relative;
}
.formUsb .grayBox .qaDl dt span:before {
  position: absolute;
  left: 0;
  top: 15%;
  height: 75%;
  width: 2px;
  background-color: #fcde62;
  content: '';
}
.formUsb .grayBox .qaDl dd {
  font-size: 16px;
  color: #000c38;
  padding-left: 2.1em;
  text-indent: -2.1em;
  line-height: 1.5;
}
.formUsb .grayBox .textP {
  margin-bottom: 67px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  color: #000c38;
}
.formUsb .grayBox .textP01 {
  margin-bottom: 53px;
  padding-left: 1em;
  text-indent: -1em;
}
.ubclLink a {
  width: 350px;
}
.ubclLink01 a {
  padding: 0 30px 0 0;
  justify-content: center;
  background-position: right 16% center;
}

@media only screen and (max-width: 767px) {
  .formUsb .grayBox {
    margin: 0 1px;
    width: auto;
    padding: 0.35rem 0.11rem;
  }
  .formUsb .grayBox .grayTtl {
    margin-bottom: 18px;
  }
  .form-contact .js-ubcl .formUsb .comusbBox table th,
  .form-contact .js-ubcl .formUsb .comusbBox table td {
    width: 33.3%;
    word-break: break-word;
  }
  .form-contact .js-ubcl .formUsb .comusbBox table td img {
    width: 74%;
  }
  .formUsb .grayBox .qaDl dt {
    font-size: 0.16rem;
  }
  .formUsb .grayBox .qaDl dd {
    padding-left: 1em;
    text-indent: -1em;
    font-size: 0.14rem;
    color: #001255;
    line-height: 1.43;
  }
  .formUsb .grayBox .qaDl {
    margin-bottom: 0.18rem;
    padding: 0 0.12rem;
  }
  .formUsb .grayBox .textP {
    margin: 0 0.12rem 0.26rem;
    font-size: 0.14rem;
    color: #001255;
    line-height: 1.43;
  }
  .formUsb .grayBox .textP02 {
    margin: 0 0 0.3rem;
  }
  .ubclLink a {
    width: 82.13vw;
  }
}
form.form-contact.custom-wpcf7c-confirmed .js-ubcl {
  margin-top: -25px;
}
form.form-contact.custom-wpcf7c-confirmed .js-ubcl .contact-h3ttl span {
  margin-bottom: 0;
}
form.form-contact.custom-wpcf7c-confirmed .js-ubcl .contact-h3ttl span.txt {
  font-size: 16px;
  margin: 30px 0 20px;
  display: inline-block;
}
form.form-contact.custom-wpcf7c-confirmed .js-ubcl .contact-h3ttl {
  margin-bottom: 29px;
}
.step-nav li {
  text-align: center;
}
.step-nav li.small {
  font-size: 14px;
}
.comusbBox {
  margin: 0 -10px 16px;
}
.comusbBox table {
  width: 100%;
  border-collapse: collapse;
  border: solid 1px #b1b7cc;
}
.comusbBox table th,
.comusbBox table td {
  padding: 18px 16px 17px;
  border-top: solid 1px #b1b7cc;
  vertical-align: middle;
  color: #000c38;
  line-height: 1.25;
  box-sizing: border-box;
  font-size: 16px;
  font-weight: bold;
}
.comusbBox table th {
  width: 33.48%;
  background-color: #cdccff;
}
.comusbBox table .img {
  margin: 5px auto -5px;
  width: 100px;
  text-align: center;
}
.comusbBox table .img span {
  display: block;
  margin: 17px -15px 0;
}
.comusbBox table .ttl {
  font-weight: 500;
}
.contact-h3ttl {
  margin: 0 24px 27px;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.67;
  color: #001255;
}
.contact-h3ttl span:not(.txt) {
  margin: 0 -16px 17px;
  padding: 0 12px;
  display: block;
  line-height: 1.6;
  font-size: 20px;
  font-weight: 700;
  color: #000c38;
  border-left: 4px solid #001255;
}
.contact-dl {
  margin: 0 14px 32px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  font-size: 16px;
  color: #001255;
}
.contact-dl dt {
  margin-right: 52px;
  font-weight: 700;
}
.contact-dl select {
  padding: 5px 16px;
  width: 96px;
  height: 48px;
  border: none;
  border-radius: 0;
  -webkit-appearance: none;
  appearance: none;
  box-sizing: border-box;
  background: #ecf4fc url("../img/common/ico_arrow.svg") no-repeat right 20px center / 14px 7px;
}
.contact-dl .wpcf7-form-control-wrap {
  margin-right: 16px;
  display: inline-block;
}
.contact-dl select::-ms-expand { display: none; }
.contact-dl .contact-must {
  margin: -5px 5px 0 0;
  font-size: 12px;
  color: #7c6e00;
  line-height: 1;
  display: inline-block;
  vertical-align: text-top;
  font-family: YuGothic, "Yu Gothic", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "游ゴシック", "メイリオ", Meiryo, Verdana, sans-serif;
}
.contact-h3ttl.border {
  padding-top: 41px;
  margin-top: -20px;
  margin-bottom: 0;
  position: relative;
}
.contact-h3ttl.border:after {
  position: absolute;
  top: 0;
  left: -24px;
  right: -24px;
  border-top: 1px solid  #ecf4fc;
  content: "";
}
.js-ubcl .ubcl_time {
  margin-right: 16px;
  display: inline-block;
  width: 400px;
}
.js-ubcl .table-contact + .contact-h3ttl {
  margin-bottom: 30px;
}
.form-contact .js-ubcl .ubcl_time input {
  padding: 10px 20px 10px 56px;
  box-sizing: border-box;
  background: #ecf4fc url(../img/contact/icon_date.svg) no-repeat left 20px center / 16px 16px;
}
.form-contact .js-ubcl .table-contact .select .wpcf7-radio {
  display: flex;
  padding-left: 0;
}
.form-contact .js-ubcl .table-contact .select .wpcf7-radio > span {
  margin: 0 16px 0 0;
  width: auto;
}
.form-contact .js-ubcl .table-contact .input {
  margin-top: 10px;
}
.form-contact .js-ubcl .table-contact .input .smallTxt {
  font-size: 12px;
  font-weight: 500;
  line-height: 1.67;
}
.form-contact .ubcl-back {
  margin: 0 30px;
  position: relative;
}
.form-contact .ubcl-back .btn-back {
  bottom: auto;
  top: 28px;
}
.ubclLink02 a {
  width: 266px;
}
form.form-contact.custom-wpcf7c-confirmed .js-ubcl .contact-dl {
  padding: 28px 24px;
  justify-content: flex-start;
  margin: 0;
  border-top: 1px solid #ecf4fc;
}
form.form-contact.custom-wpcf7c-confirmed .js-ubcl .contact-dl dt {
  margin-right: 0;
  width: 216px;
  font-weight: 700;
}
form.form-contact.custom-wpcf7c-confirmed .js-ubcl .contact-dl dd {
	font-family: YuGothic, "Yu Gothic", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "游ゴシック", "メイリオ", Meiryo, Verdana, sans-serif;
}
form.form-contact.custom-wpcf7c-confirmed .contact-h3ttl.border {
  margin-top: 0;
}
.ubcl-table02 .ubcl_select .wpcf7-list-item-label {
  margin-left: -18px;
  position: relative;
  display: inline-block;
}
.ubcl-table02 .ubcl_select .wpcf7-list-item-label:before {
  content: "";
  width: 16px;
  height: 16px;
  border-radius: 2px;
  border: solid 1px #b1b7cc;
  background-color: #FFF;
  position: absolute;
  top: 17px;
  left: 63px;
}
.ubcl-table02 .ubcl_select .wpcf7-list-item-label:after {
  content: "";
  display: block;
  width: 10px;
  height: 16px;
  border: medium solid #001255;
  border-width: 0 4px 4px 0;
  border-radius: 1px;
  transform: rotate(45deg);
  opacity: 0;
  visibility: hidden;
  position: absolute;
  left: 67px;
  top: 16px;
}
.ubcl-table02 .ubcl_select input {
  opacity: 0;
  display: block;
}
.ubcl-table02 .ubcl_select .wpcf7-list-item input:checked + .wpcf7-list-item-label:after {
  opacity: 1;
  visibility: visible;
}
@media only screen and (max-width: 767px) {
  .step-nav {
    flex-wrap: wrap;
  }
  .js-ubcl .step-nav li:nth-last-child(n+3),
  .ubcl-thanks .step-nav li:nth-last-child(n+3) {
    font-size: 0.1rem;
  }
  .js-ubcl .step-nav li:nth-child(3)::before,
  .ubcl-thanks .step-nav li:nth-last-child(n+3)::before {
    display: none;
  }
  .main-contact .js-ubcl .ttl-contact {
    margin: 0.44rem 0 0;
  }
  .contact-h3ttl {
    margin: 0 0 0.19rem;
    font-size: 0.12rem;
  }
  .contact-h3ttl span:not(.txt) {
    margin: 0 0 0.21rem;
    padding: 0 0.05rem;
    font-size: 0.18rem;
  }
  .comusbBox {
    margin: 0 0 0.18rem;
  }
  .comusbBox table th,
  .comusbBox table td {
    padding: 0.14rem 0.02rem;
    font-size: 0.16rem;
  }
  .comusbBox table td li {
    padding-left: 1em;
    text-indent: -1em;
  }
  .comusbBox table th {
    width: 33.2%;
  }
  .comusbBox table .img {
    margin: 0.18rem auto 0;
    width: 80px;
  }
  .comusbBox table .img span {
    display: block;
    margin: 0.22rem -0.5rem 0;
  }
  .comusbBox table .ttl {
    font-weight: 500;
  }
  .contact-dl {
    margin: 0 0 0.3rem;
    font-size: 0.16rem;
  }
  .contact-dl dt {
    margin-right: 0.3rem;
  }
  .contact-dl select {
    padding: 0.01rem 0.14rem;
    width: 25.6vw;
    height: 12.8vw;
    background-position: right 23% center;
    background-size: 16% auto;
  }
  .contact-dl .wpcf7-form-control-wrap {
    margin-right: 0.14rem;
  }
  .contact-dl .contact-must {
    font-size: 0.12rem;
  }
  .js-ubcl .ubcl_time {
    margin-right: 0;
    display: block;
    width: 100%;
  }
  .js-ubcl .ubcl_time + span {
    text-align: right;
    display: block;
  }
  .js-ubcl .table-contact + .contact-h3ttl {
    margin-top: 0;
    margin-bottom: 0;
  }
  .form-contact .js-ubcl .ubcl_time input {
    margin-bottom: 0.15rem;
  }
  .form-contact .js-ubcl .table-contact {
    margin: 0.2rem 0 0;
    width: auto;
  }
  .form-contact .js-ubcl .table-contact .select .wpcf7-radio {
    margin-top: -0.2rem;
    flex-wrap: wrap;
  }
  .form-contact .js-ubcl .table-contact .select .wpcf7-radio > span {
    margin: 0.2rem 0.12rem 0 0;
    width: auto;
  }
  form.form-contact.custom-wpcf7c-confirmed .js-ubcl .contact-h3ttl span.txt {
    font-size: 0.12rem;
    margin: 0.15rem 0;
  }
  .form-contact .js-ubcl .table-contact .input {
    margin-top: 10px;
  }
  .form-contact .js-ubcl .table-contact .input .smallTxt {
    font-size: 0.12rem;
    font-weight: 500;
    line-height: 1.67;
  }
  .form-contact .ubcl-back {
    margin: 0 0.12rem;
    position: relative;
  }
  .form-contact .ubcl-back .btn-back {
    position: absolute;
    bottom: auto;
    top: 0.55rem;
    font-size: 0.12rem;
    padding-left: 0.45rem;
    background-size: 0.35rem;
  }
  .form-contact .ubcl-step3 .wpcf7-button {
    margin-top: 0.15rem;
  }
  .contact-h3ttl.border {
    padding-top: 41px;
    margin-top: -20px;
    margin-bottom: 0;
    position: relative;
  }
  .contact-h3ttl.border:after {
    display: none;
  }
  form.form-contact.custom-wpcf7c-confirmed .js-ubcl .contact-dl {
    flex-wrap: wrap;
    padding: 0 0 0.24rem;
    margin: 0;
  }
  form.form-contact.custom-wpcf7c-confirmed .js-ubcl .contact-dl dt {
    padding: 0.3rem 0 0.2rem;
    width: 100%;
    font-size: 0.16rem;
  }
}
.ubcl-thanks .main-contact {
  margin-top: 49px;
}
.ubcl-thanks .main-contact .ttl-contact {
  margin-bottom: 56px;
}
.ubcl-thanks .form-thanks .thanks-letter {
  margin-bottom: 96px;
  padding: 32px 0;
}
.ubcl-thanks .form-thanks .thanks-letter span {
  margin-bottom: 32px;
  display: block;
}
@media only screen and (max-width: 767px) {
  .ubcl-thanks .main-contact {
    margin-top: 24px;
  }
  .ubcl-thanks .step-nav li {
    margin-bottom: 8px;
    margin: 0.35rem 0 0.34rem;
  }
  .ubcl-thanks .wrapper {
    padding: 0 0.24rem;
  }
  .ubcl-thanks .form-thanks .thanks-letter span:last-child {
    margin-bottom: 0;
  }
  .ubcl-thanks .form-thanks .thanks-letter {
    padding: 0.32rem 0;
    margin-bottom: 0.72rem;
  }
}
.form-contact .js-ubcl .table-contact {
  margin-top: 0;
  margin-bottom: 42px;
}
@media only screen and (min-width: 768px) {
  .form-contact .is_agree .wpcf7-list-item-label {
    font-size: 16px;
  }
  .form-contact .no-ubcl .wpcf7-button {
    margin-top: 15px;
  }
  .ubcl-table02 .ubcl_select .wpcf7-list-item-label {
    font-size: 12px;
  }
  .ubcl-table02 .ubcl_select .wpcf7-list-item-label::before {
    left: 0;
  }
  .ubcl-table02 .ubcl_select .wpcf7-list-item-label::after {
    width: 8px;
    height: 13px;
    border-width: 0 2px 2px 0;
    left: 4px;
    top: 16px;
  }
  .form-contact .is_agree .wpcf7-list-item-label::after {
    width: 8px;
    height: 13px;
    left: -21px;
    bottom: 9px;
    border-width: 0 2px 2px 0;
  }
}
@media only screen and (max-width: 767px) {
  .form-contact {
    margin: 0 0.12rem;
  }
  .form-contact .table-contact .wpcf7-textarea {
    height: 3.18rem;
  }
  .form-contact .is_agree .wpcf7-list-item-label {
    font-size: 0.16rem;
  }
  .formUsb .comusbBox ul li {
    word-break: break-all;
  }
  .ubcl-table02 .ubcl_select .wpcf7-list-item-label {
    padding-bottom: 20px;
    font-size: 0.12rem;
    line-height: 1.7;
  }
  .ubcl-table02 .ubcl_select .wpcf7-list-item-label::before {
    left: 0;
    top: auto;
    bottom: 0;
  }
  .ubcl-table02 .ubcl_select .wpcf7-list-item input:checked + .wpcf7-list-item-label::after {
    left: 3px;
    top: auto;
    bottom: 2px;
  }
  .form-contact .is_agree .wpcf7-list-item input:checked + .wpcf7-list-item-label::after {
    width: 0.08rem;
    height: 0.13rem;
    left: -0.2rem;
    bottom: 0.09rem;
    border-width: 0 0.02rem 0.02rem 0;
  }
  .form-contact .js-ubcl .table-contact th {
    padding: 0.2rem 0 0.1rem !important;
  }
  .form-contact .js-ubcl .table-contact td {
    padding-bottom: 0.1rem !important;
  }
  .ui-widget.ui-widget-content {
    width: 87%;
  }
  .ui-datepicker .ui-datepicker-title {
    font-size: 0.18rem;
  }
  .ui-datepicker th {
    font-size: 0.14rem;
  }
  .ui-datepicker td {
    font-size: 0.14rem;
  }
  .ui-datepicker td span, .ui-datepicker td a {
    text-align: center;
  }
  .ui-datepicker .ui-datepicker-next-hover {
    right: 2px;
  }
  .ui-datepicker .ui-datepicker-prev-hover, .ui-datepicker .ui-datepicker-next-hover {
    top: 2px;
  }
  .ui-state-hover,
  .ui-widget-content .ui-state-hover,
  .ui-widget-header .ui-state-hover,
  .ui-state-focus,
  .ui-widget-content .ui-state-focus,
  .ui-widget-header .ui-state-focus,
  .ui-button:hover,
  .ui-button:focus {
    border: none;
  }
}
.form2 .contact-h3ttl .wpcf7-custom-item-error,
.form2 .contact-h3ttl .wpcf7-custom-item-error span {
  color: #f00;
  border: none;
  padding: 0;
  margin: 0;
  font-weight: normal;
}
.form2 .contact-h3ttl .wpcf7-custom-item-error {
  margin-top: 5px;
}
.form2 .smallText {
  display: block;
  font-size: 12px;
  padding: 5px 7px 0 0;
}
.ttl-smallText.js-ubcl_ttl03 {
  font-size: 12px;
  font-weight: 500;
  line-height: 1.67;
  margin-top: 10px;
}
.form-contact .table-contact .form2-h3Ttl {
  padding: 48px 10px 29px 0;
}
@media only screen and (max-width: 767px) {
  .ttl-smallText.js-ubcl_ttl03 {
    font-size: 0.12rem;
    font-weight: 500;
    line-height: 1.67;
  }
}
@media all and (-ms-high-contrast:none) {
  .step-nav li::before {
    top: 50%;
    margin-top: -5px;
  }
  .form-contact .table-contact .wpcf7-text, .form-contact .table-contact .wpcf7-textarea {
    padding: 21px 20px 2px;
    line-height: 40px;
  }
}


.section-top-pickup {
  margin-top: 56px;
}

.section-top-pickup .product-block {
  flex: none;
  width: 100%;
  margin-left: 0;
  margin-top: 48px;
  margin-bottom: 36px;
}
.section-top-pickup .product-block .product-item .img-bg {
  background-image: linear-gradient(to bottom, #001e8e, #000f47);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 124px;
  height: 124px;
  margin: 0 auto;
  border-radius: 50%;
  overflow: hidden;
}

.section-top-pickup .product-block .product-item .img-bg.img-bg-client {
  background-image: linear-gradient(to bottom, #001e8e, #000f47);
}

.section-top-pickup .product-block .product-item .img-bg.img-bg-information {
  background-image: linear-gradient(50deg, #001e8e 14%, #032fd7 87%);
}

.section-top-pickup .product-block .product-item .img-bg.img-bg-infrastructure {
  background-image: linear-gradient(50deg, #032c28 14%, #0a6259 87%);
}

.section-top-pickup .product-block .list-product {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 100%;
}
.section-device-content .product-block .product-link {
  height: 100%;
}
.section-top-pickup .product-block .list-product .product-item {
  max-width: 580px;
  width: 100%;
  flex-flow
}

.section-top-pickup .product-block .list-product .product-item .img img {
  width: 100%;
}

.section-top-pickup .cmn-button-wrap {
  display: flex;
  justify-content: center;
}

.section-top-pickup .cmn-button {
  background: #001255 url("../img/top/ico_arrow_next_white.png") 90% center/50px 9px no-repeat;
  margin: 0px 8px;
}

@media only screen and (max-width: 767px) {
  .section-top-pickup {
    padding-bottom: 36px;
  }
  .section-top-pickup.section-device-content .product-block .product-link {
    flex-wrap: wrap;
  }
  .section-top-pickup .cmn-button-wrap {
    display: block;
  }
  .section-top-pickup .cmn-button {
    margin: 0 auto 8px auto;
  }
  .section-top-pickup .product-block {
    margin-top: 26px;
    margin-bottom: 16px;
    padding-top: 0;
  }
  .section-top-pickup .list-product.pickup_carousel {
    display: block;
  }
  .section-top-pickup .product-block .list-product.pickup_carousel .product-item {
    width: 100%;
    max-width: 100%;
  }
  .section-top-pickup .owl-theme .owl-dots .owl-dot span {
    background:  #f8f8f8;
  }
  .section-top-pickup .owl-theme .owl-dots .owl-dot.active span {
    background: #001255;
  }

  .section-top-pickup.section-device-content .product-block .product-link .content:last-child {
    width: 100%;
    flex-basis: 100%;
  }
  .section-top-pickup.section-device-content .product-block .product-link .text {
    font-size: 0.14rem;
  }
  .section-top-pickup.section-device-content .product-block .product-link .btn {
    align-self: flex-start;
    justify-content: flex-start;
    width: auto;
  }
  .section-top-pickup.section-device-content .owl-theme .owl-nav.disabled+.owl-dots {
    margin-top: 0;
  }
  .section-top-pickup.section-device-content .product-block .product-item {
    margin-bottom: 0;
  }
  .section-top-pickup .owl-theme .owl-dots .owl-dot span {
    width: 12px;
    height: 12px;
  }
  .section-top-pickup .owl-carousel .owl-item img {
    width: auto;
    max-width: 100%;
  }
}
