@charset "UTF-8";
/* CSS Document */

*, *:before, *:after {
  margin:0;
  padding:0;
  box-sizing:border-box;
  border:0;
  outline:0
}
html {
  font-size: 62.5%;
}
body {
  line-height: 1.75;
  font-size: 14px;
  font-size: 1.4rem;
  color: #333;
  font-family: "M PLUS Rounded 1c","ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", "Helvetica Neue", Helvetica, Arial, sans-serif;
  animation: contentsfadeIn 2s ease 0s 1 normal;
  -webkit-animation: contentsfadeIn 2s ease 0s 1 normal;
}
img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}
a{
  text-decoration: none;
  color: #044EB7;
  transition: all 0.3s 0s;
}
a:hover,
a:focus {
  text-decoration: none;
  outline: none;
  opacity: .7;
}
ul,ol,li {
  list-style: none;
}
@keyframes contentsfadeIn {
  0% {opacity: 0}
  100% {opacity: 1}
}
@-webkit-keyframes contentsfadeIn {
  0% {opacity: 0}
  100% {opacity: 1}
}

/* header */
#container {
  background-image: url(images/bg_main.png);
}
header{
  background-color: #fff;
  padding: .8em 2em;
}
header #header_summary {
  max-width: 980px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
header #header_summary span {
  font-size: 12px;
  font-size: 1.2rem;
  margin: 0 0 0 1em;
}
#mainvisual {
  background-image: url(images/bg_mainv.png);
  border-top: 3px solid #ea739a;
  border-bottom: 3px solid #ea739a;
  padding: 2em;
  text-align: center;
}
.main_title {
  max-width: 980px;
  margin: 0 auto;
  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;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.main_title p {
  width: 50%;
}

/* navi */
.nav_wrap {
  background-color: #ea739a;
  border-radius: 5px;
  padding: 2em;
  margin: 20px 0;
}
.nav_wrap>p {
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: bold;
}
.nav_wrap ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}
.nav_wrap ul li {
  width: calc(100% / 13);
}
.nav_wrap ul li a {
  display: block;
  background-color: #fff;
  color: #bf4845;
  padding: 0.3em 0;
  border-radius: 5px;
  font-weight: bold;
  text-align: center;
  margin: 2px;
}

/* ladysday */
.ladysday {
  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;
  padding: 20px 0 0;
  margin-bottom: 40px;
  background: url(images/bn_info2.jpg) center center no-repeat;
  background-size: cover;
  text-align: center;
  max-width: 980px;
  height: 210px;
}
.ladysday_info p {
  padding: 0 1em;
  color: #ea739a;
  font-size: 26px;
  font-size: 2.6rem;
  line-height: 1.2;
}
.day {
  font-size: 40px;
  font-size: 4.0rem;
  font-weight: bold;
}

/* main */
#main {
  max-width: calc(980px + 4em);
  margin: 0 auto;
  padding: 0 2em;
}
.news_box h2 {
 background-image: url(images/bg_til.png);
 padding: 10px;
 margin-bottom: 20px;
}
article {
  padding-bottom: 40px;
}

/* pagetop */
#pagetop {
  position: fixed;
  bottom: 30px;
  right: 20px;
}

/* footer */
footer {
  background-color: #fff3f7;
  text-align: center;
  padding: 3em 2em;
}
footer h3 {
  margin-bottom: 2em;
}
footer a {
  margin: 2em 0 0;
  text-decoration: none;
  display: inline-block;
}
.copy {
  padding: 1em 2em;
  text-align: center;
  background-color: #ea739a;
}
.copy p {
  font-size: 12px;
  font-size: 1.2rem;
  color: #fff;
}

@media screen and (max-width: 768px){
  header #header_summary a {
    width: 100%;
  }
  header #header_summary span {
    width: 100%;
    margin: 0;
  }
  #mainvisual {
    padding: 20px 2em 3em;
  }
  .main_title p {
    width: 100%;
  }
  .nav_wrap ul li {
    width: calc(100% / 6);
  }
  #pagetop {
    position: static;
    text-align: center;
    margin-bottom: 3em;
  }
  .ladysday {
    padding: 7vw 0 0;
  }
  .ladysday_info p {
    font-size: 5vw;
  }
  .day {
    font-size: 7vw;
    display: block;
  }
}