@charset "UTF-8";
footer {
  background-color:var(--darkgray);
}
footer .space2{
	position:relative;
}
.footer__item1 {
	width:50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.footer__item2 {
	width:50%;
  color:#fff;
  font-size: 0.6rem;
  font-weight:700;
  line-height: 20px;
}

.footer__item3 {
	width:100%;
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
}
.footer__item3 a{
  color:#fff;
  font-size: 12px;
  font-weight:700;
  line-height: 20px;
  margin:50px 15px 0 15px;
}
@media (max-width: 768px) {
  .footer__item2 {
    margin-top: 20px;
    text-align: center;
    width: 100%;
  }
.footer__item1 {
	margin:0 auto 50px auto;
}
}
#copy{
	width:100%;
	text-align: center;
	font-weight:700;
	font-size:0.6rem;
	color:#858585;
	margin:30px auto 0 auto;
	padding:20px 0;
	border-top:1px #858585 solid;
}
#pagetop{
    width:80px;
    height:45px;
    position:absolute;
    z-index:2;
    text-align: center;
    right:0px;
    bottom:60px;
    background-color: #fff;
	border-radius:10px 10px 0 0;
    cursor: pointer;
    transition:all 0.2s;
}
#pagetop:hover{
    height:70px;
    background-color: var(--orange);
}
.dli-arrow-up {
  display: inline-block;
  vertical-align: middle;
  color: #000;
  line-height: 1;
    margin-top:14px;
  position: relative;
  width: 2px;
  height: 1.0em;
  background: currentColor;
}
#pagetop:hover .dli-arrow-up{
  color: #fff;
}

.dli-arrow-up::before {
  content: '';
  width: 0.6em;
  height: 0.6em;
  border: 0.15em solid currentColor;
  border-left: 0;
  border-bottom: 0;
  transform: rotate(-45deg);
  transform-origin: top right;
  position: absolute;
  top: -1px;
  right: 50%;
  box-sizing: border-box;
}

.footer_nav {
    padding-bottom: 50px;
    border-bottom:1px solid var(--crmwhite);
    margin-bottom: 50px;
}
.footer_nav-list {
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
    flex-wrap: wrap;
}
.footer_nav-list__item {
  margin:50px 10px 0 10px;
}
.footer_nav-inlist__item a{
  width:fit-content;
}
.footer_nav-inlist__item a p{
  width:fit-content;
  border-bottom:1px solid var(--darkgray);
  transition: all .3s;
}
.footer_nav-inlist__item a:hover p{
  border-bottom:1px solid var(--crmwhite);
}
.footer_nav-list__en {
    font-weight: 900;
    color: var(--orange);
    margin-left:15px;
}
.footer_nav-list__ttl {
    font-weight: 900;
    color: var(--orange);
    margin-top:-5px;
    margin-bottom:15px;
    margin-left:15px;
    position:relative;
}
.footer_nav-list__ttl::before{
    content:"";
    display:block;
    background-color:var(--orange);
    width:5px;
    height:50px;
    position:absolute;
    bottom:5px;
    left:-15px;
}