@charset "utf-8";

/* reset */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
main, article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video, button{
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
  box-sizing: border-box;
}
body {
  line-height: 1;
}
img{
  vertical-align: bottom;
}
ol, ul {
  list-style: none;
}
blockquote, q {
  quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
button {
  display: block;
  background-color: transparent;
  border: none;
  border-radius: 0;
  cursor: pointer;
  appearance: none;
  font-family: inherit;
  color: inherit;
}
:focus {
  outline: none;
}
:focus-visible {
  outline: 2px solid #005fcc;
}


/* base */
html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}
@media screen and (max-width: 750px) {
  html {
    font-size: 100%;
  }
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 1.75;
  color: #000000;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
}
#all-wrapper{
  width: 100%;
}

/* header */
header{
  width: 100%;
  padding: 13px 0;
  text-align: center;
  border-bottom: 1px solid #000;
}

/* main */
main{
  width: 750px;
  margin: 0 auto;
}
main a {
  transition: opacity 0.4s;
}
main a:hover{
  opacity: 0.6;
}
main h1 a:hover{
  opacity: 1;
}

/* footer */
footer{
  width: 100%;
  padding: 30px 0 38px;
  border-top: 1px solid #000000;
  text-align: center;
  line-height: 1.6;
}
footer .pagetop {
  margin: 0 0 30px;
}
footer .footer-logo {
  width: 228px;
  margin: 0 auto;
}
footer .footer-logo img {
  width: 100%;
}
footer .footer-address {
  margin-top: 11px;
  font-size: 1.4rem;
}
footer .footer-contact {
  margin-top: 5px;
  font-size: 1.2rem;
}
footer .footer-contact a {
  color: inherit;
}
footer .copyright{
  margin-top: 17px;
  text-align: center;
  font-size: 1.2rem;
}
@media screen and (max-width: 767px) {
  footer{
    padding: 6.4vw 0;
  }
  footer .pagetop {
    width: 10vw;
    margin: 0 auto 6.4vw;
  }
  footer .pagetop img {
    width: 100%;
  }
  footer .footer-logo {
    width: 41.6vw;
  }
  footer .footer-logo img {
    width: 100%;
  }
  footer .footer-address {
    margin-top: 2.93vw;
    font-size: 3.2vw;
  }
  footer .footer-contact {
    margin-top: 1.33vw;
    font-size: 3.2vw;
  }
  footer .copyright{
    margin-top: 6.93vw;
    font-size: 2.67vw;
  }
}