@charset "UTF-8";
/**************************************
	base
***************************************/
/* ---------------------------------------------------------
スタイルリセット
----------------------------------------------------------*/
@import url("https://netdna.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css");
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-style: normal;
  font-weight: normal;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

h1,
h2,
h3,
h4,
h5,
h6,
td,
th,
p,
ul,
li,
dt,
dd {
  font-size: 1em;
}

ul li {
  list-style: none;
}

article,
header,
footer,
aside,
figure,
figcaption,
nav,
section {
  display: block;
}

body {
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

img {
  vertical-align: bottom;
}

/* ---------------------------------------------------------
変数
----------------------------------------------------------*/
/*break point
-----------------------*/
/*color
-----------------------*/
/*font family
-----------------------*/
@font-face {
  font-family: 'DINEngschriftStd';
  src: url("../fonts/DINEngschriftStd.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'icomoon';
  src: url("../fonts/icomoon.eot?8lbbz9");
  src: url("..fonts/icomoon.eot?8lbbz9#iefix") format("embedded-opentype"), url("../fonts/icomoon.ttf?8lbbz9") format("truetype"), url("../fonts/icomoon.woff?8lbbz9") format("woff"), url("../fonts/icomoon.svg?8lbbz9#icomoon") format("svg");
  font-weight: normal;
  font-style: normal;
}

/* ---------------------------------------------------------
mixin
----------------------------------------------------------*/
/*メディアクエリ
-----------------------*/
/*  clearfix
-----------------------*/
/*  font-size
-----------------------*/
/* ---------------------------------------------------------
初期設定
----------------------------------------------------------*/
html {
  color: #000;
  background-color: #fff;
  font-size: 14px;
  line-height: 1.2;
  letter-spacing: normal;
}

body {
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  color: #000;
  font-weight: 500;
}

html,
body {
  position: relative;
}

a {
  text-decoration: none;
  color: #000;
}

img {
  width: 100%;
  height: auto;
  vertical-align: middle;
}

/**************************************
common.scss
***************************************/
body {
  background-color: white;
  -webkit-box-sizing: initial;
          box-sizing: initial;
}

.bk_color {
  background-color: #edf8fc;
}

.layout {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
}

.pc {
  display: block !important;
}

.sp {
  display: none !important;
}

button:hover,
a:hover {
  opacity: 0.6;
  /* Standard: FF gt 1.5, Opera, Safari */
  filter: alpha(opacity=60);
  -ms-filter: "alpha(opacity=60)";
  /* IE 8 */
  -khtml-opacity: 0.6;
  /* Safari 1.x */
  -moz-opacity: 0.6;
  /* FF lt 1.5, Netscape */
}

.tac {
  text-align: center;
}

.tal {
  text-align: left;
}

.tar {
  text-align: right;
}

h2.title {
  font-family: 'DINEngschriftStd';
  font-size: 72px;
  text-align: center;
  margin-bottom: 10px;
}

.sub_title {
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 20px;
}

h3.title {
  font-size: 24px;
  font-weight: bold;
  color: #c11920;
  text-align: center;
}

/******************************
    common.scss SP
*******************************/
@media screen and (max-width: 767px) {
  .layout {
    width: 100%;
    margin: 0 auto;
    max-width: initial;
    padding: 0 15px;
  }
  .pc {
    display: none !important;
  }
  .sp {
    display: block !important;
  }
  h2.title {
    font-size: 50px;
  }
  .sub_title {
    font-size: 16px;
  }
  h3.title {
    font-size: 20px;
  }
}

/**************************************
header
***************************************/
.header {
  background-color: #fff;
  position: relative;
}

.header:before {
  content: " ";
  height: 3px;
  background-color: #c11920;
  width: 100%;
  display: block;
}

.header .layout {
  height: 80px;
  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;
}

.header .layout .logo {
  display: block;
}

.header .layout .logo img {
  width: auto;
}

.header .layout .sp_menu {
  display: none;
}

.header .layout .navi {
  display: block;
  position: relative;
}

.header .layout .navi .pnavi {
  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;
  height: 70px;
}

.header .layout .navi .pnavi a {
  display: block;
  margin-left: 30px;
  font-size: 16px;
  color: #1a0004;
}

.header .layout .navi .pnavi a:first-child {
  margin-left: 0px;
}

.header .layout .navi .sp_btn_close {
  display: none;
}

/******************************
    header sp
*******************************/
@media screen and (max-width: 767px) {
  .header {
    height: 60px;
  }
  .header .layout {
    height: 60px;
  }
  .header .layout .logo img {
    width: 170px;
  }
  .header .layout .sp_menu {
    display: block;
    position: absolute;
    width: 40px;
    right: 15px;
    top: 13px;
  }
  .header .layout .sp_menu #header_nav_btn {
    background-color: #fff;
    border: none;
  }
  .header .layout .sp_menu #header_nav_btn::before {
    font-family: "icomoon" !important;
    content: "";
    font-size: 32px;
    color: #000;
    line-height: 1;
  }
  .header .layout .navi {
    display: none;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    width: 100%;
    position: absolute;
    top: 60px;
    left: 0;
  }
  .header .layout .navi .pnavi {
    width: 100%;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    z-index: 1000;
    height: auto;
    background-color: #fff;
  }
  .header .layout .navi .pnavi a {
    width: 100%;
    margin: 0;
    padding: 20px 0;
    font-weight: 500;
    border-bottom: 1px solid #eee;
    text-align: center;
    position: relative;
  }
  .header .layout .navi .pnavi a::after {
    content: '';
    margin-top: -4px;
    top: 48%;
    right: 25px;
    width: 9px;
    height: 9px;
    position: absolute;
    border-top: 2px solid #999;
    border-right: 2px solid #999;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  .header .layout .navi .pnavi a:first-child {
    margin-left: 0px;
    border-top: 1px solid #eee;
  }
  .header .layout .navi .sp_btn_close {
    position: absolute;
    right: 10px;
    top: -50px;
    display: inline-block;
    width: 40px;
    height: 40px;
    margin: 0 0 0 auto;
    background-color: #fff;
    color: #000;
    border: none;
    font-size: 24px;
    font-weight: bold;
    opacity: 1;
  }
}

/**************************************
footer
***************************************/
.footer {
  background-color: #c11920;
  position: relative;
  z-index: 11;
  color: #fff;
  text-align: center;
  padding: 20px 0;
}

.footer .layout {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.footer .layout .footer_logo {
  display: block;
  width: 293px;
}

.footer .layout .footer_logo img {
  width: 100%;
}

.footer .layout .foot_dt .footer_navi {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.footer .layout .foot_dt .footer_navi li {
  margin-left: 40px;
}

.footer .layout .foot_dt .footer_navi li a {
  color: #fff;
  margin-bottom: 10px;
  display: block;
  font-size: 14px;
  line-height: 28px;
}

.footer .layout .foot_dt .copyright {
  text-align: right;
  color: #fff;
  font-size: 12px;
  margin-top: 30px;
}

/******************************
    footer sp
*******************************/
@media screen and (max-width: 767px) {
  .footer .layout {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .footer .layout .footer_logo {
    display: block;
    width: 200px;
    margin: 30px auto;
  }
  .footer .layout .foot_dt .footer_navi {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .footer .layout .foot_dt .footer_navi li {
    margin: 5px 15px;
  }
  .footer .layout .foot_dt .footer_navi li a {
    margin-bottom: 0;
  }
  .footer .layout .foot_dt .copyright {
    text-align: center;
    font-size: 12px;
    margin-top: 40px;
  }
}

.main .mv_pt {
  background: url(../images/bk_top.jpg) no-repeat;
  background-size: cover;
  background-position: center;
  height: 680px;
}

.main .mv_pt .layout {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
}

.main .mv_pt .layout .mv_text {
  width: 590px;
  background-color: #fff;
  border-left: 8px solid #c11920;
  padding: 50px;
}

.main .mv_pt .layout .mv_text h1.title {
  font-size: 48px;
  font-weight: bold;
  margin-bottom: 20px;
  color: #c11920;
}

.main .mv_pt .layout .mv_text .desc {
  font-size: 20px;
  line-height: 32px;
}

.main .mv2_pt {
  min-height: 1082px;
  padding: 80px 0 0 0;
  position: relative;
  margin-bottom: 94px;
}

.main .mv2_pt::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background: url(../images/bk_top_02.jpg) no-repeat;
  background-size: cover;
  width: 100%;
  height: 1082px;
}

.main .mv2_pt .layout {
  position: relative;
}

.main .mv2_pt .layout .mv_text {
  background-color: #fff;
  padding: 70px;
  overflow: hidden;
}

.main .mv2_pt .layout .mv_text .dt_pt {
  height: 498px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
  position: relative;
  margin-bottom: 50px;
}

.main .mv2_pt .layout .mv_text .dt_pt::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background: url(../images/p_intro.jpg) no-repeat;
  background-size: contain;
  background-position: left top;
  width: 813px;
  height: 498px;
}

.main .mv2_pt .layout .mv_text .dt_pt .dt_item {
  width: 50%;
  background-color: #fff;
  padding: 45px;
  position: relative;
}

.main .mv2_pt .layout .mv_text .dt_pt .dt_item .title {
  font-size: 30px;
  font-weight: bold;
  color: #c11920;
  margin-bottom: 20px;
}

.main .mv2_pt .layout .mv_text .dt_pt .dt_item .desc {
  font-size: 16px;
  line-height: 28px;
}

.main .mv2_pt .layout .mv_text .special_pt h3.title {
  margin-bottom: 30px;
}

.main .mv2_pt .layout .mv_text .special_pt ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.main .mv2_pt .layout .mv_text .special_pt ul li {
  width: 23%;
  background-color: #edf8fc;
  padding: 30px 20px;
}

.main .mv2_pt .layout .mv_text .special_pt ul li img {
  margin-bottom: 20px;
}

.main .mv2_pt .layout .mv_text .special_pt ul li .title {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 10px;
  text-align: center;
}

.main .mv2_pt .layout .mv_text .special_pt ul li .desc {
  font-size: 16px;
  line-height: 22px;
}

.main .contact_pt {
  background: url(../images/bk_contact.jpg) no-repeat;
  background-size: cover;
  background-position: center;
  height: 300px;
  margin-bottom: 90px;
}

.main .contact_pt .layout {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
  height: 100%;
}

.main .contact_pt .layout ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.main .contact_pt .layout ul li {
  margin-left: 50px;
}

.main .contact_pt .layout ul li .lbl_title {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 10px;
  display: block;
}

.main .contact_pt .layout ul li .lbl_title span {
  color: #c11920;
  font-weight: bold;
}

.main .contact_pt .layout ul li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 10px;
}

.main .contact_pt .layout ul li a img {
  width: auto;
  margin-right: 10px;
}

.main .contact_pt .layout ul li a .telnum {
  font-family: 'DINEngschriftStd';
  font-size: 61px;
  line-height: 1;
}

.main .contact_pt .layout ul li p {
  text-align: center;
  font-size: 18px;
  line-height: 24px;
}

.main .contact_pt .layout ul li .btn_mail {
  width: 100%;
  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;
  background-color: #c11920;
  color: #fff;
  padding: 25px 0;
  margin: 20px 0 0 0;
  border-radius: 5px;
}

.main .contact_pt .layout ul li .btn_mail span {
  font-size: 22px;
  font-weight: bold;
}

.main .service_pt {
  margin-bottom: 90px;
}

.main .service_pt .layout {
  background-color: #fff;
  padding: 70px;
}

.main .service_pt .layout .sub_title {
  margin-bottom: 50px;
}

.main .service_pt .layout .desc {
  text-align: center;
  margin-bottom: 50px;
  font-size: 16px;
  line-height: 24px;
}

.main .service_pt .layout .service_dt {
  margin-bottom: 70px;
}

.main .service_pt .layout .service_dt dl {
  margin-bottom: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-color: #edf8fc;
}

.main .service_pt .layout .service_dt dl dt {
  width: 260px;
}

.main .service_pt .layout .service_dt dl dd {
  width: calc(100% - 260px);
  padding: 0 0 0 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.main .service_pt .layout .service_dt dl dd .dt_item {
  width: 100%;
}

.main .service_pt .layout .service_dt dl dd .dt_item .dt_title {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 20px;
  color: #c11920;
}

.main .service_pt .layout .service_dt dl dd .dt_item .dt_content {
  font-size: 16px;
  line-height: 24px;
  padding-right: 15px;
}

.main .service_pt .layout .service_banner {
  margin: 0 100px;
}

.main .service_pt .layout .service_banner li {
  margin: 0 15px;
  height: auto;
}

.main .news_qa {
  position: relative;
  overflow: hidden;
}

.main .news_qa::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background: url(../images/bk_news_qa.jpg) no-repeat;
  background-size: cover;
  background-position-y: 95px;
  width: 100%;
  height: 1256px;
}

.main .news_qa .news_pt {
  position: relative;
  margin-bottom: 94px;
  background-color: #fff;
  padding: 70px;
}

.main .news_qa .news_pt .sub_title {
  margin-bottom: 50px;
}

.main .news_qa .news_pt .news_list {
  margin-bottom: 50px;
}

.main .news_qa .news_pt .news_list .item {
  margin-bottom: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.main .news_qa .news_pt .news_list .item dt {
  width: 235px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.main .news_qa .news_pt .news_list .item dt span {
  display: block;
  width: 100px;
  text-align: center;
  color: #fff;
  padding: 5px 0;
  font-size: 15px;
  font-weight: bold;
}

.main .news_qa .news_pt .news_list .item dt span.tag01 {
  background-color: #c11920;
}

.main .news_qa .news_pt .news_list .item dt span.tag02 {
  background-color: #359a40;
}

.main .news_qa .news_pt .news_list .item dt span.tag03 {
  background-color: #394da1;
}

.main .news_qa .news_pt .news_list .item dt label {
  width: 135px;
  text-align: center;
  padding: 5px 0;
}

.main .news_qa .news_pt .news_list .item dd {
  width: calc(100% - 235px);
  padding: 5px 0;
  font-size: 16px;
}

.main .news_qa .news_pt .news_list .item dd a {
  display: block;
}

.main .news_qa .news_pt .btn_more {
  width: 270px;
  padding: 20px 0;
  text-align: center;
  background-color: #000;
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  display: table;
  margin: 0 auto;
  border-radius: 5px;
}

.main .news_qa .qa_pt {
  position: relative;
  margin-bottom: 94px;
  background-color: #fff;
  padding: 70px;
}

.main .news_qa .qa_pt .sub_title {
  margin-bottom: 50px;
}

.main .news_qa .qa_pt .qa_list {
  border-top: 1px solid #000;
}

.main .news_qa .qa_pt .qa_list .item {
  margin-bottom: 10px;
  background-color: #fff;
  border-bottom: 1px solid #000;
}

.main .news_qa .qa_pt .qa_list .item dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding: 20px 0;
  width: 100%;
}

.main .news_qa .qa_pt .qa_list .item dl dt {
  font-family: 'DINEngschriftStd';
  width: 40px;
  font-size: 36px;
}

.main .news_qa .qa_pt .qa_list .item dl dd {
  width: calc(100% - 70px);
  font-size: 18px;
  line-height: 28px;
  font-weight: bold;
  padding-top: 7px;
}

.main .news_qa .qa_pt .qa_list .item .question {
  position: relative;
  cursor: pointer;
}

.main .news_qa .qa_pt .qa_list .item .question::after {
  content: "+";
  font-family: 'FontAwesome';
  font-size: 28px;
  font-weight: bold;
}

.main .news_qa .qa_pt .qa_list .item .question dl dd {
  font-weight: bold;
}

.main .news_qa .qa_pt .qa_list .item .answer {
  display: none;
  padding: 0 0 20px 0;
}

.main .news_qa .qa_pt .qa_list .item .answer dt {
  color: #c11920;
}

.main .news_qa .qa_pt .qa_list .item .answer dd {
  font-size: 16px;
  font-weight: normal;
}

.main .news_qa .qa_pt .qa_list .active .question::after {
  content: "－";
}

.main .news_qa .qa_pt .qa_list .active .answer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.main .banner_pt {
  padding-bottom: 50px;
}

.main .banner_pt ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 104%;
}

.main .banner_pt ul li {
  width: 31%;
  margin-right: 2%;
  margin-bottom: 20px;
}

.main .banner_pt ul li a {
  display: block;
}

.atop {
  position: fixed;
  bottom: 20px;
  right: 0;
  width: 300px;
  height: 330px;
  z-index: 1001;
  background: #c11920;
  padding: 5px;
  border-radius: 15px;
}

.atop:hover {
  opacity: 1;
}

.atop .dt {
  background-color: #fff;
  border-radius: 10px 10px 0 0;
  padding: 15px;
  text-align: center;
}

.atop .dt .lbl_title {
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 10px;
  display: block;
  border-radius: 10px 10px 0 0;
}

.atop .dt .lbl_title span {
  color: #c11920;
  font-weight: bold;
}

.atop .dt .caractor {
  width: auto;
}

.atop .p_mail {
  width: 100%;
  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;
  background-color: #c11920;
  color: #fff;
  padding: 15px 0 0 0;
  border-radius: 5px;
}

.atop .p_mail img {
  width: auto;
  margin-right: 10px;
}

.atop .p_mail span {
  font-size: 22px;
  font-weight: bold;
}

@media screen and (max-width: 767px) {
  .main .mv_pt {
    height: 115vw;
  }
  .main .mv_pt .layout .mv_text {
    width: 100%;
    padding: 20px;
  }
  .main .mv_pt .layout .mv_text h1.title {
    font-size: 28px;
  }
  .main .mv_pt .layout .mv_text .desc {
    font-size: 16px;
    line-height: 26px;
  }
  .main .mv2_pt {
    min-height: auto;
    margin-bottom: 50px;
  }
  .main .mv2_pt::before {
    content: "";
    height: calc(100% - 90px);
  }
  .main .mv2_pt .layout .mv_text {
    padding: 20px;
  }
  .main .mv2_pt .layout .mv_text .dt_pt {
    height: auto;
  }
  .main .mv2_pt .layout .mv_text .dt_pt::before {
    content: "";
    display: none;
  }
  .main .mv2_pt .layout .mv_text .dt_pt .dt_item {
    width: 100%;
    padding: 15px;
  }
  .main .mv2_pt .layout .mv_text .dt_pt .dt_item .title {
    font-size: 20px;
    line-height: 28px;
  }
  .main .mv2_pt .layout .mv_text .dt_pt .dt_item .desc {
    font-size: 14px;
    line-height: 24px;
  }
  .main .mv2_pt .layout .mv_text .special_pt ul {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .main .mv2_pt .layout .mv_text .special_pt ul li {
    width: 100%;
    margin-bottom: 20px;
  }
  .main .contact_pt {
    height: 400px;
    margin-bottom: 50px;
  }
  .main .contact_pt .layout ul {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .main .contact_pt .layout ul li {
    margin-left: 0;
    margin-bottom: 50px;
  }
  .main .contact_pt .layout ul li:nth-child(2) {
    margin-bottom: 0;
  }
  .main .contact_pt .layout ul li .lbl_title {
    font-size: 18px;
  }
  .main .contact_pt .layout ul li a span {
    font-size: 48px;
  }
  .main .contact_pt .layout ul li .btn_mail span {
    font-size: 18px;
  }
  .main .service_pt {
    margin-bottom: 50px;
  }
  .main .service_pt .layout {
    padding: 50px 15px;
  }
  .main .service_pt .layout .desc {
    text-align: left;
  }
  .main .service_pt .layout .service_dt dl {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .main .service_pt .layout .service_dt dl dt {
    width: 100%;
    margin-bottom: 20px;
  }
  .main .service_pt .layout .service_dt dl dd {
    width: 100%;
    padding: 20px;
  }
  .main .service_pt .layout .service_dt dl dd .dt_item .dt_title {
    font-size: 20px;
  }
  .main .service_pt .layout .service_dt dl dd .dt_item .dt_content {
    font-size: 14px;
    padding-right: 0;
  }
  .main .service_pt .layout .service_banner {
    margin: 0 50px;
  }
  .main .service_pt .layout .service_banner li {
    margin: 0 10px;
  }
  .main .news_qa .news_pt {
    padding: 50px 20px;
    margin-bottom: 50px;
  }
  .main .news_qa .news_pt .news_list .item {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .main .news_qa .news_pt .news_list .item dt {
    width: 100%;
    margin-bottom: 10px;
  }
  .main .news_qa .news_pt .news_list .item dd {
    width: 100%;
  }
  .main .news_qa .qa_pt {
    padding: 50px 20px;
    margin-bottom: 50px;
  }
  .main .news_qa .qa_pt .qa_list .item dl dt {
    font-size: 32px;
    line-height: 24px;
  }
  .main .news_qa .qa_pt .qa_list .item dl dd {
    font-size: 16px;
    padding-top: 0;
    line-height: 22px;
  }
  .main .news_qa .qa_pt .qa_list .item .answer dd {
    font-size: 15px;
  }
  .main .banner_pt {
    padding-bottom: 30px;
  }
  .main .banner_pt ul {
    width: 102%;
  }
  .main .banner_pt ul li {
    width: 48%;
    margin-right: 2%;
  }
  .atop {
    width: 200px;
    height: 220px;
  }
  .atop .dt {
    padding: 15px 8px;
  }
  .atop .dt .lbl_title {
    font-size: 14px;
    line-height: 1.4;
  }
  .atop .dt .caractor {
    width: 100px;
  }
  .atop .p_mail {
    padding: 10px 0 0 0;
  }
  .atop .p_mail img {
    width: 26px;
    margin-right: 10px;
  }
  .atop .p_mail span {
    font-size: 14px;
  }
}
