@charset "UTF-8";
/* CSS Document */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
a:link, a:visited, a:hover, a:active {
  text-decoration: none;
  cursor: pointer;
}
a[target=_blank]::after {
  content: url('../images/blank_16_16.png');
  position: relative;
  top: 2px;
  left: 6px;
  opacity: 0.8;
}
html {
  font-size: 62.5%;
  line-height: 1.6;
}
body {
  background-color: #E5DECA;
  color: #333;
  font-size: 1.6rem;
  line-height: 1.7;
  font-family: "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
}
ul {
  list-style: none;
}
/*---------------------------------------
footer
-----------------------------------------*/
#footer {
  clear: both;
  width: 100%;
  min-height: 100px;
  background: linear-gradient(180deg, #0D3B2B, #4A7664);
  color: #E5DECA;
  text-align: center;
  margin: 0;
  padding: 1em 0;
  font-size: 1.6rem;
}
.footer-navi {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}
.footer-navi li {
  width: 100%;
}
.footer-navi li a {
  display: block;
  font-size: 1.6rem;
  color: #E5DECA;
  margin: 20px 0;
  padding: 10px 10px;
  border: 2px solid #4A7664;
  border-radius: 20px;
}
.footer-navi li a:hover {
  font-size: 1.6rem;
  border-left: 10px solid #FF873E;
  border-right: 10px solid #FF873E;
  border-bottom: 2px dotted #ff873E;
  color: #FF873E;
  transition: 0.3s;
}
.footer-navi .active a {
  width: 100%;
  background-color: #7E9374;
  color: #003B2B;
  font-weight: bold;
  transition: 0.3s;
}
.footer-navi .active a:hover {
  background-color: #470000;
  color: #DA313B;
  border: 2px solid #B2291C;
  border-radius: 20px;
  transition: 0.3s;
}
@media only screen and (min-width:1024px) {
/*---------------------------------------
footer
-----------------------------------------*/
  #footer {
    width: 100%;
    margin: 0 auto;
  }
  .footer-navi {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    max-width: 1024px;
    margin: 0 auto;
  }
  .footer-navi li {
    width: 25%;
  }
  .footer-navi li a {
    display: block;
    font-size: 1.6rem;
    margin: 20px 0;
    padding: 10px 10px;
    border: 2px solid #4A7664;
    border-radius: 20px;
  }
  .footer-navi li a:hover {
    font-size: 1.6rem;
    border-left: 10px solid #FF873E;
    border-right: 10px solid #FF873E;
    border-bottom: 2px dotted #ff873E;
    transition: 0.3s;
  }
  .footer-navi .active a {
    width: 100%;
    background-color: #7E9374;
    color: #003B2B;
    font-weight: bold;
    transition: 0.3s;
  }
  .footer-navi .active a:hover {
    background-color: #470000;
    color: #DA313B;
    border: 2px solid #B2291C;
    border-radius: 20px;
    transition: 0.3s;
  }
}