@charset "UTF-8";
/* ==============================
   Breakpoints & Mixin
   ============================== */
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;700;900&display=swap");
.plx_desc {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}
.plx_desc .plx_title_sub, .plx_desc .plx_title_price {
  width: 100%;
}
.plx_desc .plx_title_sub img, .plx_desc .plx_title_price img {
  width: 100%;
}

.plx_widget > .widget-box {
  max-width: 1000px;
}

.plx_desc > img {
  width: 100%;
}

/* === Noto Sans JP を全体に適用（強め） ===================== */
/* すでに functions.php でGoogle Fontsをenqueueしているなら @import は不要 */
:root {
  --font-base: Noto Sans JP, Noto Sans Japanese, system-ui, -apple-system, Segoe UI, Roboto, Hiragino Kaku Gothic ProN, Hiragino Sans, Yu Gothic UI, Yu Gothic, Meiryo, sans-serif;
}

/* ベースに適用（ここで !important で親を上書き） */
html, body {
  font-family: var(--font-base) !important;
  font-weight: 400;
}

/* すべて継承させる（before/after含む） */
*, *::before, *::after {
  font-family: inherit !important;
}

/* 見出しは極太（900） */
h1, h2, h3, h4, h5, h6,
.page-title, .site-title, .entry-title,
.dp-title, .hd-title, .hd_title {
  font-weight: 900 !important;
  letter-spacing: 0.02em;
}

/* strong / b もきちんと太字。li strong などにも効く */
strong, b {
  font-weight: 700; /* 見出し内の strong は親の 900 が優先される */
  font-family: inherit !important;
}

/* リストや表、本文系の代表要素（親テーマ上書き対策で列挙） */
p, a, li, ul, ol, dl, dt, dd, small, em, i, mark, caption, figcaption,
table, th, td, blockquote, address, label, legend, summary, details,
.nav, .menu-link, .widget, .widget-title,
.wp-block, [class*=wp-block-],
[class*=smf-],
[class*=dp-] {
  font-family: inherit !important;
}

/* フォーム系（ブラウザ既定を強制上書き） */
input, select, textarea, button {
  font-family: inherit !important;
  font-weight: 400;
}

input[type=submit], button[type=submit] {
  font-family: inherit !important;
}

/* プレースホルダも統一 */
::-moz-placeholder {
  font-family: inherit !important;
}
::placeholder {
  font-family: inherit !important;
}

::-webkit-input-placeholder {
  font-family: inherit !important;
}

:-ms-input-placeholder {
  font-family: inherit !important;
}

/* コード要素だけは等幅にしたい場合はここをコメントアウト
code, kbd, pre, samp {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace !important;
}
*/
@media (max-width: 375px) {
  .campaign_section {
    max-width: 80%;
  }
}
.campaign_section .link_area {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  gap: 1rem;
  /* --- Form --- */
  /* --- Instagramボタン --- */
  /* --- 電話ボタン --- */
}
.campaign_section .link_area .bnr_btn, .campaign_section .link_area .tel_bnr, .campaign_section .link_area .insta_bnr, .campaign_section .link_area .form_bnr {
  flex: 1;
  font-size: 14px;
  text-align: center;
  padding: 0.8em 1.5em;
  border: none;
  border-radius: 30px;
  color: #fff;
  text-decoration: none;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
  width: auto;
  margin: 0 auto;
  overflow: hidden;
}
.campaign_section .link_area .bnr_btn::before, .campaign_section .link_area .tel_bnr::before, .campaign_section .link_area .insta_bnr::before, .campaign_section .link_area .form_bnr::before {
  content: "";
  display: inline-block;
  width: 18px;
  height: 18px;
  margin-right: 8px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
@media (max-width: 375px) {
  .campaign_section .link_area .bnr_btn, .campaign_section .link_area .tel_bnr, .campaign_section .link_area .insta_bnr, .campaign_section .link_area .form_bnr {
    width: 100%;
  }
}
.campaign_section .link_area .bnr_btn:hover, .campaign_section .link_area .tel_bnr:hover, .campaign_section .link_area .insta_bnr:hover, .campaign_section .link_area .form_bnr:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
  color: white;
}
.campaign_section .link_area .form_bnr {
  background: orange;
  color: white !important;
}
.campaign_section .link_area .form_bnr::before {
  background-image: url("/wp/wp-content/themes/dp-macchiato-child/img/sns/icon_mail.png");
}
.campaign_section .link_area .form_bnr:hover {
  color: white;
}
.campaign_section .link_area .insta_bnr {
  background: linear-gradient(45deg, #f9ce34, #ee2a7b, #6228d7);
}
.campaign_section .link_area .insta_bnr::before {
  background-image: url("/wp/wp-content/themes/dp-macchiato-child/img/sns/icon_instagram.png");
}
.campaign_section .link_area .insta_bnr:hover {
  background: linear-gradient(45deg, #ffda68, #f05f9d, #7344e2);
}
.campaign_section .link_area .tel_bnr {
  background: red;
}
.campaign_section .link_area .tel_bnr::before {
  background-image: url("/wp/wp-content/themes/dp-macchiato-child/img/sns/icon_phone.png");
}/*# sourceMappingURL=top_bnr.css.map */