@charset "utf-8";

/* カラー変数 */
.bbq-page {
  --bbq-green: #60a57f;
  --bbq-yellow: #e0c63a;
  --bbq-grad: linear-gradient(90deg, #60a57f, #e0c63a);
  --bbq-grad-diag: linear-gradient(135deg, #60a57f, #e0c63a);
  --bbq-grad-rev: linear-gradient(90deg, #e0c63a, #60a57f);
  --bbq-green-light: #e9f2ec;
  --bbq-yellow-light: #fdf9e3;

  padding-bottom: 80px;

  @media (max-width: 767.98px) {
    padding-bottom: 60px;
  }
}


.bbq-page .page-title .page-title__text {
  text-align: left;
  max-width: 800px;
  margin: auto;
}
.bbq-page .page-title .page-title__en {
  font-size: clamp(1.25rem, 3vw, 2rem);
  letter-spacing: 0.25em;
  word-break: keep-all;
  background: linear-gradient(135deg, #e0c63a 0%, #3d8c65 100%);
  display: inline;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
  padding: 0.2em 0.5em;
  line-height: 2;
}
.bbq-page .page-title .page-title__title {
  word-break: keep-all;
  font-size: clamp(1.8rem, 7vw, 4rem);
  text-shadow: 0 0 8px rgba(0, 0, 0, 0.9), 0 0 8px rgba(0, 0, 0, 0.9);
  margin-top: 20px;
  line-height: 1.5;
}

/* ヒーロー：H1 */
.bbq-page .editor > h1.wp-block-heading:first-child {
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: bold;
  line-height: 1.4;
  margin-top: 0;
  margin-bottom: 0.5em;
  color: #222;
  padding-bottom: 0.6em;

  &::after {
    content: '';
    display: block;
    width: 4em;
    height: 3px;
    background: var(--bbq-grad);
    border-radius: 2px;
    margin-top: 0.4em;
  }
}

/* ヒーロー直下のリード文p */
.bbq-page .editor > h1.wp-block-heading:first-child + p {
  font-size: 1.05rem;
  color: #555;
  margin-top: 0;
  margin-bottom: 1em;
  font-weight: bold;
}

/* セパレーター */
.bbq-page .editor .wp-block-separator {
  border: none;
  height: 2px;
  background: var(--bbq-grad);
  opacity: 0.3;
  margin-block: 1.8em;
}

/* セクションH2 */
.bbq-page .editor h2.wp-block-heading {
  font-size: clamp(1rem, 2.5vw, 1.35rem);
  font-weight: bold;
  line-height: 1.5;
  margin-block: 2.5em 0.9em;
  padding: 0.75em 1.2em;
  color: #1e3d2a;
  background: linear-gradient(135deg, #e9f2ec 0%, #fdf9e3 100%);
  border-radius: 4px;
  position: relative;
  overflow: hidden;

  &::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--bbq-grad-diag);
    border-radius: 4px 0 0 4px;
  }
}

/* H3 */
.bbq-page .editor h3.wp-block-heading {
  font-size: clamp(0.95rem, 2vw, 1.15rem);
  font-weight: bold;
  margin-block: 1.8em 0.7em;
  color: #fff;
  background: var(--bbq-grad);
  padding: 0.55em 1.2em;
  border-radius: 20px;
  display: inline-block;
}

/* H4 */
.bbq-page .editor h4.wp-block-heading {
  font-size: 1rem;
  font-weight: bold;
  margin-block: 1.5em 0.6em;
  color: var(--bbq-green);
  padding-left: 0.8em;
  border-left: 3px solid var(--bbq-yellow);
}

/* 本文p */
.bbq-page .editor p {
  line-height: 1.85;
}

/* リスト：キャンプ風バレット */
.bbq-page .editor .wp-block-list {
  list-style: none;
  margin-left: 0;
  margin-block: 1.2em;
  background-color: #fafaf7;
  border-radius: 12px;
  padding: 1em 1.4em 1em 1.2em;
  /*border-top: 3px solid transparent;*/
  background-image: linear-gradient(#fafaf7, #fafaf7), var(--bbq-grad);
  background-origin: border-box;
  background-clip: padding-box, border-box;

  & > li {
    position: relative;
    padding-left: 1.6em;
    margin-block: 0.6em;
    line-height: 1.65;

    &::before {
      content: '';
      position: absolute;
      left: 0.2em;
      top: 0.55em;
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--bbq-grad-diag);
    }
  }

  /* ネストリスト */
  & .wp-block-list {
    background: none;
    background-image: none;
    border-top: none;
    padding: 0.3em 0 0.1em 0;
    border-radius: 0;

    & > li::before {
      background: var(--bbq-yellow);
      width: 6px;
      height: 6px;
    }
  }
}

/* CTAボタン：ピル型グラデーション */
.bbq-page .editor .wp-block-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-block: 1.5em;
  align-items: center;
  justify-content: center;
  flex-direction: column;

  & .wp-block-button__link {
    display: inline-block;
    font-size: 14px;
    font-weight: bold;
    line-height: 1;
    letter-spacing: 0.04em;
    padding: 1em 2em;
    background: var(--bbq-grad);
    color: #fff !important;
    text-decoration: none !important;
    border-radius: 50px;
    transition: opacity 0.2s, transform 0.1s;

    &:hover {
      opacity: 0.85;
      transform: translateY(-1px);
    }
  }
}

/* ギャラリー */
.bbq-page .editor .wp-block-gallery {
  margin-block: 1.8em;
  gap: 6px;
  border-radius: 10px;
  overflow: hidden;

  & .wp-block-image {
    margin-block: 0;

    & img {
      aspect-ratio: 4 / 3;
      object-fit: cover;
      width: 100%;
    }

    & .wp-element-caption {
      font-size: 11px;
      /*color: #888;*/
      text-align: center;
      margin-top: 4px;
    }
  }
}

/* 料金ブロック（pタグ内のstrong強調） */
.bbq-page .editor p:has(strong):not(:has(a)) {
  /*background: linear-gradient(135deg, #f0f9f4 0%, var(--bbq-yellow-light) 100%);*/
  /*border-left: 3px solid var(--bbq-yellow);*/
  border-radius: 0 8px 8px 0;
  /*padding: 0.9em 1.2em;*/
  margin-block: 1.5em;
  line-height: 1.8;
}

/* テーブル */
.bbq-page .editor .wp-block-table {
  margin-block: 1.5em;

  & table {
    margin-block: 0;
    border-collapse: collapse;
    width: 100%;
  }

  & td {
    padding: 0.75em 1em;
    border-bottom: 1px solid #e2e2e2;
    vertical-align: middle;
    line-height: 1.6;

    &:first-child {
      white-space: nowrap;
      font-weight: bold;
      color: var(--bbq-green);
      font-size: 0.95rem;
      width: 5.5em;
    }
  }

  & tr:first-child td {
    border-top: 2px solid var(--bbq-green);
  }

  & tr:last-child td {
    border-bottom: 2px solid var(--bbq-green);
  }

  & tr:nth-child(even) td {
    background-color: #f7fbf8;
  }
}

/* FAQグループ */
.bbq-page .editor .wp-block-group {
  background-color: #fff;
  border: 1px solid #d6e8dc;
  /*border-top: 3px solid transparent;*/
  background-image: linear-gradient(#fff, #fff), var(--bbq-grad);
  background-origin: border-box;
  background-clip: padding-box, border-box;
  border-radius: 8px;
  padding: 1.2em 1.5em;
  margin-block: 1em;

  & p {
    margin-block: 0.6em;

    &:first-child {
      color: #1e3d2a;
      font-weight: bold;
      padding-bottom: 0.5em;
      border-bottom: 1px solid #e4f0e8;
      margin-bottom: 0.8em;
    }

    &:not(:first-child) {
      color: #444;
      font-size: 0.95em;
    }
  }
}

/* hrセパレーター後の文章 */
.bbq-page .editor .wp-block-separator + p {
  margin-top: 1.5em;
}

/* テキストリンク */
.bbq-page .editor a:not(.wp-block-button__link) {
  color: var(--bbq-green);
  font-weight: bold;
  text-decoration: underline;
  text-underline-offset: 2px;
  text-decoration-thickness: 1px;
}

/* ===== .lead：リード文 ===== */
.bbq-page .editor .lead {
  font-size: clamp(1.05rem, 2.2vw, 1.3rem);
  /*font-weight: bold;*/
  border-left: 3px solid var(--bbq-yellow);
  line-height: 2.5;
  color: #1e3d2a;
  /*padding: 1.5em 2em;*/
  /*background: linear-gradient(135deg, var(--bbq-green-light) 0%, var(--bbq-yellow-light) 100%);*/
  /*border-radius: 12px;*/
  /*margin-block: 2em;*/
  position: relative;
  /*box-shadow: 0 4px 24px rgba(96, 165, 127, 0.18);*/
  padding: 0.9em 0 .9em .8em;

  /*&::before {*/
  /*  content: '';*/
  /*  position: absolute;*/
  /*  top: 0;*/
  /*  left: 0;*/
  /*  right: 0;*/
  /*  height: 4px;*/
  /*  background: var(--bbq-grad);*/
  /*  border-radius: 12px 12px 0 0;*/
  /*}*/
}

/* ===== .showFull：全体表示画像 ===== */
.bbq-page .editor .showFull img {
  aspect-ratio: auto !important;
  object-fit: contain !important;
  width: 100%;
  height: auto;
}

/* ===== .mainButton：メインCTAボタン ===== */
.bbq-page .editor .mainButton .wp-block-button__link,
.bbq-page .editor .wp-block-button.mainButton .wp-block-button__link {
  font-size: clamp(1.1rem, 2.5vw, 1.35rem) !important;
  font-weight: bold;
  padding: 1.1em 3em !important;
  background: var(--bbq-grad) !important;
  color: #fff !important;
  border-radius: 50px;
  box-shadow: 0 6px 24px rgba(96, 165, 127, 0.45), 0 2px 8px rgba(224, 198, 58, 0.3);
  letter-spacing: 0.1em;
  text-decoration: none !important;
  transition: transform 0.2s, box-shadow 0.2s, filter 0.2s;
  border: none !important;

  &:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 12px 32px rgba(96, 165, 127, 0.55), 0 4px 12px rgba(224, 198, 58, 0.4);
    filter: brightness(1.07);
  }
}

/* ===== .subButton：サブボタン ===== */
.bbq-page .editor .subButton .wp-block-button__link,
.bbq-page .editor .wp-block-button.subButton .wp-block-button__link {
  font-size: 1rem !important;
  font-weight: bold;
  padding: 0.9em 2.2em !important;
  background: transparent !important;
  color: var(--bbq-green) !important;
  border: 2px solid var(--bbq-green) !important;
  border-radius: 50px;
  text-decoration: none !important;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  letter-spacing: 0.05em;

  &:hover {
    background: var(--bbq-grad) !important;
    color: #fff !important;
    border-color: transparent !important;
  }
}

/* ===== .goOtherDetail：他ページへのリンクボタン ===== */
.bbq-page .editor .goOtherDetail .wp-block-button__link,
.bbq-page .editor .wp-block-button.goOtherDetail .wp-block-button__link {
  font-size: 0.9rem !important;
  font-weight: bold;
  padding: 0.5em 0 !important;
  background: transparent !important;
  color: var(--bbq-green) !important;
  border: none !important;
  box-shadow: none !important;
  text-decoration: underline !important;
  text-underline-offset: 3px;
  letter-spacing: 0.03em;
  transition: color 0.2s;

  &::after {
    content: ' →';
    display: inline-block;
    transition: transform 0.2s;
  }

  &:hover {
    color: #3d8c65 !important;

    &::after {
      transform: translateX(4px);
    }
  }
}

/* ===== .checkList：チェックボックス風リスト ===== */
.bbq-page .editor .checkList {
  list-style: none !important;
  margin-left: 0;
  margin-block: 1.5em;
  padding: 0 !important;

  & > li {
    position: relative;
    padding-left: 2.2em !important;
    margin-block: 0.75em;
    line-height: 1.7;

    &::before {
      content: '' !important;
      position: absolute;
      left: 0;
      top: 0.2em;
      width: 1.25em;
      height: 1.25em;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Crect x='1.5' y='1.5' width='17' height='17' rx='3' ry='3' fill='none' stroke='%2360a57f' stroke-width='2'/%3E%3Cpolyline points='4.5,10.5 8.5,14.5 15.5,5.5' fill='none' stroke='%23e0c63a' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
      background-size: contain;
      background-repeat: no-repeat;
      border: none !important;
      transform: none !important;
      border-radius: 0 !important;
      background-color: transparent !important;
    }
  }
}

/* ===== .checks：チェックリスト ===== */
.bbq-page .editor .checks {
  list-style: none !important;
  margin-left: 0;
  /*background: linear-gradient(135deg, var(--bbq-green-light) 0%, var(--bbq-yellow-light) 100%);*/
  border-radius: 12px;
  padding: 1.4em 1.8em !important;
  margin-block: 1.8em;
  /*box-shadow: 0 4px 16px rgba(96, 165, 127, 0.12);*/

  & > li {
    position: relative;
    padding-left: 2.2em !important;
    margin-block: 0.9em;
    line-height: 1.7;
    font-weight: bold;

    &::before {
      content: '' !important;
      position: absolute;
      left: 0.3em;
      top: 0.38em;
      width: 16px;
      height: 10px;
      border-left: 3px solid var(--bbq-green) !important;
      border-bottom: 3px solid var(--bbq-green) !important;
      transform: rotate(-45deg) !important;
      border-radius: 0 !important;
      background: transparent !important;
    }
  }
}

/* ===== .point：ポイント・まとめボックス ===== */
.bbq-page .editor .point {
  background: #fff;
  border-radius: 14px;
  padding: 2.2em 2.5em 2em;
  margin-block: 3em;
  position: relative;
  box-shadow: 0 8px 32px rgba(96, 165, 127, 0.15), 0 2px 8px rgba(224, 198, 58, 0.15);
  overflow: hidden;

  &::before {
    content: 'POINT';
    position: absolute;
    top: -13px;
    left: 24px;
    background: var(--bbq-grad);
    color: #fff;
    font-size: 11px;
    font-weight: bold;
    letter-spacing: 0.18em;
    padding: 4px 14px;
    border-radius: 20px;
    box-shadow: 0 2px 8px rgba(96, 165, 127, 0.3);
  }

  &::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--bbq-grad);
    border-radius: 14px 14px 0 0;
  }

  & > *:first-child {
    margin-top: 0;
  }

  & > *:last-child {
    margin-bottom: 0;
  }
}

@media (max-width: 767.98px) {
  .bbq-page .editor > h1.wp-block-heading:first-child {
    font-size: 1.5rem;
  }

  .bbq-page .editor h2.wp-block-heading {
    font-size: 1.05rem;
  }

  .bbq-page .editor .wp-block-buttons {
    flex-direction: column;

    & .wp-block-button__link {
      text-align: center;
    }
  }

  .bbq-page .editor .wp-block-table td:first-child {
    width: 5em;
    font-size: 0.85rem;
  }
}

.wp-block-group.faq p {
    text-indent: -1em;
    padding-left: 1em !important;
}