@charset "UTF-8";
html {
  font-size: 62.5%;
  /* 16px * 62.5% = 10px */
  width: 100%;
}

body {
  font-weight: 400;
  font-size: 1.6em;
  font-family: "游ゴシック", "Yu Gothic", "游ゴシック体", YuGothic,"游ゴシック Medium", "Yu Gothic Medium", sans-serif ,noto-serif, serif;
  color: #000000;
  background: #ffffff;
  letter-spacing: 0.075em;
}

.inner {
  max-width: 1100px;
  margin: 0 auto;
  width: 95%;
}

.inner02 {
  max-width: 1600px;
  width: 95%;
}

a {
  transition: all 0.3s;
}

a.linkpdf {
  text-decoration: underline;
  color: #009152;
}

a:hover.linkpdf {
  text-decoration: none;
  color: #009152;
}

h2 {
  text-align: center;
  font-size: 3.8rem;
  font-weight: bold;
  position: relative;
  display: inline-block;
  padding: 0 70px;
  margin-bottom: 80px;
}

@media (max-width: 768px) {
  h2 {
    font-size: 2rem;
    padding: 0 50px;
    margin-bottom: 60px;
  }
}

h2::before {
  position: absolute;
  content: "";
  top: 0;
  bottom: 0;
  margin: auto;
  background: url(../img/ttl01.png) no-repeat;
  width: 27px;
  height: 100px;
  left: 0;
}

@media (max-width: 768px) {
  h2::before {
    height: 60px;
    background-size: contain;
  }
}

h2::after {
  position: absolute;
  content: "";
  top: 0;
  bottom: 0;
  margin: auto;
  background: url(../img/ttl02.png) no-repeat;
  width: 27px;
  height: 100px;
  right: 0;
}

@media (max-width: 768px) {
  h2::after {
    height: 60px;
    background-size: contain;
  }
}

h2 span {
  display: block;
  font-size: 1.4rem;
  color: #009152;
  margin-bottom: 15px;
}

@media (max-width: 768px) {
  h2 span {
    font-size: 1.1rem;
    margin-bottom: 10px;
  }
}

h3 {
  font-weight: bold;
  font-size: 3rem;
  border-top: solid 2px #dcdcdc;
  position: relative;
  padding: 30px 0 40px;
  line-height: 1.4;
}

@media (max-width: 768px) {
  h3 {
    font-size: 2rem;
    padding: 20px 0 30px;
  }
}

h3::after {
  position: absolute;
  content: "";
  display: block;
  border-top: solid 2px #009152;
  top: -2px;
  width: 7%;
}

header {
  padding: 30px 40px;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 700;
  background: #ffffff9e;
}

@media (max-width: 1100px) {
  header {
    padding: 15px 20px;
    position: fixed;
    top: 0;
    z-index: 700;
  }
}

header .header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

@media (max-width: 768px) {
  header .header-content h1 img {
    width: 200px;
  }
}

@media (max-width: 1100px) {
  header #navArea nav {
    display: none;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    background: white;
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    z-index: 600;
  }
}

@media (max-width: 1100px) {
  header #navArea nav .navWrap {
    margin: 0 auto;
    text-align: center;
    padding: 100px 0;
  }
}

header #navArea nav .navWrap ul {
  display: flex;
}

@media (max-width: 1100px) {
  header #navArea nav .navWrap ul {
    flex-direction: column;
    align-items: center;
  }
}

header #navArea nav .navWrap ul li {
  margin-right: 30px;
}

@media (max-width: 1100px) {
  header #navArea nav .navWrap ul li {
    margin-right: 0;
    margin-bottom: 40px;
  }
}

header #navArea nav .navWrap ul li:last-child {
  margin-right: 0;
}

header #navArea nav .navWrap ul li a {
  transform: all 0.3s;
}

header #navArea nav .navWrap ul li a:hover {
  opacity: 0.7;
}

@media (max-width: 1100px) {
  header #navArea nav .navWrap ul .contactBtn {
    padding-top: 15px;
  }
}

header #navArea nav .navWrap ul .contactBtn a {
  background: #009152;
  border-radius: 25px;
  padding: 15px 40px;
  color: #ffffff;
  border: solid 1px #009152;
}

header #navArea nav .navWrap ul .contactBtn a:hover {
  color: #009152;
  background: #fff;
  opacity: 1;
}

@media (max-width: 1100px) {
  header {
    /*============
.toggle_btn
=============*/
  }
  header .toggle_btn {
    display: block;
    position: fixed;
    top: 19px;
    right: 20px;
    width: 30px;
    height: 30px;
    transition: all 0.5s;
    cursor: pointer;
    z-index: 3;
    z-index: 600;
  }
  header .toggle_btn span {
    display: block;
    position: absolute;
    left: 0;
    width: 30px;
    height: 1px;
    background-color: #000;
    border-radius: 4px;
    transition: all 0.5s;
  }
  header .toggle_btn span:nth-child(1) {
    top: 4px;
  }
  header .toggle_btn span:nth-child(2) {
    top: 14px;
  }
  header .toggle_btn span:nth-child(3) {
    bottom: 4px;
  }
  header .open .toggle_btn span {
    background-color: #000;
  }
  header .open .toggle_btn span:nth-child(1) {
    transform: rotate(-315deg);
    top: 15px;
  }
  header .open .toggle_btn span:nth-child(2) {
    opacity: 0;
  }
  header .open .toggle_btn span:nth-child(3) {
    transform: rotate(315deg);
    top: 15px;
  }
}

#main {
  background: url(../img/kv.png) no-repeat;
  background-size: cover;
  position: relative;
  z-index: 0;
  background-position: center top;
  height: 100vh;
  /*Scrollテキストの描写*/
  /* 丸の描写 */
  /*下からの距離が変化して丸の全体が上から下に動く*/
  /*上から下にかけて丸が透過→不透明→透過する*/
  /* 線の描写 */
}

@media (max-width: 1100px) {
  #main {
    height: inherit;
  }
}

#main .mainWrap {
  padding: 750px 0 150px 100px;
}

@media (max-width: 1100px) {
  #main .mainWrap {
    padding: 400px 0 50px 20px;
  }
}

@media (max-width: 768px) {
  #main .mainWrap {
    padding: 300px 0 20px 20px;
  }
}

#main .mainWrap h1 {
  font-size: 4.2rem;
  color: #009152;
  font-family: a-otf-ryumin-pr6n, serif;
  display: inline-block;
  position: absolute;
  bottom: 100px;
}

@media (max-width: 1100px) {
  #main .mainWrap h1 {
    position: relative;
    font-size: 2rem;
    bottom: 0;
  }
}

#main .mainWrap h1 span {
  background: #ffffff;
  display: inline-block;
  padding: 20px 30px;
  margin-bottom: 20px;
}

@media (max-width: 1100px) {
  #main .mainWrap h1 span {
    padding: 10px 15px;
  }
}

@media (max-width: 768px) {
  #main .mainWrap h1 span {
    margin-bottom: 10px;
  }
}

#main .scrolldown2 {
  /*描画位置※位置は適宜調整してください*/
  position: absolute;
  bottom: 10px;
  right: 50px;
  font-family: a-otf-ryumin-pr6n, serif;
}

@media (max-width: 768px) {
  #main .scrolldown2 {
    right: 30px;
  }
}

@media (max-width: 520px) {
  #main .scrolldown2 {
    right: 20px;
  }
}

#main .scrolldown2 span {
  /*描画位置*/
  position: absolute;
  right: -10px;
  bottom: 90px;
  /*テキストの形状*/
  color: #fff;
  font-size: 1.4rem;
  letter-spacing: 0.05em;
  /*縦書き設定*/
  writing-mode: vertical-rl;
}

@media (max-width: 768px) {
  #main .scrolldown2 span {
    font-size: 1.2rem;
    right: -7px;
  }
}

@media (max-width: 520px) {
  #main .scrolldown2 span {
    font-size: 1rem;
  }
}

#main .scrolldown2:before {
  content: "";
  /*描画位置*/
  position: absolute;
  bottom: 0;
  left: -4px;
  /*丸の形状*/
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #fff;
  /*丸の動き1.6秒かけて透過し、永遠にループ*/
  animation: circlemove 2.6s ease-in-out infinite,
 cirlemovehide 2.6s ease-out infinite;
}

@keyframes circlemove {
  0% {
    bottom: 75px;
  }
  100% {
    bottom: -5px;
  }
}

@keyframes cirlemovehide {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  80% {
    opacity: 0.9;
  }
  100% {
    opacity: 0;
  }
}

#main .scrolldown2:after {
  content: "";
  /*描画位置*/
  position: absolute;
  bottom: 0;
  left: 0;
  /*線の形状*/
  width: 1px;
  height: 80px;
  background: #fff;
}

#message {
  padding: 160px 0 180px;
  text-align: center;
}

@media (max-width: 768px) {
  #message {
    padding: 80px 0 80px;
  }
}

#message p {
  font-size: 1.8rem;
  line-height: 1.75;
}

@media (max-width: 768px) {
  #message p {
    font-size: 1.6rem;
  }
}

#message p span {
  font-family: a-otf-ryumin-pr6n, serif;
  color: #009152;
  font-size: 3rem;
  margin-bottom: 40px;
  display: block;
}

@media (max-width: 768px) {
  #message p span {
    font-size: 1.8rem;
    margin-bottom: 20px;
  }
}

#business {
  padding: 100px 0 120px;
  text-align: center;
  background: url(../img/bg02.png) repeat-x;
}

@media (max-width: 768px) {
  #business {
    padding: 80px 0;
  }
}

@media (max-width: 1100px) {
  #business .inner02 {
    margin: 0 auto;
    width: 95%;
  }
}

#business .businessList {
  text-align: left;
}

#business .businessList > li {
  margin-bottom: 100px;
}

@media (max-width: 768px) {
  #business .businessList > li {
    margin-bottom: 50px;
  }
}

#business .businessList > li:last-child {
  margin-bottom: 0;
}

#business .businessList > li > dl {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
}

@media (max-width: 1100px) {
  #business .businessList > li > dl {
    flex-direction: column;
  }
}

#business .businessList > li > dl dt {
  width: 40%;
}

@media (max-width: 1100px) {
  #business .businessList > li > dl dt {
    margin-bottom: 30px;
    width: 60%;
  }
}

@media (max-width: 768px) {
  #business .businessList > li > dl dt {
    width: 100%;
  }
}

#business .businessList > li > dl dt img {
  width: 100%;
}

#business .businessList > li > dl dd {
  width: 60%;
  padding-left: 100px;
}

@media (max-width: 1100px) {
  #business .businessList > li > dl dd {
    padding-left: 0;
    width: 100%;
  }
}

#business .businessList > li > dl dd ul {
  font-size: 1.8rem;
  margin-bottom: 60px;
}

@media (max-width: 768px) {
  #business .businessList > li > dl dd ul {
    font-size: 1.6rem;
  }
}

#business .businessList > li > dl dd ul li {
  position: relative;
  margin-left: 20px;
  margin-bottom: 30px;
  padding-left: 20px;
  text-indent: -20px;
}

@media (max-width: 768px) {
  #business .businessList > li > dl dd ul li {
    margin-bottom: 15px;
  }
}

#business .businessList > li > dl dd ul li:last-child {
  margin-bottom: 0;
}

#business .businessList > li > dl dd ul li::before {
  position: absolute;
  content: "";
  width: 10px;
  height: 10px;
  background-color: #009152;
  border-radius: 50%;
  margin: auto;
  top: 0;
  bottom: 0;
  left: -20px;
}

#business .businessList > li > dl dd table {
  margin-top: 60px;
  width: 100%;
}

@media (max-width: 768px) {
  #business .businessList > li > dl dd table {
    margin-top: 40px;
  }
}

#business .businessList > li > dl dd table caption {
  font-weight: bold;
  font-size: 2.2rem;
  color: #009152;
  margin-bottom: 30px;
}

@media (max-width: 768px) {
  #business .businessList > li > dl dd table caption {
    font-size: 1.8rem;
    margin-bottom: 20px;
  }
}

#business .businessList > li > dl dd table tr {
  border-bottom: solid 1px #d8f0e6;
}

@media (max-width: 768px) {
  #business .businessList > li > dl dd table tr {
    display: flex;
    flex-direction: column;
  }
}

#business .businessList > li > dl dd table tr th {
  font-weight: 400;
  width: 40%;
  padding: 20px;
}

@media (max-width: 768px) {
  #business .businessList > li > dl dd table tr th {
    width: 100%;
    background: #eafbf3;
    padding: 15px;
  }
}

#business .businessList > li > dl dd table tr td {
  width: 60%;
  padding: 20px;
}

@media (max-width: 768px) {
  #business .businessList > li > dl dd table tr td {
    width: 100%;
    padding: 15px;
  }
}

#business .businessList .list02 p {
  margin-bottom: 30px;
  font-size: 1.8rem;
}

@media (max-width: 768px) {
  #business .businessList .list02 p {
    font-size: 1.7rem;
  }
}

#feature {
  text-align: center;
  background: url(../img/bg.png);
  padding-top: 120px;
}

@media (max-width: 768px) {
  #feature {
    padding-top: 80px;
  }
}

#feature ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 100px;
}

@media (max-width: 768px) {
  #feature ul {
    flex-direction: column;
    margin-bottom: 50px;
  }
}

#feature ul li {
  width: calc(98%/2);
  background: #fff;
  padding: 30px 40px;
  display: flex;
  text-align: left;
  margin-bottom: 20px;
}

@media (max-width: 1100px) {
  #feature ul li {
    padding: 20px 15px;
  }
}

@media (max-width: 768px) {
  #feature ul li {
    width: 100%;
    align-items: center;
  }
}

#feature ul li .img {
  padding-right: 50px;
}

@media (max-width: 1100px) {
  #feature ul li .img {
    padding-right: 20px;
  }
}

@media (max-width: 768px) {
  #feature ul li .img img {
    width: 70px;
  }
}

#feature ul li p {
  line-height: 1.75;
  font-size: 1.4rem;
}

#feature ul li p span {
  color: #009152;
  font-weight: bold;
  display: block;
  margin-bottom: 20px;
  line-height: 1;
  font-size: 1.8rem;
}

@media (max-width: 768px) {
  #feature ul li p span {
    font-size: 1.7rem;
    margin-bottom: 10px;
  }
}

#feature .inner02 {
  margin: 0 auto;
  width: 100%;
}

#feature dl {
  display: flex;
  flex-wrap: wrap;
  text-align: left;
}

@media (max-width: 768px) {
  #feature dl {
    flex-direction: column;
  }
}

#feature dl div {
  width: calc(100%/2);
  color: #fff;
  display: flex;
  padding: 300px 40px 50px;
}

@media (max-width: 1100px) {
  #feature dl div {
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  #feature dl div {
    width: 100%;
    padding: 150px 20px 30px;
  }
}

#feature dl div dt {
  width: 23%;
  font-weight: bold;
  font-size: 2rem;
}

@media (max-width: 1100px) {
  #feature dl div dt {
    width: 100%;
    margin-bottom: 20px;
  }
}

@media (max-width: 768px) {
  #feature dl div dt {
    font-size: 1.8rem;
    margin-bottom: 10px;
  }
}

#feature dl div dt span {
  font-size: 1.4rem;
  display: block;
}

@media (max-width: 768px) {
  #feature dl div dt span {
    font-size: 1.2rem;
  }
}

#feature dl div dd {
  width: 77%;
  line-height: 1.75;
}

@media (max-width: 1100px) {
  #feature dl div dd {
    width: 100%;
  }
}

@media (max-width: 768px) {
  #feature dl div dd {
    font-size: 1.4rem;
  }
}

#feature dl .item01 {
  background: url(../img/feature01.png) no-repeat;
  background-size: cover;
}

#feature dl .item02 {
  background: url(../img/feature02.png) no-repeat;
  background-size: cover;
}

#feature dl .item03 {
  background: url(../img/feature03.png) no-repeat;
  background-size: cover;
}

#feature dl .item04 {
  background: url(../img/feature04.png) no-repeat;
  background-size: cover;
}

#company {
  text-align: center;
  padding: 120px 0;
}

@media (max-width: 768px) {
  #company {
    padding: 80px  0;
  }
}

#company .mission, #company .overview {
  text-align: left;
}

#company .mission {
  margin-bottom: 80px;
}

@media (max-width: 768px) {
  #company .mission {
    margin-bottom: 40px;
  }
}

#company .mission ul li {
  margin-bottom: 30px;
  line-height: 1.75;
  margin-left: 40px;
  position: relative;
  font-size: 1.8rem;
}

@media (max-width: 768px) {
  #company .mission ul li {
    margin-left: 20px;
    margin-bottom: 10px;
  }
}

#company .mission ul li:last-child {
  margin-bottom: 0;
}

#company .mission ul li::before {
  position: absolute;
  content: "";
  width: 10px;
  height: 10px;
  background-color: #009152;
  border-radius: 50%;
  margin: auto;
  top: 10px;
  left: -20px;
}

#company .overviewWrap {
  display: flex;
  justify-content: space-between;
}

@media (max-width: 768px) {
  #company .overviewWrap {
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  #company .overviewWrap iframe {
    width: 100% !important;
  }
}

#company .overviewWrap table {
  width: 68%;
}

@media (max-width: 768px) {
  #company .overviewWrap table {
    width: 100%;
  }
}

#company .overviewWrap table tr {
  border-bottom: solid 1px #dcdcdc;
  line-height: 1.75;
}

@media (max-width: 768px) {
  #company .overviewWrap table tr {
    display: flex;
    flex-direction: column;
  }
}

#company .overviewWrap table tr th {
  background: #eafbf3;
  padding: 20px;
  font-weight: 400;
  width: 25%;
}

@media (max-width: 768px) {
  #company .overviewWrap table tr th {
    padding: 15px;
    width: 100%;
  }
}

#company .overviewWrap table tr td {
  padding: 20px;
  width: 65%;
}

@media (max-width: 768px) {
  #company .overviewWrap table tr td {
    padding: 15px;
    width: 100%;
  }
}

@media (max-width: 768px) {
  #company .overviewWrap table tr td a {
    border-bottom: solid 1px #000;
  }
}

@media (max-width: 768px) {
  #company .overviewWrap table tr td a:hover {
    border-bottom: solid 1px #fff;
  }
}

#company .overviewWrap .iframe {
  width: 28%;
}

@media (max-width: 768px) {
  #company .overviewWrap .iframe {
    width: 300px;
    margin: 30px auto 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
}

#company .overviewWrap .iframe iframe {
  text-align: center;
}

#company .overviewWrap .iframe ul {
  margin-top: 20px;
}

#company .overviewWrap .iframe ul li {
  margin-bottom: 10px;
}

#company .overviewWrap .iframe ul li a {
  transition: all 0.3s;
}

#company .overviewWrap .iframe ul li a:hover {
  opacity: 0.7;
}

#contact {
  text-align: center;
  padding: 120px 0;
  background: url(../img/bg.png);
}

#contact table {
  width: 100%;
}

#contact table tr {
  display: flex;
  align-items: center;
  margin-bottom: 50px;
}

@media (max-width: 768px) {
  #contact table tr {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    margin-bottom: 30px;
  }
}

#contact table tr.textarea {
  align-items: flex-start;
}

#contact table tr.textarea textarea {
  min-height: 150px;
}

#contact table tr th {
  width: 30%;
  text-align: right;
}

@media (max-width: 768px) {
  #contact table tr th {
    width: 100%;
    text-align: left;
    margin-bottom: 15px;
  }
}

#contact table tr th span {
  margin-left: 30px;
  padding: 7px 15px;
  background-color: #e6e6e6;
  color: #777777;
  border-radius: 5px;
  font-size: 1.1rem;
}

@media (max-width: 768px) {
  #contact table tr th span {
    margin-left: 20px;
  }
}

#contact table tr th span.red {
  background-color: #d10000;
  color: #fff;
}

#contact table tr td {
  width: 65%;
  margin-left: 60px;
  text-align: left;
}

@media (max-width: 768px) {
  #contact table tr td {
    margin-left: 0;
    width: 100%;
  }
}

#contact table tr td p {
  color: #d10000;
  font-size: 1.4rem;
  text-align: left;
  margin-bottom: 5px;
}

#contact table tr td input, #contact table tr td textarea {
  width: 100%;
  padding: 20px;
  border-radius: 5px;
  border: solid 1px #cccccc;
  color: #000;
  letter-spacing: 0.075em;
}

#contact .btn button {
  background-color: #009152;
  border: solid 1px #009152;
  color: #fff;
  padding: 30px 10px;
  max-width: 400px;
  width: 100%;
  font-size: 1.6rem;
  letter-spacing: 0.075em;
  border-radius: 15px;
  transition: all 0.3s;
  cursor: pointer;
  margin: 40px auto 0;
}

@media (max-width: 768px) {
  #contact .btn button {
    width: 90%;
    margin: 20px auto 0;
  }
}

#contact .btn button:hover {
  background: #fff;
  color: #009152;
}

#contact .comfirm-btn {
  display: flex;
  flex-direction: column;
}

#contact .comfirm-btn .return {
  background: #fff;
  color: #009152;
}

#contact .comfirm-btn .return:hover {
  background: #009152;
  color: #ffffff;
}

#thanks {
  text-align: center;
  padding: 230px 0 180px;
  background: url(../img/bg.png);
}

#thanks p {
  line-height: 1.75;
}

@media (max-width: 768px) {
  #thanks p {
    font-size: 1.4rem;
  }
}

#thanks .topBtn a {
  display: inline-block;
  background-color: #009152;
  border: solid 1px #009152;
  color: #fff;
  padding: 30px 10px;
  max-width: 400px;
  width: 100%;
  font-size: 1.6rem;
  letter-spacing: 0.075em;
  border-radius: 15px;
  transition: all 0.3s;
  cursor: pointer;
  margin: 70px auto 0;
}

#thanks .topBtn a:hover {
  background: #fff;
  color: #009152;
}

footer {
  background: #009152;
}

footer .footerWrap {
  display: flex;
  justify-content: space-between;
  color: #fff;
}

@media (max-width: 768px) {
  footer .footerWrap {
    flex-direction: column;
  }
}

footer .footerWrap dl {
  display: flex;
  padding: 50px 0;
  width: 90%;
}

@media (max-width: 1100px) {
  footer .footerWrap dl {
    width: 85%;
  }
}

@media (max-width: 768px) {
  footer .footerWrap dl {
    flex-direction: column;
    width: 100%;
    padding: 20px 0 0;
  }
}

footer .footerWrap dl dt {
  display: flex;
  padding-right: 100px;
  border-right: solid 1px #fff;
  align-items: center;
  width: 45%;
}

@media (max-width: 1100px) {
  footer .footerWrap dl dt {
    padding-right: 30px;
    width: 57%;
  }
}

@media (max-width: 768px) {
  footer .footerWrap dl dt {
    width: 100%;
    border-right: none;
    padding-right: 0;
    align-items: center;
    padding-left: 20px;
  }
}

footer .footerWrap dl dt .img {
  padding-right: 45px;
}

footer .footerWrap dl dt p {
  font-size: 1.3rem;
  line-height: 1.75;
}

footer .footerWrap dl dd {
  width: 55%;
  padding-left: 45px;
}

@media (max-width: 1100px) {
  footer .footerWrap dl dd {
    width: 43%;
    padding-left: 30px;
  }
}

@media (max-width: 768px) {
  footer .footerWrap dl dd {
    width: 100%;
    margin-top: 20px;
    padding-left: 20px;
  }
}

footer .footerWrap dl dd ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding-top: 10px;
}

@media (max-width: 1100px) {
  footer .footerWrap dl dd ul {
    flex-direction: column;
  }
}

footer .footerWrap dl dd ul li {
  width: calc(100%/2);
  padding-left: 25px;
  position: relative;
  margin-bottom: 30px;
  font-size: 1.2rem;
}

@media (max-width: 1100px) {
  footer .footerWrap dl dd ul li {
    width: 100%;
  }
}

@media (max-width: 768px) {
  footer .footerWrap dl dd ul li {
    margin-bottom: 10px;
  }
}

footer .footerWrap dl dd ul li::before {
  position: absolute;
  content: "";
  width: 15px;
  height: 1px;
  margin: auto;
  top: 0;
  bottom: 0;
  left: 0;
  background: #fff;
}

footer .footerWrap dl dd ul li a {
  transition: all 0.3s;
}

footer .footerWrap dl dd ul li a:hover {
  opacity: 0.7;
}

footer .footerWrap .right {
  width: 10%;
  text-align: right;
}

@media (max-width: 1100px) {
  footer .footerWrap .right {
    width: 15%;
  }
}

@media (max-width: 768px) {
  footer .footerWrap .right {
    width: 100%;
    margin-top: -60px;
  }
}

@media (max-width: 768px) {
  footer .footerWrap .right .img {
    text-align: right;
  }
}

footer .footerWrap .right .img img {
  width: 100%;
  max-width: 120px;
}

@media (max-width: 768px) {
  footer .footerWrap .right .img img {
    width: 100px;
  }
}

footer .footerWrap .right small {
  margin-top: 30px;
  text-align: right;
  font-size: 1rem;
  display: block;
}

@media (max-width: 768px) {
  footer .footerWrap .right small {
    margin-top: 10px;
    padding-bottom: 20px;
  }
}
