
/*===============================================
●共通
===============================================*/

body {
  font-family: 'Noto Sans JP', "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro","メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", Arial, Helvetica, Verdana, sans-serif;
  -webkit-text-size-adjust: 100%;
  font-size: 16px;
  color: #000;
  line-height: 1.5;
  letter-spacing: 0.08em;
  text-align: center;
  word-wrap: break-word;
  background-color: #fff;
}

.barlow {
  font-family: 'Barlow Condensed', serif;
}

.poppins {
  font-family: 'Poppins', sans-serif;
}

#wrapper,
#contents {
  position: relative;
  width: 100%;
  margin:0 auto;
  padding:0;
}

a {
  color: #000;
  text-decoration: none;
  transition: 0.6s ;
}

img {
  display: block;
  width: 100%;
}

/*===============================================
●画面の横幅が813px以上(タブレット・PC)
===============================================*/
@media screen and (min-width: 813px) {

  #wrapper{
    min-width: 1180px;
  }

  /* !共通
  ---------------------------------------------------------- */
  .sp-only{
    display:none !important;
  }

  .list-flex{
    display:-webkit-box !important;
    display:-moz-box !important;
    display:-ms-box !important;
    display:-webkit-flexbox !important;
    display:-moz-flexbox !important;
    display:-ms-flexbox !important;
    display:-webkit-flex !important;
    display:-moz-flex !important;
    display:-ms-flex !important;
    display:flex !important;
    -webkit-box-lines:multiple !important;
    -moz-box-lines:multiple !important;
    -webkit-flex-wrap:wrap !important;
    -moz-flex-wrap:wrap !important;
    -ms-flex-wrap:wrap !important;
    flex-wrap:wrap !important;
    justify-content: space-between !important;
  }

  a:hover {
    opacity: 0.7;
  }


  /* リンク Hoverの動き（共通） */
  .set_hover .btn-wrap {
    position: relative;
    display: inline-block;
    overflow: hidden;
  }

  .set_hover .txt-foward,
  .set_hover .txt-back {
    display: block;
    width: 100%;
    transition: translate .5s cubic-bezier(0, .55, .45, 1), clip-path .5s cubic-bezier(0, .55, .45, 1)
  }

  .set_hover .txt-foward {
    clip-path: inset(0 0 0 0)
  }

  .set_hover .txt-back {
    position: absolute;
    left: 0;
    top: 0;
    translate: 0 130%;
    clip-path: inset(0 0 100% 0)
  }

  .set_hover:hover .txt-foward {
    translate: 0 -130%;
    clip-path: inset(100% 0 0 0)
  }

  .set_hover:hover .txt-back {
    translate: 0 0;
    clip-path: inset(0 0 0 0)
  }

  .set_hover .arw-wrap {
    position: absolute;
    bottom: 2px;
    right: 0;
    display: inline-block;
    width: 28px;
    height: 9px;
    overflow: hidden;
  }

  .set_hover .arw-foward,
  .set_hover .arw-back {
    display: block;
    width: 28px;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  }

  .set_hover .arw-foward {
    transform: translateX(0);
  }

  .set_hover .arw-back {
    position: absolute;
    left: -30%;
    top: 0;
    transform: translateX(-130%);
    visibility: hidden;
  }

  .set_hover:hover .arw-foward {
    transform: translateX(130%);
  }

  .set_hover:hover .arw-back {
    transform: translateX(30%);
    visibility: visible;
  }

  .set_hover:not(:hover) .arw-foward {
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  }

  .set_hover:not(:hover) .arw-back {
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  }


  /* !header ヘッダー
  ---------------------------------------------------------- */
  header {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 90px;
    padding: 0;
    z-index: 99998;
    background-color: #fff;
  }

  header > a.logo {
    position: absolute;
    top: 15px;
    left: 30px;
    display: block;
    width: 60px;
  }

  header > img.menu {
    position: absolute;
    top: 28px;
    right: 43px;
    width: 61px;
    cursor: pointer;
  }

  /* #menu メニュー */
  #menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width:100%;
    height: 100%;
    z-index:99999;
    padding-top: 200px;
    color: #fff;
    line-height: 1;
    background-color: #000;
  }

  #menu a {
    color: #fff;
  }

  #menu > img.menu {
    position: absolute;
    z-index: 99999;
    top: 28px;
    right: 43px;
    width: 61px;
  }

  #menu > div {
    position: relative;
    width: 96%;
    max-width: 1000px;
    margin: 0 auto;
    text-align: left;
  }

  #menu > div > div {
    margin: 0;
  }

  #menu > div > div:nth-of-type(1) {
    width: 280px;
    margin: 0;
  }

  #menu > div > div:nth-of-type(1) img {
    width: 200px;
    margin: 0;
  }

  #menu > div > div:nth-of-type(2) {
    width: 340px;
    margin: 0;
    padding-left: 60px;
    border-left: 1px solid #fff;
  }

  #menu > div > div:nth-of-type(3) {
    width: 260px;
  }

  #menu > div > div:nth-of-type(4) {
    width: 120px;
  }

  #menu > div > div > p,
  #menu > div > div > a {
    display: block;
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 15px 0;
  }

  #menu #link02 {
    margin-top: 69px;
  }

  #menu #link04 {
    margin-top: 30px;
  }

  #menu ul > li {
    position: relative;
    margin: 0 0 14px 0;
    padding: 0 0 0 15px;
    font-size: 16px;
    line-height: 1.4;
  }

  #menu ul > li:before {
    content: '-';
    position: absolute;
    top: 0;
    left: 0;
  }


  /* 下層ページ　タイトル */
   .sub-page-main-img {
     position: relative;
     width: 100%;
     height: 800px;
     margin: 0 auto;
  }

  .sub-page-main-img > h1 {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
  }

  /* 下層ページ　h2 */
  .cmn-h2 {
    position: relative;
    font-size: 32px;
    font-weight: 700;
    line-height: 1;
  }

  .cmn-h2::before {
    content: '';
    position: absolute;
    top: -30px;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 40px;
    height: 2px;
    background-color: #CEBC36;
  }


  /* テーブル table01 */
  .table01 {
    width: 100%;
    max-width: 640px;
    margin: 0 auto;
    text-align: left;
    border-bottom: 1px solid #8D8D7D;
  }

  .table01 th {
    width: 190px;
    padding: 20px 0;
    font-weight: 700;
    border-top: 1px solid #8D8D7D;
    vertical-align: top;
  }

  .table01 td {
    padding: 20px 0;
    border-top: 1px solid #8D8D7D;
    vertical-align: top;
  }


  /* ボタン　募集要項、採用エントリー、お問い合わせ */
  .box-btn {
    width: 100%;
    max-width: 640px;
    margin: 70px auto 0;
  }
  
  .box-btn > a {
    position: relative;
    display: block;
    width: 90%;
    max-width: 360px;
    height: 58px;
    margin: 0 auto;
    padding-top: 18px;
    font-size: 18px;
    line-height: 1;
    background-color: #CEBC36;
    border-radius: 100vh;
  }

  .box-btn > a::before {
    position: absolute;
    bottom: 24px;
    right: 20px;
    content: '';
    width: 20px;
    height: 9px;
    background: url(../images/common/arrow04.png) top center no-repeat;
    background-size: 20px;
  }

  .box-btn > p {
    display: inline-block;
    position: relative;
    width: 90%;
    max-width: 360px;
  }

  .box-btn > p::before {
    position: absolute;
    top: 24px;
    right: 20px;
    content: '';
    width: 20px;
    height: 9px;
    background: url(../images/common/arrow04.png) top center no-repeat;
    background-size: 20px;
  }

  .box-btn > p input[type="submit"] {
    display: block;
    width: 100%;
    height: 58px;
    margin: 0 auto;
    font-size: 18px;
    font-family: 'Noto Sans JP', "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", Arial, Helvetica, Verdana, sans-serif;
    line-height: 1;
    background-color: #CEBC36;
    border-radius: 100vh;
  }

  .box-btn.back {
    margin-top: 30px;
  }

  .box-btn.back > a::before {
    position: absolute;
    left: 20px;
    right: auto;
    transform: scaleX(-1);
  }

  /* CONTACT */
  .contact-box {
    width: 100%;
    height: 804px;
    margin: 120px auto 0 auto;
    padding: 80px 0 0 0;
    color: #fff;
    line-height: 1;
    background: url(../images/common/contact-bg.png) top center no-repeat;
    background-size: cover;
  }

  .contact-box > h2 {
    margin: 0 auto;
    font-size: 120px;
    font-weight: 700;
  }

  .contact-box > p {
    margin: 15px auto 0 auto;
    font-size: 20px;
    line-height: 1.4;
  }

  .contact-box > p:nth-of-type(2) {
    margin: 40px auto 0 auto;
  }

  .contact-box > div {
    width: 96%;
    max-width: 1400px;
    margin: 150px auto 0 auto;
  }

  .contact-box > div > div {
    width: 49%;
    height: 211px;
    margin: 0;
    background-color: #fff;
    border-radius: 6px;
  }

  .contact-box > div > div:nth-of-type(2) {
    margin-left: 2%;
  }

  .contact-box div.tel {
    padding-top: 45px;
  }

  .contact-box div.tel > p:nth-of-type(1) {
    font-size: 20px;
    font-weight: 500;
    color: #000;
  }

  .contact-box div.tel > p:nth-of-type(2) {
    display: inline-block;
    position: relative;
    margin: 20px 0;
    padding-left: 40px;
    font-size: 42px;
    font-weight: 700;
    color: #CEBC36;
  }

  .contact-box div.tel > p:nth-of-type(2)::before {
    content: '';
    position: absolute;
    top: 2px;
    left: 0;
    width: 34px;
    height: 34px;
    background: url(../images/common/tel.png) top center no-repeat;
    background-size: 34px;
  }

  .contact-box div.tel > p:nth-of-type(3) {
    font-size: 16px;
    font-weight: 500;
    color: #000;
  }

  .contact-box div.mail {
    padding-top: 40px;
  }

  .contact-box div.mail > p {
    display: inline-block;
    position: relative;
    margin: 0 auto;
    padding-left: 40px;
    font-size: 42px;
    font-weight: 700;
    color: #000;
  }

  .contact-box div.mail > p::before {
    content: '';
    position: absolute;
    top: 5px;
    left: 0;
    width: 34.5px;
    height: 30.5px;
    background: url(../images/common/mail.png) top center no-repeat;
    background-size: 34.5px;
  }

  .contact-box div.mail > a {
    display: block;
    width: 330px;
    height: 45px;
    margin: 30px auto 0 auto;
    padding-top: 12px;
    font-size: 18px;
    font-weight: 500;
    color: #000;
    background-color: #CEBC36;
    border-radius: 30px;
  }

  .contact-box div.mail > a:hover {
    opacity: 1;
  }

  .contact-box div.mail > a.set_hover .btn-wrap {
    width: 300px;
  }

  .contact-box div.mail > a.set_hover .arw-wrap {
    position: absolute;
    bottom: 2px;
    right: 0;
    display: inline-block;
    width: 20px;
    height: 8.5px;
    overflow: hidden;
  }

  /* !footer フッター
  ----------------------------------------------------------*/
  footer {
    width: 100%;
    margin: 0 auto;
    padding-top: 80px;
    color: #fff;
    background-color: #000;
  }

  footer a {
    color: #fff;
  }

  footer > div {
    position: relative;
    width: 96%;
    max-width: 1400px;
    margin: 0 auto;
    text-align: left;
  }

  footer > div > div {
    width: 10%;
    margin: 0 3% 0 0;
  }

  footer > div > div:nth-of-type(1) {
    position: absolute;
    top: 0;
    left: 0;
    width: 134px;
  }

  footer > div > div:nth-of-type(2) {
    width: 19%;
    margin: 0 3% 0 20%;
  }

  footer > div > div:nth-of-type(5) {
    width: 19%;
  }

  footer > div > div:last-of-type {
    margin: 0;
  }

  footer > div > div > p,
  footer > div > div > a {
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 15px 0;
  }

  footer ul > li {
    position: relative;
    margin: 0 0 14px 0;
    padding: 0 0 0 15px;
    font-size: 16px;
    line-height: 1.4;
  }

  footer ul > li:before {
    content: '-';
    position: absolute;
    top: 0;
    left: 0;
  }

  .copyright {
    display: block;
    width: 100%;
    margin: 0 auto;
    padding: 120px 0 55px;
    font-size: 14px;
    color: #fff;
    line-height: 1;
    background-color: #000;
  }

}

/*===============================================
●画面の横幅が812px以下(スマホのみ)
===============================================*/
@media screen and (max-width: 812px) {

  body {
    font-size: 14px;
  }

  #wrapper {
    width:100%;
    height:100%;
    display:block;
    position:relative;
    padding-top: constant(safe-area-inset-top);
    padding-right: constant(safe-area-inset-right);
    padding-bottom: constant(safe-area-inset-bottom);
    padding-left: constant(safe-area-inset-left);
  }

  /* !共通
  ---------------------------------------------------------- */
  .pc-only {
    display:none !important;
  }

  .sp-list-flex{
    display:-webkit-box !important;
    display:-moz-box !important;
    display:-ms-box !important;
    display:-webkit-flexbox !important;
    display:-moz-flexbox !important;
    display:-ms-flexbox !important;
    display:-webkit-flex !important;
    display:-moz-flex !important;
    display:-ms-flex !important;
    display:flex !important;
    -webkit-box-lines:multiple !important;
    -moz-box-lines:multiple !important;
    -webkit-flex-wrap:wrap !important;
    -moz-flex-wrap:wrap !important;
    -ms-flex-wrap:wrap !important;
    flex-wrap:wrap !important;
  }


  /* !header ヘッダー
  ---------------------------------------------------------- */
  header {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 60px;
    padding: 0;
    z-index: 99998;
    background-color: #fff;
  }

  header > a.logo {
    position: absolute;
    top: 10px;
    left: 15px;
    display: block;
    width: 43px;
  }

  header > img.menu {
    position: absolute;
    top: 22px;
    right: 20px;
    width: 39px;
  }

  /* #menu メニュー
  ---------------------------------------------------------- */
  #menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width:100%;
    height: 100%;
    z-index:99999;
    color: #fff;
    line-height: 1;
    background-color: #000 !important;
  }

  #menu a {
    color: #fff;
  }

  #menu > img.menu {
    position: absolute;
    top: 22px;
    right: 20px;
    width: 39px;
  }

  #menu > div {
    width: 100%;
    height: 100%;
    padding: 70px 0;
    overflow-y: auto;
  }

  #menu > div > div {
    width: 90%;
    margin: 0 auto;
    text-align: left;
  }

  #menu > div > div > p,
  #menu > div > div > a {
    position: relative;
    display: block;
    font-size: 22px;
    font-weight: 700;
    margin: 30px 0 0 0;
  }

  #menu ul {
    display: none;
    margin: 15px 0 0 0;
  }

  #menu ul > li {
    position: relative;
    margin: 0 0 0 15px;
    padding: 15px 0 0 15px;
    font-size: 18px;
    line-height: 1.4;
  }

  #menu ul > li:before {
    content: '-';
    position: absolute;
    top: 13px;
    left: 0;
  }

  #menu > div > div > p .icon {
    position: absolute;
    top: 8px;
    right: 0;
    display: inline-block;
    width: 24px;
    height: 24px;
  }
  #menu > div > div > p .icon:before,
  #menu > div > div > p .icon:after {
    position: absolute;
    content: "";
    display: block;
    transition: all 0.4s;
    background: #fff;
    left: 0;
    top: 0;
    width: 100%;
    height: 2px;
    transform: translate(-50%, -50%);
  }
  #menu > div > div > p .icon:before {
    transform: translate(-50%, -50%) rotate(90deg);
  }

  /*＋、－切り替え*/
  #menu > div > div > p .icon.open:before {
    transform: translate(-50%, -50%) rotate(0deg);
  }



  /* #menu メニュー */
  /*
  #menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width:100%;
    height: 100%;
    z-index:99999;
    padding-top: 200px;
    background-color: #000;
  }

  #menu > img.menu {
    position: absolute;
    z-index: 99999;
    top: 28px;
    right: 43px;
    width: 61px;
  }

  #menu > div {
    position: relative;
    width: 96%;
    max-width: 1000px;
    margin: 0 auto;
    text-align: left;
  }

  #menu > div > div {
    margin: 0;
  }

  #menu > div > div:nth-of-type(1) {
    width: 280px;
    margin: 0;
  }

  #menu > div > div:nth-of-type(1) img {
    width: 200px;
    margin: 0;
  }

  #menu > div > div:nth-of-type(2) {
    width: 350px;
    margin: 0;
    padding-left: 60px;
    border-left: 1px solid #fff;
  }

  #menu > div > div:nth-of-type(3) {
    width: 250px;
  }

  #menu > div > div:nth-of-type(4) {
    width: 120px;
  }

  #menu > div > div > p,
  #menu > div > div > a {
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 15px 0;
  }

  #menu #link02 {
    margin-top: 69px;
  }

  #menu #link04 {
    margin-top: 30px;
  }

  #menu ul > li {
    position: relative;
    margin: 0 0 14px 0;
    padding: 0 0 0 15px;
    font-size: 16px;
    line-height: 1.4;
  }

  #menu ul > li:before {
    content: '-';
    position: absolute;
    top: 0;
    left: 0;
  }
  */


  /* 下層ページ　タイトル */
  .sub-page-main-img {
    position: relative;
    width: 100%;
    height: 390px;
    margin: 0 auto;
  }

  .sub-page-main-img > h1 {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
  }

  /* 下層ページ　h2 */
  .cmn-h2 {
    position: relative;
    font-size: 24px;
    font-weight: 700;
    line-height: 1;
  }

  .cmn-h2::before {
    content: '';
    position: absolute;
    top: -25px;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 40px;
    height: 2px;
    background-color: #CEBC36;
  }


  /* テーブル table01 */
  .table01 {
    width: 90%;
    margin: 0 auto;
    text-align: left;
    border-bottom: 1px solid #8D8D7D;
  }

  .table01 th {
    display: block;
    width: 100%;
    padding: 20px 0;
    font-weight: 700;
    vertical-align: top;
    border-top: 1px solid #8D8D7D;
  }

  .table01 td {
    display: block;
    width: 100%;
    padding: 0 0 20px 0;
    vertical-align: top;
  }


  /* ボタン　募集要項、採用エントリー、お問い合わせ */
  .box-btn {
    width: 100%;
    max-width: 640px;
    margin: 50px auto 0;
  }

  .box-btn > a {
    position: relative;
    display: block;
    width: 90%;
    max-width: 350px;
    height: 58px;
    margin: 0 auto;
    padding-top: 18px;
    font-size: 18px;
    line-height: 1;
    background-color: #CEBC36;
    border-radius: 100vh;
  }

  .box-btn > a::before {
    position: absolute;
    bottom: 24px;
    right: 20px;
    content: '';
    width: 20px;
    height: 9px;
    background: url(../images/common/arrow04.png) top center no-repeat;
    background-size: 20px;
  }

  .box-btn > p {
    display: inline-block;
    position: relative;
    width: 90%;
    max-width: 360px;
  }

  .box-btn > p::before {
    position: absolute;
    top: 24px;
    right: 20px;
    content: '';
    width: 20px;
    height: 9px;
    background: url(../images/common/arrow04.png) top center no-repeat;
    background-size: 20px;
  }

  .box-btn > p input[type="submit"] {
    display: block;
    width: 100%;
    height: 58px;
    margin: 0 auto;
    font-size: 18px;
    font-family: 'Noto Sans JP', "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", Arial, Helvetica, Verdana, sans-serif;
    line-height: 1;
    background-color: #CEBC36;
    border-radius: 100vh;
  }

  .box-btn.back {
    margin-top: 30px;
  }

  .box-btn.back > a::before {
    position: absolute;
    left: 20px;
    right: auto;
    transform: scaleX(-1);
  }

  /* CONTACT */
  .contact-box {
    width: 100%;
    margin: 35px auto 0 auto;
    padding: 80px 0 65px 0;
    color: #fff;
    line-height: 1;
    background: url(../images/common/contact-bg_sp.png) center center no-repeat;
    background-size: cover;
  }

  .contact-box > h2 {
    margin: 0 auto;
    font-size: 80px;
    font-weight: 700;
  }

  .contact-box > p {
    width: 90%;
    margin: 15px auto 0 auto;
    font-size: 20px;
    line-height: 1.4;
  }

  .contact-box > p:nth-of-type(2) {
    margin: 25px auto 0 auto;
  }

  .contact-box > div {
    width: 90%;
    margin: 40px auto 0 auto;
  }

  .contact-box > div > div {
    width: 100%;
    margin: 0;
    background-color: #fff;
    border-radius: 6px;
  }

  .contact-box > div > div:nth-of-type(2) {
    margin-top: 20px;
  }

  .contact-box div.tel {
    padding: 30px 0;
  }

  .contact-box div.tel > p:nth-of-type(1) {
    font-size: 18px;
    font-weight: 500;
    color: #000;
  }

  .contact-box div.tel > p:nth-of-type(2) {
    display: inline-block;
    position: relative;
    margin: 20px 0 15px 0;
    padding-left: 30px;
    font-size: 30px;
    font-weight: 700;
    color: #CEBC36;
  }

  .contact-box div.tel > p:nth-of-type(2) > a {
    color: #CEBC36;
  }

  .contact-box div.tel > p:nth-of-type(2)::before {
    content: '';
    position: absolute;
    top: 1px;
    left: 0;
    width: 24px;
    height: 24px;
    background: url(../images/common/tel.png) top center no-repeat;
    background-size: 24px;
  }

  .contact-box div.tel > p:nth-of-type(3) {
    font-size: 14px;
    font-weight: 500;
    color: #000;
  }

  .contact-box div.mail {
    padding: 35px 0;
  }

  .contact-box div.mail > p {
    display: inline-block;
    position: relative;
    margin: 0 auto;
    padding-left: 35px;
    font-size: 30px;
    font-weight: 700;
    color: #000;
  }

  .contact-box div.mail > p::before {
    content: '';
    position: absolute;
    top: 4px;
    left: 0;
    width: 25px;
    height: 22px;
    background: url(../images/common/mail.png) top center no-repeat;
    background-size: 25px;
  }

  .contact-box div.mail > a {
    position: relative;
    display: block;
    width: 90%;
    max-width: 270px;
    height: 45px;
    margin: 20px auto 0 auto;
    padding-top: 16px;
    font-size: 15px;
    font-weight: 500;
    color: #000;
    background-color: #CEBC36;
    border-radius: 30px;
  }

  .contact-box div.mail > a::before {
    content: '';
    position: absolute;
    top: 3px;
    bottom: 0;
    right: 19px;
    margin: auto;
    width: 20px;
    height: 8.5px;
    background: url(../images/common/arrow04.png) top center no-repeat;
    background-size: 20px;
  }

  /* !コピーライト
  ----------------------------------------------------------*/
  .copyright {
    display: block;
    width: 100%;
    margin: 0 auto;
    padding: 30px 0;
    font-size: 14px;
    color: #fff;
    line-height: 1.4;
    background-color: #000;
  }

  footer{
    background: #000;
    color: #fff;
  }
  
  footer > div{
    padding: 30px 5%;
    text-align: left;
  }

  footer > div > div > p{
    margin: 15px 0;
    font-size: 18px;
  }

  footer > div > div > ul > li{
    font-size: 14px;
    line-height: 2.2;
  }

  footer > div > div > ul > li::before{
    content: '-';
  }

  footer > div > div a{
    color: #fff;
  }

  footer > div > div:nth-of-type(1){
    display: none;
  }

  footer > div > div:nth-last-of-type(1) {
    margin: 15px 0;
    font-size: 18px;
  }

}
