#global-header {
  width: 100%;
}
#global-header .inner {
  width: 1000px;
  height: 80px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#global-header .inner .logo {
  width: 20%;
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: center;
}
#global-header .inner .logo a {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: space-around;
  align-items: center;
  text-align: center;
}
#global-header .inner .logo a img {
  width: auto;
  height: 70%;
}
@media screen and (max-width: 768px) {
  #global-header .inner .logo {
    width: 100%;
    display: block;
  }
  #global-header .inner .logo h1 {
    width: 100%;
  }
  #global-header .inner .logo h1 a {
    text-align: center;
  }
}
#global-header .inner #global-navi {
  width: 80%;
}
#global-header .inner #global-navi ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex: 1;
  width: 100%;
}
#global-header .inner #global-navi ul li {
  width: 100%;
}
#global-header .inner #global-navi ul li a {
  display: block;
  text-align: center;
  transition: all .7s ease;
  width: 100%;
  height: 100%;
  padding: 8px 0;
}
#global-header .inner #global-navi ul li a span {
  text-align: center;
  transition: all .7s ease;
  width: 100%;
}
#global-header .inner #global-navi ul li a span.ja {
  font-size: 1.4em;
  color: #232323;
}
#global-header .inner #global-navi ul li a span.en {
  font-size: 1.1em;
  color: #214f9e;
}
#global-header .inner #global-navi ul li a:hover {
  background: #214f9e;
}
#global-header .inner #global-navi ul li a:hover span.ja {
  color: #ffffff;
}
#global-header .inner #global-navi ul li a:hover span.en {
  color: #ffffff;
}
@media screen and (max-width: 768px) {
  #global-header .inner #global-navi {
    display: none;
  }
}
@media screen and (max-width: 1200px) {
  #global-header .inner {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  #global-header .inner {
    display: block;
    width: 100%;
    height: 70px;
  }
}

#key-visual {
  position: relative;
  margin-bottom: 100px;
}
#key-visual img.key-pic {
  width: 100%;
  height: auto;
  vertical-align: bottom;
  position: relative;
  z-index: 1;
}
#key-visual img.key-text {
  width: auto;
  height: 89px;
  position: absolute;
  z-index: 2;
  top: 40%;
  right: 6%;
  filter: drop-shadow(0 0 8px rgba(0, 0, 0, 0.15));
}
@media screen and (max-width: 1024px) {
  #key-visual img.key-text {
    height: 56px;
    top: 45%;
  }
}
@media screen and (max-width: 768px) {
  #key-visual img.key-text {
    height: 32px;
    top: 48%;
  }
}
@media screen and (max-width: 415px) {
  #key-visual img.key-text {
    height: 18px;
    top: 48%;
  }
}

#pankuzu {
  background: #ccc;
}
#pankuzu .inner {
  width: 1000px;
  margin: 0 auto;
}
#pankuzu .inner span.navi-list {
  display: inline-block;
}
#pankuzu .inner span.navi-list a {
  color: #ffffff;
  padding: 8px 0;
  display: inline-block;
  font-size: 1.4em;
}
#pankuzu .inner span.navi-list i {
  color: #ffffff;
  font-size: 1.4em;
}
@media screen and (max-width: 768px) {
  #pankuzu .inner {
    width: 90%;
  }
}

main#container {
  margin-bottom: 100px;
}
main#container .main-inner {
  width: 1000px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  main#container .main-inner {
    width: 90%;
  }
}

.content-header {
  width: 750px;
  margin: 0 auto 40px;
}
.content-header h2 {
  font-size: 1.8em;
  font-weight: bold;
  letter-spacing: .15em;
  margin-bottom: 8px;
}
.content-header p {
  font-size: 1.5em;
}
@media screen and (max-width: 768px) {
  .content-header {
    width: 90%;
  }
}

#main-form {
  width: 750px;
  margin: 0 auto;
}
#main-form dl {
  border-bottom: 1px solid #ddd;
  padding-bottom: 24px;
  margin-bottom: 24px;
}
#main-form dl div {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  padding: 12px 0;
  margin-bottom: 16px;
}
#main-form dl div dt {
  width: 25%;
  font-size: 1.5em;
}
#main-form dl div dt .hissu {
  font-size: 1em;
  color: #c1272d;
}
#main-form dl div dd {
  width: 75%;
  font-size: 1.6em;
}
#main-form dl div dd input, #main-form dl div dd textarea {
  box-sizing: border-box;
  width: 100%;
  padding: 12px;
  border: none;
  border: 1px solid #dddddd;
}
#main-form dl div dd label {
  display: inline-block;
  margin-bottom: 8px;
}
#main-form dl div dd label input {
  width: auto;
  position: relative;
  top: -3px;
  margin-right: 14px;
}
#main-form .btn-group {
  text-align: center;
}
#main-form .btn-group input[type="submit"] {
  border: none;
  padding: 16px 24px;
  font-size: 1.4em;
  background: #001035;
  border: 1px solid #001035;
  color: #ffffff;
  cursor: pointer;
  transition: all .8s ease;
}
#main-form .btn-group input[type="submit"]:hover {
  background: #fff;
  color: #001035;
  border-radius: 2.4em;
}
@media screen and (max-width: 768px) {
  #main-form {
    width: 90%;
  }
}
@media screen and (max-width: 415px) {
  #main-form dl div {
    display: block;
  }
  #main-form dl div dt {
    width: 100%;
  }
  #main-form dl div dd {
    width: 100%;
  }
}

.backtop {
  text-align: center;
  border-top: 1px solid #dfdfdf;
}
.backtop a {
  display: block;
  width: 100%;
  padding: 16px 0;
  transition: all .4s ease;
}
.backtop a img {
  width: auto;
  height: 13px;
}
.backtop a:hover {
  background: #dfdfdf;
}

footer#global-footer {
  background: #f2f2f2;
}
footer#global-footer .footer-inner {
  width: 1000px;
  margin: 0 auto;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
footer#global-footer .footer-inner h1 {
  width: 24%;
  text-align: center;
}
footer#global-footer .footer-inner h1 a {
  padding: 12px 0;
  display: inline-block;
}
footer#global-footer .footer-inner h1 a img {
  vertical-align: bottom;
  width: auto;
  height: 60%;
}
footer#global-footer .footer-inner .footer-navi {
  width: 76%;
}
footer#global-footer .footer-inner .footer-navi ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex: 1;
  width: 100%;
}
footer#global-footer .footer-inner .footer-navi ul li {
  width: 100%;
}
footer#global-footer .footer-inner .footer-navi ul li a {
  font-size: 1.4em;
  letter-spacing: .15em;
  padding: 28px 0;
  line-height: 1;
  width: 100%;
  color: #333;
  display: inline-block;
  text-align: center;
  transition: all .5s ease;
}
footer#global-footer .footer-inner .footer-navi ul li a:hover {
  background: #001035;
  color: #ffffff;
}
footer#global-footer .copy {
  background: #4d4d4d;
}
footer#global-footer .copy small {
  display: block;
  width: 1000px;
  margin: 0 auto;
  color: #ffffff;
  padding: 8px 0;
  font-size: 1.2em;
}
@media screen and (max-width: 1200px) {
  footer#global-footer .footer-inner {
    width: 95%;
  }
}
@media screen and (max-width: 768px) {
  footer#global-footer .footer-inner {
    width: 95%;
  }
  footer#global-footer .footer-inner h1 {
    width: 15%;
  }
  footer#global-footer .footer-inner .footer-navi {
    width: 85%;
  }
  footer#global-footer .copy small {
    width: 90%;
  }
}
@media screen and (max-width: 415px) {
  footer#global-footer .footer-inner h1 {
    width: 100%;
  }
  footer#global-footer .footer-navi {
    display: none;
  }
  footer#global-footer .copy {
    text-align: center;
  }
  footer#global-footer .copy small {
    width: 100%;
  }
}

/*# sourceMappingURL=contact.css.map */
