@charset "UTF-8";
/* ===================================================================
Theme Name: ndk
=================================================================== */
@import url(http://fonts.googleapis.com/earlyaccess/notosansjapanese.css);
body, div, pre, p, blockquote, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, form, fieldset, th, td, figure, figcaption {
  margin: 0;
  padding: 0;
}

input, textarea {
  margin: 0;
  font-size: 100%;
}

label {
  cursor: pointer;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
  font-size: 100%;
}

fieldset, img {
  border: 0;
}

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

address, caption, cite, code, dfn, em, th, var {
  font-style: normal;
  font-weight: normal;
}

ol, ul {
  list-style: none;
}

caption, th {
  text-align: left;
}

h1, h2, h3, h4, h5, h6 {
  font-size: 100%;
  font-weight: bold;
}

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

a, input {
  outline: none;
}

input, textarea {
  border-radius: 0;
  font-family: YuGothic, "Yu Gothic", 游ゴシック体, 游ゴシック, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, "ＭＳ Ｐゴシック", Osaka, "MS PGothic", Arial, Helvetica, Verdana, sans-serif;
}

input[type=button], input[type=submit] {
  -webkit-appearance: none;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}

abbr, acronym {
  border: 0;
}

* {
  -webkit-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

@media screen and (min-width: 1367px) {
  .hidden-desktop {
    display: none;
  }
}
@media screen and (min-width: 961px) and (max-width: 1366px) {
  .hidden-laptop {
    display: none;
  }
}
@media screen and (min-width: 601px) and (max-width: 960px) {
  .hidden-tablet {
    display: none;
  }
}
@media screen and (max-width: 600px) {
  .hidden-mobile {
    display: none;
  }
}
.txt {
  text-align: justify;
  text-justify: inter-ideograph;
}

p {
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 2;
  letter-spacing: 0.05em;
  text-align: justify;
}
@media screen and (max-width: 600px) {
  p {
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 2;
    letter-spacing: 0.04em;
  }
}

a {
  color: #50B748;
  text-decoration: none;
}
a:hover {
  opacity: 0.7;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
a img:hover {
  opacity: 0.7;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

/*  Inview animation  */
.inv {
  opacity: 0;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
}

@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translateY(50%);
            transform: translateY(50%);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
            transform: none;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translateY(50%);
            transform: translateY(50%);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
            transform: none;
  }
}
.fadeInUp {
  -webkit-animation-name: fadeInUp;
          animation-name: fadeInUp;
}

.logo img {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.logo:hover img {
  opacity: 0.7;
}

/*  scroll icon animation  */
@-webkit-keyframes upDown {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  20% {
    -webkit-transform: translateY(10px);
            transform: translateY(10px);
  }
  40% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes upDown {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  20% {
    -webkit-transform: translateY(10px);
            transform: translateY(10px);
  }
  40% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
/*  contents  */
.page-heading {
  background: center/cover;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 500px;
  color: #FFFFFF;
  font-size: 30px;
  font-size: 3rem;
  line-height: 1;
  letter-spacing: 0.05em;
  text-shadow: 0px 0px 10px #212121, 0px 0px 10px #212121;
}

section {
  position: relative;
  padding: 100px 0;
}

.content {
  max-width: 960px;
  padding: 0 20px;
  margin: auto;
}
@media screen and (max-width: 960px) {
  .content {
    margin-bottom: 60px;
  }
}

.margin-bottom {
  margin-bottom: 30px;
}

.btn-link {
  background: #50B748;
  color: #FFFFFF;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 220px;
  height: 50px;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1;
  margin: 30px auto 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  border: solid 3px #FFFFFF;
}
.btn-link::after {
  content: "\f105";
  font-family: FontAwesome;
  position: absolute;
  right: 15px;
}
.btn-link:hover {
  opacity: 1;
  background: #FFFFFF;
  color: #50B748;
  border: solid 3px #50B748;
}

.pagetop {
  background: #50B748;
  color: #FFFFFF;
  border: solid 2px #FFFFFF;
  position: fixed;
  right: 40px;
  bottom: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 40px;
  height: 40px;
  border-radius: 5px;
  z-index: 100;
}
@media screen and (max-width: 600px) {
  .pagetop {
    right: 20px;
    bottom: 20px;
  }
}
.pagetop:hover {
  opacity: 1;
}

.bg-dots {
  background: url("../img/bg_common_bg.jpg") repeat;
}

html {
  font-size: 62.5%;
}
@media screen and (max-width: 600px) {
  html {
    font-size: 60%;
  }
}

body {
  background: #FFFFFF;
  color: #212121;
  font-family: "Noto Sans Japanese", YuGothic, "Yu Gothic Medium", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  height: 100%;
  width: 100%;
  line-height: 1;
  letter-spacing: 0.05rem;
  text-align: left;
  padding: 0px;
  margin: 0px;
}
@media screen and (max-width: 960px) {
  body.open {
    position: fixed;
  }
}

::-moz-selection {
  background: #212121;
  color: #FFFFFF;
  text-shadow: none;
}

::selection {
  background: #212121;
  color: #FFFFFF;
  text-shadow: none;
}

::-moz-selection {
  background: #212121;
  background: #212121;
  text-shadow: none;
}

.legacy-ie {
  background: #eee;
  width: 100%;
  padding: 100px 0;
  position: absolute;
  top: 0;
  left: 0;
  text-align: center;
  z-index: 10000;
}

.legacy-ie a {
  color: #4285f4;
  text-decoration: none;
}

.noscript {
  background: #f5f5f5;
  width: 100%;
  padding: 100px 0;
  position: absolute;
  top: 0;
  left: 0;
  text-align: center;
  z-index: 10000;
}

/*  header  */
.header {
  background: #FFFFFF;
  border-bottom: 3px solid #50B748;
  position: relative;
  z-index: 100 !important;
}
.header .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 960px;
  height: 60px;
  padding: 0;
  margin: auto;
}
@media screen and (max-width: 960px) {
  .header .container {
    padding: 0 20px;
  }
}
.header .container .logo {
  height: 25px;
  width: 180px;
}
.header .menu {
  background: #FFFFFF;
  display: block;
  position: relative;
  z-index: 2000;
  width: 45px;
  height: 45px;
  cursor: pointer;
}
@media screen and (min-width: 961px) {
  .header .menu {
    display: none;
  }
}
.header .menu .menu-line, .header .menu::before, .header .menu::after {
  content: "";
  background: #50B748;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 25px;
  height: 2px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.header .menu .menu-line {
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.header .menu::before {
  -webkit-transform: translate(-50%, calc(-50% - 7px));
          transform: translate(-50%, calc(-50% - 7px));
}
.header .menu::after {
  -webkit-transform: translate(-50%, calc(-50% + 7px));
          transform: translate(-50%, calc(-50% + 7px));
}
.header .menu.open {
  background: #50B748;
}
.header .menu.open::before, .header .menu.open::after {
  background: #FFFFFF;
}
.header .menu.open::before {
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
          transform: translate(-50%, -50%) rotate(45deg);
}
.header .menu.open::after {
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
          transform: translate(-50%, -50%) rotate(-45deg);
}
.header .menu.open .menu-line {
  opacity: 0;
}
@media screen and (max-width: 960px) {
  .header .gnav {
    visibility: hidden;
    opacity: 0;
    background: rgba(80, 183, 72, 0.95);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    z-index: 1000;
  }
  .header .gnav.open {
    visibility: visible;
    opacity: 1;
    overflow: scroll;
  }
}
.header .gnav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 960px) {
  .header .gnav ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 40px;
  }
}
.header .gnav ul li:not(:last-child) {
  padding-right: 20px;
}
@media screen and (max-width: 960px) {
  .header .gnav ul li {
    margin-bottom: 20px;
  }
}
.header .gnav ul li a {
  color: #FFFFFF;
  position: relative;
  font-size: 16px;
  font-size: 1.6rem;
}
@media screen and (min-width: 961px) {
  .header .gnav ul li a {
    color: #50B748;
  }
  .header .gnav ul li a:hover {
    opacity: 0.7;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
}
@media screen and (max-width: 960px) {
  .header .gnav ul li a {
    font-size: 20px;
    font-size: 2rem;
  }
  .header .gnav ul li a::after {
    content: "\f105";
    font-family: FontAwesome;
    padding-left: 10px;
  }
}

.is-fixed {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

.is-hide {
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

/* top */
#top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 960px;
  height: 60px;
  padding: 0 20px;
  margin: auto;
}
#top .logo {
  height: 25px;
  width: 240px;
}

/*  footer  */
.footer {
  display: block;
  padding: 80px 0 0;
  border-top: 3px solid #50B748;
}
.footer .name {
  text-align: center;
}
.footer .table {
  width: 440px;
  margin: 0 auto 80px;
}
@media screen and (max-width: 960px) {
  .footer .table {
    width: 480px;
    padding: 0 20px;
  }
}
@media screen and (max-width: 600px) {
  .footer .table {
    width: 100%;
  }
}
.footer .table table {
  font-size: 15px;
  font-size: 1.5rem;
  width: 100%;
  color: #494949;
}
.footer .table table tr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  padding: 8px 0;
}
.footer .table table tr th {
  width: 110px;
}
@media screen and (max-width: 600px) {
  .footer .table table tr th {
    width: 100%;
    padding: 5px 0 10px;
    display: block;
  }
}
.footer .table table tr td {
  width: 330px;
}
@media screen and (max-width: 600px) {
  .footer .table table tr td {
    width: 100%;
  }
}
.footer .table table tr td a {
  color: #494949;
}
.footer .copyright {
  background: #50B748;
  color: #FFFFFF;
  font-size: 14px;
  font-size: 1.4rem;
  text-align: center;
  padding: 20px 0;
}
@media screen and (max-width: 600px) {
  .footer .copyright {
    font-size: 11px;
    font-size: 1.1rem;
  }
}

#about .item-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 10px;
}
#about .item-wrap .item {
  width: 32%;
  border: solid 1px #50B748;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin-bottom: 20px;
}
@media screen and (max-width: 600px) {
  #about .item-wrap .item {
    width: 100%;
  }
}
#about .item-wrap .item .item-title {
  color: #FFFFFF;
  text-align: center;
  padding: 10px 0;
  width: 100%;
  background: #50B748;
  font-size: 20px;
  font-size: 2rem;
}
#about .item-wrap .item .text {
  text-align: justify;
  width: 90%;
  margin: 0 auto 5%;
}

#product .jump {
  display: inline-block;
  width: 15px;
  height: 15px;
  margin: 0 0 -1px 10px;
}
#product .jump img {
  display: block;
}
#product .table {
  width: 100%;
  overflow: scroll;
}
#product .table table {
  width: 880px;
  margin-bottom: 30px;
}
@media screen and (max-width: 600px) {
  #product .table table {
    width: 560px;
  }
}
#product .table table tr {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
#product .table table tr.bg-green {
  background: #E2F0DC;
  color: #50B748;
  font-size: 16px;
  font-size: 1.6rem;
}
#product .table table tr.border {
  border-bottom: 1px dashed #50B748;
}
#product .table table tr th {
  padding: 10px;
}
#product .table table tr td {
  padding: 10px;
  font-size: 16px;
  font-size: 1.6rem;
}
#product .table table tr .col01 {
  width: 100px;
}
#product .table table tr .col02 {
  width: 140px;
}
#product .table table tr .col03 {
  width: 140px;
}
#product .table table tr .col04 {
  width: 170px;
}
#product .table table tr .col05 {
  width: 320px;
}
#product .table table.table2 {
  width: 880px;
  margin-bottom: 30px;
}
@media screen and (max-width: 600px) {
  #product .table table.table2 {
    width: 680px;
  }
}
#product .table table.table2 tr {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
#product .table table.table2 tr.bg-green {
  background: #E2F0DC;
  color: #50B748;
  font-size: 16px;
  font-size: 1.6rem;
}
#product .table table.table2 tr.border {
  border-bottom: 1px dashed #50B748;
}
#product .table table.table2 tr th {
  padding: 10px;
}
#product .table table.table2 tr td {
  padding: 10px;
  font-size: 16px;
  font-size: 1.6rem;
}
#product .table table.table2 tr .col01 {
  width: 170px;
}
#product .table table.table2 tr .col02 {
  width: 200px;
}
#product .table table.table2 tr .col03 {
  width: 140px;
}
#product .table table.table2 tr .col04 {
  width: 150px;
}
#product .table table.table2 tr .col05 {
  width: 220px;
}

#mgpowder .mg-title {
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 1.6666666667;
  color: #50B748;
  display: inline-block;
  margin-bottom: 15px;
  font-weight: normal;
  width: 100%;
  border-bottom: 1px dashed #50B748;
  padding-bottom: 10px;
}
@media screen and (max-width: 600px) {
  #mgpowder .mg-title {
    font-size: 15px;
    font-size: 1.5rem;
    line-height: 1.8666666667;
  }
}
#mgpowder .color-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  margin-bottom: 10px;
}
@media screen and (max-width: 600px) {
  #mgpowder .color-wrap {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
#mgpowder .color-wrap .color {
  width: 120px;
  margin: 0 15px 20px 0;
}
@media screen and (max-width: 600px) {
  #mgpowder .color-wrap .color {
    width: 48%;
    margin: 0 0 10px;
  }
}
#mgpowder .color-wrap .color .color-box {
  width: 100%;
  height: 80px;
  border-radius: 15px;
  border: 1px solid #CBCBCB;
}
#mgpowder .color-wrap .color p {
  text-align: center;
}
#mgpowder .point {
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 1.7777777778;
  color: #494949;
  margin-bottom: 20px;
  font-weight: normal;
}
@media screen and (max-width: 600px) {
  #mgpowder .point {
    font-size: 15px;
    font-size: 1.5rem;
    line-height: 1.8666666667;
  }
}
#mgpowder .item-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
#mgpowder .item-wrap .image {
  width: 280px;
  margin-bottom: 20px;
}
@media screen and (max-width: 960px) {
  #mgpowder .item-wrap .image {
    width: 30%;
  }
}
@media screen and (max-width: 600px) {
  #mgpowder .item-wrap .image {
    width: 100%;
  }
}
#mgpowder .item-wrap .text {
  max-width: 580px;
  margin-left: 20px;
  margin-bottom: 20px;
}
@media screen and (max-width: 960px) {
  #mgpowder .item-wrap .text {
    width: 60%;
  }
}
@media screen and (max-width: 600px) {
  #mgpowder .item-wrap .text {
    width: 100%;
    margin-left: 0;
  }
}

#tile {
  padding-top: 120px;
}

#puretile .box-title, #tile .box-title {
  display: block;
}
#puretile .image-wrap, #tile .image-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 10px;
}
#puretile .image-wrap .image, #tile .image-wrap .image {
  width: 48%;
  margin-bottom: 20px;
}
#puretile .table, #tile .table {
  width: 100%;
}
#puretile .table table, #tile .table table {
  width: 100%;
}
#puretile .table table tr, #tile .table table tr {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 2;
  letter-spacing: 0.05em;
  text-align: justify;
}
@media screen and (max-width: 600px) {
  #puretile .table table tr, #tile .table table tr {
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 2;
    letter-spacing: 0.04em;
  }
}
#puretile .table table tr th, #tile .table table tr th {
  width: 230px;
  color: #50B748;
}
@media screen and (max-width: 600px) {
  #puretile .table table tr th, #tile .table table tr th {
    width: 100%;
  }
}
@media screen and (max-width: 600px) {
  #puretile .table table tr td, #tile .table table tr td {
    width: 100%;
  }
}

#company .table {
  width: 100%;
}
#company .table table {
  width: 100%;
}
#company .table table tr {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 2;
  letter-spacing: 0.05em;
  text-align: justify;
  border-bottom: 1px dashed #50B748;
}
@media screen and (max-width: 600px) {
  #company .table table tr {
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 2;
    letter-spacing: 0.04em;
  }
}
#company .table table tr th {
  width: 150px;
}
@media screen and (max-width: 600px) {
  #company .table table tr th {
    width: 100%;
  }
}
@media screen and (max-width: 600px) {
  #company .table table tr td {
    width: 100%;
  }
}

#kv {
  position: relative;
  background: url("../img/kv_common_main.jpg") #B7D5B9 no-repeat center;
  background-size: cover;
  height: 450px;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 960px) {
  #kv {
    height: 250px;
  }
}
@media screen and (max-width: 600px) {
  #kv {
    height: 200px;
  }
}
#kv .fb {
  position: absolute;
  left: 5px;
  top: 50%;
  margin-top: -50px;
  width: 26px;
  height: 100px;
}
#kv .insta {
  position: absolute;
  right: 5px;
  top: 50%;
  margin-top: -50px;
  width: 26px;
  height: 110px;
}

.index-title {
  color: #50B748;
  font-size: 26px;
  font-size: 2.6rem;
  line-height: 1.3461538462;
  text-align: justify;
  margin-bottom: 30px;
  font-weight: normal;
}
@media screen and (max-width: 600px) {
  .index-title {
    font-size: 24px;
    font-size: 2.4rem;
    line-height: 1.3333333333;
  }
}
.index-title .marker {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(75%, transparent), color-stop(0%, #FFEE62));
  background: linear-gradient(transparent 75%, #FFEE62 0%);
  display: inline;
}

.mincho-title {
  font-family: "游明朝", YuMincho, "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  font-weight: normal;
  font-size: 24px;
  font-size: 2.4rem;
  line-height: 1.3333333333;
  margin-bottom: 30px;
  text-align: justify;
}
@media screen and (max-width: 600px) {
  .mincho-title {
    font-size: 20px;
    font-size: 2rem;
    line-height: 1.5;
  }
}

.text-center {
  text-align: center;
}
@media screen and (max-width: 600px) {
  .text-center {
    text-align: justify;
  }
}

.index-sec-title {
  color: #379B47;
  font-size: 88px;
  font-size: 8.8rem;
  font-weight: bold;
  margin-top: -55px;
}
@media screen and (max-width: 960px) {
  .index-sec-title {
    margin-top: -75px;
  }
}
@media screen and (max-width: 600px) {
  .index-sec-title {
    font-size: 35px;
    font-size: 3.5rem;
    margin-top: 0;
  }
}

#products {
  position: relative;
}
@media screen and (min-width: 961px) {
  #products::before {
    content: "";
    display: block;
    background: #FFFFFF;
    position: absolute;
    left: 30%;
    width: 70%;
    padding-top: 580px;
    z-index: 1;
  }
}
@media screen and (max-width: 960px) {
  #products {
    background: #FFFFFF;
    padding: 20px;
    margin: 100px 5% 0;
  }
}
@media screen and (max-width: 600px) {
  #products {
    margin-top: 20px;
  }
}
@media screen and (min-width: 961px) {
  #products .item {
    position: relative;
    z-index: 2;
    padding-left: 30%;
    margin-left: 40px;
  }
}
#products .item .index-sec-title {
  position: absolute;
}
#products .item .index-title {
  padding-top: 60px;
}
#products .link-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
@media screen and (max-width: 600px) {
  #products .link-wrap {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
#products .link-wrap .link {
  width: 250px;
  margin-right: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 20px;
}
@media screen and (max-width: 600px) {
  #products .link-wrap .link {
    margin-right: 0;
  }
}
#products .link-wrap .link .image {
  width: 80%;
}
#products .link-wrap .link .arrow {
  margin-top: 20px;
  display: block;
  width: 100%;
  font-size: 15px;
  font-size: 1.5rem;
  position: relative;
  border-bottom: solid 2px #50B748;
  padding: 0 0 7px 5px;
}
#products .link-wrap .link .arrow::before {
  content: "";
  width: 15px;
  height: 6px;
  border-top: solid 2px #50B748;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  position: absolute;
  bottom: -2px;
  right: 0;
}

#diy {
  position: relative;
}
@media screen and (min-width: 961px) {
  #diy {
    margin-top: 150px;
  }
  #diy::before {
    content: "";
    display: block;
    background: #FFFFFF;
    position: absolute;
    right: 30%;
    width: 70%;
    padding-top: 500px;
    z-index: 1;
  }
}
@media screen and (max-width: 960px) {
  #diy {
    background: #FFFFFF;
    padding: 20px;
    margin: 100px 5% 0;
  }
}
@media screen and (max-width: 600px) {
  #diy {
    margin-top: 20px;
  }
}
#diy .item {
  max-width: 960px;
}
@media screen and (min-width: 961px) {
  #diy .item {
    position: relative;
    z-index: 2;
    margin: auto;
  }
}
#diy .item .index-sec-title {
  position: absolute;
}
#diy .item .index-title {
  padding-top: 60px;
}
@media screen and (min-width: 961px) {
  #diy .btn-link {
    margin-left: 0;
  }
}

#movie {
  position: relative;
}
@media screen and (min-width: 961px) {
  #movie {
    margin-top: 150px;
  }
  #movie::before {
    content: "";
    display: block;
    background: #FFFFFF;
    position: absolute;
    left: 30%;
    width: 70%;
    padding-top: 970px;
    z-index: 1;
  }
}
@media screen and (max-width: 960px) {
  #movie {
    background: #FFFFFF;
    padding: 20px;
    margin: 100px 5% 0;
  }
}
@media screen and (max-width: 600px) {
  #movie {
    margin-top: 20px;
  }
}
@media screen and (min-width: 961px) {
  #movie .item {
    position: relative;
    z-index: 2;
    padding-left: 30%;
    margin-left: 40px;
  }
}
#movie .item .index-sec-title {
  position: absolute;
}
#movie .item .index-title {
  padding-top: 60px;
}
@media screen and (min-width: 961px) {
  #movie .item .movie-wrap {
    width: 600px;
  }
}
@media screen and (max-width: 960px) {
  #movie .item .movie-wrap {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
@media screen and (max-width: 600px) {
  #movie .item .movie-wrap {
    width: 100%;
  }
}
#movie .item .movie-wrap .movie {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  margin-top: 20px;
}
@media screen and (max-width: 960px) {
  #movie .item .movie-wrap .movie {
    width: 48%;
  }
}
@media screen and (max-width: 600px) {
  #movie .item .movie-wrap .movie {
    width: 100%;
  }
}
#movie .item .movie-wrap .movie iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
}
@media screen and (min-width: 961px) {
  #movie .btn-link {
    margin-left: 0;
  }
}

.second .box {
  background: #FFFFFF;
  position: relative;
  padding: 70px 40px 40px;
}
@media screen and (max-width: 960px) {
  .second .box {
    width: 90%;
    margin: auto;
    padding: 60px 20px 20px;
  }
}
.second .box .sec-title {
  color: #FFFFFF;
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  background: #50B748;
  font-weight: normal;
  font-size: 25px;
  font-size: 2.5rem;
  width: 324px;
  height: 70px;
  border-radius: 35px;
  top: -35px;
  left: 50%;
  margin-left: -162px;
}
@media screen and (max-width: 600px) {
  .second .box .sec-title {
    font-size: 22px;
    font-size: 2.2rem;
    width: 90%;
    height: 50px;
    border-radius: 25px;
    top: -25px;
    left: 50%;
    margin-left: -45%;
  }
}
.second .box .box-title {
  color: #50B748;
  text-align: center;
  font-weight: normal;
  font-size: 25px;
  font-size: 2.5rem;
  margin-bottom: 30px;
}
@media screen and (max-width: 600px) {
  .second .box .box-title {
    font-size: 22px;
    font-size: 2.2rem;
    line-height: 1.5909090909;
  }
}
.second .box .text-center {
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 2.8888888889;
  margin-bottom: 50px;
}
@media screen and (max-width: 960px) {
  .second .box .text-center {
    text-align: justify;
  }
}
@media screen and (max-width: 960px) {
  .second .box .text-center {
    font-size: 16px;
    font-size: 1.6rem;
    line-height: 1.75;
  }
}
.second .box .title {
  background: #E2F0DC;
  color: #50B748;
  border-left: 6px solid #50B748;
  width: 100%;
  padding: 10px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin-bottom: 20px;
  font-size: 22px;
  font-size: 2.2rem;
  line-height: 1.3636363636;
  font-weight: normal;
}
@media screen and (max-width: 600px) {
  .second .box .title {
    font-size: 18px;
    font-size: 1.8rem;
    line-height: 1.5555555556;
  }
}
.second .box b {
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 1.6666666667;
  color: #50B748;
  display: inline-block;
  margin-bottom: 15px;
  font-weight: normal;
}
@media screen and (max-width: 600px) {
  .second .box b {
    font-size: 15px;
    font-size: 1.5rem;
    line-height: 1.8666666667;
  }
}
.second .box .text {
  text-align: justify;
}
.second .box .check {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  width: 100%;
}
.second .box .check .mark {
  width: 20px;
}
.second .box .check .txt {
  width: calc(100% - 20px);
}/*# sourceMappingURL=style.css.map */