.shoplinkamazon {

}
.shoplinkyahoo {
	display: none;
}
.ad_test {
	display:none;
	margin: 0px auto;
	text-align:center;
}
.pf_img {
	width:90%;
	margin: 0px auto 0px;
}
.pf_img img {
	width:24.5%;
	margin: 0 !important;
	float: left !important;
}
.amazonlink {
	display: none;
}
@media screen and (max-width:769px) {
	.ad_test {
		display: inherit;
	margin: 0px auto;
	text-align:center;
		height: auto;
overflow: hidden;
padding: 20px 3px 0px;
	}
	.ad_test img {
	}
}

		.owaku {
			width: 100%;
			max-width: 700px;
			height: auto;
			overflow: hidden;
			border: 1px solid #A2A2A2;
		}
		.kowaku {
			margin: 40px;
			border: 1px solid #A2A2A2;
		}
		h3 {
			border-bottom: 2px solid #333;
			padding-left: 20px;
		}
		.item_box_l {
			width: 100%;
			height: auto;
			overflow: hidden;
			margin: 20px auto;
		}
		.item_box_l_img {
			width: 100%;
		}
		.item_box_l_img img {
			width: 100%;
		}
		.item_box_l_txt {
			width: 100%;
		}
		.item_box_s {
			width: 100%;
			height: auto;
			overflow: hidden;
		}
		.item_box_s_img {
			width: 100%;
			margin: 0px;
		}
		.item_box_s_img img {
			width: 100%;
		}
		.item_box_s_txt {
			width: 100%;
			font-size: 14px;
		}
		.item_box_s ul {
			width: 100%;
			height: auto;
			overflow: hidden;
			list-style: none;
			padding: 0;
		}
		.item_box_s li {
			width: 32.7%;
			height: auto;
			overflow: hidden;
			display: inline-block;
			padding: 0px;
			margin: 10px 0px;
		}
		.item_box_s_title {
			text-align: center;
			font-size: 16px
		}
		@media screen and (max-width:769px) {
			
		.item_box_s li {
			width: 49%;
		}
			
		}




/* フッターCSS START */

.mm-box {
  display:flex;
  flex-direction: row-reverse;
  justify-content: space-between;
}

.mm-text {
  text-align: left;
  padding-top:10px;
	font-size: 13px;
}

.mm-text-color {
  color:#335;
}

.mm-pict {
  width: 8%;
  margin-right: 1%;
}

.mm-pict img {
  width: 100%;
  height:auto;
}

.mm-footer_logo {
  width:40%;
  float:right;
	margin-top:20px;
}


/* @media print, screen and (max-width: 768px){ 
.copyr_new {text-align: center;}
.mm-pict {width: 50%;}
.mm-footer_logo {float: none; width: 100%;}		
} */

@media print, screen and (max-width: 414px) {
	
#footer {
text-align:left!important;
}	

.footermenust {
    margin-left: 0!important;
}	
	
.footermenust li:first-child {
padding-left: 0!important;
}	
	
.footer-r {
    padding: 0!important;
}	
.mm-pict {
    width: 50%!important;
	  margin-right: 2%!important;
}
.mm-footer_logo {
    float: none;
    /* margin-left: 10%; */
}
.mm-footer_logo img {
    width: 60%;
}	
}


@media print, screen and (max-width: 768px) {
	
.footer-r {
    text-align: center;
    margin-bottom: 20px;
    padding: 0 20%;
}
.copyr_new {
    text-align: center;
}
.mm-text {
    text-align: left;
    padding-top: 7px;
}
.mm-pict {
    width: 10%;
	margin-right: 2%;
}
.mm-footer_logo {
    float: none;
    width: 100%;
	  margin-top: 30px;
    padding: 0 50px;
}
}

@media print, screen and (min-width: 1024px) {
	

.mm-pict {
    width: 60%;
	margin-right: 1%;
}
	
.mm-text {
	/* padding-top: 0px; */
}
	
.mm-footer_logo {
   /* width: 80%; */
	  margin-top: 30px;
}

}

@media print, screen and (min-width: 1025px) {
	

.mm-pict {
    width: 25%;
	margin-right: 1%;
}

}

#bigfooter a {
    color: #335!important;
}

.col3 {
    width: 70%;
}
.col5 {
    width: 30%;
	  float: left
}

/* フッターCSS END */

.mlbox img {
	  width: 30%;
	  float: left
}

.clearfix::after {
	content: "";
	display: block;
	clear: both;
}


/*キラリと光るボタン*/
@keyframes shiny {
    0% {
        transform: scale(0) rotate(25deg);
        opacity: 0;
    }

    50% {
        transform: scale(1) rotate(25deg);
        opacity: 1;
    }

    100% {
        transform: scale(50) rotate(25deg);
        opacity: 0;
    }
}


.shiny-btn {
    position: relative;
    display: block;
	font-size:1.2em;
    width: 100%;
    height: 60px;
    line-height: 58px;
    text-align: center;
    text-decoration: none;
    color: #ffffff;
    background-color: #e74c3c;
    overflow: hidden;
	  border-bottom: solid 3px #c0392b; /*下線色*/
     border-radius: 5px;
}

a.shiny-btn 
{
	color: #ffffff;
}

a:hover.shiny-btn
{
	border-bottom: solid 0px #c0932b; /*下線色*/
}

.shiny-btn::after {
    content: '';
    position: absolute;
    top: -100px;
    left: -100px;
    width: 50px;
    height: 50px;
    background-image: linear-gradient(100deg,  rgba(255, 255, 255, 0) 10%, rgba(255, 255, 255, 1) 100%, rgba(255, 255, 255, 0) 0%);
	


	
	
    /* アニメーション */
    animation-name: shiny;
    animation-duration: 3s;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
}


.shiney-r{
	text-align: center;
	color: #ff6600;
	font-size:0.8em;
	font-weight:bold;
	padding-bottom:5px;
	padding-top:5px;
}




