/* Navi height */
@-webkit-keyframes naviLineFirstOpen {
  49% {
    opacity: 1;
    -webkit-transform: translate(0, 6px);
    transform: translate(0, 6px);
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate(0, 6px);
    transform: translate(0, 6px);
  }
}
@keyframes naviLineFirstOpen {
  49% {
    opacity: 1;
    -webkit-transform: translate(0, 6px);
    transform: translate(0, 6px);
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate(0, 6px);
    transform: translate(0, 6px);
  }
}
@-webkit-keyframes naviLineFirstClose {
  0% {
    opacity: 0;
    -webkit-transform: translate(0, 6px);
    transform: translate(0, 6px);
  }
  50% {
    opacity: 0;
    -webkit-transform: translate(0, 6px);
    transform: translate(0, 6px);
  }
  51% {
    opacity: 1;
  }
  100% {
    -webkit-transform: translate(0);
    transform: translate(0);
  }
}
@keyframes naviLineFirstClose {
  0% {
    opacity: 0;
    -webkit-transform: translate(0, 6px);
    transform: translate(0, 6px);
  }
  50% {
    opacity: 0;
    -webkit-transform: translate(0, 6px);
    transform: translate(0, 6px);
  }
  51% {
    opacity: 1;
  }
  100% {
    -webkit-transform: translate(0);
    transform: translate(0);
  }
}
@-webkit-keyframes naviLineLastOpen {
  49% {
    opacity: 1;
    -webkit-transform: translate(0, -6px);
    transform: translate(0, -6px);
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate(0, -6px);
    transform: translate(0, -6px);
  }
}
@keyframes naviLineLastOpen {
  49% {
    opacity: 1;
    -webkit-transform: translate(0, -6px);
    transform: translate(0, -6px);
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate(0, -6px);
    transform: translate(0, -6px);
  }
}
@-webkit-keyframes naviLineLastClose {
  0% {
    opacity: 0;
    -webkit-transform: translate(0, -6px);
    transform: translate(0, -6px);
  }
  50% {
    opacity: 0;
    -webkit-transform: translate(0, -6px);
    transform: translate(0, -6px);
  }
  51% {
    opacity: 1;
  }
  100% {
    -webkit-transform: translate(0);
    transform: translate(0);
  }
}
@keyframes naviLineLastClose {
  0% {
    opacity: 0;
    -webkit-transform: translate(0, -6px);
    transform: translate(0, -6px);
  }
  50% {
    opacity: 0;
    -webkit-transform: translate(0, -6px);
    transform: translate(0, -6px);
  }
  51% {
    opacity: 1;
  }
  100% {
    -webkit-transform: translate(0);
    transform: translate(0);
  }
}
@-webkit-keyframes naviLineSecondOpen {
  50% {
    -webkit-transform: rotateZ(0);
    transform: rotateZ(0);
  }
  100% {
    -webkit-transform: rotateZ(45deg);
    transform: rotateZ(45deg);
  }
}
@keyframes naviLineSecondOpen {
  50% {
    -webkit-transform: rotateZ(0);
    transform: rotateZ(0);
  }
  100% {
    -webkit-transform: rotateZ(45deg);
    transform: rotateZ(45deg);
  }
}
@-webkit-keyframes naviLineSecondClose {
  0% {
    -webkit-transform: rotateZ(45deg);
    transform: rotateZ(45deg);
  }
  50% {
    -webkit-transform: rotateZ(0);
    transform: rotateZ(0);
  }
}
@keyframes naviLineSecondClose {
  0% {
    -webkit-transform: rotateZ(45deg);
    transform: rotateZ(45deg);
  }
  50% {
    -webkit-transform: rotateZ(0);
    transform: rotateZ(0);
  }
}
@-webkit-keyframes naviLineSecondAfterOpen {
  49% {
    opacity: 0;
  }
  50% {
    opacity: 1;
    -webkit-transform: rotateZ(0);
    transform: rotateZ(0);
  }
  100% {
    opacity: 1;
    -webkit-transform: rotateZ(-90deg);
    transform: rotateZ(-90deg);
  }
}
@keyframes naviLineSecondAfterOpen {
  49% {
    opacity: 0;
  }
  50% {
    opacity: 1;
    -webkit-transform: rotateZ(0);
    transform: rotateZ(0);
  }
  100% {
    opacity: 1;
    -webkit-transform: rotateZ(-90deg);
    transform: rotateZ(-90deg);
  }
}
@-webkit-keyframes naviLineSecondAfterClose {
  0% {
    opacity: 1;
    -webkit-transform: rotateZ(-90deg);
    transform: rotateZ(-90deg);
  }
  50% {
    opacity: 1;
    -webkit-transform: rotateZ(0);
    transform: rotateZ(0);
  }
  51% {
    opacity: 0;
  }
}
@keyframes naviLineSecondAfterClose {
  0% {
    opacity: 1;
    -webkit-transform: rotateZ(-90deg);
    transform: rotateZ(-90deg);
  }
  50% {
    opacity: 1;
    -webkit-transform: rotateZ(0);
    transform: rotateZ(0);
  }
  51% {
    opacity: 0;
  }
}
#navi-button {
  background: #fff;
  width: 50px;
  padding: 18px 14px;
  position: relative;
  z-index: 100;
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
}
#navi-button div {
  background: #009d61;
  width: 100%;
  height: 2px;
  border-radius: 1px;
}
#navi-button div:nth-child(2) {
  margin: 4px 0px;
  position: relative;
}
#navi-button div:nth-child(2)::after {
  background: #009d61;
  content: '';
  display: block;
  width: 100%;
  height: 2px;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}
#navi-button.open {
  background: transparent;
}
#navi-button.open div:first-child {
  -webkit-animation: naviLineFirstOpen 0.5s ease-in-out forwards;
  animation: naviLineFirstOpen 0.5s ease-in-out forwards;
}
#navi-button.open div:nth-child(2) {
  -webkit-animation: naviLineSecondOpen 0.5s ease-in-out forwards;
  animation: naviLineSecondOpen 0.5s ease-in-out forwards;
}
#navi-button.open div:nth-child(2)::after {
  -webkit-animation: naviLineSecondAfterOpen 0.5s ease-in-out forwards;
  animation: naviLineSecondAfterOpen 0.5s ease-in-out forwards;
}
#navi-button.open div:last-child {
  -webkit-animation: naviLineLastOpen 0.5s ease-in-out forwards;
  animation: naviLineLastOpen 0.5s ease-in-out forwards;
}
#navi-button.close div:first-child {
  -webkit-animation: naviLineFirstClose 0.5s ease-in-out forwards;
  animation: naviLineFirstClose 0.5s ease-in-out forwards;
}
#navi-button.close div:nth-child(2) {
  -webkit-animation: naviLineSecondClose 0.5s ease-in-out forwards;
  animation: naviLineSecondClose 0.5s ease-in-out forwards;
}
#navi-button.close div:nth-child(2)::after {
  -webkit-animation: naviLineSecondAfterClose 0.5s ease-in-out forwards;
  animation: naviLineSecondAfterClose 0.5s ease-in-out forwards;
}
#navi-button.close div:last-child {
  -webkit-animation: naviLineLastClose 0.5s ease-in-out forwards;
  animation: naviLineLastClose 0.5s ease-in-out forwards;
}

@media screen and (min-width: 415px) {
  header {
    width: 1100px;
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -ms-flex-direction: row;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    flex-direction: row;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-line-pack: center;
    align-content: center;
    -ms-flex-align: center;
    -webkit-box-align: center;
    align-items: center;
    justify-content: space-between;
    height: 100px;
    margin: 0 auto;
  }
}
@media screen and (max-width: 414px) {
  header {
    background: #fff;
    position: fixed;
    width: 100%;
    height: 70px;
    min-width: 320px;
    top: 0;
    z-index: 9000;
  }
}
header .logo {
  line-height: 0;
}
@media screen and (min-width: 415px) {
  header .logo {
    width: 343px;
  }
}
@media screen and (max-width: 414px) {
  header .logo {
    display: inline-block;
    width: 234px;
    transform: translate(16px, 18px);
  }
}
header .header-contact {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-direction: row;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-line-pack: center;
  align-content: center;
  -ms-flex-align: center;
  -webkit-box-align: center;
  align-items: center;
  justify-content: center;
}
header .header-contact .link {
  color: #fff;
  background: #009d61;
  font-size: 18px;
  letter-spacing: .05em;
  padding: 5px 25px;
}
@media screen and (min-width: 415px) {
  header .header-contact .link {
    margin-right: 20px;
  }
}
header .header-contact .tel {
  font-family: 'Bebas Neue', cursive;
  color: #009d61;
  font-size: 30px;
  letter-spacing: .1em;
  transform: translate(0px, 3px);
}

#navi-button {
  position: absolute;
  top: 0;
  right: 0;
}
#navi-button::after {
  font-family: 'Bebas Neue', cursive;
  content: 'MENU';
  display: block;
  margin: 5px auto 0;
  color: #009d61;
  font-size: 12px;
  letter-spacing: .05em;
}

#navi.sp-navi {
  padding-right: 20px;
  padding-left: 20px;
  text-align: center;
  visibility: hidden;
  width: 100vw;
  height: 0;
  overflow: hidden;
  -webkit-transition: all .45s ease-in-out;
  transition: all .45s ease-in-out;
  transform: translate(0px, 25px);
  position: relative;
}
#navi.sp-navi.open {
  visibility: visible;
  background: #000;
  height: calc(100vh - 64px);
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
  -webkit-transition: all .45s ease-in-out;
  transition: all .45s ease-in-out;
}
#navi.sp-navi #navi-list {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-direction: row;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-line-pack: center;
  align-content: center;
  -ms-flex-align: center;
  -webkit-box-align: center;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  height: 100%;
  padding: 15px 0 0;
  position: relative;
}
#navi.sp-navi #navi-list li {
  width: calc((100% - 22px) / 2);
  margin: 0 22px 0 0;
  border-bottom: 1px solid #fff;
}
#navi.sp-navi #navi-list li:nth-child(2n) {
  margin-right: 0;
}
#navi.sp-navi #navi-list a {
  color: #fff;
  font-size: 14px;
  display: inline-block;
  width: 100%;
  text-align: center;
  padding: 15px 0;
}
#navi.sp-navi .navi-bottom {
  margin-top: 105px;
}
#navi.sp-navi .navi-bottom .sns-wrapper {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-direction: row;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-line-pack: center;
  align-content: center;
  -ms-flex-align: center;
  -webkit-box-align: center;
  align-items: center;
  justify-content: center;
  margin-bottom: 31px;
}
#navi.sp-navi .navi-bottom .sns-wrapper a {
  width: 48px;
}
#navi.sp-navi .navi-bottom .sns-wrapper a:first-child {
  margin-right: 20px;
}
#navi.sp-navi .navi-bottom .tel a {
  font-family: 'Bebas Neue', cursive;
  color: #fff;
  font-size: 30px;
  letter-spacing: .05em;
  text-align: center;
  background: #009d61;
  width: 100%;
  padding: 7px 0;
}

@media screen and (min-width: 415px) {
  #navi {
    background: #009d61;
  }
  #navi.fixed {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    margin: auto;
    width: 100%;
    min-width: 1366px;
    z-index: 100;
  }
  #navi #navi-list {
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -ms-flex-direction: row;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    flex-direction: row;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-line-pack: center;
    align-content: center;
    -ms-flex-align: center;
    -webkit-box-align: center;
    align-items: center;
    justify-content: space-between;
    width: 980px;
    margin: 0 auto;
    padding: 24px 0;
  }
  #navi #navi-list a {
    color: #fff;
    font-size: 14px;
    font-weight: bold;
  }
}
/* -js-display:flex; flex for IE8,9*/
* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
}

body {
  height: 100%;
}

h1, h2, h3, h4, h5, h6 {
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: 700;
}

a {
  color: #3b3b3b;
  text-decoration: none;
  display: inline-block;
}

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

li {
  list-style: none;
}

.defs {
  display: none;
}

.visually-hidden {
  position: absolute;
  clip: rect(1px 1px 1px 1px);
  clip: rect(1px, 1px, 1px, 1px);
  -webkit-clip-path: inset(0px 0px 99.9% 99.9%);
  clip-path: inset(0px 0px 99.9% 99.9%);
  overflow: hidden;
  width: 1px;
  height: 1px;
  padding: 0;
  border: 0;
}

@font-face {
  font-family: 'NotoSansCJKjp';
  font-style: normal;
  font-weight: 500;
  src: url("../fonts/NotoSansCJKjp-Regular.woff") format("woff");
}
@font-face {
  font-family: 'NotoSansCJKjp';
  font-style: normal;
  font-weight: 700;
  src: url("../fonts/NotoSansCJKjp-Bold.woff") format("woff");
}
.container {
  width: 100%;
  height: 100%;
}

.no-action {
  pointer-events: none;
  cursor: default;
}

@media screen and (min-width: 415px) {
  .sp-only {
    display: none;
  }
}
@media screen and (max-width: 414px) {
  .pc-only {
    display: none;
  }
}
.btn-line-fixed {
  position: fixed;
  z-index: 200;
}
@media screen and (max-width: 414px) {
  .btn-line-fixed {
    width: 235px;
    right: 0;
    bottom: 0;
    left: 0;
    margin: 0 auto;
  }
}
@media screen and (min-width: 415px) {
  .btn-line-fixed {
    width: 70px;
    right: 0;
    bottom: 0;
    transform: translate(0px, -180px);
  }
}
