@charset "UTF-8";
/* 
html5doctor.com Reset Stylesheet
v1.6.1
Last Updated: 2010-09-17
Author: Richard Clark - http://richclarkdesign.com 
Twitter: @rich_clark
*/
@import url("https://fonts.googleapis.com/css?family=Noto+Sans+JP");
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

body {
  line-height: 1;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

nav ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

/* change colours to suit your needs */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

/* change colours to suit your needs */
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title], dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* change border colour to suit your needs */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input, select {
  vertical-align: middle;
}

body {
  background: #0F1E3C;
  color: #333;
  font-size: 16px;
  font-family: "Noto Sans JP", sans-serif;
}

img {
  vertical-align: top;
}

a:hover img {
  opacity: 0.75;
  filter: alpha(opacity=75);
}

.body {
  margin: 0 auto;
  position: relative;
  text-align: center;
  color: #fff;
}

header {
  background: url(../img/bg.png) #fff no-repeat right 10px top -60px;
  text-align: left;
  position: relative;
  height: 90px;
}

@media screen and (max-width: 750px) {
  header {
    height: 60px;
  }
}

header h1 {
  display: inline-block;
  background: #fff;
  box-sizing: border-box;
  height: 60px;
  line-height: 60px;
}

header h1 img {
  vertical-align: middle;
}

@media screen and (max-width: 750px) {
  header h1 {
    line-height: 60px;
  }
  header h1 img {
    width: 140px;
    line-height: 60px;
  }
}

header span {
  position: absolute;
  top: 39px;
  left: 300px;
  padding: 5px;
  display: inline-block;
  color: #333;
  background: rgba(255, 255, 255, 0.8);
}

@media screen and (max-width: 750px) {
  header span {
    top: auto;
    bottom: 12px;
    left: 140px;
    font-size: 2.5vw;
  }
}

.main {
  padding: 45px 0;
}

@media screen and (max-width: 750px) {
  .main {
    padding: 10vw 0;
  }
}

.main .block {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto 20px;
  display: flex;
  text-align: left;
}

@media screen and (max-width: 750px) {
  .main .block {
    width: 100%;
    display: block;
  }
}

.main .block h2 {
  width: 11%;
  font-size: 18px;
  position: relative;
  margin-left: 2%;
}

@media screen and (max-width: 750px) {
  .main .block h2 {
    width: 96%;
    padding-bottom: 1em;
    margin-bottom: .5em;
  }
}

.main .block h2:after {
  position: absolute;
  right: 0;
  top: 0;
  background-color: #fff;
  /* 線色 */
  border-radius: 5px;
  /* 線幅の半分 */
  content: "";
  display: block;
  width: 4px;
  /* 線幅 */
  height: 100%;
}

@media screen and (max-width: 750px) {
  .main .block h2:after {
    top: auto;
    bottom: 0;
    height: 4px;
    /* 線幅 */
    width: 100%;
  }
}

.main .block dl {
  width: 85%;
  font-size: 14px;
  display: flex;
  text-align: left;
  flex-wrap: wrap;
  line-height: 1.5;
}

@media screen and (max-width: 750px) {
  .main .block dl {
    width: 100%;
    font-size: 2.5vw;
  }
}

.main .block dl dt {
  width: 30%;
  padding: 11px 0 11px 5%;
  box-sizing: border-box;
}

@media screen and (max-width: 750px) {
  .main .block dl dt {
    width: 20%;
    padding: 11px 0 11px 4%;
  }
}

.main .block dl dd {
  width: 70%;
}

@media screen and (max-width: 750px) {
  .main .block dl dd {
    width: 74%;
    margin-left: 4%;
  }
}

.main .block dl dd input {
  font-size: 14px;
  background: #1C2C4B;
  border: 0;
  border-radius: 4px;
  padding: 10px;
  margin: 2px 0;
  width: 100%;
  color: #fff;
  box-sizing: border-box;
  outline: none;
  transition: .3s;
}

.main .block dl dd input:hover {
  background: #344466;
}

@media screen and (max-width: 750px) {
  .main .block dl dd input {
    font-size: 2vw;
  }
}

footer {
  font-size: 15px;
  background: url(../img/bg2.png) no-repeat center top;
  min-height: 355px;
  padding: 30px 0 0 0;
  line-height: 1.5;
}

@media screen and (max-width: 750px) {
  footer {
    font-size: 3vw;
    background-size: 200vw auto;
    background-position: center bottom;
    min-height: 200px;
    padding: 0 0 20px;
  }
}

@media screen and (max-width: 750px) {
  footer .logo img {
    width: 200px;
  }
}

footer span {
  margin: 20px 0 30px;
  display: block;
}

footer .contact a {
  color: #0F1E3C;
  margin: 20px auto 40px;
  font-size: 16px;
  font-weight: bold;
  display: block;
  width: 200px;
  height: 40px;
  line-height: 40px;
  background: #fff;
  border-radius: 4px;
  text-decoration: none;
  transition: .3s;
  border: 1px solid #0F1E3C;
}

footer .contact a:hover {
  background: #0F1E3C;
  color: #fff;
  border: 1px solid #fff;
}

footer .copy {
  margin: 0 10%;
}
