@charset "UTF-8";
html {
  font-size: 16px;
}

body {
  font-family: "Noto Sans TC", "Microsoft Jhenghei", "微軟正黑", sans-serif;
  color: #222;
}

a {
  color: inherit;
}

.fix_aside {
  position: fixed;
  z-index: 99;
  right: 1rem;
  bottom: 1rem;
  -webkit-transform: translateX(150%);
          transform: translateX(150%);
  -webkit-transition: -webkit-transform 600ms;
  transition: -webkit-transform 600ms;
  transition: transform 600ms;
  transition: transform 600ms, -webkit-transform 600ms;
}
.fix_aside.is_active {
  -webkit-transform: translateX(0%);
          transform: translateX(0%);
}
.fix_aside .fx_item {
  position: relative;
  display: block;
  border-radius: 0.5em;
  margin: 0.5em 0;
  width: 4em;
  height: 4em;
  background: #fff linear-gradient(120deg, #fff, #ddd);
  font-size: 0.95rem;
  cursor: pointer;
  -webkit-box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.19);
          box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.19);
  -webkit-transition: -webkit-transform 240ms, -webkit-box-shadow 240ms;
  transition: -webkit-transform 240ms, -webkit-box-shadow 240ms;
  transition: transform 240ms, box-shadow 240ms;
  transition: transform 240ms, box-shadow 240ms, -webkit-transform 240ms, -webkit-box-shadow 240ms;
}
.fix_aside .fx_item.is_primary {
  background: #e69112 -webkit-gradient(linear, left top, left bottom, from(#f5ab26), to(#e69112));
  background: #e69112 linear-gradient(#f5ab26, #e69112);
  color: #fff;
}
.fix_aside .fx_item:hover {
  -webkit-transform: translateY(-3px);
          transform: translateY(-3px);
  -webkit-box-shadow: 0 4px 5px 0 rgba(0, 0, 0, 0.19);
          box-shadow: 0 4px 5px 0 rgba(0, 0, 0, 0.19);
}
.fix_aside .fx_item .in_wrap {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.fix_aside .fx_item .in_wrap.txt {
  text-align: center;
  line-height: 1.3;
}
.fix_aside .fx_item .in_wrap.ic {
  width: 100%;
  height: 100%;
  padding: 0.6em;
}
.fix_aside .fx_item .in_wrap .ic_top {
  width: 100%;
  padding-top: 100%;
  background: url("img/arrow_top.png") center/contain no-repeat;
}

.g_header {
  background-color: #fff;
  -webkit-box-shadow: 0 1px 5px 0 rgba(0, 0, 0, 0.15);
          box-shadow: 0 1px 5px 0 rgba(0, 0, 0, 0.15);
}
.g_header .header_wrap {
  position: relative;
  padding: 0.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.g_header .header_logo {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 240px;
          flex: 0 0 240px;
}
.g_header .logo_holder {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 240px;
          flex: 0 1 240px;
}
.g_header .nav_area {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 100%;
          flex: 1 1 100%;
  position: relative;
  z-index: 3;
}
.g_header .nav_cnt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.g_header .nav_item {
  padding: 0.75rem 1rem;
  font-size: 1.125em;
  line-height: 1;
  font-weight: normal;
}
.g_header .nav_link {
  font-weight: 500;
}
.g_header .nav_link:hover {
  color: #db5419;
  text-decoration: none;
}

.g_kv {
  position: relative;
  margin-bottom: 20px;
}
.g_kv .cta_cnt {
  position: absolute;
  left: 0%;
  bottom: 8%;
  width: 100%;
  text-align: center;
}
.g_kv .cta_cnt .bttn {
  display: inline-block;
  border-radius: 3rem;
  padding: 4px;
  background-color: #fff;
  font-size: 2rem;
  line-height: 1;
  color: #0d1f86;
  -webkit-box-shadow: 0 5px 15px rgba(13, 31, 134, 0.5);
          box-shadow: 0 5px 15px rgba(13, 31, 134, 0.5);
}
.g_kv .cta_cnt .bttn span {
  display: block;
  border-radius: 3rem;
  white-space: nowrap;
  background-color: #0d1f86;
  color: #fff;
  padding: 1.375rem 5rem 1.5rem;
}
.g_kv .cta_cnt .bttn:hover {
  text-decoration: none;
}
.g_kv .cta_cnt .bttn:hover span {
  background-color: #db5419;
}

.g_main {
  position: relative;
  z-index: 2;
}
.g_main .sc_title {
  position: relative;
  line-height: 1;
  margin-bottom: 2em;
}
.g_main .sc_title .tit {
  position: relative;
  display: inline-block;
}
.g_main .sc_title .tit::after {
  content: "";
  position: absolute;
  left: 0.5rem;
  bottom: -0.5rem;
  width: 110%;
  height: 1rem;
  border-radius: 2px;
  background-color: #f5ab26;
  background: -webkit-gradient(linear, left top, right top, from(rgba(247, 191, 20, 0.1)), to(rgba(247, 191, 20, 0.5)));
  background: linear-gradient(90deg, rgba(247, 191, 20, 0.1), rgba(247, 191, 20, 0.5));
}
.g_main .sc_title .tit div {
  position: relative;
  z-index: 2;
  font-size: 2rem;
  font-weight: 400;
  color: #db5419;
}
.g_main .sub_title .tit {
  position: relative;
  display: inline-block;
  font-size: 1.25rem;
  font-weight: 400;
  color: #db5419;
  line-height: 1;
  margin-bottom: 1em;
}
.g_main .sub_title .tit::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  border-radius: 1px;
  background-color: #f5ab26;
  background: -webkit-gradient(linear, left top, right top, from(rgba(247, 191, 20, 0.1)), to(rgba(247, 191, 20, 0.5)));
  background: linear-gradient(90deg, rgba(247, 191, 20, 0.1), rgba(247, 191, 20, 0.5));
}

.sc_intro {
  padding-top: 4rem;
  padding-bottom: 3rem;
}

.intro_cnt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.intro_cnt .text {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 65%;
          flex: 0 1 65%;
  padding-right: 30px;
}
.intro_cnt .text .l1 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #db5419;
  margin-bottom: 1rem;
  line-height: 1;
}
.intro_cnt .text .p {
  margin-bottom: 0.75rem;
  font-size: 1.25rem;
}
.intro_cnt .text .p:last-child {
  margin-bottom: 0;
}
.intro_cnt .text .p strong {
  color: #e69112;
}
.intro_cnt .text .ht1,
.intro_cnt .text .ht2 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #0d1f86;
}
.intro_cnt .for {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 35%;
          flex: 0 0 35%;
  padding: 1.5rem;
  background-color: rgba(247, 191, 20, 0.1);
}
.intro_cnt .for .sub_title {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}
.intro_cnt .for .list {
  margin-top: 0.75rem;
}
.intro_cnt .for .list div {
  margin-bottom: 0.25rem;
}
.intro_cnt .for .list ul {
  padding-left: 1.6rem;
  margin-bottom: 0;
}
.intro_cnt .for .list li {
  padding: 4px 0;
  line-height: 1.2;
}

.video_cnt {
  margin-top: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.video_cnt .video {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 65%;
          flex: 0 0 65%;
  padding-right: 30px;
}
.video_cnt .video .vd_wrap {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  border-radius: 10px;
  overflow: hidden;
}
.video_cnt .video .vd_wrap .vd {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.video_cnt .text {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 50%;
          flex: 0 1 50%;
}
.video_cnt .text .tit {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
  margin-top: 1rem;
  margin-bottom: 0.5rem;
  color: #db5419;
}
.video_cnt .text .p {
  font-size: 1.25rem;
}

.sc_resource {
  padding-top: 2rem;
  padding-bottom: 3rem;
}

.res_items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.res_item {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 33.33%;
          flex: 0 0 33.33%;
  padding: 0 1rem 2rem;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.res_item .name {
  margin-top: 0.5rem;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
  color: #0d1f86;
  text-align: center;
}
.res_item .p {
  font-size: 1.125rem;
  margin-top: 0.5rem;
  line-height: 1.4;
}

.application_cnt {
  padding-top: 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.application_cnt .app_tit {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
  text-align: center;
  margin-bottom: 0.5rem;
  color: #e69112;
  font-size: 1.125rem;
}

.application_table {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 720px;
          flex: 0 0 720px;
}

.application_items {
  border: 2px solid #000;
}

.appl_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-bottom: 1px solid #000;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  line-height: 1.2;
}
.appl_item .left {
  padding: 0.5rem 1rem;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 32%;
          flex: 0 0 32%;
  text-align: center;
}
.appl_item .left .tit span {
  color: #7145e2;
}
.appl_item .left .tit div {
  margin-top: 0.25rem;
  font-size: 1.25rem;
  font-weight: 500;
}
.appl_item .right {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 70%;
          flex: 0 1 70%;
  border-left: 1px solid #000;
}
.appl_item .right .th,
.appl_item .right .item {
  padding: 0.75rem 1rem;
}
.appl_item .right .item {
  position: relative;
}
.appl_item .right .item .name {
  line-height: 1.3;
  font-size: 1.25rem;
  color: #0d1f86;
}
.appl_item .right .item .name span {
  color: #0b81db;
}
.appl_item .right .item .name a {
  text-decoration: underline;
}
.appl_item .right .item .name a:hover {
  color: #e69112;
}
.appl_item .right .item .tip {
  margin-top: 0.125rem;
  font-size: 1.125rem;
}
.appl_item .right .item .tip.sub_c {
  color: #e50012;
}
.appl_item .right .item .full {
  position: absolute;
  right: 1rem;
  top: 50%;
  padding: 4px 10px 6px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-color: #e50012;
  color: #fff;
  border-radius: 4px;
}
.appl_item .right .item + .item {
  border-top: 1px solid #ddd;
}
.appl_item .right .item.w_full {
  background-color: #eee;
}
.appl_item .right .item.w_full .name,
.appl_item .right .item.w_full .tip {
  opacity: 0.8;
}
.appl_item:last-child {
  border-bottom-width: 0;
}
.appl_item.appl_tit {
  background: -webkit-gradient(linear, left top, right top, from(#f7bf14), to(#e69112));
  background: linear-gradient(90deg, #f7bf14, #e69112);
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
.appl_item.appl_tit .left,
.appl_item.appl_tit .right {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.application_tips {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 20%;
          flex: 1 1 20%;
  padding-left: 30px;
}
.application_tips .t {
  padding-top: 1rem;
}
.application_tips .list .li {
  padding: 6px 0;
}
.application_tips .list strong {
  display: block;
  font-size: 1.25rem;
  line-height: 1;
  color: #db5419;
  font-weight: 500;
}
.application_tips .list div {
  margin-top: 6px;
  line-height: 1.3;
}

.sc_process {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #f8f8f8;
}

.process_cnt {
  margin-top: 3rem;
}
.process_cnt .list {
  margin: 0 auto;
  max-width: 80%;
  border-radius: 10px;
  margin-bottom: 0;
  padding: 1.5rem 3rem;
  padding-left: 4rem;
  background-color: #fff;
}
.process_cnt .list li {
  padding: 0.25rem 0;
  line-height: 1.3;
}

.process_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-left: -15px;
  margin-right: -15px;
  margin-bottom: 30px;
}

.proc_item {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 20%;
          flex: 0 0 20%;
  padding: 0 15px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.proc_item .pic {
  padding: 0 20%;
}
.proc_item .pic img {
  max-width: 100%;
  display: block;
}
.proc_item .name {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  line-height: 1;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
  font-size: 1.25rem;
  font-weight: 700;
}
.proc_item .text {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  line-height: 1.3;
}

.sc_power {
  padding-top: 2rem;
  padding-bottom: 3rem;
}

.power_items {
  margin-top: 2rem;
}

.pow_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 1rem;
}
.pow_item .left {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 400px;
          flex: 0 0 400px;
}
.pow_item .left a {
  display: block;
  border: 1px solid #eee;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
}
.pow_item .left a:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background-color: rgba(13, 31, 134, 0.2);
  opacity: 0;
  -webkit-transition: opacity 300ms;
  transition: opacity 300ms;
}
.pow_item .left a img {
  -webkit-transition: -webkit-transform 300ms;
  transition: -webkit-transform 300ms;
  transition: transform 300ms;
  transition: transform 300ms, -webkit-transform 300ms;
  max-width: 100%;
}
.pow_item .left a:hover img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.pow_item .left a:hover:before {
  opacity: 1;
}
.pow_item .right {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 100%;
          flex: 1 1 100%;
  padding-left: 2rem;
}
.pow_item .right .name {
  font-size: 1.5rem;
  font-weight: 700;
}
.pow_item .right .text {
  margin-top: 0.5rem;
  font-size: 1.125rem;
}
.pow_item .right a {
  display: inline-block;
  margin-top: 1rem;
  color: #e69112;
  text-decoration: underline;
}
.pow_item .right a:hover {
  color: #db5419;
}

.sc_detail {
  padding: 3rem 0;
  background-color: #f8f8f8;
}

.detail_cnt {
  padding: 0 30px;
}
.detail_cnt ul {
  padding-left: 1.25em;
}
.detail_cnt li {
  line-height: 1.3;
  padding: 0.33rem 0;
}
.detail_cnt li a {
  color: #e69112;
}

.logo_cnt {
  margin-top: 20px;
  padding: 0 20px;
}

.logo_items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 10px;
  background-color: white;
  -webkit-box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.15);
          box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.15);
}

.logo_item {
  padding: 15px 20px 5px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  text-align: center;
}
.logo_item .name {
  font-size: 0.875rem;
  line-height: 1;
}
.logo_item .pic img {
  height: 80px;
}

.g_footer {
  padding: 2rem 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-color: #fff;
}
.g_footer a {
  display: block;
}
.g_footer .link {
  text-decoration: underline;
}
.g_footer .link:hover {
  color: #f5ab26;
}
.g_footer .left {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}
.g_footer .left .logo img {
  width: 320px;
}
.g_footer .left .logo:hover {
  opacity: 0.6;
}
.g_footer .left .link {
  font-size: 1.125rem;
}
.g_footer .left .link:before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  width: 36px;
  height: 30px;
  background: url("img/icon/email.svg") left center/contain no-repeat;
}
.g_footer .right {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 100%;
          flex: 1 1 100%;
  padding-right: 1rem;
}
.g_footer .right .sns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.g_footer .right .sns .item {
  padding: 0 4px;
}
.g_footer .right .sns a {
  display: block;
  border-radius: 50%;
  background-color: #000;
}
.g_footer .right .sns a:hover {
  background-color: #f5ab26;
}
.g_footer .right .sns img {
  width: 50px;
}

@media (max-width: 767px) {
  .g_header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
  }
  .g_header .header_wrap {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .g_header .header_logo {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 auto;
            flex: 1 0 auto;
  }
  .g_header .header_logo img {
    max-width: none;
    height: 48px;
  }
  .g_header .logo_holder {
    display: none;
  }
  .g_header .nav_area {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 0px;
            flex: 0 0 0px;
    height: 0;
  }
  .g_header .nav_cnt {
    position: absolute;
    right: -0.5rem;
    top: 56px;
    width: calc(100vw);
    display: block;
    background-color: #fff;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-shadow: 0 1px 5px 0 rgba(0, 0, 0, 0.15);
            box-shadow: 0 1px 5px 0 rgba(0, 0, 0, 0.15);
  }
  .g_header .nav_item {
    padding: 0;
  }
  .g_header .nav_link {
    display: block;
    padding: 1rem 2rem;
  }
  .g_header .menu_btn {
    position: relative;
    width: 48px;
    height: 48px;
    text-align: center;
    border-radius: 6px;
    border: 1px solid #000;
  }
  .g_header .menu_btn .icon {
    display: inline-block;
    position: absolute;
    left: 20%;
    top: 50%;
    width: 60%;
    height: 4px;
    margin-top: -2px;
    background-color: #000;
  }
  .g_header .menu_btn .icon::before, .g_header .menu_btn .icon::after {
    content: "";
    position: absolute;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
  }
  .g_header .menu_btn .icon::before {
    top: -200%;
  }
  .g_header .menu_btn .icon::after {
    bottom: -200%;
  }

  .g_kv {
    margin-top: 64px;
    margin-bottom: 0;
  }
  .g_kv .cta_cnt {
    bottom: 6%;
  }
  .g_kv .cta_cnt .bttn {
    padding: 2px;
    font-size: 1.5rem;
  }
  .g_kv .cta_cnt .bttn span {
    padding: 1rem 3rem 1.15rem;
  }

  .sc_intro {
    padding-top: 2rem;
    padding-bottom: 0;
  }
  .sc_intro .intro_cnt {
    display: block;
  }
  .sc_intro .intro_cnt .text {
    padding-right: 0;
    padding-bottom: 1rem;
  }
  .sc_intro .intro_cnt .text .l1 {
    font-size: 1.25rem;
    line-height: 1.3;
    margin-bottom: 0.5rem;
  }
  .sc_intro .intro_cnt .text .p {
    font-size: 1.125rem;
  }
  .sc_intro .intro_cnt .pic img {
    width: 100%;
    height: auto;
  }

  .video_cnt {
    display: block;
  }
  .video_cnt .video {
    padding-right: 0;
  }
  .video_cnt .text {
    padding: 1rem;
  }
  .video_cnt .text .tit {
    margin-top: 0;
  }
  .video_cnt .text .p {
    font-size: 1.125rem;
  }

  .fix_aside {
    right: 0.5rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .fix_aside .fx_item {
    margin: 0 0.5em;
  }

  .res_items {
    display: block;
  }

  .res_item .pic {
    width: 80%;
    margin: 0 auto;
  }

  .application_cnt {
    display: block;
    padding-top: 0;
  }

  .appl_item .left {
    padding: 0.5rem;
  }
  .appl_item .left .tit div {
    font-size: 1.125rem;
  }
  .appl_item .right .th,
.appl_item .right .item {
    padding: 0.5rem 0.75rem;
  }
  .appl_item .right .item .name {
    font-size: 1.125rem;
  }
  .appl_item .right .item .tip {
    font-size: 0.875rem;
  }

  .application_tips {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .application_tips .t {
    text-align: center;
  }

  .process_cnt .list {
    max-width: 100%;
    padding: 1rem 2rem;
    padding-left: 2.5rem;
  }

  .process_wrap {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }

  .proc_item {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 50%;
            flex: 1 0 50%;
    padding: 10px 15px 20px;
    display: block;
    text-align: center;
  }
  .proc_item .name {
    line-height: 1.2;
  }

  .sc_power {
    padding-bottom: 0.2rem;
  }

  .pow_item {
    display: block;
  }
  .pow_item .right {
    padding-left: 0;
    padding: 1rem;
  }
  .pow_item .right .name {
    line-height: 1.3;
  }

  .detail_cnt {
    padding: 0 15px;
  }

  .logo_cnt {
    padding: 0;
  }

  .logo_items {
    display: block;
    padding: 1rem;
  }

  .logo_item {
    display: block;
    padding: 0;
    padding-top: 5px;
  }
  .logo_item .name {
    text-align: center;
    font-size: 1rem;
  }
  .logo_item .pic img {
    width: 100%;
    height: auto;
  }

  .g_footer {
    padding-top: 1.5rem;
    padding-bottom: 6rem;
  }
  .g_footer .left .copyright {
    margin-bottom: 1.25rem;
  }
  .g_footer .left .logo img {
    width: 100%;
  }
  .g_footer .left .link {
    text-align: center;
  }
  .g_footer .right {
    padding-right: 0;
  }
  .g_footer .right .sns {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}