@charset "UTF-8";
/* CSS Document */
/*-----------------
common
-----------------*/
*,
*:before,
*:after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  border: 0;
  outline: 0
}
html {
  font-size: 62.5%;
}
body {
  background-image: url(images/bg2.jpg);
  background-size: 100vw auto;
  background-position: center top;
  line-height: 1.75;
  font-size: 14px;
  font-size: 1.4rem;
  color: #4d443f;
  font-family: "M PLUS Rounded 1c", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", "Helvetica Neue", Helvetica, Arial, sans-serif;
}
img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}
a {
  text-decoration: none;
  color: #443637;
  transition: all 0.3s 0s;
}
a:hover,
a:focus {
  text-decoration: none;
  outline: none;
  opacity: .7;
}
ul,
ol,
li {
  list-style: none;
}
#container {
  position: relative;
}
.fadeIn {
  animation-name: fadeInAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  opacity: 0;
}
@keyframes fadeInAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
::selection {
  background: #faaf3b;
  color: #fff;
}

/*-----------------
header
-----------------*/
header {
  padding: 0 2em;
}
.logo div {
  position: relative;
  margin: 0 auto;
  padding: 2em 0 0;
}
.logo img {
  margin: 0 1em 0 0;
}
.backtop {
  position: absolute;
  top: 0;
  right: 0;
}
.backtop a {
  background: #ef8100;
  color: #fff;
  padding: 1em 2em;
  display: inline-block;
  border-radius: 0 0 5px 5px;
}
.eyecatchWrap {
  background-color: #fff;
  border-radius: 30px;
  max-width: 800px;
  margin: 2em auto;
  text-align: center;
  padding: 5em;
}
.header_orange {
  margin-bottom: 2em;
  display: block;
}

/*-----------------
article
-----------------*/
article {
  padding: 3em 2em 1em;
  text-align: center;
}
article>div {
  margin: 0 auto;
  max-width: 1100px;
}
article>div h2 {
  background-color: #ef8100;
  padding: 1em;
  border-radius: 15px 15px 0 0;
  font-size: 18px;
  font-size: 1.8rem;
  color: #fff;
}
.main_contents {
  padding: 2em;
  background-color: #fff;
  border-radius: 0 0 15px 15px;
}

/* backnumber */
aside {
  padding: 1em 2em 3em;
  text-align: center;
}
aside>div {
  margin: 0 auto;
  max-width: 1100px;
  background-color: #ef8100;
  border-radius: 15px;
  padding: 0 0 2em;
}
aside>div h2 {
  background-color: #ef8100;
  padding: 1em 1em 0;
  border-radius: 3px;
  font-size: 18px;
  font-size: 1.8rem;
  color: #fff;
  border-radius: 15px 15px 0 0;
}
aside dl {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 1em 2em 0;
  color: #fff;
  white-space: nowrap;
  font-size: 12px;
  font-size: 1.2rem;
  flex-wrap: wrap;
}
aside dt {
  margin: 0 .5em 0 0;
}
aside dd {
  margin: 0 0.5em;
}
aside dd a {
  background-color: #fff;
  border-radius: 2px;
  display: inline-block;
  margin: 0 5px 0 0;
  padding: 5px 15px;
}
aside dd a:last-child {
  margin: 0;
}

/* pagetop */
#pagetop {
  position: fixed;
  bottom: 30px;
  right: 20px;
  width: 89px;
  height: 89px;
}
#pagetop a {
  position: relative;
  display: block;
}

/* footer */
footer {
  margin-top: 5em;
  background-color: #4d443f;
  color: #fff;
  padding: 5em 2em 0;
}
.footer_contents {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer_listWrap {
  width: 50%;
}
.footer_listWrap ul {
  margin: 0 2em 0 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.footer_listWrap li {
  margin: 15px 0 0 0;
  width: 49%;
}
.footer_listWrap a {
  color: #fff;
}
.footer_listWrap>p {
  font-size: 22px;
  font-size: 2.2rem;
}
.footer_contact {
  width: 50%;
  border-left: 1px solid #6d625d;
  padding: 0 0 0 3%;
}
.footer_contact dt {
  margin: 0 0 10px 0;
  text-align: center;
}
.footer_contact dd {
  display: flex;
  flex-wrap: wrap;
  flex-wrap: wrap;
  justify-content: space-between;
}
.footer_contact dd p {
  margin: 8px 0 0;
  width: 49%;
  align-self: center;
}
.footer_contact dd a {
  background-color: #faaf3b;
  padding: 1em 0.5em;
  display: block;
  text-align: center;
  border-radius: 5px;
}
.copy {
  color: #fff;
  padding: 5em 0;
  text-align: center;
  font-size: 12px;
  font-size: 1.2rem;
}

@media screen and (max-width: 768px) {
  .logo img {
    display: block;
    margin: 0 0 8px 0;
  }
  .main_boxWrap h2 {
    margin: 1em 0 0;
    font-size: 4vw;
  }
  .main_boxWrap h2 br {
    display: none;
  }
  .main_boxWrap h2:after {
    width: 100px;
    background-size: contain;
    height: 67px;
  }
  .footer_contents {
    display: block;
  }
  .footer_contact {
    width: 100%;
    padding: 3em 0 0 0;
    border-left: 0;
    border-top: 1px solid #847375;
  }
  .footer_contact a {
    font-size: 2.5vw;
  }
  .footer_listWrap {
    width: auto;
  }
  .footer_listWrap ul {
    margin: 1em 0 3em;
  }
  .footer_listWrap a {
    font-size: 3vw;
  }
  .footer_listWrap p {
    text-align: center;
  }
  .copy {
    text-align: left;
  }
  #pagetop {
    position: static !important;
    margin: 1em auto;
  }
  aside dt {
    width: 100%;
  }
}