/* --------------------------------------------- */
/* ▼モバイルファースト (全環境に共通のデザイン) */
/* --------------------------------------------- */
/*========= ページトップのためのCSS ===============*/
/*リンクの形状*/
#page-top {
  position: relative;
  background: #DF1F1C;
  border-radius: 15px 15px 0 15px;
  width: 70px;
  height: 60px;
  padding: 10px 0 0;
  text-align: center;
  text-decoration: none;
  transition: all 0.3s;
  line-height: 1.4;
  font-size: 1.2rem;
  font-weight: 600;
}
#page-top:hover {
  background: #000;
}
#page-top a {
  color: #fff;
}
/*リンクを右下に固定*/
#page-top {
  position: fixed;
  right: 20px;
  z-index: 2;
  /*はじめは非表示*/
  opacity: 0;
  transform: translateY(100px);
}
/*　上に上がる動き　*/
#page-top.UpMove {
  animation: UpAnime 0.5s forwards;
}
@keyframes UpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/*　下に下がる動き　*/
#page-top.DownMove {
  animation: DownAnime 0.5s forwards;
}
@keyframes DownAnime {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 1;
    transform: translateY(100px);
  }
}
#page-top img {
  display: block;
  width: 15px;
  margin: 0 auto 5px;
}
.bow_footer {
  position: relative;
  background: #D5BFAC;
  border-top: 1px solid #000;
  padding: 2em 0;
}
.bow_f_logo {
  width: 150px;
  margin: 0 auto 1em;
}
.bow_f_address {}
.bow_f_address p {
  line-height: 1.8;
  margin: 0 auto 1em;
}
.bow_f_address a {
  position: relative;
  text-decoration: none;
  display: inline-block;
  background: #fff;
  color: #DF1F1C;
  font-weight: 600;
  padding: 13px 40px 13px 50px;
  border-radius: 25px;
  text-align: center;
  outline: none;
  transition: ease .2s;
}
.bow_f_address a:hover {
  background: #F2EAE1;
}
.bow_f_address a::before {
  position: absolute;
  content: '';
  top: 50%;
  left: 25px;
  transform: translate(0%, -50%);
  display: block;
  width: 15px;
  height: 15px;
  background-image: url("/img/common/icon_mail.webp");
  background-size: contain;
  background-repeat: no-repeat;
}
.bow_f_address a::after {
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translate(0%, -50%);
  content: '\f0da';
  font-family: FontAwesome;
  font-weight: 400;
  color: #DF1F1C;
  transition: all .3s;
}
.bow_f_address a:hover::after {
  right: 11px;
}
.bow_f_nav {
  display: none;
}
.bow_cr {
  padding: 10px 0;
  background: #DF1F1C;
  color: #fff;
  font-size: 1.0rem;
}
/* ------------------------------------ */
/* ▼PC用デザインとして付け足すデザイン */
/* ------------------------------------ */
@media all and (min-width: 768px) {
  .bow_footer {
    padding: 4em 0;
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    margin: 0em auto 0em;
    justify-content: center;
    align-items: center;
  }
  .bow_f_logo {
    width: 230px;
    margin: 0;
  }
  .bow_f_address {
    margin: 0 50px 0 50px;
    width: 300px;
    text-align: left;
  }
  .bow_f_address p {
    line-height: 1.8;
  }
  .bow_f_address a {
    letter-spacing: 2px;
    padding: 16px 50px 16px 60px;
    border-radius: 50px;
  }
  .bow_f_address a::before {
    left: 35px;
  }
  .bow_f_nav {
    width: 450px;
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    margin: 0em;
    justify-content: flex-start;
    text-align: left;
  }
  .bow_f_nav ul.bow_bold {
    font-weight: 600;
    font-size: 1.6rem;
  }
  .bow_f_nav ul.bow_bold li {
    padding: 0 0 7px;
  }
  .bow_f_nav ul {
    margin: 0 50px 0 0;
    font-size: 1.4rem;
  }
  .bow_f_nav ul li {
    padding: 0 0 3px;
    letter-spacing: 2px;
  }
  .bow_cr {
    padding: 15px 0;
    letter-spacing: 2px;
    font-size: 1.3rem;
  }
}