/* ============================================================
   Variables
   ============================================================ */
:root {
  --color-primary:       #DD7A7A;
  --color-primary-light: #f2dada;
  --color-primary-pale:  #fff7e9;
  --color-bg:            #fff;
  --color-section-bg:    #fdf5ee;
  --color-text:          #333;
  --color-text-light:    #666;
  --color-border:        #deb8b8;
  --color-check-bg:      #c87878;
  --font:                'Noto Sans JP', sans-serif;
  --radius:              8px;
  --max-width:           750px;
}

/* ============================================================
   Reset / Base
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  overflow-x: hidden;
}

.page-wrap section {
  margin-bottom: 40px;
}

.page-wrap ul,
.page-wrap ol {
  list-style: none;
  padding: 15px 30px 30px;
  margin: 0;
}

body {
  font-family: var(--font);
  font-size: 15px;
  line-height: 1.8;
  color: var(--color-text);
  background: var(--color-bg);
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: #DD7A7A; text-decoration: none; }
strong { font-weight: 700; }
p + p { margin-top: 1em; }

/* ============================================================
   Layout
   ============================================================ */
.page-wrap {
  max-width: var(--max-width);
  margin: 0 auto;
  background: var(--color-bg);
  overflow-x: hidden;
}

/* 全幅ブレンド（グレー帯など）はみ出しを許可（html/body で横スクロール抑制） */
.page-wrap.tameni-page {
  overflow-x: visible;
}

/* ============================================================
   Hero
   ============================================================ */
.hero {
  text-align: center;
  padding: 28px 20px 0;
}

.hero__label {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.hero__title {
  font-size: clamp(20px, 5vw, 26px);
  font-weight: 700;
  line-height: 1.6;
  margin-top: 6px;
}

.hero__pr {
  text-align: right;
  font-size: 12px;
  color: var(--color-text-light);
  margin: 14px 0 12px;
}

.hero__image img {
  width: 100%;
}

/* ============================================================
   Intro
   ============================================================ */
.intro {
  padding: 0px 24px;
  font-size: 15px;
  line-height: 2;
  letter-spacing: 0.03em;
}

/* ============================================================
   Section Bar（"contents" / "ranking" 帯）
   ============================================================ */
.section-bar {
  background: var(--color-primary);
  color: #fff;
  text-align: center;
  padding: 10px 0;
  font-size: 13px;
  letter-spacing: 0.15em;
}

/* ============================================================
   TOC（目次）
   ============================================================ */
.toc {
  border: none !important;
  margin-bottom: 0 !important;
}

.toc__inner {
  background: var(--color-primary-pale);
  padding: 28px 24px 32px;
}

.toc__heading {
  color: var(--color-primary);
  font-size: 18px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 20px;
}

.toc__list {
  list-style: none;
  padding: 0 !important;
  margin: 0;
}

.toc__list li {
  padding: 14px 0 14px 16px;
  border-bottom: 1px dashed var(--color-border);
  font-size: 15px;
  position: relative;
}

.toc__list li::before {
  content: '・';
  position: absolute;
  left: 0;
  color: var(--color-text);
}

.toc__list li:first-child {
  border-top: 1px dashed var(--color-border);
}

/* ============================================================
   Ranking Jump
   ============================================================ */
.ranking-jump__inner {
  background: var(--color-primary-pale);
  padding: 28px 20px 32px;
  text-align: center;
}

.ranking-jump__sub {
  font-size: 14px;
  color: var(--color-text-light);
}

.ranking-jump__main {
  font-size: clamp(20px, 5vw, 24px);
  font-weight: 700;
  line-height: 1.6;
  margin: 10px 0 20px;
}

/* Ranking Jump ボタン */
.ranking-jump__btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background: #fff;
  border: none;
  border-bottom: 1px dashed var(--color-primary);
  border-radius: 0;
  padding: 16px 20px;
  font-size: 16px;
  font-weight: 700;
  color: var(--color-primary);
  text-decoration: none;
  box-sizing: border-box;
}

.ranking-jump__btn--editorial {
  justify-content: center;
  position: relative;
}

.ranking-jump__btn--editorial::after {
  content: "∨";
  font-size: 18px;
  line-height: 1;
  position: absolute;
  right: 20px;
}

/* エリア 3列 */
.ranking-jump__area {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 12px;
}

.ranking-jump__btn--area {
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  text-align: center;
  padding: 16px 8px;
  font-size: 15px;
}

.ranking-jump__btn--area::after {
  content: "∨";
  font-size: 16px;
  line-height: 1;
}

.area-name {
  line-height: 1.5;
}

.area-name small,
.ranking-jump__btn--area small {
  font-size: 11px;
  font-weight: 400;
  color: var(--color-primary);
}

/* ============================================================
   案内人
   ============================================================ */
.guides {
  padding: 40px 24px;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid #d9d9d9;
}

.guides__heading {
  font-size: 20px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 8px;
  padding-bottom: 12px;
  position: relative;
}

.guides__heading::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: var(--color-primary);
  border-radius: 2px;
  margin: 10px auto 0;
}

.guide-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 24px 0;
}

.guide-item--reverse {
  flex-direction: row-reverse;
}

.guide-item__image {
  flex: 0 0 100px;
}

.guide-item__image img {
  width: 100px;
}

.guide-item__body h3 {
  font-size: 15px;
  font-weight: 700;
  padding-bottom: 8px;
  margin-bottom: 8px;
  border-bottom: 1px dashed var(--color-border);
}

.guide-item__body p {
  font-size: 14px;
  line-height: 1.9;
}

/* ============================================================
   Transition Text
   ============================================================ */
.transition-text {
  padding: 0 0 40px;
  text-align: center;
}

.transition-text__sub {
  display: inline;
  background: #fff7e9;
  color: var(--color-primary);
  font-size: 15px;
  line-height: 2;
  padding: 2px 4px;
}

.transition-text__main {
  display: inline;
  background: #fff7e9;
  color: var(--color-primary);
  font-size: 18px;
  font-weight: 700;
  line-height: 2;
  padding: 2px 4px;
}

/* ============================================================
   Section Divider / Header
   ============================================================ */
.section-divider {
  height: 2px;
  background: var(--color-text);
  margin: 0 0px;
}

.article-section__header {
  text-align: center;
  padding: 20px 24px;
}

.article-section__header h2 {
  font-size: clamp(18px, 5vw, 22px);
  font-weight: 700;
  line-height: 1.5;
}

.article-section__sub {
  font-size: 14px;
  color: var(--color-text-light);
  margin-top: 6px;
  margin-bottom: 0;
}

.section-lead {
  padding: 20px 24px;
  font-size: 15px;
  line-height: 1.9;
}

/* ============================================================
   Chat
   ============================================================ */
.chat-wrap {
  padding: 16px 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.chat {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.chat--advisor {
  flex-direction: row-reverse;
}

.chat__avatar {
  flex: 0 0 80px;
  text-align: center;
}

.chat__avatar img {
  width: 80px;
  height: auto;
}

.chat__avatar span {
  display: block;
  font-size: 11px;
  color: var(--color-text-light);
  margin-top: 4px;
  line-height: 1.4;
}

.chat__bubble {
  background: #f5f5f5;
  border: 1px solid #d9d9d9;
  padding: 10px 12px;
  font-size: 12px;
  line-height: 1.9;
  flex: 1;
  position: relative;
}

.chat__bubble p {
  margin: 0;
}


/* ============================================================
   Cost Compare
   ============================================================ */
.cost-compare {
  padding: 0 20px 24px;
}

.cost-compare__eyecatch {
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 12px;
}

.cost-compare__box {
  background: var(--color-primary-pale);
  border-radius: var(--radius);
  padding: 24px 20px 20px;
}

.cost-compare__title {
  font-size: 16px;
  font-weight: 700;
  text-align: center;
  line-height: 1.6;
  margin-bottom: 24px;
  color: var(--color-primary);
}

.cost-compare__chart {
  display: flex;
  align-items: flex-end;
  gap: 16px;
  margin-bottom: 12px;
}

.cost-compare__col {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.cost-compare__col--right {
  position: relative;
}

.cost-compare__bar {
  width: 100%;
  border-radius: 4px 4px 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cost-compare__bar--general {
  height: 200px;
  background-image: repeating-linear-gradient(
    -45deg,
    #bbb 0px, #bbb 1px,
    #d0d0d0 1px, #d0d0d0 9px
  );
}

.cost-compare__bar--produce {
  height: 108px;
  background-image: repeating-linear-gradient(
    -45deg,
    #bbb 0px, #bbb 1px,
    #d0d0d0 1px, #d0d0d0 9px
  );
}

.cost-compare__amount {
  font-size: clamp(22px, 6vw, 32px);
  font-weight: 700;
  color: #888;
  text-shadow: 0 1px 2px rgba(255,255,255,0.8);
}

.cost-compare__amount small {
  font-size: 0.55em;
}

.cost-compare__down-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 12px;
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1.4;
  margin-bottom: 6px;
}

.cost-compare__arrow {
  font-size: 28px;
  color: var(--color-primary);
  line-height: 1;
}

.cost-compare__label {
  font-size: 12px;
  text-align: center;
  border-top: 1px solid #aaa;
  padding-top: 6px;
  width: 100%;
}

.cost-compare__note {
  font-size: 11px;
  color: var(--color-text-light);
  margin-top: 12px;
  line-height: 1.6;
}

/* ============================================================
   Reason Box
   ============================================================ */
.reason-box {
  margin: 8px 20px 16px;
  background: var(--color-primary);
  border-radius: var(--radius);
  padding: 20px;
  color: #fff;
}

.reason-box__heading {
  font-size: 16px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 20px;
}

.reason-box__chart {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
}

.reason-box__col {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.reason-box__bars {
  width: 100%;
  border-radius: 4px;
  overflow: hidden;
}

.reason-box__bars--general {
  border: 2px solid rgba(255,255,255,0.5);
}

.reason-box__bars--produce {
  border: 2px dashed rgba(255,255,255,0.8);
}

.reason-box__bar-top,
.reason-box__bar-bottom,
.reason-box__bar-only {
  padding: 14px 8px;
  text-align: center;
  font-size: 13px;
  font-weight: 700;
  background-image: repeating-linear-gradient(
    -45deg,
    rgba(255,255,255,0.1) 0px, rgba(255,255,255,0.1) 1px,
    rgba(255,255,255,0.25) 1px, rgba(255,255,255,0.25) 9px
  );
}

.reason-box__bar-plus {
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  padding: 4px 0;
}

.reason-box__bar-only {
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.reason-box__label {
  font-size: 11px;
  text-align: center;
  padding-top: 4px;
  border-top: 1px solid rgba(255,255,255,0.5);
  width: 100%;
}

.reason-box__arrow-col {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.reason-box__arrow {
  font-size: 28px;
  color: var(--color-primary-light);
  line-height: 1;
}

.reason-box__arrow-note {
  font-size: 11px;
  color: var(--color-primary-light);
  text-align: center;
  line-height: 1.5;
}

.reason-box p {
  font-size: 14px;
  line-height: 1.9;
  color: #fff;
}

/* ============================================================
   Reason Section（格安結婚式が実現できる理由）
   ============================================================ */
.heading-filled {
  background: var(--color-primary);
  color: #fff;
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  padding: 14px 20px;
  margin-bottom: 0;
}

.reason-section {
  margin: 8px 0 24px;
}

.cost-compare img {
  display: block;
  /* width: calc(100% - 40px); */
  margin: 16px 0 0;
}

.reason-section__img {
  display: block;
  /* width: calc(100% - 40px); */
  margin: 40px auto;
}

.reason-section__text {
  padding: 0 20px;
  font-size: 15px;
  line-height: 1.9;
}

/* ============================================================
   Point Cards（5つのポイント）
   ============================================================ */
.point-card {
  margin: 0 20px 16px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  background: #fff;
}

.point-card p {
  padding: 20px 20px 0px;
}

.point-card__num {
  font-size: 13px;
  color: var(--color-primary);
  text-align: center;
  letter-spacing: 0.1em;
  margin-bottom: 4px;
}

.point-card__title {
  font-size: 16px;
  font-weight: 700;
  color: var(--color-primary);
  text-align: center;
  margin-bottom: 32px;
}

.point-card__check-img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  transform: translateY(-50%);
  padding: 0 15%;
}
@media (min-width: 600px) {
  .point-card__check-img { padding: 0 25%; }
}

.point-card__check {
  background: var(--color-primary-pale);
  border-radius: 6px;
  padding: 32px 20px 20px;
  position: relative;
  overflow: visible;
}

.point-card__check-label {
  background: var(--color-check-bg);
  color: #fff;
  text-align: center;
  font-size: 13px;
  font-weight: 700;
  padding: 6px 0;
  border-radius: 4px;
  margin-bottom: 12px;
}

.point-card__check ul {
  list-style: none;
  font-size: 14px;
  padding: 0 !important;
}

.point-card__check ul li {
  padding: 4px 0 4px 20px;
  position: relative;
}

.point-card__check ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-weight: 700;
}

.point-card__check-sub {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 8px;
}

.point-card__check-items {
  font-size: 12px;
  line-height: 1.8;
  color: var(--color-text);
}

.point-card__check p {
  padding: 0;
  margin-top: 0;
}

.point-card > p {
  font-size: 14px;
  line-height: 1.9;
}

/* ============================================================
   Ranking Intro（徹底比較 人気TOP4）
   ============================================================ */
.ranking-intro {
  padding: 24px 20px 36px;
}

.ranking-intro p {
  font-size: 15px;
  line-height: 1.9;
  margin-bottom: 24px;
}

.btn-primary {
  display: block;
  background: var(--color-primary);
  color: #fff;
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  padding: 10px 20px;
  border-radius: 50px;
  text-decoration: none;
  transition: opacity 0.2s;
}

.btn-primary:hover {
  opacity: 0.85;
  color: #fff;
}

/* ============================================================
   Rank Card（個別会社セクション）
   ============================================================ */

.rank-card {
  border: none !important;
}

/* ヘッダー：王冠＋社名＋星 */
.rank-card__header {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 16px 20px;
  border-bottom: 2px solid var(--color-primary);
}

.rank-card__crown {
  width: 52px;
  height: auto;
  flex-shrink: 0;
}

.rank-card__name {
  font-size: 20px;
  font-weight: 700;
  color: var(--color-primary);
  margin: 0;
  line-height: 1.2;
}

.rank-card__stars {
  font-size: 20px;
  color: var(--color-primary);
  letter-spacing: 2px;
  margin: 0 0 0 8px;
  line-height: 1.2;
}

/* ヒーロー画像 */
.rank-card__image {
  margin-bottom: 4px;
}

.rank-card__image img {
  width: 100%;
  display: block;
  padding: 20px 20px 0;
}

/* 説明テキスト */
.rank-card__desc {
  padding: 20px 20px 0px;
  font-size: 15px;
  line-height: 2;
}

/* セクション見出し（ボーダーボックス） */
.rank-section-heading {
  border: 1px solid var(--color-primary);
  color: var(--color-primary);
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  padding: 12px 16px;
  margin: 24px 20px 16px;
  border-radius: 4px;
}

/* 3大特徴リスト */
.page-wrap .rank-features {
  list-style: none;
  padding: 0 20px;
  margin-bottom: 36px;
  counter-reset: rank-feature;
}

.page-wrap .rank-features li {
  display: flex;
  gap: 12px;
  padding: 16px 0;
  border-bottom: 1px dashed var(--color-border);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.9;
  counter-increment: rank-feature;
}

.page-wrap .rank-features li:last-child {
  border-bottom: none;
}

.page-wrap .rank-features li::before {
  content: counter(rank-feature) ".";
  color: var(--color-primary);
  font-weight: 700;
  font-size: 15px;
  flex-shrink: 0;
  padding-top: 1px;
}

/* 料金プラン */
.rank-pricing {
  padding: 0 20px;
  margin-bottom: 36px;
}

.rank-pricing__note {
  text-align: right;
  font-size: 11px;
  color: var(--color-text-light);
  margin-bottom: 6px;
}

.rank-pricing__single {
  font-size: 14px;
  text-align: center;
  padding: 8px 0 0px;
}

.rank-pricing__item {
  display: block;
  padding: 14px 0;
  border-bottom: 1px dashed var(--color-border);
}

.rank-pricing__item:last-child {
  border-bottom: none;
}

.rank-pricing__item dt {
  font-size: 14px;
  line-height: 1.7;
}

.rank-pricing__item dd {
  font-size: 16px;
  font-weight: 700;
  text-align: right;
}

/* 対応エリア */
.rank-area {
  padding: 0 20px 0px;
  text-align: center;
}

.rank-area__exclusive {
  font-size: 14px;
  font-weight: 400;
  color: var(--color-primary);
  margin-bottom: 4px;
}

.rank-area__asterisk {
  font-size: 11px;
  vertical-align: super;
}

.rank-area__sub {
  font-size: 13px;
  color: var(--color-text-light);
  margin-bottom: 6px;
  line-height: 1.7;
}

.rank-area__count {
  font-size: 15px;
  font-weight: 700;
  margin-top: 0;
  margin-bottom: 10px;
}

.rank-area__count strong {
  font-size: 22px;
}

.rank-area__box {
  background: var(--color-primary-pale);
  border: 1px solid #d9d9d9;
  padding: 14px 16px;
  font-size: 15px;
  font-weight: 700;
  line-height: 2;
}

.rank-area__box p {
  margin: 0;
}

/* 実績 */
.rank-achievement {
  padding: 8px 20px 0px;
  text-align: center;
}

.rank-achievement__label {
  font-size: 14px;
}

.rank-achievement__num {
  margin-top: 0;
}

.rank-achievement__num {
  font-size: clamp(24px, 6vw, 30px);
  font-weight: 700;
}

/* 運営会社 */
.rank-company {
  padding: 8px 20px 0px;
  font-size: 15px;
  line-height: 1.9;
  text-align: center;
}

/* CTAボタン（青） */
.rank-cta {
  padding: 8px 20px 40px;
}

.btn-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  background: #689BD4;
  color: #fff;
  text-decoration: none;
  border-radius: 50px;
  padding: 15px 24px;
  font-weight: 700;
  transition: opacity 0.2s;
}

.btn-cta:hover {
  opacity: 0.85;
  color: #fff;
}

.btn-cta__text {
  font-size: 17px;
  line-height: 1.5;
  text-align: center;
}

.btn-cta__sub {
  font-size: 15px;
  font-weight: 400;
}

.btn-cta__arrow {
  font-size: 24px;
  flex-shrink: 0;
  line-height: 1;
}

/* ============================================================
   比較表（tameni-table.php）
   ============================================================ */
.cmp-table-wrap {
  padding: 0 0 16px;
}

.cmp-scroll-hint {
  text-align: center;
  font-size: 12px;
  color: var(--color-text-light);
  padding: 6px 0 10px;
}

.cmp-table-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.cmp-table-scroll::-webkit-scrollbar { height: 4px; }
.cmp-table-scroll::-webkit-scrollbar-track { background: #eee; }
.cmp-table-scroll::-webkit-scrollbar-thumb { background: var(--color-primary); border-radius: 2px; }

.cmp-table {
  border-collapse: collapse;
  table-layout: fixed;
  font-size: 13px;
  min-width: 700px;
}

/* ヘッダーセル（sticky blank + 4 company） */
.cmp-th {
  background: #fff;
  text-align: center;
  padding: 16px 10px 14px;
  border: 1px solid #d8cfc8;
  width: 155px;
  vertical-align: top;
}

/* 左端sticky th（ヘッダー空欄） */
.cmp-th--sticky {
  position: sticky;
  left: 0;
  z-index: 3;
  background: #fff;
  width: 80px;
  min-width: 80px;
  border-right: 2px solid #d8cfc8;
}

/* ランク王冠画像 */
.cmp-rank-img {
  width: 56px;
  height: auto;
  display: block;
  margin: 0 auto 8px;
}

/* サービス（会社）画像 */
.cmp-service-img {
  width: 130px;
  height: 86px;
  overflow: hidden;
  margin: 0 auto 8px;
  border-radius: 4px;
  background: #e8e8e8;
}

.cmp-service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* 会社名 */
.cmp-company-name {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 0 !important;
}

/* データセル */
.cmp-td {
  padding: 12px 10px;
  border: 1px solid #d8cfc8;
  background: #fff;
  text-align: center;
  vertical-align: top;
  width: 155px;
}

/* 行ラベルセル（sticky左列） */
.cmp-label {
  position: sticky;
  left: 0;
  z-index: 1;
  background: #f5f5f5;
  width: 80px;
  min-width: 80px;
  padding: 12px 8px;
  font-size: 10px;
  font-weight: 700;
  text-align: center;
  vertical-align: middle;
  border: 1px solid #d8cfc8;
  border-right: 2px solid #d8cfc8;
  line-height: 1.5;
}

/* 交互行のラベル */
.cmp-label--alt {
  background: #ebebeb;
}

/* ラベル内補足テキスト */
.cmp-label-note {
  display: block;
  font-size: 10px;
  font-weight: 400;
  color: var(--color-text-light);
  margin-top: 4px;
  line-height: 1.5;
}

/* 交互行の背景 */
.cmp-row--alt .cmp-td {
  background: #f6f6f6;
}

/* 評価記号画像 */
.cmp-eval-img {
  display: block;
  width: 44px;
  height: auto;
  margin: 0 auto 8px;
}

/* セル内テキスト */
.cmp-cell-main {
  font-size: 13px;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 4px;
}

.cmp-cell-highlight {
  color: #cc0000;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 4px;
}

.cmp-cell-text {
  font-size: 11px;
  color: var(--color-text-light);
  line-height: 1.8;
  text-align: left;
}
.cmp-cell-text--left {
  text-align: left !important;
}

/* 星 */
.cmp-stars {
  font-size: 16px;
  color: var(--color-primary);
  letter-spacing: 1px;
  margin-bottom: 4px;
}

.cmp-star-empty {
  color: #ccc;
}

/* 脚注 */
.cmp-table-note {
  font-size: 11px;
  color: var(--color-text-light);
  padding: 8px 16px 0;
  line-height: 1.8;
}

/* ============================================================
   エリア別おすすめ情報
   ============================================================ */

.area-section__rule {
  border: none;
  border-top: 1px solid var(--color-border);
  margin: 0 20px;
}

.area-section__heading {
  font-size: clamp(18px, 5vw, 22px);
  font-weight: 700;
  text-align: center;
  line-height: 1.6;
  padding: 24px 20px;
}

.area-section__lead {
  padding: 28px 20px 28px;
  font-size: 15px;
  line-height: 1.9;
}

/* エリアブロック */
.area-block {
  margin-bottom: 36px;
}

.area-block__heading {
  background: var(--color-primary);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  text-align: center;
  padding: 14px 20px;
  margin: 0 0 20px;
}

.area-block__cost {
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 6px;
}

.area-block__cost sup {
  font-size: 11px;
  font-weight: 400;
}

.area-block__note {
  text-align: center;
  font-size: 11px;
  color: var(--color-text-light);
  margin-bottom: 10px;
}

/* サブ見出し（おすすめ会社・人気エリア・ポイント共通） */
.area-sub-heading {
  background: var(--color-primary-pale);
  color: var(--color-primary);
  border: 1px solid var(--color-primary);
  font-size: 15px;
  font-weight: 700;
  text-align: center;
  padding: 8px 20px;
  border-radius: 50px;
  margin: 0 20px 16px;
}

/* ランキングリスト（3カラム） */
.area-ranking-wrap {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: start;
  padding: 0 20px;
  margin: 0 0 20px;
  gap: 12px;
}

.page-wrap .area-ranking {
  list-style: none;
  padding: 0;
  margin: 0;
}

.area-ranking__item {
  font-size: 15px;
  font-weight: 700;
  padding: 6px 0;
}

.area-ranking__item--first {
  font-size: 17px;
}

.area-ranking-badge {
  padding-top: 4px;
}

/* バッジ画像（実績で選ぶなら◎） */
.area-badge-img {
  height: 30px;
  width: auto;
  display: block;
}

/* 人気エリアリスト */
.page-wrap .area-popular {
  list-style: none;
  padding: 0 20px;
  margin: 0 0 20px;
  font-size: 14px;
  line-height: 2.2;
}

/* ポイント見出し → area-sub-heading と同スタイルのためclass変更で対応 */

/* ポイントテキスト */
.area-point-text {
  padding: 0 20px;
  font-size: 14px;
  line-height: 1.9;
}

/* ============================================================
   メリット・デメリット
   ============================================================ */
.merit-section__lead {
  padding: 24px 20px 8px;
  font-size: 15px;
  line-height: 1.9;
}

.merit-heading {
  color: var(--color-primary);
  font-size: 18px;
  font-weight: 700;
  text-align: center;
  padding: 0px 0 12px;
}

.demerit-heading {
  color: var(--color-primary);
  font-size: 18px;
  font-weight: 700;
  text-align: center;
  padding: 40px 0 12px;
}

.merit-heading__rule {
  border: none;
  border-top: 3px dashed var(--color-primary);
  margin: 0 20px 0;
  opacity: 0.7;
}

.merit-group {
  padding: 20px 20px;
}

.merit-group--alt {
  background: #fff7e9;
}

.merit-group__label {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 8px;
}

.page-wrap .merit-group__list {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
  line-height: 1.9;
}

.page-wrap .merit-group__list li {
  padding-left: 12px;
  position: relative;
}

.page-wrap .merit-group__list li::before {
  content: '・';
  position: absolute;
  left: 0;
}

.merit-group__solution {
  color: var(--color-primary);
  font-weight: 700;
}

/* ============================================================
   まとめ
   ============================================================ */
.summary-section {
  padding: 0 20px 48px;
}

/* ─── まとめ ─── 見出し */
.summary-section__heading {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 20px;
  font-weight: 700;
  text-align: center;
  padding: 28px 0 24px;
}

.summary-section__heading::before,
.summary-section__heading::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--color-text);
}

.summary-section__lead {
  font-size: 15px;
  line-height: 1.9;
  margin-bottom: 24px;
}

/* 本記事のポイント振り返り ボタン風 */
.summary-section__btn {
  background: var(--color-primary);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  text-align: center;
  padding: 16px 20px;
  margin-bottom: 24px;
}

/* まとめボックス */
.summary-box {
  background-size: 100% 100%;
  background-repeat: no-repeat;
  margin-top: 40px;
  margin-bottom: 24px;
  padding: 24px 20px 10px;
  position: relative;
}

.summary-box__heading {
  position: absolute;
  top: 0;
  left: 16px;
  right: 16px;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  font-size: 15px;
  font-weight: 700;
  text-align: center;
  background: #fff;
  padding: 0 8px;
}


.page-wrap .summary-box__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.page-wrap .summary-box__list li:first-child {
  border-top: none;
}

.page-wrap .summary-box__list li {
  text-align: center;
  font-size: 14px;
  padding: 10px 0;
  border-top: 1px dashed var(--color-border);
}

/* ーーーーーーーーーーーーーーーーーーここから調整用の追記ーーーーーーーーーーーーーーーーーー */

@media screen and (max-width: 834px) {
    main.main, div.sidebar
 {
        padding: 0!important;
    }
 .hero {
  padding:0!important;
 } 
 .hero__pr {
  padding-right:28px!important;
}
 .intro {
    padding: 0px 30px!important;
 }
 .section-bar {
  padding:0!important;
 }
 .ranking-jump__inner {
    padding: 28px 30px 32px!important;
}
 .toc__inner {
    padding: 28px 30px 32px!important;
}
 
 .guides {
    padding: 40px 30px!important;
}
 .page-wrap section {
    padding: 0 0px;
}
 
 .article-section__header {
    padding: 20px 0px!important;
}
 
 #section-what {
  padding:0 20px!important;
 }
 #section-points {
  padding:0 20px!important;
 }
 
 #section-ranking .section-divider {
    margin:0px 20px!important;
}
 
 .area-section {
 padding: 0 20px!important;
}
 
 .merit-section .section-divider {
    margin:0px 20px!important;
}
 
 .summary-section {
  padding:0 20px!important;
 }
}

.guides__heading {
 color:#DD7A7A;
;
}
.guides__heading::after {
    content: '' !important;
    display: block !important;
    width: 180px !important;
    height: 10px !important;        
    margin: 8px auto 0 !important;
    border: 0 !important;
    background: none !important;
    box-shadow: none !important;

    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 6'%3E%3Cpath d='M0 3 Q3 0 6 3 T12 3 T18 3 T24 3' fill='none' stroke='%23DD7A7A' stroke-width='1' stroke-linecap='round'/%3E%3C/svg%3E") !important;
    background-repeat: repeat-x !important;
    background-size: 40px 10px!important;
    background-position: center !important;
}

.guide-item__body h3 {
    border-bottom: 1px dashed #444!important;
}

.toc__list li:first-child {
    border-top: 0px dashed var(--color-border)!important;
}

.toc__list li::before {
    color: #Dd7a7a!important;
}

.guide-item__body h3 {
    line-height: 1.6;
}

.chat-wrap {
    padding: 30px 10px!important;
}

.cost-compare {
   padding: 0!important;
}

.cost-compare img {
    width: 100%!important;
}

.reason-section__img {
    padding: 0 20px;
}

.reason-section__text {
    padding: 0 10px!important;
}

.section-divider {
    height: 3px!important;
}

.section-lead {
    padding: 20px 10px!important;
}

/* .point-card > p {
    font-weight: 700!important;
} */

.point-card {
    margin:0 10px 20px!important;
 padding:10px 0;
}

.point-card__check ul li::before {
    color: #444!important;
}

.ranking-intro {
    padding: 24px 30px 36px!important;
}

#section-ranking .section-divider {
    margin:0px 20px!important;
}

.rank-card__header {
    border-bottom: 3px double var(--color-primary)!important;
}

.rank-card__image img {
    padding: 20px 0px 0!important;
}

p {
letter-spacing:12%!important;
}


.rank-card__desc {
    padding: 20px 30px 0px!important;
}

.rank-section-heading {
    border: 1px solid var(--color-primary);
    margin: 24px 30px 16px!important;
}

.page-wrap .rank-features {
    padding: 0 30px!important;
}

.page-wrap .rank-features li::before {
    color: #444!important;
}

.rank-pricing {
    padding: 0 30px!important;
}

.rank-area {
    padding: 0 30px 0px!important;
}

#rank-1 .chat-wrap {
    padding: 30px 30px!important;
}

#rank-4 .chat-wrap {
    padding: 30px 30px!important;
}

#rank-1 .rank-cta {
    padding: 8px 30px 40px!important;
}

.area-section {
 padding: 0 20px!important;
}

.area-section__lead {
    padding: 28px 10px 28px!important;
}

.area-sub-heading {
    margin: 0 10px 16px!important;
}

.page-wrap .area-popular {
    padding: 0 10px!important;
}

.area-point-text {
    padding: 0 10px!important;
}

.merit-section__lead {
    padding: 24px 30px 8px!important;
}

.merit-heading__rule {
    margin: 0 30px 0!important;
}

.merit-group {
    padding: 20px 50px 20px 50px!important;
}

.page-wrap .merit-group__list li::before {
    content: ""!important;
    position: absolute;
    left: 0px;
}

.merit-section .chat-wrap {
    padding: 30px 30px!important;
}

.summary-section__heading::before, .summary-section__heading::after {
    height: 3px!important;
}

.summary-section__lead {
 padding: 0 10px!important;
}

.summary-section__btn {
 margin: 0 10px 24px!important;
}

.summary-box {
 margin: 40px 10px 24px!important;
}


#section-ranking .summary-section__btn {
    margin: 0 30px 24px !important;
}

.cmp-label {
 background:#fff!important;
}

.cmp-row--alt:nth-child(2n) .cmp-label {
 background:#f6f6f6!important;
}

/* 本体（デフォルト共通） */
.chat__bubble {
  background: #f5f5f5;
  border: 1px solid #d9d9d9 !important;
  padding: 10px 12px;
  font-size: 12px;
  line-height: 1.9;
  flex: 1;
  position: relative;
}

/* デフォルト（右しっぽ）塗り */
.chat__bubble::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -12px;
  transform: translateY(-50%);

  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 12px solid #f5f5f5;
  border-right: 0;
}

/* デフォルト（右しっぽ）アウトライン */
.chat__bubble::before {
  content: "";
  position: absolute;
  top: 50%;
  right: -14px;
  transform: translateY(-50%);

  width: 0;
  height: 0;
  border-top: 11px solid transparent;
  border-bottom: 11px solid transparent;
  border-left: 13px solid #d9d9d9;
  border-right: 0;
}

/* アバターが左（user / advisor 共通）→ しっぽも左 */
.chat--user .chat__bubble::after,
.chat--advisor .chat__bubble::after {
  right: auto;
  left: -12px;

  border-left: 0;
  border-right: 12px solid #f5f5f5;
}

.chat--user .chat__bubble::before,
.chat--advisor .chat__bubble::before {
  right: auto;
  left: -14px;

  border-left: 0;
  border-right: 13px solid #d9d9d9;
  border-top: 11px solid transparent;
  border-bottom: 11px solid transparent;
}

/* しっぽを右側に戻す（個別指定用） */
.chat--tail-right .chat__bubble::after {
  left: auto;
  right: -12px;
  border-right: 0;
  border-left: 12px solid #f5f5f5;
}

.chat--tail-right .chat__bubble::before {
  left: auto;
  right: -14px;
  border-right: 0;
  border-left: 13px solid #d9d9d9;
}

/* ============================================================
   選ばれる理由（スマ婚）
   ============================================================ */
.tameni-reason {
  border: none !important;
  text-align: center;
  padding-bottom: 40px;
}

.tameni-reason__rank-badge {
  display: block;
  color: #444444;
  font-size: 14px;
  font-weight: 700;
  padding: 3px 16px;
  letter-spacing: 0.1em;
  margin: 24px 0 0;
}

.tameni-reason__rank-badge::before {
  content: "＼";
  margin-right: 4px;
}

.tameni-reason__rank-badge::after {
  content: "／";
  margin-left: 4px;
}

.tameni-reason__sub {
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  background: var(--color-primary);
  border-radius: 50px;
  padding: 4px 29px;
  margin-top: 0;
  margin-bottom: 10px;
}

.tameni-reason__heading {
  font-size: clamp(18px, 5vw, 22px);
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 20px;
  padding: 0 20px;
}

.tameni-reason__image img {
  width: 100%;
  display: block;
}

.tameni-reason__features {
  list-style: none;
  padding: 16px 20px 0;
  margin: 0 0 20px;
  text-align: left;
  counter-reset: reason-feature;
}

.tameni-reason__features li {
  display: flex;
  align-items: center;
  gap: 0px;
  padding: 14px 16px;
  border: none;
  background: var(--color-primary-pale);
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.8;
  counter-increment: reason-feature;
  margin-bottom: 10px;
}

.tameni-reason__features li::before {
  content: counter(reason-feature) ".";
  color: #555;
  font-weight: 700;
  font-size: 14px;
  flex-shrink: 0;
  min-width: 20px;
  align-self: flex-start;
}

.tameni-reason__text {
  text-align: left;
  font-size: 14px;
  line-height: 1.9;
  padding: 0 30px 0px;
}

.tameni-reason__bar {
  background: transparent !important;
  color: #689BD4;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 20px 0 6px !important;
  margin-bottom: 0;
}

.tameni-reason__bar::before {
  content: "＼";
  margin-right: 4px;
}

.tameni-reason__bar::after {
  content: "／";
  margin-left: 4px;
}

.tameni-reason__closing {
  text-align: center;
  font-size: 16px;
  line-height: 1.6;
  padding: 10px 20px 8px;
  color: var(--color-primary);
  font-weight: 700;
}

/* ============================================================
   Experience Page（体験談ページ）
   ============================================================ */


/* --- Hero --- */
.exp-hero {
  text-align: center;
}

.exp-hero__title {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 1.2px;
  color: #444;
  padding: 20px 30px 0;
}

.exp-hero__image {
  margin-top: 32px;
}

.exp-hero__image img {
  width: 100%;
}

/* --- Intro --- */
.exp-intro {
  padding: 24px 0 0;
  font-size: 14px;
  line-height: 1.6;
  letter-spacing: 1.2px;
  color: #444;
}

.exp-intro p {
  padding-left: 30px;
  padding-right: 30px;
}

/* --- Profile Card --- */
.exp-profile {
  text-align: center;
  padding: 30px 30px;
}

.exp-profile__heading {
  font-size: 22px;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 8px;
}

.exp-profile__wave {
  max-width: 220px;
  margin: 0 auto 20px;
}

.exp-profile__wave svg {
  width: 100%;
  height: auto;
}

.exp-profile__card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  text-align: left;
  padding: 20px 0 0;
}

.exp-profile__photo {
  flex: 0 0 140px;
}

.exp-profile__photo img {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  object-fit: cover;
}

.exp-profile__info {
  font-size: 15px;
  line-height: 1.8;
  padding-top: 8px;
}

.exp-profile__info p {
  margin: 0;
}

.exp-profile__info p + p {
  margin-top: 2px;
}

.exp-profile__info small {
  font-size: 13px;
  color: var(--color-text-light);
}

.exp-profile__name {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 12px;
  font-weight: 700;
  font-style: normal;
  line-height: 100%;
  letter-spacing: 1.2px;
  text-align: center;
  margin-top: 8px;
  padding-left: 0;
}

/* --- CTA --- */
.exp-cta {
  text-align: center;
  padding: 40px 30px !important;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

.exp-cta__label {
  font-size: 15px;
  font-weight: 700;
  color: #689BD4;
  margin-bottom: 10px;
}

/* --- Section（体験セクション） --- */
.exp-section {
  padding: 0 20px !important;
  margin: 0 !important;
}

.exp-section--reflection {
  padding: 0 20px 40px !important;
}

.exp-section__title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  margin-top: 40px;
}

.exp-section__title h2 {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 1.2px;
  color: #444;
  text-align: center;
  margin: 0;
}

.exp-section__line {
  width: 100%;
  height: 3px;
  background: #444;
}

.exp-section__body {
  padding: 0 10px;
  margin-top: 24px;
  font-size: 14px;
  line-height: 1.6;
  letter-spacing: 1.2px;
  color: #444;
}

/* 結婚式は大成功！：セクション左右 24px ＋本文ブロック左右マージン 10px */
.exp-section--success-pad {
  padding-left: 24px !important;
  padding-right: 24px !important;
}

.exp-section--success-pad .exp-section__body {
  margin-left: 10px;
  margin-right: 10px;
  padding-left: 0;
  padding-right: 0;
}

.exp-section__body .exp-day-intro {
  color: var(--color-primary);
  font-weight: 700;
}

.exp-section__body .exp-strong-black {
  font-weight: 700;
  color: #000;
}

.exp-section__body .exp-text-primary {
  color: var(--color-primary);
  font-weight: 700;
}

.exp-section__image {
  margin: 16px 0;
  text-align: center;
}

.exp-section__image img {
  width: 100%;
  padding: 0 0;
}

/* 画面幅いっぱい画像（親のpaddingを打ち消す） */
.exp-full-image {
  margin-left: -30px;
  margin-right: -30px;
}

.exp-full-image img {
  width: 100%;
}

.exp-section__sub-heading {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 16px;
  font-weight: 700;
  font-style: normal;
  line-height: 1.6;
  letter-spacing: 1.2px;
  text-align: center;
  color: #444;
  margin: 30px 0 16px;
}

.exp-section__sub-heading + .exp-section__image {
  padding-left: 40px;
  padding-right: 40px;
  box-sizing: border-box;
}

.exp-closing-copy {
  text-align: justify;
  margin: 20px 0 8px;
}

.exp-closing-copy__lead,
.exp-closing-copy__quotes,
.exp-closing-copy__outro {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 14px;
  line-height: 1.6;
  letter-spacing: 1.2px;
  color: #444;
  margin: 0 0 1em;
}

.exp-closing-copy__quotes {
  font-weight: 400;
}

.exp-closing-copy__outro {
  font-weight: 400;
  margin-bottom: 0;
}

.exp-closing-copy__outro strong {
  font-weight: 700;
  color: #444;
}

/* --- fieldset風ボックス（スマ婚が向いてる人と揃える前のシンプルな枠＋legend） --- */
.exp-fieldset {
  border: 1px solid var(--color-primary);
  padding: 4px 16px 12px;
  margin: 24px 0 40px;
  border-radius: 0;
  background: #fff;
  box-sizing: border-box;
  min-width: 0;
}

.exp-fieldset__legend {
  max-width: 60%;
  padding: 0 12px;
  margin: 0;
  box-sizing: border-box;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 1.2px;
  text-align: center;
  color: var(--color-primary);
}

.exp-fieldset__content {
  min-width: 0;
  padding: 0;
}

.exp-fieldset__list {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

.exp-fieldset__list li {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 1.2px;
  text-align: center;
  padding: 10px 0;
  border-bottom: 1px dotted var(--color-primary);
  color: #444;
}

.exp-fieldset__list li:last-child {
  border-bottom: none;
}

/* fieldset内アイテム（タイトル+説明） */
.exp-fieldset__item {
  padding: 10px 0;
  font-size: 14px;
  line-height: 1.6;
  letter-spacing: 1.2px;
  color: #444;
}

.exp-fieldset__item + .exp-fieldset__item {
  padding-top: 20px;
  border-top: 1px dotted var(--color-primary);
}

.exp-fieldset__check {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 8px;
  text-align: center;
  line-height: 1.5;
}

.exp-fieldset__check-inner {
  display: inline-flex;
  align-items: baseline;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.2em;
  max-width: 100%;
  padding: 0.15em 0.5em 0.35em;
  box-sizing: border-box;
  font-family: 'Noto Sans JP', sans-serif;
  letter-spacing: 1.2px;
  background: linear-gradient(
    to bottom,
    transparent 0 45%,
    #fff9e5 45% 100%
  );
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

.exp-fieldset__check-mark {
  flex-shrink: 0;
  color: #333;
}

.exp-fieldset__check-text {
  color: var(--color-primary);
  text-align: left;
}

/* 青枠バリエーション */
.exp-fieldset--blue {
  border-color: #4b87cd;
}

.exp-fieldset--blue .exp-fieldset__legend {
  color: #4b87cd;
}

.exp-fieldset--blue .exp-fieldset__list li {
  border-bottom-color: #4b87cd;
}

.exp-fieldset--blue .exp-fieldset__item + .exp-fieldset__item {
  border-top-color: #4b87cd;
}

.exp-fieldset--blue .exp-fieldset__check-inner {
  background: linear-gradient(
    to bottom,
    transparent 0 45%,
    #f5f5f5 45% 100%
  );
}

.exp-fieldset--blue .exp-fieldset__check-text {
  color: #4b87cd;
}

/* --- 気になったポイントBox --- */
.exp-concern-box {
  background: #fff;
  border: 1px solid #4B87CD;
  border-radius: var(--radius);
  padding: 20px;
  margin: 24px 0;
}

.exp-concern-box__title {
  font-size: 15px;
  font-weight: 700;
  color: #4B87CD;
  text-align: center;
  margin-bottom: 16px;
}

.exp-concern-box__item + .exp-concern-box__item {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px dashed #aac8e8;
}

.exp-concern-box__check {
  font-size: 14px;
  font-weight: 700;
  color: #4B87CD;
  margin-bottom: 8px;
}

/* --- 後悔しないための対策 --- */
.exp-advice {
  background: #FFF7E9;
  margin: 24px -30px 0;
  padding: 0 30px 24px;
  font-size: 14px;
  line-height: 1.6;
  letter-spacing: 1.2px;
  color: #444;
}

.exp-advice__arrow {
  width: 130px;
  margin: 0 auto;
  transform: translateY(-50%);
}

.exp-advice__arrow img {
  width: 100%;
  height: auto;
  display: block;
}

.exp-advice__title {
  background: #fff;
  border-radius: 50px;
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  color: #444;
  padding: 12px 20px;
  margin-bottom: 16px;
}

.exp-advice__list-box {
  border: 1px solid var(--color-primary);
  padding: 4px 16px;
  margin-top: 12px;
  background-color: #fff;
}

.exp-advice__list {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
  text-align: center;
}

.exp-advice__list li {
  font-size: 14px;
  font-weight: 700;
  color: var(--color-primary);
  padding: 10px 0;
  border-bottom: 1px dashed var(--color-border);
}

.exp-advice__list li:last-child {
  border-bottom: none;
}

/* --- ハイライトBox（ピンク系） --- */
.exp-highlight-box {
  background: var(--color-primary);
  border-radius: var(--radius);
  padding: 76px 20px 20px;
  margin: 24px 0;
  text-align: center;
  position: relative;
}

.exp-highlight-box__title {
  display: inline-block;
  font-size: 16px;
  font-weight: 700;
  color: var(--color-primary);
  background: #FFF7E9;
  padding: 6px 16px;
  position: absolute;
  top: 12px;
  left: -30px;
  margin: 12px 0;
}

.exp-highlight-box__main {
  font-size: 16px;
  font-weight: 700;
  color: #FFF7E9;
  line-height: 1.6;
  margin-bottom: 8px;
  margin-top: 0px;
}

.exp-highlight-box p:last-child {
  color: #fff;
  font-size: 13px;
  text-align: left;
}

/* --- よかった4つの理由 --- */
.exp-merit {
  margin-top: 40px;
}

.exp-merit__header {
  background: var(--color-primary);
  color: #fff;
  text-align: center;
  padding: 14px 20px;
  font-size: 16px;
  font-weight: 700;
}

.exp-merit__header p {
  margin: 0;
}

.exp-merit__lead {
  font-size: 14px;
  line-height: 1.6;
  letter-spacing: 1.2px;
  color: #444;
  padding: 24px 10px 0;
}

.exp-merit__item {
  margin-top: 24px;
  font-size: 14px;
  line-height: 1.6;
  letter-spacing: 1.2px;
  color: #444;
}

.exp-merit__item > p,
.exp-merit__item > h4 {
  padding-left: 10px;
  padding-right: 10px;
}

.exp-merit__item-title {
  border: 1px solid var(--color-primary);
  border-radius: var(--radius);
  padding: 20px 55px;
  text-align: center;
  margin: 14px 10px;
}

.exp-merit__num {
  font-size: 16px;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 4px;
}

.exp-merit__heading {
  font-size: 16px;
  font-weight: 700;
  color: var(--color-primary);
  margin: 0;
}

.exp-merit__sub {
  font-size: 14px;
  font-weight: 700;
  color: var(--color-primary);
  margin: 16px 0 8px;
}

/* --- なぜ安いBox --- */
.exp-why-box {
  margin: 40px -30px 0;
  position: relative;
}

.exp-why-box__label {
  text-align: center;
  font-size: 15px;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: -16px;
}

.exp-why-box__title {
  background: var(--color-primary);
  color: #fff;
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  padding: 12px 20px;
  border-radius: 50px;
  margin: 0 30px;
  position: relative;
  z-index: 1;
  transform: translateY(50%);
}

.exp-why-box__bg {
  background: #FFF7E9;
  padding: 50px 30px 24px;
  font-size: 14px;
  line-height: 1.6;
  letter-spacing: 1.2px;
  color: #444;
}

.exp-why-box__bg > p {
  padding-left: 10px;
  padding-right: 10px;
}

.exp-why-box__bg p:last-child {
  margin-bottom: 0;
}

/* --- 会場比較 --- */
.exp-venue-compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 16px 0;
}

.exp-venue-compare__label {
  background: #4B87CD;
  color: #fff;
  text-align: center;
  font-size: 13px;
  font-weight: 700;
  padding: 4px 0;
  margin-bottom: 8px;
}

.exp-venue-compare__item {
  text-align: center;
  font-size: 13px;
  line-height: 1.6;
}

.exp-venue-compare__item .exp-section__image {
  margin: 0 0 8px;
}

/* --- 打ち合わせ --- */
.exp-meeting {
  margin: 24px 0;
}

.exp-meeting__header {
  background: var(--color-primary);
  color: #fff;
  text-align: center;
  padding: 20px 16px;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 12px;
}

.exp-meeting strong {
  color: var(--color-primary);
}

.exp-meeting__sub {
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1.4;
  margin-bottom: 16px;
}

.exp-image-note {
  font-size: 8px;
  color: var(--color-text-light);
  text-align: right;
  margin: 4px 0 12px;
}

/* 司会者打ち合わせヘッダー（角丸なし・要素間は基本 20px） */
.exp-meeting--rounded-header .exp-meeting__header {
  border-radius: 0;
  margin-bottom: 20px;
}

.exp-meeting--rounded-header .exp-meeting__sub {
  margin-bottom: 20px;
}

.exp-meeting--rounded-header .exp-section__image {
  margin: 0 0 4px;
}

.exp-meeting--rounded-header .exp-image-note {
  margin: 0 0 20px;
}

.exp-meeting--rounded-header > p:not(.exp-image-note):not(.exp-body-typo) {
  text-align: center;
}

/* 本文タイポグラフィ（Noto Sans JP / 14px / 160% / 1.2px / 両端揃え） */
.exp-body-typo {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 14px;
  line-height: 1.6;
  letter-spacing: 1.2px;
  text-align: justify;
}

.exp-body-typo strong {
  font-weight: 700;
  color: #444;
}

/* ムービーブロック締め（全文強調・同じタイポ） */
.exp-body-typo--closing {
  margin-top: 0.75em;
}

/* プランナー見出し〜良かったポイント（グレーはピル中央から） */
.exp-planner-split {
  margin: 24px 0 0;
}

.exp-planner-split__pill-row {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 20px;
}

.exp-planner-split__pill-row .exp-planner-flow__pill {
  margin-bottom: 0;
}

/* ピル高さの約半分だけ上に重ね、背景境界をピル中央に合わせる */
/* グレー背景は画面幅いっぱい（記事カラムからはみ出す） */
.exp-prep-block--overlap {
  background: #f5f5f5;
  margin-top: -23px;
  padding: 39px 30px 32px;
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  box-sizing: border-box;
}

/* PC・タブレット：ピル〜グレー帯ごと最大 480px（背景色も同じ幅） */
@media (min-width: 768px) {
  .exp-planner-split {
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
  }

  .exp-prep-block--overlap {
    width: 100%;
    max-width: 100%;
    margin-left: 0;
    padding-left: 20px;
    padding-right: 20px;
  }
}

/* プランナーさんとのやりとり（ピル見出し） */
.exp-planner-flow {
  margin: 28px 0 8px;
}

.exp-prep-block--overlap .exp-planner-flow {
  margin-top: 0;
}

.exp-planner-flow__pill {
  display: block;
  max-width: 100%;
  margin: 0 auto 16px;
  padding: 12px 20px;
  text-align: center;
  font-size: 15px;
  font-weight: 700;
  color: var(--color-primary);
  background: var(--color-primary-pale);
  border: 1px solid var(--color-primary);
  border-radius: 999px;
  line-height: 1.4;
}

.exp-planner-flow__lead {
  font-size: 15px;
  font-weight: 700;
  color: #444;
  text-align: center !important;
  line-height: 1.6;
  margin: 0 0 20px;
}

.exp-story-block {
  margin: 20px 0;
}

.exp-story-block .exp-section__image {
  margin-top: 0;
}

/* 良かったポイント（チェック＋コーラル／点線区切り） */
.exp-fieldset--prep-points {
  margin-top: 28px;
}

.exp-prep-block--overlap .exp-fieldset--prep-points {
  margin-top: 24px;
  background: #fff;
}

.tameni-page ul.exp-fieldset__point-list {
  list-style: none !important;
  padding: 4px 0 0 !important;
  margin: 0 !important;
}

.exp-fieldset__point-list > li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 0;
  border-bottom: 1px dotted var(--color-border);
  text-align: left;
}

.exp-fieldset__point-list > li:last-child {
  border-bottom: none;
}

.exp-fieldset__point-mark {
  flex-shrink: 0;
  align-self: center;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 14px;
  font-weight: 700;
  font-style: normal;
  line-height: 1.6;
  letter-spacing: 1.2px;
  color: #444;
  vertical-align: middle;
}

.exp-fieldset__point-text {
  flex: 1;
  align-self: center;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 14px;
  font-weight: 700;
  font-style: normal;
  line-height: 1.4;
  letter-spacing: 1.2px;
  color: var(--color-primary);
  vertical-align: middle;
}

.exp-mypage-box {
  background: var(--color-primary-pale);
  border: 1px solid var(--color-primary);
  padding: 16px;
  margin: 16px 0;
  font-size: 14px;
  color: var(--color-primary);
}

.exp-mypage-box strong {
  color: var(--color-primary);
}

.exp-mypage-box p {
  margin: 0;
}

.exp-confirm-box {
  background: #FFF7E9;
  margin: 16px -30px;
  padding: 24px 30px;
  text-align: center;
}

.exp-confirm-box__title {
  font-size: 15px;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 12px;
}

.exp-confirm-box__grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 4px;
}

.exp-confirm-box__grid span {
  border: 1px solid var(--color-primary);
  border-radius: var(--radius);
  padding: 10px 4px;
  font-size: 12px;
  font-weight: 700;
  color: var(--color-primary);
  background: #fff;
}

.exp-warning {
  font-size: 13px;
  color: var(--color-text-light);
  line-height: 1.8;
  margin: 16px 0;
}

.exp-checklist {
  margin: 16px 0;
}

.exp-checklist p {
  font-size: 14px;
  color: #4B87CD;
  font-weight: 700;
  margin: 4px 0;
}

/* --- 費用テーブル（カンプ準拠） --- */
.exp-cost-header {
  background: #dd7a7a;
  color: #fff;
  text-align: center;
  padding: 16px 20px;
  margin: 16px 0;
  border-radius: 0;
}

.exp-cost-header p + p {
  margin-top: 0;
}

.exp-cost-header__title {
  margin: 0 0 6px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.4;
}

.exp-cost-header__sub {
  margin: 0;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.4;
  opacity: 0.98;
}

.exp-cost-margin-x {
  margin-left: 10px;
  margin-right: 10px;
}

.exp-cost-margin-x--post-band {
  margin-top: 40px;
}

.exp-cost-banded {
  margin-left: -30px;
  margin-right: -30px;
  overflow: hidden;
  box-sizing: border-box;
}

/* 本文（exp-cost-intro / list-band の padding と同じ 40px 相当）に揃える */
.exp-cost-banded > .exp-cost-margin-x {
  margin-left: 40px;
  margin-right: 40px;
}

.exp-cost-table-wrap {
  position: relative;
  z-index: 0;
}

.exp-cost-banded .exp-cost-table-wrap::before {
  content: '';
  position: absolute;
  left: -40px;
  right: -40px;
  top: calc(100% - 60px);
  height: 4000px;
  background: #f8f8f8;
  z-index: -1;
  pointer-events: none;
}

.exp-cost-list-band {
  box-sizing: border-box;
  margin-top: 0;
  margin-left: 0;
  margin-right: 0;
  padding: 24px 40px 28px;
  background: #f8f8f8;
  position: relative;
  z-index: 0;
}

.exp-cost-list-band .exp-cost-sub:first-child {
  margin-top: 0;
}

.exp-cost-intro {
  margin: 12px 0 14px;
  font-size: 14px;
  line-height: 1.6;
  color: #333;
  text-align: left;
}

/* 費用内訳カード（幅100% / padding 30 40 / radius 6 / #FFF7E9 / shadow） */
.exp-cost-table {
  box-sizing: border-box;
  width: 100%;
  margin: 16px 0;
  padding: 30px 40px;
  position: relative;
  z-index: 1;
  background: #fff7e9;
  border: none;
  border-radius: 6px;
  box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.2);
}

.exp-cost-table table {
  width: 100%;
  border-collapse: collapse;
  border: none;
}

.exp-cost-table td {
  border: none;
}

.exp-cost-table tr:not(.exp-cost-table__total) .exp-cost-table__cell {
  border-bottom: 1px dotted #444444;
}

.exp-cost-table tr.exp-cost-table__row--service td.exp-cost-table__cell {
  border-bottom: 2px solid #444444;
}

.exp-cost-table__cell {
  padding: 10px 0;
  vertical-align: middle;
  text-align: left;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 14px;
  font-weight: 400;
  font-style: normal;
  line-height: 1.4;
  letter-spacing: 1.2px;
  color: #222;
  background-color: #fff7e9;
}

.exp-cost-table__label {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 14px;
  font-weight: 700;
  font-style: normal;
  line-height: 1.4;
  letter-spacing: 1.2px;
  color: #444;
  vertical-align: middle;
}

.exp-cost-table__row--regular .exp-cost-table__cell {
  font-weight: 400;
}

.exp-cost-table__sub {
  display: block;
  margin-top: 6px;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 12px;
  font-weight: 700;
  font-style: normal;
  line-height: 1.4;
  letter-spacing: 1.2px;
  color: #444444;
  vertical-align: middle;
}

.exp-cost-table__total .exp-cost-table__cell--total {
  padding: 16px 0 0;
  border: none !important;
  text-align: right;
  font-weight: 400;
  color: #444;
  background: #fff7e9;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: baseline;
  gap: 0.35em 0.5em;
  font-family: 'Noto Sans JP', sans-serif;
}

.exp-cost-table__total-label {
  font-size: 12px;
  font-weight: 700;
  font-style: normal;
  line-height: 1.4;
  letter-spacing: 1.2px;
  text-align: right;
  color: #444;
}

.exp-cost-table__amount {
  font-size: 20px;
  font-weight: 700;
  font-style: normal;
  line-height: 1;
  letter-spacing: 1.2px;
  text-align: right;
  color: #444;
}

.exp-cost-table__suffix {
  font-size: 12px;
  font-weight: 700;
  font-style: normal;
  line-height: 1.4;
  letter-spacing: 1.2px;
  text-align: right;
  color: #444;
}

.exp-cost-sub {
  box-sizing: border-box;
  display: block;
  width: fit-content;
  max-width: 100%;
  margin: 28px auto 14px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--color-primary);
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 14px;
  font-weight: 700;
  font-style: normal;
  line-height: 1.4;
  letter-spacing: 1.2px;
  color: var(--color-primary);
  text-align: center;
}

.exp-cost-body {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 14px;
  font-weight: 400;
  font-style: normal;
  line-height: 1.6;
  letter-spacing: 1.2px;
  color: #444;
  text-align: left;
  margin: 0 0 20px;
}

.exp-cost-body strong {
  font-weight: 700;
  color: #444;
}

/* --- 振り返っての感想 --- */
.exp-reflection-good .exp-review-box:first-child {
  margin-top: 0;
}

.exp-reflection-good .exp-section__image {
  margin: 16px 0;
  padding: 0 40px;
  box-sizing: border-box;
}

.exp-reflection-good .exp-section__image img {
  display: block;
  width: 100%;
  margin: 0;
  max-width: 100%;
  box-sizing: border-box;
}

.exp-reflection__p {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 1.2px;
  color: #444;
  text-align: left;
  margin: 0 0 1em;
}

.exp-reflection__p strong {
  font-weight: 700;
  color: #444;
}

.exp-reflection-regret {
  margin-top: 28px;
}

.exp-reflection-regret .exp-review-box:first-child {
  margin-top: 0;
}

.exp-reflection-regret .exp-reflection__p:last-child {
  margin-bottom: 0;
}

/* --- 振り返りBox（本文カラム幅いっぱいのピル） --- */
.exp-review-box {
  box-sizing: border-box;
  width: 100%;
  text-align: center;
  margin: 24px 0 16px;
  background: #fff;
}

.exp-review-box--good {
  min-height: 36px;
  padding: 10px 22px 10px 21px;
  border-radius: 50px;
  border: 1px solid #dd7a7a;
  background: #fff7e9;
  display: flex;
  align-items: center;
  justify-content: center;
}

.exp-review-box__title {
  margin: 0;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 16px;
  font-weight: 700;
  font-style: normal;
  line-height: 1.4;
  letter-spacing: 1.2px;
  text-align: center;
}

.exp-review-box--good .exp-review-box__title {
  color: #dd7a7a;
}

.exp-review-box--regret {
  min-height: 36px;
  padding: 10px 22px 10px 21px;
  border-radius: 50px;
  border: 1px solid #4b87cd;
  background: #f8f8f8;
  display: flex;
  align-items: center;
  justify-content: center;
}

.exp-review-box--regret .exp-review-box__title {
  color: #4b87cd;
}

.exp-honeymoon {
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  color: var(--color-primary);
  margin: 16px 0;
}

/* --- 口コミ検証セクション --- */
.exp-review-section {
  padding: 0 !important;
  margin: 0 !important;
  background: #f8f8f8;
}

.exp-review-section .exp-section__title {
  padding: 32px 20px 0;
  margin-top: 0;
  gap: 0;
}

.exp-review-section .exp-section__title h2 {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 16px;
  font-weight: 700;
  font-style: normal;
  line-height: 1.4;
  letter-spacing: 1.2px;
  text-align: center;
  margin: 0;
  color: #444;
}

.exp-review-section__bar {
  box-sizing: border-box;
  width: auto;
  min-height: 42px;
  margin: 24px 20px 0;
  padding: 10px;
  background: #444444;
  color: #fff;
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.exp-review-section__inner {
  background: transparent;
  padding: 28px 30px 30px;
  font-size: 14px;
  line-height: 1.6;
  letter-spacing: 1.2px;
  color: #444;
}

.exp-review-section__heading {
  margin: 24px 0 16px;
}

.exp-review-section__heading--bad,
.exp-review-section__heading--good {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 16px;
  font-weight: 700;
  font-style: normal;
  line-height: 1.4;
  letter-spacing: 1.2px;
  text-align: center;
}

.exp-review-section__heading--bad {
  color: #4b87cd;
  margin-top: 0;
}

.exp-review-section__heading--good {
  color: var(--color-primary);
  margin-top: 32px;
}

/* --- Q&A --- */
.exp-qa {
  margin-bottom: 24px;
}

.exp-qa__q {
  margin: 0 0 10px;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 14px;
  font-weight: 400;
  font-style: normal;
  line-height: 1.4;
  letter-spacing: 1.2px;
  text-align: justify;
  box-sizing: border-box;
}

.exp-qa__a {
  margin: 0;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 14px;
  font-weight: 700;
  font-style: normal;
  line-height: 1.4;
  letter-spacing: 1.2px;
  text-align: justify;
  color: #444444;
}

.exp-qa--bad .exp-qa__q,
.exp-qa--good .exp-qa__q {
  box-sizing: border-box;
  min-height: 58px;
  display: flex;
  align-items: center;
  padding: 12px 16px;
  border-radius: 8px;
}

.exp-qa--bad .exp-qa__q {
  background: #fff;
  color: #4b87cd;
  border: 1px solid #4b87cd;
  justify-content: flex-start;
}

.exp-qa--good .exp-qa__q {
  background: #fff;
  color: var(--color-primary);
  border: 1px solid var(--color-primary);
  text-align: center;
  justify-content: center;
}

/* --- 結論Box（本文幅は .exp-review-section__inner 内のQ&Aと同じ） --- */
.exp-summary-box {
  background: #f8f8f8;
  border-radius: 8px;
  padding: 24px 0;
  margin: 28px 0 20px;
}

.exp-summary-box__title,
.exp-summary-box__body {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 16px;
  font-weight: 700;
  font-style: normal;
  line-height: 1.4;
  letter-spacing: 1.2px;
  text-align: justify;
  color: var(--color-primary);
}

.exp-summary-box__title {
  margin: 0 0 12px;
  text-align: center;
}

.exp-summary-box__body {
  margin: 0;
}

.exp-review-section__closing {
  margin: 0;
  text-align: left;
  color: #444;
  font-size: 14px;
  line-height: 1.6;
  letter-spacing: 1.2px;
}

/* --- おすすめリスト（枠＋上辺見出し／点線区切り） --- */
.exp-recommend {
  position: relative;
  margin: 36px 0 28px;
  padding: 22px 16px 12px;
  border: 1px solid var(--color-primary);
  border-radius: 0;
  background: #fff;
  box-sizing: border-box;
}

.exp-recommend--bad {
  border-color: #4b87cd;
}

.exp-recommend__title {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translate(-50%, -50%);
  margin: 0;
  padding: 0 16px;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 1.2px;
  text-align: center;
  color: var(--color-primary);
  background: #fff;
}

.exp-recommend__title span {
  display: inline-block;
  white-space: nowrap;
}

.exp-recommend--bad .exp-recommend__title {
  color: #4b87cd;
}

.exp-recommend__list {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

.exp-recommend__list li {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 1.2px;
  padding: 10px 0 10px 28px;
  position: relative;
  border-bottom: 1px dotted var(--color-primary);
}

.exp-recommend__list li:last-child {
  border-bottom: none;
}

.exp-recommend__list--good li {
  color: var(--color-primary);
}

.exp-recommend__list--bad li {
  color: #4b87cd;
  border-bottom-color: #4b87cd;
}

.exp-recommend__list li::before {
  content: '✔';
  position: absolute;
  left: 0;
  top: 12px;
  font-size: 14px;
  color: #222;
}



@media (min-width: 992px) {
  .container {
      max-width: none;
  }
}

.content {
  margin-top: 0;
}

.page-wrap {
max-width:480px!important;
}

#sidebar .widget-title, #sidebar .widgettitle, #sidebar .widget > h3 {
  background-color: #f5f5f5 !important;
}

.widget h2 {
  color: #DD7A7A;
  font-size:14px;
font-weight:700;
}

#sidebar .widget-title, #sidebar .widgettitle, #sidebar .widget > h3 {
  font-size: 14px !important;
  font-weight: 700 !important;
  line-height: 1.2 !important;
  color: #DD7A7A !important;
  background-color: #F5F5F5!important;
}

#sidebar .widget li a, #sidebar .widget a:not(.twitter-timeline) {
  display: block !important;
  margin: 0 !important;
  padding: 18px 36px 18px 16px !important;
  border-bottom: 1px dashed #e6b7be !important;
  color: #333333 !important;
  font-size: 14px !important;
  font-weight: 700 !important;
}

.wp-block-latest-comments {
  font-size:14px;
padding:0 12px;
}

@media screen and (min-width: 1256px) {
  .main {
      width: calc(100% - 380px) !important;
  }
}

@media screen and (min-width: 1256px) {
  .sidebar {
      width: 380px !important;
  }
}

.sidebar {
  padding: 24px 48px;
}

@media screen and (min-width: 1025px) {
  #sidebar {
      border-left: 1px solid #e8e8e8 !important;
      padding-left: 48px !important;
  }
}

#sp-menu-modal .sp-menu-sidebar .widget li, #sp-menu-modal .sp-menu-sidebar .widget p, #sp-menu-modal .sp-menu-sidebar .widget .recentcomments, #sp-menu-modal .sp-menu-sidebar .widget .cat-item, #sp-menu-modal .sp-menu-sidebar .widget .archive-item {
  margin: 0px !important;
  padding: 18px 0px 18px 0 !important;
  border-bottom: 1px dashed #e6b7be !important;
  color: #333333 !important;
  font-size: 16px !important;
  font-weight: 700 !important;
  line-height: 1.5 !important;
  list-style: none !important;
  position: relative !important;
}

.wp-block-latest-comments {
  font-size: 14px;
  padding: 0 24px;
}

#sp-menu-modal .sp-menu-sidebar .widget li, #sp-menu-modal .sp-menu-sidebar .widget p, #sp-menu-modal .sp-menu-sidebar .widget .recentcomments, #sp-menu-modal .sp-menu-sidebar .widget .cat-item, #sp-menu-modal .sp-menu-sidebar .widget .archive-item {
border-bottom: none!important;
}

#sp-menu-modal .sp-menu-sidebar .widget li, #sp-menu-modal .sp-menu-sidebar .widget p, #sp-menu-modal .sp-menu-sidebar .widget .recentcomments, #sp-menu-modal .sp-menu-sidebar .widget .cat-item, #sp-menu-modal .sp-menu-sidebar .widget .archive-item {
  border-bottom: none!important;
  
}


#sp-menu-modal .sp-menu-sidebar .widget li a::after, #sp-menu-modal .sp-menu-sidebar .widget a:not(.twitter-timeline)::after {
  right: 15px !important;
}


#sp-menu-modal .sp-menu-sidebar .widget li a::after, #sp-menu-modal .sp-menu-sidebar .widget a:not(.twitter-timeline)::after {
  right: 15px !important;
}
@media screen and (max-width: 1024px) {
  #sp-menu-modal .sp-menu-search {
border-bottom: 0px solid #f1f1f1 !important;
  }
}


.sp-menu-modal-header {
  padding: 20px 24px 0px;
  border-bottom: 0px solid #e8e1e3;
}


.btn-cta__sub {
  font-size: 15px;
  font-weight: 700!important;
}

.exp-section__image {
  margin: 16px 0px!important;
  text-align: center;
}

p.exp-summary-box__body  {
  letter-spacing:1.2%!important;
}

.exp-recommend__list li {
  padding: 10px 0 10px 20px!important;
}

.exp-qa--good .exp-qa__q {
  text-align: left!important;
}

.exp-reflection-good .exp-section__image {
  padding: 0 20px!important;
}

.exp-honeymoon {
  font-size: 12px!important;
}

.exp-cost-banded > .exp-cost-margin-x {
  margin-left: 35px!important;
  margin-right: 35px!important;
}

.exp-cost-table__label {
  font-family: 'Noto Sans JP', sans-serif;
  line-height: 1.1!important;
}


.exp-meeting p {
  text-align:justify;
}

.exp-fieldset__legend {
  max-width: 70%!important;
}

.exp-section p:not(.exp-planner-flow__lead) {
text-align:justify;

}

.exp-advice__title {
  text-align: center!important;
}

.exp-confirm-box__title, .exp-cost-header__title, .exp-cost-header__sub, .exp-fieldset__check {
text-align: center!important;
}

.exp-profile__heading {
  font-size: 16px!important;
margin-bottom:-4px!important;
}

.exp-profile__card {
  padding: 20px 20px 0!important;
}

.exp-profile__info {
  font-size: 12px!important;
}

.exp-profile__photo img {
  width: 123px!important;
  height: 123px!important;
}

.exp-merit__num {
text-align:center!important;
}

.exp-merit__item-title {
  padding: 20px 0px!important;
}

.exp-why-box__label {
text-align:center!important;
}




.exp-merit__header p {
	text-align:center!important;
}

.exp-why-box__title {
	text-align:center!important;
}

.exp-highlight-box__main {
	text-align:center!important;
}