<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@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
*/

/************************************
** 子テーマ用のスタイルを書く
************************************/
/*必要ならばここにコードを書く*/


/* カラム内の画像を横に少し重ねる */

.filter-images {
    display: flex;
    margin: 5px;
	flex-wrap: wrap;
}

.wp-block-columns img{
  display: flex;
  gap: 0 !important; /* gapが入っていると効かないことがあるので無効化 */
}

.wp-block-columns .wp-block-column {
  margin-left: -20px; /* 画像同士を横に重ねる量（調整可） */
}

/* 最初の画像だけは左にずらさない */
.wp-block-columns .wp-block-column:first-child {
  margin-left: 0;
}


.widget-entry-cards.card-large-image .a-wrap {
    margin: 0 auto;
}


.notdisplay {
	display: none;
}

/* H2見出しの数字を非表示 */
.entry-content h2 &gt; span::before {
    content: none;
}


/*------------------------------------
 トグルのタイトルを上下中央配置
------------------------------------*/
.disc_toggle .toggle-button {
	padding: 0.5em 1em 0.5em 2em;
    font-weight: bold;
    text-align: left;
    border-radius: 2px;
    align-items: center;
    display: flex;
	font-size: 1.2em;
	font-family: 'Noto Sans JP';
    font-weight: 900;
	overflow: hidden;
}
/* 常に border を保持し、見た目のズレを防ぐ */
.disc_toggle .toggle-content {
  border: 1px solid transparent;
  box-sizing: border-box;
  padding: 0.5em 1em;
  transition: border-color 0.3s ease;
}
/* トグルが開いたときの状態 */
.disc_toggle input.toggle-checkbox:checked ~ .toggle-content {
  border-color: #ccc; /* または任意の色 */
  border-width: 1px;
  margin: 0 0 1em;
}
.disc_toggle .toggle-button::before {
    position: absolute;
    content: "\025b6";
    top: 1.05em;
    left: 0.5em;
    margin-right: 0;
    color: inherit;
    font-size: 1em;
    transition: all 0.3s ease-out;
}
.toggle-button img {
	margin-right: 8px;
	max-width: 50px;
}
/*------------------------------------------------------------------------*/

.agent_guide_togglebox .tab-label-group {
    padding-left: 0;
    display: flex;
	flex-wrap: wrap;
}

.agent_guide_togglebox .tab-label-group .tab-label  {
	padding: 0.65em 0em;
    border-top-left-radius: 3px;
    border-top-right-radius: 3px;
    /* margin: 5px 0; */
    cursor: pointer;
    font-size: 1.3em;
    font-weight: 700;
    border: solid 1px #d5d5d5;
    letter-spacing: 0.1em;
    width: 7em;
    text-align: center;
}

.agent_guide_togglebox .tab-label-group .tab-label.is-active {
background-color: #ad2773;
}

/*---------------------------------ディスク紹介テーブル---------------------------------*/
td.disk_num {
    font-weight: 900;
	font-size: 1.5em;
}
/*---------------------------------基本戦闘フローテーブル---------------------------------*/
td.combatflow_num {
    font-weight: 900;
    font-size: 1.5em;
    height: 50px;
    width: 50px;
    border-radius: 59%;
    line-height: 30px;
    text-align: center;
    background: pink;
    font-size: 24px;
    margin-left: 20px;
}






/* 画像のキャプションを中央揃えにする */
.wp-block-image figcaption {
    text-align: center;
}
.wp-block-group img {
	display: block; 
	margin: 0 auto;
}


.imgzm_pr {
  overflow: hidden;
transition: all 0.5s ease-in-out;
}

figure.imgzm_pr:hover img {
  transform: scale(1.2);
transition: transform 0.3s ease-in-out;
}


figure.imgzm_pr:hover figcaption{
position: absolute;
    left: 0;
    bottom: 0;
    padding: 5px 10px;
    width: 100%;
}


/* ---------------------------------
ディスク画像重ね 
------------------------------------*/
.image-wrapper {
  position: relative;
  width: 100%;
}

.slot0 img {
  width: 72%;
  height: auto;
}

.overlay {
  position: absolute;
  width: 14%; /* 必要に応じて調整 */
  height: auto;
}
.overlay.disc1 {
    top: 7%;
    left: 28.1%;
}
.overlay.disc2 {
    top: 39.2%;
    left: 18.5%;
}
.overlay.disc3 {
    top: 71.7%;
    left: 28%;
}
.overlay.disc4 {
    top: 71.7%;
    left: 58%;
}
.overlay.disc5 {
    top: 39.2%;
    left: 67.7%;
}
.overlay.disc6 {
    top: 7%;
    left: 58.1%;
}








.wp-caption {
	background-color:rgb(0, 0, 0, 0);
	border: none;
}

.wp-element-caption {
	text-align: center;
}
/*--------------------------------------
  エージェントキャプションを変更
--------------------------------------*/
.agent .wp-element-caption {
max-width: 100%;
    margin-top: -0.1em;
    color: #fff;
    font-size: 0.9em;
    text-align: center;
    background-color: #232323;
    display: flex
;
    flex-direction: column;
    line-height: 2.2em;
    border-radius: 0 0 0.5em 0.5em;
}

/* Sランク背景 */
.agent.srank &gt; a img {
	background: linear-gradient(180deg, #f1cc65, #f3eecd);
    border-radius: 0 1em;
}



.wp-block-image.agent &gt; a:hover {
    opacity: 1;
    filter: drop-shadow(6px 6px 6px rgba(0, 0, 0, 0.45));
    transition: opacity 0.3s, filter 0.3s, transform 0.3s; /* transformの遷移も追加 */
    transform: translate(-2px, -2px); /* 画像を少し左上に移動 */
}

/* Sランクロゴ */
.agent.srank {
  position: relative; /* 擬似要素を絶対配置するために必要 */
  display: inline-block; /* 必要に応じて調整 */
}
.agent.srank::after {
    content: "";
    background-image: url(http://bumpgame.net/wp-content/uploads/2025/05/agent_s.bf22e6e.png);
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    bottom: 35px;
    left: 0px;
    width: 35px;
    height: 35px;
    pointer-events: none;
}

/* Aランク背景 */
.agent.arank &gt; a img {
	background: linear-gradient(180deg, #9565b9, #ebd6fd);
    border-radius: 0 1em;
}
/* Aランクロゴ */
.agent.arank {
  position: relative; /* 擬似要素を絶対配置するために必要 */
  display: inline-block; /* 必要に応じて調整 */
}
.agent.arank::after {
    content: "";
    background-image: url(http://bumpgame.net/wp-content/uploads/2025/05/agent_a.2fed542.png);
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    bottom: 35px;
    left: 0px;
    width: 35px;
    height: 35px;
    pointer-events: none;
}

/* EMPTY背景 */
.agent.empty &gt; img {
	background: linear-gradient(180deg, #7b7b7b, #dddddd);
    border-radius: 0 1em;
}

/*-----------------------------------------------------*/
.kasane-wrap{
  position: relative;
	display: flex
;
}
.kasane-img1{
    position: relative;
    /*top: 40%;*/
    /*left: 20%;*/
    z-index : 10;
}
.kasane-img2{
    position: absolute;
    top: 35%;
    /*left: 44%;*/
    z-index : 20;
}
.kasane-img3{
    position: absolute;
    top: 60%;
    left: 60%;
    z-index : 30;
}



.kasane-text{
  background:#f7f6f5;
  padding: 40px 40px;
  position:relative;
  left:-20px;
  z-index:1;
}

@media screen and (max-width:768px){
  .kasane-wrap{
    display:block;
  }
  .kasane-img{
    left:-15px;
  }
  .kasane-text{
    top:-30px;
    left:15px;
  }
}
/*-----------------------------------------------------*/



.updated-content {
    display: flex; /* flexboxを利用 */
    justify-content: space-between; /* 要素を左右に配置 */
}

.updated {
    /* 最終更新日のスタイル */
    text-align: left;
}

.content {
    /* コンテンツのスタイル */
    flex: 1; /* 残りスペースを占める */
}









.logo-image a:hover {
  animation: poyopoyo 1.1s ease-out infinite;
  opacity: 1;
}
@keyframes poyopoyo {
  0%, 40%, 60%, 80% {
    transform: scale(1.0);
  }
  50%, 70% {
    transform: scale(0.97);
  }
}






a .site-logo-image header-site-logo-image:hover {
	transform: translate(0, 20px) perspective(50px) rotateY(50deg);
}



s {
    text-decoration: line-through 3px solid #032c2f 70%;
}




/*--- 箇条書きスタイル -------------------------------------------------------------*/
.is-style-numeric-list-enclosed &gt; li:before {
    color: #000000 !important;
	background-color: #ffffff;
	font-weight: bold !important;
}


/* --- トップtsubuyakiの画像を上下中央ぞろえ ----------------------*/
.tsubuyaki .wp-block-image img {
    display: block;
	/*position: absolute;align-content*/
	position: relative;
}
    


 /* --- BOXの定義 -------------------------------------------------*/
.tsubuyaki {
	position: relative;
    box-sizing: border-box;
    margin: 14px auto 0 auto;
    background: linear-gradient(90deg, rgb(47 3 35), rgb(6 23 28));
    padding: 33px 40px 25px 40px;
    border: 3px solid #555555;
    border-radius: 1em;
    width: 95%;
}

.tsubuyaki .wp-block-group { /* 本文下余白 */
    margin-bottom: 0.6em;
}
 
 /* --- タイトル部分の定義 ----------------------------------------*/
.tsubuyaki::before {
    content: "ちょいトピックス";
    padding: 3px 10px;
    position: absolute;
	left: -2%;
    top: -25px;
    box-shadow: 3px 3px #1a1a1a;
    border: 3px solid #555555;
    border-radius: 10px;
    background-image: linear-gradient(90deg, rgb(38 32 53), rgb(34 65 55));
    color: #dddddd;
    font-weight: bold;
    text-align: center;
}


/*新着記事を2列にする-------------------------------------------------*/
.new-entry-cards.fp-new-entry-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    box-sizing: border-box;
}

.fp-new-entry-cards .new-entry-card-link.a-wrap {
    display: inline-block;
    width: 48%;
	margin: 4px 2px;
}
/*--------------------------------------------------------------------*/





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

/*834px以下*/
@media screen and (max-width: 834px){
  /*必要ならばここにコードを書く*/
  div .chc_bg:before{
	background-position: top !important;
}

	
}

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

  .tsubuyaki {
	font-size: 14px;	
}


}


@media (max-width: 1024px) {
    .elementor-element img {
        width: 60px;
    }
}
</pre></body></html>