@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
*/

/************************************
** 子テーマ用のスタイルを書く
************************************/
/*必要ならばここにコードを書く*/

/*全てをまとめて非表示*/
.home.page .entry-title,
.home.page .date-tags,
.home.page .author-info{
  display: none;
}




/*ページネーション*/
 .pagination-next-link { 
border: 1px solid #79a3b1;
border-radius: 30px;
background-color: #fff; 
color: #79a3b1; 
}
 .pagination-next-link:hover {
 background-color: #79a3b1; 
color: #fcf8ec; 
}
 .page-numbers { 
border-radius: 50%; 
border: 1px solid #79a3b1; 
color: #79a3b1; 
} 
.pagination .current { 
background-color: #79a3b1; 
color: #fff; 
} 
.pagination a:hover { 
background-color: #79a3b1; 
color: #fff;  
}







/************************************
** レスポンシブデザイン用のメディアクエリ
************************************/
/*1023px以下*/
@media screen and (max-width: 1023px){
  /*必要ならばここにコードを書く*/
}

/*834px以下*/
@media screen and (max-width: 834px){
  /*必要ならばここにコードを書く*/
}

/*480px以下*/
@media screen and (max-width: 480px){
  /*必要ならばここにコードを書く*/
}

/* タイムライン／ステップリスト構造 */
.step-timeline {
  position: relative;
  padding-left: 70px; /* 左側に円と線のスペースを確保 */
  margin: 2em 0;
}

/* 縦の点線 */
.step-timeline::before {
  content: '';
  position: absolute;
  top: 30px;
  bottom: 30px;
  left: 24px; /* 円の中心に合わせる */
  width: 1px;
  border-left: 2px dotted #ccc; /* 点線の色とスタイル */
  z-index: 1;
}

/* 各ステップのブロック */
.step-timeline-item {
  position: relative;
  margin-bottom: 2.5em;
}

.step-timeline-item:last-child {
  margin-bottom: 0;
}

/* STEPの丸アイコン */
.step-timeline-circle {
  position: absolute;
  left: -70px;
  top: 0;
  width: 50px;
  height: 50px;
  background-color: #e4d2d8; /* テーマに合わせたさくらいろ */
  color: #fff;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 2;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.step-timeline-circle .step-label {
  font-size: 10px;
  font-weight: bold;
  line-height: 1;
  letter-spacing: 0.5px;
  margin-bottom: 2px;
}

.step-timeline-circle .step-num {
  font-size: 18px;
  font-weight: bold;
  line-height: 1;
}

/* 見出し調整 */
.step-timeline-title {
  font-size: 1.25em;
  font-weight: bold;
  margin: 0 0 12px 0;
  line-height: 50px; /* 丸アイコンの高さと位置を揃える */
  color: #333;
}

/* コンテンツ（画像＋テキスト）のレイアウト */
.step-timeline-content {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.step-timeline-content img {
  width: 180px;
  max-width: 40%;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
}

.step-timeline-text {
  flex: 1;
  line-height: 1.7;
  color: #444;
}

/* スマホ表示時の最適化 */
@media screen and (max-width: 600px) {
  .step-timeline-content {
    flex-direction: column;
  }
  .step-timeline-content img {
    width: 100%;
    max-width: 100%;
  }
}