@charset "UTF-8";

/*!
Theme Name: Cocoon Child
Description: Cocoon専用の子テーマ
Theme URI: https://wp-cocoon.com/
Author: わいひら
Author URI: https://nelog.jp/
Template:   cocoon-master
Version:    1.1.3
*/

/************************************
** 子テーマ用のスタイルを書く
************************************/
/*必要ならばここにコードを書く*/
.header {
	background-position: center;
}

.tagline {
	font-size: 1rem;
}
#header .site-name-text {
	font-weight: bold;
    font-size: 2.5rem;
	text-shadow: dimgray 0px 0px 10px;
}

/* .page .date-tags{
	display: none;
} */

/* .animate__animated {
  animation-duration: 0.5s;
  animation-fill-mode: both;
} */

@keyframes fadeIn {
  0% { opacity: 0; }
  to { opacity: 1; }
}
/* .animate__fadeIn {
  animation-name: fadeIn;
} */

/* @keyframes fadeOut {
  0% { opacity: 1; }
  to { opacity: 0; }
} */

/* .animate__fadeOut {
  animation-name: fadeOut;
} */

#contents,body {
  animation-duration: 1s;
  animation-fill-mode: both;
  animation-name: fadeIn;
}

/* 固定ページの メタデータ非表示 */
.page .date-tags,
.page .author-info {
    display: none;
}


/************************************
** レスポンシブデザイン用のメディアクエリ
************************************/
/*1023px以下*/
@media screen and (max-width: 1023px){
  /*必要ならばここにコードを書く*/
}

/*834px以下*/
@media screen and (max-width: 834px){
  /*必要ならばここにコードを書く*/
	#header .site-name-text {
		font-weight: bold;
		font-size: 2rem;
	}
	.logo-text {
		padding-top: 10px;
	}
}

/*480px以下*/
@media screen and (max-width: 480px){
  /*必要ならばここにコードを書く*/
}

/*768px以上*/
@media screen and (min-width: 768px){
	.br-sp {
		display: none;
	}
}


/** 広告用 **/
.comm {
    display: flex;
    justify-content: space-evenly; /* 画像を横並びで均等に配置 */
    flex-wrap: nowrap; /* 親要素の幅に応じて画像を折り返す */
    align-items: center; /* 画像の上下中央揃え */
    gap: 20px;
    margin-bottom: 20px;
}

.div-img {
    flex: 1;
    display: flex;
    justify-content: center; /* 画像を中央に揃える */
    text-align:center;
    /* width: calc(100% / 2); */
}

.div-img img {
    max-width: 85%;
}

@keyframes infinity-scroll-left {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-100%);
    }
}


#scroll {
    margin: 0 calc(50% - 50vw);  /* 画面幅いっぱいにはみ出させるためのネガティブマージン */
    width: 100vw;                /* 幅を画面幅いっぱいに指定 */
}

.scroll-infinity__wrap {
    display: flex;
    overflow: hidden;
}

.scroll-infinity__list {
    display: flex;
    list-style: none;
    padding: 0 5px;
    gap: 10px;
    align-items: center; /* 画像の上下中央揃え */
}

.scroll-infinity__list--left {
    animation: infinity-scroll-left 15s infinite linear 0.5s both;
}

.scroll-infinity__item {
    width: 250px;
}

.scroll-infinity__item>img {
    width: 100%;
}

@media screen and (max-width: 920px) {
    .comm {
      gap:10px;
    }

    .scroll-infinity__list {
        gap: 5px;
    }

    .scroll-infinity__item {
        width: calc(100vw / 2.9);
        /* width: 250px; */
        /* width: calc(100vw / 6); */
    }

    .list-page-row {
        gap:20px;
    }

    .div-img img {
      max-width: 90%;
    }
}
@media screen and (max-width: 740px) {
  .div-img img {
    max-width: 95%;
  }
}

.list-page-img {
    border:none !important;
    width: 280px !important;
}

.list-page-row {
    margin-top: 50px;
    margin-bottom: 50px;
}


.cat-new {
    background: lightcoral;
    color: white;
    font-weight: bold;
    font-size: 0.7rem;
    padding: 2px 6px;
    border-radius: 5px;
    margin-left: 6px;
}

.page-updated {
    font-size: 0.9rem;
    font-weight: bold;
    color: lightcoral;
    /* margin-left: 4px; */
}

