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,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}
body {
  line-height: 1;
}
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;
}
body {
  font-family: Helvetica;
  color: #424242;
}
h1 {
  font-size: 40px;
  margin-bottom: 30px;
  margin-top: 60px;
}
h2 {
  font-size: 32px;
  margin-top: 40px;
  margin-bottom: 20px;
}
h1 a,
h2 a,
h3 a {
  color: #424242;
  text-decoration: none;
}
h1 a:hover,
h2 a:hover,
h3 a:hover {
  color: #F73859;
}
p {
  font-family: Georgia, Cambria, "Times New Roman", Times, serif;
  letter-spacing: .01rem;
  font-weight: 400;
  font-style: normal;
  font-size: 21px;
  line-height: 1.58;
  letter-spacing: -0.003em;
}
a {
  text-decoration: underline;
  color: #424242;
}
a:hover {
  color: #F73859;
}
#logo {
  position: fixed;
  z-index: 3;
  top: 32px;
  left: 32px;
  width: 83px;
}
#logo svg {
  width: 83px;
  height: 40px;
  fill: #F73859;
  -webkit-transition: fill 200ms ease;
  transition: fill 200ms ease;
}
#menu {
  position: fixed;
  z-index: 2;
  width: 72px;
  height: 72px;
  background-color: rgba(255, 255, 255, 0);
  top: 0;
  right: 0;
}
#menu .burger-time {
  width: 40px;
  height: 40px;
  margin: 32px 32px 0 auto;
  cursor: pointer;
}
#menu .burger-time svg {
  width: 40px;
  height: 40px;
  stroke-width: 5;
  stroke-linecap: round;
  stroke: #8e929b;
}
#menu .burger-time svg line {
  -webkit-transition: all 0.15s ease-out;
  transition: all 0.15s ease-out;
}
#menu ul {
  opacity: 0;
  width: 700px;
  margin: 64px auto 0 auto;
}
#menu ul li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
#menu ul li a {
  display: block;
  color: #fff;
  font-size: 21px;
  text-decoration: none;
  padding: 8px 0;
  -webkit-transition: all 1s ease;
  transition: all 1s ease;
}
#menu ul li a:hover {
  color: #F73859;
  background-color: rgba(255, 255, 255, 0.1);
  -webkit-transition: all 200ms ease;
  transition: all 200ms ease;
}
.menu-active {
  overflow: hidden;
}
.menu-active #logo svg {
  fill: white;
  -webkit-transition: fill 200ms ease 400ms;
  transition: fill 200ms ease 400ms;
}
.menu-active #menu {
  top: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.95);
  -webkit-animation: openmenu 500ms forwards;
          animation: openmenu 500ms forwards;
}
.menu-active #menu .burger-time svg line {
  stroke: #fff;
}
.menu-active #menu .burger-time svg line:nth-child(1) {
  -webkit-transform-origin: 20px 10px;
          transform-origin: 20px 10px;
  -webkit-animation: tocrosstop 500ms cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
          animation: tocrosstop 500ms cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}
.menu-active #menu .burger-time svg line:nth-child(3) {
  -webkit-transform-origin: 20px 30px;
          transform-origin: 20px 30px;
  -webkit-animation: tocrossbot 500ms cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
          animation: tocrossbot 500ms cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}
.menu-active #menu .burger-time svg line:nth-child(2) {
  opacity: 0;
  -webkit-transition: opacity 600ms ease;
  transition: opacity 600ms ease;
}
.menu-active #menu ul {
  opacity: 1;
}
@-webkit-keyframes openmenu {
  50% {
    height: 100%;
    width: 72px;
  }
  100% {
    width: 100%;
    height: 100%;
  }
}
@keyframes openmenu {
  50% {
    height: 100%;
    width: 72px;
  }
  100% {
    width: 100%;
    height: 100%;
  }
}
@-webkit-keyframes tocrosstop {
  0% {
    -webkit-transform: none;
            transform: none;
  }
  50% {
    -webkit-transform: translateY(10px);
            transform: translateY(10px);
  }
  100% {
    -webkit-transform: translateY(10px) rotate(45deg);
            transform: translateY(10px) rotate(45deg);
  }
}
@keyframes tocrosstop {
  0% {
    -webkit-transform: none;
            transform: none;
  }
  50% {
    -webkit-transform: translateY(10px);
            transform: translateY(10px);
  }
  100% {
    -webkit-transform: translateY(10px) rotate(45deg);
            transform: translateY(10px) rotate(45deg);
  }
}
@-webkit-keyframes tocrossbot {
  0% {
    -webkit-transform: none;
            transform: none;
  }
  50% {
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px);
  }
  100% {
    -webkit-transform: translateY(-10px) rotate(-45deg);
            transform: translateY(-10px) rotate(-45deg);
  }
}
@keyframes tocrossbot {
  0% {
    -webkit-transform: none;
            transform: none;
  }
  50% {
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px);
  }
  100% {
    -webkit-transform: translateY(-10px) rotate(-45deg);
            transform: translateY(-10px) rotate(-45deg);
  }
}
html,
body {
  height: 100%;
}
body {
  text-align: center;
  background: #eee;
}
article {
  max-width: 720px;
  margin: auto;
  text-align: left;
}
header {
  padding: 120px 0 64px 0;
  background-color: #fff;
  margin-bottom: 64px;
}
header .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 1120px;
  margin: auto;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
header .container h1 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 300px;
          flex: 0 0 300px;
  text-align: left;
  margin: 0;
  padding: 0;
  font-size: 70px;
  line-height: 60px;
}
header .container h1 span {
  padding-left: 32px;
  display: block;
  font-weight: bold;
}
header .container h1 span:last-child {
  font-weight: lighter;
}
header article {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}
section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 1120px;
  margin: 0 auto 64px auto;
}
section .thumb {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 300px;
          flex: 0 0 300px;
  background-size: cover;
  height: 200px;
  border-radius: 4px;
  overflow: hidden;
}
section article {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  padding: 0 32px;
}
section article h2 {
  margin-top: 8px;
}
.project {
  margin-top: -64px;
}
.project .map {
  width: 100%;
  height: 600px;
  background-color: #A3CCFF;
}
