.head {
  box-shadow: 0px 5px 5px rgba(0, 0, 0, 0.1);
  padding: 15px 15px;
  margin: 0 0 30px;
}
@media print, screen and (min-width: 768px) {
  .head {
    margin: 0 0 60px;
  }
}

.headRow {
  max-width: 1000px;
  margin: 0 auto;
}
@media print, screen and (min-width: 768px) {
  .headRow {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
}

.headIcon {
  height: 50px;
  display: flex;
  align-items: center;
}
@media print, screen and (min-width: 768px) {
  .headIcon {
    height: auto;
    display: block;
  }
}
.headIcon a {
  text-decoration: none;
  color: #444;
}

.headMenu {
  padding: 15px 0;
  display: none;
}
@media print, screen and (min-width: 768px) {
  .headMenu {
    display: block !important;
  }
}

@media print, screen and (min-width: 768px) {
  .headNavList {
    margin: 0 0 -5px;
  }
}

.headNavItem {
  border-bottom: solid 1px #c8c8c8;
}
@media print, screen and (min-width: 768px) {
  .headNavItem {
    display: inline-block;
    margin: 0 0 5px 15px;
    border-bottom: solid 0px #c8c8c8;
  }
}

.headNavLink {
  text-decoration: none;
  color: #444;
  font-size: 1.5rem;
  height: 40px;
  padding: 0 15px;
  display: flex;
  align-items: center;
}
@media print, screen and (min-width: 768px) {
  .headNavLink {
    display: inline-block;
    height: auto;
    padding: 0;
  }
}

.headBtnWrap {
  position: absolute;
  top: 15px;
  right: 15px;
}
@media print, screen and (min-width: 768px) {
  .headBtnWrap {
    display: none;
  }
}

.headBtn {
  width: 50px;
  height: 50px;
  border: solid 1px #ddd;
  position: relative;
}
@media print, screen and (min-width: 768px) {
  .headBtn {
    display: none;
  }
}
.headBtn span {
  width: 70%;
  height: 2px;
  background: #ddd;
  position: absolute;
  transition: 0.3s;
}
.headBtn span:nth-of-type(1) {
  top: calc(50% - 10px);
  left: 50%;
  transform: translate(-50%, 0);
}
.headBtn span:nth-of-type(2) {
  top: 50%;
  left: 50%;
  transform: translate(-50%, 0);
}
.headBtn span:nth-of-type(3) {
  top: calc(50% + 10px);
  left: 50%;
  transform: translate(-50%, 0);
}

.headBtn.active span:nth-of-type(1) {
  top: 50%;
  left: 50%;
  transform: translate(-50%, 0) rotate(405deg);
}
.headBtn.active span:nth-of-type(2) {
  top: 50%;
  left: 50%;
  transform: translate(-50%, 0);
  opacity: 0;
}
.headBtn.active span:nth-of-type(3) {
  top: 50%;
  left: 50%;
  transform: translate(-50%, 0) rotate(-405deg);
}

footer {
  border-top: solid 1px #ddd;
}

small {
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.2rem;
  padding: 0 15px;
}

* {
  margin: 0;
  padding: 0;
}

*:before, *:after {
  display: block;
}

::-moz-selection {
  background-color: #2AC7EF;
  color: #fff;
}

::selection {
  background-color: #2AC7EF;
  color: #fff;
}

html {
  font-size: 62.5%;
  font-family: "Noto Sans", sans-serif;
}

body {
  line-height: 1.8;
}

ul {
  padding: 0;
  margin: 0;
}

li {
  list-style: none;
}

img {
  max-width: 100%;
  width: 100%;
}

h1, p {
  margin: 0;
}

main {
  margin: 0 0 70px;
}

.centerBox {
  max-width: 1030px;
  margin: 0 auto;
  padding: 0 15px;
}