@charset "utf-8";
/* CSS Document */

/*共通CSS*/
/*-------------------------
  全体 
-------------------------*/
body{
  overflow-x: hidden;
  font-family: 'Zen Kaku Gothic Antique', sans-serif;
}
.underline{
  background:linear-gradient(transparent 70%, #FFFF00 0%);
}
.emph{
  font-size: 2rem;
  color: #087B94;
}
.up{
  text-transform: uppercase;
}
.half_letter{
  font-size: .6em;
}
.smaller{
  font-size: .8em;
}
.indent{
  text-indent: 1em;
}
.blue{
  color: blue;
}
/*-------------------------
レスポンス非表示設定 
-------------------------*/
.sp{
  display: none;
}
.sp390{
  display: none;
}
.sp845{
  display: none;
}
.sp1046{
  display: none;
}
.sp459{
  display: none;
}
/*-------------------------
  HEADER 
-------------------------*/
header{
  height: 100px;
  background-color: #D4ECEA;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo{
  width: max(25vw, 200px);
  padding-left: 10px;
}
@media screen and (max-width:600px){
  .logo{
    width: 100%;
  }
}

/*-------------------------
  FOOTER
-------------------------*/
footer{
  margin-bottom: 100px;
}
footer ul{
  background-color: #D9D9D9;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  padding-top: calc(25px - .5rem);
  padding-bottom: calc(25px - .5rem);
  font-size: .8rem;
  justify-content: center;

}
footer ul li{
  padding-left: 2rem;
}
footer p{
  text-align: center;
  padding-top: 10px;
}

@media screen and (max-width:1046px){
  .sp1020{
    display: block;
  }
}
@media screen and (max-width:845px){
  .sp845{
    display: block;
  }
}
@media screen and (max-width:600px){
  footer ul{
    flex-direction: column;
  }
  footer li{
    border-bottom: 1px solid #333;
    margin: 0 30px;
    padding: 10px 0 5px;
  }
  .sp{
    display: block;
  }
  .pc{
    display: none;
  }
}
@media screen and (max-width:578px){
  .sp578{
    display: block;
  }
}
@media screen and (max-width:459px){
  .sp459{
    display: block;
  }
}