
/*===============================================
●共通
===============================================*/


/*========= LoadingのためのCSS ===============*/

/* Loading背景画面設定　*/
#loading {
  /*fixedで全面に固定*/
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 999999;
  background:#ffffff;
  text-align:center;
  color:#fff;
}

/* Loading画像中央配置　*/
#loading_logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* Loading アイコンの大きさ設定　*/
#loading_logo img {
  width:138px;
}

/* fadeUpをするアイコンの動き */
.fadeUp{
  animation-name: fadeUpAnime;
  animation-duration:0.5s;
  animation-fill-mode:forwards;
  opacity: 0;
}

@keyframes fadeUpAnime{
  from {
    opacity: 0;
    transform: translateY(100px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}



/*===============================================
●画面の横幅が813px以上(タブレット・PC)
===============================================*/
@media screen and (min-width: 813px) {

  /* メイン画像 */
  .main-img {
    width: 100%;
    margin: 0 auto;
  }

  .main-img img {
    width: 100%;
  }

  /* CONCEPT */
  .concept {
    position: relative;
    z-index: 3;
    width: 98%;
    margin: 260px auto 0 auto;
  }

  .concept > img {
    width: 840px;
    margin: 50px auto 0 auto;
  }

  .concept .btn-more {
    margin: 70px auto 0 auto;
  }

  /* STRONG POINT */
  .strong {
    position: relative;
    z-index: 1;
    width: 100%;
    margin: -150px auto 0 auto;
    padding: 460px 0 420px 0;
    background-image: url(/images/index/bg01.png),
      url(/images/index/bg02.png);
    background-repeat: no-repeat,
      no-repeat;
    background-position: top center,
      bottom center;
    background-size: 100%,
      100%;
    background-color: #fbfaf5;
  }

  .strong > div:nth-of-type(1),
  .strong > div:nth-of-type(3) {
    position: relative;
    width: 98%;
    max-width: 1400px;
    margin: 80px auto 0 auto;
    padding: 180px 0 0 0;
  }

  .strong > div:nth-of-type(1) > img,
  .strong > div:nth-of-type(3) > img {
    position: absolute;
    top: 0;
    right: 0;
    width: 780px;
  }

  .strong > div:nth-of-type(1) > p:nth-of-type(1),
  .strong > div:nth-of-type(3) > p:nth-of-type(1) {
    float: right;
    position: relative;
    margin: 0 560px 0 0;
    font-size: 24px;
    color: #e89f42;
    line-height: 40px;
    text-align: left;
  }

  .strong > div:nth-of-type(1) > p:nth-of-type(1) > span,
  .strong > div:nth-of-type(3) > p:nth-of-type(1) > span {
    position: absolute;
    top: 22px;
    left: -100px;
    font-size: 58px;
    font-style: italic;
  }

  .strong > div:nth-of-type(1) > p:nth-of-type(2),
  .strong > div:nth-of-type(3) > p:nth-of-type(2) {
    float: right;
    margin: 15px 535px 0 0;
    font-size: 16px;
    line-height: 30px;
    text-align: left;
  }

  .strong > div:nth-of-type(2) {
    position: relative;
    width: 98%;
    max-width: 1400px;
    margin: 100px auto 0 auto;
    padding: 180px 0 0 0;
  }

  .strong > div:nth-of-type(2) > img {
    position: absolute;
    top: 0;
    left: 0;
    width: 780px;
  }

  .strong > div:nth-of-type(2) > p:nth-of-type(1) {
    position: relative;
    margin: 0 0 0 680px;
    font-size: 24px;
    color: #e89f42;
    line-height: 40px;
    text-align: left;
  }

  .strong > div:nth-of-type(2) > p:nth-of-type(1) > span {
    position: absolute;
    top: 22px;
    left: -100px;
    font-size: 58px;
    font-style: italic;
  }

  .strong > div:nth-of-type(2) > p:nth-of-type(2) {
    margin: 15px 0 0 685px;
    font-size: 16px;
    line-height: 30px;
    text-align: left;
  }

  .strong > div:nth-of-type(3) {
    margin: 100px auto 0 auto;
  }

  .strong > div:nth-of-type(3) > p:nth-of-type(1) {
    margin: 0 685px 0 0;
  }

  .strong > div:nth-of-type(3) > p:nth-of-type(1) > span {
    left: -110px;
  }

  .strong > div:nth-of-type(3) > p:nth-of-type(2) {
    margin: 15px 545px 0 0;
  }

  .strong .btn-more {
    margin: 100px auto 0 auto;
  }

  /* HYDROCULTURE */
  .hydroculture {
    position: relative;
    z-index: 2;
    width: 98%;
    max-width: 1400px;
    margin: -110px auto 0 auto;
  }

  .hydroculture > p.txt {
    margin: 50px auto 0 auto;
    font-size: 16px;
    line-height: 35px;
  }

  .hydroculture > ul {
    margin: 60px auto 0 auto;
  }

  .hydroculture > ul li {
    width: 22%;
    /*margin: 0 0 0 4%;*/
    margin: 0 auto;
    border-radius: 50px;
    overflow: hidden;
  }

  /*
  .hydroculture > ul li:nth-of-type(1) {
    margin: 0;
  }*/

  .hydroculture > ul li img {
    width: 100%;
    transition: 0.5s;
  }

  .hydroculture > ul li img:hover {
    transform: scale(1.1, 1.1);
  }

  /* PRODUCTS */
  .products {
    position: relative;
    z-index: 2;
    width: 98%;
    max-width: 1400px;
    margin: 240px auto 0 auto;
  }

  .products > div {
    margin: 60px auto 0 auto;
  }

  .products > div > div {
    position: relative;
    width: 48%;
    margin: 0 0 0 4%;
  }

  .products > div > div:nth-of-type(1) {
    margin: 0;
  }

  .products > div > div > img {
    width: 100%;
  }

  .products > div > div:nth-of-type(1) > a.btn {
    display: block;
    position: absolute;
    bottom: 130px;
    right: 10%;
    width: 40%;
    max-width: 260px;
    height: 60px;
    padding: 22px 0 0 70px;
    font-size: 16px;
    color: #e89f42;
    line-height: 100%;
    text-align: left;
    border-radius: 30px;
    background-color: #ffffff;
  }

  .products > div > div:nth-of-type(1) > a.btn02 {
    bottom: 50px;
  }

  .products > div > div:nth-of-type(1) > a.btn03 {
    right: 52%;
  }

  .products > div > div:nth-of-type(1) > a.btn01:before {
    content: '';
    position: absolute;
    top: 18px;
    left: 29px;
    width: 22px;
    height: 28px;
    background: url(/images/index/icon-catalog.png) top center no-repeat;
    background-size: 20px 26px;
  }

  .products > div > div:nth-of-type(1) > a.btn02:before {
    content: '';
    position: absolute;
    top: 18px;
    left: 30px;
    width: 24px;
    height: 28px;
    background: url(/images/index/icon-hansoku-02.png) top center no-repeat;
    background-size: contain;
  }

  .products > div > div:nth-of-type(1) > a.btn03:before {
    content: '';
    position: absolute;
    top: 18px;
    left: 30px;
    width: 20px;
    height: 26px;
    background: url(/images/index/icon-hansoku.png) top center no-repeat;
    background-size: 20px 26px;
  }

  .products > div > div:nth-of-type(1) > a.btn:after {
    content: '';
    position: absolute;
    top: 25px;
    right: 30px;
    width: 6px;
    height: 6px;
    border-top: 2px solid #e89f42;
    border-right: 2px solid #e89f42;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }

  .products > div > div:nth-of-type(1) > a.btn:hover {
    color: #fff;
    background-color: #e9a54e;
    transition : .5s;
  }

  .products > div > div:nth-of-type(1) > a.btn01:hover:before {
    background: url(/images/index/icon-catalog-h.png) top center no-repeat;
  }

  .products > div > div:nth-of-type(1) > a.btn02:hover:before {
    background-image: url(/images/index/icon-hansoku-02-h.png);
  }

  .products > div > div:nth-of-type(1) > a.btn03:hover:before {
    background: url(/images/index/icon-hansoku-h.png) top center no-repeat;
  }

  .products > div > div:nth-of-type(1) > a.btn:hover:after {
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    transition : .5s;
  }
  
  .products > div > div:nth-of-type(1) > a.btn04 {
    right: 52%;
    padding: 22px 0 0 3%;
    background: #e89f42;
    color: #fff;
    font-size: 14px;
    letter-spacing: 0;
  }

  .products > div > div:nth-of-type(1) > a.btn04 span {
    font-size: 12px;
  }
  
  .products > div > div:nth-of-type(1) > a.btn04::after {
    content: '';
    position: absolute;
    top: 25px;
    right: 10%;
    width: 12px;
    height: 11px;
    border: none;
    transform: none;
    background: url(/images/common/icon-link-h.png) top center no-repeat;
    background-size: contain;
  }

  .products > div > div:nth-of-type(1) > a.btn04:hover {
    background: #fff;
    color: #e89f42;
  }

  .products > div > div:nth-of-type(1) > a.btn04:hover::after {
    border: none;
    background-image: url(/images/common/icon-link01.png);
  }


  .products > div > div:nth-of-type(2) > a.btn-online {
    display: block;
    position: absolute;
    bottom: 50px;
    right: 60px;
    width: 330px;
    height: 60px;
    padding: 22px 0 0 115px;
    font-size: 16px;
    color: #ffffff;
    line-height: 100%;
    text-align: left;
    border-radius: 30px;
    background-color: #6e8490;
  }

  .products > div > div:nth-of-type(2) > a.btn-online:before {
    content: '';
    position: absolute;
    top: 22px;
    left: 22px;
    width: 83px;
    height: 17px;
    background: url(/images/index/icon-online.png) top center no-repeat;
    background-size: 83px 17px;
  }

  .products > div > div:nth-of-type(2) > a.btn-online:after {
    content: '';
    position: absolute;
    top: 25px;
    right: 20px;
    width: 14px;
    height: 13px;
    background: url(/images/index/icon-link02.png) top center no-repeat;
    background-size: 14px 13px;
  }

  .products > div > div:nth-of-type(2) > a.btn-online:hover {
    color: #6e8490;
    background-color: #fff;
    transition : .5s;
  }

  .products > div > div:nth-of-type(2) > a.btn-online:hover:before {
    background: url(/images/index/icon-online-h.png) top center no-repeat;
    background-size: 83px 17px;
  }

  .products > div > div:nth-of-type(2) > a.btn-online:hover:after {
    background: url(/images/index/icon-link02-h.png) top center no-repeat;
  }

  .products > a {
    display: block;
    width: 100%;
    margin: 60px auto 0 auto;
    border-radius: 50px;
    overflow: hidden;
  }

  .products > a > img {
    width: 100%;
    transition: 0.5s;
  }

  .products > a:hover > img {
    transform: scale(1.02, 1.02);
  }

  /* COMPANY PROFILE */
  .company {
    position: relative;
    z-index: 1;
    width: 100%;
    margin: -200px auto 0 auto;
    padding: 470px 0 0 0;
    background-image: url(/images/index/bg03.png);
    background-repeat: no-repeat;
    background-position: top center;
    background-size: 100%;
    background-color: #fbfaf5;
  }

  .company > img {
    width: 700px;
    margin: 50px auto 0 auto;
  }

  .company > div {
    width: 98%;
    max-width: 1400px;
    margin: 100px auto 0 auto;
  }

  .company > div > div:nth-of-type(1) {
    float: right;
    width: 50%;
  }

  .company > div > div:nth-of-type(2) {
    float: left;
    width: 46%;
  }

  .company table {
    width: 100%;
    margin: 0 auto;
    border-top: #cccccc 1px solid;
  }

  .company table th {
    width: 170px;
    padding: 25px 0 25px 30px;
    font-size: 16px;
    color: #e89f42;
    text-align: left;
    border-bottom: #cccccc 1px solid;
    line-height: 30px;
  }

  .company table td {
    padding: 25px 30px 25px 0;
    font-size: 16px;
    text-align: left;
    border-bottom: #cccccc 1px solid;
    line-height: 30px;
  }

  .company .btn-more {
    margin: 80px auto 0 auto;
  }

  /* INITIATIVES */
  .initiatives {
    width: 100%;
    margin: 0 auto;
    padding: 150px 0 180px 0;
    background-color: #fbfaf5;
  }

  .initiatives > div {
    width: 98%;
    max-width: 1400px;
    margin: 80px auto 0 auto;
  }

  .initiatives > div > div {
    position: relative;
    width: 48%;
    margin: 0 0 0 4%;
  }

  .initiatives > div > div:nth-of-type(1) {
    margin: 0;
  }

  .initiatives > div > div > img {
    width: 100%;
  }

  .initiatives .btn-more {
    margin: 60px auto 0 auto;
  }

  .initiatives .list-flex > div > a {
    display: block;
    border-radius: 45px;
    overflow: hidden;
  }

  .initiatives .list-flex > div > a > img {
    width: 100%;
    transition: 0.5s;
  }

  .initiatives .list-flex > div > a:hover > img {
    transform: scale(1.02, 1.02);
  }  

  /* NEWS */
  .news {
    width: 100%;
    margin: 0 auto;
    padding: 140px 0 0 0;
    background-color: #f6f6f6;
  }

  .news > div {
    width: 98%;
    max-width: 1400px;
    margin: 0 auto;
  }

  .news > div > div:nth-of-type(1) {
    position: relative;
    width: 22%;
    margin: 0 auto;
    text-align: left;
  }

  .news p.sub-title {
    margin: 15px 0 0 30px;
  }

  .news .btn-more {
    position: absolute;
    bottom: 0;
    left: 0;
  }

  .news > div > div:nth-of-type(2) {
    width: 78%;
    margin: 0 auto;
  }

  .news ul {
    width: 100%;
    margin: 0 auto;
  }

  .news ul li {
    width: 23%;
    margin: 0 2% 0 0;
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
  }

  .news ul li:nth-of-type(4) {
    margin: 0;
  }

  .news ul li > a {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    padding: 0 0 55px 0;
  }

  .news ul li > a > div {
    position: relative;
    z-index: 1;
    width: 100%;
    aspect-ratio: 1 / 1;
    background-position: center center;
    background-size: cover;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    transition: all 0.3s ease-out;
    transform: scale(1);
  }

  .news ul li > a > div:hover {
    transform: scale(1.1);
    transition: all 0.3s ease-out;
  }

  .news ul li > a > p:nth-of-type(1) {
    position: relative;
    z-index: 2;
    min-height: 55px;
    margin: 0 auto;
    background: #fff;
    padding: 20px 30px 0;
    font-size: 18px;
    font-weight: 700;
    line-height: 140%;
    text-align: left;
  }

  .news ul li > a > p:nth-of-type(2) {
    position: absolute;
    bottom: 15px;
    left: 0;
    right: 0;
    margin: 0 auto;
    font-size: 12px;
    line-height: 100%;
    letter-spacing: 0.1em;
  }

  .news ul li > a > p:nth-of-type(2) > span {
    display: inline-block;
    min-width: 95px;
    height: 25px;
    margin: 0 10px 0 0;
    padding: 6px 7px 0 7px;
    color: #fff;
    letter-spacing: 0em;
    text-align: center;
  }

  .news ul li > a > p:nth-of-type(2) > span.cate01 {
    background-color: #779652;
  }

  .news ul li > a > p:nth-of-type(2) > span.cate02 {
    background-color: #e89f42;
  }

  .news ul li > a > p:nth-of-type(2) > span.cate03 {
    background-color: #6e8490;
  }

  /* INSTAGRAM */
  .insta {
    width: 100%;
    margin: 0 auto;
    padding: 180px 0 150px 0;
    background-color: #f6f6f6;
  }

  .insta > p.txt {
    margin: 50px auto 0 auto;
    font-size: 16px;
    line-height: 100%;
  }

  .insta > a.btn {
    display: block;
    position: relative;
    width: 320px;
    height: 50px;
    margin: 60px auto 0 auto;
    padding: 16px 0 0 75px;
    font-size: 16px;
    line-height: 100%;
    text-align: left;
    border-radius: 30px;
    color: #779652;
    letter-spacing: 0em;
    border: #779652 1px solid;
  }

  .insta > a.btn:before {
    content: '';
    position: absolute;
    top: 15px;
    left: 40px;
    width: 20px;
    height: 20px;
    background: url(/images/index/icon-insta.png) top center no-repeat;
    background-size: 20px 20px;
  }

  .insta > a.btn:after {
    content: '';
    position: absolute;
    top: 18px;
    right: 30px;
    width: 14px;
    height: 13px;
    background: url(/images/index/icon-link01.png) top center no-repeat;
    background-size: 14px 13px;
  }

  .insta > a.btn:hover {
    color: #fff;
    background-color: #779652;
    transition : .5s;
  }

  .insta > a.btn:hover:before {
    background: url(/images/index/icon-insta-h.png) top center no-repeat;
  }

  .insta > a.btn:hover:after {
    background: url(/images/index/icon-link-h.png) top center no-repeat;
  }

}

/*===============================================
●画面の横幅が812px以下(スマホのみ)
===============================================*/
@media screen and (max-width: 812px) {

  /* メイン画像 */
  .main-img {
    width: 100%;
    margin: 0 auto;
  }

  .main-img img {
    width: 100%;
  }

  /* CONCEPT */
  .concept {
    position: relative;
    z-index: 3;
    width: 90%;
    margin: 160px auto 0 auto;
  }

  .concept > img {
    width: 90%;
    max-width: 400px;
    margin: 50px auto 0 auto;
  }

  .concept .btn-more {
    margin: 60px auto 0 auto;
  }

  /* STRONG POINT */
  .strong {
    position: relative;
    z-index: 1;
    width: 100%;
    margin: 50px auto 0 auto;
    padding: 200px 0 140px 0;
    background-image: url(/images/index/bg01_sp.png),
      url(/images/index/bg02_sp.png);
    background-repeat: no-repeat,
      no-repeat;
    background-position: top center,
      bottom center;
    background-size: 100%,
      100%;
    background-color: #fbfaf5;
  }

  .strong > div {
    width: 90%;
    margin: 70px auto 0 auto;
  }

  .strong > div > img {
    width: 100%;
    margin: 0 auto;
  }

  .strong > div > p:nth-of-type(1) {
    margin: 30px 0 0 0;
    font-size: 23px;
    color: #e89f42;
    line-height: 40px;
    text-align: left;
  }

  .strong > div > p:nth-of-type(1) > span {
    display: none;
  }

  .strong > div > p:nth-of-type(2) {
    margin: 20px 0 0 0;
    font-size: 14px;
    line-height: 30px;
    text-align: left;
  }

  .strong .btn-more {
    margin: 80px auto 0 auto;
  }

  /* HYDROCULTURE */
  .hydroculture {
    position: relative;
    z-index: 2;
    width: 100%;
    margin: 100px auto 0 auto;
  }

  .hydroculture > p.txt {
    width: 90%;
    margin: 50px auto 0 auto;
    font-size: 14px;
    line-height: 35px;
  }

  .hydroculture > ul {
    margin: 50px auto 0 auto;
  }

  .hydroculture > ul li {
    width: 90%;
    margin: 0 auto 10px auto;
  }

  .hydroculture > ul li:nth-of-type(4) {
    margin: 0 auto;
  }

  .hydroculture > ul li img {
    width: 100%;
  }

  /* PRODUCTS */
  .products {
    position: relative;
    z-index: 2;
    width: 90%;
    margin: 150px auto 0 auto;
  }

  .products > div {
    margin: 60px auto 0 auto;
  }

  .products > div > div {
    position: relative;
    width: 100%;
    margin: 0 auto;
  }

  .products > div > div:nth-of-type(2) {
    margin: 30px auto 0 auto;
  }

  .products > div > div > img {
    width: 100%;
  }

  .products > div > div:nth-of-type(1) > a.btn {
    display: block;
    position: absolute;
    bottom: 140px;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 260px;
    height: 50px;
    padding: 17px 0 0 70px;
    font-size: 16px;
    color: #e89f42;
    line-height: 100%;
    text-align: left;
    border-radius: 30px;
    background-color: #ffffff;
  }

  .products > div > div:nth-of-type(1) > a.btn02 {
    bottom: 80px;
  }

  .products > div > div:nth-of-type(1) > a.btn03 {
    bottom: 20px;
  }

  .products > div > div:nth-of-type(1) > a.btn04 {
    bottom: 200px;
  }

  .products > div > div:nth-of-type(1) > a.btn01:before {
    content: '';
    position: absolute;
    top: 13px;
    left: 29px;
    width: 22px;
    height: 28px;
    background: url(/images/index/icon-catalog.png) top center no-repeat;
    background-size: 20px 26px;
  }

  .products > div > div:nth-of-type(1) > a.btn02:before {
    content: '';
    position: absolute;
    top: 13px;
    left: 30px;
    width: 20px;
    height: 26px;
    background: url(/images/index/icon-hansoku-02.png) top center no-repeat;
    background-size: 20px 26px;
  }
  
  .products > div > div:nth-of-type(1) > a.btn03:before {
    content: '';
    position: absolute;
    top: 13px;
    left: 30px;
    width: 20px;
    height: 26px;
    background: url(/images/index/icon-hansoku.png) top center no-repeat;
    background-size: 20px 26px;
  }

  .products > div > div:nth-of-type(1) > a.btn:after {
    content: '';
    position: absolute;
    top: 21px;
    right: 30px;
    width: 6px;
    height: 6px;
    border-top: 2px solid #e89f42;
    border-right: 2px solid #e89f42;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }

  .products > div > div:nth-of-type(1) > a.btn04 {
    padding: 17px 0 0 25px;
    background: #e89f42;
    color: #fff;
    font-size: 14px;
    letter-spacing: 0;
  }

  .products > div > div:nth-of-type(1) > a.btn04 span {
    font-size: 12px;
  }
  
  .products > div > div:nth-of-type(1) > a.btn04::after {
    content: '';
    position: absolute;
    right: 26px;
    width: 12px;
    height: 11px;
    border: none;
    transform: none;
    background: url(/images/common/icon-link-h.png) top center no-repeat;
    background-size: contain;
  }

  .products > div > div:nth-of-type(2) > a.btn-online {
    display: block;
    position: absolute;
    bottom: 50px;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 85%;
    max-width: 290px;
  }

  .products > div > div:nth-of-type(2) > a.btn-online > img {
    width: 100%;
  }

  .products > a {
    display: block;
    width: 100%;
    margin: 30px auto 0 auto;
  }

  .products > a > img {
    width: 100%;
  }

  /* COMPANY PROFILE */
  .company {
    position: relative;
    z-index: 1;
    width: 100%;
    margin: -150px auto 0 auto;
    padding: 250px 0 0 0;
    background-image: url(/images/index/bg03_sp.png);
    background-repeat: no-repeat;
    background-position: top center;
    background-size: 100%;
    background-color: #fbfaf5;
  }

  .company > img {
    width: 90%;
    margin: 40px auto 0 auto;
  }

  .company > div {
    width: 90%;
    margin: 60px auto 0 auto;
  }

  .company > div > div:nth-of-type(1) {
    width: 100%;
    margin: 0 auto;
  }

  .company > div > div:nth-of-type(2) {
    width: 100%;
    margin: 30px auto 0 auto;
  }

  .company > div > div:nth-of-type(2) > img {
    width: 100%;
  }

  .company table {
    width: 100%;
    margin: 0 auto;
    border-top: #cccccc 1px solid;
  }

  .company table th {
    display: block;
    width: 100%;
    padding: 15px 20px 0 20px;
    font-size: 14px;
    color: #e89f42;
    text-align: left;
    line-height: 30px;
  }

  .company table td {
    display: block;
    width: 100%;
    padding: 10px 20px 15px 20px;
    font-size: 14px;
    text-align: left;
    border-bottom: #cccccc 1px solid;
    line-height: 30px;
  }

  .company .btn-more {
    margin: 50px auto 0 auto;
  }

  /* INITIATIVES */
  .initiatives {
    width: 100%;
    margin: 0 auto;
    padding: 180px 0 100px 0;
    background-color: #fbfaf5;
  }

  .initiatives > div {
    width: 90%;
    margin: 80px auto 0 auto;
  }

  .initiatives > div > div {
    width: 100%;
    margin: 0 auto;
  }

  .initiatives > div > div:nth-of-type(2) {
    margin: 30px auto 0 auto;
  }

  .initiatives > div > div > img {
    width: 100%;
  }

  .initiatives .btn-more {
    margin: 60px auto 0 auto;
  }

  /* NEWS */
  .news {
    width: 100%;
    margin: 0 auto;
    padding: 100px 0 0 0;
    background-color: #f6f6f6;
  }

  .news > div {
    width: 90%;
    margin: 0 auto;
  }

  .news > div > div:nth-of-type(1) {
    width: 100%;
    margin: 0 auto;
  }

  .news > div > div:nth-of-type(2) {
    width: 100%;
    margin:60px auto 0 auto;
  }

  .news ul {
    width: 100%;
    margin: 0 auto;
  }

  .news ul li {
    width: 100%;
    margin: 0 auto 10px auto;
    background-color: #fff;
    border-radius: 10px;
  }

  .news ul li:nth-of-type(4) {
    margin: 0 auto;
  }

  .news ul li > a {
    position: relative;
    display: flex;
    width: 100%;
  }

  .news ul li > a > div {
    flex-shrink: 0;
    width: 40%;
    aspect-ratio: 1 / 1;
    background-position: center center;
    background-size: cover;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
  }

  .news ul li > a > p:nth-of-type(1) {
    margin: 0;
    padding: 20px 20px 0 20px;
    font-size: 16px;
    font-weight: 700;
    line-height: 30px;
    text-align: left;
  }

  .news ul li > a > p:nth-of-type(2) {
    position: absolute;
    bottom: 20px;
    left: 45%;
    font-size: 11px;
    line-height: 20px;
    letter-spacing: 0em;
  }

  .news ul li > a > p:nth-of-type(2) > span {
    display: inline-block;
    min-width: 95px;
    height: 25px;
    margin: 0 8px 0 0;
    padding: 2px 5px 0 5px;
    color: #fff;
    letter-spacing: 0em;
    text-align: center;
  }

  .news ul li > a > p:nth-of-type(2) > span.cate01 {
    background-color: #779652;
  }

  .news ul li > a > p:nth-of-type(2) > span.cate02 {
    background-color: #e89f42;
  }

  .news ul li > a > p:nth-of-type(2) > span.cate03 {
    background-color: #6e8490;
  }

  .news .btn-more {
    margin: 50px auto 0 auto;
  }

  /* INSTAGRAM */
  .insta {
    width: 100%;
    margin: 0 auto;
    padding: 80px 0 100px 0;
    background-color: #f6f6f6;
  }

  .insta > p.txt {
    margin: 50px auto 0 auto;
    font-size: 14px;
    line-height: 30px;
  }

  .insta > a.btn {
    display: block;
    position: relative;
    width: 98%;
    max-width: 320px;
    min-width: 295px;
    height: 50px;
    margin: 60px auto 0 auto;
    padding: 16px 0 0 75px;
    font-size: 16px;
    line-height: 100%;
    text-align: left;
    border-radius: 30px;
    color: #779652;
    letter-spacing: 0em;
    border: #779652 1px solid;
  }

  .insta > a.btn:before {
    content: '';
    position: absolute;
    top: 15px;
    left: 40px;
    width: 20px;
    height: 20px;
    background: url(/images/index/icon-insta.png) top center no-repeat;
    background-size: 20px 20px;
  }

  .insta > a.btn:after {
    content: '';
    position: absolute;
    top: 18px;
    right: 30px;
    width: 14px;
    height: 13px;
    background: url(/images/index/icon-link01.png) top center no-repeat;
    background-size: 14px 13px;
  }


}


.main-img{
  position: relative;
}

.main-img .banner{
  position: absolute;
  right: -6px;
  bottom: -26px;
}

.main-img .banner img{
  width: 364px;
}

@media screen and (max-width: 812px) {
  .main-img .banner{
    position: absolute;
    bottom: -16px;
  }
}