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

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

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

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

/*480px以下*/
@media screen and (max-width: 480px){
  /*必要ならばここにコードを書く*/
}
/* ヘッダー画像の高さを固定（例：300px） */
.header-image {
  height: 300px;
  overflow: hidden;
}

.header-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
}


.image-container {
  position: relative;
  width: 100%;
  max-width: 840px;
}

.image-container img {
  width: 100%;
  height: auto;
  display: block;
}

.text-overlay {
  position: absolute;
  bottom: 30%;
  left: 45%;
  transform: translateX(-50%);
  color: white;
  text-align: center;
  background-color: rgba(0, 0, 0, 0.5);
  padding: 1rem 2rem;
  border-radius: 8px;
  max-width: 90%;
  z-index: 10; /* ←これを追加 */
}

.text-overlay h2 {
  margin: 0;
  font-size: 1.2em;
  font-weight: bold;
  background-color: transparent; /* ← これ追加！ */
}

.text-overlay p {
  margin: 0.5rem 0 0;
  font-size: 1rem;
}

/*心の心 */
.image-text-box01 {
  display: flex;
  align-items: center;
  gap: 1rem; /* 画像とテキストの間隔 */
}

.left-image {
  max-width: 200px;
  height: auto;
}

.text-content p {
  font-size: 1.5rem;
  line-height: 1.7;
  margin: 0;
}

.subtitle {
  font-style: italic;
  font-family: "Arial", sans-serif;
}

/* vol4 キャラクターコンペ　*/
.container {
  display: flex;
  flex-flow: row nowrap; /* 横並び、折返しなし */
  align-items: flex-end; /* 各アイテムの「下端」を揃える */
  gap: 20px;
}

.card {
  display: flex;
  flex-direction: column; /* 中身は縦並び */
  align-items: center;
  max-width: 900 px;
  text-align: center;
}

.card img {
  width: 100%;
  height: auto;
  display: block;
}

/* vol4 キャラクターコンペ　end */