@charset "UTF-8";
/*==================================
      レスポンシブ設定 マップ型変数breakpointsを定義
      =================================*/
/*==================================
      # 色、フォントファミリー
      =================================*/
/*==================================
      common(一般) - 全体に共通するスタイル
      =================================*/
@media screen and (max-width: 1020px) {
  .is-pc {
    display: none !important;
  }
}
@media screen and (min-width: 1021px) {
  .is-sp {
    display: none !important;
  }
}
html {
  scroll-behavior: smooth;
}

body,
html {
  overflow-x: hidden;
}

#contact {
  position: relative;
  top: -68.63px;
}
@media screen and (max-width: 1020px) {
  #contact {
    top: -56.48px;
  }
}

body {
  font-size: 16px;
  color: #000;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.7;
  background: #fff;
  min-width: initial;
  padding-top: 68.63px;
}
@media screen and (max-width: 1020px) {
  body {
    padding-top: 56.48px;
  }
}

.inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 40px;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
}
@media screen and (max-width: 1020px) {
  .inner {
    padding: 0 20px;
    max-width: 500px;
    margin: 0 auto;
  }
}

.l-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
}
@media screen and (max-width: 1020px) {
  .l-inner {
    padding: 0 20px;
  }
}

.header-inner {
  margin: 0 auto;
  padding: 0 40px;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
}
@media screen and (max-width: 1020px) {
  .header-inner {
    padding: 0 20px;
  }
}

img {
  width: 100%;
  vertical-align: bottom;
}

a {
  font-family: "Noto Sans JP", sans-serif;
  color: #000;
}

::-webkit-input-placeholder {
  color: rgba(62, 62, 62, 0.5);
}

::-moz-placeholder {
  color: rgba(62, 62, 62, 0.5);
}

:-ms-input-placeholder {
  color: rgba(62, 62, 62, 0.5);
}

::-ms-input-placeholder {
  color: rgba(62, 62, 62, 0.5);
}

::placeholder {
  color: rgba(62, 62, 62, 0.5);
}

input[type=tel],
input[type=text],
input[type=email],
input[type=submit],
select,
textarea {
  -webkit-box-shadow: none;
          box-shadow: none;
  border: 1px solid #000;
  background: #fff;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border-radius: 0;
  color: inherit;
  font-family: inherit;
  font-size: inherit;
  width: 100%;
  padding: 10px;
  margin: 0;
  outline: none;
}

section {
  padding: 80px 0 90px;
}
@media screen and (max-width: 1020px) {
  section {
    padding: 50px 0 50px;
  }
}

.drawer-icon {
  position: fixed;
  top: 21px;
  right: 20px;
  z-index: 300;
  -webkit-transition: -webkit-transform 0.5s ease 0s;
  transition: -webkit-transform 0.5s ease 0s;
  transition: transform 0.5s ease 0s;
  transition: transform 0.5s ease 0s, -webkit-transform 0.5s ease 0s;
}
@media screen and (min-width: 1021px) {
  .drawer-icon {
    display: none;
  }
}
.drawer-icon.is-active .drawer-icon-bar1 {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  top: 8px;
  background: #fff;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.drawer-icon.is-active .drawer-icon-bar2 {
  opacity: 0;
}
.drawer-icon.is-active .drawer-icon-bar3 {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  top: 8px;
  background: #fff;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.drawer-icon-bars {
  width: 25px;
  height: 16px;
  display: block;
  position: relative;
}

.drawer-icon-bar1,
.drawer-icon-bar2,
.drawer-icon-bar3 {
  position: absolute;
  width: 25px;
  height: 2px;
  background: #F35B0C;
  top: 0;
  left: 0;
}

.drawer-icon-bar1 {
  top: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.drawer-icon-bar2 {
  top: 8px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.drawer-icon-bar3 {
  top: 16px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.drawer-content {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  right: 0;
  background: #F35B0C;
  z-index: 250;
  display: none;
  -webkit-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
}
.drawer-content.is-active {
  display: block;
}

.drawer-icon-nav {
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.drawer-icon-nav ul li {
  margin-bottom: 20px;
}
.drawer-icon-nav ul li a {
  display: block;
  color: #ffffff;
}

.drawer-mask {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 220;
  display: none;
}
.drawer-mask.is-active {
  display: block;
}

.header {
  padding: 10px 0;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #fff;
}
.header .flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.header .logo {
  max-width: 200px;
}
@media screen and (max-width: 1020px) {
  .header .logo {
    max-width: 150px;
  }
}

.mv .btn .btn-flex span img {
  vertical-align: middle;
  position: relative;
  top: -2px;
}

.mv {
  width: 100%;
  padding: 120px 0;
  color: #fff;
  position: relative;
  overflow: hidden;
  background: -webkit-gradient(linear, left top, right top, from(#F35B0C), to(#F28E03));
  background: linear-gradient(90deg, #F35B0C 0%, #F28E03 100%);
  background: -webkit-gradient(linear, left top, right top, from(#D80110), to(#F28E03));
  background: linear-gradient(90deg, #D80110 0%, #F28E03 100%);
}
@media screen and (max-width: 1020px) {
  .mv {
    padding: 50px 0;
  }
}
.mv .mv-img {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 42%;
}
@media screen and (max-width: 1020px) {
  .mv .mv-img {
    position: initial;
    width: 80%;
    margin: 0 auto;
    margin-top: 20px;
    position: relative;
    left: -16px;
  }
}
.mv .btn {
  margin-top: 40px;
}
@media screen and (max-width: 1020px) {
  .mv .btn {
    margin-top: 20px;
    text-align: center;
  }
}
.mv .btn .btn-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.mv .btn .btn-flex span {
  width: 30px;
  margin-left: 10px;
}
.mv .btn a {
  background: #fff;
  display: inline-block;
  padding: 15px 40px;
  border-radius: 10px;
  font-size: 20px;
  font-weight: 700;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 1020px) {
  .mv .btn a {
    font-size: 18px;
    padding: 10px 30px;
  }
}
.mv .btn a:hover {
  opacity: 0.6;
}
.mv .btn a span {
  display: block;
}

/* ふわっと光る背景の丸 */
.mv::before,
.mv::after {
  content: "";
  position: absolute;
  opacity: 0.6;
}

.mv::before {
  width: 380px;
  height: 380px;
  background: rgba(255, 255, 255, 0.25);
  top: -120px;
  left: -80px;
}
@media screen and (max-width: 1020px) {
  .mv::before {
    width: 180px;
    height: 180px;
  }
}

.mv::after {
  width: 280px;
  height: 280px;
  background: rgba(255, 255, 255, 0.15);
  bottom: -80px;
  right: -50px;
}
@media screen and (max-width: 1020px) {
  .mv::after {
    width: 120px;
    height: 120px;
  }
}

.mv .inner {
  position: relative;
  z-index: 5;
}

.mv .main-title {
  font-size: 52px;
  font-weight: 800;
  line-height: 1.5;
  margin-bottom: 24px;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 1020px) {
  .mv .main-title {
    font-size: 24px;
  }
}
.mv .lead {
  font-size: 22px;
  line-height: 1.7;
  opacity: 1;
  font-weight: 500;
}
@media screen and (max-width: 1020px) {
  .mv .lead {
    font-size: 16px;
  }
}

/* スマホ対応 */
.mv .shape-circle {
  position: absolute;
  right: 0px;
  bottom: 80px;
  width: 160px;
  height: 160px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
}

.mv .shape-line {
  position: absolute;
  right: 20px;
  top: 80px;
  width: 220px;
  height: 2px;
  background: rgba(255, 255, 255, 0.25);
  -webkit-transform: rotate(20deg);
          transform: rotate(20deg);
}

/* ==========================
   右側ビジュアル全体
========================== */
.mv-visual {
  position: absolute;
  right: 0%;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 420px;
  height: 420px;
  pointer-events: none;
}

/* ==========================
   回転する円グラフリング
========================== */
.circle-chart {
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  border: 12px solid rgba(255, 255, 255, 0.18);
  border-top-color: rgba(255, 255, 255, 0.6);
  border-right-color: rgba(255, 255, 255, 0.45);
  border-bottom-color: rgba(255, 255, 255, 0.1);
  top: 40px;
  left: 60px;
  -webkit-animation: ringRotate 18s linear infinite;
          animation: ringRotate 18s linear infinite;
  -webkit-filter: blur(0.4px);
          filter: blur(0.4px);
}

@-webkit-keyframes ringRotate {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes ringRotate {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
/* ==========================
   建物を 3棟に増やして並べる
========================== */
.building-group {
  position: absolute;
  bottom: 40px;
  left: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 14px;
}

.building {
  width: 55px;
  height: 80px;
  border: 2px solid rgba(255, 255, 255, 0.55);
  border-radius: 6px;
  position: relative;
  backdrop-filter: blur(6px);
  -webkit-animation: floatUpDown 4s ease-in-out infinite;
          animation: floatUpDown 4s ease-in-out infinite;
}

.building::before,
.building::after {
  content: "";
  position: absolute;
  left: 20%;
  width: 60%;
  height: 2px;
  background: rgba(255, 255, 255, 0.45);
}

.building::before {
  top: 26px;
}

.building::after {
  top: 48px;
}

/* 建物ごとに少し揺れのタイミングをずらす */
.b1 {
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
  height: 70px;
}

.b2 {
  -webkit-animation-delay: 0.3s;
          animation-delay: 0.3s;
  height: 85px;
}

.b3 {
  -webkit-animation-delay: 0.6s;
          animation-delay: 0.6s;
  height: 95px;
}

@-webkit-keyframes floatUpDown {
  0%, 100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(-12px);
            transform: translateY(-12px);
  }
}

@keyframes floatUpDown {
  0%, 100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(-12px);
            transform: translateY(-12px);
  }
}
/* ==========================
   数値ブロック（入居率など）
========================== */
.number-block {
  position: absolute;
  right: 0px;
  bottom: 10px;
  padding: 14px 20px;
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.13);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

/* ===== モダンな抽象ビル群 ===== */
.building-modern {
  position: absolute;
  bottom: 40px;
  left: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 14px;
}

.tower {
  width: 26px;
  border-radius: 4px;
  border: 2px solid rgba(255, 255, 255, 0.45);
  position: relative;
  -webkit-animation: floatUpDown 5s ease-in-out infinite;
          animation: floatUpDown 5s ease-in-out infinite;
}

/* 高さ違いでリズムを作る */
.t1 {
  height: 90px;
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
}

.t2 {
  height: 110px;
  -webkit-animation-delay: 0.3s;
          animation-delay: 0.3s;
}

.t3 {
  height: 75px;
  -webkit-animation-delay: 0.6s;
          animation-delay: 0.6s;
}

/* 窓（線だけ・ミニマル） */
.tower::before,
.tower::after {
  content: "";
  position: absolute;
  left: 4px;
  right: 4px;
  height: 1.8px;
  background: rgba(255, 255, 255, 0.35);
  border-radius: 3px;
}

.tower::before {
  top: 30%;
}

.tower::after {
  top: 60%;
}

/* ふわふわアニメーション */
@keyframes floatUpDown {
  0%, 100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px);
  }
}
/* ==========================
   MV右側：カードローン審査UI
========================== */
.loan-ui {
  position: absolute;
  right: 6%;
  top: 52%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 290px;
  padding: 22px 24px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.13);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: #fff;
  -webkit-box-shadow: 0 12px 40px rgba(0, 0, 0, 0.28);
          box-shadow: 0 12px 40px rgba(0, 0, 0, 0.28);
  -webkit-animation: floatCard 6s ease-in-out infinite;
          animation: floatCard 6s ease-in-out infinite;
}

@-webkit-keyframes floatCard {
  0%, 100% {
    -webkit-transform: translateY(-50%) translateX(0);
            transform: translateY(-50%) translateX(0);
  }
  50% {
    -webkit-transform: translateY(-54%) translateX(4px);
            transform: translateY(-54%) translateX(4px);
  }
}

@keyframes floatCard {
  0%, 100% {
    -webkit-transform: translateY(-50%) translateX(0);
            transform: translateY(-50%) translateX(0);
  }
  50% {
    -webkit-transform: translateY(-54%) translateX(4px);
            transform: translateY(-54%) translateX(4px);
  }
}
/* ==========================
   STEPナビゲーション
========================== */
.loan-steps {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 18px;
}

.step {
  text-align: center;
  font-size: 11px;
  opacity: 0.5;
  line-height: 1.3;
}

.step span {
  font-size: 10px;
}

.step.active {
  opacity: 1;
  font-weight: 700;
  color: #fff;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
}

/* ==========================
   借入枠 ゲージバー
========================== */
.loan-gauge {
  margin-top: 8px;
  margin-bottom: 18px;
  width: 100%;
  height: 8px;
  background: rgba(255, 255, 255, 0.18);
  border-radius: 6px;
  overflow: hidden;
  position: relative;
}

.loan-gauge .bar {
  position: absolute;
  width: 0;
  height: 100%;
  background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0.6666666667)), color-stop(50%, #ffffff), to(rgba(255, 255, 255, 0.8)));
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.6666666667) 0%, #ffffff 50%, rgba(255, 255, 255, 0.8) 100%);
  -webkit-animation: gaugeGrow 2.4s ease-out forwards;
          animation: gaugeGrow 2.4s ease-out forwards;
}

@-webkit-keyframes gaugeGrow {
  0% {
    width: 0;
  }
  100% {
    width: 76%;
  }
}

@keyframes gaugeGrow {
  0% {
    width: 0;
  }
  100% {
    width: 76%;
  }
}
/* ==========================
   借入可能額
========================== */
.loan-amount-label {
  font-size: 12px;
  opacity: 0.8;
}

.loan-amount {
  margin-top: 2px;
  font-size: 24px;
  font-weight: 800;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
}

.header {
  z-index: 100;
}
.header .header-btn a {
  background: -webkit-gradient(linear, left top, right top, from(#D80110), to(#F28E03));
  background: linear-gradient(90deg, #D80110 0%, #F28E03 100%);
  padding: 10px 60px;
  border-radius: 8px;
  display: block;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 2px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.header .header-btn a:hover {
  opacity: 0.6;
}
@media screen and (max-width: 1020px) {
  .header .header-btn a {
    font-size: 14px;
    padding: 10px;
    letter-spacing: 0px;
  }
}
.header .header-btn a .btn-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.header .header-btn a .btn-flex span {
  width: 30px;
}

.section-title {
  text-align: center;
  font-size: 30px;
  font-weight: 700;
  position: relative;
  margin-bottom: 70px;
}
@media screen and (max-width: 1020px) {
  .section-title {
    margin-bottom: 40px;
    font-size: 20px;
  }
}
.section-title::after {
  position: absolute;
  bottom: -20px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  height: 2px;
  width: 100px;
  background: #F35B0C;
  content: "";
}
@media screen and (max-width: 1020px) {
  .section-title::after {
    bottom: -10px;
  }
}
.section-title span {
  color: #D80110;
}

.top1 .text1 {
  text-align: center;
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 50px;
}
@media screen and (max-width: 1020px) {
  .top1 .text1 {
    font-size: 14px;
    margin-bottom: 30px;
  }
}
.top1 .text2 {
  font-size: 24px;
  font-weight: 500;
  text-align: center;
  padding: 20px;
  border-radius: 10px;
  border: 2px solid #F35B0C;
}
@media screen and (max-width: 1020px) {
  .top1 .text2 {
    padding: 10px;
    font-size: 15px;
  }
}

/* ラッパー */
/* 円グラフ本体 */
.pie-chart {
  position: relative;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  margin: 0 auto;
  background: conic-gradient(#F35B0C 0% 72%, #FFB36F 72% 87%, #FFD8AC 87% 95%, #E5E5E5 95% 100%);
}
@media screen and (max-width: 1020px) {
  .pie-chart {
    width: 280px;
    height: 280px;
  }
}

/* 中央の白丸（くり抜く） */
.pie-chart::after {
  content: "";
  position: absolute;
  inset: 58px;
  background: #fff;
  border-radius: 50%;
}

/* 中央テキスト */
.pie-center {
  position: absolute;
  inset: 0;
  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;
  z-index: 1;
  text-align: center;
  font-size: 16px;
  color: #555;
  font-weight: 500;
}

/* 凡例 */
.pie-legend {
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 14px;
  max-width: 130px;
  margin-left: auto;
  white-space: nowrap;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  display: inline-block;
  margin-right: 6px;
}

.dot-1 {
  background: #F35B0C;
}

.dot-2 {
  background: #FFB36F;
}

.dot-3 {
  background: #FFD8AC;
}

.dot-4 {
  background: #E5E5E5;
}

.top2 {
  background: #F5F7FA;
}
.top2 .attention {
  font-size: 14px;
  text-align: center;
  margin-bottom: 60px;
  margin-top: -20px;
}
@media screen and (max-width: 1020px) {
  .top2 .attention {
    font-size: 12px;
    margin-bottom: 30px;
  }
}
.top2 .flex {
  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;
}
@media screen and (max-width: 1020px) {
  .top2 .flex {
    display: block;
  }
}
.top2 .flex .left {
  width: 44%;
}
@media screen and (max-width: 1020px) {
  .top2 .flex .left {
    width: 100%;
    margin-bottom: 20px;
  }
}
.top2 .flex .right {
  width: 51%;
}
@media screen and (max-width: 1020px) {
  .top2 .flex .right {
    width: 100%;
  }
}
.top2 .text1 {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 20px;
}
@media screen and (max-width: 1020px) {
  .top2 .text1 {
    font-size: 14px;
    margin-bottom: 20px;
  }
}
.top2 .text1 span {
  color: #F35B0C;
  font-size: 120%;
  font-weight: 700;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(60%, transparent), color-stop(60%, #ff6));
  background: linear-gradient(transparent 60%, #ff6 60%);
}
.top2 .text2 {
  font-size: 20px;
  font-weight: 500;
  padding: 20px;
  border-radius: 10px;
  border: 2px solid #F35B0C;
  background: #fff;
}
@media screen and (max-width: 1020px) {
  .top2 .text2 {
    padding: 10px;
    font-size: 14px;
  }
}

.top3 .flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 1020px) {
  .top3 .flex {
    display: block;
  }
}
.top3 .flex .left {
  width: 47%;
  border: 2px solid #F35B0C;
}
@media screen and (max-width: 1020px) {
  .top3 .flex .left {
    width: 100%;
    margin-bottom: 20px;
  }
}
.top3 .flex .left h3 {
  color: #fff;
  background: #F35B0C;
}
.top3 .flex .right {
  width: 47%;
  border: 2px solid #F35B0C;
}
@media screen and (max-width: 1020px) {
  .top3 .flex .right {
    width: 100%;
  }
}
.top3 .flex .right h3 {
  color: #F35B0C;
  background: #fff;
}
.top3 .flex h3 {
  text-align: center;
  font-size: 22px;
  font-weight: 700;
  padding: 10px 0;
  border-bottom: 2px solid #F35B0C;
}
@media screen and (max-width: 1020px) {
  .top3 .flex h3 {
    font-size: 18px;
    padding: 5px 0;
  }
}
.top3 .flex ul {
  padding: 20px;
}
.top3 .flex ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 20px;
  margin-bottom: 5px;
  font-weight: 500;
}
@media screen and (max-width: 1020px) {
  .top3 .flex ul li {
    font-size: 16px;
  }
}
.top3 .flex ul li:last-child {
  margin-bottom: 0;
}
.top3 .flex ul li span {
  margin-right: 5px;
  color: #F35B0C;
}
.top3 .last-text {
  text-align: center;
  margin-top: 50px;
}
@media screen and (max-width: 1020px) {
  .top3 .last-text {
    margin-top: 30px;
  }
}
.top3 .last-text .wrap {
  display: inline;
  font-size: 24px;
  font-weight: 700;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(60%, transparent), color-stop(60%, #ff6));
  background: linear-gradient(transparent 60%, #ff6 60%);
}
@media screen and (max-width: 1020px) {
  .top3 .last-text .wrap {
    font-size: 18px;
  }
}

.top4 {
  background: #F5F7FA;
}
.top4 ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 1020px) {
  .top4 ul {
    display: block;
  }
}
.top4 ul li {
  width: 31%;
  background: #fff;
  padding: 30px 20px;
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
          box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
  border-radius: 8px;
}
@media screen and (max-width: 1020px) {
  .top4 ul li {
    width: 100%;
    margin-bottom: 20px;
  }
  .top4 ul li:last-child {
    margin-bottom: 0;
  }
}
.top4 ul li .icon {
  width: 40%;
  margin: 0 auto;
  margin-bottom: 20px;
  height: 100px;
  position: relative;
}
@media screen and (max-width: 1020px) {
  .top4 ul li .icon {
    height: auto;
  }
}
@media screen and (min-width: 1021px) {
  .top4 ul li .icon img {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
}
.top4 ul li .icon2 {
  width: 30%;
}
.top4 ul li .icon3 {
  width: 45%;
}
@media screen and (max-width: 1020px) {
  .top4 ul li .icon3 {
    position: relative;
    left: 7%;
  }
}
.top4 ul li h3 {
  text-align: center;
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 15px;
}
.top4 ul li p {
  font-size: 16px;
  text-align: center;
}
@media screen and (max-width: 1020px) {
  .top4 ul li p {
    font-size: 14px;
    text-align: left;
  }
}

.top5 {
  background: -webkit-gradient(linear, left top, right top, from(#D80110), to(#F28E03));
  background: linear-gradient(90deg, #D80110 0%, #F28E03 100%);
  color: #fff;
}
.top5 .section-title::after {
  background: #fff;
}
.top5 ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 40px;
}
@media screen and (max-width: 1020px) {
  .top5 ul {
    margin-bottom: 20px;
  }
}
.top5 ul li {
  background: #fff;
  color: #F35B0C;
  font-size: 36px;
  font-weight: 700;
  text-align: center;
  line-height: 1.4;
  padding: 20px 0;
}
@media screen and (max-width: 1020px) {
  .top5 ul li {
    font-size: 20px;
  }
}
.top5 ul li span {
  display: block;
  font-size: 20px;
}
@media screen and (max-width: 1020px) {
  .top5 ul li span {
    font-size: 16px;
  }
}
@media screen and (min-width: 1021px) {
  .top5 ul li {
    width: calc(33.333% - 13.3333333333px);
    margin-right: 20px;
  }
  .top5 ul li:nth-child(3n) {
    margin-right: 0;
  }
  .top5 ul li:nth-child(n+4) {
    margin-top: 20px;
  }
}
@media screen and (max-width: 1020px) {
  .top5 ul li {
    width: calc(50% - 10px);
    margin-right: 20px;
  }
  .top5 ul li:nth-child(2n) {
    margin-right: 0;
  }
  .top5 ul li:nth-child(n+3) {
    margin-top: 20px;
  }
}
.top5 .text1 {
  text-align: center;
  font-weight: 500;
  font-size: 20px;
}
@media screen and (max-width: 1020px) {
  .top5 .text1 {
    font-size: 14px;
    text-align: left;
  }
}

.footer {
  background: #808080;
  padding: 30px 0;
}
.footer .copyright {
  color: #fff;
  text-align: center;
  font-size: 14px;
}
@media screen and (max-width: 1020px) {
  .footer .copyright {
    font-size: 10px;
  }
}

.contact .lead {
  text-align: center;
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 50px;
}
@media screen and (max-width: 1020px) {
  .contact .lead {
    font-size: 16px;
    margin-bottom: 30px;
  }
}
.contact .contact-wrap {
  max-width: 700px;
  margin: 0 auto;
}
.contact h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 20px;
  margin-top: 40px;
  border-left: 3px solid #F35B0C;
  padding-left: 7px;
}
@media screen and (max-width: 1020px) {
  .contact h3 {
    font-size: 18px;
  }
}
.contact .row {
  margin-bottom: 20px;
}
@media screen and (max-width: 1020px) {
  .contact .row {
    margin-bottom: 10px;
  }
}
.contact .row .dt {
  margin-bottom: 10px;
}
.contact .row .dt .required {
  background: #F35B0C;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  padding: 3px 10px;
  margin-left: 10px;
}
.contact .submit-row {
  margin-top: 60px;
  text-align: center;
}
@media screen and (max-width: 1020px) {
  .contact .submit-row {
    margin-top: 30px;
  }
}
.contact .submit-row input {
  background: #000;
  color: #fff;
  max-width: 300px;
  padding: 15px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  cursor: pointer;
}
.contact .submit-row input:hover {
  opacity: 0.6;
}

.dd-radio input[type=radio] {
  position: absolute;
  left: -1000%;
  opacity: 0;
}
.dd-radio label {
  margin-right: 20px;
  margin-bottom: 10px;
}
.dd-radio span {
  padding-left: 23px;
  position: relative;
  white-space: nowrap;
}
.dd-radio span::before {
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  border: 1px solid #F35B0C;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  content: "";
}
.dd-radio span::after {
  position: absolute;
  left: 2.5px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  border: 1px solid #F35B0C;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  content: "";
  background: #F35B0C;
  opacity: 0;
}
.dd-radio input[type=radio]:checked + span::after {
  opacity: 1;
}

.dd-checkbox input[type=checkbox] {
  position: absolute;
  left: -1000%;
  opacity: 0;
}
.dd-checkbox label {
  margin-right: 20px;
  margin-bottom: 10px;
}
.dd-checkbox span {
  padding-left: 23px;
  position: relative;
  white-space: nowrap;
}
.dd-checkbox span::before {
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  border: 1px solid #F35B0C;
  width: 15px;
  height: 15px;
  content: "";
}
.dd-checkbox span::after {
  position: absolute;
  left: 1.5px;
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(135deg);
          transform: translateY(-50%) rotate(135deg);
  border-right: 4px solid #F35B0C;
  border-top: 4px solid #F35B0C;
  width: 14px;
  height: 3px;
  content: "";
  opacity: 0;
}
.dd-checkbox input[type=checkbox]:checked + span::after {
  opacity: 1;
}

textarea {
  height: 150px;
  resize: none;
}

.header .logo {
  font-size: 24px;
  font-weight: 700;
  max-width: initial;
}
@media screen and (max-width: 1020px) {
  .header .logo {
    font-size: 20px;
  }
}

.mv .main-title span {
  color: yellow;
}

.mv .box {
  margin-top: 40px;
  background: #fff;
  padding: 20px;
  color: #000;
  display: inline-block;
}
.mv .box .text {
  font-weight: 600;
  margin-bottom: 15px;
}
.mv .box li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: 600;
  color: #F35B0C;
  font-size: 18px;
  margin-bottom: 7px;
}
@media screen and (max-width: 1020px) {
  .mv .box li {
    font-size: 15px;
  }
}
.mv .box li:last-child {
  margin-bottom: 0;
}
.mv .box li span {
  margin-right: 6px;
}

.mv .btn a {
  background: #000;
  color: #fff;
}

@media screen and (min-width: 1021px) {
  .mv .mv-img {
    top: 39%;
  }
  .mv .main-title {
    font-size: 42px;
    text-align: center;
  }
  .mv .lead {
    text-align: center;
  }
  .mv .shape-circle {
    position: absolute;
    right: -54px;
    bottom: -23px;
    width: 160px;
    height: 160px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
  }
}
@media screen and (max-width: 1020px) {
  .mv .mv-img {
    left: 0;
    width: 100%;
  }
}
.s-top1 {
  background: #fff;
}
.s-top1 .text {
  margin-top: 50px;
  text-align: center;
  font-size: 20px;
  font-weight: 500;
}
@media screen and (max-width: 1020px) {
  .s-top1 .text {
    margin-top: 20px;
    font-size: 14px;
  }
}

.s-top2 {
  background: #F5F7FA;
}
.s-top2 .flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 1020px) {
  .s-top2 .flex {
    display: block;
  }
}
.s-top2 .flex .contents {
  width: 51%;
}
@media screen and (max-width: 1020px) {
  .s-top2 .flex .contents {
    width: 100%;
    margin-bottom: 15px;
  }
}
.s-top2 .flex .contents .text1 {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 20px;
}
@media screen and (max-width: 1020px) {
  .s-top2 .flex .contents .text1 {
    font-size: 14px;
  }
}
.s-top2 .flex .img {
  width: 46%;
}
@media screen and (max-width: 1020px) {
  .s-top2 .flex .img {
    width: 100%;
  }
}
.s-top2 ul {
  margin-bottom: 20px;
}
.s-top2 ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 10px;
  font-size: 18px;
  font-weight: 500;
  color: #F35B0C;
}
@media screen and (max-width: 1020px) {
  .s-top2 ul li {
    font-size: 14px;
    margin-bottom: 5px;
  }
}
.s-top2 ul li span {
  display: inline-block;
  margin-right: 5px;
}
.s-top2 .box {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  font-size: 18px;
  font-weight: 500;
  border: 1px solid #F35B0C;
}
@media screen and (max-width: 1020px) {
  .s-top2 .box {
    font-size: 14px;
    padding: 15px;
  }
}

.s-top3 {
  background: #fff;
}
@media screen and (min-width: 1021px) {
  .s-top3 ul li {
    width: 31.5%;
  }
}
.s-top3 ul li .num {
  color: #F35B0C;
  font-weight: 700;
  text-align: center;
  font-size: 30px;
  text-align: center;
  color: #F35B0C;
  margin: 0 auto 15px;
  position: relative;
}
@media screen and (max-width: 1020px) {
  .s-top3 ul li .num {
    font-size: 24px;
  }
}
.s-top3 .text {
  margin-top: 50px;
  text-align: center;
  font-size: 20px;
  font-weight: 500;
}
@media screen and (max-width: 1020px) {
  .s-top3 .text {
    margin-top: 20px;
    font-size: 14px;
    text-align: left;
  }
}

.s-top4 ul li .icon1 {
  width: 45%;
}
.s-top4 ul li .icon2 {
  width: 40%;
}
.s-top4 ul li .icon3 {
  width: 35%;
  left: 0;
}

.case .text1 {
  padding: 10px;
  background: #F35B0C;
  color: #fff;
  font-weight: 700;
  margin-bottom: 10px;
}
.case .text2 {
  margin-bottom: 10px;
  font-weight: 500;
}
.case .text3 {
  padding-left: 7px;
  border-left: 4px solid #11114b;
  font-weight: 500;
}

.mv .lead {
  margin-bottom: 30px;
}

.company li {
  position: relative;
}
.company .small {
  font-size: 35%;
  font-weight: 400;
  position: absolute;
  bottom: 7px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  text-align: center;
}
@media screen and (max-width: 1020px) {
  .company ul li {
    width: 100%;
    margin-right: 0;
    margin-top: 10px !important;
    font-size: 29px;
  }
}

.about {
  background: #F5F7FA;
}
.about .box {
  background: #fff;
  border: 2px solid #11114b;
  padding: 30px;
  font-size: 20px;
  font-weight: 500;
  text-align: center;
}
@media screen and (max-width: 1020px) {
  .about .box {
    padding: 20px;
    font-size: 14px;
    text-align: left;
  }
}

.span11 {
  color: #F35B0C;
  font-weight: 700;
}

.qa {
  background: #F5F7FA;
}
.qa .row {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 40px;
  padding: 20px;
  -webkit-box-shadow: 0 epx rgba(0, 0, 0, 0.2);
          box-shadow: 0 epx rgba(0, 0, 0, 0.2);
  background: #fff;
  border-radius: 10px;
}
@media screen and (max-width: 1020px) {
  .qa .row {
    margin-bottom: 20px;
  }
}
.qa .row:last-child {
  margin-bottom: 0;
}
.qa .row .dt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 18px;
  font-weight: 700;
  color: #F35B0C;
  margin-bottom: 8px;
}
@media screen and (max-width: 1020px) {
  .qa .row .dt {
    font-size: 16px;
  }
}
.qa .row .dd {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 18px;
  font-weight: 500;
}
@media screen and (max-width: 1020px) {
  .qa .row .dd {
    font-size: 14px;
  }
}

.s-top3 ul li p {
  text-align: left;
}

.link33 {
  text-decoration: underline;
  color: #F35B0C;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  display: inline-block;
  font-weight: 500;
}
.link33:hover {
  opacity: 0.6;
}

.case {
  background: #F5F7FA;
}
.case .img {
  height: 150px;
  text-align: center;
  margin-bottom: 10px;
}
.case .img img {
  height: 100%;
  width: auto;
}

.top4 ul li .icon {
  height: 130px !important;
  text-align: center;
  margin-bottom: 10px;
  width: 100% !important;
}
.top4 ul li .icon .wrap {
  height: 100%;
}
.top4 ul li .icon img {
  height: 100% !important;
  width: auto !important;
}

.top4 ul li .icon {
  width: 100% !important;
  left: 0 !important;
}

@media screen and (max-width: 1020px) {
  .top5 ul {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .top5 ul li:last-child {
    margin-right: 0;
  }
}
.span11 {
  color: #2a6fd7;
}

@media screen and (max-width: 1020px) {
  .case .text2 {
    font-size: 14px;
  }
  .case .text3 {
    font-size: 14px;
  }
  .flow ul li p {
    font-size: 14px;
  }
}