@charset "utf-8";
/* CSS Document */
/* ================================================== */
/* #footer */
/* ================================================== */
#footer{
  position:relative;
  padding:90px 130px 90px 20px;
  color:#FFF;
  background: #3D4D53;  /* fallback for old browsers */
  background: -webkit-linear-gradient(to bottom, #748D9A, #3D4D53);  /* Chrome 10-25, Safari 5.1-6 */
  background: linear-gradient(to bottom, #748D9A, #3D4D53); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
  }
#footer > .fl{
  align-items: center;
  max-width: 880px;
  }
@media only screen and (min-width: 1200px) {
#footer > .fl{
  left:-50px;
  }
}
@media only screen and (max-width: 1024px) {
#footer > .fl{
  max-width: 90%;
  }
}
@media only screen and (max-width: 960px) {
#footer{
  padding:50px 50px 50px 20px;
  }
#footer .wrap{
  max-width:300px;
  align-items: flex-start;
}
}
@media only screen and (max-width: 480px) {
#footer{
  font-size:1.0rem;
  }
#footer > .fl{
  max-width: 85%;
  }
}
/* ============ .logo ============ */
#footer .logo{
  width:160px;
  text-align:center;
  order: 2;
  }
#footer .logo img{
  width:66px;
  }
@media only screen and (max-width: 1024px) {
#footer .logo{
  width:100%;
  text-align:left;
  order: 1;
  }
}
@media only screen and (max-width: 960px) {

}
/* ============ .nav ============ */
#footer .nav{
  order: 3;
  justify-content: flex-start;
  align-items:stretch;
  width: calc(100% - 200px);
  }
#footer .nav ul{
  }
#footer .nav ul + ul{
  margin-left:60px;
  }
#footer .nav li{
  position:relative;
  padding-left:10px;
  margin:30px 0;
  }
#footer .nav li::before{
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  transform: translateY(-50%);
  display:inline-block;
  height:1px;
  width:5px;
  background-color:#FFF;
  }
#footer .nav li a{
  font-size:1.2rem;
  color:#FFF;
  padding: 5px 0;
  }
#footer .nav .slash{
  display: inline-block;
  background-color:#FFF;
  width:1px;
  height:32px;
  margin:0 18px;
  transform:rotate(45deg);
}
#footer .nav .snslink{
  margin-top:75px;
}
#footer .nav .snslink a{
  display: inline-block;
  line-height: 1;
  width:36px;
  padding: 0;
  fill: #FFF;
}
#footer .nav .snslink::before{
  display:none;
}
/* 一番下の段 */
#footer .nav ul:nth-of-type(4){
  justify-content: flex-start;
  width:100%;
  border-top:solid #FFF 1px;
  margin-left:0;
  }
#footer .nav ul:nth-of-type(4) li + li{
  margin-left:30px;
  }
@media only screen and (max-width: 1200px) {
#footer .nav ul + ul{
  margin-left:50px;
  }
}
@media only screen and (max-width: 1024px) {
#footer .nav{
  width:calc(100% - 60px);
  }
}
@media only screen and (max-width: 960px) {
#footer .nav{
  display:block;
  width:calc(100% - 40px);
  }
#footer .nav ul + ul{
  margin-left:0;
  }
#footer .nav .snslink{
  margin-top:0;
}
/* 一番下の段 */
#footer .nav ul:nth-of-type(4){
  display:block;
  }
#footer .nav ul:nth-of-type(4) li + li{
  margin-left:0;
  }
}
/* ============ .copy ============ */
#footer .copy{
  width:40px;
  color:#4F595D;
  font-size:1.0rem;
  -ms-writing-mode :tb-rl;
  writing-mode: vertical-rl;
  order: 1;
  }
@media only screen and (max-width: 1024px) {
#footer .copy{
  order: 2;
  }
}
@media only screen and (max-width: 960px) {
#footer .copy{
  width:20px;
  padding-top:40px;
  }
#footer .copy br{
  display:none;
  }
}

/* ================================================== */
/* トップにもどる */
/* ================================================== */
.pagetop {
  display:inline-block;
  height:110px;
  width:24px;
  position: fixed;
  bottom:30px;
  right:15px;
  cursor: pointer;
  color:#4f595d;
  transition: all .4s;
  opacity: 0;
  z-index: 1;
  }
.pagetop.appear{
  opacity: 1;
  }
.pagetop::before {
  content: "Top";
  position: absolute;
  top:50%;
  right:0;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  transform: translateY(-50%);
  -ms-writing-mode :tb-rl;
  writing-mode: vertical-rl;
  }
.pagetop .arrow {
  position: relative;
  top:10px;
  width: 0;
  height: 100px;
  border: 1px solid #4f595d;
  }
.pagetop .arrow::after {
  content: "";
  display: block;
  position: absolute;
  top: -10px;
  left: -3px;
  width: 2px;
  border-bottom: 10px solid #4f595d;
  border-left: 2px solid transparent;
  border-right: 2px solid transparent;
  }
@media only screen and (max-width: 480px) {
.pagetop {
  right:10px;
  }
}