

/* アイキャッチのカテゴリ背景 */

.eyecatch__cat{
background-color:#F7818190;
}

.key__cat{
background-color:#F7818190;
}

/* 広告横並び */


ul.lcp_catlist li {
list-style:none;
border-bottom: 1px solid #CCCCCC;
padding-top: 10px;
padding-bottom: 155px;
}

ul.lcp_catlist li img {
 float: left;
 margin-right: 10px;
}

ins[style] {
	background-color:transparent;
}


.ad-double ul {
 padding: 0;
 margin: 0;
list-style-type: none;
font-size: 0;
}


.ad-double li{
padding: 0;
 margin: 0;
list-style-type: none;
display: inline-block;
}

/* 画像横並び */


.double-banner{
	list-style: none;
	padding-left: 0;
	display: flex;
	flex-wrap:wrap;
}
.double-banner li {
	width: calc(100%/2);/*←画像を横に4つ並べる場合*/
	padding:0 5px;/*←画像の左右に5pxの余白を入れる場合*/
	box-sizing:border-box;
}
.double-banner li img {
	max-width:100%; /*画像のはみだしを防ぐ*/
	height: auto; /*画像の縦横比を維持 */
	
}


/* 仕切り線 */


hr.style-ad {
    border: 0;
    border-bottom: 1px dashed #ccc;
    background: #999;
}


/* ボタン */


.square_btn{
    display: inline-block;
    padding: 0.5em 1em;
    text-decoration: none;
    background: #f7f7f7;
    border-left: solid 6px #ff7c5c;/*左線*/
    color: #ff7c5c;/*文字色*/
    font-weight: bold;
    box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.29);
}
.square_btn:active {
    box-shadow: inset 0 0 2px rgba(128, 128, 128, 0.1);
    transform: translateY(2px);
}



.title_square_btn{
    position: relative;
    display: inline-block;
    font-weight: bold;
	  width:90%;
	  text-align: center;
    padding: 0.5em 0em;
    text-decoration: none;
    border-left: solid 4px #ff7c5c;
    border-right: solid 4px #ff7c5c;
    color: #ff7c5c;
    background: #f7f7f7;
    transition: .4s;
}

.title_square_btn:hover {
    background: #ff7c5c;
    color: #FFF;
}





/* 吹き出し上 */


.balloon2-top {
 	position: relative;
	display: inline-block;
 	margin: 1.5em 0;
	padding: 7px 10px;
	min-width: 120px;
 	max-width: 100%;
 	color: #555;
	font-size: 16px;
	background: #FFF;
 	border: solid 3px #555;
 	box-sizing: border-box;
}

.balloon2-top:before{
	content: "";
	position: absolute;
	top: -24px;
	left: 50%;
 	margin-left: -15px;
	border: 12px solid transparent;
	border-bottom: 12px solid #FFF;
 	z-index: 2;
}

.balloon2-top:after{
	content: "";
	position: absolute;
	top: -30px;
	left: 50%;
 	margin-left: -17px;
	border: 14px solid transparent;
	border-bottom: 14px solid #555;
 	z-index: 1;
}

.balloon2-top p {
	margin: 0;
	padding: 0;
}




/* ツイッターボタンアイコン */





/*==
 カエレバ・ヨメレバ・トマレバ
====*/


/*****  関連記事Milliard *****/

/*****  過去ブログのボタン *****/


.past_blog_btn {
    display: inline-block;
    padding: 0.3em 1em;
    text-decoration: none;
    color: #b81c22;
    border: solid 2px #b81c22;
    border-radius: 3px;
    transition: .4s;
}

.past_blog_btn:hover {
    background: #b81c22;
    color: white;
}



/*  リンク用のボタン画像 */

.object-fit_cover {
	
	object-fit: cover;
  width: 100%;
  height: 140px;
	margin: 2%;
}

/*  ブルブル震える */

.buruburu {
    display: inline-block;
    animation: hurueru .1s  infinite;
}

@keyframes hurueru {
    0% {transform: translate(0px, 0px) rotateZ(0deg)}
    25% {transform: translate(2px, 2px) rotateZ(1deg)}
    50% {transform: translate(0px, 2px) rotateZ(0deg)}
    75% {transform: translate(2px, 0px) rotateZ(-1deg)}
    100% {transform: translate(0px, 0px) rotateZ(0deg)}
}


/* ↓画像のループ↓ */

.loop_css {
  position: relative;
  display: -webkit-flex;
  display: flex;
  width: 100vw;
  height: 300px;
  left: 50%;
  margin-left: -50vw;
  overflow: hidden;
}

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

.loop_css img:first-child {
  -webkit-animation: loop 50s -25s linear infinite;
  animation: loop 50s -25s linear infinite;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  will-change: transform;
}

.loop_css img + img {
  -webkit-animation: loop2 50s  linear infinite;
  animation: loop2 50s linear infinite;
}

/*アニメーション*/
@-webkit-keyframes loop {
  0% {
    -webkit-transform: translateX(100%);
    -ms-transform: translateX(100%);
    transform: translateX(100%);
  }
  to {
    -webkit-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}

@keyframes loop {
  0% {
    -webkit-transform: translateX(100%);
    -ms-transform: translateX(100%);
    transform: translateX(100%);
  }
  to {
    -webkit-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}

@-webkit-keyframes loop2 {
  0% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-200%);
    -ms-transform: translateX(-200%);
    transform: translateX(-200%);
  }
}

@keyframes loop2 {
  0% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-200%);
    -ms-transform: translateX(-200%);
    transform: translateX(-200%);
  }
}

/* 画像のループ↑終わり */

/* 四角の枠 */


.box-link {
    position: relative;
    margin: 2em 0;
    padding: 25px 10px 7px;
    border: solid 2px #FFC107;
}
.box-link .box-title {
    position: absolute;
    display: inline-block;
    top: -2px;
    left: -2px;
    padding: 0 9px;
    height: 25px;
    line-height: 25px;
    font-size: 17px;
    background: #FFC107;
    color: #ffffff;
    font-weight: bold;
}
.box-link p {
    margin: 0; 
    padding: 0;
}

.box-link a {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    text-indent:-999px;
    z-index: 2; 
}

/* ２個目 */

.box-matome {
    position: relative;
    margin: 2em 0;
    padding: 25px 10px 7px;
    border: solid 2px #B40404;
}
.box-matome h3 {
    position: absolute;
    display: inline-block;
    top: -2px;
    left: -2px;
    padding: 0 9px;
    height: 30px;
    line-height: 30px;
    font-size: 24px;
	border-left: 5px;
	border: 1px;
    background: #B40404;
    color: #ffffff;
    font-weight: bold;
}
.box-matome p {
    margin: 0; 
    padding: 0;
}

.box-matome a {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    text-indent:-999px;
    z-index: 2; 
}

/* 四角の枠↑おわり */

/* 四角の枠↓costco */

.box-costco-online {
    position: relative;
    margin: 2em 0;
    padding: 0.5em 1em;
    border: solid 3px #1074a4;
    border-radius: 8px;
}
.box-costco-online-title:before {
	content: "コストコオンライン🛒";
    position: absolute;
    display: inline-block;
	top: -13px;
    left: 10px;
    padding: 0 9px;
    line-height: 1;
    font-size: 19px;
    background: #FFF;
    color: #ff1e3c;
    font-weight: bold;
}


.box-costco-online p {
    margin: 0; 
    padding: 0;
}

.box-costco-online a {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    text-indent:-999px;
    z-index: 2; 
}

/* 四角の枠↑costcoおわり */

/* 固定 */


.layout-footer {
	background-color: rgba( 255, 255, 255, 0.55 );
  bottom: 0;
  font-size: smaller;
  padding: 0.1rem 0rem;
  text-align: center;
  position: sticky;
	z-index:3;
}

/* Amazon枠 */


.box_amazon {
    padding: 0.5em 1em;
    margin: 2em 0;
    font-weight: bold;
    border: solid 3px #FF9900;
	  background-color: #F4F5F7;
}
.box_amazon p {
    margin: 0; 
    padding: 0;
}

/* twitter枠 */


.box_twitter {
    padding: 0.5em 1em;
    margin: 2em 0;
    font-weight: bold;
    border: solid 3px #00acee;
	  background-color: #F4F5F7;
}
.box_twitter p {
    margin: 0; 
    padding: 0;
}



/* 検索ボックス */
.g_search_iptxt{

width: calc(100% - 120px -  20px);
}

/* アイキャッチ枠 */

.waku-eye-catch {
    background: url(https://katemita.com/wp-content/uploads/2019/10/background-image-sakura.png);
    padding: 10px;
	margin: -10px;
	position: relative;

}

.waku-eye-catch-img-relative {
	    padding: 10px;
	margin: -10px;
    position: relative;
}


.waku-eye-catch-img-absolute {
	display: flex;
   position: absolute;
   bottom: 10px;
   right: 10px;
}

.waku-eye-catch-img-left-absolute {
	
   position: absolute;
   bottom: 10px;
   left: 10px;
}


.sticky-side{
position: -webkit-sticky; 
  position: sticky;
  top: 10px;
}


/* タグボタン */
