@charset "utf-8";

*, *::after, *::before {
    box-sizing: border-box;
  }
html {
  font-family: "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  line-height: 1.5;
  color: #032142;
}
img {
    width: 100%;
  }
  .sp {
    display: none;
  }
.inner{
  max-width: 1020px;
  font-size: 18px;
  padding: 100px 10px;
  margin: 0 auto;
}
/*========= ヘッダー ===============*/
header {
  position: fixed;
  width: 100%;
  height: 120px;
  background-color: #fff;
  box-shadow: 0 3px 6px 0 rgba(0,0,0,0.3);
  z-index: 100;
}
.header-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.header-btn-box{
  display: flex;
  justify-content: flex-end;
  height: 60px;
  align-items: end;
  padding: 0 10px;
}
a.header-btn{
  display: block;
  color: #fff;
  border-radius: 50px;
  font-weight: bold;
  font-size:16px;
  text-align:center;
  transition: .3s;
  margin-right: 20px;
}
a.header-btn:last-of-type {
  margin-right: 0;
}
.header-btn.tel{
  display: block;
  box-sizing: border-box;
  background: #F38200 url(../images/rinsyo/icon_white_01.png) no-repeat 15px center / 15px auto;
  box-shadow: 2px 2px 0px 0px rgba(245,144,28,0.65);
  padding: 10px 15px 10px 35px;
}
.header-btn.mail{
  display: block;
  box-sizing: border-box;
  background: #E63000 url(../images/rinsyo/icon_white_02.png) no-repeat 18px center / 18px auto;
  box-shadow: 2px 2px 0px 0px rgba(227,55,48,0.65);
  padding: 10px 15px 10px 46px;
}
.header-btn.paper{
  display: block;
  box-sizing: border-box;
  background: #5FACE2 url(../images/rinsyo/icon_white_03.png) no-repeat 18px center / 18px auto;
  box-shadow: 2px 2px 0px 0px rgba(97,160,204,0.65);
  padding: 10px 15px 10px 44px;
}
a.header-btn:hover {
  opacity: 0.8;
}
.header-nav-box {
  display: flex;
  height: 60px;
  align-items: center;
  padding: 0 10px;
}
.header-nav-box p {
  padding: 130px 0px;
  height: 500px;
}
.header-logo {
  width: 23%;
  margin-right: auto;
}
#g-nav {
  font-size: 0;
  margin-right: 90px;
}
#g-nav ul li {
  list-style: none;
  display: inline-block;
  border-left: 1px solid #333;
  font-size: 16px;
  font-weight: bold;
  padding: 3px 30px;
}
#g-nav ul li:first-of-type {
  border-left: none;
  padding-left: 0;
}
#g-nav ul li a{
color: #333;
}
/*========= トップに戻る ===============*/
.pagetop {
  height: 50px;
  width: 50px;
  position: fixed;
  right: 30px;
  bottom: 30px;
  background: #909090;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
}
.pagetop__arrow {
  height: 15px;
  width: 15px;
  border-top: 5px solid #fff;
  border-right: 5px solid #fff;
  transform: translateY(20%) rotate(-45deg);
}
/*========= トップ ===============*/
#top {
  display: flex;
  align-items: center;
  text-align: right;
  width: 100%;
  height: 800px;
  margin: 0 auto;
  padding-top: 120px;
  background: url(../images/rinsyo/top_back.png) no-repeat left top 120px / contain;
  position: relative;
}
.logo_box {
  position: absolute;
  right: 10%;
}
.top_logo{
  margin-bottom: 50px;
}
.top_logo img{
  max-width: 650px;
  filter: drop-shadow(5px 5px 5px #fff);
}
#top p {
  font-size: 46px;
  font-weight: bold;
  color: #007CCF;
  text-shadow:1px 1px 0 #FFF, -1px -1px 0 #FFF,
  -1px 1px 0 #FFF, 1px -1px 0 #FFF,
  0px 1px 0 #FFF,  0-1px 0 #FFF,
  -1px 0 0 #FFF, 1px 0 0 #FFF;
}
#top p span{
  color: #001F5E;
}
/*========= 医療現場の課題をクローズアップ ===============*/
#closeup {
  background-color: #CFEDFF;
}
h2 {
  font-size: 50px;
  font-weight: bold;
  text-align: center;
  color: #002C69;
  margin-bottom: 60px;
}
.problem {
  display: flex;
  flex-wrap: wrap;
}
.problem_inner {
  position: relative;
  width: calc(100% / 2 - 30px);
  background-color: #FFF;
  border-radius: 50px;
  padding: 40px;
  margin: 0 60px 200px 0;
}
.problem_inner:last-of-type {
  margin-right: 0;
}
.problem_inner dl dt{
  font-size: 32px;
  font-weight: bold;
  color: #002C69;
  margin-bottom: 10px;
}
.problem_inner dl dd{
  font-size: 30px;
  font-weight: 100;
  padding-left:1em;
	text-indent:-1em;
}
.problem_inner_img {
  position: absolute;
  bottom: -170px; 
  right: 50%;
  transform: translateX(50%);
  width: 150px;
}
.blue-text {
  display: inline;
  font-size: 40px;
  font-weight: bold;
  color: #007CCF;
  background:linear-gradient(transparent 50%, #FFF200 0%);
}
.blue-text img{
  width: 250px;
  margin-right: 5px;
}
.text-center {
  text-align: center;
}
/*========= ELISE-ONEとは？ ===============*/
#toha{
  text-align: center;  
}
#toha h3{
  display: inline-block;
  font-size: 50px;
  font-weight: bold;
  color: #007CCF;
  border-bottom: 10px solid;
  margin-bottom: 60px;
}
#toha h3 img{
  width: 350px;
  margin-right: 10px;
}
#toha p{
  font-size: 26px;
}
/*========= 4つのコンセプト ===============*/
#concept {
  background-color: #F4FBFF;
}
.concept-circle {
  display: flex;
  flex-wrap: wrap;
}
.concept-circle li{
  width: calc(50% - 66px);
  margin: 0 33px 70px;
}
.concept-circle-img {
  width: 170px;
  margin: 0 auto 30px;
}
.concept-circle-title {
  font-size: 30px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 30px;
}
.concept-circle-text.indent{
  padding-left:1em;
	text-indent:-1em;
}
.concept-box li {
  background-color: #FFF;
  border-radius: 20px;
  margin-bottom: 40px;
}
  .concept-box li.orange {
    border: 5px solid #F5901C;
    box-shadow: 4px 6px 0px 0px rgba(245,144,28,0.65);
  }
  .concept-box li.green {
    border: 5px solid #7EB932;
    box-shadow: 4px 6px 0px 0px rgba(126,185,50,0.65);
  }
  .concept-box li.purple {
    border: 5px solid #624CA5;
    box-shadow: 4px 6px 0px 0px rgba(98,76,165,0.65);
  }
  .concept-box li.red {
    border: 5px solid #E33730;
    box-shadow: 4px 6px 0px 0px rgba(227,55,48,0.65);
  }

.concept-box-title {
  font-size: 30px;
  font-weight: bold;
  color: #FFF;
  border-radius: 13px 13px 0 0;
  padding: 15px 25px;
}
  .orange .concept-box-title {
    background: #F5901C;
  }
  .green .concept-box-title {
    background: #7EB932;
  }
  .purple .concept-box-title {
    background: #624CA5;
  }
  .red .concept-box-title {
    background: #E33730;
  }
.concept-box-inner {
  display: flex;
  padding: 20px 25px;
}
.concept-box-inner .inner-left {
  width: 40%;
  margin-right: 30px;
}
.concept-box-inner .inner-left p b{
  display: inline-block;
  font-size: 24px;
  margin-bottom: 20px;
}
.orange .inner-left p b{
  background:linear-gradient(transparent 50%, #FCDDBA 0%);
}
.green .inner-left p b{
  background:linear-gradient(transparent 50%, #D8EAC1 0%);
}
.purple .inner-left p b{
  background:linear-gradient(transparent 50%, #CFC9E4 0%);
}
.red .inner-left p b{
  background:linear-gradient(transparent 50%, #F7C2C0 0%);
}
.concept-box-inner .inner-right {
  width: 60%;
  height: auto;
}
/*========= 主な機能 ===============*/
#function {
  background-color: #CFEDFF;
}
#function ul {
  display: flex;
  flex-wrap: wrap;
  justify-content:space-between;
  align-items: flex-end;
}
#function ul li{
	width: calc((100% - 100px) / 3);
  height: 391px;
  background-color: #fff;
  position: relative;
  padding: 75px 3% 40px;
  margin: 40px 50px 50px 0;
}
#function ul li.function-sub{
  height: 40px;
  padding: 10px 40px;
  display: flex;
}
#function ul li:nth-child(3n) {
	margin-right: 0;
}
.function-icon {
  width: 100px;
  position: absolute;
  top: -50px;
  left: 50%;
  transform: translateX(-50%);
}
.function-title {
  font-size: 28px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 20px;
}
.function-text {
  position: relative;
  font-size: 22px;
  font-weight: 300;
  line-height: 1.7;
  padding-left: 26px;
}

.function-text:before {
  content: "●";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
}
.function-text.green:before {
  color: #7D9B50;
}
.function-text.blue:before {
  color: #3081B2;
}
#function ul li.function-sub .function-text{
  font-size: 16px;
  padding-left: 20px;
  margin-right: 16px;
}
/*========= 「もっと使いやすく、もっと見やすく」 ===============*/
#point .text-center {
  margin-bottom: 80px;
}
#point ul {
  max-width: 730px;
  margin: 0 auto;
}
.point-inner {
  display: flex;
  align-items: center;
  margin-bottom: 60px;
}
.point-inner .inner-right{
  width: calc(100% - 150px);
}
.point-inner .inner-right p.point-right-title{
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 15px;
}
.point-inner .inner-right p{
  font-size: 20px;
}
.point-inner .inner-left {
  width: 100px;
  height: 100px;
  display: flex;
  margin-right: 50px;
}
.point-inner2 {
  display: flex;
  margin-bottom: 70px;
}
.point-inner2-img {
  width: calc((100% - 70px) / 2);
  margin-right: 70px;
}
.point-inner2-img:last-of-type {
  margin-right: 0;
}
.point-inner-title {
  font-size: 30px;
  font-weight: bold;
}
.point-inner3 {
  display: flex;
}
.point-inner3-text {
  width: 70%;
}
.point-inner3-img {
  width: 25%;
  display: flex;
  align-items: center;
  margin-left: 5%;
}
/*========= 導入の流れ ===============*/
#flow {
  background-color: #F4FBFF;
}
#flow ul {
  display: flex;
  flex-wrap: wrap;
  justify-content:center;
  text-align: center;
}
.flow-box li {
  display: flex;
  flex-direction: column;
  width: calc( (100% - 120px) / 4);
  background-color: #FFF;
  border: 4px solid #88CDFC;
  margin-right: 40px;
  margin-bottom: 40px;
  position: relative;
}
.flow-box li:nth-child(4n),
.flow-box li:last-child {
	margin-right: 0;
}
.flow-box li::after {
  content: "";
  position: absolute;
  top: 50%;
  left: -35px;
  transform: translateY(-50%);
  border-left: 20px solid #091453;
  border-top: 20px solid transparent;
  border-bottom: 20px solid transparent;
}
.flow-box li:first-of-type::after {
  content: none;
}
.flow-box-title {
  font-size: 22px;
  line-height: 1.2;
  color: #FFF;
  background-color: #88CDFC;
  padding: 20px;
}
.flow-box-title b{
  font-size: 48px;
}
.flow-box-inner {
  padding: 25px 5px 10px;
}
.flow-icon {
  height: 60px;
  margin-bottom: 10px;
}
.flow-icon img{
  height: 100%;
  width: auto;
}
.flow-text {
  font-size: 26px;
  font-weight: bold;
  line-height: 1.3;
  height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
}
/* 利用者の声 */
#voice {
  background-color: #CFEDFF;
}
.voice-box li{
  display: flex;
  margin-bottom: 20px;
}
.voice-icon {
  width: 80px;
  height: auto;
  display: flex;
  align-items: center;
}
.voice-1 .voice-icon {
  margin-right: 40px;
}
.voice-2 .voice-icon {
  margin-left: 40px;
}
.voice-text {
  position: relative;
  width: calc(100% - 120px);
  background-color: #fff;
  border-radius: 10px;
  padding: 30px;
}
.voice-1 .voice-text::after {
  content: "";
  position: absolute;
  top: 50%;
  left: -20px;
  transform: translateY(-50%);
  border-right: 20px solid #fff;
  border-top: 13px solid transparent;
  border-bottom: 13px solid transparent;
}
.voice-2 .voice-text::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -20px;
  transform: translateY(-50%);
  border-left: 20px solid #fff;
  border-top: 13px solid transparent;
  border-bottom: 13px solid transparent;
}
/*========= Q&A ===============*/
.QA-cate {
  display: inline-block;
  font-size: 26px;
  font-weight: bold;
  color: #fff;
  padding: 20px 40px;
  margin-bottom: 20px;
}
  .blue .QA-cate {
    background-color: #007CCF;
  }
  .green .QA-cate {
    background-color: #7EB932;
  }
  .red .QA-cate {
    background-color: #E63F38;
  }
.QA-container {
  margin: 0 auto 60px;
  width: 100%;
}
.QA-container:last-of-type {
  margin-bottom: 0;
}
.QA-list {
  margin-bottom: 20px;
}
.QA-list:last-of-type {
  margin-bottom: 0;
}
.QA-title {
  background: #002D7A;
  color: #fff;
  cursor: pointer;
  font-size: 22px;
  padding: 15px 60px 15px 15px;
  position: relative;
  transition: .3s;
}
.QA-title:before {
  position: absolute;
  content: '';
  top: 50%;
  right: 25px;
  height: 3px;
  width: 25px;
  background: #fff;
  transform: rotate(90deg);
  transition: all .3s ease-in-out;
}
.QA-title:after {
  position: absolute;
  content: '';
  top: 50%;
  right: 25px;
  height: 3px;
  width: 25px;
  background: #fff;
  transition: all .3s ease-in-out;
}
.QA-title:hover {
  opacity: 0.8;
}
.QA-title p:before{
  content: '';
  display: inline-block;
  width: 50px;
  height: 50px;
  background-repeat: no-repeat;
  background-size: contain;
  vertical-align: middle;
  margin-right: 20px;
}
  .blue .QA-title p:before{
    background-image: url(../images/rinsyo/Q_blue.png);
  }
  .green .QA-title p:before{
    background-image: url(../images/rinsyo/Q_green.png);
  }
  .red .QA-title p:before{
      background-image: url(../images/rinsyo/Q_red.png);
  }
.QA-title.open:before {
  transform: rotate(180deg);
}
.QA-title.open:after {
  opacity: 0;
}
.QA-text {
  display: none;
  padding: 20px 20px 20px 90px;
}
/*========= フッター ===============*/
footer {
  align-items: center;
  text-align: center;
  width: 100%;
  height: auto;
  margin: 0 auto;
  background: url(../images/rinsyo/footer_back.jpg) no-repeat left top / cover;
  position: relative;
}
footer p {
  color: #fff;
  font-weight: bold;
}
.footer-text1 {
  font-size: 42px;
  margin-bottom: 40px;
}
.footer-text1 span{
  display: inline-block;
}
.footer-text2 {
  font-size: 24px;
  font-weight: normal;
  margin-bottom: 40px;
}
.footer-text3 {
  font-size: 40px;
  margin-bottom: 20px;
}
.footer-text4 {
  font-size: 38px;
  margin-bottom: 20px;
}
.footer-text5 {
  font-size: 26px;
}
.footer-text3:before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  width: 35px;
  height: 44px;
  margin-right: 5px;
  background: url("../images/rinsyo/icon_white_01.png") no-repeat;
  background-size: contain;
}
a.footer-btn{
  display: block;
  max-width: 580px;
  color: #0A1554;
  background: #fff;
  border-radius: 50px;
  font-weight: bold;
  font-size:34px;
  text-align:center;
  transition: .3s;
  padding: 15px;
  margin: 0 auto 30px;
}
a.footer-btn:before {
  content: "";
  display: inline-block;
  vertical-align: middle;
}
a.footer-btn.paper:before {
  width: 35px;
  height: 45px;
  margin: -0.5rem 15px 0 0;
  background: url("../images/rinsyo/icon_02.png") no-repeat;
  background-size: contain;
}
a.footer-btn.mail:before {
  width: 45px;
  height: 30px;
  margin: -0.5rem 15px 0 0;
  background: url("../images/rinsyo/icon_01.png") no-repeat;
  background-size: contain;
}
a.footer-btn:hover {
  opacity: 0.8;
}
.white {
  background-color: #fff;
  padding: 50px;
}
.white img{
  width: 180px;
}

@media screen and (max-width: 900px) {
/*========= ハンバーガーメニューcss ===============*/
  #g-nav{
    position:fixed;
    z-index: 999;
  top:-120%;
    left:0;
  width:100%;
    height: 100vh;
  background:#fff;
  transition: all 0.6s;
}

/*アクティブクラスがついたら位置を0に*/
#g-nav.panelactive{
    top: 0;
}
/*ナビゲーション*/
#g-nav ul {
    position: absolute;
    z-index: 999;
    top:50%;
    left:50%;
    transform: translate(-50%,-50%);
}
/*リストのレイアウト設定*/
#g-nav ul li{
  list-style: none;
    text-align: center; 
    border-left: none;
}
#g-nav ul li:first-of-type {
  padding: 3px 30px;
}
#g-nav ul li a{
  color: #333;
  text-decoration: none;
  padding:10px;
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: bold;
}
.openbtn1{
  position:fixed;
    z-index: 9999;
  top:66px;
  right: 10px;
  cursor: pointer;
    width: 50px;
    height:50px;
}
/*×に変化*/  
.openbtn1 span{
    display: inline-block;
    transition: all .4s;
    position: absolute;
    left: 14px;
    height: 3px;
    border-radius: 2px;
  background-color: #666;
    width: 45%;
  }
.openbtn1 span:nth-of-type(1) {
  top:15px; 
}
.openbtn1 span:nth-of-type(2) {
  top:23px;
}
.openbtn1 span:nth-of-type(3) {
  top:31px;
}
.openbtn1.active span:nth-of-type(1) {
    top: 18px;
    left: 18px;
    transform: translateY(6px) rotate(-45deg);
    width: 30%;
}
.openbtn1.active span:nth-of-type(2) {
  opacity: 0;
}
.openbtn1.active span:nth-of-type(3){
    top: 30px;
    left: 18px;
    transform: translateY(-6px) rotate(45deg);
    width: 30%;
}
/*========= ハンバーガーメニューcssここまで ===============*/
/*========= 主な機能 ===============*/
  #function ul li {
		width: calc((100% - 50px) / 2);
	}
	#function ul li:nth-child(3n) {
		margin-right: 50px;
	}
	#function ul li:nth-child(2n) {
		margin-right: 0;
	}
}

@media screen and (max-width: 768px) {
  .pc {
    display: none;
  }
  .sp {
    display: block;
  }
  .header-btn-box {
    padding: 0;
  }
  a.header-btn {
    width: calc(100% / 3);
    height: 60px;
    border-radius: 0;
    font-size: 12px;
    margin-right: 0;
  }
  .header-btn.tel{
    background: #F38200 url(../images/rinsyo/icon_white_01.png) no-repeat 10px center / 22px auto;
    padding: 10px 10px 10px 32px;
  }
  .header-btn.mail{
    background: #E63000 url(../images/rinsyo/icon_white_02.png) no-repeat 10px center / 22px auto;
    padding: 10px 10px 10px 32px;
  }
  .header-btn.paper{
    background: #5FACE2 url(../images/rinsyo/icon_white_03.png) no-repeat 10px center / 20px auto;
    padding: 10px 10px 10px 32px;
  }
  .header-logo {
    width: 200px;
    margin-right: auto;
  }
  .pagetop {
    height: 40px;
    width: 40px;
    right: 15px;
    bottom: 15px;
  }
  /* トップ */
  #top {
    height: 500px;
    background-size: cover;
  }
  .logo_box {
    width: 90%;
    right: 10px;
  }
  .top_logo{
    margin-bottom: 30px;
  }
  .top_logo img{
    max-width: 320px;
  }
  #top p {
    font-size: 30px;
  }
  .problem {
    display: block;
    margin-bottom: 60px;
  }
  .problem_inner {
    width: 100%;
    margin-right: 0;
  }
  .problem_inner dl dt{
    font-size: 24px;
    margin-bottom: 16px;
  }
  .problem_inner dl dd{
    font-size: 22px;
  }
  .blue-text {
    font-size: 26px;
  }
  .blue-text img{
    width: 200px;
  }
  h2 {
    font-size: 34px;
    margin-bottom: 60px;
  }
  #toha h3{
    font-size: 32px;
    border-bottom: 6px solid;
    margin-bottom: 40px;
  }
  #toha h3 img{
    width: 220px;
  }
  #toha p{
    font-size: 24px;
  }
  .concept-circle {
    display: block;
  }
  .concept-circle li{
    width: 100%;
    margin: 0 auto 60px;
  }
  .concept-box-title {
    font-size: 24px;
  }
  .concept-box-inner {
    display: block;
    padding: 20px 25px;
  }
  .concept-box-inner .inner-left {
    width: 100%;
    margin-right: 0;
    margin-bottom: 10px;
  }
  .concept-box-inner .inner-right {
    width: 100%;
  }
  .menu-item {
    font-size: 14px;
    padding: 3px 7px;
  }
  #function ul li{
    width: 100%;
    height: auto;
    padding: 75px 40px 40px;
    margin: 0 auto 70px;
  }
	#function ul li:nth-child(3n),
  #function ul li:nth-child(2n) {
		margin-right: 0;
	}
  #function ul li.function-sub {
    margin-bottom: 0;
  }
  .point-inner {
    display: block;
  }
  .point-inner .inner-right{
    width: 100%;
    text-align: center;
  }
  .point-inner .inner-right p.point-right-title{
    font-size: 30px;
    margin-bottom: 15px;
  }
  .point-inner .inner-right p{
    font-size: 18px;
  }
  .point-inner .inner-left {
    width: 100px;
    height: 100px;
    margin: 0 auto 20px;
  }
  .point-inner2 ,
  .point-inner3 {
    display: block;
    margin-bottom: 0;
  }
  .point-inner2-img{
    width: 100%;
    margin: 0 auto 30px;
  }
  .point-inner-title {
    font-size: 22px;
    margin-bottom: 10px;
  }
  .point-inner3-img {
    width: 80%;
    margin: 0 auto 30px;
  }
  .point-inner3-text {
    width: 100%;
  }
  .flow-box li {
    width: calc( (100% - 60px) / 2);
    margin-right: 30px;
    margin-bottom: 30px;
  }
  .flow-box li:nth-child(2n),
  .flow-box li:last-child {
    margin-right: 0;
  }
  .flow-box li::after {
    content: "";
    position: absolute;
    top: 50%;
    left: -25px;
    transform: translateY(-50%);
    border-left: 15px solid #091453;
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
  }
  .flow-box-title {
    font-size: 22px;
    padding: 10px;
  }
  .flow-box-title b{
    font-size: 32px;
  }
  .flow-box-inner {
    padding: 20px 5px 10px;
  }
  .flow-icon {
    height: 40px;
    margin-bottom: 8px;
  }
  .flow-text {
    font-size: 16px;
    height: 50px;
  }
  .voice-icon {
    width: 60px;
    height: auto;
    display: flex;
    align-items: center;
  }
  .voice-1 .voice-icon {
    margin-right: 20px;
  }
  .voice-2 .voice-icon {
    margin-left: 20px;
  }
  .voice-text {
    width: calc(100% - 80px);
    font-size: 16px;
    padding: 15px;
  }
  .voice-1 .voice-text::after {
    left: -10px;
    border-right: 10px solid #fff;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
  }
  .voice-2 .voice-text::after {
    right: -10px;
    border-left: 10px solid #fff;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
  }

  .QA-cate {
    font-size: 22px;
    padding: 10px 20px;
  }
  .QA-title {
    font-size: 20px;
    padding: 10px 60px 10px 10px;
  }
  .QA-title:before {
    right: 15px;
    height: 3px;
    width: 20px;
  }
  .QA-title:after {
    right: 15px;
    height: 3px;
    width: 20px;
  }
  .QA-title p{
    padding-left: 40px;
    text-indent: -40px;
  }
  .QA-title p:before{
    width: 30px;
    height: 30px;
    margin-right: 10px;
  }
  .QA-text {
    padding: 20px 20px 20px 50px;
  }

  .footer-text1 {
  font-size: 30px;
  }
  .footer-text2 {
    font-size: 20px;
  }
  .footer-text3,.footer-text4  {
    font-size: 24px;
  }
  .footer-text5 {
    font-size: 16px;
  }
  .footer-text3:before {
    width: 24px;
    height: 30px;
  }
  a.footer-btn{
    font-size:24px;
    padding: 10px;
    margin: 0 auto 20px;
  }
  a.footer-btn.paper:before {
    width: 30px;
    height: 36px;
    margin: -0.3rem 10px 0 0;
  }
  a.footer-btn.mail:before {
    width: 36px;
    height: 26px;
    margin: -0.3rem 10px 0 0;
  }
  .white {
    padding: 20px;
  }
  .white img{
    width: 120px;
  }
}