/*reset*/
*, :before, :after {
  margin: 0;
  padding: 0;
}

/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
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 {
  content: "";
  content: none;
}

q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/*reset*/
/*common*/
body {
  background-color: white;
  background-image: url(../../images/common/bg_dot.png);
  overflow-x: hidden;
}

header .logo {
  position: absolute;
  top: 30px;
  left: 30px;
  width: 10%;
}
@media screen and (max-width: 896px) {
  header .logo {
    width: 16%;
  }
}

.menuBtn {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 30px;
  right: 30px;
  z-index: 100000;
  width: 80px;
  height: 80px;
}
.menuBtn.open .bar {
  background-color: #fff;
}
.menuBtn.open .bar:nth-of-type(1) {
  transform: rotate(45deg);
}
.menuBtn.open .bar:nth-of-type(2) {
  opacity: 0;
  transform: translateX(50px);
  height: 0;
  margin: 0;
}
.menuBtn.open .bar:nth-of-type(3) {
  transform: translateY(-2px) rotate(-45deg);
}
.menuBtn.open .menuBtn_font {
  font-size: 20px;
  margin-top: 20px;
  color: #fff;
}
.menuBtn .bar {
  width: 40px;
  height: 2px;
  background-color: #000;
  transition: 0.3s ease;
}
.menuBtn .bar:nth-of-type(2) {
  margin: 10px 0;
}
.menuBtn .menuBtn_font {
  font-size: 20px;
  margin-top: 12px;
}

nav {
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  opacity: 0;
  transition: 0.3s ease;
}
nav.open {
  z-index: 99999;
  opacity: 1;
}
nav.open li {
  opacity: 1;
  transform: translateY(0);
}
nav ul {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
}
nav li {
  margin: 18px 0 0 0;
  transform: translateY(20px);
  opacity: 0;
  transition: 0.3s ease;
}
nav li:nth-of-type(even) a {
  flex-direction: row-reverse;
}
nav li:nth-child(1) {
  transition-delay: 0.4s;
}
nav li:nth-child(1) a img {
  margin-left: 10px;
}
nav li:nth-child(2) {
  transition-delay: 0.5s;
}
nav li:nth-child(2) a img {
  margin-right: 10px;
}
nav li:nth-child(3) {
  transition-delay: 0.6s;
}
nav li:nth-child(3) a img {
  margin-left: 10px;
}
nav li:nth-child(4) {
  transition-delay: 0.7s;
}
nav li:nth-child(4) a img {
  margin-right: 10px;
}
nav li:nth-child(5) {
  transition-delay: 0.8s;
}
nav li:nth-child(5) a img {
  margin-left: 10px;
}
nav a {
  font-size: 16px;
  font-weight: bold;
  color: #fff;
  text-decoration: none;
  display: flex;
  align-items: center;
}
nav a img {
  width: 50px;
}

@media screen and (max-width: 896px) {
  #contens {
    max-width: 92%;
    margin: 0 auto;
  }
}

.text_box {
  background-color: white;
  max-width: 70%;
  margin: 100px auto;
  box-shadow: 2px 1px 10px #ccc;
  border-radius: 50px;
  padding: 4%;
}
@media screen and (max-width: 896px) {
  .text_box {
    padding: 10%;
  }
}
.text_box p {
  font-size: 16px;
  line-height: 1.6em;
}
.text_box strong {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 8px;
}

.imagebox {
  margin: 0 auto;
  display: block;
  width: 24%;
  animation: moveImg 1s infinite forwards;
}
@keyframes moveImg {
  0% {
    transform: rotate(5deg);
  }
  50% {
    transform: rotate(-5deg);
  }
  100% {
    transform: rotate(5deg);
  }
}

.title_box {
  margin: 32px 0;
  text-align: center;
}
.title_box img {
  height: 52px;
}

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

footer {
  background-color: black;
  color: white;
  height: 200px;
  display: table;
  width: 100%;
  text-align: right;
}
footer p {
  display: table-cell;
  vertical-align: middle;
  padding-right: 60px;
}
@media screen and (max-width: 896px) {
  footer p {
    text-align: center;
    padding-right: 0;
  }
}

/*common*/
/*PAINT*/
.paint_block {
  position: relative;
  margin-top: 300px;
}
@media screen and (max-width: 896px) {
  .paint_block {
    margin-top: 180px;
  }
}
@media screen and (max-width: 896px) {
  .paint_block .imagebox {
    top: -200px;
    width: 68%;
  }
}
.paint_block .paint_textbox {
  margin: 60px 0;
}
.paint_block .paint_textbox p {
  text-align: center;
  font-weight: bold;
  margin-bottom: 60px;
}
.paint_block .paint_textbox ul {
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media screen and (max-width: 896px) {
  .paint_block .paint_textbox ul {
    display: block;
  }
}
.paint_block .paint_textbox ul li {
  background-color: white;
  border-color: black;
  border: 3px solid;
  border-radius: 50px;
  padding: 40px;
  width: 47%;
  box-sizing: border-box;
}
.paint_block .paint_textbox ul li:nth-of-type(n+3) {
  margin-top: 30px;
}
@media screen and (max-width: 896px) {
  .paint_block .paint_textbox ul li {
    width: 100%;
    margin-bottom: 40px;
    border-radius: 25px;
    padding: 20px 26px;
  }
}
.paint_block .paint_textbox ul li img {
  max-width: 100%;
}
.paint_block .paint_textbox ul li p {
  text-align: center;
  margin-top: 20px;
}

/*PAINT*/