@charset "utf-8";
/*
Template: jstork19
Theme Name: stork19_custom
Theme URI:http://open-cage.com/stork19/
Version: 1.3.0
Author: opencage
Author URI: https://open-cage.com/
*/

/* 全ページの固定ページタイトルを非表示にする */
.page .entry-title {
  display: none;
}

/*当サイトについて*********/
/* 丸い見出し部分 */
.circle-title {
  width: 120px;
  height: 120px;
  background-color: #3cc286; /* 緑色を好きな色に調整 */
  color: #ffffff;
  font-weight: bold;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 10px;
  border-radius: 50%;
  font-size: 18px; /* 調整可 */
}


/* ボックス高さを指定 */
.equal-height-boxes {
  height: 350px;
  overflow: hidden; /* 内容が長すぎる場合にあふれた部分を隠す */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}


/*有料会員について********/
/*QA設定*/
.qa-box {
  background-color: #d9f2ff;
  border-radius: 16px;
  padding: 20px 10px 10px 20px;
  max-width: 800px;
  margin: 20px auto;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  font-family: sans-serif;
}

.qa-row {
  display: flex;
  align-items: center; /* ここで縦方向中央揃え */
  margin-bottom: 12px;
}

.qa-icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  font-weight: bold;
  display: flex;
  align-items: center; /* アイコン内の文字縦中央 */
  justify-content: center; /* 横中央 */
  margin-right: 10px;
  font-size: 16px;
  flex-shrink: 0;
}

.qa-icon.q {
  background-color: #1e40af;
  color: #fff;
}

.qa-icon.a {
  background-color: #facc15;
  color: #000;
}

.qa-text {
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
}


/****会員ステップ*****/
.step-flow {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  /*padding: 40px 20px;*/
  position: relative;
}

.step-card {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 10px;
  width: 220px;
  padding: 20px;
  text-align: center;
  position: relative;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}
.step-card p {
  text-align: left;
}
.step-label {
  position: absolute;
  top: -12px;
  left: 10px;
  background: #1e40af;
  color: #fff;
  padding: 4px 10px;
  font-size: 12px;
  font-weight: bold;
  border-radius: 3px;
}

.step-icon {
  width: 60px;
  margin: 10px auto;
}

.step-card h5 {
  font-size: 16px;
  margin: 10px 0 5px;
}

.step-card p {
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
}

/* ▶ 矢印の共通スタイル */
.step-arrow {
  position: absolute;
  top: 50%;
  right: -33px;
  transform: translateY(-50%);
  width: 50px;
}

/* 最後の矢印は非表示 */
.step-card:last-child .step-arrow {
  display: none;
}

/* スマホ対応：縦並び + 矢印下向きに変更 */
@media (max-width: 768px) {
  .step-flow {
    flex-direction: column;
    align-items: center;
  }

  .step-card {
    width: 100%;
    max-width: 320px;
  }

  .step-arrow {
    top: auto;
    bottom: -50px;
    left: 45%;
    right: auto;
    transform: translateX(-50%) rotate(90deg); /* 横→縦向き */
  }
}
