body {
  font-family: "Roboto", sans-serif;
  font-weight: bold;
  color: #444;
  background: #fff;
}
body.fixed header {
  background: #FDF7F2;
}
@media screen and (max-width: 1080px) {
  body {
    font-size: 14px;
  }
}
@media screen and (max-width: 768px) {
  body.on {
    height: 100vh;
    overflow: hidden;
  }
  body.on header {
    background: #FDF7F2;
  }
  body.on header #menubtn:before, body.on header #menubtn:after {
    -webkit-transform: translate3d(0, -50%, 0);
            transform: translate3d(0, -50%, 0);
  }
  body.on header #menubtn:before {
    -webkit-transform: translate3d(0, -50%, 0) rotate(45deg);
            transform: translate3d(0, -50%, 0) rotate(45deg);
  }
  body.on header #menubtn:after {
    -webkit-transform: translate3d(0, -50%, 0) rotate(-45deg);
            transform: translate3d(0, -50%, 0) rotate(-45deg);
  }
  body.on header .menu {
    display: block;
    height: 100vh;
  }
}

.inner {
  width: 96%;
  max-width: 1200px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .inner {
    width: 90%;
  }
}

img {
  max-width: 100%;
}

header {
  font-size: 14px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 2em;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
header h1 {
  max-width: 160px;
}
header .menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 3em;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: bold;
}
header .menu a {
  text-decoration: none;
  color: #444;
}
header .menu .login {
  width: 13em;
  border-radius: 1em;
  overflow: hidden;
  text-align: center;
}
header .menu .login a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 0.8em 0.8em 0.8em 1.2em;
  background: #34559D;
  color: #fff;
  text-decoration: none;
}
header .menu .login a span {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
header .menu .login a:after {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  content: "";
  display: inline-block;
  vertical-align: middle;
  width: 2em;
  height: 2em;
  background: url("../img/icon_arrow.svg") no-repeat center center #1D3977;
  border-radius: 10px;
}
@media screen and (max-width: 768px) {
  header {
    font-size: 12px;
    z-index: 9999;
  }
  header #menubtn {
    display: inline-block;
    width: 30px;
    height: 30px;
    position: relative;
  }
  header #menubtn:before, header #menubtn:after {
    content: "";
    display: block;
    position: absolute;
    width: 100%;
    height: 4px;
    background: #34559D;
    top: 50%;
    left: 0;
    border-radius: 3px;
  }
  header #menubtn:before {
    -webkit-transform: translate3d(0, 5px, 0);
            transform: translate3d(0, 5px, 0);
  }
  header #menubtn:after {
    -webkit-transform: translate3d(0, -5px, 0);
            transform: translate3d(0, -5px, 0);
  }
  header .menu {
    font-size: 18px;
    display: none;
    position: absolute;
    right: 0;
    top: 100%;
    width: 100%;
    background: #FDF7F2;
  }
  header .menu li {
    width: 100%;
    margin: 0 auto;
  }
  header .menu li:not(.login) a {
    display: block;
    padding: 1em 2em;
  }
}

main {
  overflow: hidden;
}

footer {
  background: #fff;
}
footer .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 60px 0;
  gap: 30px;
  font-weight: normal;
}
footer .inner > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
footer .inner .logo {
  width: 184px;
}
footer .inner h2 {
  font-size: 125%;
  line-height: 1.8;
}
footer .inner p, footer .inner ul {
  font-size: 90%;
  line-height: 1.4;
}
footer .inner ul li:not(last-child) {
  margin-bottom: 1em;
  line-height: 1.8;
}
footer .inner ul a[target=_blank] {
  text-decoration: none;
  color: #424242;
}
footer .inner ul a[target=_blank]:after {
  content: "";
  display: inline-block;
  width: 13px;
  height: 11px;
  vertical-align: middle;
  background: url("../img/icon_blank.svg") no-repeat center center;
  background-size: contain;
  margin-left: 1em;
}
@media screen and (max-width: 768px) {
  footer .inner .company {
    display: block;
    text-align: center;
  }
  footer .inner .company .logo {
    margin: 0 auto 20px;
  }
  footer .inner .company .address {
    text-align: left;
  }
}
footer #copyright {
  width: 100%;
  background: #444;
  text-align: center;
  color: #fff;
  font-size: 75%;
  padding: 20px 10px;
  font-weight: normal;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.sp {
  display: none;
}

@media screen and (max-width: 768px) {
  .pc {
    display: none;
  }
  .sp {
    display: block;
  }
}