@charset "UTF-8";

/* フッタ
-----------------------------------------------------------------*/
footer {
  border-top: 1px solid #ccc;
}

/* footer section */
.footer-info {
  padding: 50px 0;
}
.copyright {
  background: #99c3d1;
  text-align: center;
  padding: 20px 0;
  font-family: 'Noto Sans JP', sans-serif;
}


/* .footer-info */
.footer-nav {
  display: flex;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
}
.footer-nav-item-main {
  width: 60%;
}
.footer-nav-item-menu {
  width: 18%;
}

.footer-info h1 {
  max-width: 400px;
  margin-bottom: 10px;
}

/* dl */
.footer-info dl {
  margin-bottom: 10px;
}
.footer-info dl a {
  color: #333;
  transition: .3s;
}
.footer-info dl a:hover {
  color: #ff7d00;
}

/* dt */
.footer-info dl dt {
  display: inline-block;
  font-size: 1.6rem;
  margin-bottom: 0.5em;
}
.footer-info dl dt a {
  display: block;
  position: relative;
  padding-left: 16px;
}
.footer-info dl dt a:before {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 6px;
  height: 6px;
  margin: -4px 0 0 0;
  border-top: solid 1px #006ea8;
  border-right: solid 1px #006ea8;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.footer-info dl dt a:after {
  position: absolute;
  bottom: -2px;
  left: 0;
  content: '';
  width: 100%;
  height: 1px;
  background: #ff7d00;
  transform: scale(0, 1);
  transform-origin: left top;
  transition: transform .3s;
}
.footer-info dl dt a:hover {
  color: #ff7d00;
}
.footer-info dl dt a:hover:before {
  border-top: solid 1px #ff7d00;
  border-right: solid 1px #ff7d00;
}
.footer-info dl dt a:hover:after {
  transform: scale(1, 1);
}

/* dd */
.footer-info dl dd {
  position: relative;
  padding-left: 1.8em;
  font-size: 1.4rem;
  line-height: 1.4em;
  margin-bottom: 0.6em;
}
.footer-info dl dd:before {
    border-radius: 50%;
    width: 3px;
    height: 3px;
    display: block;
    position: absolute;
    left: 1em;
    top: 0.6em;
    content: "";
    background: #006ea8;
    }


/* .copyright */
.copyright p {
  color: #333;
  font-size: 1.4rem;
  font-weight: 300;
  line-height: 1.4em;
}
.copyright p span {
  margin-left: 2px;
}




@media screen and (max-width:1300px) {
.footer-info {
  padding: 20px 0;
}
.footer-nav-item-main {
  padding-left: 50px;
  transition: 0.3s ease-in-out;
}
.footer-nav-item-menu {
  padding-top: 10px;
}
}

@media screen and (max-width:768px) {
.footer-nav-item-main {
  width: 100%;
}
.footer-nav-item-menu {
  display: none;
}
}

@media screen and (max-width:480px) {
.footer-nav-item-main {
  padding-left: 20px;
  padding-right: 20px;
}
}




