@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;}
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;display: block;}
ul,ol,li{list-style:none;}

/*-----------------
header
-----------------*/
#header_summary {
  max-width: calc(980px + 4em);
  margin: 0 auto;
  padding: 0.5em 2em;
}
#header_summary img {
  display: block;
}
.title {
  padding: 1em 2em;
  color: #fff;
  background-color: #0c4fab;
}
.title h1 {
  max-width: 980px;
  margin: 0 auto;
  font-size: 28px;
  font-size: 2.8rem;
  font-weight: normal;
}
#header_image {
  text-align: center;
  background-image: url(images/title2.jpg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  height: 42vw;
}

/* main  */
article {
  margin: 2em 2em 6em;
}
article h2 {
  color: #0c4fab;
  margin: 0 0 1em;
  text-align: center;
}
article div {
  margin: 0 auto;
  max-width: 960px;
  text-align: center;
}
.video_wrap {
  position: relative;
  width: 100%;
  padding-top: 56%;
}
.video_wrap > video {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

/*-----------------
pagetop
-----------------*/
#pagetop {
  position: relative;
  height: 45px;
  margin: -45px 0 0;
}
#pagetop a {
  width: 0;
  height: 0;
  border-left: 45px solid transparent;
  border-right: 45px solid transparent;
  border-bottom: 45px solid #333;
  position: absolute;
  margin: auto;
  top: 0;
  left: 0;
  right: 0;
  z-index: 99;
}
#pagetop a::before {
  content: "";
  z-index: 999;
  position: absolute;
  margin: auto;
  top: 25px;
  left: 0;
  right: 0;
  width: 18px;
  height: 18px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(-45deg);
  margin-left: -9px;
}

/* footer */
footer {
  background-color: #333;
  color: #fff;
  padding: 4em 2em;
}
footer>p {
  text-align: center;
  font-size: 12px;
  font-size: 1.2rem;
}
footer ul {
  max-width: 980px;
  margin: 0 auto;
  padding: 3em 0 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
footer ul li {
  width: 49%;
}
footer ul li a {
  background-color: #fff;
  padding:1em;
  display: block;
  text-align: center;
  border-radius: 34px;
  color: #333;
  font-size: 16px;
  font-size: 1.6rem;
  border: 2px solid #fff;
  white-space: nowrap;
}
footer ul li a:hover {
  color: #fff;
  background-color: #333;
  opacity: 1;
  border: 2px solid #fff;
}
footer dl {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
footer dt {
  font-size: 36px;
  font-size: 3.6rem;
  border-right: 2px solid #fff;
  width: 26%;
  margin: 0 4% 0 0;
}
footer dd {
  display: flex;
  width: 65%;
  flex-wrap: wrap;
}
footer dd p {
  margin: 0 1% 1% 0;
  width: 32%;
}
footer dd p a {
  background-color: #cee9f4;
  color: #333;
  padding: 0.8em 0.5em;
  display: block;
  text-align: center;
  border-radius: 22px;
  border: 2px solid #fff;
}
footer dd p a:hover {
  background: #333;
  border: 2px solid #cee9f4;
  color: #fff;
  opacity: 1;
}

/* copyright */
.copy {
  background-color: #ededed;
  text-align: center;
  padding: 2em;
  color: #000;
}
.copy p {
  font-size: 12px;
  font-size: 1.2rem;
}

@media screen and (max-width: 768px) {
  footer ul {
    display: block;
  }
  footer ul li {
    width: 48%;
    width: auto;
    margin: 0 0 0.5em;
  }
}

@media screen and (max-width: 480px) {
  footer dd p {
    width: 100%;
    margin: 0 0 0.5em;
  }
  .copy {
    padding: 1em;
  }
  article div {
    padding: 2em 1em 5em;
  }
  footer {
    padding: 2em 1em;
  }
  footer ul {
    padding: 1em 0;
  }
}