@charset "UTF-8";
/*============================================================
リセット
============================================================*/
body, p, ul, ol, dl, dd {
  margin: 0;
  padding: 0;
}
h1, h2, h3, h4, h5, h6 {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-size: 100%;
  line-height: 120%;
}
ul {
  list-style: none;
}
table {
  border-spacing: 0;
  border-collapse: collapse;
}
a {
  outline: none;
  text-decoration: none;
  word-wrap: break-word;
}
button {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: none;
  outline: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
button:not([disabled="disabled"]) {
  cursor: pointer;
}
/*============================================================
デフォルト設定
============================================================*/
body {
  -webkit-text-size-adjust: 100%;
  /*iosでスクロールを滑らかにする*/
  -webkit-overflow-scrolling: touch;
}
/*----------------------------------------
フォント
----------------------------------------*/
body, input, textarea, button, select {
  line-height: 1;
  font-family: "游ゴシック Medium",YuGothic,YuGothicM,"Hiragino Kaku Gothic ProN","Hiragino Kaku Gothic Pro",メイリオ,Meiryo,sans-serif;
}
/*----------------------------------------
フォントサイズ
----------------------------------------*/
html {
  /*ベースのフォントサイズ指定(10px)*/
  font-size: 62.5%;
}
.l-menu1 li a, .intro-effect-note {
  font-size: 14px;
  font-size: 1.4rem;
}
/*----------------------------------------
ホバー
----------------------------------------*/
button, a, a img {
  -webkit-transition: .2s linear;
          transition: .2s linear;
  -webkit-transition-property: background, color, opacity, border;
          transition-property: background, color, opacity, border;
  -webkit-tap-highlight-color: transparent;
}
#wrapper:not(.sp):not(.tb) a:hover img:hover {
  opacity: .7;
}
/*============================================================
レイアウト
============================================================*/
/*----------------------------------------
フッター固定
----------------------------------------*/
#wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
      flex-direction: column;
  width: 100%;
  min-height: 100vh;
}
#wrapper.is-fixed {
  position: fixed;
  overflow-y: scroll;
}
#wrapper.is-over {
  overflow: hidden;
}
/*----------------------------------------
メニュー（1カラム用）
----------------------------------------*/
.l-menu1 {
  position: fixed;
  width: 100%;
  min-width: 320px;
  -webkit-box-shadow: 5px 8px 12px rgba(45, 140, 255, .3);
          box-shadow: 5px 8px 12px rgba(45, 140, 255, .3);
  background: #fff;
  -webkit-transition: opacity .3s ease-out;
          transition: opacity .3s ease-out;
  z-index: 30;
}
.l-menu1 li {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.l-menu1 li:first-of-type a {
  border-radius: 10px 10px 0 0;
}
.l-menu1 li:nth-last-of-type(2) a {
  border-radius: 0 0 10px 10px;
}
.l-menu1 li:not(:last-of-type) a {
  color: #161616;
}
#wrapper:not(.sp):not(.tb) .l-menu1 li:not(:last-of-type) a:hover {
  color: #f57e26;
}
.l-menu1 li:last-of-type a {
  border-radius: 20px;
  background: #f26d21;
  color: #fff;
  -webkit-transition: color .2s linear, background .2s linear;
          transition: color .2s linear, background .2s linear;
}
#wrapper:not(.sp):not(.tb) .l-menu1 li:last-of-type a:hover {
  background: #fff;
  color: #f26d21;
}
.l-menu1 li a {
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 13px 15px;
  font-weight: bold;
  -webkit-transition: color .2s linear;
          transition: color .2s linear;
}
.l-menu-inner {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  height: 66px;
}
.logo-copy {
  display: block;
  margin-bottom: 6px;
  color: #565656;
  font-size: 12px;
  font-size: 1.2rem;
  font-weight: bold;
}
/*----------------------------------------
メインエリア
----------------------------------------*/
.l-main {
  overflow: hidden;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
}
.l-main > section:nth-child(n+3) {
  padding: 72px 0;
}
/*----------------------------------------
フッター
----------------------------------------*/
footer {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin-top: auto;
  padding: 21px 20px 19px;
  background: #39394d;
}
.footer-wrap {
  max-width: 1300px;
  margin: 0 auto;
  text-align: center;
}
/*============================================================
レスポンシブメニュー
============================================================*/
/*----------------------------------------
オーバーレイ
----------------------------------------*/
#overlay {
  display: none;
  opacity: 0;
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100%;
  background: #2d8cff;
  cursor: pointer;
  z-index: 20;
}
#wrapper.is-fixed #menu, #wrapper.is-over #menu {
  -webkit-animation: MenuAnime .3s ease-out alternate forwards;
          animation: MenuAnime .3s ease-out alternate forwards;
}
@-webkit-keyframes MenuAnime {
  0% {
    opacity: 0;
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@keyframes MenuAnime {
  0% {
    opacity: 0;
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
/*----------------------------------------
スマホメニュー開閉ボタン
----------------------------------------*/
#menuBtn {
  position: absolute;
  top: 6px;
  right: 6px;
  width: 46px;
  height: 46px;
  border: none;
  outline: none;
  border-radius: 3px;
  background: #2d8cff;
}
_:-ms-lang(x)::-ms-backdrop, #wrapper.is-fixed #menuBtn {
  right: 22px;
}
@supports (-ms-ime-align: auto) {
  #wrapper.is-fixed #menuBtn {
    right: 21px;
  }
}
#menuBtn span {
  display: block;
  position: absolute;
  left: calc((46px - 30px) / 2);
  width: 30px;
  height: 2px;
  background: #fff;
  -webkit-transition: -webkit-transform .2s linear;
          transition: -webkit-transform .2s linear;
          transition:         transform .2s linear;
          transition:         transform .2s linear, -webkit-transform .2s linear;
}
#menuBtn span:nth-of-type(1) {
  top: 12px;
  -webkit-transform: rotate(0);
          transform: rotate(0);
}
#menuBtn span:nth-of-type(2) {
  top: 22px;
  -webkit-transform: scale(1);
          transform: scale(1);
}
#menuBtn span:nth-of-type(3) {
  top: 32px;
  -webkit-transform: rotate(0);
          transform: rotate(0);
}
#menuBtn.is-open span:nth-of-type(1) {
  top: 48%;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
#menuBtn.is-open span:nth-of-type(2) {
  -webkit-transform: scale(0);
          transform: scale(0);
}
#menuBtn.is-open span:nth-of-type(3) {
  top: 48%;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
/*============================================================
汎用スタイル
============================================================*/
.cmn-ttl-01 {
  position: relative;
  text-align: center;
  font-size: 30px;
  font-size: 3rem;
  z-index: 10;
}
.cmn-ttl-01:not([style]) {
  margin-bottom: 33px;
  color: #2d8cff;
}
.cmn-txt-01 {
  text-align: center;
  color: #161616;
  font-size: 22px;
  font-size: 2.2rem;
  line-height: 120%;
}
/*----------------------------------------
hero
----------------------------------------*/
#animation_container, #canvas, #dom_overlay_container {
  width: 100% !important;
  height: 694px;
}
#canvas, #canvas_hero2 {
  display: block;
  position: absolute;
}
#dom_overlay_container, #dom_overlay_container_hero2 {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
  pointer-events: none;
}
#animation_container {
  position: relative;
}
#animation_container_hero2 {
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
#animation_container_hero2, #canvas_hero2, #dom_overlay_container_hero2 {
  width: 1000px;
  height: 850px;
}
.sec-hero {
  position: relative;
  top: 66px;
}
.hero-inner {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
}
.hero-copy {
  position: absolute;
  top: 266px;
  left: 46px;
  color: #fff;
  font-size: 30px;
  font-size: 3rem;
  font-weight: bold;
  text-shadow: 5px 8px 12px #3e7dca;
  z-index: 10;
}
.hero-copy span {
  margin-right: 5px;
  font-size: 75px;
  font-size: 7.5rem;
  text-shadow: 2px 0, -2px 0, 0 -2px, 0 2px, 2px 2px, -2px 2px, 2px -2px, -2px -2px, 1px 2px, -1px 2px, 1px -2px, -1px -2px, 2px 1px, -2px 1px, 2px -1px, -2px -1px, 5px 8px 12px #3e7dca;
}
.hero-img {
  position: absolute;
  top: 42px;
  right: 27px;
  z-index: 10;
}
/*----------------------------------------
選ばれる理由
----------------------------------------*/
.sec-reason {
  position: relative;
  padding: 100px 0 72px;
}
.reason-bg-01 {
  position: absolute;
  right: 19px;
  bottom: 0;
  z-index: 5;
}
/*--- swiper -------------------*/
/**
 * Swiper 3.4.1
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * http://www.idangero.us/swiper/
 * Copyright 2016, Vladimir Kharlampidi
 * The iDangero.us
 * http://www.idangero.us/
 * Licensed under MIT
 * Released on: December 13, 2016
 */
.swiper-container {
  position: relative;
  overflow: hidden;
  -webkit-transition: opacity .6s ease, -webkit-transform .3s ease;
          transition: opacity .6s ease, -webkit-transform .3s ease;
          transition: opacity .6s ease, transform .3s ease;
          transition: opacity .6s ease, transform .3s ease, -webkit-transform .3s ease;
  z-index: 10;
}
.swiper-container-no-flexbox .swiper-slide {
  float: left;
}
.swiper-container-vertical > .swiper-wrapper {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
      flex-direction: column;
}
.swiper-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  width: 100%;
  height: 100%;
  -webkit-transition-property: -webkit-transform;
          transition-property: -webkit-transform;
          transition-property:         transform;
          transition-property:         transform, -webkit-transform;
}
.swiper-container-android .swiper-slide, .swiper-wrapper {
  -webkit-transform: translate3d(0px, 0, 0);
          transform: translate3d(0px, 0, 0);
}
.swiper-slide {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  position: relative;
  -webkit-transition-property: -webkit-transform;
          transition-property: -webkit-transform;
          transition-property:         transform;
          transition-property:         transform, -webkit-transform;
}
.swiper-slide-invisible-blank {
  visibility: hidden;
}
/* IE10 Windows Phone 8 Fixes */
.swiper-container-wp8-horizontal, .swiper-container-wp8-horizontal > .swiper-wrapper {
  -ms-touch-action: pan-y;
      touch-action: pan-y;
}
.swiper-container-wp8-vertical, .swiper-container-wp8-vertical > .swiper-wrapper {
  -ms-touch-action: pan-x;
      touch-action: pan-x;
}
.swiper-button-prev, .swiper-button-next {
  position: absolute;
  top: 50%;
  width: 23px;
  height: 38px;
  margin-top: -19px;
  background-position: center;
  background-size: auto 38px;
  background-repeat: no-repeat;
  cursor: pointer;
  -webkit-transition: opacity .2s;
          transition: opacity .2s;
  z-index: 10;
  -webkit-tap-highlight-color: transparent;
}
#wrapper:not(.sp):not(.tb) .swiper-button-prev:hover, #wrapper:not(.sp):not(.tb)
.swiper-button-next:hover {
  opacity: .5;
}
.swiper-button-prev, .swiper-container-rtl .swiper-button-next {
  right: auto;
  left: 15px;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23161616'%2F%3E%3C%2Fsvg%3E");
}
.swiper-button-next, .swiper-container-rtl .swiper-button-prev {
  right: 15px;
  left: auto;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23161616'%2F%3E%3C%2Fsvg%3E");
}
/* a11y */
.swiper-container .swiper-notification {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1000;
  pointer-events: none;
}
.swiper-container-coverflow .swiper-wrapper {
  /* Windows 8 IE 10 fix */
  -ms-perspective: 1200px;
}
[class^="swiper-button-"] {
  -webkit-transition: all .3s ease;
          transition: all .3s ease;
}
.swiper-slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background: #fff;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}
[class^="swiper-button-"] {
  visibility: hidden;
  opacity: 0;
  width: 38px;
}
.swiper-container .swiper-button-prev, .swiper-container .swiper-button-next {
  visibility: visible;
  opacity: 1;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
.swiper-button-prev {
  -webkit-transform: translateX(50px);
          transform: translateX(50px);
}
.swiper-button-next {
  -webkit-transform: translateX(-50px);
          transform: translateX(-50px);
}
.main-slider {
  width: 95%;
  max-width: 900px;
  margin: 0 auto;
  padding: 5px 10px 15px 10px;
}
.main-slider .swiper-slide {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  height: 515px;
  padding: 105px 90px;
  border-radius: 10px;
}
.main-slider .swiper-slide-active {
  margin-right: 10px;
  -webkit-box-shadow: 5px 8px 12px rgba(45, 140, 255, .3);
          box-shadow: 5px 8px 12px rgba(45, 140, 255, .3);
}
.main-slide-summary {
  max-width: 400px;
}
.main-slide-ttl {
  color: #3a3a3a;
  font-size: 32px;
  font-size: 3.2rem;
  line-height: 120%;
  font-weight: bold;
}
.main-slide-ttl::after {
  display: block;
  width: 130px;
  height: 4px;
  margin-top: 48px;
  border-radius: 2px;
  background: #2d8cff;
  content: "";
}
.main-slide-copy {
  margin-top: 48px;
  color: #161616;
  font-size: 21px;
  font-size: 2.1rem;
  line-height: 150%;
}
.main-slide-img {
  align-self: center;
  margin-left: 40px;
  -ms-flex-item-align: center;
}
.nav-slider {
  width: 100%;
  max-width: 900px;
  height: 60px;
  margin: 0 auto;
  padding: 0 0 15px;
  background: -webkit-gradient(linear, left top, left bottom, from(#fff), color-stop(81%, #fff), color-stop(82%, rgba(255, 255, 255, 0)));
  background: -webkit-linear-gradient(top, #fff 0%, #fff 81%, rgba(255, 255, 255, 0) 82%);
  background:         linear-gradient(to bottom, #fff 0%, #fff 81%, rgba(255, 255, 255, 0) 82%);
}
.nav-slider .swiper-slide {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  opacity: .4;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 15%;
  height: 60px;
  padding: 0 5px;
  border-radius: 10px;
  -webkit-box-shadow: 5px 8px 12px rgba(45, 140, 255, .3);
          box-shadow: 5px 8px 12px rgba(45, 140, 255, .3);
  cursor: pointer;
  -webkit-transition: opacity .3s ease;
          transition: opacity .3s ease;
}
.nav-slider .swiper-slide-active {
  opacity: 1;
}
.nav-slide-ttl {
  width: calc(100% - 25px);
  color: #3a3a3a;
  font-size: 12px;
  font-size: 1.2rem;
  line-height: 120%;
  font-weight: bold;
}
.nav-slide-img {
  width: 25px;
  height: auto;
}
/*----------------------------------------
zoom導入効果
----------------------------------------*/
.sec-intro {
  position: relative;
  clear: both;
  background: #fafbfc;
}
.sec-intro::after {
  display: block;
  clear: both;
  content: "";
}
.intro-bg-cmn {
  z-index: 5;
}
.intro-bg-01 {
  position: absolute;
  top: -140px;
  left: -50px;
}
.intro-bg-02 {
  position: absolute;
  top: 148px;
  left: -82px;
}
.intro-bg-03 {
  position: absolute;
  right: -30px;
  bottom: 140px;
}
.intro-bg-04 {
  position: absolute;
  right: -79px;
  bottom: 0;
}
.intro-cost, .intro-commu {
  position: relative;
  -webkit-box-shadow: 5px 8px 12px rgba(45, 140, 255, .3);
          box-shadow: 5px 8px 12px rgba(45, 140, 255, .3);
  background: #fff;
  z-index: 10;
}
.intro-cost::before, .intro-commu::before {
  display: block;
  width: 108px;
  height: 314px;
  background-size: 108px 314px;
  content: "";
}
.intro-cost {
  float: right;
  margin-bottom: 72px;
}
.intro-cost .intro-summary {
  padding-left: 45px;
}
.intro-cost .intro-effect {
  margin-top: 73px;
}
.intro-cost .intro-effect-note {
  position: absolute;
  top: 80px;
  left: 210px;
}
.intro-cost .intro-effect-list {
  margin: 23px 0 0 80px;
}
.intro-cost::before {
  position: absolute;
  bottom: -24px;
  left: 0;
  background-image: url("../img/intro_down.png");
}
.intro-commu {
  clear: both;
}
.intro-commu .intro-summary {
  padding-left: 25px;
}
.intro-commu .intro-effect {
  margin: 40px 0 0;
}
.intro-commu .intro-effect-note {
  position: absolute;
  top: 60px;
  left: 196px;
}
@-moz-document url-prefix() {
  .intro-commu .intro-effect-note {
    left: 235px;
  }
}
.tb .intro-commu .intro-effect-note {
  left: 235px;
}
.intro-commu .intro-effect-note::before {
  position: absolute;
  left: -1em;
  content: "※";
}
.intro-commu .intro-effect-list {
  margin: 23px 0 0 1.2em;
}
.intro-commu::before {
  position: absolute;
  right: 0;
  bottom: -24px;
  background-image: url("../img/intro_up.png");
}
.intro-summary {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  max-width: 447px;
  padding-top: 50px;
  color: #161616;
}
.intro-ttl {
  color: #3a3a3a;
  font-size: 24px;
  font-size: 2.4rem;
  font-weight: bold;
}
.intro-ttl::after {
  display: block;
  width: 98px;
  height: 4px;
  margin-top: 26px;
  border-radius: 2px;
  background: #2d8cff;
  content: "";
}
.intro-copy {
  margin-top: 26px;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 150%;
}
.intro-effect {
  position: relative;
}
.intro-effect-ttl {
  font-size: 24px;
  font-size: 2.4rem;
  font-weight: bold;
}
.intro-effect-point {
  color: #ffca3b;
  font-size: 32px;
  font-size: 3.2rem;
  font-weight: bold;
}
_:-ms-lang(x)::-ms-backdrop, .intro-effect-point {
  margin-top: 15px;
}
.intro-effect-point span {
  margin-right: 10px;
  font-size: 124px;
  font-size: 12.4rem;
  text-shadow: 2px 0, -2px 0,0 -2px, 0 2px, 2px 2px , -2px 2px, 2px -2px, -2px -2px, 1px 2px, -1px 2px, 1px -2px, -1px -2px, 2px 1px, -2px 1px, 2px -1px, -2px -1px;
}
.intro-effect-note {
  line-height: 120%;
}
.intro-effect-list {
  font-size: 16px;
  font-size: 1.6rem;
}
.intro-effect-list li {
  position: relative;
}
.intro-effect-list li::before {
  position: absolute;
  left: -1.2em;
  color: #2d8cff;
  content: "●";
}
.intro-effect-list li:not(:first-of-type) {
  margin-top: 8px;
}
#btn_cost, #btn_commu {
  display: none;
}
#animation_container_cost, #animation_container_commu, #dom_overlay_container_cost, #dom_overlay_container_commu {
  width: 350px;
  height: 450px;
}
#canvas_cost, #canvas_commu {
  display: block;
  position: absolute;
}
#dom_overlay_container_cost, #dom_overlay_container_commu {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
  pointer-events: none;
}
/*----------------------------------------
security
----------------------------------------*/
.security-tbl {
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  margin-top: 36px;
  border-radius: 20px;
  -webkit-box-shadow: 5px 8px 12px rgba(45, 140, 255, .3);
          box-shadow: 5px 8px 12px rgba(45, 140, 255, .3);
}
.security-tbl-img {
  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;
  position: absolute;
  top: 50%;
  right: -50px;
  width: 102px;
  height: 102px;
  border-radius: 50%;
  background: #fff;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
}
_:-ms-lang(x)::-ms-backdrop, .security-tbl-img {
  transform: translate(0, 50%);
}
@supports (-ms-ime-align: auto) {
  .security-tbl-img {
    -webkit-transform: translate(0, 50%);
            transform: translate(0, 50%);
  }
}
.security-tbl table {
  width: 100%;
  max-width: 960px;
}
.security-tbl table tr {
  position: relative;
  z-index: 0;
}
.security-tbl table th {
  position: relative;
  padding: 0 72px;
  color: #3a3a3a;
  font-size: 24px;
  font-size: 2.4rem;
}
.security-tbl table td {
  padding: 0 72px 0 97px;
  background: #eef1f4;
}
.security-tbl table ul {
  margin-left: 1em;
}
.security-tbl table ul li {
  position: relative;
  padding-left: 5px;
  color: #161616;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 150%;
}
.security-tbl table ul li:not(:first-of-type) {
  margin-top: 5px;
}
.security-tbl table ul li::before {
  position: absolute;
  left: -1em;
  color: #2d8cff;
  content: "●";
}
.security-standard {
  margin-top: 52px;
}
/*----------------------------------------
サポート体制
----------------------------------------*/
.sec-support {
  padding: 67px 0;
  background: #2d8cff;
  text-align: center;
  color: #fff;
  font-weight: bold;
}
.support-img {
  margin-top: 30px;
}
.support-img img {
  width: 90%;
  max-width: 460px;
  height: auto;
}
.support-txt {
  margin-top: 32px;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 150%;
}
.support-company {
  margin-top: 40px;
}
.support-company span {
  display: block;
}
.support-company .name {
  font-size: 22px;
  font-size: 2.2rem;
}
.support-company .tel {
  margin-top: 15px;
  color: #ffca3b;
  font-size: 32px;
  font-size: 3.2rem;
  text-shadow: 0 0 1px;
}
.support-company .tel::before {
  margin-right: 10px;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f87b";
}
.support-company .date {
  margin-top: 5px;
  font-size: 22px;
  font-size: 2.2rem;
}
/*----------------------------------------
よくあるご質問
----------------------------------------*/
.sec-faq {
  background: #fafbfc;
}
.faq-item {
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  border-radius: 20px;
  -webkit-box-shadow: 5px 8px 12px rgba(45, 140, 255, .3);
          box-shadow: 5px 8px 12px rgba(45, 140, 255, .3);
  color: #161616;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 150%;
  -webkit-transition: -webkit-box-shadow .2s ease-out;
          transition: -webkit-box-shadow .2s ease-out;
          transition:         box-shadow .2s ease-out;
          transition:         box-shadow .2s ease-out, -webkit-box-shadow .2s ease-out;
}
#wrapper:not(.sp):not(.tb) .faq-item:hover {
  -webkit-box-shadow: 5px 8px 4px rgba(45, 140, 255, .3);
          box-shadow: 5px 8px 4px rgba(45, 140, 255, .3);
}
.faq-item:not(:first-of-type) {
  margin-top: 15px;
}
.faq-q {
  position: relative;
  padding: 30px 30px 30px 80px;
  cursor: pointer;
}
.faq-q::before {
  position: absolute;
  top: 50%;
  left: 30px;
  color: #2d8cff;
  font-size: 36px;
  font-size: 3.6rem;
  font-weight: bold;
  content: "Q";
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.faq-q:not(:first-of-type) {
  margin-top: 17px;
}
.faq-a::before {
  position: absolute;
  left: 30px;
  color: #f26d21;
  font-size: 36px;
  font-size: 3.6rem;
  font-weight: bold;
  content: "A";
}
.faq-a::after {
  position: absolute;
  top: 0;
  left: 30px;
  width: calc(100% - 60px);
  height: 1px;
  background: #2d8cff;
  content: "";
}
.tgl-slide {
  -webkit-tap-highlight-color: transparent;
}
.tgl-slide::after {
  display: block;
  position: absolute;
  top: 50%;
  right: 30px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 46px;
  height: 46px;
  padding-top: 12px;
  border: 1px solid #2d8cff;
  border-radius: 23px;
  text-align: center;
  font-size: 30px;
  font-size: 3rem;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f078";
  -webkit-transition: -webkit-transform .5s ease-out;
          transition: -webkit-transform .5s ease-out;
          transition:         transform .5s ease-out;
          transition:         transform .5s ease-out, -webkit-transform .5s ease-out;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.tgl-slide.is-open::after {
  background: #fff;
  color: #2d8cff;
  -webkit-transform: translateY(-23px) rotate(-180deg);
          transform: translateY(-23px) rotate(-180deg);
}
.tgl-slide.is-open + .faq-a {
  padding: 15px 30px 30px 80px;
}
.tgl-slide.is-open + .faq-a::before {
  top: 23px;
}
.tgl-slide:not(.is-open)::after {
  background: #2d8cff;
  color: #fff;
}
.tgl-slide:not(.is-open) + .faq-a {
  padding: 0 30px 0 80px;
}
.faq-a {
  position: relative;
  overflow: hidden;
  -webkit-transition: .5s ease-out;
          transition: .5s ease-out;
}
.faq-a::before {
  top: 5px;
  -webkit-transition: top .5s ease-out;
          transition: top .5s ease-out;
}
/*----------------------------------------
お問合せ
----------------------------------------*/
.sec-inquiry {
  padding: 72px 0 40px !important;
  background: #639fe8;
}
.g-recaptcha {
  display: none;
}
.is-recaptcha-show .g-recaptcha {
  display: block;
}
/*============================================================
Media Queries
============================================================*/
@media screen and (max-width: 768px) {
  #wrapper.is-over #spmenu {
    position: relative;
  }
}
@media screen and (min-width: 981px) {
  .l-menu1.is-opacity {
    opacity: .7;
  }
  #wrapper:not(.sp):not(.tb) .l-menu1.is-opacity:hover {
    opacity: 1;
  }
  #wrapper:not(.sp):not(.tb) .l-menu1.is-opacity:hover .l-menu-inner {
    height: 66px;
  }
  .l-menu1.is-opacity .l-menu-inner {
    height: 50px;
  }
  .l-menu1 ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .l-menu1 li:last-of-type {
    margin-left: 10px;
  }
  .l-menu1 li:last-of-type a {
    border: 1px solid #f26d21;
  }
  .l-menu-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
    -webkit-transition: height .3s ease-out;
            transition: height .3s ease-out;
  }
  #menuBtn {
    display: none;
  }
  .security-tbl table tr::before {
    display: block;
    position: absolute;
    width: 900px;
    height: 2px;
    content: "";
    -webkit-transform: translateX(30px);
            transform: translateX(30px);
    z-index: 10;
  }
  .security-tbl table tr:first-of-type::before {
    opacity: 0;
  }
  .security-tbl table tr:first-of-type td {
    border-radius: 0 20px 0 0;
  }
  .security-tbl table tr:last-of-type td {
    border-radius: 0 0 20px 0;
  }
  .security-tbl table tr:not(:first-of-type)::before {
    background: #aebfcc;
  }
  .security-tbl table th {
    height: 236px;
  }
}
@media screen and (max-width: 980px) {
  .l-menu1 ul {
    width: 90%;
  }
  #wrapper.is-fixed:not(.sp):not(.tb) .l-menu1 ul {
    width: calc(90% - 16px);
  }
  .l-menu1 li {
    width: 100%;
  }
  .l-menu1 li:nth-child(n+2):nth-child(-n+5) a {
    border-top: 1px solid #2d8cff;
  }
  .l-menu1 li:last-of-type {
    margin-top: 20px;
  }
  .l-menu1 li a {
    background: #fff;
  }
  .l-menu-inner {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    height: 58px;
  }
  .logo {
    padding: 6px 0 0 6px;
  }
  nav {
    display: none;
    position: relative;
    top: 20px;
    left: 5%;
  }
  #menu {
    opacity: 0;
    position: relative;
    overflow: hidden;
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  #menuBtn {
    display: block;
  }
  .sec-hero {
    top: 58px;
  }
  .sec-reason {
    padding: 100px 0 72px;
  }
  .main-slider {
    height: 280px;
    margin: 0 auto;
  }
  .main-slider .swiper-slide {
    height: auto;
    padding: 40px 45px;
  }
  .main-slide-ttl {
    font-size: 24px;
    font-size: 2.4rem;
  }
  .main-slide-ttl::after {
    width: 98px;
    margin-top: 26px;
  }
  .main-slide-copy {
    margin-top: 26px;
    font-size: 16px;
    font-size: 1.6rem;
  }
  .main-slide-img {
    margin-left: 20px;
  }
  .main-slide-img img {
    width: 170px;
    height: auto;
  }
  .nav-slider {
    width: 100%;
    max-width: 678px;
    height: 60px;
    margin: 0 auto;
    padding: 0 0 15px;
    background: -webkit-gradient(linear, left top, left bottom, from(#fff), color-stop(81%, #fff), color-stop(82%, rgba(255, 255, 255, 0)));
    background: -webkit-linear-gradient(top, #fff 0%, #fff 81%, rgba(255, 255, 255, 0) 82%);
    background:         linear-gradient(to bottom, #fff 0%, #fff 81%, rgba(255, 255, 255, 0) 82%);
  }
  .sec-security {
    margin: 0 10px;
  }
  .security-tbl .pc-only {
    display: none;
  }
  .security-tbl-img {
    position: static;
    margin-left: 10px;
    -webkit-transform: none;
            transform: none;
  }
  .security-tbl table tr:last-of-type td {
    border-radius: 0 0 20px 20px;
  }
  .security-tbl table th {
    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;
    padding: 10px 0;
  }
  .security-tbl table td {
    display: block;
    padding: 10px 15px;
  }
  .sec-faq {
    padding-right: 10px !important;
    padding-left: 10px !important;
  }
}
@media screen and (-webkit-min-device-pixel-ratio: 0) and (min-resolution: .001dpcm) {
  #wrapper:not(.sp):not(.tb).is-fixed #menuBtn {
    right: 22px;
  }
}
@media screen and (min-width: 769px) {
  .cmn-ttl-01 .sp-only {
    display: none;
  }
  .sec-security p .sp-only {
    display: none;
  }
}
@media screen and (max-width: 1000px) {
  .hero-copy {
    top: 20px;
    left: 0;
    width: 100%;
    text-align: center;
  }
  .hero-img {
    top: 150px;
    left: 50%;
    width: 350px;
    height: auto;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  #animation_container, #canvas, #dom_overlay_container {
    height: 530px !important;
  }
  #animation_container_hero2 {
    top: -250px;
  }
}
@media screen and (max-width: 480px) {
  .hero-copy {
    font-size: 23px;
    font-size: 2.3rem;
    letter-spacing: -1px;
  }
  #animation_container_hero2, #canvas_hero2, #dom_overlay_container_hero2 {
    width: 500px !important;
    height: 425px !important;
  }
  #animation_container_hero2 {
    top: 140px;
  }
  .reason-bg-01 {
    right: 8px;
    width: 70px;
    height: 111px;
  }
  .intro-bg-cmn {
    width: 135px;
    height: 214px;
  }
  .intro-bg-01 {
    top: -70px;
    left: -25px;
  }
  .intro-bg-02 {
    top: 74px;
    left: -41px;
  }
  .intro-bg-03 {
    right: -43px;
    bottom: 30px;
  }
  .intro-bg-04 {
    right: -70px;
  }
  .intro-cost::before, .intro-commu::before {
    width: 81px;
    height: 235px;
    background-size: 81px 235px;
  }
  .intro-commu .intro-effect-note {
    right: 5px;
    left: auto;
  }
  .intro-effect-ttl {
    font-size: 22px;
    font-size: 2.2rem;
    letter-spacing: -1px;
  }
  .intro-effect-point span {
    margin-right: 5px;
    letter-spacing: -4px;
  }
  #animation_container_cost, #canvas_cost, #animation_container_commu, #canvas_commu {
    width: 301px !important;
    height: 387px !important;
    margin: 0 auto;
  }
}
@media screen and (max-width: 600px) {
  .main-slider {
    height: auto;
  }
  .main-slider .swiper-slide {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
        flex-direction: column;
    padding: 20px 12px;
  }
  .main-slide-summary {
    width: 100%;
  }
  .main-slide-ttl::after {
    margin-top: 13px;
  }
  .main-slide-copy {
    margin-top: 13px;
  }
  .main-slide-img {
    margin: 20px 0 0;
    text-align: center;
  }
  .main-slide-img img {
    width: 120px;
    height: auto;
  }
  .nav-slider {
    background: -webkit-gradient(linear, left top, left bottom, from(#fff), color-stop(79%, #fff), color-stop(80%, rgba(255, 255, 255, 0)));
    background: -webkit-linear-gradient(top, #fff 0%, #fff 79%, rgba(255, 255, 255, 0) 80%);
    background:         linear-gradient(to bottom, #fff 0%, #fff 79%, rgba(255, 255, 255, 0) 80%);
  }
  .nav-slider .swiper-slide {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .nav-slide-img {
    width: 40px;
  }
}

@media screen and (min-width: 901px) {
  .intro-cost, .intro-commu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 860px;
    height: 532px;
  }
  .intro-cost .intro-effect {
    margin-left: 27px;
  }
  .intro-commu {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
        flex-direction: row-reverse;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
  }
}
@media screen and (max-width: 900px) {
  .intro-cost, .intro-commu {
    padding-bottom: 30px;
  }
  .intro-cost .intro-summary {
    padding: 30px 20px 0;
  }
  .intro-cost .intro-effect {
    margin-top: 40px;
  }
  .intro-cost .intro-effect-list {
    margin-left: 1.2em;
  }
  .intro-commu {
    float: left;
  }
  .intro-commu .intro-summary {
    padding: 30px 20px 0;
  }
  .intro-ttl::after {
    margin-top: 13px;
  }
  .intro-copy {
    margin-top: 13px;
  }
}
@media screen and (min-width: 481px) {
  .intro-cost {
    border-radius: 10px 0 0 10px;
  }
  .intro-commu {
    border-radius: 0 10px 10px 0;
  }
  .sec-inquiry h2 .sp-only {
    display: none;
  }
}
@media screen and (max-width: 900px) and (min-width: 480px) {
  #animation_container_cost {
    margin-left: 90px;
  }
}
@media screen and (min-width: 768px) {
  .security-standard {
    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;
  }
  .security-standard img:not(:first-of-type) {
    margin-left: 70px;
  }
}
@media screen and (max-width: 767px) {
  .nav-slider .swiper-slide {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .nav-slide-ttl {
    display: none;
  }
  .nav-slide-img {
    width: 40px;
  }
  .security-standard {
    margin-top: 20px;
  }
  .security-standard img {
    display: block;
    margin: 0 auto;
  }
  .security-standard img:not(:first-of-type) {
    margin-top: 10px;
  }
  .faq-q {
    padding-left: 45px;
  }
  .faq-q::before {
    left: 10px;
    font-size: 30px;
    font-size: 3rem;
  }
  .faq-a::before {
    left: 10px;
    font-size: 30px;
    font-size: 3rem;
  }
  .tgl-slide::after {
    right: 8px;
    width: 24px;
    height: 24px;
    padding-top: 0;
    font-size: 16px;
    font-size: 1.6rem;
  }
  .tgl-slide.is-open::after {
    -webkit-transform: translateY(-11px) rotate(-180deg);
            transform: translateY(-11px) rotate(-180deg);
  }
  .tgl-slide.is-open + .faq-a {
    padding-left: 45px;
  }
  .tgl-slide:not(.is-open) + .faq-a {
    padding-left: 45px;
  }
}
/*============================================================
aform
============================================================*/
.aform {
  max-width: 720px;
  margin: 0 auto;
}
.aform-header {
  display: none;
}
.aform-content {
  color: #191300;
  font-size: 16px;
  font-size: 1.6rem;
}
.aform-content dl {
  border-bottom: 1px solid #d1e6ff !important;
}
.aform-content dl dt {
  font-weight: normal !important;
}
.aform-content dl dt .required {
  position: static !important;
  padding: 2px 4px !important;
  background: #dc252d !important;
  font-size: 12px !important;
  font-size: 1.2rem !important;
}
input[type="text"], input[type="tel"], input[type="email"], select, textarea {
  border: none;
  border-radius: 5px;
}
.aform-input-example.mail, .aform-content .aform-input-example {
  color: #191300 !important;
}
.aform-name-ul li:nth-of-type(2), .aform-kana-ul li:nth-of-type(2), label.aform-twice-note {
  margin-top: 15px;
}
.aform-content input.aform-name, .aform-content input.aform-kana {
  margin-top: 3px;
}
.aform-content .aform-note {
  padding: 5px 0 !important;
  border-radius: 5px;
  background: #fff !important;
}
.aform-content .wrapper {
  overflow-y: scroll;
  height: 150px;
  padding: 10px;
  color: #161616;
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 150%;
}
.aform-vertical-ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
}
.aform-vertical-ul input {
  position: absolute;
  top: 50%;
  left: 9px;
  margin: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.aform-vertical-ul label {
  display: block;
  width: 100%;
  padding: 10px 10px 10px 30px;
  border: 1px dotted #fff;
  border-radius: 5px;
  -webkit-transition: .2s linear;
          transition: .2s linear;
}
.aform-vertical-ul label:hover {
  background: rgba(255,255,255,.2);
}
.aform-vertical-ul input[type="checkbox"]:checked + label {
  background: rgba(255,255,255,.2);
  color: #161616;
}
/*--- 送信ボタン -------------------*/
.aform-content .submit input {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  min-width: 186px;
  height: 52px;
  border: 3px solid #fff;
  outline: none;
  border-radius: 26px;
  -webkit-box-shadow: none;
          box-shadow: none;
  background: #f26d21;
  text-align: center;
  color: #fff;
  -webkit-transition: opacity .2s linear, background .2s linear;
          transition: opacity .2s linear, background .2s linear;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  -webkit-tap-highlight-color: transparent;
}
.aform-content .submit input:hover {
  background: #f29d6d;
  cursor: pointer;
}
.validate-privacy:hover, .validate-privacy + label:hover {
  cursor: pointer;
}
/*--- エラー -------------------*/
.aform-input.error {
  border: 2px solid #c00;
}
.aform-error.company {
  margin-top: 5px;
}
#name-firstname-error, #kana-firstname-kana-error {
  margin-top: 1px;
}
#hidden00-error {
  margin-top: 5px;
}
@media screen and (min-width: 768px) {
  .sec-inquiry .aform-content dl {
    margin: 20px 0;
    padding: 20px 0;
  }
}
@media screen and (max-width: 767px) {
  .aform-content {
    margin: 0 10px;
  }
  .aform-content .submit input {
    min-width: 220px;
  }
}
/*----------------------------------------
確認画面
----------------------------------------*/
.sec-confirm, .sec-thanks {
  position: relative;
  top: 66px;
  padding: 50px 0;
}
.sec-confirm .aform-note {
  display: none;
}
.sec-confirm .aform-content {
  color: #161616;
}
#aform_confirm_msg {
  margin-top: 50px;
  line-height: 150%;
}
#aform_btn_back {
  opacity: .6;
}
#aform_btn_back:hover {
  opacity: 1;
  background: #f26d21;
}
/*----------------------------------------
お問合せ送信後
----------------------------------------*/
.sec-thanks {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  max-width: 1000px;
  margin: 0 auto;
  padding-right: 10px;
  padding-left: 10px;
}
.sec-thanks p {
  color: #161616;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 150%;
}
@media screen and (min-width: 768px) {
  .sec-thanks h2 .sp-only {
    display: none;
  }
}
.aform-header {
  margin: 1em 0 1em;
  padding: 3px 0;
  border-bottom: 1px solid #ccc;
  font-size: 130%;
  font-weight: bold;
}
.aform-hdln {
  margin: 2em 0 .5em;
  padding: 3px 0;
  border-bottom: 1px dotted #ccc;
  font-size: 120%;
  font-weight: bold;
}
.aform-input.error {
  background: #fdecf1;
}
.aform-content ul, .aform-content li, .aform-content dl p {
  margin: 0;
  padding: 0;
  list-style: none;
}
.aform-content dl {
  margin: .5em 0;
  padding: .5em 0;
}
.aform-content dl dt {
  font-weight: bold;
}
.aform-content dl dd {
  margin: 0 0 .5em;
}
.aform-content dl input, .aform-content dl textarea, .aform-content dl select {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  padding: 5px;
  font-size: 120%;
}
.aform-content dl input[type="radio"], .aform-content dl input[type="checkbox"], .aform-content dl input[type="file"] {
  width: auto;
  padding: 0;
  font-size: inherit;
}
.aform-content ul input, .aform-content dl .aform-calendar {
  width: auto;
}
.aform-calendar {
  width: auto;
  margin-right: 5px;
  vertical-align: middle;
}
.aform-calendar + label {
  margin-right: 5px;
  vertical-align: middle;
}
.aform-content .ui-datepicker-trigger {
  margin-left: 5px;
  vertical-align: text-top;
}
.aform-content input.aform-checkbox, .aform-content input.aform-radio {
  margin-right: 5px;
  vertical-align: middle;
}
.aform-content input.aform-field-option-text {
  margin-left: 5px;
  vertical-align: middle;
}
.aform-content .aform-name-ul li, .aform-content .aform-kana-ul li {
  display: inline-block;
  *display: inline;
  *zoom: 1;
}
.aform-content input.aform-name, .aform-content input.aform-kana {
  margin-right: 5px;
}
.aform-content .aform-horizontal-ul li {
  display: inline-block;
  margin-right: 1.5em;
}
.aform-content ul.aform-payment li {
  margin-bottom: .8em;
}
.aform-content ul.aform-payment .aform-payment-description {
  margin-top: 3px;
  margin-left: 22px;
}
.aform-content ul.aform-payment .aform-payment-description table th {
  padding: 2px 5px 2px 0;
  text-align: left;
  vertical-align: top;
  font-weight: normal;
}
.aform-content ul.aform-payment .aform-payment-description table td {
  padding: 2px 5px 2px 0;
}
.aform-content .aform-validation, .aform-content .aform-input-example {
  margin-bottom: .3em;
  color: #595959;
  font-size: 90%;
  font-weight: normal;
}
.aform-content .aform-note {
  margin-bottom: 1em;
  padding: 5px 8px;
  background: #f3f3f3;
}
.aform-content .aform-twice-note {
  display: block;
}
.aform-content input.require-twice {
  margin-top: 3px;
}

.validation-advice {
  margin: 3px 0 0;
  padding: 5px;
  background-color: #b2cff4;
  color: #d92b00;
  line-height: 150%;
  border-radius: 3px;
  display: inline-block;
}
.aform-content dl.aform-error-list {
  margin-bottom: 20px;
}
.aform-content dl.aform-error-list dt {
  float: none;
  width: auto;
  margin-bottom: 10px;
  padding-left: 16px;
  font-size: 120%;
}
.aform-content dl.aform-error-list dd {
  display: list-item;
  margin-left: 16px;
  padding-left: inherit;
}
.aform-content .aform-button-area {
  margin-top: 20px;
  padding: 15px 20px;
  text-align: center;
}
.aform-content .aform-button-area input {
  margin: 0 6px;
  padding: 2px 16px;
  font-size: 120%;
}
.aform-content p.powerdby {
  margin: 1em 0;
  text-align: right;
  font-size: 70%;
}
.aform-content p.powerdby a {
  padding: 0 5px;
  background: #bad7e4;
  color: #fff;
  text-decoration: none;
}
.aform-content p.powerdby a:hover {
  background: #75aeca;
}
.aform-content .aform-demo {
  margin: 2em 0;
  padding: 5px 10px;
  border: 1px solid #ee7ba0;
  background: #fdecf1;
  text-align: center;
}
.aform-content .aform-demo a {
  margin: 0 5px;
  color: #903;
  font-weight: bold;
}
/*----------------------------------*/
#aform_result {
  margin: 15px auto;
  padding: 10px 15px;
  color: #c00;
  font-size: 110%;
  font-weight: bold;
}
#aform_result a {
  margin: 0 1em;
}
/*----------------------------------
	form-layout
----------------------------------*/
.aform-content dl {
  overflow: hidden;
  border-bottom: 1px dotted #ccc;
}
.aform-content dl dt {
  position: relative;
  float: left;
  width: 30%;
}
.aform-content dl dt .aform-label {
  display: block;
  padding-right: 2em;
}
.en_us .aform-content dl dt .aform-label {
  padding-right: 3.5em;
}
.aform-content dl dd {
  padding-left: 33%;
}
.aform-content .aform-name-ul li, .aform-content .aform-kana-ul li {
  display: block;
  margin-bottom: 5px;
}
.aform-content .aform-name-ul li input, .aform-content .aform-kana-ul li input {
  width: 100%;
}
.ui-datepicker .ui-widget-header {
  color: inherit;
}
@media screen and (max-width: 767px) {
  .aform-content dl dt {
    position: relative;
    float: none;
    width: auto;
  }
  .aform-content dl dd {
    padding-left: 0;
  }
}
.aform-content .aform-button-area {
  margin-top: 20px;
  padding: 15px 20px;
  text-align: center;
}
.aform-content .aform-button-area input {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  min-width: 186px;
  height: 52px;
  margin: 0 6px;
  padding: 2px 16px;
  border: 3px solid #fff;
  outline: none;
  border-radius: 26px;
  -webkit-box-shadow: none;
          box-shadow: none;
  background: #f26d21;
  text-align: center;
  color: #fff;
  font-size: 120%;
  cursor: pointer;
  -webkit-transition: opacity .2s linear, background .2s linear;
          transition: opacity .2s linear, background .2s linear;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  -webkit-tap-highlight-color: transparent;
}
.aform-content .aform-button-area input:hover {
  background: #f29d6d;
}
.aform-content dl dt .aform-required {
  display: inline-block;
  margin-left: 5px;
  padding: 2px 4px;
  border-radius: 3px;
  background: #dc252d;
  vertical-align: text-top;
  color: #fff;
  font-size: 1.2rem;
  line-height: 1;
  font-weight: normal;
}
.aform-content .wrapper .set-center {
  text-align:center;
}
.aform-content .wrapper .text-right {
  text-align:right;
}
.aform-content .wrapper p + p,
.aform-content .wrapper ol + p {
  margin: 1.5em 0 0;
}
.aform-content .wrapper ol {
  padding: 0 0 0 1.25em;
}
.aform-content .wrapper ol li {
  list-style: decimal;
}