@charset "UTF-8";
/* CSS Document */

/*-----------------
common
-----------------*/
*{margin:0;padding:0;box-sizing:border-box;outline:0;border:0}
html{font-size:62.5%;}
body{
  line-height: 1.5;
  font-size:14px;
  font-size:1.4rem;
  font-family: 'ヒラギノ角ゴシック Pro', 'Hiragino Kaku Gothic Pro', メイリオ, Meiryo, Osaka, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
  background-color: #26ad38;
}
a{color: #0c4fab;text-decoration: none;transition: all .1s ease-out;}
a:hover{opacity:0.7;}
img{vertical-align:middle;max-width:100%;height:auto;}
ul,ol,li{list-style:none;}

/*-----------------
header
-----------------*/
#container {
  padding: 0;
}
#header_summary {
  max-width: calc(1200px + 4em);
  margin: 0 auto;
  padding: 1em 2em;
}
#header_summary img {
  display: block;
}
h1 {text-align: center;}

/*-----------------
blog
-----------------*/
.main_wrap {
  text-align: center;
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}
.qr {
  margin: 0em 0 5em;
}
.qrlogo {
  margin: 1em 0 0;
}
.qr_link {
  margin: 10px 0 0;
}
.link_a {
  position: absolute;
  bottom: 95px;
  left: 125px;
}

/*-----------------
footer_menu
-----------------*/
.footer_menu {
  margin: 0 0 3em;
  text-align: center;
}
.footer_menu ul {
  display: flex;
  justify-content: center;
  margin: 0 auto 1em;
  max-width: 750px;
}
.footer_menu li {
  align-self: center;
  width: 33%;
  margin: 0 0.5em;
}
.footer_menu a {
  display: block;
  background: #e50012;
  padding: 0.5em 1em;
  border-radius: 3px;
  color: #fff;
  font-size: 16px;font-size: 1.6rem;
}
.footer_menu p {font-size: 12px;font-size: 1.2rem;}
.caution {
  background-color: #fff;
  padding: 2em;
}
.caution p {
  font-size: 12px;
  font-size: 1.2rem;
  max-width: 980px;
  margin: 0 auto;
}

/* pagetop */
#pagetop {
  position: fixed;
  bottom: 30px;
  right: 20px;
  width: 60px;
  height: 60px;
}
#pagetop a {
  position: relative;
  display: block;
}
#pagetop a::before,
#pagetop a::after{
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  content: "";
  vertical-align: middle;
}
#pagetop a::before {
  box-sizing: border-box;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #004299;
}
#pagetop a::after {
  left: 37%;
  width: 15px;
  height: 15px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  transform: rotate(-45deg);
  top: 6px;
}

/*-----------------
copyright
-----------------*/
footer {
  background: #fff;
  text-align: center;
  padding: 2em;
}
footer>p {
  font-size: 12px;
  font-size: 1.2rem;
}

@media screen and (max-width: 1200px) {
  .link_a {
    position: absolute;
    bottom: 8vw;
    left: 10vw;
    width: 40vw;
  }
  .qr_link {
    margin: .2vw 0 0;
  }
}

@media screen and (max-width: 750px) {
  .blog_contents {
    margin: 2em;
  }
  .footer_menu li {
    width: 50%;
  }
}

@media screen and (max-width: 780px) {
  .title h1 {
    font-size: 5vw;
  }
  article h2 p {
    font-size: 5vw;
  }
  .blog_contents {
    text-align: left;
    font-size: 14px;font-size: 1.4rem;
  }
  .blog_contents p br {display: none;}
  .footer_menu ul {
    display: block;
  }
  .footer_menu li {
    width: 100%;
    margin: 0 0 0.5em;
  }
  footer {text-align: left;}
  .footer_menu a {
    font-size: 4vw;
  }
  .footer_menu p {
    text-align: left;
  }
  #pagetop {
    position: static;
    margin: 0 auto;
  }
}