/* CSS Document */
img[src$=".svg"] {
  width: 100%;
}

/*def end*/
/*share*/
::-moz-selection {
  background: rgba(3, 22, 40, 0.6);
  /* Safari */
  color: white;
}
::selection {
  background: rgba(3, 22, 40, 0.6);
  /* Safari */
  color: white;
}

::-moz-selection {
  background: rgba(3, 22, 40, 0.6);
  /* Firefox */
  color: white;
}

html, body {
  height: 100%;
}

img {
  max-width: 100%;
  vertical-align: bottom;
}

*, *::before, *::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

a {
  text-decoration: none;
  color: black;
}
a:hover {
  text-decoration: underline;
}

li {
  list-style-type: none;
}

dl, dt, dd, ul, li {
  margin: 0;
  padding: 0;
}

h1, h2, h3, h4, p {
  padding: 0;
  margin: 0;
  font-size: 1em;
}

em, i {
  font-style: normal;
}

._pc {
  display: block;
}
@media all and (max-width: 640px) {
  ._pc {
    display: none;
  }
}

._sp {
  display: none;
}
@media all and (max-width: 640px) {
  ._sp {
    display: block;
  }
}

body {
  font-family: "Jost", sans-serif;
  letter-spacing: 0.15em;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -o-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

#wrapper {
  max-width: 950px;
  width: 90%;
  margin: 0 auto;
}

#content {
  position: fixed;
  top: 48%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  color: #000b8c;
}
#content a {
  color: #000b8c;
  position: relative;
  display: inline-block;
  text-decoration: none;
}
#content a::before {
  position: absolute;
  bottom: -5px;
  left: 0;
  content: "";
  width: 100%;
  height: 2px;
  background: #333;
  -webkit-transform: scale(0, 1);
          transform: scale(0, 1);
  -webkit-transform-origin: right top;
          transform-origin: right top;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
#content a:hover::before {
  -webkit-transform-origin: left top;
          transform-origin: left top;
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
}
#content h2 {
  font-size: 13px;
}
#content h1 {
  font-size: 16px;
  margin-top: 10px;
}
#content ul {
  margin-top: 15px;
}
#content ul li {
  font-weight: bold;
  margin-top: 10px;
  font-size: 13px;
}
#content h3 {
  margin-top: 30px;
  font-size: 13px;
  text-transform: uppercase;
}
#content p {
  line-height: 16px;
  margin-top: 10px;
  font-size: 13px;
}

input[type=text], textarea {
  background: #F1F1F1;
  width: 100%;
  font-size: 12px;
  margin: 0 auto;
  border: none;
  padding: 10px;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
input[type=text]:focus, textarea:focus {
  outline: none;
  color: black;
  background: lightgray;
}

textarea {
  min-height: 100px;
}

button {
  width: 70%;
  padding: 15px;
  margin: 0 auto 20px;
  border: none;
  background: black;
  color: white;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  border: 3px black solid;
  cursor: pointer;
}
button:hover {
  background: white;
  color: #333;
}

#menu_btn {
  overflow: hidden;
  display: block;
  position: relative;
  z-index: 0;
  width: 25px;
  height: 30px;
  cursor: pointer;
}
#menu_btn span, #menu_btn::before, #menu_btn::after {
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  width: 1em;
  height: 1px;
  margin: auto;
  background: #000;
}
#menu_btn span {
  overflow: hidden;
  z-index: 1;
  color: #000;
}
#menu_btn::before {
  z-index: 2;
  -webkit-transform: translate(0, -0.4em);
          transform: translate(0, -0.4em);
  content: "";
}
#menu_btn::after {
  z-index: 2;
  -webkit-transform: translate(0, 0.4em);
          transform: translate(0, 0.4em);
  content: "";
}
#menu_btn span {
  -webkit-transition: -webkit-transform 150ms 50ms;
  transition: -webkit-transform 150ms 50ms;
  transition: transform 150ms 50ms;
  transition: transform 150ms 50ms, -webkit-transform 150ms 50ms;
}
#menu_btn::before, #menu_btn::after {
  -webkit-transition: -webkit-transform 200ms;
  transition: -webkit-transform 200ms;
  transition: transform 200ms;
  transition: transform 200ms, -webkit-transform 200ms;
}
#menu_btn.clicked span {
  opacity: 0;
  -webkit-transition: -webkit-transform 150ms;
  transition: -webkit-transform 150ms;
  transition: transform 150ms;
  transition: transform 150ms, -webkit-transform 150ms;
}
#menu_btn.clicked::before {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
#menu_btn.clicked::after {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
/*# sourceMappingURL=base.css.map */