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

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

/*カスタム投稿UI*/
.custom-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.alterna-card .title {
  color: var(--skin-grayish-a-wrap-txt) !important;
  font-size: 1rem !important;
}
a:where(:not(.wp-element-button)) {
  text-decoration: unset;
}

/* オルタナページ */

.alterna-more-wrap {
  text-align: center;
  margin-top: 40px;
}

.alterna-more-btn {
  display: inline-block;
  padding: 12px 28px;
  background: var(--skin-grayish-site-main-hover);
  color: #fff;
  border-radius: 4px;
  font-size: 1rem;
  text-decoration: none;
  transition: 0.3s;
  border: 1px solid var(--skin-grayish-site-main-hover);
}

.alterna-more-btn:hover {
  background: var(--skin-grayish-site-main);
  opacity: 0.9;
  border: 1px solid var(--skin-grayish-site-main-hover);
}

.big-text {
  font-weight: 700; /* 太字にしたくない場合 */
}

/* 全体のセクション */
.alterna-about-section {
  padding: 2.5rem 1.5rem;
  margin: 3rem 0;
  background-color: #fff;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.03);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.03);
}

/* セクション見出し */
.alterna-step-title {
  font-size: 1.2rem;
  text-align: center;
  margin-bottom: 2rem;
  letter-spacing: 0.05em;
  position: relative;
  padding-bottom: 0.75rem;
}

.alterna-step-title::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 80px;
  height: 2px;
  transform: translateX(-50%);
  background-color: var(--skin-grayish-site-main-hover);
}

/* ステップ全体ラッパー */
.alterna-steps {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.alterna-archive-grid {
  padding-bottom: 5rem;
}
/* 各ステップカード */
.step-item {
  display: flex;
  gap: 1rem;
  padding: 1.2rem 1.4rem;
  border-radius: 10px;
  background-color: #fafafa;
  border: 1px solid rgba(0, 0, 0, 0.03);
}

/* 番号バッジ */
.step-number {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.9rem;
  color: #fff;
  background: var(--skin-grayish-site-main-hover);
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.08);
}

/* 本文側 */
.step-body h3 {
  font-size: 1rem;
  margin: 0 0 0.4rem;
  font-weight: 600;
}

.step-body p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--skin-grayish-site-name-txt, #555);
}

/* テンプレボタンまわり */
.alterna-more-wrap {
  text-align: center;
  margin-top: 2rem;
}

/* スマホ調整 */
@media (max-width: 599px) {
  .alterna-about-section {
    padding: 2rem 1rem;
    margin: 2rem 0;
  }

  .step-item {
    padding: 1rem 1.1rem;
  }

  .step-body h3 {
    font-size: 0.95rem;
  }

  .step-body p {
    font-size: 0.85rem;
  }
}
.alterna-inline-link {
  color: var(--skin-grayish-site-main-hover);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: opacity 0.2s ease;
}

.alterna-inline-link:hover {
  opacity: 0.7;
}

/* ===========================
   共通セクション
=========================== */
.pricing-section {
  margin: 3rem 0;
  padding: 2.5rem 1.5rem;
  background-color: #fff;
  border-radius: 16px;
  border: 1px solid rgba(0, 0, 0, 0.03);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.03);
}

/* ===============================
   料金ページ見出し（ブロック装飾を無効化）
=============================== */
.pricing-section-title {
  all: unset; /* ブロックエディタの装飾を完全リセット */
  display: block;

  /* あなたのデザインを再定義 */
  font-size: 1.25rem;
  font-weight: 600;
  text-align: center;
  letter-spacing: 0.05em;
  margin: 0 0 2rem;
  padding-bottom: 0.75rem;
  position: relative;
  color: var(--skin-grayish-site-name-txt);
}

/* 下線装飾 */
.pricing-section-title::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 80px;
  height: 2px;
  transform: translateX(-50%);
  background-color: var(--skin-grayish-site-main-hover);
}

.pricing-section-lead {
  text-align: center;
  font-size: 0.95rem;
  color: var(--skin-grayish-site-name-txt, #555);
  line-height: 1.8;
  margin-bottom: 2rem;
}

/* ===========================
   グリッド
=========================== */
.pricing-grid {
  display: grid;
  gap: 1.8rem;
  margin-top: 1.5rem;
}

.pricing-grid-3col {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

/* 2カラム用（制作プラン） */
.pricing-section:first-of-type .pricing-grid {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

/* ===========================
   カード
=========================== */
.pricing-card {
  background-color: #fafafa;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.04);
  padding: 1.5rem 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

/* おすすめ強調用 */
.pricing-card.is-recommend {
  position: relative;
  border-color: var(--skin-grayish-site-main-hover);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.05);
}

.pricing-card.is-recommend::before {
  content: "おすすめ";
  position: absolute;
  top: 0.6rem;
  right: 0.9rem;
  font-size: 0.7rem;
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
  background: var(--skin-grayish-site-main-hover);
  color: #fff;
}

/* ===========================
   カードヘッダー
=========================== */
.pricing-card-header {
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
  padding-bottom: 0.8rem;
  margin-bottom: 0.6rem;
}

.pricing-plan-name {
  font-size: 1.05rem;
  margin: 0 0 0.3rem;
}

.pricing-price {
  font-size: 0.95rem;
  margin: 0.2rem 0;
}

.pricing-price span {
  font-size: 1.5rem;
  font-weight: 700;
}

.pricing-sub {
  font-size: 0.8rem;
  color: var(--skin-grayish-site-name-txt, #666);
  margin: 0.3rem 0 0;
}

/* ===========================
   カード本文
=========================== */
.pricing-body {
  font-size: 0.9rem;
  color: var(--skin-grayish-site-name-txt, #555);
}

.pricing-breakdown {
  margin: 0 0 0.4rem;
}

.pricing-breakdown small {
  font-size: 0.8em;
  opacity: 0.8;
}

.pricing-list {
  list-style: none;
  padding-left: 0;
  margin: 0.4rem 0 0.8rem;
}

.pricing-list li {
  position: relative;
  padding-left: 1.1rem;
  margin-bottom: 0.3rem;
  line-height: 1.7;
}

.pricing-list li::before {
  content: "・";
  position: absolute;
  left: 0.2rem;
  top: 0;
}

/* オプション */
.pricing-option {
  margin-top: 0.8rem;
}

.pricing-option-title {
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.2rem;
}

.pricing-option ul {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.pricing-option li {
  font-size: 0.85rem;
  line-height: 1.7;
}

/* 備考 */
.pricing-note {
  font-size: 0.8rem;
  color: #888;
  margin-top: 0.6rem;
  line-height: 1.6;
}

.pricing-footnote {
  font-size: 0.8rem;
  color: #888;
  margin-top: 1.5rem;
  text-align: center;
  line-height: 1.7;
}

/* 強調テキスト */
.text-strong {
  font-weight: 600;
}

/* インラインリンク（さっきと同じトーン） */
.alterna-inline-link {
  color: var(--skin-grayish-site-main-hover);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: opacity 0.2s ease;
}

.alterna-inline-link:hover {
  opacity: 0.7;
}

/* レスポンシブ調整 */
@media (max-width: 599px) {
  .pricing-section {
    padding: 2rem 1rem;
    margin: 2.5rem 0;
  }

  .pricing-card {
    padding: 1.3rem 1.2rem;
  }

  .pricing-section-lead {
    font-size: 0.9rem;
  }
}

/* aboutページ */
/* 自己紹介全体 */
/* ========== Profile ========== */

.profile {
  margin: 4rem auto;
  padding-inline: 1rem;
}

.profile__inner {
  max-width: 920px;
  margin: 0 auto;
  padding: 2.5rem 2.2rem;
  background-color: #fff;
  border: 1px solid var(--LtGray_T30, #e1e5ea);
  border-radius: 10px;
}

/* ---- header（画像 + 名前 + タグ） ---- */

.profile__header {
  display: flex;
  gap: 2rem;
  align-items: center;
  flex-wrap: wrap;
  border-bottom: 1px solid var(--LtGray_T30, #e1e5ea);
  padding-bottom: 1.8rem;
  margin-bottom: 1.8rem;
}

.profile__image-wrap {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid var(--LtGray_T30, #e1e5ea);
  background-color: #f7f9fb;
  flex-shrink: 0;
}

.profile__image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.profile__head-text {
  flex: 1;
}

.profile__role-en {
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #999;
  margin-bottom: 0.3rem;
}

.profile__name-main {
  font-size: 1.6rem;
  letter-spacing: 0.05em;
  margin: 0 0 0.2rem;
  font-weight: 600;
}

.profile__role-ja {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 0.8rem;
}

/* ---- tags ---- */

.profile__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 0.6rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.profile__tags li {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.8rem;
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  border: 1px solid var(--LtGray_T30, #dde3ea);
  color: #555;
}

.profile__tags i {
  font-size: 0.8rem;
  color: var(--skin-grayish-site-main-hover, #7c9ab3);
}

/* ---- body ---- */

.profile__body {
  font-size: 0.95rem;
  line-height: 1.9;
}

.profile__section + .profile__section {
  margin-top: 1.8rem;
}

/* 見出しをシンプルに線で */
.profile__section-title {
  position: relative;
  font-size: 1rem;
  font-weight: 500;
  margin: 0 0 0.7rem;
  padding-left: 0.8rem;
}

.profile__section-title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.1rem;
  bottom: 0.1rem;
  width: 3px;
  border-radius: 999px;
  background-color: var(--skin-grayish-site-main-hover, #7c9ab3);
}

/* リスト */
.profile__list {
  list-style: none;
  padding-left: 0;
  margin: 0.4rem 0 0;
}

.profile__list li {
  position: relative;
  padding-left: 1.1rem;
  margin-bottom: 0.35rem;
}

.profile__list li::before {
  content: "";
  position: absolute;
  top: 0.7em;
  left: 0.2rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--skin-grayish-site-main-hover, #7c9ab3);
  transform: translateY(-50%);
}

/* ---- sp ---- */

@media screen and (max-width: 768px) {
  .profile__inner {
    padding: 2rem 1.4rem;
  }

  .profile__header {
    flex-direction: column;
    align-items: flex-start;
  }

  .profile__image-wrap {
    width: 120px;
    height: 120px;
  }

  .profile__name-main {
    font-size: 1.4rem;
  }

  .profile__tags {
    gap: 0.3rem 0.4rem;
  }
}

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

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

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