@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Alata&display=swap');

:root {
  --hero-intro-duration: 3500ms;
}

html{
  scroll-behavior: smooth;
}
body{
  --main-color: #202020;
  --black-color: #000;
  --white-color: #fff;
  --point-color: #b20000;
  --point-color02: #b94047;
  --point-color03: #80464a;
  --gray-color: #f5f5f5;
  --gray-color02: #e6e6e6;
  --bg-gray-color: #282425;
  --bg-gray-color02: #7a7b7f;
  background:#fff;
  color: var(--main-color);
  font-family: "Helvetica Neue",
    Arial,"Noto Sans JP",
    "Hiragino Kaku Gothic ProN",
    "Hiragino Sans",
    Meiryo,
    sans-serif;
  font-size: 1rem;
  font-weight: 400;
  font-optical-sizing: auto;
  font-style: normal;
  margin: 0;
  padding: 0;
}

/*

@media screen and (min-width: 1536px) {
  body{
    font-size: 1.1rem;
  }
}
*/

@media screen and (max-width: 1240px) {
  body{
    font-size: .95rem;
  }
}

@media screen and (max-width: 980px) {
  body{
    font-size: .85rem;
  }
}
/* font setting --------------------- */

.font-jost{
  font-family: "Jost", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}

h1,h2,h3,li,p,td,th,dt,dd{
  letter-spacing: 1.75px;
  line-height: 1.75;
}


/* text setting --------------------- */

h2,h3,h4{
  font-weight: 600;
  margin-bottom: 1.5rem;
}

@media screen and (max-width: 768px) {
  h2,h3,h4{
    margin-bottom: 1rem;
  }
}

h1{
}

@media screen and (max-width: 768px) {
  h1{
  }
}

h2{
  font-size: 1.9rem;
}

@media screen and (max-width: 1240px) {
  h2{
    font-size: 1.75rem;
  }
}

@media screen and (max-width: 980px) {
  h2{
    font-size: 1.55rem;
  }
}

@media screen and (max-width: 768px) {
  h2{
    font-size: 1.35rem;
  }
}
h3{
  font-size: 1.35rem;
}

@media screen and (max-width: 980px) {
  h3{
    font-size: 1.25rem;
  }
}

@media screen and (max-width: 768px) {
  h3{
    font-size: 1.15rem;
  }
}

h4{
  font-size: 1.25rem;
}

@media screen and (max-width: 980px) {
  h4{
    font-size: 1.15rem;
  }
}

@media screen and (max-width: 768px) {
  h4{
    font-size: 1.05rem;
  }
}

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

.color-red{
  color: var(--point-color);
}

ul,ol{
  list-style: none;
  margin: 0;
  padding: 0;
}

a{
  color: #202020;
  display: inline-block;
  text-decoration: none;
  transition: .35s ease-in;
  position: relative;
}

a:hover{
  opacity: .4;
}

@media screen and (max-width: 768px) {
  .sp_br{
    display: block;
  }
}

img, picture{
  height: auto;
  width: 100%;
}

@media screen and (min-width: 769px) {
  a[href^="tel:"] {
    pointer-events: none; /* クリック・タッチイベントを無効 */
  }
}

/* section setting ------------------------------------------  */

section{
  padding: 7rem 0;
}

@media screen and (max-width: 980px) {
  section{
    padding: 17vw 0;
  }
}

/* inner setting ------------------------------------------ */
.inner{
  margin: 0 auto;
  max-width: 1920px;
  width: 90%;
}

.pc{
  display: inline;
}

.sp{
  display: none;
}


@media screen and (max-width: 980px) {
  .sp{
    display: inline;
  }
  .pc{
    display: none;
  }

}

/* flex setting ------------------------------------------ */

.flex-box{
  align-items: flex-start;
  display: flex;
  justify-content: flex-start;
}

@media screen and (max-width: 1240px) {
  .flex-box{
    flex-wrap: wrap;
  }
}
/*
@media screen and (max-width: 980px) {
   .flex-box{
    justify-content: space-between;
  } 
}
*/

.box_33{
  width: 33%;
}

.box_40{
  width: 40%;
}
@media screen and (max-width: 768px) {
  .box_40{
    width: 100%;
  }
}

.box_50{
  width: 50%;
}

@media screen and (max-width: 980px) {
  .box_50{
    width: 100%;
  }
}

.box_60{
  width: 60%;
}

@media screen and (max-width: 768px) {
  .box_60{
    width: 100%;
  }
}

/* button setting ------------------------------------------  */

.button-more2,
.button-more{
  margin: 2rem auto 0;
  text-align: center;
}

.button-more a{
  background: transparent;
  display: inline-block;
  font-size: 1.15rem;
/*  overflow: hidden; */
  padding: .0; /*5rem 1.5rem*/
  position: relative;
}
@media screen and (max-width: 768px) {
  .button-more a{
    font-size: 1rem;
/*    padding: .5rem 1rem; */
  }
}

.button-more a::before{
  content:'';
  display: block;
  position:absolute;
  top:50%;
  right: -5%;
  transform: translateY(-50%);
  clip-path: circle(0% at 50% 50%);
  transition:  clip-path .45s cubic-bezier(.22,.61,.36,1);
  width: 2.25rem;
  height: 2.25rem;
  z-index: 2;
}

.button-more a:hover,
.button-more2 a:hover{
  opacity: 1;
}
/*.button-more2 a:hover{
  color: var(--white-color);
  opacity: 1;
}*/

.button-more a:hover::before{
  background-color: var(--point-color);
  /* ホバー時：右側中央に小さめの円 */
  clip-path: circle(25% at 50% 50%);
  transition-delay:
    .25s, /* background-color */
    0s;   /* transform */
    z-index: 1;
  opacity: .5;
}

.button-more a::after{
/*  background: url('../img/common/arrow.svg') no-repeat center / contain;
  content: '';
  display: inline-block;
  height: 1.5rem;
  margin-left: 1.5rem;
  vertical-align: middle;
  width: 2.5rem;*/

  content:'';
  display: block;
  position:absolute;
  bottom: 0;
  left: 10%;
  height: 1px;
  width: 80%;
  z-index: -1;
  background: #000;

  /* 初期状態：線が表示されている */
  transform: scale(1, 1); /* 下線を横方向に0倍、縦方向に1倍に変形（非表示） */
  transform-origin: left top; /* 変形の原点を左上に指定 */
  transition: transform .3s; /* 変形をアニメーション化 */
}
/*@media screen and (max-width: 768px) {
  .button-more a::after{
    margin-left: 1rem;
    width: 2rem;
  }
}*/

.button-more a:hover::after{
  transform-origin: right top; 
  transform: scale(0, 1);
}

.button-more a .arrow{
  display: block;
  padding: .75rem 4rem .75rem 2rem;
  position: relative;
  line-height: 1;
  z-index: 10;
}

.button-more a .arrow::after{
  background: url('../img/common/arrow.svg') no-repeat center / contain;
  content: '';
  display: inline-block;
  filter: brightness(0) saturate(100%);
  height: 1.15rem;
  right: 1rem;
  vertical-align: middle;
  position: absolute;
  top: 50%;
  width: 2.15rem;
  transform: translateY(-50%);
  transition: transform .25s cubic-bezier(.22,.61,.36,1);
  transition-delay: .15s;
}

.button-more a .arrow:hover::after,
.button-more2 a .arrow:hover::after{
  transform: translate(.75rem, -50%);
}



.button-more2 a{
  background: transparent;
  display: inline-block;
  font-size: 1.15rem;
  color: var(--white-color);
  position: relative;
}
@media screen and (max-width: 768px) {
  .button-more2 a{
    font-size: 1rem;
/*    padding: .5rem 1rem; */
  }
}

.button-more2 a::before{
  content:'';
  display: block;
  position:absolute;
  top:50%;
  right: -5%;
  transform: translateY(-50%);
  clip-path: circle(0% at 50% 50%);
  transition:  clip-path .45s cubic-bezier(.22,.61,.36,1);
  width: 2.25rem;
  height: 2.25rem;
  z-index: 2;
}

.button-more2 a:hover::before{
  background-color: var(--white-color);
  /* ホバー時：右側中央に小さめの円 */
  clip-path: circle(25% at 50% 50%);
  transition-delay:
    .25s, /* background-color */
    0s;   /* transform */
    z-index: 1;
  opacity: .4;
}

.button-more2 a::after{
  content:'';
  display: block;
  position:absolute;
  bottom: 0;
  left: 10%;
  height: 1px;
  width: 80%;
  z-index: 0;
  background: var(--white-color);

  /* 初期状態：線が表示されている */
  transform: scale(1, 1); /* 下線を横方向に0倍、縦方向に1倍に変形（非表示） */
  transform-origin: left top; /* 変形の原点を左上に指定 */
  transition: transform .3s; /* 変形をアニメーション化 */
}
/*
@media screen and (max-width: 768px) {
  .button-more2 a::after{
    margin-left: 1rem;
    width: 2rem;
  }
}*/

.button-more2 a:hover::after{
  transform-origin: right top; 
  transform: scale(0, 1);
}

.button-more2 a .arrow{
  display: block;
  padding: .75rem 4rem .75rem 2rem;
  position: relative;
  line-height: 1;
  z-index: 10;
}

.button-more2 a .arrow::after{
  background: url('../img/common/arrow.svg') no-repeat center / contain;
  content: '';
  display: inline-block;
  filter: brightness(0) saturate(100%) invert(99%) sepia(23%) saturate(2%) hue-rotate(74deg) brightness(113%) contrast(100%);
  height: 1.15rem;
  right: 1rem;
  vertical-align: middle;
  position: absolute;
  top: 50%;
  width: 2.15rem;
  transform: translateY(-50%);
  transition: transform .25s cubic-bezier(.22,.61,.36,1);
  transition-delay: .15s;
}

/*
 * 
.button-more2{
  margin-top: 1rem;
  overflow: hidden;
  text-align: center;
  position: relative;
  z-index: 5;
}

.button-more2 a{
  display: inline-block;
  overflow: hidden;
  padding: 1rem 2rem;
  position: relative;
}

@media screen and (max-width: 768px) {
  .button-more2 a{
    padding: .75rem 1.5rem;
  }
}

.button-more2 a::before{
  background: var(--point-color02);
  content: '';
  display: block;
  height: 100%;
  left: -100%;
  position: absolute;
  top: 0;
  transition: .25s ease-in-out;
  z-index: -1;
  width: 100%;
}

.button-more2 a::after{
  background: url('../img/common/arrow.svg') no-repeat center / contain;
  content: '';
  display: inline-block;
  height: 1.5rem;
  margin-left: 1.5rem;
  vertical-align: middle;
  width: 2.5rem;
}

@media screen and (max-width: 768px) {
  .button-more2 a::after{
    margin-left: 1rem;
    width: 2rem;
  }
}
*/

/* recruit setting ------------------------------------------  */
section.recruit{
  background: url('../img/common/bg_recruit.jpg') no-repeat center / cover;
  background-attachment: fixed;
  background-color: var(--bg-gray-color);
  color: var(--white-color);
}

section.recruit .inner{
  max-width: 650px;
}

section.recruit .inner h2{
  text-align: center;
}

/*
#commitment .button-more2 a::after,
section.recruit .button-more2 a::after{
  filter: brightness(0) saturate(100%) invert(99%) sepia(23%) saturate(2%) hue-rotate(74deg) brightness(113%) contrast(100%);
}
*/

/* header setting ------------------------------------------  */

header.floating-menu{
  align-items: center;
  background: rgba(255,255,255,0.9);
  bottom: 0;  /* 最初は下部に固定 */
  display: flex;
  justify-content: space-between;
  padding:0;
  position: -webkit-sticky; /* Safari対応 */
  position: sticky;
  left: 0;
  width: 100%;
  z-index: 1100;
}

@media (min-width: 981px) {
  header.floating-menu.top{
    transform: translateY(100%);
    opacity: 0;
    animation: floatingMenuIn .35s cubic-bezier(.22,.61,.36,1) forwards;
    animation-delay: 4s;
  }
}

@keyframes floatingMenuIn {
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.floating-menu.stuck {
  top: 0;  /* スクロールで上部に固定 */
  bottom: auto;
}

/* 小さい画面での調整 */
@media (max-width: 980px) {
  header.floating-menu {
    height: 80px;
/*    overflow: hidden; */
    position: fixed;
    top: 0;
    bottom: inherit;
  }
}

header .title{
  margin: 0 auto 0 0;
  padding: 0 0 0 2.5%;
  max-width: 200px;
}

@media screen and (max-width: 1240px) {
  header .title{
    max-width: 180px;
  }
}
/*
@media screen and (max-width: 768px) {
  header .title{
    padding: .5rem .5rem .5rem 2.5%;
  }
}
*/

header .title a{
  padding: 0;
}

header .title a:hover{
  background: var(--white-color);
}

header .title a img{
  height: auto;
  transition: .3s ease-in;
  max-width: 100%;
  width: 100%;
}

header .title a:hover img{
  opacity: .4;
}

.floating-menu ul {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

@media screen and (max-width: 980px) {
  #sp-menu{
    background-color: rgba(255,255,255,.9);
    display: block;
    position: fixed;
    right: -100%;
    height: calc( 100vh - 81px);
    transition: right 0.3s ease-in-out;
    top: 81px;
    width: 100%;
    z-index: 10000;
  }
  #sp-menu.open {
  right: 0; /* 画面内にスライドイン */
  }
  .floating-menu nav ul{
    display: block;
    width: 100%;
  }

  header.top #sp-menu {
    top: 75px;
    height: 100vh;
  }
}

.floating-menu ul li{
  margin:0;
  padding: 0;
  line-height: 1;
}

@media screen and (max-width: 980px) {
.floating-menu ul li{
  border-bottom: 1px solid var(--gray-color);
}

}

.floating-menu a{
  display: block;
  color:  var(--black-color);
  font-weight: 500;
  line-height: 1;
  padding: 2rem 3rem;
  position: relative;
  overflow: hidden;
}

@media screen and (max-width: 1240px) {
  .floating-menu a{
    padding: 2rem 1.5rem;
  }
}

.floating-menu a span{
  display: block;
  position: relative;
  text-align: center;
  transition: .25s ease-in-out;
  line-height: 1;
  z-index: 5;
  left: 0;
}

.floating-menu a span.text{
  overflow: hidden;
  height: 18px;
}

@media screen and (max-width: 1240px) {
  .floating-menu a span.text{
    height: 16px;
  }
}


@media screen and (min-width: 981px) {
  .floating-menu a:hover span.ja{
    margin-top: -22px;
  }

  .floating-menu a span.en{
    color: var(--white-color);
    margin-top: .5rem;
  }
}

@media screen and (max-width: 980px) {
  .floating-menu a:hover span.ja{
    color: var(--white-color);
  }
  .floating-menu a span.en{
    display: none;
  }
}

.floating-menu a:hover {
  background-color: var(--bg-gray-color02);
  opacity: 1;
}

.button-contact a{
  background: var(--black-color);
  color: var(--white-color);
}

.button-contact a:hover{
  background-color: var(--point-color);
}

/* トップに来た時 ---------- */
.floating-menu.stuck {
  border-bottom: 1px solid #e2e5ea;
  top: 0;
  bottom: auto;
  left: 0;
  transform: translateX(0);
  width: 100%;
}


/* sp menu --------- */

#button-menu{
  display: none !important;
}

@media screen and (max-width: 980px) {
  #button-menu{
    display: block !important;
  }
}

#button-menu{
  background-repeat: no-repeat;
  background-position: center 35%;
  background-size: 30px auto;
  background-color: var(--point-color02);
  color: var(--white-color);
  display: block;
  font-size: .65rem;
  margin: 0;
  letter-spacing: 1px;
  padding: 1rem .5rem 1rem;
  text-align: center;
}


#button-menu span{
  border-top: 1px solid var(--white-color);
  display: block;
  line-height: 1;
  margin: 0 auto;
  padding-top: 2.45rem;
  position: relative;
  width: 65%;
}

#button-menu span::before,
#button-menu span::after{
  content: '';
  display: block;
  background:  var(--white-color);
  height: 1px;
  position: absolute;
  left: 0;
  width: 100%;
}

#button-menu span::before{
  top: .75rem;
}

#button-menu span::after{
  top: 1.5rem;
}

#button-menu.open span{
  border:0;
}

#button-menu.open span::before{
  transform: rotate(45deg);
  top: 1rem;
}
#button-menu.open span::after{
  transform: rotate(-45deg);
  top: 1rem;
}

#button-menu,
.button.sp{
  height: 100%;
  width: 15%;
}

.button.sp a{
  background-repeat: no-repeat;
  background-position: center 30%;
  background-size: 40px auto;
  background-color: var(--black-color);
  color: var(--white-color);
  display: block;
  font-size: .65rem;
  letter-spacing: 1px;
  padding: 3.5rem .5rem .5rem;
  text-align: center;
  height: 100%;
  width: 100%;
}

.button.sp.mail a{
  background-image: url('../img/common/icon_contact.png');
}

.button.sp.tel a{
  background-image: url('../img/common/icon_tel.png');
  background-color: var(--bg-gray-color02);
}

.button.sp.tel {
  margin-left: auto;
  margin-right: 0;
}

/* footer setting ------------------------------------------  */


footer{
  padding: 0;
  background: var(--bg-gray-color);
  color: var(--white-color);
}

footer a{
  color: var(--white-color);
}

footer small{
  background: var(--black-color);
  display: block;
  font-weight: 500;
  font-size: 10px;
  padding: 1rem 0;
  text-align: center;
}

@media screen and (min-width: 1536px) {
  footer small{
    font-size: 12px;
  }
}

footer .contact{
  background: var(--bg-gray-color02);
  padding: 6rem 0 5rem;
}


footer .contact h2{
  font-size: 2rem;
  line-height: 1.25;
}

@media screen and (min-width: 1536px) {
  footer .contact h2{
    font-size: 2.25rem;
  }
}

@media screen and (min-width: 1241px) and (max-width: 1380px) {
  footer .contact h2 span{
    display: block;
  }
}
@media screen and (max-width: 1240px) {
  footer .contact h2{
    font-size: 1.85rem;
    text-align: center;
  }
}

@media screen and (max-width: 980px) {
  footer .contact h2{
    font-size: 1.65rem;
  }
}

@media screen and (max-width: 768px) {
  footer .contact h2{
    font-size: 1.45rem;
  }
}

footer .contact .flex-box{
  align-items: center;
  justify-content: space-between;
}


@media screen and (max-width: 1380px) {
  footer .contact .box_33{
    width: 30%;
  }
}

@media screen and (max-width: 1240px) {
  footer .contact .box_33{
    margin-bottom: 1.5rem;
    width: 100%;
  }
}

footer .contact .banner{
  background: var(--point-color02);
  overflow: hidden;
  position: relative;
  width: 32%;
}

footer .contact .banner a:hover,
footer .contact .banner:hover{
  opacity: 1;
}

footer .contact .banner.tel{
  background: var(--point-color03);
}

footer .contact .banner.mail a{
	box-shadow: inset 0 0 0 6px rgba(0,0,0,.15);
  display: block;
  position: relative;
}

footer .contact .banner.mail a:hover{
	box-shadow: inset 0 0 0 12px rgba(0,0,0,.2);
}
/*
footer .contact .banner.mail a::after {
  content: '';
  display: block;
  position: absolute;
  bottom: 2px;
  left: 0;
  height: 2px;
  width: 100%;
  z-index: 0;
  background: var(--white-color);
  transform: scale(1, 1);
  transform-origin: left top;
  transition: transform .3s;
}
footer .contact .banner.mail a:hover::after {
  transform-origin: right top;
  transform: scale(0, 1);
}
*/

@media screen and (max-width: 1380px) {
  footer .contact .banner{
    width: 34%;
  }
}

@media screen and (max-width: 1240px) {
  footer .contact .banner{
    width: 49%;
  }
}

@media screen and (max-width: 768px) {
  footer .contact .banner{
    width: 100%;
  }
  footer .contact .banner.mail{
    margin-bottom: 1rem;
  }
}

footer .contact .banner a{
  background-repeat: no-repeat;
  background-size: 80px auto;
  padding: 3rem 2rem 3rem 7.5rem;
}

@media screen and (max-width: 1380px) {
  footer .contact .banner a{
    background-size: 70px auto;
    padding: 3rem 1rem 3rem 7rem;
  } 
}

@media screen and (max-width: 1240px) {
  footer .contact .banner a{
    background-size: 8vw auto;
    padding: 4.5vw 2vw 4.5vw 12vw;
  }
}

@media screen and (max-width: 768px) {
  footer .contact .banner a{
    background-size: 15vw auto;
    padding: 4.5vw 2vw 4.5vw 30vw;
  }
}

footer .contact .banner.mail a{
  background-image: url(../img/common/icon_contact.png);
  background-position: 20px 40%;
}

@media screen and (max-width: 980px) {
  footer .contact .banner.mail a{
    background-position: 10px 40%;
  }
}

@media screen and (max-width: 768px) {
  footer .contact .banner.mail a{
    background-position: 5vw 50%;
  }
}

.banner_tel a,
footer .contact .banner.tel a{
  background-image: url(../img/common/icon_tel.png);
  background-position: 5px 45%;
  padding-left: 6rem;
}

@media screen and (max-width: 1240px) {
  .banner_tel a,
  footer .contact .banner.tel a{
    padding-left: 10vw;
  }
}

@media screen and (max-width: 768px) {
  .banner_tel a,
  footer .contact .banner.tel a{
    background-position: 5vw 45%;
    padding-left: 30vw;
  }
}

.banner_tel a span.font-jost,
footer .contact .banner a span.font-jost{
  display: block;
  font-size: 3vw;
  font-weight: 400;
  letter-spacing: 3px;
  line-height: 1;
  margin-bottom: .75rem;
}

@media screen and (min-width: 1536px) {
  .banner_tel a span.font-jost,
  footer .contact .banner a span.font-jost{
    font-size: 3.05rem;
  }
}

@media screen and (max-width: 1240px) {
  .banner_tel a span.font-jost,
  footer .contact .banner a span.font-jost{
    font-size: 4.5vw;
  }
}

@media screen and (max-width: 768px) {
  .banner_tel a span.font-jost,
  footer .contact .banner a span.font-jost{
    font-size: 6vw;
  }
}

.banner_tel a span.sub-text,
footer .contact .banner a span.sub-text{
  display: block;
  font-weight: 400;
  font-size: .9rem;
}

@media screen and (min-width: 1536px) {
  .banner_tel a span.sub-text,
  footer .contact .banner a span.sub-text{
    font-size: 1rem;
  }
}

@media screen and (max-width: 1240px) {
  .banner_tel a span.sub-text,
  footer .contact .banner a span.sub-text{
    font-size: .85rem;
  }
}

@media screen and (max-width: 980px){
  .banner_tel a span.sub-text,
  footer .contact .banner a span.sub-text{
    font-size: 1.75vw;
  }
}

footer .footer-nav{
  padding: 5rem 0;
}


footer .footer-nav .box_40.flex-box{
  align-items: flex-start;
  flex-wrap: wrap;
}

@media screen and (max-width: 980px) {
  footer .box_40{
    width: 100%;
  }
}

footer .box_40 h2{
  font-weight: 500;
  width: 100%;
}

@media screen and (max-width: 980px) {
  footer .box_40 h2{
    text-align: center;
  }
}


footer .box_40 h2 img{
  display: block;
  filter: brightness(0) saturate(100%) invert(99%) sepia(23%) saturate(2%) hue-rotate(74deg) brightness(113%) contrast(100%);
  margin-bottom: .5rem;
  max-width: 280px;
}

@media screen and (max-width: 980px) {
  footer .box_40 h2 img{
    margin: 0 auto 1rem;
    max-width: 240px;
  }
}

footer .box_40 h2 span.text{
  display: block;
  font-size: 1.05rem;
  line-height: 1;
  margin-bottom: 1rem;
}

@media screen and (min-width: 1536px) {
  footer .box_40 h2 span.text{
    font-size: 1.2rem;
  }
}

@media screen and (max-width: 980px) {
  footer .box_40 h2 span.text{
    display: none;
/*    font-size: 1.15rem; */
  }
}

footer .box_40 address{
  font-size: 12px;
  font-style: normal;
  width: 45%;
}

@media screen and (max-width: 980px) {
  footer .box_40 address{
    width: 48%;
  }
}

@media screen and (max-width: 768px) {
  footer .box_40 address:last-child{
    margin-top: 2rem;
  }

  footer .box_40 address{
    font-size: .85rem;
    width: 100%;
  }
}

footer .box_40 address p.point{
  font-size: 120%;
  font-weight: 600;
  margin-bottom: .5rem;
}

footer .box_40 address a{
  text-decoration: underline;
}


@media screen and (max-width: 980px) {
  footer nav{
    display: none;
  }
}

footer nav > ul{
  align-items: flex-start;
  display: flex;
  font-size: .95rem;
  font-weight: 400;
}

@media screen and (min-width: 1536px) {
  footer nav > ul{
    font-size: 1rem;
  }
}


footer nav > ul > li{
  width: calc( calc( 100% - 12% ) / 5);
}

footer nav > ul > li:first-child{
  width: 13%;
}

footer ul li{
  list-style: none;
  position: relative;
}

footer ul.child{
  margin: 0;
  padding: 0;
}

footer ul.child li{
  padding-left: 1rem;
  margin-top: .5rem;
}

footer ul.child li::before{
  background: var(--white-color);
  content: '';
  display: inline-block;
  height: 1px;
  opacity: .5;
  position: absolute;
  top: 12px;
  left: .25rem;
  width: 5px;
}

