/* reset */
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;
}

li {
  list-style-type: none;
}

body {
  margin: 0;
  padding: 0;
  font: 500 2vw/1.8 YuGothic, "Yu Gothic", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Arial", "Meiryo", sans-serif;
  position: relative;
  width: 100%;
  margin: 0 auto;
}

@media screen and (max-width: 767px) {
  body {
    font-size: 3vw;
  }
}
@media screen and (min-width: 850px) {
  body {
    font-size: 17px;
  }
}
a {
  text-decoration: none;
  color: #000;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  box-sizing: border-box;
}

.flex {
  display: flex;
  flex-wrap: nowrap;
}

.grid {
  display: grid;
}

header {
  position: relative;
  background-color: #F8F9FA;
}
header.top {
  background-color: #FFFFFF;
}
header .header-wrapper {
  box-sizing: border-box;
  max-width: 850px;
  margin: 0 auto;
  padding: 0 5%;
}
header .title {
  padding: 3em 0 5em;
}
header .title img.title-pc {
  display: block;
  width: 40%;
  margin-right: 60%;
}
header .title img.title-mobile {
  display: none;
}
header .title img.title {
  display: block;
  width: 20%;
  padding: 0;
}
header #mobilemenu {
  display: none;
}
header #mobilemenu #menubutton {
  box-sizing: border-box;
  top: 2em;
  right: 4%;
  width: 12%;
  height: 5em;
  margin: 0 0 5% 3%;
  position: absolute;
  z-index: 100;
}
header #mobilemenu #menubutton .menubar1, header #mobilemenu #menubutton .menubar2, header #mobilemenu #menubutton .menubar3 {
  position: absolute;
  height: 2%;
  width: 70%;
  left: 15%;
  background-color: #333;
  transition: 0.3s all;
}
header #mobilemenu #menubutton .menubar1 {
  top: 20%;
}
header #mobilemenu #menubutton .menubar2 {
  top: 50%;
}
header #mobilemenu #menubutton .menubar3 {
  top: 80%;
}
header #mobilemenu #menumain {
  background-color: #FFFFFF;
  box-sizing: border-box;
  visibility: hidden;
  opacity: 0;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 96%;
  max-width: 800px;
  max-height: 100%;
  margin: 2% auto;
  padding: 1em 10%;
  border: 1px solid #999;
  border-radius: 1em;
  z-index: 50;
  transition: 0.3s all;
  font-size: 1.3em;
  overflow: scroll;
}
header #mobilemenu #menumain ul {
  margin: 6em auto 2em;
}
header #mobilemenu #menumain li {
  box-sizing: border-box;
  line-height: 1;
  width: 100%;
  height: 4em;
  line-height: 1;
  border: 1px solid #999;
  margin-bottom: 1em;
  font-weight: bold;
  color: #6bc3a0;
}
header #mobilemenu #menumain li a {
  padding: 1.5em 1em;
  color: #6bc3a0;
  display: block;
}
header #mobilemenu #menumain li.selected {
  padding: 1.5em 1em;
  color: #FF8001;
}
header #mobilemenu #menumain .inquery {
  text-align: center;
  margin-bottom: 3em;
}
header #mobilemenu #menumain .inquery button {
  font-size: 1.3em;
  line-height: 1;
  padding: 0.8em 3em;
  background-color: #BEAC83;
  border: 0;
  border-radius: 2em;
  letter-spacing: 0.15em;
  color: #FFF;
  width: 100%;
}
header #mobilemenu.open #menubutton {
  position: fixed;
}
header #mobilemenu.open #menubutton .menubar1 {
  top: 50%;
  transform: rotate(45deg);
}
header #mobilemenu.open #menubutton .menubar2 {
  opacity: 0;
}
header #mobilemenu.open #menubutton .menubar3 {
  top: 50%;
  transform: rotate(-45deg);
}
header #mobilemenu.open #menumain {
  visibility: visible;
  opacity: 1;
}

@media screen and (min-width: 850px) {
  header #mobilemenu #menubutton {
    right: calc(50% - 380px);
    width: 5rem;
  }
}
@media screen and (max-width: 767px) {
  header.top {
    padding: 8em 0 10em;
  }
  header .title {
    padding: 0 2% 0;
  }
  header .title img.title-pc {
    display: none;
  }
  header .title img.title-mobile {
    display: block;
    width: 30%;
    margin: 0 auto;
  }
  header .title img.title {
    display: block;
    width: 40%;
    padding: 5em 0 3em;
    margin: 0 auto;
  }
  header #mobilemenu {
    display: block;
  }
  header #mobilemenu #menubutton {
    height: 3em;
  }
}
main {
  box-sizing: border-box;
  max-width: 850px;
  margin: 0 auto;
  padding: 0 5%;
}
main h1 {
  font-size: 1.2em;
  font-weight: 500;
  padding-left: 0.5em;
  margin: 1em 0;
}
main nav {
  margin: 2em 0;
}
main nav ul {
  display: flex;
}
main nav li {
  padding: 0.5em 1.5em;
  opacity: 0.5;
}
main nav li:hover {
  opacity: 1;
}
main nav li.selected {
  opacity: 1;
}
main nav li:first-child {
  border-right: 1px solid #333;
}
main nav li:last-child {
  border-left: 1px solid #333;
}

footer {
  box-sizing: border-box;
  max-width: 850px;
  margin: 1em auto;
  padding: 0 2%;
}
footer .footer-nav {
  font-size: 0.8em;
  margin: 1em 0 5em;
}
footer .footer-nav ul {
  display: flex;
  justify-content: space-between;
  width: 70%;
  margin: 0 auto;
}
footer .footer-nav li {
  box-sizing: border-box;
  text-align: center;
  border: 1px solid #333;
  width: 12em;
  padding: 0.5em;
  margin: 0 3%;
  transition: 0.3s all;
}
footer .footer-nav li a {
  display: block;
}
footer .footer-nav li:hover {
  opacity: 0.5;
}
footer .aboutme {
  margin: 2em 0 1em;
  text-align: center;
  cursor: pointer;
}
footer .aboutme button {
  font-size: 1.5em;
  line-height: 1;
  padding: 0.8em 3em;
  background-color: #EDE7D8;
  border: 0;
  border-radius: 2em;
  letter-spacing: 0.15em;
  transition: 0.3s all;
}
footer .aboutme button:hover {
  opacity: 0.5;
}
footer .note {
  box-sizing: border-box;
  font-size: 0.8em;
  width: 20em;
  padding: 1.5em 1em;
  border: 1px solid #333;
  margin: 1em 0;
}
footer .note .note-img {
  margin-top: 1em;
  display: inline;
  width: 5em;
}
footer .infomation {
  font-size: 0.8em;
  border-top: 1px solid #ccc;
  padding: 1em 3%;
}
footer .infomation .copyright {
  margin-top: 2em;
  font-size: 0.8em;
}
footer .inquery-button {
  text-align: center;
  margin: 1em 0 10em;
  font-size: 0.9em;
}
footer .inquery-button a {
  text-decoration: underline;
}

@media screen and (max-width: 767px) {
  main {
    max-width: 100%;
  }
  main nav {
    display: none;
  }
  footer {
    max-width: 100%;
    font-size: 0.9em;
  }
  footer .footer-nav {
    font-size: 1.5em;
  }
  footer .footer-nav ul {
    display: block;
    width: 80%;
  }
  footer .footer-nav li {
    width: 100%;
    padding: 0;
    border: 0;
    margin: 0;
  }
  footer .footer-nav li a {
    padding: 3em 0;
    display: block;
  }
  footer .footer-nav li:first-child {
    border-bottom: 1px solid #333;
  }
  footer .footer-nav li:last-child {
    border-top: 1px solid #333;
  }
  footer .note {
    font-size: 1.2em;
    width: 85%;
    margin: 1em auto 3em;
  }
}/*# sourceMappingURL=style.css.map */