html > * {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-appearance: none;
}
html {
  -webkit-text-size-adjust: 100%;
  -webkit-overflow-scrolling: touch;
  overflow-x: hidden;
}
:root {
  --bcc-max: 1120px;
  --bcc-bg: #ffffff;
  --bcc-text: #111827;
  --bcc-accent: #ef476f;
  --bcc-accent-dark: #d9305c;
}
* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}
body {
  -webkit-text-size-adjust: 100%;
  margin: 0;
  color: var(--bcc-text);
  background: var(--bcc-bg);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Hiragino Sans", "Noto Sans JP", sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
  overflow-y: auto;
}
img {
  max-width: 100%;
  height: auto;
}
a {
  color: inherit;
}
h1 {
  font-size: 20px;
}
.bcc-site-header, .bcc-site-footer {
  background: #fff;
}
.bcc-site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: saturate(180%) blur(18px);
  -webkit-backdrop-filter: saturate(180%) blur(18px);
}
.bcc-site-footer {
  border-top: 1px solid #e7ecfb;
  border-bottom: 0;
  width: 100%;
}
.bcc-container {
  width: min(100% - 32px, var(--bcc-max));
  margin-inline: auto;
  margin: 0 auto;
}
.bcc-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 72px;
  width: 100%;
  min-width: 0;
}
.bcc-brand {
  display: flex;
  align-items: center;
  gap: 0;
  flex: 1 1 auto;
  min-width: 0;
}
.bcc-logo-link {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  flex: 0 1 auto;
  min-width: 0;
  max-width: min(42vw, 220px);
}
.custom-logo-link {
  display: inline-flex;
  align-items: center;
}
.custom-logo, .bcc-logo-link img {
  display: block;
  width: auto;
  height: clamp(24px, 3.2vw, 36px);
  max-width: 100%;
  object-fit: contain;
}
.bcc-site-name {
  display: none;
}
.bcc-favorites-link {
  position: relative;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  background: var(--bcc-accent);
  border: 1px solid rgba(239, 71, 111, 0.2);
  flex: 0 0 44px;
  box-shadow: none;
}
.bcc-favorites-link:hover {
  background: var(--bcc-accent-dark);
}
.bcc-favorites-link-heart {
  color: #fff;
  font-size: 22px;
  position: relative;
  top: 1px;
}
.bcc-favorites-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  border-radius: 999px;
  background: #111827;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  line-height: 18px;
  text-align: center;
}
.bcc-menu-toggle {
  appearance: none;
  -webkit-appearance: none;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: rgba(255, 255, 255, 0.9);
  width: 44px;
  height: 44px;
  border-radius: 999px;
  padding: 0;
  margin: 0;
  flex: 0 0 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: relative;
  transition: transform .2s ease, border-color .2s ease, background-color .2s ease;
}
.bcc-menu-toggle:hover {
  transform: translateY(-1px);
  border-color: rgba(15, 23, 42, 0.12);
}
.bcc-menu-toggle:active {
  transform: translateY(0);
}
.bcc-menu-toggle:focus-visible, .bcc-header-nav a:focus-visible, .bcc-header-nav button:focus-visible, .bcc-drawer-close:focus-visible, .bcc-favorites-link:focus-visible {
  outline: 2px solid rgba(37, 99, 235, 0.42);
  outline-offset: 2px;
}
.bcc-menu-toggle span {
  position: absolute;
  display: block;
  width: 18px;
  height: 1.75px;
  border-radius: 999px;
  background: #111827;
  transition: transform .22s ease, opacity .18s ease, top .22s ease;
}
.bcc-menu-toggle span:nth-child(1) {
  top: 15px;
}
.bcc-menu-toggle span:nth-child(2) {
  top: 21px;
}
.bcc-menu-toggle span:nth-child(3) {
  top: 27px;
}
.bcc-menu-toggle[aria-expanded="true"] span:nth-child(1) {
  top: 21px;
  transform: rotate(45deg);
}
.bcc-menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.bcc-menu-toggle[aria-expanded="true"] span:nth-child(3) {
  top: 21px;
  transform: rotate(-45deg);
}
.bcc-menu-overlay {
  position: fixed;
  top: 72px;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.42);
  z-index: 998;
}
.bcc-header-nav {
  display: none;
}
.bcc-nav-menu {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 22px;
  margin: 0;
  padding: 0;
}
.bcc-nav-menu li {
  margin: 0;
  padding: 0;
}
.bcc-nav-menu a {
  text-decoration: none;
  color: #0f172a;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .01em;
  transition: color .2s ease, opacity .2s ease;
}
.bcc-nav-menu a:hover {
  color: #2563eb;
}
.bcc-drawer-footer {
  display: none;
}
.bcc-drawer-close {
  display: none;
  appearance: none;
  -webkit-appearance: none;
  width: 100%;
  margin-top: 18px;
  padding: 12px 16px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: transparent;
  color: #fff;
  border-radius: 14px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
}
.bcc-main {
  width: min(100% - 32px, var(--bcc-max));
  margin: 0 auto 40px;
}
.bcc-main h2:first-child, .bcc-catalog h2:first-child, .entry-content h2:first-child {
  margin-top: 0;
}
.bcc-footer-copy {
  font-size: 12px;
  color: #6a738b;
  padding: 10px;
}
.bcc-site-footer .bcc-container {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
body.bcc-no-scroll {
  overflow: hidden;
  height: 100dvh;
  overscroll-behavior: none;
}
body.bcc-menu-open {
  touch-action: none;
}
body.bcc-menu-open .bcc-main, body.bcc-menu-open .bcc-price-page {
  pointer-events: none;
}
.bcc-empty-message {
  text-align: center;
  padding: 24px 0;
  font-size: 14px;
  color: #6a738b;
}
@media (min-width: 768px) {
  .bcc-header-nav {
    display: none !important;
  }
  .bcc-menu-toggle, .bcc-menu-overlay {
    display: none;
  }
}
@media (max-width: 767px) {
  .bcc-container {
    width: min(100% - 24px, var(--bcc-max));
  }
  .bcc-header-inner {
    min-height: 64px;
    gap: 12px;
  }
  .bcc-logo-link {
    max-width: min(52vw, 200px);
  }
  .custom-logo, .bcc-logo-link img {
    height: clamp(22px, 5.6vw, 32px);
  }
  .bcc-menu-overlay {
    position: fixed;
    top: 64px;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.42);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .28s ease, visibility .28s ease;
  }
  .bcc-menu-overlay.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  .bcc-header-nav {
    position: fixed;
    top: 64px;
    right: 0;
    bottom: 0;
    width: min(78vw, 360px);
    min-width: 220px;
    max-width: calc(100vw - 24px);
    background: #000;
    border-left: 1px solid rgba(255, 255, 255, 0.2);
    z-index: 999;
    padding: 16px 20px calc(20px + env(safe-area-inset-bottom, 0px));
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: 0;
    transform: translateX(100%);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: transform .32s cubic-bezier(.22, 1, .36, 1), opacity .24s ease, visibility .24s ease;
    will-change: transform, opacity;
  }
  .bcc-header-nav.is-open {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  .bcc-nav-menu {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px 12px;
    margin: 0;
    padding: 0;
    flex: 0 0 auto;
    min-height: auto;
    overflow: visible;
    align-content: start;
  }
  .bcc-nav-menu li {
    list-style: none;
    margin: 0;
    padding: 0;
    border: 0;
  }
  .bcc-nav-menu a, .bcc-nav-menu button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 36px;
    padding: 10px 8px;
    color: #fff;
    background: transparent;
    border: 1px solid #e5e5e5;
    border-radius: 10px;
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.35;
    text-decoration: none;
    box-shadow: none;
    cursor: pointer;
  }
  .bcc-nav-menu a:hover, .bcc-nav-menu button:hover, .bcc-nav-menu a.is-active, .bcc-nav-menu button.is-active, .bcc-nav-menu .current-menu-item > a, .bcc-nav-menu .current_page_item > a {
    color: #fff;
    opacity: .78;
  }
  .bcc-drawer-footer {
    display: block;
    flex: 0 0 auto;
    padding-top: 8px;
  }
  .bcc-drawer-close {
    display: block;
    appearance: none;
    -webkit-appearance: none;
    width: 100%;
    margin-top: 0;
    padding: 12px 16px;
    border: 1px solid #e5e5e5;
    background: transparent;
    color: #fff;
    border-radius: 14px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
  }
  .bcc-main {
    margin: 0 auto 16px;
  }
}
.g_link {
  line-height: 1;
}
.g_link img {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  padding: 0;
  margin: 0;
  flex: 0 0 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.g_link a {
  display: flex;
}
.bcc-drawer-footer2 {
  display: block;
  flex: 0 0 auto;
  padding-top: 8px;
}
.bcc-drawer-footer2 a {
  display: block;
  appearance: none;
  -webkit-appearance: none;
  width: 100%;
  margin-top: 0;
  padding: 10px 16px;
  border: 1px solid #e5e5e5;
  background: transparent;
  color: #fff;
  border-radius: 14px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
}
.error404 .bcc-main {
  display: flex;
  justify-content: center;
  align-items: center;
}
.error404 .bcc-main::before {
  content: "ページが見つかりませんでした";
  color: red;
  font-size: 16px;
  padding: 20px 10px 10px;
}
.bcc-heart-svg {
  display: block;
  width: 1em;
  height: 1em;
}
.bcc-favorites-link-heart {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
.bcc-favorites-link-heart .bcc-heart-svg {
  width: 22px;
  height: 22px;
}
.g_link-wrap {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 0 0 auto;
}
/* =========================
   写真名刺PR
========================= */
.bcc-photo-pr {
  margin: 20px 0 28px;
  border-radius: 24px;
  overflow: hidden;
  background:
    radial-gradient(circle at top right, rgba(255, 190, 92, 0.22), transparent 30%), linear-gradient(135deg, #fff7ef 0%, #fffaf5 100%);
  border: 1px solid #f3d3b1;
  box-shadow: 0 10px 30px rgba(17, 24, 39, 0.06);
}
.bcc-photo-pr__inner {
  max-width: 680px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 200px;
  column-gap: 6px;
  row-gap: 18px;
  align-items: center;
  padding: 26px 24px;
}
.bcc-photo-pr__content {
  width: 90%;
  max-width: 90%;
  z-index: 2;
  padding-right: 5px;
}
.bcc-photo-pr__title {
  margin: 0 0 14px;
  font-size: 18px;
  line-height: 1.4;
  font-weight: 900;
  color: #7c2d12;
}
.bcc-photo-pr__lead {
  margin: 0;
  font-size: 18px;
  line-height: 1.8;
  color: #6b3f22;
  padding-right: 5px;
}
.bcc-photo-pr__actions {
  margin-top: 18px;
}
.bcc-photo-pr__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 170px;
  height: 48px;
  border-radius: 14px;
  font-weight: 800;
  font-size: 14px;
  background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
  color: #fff;
  border: 0;
  text-decoration: none;
  transition: transform .2s ease, opacity .2s ease;
}
.bcc-photo-pr__button:hover {
  opacity: 0.95;
  transform: translateY(-1px);
}
.bcc-photo-pr__visual {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 220px;
  width: 100%;
}
.bcc-photo-pr__visual > img {
  display: block;
  width: 100%;
  max-width: 150px;
  aspect-ratio: 3 / 4.5;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 12px 20px rgba(17, 24, 39, 0.14);
  transform: rotate(4deg);
}
@media (max-width: 1024px) {
  .bcc-photo-pr__inner {
    max-width: 640px;
    grid-template-columns: minmax(0, 1fr) 180px;
    column-gap: 6px;
    padding: 24px 20px;
  }
  .bcc-photo-pr__lead {
    font-size: 16px;
  }
  .bcc-photo-pr__button {
    width: 150px;
    height: 44px;
    font-size: 13px;
  }
  .bcc-photo-pr__visual > img {
    max-width: 132px;
  }
}
@media (max-width: 860px) {
  .bcc-photo-pr__inner {
    max-width: 600px;
    grid-template-columns: minmax(0, 1fr) 160px;
    column-gap: 4px;
  }
}
@media (max-width: 767px) {
  .bcc-photo-pr__inner {
    max-width: 480px;
    grid-template-columns: minmax(0, 1fr) 120px;
    column-gap: 4px;
    gap: 12px;
    padding: 18px 16px;
    align-items: center;
  }
  .bcc-photo-pr__lead {
    font-size: 14px;
    line-height: 1.7;
  }
  .bcc-photo-pr__button {
    width: 130px;
    height: 42px;
    font-size: 13px;
  }
  .bcc-photo-pr__actions {
    margin-top: 15px;
  }
  .bcc-photo-pr__visual {
    min-height: 140px;
    justify-content: center;
    align-self: center;
  }
  .bcc-photo-pr__visual > img {
    max-width: 100px;
  }
}
.bcc-photo-pr__mock {
  position: relative;
  min-height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.bcc-photo-pr__mock-card {
  position: absolute;
  width: 240px;
  min-height: 280px;
  padding: 22px 20px;
  border-radius: 24px;
  background: linear-gradient(180deg, #fff 0%, #fff7ed 100%);
  border: 1px solid rgba(253, 186, 116, 0.65);
  box-shadow: 0 18px 36px rgba(17, 24, 39, 0.12);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.bcc-photo-pr__mock-card strong {
  font-size: 20px;
  line-height: 1.35;
  color: #7c2d12;
}
.bcc-photo-pr__mock-card small {
  margin-top: 10px;
  color: #6b7280;
  line-height: 1.7;
}
.bcc-photo-pr__mock-card.is-sub {
  right: 28px;
  top: 10px;
  z-index: 2;
  transform: rotate(8deg);
  min-height: 250px;
}
.bcc-photo-pr__mock-badge {
  position: absolute;
  top: 18px;
  left: 18px;
  display: inline-flex;
  align-items: center;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(249, 115, 22, 0.12);
  color: #c2410c;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .05em;
}
.bcc-photo-pr__recommend {
  margin-top: 18px;
  padding: 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(253, 186, 116, 0.55);
}
.bcc-photo-pr__recommend h3 {
  margin: 0 0 10px;
  font-size: 16px;
  color: #9a3412;
}
.bcc-photo-pr__recommend ul {
  margin: 0;
  padding-left: 18px;
}
.bcc-photo-pr__recommend li {
  margin: 6px 0;
  color: #5b3a29;
  font-weight: 600;
}
.bcc-photo-pr__note {
  margin-top: 14px;
  padding: 14px 16px;
  border-left: 4px solid #fb923c;
  background: rgba(255, 255, 255, 0.72);
  color: #5b3a29;
  border-radius: 12px;
}
.bcc-photo-pr__mini-card {
  min-height: 88px;
  padding: 16px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid #f6c99b;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-weight: 800;
  color: #9a3412;
  box-shadow: 0 8px 18px rgba(17, 24, 39, 0.05);
}
.bcc-photo-pr--catalog {
  margin-top: 12px;
}
.bcc-photo-pr--price {
  margin-bottom: 24px;
}
.bcc-photo-stack {
  position: relative;
  width: min(100%, 160px);
  aspect-ratio: 3 / 4.5;
  margin-left: -10px;
}
.bcc-photo-stack img {
  display: block;
  width: 100%;
  height: auto;
}
.bcc-photo-card {
  position: absolute;
  top: 50%;
  width: 92%;
  max-width: 140px;
  border-radius: 18px;
  transform: translateY(-50%);
  object-fit: cover;
}
.bcc-photo-card.is-back {
  left: -30%;
  width: 88%;
  transform: translateY(-50%) rotate(-8deg);
  z-index: 1;
}
.bcc-photo-card.is-front {
  right: -20%;
  width: 96%;
  transform: translateY(-50%) rotate(6deg);
  z-index: 2;
}
@media (max-width: 860px) {
  .bcc-photo-stack {
    width: min(100%, 140px);
    margin-left: -8px;
  }
}
@media (max-width: 767px) {
  .bcc-photo-stack {
    width: min(100%, 110px);
    margin-left: -6px;
  }
  .bcc-photo-card {
    max-width: 100px;
  }
}
.bcc-price-page {
  padding: 24px 0 40px;
}
.bcc-price-page-inner {
  max-width: 960px;
  margin: 0 auto 40px;
}
.bcc-price-page-title {
  margin: 0 0 20px;
}
.bcc-price-page-content {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 20px;
  padding: 24px;
}
.bcc-price-page-content table {
  width: 100%;
  border-collapse: collapse;
}
.bcc-price-page-content th, .bcc-price-page-content td {
  border: 1px solid #d1d5db;
  padding: 12px 14px;
  text-align: left;
}
.bcc-price-page-content td:first-child {
  width: 15%;
}
.bcc-price-page-content th {
  background: #f9fafb;
}
.bcc-price-table-wrap h3 {
  margin-bottom: 5px;
}
.bcc-price-table-wrap p {
  margin: 0 0 5px;
}
.bcc-price-notes h3 {
  margin-bottom: 5px;
}
.bcc-price-notes ul {
  display: block;
  margin: 0;
}
.bcc-price-notes ul li {
  list-style: inside;
  margin: 0;
  padding: 5px;
}
.bcc-price-notes p {
  margin: 0;
}
.bcc-price-page-back {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid #d1d5db;
  background: #fff;
  color: #111827;
  text-decoration: none;
  font-weight: 700;
  margin-top: 20px;
}
.bcc-price-page-back:hover {
  background: #111827;
  border-color: #111827;
  color: #fff;
}
.bcc-price-card-head span {
  font-size: 14px;
  font-weight: normal;
}
@media (max-width: 767px) {
  .g_link-wrap {
    gap: 10px;
  }
  .bcc-price-page {
    padding: 16px 0 24px;
  }
  .bcc-price-page-content {
    border-radius: 16px;
    padding: 16px;
  }
  .bcc-price-page-content th, .bcc-price-page-content td {
    padding: 10px 12px;
    font-size: 14px;
  }
  .bcc-photo-pr__mini-card {
    min-height: 72px;
    font-size: 13px;
  }
  .bcc-photo-pr__mock {
    min-height: 300px;
  }
  .bcc-photo-pr__mock-card {
    width: 190px;
    min-height: 210px;
    padding: 18px 16px;
  }
  .bcc-photo-pr__mock-card strong {
    font-size: 16px;
  }
  .bcc-photo-pr__mock-card.is-sub {
    right: 10px;
    top: 8px;
  }
}
.bcc-price-line {
  padding: 28px 20px;
  border-radius: 24px;
  text-align: center;
}
.bcc-price-line-text {
  margin: 0;
  font-size: 15px;
  font-weight: 700;
  color: #065f46;
  line-height: 1.6;
  text-align: center;
}
.bcc-line-button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  width: min(100%, 420px);
  min-height: 68px;
  padding: 14px 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, #06c755 0%, #00c300 100%);
  color: #fff;
  text-decoration: none;
  box-shadow: 0 12px 28px rgba(6, 199, 85, 0.22);
  transition: transform .2s ease, box-shadow .2s ease, opacity .2s ease;
}
.bcc-line-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(6, 199, 85, 0.30);
  opacity: .98;
}
.bcc-line-button-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  background: #fff;
  border-radius: 999px;
  box-shadow: inset 0 0 0 1px rgba(6, 199, 85, 0.08);
}
.bcc-line-button-icon-text {
  display: block;
  font-size: 10px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.04em;
  color: #06c755;
  transform: translateY(0.5px);
  padding-left: 2px;
  padding-bottom: 2px;
}
.bcc-line-button-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  line-height: 1.2;
  flex: 1 1 auto;
}
.bcc-line-button-text strong {
  font-size: 17px;
  font-weight: 800;
  color: #fff;
}
.bcc-line-button-text small {
  margin-top: 3px;
  font-size: 12px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.92);
}
.bcc-line-button-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  flex: 0 0 36px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  position: relative;
}
.bcc-line-button-arrow::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-40%, -50%);
  width: 0;
  height: 0;
  border-left: 10px solid #fff;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
}
@media (max-width: 767px) {
  .bcc-price-line {
    padding: 22px 0;
    border-radius: 20px;
  }
  .bcc-price-line-text {
    font-size: 14px;
  }
  .bcc-line-button {
    min-height: 62px;
    padding: 12px 16px;
    gap: 12px;
  }
  .bcc-line-button-icon {
    width: 38px;
    height: 38px;
    flex-basis: 38px;
  }
  .bcc-line-button-icon-text {
    font-size: 10px;
  }
  .bcc-line-button-text strong {
    font-size: 15px;
  }
  .bcc-line-button-text small {
    font-size: 11px;
  }
  .bcc-line-button-arrow {
    width: 32px;
    height: 32px;
    flex-basis: 32px;
  }
  .bcc-line-button-arrow-core {
    width: 9px;
    height: 9px;
    border-top-width: 2.5px;
    border-right-width: 2.5px;
  }
}
.bcc-price-page-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  flex-wrap: nowrap;
  margin-top: 28px;
}
.bcc-price-page-links .bcc-price-page-back {
  margin-top: 0;
  width: auto;
}
@media (max-width: 767px) {
  .bcc-photo-price-page .bcc-price-page-links {
    flex-direction: row !important;
    justify-content: center;
    gap: 8px;
  }
  .bcc-photo-price-page .bcc-price-page-links .bcc-price-page-back {
    width: auto !important;
    margin-top: 0;
    font-size: 13px;
    padding: 10px 12px;
  }
}
.bcc-photo-price-page .bcc-photo-pr--photo-page {
  margin-bottom: 24px;
}
.bcc-photo-price-page .bcc-photo-pr__toggle-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  background: #fff;
  color: #9a3412;
  border: 1px solid #fdba74;
  font-weight: 800;
  font-size: 15px;
  text-decoration: none;
  transition: transform .2s ease, background-color .2s ease, opacity .2s ease;
}
.bcc-photo-price-page .bcc-photo-pr__toggle-link:hover {
  background: #fff7ed;
  transform: translateY(-1px);
}
.bcc-photo-price-hero {
  margin-bottom: 20px;
}
.bcc-photo-pr__toggle-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  background: #fff;
  color: #9a3412;
  border: 1px solid #fdba74;
  font-weight: 800;
  font-size: 15px;
  text-decoration: none;
  transition: transform .2s ease, background-color .2s ease, opacity .2s ease;
}
.bcc-photo-pr__toggle-link:hover {
  background: #fff7ed;
  transform: translateY(-1px);
}
@media (max-width: 767px) {
  .bcc-photo-pr__toggle-link {
    width: 100%;
  }
}
.bcc-order-box {
  margin-top: 28px;
  padding: 16px;
  border-radius: 20px;
  background: #f0fdf4;
  border: 1px solid #d1fae5;
}
.bcc-copy-before{
  text-align: center;
  font-size: 14px;
  margin: 10px 0 0;
}
.bcc-order-box h3 {
  margin-top: 0;
  color: #065f46;
}
.bcc-order-box > label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 14px;
  margin-bottom: 6px;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.2;
}

.bcc-required {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 2px 7px;
  border-radius: 999px;
  background: #ef4444;
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  line-height: 1;
  vertical-align: middle;
  transform: translateY(-1px);
}
.bcc-order-box input[type="text"],
.bcc-order-box textarea {
  display: block;
  width: 100%;
  max-width: 100%;
  padding: 12px;
  border: 1px solid #d1d5db;
  border-radius: 10px;
  font-size: 16px;
}
.bcc-order-box textarea {
  min-height: 100px;
}
.bcc-copy-order {
  width: min(100%, 420px);
  margin: 18px auto 0;
  display: block;
  padding: 14px;
  border: 0;
  border-radius: 999px;
  background: #111827;
  color: #fff;
  font-weight: 800;
  font-size: 15px;
  cursor: pointer;
}
.bcc-copy-result {
  margin-top: 12px;
  color: #065f46;
  font-weight: 700;
}
.bcc-copy-before::after {
  content: "注文内容をコピー後、LINEを開くボタンをクリックしてください。";
}
@media (hover: none) {
  .bcc-copy-before::after {
    content: "注文内容をコピー後、LINEを開くボタンをタップしてください。";
  }
}
.bcc-error-message {
  margin-top: 12px;
  color: #dc2626;
  font-weight: 700;
  text-align: center;
}
.bcc-error {
  border: 2px solid #ef4444 !important;
  background: #fef2f2;
}
.bcc-note{
  font-size: 14px;
  margin: 0;
}
.bcc-radio-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 8px;
}

.bcc-radio-card {
  position: relative;
  display: flex !important;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  margin: 0 !important;
  padding: 0 12px;
  border: 1px solid #d1d5db;
  border-radius: 14px;
  background: #fff;
  font-size: 16px !important;
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
}

.bcc-radio-card input[type="radio"] {
  position: absolute;
  inset: 0;
  width: 100% !important;
  height: 100% !important;
  padding: 0 !important;
  margin: 0 !important;
  border: 0 !important;
  opacity: 0;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
}

.bcc-radio-card span {
  position: relative;
  z-index: 1;
}

.bcc-radio-card:has(input[type="radio"]:checked) {
  border-color: #06c755;
  background: #ecfdf5;
  color: #047857;
  box-shadow: inset 0 0 0 2px rgba(6, 199, 85, 0.18);
}
.bcc-form-label {
  display: flex !important;
  align-items: center;
  gap: 8px;
}

.bcc-required {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 2px 8px;
  border-radius: 999px;
  background: #ef4444;
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  line-height: 1.4;
  margin-left: 5px;
}
.bcc-card-actions {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 4px;
  width: 100%;
}

.bcc-card-actions .bcc-number {
  margin: 0;
  line-height: 1;
}

.bcc-card-actions .bcc-select-design,
.bcc-card-actions .bcc-clear-design {
  appearance: none;
  -webkit-appearance: none;
  width: auto !important;
  min-width: 44px;
  padding: 6px 8px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
}

.bcc-card-actions .bcc-select-design {
  border: 1px solid #06c755;
  background: #fff;
  color: #047857;
}

.bcc-card-actions .bcc-select-design.is-selected {
  background: #06c755;
  color: #fff;
}

.bcc-card-actions .bcc-select-design:disabled:not(.is-selected) {
  border-color: #d1d5db;
  background: #f3f4f6;
  color: #9ca3af;
  opacity: 1;
  cursor: not-allowed;
}

.bcc-card-actions .bcc-clear-design {
  display: none;
  align-items: center;
  justify-content: center;
  width: 24px !important;
  min-width: 24px;
  height: 24px;
  min-height: 24px;
  padding: 0;
  border: 1px solid #e5e7eb;
  border-radius: 999px;
  background: #fff;
  color: #6b7280;
  font-size: 0;
  cursor: pointer;
}

.bcc-card-actions .bcc-clear-design::before,
.bcc-card-actions .bcc-clear-design::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 1.5px;
  border-radius: 999px;
  background: currentColor;
}

.bcc-card-actions .bcc-clear-design::before {
  transform: rotate(45deg);
}

.bcc-card-actions .bcc-clear-design::after {
  transform: rotate(-45deg);
}

.bcc-card-actions .bcc-clear-design:not([hidden]) {
  display: inline-flex;
}

.bcc-card-actions.is-selected .bcc-clear-design {
  position: relative;
}
.bcc-selected-design-panel {
  display: none;
  align-items: center;
  gap: 8px;
  margin: 10px 0 0;
  padding: 10px 12px;
  border-radius: 14px;
  background: #ecfdf5;
  border: 1px solid #bbf7d0;
  color: #047857;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
}

.bcc-selected-design-panel.is-visible {
  display: flex;
}

.bcc-selected-design-panel span {
  flex: 0 0 auto;
}

.bcc-selected-design-panel strong {
  font-size: 15px;
  font-weight: 900;
  color: #065f46;
}

.bcc-clear-selected-design {
  appearance: none;
  -webkit-appearance: none;
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  min-width: 78px;
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid #fecaca;
  border-radius: 999px;
  background: #fff;
  color: #dc2626;
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
  box-shadow: none;
  -webkit-tap-highlight-color: transparent;
}

.bcc-clear-selected-design::before {
  content: "×";
  font-size: 16px;
  font-weight: 900;
  line-height: 1;
}

.bcc-clear-selected-design:hover {
  border-color: #ef4444;
  color: #b91c1c;
}

.bcc-clear-selected-design:active {
  transform: scale(0.97);
}

@media (max-width: 767px) {
  .bcc-selected-design-panel {
    gap: 8px;
    padding: 10px 12px;
    font-size: 13px;
  }

  .bcc-selected-design-panel strong {
    font-size: 14px;
  }

  .bcc-clear-selected-design {
    min-width: 82px;
    min-height: 42px;
    padding: 0 14px;
    font-size: 13px;
  }
}