@charset "utf-8";
/*
Theme Name: hp9
Theme URI: http://www.○○○○○.com/
Description: サテライトのテーマです。
Author: HRM
Author URI: http://www.---------.com/
Version: 1.1
*/
@import url('base.css');
@import url('layout.css');
@import url('page.css');
/*@import url('sp.css');
*/


em {
background-color: #ffff99;
font-weight:bold;
}

img {
 max-width: 100%;
 height: auto;
}

#scalouter{
	width:100%;
	margin-bottom:30px;
}
#scalouter a{ display:block; }
#scalebox{
	width:100%;
	margin:0 auto;
	animation-name: scalebox;
    animation-duration: 2s;
    animation-fill-mode: both;
    animation-iteration-count: infinite;
	-webkit-animation-name: scalebox;
    -webkit-animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    -webkit-animation-iteration-count: infinite;

}
#scalebox img{ width:100%; height:auto; }

@keyframes scalebox {
0% {
    transform: scale(0.95);
	-webkit-transform: scale3d(0.95, 0.95, 1); 
}
50% {
    transform: scale(1);
	-webkit-transform: scale3d(1, 1, 1); 
}
100% {
    transform: scale(0.95);
	-webkit-transform: scale3d(0.95, 0.95, 1); 
}
}
@-webkit-keyframes scalebox {
0% {
    transform: scale(0.95);
	-webkit-transform: scale3d(0.95, 0.95, 1); 
}
50% {
    transform: scale(1);
	-webkit-transform: scale3d(1, 1, 1); 
}
100% {
    transform: scale(0.95);
	-webkit-transform: scale3d(0.95, 0.95, 1); 
}
}