@charset "UTF-8";

/* 法人・名入れカレンダーページ専用CSS */

.calendar-business-page,
.calendar-business-page * {
  box-sizing: border-box;
}

.calendar-business-page {
  padding-top: 75px;
  color: #171717;
  background: #fff;
  overflow: hidden;
}

.calendar-business-page img {
  display: block;
  width: 100%;
  height: auto;
}

.calendar-business-page a {
  color: inherit;
}

.calendar-business-page h1,
.calendar-business-page h2,
.calendar-business-page h3,
.calendar-business-page p,
.calendar-business-page figure,
.calendar-business-page dl,
.calendar-business-page dd {
  margin-top: 0;
}

.calendar-business-page h1,
.calendar-business-page h2,
.calendar-business-page h3 {
  text-align: left;
  letter-spacing: .02em;
}

.calendar-business-page h1,
.calendar-business-page h2 {
  font-size: var(--font-size-tl);
  font-weight: 500;
  line-height: 1.45;
}

.calendar-business-page h3 {
  font-size: var(--font-size-stl);
  font-weight: 500;
  line-height: 1.5;
}

.calendar-business-page p {
  font-size: var(--font-size);
  line-height: 1.8;
}

.bc-shell {
  position: relative;
  z-index: 1;
  width: min(1200px, 100%);
  margin: 0 auto;
}

.bc-kicker {
  margin: 0 0 24px;
  color: #6f7780;
  font-size: 12px !important;
  font-weight: 500;
  letter-spacing: .12em;
  line-height: 1.6 !important;
}

.bc-heading {
  max-width: 720px;
  margin-bottom: 62px;
}

.bc-heading h2 {
  margin-bottom: 28px;
}

.bc-heading > p:last-child {
  color: #626970;
}

.bc-heading--center {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.bc-heading--center h2 {
  text-align: center;
}

.bc-button {
  display: inline-flex;
  justify-content: center;
  gap: 18px;
  align-items: center;
  min-width: 285px;
  min-height: 68px;
  padding: 16px 28px;
  color: #171717 !important;
  background: #fff;
  border: 1px solid #171717;
  font-size: var(--font-size-s);
  font-weight: 500;
}

.bc-button--dark {
  color: #fff !important;
  background: #171717;
}

.bc-text-link {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  font-size: var(--font-size-s);
  font-weight: 500;
}

/* ファーストビュー */
.calendar-business-page .bc-hero {
  position: relative;
  padding: 105px 20px 0;
  background:
    linear-gradient(115deg, rgba(226, 233, 239, .82) 0 22%, rgba(226, 233, 239, 0) 55%),
    #f8f6f1;
}

.bc-hero::before {
  position: absolute;
  top: 0;
  right: -9%;
  width: 45%;
  height: 100%;
  content: "";
  background: rgba(246, 219, 210, .48);
  border-radius: 55% 0 0 45%;
}

.bc-hero__grid {
  display: grid;
  grid-template-columns: .88fr 1.12fr;
  gap: clamp(55px, 8vw, 120px);
  align-items: center;
  min-height: 700px;
  padding-bottom: 95px;
}

.bc-hero__label {
  margin-bottom: 22px;
  color: #244967;
  font-size: var(--font-size-s) !important;
  font-weight: 500;
}

.bc-hero h1 {
  margin-bottom: 38px;
}

.bc-hero__copy > p:not(.bc-kicker):not(.bc-hero__label) {
  margin-bottom: 20px;
  color: #5e6469;
}

.bc-hero__actions {
  display: flex;
  gap: 26px;
  align-items: center;
  margin-top: 40px;
}

.bc-hero__visual {
  position: relative;
  margin: 0;
  background: #fff;
  box-shadow: 16px 24px 52px rgba(41, 50, 57, .14);
}

.bc-hero__visual img {
  aspect-ratio: 1.4 / 1;
  object-fit: cover;
}

.bc-hero__visual figcaption {
  display: grid;
  grid-template-columns: 115px 1fr;
  gap: 22px;
  align-items: center;
  padding: 22px 25px;
  border-top: 1px solid #ddd8d2;
  font-size: var(--font-size-s);
  line-height: 1.65;
}

.bc-hero__visual figcaption span {
  color: #244967;
  font-size: 12px;
  letter-spacing: .08em;
}

.bc-hero__visual figcaption strong {
  font-weight: 500;
}

.bc-deadline {
  position: relative;
  z-index: 2;
  margin: 0 -20px;
  padding: 25px 20px;
  color: #fff;
  background: #173a58;
}

.bc-deadline__inner {
  display: grid;
  grid-template-columns: 240px 1fr auto;
  gap: 35px;
  align-items: center;
}

.bc-deadline p,
.bc-deadline strong,
.bc-deadline span {
  margin: 0;
}

.bc-deadline p,
.bc-deadline span {
  font-size: var(--font-size-s);
}

.bc-deadline strong {
  font-size: var(--font-size-stl);
  font-weight: 500;
}

.bc-deadline span {
  color: #ccd7e0;
}

/* 条件サマリー */
.calendar-business-page .bc-summary {
  padding: 105px 20px 115px;
  background: #fff;
}

.bc-summary h2 {
  margin-bottom: 48px;
}

.bc-summary__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid #d5d9dc;
  border-bottom: 1px solid #d5d9dc;
}

.bc-summary__grid article {
  min-height: 205px;
  padding: 30px 28px;
}

.bc-summary__grid article + article {
  border-left: 1px solid #d5d9dc;
}

.bc-summary__grid article > span {
  display: block;
  margin-bottom: 22px;
  color: #7d8993;
  font-size: 12px;
}

.bc-summary__grid h3 {
  margin-bottom: 14px;
  color: #244967;
  font-size: var(--font-size-s);
}

.bc-summary__grid p {
  margin: 0;
}

.bc-summary__grid strong {
  font-weight: 500;
}

/* 早期注文 */
.calendar-business-page .bc-early {
  padding: 82px 20px 90px;
  color: #fff;
  background: #b48621;
}

.bc-early__inner {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: clamp(70px, 9vw, 130px);
  align-items: center;
}

.bc-early .bc-kicker {
  color: #f6e8bd;
}

.bc-early h2 {
  margin-bottom: 0;
}

.bc-early__inner > div:last-child p {
  margin-bottom: 14px;
  color: #fffaf0;
}

.bc-early__inner small {
  display: block;
  margin-top: 20px;
  color: #f4e8ca;
  font-size: 12px;
  line-height: 1.7;
}

/* 名入れ仕上がり */
.calendar-business-page .bc-finish {
  padding: 140px 20px 150px;
  background: #f3f5f6;
}

.bc-finish__grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(70px, 9vw, 140px);
  align-items: center;
}

.bc-finish__visual {
  position: relative;
  padding: 35px 35px 115px;
  background: #fff;
  box-shadow: 10px 16px 36px rgba(42, 52, 59, .1);
}

.bc-finish__visual figure {
  margin: 0;
}

.bc-finish__visual img {
  aspect-ratio: 1 / 1;
  object-fit: contain;
}

.bc-name-sample {
  position: absolute;
  right: 35px;
  bottom: 30px;
  left: 35px;
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 3px 20px;
  align-items: center;
  min-height: 66px;
  padding: 12px 18px;
  background: #f8f8f6;
  border: 1px solid #d9d6d1;
  text-align: center;
}

.bc-name-sample span {
  grid-row: 1 / 3;
  color: #244967;
  font-size: 11px;
  letter-spacing: .08em;
}

.bc-name-sample strong {
  font-size: 16px;
  font-weight: 500;
}

.bc-name-sample small {
  color: #777;
  font-size: 10px;
}

.bc-finish__copy h2 {
  margin-bottom: 38px;
}

.bc-finish__copy > p:not(.bc-kicker) {
  margin-bottom: 24px;
  color: #626970;
}

.bc-finish__spec {
  margin-top: 38px;
  border-top: 1px solid #cdd3d7;
}

.bc-finish__spec div {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 20px;
  padding: 17px 0;
  border-bottom: 1px solid #cdd3d7;
  font-size: var(--font-size-s);
  line-height: 1.6;
}

.bc-finish__spec dt {
  color: #6e7780;
}

/* 価値 */
.calendar-business-page .bc-value {
  padding: 125px 20px 135px;
  color: #fff;
  background: #142e44;
}

.bc-value__grid {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 110px;
}

.bc-value .bc-kicker {
  color: #a7bbca;
}

.bc-value__grid > div:last-child p {
  margin-bottom: 26px;
  color: #d6e0e7;
}

/* 利用場面 */
.calendar-business-page .bc-scenes {
  padding: 125px 20px 140px;
  background: #f8f6f1;
}

.bc-scenes__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid #d7d4cf;
  border-bottom: 1px solid #d7d4cf;
}

.bc-scenes__grid article {
  min-height: 260px;
  padding: 32px 28px;
}

.bc-scenes__grid article + article {
  border-left: 1px solid #d7d4cf;
}

.bc-scenes__grid span,
.bc-flow__list span {
  display: block;
  margin-bottom: 34px;
  color: #59728a;
  font-size: 12px;
}

.bc-scenes__grid h3 {
  min-height: 82px;
  margin-bottom: 18px;
  font-size: var(--font-size);
}

.bc-scenes__grid p {
  color: #65696d;
  font-size: var(--font-size-s);
}

/* 掲載作品 */
.calendar-business-page .bc-works {
  padding: 135px 20px 145px;
  background: #fff;
}

.bc-works__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 44px 24px;
}

.bc-works__grid figure {
  margin: 0;
}

.bc-works__grid figure > div {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1 / 1;
  padding: 16px;
  overflow: hidden;
  background: #f4f2ee;
}

.bc-works__grid img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.bc-works__grid figcaption {
  display: flex;
  gap: 13px;
  align-items: baseline;
  padding-top: 14px;
  color: #2d3236;
  font-size: var(--font-size-s);
}

.bc-works__grid figcaption span {
  color: #75828c;
  font-size: 11px;
  letter-spacing: .08em;
}

.bc-works__pending figure {
  background: #f4f2ee;
}

.bc-works__pending figure,
.bc-works__pending > div > span {
  color: #9b9891;
}

.bc-works__pending > div > span {
  font-size: 24px;
  line-height: 1.7;
  text-align: center;
}

.bc-works__note {
  margin: 34px 0 18px;
  color: #777;
  font-size: 12px !important;
}

/* 3サイズ */
.calendar-business-page .bc-sizes {
  padding: 135px 20px 150px;
  background: #fff;
}

.bc-sizes__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.bc-sizes__grid article {
  padding: 30px 30px 36px;
  background: #f6f7f7;
  border-top: 3px solid #315e80;
}

.bc-sizes__grid figure {
  margin: 0 0 30px;
}

.bc-sizes__grid img {
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.bc-card-label {
  margin-bottom: 12px;
  color: #6b7f8f;
  font-size: 11px !important;
  letter-spacing: .12em;
}

.bc-sizes__grid h3 {
  margin-bottom: 18px;
}

.bc-sizes__grid article > p:not(.bc-card-label) {
  min-height: 82px;
  color: #626970;
  font-size: var(--font-size-s);
}

.bc-sizes__grid dl {
  margin-top: 25px;
  border-top: 1px solid #d2d7da;
}

.bc-sizes__grid dl div {
  display: grid;
  grid-template-columns: 95px 1fr;
  gap: 15px;
  padding: 14px 0;
  border-bottom: 1px solid #d2d7da;
  font-size: var(--font-size-s);
  line-height: 1.55;
}

.bc-sizes__grid dt {
  color: #747d84;
}

/* 仕様 */
.calendar-business-page .bc-spec {
  padding: 125px 20px 140px;
  background: #eaf0f4;
}

.bc-spec__grid {
  display: grid;
  grid-template-columns: .78fr 1.22fr;
  gap: 100px;
}

.bc-spec__heading h2 {
  margin-bottom: 30px;
}

.bc-spec__heading > p:not(.bc-kicker) {
  color: #5d6871;
}

.bc-spec__table dl {
  margin: 0;
  border-top: 1px solid #b7c4cd;
}

.bc-spec__table dl div {
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 25px;
  padding: 21px 0;
  border-bottom: 1px solid #b7c4cd;
  font-size: var(--font-size-s);
  line-height: 1.7;
}

.bc-spec__table dt {
  color: #526878;
}

/* 価格 */
.calendar-business-page .bc-price {
  padding: 125px 20px 140px;
  background: #fff;
}

.bc-price__heading {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: 100px;
  align-items: start;
  margin-bottom: 65px;
}

.bc-price h2 {
  margin-bottom: 30px;
}

.bc-price__heading > div:last-child > p {
  color: #626970;
}

.bc-price .bc-button {
  margin-top: 36px;
}

/* 電話・メールの問い合わせ導線 */
.bc-contact-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 34px;
  background: #eef3f6;
  border-top: 1px solid #c9d2d8;
  border-bottom: 1px solid #c9d2d8;
}

.bc-contact-option {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 0;
  min-height: 210px;
  padding: 27px 28px 25px;
}

.bc-contact-option + .bc-contact-option {
  border-left: 1px solid #c9d2d8;
}

.bc-contact-option p {
  margin-bottom: 0;
}

.bc-contact-option__label {
  color: #28506e !important;
  font-size: var(--font-size-s) !important;
  font-weight: 500;
  line-height: 1.6 !important;
}

.bc-contact-option__value {
  margin-top: 17px;
  color: #171717 !important;
  font-size: var(--font-size-stl) !important;
  font-weight: 500;
  letter-spacing: .01em;
  line-height: 1.45 !important;
  overflow-wrap: anywhere;
}

.bc-contact-option__value--email {
  font-size: clamp(13px, 1.28vw, 18px) !important;
}

.bc-contact-option__meta {
  margin-top: 8px;
  color: #687078 !important;
  font-size: 11px !important;
  line-height: 1.7 !important;
}

.bc-contact-option__link {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  margin-top: auto;
  padding-top: 18px;
  color: #28506e !important;
  font-size: var(--font-size-s);
  font-weight: 500;
  text-decoration: none;
}

.bc-contact-options__note {
  margin: 22px 0 0;
  color: #687078 !important;
  font-size: var(--font-size-s) !important;
}

.bc-contact-options--bottom {
  background: rgba(238, 243, 246, .88);
}

.bc-price__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.bc-price__cards article {
  overflow: hidden;
  background: #f8f6f1;
  border: 1px solid #dedad4;
}

.bc-price__product {
  padding: 27px 25px 24px;
  color: #fff;
  background: #244967;
}

.bc-price__product span {
  display: block;
  margin-bottom: 9px;
  color: #b7cbd9;
  font-size: 10px;
  letter-spacing: .12em;
}

.bc-price__product h3 {
  margin-bottom: 6px;
  color: #fff;
  font-size: var(--font-size);
}

.bc-price__product p {
  margin: 0;
  color: #dbe4ea;
  font-size: 12px;
}

.bc-price table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}

.bc-price caption {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.bc-price th,
.bc-price td {
  padding: 15px 10px;
  border-bottom: 1px solid #d8d4ce;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.5;
  text-align: right;
  white-space: nowrap;
}

.bc-price thead th {
  color: #65717a;
  background: #efede8;
  font-size: 11px;
}

.bc-price th:first-child {
  width: 36%;
  padding-left: 18px;
  text-align: left;
}

.bc-price td:last-child,
.bc-price th:last-child {
  padding-right: 18px;
}

.bc-price__notes {
  margin-top: 28px;
  padding: 24px 28px;
  background: #f4f6f7;
}

.bc-price__notes p {
  margin: 0 0 7px;
  color: #666d72;
  font-size: 12px;
  line-height: 1.7;
}

.bc-price__notes p:last-child {
  margin-bottom: 0;
}

/* 注文の流れ */
.calendar-business-page .bc-flow {
  padding: 125px 20px 140px;
  background: #f7f8f8;
}

.bc-flow__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 0;
  padding: 0;
  border-top: 1px solid #cdd3d7;
  list-style: none;
}

.bc-flow__list li {
  position: relative;
  min-height: 245px;
  padding: 30px 35px;
  border-right: 1px solid #cdd3d7;
  border-bottom: 1px solid #cdd3d7;
}

.bc-flow__list li:nth-child(3n+1) {
  border-left: 1px solid #cdd3d7;
}

.bc-flow__list h3 {
  margin-bottom: 17px;
  font-size: var(--font-size);
}

.bc-flow__list p {
  color: #656b70;
  font-size: var(--font-size-s);
}

/* スケジュール */
.calendar-business-page .bc-schedule {
  padding: 120px 20px 130px;
  color: #fff;
  background: #142e44;
}

.bc-schedule__grid {
  display: grid;
  grid-template-columns: .78fr 1.22fr;
  gap: 100px;
}

.bc-schedule .bc-kicker {
  color: #a7bbca;
}

.bc-schedule__grid > div > p:not(.bc-kicker) {
  color: #cfdae2;
}

.bc-schedule ol {
  margin: 0;
  padding: 0;
  border-top: 1px solid #496276;
  list-style: none;
}

.bc-schedule li {
  display: grid;
  grid-template-columns: 145px 1fr;
  gap: 28px;
  padding: 25px 0;
  border-bottom: 1px solid #496276;
}

.bc-schedule li > span {
  color: #adc0ce;
  font-size: var(--font-size-s);
  line-height: 1.55;
}

.bc-schedule h3 {
  margin-bottom: 8px;
  font-size: var(--font-size);
}

.bc-schedule li p {
  margin: 0;
  color: #cfdae2;
  font-size: var(--font-size-s);
}

/* FAQ */
.calendar-business-page .bc-faq {
  padding: 125px 20px 135px;
  background: #fff;
}

.bc-faq__grid {
  display: grid;
  grid-template-columns: .7fr 1.3fr;
  gap: 90px;
}

.bc-faq__list {
  border-top: 1px solid #d5d9dc;
}

.bc-faq details {
  padding: 25px 0;
  border-bottom: 1px solid #d5d9dc;
}

.bc-faq summary {
  position: relative;
  padding: 0 42px 0 35px;
  font-size: var(--font-size);
  line-height: 1.7;
  cursor: pointer;
  list-style: none;
}

.bc-faq summary::-webkit-details-marker {
  display: none;
}

.bc-faq summary::before {
  position: absolute;
  top: 2px;
  left: 0;
  content: "Q";
  color: #315e80;
  font-size: var(--font-size-s);
}

.bc-faq summary::after {
  position: absolute;
  top: 50%;
  right: 8px;
  content: "+";
  color: #6d7e8a;
  transform: translateY(-50%);
}

.bc-faq details[open] summary::after {
  content: "−";
}

.bc-faq details p {
  margin: 20px 0 0 35px;
  color: #646a6f;
  font-size: var(--font-size-s);
}

/* 問い合わせ */
.calendar-business-page .bc-contact {
  padding: 125px 20px 140px;
  background:
    radial-gradient(circle at 13% 65%, rgba(241, 211, 204, .62) 0, rgba(241, 211, 204, 0) 38%),
    #f7f2ed;
}

.bc-contact__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(360px, 1fr);
  gap: 70px;
}

.bc-contact h2 {
  margin-bottom: 30px;
}

.bc-contact__inner > div:first-child > p:not(.bc-kicker) {
  color: #625f5b;
}

.bc-contact .bc-button {
  margin-top: 38px;
}

.bc-contact__checklist {
  padding: 35px 40px;
  background: rgba(255, 255, 255, .72);
  border: 1px solid #ddd5ce;
}

.bc-contact__checklist > p {
  margin-bottom: 22px;
  color: #244967;
  font-size: var(--font-size-s);
  font-weight: 500;
}

.bc-contact__checklist ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 13px 30px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.bc-contact__checklist li {
  position: relative;
  padding-left: 18px;
  font-size: var(--font-size-s);
}

.bc-contact__checklist li::before {
  position: absolute;
  top: .65em;
  left: 0;
  width: 5px;
  height: 5px;
  content: "";
  background: #315e80;
}

.bc-contact__pdf {
  display: block;
  margin-top: 30px;
  padding-top: 24px;
  color: inherit !important;
  border-top: 1px solid #d9d2cb;
  text-decoration: none;
}

.bc-contact__pdf span,
.bc-contact__pdf small {
  display: block;
}

.bc-contact__pdf span {
  margin-bottom: 8px;
  font-size: var(--font-size-s);
}

.bc-contact__pdf small {
  color: #777;
  font-size: 11px;
}

.bc-contact__pdf b {
  display: inline-block;
  margin-top: 15px;
  color: #28506e;
  font-size: var(--font-size-s);
  font-weight: 500;
}

/* 関連ページ */
.calendar-business-page .bc-related {
  padding: 90px 20px 100px;
  background: #f1f3f4;
}

.bc-related h2 {
  margin-bottom: 42px;
  font-size: var(--font-size-stl);
}

.bc-related__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid #cbd1d5;
  border-bottom: 1px solid #cbd1d5;
}

.bc-related__grid a {
  position: relative;
  min-height: 155px;
  padding: 30px 50px 30px 28px;
}

.bc-related__grid a + a {
  border-left: 1px solid #cbd1d5;
}

.bc-related__grid span,
.bc-related__grid small {
  display: block;
}

.bc-related__grid span {
  margin-bottom: 14px;
  font-size: var(--font-size);
  font-weight: 500;
}

.bc-related__grid small {
  color: #656c71;
  font-size: 13px;
  line-height: 1.7;
}

.bc-related__grid b {
  position: absolute;
  right: 25px;
  bottom: 27px;
  font-weight: 400;
}

.bc-breadcrumb {
  padding: 0 20px;
  background: #fff;
  border-top: 1px solid #d5d9dc;
}

.bc-breadcrumb ul {
  display: flex;
  gap: 22px;
  width: min(1200px, 100%);
  margin: 0 auto;
  padding: 30px 0;
  overflow: auto;
  list-style: none;
  white-space: nowrap;
}

.bc-breadcrumb li {
  color: #777;
  font-size: 12px;
}

.bc-breadcrumb li + li::before {
  margin-right: 22px;
  content: ">";
}

@media screen and (min-width: 769px) {
  .calendar-business-page a:hover {
    color: #748594;
  }

  .bc-button:hover {
    color: #fff !important;
    background: #171717;
  }

  .bc-button--dark:hover {
    background: #39434a;
  }

  .bc-contact-option__link:hover {
    color: #748594 !important;
  }

  .bc-contact__pdf:hover b {
    color: #748594;
  }
}

@media screen and (min-width: 769px) and (max-width: 1100px) {
  .bc-contact__inner {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .bc-contact-options--bottom {
    max-width: 700px;
  }
}

@media screen and (max-width: 768px) {
  .calendar-business-page {
    padding-top: 58px;
  }

  .calendar-business-page h1,
  .calendar-business-page h2 {
    font-size: var(--font-size-tl);
  }

  .calendar-business-page h3 {
    font-size: var(--font-size-stl);
  }

  .calendar-business-page p {
    font-size: var(--font-size);
  }

  .bc-heading {
    margin-bottom: 45px;
  }

  .calendar-business-page .bc-hero {
    padding: 75px 35px 0;
  }

  .bc-hero::before {
    top: auto;
    right: -35%;
    bottom: 150px;
    width: 100%;
    height: 42%;
  }

  .bc-hero__grid,
  .bc-finish__grid,
  .bc-value__grid,
  .bc-early__inner,
  .bc-spec__grid,
  .bc-price__heading,
  .bc-schedule__grid,
  .bc-contact__inner {
    display: flex;
    flex-direction: column;
    gap: 48px;
    min-height: 0;
  }

  .bc-hero__grid {
    padding-bottom: 65px;
  }

  .bc-hero h1 {
    margin-bottom: 28px;
  }

  .bc-hero__actions {
    display: block;
    margin-top: 32px;
  }

  .bc-hero__actions .bc-button {
    width: 100%;
    margin-bottom: 22px;
  }

  .bc-hero__visual figcaption {
    display: block;
  }

  .bc-hero__visual figcaption span {
    display: block;
    margin-bottom: 8px;
  }

  .bc-deadline {
    margin: 0 -35px;
    padding: 27px 35px;
  }

  .bc-deadline__inner {
    display: block;
  }

  .bc-deadline strong,
  .bc-deadline span {
    display: block;
  }

  .bc-deadline strong {
    margin: 8px 0;
  }

  .calendar-business-page .bc-summary,
  .calendar-business-page .bc-early,
  .calendar-business-page .bc-finish,
  .calendar-business-page .bc-value,
  .calendar-business-page .bc-scenes,
  .calendar-business-page .bc-works,
  .calendar-business-page .bc-sizes,
  .calendar-business-page .bc-spec,
  .calendar-business-page .bc-price,
  .calendar-business-page .bc-flow,
  .calendar-business-page .bc-schedule,
  .calendar-business-page .bc-faq,
  .calendar-business-page .bc-contact {
    padding: 88px 35px 100px;
  }

  .bc-summary h2 {
    margin-bottom: 32px;
  }

  .bc-summary__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .bc-summary__grid article {
    min-height: 175px;
    padding: 25px 20px;
  }

  .bc-summary__grid article:nth-child(3) {
    border-top: 1px solid #d5d9dc;
    border-left: 0;
  }

  .bc-summary__grid article:nth-child(4) {
    border-top: 1px solid #d5d9dc;
  }

  .bc-finish__visual {
    padding: 22px 22px 112px;
  }

  .bc-name-sample {
    right: 22px;
    bottom: 24px;
    left: 22px;
    display: block;
  }

  .bc-name-sample span,
  .bc-name-sample strong,
  .bc-name-sample small {
    display: block;
  }

  .bc-name-sample span {
    margin-bottom: 5px;
  }

  .bc-finish__spec div {
    grid-template-columns: 115px 1fr;
  }

  .bc-scenes__grid,
  .bc-sizes__grid {
    display: block;
  }

  .bc-scenes__grid article {
    min-height: 0;
    padding: 28px 0;
  }

  .bc-scenes__grid article + article {
    border-top: 1px solid #d7d4cf;
    border-left: 0;
  }

  .bc-scenes__grid h3 {
    min-height: 0;
  }

  .bc-works__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 34px 16px;
  }

  .bc-works__grid figure > div {
    padding: 10px;
  }

  .bc-sizes__grid article {
    margin-bottom: 28px;
    padding: 25px 25px 32px;
  }

  .bc-sizes__grid article:last-child {
    margin-bottom: 0;
  }

  .bc-sizes__grid article > p:not(.bc-card-label) {
    min-height: 0;
  }

  .bc-spec__table dl div {
    display: block;
    padding: 18px 0;
  }

  .bc-spec__table dt {
    margin-bottom: 8px;
  }

  .bc-price .bc-button,
  .bc-contact .bc-button {
    width: 100%;
  }

  .bc-price__heading {
    margin-bottom: 48px;
  }

  .bc-contact-options {
    grid-template-columns: 1fr;
  }

  .bc-contact-option {
    min-height: 190px;
    padding: 25px 24px 23px;
  }

  .bc-contact-option + .bc-contact-option {
    border-top: 1px solid #c9d2d8;
    border-left: 0;
  }

  .bc-contact-option__value--email {
    font-size: var(--font-size) !important;
  }

  .bc-price__cards {
    display: block;
  }

  .bc-price__cards article {
    margin-bottom: 28px;
  }

  .bc-price__cards article:last-child {
    margin-bottom: 0;
  }

  .bc-price__notes {
    padding: 22px 20px;
  }

  .bc-flow__list {
    display: block;
    border-left: 1px solid #cdd3d7;
  }

  .bc-flow__list li {
    min-height: 0;
    padding: 27px 25px;
    border-left: 0 !important;
  }

  .bc-flow__list span {
    margin-bottom: 18px;
  }

  .bc-schedule li {
    grid-template-columns: 100px 1fr;
    gap: 20px;
  }

  .bc-faq__grid {
    display: block;
  }

  .bc-faq__list {
    margin-top: 42px;
  }

  .bc-faq summary {
    padding-left: 28px;
  }

  .bc-faq details p {
    margin-left: 28px;
  }

  .bc-contact__checklist {
    padding: 27px 25px;
  }

  .bc-contact__checklist ul {
    grid-template-columns: 1fr;
  }

  .calendar-business-page .bc-related {
    padding: 78px 35px 88px;
  }

  .bc-related__grid {
    display: block;
  }

  .bc-related__grid a {
    display: block;
    min-height: 145px;
    padding: 27px 40px 27px 0;
  }

  .bc-related__grid a + a {
    border-top: 1px solid #cbd1d5;
    border-left: 0;
  }

  .bc-related__grid b {
    right: 5px;
  }

  .bc-breadcrumb {
    padding: 0 35px;
  }

  .bc-breadcrumb ul {
    gap: 12px;
  }

  .bc-breadcrumb li + li::before {
    margin-right: 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .calendar-business-page *,
  .calendar-business-page *::before,
  .calendar-business-page *::after {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}
