@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
*/

/************************************
** 子テーマ用のスタイルを書く
************************************/
/*必要ならばここにコードを書く*/
/*キラーン*/
span.shine {
	font-weight: 600;
	font-size:1.1em;
    font-style: normal;
    text-align: left;
    color: #fff;
    position: relative;
    background-image: linear-gradient(    70deg,    #ff1455  45%,     #fff 50%,    #ff1455 55%   );
    background-size: 500% 100%;
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    animation: shinetext 2s infinite;
}
@keyframes shinetext {
  0% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
/*ピカピカ*/
.change-color {
  font-weight: bold;
  font-size:1.1em;
  animation: changeColor 2.5s infinite;
}
@keyframes changeColor {
  0%,
  25% {
    color:#FF0042;
  }
  26%,
  50% {
    color:#FF0042;
  }
  51%,
  75% {
    color:#4BC8F9;
  }
  76%,
  100% {
    color:#FECE30;
  }
}

img.speech-icon-image {
	width: 96px;
	height: auto;
}

/* 250612_アコーディオン実装 */
.ac {
	width: 99%;
    margin: 24px auto 0;
    box-shadow: 0 0 6px 0.3px rgba(0, 0, 0, 0.2);
}

.ac-content {
  margin-bottom: 24px;
}

.ac-ttl {
  position: relative;
  font-weight: bold;
  color: #fe8308;
  background-color: #fff;
  padding: 15px 20px;
  cursor: pointer;
}
.ac-ttl::before,
.ac-ttl::after {
  position: absolute;
  content: "";
  top: 1px;
  right: 20px;
  bottom: 0;
  width: 20px;
  height: 3px;
  margin: auto;
  background: #fe8308;
}

.ac-ttl::after {
  transform: rotate(-90deg);
  transition: transform 0.3s;
}

.ac-item {
  display: none;
  position: relative;
  padding: 15px 20px;
}

.ac-item img {
  display: block;
  margin: 8px auto;
}

.ac-item ul,
.ac-item ol {
  padding: 5px 15px;
  margin: 0;
}

.ac-ttl.active::after {
  transform: rotate(0deg);
}

.markCheck {
	position: relative;
	line-height: 1.8;
	padding-left: 1.75em;
	font-weight: bold;
}

.markCheck p {
	margin-bottom: 2em;
}

.markCheck span {
	content: '';
	display: block;
	position: absolute;
	top: .5em;
	left: 0;
	width: 15px;
	height: 8px;
	transform: rotate(-45deg);
}

/* slash */ 
p.slash-txt {
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	margin-bottom: .25em;
	font-size: .95em;
	font-weight: bold;
}

.bold {
  font-weight: bold;
}

span.marker {
    background-color: rgba(245, 235, 159, 1);
}


/************************************
** レスポンシブデザイン用のメディアクエリ
************************************/
/*1023px以下*/
@media screen and (max-width: 1023px){

}

/*834px以下*/
@media screen and (max-width: 834px){
	table.size {
		width: 100%;
	}

}

/*480px以下*/
@media screen and (max-width: 480px){
	.header-site-logo-image {
		width: 200px;
	}
	img.speech-icon-image {
		width: 60px;
		height: auto;
	}
}

/************************************
** 20241122固定バナー 
************************************/
/* デフォルト状態（非表示） */
#bm-banner {display: none;opacity: 0;transition: opacity 0.5s ease-in-out;}

/* スマホ専用のスタイル（768px以下の画面でのみ表示） */
@media screen and (max-width: 768px) {#bm-banner {position: fixed;bottom: 0;width: 100%;text-align: center;z-index: 1000;padding: 0.5em;background: rgba(0, 0, 0, 0.5);}}

/* パソコン（769px以上）では非表示 */
@media screen and (min-width: 769px) {#bm-banner {display: none;}}