@charset "UTF-8";
html {
  overflow-x: hidden;
  scroll-behavior: smooth;
  width: 100%;
}

body {
  color: #18191A;
  font-size: 16px;
  left: 0;
  line-height: 1.5;
  overflow-x: hidden;
  scroll-padding-top: 100px;
  word-wrap: break-word;
}

@media screen and (max-width: 767px) {
  body {
    font-size: 16px;
  }
}

a {
  color: #0368EC;
  cursor: pointer;
  font-weight: 600;
  text-decoration: none;
  transition: .2s;
}

a:hover {
  color: #0368EC;
  text-decoration: underline;
}

p {
  margin: 0;
}

h1 {
  color: #000A4F;
  font-size: 64px;
  font-weight: 600;
  line-height: 1.5;
}

@media screen and (min-width: 768px) and (max-width: 999px) {
  h1 {
    font-size: 40px;
  }
}

@media screen and (max-width: 767px) {
  h1 {
    font-size: 32px;
  }
}

h2 {
  color: #000A4F;
  font-size: 40px;
  font-weight: 600;
  line-height: 1.5;
}

@media screen and (min-width: 768px) and (max-width: 999px) {
  h2 {
    font-size: 32px;
  }
}

@media screen and (max-width: 767px) {
  h2 {
    font-size: 24px;
  }
}

h3 {
  color: #18191A;
  font-size: 40px;
  font-weight: 600;
  line-height: 1.5;
  text-align: center;
}

@media screen and (min-width: 768px) and (max-width: 999px) {
  h3 {
    font-size: 32px;
  }
}

@media screen and (max-width: 767px) {
  h3 {
    font-size: 24px;
  }
}

h4 {
  color: #18191A;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.5;
}

@media screen and (max-width: 767px) {
  h4 {
    font-size: 18px;
  }
}

h5 {
  color: #18191A;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.5;
}

@media screen and (max-width: 767px) {
  h5 {
    font-size: 18px;
  }
}

h6 {
  color: #18191A;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

ul li {
  list-style: none;
  margin: 0;
  padding: 0;
}

img {
  display: block;
  height: auto;
  width: 100%;
}

input {
  border: 1px solid #d1d7da;
  border-radius: 4px;
  outline: none;
  padding: 8px;
  width: 100%;
}

textarea {
  border: 1px solid #d1d7da;
  border-radius: 4px;
  min-height: 250px;
  outline: none;
  padding: 8px;
  width: 100%;
}

.inline-block {
  display: inline-block;
}

.forPC {
  display: block;
}

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

.forSP {
  display: none;
}

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

/* font-size */
.text-small {
  font-size: 14px;
}

.text-xsmall {
  font-size: 12px;
}

.text-xxsmall {
  font-size: 10px;
}

/* text-color */
.blue {
  color: #0368EC;
}

.amber {
  color: #FFB322;
}

.white {
  color: #ffffff;
}

/* bg-color */
.bg-white {
  background: #ffffff;
}

.bg-navy-0 {
  background: #F0F0F2;
}

.bg-blue-0 {
  background: #F2F8FE;
}

/* グラデーションボタン */
.btn-cta {
  background: linear-gradient(to bottom, #005FAF, #00A0C7);
  border: none;
  color: #ffffff;
  font-size: 20px;
  padding: 20px 40px;
  transition: .2s;
}

.btn-cta:hover {
  transform: scale(1.02);
}

/* 揺れるアニメーション */
.yureru-s {
  -webkit-animation: yureru-s 2s infinite;
          animation: yureru-s 2s infinite;
}

.yureru-s:hover {
  -webkit-animation: none;
          animation: none;
}

@-webkit-keyframes yureru-s {
  0% {
    transform: translate(2px, 0px);
  }
  5% {
    transform: translate(-2px, 0px);
  }
  10% {
    transform: translate(2px, 0px);
  }
  15% {
    transform: translate(-2px, 0px);
  }
  20% {
    transform: translate(2px, 0px);
  }
  25% {
    transform: translate(-2px, 0px);
  }
  30% {
    transform: translate(0px, 0px);
  }
}

@keyframes yureru-s {
  0% {
    transform: translate(2px, 0px);
  }
  5% {
    transform: translate(-2px, 0px);
  }
  10% {
    transform: translate(2px, 0px);
  }
  15% {
    transform: translate(-2px, 0px);
  }
  20% {
    transform: translate(2px, 0px);
  }
  25% {
    transform: translate(-2px, 0px);
  }
  30% {
    transform: translate(0px, 0px);
  }
}

/* クリック時のリップルアニメーション */
.ripple {
  position: relative;
  overflow: hidden;
}

.ripple .rp-effect {
  /*エフェクト*/
  position: absolute;
  border-radius: 50%;
  opacity: 0.35;
  /*波紋の濃さ*/
  transform: scale(0);
  background: #d1d7da;
  /*波紋色*/
  -webkit-animation: ripple 700ms;
          animation: ripple 700ms;
  pointer-events: none;
}

@-webkit-keyframes ripple {
  to {
    opacity: 0;
    transform: scale(2);
  }
}

@keyframes ripple {
  to {
    opacity: 0;
    transform: scale(2);
  }
}

/* header */
header {
  left: 0;
  margin: 40px;
  position: fixed;
  top: 0;
  transition: .2s;
  width: calc(100% - 80px);
  z-index: 10;
}

header .header-body {
  align-items: center;
  background: #ffffff;
  border-radius: 48px;
  box-shadow: 0 4px 18px 0 rgba(0, 0, 0, 0.12), 0 7px 10px -5px rgba(0, 0, 0, 0.15);
  display: flex;
  height: 96px;
  margin: 0 auto;
  padding: 0 60px;
  width: 100%;
}

header .header-body .logo {
  align-items: center;
  display: flex;
  height: 48px;
  margin-right: 20px;
  vertical-align: middle;
  width: auto;
}

header .header-body .logo a {
  height: 100%;
  margin-right: 10px;
}

header .header-body .logo img {
  height: 100%;
  width: auto;
}

header .header-body .logo img.jpx {
  height: 80%;
}

header .header-body nav {
  align-items: center;
  display: flex;
  justify-content: space-between;
  width: 100%;
}

header .header-body nav .menu ul {
  display: flex;
  overflow: hidden;
}

header .header-body nav .menu ul li a {
  color: #18191A;
  display: block;
  font-weight: 600;
  line-height: 1;
  padding: 10px 20px;
}

header .header-body nav .menu ul li a:hover {
  color: #0368EC;
  text-decoration: none;
}

header .header-body nav .menu p {
  font-size: 10px;
  line-height: 1;
  padding: 0 20px;
}

header .header-body nav .cta {
  display: flex;
}

header .header-body nav .cta li a {
  align-items: center;
  border-radius: 24px;
  display: flex;
  height: 48px;
  justify-content: center;
  margin-left: 10px;
  line-height: 1;
  width: 120px;
}

header .header-body nav .cta li a.outlined {
  border: 1px solid #020A4C;
  color: #000A4F;
}

header .header-body nav .cta li a.filled {
  background: linear-gradient(to right, #005FAF, #00A0C7);
  color: #ffffff;
}

header .header-body nav .cta li a:hover {
  text-decoration: none;
  transform: scale(1.02);
}

header.v1 {
  margin: 0 auto;
  width: 100%;
}

header.v1 .header-body {
  background: none;
  box-shadow: none;
}

header.v1 .header-body nav .cta li a {
  width: 180px;
}

header.v1 .header-body nav .cta li a.outlined {
  background: #ffffff;
}

@media screen and (min-width: 1000px) and (max-width: 1280px) {
  header {
    margin: 20px;
    width: calc(100% - 40px);
  }
  header .header-body {
    padding: 0 40px;
  }
  header .header-body .logo {
    margin-right: 10px;
    height: 36px;
  }
  header .header-body nav {
    align-items: center;
    display: flex;
    justify-content: space-between;
    width: 100%;
  }
  header .header-body nav .menu ul {
    display: flex;
    overflow: hidden;
  }
  header .header-body nav .menu ul li a {
    padding: 10px;
  }
  header .header-body nav .menu p {
    padding: 0 10px;
  }
  header .header-body nav .cta {
    display: flex;
  }
  header .header-body nav .cta li a {
    align-items: center;
    border-radius: 24px;
    display: flex;
    height: 40px;
    justify-content: center;
    margin-left: 10px;
    line-height: 1;
    width: 100px;
  }
  header .header-body nav .cta li a.outlined {
    border: 1px solid #020A4C;
    color: #000A4F;
  }
  header .header-body nav .cta li a.filled {
    background: linear-gradient(to right, #005FAF, #00A0C7);
    color: #ffffff;
  }
  header .header-body nav .cta li a:hover {
    text-decoration: none;
    transform: scale(1.02);
  }
  header.v1 .header-body nav .cta li a {
    width: 120px;
  }
}

@media screen and (min-width: 768px) and (max-width: 999px) {
  header {
    margin: 20px;
    width: calc(100% - 40px);
  }
  header .header-body nav {
    justify-content: flex-end;
  }
  header .header-body nav .menu {
    display: none;
  }
}

@media screen and (max-width: 767px) {
  header {
    margin: 0;
    width: 100%;
  }
  header .header-body {
    border-radius: 0;
    box-shadow: none;
    height: 56px;
    justify-content: space-between;
    padding: 0 20px;
  }
  header .header-body .logo {
    height: 32px;
    margin-right: 20px;
    vertical-align: middle;
    width: auto;
  }
  header .header-body .logo img {
    height: 100%;
    width: auto;
  }
  header .header-body .logo img.jpx {
    height: 100%;
  }
  header .header-body nav {
    align-items: center;
    display: flex;
    justify-content: flex-end;
    width: 100%;
  }
  header .header-body nav .menu {
    display: none;
  }
  header .header-body nav .cta {
    display: flex;
  }
  header .header-body nav .cta li a {
    align-items: center;
    border-radius: 18px;
    display: flex;
    height: 36px;
    justify-content: center;
    margin-left: 10px;
    line-height: 1;
    width: 100px;
  }
  header .header-body nav .cta li a.outlined {
    display: none;
  }
  header .header-body nav .cta li a.filled {
    background: linear-gradient(to right, #005FAF, #00A0C7);
    color: #ffffff;
  }
  header.v1 .header-body nav .cta li a {
    width: 100px;
  }
}

/* footer */
footer {
  background: url(../images/footer-bg.png) no-repeat center center/cover;
}

footer .container {
  padding: 80px 0;
}

footer .container h3 {
  color: #ffffff;
}

footer .container p {
  color: #ffffff;
  margin-bottom: 40px;
  text-align: center;
}

footer .container a {
  display: block;
}

footer .container a:hover {
  text-decoration: none;
  transform: scale(1.02);
}

footer .copy {
  background: #F0F0F2;
  padding: 20px 0;
  text-align: center;
}

@media screen and (max-width: 767px) {
  footer .container {
    padding: 60px 20px;
  }
}

/* メインイメージのスタイル */
.hero {
  height: 770px;
  position: relative;
}

.hero .hero-body {
  height: 100%;
}

.hero .hero-body .hero-catch {
  margin: 0 auto;
  max-width: 1200px;
  padding: 200px 40px 0;
  position: relative;
  z-index: 1;
}

.hero .hero-body .hero-catch img {
  max-width: 540px;
  width: 100%;
}

.hero.v1 {
  background: url(../images/v1/hero-bg-pc.png) no-repeat center center/cover;
  height: 700px;
}

.hero.v1 .hero-body .hero-catch {
  padding: 120px 40px 0;
}

.hero.v1 .hero-body .hero-catch h1 {
  text-align: center;
}

.hero.v1 .hero-body .hero-catch h2 {
  text-align: center;
}

.hero.v1 .hero-body .hero-catch img {
  margin: 40px auto 0;
  max-width: 780px;
}

.hero.v2 {
  background: url(../images/v2/hero-bg-pc.png) no-repeat left center/cover;
}

.hero.v2 .hero-body {
  background: url(../images/v2/hero-mv.png) no-repeat right -200px bottom/1100px;
}

.hero.v3 {
  background: url(../images/v3/hero-bg-pc.png) no-repeat right center/cover;
}

@media screen and (min-width: 1000px) and (max-width: 1280px) {
  .hero {
    height: 770px;
  }
  .hero .hero-body .hero-catch {
    padding: 180px 40px 0;
  }
  .hero.v1 {
    height: 700px;
  }
  .hero.v1 .hero-body .hero-catch {
    padding: 160px 40px 0;
  }
  .hero.v1 .hero-body .hero-catch img {
    margin: 40px auto 0;
    max-width: 720px;
  }
  .hero.v2 .hero-body {
    background: url(../images/hero.png) no-repeat right -300px bottom/1100px;
  }
}

@media screen and (min-width: 768px) and (max-width: 999px) {
  .hero {
    height: 650px;
  }
  .hero .hero-body .hero-catch {
    padding: 180px 40px 0;
  }
  .hero .hero-body .hero-catch img {
    max-width: 480px;
  }
  .hero.v1 {
    height: 500px;
  }
  .hero.v1 .hero-body .hero-catch {
    padding: 120px 40px 0;
  }
  .hero.v1 .hero-body .hero-catch img {
    margin: 20px auto 0;
    max-width: 500px;
  }
  .hero.v2 .hero-body {
    background: url(../images/v2/hero-main.png) no-repeat right -300px bottom/950px;
  }
}

@media screen and (max-width: 767px) {
  .hero {
    height: auto;
    position: relative;
  }
  .hero .hero-body {
    height: 100%;
  }
  .hero .hero-body .hero-catch {
    margin-top: 56px;
    padding: 20px;
    position: relative;
    z-index: 1;
  }
  .hero .hero-body .hero-catch h1 {
    font-size: 41px;
  }
  .hero .hero-body .hero-catch h2 {
    font-size: 20px;
  }
  .hero .hero-body .hero-catch img {
    margin-top: 250px;
  }
  .hero.v1 {
    background: url(../images/v1/hero-bg-sp.png) no-repeat center center/cover;
    height: auto;
    padding: 0 0 20px;
  }
  .hero.v1 .hero-body .hero-catch {
    margin-top: 0;
    padding: 80px 40px 0;
  }
  .hero.v1 .hero-body .hero-catch h1 {
    font-size: 30px;
  }
  .hero.v1 .hero-body .hero-catch img {
    margin-top: 200px;
  }
  .hero.v2 {
    background: url(../images/v2/hero-bg-sp.png) no-repeat center center/cover;
  }
  .hero.v2 .hero-body {
    background: none;
  }
  .hero.v3 {
    background: url(../images/v3/hero-bg-sp.png) no-repeat center center/cover;
    height: auto;
  }
  .hero.v3 .hero-body .hero-catch {
    padding: 20px 30px;
  }
  .hero.v3 .hero-body .hero-catch h1 {
    font-size: 34px;
  }
  .hero.v3 .hero-body .hero-catch h2 {
    font-size: 20px;
  }
  .hero.v3 .hero-body .hero-catch img {
    margin-top: 20px;
  }
}

@media screen and (max-width: 400px) {
  .hero .hero-body .hero-catch h1 {
    font-size: 37px;
  }
  .hero.v3 .hero-body .hero-catch h1 {
    font-size: 32px;
  }
}

/* LP3種のbody部分 */
/* TOP直下CTA */
.cta-top .container {
  padding: 80px 0;
}

.cta-top .container a {
  display: block;
  margin: 0 auto;
  max-width: 800px;
  width: 100%;
}

.cta-top .container a img {
  display: block;
  width: 100%;
}

.cta-top .container a:hover {
  text-decoration: none;
  transform: scale(1.02);
}

@media screen and (max-width: 767px) {
  .cta-top .container {
    padding: 20px 0;
  }
}

/* TOP直下CTAv1用 */
.cta-top-v1 {
  background: #000A4F;
}

.cta-top-v1 .container {
  padding: 40px 0;
}

.cta-top-v1 .container h4 {
  color: #ffffff;
}

.cta-top-v1 .container h4 .text-amber {
  color: #FFB322;
}

.cta-top-v1 .container p {
  padding-left: 200px;
}

.cta-top-v1 .container .main {
  display: flex;
  justify-content: space-between;
  margin-top: -20px;
}

.cta-top-v1 .container .main .price-list {
  display: flex;
}

.cta-top-v1 .container .main .price-list img {
  display: block;
  height: 120px;
  margin-right: 20px;
  width: auto;
}

.cta-top-v1 .container .main a {
  display: block;
  width: 340px;
}

.cta-top-v1 .container .main a img {
  display: block;
  width: 100%;
}

.cta-top-v1 .container .main a:hover {
  transform: scale(1.02);
}

@media screen and (min-width: 1000px) and (max-width: 1200px) {
  .cta-top-v1 .container .main {
    margin-top: -20px;
  }
  .cta-top-v1 .container .main .price-list img {
    height: 100px;
  }
  .cta-top-v1 .container .main a {
    width: 300px;
  }
}

@media screen and (min-width: 768px) and (max-width: 999px) {
  .cta-top-v1 .container h4 {
    margin-bottom: 20px;
    text-align: center;
  }
  .cta-top-v1 .container .main {
    flex-direction: column;
  }
  .cta-top-v1 .container .main .price-list {
    justify-content: center;
  }
  .cta-top-v1 .container .main .price-list img {
    height: 100px;
  }
  .cta-top-v1 .container .main a {
    margin: 10px auto 0;
    width: 400px;
  }
}

@media screen and (max-width: 767px) {
  .cta-top-v1 .container {
    padding: 20px 40px;
  }
  .cta-top-v1 .container p {
    display: none;
  }
  .cta-top-v1 .container .main {
    flex-direction: column;
  }
  .cta-top-v1 .container .main .price-list {
    justify-content: center;
    margin-top: 10px;
  }
  .cta-top-v1 .container .main .price-list img {
    height: auto;
    margin: 0;
    width: 100%;
  }
  .cta-top-v1 .container .main a {
    margin: 10px auto 0;
    width: 100%;
  }
}

/* 「電子契約サービス」の導入においてこんな悩みでつまずいてませんか？ */
.problem .container {
  padding: 80px 0;
}

.problem .container h3 {
  margin-bottom: 40px;
}

.problem .container .row {
  justify-content: center;
}

.problem .container .row .col {
  padding: 10px 20px;
}

.problem .container .row .col .text {
  align-items: center;
  background: #ffffff;
  border-radius: 8px;
  display: flex;
  font-size: 24px;
  font-weight: 600;
  height: 90px;
  justify-content: center;
  width: 100%;
}

@media screen and (min-width: 768px) and (max-width: 999px) {
  .problem .container .row .col {
    padding: 10px 20px;
  }
  .problem .container .row .col .text {
    font-size: 18px;
  }
}

@media screen and (max-width: 767px) {
  .problem .container {
    padding: 60px 20px;
  }
  .problem .container h3 {
    margin-bottom: 20px;
  }
  .problem .container .row .col {
    padding: 10px 20px;
  }
  .problem .container .row .col .text {
    font-size: 18px;
  }
}

.answer .container {
  background: url(../images/arrow-bottom-navy-0.png) no-repeat center top/180px;
  padding: 80px 0;
}

.answer .container h3 {
  align-items: center;
  display: flex;
  justify-content: center;
}

.answer .container h3 img {
  height: 86px;
  margin-right: 10px;
  width: auto;
}

@media screen and (max-width: 767px) {
  .answer .container {
    padding: 80px 40px;
  }
  .answer .container h3 {
    flex-direction: column;
  }
  .answer .container h3 img {
    height: 86px;
    margin-right: 10px;
    width: auto;
  }
}

/* Legal Signはあらゆる「契約」「印鑑」「書類」をペーパーレス化。全ての作業をオンラインで完結させます。 */
.feature .container {
  padding: 80px 0;
}

.feature .container h3 {
  margin-bottom: 40px;
}

.feature .container .row .col img {
  margin: 0 auto;
  width: 300px;
}

.feature .container .row .col h4 {
  text-align: center;
  margin: 10px 0;
}

@media screen and (min-width: 768px) and (max-width: 999px) {
  .feature .container .row .col img {
    width: 200px;
  }
}

@media screen and (max-width: 767px) {
  .feature .container {
    padding: 80px 40px;
  }
  .feature .container h3 {
    margin-bottom: 40px;
  }
  .feature .container .row .col {
    margin-bottom: 40px;
  }
  .feature .container .row .col img {
    width: 230px;
  }
}

.feature-more .container {
  padding: 80px 0;
}

.feature-more .container .row {
  align-items: center;
}

@media screen and (max-width: 767px) {
  .feature-more {
    display: none;
  }
}

/* 電子帳保存法に準拠。文章の真正性・非改ざん性を証明。だから、法的にも安心。 */
.reassurance {
  padding: 0 0 80px 0;
}

.reassurance .container {
  background: #F0F0F2;
  border-radius: 32px;
  padding: 80px;
}

.reassurance .container h3 {
  margin-bottom: 40px;
}

.reassurance .container .row {
  justify-content: center;
}

.reassurance .container .row .col img {
  margin: 0 auto;
  width: 200px;
}

.reassurance .container .row .col h4 {
  align-items: center;
  display: flex;
  height: 72px;
  justify-content: center;
  text-align: center;
  margin: 10px 0;
}

@media screen and (min-width: 768px) and (max-width: 999px) {
  .reassurance .container {
    padding: 40px;
  }
  .reassurance .container h3 {
    margin-bottom: 20px;
  }
  .reassurance .container .row .col {
    margin-bottom: 20px;
  }
  .reassurance .container .row .col h4 {
    height: auto;
  }
}

@media screen and (max-width: 767px) {
  .reassurance {
    padding: 0 0 60px 0;
  }
  .reassurance .container {
    border-radius: 0;
    padding: 60px 40px;
  }
  .reassurance .container h3 {
    margin-bottom: 20px;
  }
  .reassurance .container .row .col {
    margin-bottom: 20px;
  }
  .reassurance .container .row .col img {
    width: 150px;
  }
}

/* 追加オプション費用不要。全ての機能を月額料金内でご利用いただけます。 */
.service {
  padding: 80px 0;
}

.service .container h3 {
  margin-bottom: 40px;
}

.service .container .row.option-1 {
  margin-bottom: 80px;
}

.service .container .row.option-2 {
  margin-top: 80px;
}

.service .container .row .col {
  padding: 20px;
}

.service .container .row .col .detail {
  background: #ffffff;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  height: 260px;
  justify-content: center;
  padding: 20px;
}

.service .container .row .col .detail img {
  margin: 0 auto;
  width: 150px;
}

.service .container .row .col .detail h5 {
  text-align: center;
}

.service .container .cta {
  align-items: center;
  background: #ffffff;
  border-radius: 8px;
  display: flex;
  margin-top: 20px;
  overflow: hidden;
}

.service .container .cta .text {
  padding: 40px;
  width: 50%;
}

.service .container .cta .text h4 {
  color: #0368EC;
  font-size: 24px;
  margin-bottom: 20px;
}

.service .container .cta .text p {
  color: #0368EC;
}

.service .container .cta .img {
  width: 50%;
}

.service .container .support-sub {
  margin-top: 20px;
}

.service .container .support-sub .col .support-sub-body {
  background: #ffffff;
  border-radius: 8px;
  height: 100%;
  padding: 40px;
}

.service .container .support-sub .col .support-sub-body img {
  display: block;
  margin: 10px auto;
  width: 120px;
}

.service .container a.download {
  align-items: center;
  background: linear-gradient(to bottom, #005FAF, #00A0C7);
  border-radius: 40px;
  box-shadow: 0 4px 12px 0 rgba(0, 0, 0, 0.12), 0 4px 8px -5px rgba(0, 0, 0, 0.15);
  color: #ffffff;
  display: flex;
  font-size: 20px;
  height: 80px;
  justify-content: center;
  margin: 40px auto 0;
  max-width: 800px;
}

.service .container a.download img {
  height: 14px;
  margin-left: 10px;
  width: auto;
}

.service .container a.download:hover {
  box-shadow: 0 8px 12px 0 rgba(0, 0, 0, 0.12), 0 8px 8px -5px rgba(0, 0, 0, 0.15);
  text-decoration: none;
  transform: scale(1.02);
}

@media screen and (min-width: 768px) and (max-width: 999px) {
  .service .container .row .col {
    padding: 10px;
  }
  .service .container .row .col .detail {
    height: 350px;
  }
}

@media screen and (max-width: 767px) {
  .service {
    padding: 60px 10px;
  }
  .service .container h3 {
    margin-bottom: 20px;
  }
  .service .container .row.option-1 {
    margin-bottom: 60px;
  }
  .service .container .row.option-2 {
    margin-top: 20px;
  }
  .service .container .row .col {
    padding: 10px;
  }
  .service .container .row .col .detail {
    border-radius: 8px;
    height: 260px;
    padding: 10px;
  }
  .service .container .row .col .detail img {
    width: 100px;
  }
  .service .container .row .col .detail h5 {
    text-align: center;
  }
  .service .container .row .col .detail p {
    font-size: 14px;
  }
  .service .container .cta {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    flex-direction: column-reverse;
    margin-top: 20px;
  }
  .service .container .cta .text {
    padding: 20px;
    width: 100%;
  }
  .service .container .cta .text h4 {
    font-size: 20px;
    text-align: center;
  }
  .service .container .cta .text p {
    color: #0368EC;
  }
  .service .container .cta .img {
    width: 100%;
  }
  .service .container .support-sub {
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
    margin: 0;
    overflow: hidden;
  }
  .service .container .support-sub .col {
    background: #ffffff;
    padding: 0 20px 20px;
  }
  .service .container .support-sub .col .support-sub-body {
    background: #F2F8FE;
    border-radius: 8px;
    margin-bottom: 20px;
    padding: 20px;
  }
  .service .container .support-sub .col .support-sub-body img {
    display: block;
    margin: 10px auto;
    width: 120px;
  }
  .service .container a.download {
    font-size: 18px;
    margin: 20px 20px 0;
  }
  .service .container a.download img {
    height: 24px;
    margin-left: 20px;
  }
}

/* 本部、各支店・営業所それぞれで利用しても基本利用料は4,980円/月のみ。 */
.service-answer {
  background: linear-gradient(to right, #005FAF, #00A0C7);
}

.service-answer .container {
  background: url(../images/arrow-bottom-white.png) no-repeat center top/180px;
  padding-bottom: 80px;
  padding-top: 80px;
}

.service-answer .container h3 {
  color: #ffffff;
}

.service-answer .container img {
  display: block;
  margin: 40px auto;
  max-width: 520px;
}

.service-answer .container p {
  color: #ffffff;
  font-size: 18px;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .service-answer .container {
    padding-bottom: 60px;
    padding-top: 60px;
  }
  .service-answer .container img {
    margin: 20px auto;
  }
  .service-answer .container p {
    font-size: 16px;
  }
}

/* 1名でも100名で利用しても基本利用料はずっと一律。 */
.price-and-support {
  padding: 80px 0;
}

.price-and-support .price-list {
  align-items: flex-end;
  display: flex;
  margin-bottom: 80px;
  margin-top: 40px;
}

.price-and-support .price-list .col {
  background: #F0F0F2;
  padding: 10px;
  width: 33%;
}

.price-and-support .price-list .col.left {
  border-bottom-left-radius: 8px;
  border-top-left-radius: 8px;
}

.price-and-support .price-list .col.right {
  border-bottom-right-radius: 8px;
  border-top-right-radius: 8px;
}

.price-and-support .price-list .col.right .body {
  background: #ffffff;
  border-radius: 4px;
}

.price-and-support .price-list .col.right .body .label {
  margin-bottom: 2px;
}

.price-and-support .price-list .col.right .body hr {
  border-top: 1px dotted #00A0C7;
  margin: 0 20px 2px;
}

.price-and-support .price-list .col .head {
  align-items: center;
  display: flex;
  height: 64px;
  justify-content: center;
  text-align: center;
}

.price-and-support .price-list .col .body .label {
  align-items: center;
  background: #ffffff;
  border-radius: 4px;
  display: flex;
  font-size: 20px;
  font-weight: 600;
  flex-direction: column;
  height: 64px;
  justify-content: center;
  margin-bottom: 5px;
  text-align: center;
}

.price-and-support .price-list .col.checkitout {
  background: linear-gradient(to bottom, #005FAF, #00A0C7);
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
}

.price-and-support .price-list .col.checkitout .head {
  height: 100px;
}

.price-and-support .price-list .col.checkitout .head img {
  height: 60px;
  width: auto;
}

.price-and-support .price-list .col.checkitout .body {
  background: #ffffff;
  border-radius: 4px;
}

.price-and-support .price-list .col.checkitout .body .label {
  color: #0368EC;
  margin-bottom: 2px;
}

.price-and-support .price-list .col.checkitout .body hr {
  border-top: 1px solid #0368EC;
  margin: 0 20px 2px;
}

.price-and-support .support {
  align-items: center;
  background: #F2F8FE;
  border-radius: 8px;
  display: flex;
  margin-top: 40px;
  overflow: hidden;
}

.price-and-support .support .text {
  padding: 40px;
  width: 50%;
}

.price-and-support .support .text h5 {
  color: #0368EC;
  font-size: 20px;
  margin-bottom: 20px;
}

.price-and-support .support .text p {
  color: #0368EC;
}

.price-and-support .support .img {
  width: 50%;
}

.price-and-support .cta {
  margin-top: 40px;
}

.price-and-support .cta a {
  display: block;
  transition: .2s;
}

.price-and-support .cta a:hover {
  transform: scale(1.02);
}

.price-and-support .support-sub {
  margin-top: 20px;
}

.price-and-support .support-sub .col .support-sub-body {
  background: #F2F8FE;
  border-radius: 8px;
  height: 100%;
  padding: 40px;
}

.price-and-support .support-sub .col .support-sub-body img {
  display: block;
  margin: 10px auto;
  width: 120px;
}

@media screen and (min-width: 768px) and (max-width: 999px) {
  .price-and-support .price-list .col .head h4 {
    font-size: 18px;
  }
  .price-and-support .price-list .col.checkitout .head {
    height: 80px;
  }
  .price-and-support .price-list .col.checkitout .head img {
    height: 40px;
  }
  .price-and-support .support .text {
    padding: 20px;
  }
  .price-and-support .support .text h5 {
    font-size: 16px;
    margin-bottom: 10px;
  }
  .price-and-support .support .text p {
    color: #0368EC;
  }
  .price-and-support .support .img {
    height: 100%;
  }
  .price-and-support .support .img img {
    height: 280px;
    width: auto;
  }
}

@media screen and (max-width: 767px) {
  .price-and-support {
    padding: 60px 0;
  }
  .price-and-support .price-list {
    margin-bottom: 60px;
    margin-top: 20px;
  }
  .price-and-support .price-list .col {
    background: #F0F0F2;
    padding: 5px;
    width: 33%;
  }
  .price-and-support .price-list .col.left {
    border-bottom-left-radius: 8px;
    border-top-left-radius: 8px;
  }
  .price-and-support .price-list .col.right .body .label {
    margin-bottom: 2px;
  }
  .price-and-support .price-list .col.right .body hr {
    margin: 0 10px 2px;
  }
  .price-and-support .price-list .col .head {
    height: 50px;
  }
  .price-and-support .price-list .col .head h4 {
    font-size: 12px;
  }
  .price-and-support .price-list .col .body .label {
    align-items: center;
    background: #ffffff;
    border-radius: 4px;
    display: flex;
    font-size: 12px;
    font-weight: 600;
    flex-direction: column;
    height: 48px;
    justify-content: center;
    margin-bottom: 5px;
  }
  .price-and-support .price-list .col .body .label .text-small {
    font-size: 10px;
  }
  .price-and-support .price-list .col.checkitout .head {
    height: 60px;
  }
  .price-and-support .price-list .col.checkitout .head img {
    height: 30px;
    width: auto;
  }
  .price-and-support .price-list .col.checkitout .body hr {
    margin: 0 10px 2px;
  }
  .price-and-support .support {
    flex-direction: column-reverse;
  }
  .price-and-support .support .text {
    padding: 20px;
    width: 100%;
  }
  .price-and-support .support .text h5 {
    font-size: 16px;
    margin-bottom: 10px;
  }
  .price-and-support .support .text p {
    color: #0368EC;
  }
  .price-and-support .support .img {
    width: 100%;
  }
  .price-and-support .support-sub {
    background: #F2F8FE;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
    margin: 0;
    overflow: hidden;
  }
  .price-and-support .support-sub .col {
    background: #F2F8FE;
    padding: 0 20px 20px;
  }
  .price-and-support .support-sub .col .support-sub-body {
    background: #ffffff;
    border-radius: 8px;
    padding: 20px;
  }
  .price-and-support .support-sub .col .support-sub-body img {
    display: block;
    margin: 10px auto;
    width: 120px;
  }
}

/* LegalSignは「契約書」だけではありません。あらゆる書類の電子化を可能にします */
.possible {
  padding: 80px 0;
}

.possible .container {
  border-radius: 32px;
  padding: 80px;
}

.possible .container h3 {
  margin-bottom: 40px;
}

.possible .container .row {
  justify-content: center;
}

.possible .container .row .col {
  padding: 20px;
}

.possible .container .row .col .detail {
  background: #ffffff;
  border-radius: 16px;
  height: 300px;
  padding: 40px;
}

.possible .container .row .col .detail ul li {
  background: url(../images/check-blue.png) no-repeat left center/15px;
  padding-left: 20px;
}

@media screen and (max-width: 999px) {
  .possible {
    padding: 60px 0;
  }
  .possible .container {
    border-radius: 0;
    padding: 80px 20px;
  }
  .possible .container h3 {
    margin-bottom: 20px;
  }
  .possible .container .row {
    justify-content: center;
  }
  .possible .container .row .col {
    padding: 10px;
  }
  .possible .container .row .col .detail {
    background: #ffffff;
    border-radius: 16px;
    height: 200px;
    padding: 10px;
  }
  .possible .container .row .col .detail ul li {
    font-size: 14px;
  }
}

/* 料金 */
.price {
  padding: 80px 0;
}

.price .container {
  border-radius: 32px;
}

.price .container h6 {
  font-size: 24px;
  text-align: center;
}

.price .container h6 .underline {
  background: linear-gradient(transparent 70%, #FFFBE8 0%);
}

.price .container .main {
  margin-top: 40px;
  margin-bottom: 20px;
}

.price .container .sub {
  margin-bottom: 40px;
}

.price .container .tel {
  margin: 0 auto 40px;
  max-width: 600px;
}

.price .container .cta a {
  align-items: center;
  background: linear-gradient(to bottom, #005FAF, #00A0C7);
  border-radius: 8px;
  box-shadow: 0 4px 12px 0 rgba(0, 0, 0, 0.12), 0 4px 8px -5px rgba(0, 0, 0, 0.15);
  color: #ffffff;
  display: flex;
  font-size: 24px;
  height: 100px;
  justify-content: center;
  margin-top: 20px;
}

.price .container .cta a img {
  height: 20px;
  margin-left: 10px;
  width: auto;
}

.price .container .cta a:hover {
  box-shadow: 0 8px 12px 0 rgba(0, 0, 0, 0.12), 0 8px 8px -5px rgba(0, 0, 0, 0.15);
  text-decoration: none;
  transform: scale(1.02);
}

@media screen and (max-width: 767px) {
  .price {
    padding: 60px 0;
  }
  .price .container {
    border-radius: 32px;
  }
  .price .container h6 {
    text-align: center;
  }
  .price .container .main {
    margin-top: 40px;
    margin-bottom: 20px;
  }
  .price .container .sub {
    margin-bottom: 40px;
  }
  .price .container .tel {
    margin: 0 auto 40px;
    max-width: 600px;
  }
  .price .container .cta a {
    font-size: 24px;
  }
  .price .container .cta a img {
    height: 24px;
    margin-left: 20px;
  }
  .price .container .cta a:hover {
    text-decoration: none;
  }
}

/* vws */
.vws {
  padding: 80px 0;
}

.vws .container {
  border-radius: 32px;
  padding: 80px;
}

.vws .container .jpx {
  align-items: center;
  display: flex;
  justify-content: center;
  margin: 0 auto 40px;
}

.vws .container .jpx img {
  margin-right: 10px;
  width: 40px;
}

.vws .container .jpx h4 {
  margin: 0;
}

.vws .container .main-img {
  margin: 0 auto 40px;
  max-width: 500px;
  width: 100%;
}

@media screen and (max-width: 767px) {
  .vws {
    padding: 60px 0;
  }
  .vws .container {
    border-radius: 0;
    padding: 80px 20px;
  }
  .vws .container .jpx {
    margin-bottom: 20px;
  }
  .vws .container .main-img {
    margin: 0 auto 20px;
  }
}

/* ご利用のイメージ */
.example {
  padding: 80px 0;
}

.example h6 {
  margin-bottom: 40px;
  text-align: center;
}

.example .example-slider .example-slider-img {
  margin: 20px;
}

.example .example-slider .example-slider-img .step-label {
  background: #18191A;
  border-radius: 24px;
  color: #ffffff;
  display: block;
  font-size: 18px;
  line-height: 1;
  margin: 20px auto;
  padding: 10px;
  text-align: center;
  width: 150px;
}

.example .example-slider .example-slider-img h4 {
  text-align: center;
}

.example .example-slider .slick-prev {
  background: url(../images/prev.png) no-repeat center center/cover;
  height: 36px;
  width: 36px;
  z-index: 1;
}

.example .example-slider .slick-prev:before {
  opacity: 0;
}

.example .example-slider .slick-next {
  background: url(../images/next.png) no-repeat center center/cover;
  height: 36px;
  width: 36px;
  z-index: 1;
}

.example .example-slider .slick-next:before {
  opacity: 0;
}

@media screen and (max-width: 767px) {
  .example {
    padding: 60px 0;
  }
  .example h6 {
    margin-bottom: 20px;
  }
  .example .example-slider .example-slider-img {
    margin: 20px;
  }
  .example .example-slider .example-slider-img .step-label {
    background: #18191A;
    border-radius: 24px;
    color: #ffffff;
    display: block;
    font-size: 18px;
    line-height: 1;
    margin: 20px auto;
    padding: 10px;
    text-align: center;
    width: 150px;
  }
  .example .example-slider .slick-prev {
    left: 0;
  }
  .example .example-slider .slick-next {
    right: 0;
  }
}

.faq {
  padding: 80px 0;
}

.faq h3 {
  margin-bottom: 40px;
}

.faq .menu .tab-control {
  cursor: pointer;
  transition: .2s;
}

.faq .menu .tab-control:hover {
  transform: scale(1.02);
}

.faq .menu .tab-control h4 {
  background: #ffffff;
  border-radius: 8px;
  margin-bottom: 20px;
  padding: 20px;
  text-align: center;
}

.faq .menu .tab-control.active h4 {
  background: #005FAF;
  color: #ffffff;
}

.faq .tab-content {
  display: none;
}

.faq .tab-content.active {
  display: block;
}

.faq .tab-content h4 {
  border-left: 8px solid #005FAF;
  margin: 40px 0 20px;
  padding-left: 20px;
}

.faq .tab-content dl dt {
  align-items: center;
  background: #ffffff;
  border-radius: 8px;
  display: flex;
  padding: 20px;
  font-size: 20px;
  width: 100%;
}

.faq .tab-content dl dt .label {
  color: #0368EC;
  font-size: 32px;
  margin-right: 20px;
  width: 32px;
}

.faq .tab-content dl dt .detail {
  width: calc(100% - 92px);
}

.faq .tab-content dl dt .trigger {
  background: url(../images/accordion-open.png) no-repeat center center/cover;
  height: 40px;
  width: 40px;
}

.faq .tab-content dl dt.active .trigger {
  background: url(../images/accordion-close.png) no-repeat center center/cover;
  height: 40px;
  width: 40px;
}

.faq .tab-content dl dd {
  align-items: center;
  border-radius: 8px;
  display: flex;
  padding: 20px;
  font-size: 20px;
  font-weight: 600;
  width: 100%;
}

.faq .tab-content dl dd .label {
  color: #0368EC;
  font-size: 32px;
  margin-right: 20px;
  width: 32px;
}

.faq .tab-content dl dd .detail {
  width: calc(100% - 32px);
}

@media screen and (max-width: 767px) {
  .faq {
    padding: 60px 0;
  }
  .faq h3 {
    margin-bottom: 20px;
  }
  .faq .menu {
    padding: 10px;
  }
  .faq .menu .tab-control {
    padding: 0 5px;
  }
  .faq .menu .tab-control h4 {
    margin-bottom: 10px;
    padding: 10px;
  }
  .faq .tab-content dl dt {
    font-size: 16px;
  }
  .faq .tab-content dl dt .label {
    margin-right: 10px;
    width: 32px;
  }
  .faq .tab-content dl dd {
    font-size: 16px;
  }
  .faq .tab-content dl dd .label {
    margin-right: 10px;
    width: 32px;
  }
}

.scene {
  padding: 80px 0;
}

.scene h3 {
  margin-bottom: 40px;
}

.scene .row .col .detail {
  border-radius: 16px;
  box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.12), 0 7px 10px -5px rgba(0, 0, 0, 0.15);
}

.scene .row .col .detail .text {
  padding: 20px;
}

/* フォームページのスタイル */
.form-download {
  margin: 200px 0 80px;
}

.form-download .container {
  background: #F2F8FE;
  border-radius: 32px;
  padding: 60px;
}

.form-download .detail {
  background: #F0F0F2;
  border-radius: 16px;
  margin-top: 40px;
  padding: 20px;
}

.form-download form {
  margin: 0 auto;
  max-width: 750px;
}

.form-download form .form-section .label {
  font-size: 20px;
  font-weight: 600;
}

.form-download form .form-section .label .required {
  color: #ff0000;
}

.form-download form .form-section .input input, .form-download form .form-section .input select {
  font-size: 18px;
  height: 60px;
  min-width: 300px;
  padding-left: 20px;
}

@media screen and (max-width: 767px) {
  .form-download {
    margin: 80px 20px 80px;
  }
  .form-download .container {
    padding: 60px 20px;
  }
  .form-download .detail {
    background: #F0F0F2;
    border-radius: 16px;
    margin-top: 40px;
    padding: 20px;
  }
  .form-download form .form-section .label {
    font-size: 18px;
  }
  .form-download form .form-section .input input, .form-download form .form-section .input select {
    min-width: 150px;
    width: 100%;
  }
}
