 @charset "utf-8";

/*---------------------------------
フッター
---------------------------------*/

footer {
  background-color: #F09199;
  padding-top: 50px;
}
footer p {
  text-align: center;
}
footer .footer-top  {
  text-align: center;
  height: 250px;
  
}
.footer-top a img {
  margin-top: 20px;
  border-radius: 25px;
}
  
.footer-top .flex {
  display: flex;
  justify-content: center;
  margin: 30px 0 80px;
}
.footer-top .box {
  margin: 0 10px;
}
.footer-two {
  background-color: #333;
}
.footer-two p {
  color: white;
  font-size: 10px;
}
footer .footer-one {
  background-color: #333;
}
footer .footer-one ul li {
  font-size: 13px;

}
footer .footer-one ul li a {
  color: white;
}
  
.footer_btn {
  position: relative;
  display: inline-block;
  padding: 0.8em 2em;
  text-decoration: none;
  color: black;
  background: white;/*色*/
  border: solid 1px white;/*線色*/
  border-radius: 25px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.2);
  text-shadow: 0 1px 0 rgba(0,0,0,0.2);
  margin: 5px;
  font-size: 20px;
  line-height: 1.3;
}

.footer_btn:active {
  /*押したとき*/
  border: solid 1px #03A9F4;
  box-shadow: none;
  text-shadow: none;
  
}
.footer_btn:hover{
  opacity: 0.8;
}
 
.footer_button {
  position: relative;
  display: inline-block;
  padding: 0.8em 3em;
  text-decoration: none;
  color: black;
  background: white;/*色*/
  border: solid 1px white;/*線色*/
  border-radius: 25px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.2);
  text-shadow: 0 1px 0 rgba(0,0,0,0.2);
  margin: 5px;
  font-size: 20px;
  line-height: 1.3;
}

.footer_button:active {
  /*押したとき*/
  border: solid 1px #03A9F4;
  box-shadow: none;
  text-shadow: none;
  
}
.footer_button:hover{
  opacity: 0.8;
}  
/* ナビ */
.footer-one{
  padding-bottom: 0px;
  background-color: pink;
}
.footer-one ul {
  display: flex;
  margin: 0 auto;
  padding: 0 3%;
  width: 94%;
  max-width: 1200px;
  list-style-type: none;
}
.footer-one ul li {
  position: relative;
  width: 20%;
  font-size: 1rem;
  font-weight: bold;
}
.footer-one ul li:first-child::before {
  position: absolute;
  display: block;
  content: "";
  top: 25%;
  left: 0px;
  width: 1px;
  height: 50%;
  background-color: #976d52;
}
.footer-one ul li::after {
  position: absolute;
  display: block;
  content: "";
  top: 25%;
  right: 0px;
  width: 1px;
  height: 40%;
  background-color: #976d52;
}
.footer-one ul li a {
  display: block;
  padding: 17px 10px;
  color: black;
  text-align: center;
  
}
.footer-one ul li a:hover {
  opacity: 0.5;
}
  
@media screen and (max-width:600px) {
footer {
  padding-top: 20px;
}

.footer-top a img {
  max-width: 100%;
  height: auto;
}
.footer-top {
  margin-bottom: 50px;
}
.footer-top p {
  padding: 2px;
}

.footer-top .flex {
  flex-direction: column;
  padding-bottom: 50px;
}

.footer-top .box {
  padding-top: 10px;
} 
.footer-one ul {
  flex-direction: column;
  padding-left: 20px;
  padding-top: 20px;
  padding-bottom: 20px;
  margin: 0;
}
.footer-one ul li:first-child::before {
  display: none;
}
.footer-one ul li::after {
  display: none;
}
.footer-one ul li {
  font-size: 16px;
  padding:5px;
  width: 100%;
}
.footer-one ul li a {
  display:inline;
}

}