@import url("https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap");
section, nav, article, aside, hgroup, header, footer, figure, figcaption, details {
  display: block;
}

html, body, div, span, applet, object, iframe, strong, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, font, img, ins, kbd, q, s, samp, small, strike, sub, sup, tt, var, dl, dt, dd, ol, ul, li, fieldset, form, legend, caption, tbody, tfoot, thead, table, label, tr, th, td, figure {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  vertical-align: baseline;
}

html {
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: "Hiragino Kaku Gothic Pro",Meiryo,"MS PGothic",sans-serif;
  color: #000;
  line-height: 1.8;
}

li {
  list-style: none;
}

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

a {
  text-decoration: none;
}

img {
  vertical-align: top;
  max-width: 100%;
}

hr {
  height: 1px;
  background-color: #ccc;
  border: 0;
}

.video-container {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}

.video-container iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100% !important;
  height: 100% !important;
  z-index: 1;
}

.pc_only {
  display: block;
}

.pc_only_inline {
  display: inline;
}

.sp_only,
.sp_only_inline {
  display: none;
}

.wrap {
  max-width: 1000px;
  padding: 0 20px;
  margin: 0 auto;
}
.wrap.thin {
  max-width: 800px;
}
.wrap:after {
  content: "";
  display: block;
  clear: both;
}

.to_top {
  -webkit-transition: top .6s ease, opacity .6s ease;
  transition: top .6s ease, opacity .6s ease;
  position: relative;
  top: 50px;
  opacity: 0;
}

.isAnimate.show.to_top {
  top: 0;
  opacity: 1;
}

.to_top_left {
  -webkit-transition: all 1s ease;
  transition: all 1s ease;
  position: relative;
  top: 50px;
  left: 50px;
  opacity: 0;
}

.isAnimate.show.to_top_left {
  top: 0;
  left: 0;
  opacity: 1;
}

.to_top_right {
  -webkit-transition: all 1s ease;
  transition: all 1s ease;
  position: relative;
  top: 50px;
  right: 50px;
  opacity: 0;
}

.isAnimate.show.to_top_right {
  top: 0;
  right: 0;
  opacity: 1;
}

a {
  color: #00309c;
}

a.u_line:hover {
  text-decoration: none;
}

/*=======================================
	layout
=======================================*/
header {
  height: 100px;
  background: #fff;
}
header h1 {
  font-size: 13px;
  font-weight: bold;
  line-height: 1;
  margin-left: 50px;
  padding-top: 25px;
}
header h1 a {
  display: inline-block;
}
header h1 span {
  display: block;
  font-family: "Bebas Neue", sans-serif;
  font-weight: normal;
  font-size: 34px;
  letter-spacing: 0.03em;
}

.g_nav_btn {
  width: 40px;
  height: 40px;
  background: #00309c;
  border-radius: 3px;
  position: fixed;
  top: 30px;
  right: 40px;
  z-index: 101;
  cursor: pointer;
}
.g_nav_btn span,
.g_nav_btn span:before,
.g_nav_btn span:after {
  content: "";
  display: block;
  width: 20px;
  height: 2px;
  background: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.g_nav_btn span:before {
  top: calc(50% - 7px);
}
.g_nav_btn span:after {
  top: calc(50% + 7px);
}
.g_nav_btn.active span {
  background: transparent;
}
.g_nav_btn.active span:before {
  background: #fff;
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
          transform: translate(-50%, -50%) rotate(45deg);
  top: 50%;
}
.g_nav_btn.active span:after {
  background: #fff;
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
          transform: translate(-50%, -50%) rotate(-45deg);
  top: 50%;
}

.g_nav {
  width: 350px;
  height: 100%;
  background: #00309c;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 100;
  overflow: hidden;
  -webkit-transform: translateX(105%);
          transform: translateX(105%);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.g_nav.active {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
.g_nav .inner {
  padding: 40px;
}
.g_nav .logo {
  display: inline-block;
  background: #fff;
  border-radius: 4px;
  padding: 15px;
  margin-bottom: 40px;
  font-size: 9px;
  font-weight: bold;
  line-height: 1;
}
.g_nav .logo span {
  display: block;
  font-family: "Bebas Neue", sans-serif;
  font-weight: normal;
  font-size: 24px;
  letter-spacing: 0.03em;
  margin-bottom: 2px;
}
.g_nav ul {
  font-size: 20px;
  line-height: 1.2;
}
.g_nav ul a {
  color: #fff;
  -webkit-transition: all .3s;
  transition: all .3s;
}
.g_nav ul a:hover {
  opacity: .8;
}
.g_nav ul li {
  margin-bottom: 40px;
}
.g_nav ul ul {
  font-size: 16px;
}
.g_nav ul ul li {
  margin: 15px 0;
  padding-left: 12px;
  position: relative;
}
.g_nav ul ul li:before {
  content: "";
  display: block;
  width: 5px;
  height: 1px;
  background: #fff;
  position: absolute;
  top: 50%;
  left: 0;
}

footer {
  background: #333;
  line-height: 1;
  padding: 50px 0;
}
footer .wrap {
  position: relative;
}
footer a {
  color: #fff;
}
footer a:hover {
  text-decoration: underline;
}
footer ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  font-size: 14px;
}
footer li {
  margin-left: 30px;
}
footer p {
  font-size: 12px;
  color: #999;
  position: absolute;
  top: 50%;
  left: 20px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.f_bold {
  font-weight: bold;
}

.u_line {
  text-decoration: underline;
}

input[type="text"],
input[type="email"],
input[type="tel"],
textarea {
  border: 1px solid #e0eafc;
  background: #f3f6fc;
  padding: 10px 15px;
  width: 100%;
  font-size: 16px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 3px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-appearance: none;
}

input:focus,
textarea:focus {
  border-color: #00309c;
}

:-webkit-input-placeholder {
  color: #9aa5ba;
}

:-ms-input-placeholder {
  color: #9aa5ba;
}

::-webkit-input-placeholder {
  color: #9aa5ba;
}

::-ms-input-placeholder {
  color: #9aa5ba;
}

::placeholder {
  color: #9aa5ba;
}

.btn a,
.btn button {
  display: inline-block;
  font-family: "Hiragino Kaku Gothic Pro",Meiryo,"MS PGothic",sans-serif;
  font-size: 16px;
  line-height: 1.2;
  color: #00309c;
  border-radius: 3px;
  padding: 10px 30px 10px 15px;
  border: 1px solid #00309c;
  background: #fff;
  cursor: pointer;
  position: relative;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.btn a:after,
.btn button:after {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  border-right: 2px solid #00309c;
  border-bottom: 2px solid #00309c;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: absolute;
  top: 50%;
  right: 15px;
  -webkit-transform: translateY(-50%) rotate(-45deg);
          transform: translateY(-50%) rotate(-45deg);
}
.btn a:hover,
.btn button:hover,
.btn a.current {
  background: #00309c;
  border-color: #fff;
  color: #fff;
}
.btn a:hover:after,
.btn button:hover:after,
.btn a.current:after {
  border-right-color: #fff;
  border-bottom-color: #fff;
}

.btn.blue a,
.btn.blue button {
  color: #fff;
  background: #00309c;
}
.btn.blue a:after,
.btn.blue button:after {
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
}
.btn.blue a:hover,
.btn.blue button:hover,
.btn.blue a.current {
  background: #fff;
  border-color: #00309c;
  color: #00309c;
}
.btn.blue a:hover:after,
.btn.blue button:hover:after,
.btn.blue a.current:after {
  border-right-color: #00309c;
  border-bottom-color: #00309c;
}

.title {
  height: 200px;
  background-color: #00309c;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
}
.title h1 {
  font-size: 30px;
  font-weight: bold;
  line-height: 1.2;
  color: #fff;
}

.product .title {
  background-image: url("../images/title_bg_product.jpg");
}
.product .title h1 img {
  height: 53px;
}

.office .title,
.web .title {
  background-image: url("../images/title_bg_office.jpg");
}

.company .title,
.contact .title {
  background-image: url("../images/title_bg_company.jpg");
}

h2.h {
  font-size: 26px;
  font-weight: bold;
  line-height: 1.2;
  color: #00309c;
  text-align: center;
}
h2.h:after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  margin: 20px auto 60px;
  background: #00309c;
}

h3.h {
  font-size: 18px;
  font-weight: bold;
  line-height: 1.2;
  color: #00309c;
  padding-left: 25px;
  position: relative;
}
h3.h:after {
  content: "";
  display: block;
  width: 18px;
  height: 18px;
  background: #00309c;
  border-radius: 3px;
  position: absolute;
  top: 1px;
  left: 0;
}

.nav_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 50px 0 60px;
}
.nav_list li {
  margin: 0 10px 10px;
}

.contact_box {
  padding: 0 20px;
}
.contact_box .outer {
  max-width: 1100px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background: #00309c;
  color: #fff;
  padding: 130px 50px 50px;
  margin: 70px auto 100px;
  border-radius: 20px;
  text-align: center;
  position: relative;
}
.contact_box .outer:before {
  content: "";
  display: block;
  width: 70px;
  height: 70px;
  background: #fff;
  border-radius: 50%;
  position: absolute;
  top: 30px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.contact_box .outer:after {
  content: "";
  display: block;
  width: 32px;
  height: 22px;
  background: url("../images/icon_mail.png") no-repeat;
  background-size: 100% auto;
  position: absolute;
  top: 54px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.contact_box p {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 40px;
}
.contact_box .btn {
  max-width: 800px;
  margin: 0 auto;
}
.contact_box .btn a {
  display: block;
  font-size: 32px;
  border-radius: 6px;
  padding: 30px 70px 30px 20px;
}
.contact_box .btn a:after {
  width: 12px;
  height: 12px;
  border-right: 2px solid #00309c;
  border-bottom: 2px solid #00309c;
  right: 30px;
}
.contact_box .btn a:hover:after {
  border-right-color: #fff;
  border-bottom-color: #fff;
}

.step ol {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  border: 1px solid #00309c;
  border-radius: 6px;
  margin: 30px 0 50px;
}
.step li {
  width: 25%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-size: 20px;
  font-weight: bold;
  color: #00309c;
  line-height: 1;
  padding: 20px 0;
  position: relative;
}
.step li:after {
  content: "";
  display: block;
  width: 16px;
  height: 100%;
  background: url("../images/step_arrow.svg") no-repeat center;
  background-size: 100% 100%;
  position: absolute;
  top: 0;
  right: -8px;
}
.step li:last-child:after {
  display: none;
}
.step p {
  font-size: 26px;
  font-weight: bold;
  text-align: center;
  line-height: 1.2;
}

/*=======================================
	home
=======================================*/
.home .mv {
  padding-top: 40px;
  margin-bottom: 70px;
}
.home .mv .wrap {
  position: relative;
}
.home .mv .txt {
  position: absolute;
  top: 87px;
  left: 20px;
  z-index: 1;
}
.home .mv h1 span.a, .home .mv h2 span.a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #00309c;
  color: #fff;
  font-size: 20px;
  font-weight: bold;
  line-height: 1;
  padding: 15px;
}
.home .mv h1 span.a span, .home .mv h2 span.a span {
  display: block;
}
.home .mv h1 i, .home .mv h2 i {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 5px 10px;
  border-radius: 3px;
  background: #fff;
  margin-right: 15px;
}
.home .mv h1 img, .home .mv h2 img {
  height: 19px;
}
.home .mv h1 {
  margin-bottom: 20px;
}
.home .mv h1 span.a {
  font-size: 32px;
  padding: 18px;
}
.home .mv h2 span.a {
  display: inline-block;
}
.home .mv figure {
  width: 74%;
  margin-left: 26%;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}
.home .mv figure:after {
  content: "";
  display: block;
  border: 1px solid #fff;
  border-radius: 8px;
  position: absolute;
  top: 10px;
  left: 10px;
  bottom: 10px;
  right: 10px;
}
.home .about {
  margin-bottom: 70px;
}
.home .about h2 {
  font-family: "Bebas Neue", sans-serif;
  font-size: 56px;
  line-height: 1;
  text-align: center;
  margin-bottom: 10px;
}
.home .about h3 {
  line-height: 1.2;
  text-align: center;
  margin-bottom: 50px;
}
.home .about .flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
.home .about .flex figure {
  width: 450px;
}
.home .about .flex .txt {
  width: 510px;
  margin-right: 40px;
}
.home .about .btn {
  text-align: right;
  margin-top: 10px;
}
.home .bnr {
  margin-bottom: 100px;
}
.home .bnr .flex {
  background: #f2f2f2;
  border-radius: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 60px 5.5%;
}
.home .bnr a,
.home .bnr span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  background: #fff;
  color: #000;
  border-radius: 10px;
  overflow: hidden;
  -webkit-transition: all .3s;
  transition: all .3s;
}
.home .bnr a:first-child,
.home .bnr span:first-child {
  margin-right: 30px;
}
.home .bnr a:hover {
  -webkit-box-shadow: 0 5px 20px 0 rgba(0, 0, 0, 0.2);
          box-shadow: 0 5px 20px 0 rgba(0, 0, 0, 0.2);
}
.home .bnr figure {
  width: 37.2093023256%;
}
.home .bnr figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.home .bnr .b figure {
  position: relative;
}
.home .bnr .b figure:after {
  content: "";
  display: block;
  width: 56px;
  height: 27px;
  background: url("../images/rakuichi.png") no-repeat;
  background-size: 100% auto;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.home .bnr .txt {
  width: 270px;
  padding: 15px 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.home .bnr h3 {
  width: 100%;
  font-family: "Bebas Neue", sans-serif;
  color: #00309c;
  font-size: 26px;
  line-height: 1;
}
.home .bnr h3:after {
  content: "";
  display: block;
  width: 50px;
  height: 1px;
  background: #666;
  margin: 20px auto 10px;
}
.home .bnr p {
  width: 100%;
  font-size: 13px;
  line-height: 1.5;
}

/*=======================================
	product
=======================================*/
.product.top section {
  margin-bottom: 60px;
}
.product.top section h3 {
  font-size: 20px;
  font-weight: bold;
  line-height: 1.2;
  background: #00309c;
  color: #fff;
  border-radius: 6px;
  padding: 10px 30px;
  margin-bottom: 30px;
}
.product.top section h3 span {
  display: inline-block;
  background: #fff;
  color: #00309c;
  font-size: 16px;
  border-radius: 2px;
  margin-left: 20px;
  padding: 4px 10px;
}
.product.top section p {
  padding: 0 20px;
}
.product.top section figure {
  text-align: center;
  margin-top: 30px;
}

.feature .flow {
  text-align: center;
  margin-bottom: 50px;
}
.feature .flow figcaption {
  color: #00309c;
  margin-top: 20px;
}
.feature section {
  margin-bottom: 50px;
}
.feature section .num {
  display: inline-block;
  background: #00309c;
  color: #fff;
  font-family: "Bebas Neue", sans-serif;
  font-size: 24px;
  line-height: 1;
  padding: 10px 15px;
  margin-bottom: 15px;
  border-radius: 6px;
}
.feature section h3 {
  font-size: 20px;
  font-weight: bold;
  line-height: 1.4;
  color: #00309c;
  margin-bottom: 25px;
}
.feature section ol {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 20px 0 30px;
}
.feature section ol li {
  width: 246px;
  border: 1px solid #98894b;
  border-radius: 6px;
  font-size: 14px;
  line-height: 1.6;
  padding: 12px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin-right: 31px;
  text-indent: 1.2em;
  position: relative;
}
.feature section ol li:after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border: 10px solid transparent;
  border-left: 8px solid #98894b;
  position: absolute;
  top: 50%;
  right: -29px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.feature section ol li:last-child {
  margin-right: 0;
}
.feature section ol li:last-child:after {
  display: none;
}
.feature section ol div {
  width: 30px;
  height: 30px;
  line-height: 30px;
  border-radius: 6px;
  text-align: center;
  color: #fff;
  font-weight: bold;
  text-indent: 0;
  background: #98894b;
  position: absolute;
  top: -6px;
  left: -6px;
}
.feature section ol em {
  font-weight: bold;
  color: #98894b;
}
.feature .option {
  margin-top: 50px;
  background: #f2f2f2;
  padding: 35px 25px 25px 25px;
  border-radius: 3px;
  position: relative;
}
.feature .option h4 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #fff;
  border: 2px solid #00309c;
  border-radius: 6px;
  font-size: 14px;
  font-weight: bold;
  line-height: 1;
  color: #00309c;
  padding: 8px 15px;
  position: absolute;
  top: -21px;
  left: 20px;
}
.feature .option h4 span {
  font-family: "Bebas Neue", sans-serif;
  font-size: 24px;
  display: inline-block;
  margin-right: 18px;
  position: relative;
}
.feature .option h4 span:after {
  content: "";
  display: block;
  width: 5px;
  height: 2px;
  background: #00309c;
  position: absolute;
  top: 50%;
  right: -12px;
}
.feature .option h5 {
  font-size: 18px;
  font-weight: bold;
  line-height: 1.4;
  color: #00309c;
  margin-bottom: 10px;
}

.software section {
  margin-bottom: 60px;
}
.software section h4 {
  font-weight: bold;
  line-height: 1.4;
  margin-bottom: 25px;
}
.software .ttl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  line-height: 1.2;
  margin-bottom: 30px;
}
.software .ttl .num {
  display: block;
  background: #00309c;
  color: #fff;
  font-size: 24px;
  font-family: "Bebas Neue", sans-serif;
  padding: 4px 15px;
  border-radius: 6px;
  margin-right: 15px;
}
.software .ttl h3 {
  font-size: 20px;
  font-weight: bold;
  color: #00309c;
}
.software .col3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.software .col3 .box {
  width: 306px;
  border: 1px solid #00309c;
  border-radius: 6px;
}
.software .col3 .box:nth-child(2) {
  margin: 0 41px;
}
.software .col3 h3 {
  background: #00309c;
  color: #fff;
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  line-height: 1.2;
  padding: 8px 10px;
}
.software .col3 p {
  padding: 20px;
}

.package_ex .h:after {
  margin-bottom: 50px;
}
.package_ex .h + p {
  text-align: center;
  font-size: 18px;
  font-weight: bold;
}
.package_ex .accordion {
  margin-top: 50px;
}
.package_ex .accordion li {
  border: 1px solid #00309c;
  border-radius: 6px;
  margin-bottom: 20px;
  overflow: hidden;
}
.package_ex .accordion h3 {
  font-size: 20px;
  font-weight: bold;
  color: #00309c;
  line-height: 1.4;
  padding: 20px 40px 20px 20px;
  cursor: pointer;
  position: relative;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.package_ex .accordion h3:hover {
  background: #efefef;
}
.package_ex .accordion h3:after {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-right: 2px solid #00309c;
  border-bottom: 2px solid #00309c;
  position: absolute;
  top: 50%;
  right: 20px;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
}
.package_ex .accordion h3.active:after {
  -webkit-transform: translateY(-50%) rotate(-135deg);
          transform: translateY(-50%) rotate(-135deg);
}
.package_ex .accordion p {
  padding: 0 20px 20px;
}

.ez_sales .about {
  text-align: center;
  margin-bottom: 70px;
}
.ez_sales .about figcaption {
  font-size: 18px;
  font-weight: bold;
  margin: 30px 0 0;
}
.ez_sales .about .b {
  margin-top: -35px;
}
.ez_sales .support {
  text-align: center;
  margin-bottom: 70px;
}
.ez_sales .flow {
  margin-bottom: 70px;
}
.ez_sales .flow h4 {
  font-weight: bold;
  margin: 20px 0 0;
}
.ez_sales .flow figure {
  text-align: center;
  margin: 50px 0 0;
}
.ez_sales .flow figcaption {
  font-size: 12px;
  text-align: left;
  margin-top: 10px;
}

.ez_salary .about {
  text-align: center;
  margin-bottom: 50px;
}
.ez_salary .about figcaption {
  font-size: 18px;
  font-weight: bold;
  margin: 0 0 40px;
}
.ez_salary .about ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 20px;
}
.ez_salary .about li {
  max-width: 380px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-weight: bold;
  color: #3ab2ca;
  text-align: left;
  border: 2px solid #3ab2ca;
  border-radius: 6px;
  padding: 15px;
  line-height: 1.5;
  margin: 0 20px;
}
.ez_salary .about li:last-child {
  color: #a4cc28;
  border-color: #a4cc28;
}
.ez_salary .support {
  text-align: center;
  margin-bottom: 70px;
}
.ez_salary .ez_feature {
  margin-bottom: 70px;
}
.ez_salary .ez_feature .h {
  margin-bottom: 30px;
}
.ez_salary .ez_feature h4 {
  font-weight: bold;
  line-height: 1.4;
  margin-bottom: 20px;
}
.ez_salary .ez_feature h4 span {
  display: inline-block;
  width: 26px;
  height: 26px;
  line-height: 26px;
  border: 1px solid #000;
  border-radius: 3px;
  text-align: center;
  margin-right: 10px;
}
.ez_salary .ez_feature figure {
  text-align: center;
}
.ez_salary .ez_feature figcaption {
  font-size: 12px;
  line-height: 1.2;
  margin-top: 20px;
  text-align: left;
}
.ez_salary .ez_feature section {
  margin-bottom: 50px;
}
.ez_salary .ez_feature section p {
  margin-bottom: 40px;
}
.ez_salary .plan {
  margin-bottom: 70px;
}
.ez_salary .plan .h {
  margin-bottom: 30px;
}
.ez_salary .plan table {
  width: 100%;
  border: 1px solid #ccc;
  margin-top: 30px;
  font-weight: bold;
  line-height: 1.4;
}
.ez_salary .plan tr {
  border-bottom: 1px solid #ccc;
}
.ez_salary .plan th, .ez_salary .plan td {
  padding: 15px 10px;
  border-right: 1px solid #ccc;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  vertical-align: middle;
}
.ez_salary .plan thead tr {
  background: #7f7f7f;
}
.ez_salary .plan thead th {
  font-size: 14px;
  color: #fff;
  padding: 15px 5px;
}
.ez_salary .plan thead th span {
  font-size: 0.85714em;
}
.ez_salary .plan thead th .s {
  font-size: 0.64285em;
}
.ez_salary .plan tbody tr:first-child {
  background: #fff7f7;
}
.ez_salary .plan tbody th {
  text-align: left;
  font-size: 18px;
}
.ez_salary .plan tbody th span {
  font-size: 0.777777em;
  margin-left: .5em;
}
.ez_salary .plan tbody th p {
  font-size: 12px;
  font-weight: normal;
  margin-top: 6px;
  color: #333;
}
.ez_salary .plan tbody td {
  width: 96px;
  text-align: center;
}
.ez_salary .plan tbody .symbol {
  font-size: 26px;
  font-weight: normal;
}

.bc_system h2.h:after {
  margin: 20px auto 30px;
}
.bc_system .wrap figure {
  margin-bottom: 3rem;
}

.case .h:after {
  margin-bottom: 50px;
}
.case .h + p {
  text-align: center;
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 40px;
}
.case section {
  margin-bottom: 70px;
}
.case section h3 {
  background: #00309c;
  color: #fff;
  font-size: 20px;
  font-weight: bold;
  line-height: 1.4;
  border-radius: 6px;
  padding: 15px;
  margin-bottom: 25px;
}
.case section h3 span {
  display: inline-block;
  font-family: "Bebas Neue", sans-serif;
  font-size: 24px;
  font-weight: normal;
  background: #fff;
  color: #00309c;
  padding: 0 10px;
  border-radius: 3px;
  margin-right: 15px;
}
.case .flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.case .l {
  width: 460px;
  margin-right: 40px;
}
.case .l h4 {
  font-size: 18px;
  font-weight: bold;
  line-height: 1.4;
  margin: 0 0 20px;
}
.case .l figure {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 30px;
}
.case .l figure div {
  width: 220px;
}
.case .l figure div:first-child {
  margin-right: 20px;
}
.case .l figure + h4 {
  margin-bottom: 0;
}
.case .l ul {
  line-height: 1.2;
}
.case .l li {
  margin: 10px 0 0;
}
.case .r {
  width: 500px;
}
.case .r h4 {
  font-family: "Bebas Neue", sans-serif;
  font-size: 28px;
  color: #00309c;
  line-height: 1;
  margin-bottom: 20px;
}
.case .r .box {
  border: 1px solid #00309c;
  padding: 20px;
  border-radius: 10px;
  color: #00309c;
  position: relative;
}
.case .r .box:before, .case .r .box:after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border: 9px solid transparent;
  border-bottom: 13px solid #00309c;
  position: absolute;
  top: -22px;
  left: 30px;
}
.case .r .box:after {
  border-bottom-color: #fff;
  top: -20px;
}
.case .r ul {
  line-height: 1.5;
}
.case .r li {
  margin-bottom: 15px;
  padding-left: 30px;
  position: relative;
}
.case .r li:before {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  background-image: url("../images/icon_circle.svg");
  background-repeat: no-repeat;
  background-size: 100% 100%;
  position: absolute;
  top: 2px;
  left: 0;
}
.case .r li:last-child {
  margin-bottom: 0;
}
.case .r .before {
  margin-bottom: 30px;
}
.case .r .before h4 {
  color: #999;
}
.case .r .before .box {
  border-color: #999;
  color: #111;
}
.case .r .before .box:before {
  border-bottom-color: #999;
}
.case .r .before li:before {
  width: 17px;
  height: 17px;
  background-image: url("../images/icon_cross.svg");
  top: 3px;
}

/*=======================================
	office
=======================================*/
.office .title {
  margin-bottom: 50px;
}
.office ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 30px;
}
.office li {
  width: 47.5%;
  padding: 18px 0;
  border-bottom: 1px dashed #ccc;
}
.office li span {
  display: block;
  font-size: 20px;
  line-height: 1.2;
  padding-left: 28px;
  position: relative;
}
.office li span:after {
  content: "";
  display: block;
  width: 18px;
  height: 18px;
  background: #00309c;
  border-radius: 3px;
  position: absolute;
  top: 3px;
  left: 0;
}
.office li:nth-child(odd) {
  margin-right: 5%;
}
.office li:nth-child(1), .office li:nth-child(2) {
  border-top: 1px dashed #ccc;
}

/*=======================================
	web
=======================================*/
.web .title {
  margin-bottom: 70px;
}
.web h2 {
  background: #00309c;
  color: #fff;
  font-size: 20px;
  font-weight: bold;
  line-height: 1.4;
  border-radius: 6px;
  padding: 25px 0 25px 70px;
  margin-bottom: 30px;
  position: relative;
}
.web h2 span {
  display: block;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  background: #fff;
  position: absolute;
  top: 50%;
  left: 15px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.web h2 span:before {
  content: "";
  display: block;
  width: 20px;
  height: 31px;
  background: url("../images/icon_phone_sp.svg") no-repeat center;
  background-size: 100% 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.web h2 + p {
  max-width: 700px;
  margin: 0 auto;
}
.web .box {
  max-width: 580px;
  margin: 50px auto;
  padding: 30px 0;
  border-top: 1px solid #00309c;
  border-bottom: 1px solid #00309c;
  font-size: 20px;
  font-weight: bold;
  line-height: 1.2;
  text-align: center;
  color: #00309c;
}
.web .box div {
  display: inline-block;
  font-size: 30px;
  margin-top: 15px;
  padding-left: 36px;
  position: relative;
}
.web .box div:before {
  content: "";
  display: block;
  width: 24px;
  height: 30px;
  background: url("../images/icon_phone.svg") no-repeat;
  background-size: 100% 100%;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.web h3 {
  font-size: 26px;
  font-weight: bold;
  line-height: 1.2;
  text-align: center;
  color: #00309c;
  margin-bottom: 30px;
}
.web ol {
  max-width: 700px;
  margin: 0 auto;
}
.web li {
  border: 1px solid #00309c;
  border-radius: 6px;
  padding: 15px 15px 15px 105px;
  margin-bottom: 40px;
  font-size: 20px;
  font-weight: bold;
  color: #00309c;
  position: relative;
}
.web li span {
  display: block;
  background: #00309c;
  color: #fff;
  font-size: 24px;
  font-family: "Bebas Neue", sans-serif;
  line-height: 1;
  border-radius: 3px;
  padding: 6px 12px;
  position: absolute;
  top: 50%;
  left: 15px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.web li:after {
  content: "";
  display: block;
  width: 18px;
  height: 22px;
  background: url("../images/icon_arrow.svg") no-repeat;
  background-size: 100% 100%;
  position: absolute;
  bottom: -32px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.web li:last-child:after {
  display: none;
}

/*=======================================
	company
=======================================*/
.company .title {
  margin-bottom: 70px;
}
.company .sec1 {
  margin-bottom: 70px;
}
.company .sec1 img {
  width: 180px;
  float: right;
  margin: 0 0 2em 2em;
}
.company .sec1 p + p {
  text-align: right;
  clear: both;
  margin-top: 2em;
}
.company .sec2 ul {
  line-height: 1.4;
  border-top: 1px solid #666;
}
.company .sec2 li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-bottom: 1px solid #666;
}
.company .sec2 li div {
  padding: 18px 0 18px 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.company .sec2 li div:first-child {
  width: 150px;
  font-weight: bold;
  position: relative;
}
.company .sec2 li div:first-child:after {
  content: "";
  display: block;
  width: 1px;
  height: 70%;
  background: #666;
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.company .sec2 li div:last-child {
  width: 650px;
}
.company .sec2 li ul {
  border-top: none;
}
.company .sec2 li li {
  display: block;
  border-bottom: none;
}

/*=======================================
	contact
=======================================*/
.contact .title {
  margin-bottom: 70px;
}
.contact form {
  margin-bottom: 100px;
}
.contact ul {
  border-top: 1px dashed #ccc;
  line-height: 1.4;
  margin: 40px 0 30px;
}
.contact li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-bottom: 1px dashed #ccc;
  padding: 20px 0;
}
.contact li .l, .contact li .r {
  padding-left: 20px;
}
.contact li .l {
  width: 220px;
}
.contact li .l span {
  display: inline-block;
  border: 1px solid #00309c;
  color: #00309c;
  font-size: 12px;
  line-height: 1;
  padding: 4px 8px;
  margin-left: 10px;
  border-radius: 3px;
}
.contact li .r {
  width: 580px;
}
.contact textarea {
  height: 200px;
}
.contact .btn.l {
  text-align: center;
}
.contact .btn.l a,
.contact .btn.l button {
  font-size: 26px;
  border-radius: 5px;
  padding: 20px 130px;
}
.contact .btn.l a:after,
.contact .btn.l button:after {
  width: 12px;
  height: 12px;
  right: 30px;
}
.contact .reset_btn {
  text-align: center;
  margin-top: 20px;
}
.contact .reset_btn input {
  border: 1px solid #ccc;
  background: #fff;
  padding: 6px 15px;
  font-size: 12px;
  line-height: 1;
  border-radius: 2px;
  cursor: pointer;
  -webkit-appearance: none;
}

.contact.thanks {
  text-align: center;
  padding-bottom: 150px;
}
.contact.thanks .btn {
  margin-top: 30px;
}

/*=======================================
	privacy
=======================================*/
.privacy .title {
  margin-bottom: 70px;
}
.privacy .wrap p,
.privacy ol {
  margin-bottom: 2em;
}
.privacy ol {
  margin-left: 1.2em;
  line-height: 1.6;
}
.privacy ol li {
  text-indent: -1.2em;
  margin-bottom: .6em;
}
.privacy section h2,
.privacy section h3 {
  font-weight: bold;
  margin-bottom: .5em;
}
.privacy section ul {
  margin-bottom: 2em;
}

/******************************************************************************************

	sp size

******************************************************************************************/
@media only screen and (max-width: 640px) {
  .pc_only,
  .pc_only_inline {
    display: none;
  }

  .sp_only {
    display: block;
  }

  .sp_only_inline {
    display: inline;
  }

  .wrap {
    font-size: 13px;
    max-width: 500px;
  }
  .wrap.thin {
    max-width: 400px;
  }

  /*=======================================
  	layout
  =======================================*/
  header {
    height: 60px;
  }
  header h1 {
    font-size: 8px;
    margin-left: 15px;
    padding-top: 20px;
  }
  header h1 span {
    font-size: 19px;
  }

  .g_nav_btn {
    width: 34px;
    height: 34px;
    top: 13px;
    right: 15px;
  }

  .g_nav {
    width: 260px;
  }
  .g_nav .inner {
    padding: 20px;
  }
  .g_nav .logo {
    border-radius: 3px;
    padding: 10px;
    margin-bottom: 20px;
    font-size: 7px;
  }
  .g_nav .logo span {
    font-size: 18px;
  }
  .g_nav ul {
    font-size: 16px;
  }
  .g_nav ul li {
    margin-bottom: 20px;
  }
  .g_nav ul ul {
    font-size: 13px;
  }
  .g_nav ul ul li {
    margin: 10px 0;
  }

  footer {
    padding: 30px 0;
  }
  footer ul {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    font-size: 13px;
    margin-bottom: 18px;
  }
  footer li {
    margin: 0 8px;
  }
  footer p {
    font-size: 9px;
    position: static;
    top: auto;
    left: auto;
    -webkit-transform: none;
            transform: none;
    text-align: center;
  }

  input[type="text"],
  input[type="email"],
  input[type="tel"],
  textarea {
    padding: 8px 10px;
  }

  :-webkit-input-placeholder {
    font-size: 13px;
  }

  :-ms-input-placeholder {
    font-size: 13px;
  }

  ::-webkit-input-placeholder {
    font-size: 13px;
  }

  ::-ms-input-placeholder {
    font-size: 13px;
  }

  ::placeholder {
    font-size: 13px;
  }

  .btn a,
  .btn button {
    font-size: 13px;
  }
  .btn a:after,
  .btn button:after {
    width: 6px;
    height: 6px;
  }

  .title {
    height: 150px;
  }
  .title h1 {
    font-size: 22px;
  }

  .product .title h1 img {
    height: 30px;
  }

  h2.h {
    font-size: 18px;
  }
  h2.h:after {
    width: 40px;
    height: 2px;
    margin: 10px auto 30px;
  }

  h3.h {
    font-size: 16px;
    padding-left: 24px;
  }
  h3.h:after {
    width: 16px;
    height: 16px;
  }

  .nav_list {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    margin: 25px 0 30px;
    padding: 0 10px;
  }
  .nav_list li {
    width: 50%;
    margin: 0;
    border-bottom: 1px solid #ccc;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .nav_list a {
    display: block;
    border-radius: 0;
    border: none;
  }

  .contact_box .outer {
    padding: 65px 15px 15px;
    margin: 35px auto 50px;
    border-radius: 10px;
  }
  .contact_box .outer:before {
    width: 35px;
    height: 35px;
    top: 15px;
  }
  .contact_box .outer:after {
    width: 16px;
    height: 11px;
    top: 27px;
  }
  .contact_box p {
    font-size: 12px;
    text-align: left;
    font-weight: normal;
    margin-bottom: 20px;
  }
  .contact_box .btn a {
    font-size: 14px;
    line-height: 1.4;
    border-radius: 4px;
    padding: 15px 20px;
  }
  .contact_box .btn a:after {
    width: 8px;
    height: 8px;
    right: 15px;
  }

  .step ol {
    display: block;
    text-align: left;
    border-radius: 3px;
    margin: 15px 0 25px;
    padding: 10px 15px;
  }
  .step li {
    width: auto;
    font-size: 14px;
    padding: 10px 0;
  }
  .step li:after {
    display: none;
  }
  .step p {
    font-size: 14px;
    line-height: 1.4;
  }

  /*=======================================
  	home
  =======================================*/
  .home .mv {
    padding-top: 30px;
    margin-bottom: 50px;
  }
  .home .mv .txt {
    top: calc(100vw / ( 320 / 20 ));
    left: calc(100vw / ( 320 / 20 ));
  }
  .home .mv h1 span.a, .home .mv h2 span.a {
    font-size: calc(100vw / ( 320 / 10 ));
    padding: calc(100vw / ( 320 / 8 ));
  }
  .home .mv h1 i, .home .mv h2 i {
    padding: calc(100vw / ( 320 / 3 )) calc(100vw / ( 320 / 5 ));
    margin-right: calc(100vw / ( 320 / 8 ));
  }
  .home .mv h1 img, .home .mv h2 img {
    height: calc(100vw / ( 320 / 9 ));
  }
  .home .mv h1 {
    margin-bottom: calc(100vw / ( 320 / 10 ));
  }
  .home .mv h1 span.a {
    font-size: calc(100vw / ( 320 / 15 ));
    padding: calc(100vw / ( 320 / 9 ));
  }
  .home .mv h2 span.a {
    vertical-align: top;
  }
  .home .mv figure {
    width: auto;
    margin-left: calc(100vw / ( 320 / 20 ));
  }
  .home .mv figure:after {
    top: calc(100vw / ( 320 / 8 ));
    left: calc(100vw / ( 320 / 8 ));
    bottom: calc(100vw / ( 320 / 8 ));
    right: calc(100vw / ( 320 / 8 ));
  }
  .home .about {
    max-width: 500px;
    margin: 0 auto 45px;
  }
  .home .about h2 {
    font-size: 36px;
  }
  .home .about h3 {
    font-size: 14px;
    margin-bottom: 30px;
  }
  .home .about .flex {
    display: block;
  }
  .home .about .flex figure {
    width: auto;
    margin-bottom: 20px;
  }
  .home .about .flex .txt {
    width: auto;
    margin-right: 0;
  }
  .home .about .btn {
    text-align: right;
    margin-top: 10px;
  }
  .home .bnr {
    max-width: 500px;
    margin: 0 auto 40px;
  }
  .home .bnr .wrap {
    padding-left: 0;
    padding-right: 0;
  }
  .home .bnr .flex {
    border-radius: 0;
    display: block;
    padding: 20px;
  }
  .home .bnr a,
  .home .bnr span {
    display: block;
  }
  .home .bnr a:first-child,
  .home .bnr span:first-child {
    margin-right: 0;
    margin-bottom: 20px;
  }
  .home .bnr figure {
    width: auto;
    height: 100px;
    background-image: url("../images/home_bnr1_sp.jpg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
  }
  .home .bnr figure img {
    display: none;
  }
  .home .bnr .b figure {
    background-image: url("../images/home_bnr2_sp.jpg");
  }
  .home .bnr .txt {
    width: auto;
    display: block;
    padding: 20px 15px;
  }
  .home .bnr h3 {
    width: auto;
    font-size: 20px;
  }
  .home .bnr h3:after {
    margin: 12px auto;
  }
  .home .bnr p {
    width: auto;
    line-height: 1.4;
  }

  /*=======================================
  	product
  =======================================*/
  .product.top section {
    margin-bottom: 40px;
  }
  .product.top section h3 {
    font-size: 15px;
    border-radius: 4px;
    padding: 8px 15px;
    margin-bottom: 15px;
  }
  .product.top section h3 span {
    font-size: 12px;
    margin-left: 15px;
    padding: 3px 8px;
  }
  .product.top section p {
    padding: 0;
  }
  .product.top section figure {
    margin-top: 15px;
  }

  .feature .flow {
    margin-bottom: 30px;
  }
  .feature .flow figcaption {
    margin-top: 15px;
    text-align: left;
  }
  .feature section {
    margin-bottom: 35px;
  }
  .feature section .num {
    font-size: 16px;
    padding: 4px 10px;
    margin-bottom: 10px;
    border-radius: 3px;
  }
  .feature section h3 {
    font-size: 16px;
    margin-bottom: 10px;
  }
  .feature section ol {
    display: block;
    margin: 20px 0;
  }
  .feature section ol li {
    width: auto;
    border-radius: 4px;
    font-size: 12px;
    padding: 10px;
    margin: 0 0 20px;
    text-indent: 1.8em;
  }
  .feature section ol li:after {
    border: 8px solid transparent;
    border-top: 6px solid #98894b;
    top: auto;
    bottom: -22px;
    right: auto;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  .feature .option {
    margin-top: 50px;
    padding: 30px 15px 15px 15px;
    border-radius: 3px;
    position: relative;
  }
  .feature .option h4 {
    border-radius: 4px;
    font-size: 10px;
    padding: 4px 10px;
    top: -16px;
    left: 15px;
  }
  .feature .option h4 span {
    font-size: 18px;
  }
  .feature .option h5 {
    font-size: 14px;
  }

  .software section {
    margin-bottom: 40px;
  }
  .software section h4 {
    text-align: center;
    margin-bottom: 20px;
  }
  .software .ttl {
    display: block;
    text-align: center;
    margin-bottom: 15px;
  }
  .software .ttl .num {
    display: inline-block;
    font-size: 16px;
    padding: 4px 10px;
    border-radius: 3px;
    margin: 0 0 10px;
  }
  .software .ttl h3 {
    font-size: 16px;
  }
  .software .col3 {
    display: block;
  }
  .software .col3 .box {
    width: auto;
    border-radius: 3px;
  }
  .software .col3 .box:nth-child(2) {
    margin: 20px 0;
  }
  .software .col3 h3 {
    font-size: 15px;
  }
  .software .col3 p {
    padding: 15px;
  }

  .package_ex .h:after {
    margin-bottom: 20px;
  }
  .package_ex .h + p {
    text-align: left;
    font-size: 13px;
  }
  .package_ex .accordion {
    margin-top: 30px;
  }
  .package_ex .accordion li {
    border-radius: 3px;
    margin-bottom: 15px;
  }
  .package_ex .accordion h3 {
    font-size: 13px;
    padding: 15px 40px 15px 15px;
  }
  .package_ex .accordion h3:after {
    width: 8px;
    height: 8px;
    right: 15px;
  }
  .package_ex .accordion p {
    padding: 0 15px 15px;
    font-size: 12px;
  }

  .ez_sales .about {
    max-width: 400px;
    margin: 0 auto 40px;
  }
  .ez_sales .about figcaption {
    font-size: 12px;
    margin: 30px 0 10px;
  }
  .ez_sales .about .b {
    margin-top: 0;
  }
  .ez_sales .support {
    max-width: 260px;
    margin: 0 auto 40px;
  }
  .ez_sales .flow {
    margin-bottom: 40px;
  }
  .ez_sales .flow h4 {
    margin: 15px 0 0;
  }
  .ez_sales .flow figure {
    margin: 30px 0 0;
  }
  .ez_sales .flow figcaption {
    font-size: 10px;
  }

  .ez_salary .about {
    max-width: 400px;
    margin: 0 auto 25px;
  }
  .ez_salary .about figcaption {
    font-size: 12px;
    margin: 0 0 20px;
  }
  .ez_salary .about li {
    max-width: 48.2142857143%;
    border-radius: 3px;
    padding: 12px;
    font-size: 12px;
    margin: 0;
  }
  .ez_salary .about li:last-child {
    margin-left: 10px;
  }
  .ez_salary .support {
    max-width: 260px;
    margin: 0 auto 40px;
  }
  .ez_salary .ez_feature {
    margin-bottom: 40px;
  }
  .ez_salary .ez_feature .h {
    margin-bottom: 15px;
  }
  .ez_salary .ez_feature h4 span {
    width: 20px;
    height: 20px;
    line-height: 20px;
  }
  .ez_salary .ez_feature figure {
    max-width: 260px;
    margin: 0 auto 40px;
  }
  .ez_salary .ez_feature figcaption {
    font-size: 10px;
    line-height: 1.4;
    text-indent: -1em;
    padding-left: 1em;
    margin-top: 10px;
  }
  .ez_salary .ez_feature section {
    margin-bottom: 40px;
  }
  .ez_salary .ez_feature section p {
    margin-bottom: 20px;
  }
  .ez_salary .plan {
    margin-bottom: 40px;
  }
  .ez_salary .plan .h {
    margin-bottom: 15px;
  }
  .ez_salary .plan .scroll {
    overflow-x: scroll;
  }
  .ez_salary .plan table {
    margin-top: 20px;
    table-layout: fixed;
  }
  .ez_salary .plan th, .ez_salary .plan td {
    padding: 6px 5px;
    width: 80px;
  }
  .ez_salary .plan thead th {
    font-size: 10px;
    padding: 6px 5px;
  }
  .ez_salary .plan tbody th {
    font-size: 12px;
  }
  .ez_salary .plan tbody th span {
    margin-left: 0;
  }
  .ez_salary .plan tbody th p {
    font-size: 8px;
  }
  .ez_salary .plan tbody td {
    width: 80px;
  }
  .ez_salary .plan tbody .symbol {
    font-size: 18px;
  }

  .bc_system h2.h:after {
    margin: 10px auto 20px;
  }
  .bc_system .wrap figure {
    margin-bottom: 1.5rem;
  }

  .case .h:after {
    margin-bottom: 30px;
  }
  .case .h + p {
    font-size: 13px;
    margin-bottom: 20px;
  }
  .case section {
    margin-bottom: 40px;
  }
  .case section h3 {
    font-size: 13px;
    line-height: 1.6;
    border-radius: 3px;
    padding: 10px;
    margin-bottom: 15px;
  }
  .case section h3 span {
    display: block;
    max-width: 4em;
    text-align: center;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    font-size: 14px;
    padding: 0 6px;
    border-radius: 2px;
    margin: 0 0 5px;
  }
  .case .flex {
    display: block;
  }
  .case .l {
    width: auto;
    margin: 0 0 20px;
  }
  .case .l h4 {
    font-size: 13px;
    margin: 0 0 15px;
  }
  .case .l figure {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-bottom: 15px;
  }
  .case .l figure div:first-child {
    margin-right: 10px;
  }
  .case .r {
    width: auto;
  }
  .case .r h4 {
    font-size: 18px;
    margin-bottom: 10px;
  }
  .case .r .box {
    padding: 15px;
    border-radius: 6px;
  }
  .case .r .box:before, .case .r .box:after {
    content: "";
    display: block;
    width: 0;
    height: 0;
    border: 6px solid transparent;
    border-bottom: 8px solid #00309c;
    top: -14px;
    left: 15px;
  }
  .case .r .box:after {
    border-bottom-color: #fff;
    top: -12px;
  }
  .case .r ul {
    font-size: 12px;
  }
  .case .r li {
    margin-bottom: 10px;
    padding-left: 20px;
  }
  .case .r li:before {
    width: 14px;
    height: 14px;
    top: 3px;
  }
  .case .r li:last-child {
    margin-bottom: 0;
  }
  .case .r .before {
    margin-bottom: 20px;
  }
  .case .r .before li:before {
    width: 13px;
    height: 13px;
  }

  /*=======================================
  	office
  =======================================*/
  .office .wrap.thin {
    max-width: 400px;
  }
  .office .title {
    margin-bottom: 30px;
  }
  .office ul {
    display: block;
    margin-top: 30px;
  }
  .office li {
    width: auto;
    padding: 12px;
  }
  .office li span {
    display: block;
    font-size: 13px;
    padding-left: 1.6em;
  }
  .office li span:after {
    width: 1em;
    height: 1em;
    border-radius: 2px;
    top: .1em;
  }
  .office li:nth-child(odd) {
    margin-right: 0;
  }
  .office li:nth-child(2) {
    border-top: none;
  }

  /*=======================================
  	web
  =======================================*/
  .web .wrap.thin {
    max-width: 400px;
  }
  .web .title {
    margin-bottom: 30px;
  }
  .web h2 {
    font-size: 13px;
    line-height: 1.6;
    border-radius: 4px;
    padding: 8px 15px 15px;
    margin-bottom: 20px;
    text-align: center;
  }
  .web h2 span {
    width: 30px;
    height: 30px;
    margin: 0 auto 5px;
    position: relative;
    top: auto;
    left: auto;
    -webkit-transform: none;
            transform: none;
  }
  .web h2 span:before {
    width: 14px;
    height: 22px;
  }
  .web .box {
    margin: 25px auto;
    padding: 15px 0;
    font-size: 13px;
    line-height: 1.6;
  }
  .web .box div {
    font-size: 22px;
    margin-top: 10px;
    padding-left: 28px;
  }
  .web .box div:before {
    width: 18px;
    height: 23px;
  }
  .web h3 {
    font-size: 18px;
    margin-bottom: 20px;
  }
  .web li {
    border-radius: 4px;
    padding: 10px 10px 10px 75px;
    margin-bottom: 30px;
    font-size: 12px;
    line-height: 1.6;
  }
  .web li span {
    font-size: 16px;
    padding: 4px 10px;
    left: 10px;
  }
  .web li:after {
    width: 12px;
    height: 16px;
    bottom: -23px;
  }

  /*=======================================
  	company
  =======================================*/
  .company .title {
    margin-bottom: 30px;
  }
  .company .sec1 {
    margin-bottom: 40px;
  }
  .company .sec1 img {
    width: 90px;
    margin: 0 0 1em 1em;
  }
  .company .sec2 ul {
    line-height: 1.6;
    border-color: #ccc;
  }
  .company .sec2 li {
    display: block;
    padding: 10px;
    border-color: #ccc;
  }
  .company .sec2 li div {
    padding: 0;
  }
  .company .sec2 li div:first-child {
    width: auto;
    margin-bottom: 5px;
  }
  .company .sec2 li div:first-child:after {
    display: none;
  }
  .company .sec2 li div:last-child {
    width: auto;
  }
  .company .sec2 li li {
    padding: 0;
  }

  /*=======================================
  	contact
  =======================================*/
  .contact .title {
    margin-bottom: 30px;
  }
  .contact form {
    margin-bottom: 50px;
  }
  .contact ul {
    margin: 20px 0 15px;
  }
  .contact li {
    display: block;
    padding: 15px 0;
  }
  .contact li .l, .contact li .r {
    padding-left: 0;
  }
  .contact li .l {
    width: auto;
    margin-bottom: 10px;
  }
  .contact li .l span {
    font-size: 9px;
    padding: 3px 6px;
    margin-left: 8px;
    border-radius: 2px;
  }
  .contact li .r {
    width: auto;
  }
  .contact textarea {
    height: 150px;
  }
  .contact .btn.l a,
  .contact .btn.l button {
    font-size: 14px;
    padding: 15px 60px;
  }
  .contact .btn.l a:after,
  .contact .btn.l button:after {
    width: 8px;
    height: 8px;
    right: 15px;
  }
  .contact .reset_btn {
    margin-top: 15px;
  }
  .contact .reset_btn input {
    font-size: 10px;
  }

  .contact.thanks {
    padding-bottom: 70px;
  }
  .contact.thanks .h + p {
    text-align: left;
  }
  .contact.thanks .btn {
    margin-top: 20px;
  }

  /*=======================================
  	privacy
  =======================================*/
  .privacy .title {
    margin-bottom: 30px;
  }
  .privacy .wrap {
    font-size: 12px;
  }
}
