/*
Theme Name: mituba01
Template: understrap
Description: みつばテンプレート
Author: MitubaStudio
Author URI: http:mituba-studio.net
Version: 1.0.0
*/
@charset "utf-8";

:root {
  --paper: #f7f8f7;
  --paper-deep: #faf7f2;
  --ink: #333333;
  --ink-soft: #666666;
  --web: #4b7e48;
  --web-deep: #4b7e48;
  --web-soft: #7CB342;
  --dtp: #EE8C2B;
  --dtp-deep: #C96F18;
  --water: #2BA9D1;
  --white: #FFFFFF;
  --line: #DEDACD;

  --font-display: "Shippori Mincho", "Noto Serif JP", serif;
  --font-body: "Noto Sans JP", "Hiragino Sans", sans-serif;
  --font-en: "Noto Sans JP", "Hiragino Sans", sans-serif;

  --font-small: 14.5px;
  --font-normal: 16px;
  --font-big: 18px;

  --shadow-paper: 0 2px 4px rgba(79,77,73,0.06), 0 12px 28px rgba(79,77,73,0.08);
  --shadow-lift: 0 18px 40px rgba(79,77,73,0.14);

  /* Bootstrap variable overrides */
  --bs-body-font-family: var(--font-body);
  --bs-body-color: var(--ink);
  --bs-body-bg: var(--paper);
  --bs-link-color: var(--web-deep);
  --bs-link-hover-color: var(--web-deep);
  --bs-primary: #5DAA57;
  --bs-primary-rgb: 124,179,66;
}

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.85;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 600; }
a { text-decoration: none; }

p { margin-bottom: 0.5rem; }

/* subtle paper texture */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.5;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(79,77,73,0.015) 0, transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(79,77,73,0.015) 0, transparent 40%);
}
.container, .container-fluid { position: relative; }

.rounded {
  border-radius: 20px !important;
}

/* ============================================
   Entry
   ============================================ */
.wrapper {
  padding-bottom: 100px;
  min-height: 43vh;
}
.radius-box, .radius-box-mini  {
  background: var(--white); border: none; border-radius: 20px; overflow: hidden;
  box-shadow: var(--shadow-paper); transition: transform 0.3s ease; height: 100%; padding: 5vw;
}
.radius-box-mini { padding: 8vw 2vw; }
@media (min-width: 992px) {
  .radius-box-mini { padding: 4vw 2vw; }
}

.entry-meta { margin-bottom: 15px; }
.entry-meta .date { font-family: var(--font-en); font-size: var(--font-small); color: var(--ink-soft); flex-shrink: 0; margin-right: 20px; }

h2.entry-title {
  margin-bottom: 50px;
  padding-bottom: 7px;
  border-bottom: 1px solid var(--line);
}


.scope { display: inline-block; min-width: 140px;}

/* ============================================
   search
   ============================================ */
.form-control.search-field {
  border-radius: 100px;
}


/* ============================================
   Header / Navbar
   ============================================ */
.navbar {
  position: fixed;
  z-index: 999999;
  background: rgba(255,255,255,0.92) !important;
/*  backdrop-filter: blur(8px); */
  border-bottom: 1px solid var(--line);
  padding-top: 0.7rem;
  padding-bottom: 0.7rem;
  width: 100vw;
}

.navbar .navbar-brand img { height: 30px; width: auto; }
.navbar .nav-link {
  font-size: var(--font-small);
  letter-spacing: 0.04em;
  color: var(--ink) !important;
  position: relative;
  margin: 10px 18px;
  padding: 4px 0 !important;
  text-align: center;
}

.navbar .nav-link::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -4px;
  height: 2px;
  background: var(--web);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}
.navbar .nav-link:hover::after,
.navbar .nav-link.active::after { transform: scaleX(1); }
.navbar .nav-link.active { color: var(--web-soft) !important; }
.navbar .btn-contact-nav {
  background: var(--web);
  color: var(--white) !important;
  padding: 10px 22px;
  border-radius: 100px;
  font-size: var(--font-small);
  margin-left: 6px;
}
.navbar .btn-contact-nav:hover { background: var(--web-deep); }
.navbar .navbar-toggler { border: none; box-shadow: none !important; }
@media (min-width: 768px) {
  .navbar { position: relative; }

  ul.navbar-nav li:nth-child(1),
  ul.navbar-nav li:nth-child(4),
  ul.navbar-nav li:nth-child(5)
   { display: none; }
}

/* ============================================
   Offcanvas
   ============================================ */
.bg-primary { background-color: var(--paper) !important; }
.offcanvas-header { padding-bottom: 0; }




/* ============================================
   Buttons
   ============================================ */
.btn { border-radius: 100px; letter-spacing: 0.04em; padding: 14px 30px; font-size: var(--font-normal); border-color: var(--web); color: var(--web); }
.btn:hover { border-color: var(--web-soft); color: var(--web-soft); }
.btn-primary { background-color: var(--web); border-color: var(--web); color: #fff; }
.btn-primary:hover { background-color: var(--web-soft); border-color: var(--web-soft); color: #fff; transform: translateY(-1px); box-shadow: var(--shadow-lift); }
.btn-sm { padding: 10px 20px; font-size: var(--font-small); }
.btn-web { background-color: var(--web); border-color: var(--web); color: #fff; }
.btn-web:hover { background-color: var(--web-soft); border-color: var(--web-soft); color: #fff; transform: translateY(-1px); box-shadow: var(--shadow-lift); }
.btn-dtp { background-color: var(--dtp); border-color: var(--dtp); color: #fff; }
.btn-dtp:hover { background-color: var(--web-soft); border-color: var(--dtp-deep); color: #fff; transform: translateY(-1px); box-shadow: var(--shadow-lift); }
.btn-outline-ink { border-color: var(--web-deep); color: var(--web-deep); background: transparent; }
.btn-outline-ink:hover { background: var(--web-soft); color: #fff; }
.btn-outline-web { border-color: var(--web); color: var(--web-deep); background: transparent; }
.btn-outline-web:hover { background: var(--web); color: #fff; }
.btn-outline-dtp { border-color: var(--dtp); color: var(--dtp-deep); background: transparent; }
.btn-outline-dtp:hover { background: var(--dtp); color: #fff; border-color: var(--dtp-deep); }
.btn-arrow { display: inline-block; transition: transform 0.25s ease; margin-left:10px; }
.btn:hover .btn-arrow { transform: translateX(4px); }

.btn.is-active { background-color: var(--web); border-color: var(--web); color: #fff; }

/* ============================================
   Eyebrow / Section heading
   ============================================ */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-en);
  font-size: var(--font-small);
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--web-deep);
  margin-bottom: 18px;
}
.eyebrow::before { content: ""; width: 28px; height: 1px; background: var(--web-deep); }
.section-head { margin-bottom: 3.5rem; }
.section-head h2 { font-size: clamp(24px, 19.77px + 1.1268vw, 38px); line-height: 1.5; }
.section-head .lead-text { margin-top: 16px; color: var(--ink-soft); max-width: 56ch; }

.section-pad { padding: 64px 0;}
.section-alt { background: var(--white); }

@media (min-width: 768px) {
  .section-pad { padding: 100px 0; }
}

/* ============================================
   Hero
   ============================================ */
.hero-section { padding: 88px 0 100px; overflow: hidden; background: var(--white) url(./images/hero.jpg) no-repeat; background-position: left top; background-size: contain}
.hero-copy { margin: 30vh 5vw 0  5vw; background-color: rgba(255, 255, 255, 0.75); width: 85vw; padding-top: 30px; padding-bottom:30px; border-radius: 20px;}
.hero-copy .eyebrow { color: var(--web-deep); }
.hero-copy .eyebrow::before { background: var(--web-deep); }
.hero-copy h1 { font-size: clamp(30px, 20px + 2.6291vw, 64px); line-height: 1.6; letter-spacing: 0.02em;}
.hero-copy h1 .accent-web { color: var(--web-deep); }
.hero-copy h1 .accent-dtp { color: var(--dtp-deep); }
.hero-copy .desc { margin-top: 24px; color: var(--ink-soft); max-width: 46ch; }

.hero-visual { position: relative; height: 320px; margin-top: 24px;}
.pane-screen {
  position: absolute; top: 0; left: 0; width: 72%; height: 78%;
  background: #fff; border-radius: 6px; box-shadow: var(--shadow-lift);
  overflow: hidden; border: 1px solid var(--line);
}
.pane-screen .pane-bar { height: 30px; background: var(--paper-deep); display: flex; align-items: center; gap: 6px; padding: 0 12px; border-bottom: 1px solid var(--line); }
.pane-bar span { width: 7px; height: 7px; border-radius: 50%; background: var(--line); display:inline-block; }
.pane-screen .pane-body { padding: 22px; }
.pane-screen .pane-line { height: 8px; background: var(--paper-deep); border-radius: 2px; margin-bottom: 12px; }
.pane-screen .pane-line.w60 { width: 60%; } .pane-screen .pane-line.w80 { width: 80%; } .pane-screen .pane-line.w40 { width: 40%; }
.pane-screen .pane-swatch { margin-top: 18px; height: 56px; border-radius: 4px; background: linear-gradient(120deg, var(--web), var(--water)); opacity: 0.85; }

.pane-paper {
  position: absolute; bottom: 0; right: 0; width: 56%; height: 64%;
  background: #fff; border-radius: 2px; box-shadow: var(--shadow-lift);
  transform: rotate(4deg); padding: 26px 24px; border: 1px solid var(--line);
}
.pane-paper::before { content: ""; position: absolute; inset: 8px; border: 1px solid var(--paper-deep); }
.pane-paper .paper-title { width: 70%; height: 10px; background: var(--dtp); opacity: 0.7; margin-bottom: 18px; }
.pane-paper .paper-line { height: 6px; background: var(--paper-deep); border-radius: 1px; margin-bottom: 10px; }
.pane-paper .paper-line.w90 { width: 90%; } .pane-paper .paper-line.w70 { width: 70%; } .pane-paper .paper-line.w50 { width: 50%; }

@media (min-width: 992px) {
  .hero-visual { height: 420px; }
  .hero-section { background-position: 45vw 50%; background-size: 70%;}
  .hero-copy { margin-top: 0; background-color:transparent; padding-top: 0; width: auto;}
}
@media (min-width: 1200px) {
  .hero-section .container { max-width: max(80vw, 1320px);}
  .hero-section { background-position: right 50%; background-size: 63%;}
}

/* ============================================
   Pillar cards (Web / DTP)
   ============================================ */
.pillar-card {
  border-radius: 4px;
  padding: 44px 40px;
  background: var(--white) no-repeat;  background-size: min(35vw, 180px);
  box-shadow: var(--shadow-paper);
  border-top: 3px solid transparent;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}
.pillar-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lift); }
.pillar-card.is-web { border-top-color: var(--web); }
.pillar-card.is-dtp { border-top-color: var(--dtp); }
.pillar-num { font-family: var(--font-en); font-size: var(--font-small); letter-spacing: 0.1em; color: var(--ink-soft); }
.pillar-card h3 { font-size: clamp(24px, 19.77px + 1.1268vw, 30px); margin: 14px 0 16px; }
.pillar-card.is-web h3 { color: var(--web-deep); }
.pillar-card.is-dtp h3 { color: var(--dtp-deep); }
.pillar-card p.desc { color: var(--ink-soft); font-size: var(--font-small); margin-bottom: 24px; width: 50vw; }
.pillar-list { list-style: none; padding: 0; margin-bottom: 28px; }
.pillar-list li {
  padding: 9px 0; border-top: 1px solid var(--line);
  color: var(--ink); position: relative;
}
.pillar-list li:last-child { border-bottom: 1px solid var(--line); }
.is-web .pillar-list i.fa { color: var(--web-soft); margin-right: 7px; font-size: var(--font-big); }
.is-dtp .pillar-list i.fa { color: var(--dtp); margin-right: 7px; font-size: var(--font-big); }

.pillar-card.is-web { background-position: right 20px; background-image: url(./images/web-img.jpg); }
.pillar-card.is-dtp { background-position: right 20px; background-image: url(./images/dtp-img.jpg); }

@media (min-width: 992px) {
.pillar-card { padding: 44px 200px 44px 40px; background-size: 230px }
.pillar-card.is-web {  background-position: right 50%; }
.pillar-card.is-dtp { background-position: right 50%; }
.pillar-card p.desc { width: auto; }
}

/* ============================================
   Tags / chips
   ============================================ */
 /*.tag-web, .tag-dtp */
.tag {
  display: inline-block; font-size: 11px; letter-spacing: 0.08em;
  padding: 5px 12px; margin: 0 3px; border-radius: 100px;
}
.tag.tag_required { background: #F00; color: #FFF; }
.tag.tag_new { background: #f9e5de; color: #8d026a; }
.tag.tag_1 { background: #d5ecdb; color: #3e612a; }
.required { color:#F00; padding-left:10px; font-size: 12px; }

.tag.tag_8 { background: rgba(124,179,66,0.12); color: var(--web-deep); }  /* web */
.tag.tag_9 { background: rgba(238,140,43,0.12); color: var(--dtp-deep); } /* DTP */

.format-chip {
  background: var(--white); border: 1px solid var(--line); border-radius: 100px;
  padding: 10px 22px; font-size: var(--font-small); display: inline-flex; align-items: center; gap: 8px;
}
.format-chip .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--dtp); display:inline-block; }

/* ============================================
   Card (Portfolio cards + tabs)
   ============================================ */
#cardGrid { padding-top:0 }
.card-tab {
  padding: 10px 26px; border-radius: 100px; font-size: var(--font-small);
  border: 1px solid var(--line); background: var(--white); cursor: pointer; transition: all 0.2s;
}
.card-tab.is-active { background: var(--ink); color: var(--white); border-color: var(--ink); }

.card {
  background: var(--white); border: none; border-radius: 20px; overflow: hidden;
  box-shadow: var(--shadow-paper); transition: transform 0.3s ease; height: 100%;
}
.card:hover { transform: translateY(-4px); }
.card-body { padding: 20px 22px 24px; }
.card-body .tag-web, .card-body .tag-dtp { margin-bottom: 12px; }
.card-body h4 { font-size: var(--font-normal); font-family: var(--font-body); font-weight: 600; margin-top: 8px;}
.card-body p { font-size: var(--font-small); color: var(--ink-soft); margin-top: 8px; }

.card-item[data-cat] { display: block; }
.card-item.is-hidden { display: none !important; }

.card a.more {
	display:block;
	position: absolute;
	right: 0;
	bottom: 0;
	height: 100%;
	width: 100%;
	text-indent: -1000px;
}

.card-about { height: auto; margin-bottom: 50px; box-shadow:none; display: flex; align-items: center; }
.card-about .num { width: 100px; font-family: var(--font-en); font-size: 70px; font-weight: 900; color: #ccc; }
.card-about .card-body { width: calc(100% - 110px); border-left:1px solid #ccc; }

/* ============================================
   Flow steps
   ============================================ */
.flow-step { padding: 0 24px; position: relative; height: 100%; }
.flow-step .flow-num { font-family: var(--font-en); font-size: 32px; color: var(--line); margin-bottom: 14px; text-align: center;}
.flow-step .flow-icon { text-align: center; }
.flow-step .flow-icon i { font-size: 42px; color: var(--web); margin-bottom: 14px;  }
.flow-step h4 { font-size: var(--font-normal); font-family: var(--font-body); font-weight: 600; margin-bottom: 8px; text-align: center;}
.flow-step p { font-size: var(--font-small); color: var(--ink-soft); }
.flow-col:not(:first-child) .flow-step { border-left: 1px solid var(--line); }
@media (max-width: 767.98px) {
  .flow-col:nth-child(odd) .flow-step { border-left: none !important; }
}


.flow-step2 { padding: 20px 20px 30px 20px; height: 100%; background-color: var(--white); border-radius: 20px; position: relative; }
.flow-step2 .flow-icon-block { display: inline-block; vertical-align: middle; text-align: center; width: 120px; }
.flow-step2 .flow-icon-block .flow-num { font-family: var(--font-en); font-size: 10px; font-weight: 700; color: var(--white); position: absolute; border-radius: 100px;
                                         background: linear-gradient(135deg, var(--web-soft), var(--web)); text-align: center; width:45px; height: 45px; top: -5px; left:0; padding-top:3px}
.flow-step2 .flow-icon-block .flow-num span { font-size: 18px; display: block; line-height: 10px; }
.flow-step2 .flow-icon-block .flow-icon i { font-size: 55px; color: var(--web); line-height: 50px; }
.flow-step2 .flow-icon img { height: 48px; max-width: auto;  }
.flow-step2 .flow-text-block { display: inline-block;  vertical-align: middle; }
.flow-step2 h4 { font-size: var(--font-normal); font-family: var(--font-body); font-weight: 600; margin-bottom: 15px; text-align: left;}
.flow-step2 p { font-size: var(--font-small); color: var(--ink-soft); margin-bottom: 0; }
@media (min-width: 992px) {
  .flow-step2 .flow-icon-block { display: block; padding-bottom: 30px; width: auto; }
  .flow-step2 .flow-icon { display: block; text-align: center; width: auto; }
  .flow-step2 .flow-icon img { height: 58px; max-width: auto;  }
  .flow-step2 .flow-icon-block .flow-icon i { font-size: 62px;  line-height: 58px;}
  .flow-step2 .flow-text-block { display: block; }
  .flow-step2 h4 { display: block; text-align: center; }

  .flow-step2 .flow-icon-block .flow-num { width:50px; height: 50px; top: -15px; left:0; }
  .flow-step2 .flow-icon-block .flow-num span { font-size: 20px; display: block; line-height: 16px; }

}


/* ============================================
   News list
   ============================================ */
.news-list { border-bottom: 1px solid var(--line); }
.news-list:first-child { border-top: 1px solid var(--line) !important; }
.news-item {
  display: flex; gap: 28px; padding: 22px 4px; 
  align-items: baseline; flex-wrap: wrap; position: relative;
}
.news-item time { font-family: var(--font-en); font-size: var(--font-small); color: var(--ink-soft); flex-shrink: 0; }
.news-item .tag { width: 90px; text-align: center; flex-shrink: 0; }
.news-item .news-title { font-size: var(--font-small); color: var(--ink);}
.news-item:hover .news-title { color: var(--web-deep); }

.news-item a.more {
	display:inline-block;
	position: absolute;
	vertical-align: middle;
  text-align: right;
	height: 100%;
	width: 100%;
/*	text-indent: -1000px; */
}


/* ============================================
   CTA footer
   ============================================ */
.cta-footer {
  background: var(--web-deep) url(./images/footer-bk.png) no-repeat; background-size: cover; padding-top: 25px; padding-bottom: 25px;
}
.cta-footer .btn-outline-web { background: var(--white); }
.cta-footer .btn-outline-web:hover { background: var(--white); opacity: 0.8; color: var(--web-deep);}
.cta-footer h3, .cta-footer h4 { color: var(--white); text-align: center; }
.cta-footer .cta-footer-left p { color: var(--white); font-size: var(--font-small); text-align: center; }
.cta-footer .btn-outline-light:hover { color: var(--ink); }
.cta-footer .tel-info { color: var(--white); position: relative; font-size: var(--font-small); }
.cta-footer .tel-info i { position: absolute; top:10px; font-size: 30px; line-height: 30px; }
.cta-footer .tel-info .telno { font-family: var(--font-en); font-size: 24px; font-weight: 900; margin-left: 30px; }
.cta-footer .tel-info p { margin-top: -5px; margin-bottom: 0; }
@media (min-width: 992px) {
  .cta-footer h3, .cta-footer h4 { text-align: left; }
  .cta-footer .cta-footer-left p { text-align: left; margin-bottom: 0; }
}


/* ============================================
   Footer
   ============================================ */
.site-footer { background: var(--ink); color: #D8D5CC; padding: 32px 0 14px; }
.footer-brand { text-align: center; }
.footer-brand img { height: 30px; filter: brightness(0) invert(1); opacity: 0.92;}
.footer-brand p { margin: 0; font-size: 13px; color: #D8D5CC; line-height: 1.9; }
.footer-col h4 { font-size: 13px; letter-spacing: 0.08em; color: #fff; margin-bottom: 18px; font-weight: 600; font-family: var(--font-body); }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 11px; }
.footer-col a { font-size: var(--font-small); color: #B6B2A8; transition: color 0.2s; }
.footer-col a:hover { color: var(--web); }
.footer-divider { border-color: rgba(255, 255, 255, 0.336); margin-top: 0; }
.footer-bottom { text-align: center; font-size: 12px; color: #8A877E; letter-spacing: 0.04em; }

.footer-col-simple h4 { font-size: 13px; letter-spacing: 0.08em; color: #fff; margin-bottom: 18px; font-weight: 600; font-family: var(--font-body); }
.footer-col-simple ul { display: none; }
.footer-col-simple ul li { display: inline-block; margin-bottom: 0; padding-left:30px; }
.footer-col-simple a { font-size: var(--font-small); color: #B6B2A8; transition: color 0.2s; text-decoration: none; }
.footer-col-simple a:hover { color: var(--white); }
@media (min-width: 992px) {
  .site-footer { padding: 72px 0 14px; }
  .footer-brand { text-align: left; }
  .footer-divider { margin-top: 72px; }
  .footer-col-simple ul { display: block; list-style: none; padding: 0; text-align: right; margin-bottom: 0; }
}

/* ============================================
   Icon row blocks (対応できること / 強み)
   ============================================ */
.icon-block {
  padding: 38px 32px; border: 1px solid var(--line); background: var(--white);
  transition: background 0.25s ease; height: 100%;
}
.icon-block:hover { background: var(--paper-deep); }
.icon-block .icon-wrap, .strength-block .icon-wrap {
  width: 52px; height: 52px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; margin-bottom: 20px;
}
.strength-block .icon-wrap { width: 60px; height: 60px; }
.page-web-design .icon-wrap { background: rgba(124,179,66,0.12); }
.page-dtp-design { background: var(--paper-deep); }
.page-dtp-design .icon-wrap { background: rgba(238,140,43,0.12); }
.icon-wrap svg { width: 26px; height: 26px; }
.strength-block .icon-wrap svg { width: 30px; height: 30px; }
.page-web-design .icon-wrap svg { stroke: var(--web-deep); }
.page-dtp-design .icon-wrap svg { stroke: var(--dtp-deep); }
.icon-block h3 { font-size: var(--font-big); margin-bottom: 10px; }
.icon-block p { font-size: var(--font-small); color: var(--ink-soft); }

.strength-block .num-label { display: block; margin-bottom: 10px; font-family: var(--font-en); font-size: var(--font-small); letter-spacing: 0.1em; color: var(--ink-soft); }
.strength-block h3 { font-size: var(--font-big); margin-bottom: 14px; line-height: 1.6; }
.strength-block p { font-size: var(--font-small); color: var(--ink-soft); margin-bottom: 18px; }
.strength-block ul { list-style: none; padding: 0; }
.strength-block ul li {
  font-size: var(--font-small); padding: 9px 0; border-top: 1px solid var(--line);
  display: flex; gap: 8px; color: var(--ink);
}
.strength-block ul li:last-child { border-bottom: 1px solid var(--line); }
.strength-block ul li::before { content: "—"; color: var(--ink-soft); flex-shrink: 0; }

/* ============================================
   Theme variants (sub pages)
   ============================================ */
.page-header-section { padding: 134px 0 56px; /* border-bottom: 1px solid var(--line); */ background: linear-gradient(180deg, rgba(124,179,66,0.07), transparent);  }
.page-header-section h1 { font-size: clamp(24px, 19.77px + 1.1268vw, 36px); line-height: 1.6; }
.page-header-section .desc { margin-top: 18px; color: var(--ink-soft); font-size: var(--font-normal); max-width: 60ch; }
.breadcrumb-custom { font-size: var(--font-small); color: var(--ink-soft); margin-bottom: 20px; }
.breadcrumb-custom a { color: var(--ink-soft); }
.breadcrumb-custom a:hover { color: var(--web-deep); }

.page-dtp-design .page-header-section { background: linear-gradient(180deg, rgba(238,140,43,0.08), transparent); }
.page-dtp-design .eyebrow { color: var(--dtp-deep); }
.page-dtp-design .eyebrow::before { background: var(--dtp-deep); }

@media (min-width: 768px) {
  .page-header-section { padding-top: 64px; }
}

/* ============================================
   Service cards
   ============================================ */
.service-card { background: var(--white); padding: 36px 30px; border-radius: 4px; box-shadow: var(--shadow-paper); height: 100%; }
.service-card .s-num { font-family: var(--font-en); font-size: 13px; color: var(--ink-soft); letter-spacing: 0.08em; }
.service-card h3 { font-size: 18.5px; margin: 12px 0 12px; }
.service-card p { font-size: 13.5px; color: var(--ink-soft); }

/* ============================================
   Feature row (mock visuals)
   ============================================ */
.feature-text .num-label { font-family: var(--font-en); font-size: var(--font-small); letter-spacing: 0.1em; color: var(--ink-soft); margin-bottom: 14px; display: block; }
.feature-text h3 { font-size: 26px; margin-bottom: 18px; line-height: 1.6; }
.feature-text p { color: var(--ink-soft); font-size: var(--font-small); margin-bottom: 22px; }
.feature-text ul { list-style: none; padding: 0; margin-bottom: 24px; }
.feature-text ul li { font-size: var(--font-small); padding: 10px 0; border-top: 1px solid var(--line); display: flex; gap: 10px; }
.feature-text ul li:last-child { border-bottom: 1px solid var(--line); }
.feature-text ul li::before { content: "—"; color: var(--ink-soft); flex-shrink: 0; }

.feature-visual { height: 320px; border-radius: 4px; position: relative; overflow: hidden; box-shadow: var(--shadow-paper); background: var(--white); border: 1px solid var(--line); }
.mock-web .mock-bar { height: 32px; background: var(--paper-deep); display: flex; align-items: center; gap: 6px; padding: 0 14px; border-bottom: 1px solid var(--line); }
.mock-web .mock-bar span { width: 8px; height: 8px; border-radius: 50%; background: var(--line); display:inline-block; }
.mock-web .mock-content { padding: 28px; }
.mock-web .mock-block { height: 12px; background: var(--paper-deep); border-radius: 2px; margin-bottom: 16px; }
.mock-web .mock-block.w70 { width: 70%; } .mock-web .mock-block.w50 { width: 50%; } .mock-web .mock-block.w90 { width: 90%; }
.mock-web .mock-img { height: 90px; border-radius: 4px; background: linear-gradient(120deg, var(--web), var(--water)); opacity: 0.85; margin: 18px 0; }

.mock-paper { padding: 30px 28px; }
.mock-paper::after {
  content: ""; position: absolute; top: 0; right: 0; width: 0; height: 0;
  border-style: solid; border-width: 0 28px 28px 0; border-color: transparent var(--paper-deep) transparent transparent;
}
.mock-paper .mock-ptitle { width: 65%; height: 14px; background: var(--dtp); opacity: 0.75; margin-bottom: 20px; }
.mock-paper .mock-pline { height: 7px; background: var(--paper-deep); border-radius: 1px; margin-bottom: 11px; }
.mock-paper .mock-pline.w95 { width: 95%; } .mock-paper .mock-pline.w80 { width: 80%; } .mock-paper .mock-pline.w60 { width: 60%; }
.mock-paper .mock-pgrid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 20px; }
.mock-paper .mock-pgrid div { height: 56px; background: var(--paper-deep); border-radius: 2px; }

/* ============================================
   Price note / Value cards / Voice
   ============================================ */
.price-note { background: var(--white); border-radius: 20px; padding: 48px 44px; text-align: center; box-shadow: var(--shadow-paper); }
.price-note h3 { font-size: 21px; margin-bottom: 14px; }
.price-note p { color: var(--ink-soft); font-size: 14px; max-width: 52ch; margin: 0 auto 28px; }

.value-card { background: var(--white); padding: 32px 28px; border-radius: 4px; box-shadow: var(--shadow-paper); height: 100%; }
.value-card h4 { font-size: var(--font-normal); margin-bottom: 10px; }
.value-card p { font-size: var(--font-small); color: var(--ink-soft); }

/* ============================================
   Info table (company)
   ============================================ */
.info-table { width: 100%; }
.info-table tr { border-top: 1px solid var(--line); }
.info-table tr:last-child { border-bottom: 1px solid var(--line); }
.info-table th, .info-table td { text-align: left; padding: 18px 16px; font-size: 14px; font-weight: 400; }
.info-table th { width: 200px; color: var(--ink-soft); letter-spacing: 0.03em; width: 120px; }
.info-table.noline tr { border: none; }
.info-table.noline td:has(span.error) { background-color: #Fee; }

.form_note { font-size: 14px; }
.mw_wp_form_confirm .form_note { display: none; }
.form-control:focus { border-color: var(--web-soft); box-shadow: none; }
.mwform-tel-field input[type="text"] { width:100px }
@media (min-width: 992px) { .info-table th { width: auto; white-space: nowrap; } }

.policy-block { margin-bottom: 56px; }
.policy-block:last-child { margin-bottom: 0; }
.policy-block h3 { font-size: var(--font-big); margin-bottom: 16px; }
.policy-block p { font-size: var(--font-small); color: var(--ink-soft); margin-bottom: 12px; }

/* ============================================
   Contact form
   ============================================ */
.contact-channel { display: flex; gap: 14px; padding: 18px 0; border-top: 1px solid var(--line); }
.contact-channel:last-child { border-bottom: 1px solid var(--line); }
.contact-channel .ch-label { font-size: 12px; color: var(--ink-soft); letter-spacing: 0.05em; }
.contact-channel .ch-value { font-size: 15px; margin-top: 4px; }

.form-card { background: var(--white); border-radius: 4px; padding: 44px 40px; box-shadow: var(--shadow-paper); }
.form-card .form-label { font-size: 13.5px; color: var(--ink); }
.form-card .form-control, .form-card .form-select {
  background: var(--paper); border: 1px solid var(--line); border-radius: 2px;
  font-size: 14px; padding: 13px 14px; color: var(--ink);
}
.form-card .form-control:focus, .form-card .form-select:focus {
  border-color: var(--web); box-shadow: 0 0 0 0.2rem rgba(124,179,66,0.18);
  background: var(--paper); color: var(--ink);
}
.required-badge { color: var(--dtp-deep); font-size: 11px; margin-left: 6px; }
.checkbox-chip {
  border: 1px solid var(--line); padding: 9px 16px; border-radius: 100px;
  background: var(--paper); font-size: var(--font-small); cursor: pointer; display: inline-flex; align-items: center; gap: 8px;
}
.form-note { font-size: 12px; color: var(--ink-soft); margin-top: 14px; text-align: center; }

/* ============================================
   Pagenation
   ============================================ */
.pagination { margin-top: 70px; justify-content: center !important; }
.page-item { text-align: center; }
.page-link { border-color: var(--web-soft); }
.active > .page-link { background-color: var(--web-deep); border-color: var(--web-deep); }

.nav-links { margin-top: 30px; }


/* ============================================
   Reveal animation
   ============================================ */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}
