/*-----------------------------------------------------------------*/
/*header*/
/*-----------------------------------------------------------------*/
header {
  position: fixed;
  background-color: #ffffff;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 190;
}

header #header_in {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 0 0 0 16px;
  height: 100px;
  position: relative;
}

header #header_in .header_section {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  width: 182px;
}
header #header_in .header_section.hnav{
	width:calc(97% - 182px);
}

header #header_in::after {
  content: "";
  width: 100%;
  height: 1px;
  background-color: #f5f5f5;
  position: absolute;
  bottom: 0;
  left: 0;
}

.headerlogo a {
  display: block;
}

.headerlogo a img {
  display: block;
  margin: auto;
}
.header_shop a {
  width: 115px;
  height: 100px;
  line-height:1.2;
  display: block;
  position: relative;
  z-index: 2;
  text-align: center;
  background-color: #669933;
  color: #fff;
  letter-spacing: .24em;
  font-size: 13px;
  text-decoration: none;
  -webkit-transition: all .2s ease 0s;
  -o-transition: all .2s ease 0s;
  transition: all .2s ease 0s;
  /* margin-left: 32px; */
  display:flex;
  flex-wrap:wrap;
  justify-content: center;
  align-items: center;
  padding-top:50px;
}
.header_contact a,
.header_distributors a {
  width: 115px;
  height: 100px;
  line-height:1.2;
  display: block;
  position: relative;
  z-index: 2;
  text-align: center;
  background-color: #034a2c;
  color: #ffffff;
  letter-spacing: .24em;
  font-size: 13px;
  text-decoration: none;
  -webkit-transition: all .2s ease 0s;
  -o-transition: all .2s ease 0s;
  transition: all .2s ease 0s;
  /* margin-left: 32px; */
  display:flex;
  flex-wrap:wrap;
  justify-content: center;
  align-items: center;
  padding-top:50px;
}

.header_contact a {
	background:#12872b;
}
.header_distributors a {
	background:#86b32d;
}

.header_shop a:before,
.header_contact a:before,
.header_distributors a:before{
	content:"";
	width:32px;
	height:32px;
	position:absolute;
	top:calc(50% - 36px);
	left:calc(50% - 16px);
}

.header_contact a{
	margin:0;
}

.header_shop a:before{
	background:url(../image/common/header_btn01.png) no-repeat;
}
.header_contact a:before{
	background:url(../image/common/header_btn02.png) no-repeat;
	top:calc(50% - 30px);
}

.header_distributors a:before{
	background:url(../image/distributors_icon.png) no-repeat;
}

.header_shop a:hover,
.header_contact a:hover,
.header_distributors a:hover {
	opacity:0.7;
}

.hnav {
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}


@media only screen and (min-width: 1321px) and (max-width: 1500px) {
header #header_in{
	height:100px;
}

.header_shop a,
.header_contact a,
.header_distributors a {
  width: 120px;
  height:100px;
  font-size:13px;
}

}


@media only screen and (max-width: 1320px) {
header #header_in .header_section.hnav {
    width: calc(97% - 120px);
}
	header #header_in{
		padding:0 3%;
	}
  header #header_in {
    height: 60px;
  }
  header #header_in .header_section{
	  width:120px;
  }
  .headerlogo a img{
	  max-height:50px !important;
  }
  
  .header_shop a,
  .header_contact a,
.header_distributors a {
	  width:40px;
	  height:40px;
    line-height: 60px;
    letter-spacing: .2em;
    font-size: 2rem;
    margin-left: 0;
    margin-right: 5px;
	padding:0;
	text-indent:-9999px;
	overflow:hidden;
  }
  .header_contact a,{
	  margin-right:10px;
  }
  .header_shop a:before,
  .header_contact a:before,
.header_distributors a:before {
	top:calc(50% - 16px);
	left:calc(50% - 16px);
	background-size:24px 24px;
	background-position:center center;
  }
}


/*-----------------------------------------------------------------*/
/* global navigation globalnav */
/*-----------------------------------------------------------------*/
#gnav_btn {
  display: none;
}

#globalnav_in ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

#globalnav_in ul li {
  list-style: none;
  padding: 16px;
  position: relative;
}

#globalnav_in ul li a {
  position: relative;
}

#globalnav_in ul li a:hover {
  color: #12872b;
  text-decoration: none;
}

#globalnav_in ul.globalnav_sub {
  display: none;
  left: -16px;
  top: 45px;
  position: absolute;
  z-index: 100;
  width: calc(100% + 32px);
}

#globalnav_in ul.globalnav_sub li {
  display: block;
  background-color: #ffffff;
  padding: 0;
  border: 1px solid #dddddd;
  border-top: none;
}

#globalnav_in ul.globalnav_sub li a {
  padding: 10px 8px;
  display: block;
  font-size: 90%;
}

#globalnav_in ul.globalnav_sub li a::after {
  display: none;
}

#globalnav_in ul.globalnav_sub li:first-child {
  border-top: 1px solid #dddddd;
}

@media only screen and (min-width: 1321px) and (max-width: 1500px) {

#globalnav_in ul li{
	padding:16px 10px;
}
}

@media only screen and (max-width: 1320px) {
  #gnav_btn {
    display: block;
    width: 40px;
    height: 40px;
    margin-right: 16px;
    background: url(../image/common/gnav_btn.png) no-repeat center/40px 40px;
  }
  #globalnav {
    display: none;
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    background-color: #ffffff;
  }
  #globalnav_in ul {
    display: block;
  }
  #globalnav_in ul li {
    list-style: none;
    margin: 0;
    padding: 0;
  }
  #globalnav_in ul li a {
    display: block;
    padding: 10px;
    border-bottom: 1px solid #f1f1f1;
  }
  #globalnav_in ul li a::after {
    display: none;
  }
  ul.globalnav_sub {
    display: none !important;
  }
}

@media only screen and (max-width: 690px) {
  #gnav_btn {
    width: 30px;
    height: 30px;
    background-size: 30px 30px;
    margin-right: 10px;
  }
}




.top_title02{
	position:relative;
	font-size:28px;
	letter-spacing:0.24em;
	text-align:center;
	font-weight:bold;
	line-height:1.4;
	padding-bottom:30px;
	margin-bottom:40px;
}
.top_title02:after{
	content:"";
	width:40px;
	height:4px;
	background:#12872b;
	position:absolute;
	bottom:-2px;
	left:calc(50% - 20px);
}

.top_title03{
	font-size:20px;
	line-height:1.4;
	color:#12872b;
	letter-spacing:0.24em;
	padding-bottom:20px;
	border-bottom:1px solid #12872b;
	margin-bottom:40px;
}

@media only screen and (max-width: 690px) {
.top_title02{
	font-size:22px;
	padding-bottom:20px;
	margin-bottom:40px;
}
.top_title02:after{
	width:40px;
	height:3px;
}

.top_title03{
	font-size:18px;
	padding-bottom:10px;
	margin-bottom:30px;
}
}


/*-----------------------------------------------------------------*/
/* top */
/*-----------------------------------------------------------------*/

#top_mainimage{
	margin-top:0 !important;
}

.lineup_box{
	display:flex;
	flex-wrap:wrap;
}

.lineup_box > li{
	list-style:none;
	width:23.5%;
	margin:0 0 40px 2%;
	text-align:center;
}
.lineup_box > li:nth-child(4n+1){
	margin-left:0;
}

.lineup_box > li figure{
	border:1px solid #DDD;
	position:relative;
	transition:0.3s;
}
.lineup_box > li figure img{
	width:auto;
	height:auto;
	max-width:100%;
	transition:0.3s;
}
.lineup_box > li figcaption{
	display:table;
	width:100%;
	position:absolute;
	left:0;
	bottom:0;
}
.lineup_box > li figcaption a{
	display:table-cell;
	vertical-align:middle;
	background:rgba(102,153,51,0.6);
	color:#FFF;
	height:50px;
	line-height:1.3;
	letter-spacing:0.24em;
	text-decoration:none;
	padding:5px 5%;
	transition:0.3s;
}

.lineup_box > li.bl-hover figure{
	border-color:#669933;
}
.lineup_box > li.bl-hover figure img{
	opacity:0.7;
}
.lineup_box > li.bl-hover figcaption a{
	background:rgba(102,153,51,0.8);
}

@media only screen and (min-width: 691px) and (max-width: 980px) {
.lineup_box > li{
	width:30%;
	margin:0 0 40px 2% !important;
}
.lineup_box > li:nth-child(3n+1){
	margin-left:0 !important;
}
}

@media only screen and (max-width: 690px){
.lineup_box > li{
	width:48.5%;
	margin:0 0 30px 3% !important;
}
.lineup_box > li:nth-child(odd){
	margin-left:0 !important;
}
.lineup_box > li figcaption{
	position:static;
}
.lineup_box > li figcaption a{
	line-height:1.5;
	letter-spacing:0.12em;
	padding:10px 5%;
}
}

/* voice */

#top_voice_area{
	background:#F5F5F5;
	padding:60px 0;
}

#top_voice_box{
	display:flex;
	flex-wrap:wrap;
	justify-content: space-between;
	align-items: center;
	padding:15px;
	background:#FFF;
}
#top_voice_box > *:nth-child(1){
	width:35%;
}
#top_voice_box > *:nth-child(2){
	width:35%;
	padding:0 2%;
}
#top_voice_box > *:nth-child(3){
	width:30%;
	padding:0 2%;
}

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

#top_voice_box a{
	display:block;
	margin:0 auto;
	width:100%;
	max-width:350px;
	background:#12872b;
	color:#FFF;
	text-align:center;
	padding:15px;
	letter-spacing:0.24em;
	line-height:1.4;
	text-decoration:none;
}
#top_voice_box a:hover{
	background:#034529;
}

#top_voice_box a:before{
	display:inline-block;
	font-family: FontAwesome;
	content: "\f105";
	margin-right:10px;
}

#top_voice_box h2{
	font-size:20px;
	font-weight:bold;
	color:#12872b;
	line-height:1.4;
	letter-spacing:0.24em;
	margin-bottom:15px;
}
#top_voice_box p{
	color:#12872b;
	line-height:1.4;
	letter-spacing:0.24em;
}

@media only screen and (max-width: 690px){
#top_voice_box{
	display:block;
	padding:15px;
}
#top_voice_box > *:nth-child(1){
	width:100%;
}
#top_voice_box > *:nth-child(2){
	width:100%;
	padding:25px 0;
	text-align:center;
}
#top_voice_box > *:nth-child(3){
	width:100%;
	padding:0 2%;
}
}

/* area3 */

#top_area3{
	display:flex;
	flex-wrap:wrap;
}
#top_area3 > div{
	width:50%;
	color:#FFF;
}
#top_area3 > div > div{
	width:100%;
	max-width:560px;
	text-align:center;
	padding:100px 5% 80px;
}

#top_area3_l{
	background: #669933;
}
#top_area3_r{
	background: #86b32d;
}

#top_area3_l_in{
	float:right
}
#top_area3_r_in{
	float:left;
}

#top_area3 h2{
	line-height:1.4;
	font-size:28px;
	letter-spacing:0.24em;
	margin-bottom:45px;
}

.top_area3_btn a{
	display:inline-block;
	width:370px;
	max-width:100%;
	letter-spacing:0.24em;
	border:1px solid #FFF;
	color:#FFF;
	line-height:1.4;
	padding:15px;
	transition:0.3s;
}
.top_area3_btn a:before{
	font-family: FontAwesome;
	content: "\f105";
	display:inline-block;
	margin-right:10px;
}

#top_area3_l_in .top_area3_btn a:hover{
	background:#FFF;
	color:#034529;
	text-decoration:none;
}
#top_area3_r_in .top_area3_btn a:hover{
	background:#FFF;
	color:#12872b;
	text-decoration:none;
}

@media only screen and (min-width: 691px) and (max-width: 980px) {
#top_area3 h2{
	font-size:22px;
}
}
@media only screen and (max-width: 690px) {
#top_area3{
	display:block;
}
#top_area3 > div{
	width:100%;
	color:#FFF;
}
#top_area3 > div > div{
	float:none !important;
	padding:40px 5%;
}
#top_area3 h2{
	line-height:1.4;
	font-size:20px;
	margin-bottom:15px;
}
.top_area3_btn a{
	width:340px;
}
}


/* area4 */
#top_area4{
	letter-spacing:0.24em;
}
#top_area4 h2{
	height:1.4;
	font-size:28px;
	padding:52px 0;
	background:url(../image/common/top_area4_title_bg.jpg) no-repeat fixed center center / cover;
	text-align:center;
	color:#FFF;
	margin-bottom:100px;
	letter-spacing:0.24em;
}
#top_area4_l{
	float:left;
	width:35%;
}
#top_area4_r{
	float:right;
	width:62%;
}

#top_area4_l img{
	width:100%;
	height:auto;
}

#top_area4_r p{
	line-height:230%;
	margin-bottom:30px;
}

#top_area4_r ul{
	font-size:0;
	text-align:center;
}
#top_area4_r ul li{
	display:inline-block;
	width:280px;
	max-width:48.5%;
	font-size:14px;
}
#top_area4_r ul li + li{
	margin-left:2%;
}
#top_area4_r ul li a{
	display:block;
	background:#12872b;
	color:#FFF;
	padding:15px 10px;
	text-decoration:none;
}
#top_area4_r ul li a:before{
	font-family: FontAwesome;
	content: "\f105";
	display:inline-block;
	margin-right:10px;
}

#top_area4_r ul li a:hover{
	opacity:0.7;
}

@media only screen and (max-width: 980px) {
#top_area4_r ul li{
	display:block;
	width:350px;
	max-width:100%;
	font-size:14px;
	margin:0 auto;
}
#top_area4_r ul li + li{
	margin:10px auto 0;
}
}

@media only screen and (max-width: 690px) {
#top_area4 h2{
	font-size:22px;
	padding:30px 0;
	background-attachment:scroll;
	margin-bottom:20px;
}
#top_area4_l{
	float:none;
	width:100%;
	text-align:center;
	margin-bottom:20px;
}
#top_area4_l img{
	width:auto;
	height:auto;
	max-width:100%;
}
#top_area4_r{
	float:none;
	width:100%;
}
#top_area4_r p{
	line-height:200%;
	margin-bottom:20px;
}

}


/* area5 */
#top_area5{
	letter-spacing:0.24em;
}
#top_area5 h2{
	height:1.4;
	font-size:28px;
	padding:52px 0;
	background:url(../image/common/top_area5_title_bg.jpg) no-repeat fixed center center / cover;
	text-align:center;
	color:#FFF;
	margin-bottom:100px;
	letter-spacing:0.24em;
}

#top_area5 a{
	color:#FFF;
	font-size:24px;
	letter-spacing:0.24em;
	text-decoration:none;
}

#top_area5_box1{
	background:url(../image/common/top_area5_box1_bg.jpg) no-repeat center center / cover;
	transition:0.3s;
	margin-bottom:1px
}
#top_area5_box1_in{
	width:100%;
	max-width:1120px;
	margin:0 auto;
	padding:120px 30px;
}

#top_area5_box2{
	float:left;
	width:50%;
	background:url(../image/common/top_area5_box2_bg.jpg) no-repeat center center / cover;
	transition:0.3s;
	border-right:1px solid #FFF;
}
#top_area5_box2_in{
	float:right;
	width:100%;
	max-width:560px;
	padding:120px 30px;
}

#top_area5_box3{
	float:right;
	width:50%;
	background:url(../image/common/top_area5_box3_bg.jpg) no-repeat center center / cover;
	transition:0.3s;
}
#top_area5_box3_in{
	float:left;
	width:100%;
	max-width:560px;
	padding:120px 30px;
}

#top_area5_box1.bl-hover,
#top_area5_box2.bl-hover,
#top_area5_box3.bl-hover{
	opacity:0.7;
}

@media only screen and (min-width: 691px) and (max-width: 980px) {
#top_area5 a{
	font-size:22px;
}
#top_area5_box1_in,
#top_area5_box2_in,
#top_area5_box3_in{
	border:none;
	padding:80px 30px;
}
}

@media only screen and (max-width: 690px) {
#top_area5_box1,
#top_area5_box2,
#top_area5_box3{
	float:none;
	width:94%;
	margin:1px auto 0;
}

#top_area5 h2{
	font-size:22px;
	padding:30px 0;
	background-attachment:scroll;
	margin-bottom:20px;
}

#top_area5 a{
	font-size:18px;
}
#top_area5_box1_in,
#top_area5_box2_in,
#top_area5_box3_in{
	padding:30px 5%;
}

}


/* rss */
#top_rss_area{
	letter-spacing:0.24em;
}
#top_rss_area_l{
	float:left;
	width:23%;
}

#top_rss_area_r{
	float:right;
	width:74%;
	position: relative;
}

#top_rss_area_l img{
	width:100%;
	height:auto;
}

#top_rss_area h2{
	color:#12872b;
	border-bottom:1px solid #12872b;
	line-height:1.4;
	padding-bottom:10px;
	margin-bottom:30px;
	font-size:28px;
	letter-spacing:0.24em;
}

#top_rss{
	margin-bottom:30px;
}

#top_rss dl:after{content:""; clear:both; display:block; height:0; clear:both;}
#top_rss dl{
 padding-bottom:15px;
 border-bottom:1px dotted #EEE;
 margin-bottom:15px;
}
#top_rss dt{
 float:left;
 width:140px;
}
#top_rss .rss_title{
 float:right;
 width:calc(100% - 140px);
}
#top_rss .rss_title a{
	color:#333;
	text-decoration:none;
}
#top_rss .rss_title a:hover{
	color:#12872b;
	text-decoration:underline;
}
#top_rss .rss_contents{
	display:none;
}

.top_rss_btn{
	position:absolute;
	top:5px;
	right:0;
}
.top_rss_btn a{
	display:inline-block;
	background:#12872b;
	color:#FFF;
	text-decoration:none;
	line-height:1.4;
	padding:7px 15px;
	transition:0.3s;
}
.top_rss_btn a:hover{
	opacity:0.7;
}

#top_link_btn li{
	list-style:none;
	float:left;
	width:32.4%;
}
#top_link_btn li + li{
	margin-left:1.4%;
}

#top_link_btn li a{
	display:block;
	text-align:center;
	background:#12872b;
	color:#FFF;
	padding:10px 3%;
	font-size:18px;
	line-height:60px;
	text-decoration:none;
	transition:0.3s;
}
#top_link_btn li:last-child a{
	background: #86b32d;
}

#top_link_btn li a:hover{
	opacity:0.7;
}

#top_link_btn li a:before{
	content:"";
	display:inline-block;
	margin-right:10px;
	position:relative;
}

#top_link_btn li:nth-child(1) a:before{
	background:url(../image/common/top_linkbtn_icon01.png) no-repeat center center;
	width:28px;
	height:20px;
	top:3px;
}

#top_link_btn li:nth-child(2) a:before{
	background:url(../image/common/top_linkbtn_icon02.png) no-repeat center center;
	width:31px;
	height:19px;
	top:2px;
}

#top_link_btn li:nth-child(3) a:before{
	background:url(../image/common/top_linkbtn_icon03.png) no-repeat center center;
	width:24px;
	height:34px;
	top:10px;
}

@media only screen and (max-width: 980px) {
#top_rss_area_l{
	float: none;
	width:100%;
	margin-bottom:25px;
	position:relative;
	padding-top: 0%;
	overflow:hidden;
	display: block;
	text-align: center;
}
#top_rss_area_l img{
	width:100%;
	height:auto;
	position:absolute;
	left:50%;
	top:50%;
	transform: translate(-50%, -50%);
}

#top_rss_area_r{
	float:none;
	width:100%;
}

#top_link_btn li a{
	font-size:14px;
	font-weight:bold;
}
}

@media only screen and (max-width: 690px) {

#top_rss dt{
 float:none;
 width:100%;
 margin-bottom:5px;
}
#top_rss .rss_title{
 float:none;
 width:100%;
}	

.top_rss_btn{
	position: static;
	padding:20px 0 40px;
	border-bottom:1px solid #DDD;
	margin-bottom:40px;
	text-align:center;
}
.top_rss_btn a{
	padding:15px;
	width:340px;
	max-width:100%;
}
.top_rss_btn a:before{
	font-family: FontAwesome;
	content: "\f105";
	margin-right:10px;
}
.top_rss_btn a:hover{
	opacity:0.7;
}

#top_link_btn li{
	float:none;
	width:100%;
	max-width:340px;
	margin:0 auto;
}
#top_link_btn li + li{
	margin:10px auto 0;
}
}


/* parts */
/*-------------------------------------------------------------------------------------*/

.subtitle02{
	padding-bottom:15px;
	letter-spacing:0.24em;
	color:#12872b;
	font-size:24px;
	line-height:1.4;
	padding-bottom:15px;
	border-bottom:1px solid #12872b;
	margin-bottom:35px;
}


/* parts */
/*-------------------------------------------------------------------------------------*/
.anchor_btn{
	font-size:0;
	text-align:center;
}
.anchor_btn li{
	display:inline-block;
	width:370px;
	max-width:48%;
}
.anchor_btn li + li{
	margin-left:4%;
}

.anchor_btn li a{
	display:block;
	background:#12872b;
	text-align:center;
	color:#FFF;
	padding:30px 15px;
	position:relative;
	letter-spacing:0.24em;
	font-size:16px;
	text-decoration:none;
	transition:0.3s;
}

@media only screen and (max-width: 690px) {
.anchor_btn li{
	display:inline-block;
	width:370px;
	max-width:48%;
	float: left;
}

}



.anchor_btn li a:after{
	content:"";
	box-sizing:border-box;
	width:10px;
	height:10px;
	border-bottom:2px solid #FFF;
	border-right:2px solid #FFF;
	transform: rotate(45deg);
	position:absolute;
	right:calc(50% - 5px);
	bottom:12px;
}

.anchor_btn li a:hover{
	opacity:0.7;
}

.feature_img img{
	width:100%;
	height:auto;
}

.feature_txt{
	background:#FFF;
	padding:50px 5%;
	box-shadow:0 0 15px rgba(0,0,0,0.15);
	position:relative;
	z-index:1;
	width:94%;
	max-width:985px;
	margin:-10% auto 0;
	text-align:center;
}

.feature_txt h2{
	color:#12872b;
	letter-spacing:0.24em;
	font-size:24px;
}
.feature_txt p{
	font-size:16px;
	line-height:2.2;
}

@media only screen and (max-width: 690px) {
.feature_txt{
	padding:25px 5%;
	margin:-5% auto 0;
}
.feature_txt h2{
	font-size:18px;
}
.feature_txt p{
	font-size:14px;
}

}

.voice_box{
	background-size:cover;
	background-position:center center;
}
.voice_box_in{
	width:100%;
	max-width:1120px;
	margin:0 auto;
	position:relative;
}
.voice_box_in > *{
	width:50%;
}
.voice_l{
	float:left;
}
.voice_r{
	float:left;
}

.voice_box_in > figure{
	position:absolute;
	height:100%;
	top:0;
}
.voice_box_in > figure.voice_l{
	left:0;
}
.voice_box_in > figure.voice_r{
	left:50%;
}
.voice_box_in > figure a{
	position:absolute;
	left:0;
	top:0;
	width:100%;
	height:auto;
	background:rgba(255,255,255,0);
}
.voice_box_in > figure a:hover{
	background:rgba(255,255,255,0.3);
}

.voice_box_in > div{
	display:flex;
	flex-wrap:wrap;
	justify-content: flex-start;
	align-items: center;
	min-height:300px;
	letter-spacing:0.24em;
	color:#FFF;
	padding:30px 2.5%;
}
.voice_box_in > div.voice_l{
	float:left;
}
.voice_box_in > div.voice_r{
	float:right
}
.voice_box_in h3{
	font-size:20px;
	line-height:1.4;
	margin-bottom:30px;
	letter-spacing:0.24em;
	font-weight:bold;
}

.voice_btn a{
	display:inline-block;
	color:#12872b;
	background:rgba(255,255,255,0.8);
	text-decoration:none;
	padding:20px 30px;
	line-height:1.4;
	transition:0.3s;
}
.voice_btn a:before{
	font-family: FontAwesome;
	content: "\f105";
	margin-right:10px;
}

.voice_btn a:hover{
	background:rgba(255,255,255,0.95);
}

@media only screen and (max-width: 690px) {

.voice_box_in{
	padding-top:5%;
}
.voice_box_in > *{
	width:90%;
	float:none !important;
	margin:0 auto;
}
.voice_box_in > figure{
	position:relative;
	left:0 !important;
	height:0;
	padding-top:50%;
	border:1px solid #FFF;
	box-shadow:0 5px 15px rgba(0,0,0,0.15);
}
.voice_box_in > div{
	min-height:0;
	height:auto !important;
	padding:20px 0;
}
.voice_box_in h3{
	font-size:18px;
	margin-bottom:20px;
}
.voice_btn{
	text-align:center;
}
.voice_btn a{
	width:100%;
	max-width:340px;
	text-align:center;
	padding:15px 15px;
}

}

@media only screen and (max-width: 1320px){
	
	
	.header_shop_txt{
		display: none
	}	
	
}

.top_link_sns {
	text-align:right;
	margin-top:50px;
}
.top_link_sns li {
	list-style-type:none;
	display:inline-block;
}
.top_link_sns li img {
	width:50px;
	height:50px;
}

@media only screen and (max-width: 980px){
.top_link_sns {
	margin-top:30px;
}
}
