@charset "UTF-8";
/*=====================================================
* common
*/
@font-face {
  font-family: "Frutiger Roman";
  src: url(/assets/font/Frutiger-Roman.otf);
}

body {
  background-image: url(/assets/img/body.jpg);
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
}

a {
  transition: .4s all;
}

a:hover {
  opacity: .7;
}

.wrapper {
  width: 100%;
  padding: 0 0 0 163px;
  box-sizing: border-box;
}

.pc-view {
  display: block;
}

.sp-view {
  display: none;
}

@media screen and (max-width: 48em) {
  .pc-view {
    display: none;
  }
  .sp-view {
    display: block;
  }
  .wrapper {
    width: 100%;
    padding: 0;
    box-sizing: border-box;
  }
}

/*=====================================================
* header
*/
header {
  position: relative;
  height: 145px;
  width: 100%;
  padding: 41px 50px 0 40px;
  box-sizing: border-box;
  background-color: #fff;
  z-index: 10;
}

header .menu-trigger {
  position: absolute;
  top: 41px;
  right: 50px;
  width: 64px;
  height: 35px;
}

header .menu-trigger,
header .menu-trigger span {
  display: inline-block;
  transition: all .4s;
  box-sizing: border-box;
}

header .menu-trigger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #221815;
}

header .menu-trigger span:nth-of-type(1) {
  top: 0;
}

header .menu-trigger span:nth-of-type(2) {
  top: 17px;
}

header .menu-trigger span:nth-of-type(3) {
  bottom: 0;
}

header .menu-trigger::after {
  position: absolute;
  left: 0;
  bottom: -28px;
  content: '';
  display: block;
  width: 100%;
  height: 14px;
  transition: all .4s;
  background: url(/assets/img/menu.png) no-repeat;
}

header .menu-trigger.active::after {
  content: '';
  background: url(/assets/img/close.png) no-repeat;
  bottom: -25px;
}

header .menu-trigger.active span:nth-of-type(1) {
  -webkit-transform: translateY(16px) rotate(-24deg);
  transform: translateY(16px) rotate(-24deg);
}

header .menu-trigger.active span:nth-of-type(2) {
  opacity: 0;
}

header .menu-trigger.active span:nth-of-type(3) {
  -webkit-transform: translateY(-16px) rotate(24deg);
  transform: translateY(-16px) rotate(24deg);
}

@media screen and (max-width: 48em) {
  header {
    position: relative;
    height: 52.5px;
    padding: 12px 8px;
    box-sizing: border-box;
  }
  header .head-logo {
    width: 151px;
  }
  header .menu-trigger {
    position: absolute;
    top: 16px;
    right: 10px;
    width: 26px;
    height: 14px;
  }
  header .menu-trigger span:nth-of-type(1) {
    top: 0;
  }
  header .menu-trigger span:nth-of-type(2) {
    top: 6px;
  }
  header .menu-trigger span:nth-of-type(3) {
    bottom: 0;
  }
  header .menu-trigger::after {
    bottom: -10px;
    width: 100%;
    height: 6px;
    background: url(/assets/img/menu.png) no-repeat center;
    background-size: 100% auto;
  }
  header .menu-trigger.active::after {
    content: '';
    background: url(/assets/img/close.png) no-repeat;
    background-size: 100% auto;
    bottom: -10px;
  }
  header .menu-trigger.active span:nth-of-type(1) {
    -webkit-transform: translateY(6px) rotate(-24deg);
    transform: translateY(6px) rotate(-24deg);
  }
  header .menu-trigger.active span:nth-of-type(2) {
    opacity: 0;
  }
  header .menu-trigger.active span:nth-of-type(3) {
    -webkit-transform: translateY(-6px) rotate(24deg);
    transform: translateY(-6px) rotate(24deg);
  }
}

/*=====================================================
*  g-nav
*/
.g-nav {
  display: none;
  position: absolute;
  width: 100%;
  height: 115px;
  background: #0b0b0b;
  z-index: 10;
  padding: 50px 0 0 166px;
  box-sizing: border-box;
}

.g-nav ul {
  display: flex;
}

.g-nav ul li {
  margin: 0 80px 0 0;
  position: relative;
}

.g-nav ul li::before {
  content: "";
  display: block;
  position: absolute;
  top: 1px;
  left: 0;
  width: 2px;
  height: 16px;
  background-color: #fff;
}

.g-nav ul li:hover::before {
  transition: .4s all;
  background-color: #ff944e;
}

.g-nav ul li a {
  font-family: "Frutiger Roman";
  padding: 0 0 0 8px;
  color: #fff;
  line-height: 1;
  font-size: 17px;
}

.g-nav ul li a:hover {
  opacity: 1;
  color: #ff944e;
}

@media screen and (max-width: 48em) {
  .g-nav {
    width: 100%;
    height: auto;
    padding: 0;
    box-sizing: border-box;
  }
  .g-nav ul {
    display: block;
  }
  .g-nav ul li {
    margin: 0;
    border-bottom: 1px solid #818181;
  }
  .g-nav ul li::before {
    content: "";
    display: block;
    position: absolute;
    top: 25px;
    left: 10px;
    width: 2px;
    height: 16px;
    background-color: #fff;
  }
  .g-nav ul li:hover::before {
    transition: .4s all;
    background-color: #ff944e;
  }
  .g-nav ul li a {
    font-family: "Frutiger Roman";
    padding: 25px 0 25px 18px;
    display: block;
    box-sizing: border-box;
    font-size: 15px;
  }
  .g-nav ul li a:hover {
    opacity: 1;
    color: #ff944e;
  }
}

/*=====================================================
* mv
*/
.mv {
  position: relative;
}

.mv .mv-img {
  width: 100% !important;
}

.mv .mv-text {
  position: absolute;
  top: 76px;
  left: 8.2%;
}

.mv .copy {
  position: absolute;
  bottom: 31px;
  left: 26px;
}

.mv .mv-topics {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 300px;
  min-height: 331px;
  padding: 20px 0 0;
  box-sizing: border-box;
  color: #fff;
  background-color: rgba(0, 0, 0, 0.7);
}

.mv .mv-topics h3,
.mv .mv-topics .date {
  font-size: 14px;
  line-height: 1;
  font-weight: bold;
  padding: 0 31px 0;
}

.mv .mv-topics h3 {
  border-bottom: 1px solid #fff;
  padding-bottom: 16px;
  margin: 0 0 30px;
  letter-spacing: 1.4px;
}

.mv .mv-topics p {
  padding: 15px 31px 0;
  font-size: 14px;
  line-height: 1.7;
}

.mv .mv-topics .more {
  position: absolute;
  bottom: 39px;
  left: 116px;
  color: #fff;
}

@media screen and (max-width: 48em) {
  .mv .mv-text {
    position: absolute;
    width: 271.5px;
    top: 35px;
    left: 14px;
  }
  .mv .mv-topics {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    min-height: initial;
    padding: 15px 20px 0;
    box-sizing: border-box;
  }
  .mv .mv-topics h3,
  .mv .mv-topics .date {
    font-size: 12px;
    padding: 0 0 10px;
  }
  .mv .mv-topics h3 {
    padding-bottom: 5px;
    padding-left: 0;
    margin: 0 0 15px;
    letter-spacing: 1.4px;
  }
  .mv .mv-topics p {
    padding: 0px 0 21px;
    font-size: 12px;
    line-height: 1.8;
  }
  .mv .mv-topics .more {
    position: absolute;
    bottom: 2px;
    left: 55px;
    color: #fff;
  }
}

/*=====================================================
* contents
*/
main {
  position: relative;
}

.contents {
  width: 100%;
  margin: 0 0 0 auto;
  padding: 121px 0 115px;
  box-sizing: border-box;
  position: relative;
  border-left: 1px solid #cccccc;
}

.contents .section-title {
  display: flex;
  margin: 0 0 0;
  padding: 0 0 0 49px;
  border-bottom: 1px solid #cccccc;
  align-items: center;
}

.contents .section-title h2 {
  padding: 0 0 0 34px;
  border-left: 6px solid #ff944e;
  font-size: 60px;
  height: 52px;
  line-height: 1;
  font-family: "Frutiger Roman";
}

.contents .section-title p {
  padding: 0 0 0 40px;
  line-height: 1;
  font-size: 16px;
  font-weight: bold;
}

section .wrapper {
  display: flex;
  align-content: space-between;
}

section .wrapper .section-text {
  width: calc(100% - 42%);
  padding: 0 100px 0 0;
  box-sizing: border-box;
}

section .wrapper .section-text p {
  padding: 5px 0 0;
  line-height: 1.9;
  font-size: 16px;
  font-weight: bold;
}

section .wrapper .section-img {
  width: 42%;
}

section .wrapper .section-img img {
  width: 100%;
}

.inner {
  max-width: 1050px;
  width: 100%;
  margin: 0 auto;
  box-sizing: border-box;
}

.page-top {
  position: absolute;
  bottom: 30px;
  right: 70px;
}

.icon {
  position: absolute;
  top: 23px;
  width: 100%;
  text-align: center;
  left: 0;
}

.icon img {
  width: auto;
  margin: 0 auto;
}

@media screen and (max-width: 48em) {
  .page-top {
    position: absolute;
    bottom: 0px;
    right: 0px;
    display: block;
    width: 100%;
    height: 36px;
    background-color: #000;
  }
  .page-top img {
    width: 24px;
    margin: 12px auto 0;
  }
  .contents {
    width: 100%;
    margin: 0 0 0;
    padding: 88.5px 0 75px;
    box-sizing: border-box;
    border-left: none;
  }
  .contents .section-title {
    display: block;
    margin: 0 0 0;
    padding: 0 0 0 2.5px;
    box-sizing: border-box;
    border-bottom: 1px solid #cccccc;
    align-items: baseline;
    position: relative;
  }
  .contents .section-title h2 {
    padding: 0 0 0 9px;
    border-left: 4px solid #ff944e;
    font-size: 30px;
    height: 25px;
    line-height: 1;
    font-family: "Frutiger Roman";
  }
  .contents .section-title p {
    position: absolute;
    bottom: 0;
    bottom: -25px;
    padding: 0 0 0 15px;
    line-height: 1;
    font-size: 11px;
    font-weight: bold;
  }
  .contents .icon {
    position: absolute;
    top: 11px;
    width: 100%;
    left: 0;
  }
  .contents .icon img {
    width: 22px;
    margin: 0 auto;
  }
  section .wrapper {
    display: block;
  }
  section .wrapper .section-text {
    width: 100%;
    padding: 0;
    box-sizing: border-box;
  }
  section .wrapper .section-text p {
    padding: 0 20px;
    line-height: 1.9;
    font-size: 12px;
    font-weight: bold;
  }
  section .wrapper .section-img {
    width: 100%;
  }
  section .wrapper .section-img img {
    width: 100%;
  }
  .inner {
    max-width: 1050px;
    width: 100%;
    margin: 0 auto;
    box-sizing: border-box;
  }
}

/*=====================================================
* message
*/
.message .wrapper {
  margin: 66px 0 0;
}

.message .wrapper .section-text .ceo {
  margin: 64px 0 0;
  width: 100%;
  box-sizing: border-box;
  max-width: 510px;
  text-align: right;
}

@media screen and (max-width: 48em) {
  .message .wrapper {
    margin: 66px 0 0;
  }
  .message .wrapper .section-text .ceo {
    margin: 17px 0 20px;
    width: 100%;
    max-width: initial;
    text-align: right;
  }
}

/*=====================================================
* about
*/
.about {
  margin-top: 107px;
}

.about h3 {
  color: #ff944e;
  font-size: 24px;
  font-weight: bold;
  line-height: 1.9;
  letter-spacing: 1px;
}

.about p {
  letter-spacing: 1px;
}

.about .about01 {
  margin: 68px 0 0;
}

.about .about01 .section-text {
  width: calc(100% - 40.5%);
  padding: 0;
}

.about .about01 .section-text h3 {
  margin: 0 0 18px;
}

.about .about01 .section-text p {
  padding: 0 90px 0 0;
}

.about .about01 .section-img {
  margin: 12px 0 0;
  width: 40.5%;
}

.about .about02 {
  margin: 63px 0 0;
}

.about .about02 .section-text {
  padding: 0 80px 0 0;
}

.about .about02 .section-text h3 {
  margin: 0 0 13px;
}

@media screen and (max-width: 48em) {
  .about {
    margin-top: 76px;
  }
  .about h3 {
    font-size: 14px;
    line-height: 1.9;
  }
  .about p {
    letter-spacing: 1px;
  }
  .about .about01 {
    margin: 56px 0 0;
  }
  .about .about01 .section-text {
    width: 100%;
    padding: 0 20px;
  }
  .about .about01 .section-text h3 {
    margin: 0 0 10px;
    line-height: 1.8;
  }
  .about .about01 .section-text p {
    padding: 0;
    line-height: 1.9;
    letter-spacing: 0.5;
  }
  .about .about01 .section-img {
    width: 217px;
    margin: 35px  auto 0;
  }
  .about .about02 {
    margin: 39px 0 0;
  }
  .about .about02 .section-text {
    padding: 0;
  }
  .about .about02 .section-text h3 {
    margin: 0 0 18px;
    padding: 0 20px;
    line-height: 1.7;
  }
  .about .about02 .section-text p {
    letter-spacing: 0.7px;
  }
  .about .about02 .section-img {
    width: 271px;
    margin: 27px auto 0;
  }
}

/*=====================================================
* ideal
*/
.ideal {
  box-sizing: border-box;
  min-height: 492px;
  padding: 35px 30px 37px;
  margin: 69px auto 0 164px;
  background-image: url(/assets/img/back.png);
  background-repeat: no-repeat;
  background-position: top right;
}

.ideal h3 {
  padding: 0 0 30px 37px;
  margin: 0 0 25px;
  line-height: 1;
  font-size: 24px;
  font-weight: bold;
  color: #ff944d;
  border-bottom: 1px dotted #aaaaaa;
  background-image: url(/assets/img/titile-arrow.png);
  background-repeat: no-repeat;
  background-position: left 0px;
}

.ideal p {
  line-height: 1.9;
  font-size: 16px;
  font-weight: bold;
}

.ideal .ideal-flow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 20px 0 0;
}

.ideal .ideal-flow .row01 {
  max-width: 510px;
  width: 100%;
  padding: 15px 20px;
  box-sizing: border-box;
  font-size: 16px;
  letter-spacing: 1px;
  font-weight: bold;
  color: #ff7841;
  line-height: 1.6;
  border: 2px dotted #f3ba21;
}

.ideal .ideal-flow .row03 {
  max-width: 360px;
  width: 100%;
  box-sizing: border-box;
  padding: 30px 0 39px;
  background: #ff944e;
  color: #fff;
  font-size: 15px;
  line-height: 2.1;
  font-weight: bold;
  text-align: center;
}

@media screen and (min-width: 1300px) {
  .ideal {
    margin: 69px auto 0;
  }
}

@media screen and (max-width: 48em) {
  .ideal-wrap {
    box-sizing: border-box;
    padding: 0 20px;
  }
  .ideal {
    margin: 35px auto 0;
    padding: 11px 10px 17px;
    background: #fff;
    border: 2px solid #dedede;
    background-image: none;
  }
  .ideal h3 {
    padding: 0 0 0px 25px;
    margin: 0 0 18px;
    line-height: 1.6;
    font-size: 14px;
    font-weight: bold;
    color: #ff944d;
    border-bottom: 1px dotted #aaaaaa;
    background-image: url(/assets/img/titile-arrow.png);
    background-repeat: no-repeat;
    background-position: left 5px;
    background-size: 15px auto;
  }
  .ideal p {
    line-height: 1.9;
    font-size: 12px;
    font-weight: bold;
    letter-spacing: 0.5px;
  }
  .ideal .ideal-flow {
    display: block;
    margin: 31px 0 0;
  }
  .ideal .ideal-flow .row01 {
    max-width: initial;
    width: 100%;
    padding: 12px 10px;
    box-sizing: border-box;
    font-size: 12px;
    letter-spacing: 1px;
    font-weight: bold;
    color: #ff7841;
    line-height: 1.6;
    border: 2px dotted #f3ba21;
  }
  .ideal .ideal-flow .row02 {
    width: 16px;
    margin: 10px auto;
  }
  .ideal .ideal-flow .row03 {
    max-width: 100%;
    width: 100%;
    box-sizing: border-box;
    padding: 11px 0 11px;
    background: #ff944e;
    color: #fff;
    font-size: 13px;
    line-height: 1.6;
    font-weight: bold;
    text-align: center;
  }
}

/*=====================================================
* history
*/
.history {
  margin-top: 122px;
}

.history .wrapper {
  margin: 58px auto 0;
  display: flex;
}

.history .wrapper .section-text p {
  line-height: 2.4;
}

@media screen and (max-width: 48em) {
  .history {
    margin-top: 75px;
  }
  .history .wrapper {
    margin: 40px auto 0;
    display: block;
  }
  .history .wrapper .section-text p {
    line-height: 2.4;
    font-size: 12px;
  }
  .history .wrapper .section-img {
    width: 205px;
    margin: 40px auto 0;
  }
}

/*=====================================================
* access
*/
.access {
  margin-top: 140px;
}

.access .inner {
  margin: 77px auto 0 164px;
  display: flex;
  justify-content: space-between;
}

.access .inner .company-tada {
  width: 710px;
  border-top: 1px dotted #aaaaaa;
}

.access .inner .company-tada li {
  display: flex;
  padding: 10px 11px 6px;
  border-bottom: 1px dotted #aaaaaa;
}

.access .inner .company-tada li .title-wrap {
  width: 129px;
  font-size: 16px;
  font-weight: bold;
  line-height: 2.5;
}

.access .inner .company-tada li .text-wrap {
  font-size: 16px;
  font-weight: bold;
  line-height: 2.5;
}

.access .map {
  margin-top: 40px;
  height: 420px;
}

@media screen and (min-width: 1300px) {
  .access .inner {
    margin: 77px auto 0;
  }
}

@media screen and (max-width: 48em) {
  .access .inner {
    margin: 77px auto 0;
  }
}

@media screen and (max-width: 48em) {
  .access {
    margin-top: 71px;
  }
  .access .inner {
    display: block;
    justify-content: space-between;
    padding: 0 20px;
    margin: 40px auto 0;
  }
  .access .inner .company-tada {
    width: 100%;
    box-sizing: border-box;
    border-top: 1px dotted #aaaaaa;
  }
  .access .inner .company-tada li {
    display: block;
    padding: 10px 11px 6px;
    border-bottom: 1px dotted #aaaaaa;
  }
  .access .inner .company-tada li .title-wrap {
    width: 100%;
    font-size: 10px;
    font-weight: bold;
    line-height: 2.5;
  }
  .access .inner .company-tada li .text-wrap {
    font-size: 12px;
    font-weight: bold;
    line-height: 2.5;
  }
  .access .map {
    margin-top: 40px;
    height: 240px;
  }
}

/*=====================================================
* contact
*/
.contact {
  margin-top: 121px;
}

.contact #form-disp {
  display: block;
  max-width: 810px;
  width: 100%;
  margin: 0 auto !important;
}

.form {
  background: inherit;
  overflow: hidden;
}

.contact-disp {
  max-width: 810px;
  width: 100%;
  margin: 0 auto 0;
}

.contact-disp .center {
  text-align: center;
}

.contact-disp p {
  margin: 76px auto 0;
  font-size: 16px;
  padding-bottom: 14px;
  font-weight: bold;
}

.contact-disp p span {
  color: #d63b43;
}

.contact-disp ul {
  padding: 14px 0 52px;
  border-top: 2px solid #cccccc;
  border-bottom: 2px solid #cccccc;
}

.contact-disp ul li {
  display: flex;
  margin: 31px auto 0;
}

.contact-disp ul li .title-wrap {
  width: 180px;
  font-size: 16px;
  font-weight: bold;
  line-height: 2.5;
}

.contact-disp ul li .title-wrap span {
  color: #d63b43;
  padding-left: 10px;
}

.contact-disp ul li .text-wrap {
  width: calc(100% - 180px);
}

.contact-disp ul li .text-wrap input {
  width: 100%;
}

.contact-disp ul li .text-wrap p {
  display: none;
}

.contact-disp ul li .text-wrap textarea {
  width: 100%;
}

.contact-disp ul li .text-wrap.error input, .contact-disp ul li .text-wrap.error textarea {
  border-color: #d63b43;
}

.contact-disp ul li .text-wrap.error p {
  padding: 0;
  margin: 0;
  color: #d63b43;
  display: inline;
}

.contact-disp .send {
  position: relative;
  display: block;
  cursor: pointer;
  width: 286px;
  border: 1px solid #cccccc;
  padding: 20px 0;
  margin: 60px auto 0;
  color: #fff;
  font-size: 19px;
  background: #555555;
  font-weight: bold;
  transition: .4s all;
}

.contact-disp .send:hover {
  opacity: .8;
}

.contact-disp .send::after {
  content: "";
  display: block;
  background: url(/assets/img/btn-arrow.png) center/9px auto no-repeat;
  width: 9px;
  height: 20px;
  position: absolute;
  top: 35%;
  right: 30px;
}

@media screen and (max-width: 48em) {
  .contact {
    margin-top: 75px;
  }
  #form-disp {
    display: block;
    max-width: 100%;
    width: 100%;
    margin: 0 auto !important;
  }
  .contact-disp {
    max-width: 100%;
    width: 100%;
    padding: 0 20px;
    margin: 0;
    box-sizing: border-box;
  }
  .contact-disp p {
    margin: 40px auto 0;
    font-size: 11px;
    padding-bottom: 11px;
    font-weight: bold;
  }
  .contact-disp p span {
    color: #d63b43;
  }
  .contact-disp ul {
    padding: 0px 0 30px;
    border-top: 2px solid #cccccc;
    border-bottom: none;
  }
  .contact-disp ul li {
    display: block;
    margin: 25px auto 0;
  }
  .contact-disp ul li .title-wrap {
    width: 100%;
    font-size: 11px;
    font-weight: bold;
    line-height: 2.5;
  }
  .contact-disp ul li .title-wrap span {
    color: #d63b43;
  }
  .contact-disp ul li .text-wrap {
    width: 100%;
  }
  .contact-disp ul li .text-wrap input {
    width: 100%;
  }
  .contact-disp ul li .text-wrap textarea {
    width: 100%;
  }
  .contact-disp .send {
    display: block;
    cursor: pointer;
    width: 250px;
    border: 1px solid #cccccc;
    padding: 18px 0;
    margin: 0 auto;
    color: #fff;
    font-size: 13px;
    background: #555555;
    font-weight: bold;
  }
  .contact-disp .send::after {
    content: "";
    display: block;
    background: url(/assets/img/btn-arrow.png) center/7.5px auto no-repeat;
    width: 9px;
    height: 20px;
    position: absolute;
    top: 35%;
    right: 30px;
  }
}

/*=====================================================
* footer
*/
footer {
  border-top: 4px solid #221815;
  background: #fff;
  padding: 25px 0 35px 50px;
  box-sizing: border-box;
  position: relative;
}

footer .foot-nav ul {
  display: flex;
}

footer .foot-nav ul li {
  margin: 0 90px 0 0;
  position: relative;
}

footer .foot-nav ul li::before {
  content: "";
  display: block;
  position: absolute;
  top: 1px;
  left: 0;
  width: 2px;
  height: 16px;
  background-color: #020202;
}

footer .foot-nav ul li:hover::before {
  transition: .4s all;
  background-color: #ff944e;
}

footer .foot-nav ul li a {
  font-family: "Frutiger Roman";
  padding: 0 0 0 8px;
  line-height: 1;
  letter-spacing: 1px;
  color: #020202;
  font-size: 17px;
}

footer .foot-nav ul li a:hover {
  opacity: 1;
  color: #ff944e;
}

footer .foot-copy {
  font-family: "Frutiger Roman";
  margin: 81px 0 0;
  font-size: 14px;
}

footer .foot-logo {
  position: absolute;
  bottom: 37px;
  right: 85px;
}

@media screen and (max-width: 48em) {
  footer {
    border-top: 2px solid #221815;
    background: #fff;
    padding: 0px 0 35px;
    box-sizing: border-box;
    position: relative;
  }
  footer .foot-nav {
    display: none;
  }
  footer .foot-copy {
    font-family: "Frutiger Roman";
    margin: 105px 0 0;
    padding-bottom: 10px;
    font-size: 10px;
    text-align: center;
  }
  footer .foot-logo {
    position: absolute;
    bottom: initial;
    top: 44px;
    display: block;
    width: 100%;
    text-align: center;
    right: initial;
  }
  footer .foot-logo img {
    width: 150px;
  }
}
