/* 共通（全サイト共通の設定） */
/* サイト全体の上下のpadding */
.l-contents__inner {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

/* フッターとbodyの間の隙間を消す */
.l-footer {
  margin-top: -1px !important;
}

/* 共通（各サイトごとに設定） */
/* 全体の背景カラー */
body {
  background-color: #0B0B0B!important;
}

/* パーツ */
/* ボタン */
.btn__color-reverse .smb-btn,
.btn__color-reverse span {
  transition: all 0.3s ease;
}

.btn__color-reverse:hover .smb-btn {
  filter: none;
  background-color: #fff;
}

.btn__color-reverse:hover .smb-btn span {
  color: #0B0B0B!important;
}

/* テキストデコレーション・リンクの下線 */
.text-decoration--none a {
  text-decoration-color: #0693e3;
}

/* ドロワーメニュー */
.c-drawer__menu a {
  color: #222222;
}

/* トップへ戻るボタン */
.c-page-top {
  background-color: gray;
}

/* ヘッダーの背景カラー */
.l-header.l-header--center.l-header--sticky-sm {
  background-color: #FDF8F2;
}

/* ファーストビュー */
.fv__section .smb-section__title span {
  line-height: 1;
}

/* フッターの背景カラー */
.l-footer__footer {
  background-color: #1A1C1F!important;
}

/* ウィジェットのテキストカラー */
.c-widget__title {
  color: #fff;
}

.menu-universal-menu-container a {
  color: #fff;
}

.menu-terms-menu-container a {
  color: #fff;
}

/* コンセプトセクション */
.concept {
  position: relative !important;
}

.concept__bg-image {
  position: absolute;
  top: -5rem;
  left: calc(50% - 50vw);
  z-index: -1;
  /* filter: brightness(0.8); */
}

/* コンセプトのスマホ表示 */
.concept__bg-image--sp {
  /* position: absolute;
  top: 0;
  left: calc(50% - 50vw);
  right: calc(50% - 50vw); */
}

/* トップページのcreativeセクション */
.creative-power {
  border-bottom: 1px solid rgba(184,196,210,.15);
  position: relative;
}

.creative-power__bg-image {
  position: absolute;
  top: 100px;
  right: calc(50% - 50vw);
  z-index: -1;
  filter: brightness(0.8);
}

.creative-power__bg-image--sp {

}

/* worksセクション */
.works__section .c-entry-summary__title,
.works__section .c-entry-summary__content {
  color: #fff;
}



/* メニューセクション */
.menu {
  position: relative !important;
  z-index: 2;
}

/* バナーにホバーしたら画像拡大 */
.menu__banner img {
  transition: all 0.3s ease;
}

.menu__banner:hover img {
  transform: scale(1.2);
}

/* バナー上の文字の囲み */
.menu__banner .smb-items__banner__body-inner {
  border: 1px solid #D4B483;
  /* border: 1px solid #fff; */
  background-color: rgba(0, 0, 0, 0.2);
  padding: 1rem;
}


/* service */
/* バナーのフィルター解除 */
/* バナーの動き出し */
.cg-item .smb-items__banner__figure {
  filter: grayscale(1) brightness(0.6);
  transition: all ease 0.3s;
}

.cg-item:hover .smb-items__banner__figure {
  filter: none;
  scale: 1.2;
}

/* バナーのタイトル */
.cg-item .smb-items__banner__title span {
  transition: all ease 0.3s;
  padding: 0 0.5rem;
}

.cg-item:hover .smb-items__banner__title span {
  background-color: rgba(0, 0, 0, 0.3);
  text-shadow: 1px 1px 5px rgba(0, 0, 0, 1);
}

/* バナーのリード */
.cg-item .smb-items__banner__lede {
  transition: all ease 0.3s;
  padding: 0 0.5rem;
}

.cg-item:hover .smb-items__banner__lede {
  background-color: rgba(0, 0, 0, 0.3);
  text-shadow: 1px 1px 5px rgba(0, 0, 0, 1);
}


/* flow */
/* ===== トークン（黒×シルバー） ===== */
:root {
  --bg-deep: #0B0B0B;
  --bg-card: #151515;
  --text: #FFFFFF;
  --text-sub: #CCCCCC;
  --silver: #B8C4D2;
  /* 青みシルバー（アクセント） */
  --silver-mid: #A8A8A8;
}

/* セクション基本 */
.section--workflow {
  padding-top: min(12vw, 120px);
  padding-bottom: min(12vw, 120px);
}

.section--workflow .wp-block-heading {
  color: var(--text);
  text-align: center;
  letter-spacing: .04em;
  margin: 0 0 12px;
}

.section--workflow p {
  color: var(--text-sub);
  text-align: center;
  max-width: 720px;
  margin: 0 auto 28px;
  line-height: 1.9;
}

/* === Minimal Steps === */
.steps {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  padding: 10px 16px 0;
}

/* PCは薄いベースラインで“流れ”を示す（SPは消す） */
@media (min-width:641px) {
  .steps::before {
    content: "";
    position: absolute;
    left: 32px;
    right: 32px;
    top: 49px;
    /* 丸の中心に合わせる */
    height: 1px;
    background: linear-gradient(90deg, var(--silver-mid), var(--silver));
    opacity: .55;
    pointer-events: none;
  }
}

/* 6列 → タブレット3列 → SP2列 */
.steps__grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(6, 1fr);
}

@media (max-width:1024px) {
  .steps__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width:640px) {
  .steps__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* 各ステップ */
.step {
  text-align: center;
  color: var(--text);
  position: relative;
  padding-top: 20px;
}

/* 丸い番号（浮遊感＋内側に金属光） */
.step__num {
  width: 78px;
  height: 78px;
  margin: 0 auto 10px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 700;
  letter-spacing: .04em;
  background: var(--bg-card);
  color: var(--text);
  border: 2px solid var(--silver);
  box-shadow:
    0 0 16px 4px rgba(184, 196, 210, .18),
    inset 0 0 14px rgba(184, 196, 210, .12);
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease, background .3s ease;
}

/* タイトル（英字のみ・大文字推奨） */
.step__title {
  margin: 0;
  font-weight: 700;
  font-size: clamp(14px, 1.2vw, 18px);
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: .15em;
}

/* ホバー・フォーカス演出（上品なシルバーグラデ） */
@media (hover:hover) and (pointer:fine) {
  .step:hover .step__num {
    transform: translateY(-4px);
    background: linear-gradient(145deg, #1A1D20, #2A2F35);
    border-color: #C0C0C0;
    box-shadow:
      0 0 22px 6px rgba(184, 196, 210, .28),
      inset 0 0 18px rgba(184, 196, 210, .18);
  }
}

/* キーボード操作の可視フォーカス（リンク化した場合に効く） */
.step a:focus-visible .step__num {
  outline: 2px solid #C0C0C0;
  outline-offset: 4px;
}

/* モーション控えめ設定に配慮 */
@media (prefers-reduced-motion: reduce) {
  .step__num {
    transition: none;
  }
}

/* 最終CTA */
.reservation .smb-section__subtitle span {
  position: relative;
  z-index: 2;
  padding-left: 1rem;
  padding-right: 1rem;
}

.reservation__box {
  position: relative;
  z-index: 0;
  top: -4px;
}

/* =========================================================
# フッター
========================================================= */
/*
# 中央寄せ・ボーダー
---------------------------------- */
.l-footer-widget-area__item.c-row__col {
  text-align: center;
  border-left: 1px solid #e3e3e3;
}

@media screen and (max-width: 1023px) {

  .l-footer-widget-area__item.c-row__col {
    text-align: center;
    border-left: none;
  }
}

/*
# 1023以下でロゴ消す・幅70％
---------------------------------- */
@media screen and (max-width: 1023px) {

  .l-footer__body .c-container {
    width: 70%;
  }

  .l-footer__body .c-container .c-site-branding__title {
    display: none;
  }
}

/* コピーライト */
/* コピーライト背景 */
.l-footer--footer-4 .l-footer__footer,
.l-footer--footer-5 .l-footer__footer {
  background-color: #B62D2E;

}

/* コピーライトテキスト */
.l-footer--footer-4 .l-footer__footer,
.l-footer--footer-5 .l-footer__footer .c-copyright {
  color: #fff;
}

/* コピーライトテキスト中央寄せ */
.l-footer__footer .c-row {
  justify-content: center;
}

.c-copyright {
  text-align: center;
}

.single-work .c-entry__title {
  display: none;
}


/* worksページ */
.works-page__section {
  /* border-top: 1px solid rgba(184,196,210,0.15); */
}

.works-page__section .c-entry-summary__title,
.works-page__section .c-entry-summary__content {
  color: #fff;
}

/* flowのページ */
.flow__step-section {
  position: relative;
}

.flow__step-section .smb-section__background-text__text {
  position: absolute;
  left: calc(50vw - 50% + 32%);
  top: 40px;
}

@media screen and (max-width: 781px) {
  .flow__step-section .smb-section__background-text__text {
    left: 20px;
    top: 0;
    font-size: 5rem!important;
  }
}

.flow__step-section--last {
  border-bottom: 1px solid #B8C4D2;
}


/* imformationページ */
.access {
  position: relative;
}

.access__map {
  filter: grayscale(100%);
}

.access__bg-image {
  position: absolute;
  bottom: -10rem;
  right: calc(50% - 50vw);
  z-index: 0;
  opacity: 1;
}

/* contactページ */
.page-id-320 .l-header {
  background-color: #0B0B0B;
  display: none;
}

.page-id-320 .smf-button-control__control {
  /* border-radius: 0; */
  letter-spacing: 0.1em;
  min-width: 240px;
  border: 1px solid transparent;
  background-color: #0B0B0B;
  background-image: none;
  color: white;
  transition: all 0.3s ease;
}

.page-id-320 .smf-button-control__control:hover {
  border: 1px solid #0B0B0B;
  background-color: #fff;
  color: #0B0B0B;
}