@charset "UTF-8";
/* CSS Document */

/*********************************************************************/
/* 共通 */
/*********************************************************************/
html {
    font-size: 100%;
 }
body {
    font-size: 24px;
    margin: 0;
    padding: 0;
    line-height: 1;
    word-wrap: break-word;
    color: #000;
    background: #fff;
    font-family: "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
    font-style: normal;
    font-weight: 300;
    text-align: justify;
    min-width: 1280px;
    position: relative;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-text-size-adjust: 100% !important;
    overflow-x: hidden;
}
img {
	margin: 0px;
	padding: 0px;
	border-style: none;
	width: 100%;
	height: auto;
}
a {
	color: #000;
	text-decoration: none;
}
a:hover {
  color: #000;
  text-decoration: none;
}
ul, li {
	margin: 0px;
	padding: 0px;
	list-style: none;
}
p {
	margin: 0px;
	padding: 0px;
	line-height: 1.9;
}

.br_pc {display: block;}
.br_sp {display: none;}

/* コンテンツフェイド */
.list-fade {
    transition: .6s;
}
.list-fade {
    opacity: 0;
    transform: translate(0, 30px);
    -webkit-transform: translate(0, 30px);
}
.fade {
    opacity: 1.0;
    transform: translate(0, 0);
    -webkit-transform: translate(0, 0);
}

/* コンテンツフェイド（移動なし） */
.list-fade0 {
    transition: .4s;
}
.list-fade0 {
    opacity: 0;
    transform: translate(0, 0);
    -webkit-transform: translate(0, 0);
}
.fade0 {
    opacity: 1.0;
    transform: translate(0, 0);
    -webkit-transform: translate(0, 0);
}

/* コンテンツフェイド（上から下） */
.slide-bottom {
	-webkit-animation: slide-bottom 0.3s ease-out 1.7s both;
	        animation: slide-bottom 0.3s ease-out 1.7s both;
}
@-webkit-keyframes slide-bottom {
  0% {
    -webkit-transform: translateY(-100px);
            transform: translateY(-100px);
      opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
      opacity: 1.0;
  }
}
@keyframes slide-bottom {
  0% {
    -webkit-transform: translateY(-100px);
            transform: translateY(-100px);
      opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
      opacity: 1.0;
  }
}


/* コンテンツフェイド（左から右） */
.list-fade-left {
    transition: .3s;
    transition-timing-function: ease-out;
}
.list-fade-left {
    opacity: 0;
    transform: translate(-100px, 0);
    -webkit-transform: translate(-100px, 0);
}
.fade-left {
    opacity: 1.0;
    transform: translate(0, 0);
    -webkit-transform: translate(0, 0);
}

/* コンテンツフェイド（右から左） */
.list-fade-right {
    transition: .3s;
    transition-timing-function: ease-out;
}
.list-fade-right {
    opacity: 0;
    transform: translate(60px, 0);
    -webkit-transform: translate(60px, 0);
}
.fade-right {
    opacity: 1.0;
    transform: translate(0, 0);
    -webkit-transform: translate(0, 0);
}

/* 回転 */
.rotate-center {
	-webkit-animation: rotate-center 10s linear infinite both;
	        animation: rotate-center 10s linear infinite both;
}
@-webkit-keyframes rotate-center {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@keyframes rotate-center {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

/* 拡大 */
.scale-up-center {
	-webkit-animation: scale-up-center 0.4s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
	        animation: scale-up-center 0.4s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
}
@-webkit-keyframes scale-up-center {
  0% {
    -webkit-transform: scale(0.5);
            transform: scale(0.5);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@keyframes scale-up-center {
  0% {
    -webkit-transform: scale(0.5);
            transform: scale(0.5);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

/* ディレイ */
.deray1 {transition-delay: 0.25s;}
.deray2 {transition-delay: 0.5s;}
.deray3 {transition-delay: 0.75s;}
.deray4 {transition-delay: 1s;}
.deray5 {transition-delay: 1.25s;}
.deray6 {transition-delay: 1.5s;}
.deray7 {transition-delay: 1.75s;}
.deray8 {transition-delay: 2s;}
.deray9 {transition-delay: 2.25s;}
.deray10 {transition-delay: 2.5s;}

/*********************************************************************/
/* HEADER */
/*********************************************************************/
header {
    width: 100%;
    height: 80px;
}
header .in {
    width: 1200px;
    margin: 0 auto;
    padding: 24.75px 0;
    box-sizing: border-box;
}
header a {
    display: block;
    background-image: url("../image/pc/header_logo.png");
    background-repeat: no-repeat;
    background-size: 100%;
    width: 195px;
    height: 30px;
    text-indent: -9999px;
}

/*********************************************************************/
/* MV */
/*********************************************************************/
.box_mv {
    background-color: #008948;
    background-image: url("../image/pc/mv_bg.png");
    background-repeat: no-repeat;
    background-position: left top -1px;
    background-size: 847px auto;
    width: 100%;
    height: 720px;
    position: relative;
}
.box_mv .in {
    width: 1280px;
    height: 720px;
    margin: 0 auto;
    position: relative;
}
.box_mv .in .copy1 {
    display: none;
}
.box_mv .in .main {
    background-image: url("../image/pc/mv_main.png");
    background-repeat: no-repeat;
    background-size: 100%;
    text-indent: -9999px;
    width: 752px;
    height: 581px;
    position: absolute;
    left: 0;
    bottom: 0;
}
.box_mv .in .copy2 {
    background-image: url("../image/pc/mv_copy_2.png");
    background-repeat: no-repeat;
    background-size: 100%;
    text-indent: -9999px;
    width: 834.5px;
    height: 579px;
    position: absolute;
    top: -44px;
    right: -8px;
}
.box_mv .in .copy3 {
    background-image: url("../image/pc/mv_copy_3.png");
    background-repeat: no-repeat;
    background-size: 100%;
    text-indent: -9999px;
    width: 666px;
    height: 333px;
    position: absolute;
    top: 211px;
    right: 27px;
}
.box_mv .in .bnr {
    width: 369px;
    height: 369px;
    position: absolute;
    right: 40px;
    bottom: -120px;
}
.box_mv .in .bnr .bnr_in {
    width: 369px;
    height: 369px;
    position: relative;
}
.box_mv .in .bnr .bnr_in .bg {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
}
.box_mv .in .bnr .bnr_in .txt {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    width: 306px;
    height: 309px;
}
.box_mv .sp_mv,
.box_mv .sp_bnr {
    display: none;
}

/*********************************************************************/
/* CAMPAIGN */
/*********************************************************************/
.box_campaign {
    width: 1000px;
    margin: 0 auto;
    padding: 50px 0;
}
.box_campaign .in {
    overflow: hidden;
    margin: 0 0 36px 0;
}
.box_campaign .in:last-of-type {
    margin: 0 0 0 0;
}
.box_campaign .in .title {
    float: left;
    width: 122px;
    line-height: 1.66;
    text-align: right;
    padding: 0 4px 0 0;
    box-sizing: border-box;
}
.box_campaign .in .detail {
    float: right;
    width: 878px;
    line-height: 1.66;
}
.box_campaign .in .detail span {
    font-size: 20px;
}
.box_campaign .in .detail ul {
    font-size: 15.5px;
}
.box_campaign .in .detail ul li {
    text-indent: -1.35em;
    padding-left: 1.5em;
}
.box_campaign .in .detail ul li:before {
    content:  "※ ";
    width:  1em;
    height:  1em;
}

/*********************************************************************/
/* YOUTUBE */
/*********************************************************************/
.box_youtube {
    background-color: #F0EDEC;
}
.box_youtube .in {
    width: 1000px;
    margin: 0 auto;
    overflow: hidden;
}
.box_youtube .in .youtube {
    float: left;
    width: 680px;
    padding: 60px 0 0 0;
}
.box_youtube .in .pdf {
    float: right;
    background-color: #fff;
    width: 320px;
    padding: 60px 0;
    box-sizing: border-box;
}
.box_youtube .in .pdf a {
    display: block;
}
.box_youtube .in .pdf img {
    display: block;
    margin: 0 auto 16px auto;
    width: 200px;
}
.box_youtube .in .pdf a.btn {
    display: block;
    background-color: #008948;
    color: #fff;
    text-align: center;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    line-height: 40px;
    width: 260px;
    margin: 0 auto;
}


/*********************************************************************/
/* BNR */
/*********************************************************************/
.box_bnr {
    width: 1000px;
    margin: 0 auto;
    padding: 54px 0;
    overflow: hidden;
}
.box_bnr .bnr_1 {
    float: left;
    width: 480px;
    border: 1px solid #008948;
}
.box_bnr .bnr_2 {
    float: right;
    width: 480px;
    border: 1px solid #612D00;
}
.box_bnr .bnr_1 a,
.box_bnr .bnr_2 a {
    display: block;
}
.box_bnr .bnr_1 .img,
.box_bnr .bnr_2 .img {
    display: block;
}
.box_bnr .bnr_1 .txt,
.box_bnr .bnr_2 .txt {
    text-align: center;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.2;
    padding: 16px 0;
}
.box_bnr .bnr_1 .txt {
    color: #0E8447;
}
.box_bnr .bnr_2 .txt {
    color: #612D00;
}

/*********************************************************************/
/* JA COUNTER */
/*********************************************************************/
.box_counter {
    width: 1000px;
    margin: 0 auto 24px auto;
}
.box_counter h2 {
    background-color: #008948;
    text-align: center;
    color: #fff;
    font-size: 24px;
    font-weight: 600;
    line-height: 46px;
    margin: 0 0 26px 0;
}
.box_counter .list_pc {
    font-size: 0;
}
.box_counter .list_sp {
    display: none;
}
.box_counter ul {
    display: inline-block;
    width: 16.6%;
    line-height: 1.77;
    font-size: 20px;
}
.box_about {
    width: 1000px;
    margin: 0 auto 70px auto;
    border-top: 1px solid #008948;
    padding: 16px 0 0 0;
    text-align: center;
}
.box_about h3 {
    display: block;
    color: #008948;
    font-size: 20px;
    line-height: 20px;
    margin: 0 0 16px 0;
}
.box_about .txt {
    font-size: 14px;
    line-height: 1.6;
}

/*********************************************************************/
/* FOOTER */
/*********************************************************************/
footer {
    background-color: #008948;
    text-align: center;
    color: #fff;
    font-size: 12px;
    line-height: 50px;
}

@media only screen and (max-width:640px){
    
/*********************************************************************/
/* 共通 */
/*********************************************************************/
body {
    font-size: 14px;
    width: 100%;
    min-width: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-text-size-adjust: 100% !important;
    overflow-x: hidden;
}
.br_pc {display: none;}
.br_sp {display: block;}
    
/*********************************************************************/
/* HEADER */
/*********************************************************************/
header {
    width: 100%;
    height: 40px;
}
header .in {
    width: 90%;
    margin: 0 auto;
    padding: 12px 0;
    box-sizing: border-box;
}
header a {
    display: block;
    background-image: url("../image/pc/header_logo.png");
    background-repeat: no-repeat;
    background-size: 100%;
    width: 97.5px;
    height: 15px;
    text-indent: -9999px;
}

/*********************************************************************/
/* MV */
/*********************************************************************/
.box_mv {
    background-image: none;
    background-color: #FFF;
    width: 100%;
    height: inherit;
    position: relative;
    font-size: 0;
}
.box_mv .in {
    width: 100%;
    height: inherit;
    margin: 0 auto;
    position: relative;
}
.box_mv .in .copy1 {
    display: none;
}
.box_mv .in .main {
    display: none;
}
.box_mv .in .copy2 {
    display: none;
}
.box_mv .in .copy3 {
    display: none;
}
.box_mv .in .bnr {
    display: none;
}
.box_mv .sp_mv,
.box_mv .sp_bnr {
    display: block;
}

/*********************************************************************/
/* CAMPAIGN */
/*********************************************************************/
.box_campaign {
    width: 90%;
    margin: 0 auto;
    padding: 32px 0;
}
.box_campaign .in {
    overflow: hidden;
    margin: 0 0 20px 0;
}
.box_campaign .in:last-of-type {
    margin: 0 0 0 0;
}
.box_campaign .in .title {
    float: left;
    width: 22%;
    line-height: 1.56;
    padding: 0 4px 0 0;
}
.box_campaign .in .detail {
    float: right;
    width: 78%;
    line-height: 1.56;
}
.box_campaign .in .detail span {
    font-size: 12px;
}
.box_campaign .in .detail ul {
    font-size: 10px;
    padding: 4px 0 0 0;
}
.box_campaign .in .detail ul li {
    text-indent: -1.35em;
    padding-left: 1.5em;
}
.box_campaign .in .detail ul li:before {
    content:  "※ ";
    width:  1em;
    height:  1em;
}

/*********************************************************************/
/* YOUTUBE */
/*********************************************************************/
.box_youtube {
    background-color: #F0EDEC;
}
.box_youtube .in {
    width: 90%;
    margin: 0 auto;
    overflow: hidden;
    padding: 30px 0;
}
.box_youtube .in .youtube {
    float: none;
    width: 100%;
    padding: 0;
    margin: 0 auto 30px auto;
}
.box_youtube .in .youtube iframe {
    width: 100%;
    height: 180px;
}
.box_youtube .in .pdf {
    float: none;
    background-color: #fff;
    width: 100%;
    padding: 14px 3%;
    box-sizing: border-box;
    font-size: 0;
}
.box_youtube .in .pdf a.img {
    display: inline-block;
    width: 36%;
    vertical-align: middle;
    margin: 0 4% 0 0;
}
.box_youtube .in .pdf img {
    display: inline-block;
    margin: 0 auto;
    width: 100%;
}
.box_youtube .in .pdf a.btn {
    display: inline-block;
    background-color: #008948;
    color: #fff;
    text-align: center;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    line-height: 40px;
    width: 60%;
    margin: 0 auto;
    vertical-align: middle;
}


/*********************************************************************/
/* BNR */
/*********************************************************************/
.box_bnr {
    width: 100%;
    margin: 0 auto;
    padding: 30px 0;
    overflow: hidden;
}
.box_bnr .bnr_1 {
    float: none;
    width: 90%;
    border: 1px solid #008948;
    margin: 0 auto 30px auto;
}
.box_bnr .bnr_2 {
    float: none;
    width: 90%;
    border: 1px solid #612D00;
    margin: 0 auto;
}
.box_bnr .bnr_1 .img,
.box_bnr .bnr_2 .img {
    display: block;
}
.box_bnr .bnr_1 .txt,
.box_bnr .bnr_2 .txt {
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.2;
    padding: 12px 0;
}
.box_bnr .bnr_1 .txt {
    color: #0E8447;
}
.box_bnr .bnr_2 .txt {
    color: #612D00;
}

/*********************************************************************/
/* JA COUNTER */
/*********************************************************************/
.box_counter {
    width: 90%;
    margin: 0 auto 24px auto;
}
.box_counter h2 {
    background-color: #008948;
    text-align: center;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    line-height: 30px;
    margin: 0 0 14px 0;
}
.box_counter .list_pc {
    display: none;
}
.box_counter .list_sp {
    display: block;
    font-size: 0;
}  
.box_counter ul {
    display: inline-block;
    width: 33.3%;
    line-height: 1.77;
    font-size: 13px;
}
.box_about {
    width: 100%;
    margin: 0 auto 30px auto;
    padding: 16px 0 0 0;
    text-align: center;
}
.box_about h3 {
    display: block;
    color: #008948;
    font-size: 13px;
    line-height: 20px;
    margin: 0 0 8px 0;
}
.box_about .txt {
    font-size: 10px;
    line-height: 1.6;
    width: 90%;
    margin: 0 auto;
}

/*********************************************************************/
/* FOOTER */
/*********************************************************************/
footer {
    font-size: 10px;
    line-height: 50px;
}
    
}