/*
Theme Name: BTR Mock 3
Author: BTR
Version: 0.1.0
Text Domain: btr-mock-3
*/

.btr-header-part {
  position: sticky;
  top: 0;
  z-index: 1000;
}

.btr-header {
  position: relative;
  width: 100%;
  background: #008e8e;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

body.admin-bar .btr-header-part {
  top: 32px;
}

.btr-hero,
.btr-service,
.btr-price,
.btr-faq,
.btr-flow,
.btr-company,
.btr-contact {
  scroll-margin-top: 80px;
}

html {
  scroll-behavior: smooth;
}

.btr-header *,
.btr-header *::before,
.btr-header *::after {
  box-sizing: border-box;
}

body.btr-mobile-menu-open {
  overflow: hidden;
}

.btr-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 80px;
  padding: 0 40px;
  gap: 32px;
}

.btr-header__left {
  display: flex;
  flex: 1 1 auto;
  align-items: center;
  min-width: 0;
  gap: 48px;
}

.btr-header__brand {
  display: block;
  flex: 0 0 auto;
  width: 155px;
  height: 36px;
  text-decoration: none;
}

.btr-header__brand-mark {
  display: block;
  width: 100%;
  height: 100%;
  background: url("assets/images/logo.svg") center / contain no-repeat;
}

.btr-header__nav {
  display: flex;
  align-items: center;
  gap: 24px;
  white-space: nowrap;
}

.btr-header__nav a,
.btr-header__mobile-nav a {
  color: #fff;
  font-family: "Noto Sans JP", "Hiragino Sans", "Yu Gothic", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
  text-decoration: none;
}

.btr-header__nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 6px 0;
  transition:
    color 0.18s ease,
    opacity 0.18s ease;
}

.btr-header__nav a::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  border-radius: 999px;
  background: #ffdb5b;
  content: "";
  opacity: 0;
  transform: scaleX(0);
  transform-origin: left center;
  transition:
    opacity 0.18s ease,
    transform 0.24s cubic-bezier(0.4, 0, 0.2, 1);
}

.btr-header__nav a:hover,
.btr-header__nav a:focus-visible {
  color: #fff;
  opacity: 0.86;
  text-decoration: none;
}

.btr-header__nav a:hover::after,
.btr-header__nav a:focus-visible::after {
  opacity: 1;
  transform: scaleX(1);
}

.btr-header__cta {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  width: 260px;
  height: 50px;
  padding: 0 16px;
  border-radius: 30px;
  background: #ffdb5b;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  color: #000;
  font-family: "Noto Sans JP", "Hiragino Sans", "Yu Gothic", sans-serif;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
}

.btr-header__cta span:first-child {
  flex: 1 1 auto;
}

.btr-header__cta::before {
  display: block;
  flex: 0 0 18px;
  width: 18px;
  height: 18px;
  content: "";
}

.btr-header__cta-icon {
  display: block;
  flex: 0 0 18px;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: #fff url("assets/images/arrow.svg") center / 5px 8px no-repeat;
}

.btr-header__drawer {
  display: none;
  flex: 0 0 auto;
}

.btr-header__menu-button {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  list-style: none;
}

.btr-header__menu-button::-webkit-details-marker {
  display: none;
}

.btr-header__menu-button::marker {
  content: "";
}

.btr-header__menu-button span {
  position: absolute;
  left: 2px;
  display: block;
  width: 32px;
  height: 2px;
  background: #fff;
  transition:
    top 0.24s ease,
    opacity 0.18s ease,
    transform 0.24s cubic-bezier(0.4, 0, 0.2, 1);
}

.btr-header__menu-button span:nth-child(1) {
  top: 7px;
}

.btr-header__menu-button span:nth-child(2) {
  top: 17px;
}

.btr-header__menu-button span:nth-child(3) {
  top: 27px;
}

.btr-header__drawer.is-open .btr-header__menu-button span {
  top: 17px;
}

.btr-header__drawer.is-open .btr-header__menu-button span:nth-child(1) {
  transform: rotate(45deg);
}

.btr-header__drawer.is-open .btr-header__menu-button span:nth-child(2) {
  opacity: 0;
}

.btr-header__drawer.is-open .btr-header__menu-button span:nth-child(3) {
  transform: rotate(-45deg);
}

.btr-header__mobile-panel {
  position: absolute;
  top: 100%;
  right: 0;
  left: 0;
  z-index: 1;
  display: flex;
  width: 100%;
  height: calc(100vh - 60px);
  height: calc(100dvh - 60px);
  flex-direction: column;
  overflow-y: auto;
  background: #fff;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-12px);
  transition:
    opacity 0.22s ease,
    transform 0.26s cubic-bezier(0.4, 0, 0.2, 1),
    visibility 0s linear 0.26s;
  visibility: hidden;
}

.btr-header__drawer.is-open .btr-header__mobile-panel {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  transition-delay: 0s;
  visibility: visible;
}

.btr-header__mobile-nav {
  display: flex;
  flex: 0 0 auto;
  flex-direction: column;
  border-top: 1px solid #e5e7eb;
  background: #fff;
}

.btr-header__mobile-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 56px;
  padding: 0 24px;
  border-bottom: 1px solid #e5e7eb;
  color: #000 !important;
  font-family: "Noto Sans JP", "Hiragino Sans", "Yu Gothic", sans-serif;
  font-size: 16px !important;
  font-weight: 400;
  line-height: 1.2 !important;
  text-decoration: none;
  opacity: 0;
  transform: translateY(-8px);
  transition:
    opacity 0.24s ease,
    transform 0.28s cubic-bezier(0.4, 0, 0.2, 1),
    background-color 0.18s ease;
}

.btr-header__drawer.is-open .btr-header__mobile-link {
  opacity: 1;
  transform: translateY(0);
}

.btr-header__drawer.is-open .btr-header__mobile-link:nth-child(1) {
  transition-delay: 0.03s;
}

.btr-header__drawer.is-open .btr-header__mobile-link:nth-child(2) {
  transition-delay: 0.06s;
}

.btr-header__drawer.is-open .btr-header__mobile-link:nth-child(3) {
  transition-delay: 0.09s;
}

.btr-header__drawer.is-open .btr-header__mobile-link:nth-child(4) {
  transition-delay: 0.12s;
}

.btr-header__drawer.is-open .btr-header__mobile-link:nth-child(5) {
  transition-delay: 0.15s;
}

.btr-header__drawer.is-open .btr-header__mobile-link:nth-child(6) {
  transition-delay: 0.18s;
}

.btr-header__drawer.is-open .btr-header__mobile-link:nth-child(7) {
  transition-delay: 0.21s;
}

.btr-header__mobile-link:hover,
.btr-header__mobile-link:focus-visible {
  text-decoration: none;
}

.btr-header__mobile-arrow {
  position: relative;
  display: block;
  flex: 0 0 18px;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: #008e8e;
}

.btr-header__mobile-arrow::before {
  position: absolute;
  top: 5px;
  left: 6px;
  width: 6px;
  height: 6px;
  border-right: 1.5px solid #fff;
  border-bottom: 1.5px solid #fff;
  content: "";
  transform: rotate(45deg);
}

.btr-header__mobile-cta-area {
  display: flex;
  min-height: 203px;
  flex: 1 0 auto;
  flex-direction: column;
  align-items: center;
  padding: 36px 24px;
  gap: 20px;
  background: #f8f9fa;
  opacity: 0;
  transform: translateY(-8px);
  transition:
    opacity 0.24s ease 0.2s,
    transform 0.28s cubic-bezier(0.4, 0, 0.2, 1) 0.2s;
}

.btr-header__drawer.is-open .btr-header__mobile-cta-area {
  opacity: 1;
  transform: translateY(0);
}

.btr-header__mobile-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(350px, calc(100vw - 48px));
  height: 50px;
  padding: 0 16px;
  border-radius: 30px;
  background: #ffdb5b;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  color: #000 !important;
  font-family: "Noto Sans JP", "Hiragino Sans", "Yu Gothic", sans-serif;
  font-size: 15px !important;
  font-weight: 700 !important;
  line-height: 1.2 !important;
  text-align: center;
  text-decoration: none;
}

.btr-header__mobile-cta::before {
  display: block;
  flex: 0 0 18px;
  width: 18px;
  height: 18px;
  content: "";
}

.btr-header__mobile-cta span:first-child {
  flex: 1 1 auto;
}

.btr-header__mobile-contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.btr-header__mobile-phone {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #008e8e;
  font-family: "Noto Sans JP", "Hiragino Sans", "Yu Gothic", sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.4;
  text-decoration: none;
}

.btr-header__phone-icon {
  display: block;
  flex: 0 0 16px;
  width: 16px;
  height: 16px;
  background: url("assets/images/tel.svg") center / contain no-repeat;
}

.btr-header__mobile-contact p {
  margin: 0;
  color: #555;
  font-family: "Noto Sans JP", "Hiragino Sans", "Yu Gothic", sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.6;
}

.btr-hero {
  position: relative;
  display: flex;
  width: 100%;
  min-height: 600px;
  margin-block-start: 0;
  overflow: hidden;
  background: #fff;
  isolation: isolate;
}

.btr-hero::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(90deg, #0b0b1a 0%, rgba(0, 0, 0, 0) 100%),
    url("assets/images/hero-bg.jpg") center center / cover no-repeat;
  content: "";
}

.btr-hero *,
.btr-hero *::before,
.btr-hero *::after {
  box-sizing: border-box;
}

.btr-hero__content {
  position: relative;
  z-index: 1;
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: flex-start;
  padding: 140px 80px 0;
}

.btr-hero__copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.1));
}

.btr-hero__copy picture,
.btr-hero__copy img {
  display: block;
}

.btr-hero__maintext {
  width: min(920px, calc(100vw - 160px));
  height: auto;
}

.btr-hero__subtext {
  width: min(636px, calc(100vw - 160px));
  height: auto;
}

.btr-hero__badge {
  position: absolute;
  right: clamp(24px, 3.2vw, 46px);
  bottom: 27px;
  z-index: 1;
  display: block;
  width: 202px;
  height: auto;
}

.btr-hero__cta {
  display: none;
}

.btr-hero__cta-icon {
  display: block;
  flex: 0 0 18px;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: #fff url("assets/images/arrow.svg") center / 5px 8px no-repeat;
}

.btr-header__cta,
.btr-header__mobile-cta,
.btr-hero__cta,
.btr-contact__button {
  transition: opacity 0.18s ease;
}

.btr-header__cta-icon,
.btr-hero__cta-icon,
.btr-contact__arrow,
.btr-contact__submit-wrap::before,
.btr-contact__submit-wrap::after {
  transition:
    opacity 0.18s ease,
    transform 0.18s cubic-bezier(0.4, 0, 0.2, 1);
}

.btr-header__cta:hover,
.btr-header__cta:focus-visible,
.btr-header__mobile-cta:hover,
.btr-header__mobile-cta:focus-visible,
.btr-hero__cta:hover,
.btr-hero__cta:focus-visible,
.btr-contact__button:not(:disabled):hover,
.btr-contact__button:not(:disabled):focus-visible {
  opacity: 0.82;
}

.btr-header__cta:hover .btr-header__cta-icon,
.btr-header__cta:focus-visible .btr-header__cta-icon,
.btr-header__mobile-cta:hover .btr-header__cta-icon,
.btr-header__mobile-cta:focus-visible .btr-header__cta-icon,
.btr-hero__cta:hover .btr-hero__cta-icon,
.btr-hero__cta:focus-visible .btr-hero__cta-icon,
.btr-contact__button:not(:disabled):hover .btr-contact__arrow,
.btr-contact__button:not(:disabled):focus-visible .btr-contact__arrow {
  transform: translateX(4px);
}

.btr-contact__submit-wrap:has(.btr-contact__button:not(:disabled):hover)::after,
.btr-contact__submit-wrap:has(.btr-contact__button:not(:disabled):focus-visible)::after {
  opacity: 0.82;
  transform: translate(4px, -50%);
}

.btr-contact__submit-wrap:has(.btr-contact__button:not(:disabled):hover)::before,
.btr-contact__submit-wrap:has(.btr-contact__button:not(:disabled):focus-visible)::before {
  opacity: 0.82;
  transform: translate(4px, -50%);
}

.btr-about {
  box-sizing: border-box;
  display: flex;
  width: 100%;
  margin-block-start: 0;
  justify-content: center;
  padding: 80px 0;
  background: #fff;
  color: #000;
  font-family: "Noto Sans JP", "Hiragino Sans", "Yu Gothic", sans-serif;
  isolation: isolate;
}

.btr-about *,
.btr-about *::before,
.btr-about *::after {
  box-sizing: border-box;
}

.btr-about__container {
  display: flex;
  width: min(1180px, calc(100% - 80px));
  align-items: flex-start;
  gap: clamp(32px, 4.45vw, 64px);
  min-width: 0;
}

.btr-about__copy {
  display: flex;
  width: auto;
  max-width: 596px;
  min-width: 0;
  flex: 1 1 596px;
  flex-direction: column;
  align-items: flex-start;
  gap: 40px;
}

.btr-about__heading {
  display: flex;
  width: min(480px, 100%);
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

.btr-about__eyebrow {
  margin: 0;
  color: #008e8e;
  font-family: "Outfit", "Noto Sans JP", sans-serif;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.25;
}

.btr-about__heading h2 {
  margin: 0;
  color: #000;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.3;
}

.btr-about__text {
  margin: 0;
  color: #000;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
}

.btr-about__features {
  display: flex;
  margin: 0;
  padding: 0;
  align-items: flex-start;
  gap: 32px;
  list-style: none;
}

.btr-about__feature {
  display: flex;
  width: 64px;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: #000;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
  text-align: center;
  white-space: nowrap;
}

.btr-about__feature-icon {
  display: flex;
  width: 64px;
  height: 64px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #e8f0ee;
}

.btr-about__feature-icon img {
  display: block;
  width: 32px;
  height: 32px;
}

.btr-about__media {
  position: relative;
  width: auto;
  max-width: 520px;
  min-width: 0;
  height: auto;
  aspect-ratio: 520 / 441;
  flex: 1 1 520px;
}

.btr-about__photo {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  object-fit: cover;
}

.btr-about__badge {
  position: absolute;
  top: 24px;
  right: 14px;
  display: block;
  width: min(210px, 41%);
  height: auto;
}

.btr-image-area-1 {
  box-sizing: border-box;
  width: 100%;
  height: 380px;
  margin-block-start: 0;
  margin-block-end: 0;
  overflow: hidden;
}

.btr-image-area-1 img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.btr-values {
  box-sizing: border-box;
  display: flex;
  width: 100%;
  margin-block-start: 0;
  flex-direction: column;
  align-items: center;
  padding: 80px 0;
  gap: 40px;
  background: url("assets/images/values-bg.png") center center / cover no-repeat;
  color: #000;
  font-family: "Noto Sans JP", "Hiragino Sans", "Yu Gothic", sans-serif;
}

.btr-values *,
.btr-values *::before,
.btr-values *::after {
  box-sizing: border-box;
}

.btr-values__heading {
  display: flex;
  width: min(900px, calc(100% - 80px));
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}

.btr-values__eyebrow {
  margin: 0;
  color: #008e8e;
  font-family: "Outfit", "Noto Sans JP", sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 3px;
  line-height: 1.25;
}

.btr-values__heading h2 {
  margin: 0;
  color: #000;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.3;
}

.btr-values__heading h2 span {
  color: #008e8e;
}

.btr-values__mobile-break {
  display: none;
}

.btr-values__lead {
  margin: 0;
  color: #000;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
}

.btr-values__cards {
  display: grid;
  width: min(1100px, calc(100% - 80px));
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
}

.btr-values__card {
  position: relative;
  display: flex;
  min-width: 0;
  min-height: 405px;
  margin: 0;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  background: #fff;
  isolation: isolate;
}

.btr-values__image {
  width: 100%;
  height: 180px;
  flex: 0 0 180px;
  overflow: hidden;
}

.btr-values__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.btr-values__number {
  position: absolute;
  top: 154px;
  left: 50%;
  z-index: 2;
  display: flex;
  width: 52px;
  height: 52px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #008e8e;
  box-shadow: 0 4px 10px rgba(0, 143, 143, 0.1);
  color: #fff;
  font-family: "Outfit", "Noto Sans JP", sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  transform: translateX(-50%);
}

.btr-values__body {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  align-items: center;
  padding: 32px 32px 40px;
  gap: 16px;
}

.btr-values__body h3 {
  display: flex;
  min-height: 71px;
  margin: 0;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  text-align: center;
}

.btr-values__body h3 span {
  color: #555;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
}

.btr-values__body h3 strong {
  color: #008e8e;
  font-size: 26px;
  font-weight: 700;
  line-height: 1.2;
}

.btr-values__body p {
  width: 100%;
  margin: 0;
  color: #000;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
}

.btr-values__desc-mobile {
  display: none;
}

.btr-service {
  box-sizing: border-box;
  display: flex;
  width: 100%;
  margin-block-start: 0;
  flex-direction: column;
  align-items: center;
  padding: 80px 0;
  background: #fff;
  color: #000;
  font-family: "Noto Sans JP", "Hiragino Sans", "Yu Gothic", sans-serif;
}

.btr-service *,
.btr-service *::before,
.btr-service *::after {
  box-sizing: border-box;
}

.btr-service__container {
  display: flex;
  width: min(1180px, calc(100% - 80px));
  flex-direction: column;
  align-items: flex-start;
  gap: 32px;
}

.btr-service__heading {
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}

.btr-service__title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.btr-service__eyebrow {
  margin: 0;
  color: #008e8e;
  font-family: "Outfit", "Noto Sans JP", sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 3px;
  line-height: 1.25;
}

.btr-service__heading h2 {
  margin: 0;
  color: #000;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.3;
}

.btr-service__lead {
  margin: 0;
  color: #000;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
}

.btr-service__cards {
  display: grid;
  width: 100%;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 16px;
}

.btr-service__card {
  display: flex;
  min-width: 0;
  min-height: 333px;
  margin: 0;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  background: #fff;
}

.btr-service__image {
  width: 100%;
  height: 180px;
  flex: 0 0 180px;
  overflow: hidden;
  background: #f8f8f8;
}

.btr-service__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.btr-service__body {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  align-items: flex-start;
  padding: 24px;
  gap: 12px;
}

.btr-service__body h3 {
  margin: 0;
  color: #008e8e;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.6;
}

.btr-service__body p {
  margin: 0;
  color: #000;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
}

.btr-service__note {
  width: min(605px, 100%);
  margin: 0;
  color: #555;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.6;
}

.btr-margin {
  box-sizing: border-box;
  display: flex;
  width: 100%;
  margin-block-start: 0;
  flex-direction: column;
  align-items: center;
  padding: 80px 0 100px;
  background: #12343d url("assets/images/margin-bg.png") center center / cover no-repeat;
  color: #fff;
  font-family: "Noto Sans JP", "Hiragino Sans", "Yu Gothic", sans-serif;
}

.btr-margin *,
.btr-margin *::before,
.btr-margin *::after {
  box-sizing: border-box;
}

.btr-margin__container {
  display: flex;
  width: min(1180px, calc(100% - 80px));
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

.btr-margin__heading {
  display: flex;
  width: min(900px, 100%);
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}

.btr-margin__eyebrow {
  margin: 0;
  color: #ffdb5b;
  font-family: "Outfit", "Noto Sans JP", sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 3px;
  line-height: 1.25;
}

.btr-margin__heading h2 {
  display: flex;
  margin: 0;
  flex-direction: column;
  color: #fff;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.3;
}

.btr-margin__title-accent {
  color: #ffdb5b;
}

.btr-margin__heading p:not(.btr-margin__eyebrow) {
  margin: 0;
  color: rgba(255, 255, 255, 0.95);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
}

.btr-margin__diagram {
  display: flex;
  width: 100%;
  flex-direction: column;
  gap: 40px;
  filter: drop-shadow(0 4px 24px rgba(0, 0, 0, 0.08));
}

.btr-margin__comparison {
  display: grid;
  width: 100%;
  grid-template-columns: repeat(auto-fit, minmax(420px, 1fr));
  gap: 40px;
  align-items: stretch;
}

.btr-margin__panel {
  display: flex;
  min-width: 0;
  flex-direction: column;
  padding: 28px 36px;
  border-radius: 10px;
  gap: 16px;
}

.btr-margin__panel--general {
  background: #f0f0f0;
  color: #000;
}

.btr-margin__panel--btr {
  background: #e8f5f5;
  color: #000;
}

.btr-margin__panel-title {
  display: flex;
  width: 100%;
  min-height: 39px;
  margin: 0;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
}

.btr-margin__panel--general .btr-margin__panel-title {
  background: #888;
}

.btr-margin__panel--btr .btr-margin__panel-title {
  background: #008e8e;
}

.btr-margin__flow {
  display: flex;
  width: 100%;
  flex-direction: column;
}

.btr-margin__flow--general {
  position: relative;
  width: calc(100% - 72px);
  padding: 4px 0;
}

.btr-margin__flow--btr {
  padding: 4px 0;
}

.btr-margin__step {
  display: grid;
  width: 100%;
  min-height: 44px;
  grid-template-columns: 44px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
}

.btr-margin__step-icon {
  display: flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid #e5e7eb;
  border-radius: 999px;
  background: #fff;
}

.btr-margin__step-icon::before {
  content: "";
  display: block;
  width: 22px;
  height: 22px;
  background-color: #888;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
}

.btr-margin__step-icon--user::before {
  -webkit-mask-image: url("assets/images/margin-user.svg");
  mask-image: url("assets/images/margin-user.svg");
}

.btr-margin__step-icon--building::before {
  -webkit-mask-image: url("assets/images/margin-building.svg");
  mask-image: url("assets/images/margin-building.svg");
}

.btr-margin__step-icon--hard-hat::before {
  -webkit-mask-image: url("assets/images/margin-hard-hat.svg");
  mask-image: url("assets/images/margin-hard-hat.svg");
}

.btr-margin__step-icon--circle-x::before {
  -webkit-mask-image: url("assets/images/margin-circle-x.svg");
  mask-image: url("assets/images/margin-circle-x.svg");
}

.btr-margin__panel--btr .btr-margin__step-icon::before {
  background-color: #008e8e;
}

.btr-margin__step-label {
  display: flex;
  min-width: 0;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 8px 14px;
  border: 1px solid #e5e7eb;
  border-radius: 6px;
  background: #fff;
  color: #000;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
  text-align: center;
}

.btr-margin__arrow {
  display: flex;
  width: 100%;
  height: 28px;
  align-items: center;
  justify-content: center;
  padding-left: 56px;
}

.btr-margin__arrow::before {
  content: "";
  display: block;
  width: 16px;
  height: 20px;
  background: #555;
  -webkit-mask: url("assets/images/margin-arrow-down.svg") center / contain no-repeat;
  mask: url("assets/images/margin-arrow-down.svg") center / contain no-repeat;
}

.btr-margin__arrow--primary::before,
.btr-margin__panel--btr .btr-margin__arrow::before {
  background: #008e8e;
}

.btr-margin__route {
  position: absolute;
  top: 24px;
  bottom: 24px;
  left: 100%;
  width: 40px;
  border-top: 1px dashed #555;
  border-right: 1px dashed #555;
  border-bottom: 1px dashed #555;
  pointer-events: none;
}

.btr-margin__route span {
  position: absolute;
  top: 50%;
  right: -32px;
  display: flex;
  width: 64px;
  height: 64px;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: #555;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  transform: translateY(-50%);
}

.btr-margin__notice {
  display: grid;
  width: 100%;
  align-items: center;
  border-radius: 6px;
}

.btr-margin__notice p {
  margin: 0;
  color: #000;
}

.btr-margin__notice--warning {
  grid-template-columns: 38px minmax(0, 1fr);
  padding: 12px 16px;
  gap: 10px;
  background: #fff;
}

.btr-margin__notice--warning img {
  display: block;
  width: 31px;
  height: 29px;
  justify-self: center;
}

.btr-margin__notice--warning p {
  font-size: 12px;
  font-weight: 400;
  line-height: 1.6;
}

.btr-margin__btr-row {
  display: grid;
  width: 100%;
  min-height: 112px;
  grid-template-columns: 44px minmax(0, 1fr) 112px;
  align-items: center;
  gap: 12px;
}

.btr-margin__btr-box {
  display: flex;
  width: 100%;
  min-height: 112px;
  margin-inline: auto;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 16px 24px;
  gap: 10px;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  background: #fff;
}

.btr-margin__btr-box img {
  display: block;
  width: min(155px, 100%);
  height: auto;
  filter: brightness(0);
}

.btr-margin__btr-box p {
  margin: 0;
  color: #000;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
  text-align: center;
}

.btr-margin__zero {
  display: flex;
  width: 112px;
  height: 112px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: 8px;
  border-radius: 999px;
  background: #ffdb5b;
  color: #000;
  text-align: center;
}

.btr-margin__zero span {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
}

.btr-margin__zero strong {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 3px;
  font-family: "Outfit", "Noto Sans JP", sans-serif;
  font-size: 54px;
  font-weight: 700;
  line-height: 1;
}

.btr-margin__zero small {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
}

.btr-margin__notice--success {
  grid-template-columns: 28px minmax(0, 1fr);
  padding: 12px 16px;
  gap: 12px;
  background: #fffde7;
}

.btr-margin__check {
  display: flex;
  width: 28px;
  height: 28px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #008e8e;
}

.btr-margin__check img {
  display: block;
  width: 14px;
  height: 14px;
}

.btr-margin__notice--success p {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.btr-margin__notice--success strong {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
}

.btr-margin__notice--success span {
  font-size: 12px;
  font-weight: 400;
  line-height: 1.6;
}

.btr-margin__benefits {
  display: grid;
  width: 100%;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.btr-margin__benefit {
  display: grid;
  min-width: 0;
  min-height: 110px;
  margin: 0;
  grid-template-columns: 48px minmax(0, 1fr);
  align-items: flex-start;
  padding: 20px;
  gap: 6px 16px;
  border: 1px solid #f8f9fa;
  border-radius: 8px;
  background: #fff;
  color: #000;
}

.btr-margin__benefit-heading {
  display: contents;
}

.btr-margin__benefit-icon {
  grid-row: 1 / span 2;
  display: flex;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #008e8e;
}

.btr-margin__benefit-icon img {
  display: block;
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.btr-margin__benefit h3 {
  margin: 0;
  color: #008e8e;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.6;
}

.btr-margin__benefit p {
  grid-column: 2;
  margin: 0;
  color: #000;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.6;
}

.btr-price {
  box-sizing: border-box;
  display: flex;
  width: 100%;
  margin-block-start: 0;
  flex-direction: column;
  align-items: center;
  padding: 80px 0;
  background: #fff;
  color: #000;
  font-family: "Noto Sans JP", "Hiragino Sans", "Yu Gothic", sans-serif;
}

.btr-price *,
.btr-price *::before,
.btr-price *::after {
  box-sizing: border-box;
}

.btr-price .wp-block-group,
.btr-price .wp-block-table,
.btr-price .wp-block-image {
  margin: 0;
}

.btr-price__container {
  display: flex;
  width: min(900px, calc(100% - 80px));
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.btr-price__heading {
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}

.btr-price__title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.btr-price__eyebrow {
  margin: 0;
  color: #008e8e;
  font-family: "Outfit", "Noto Sans JP", sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 3px;
  line-height: 1.25;
}

.btr-price__heading h2 {
  margin: 0;
  color: #000;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.3;
}

.btr-price__lead,
.btr-price__heading-note,
.btr-price__footnote {
  margin: 0;
}

.btr-price__lead {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
}

.btr-price__heading-note,
.btr-price__footnote {
  color: #555;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.6;
}

.btr-price__table-wrap {
  width: 100%;
  margin: 0;
  overflow: hidden;
  border: 1px solid #e5e7eb;
}

.btr-price__table,
.btr-price__table-wrap table {
  width: 100%;
  margin: 0;
  border-collapse: collapse;
  border-spacing: 0;
  table-layout: fixed;
}

.btr-price__table thead,
.btr-price__table tfoot,
.btr-price__table-wrap table thead,
.btr-price__table-wrap table tfoot {
  border: 0;
}

.btr-price__col-type {
  width: 40%;
}

.btr-price__col-unit,
.btr-price__col-total {
  width: 30%;
}

.btr-price__table-wrap table th:first-child,
.btr-price__table-wrap table td:first-child {
  width: 40%;
}

.btr-price__table-wrap table th:nth-child(2),
.btr-price__table-wrap table td:nth-child(2),
.btr-price__table-wrap table th:nth-child(3),
.btr-price__table-wrap table td:nth-child(3) {
  width: 30%;
}

.btr-price__table th,
.btr-price__table td,
.btr-price__table-wrap table th,
.btr-price__table-wrap table td {
  border: 0;
  border-right: 1px solid #e5e7eb;
  text-align: left;
  vertical-align: middle;
}

.btr-price__table tr > :last-child,
.btr-price__table-wrap table tr > :last-child {
  border-right: 0;
}

.btr-price__table thead th,
.btr-price__table-wrap table thead th {
  padding: 16px 18px;
  background: #008e8e;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.6;
}

.btr-price__table thead span,
.btr-price__table-wrap table thead span {
  margin-left: 4px;
}

.btr-price__table tbody tr,
.btr-price__table-wrap table tbody tr {
  background: #fff;
}

.btr-price__table tbody tr + tr,
.btr-price__table-wrap table tbody tr + tr {
  border-top: 1px solid #e5e7eb;
}

.btr-price__table tbody tr:nth-child(even),
.btr-price__table-wrap table tbody tr:nth-child(even) {
  background: #e8f0ee;
}

.btr-price__table tbody th,
.btr-price__table tbody td,
.btr-price__table-wrap table tbody th,
.btr-price__table-wrap table tbody td {
  padding: 16px 18px;
  color: #000;
  line-height: 1.6;
}

.btr-price__table tbody th,
.btr-price__table tbody td:first-child,
.btr-price__table-wrap table tbody th,
.btr-price__table-wrap table tbody td:first-child {
  font-size: 16px;
  font-weight: 400;
}

.btr-price__table tbody td,
.btr-price__table-wrap table tbody td {
  font-size: 18px;
  font-weight: 500;
}

.btr-price__appeals {
  display: grid;
  width: 100%;
  margin: 0;
  padding: 0;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
  list-style: none;
}

.btr-price__appeals li {
  display: flex;
  min-width: 0;
  min-height: 60px;
  align-items: center;
  justify-content: center;
  padding: 12px;
  gap: 10px;
  border-radius: 5px;
  background: #f8f9fa;
  color: #008e8e;
  text-align: center;
}

.btr-price__appeal-check {
  display: inline-flex;
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #008e8e;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
}

.editor-styles-wrapper .btr-price__appeals {
  display: grid;
  list-style: none;
}

.editor-styles-wrapper .btr-price__appeals > li {
  display: flex !important;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  column-gap: 10px;
}

.editor-styles-wrapper .btr-price__appeals > li::marker {
  content: "";
}

.editor-styles-wrapper .btr-price__appeals .btr-price__appeal-check {
  margin: 0;
}

.editor-styles-wrapper .btr-price__appeals strong {
  display: inline-block;
  margin: 0;
}

.btr-price__appeals strong {
  font-size: 15px;
  font-weight: 700;
  line-height: 1.45;
}

@media (min-width: 980px) {
  .btr-price__appeals strong {
    white-space: nowrap;
  }
}

.btr-price__extras {
  display: grid;
  width: 100%;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
  gap: 40px;
}

.btr-price__extra {
  display: flex;
  min-width: 0;
  flex-direction: column;
  padding: 24px;
  gap: 16px;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  background: #fff;
}

.btr-price__extra h3 {
  width: 100%;
  margin: 0;
  padding: 0 4px 10px;
  border-bottom: 2px solid #e5e7eb;
  color: #000;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.25;
}

.btr-price__extra ul,
.btr-price__extra-list {
  display: flex;
  width: 100%;
  margin: 0;
  padding: 0;
  flex-direction: column;
  gap: 12px;
  list-style: none;
}

.btr-price__extra li,
.btr-price__extra-item {
  display: flex;
  width: 100%;
  min-height: 46px;
  align-items: center;
  padding: 12px;
  gap: 10px;
  border-radius: 8px;
  background: #f8f9fa;
  color: #000;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
}

.btr-price__extra li img,
.btr-price__extra-icon {
  display: block;
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
}

.btr-price__extra-icon img {
  display: block;
  width: 18px;
  height: 18px;
}

.btr-price__extra-text {
  margin: 0;
  color: inherit;
  font: inherit;
  line-height: inherit;
}

.btr-price__footnote {
  width: 100%;
  text-align: center;
}

.btr-faq {
  box-sizing: border-box;
  display: flex;
  width: 100%;
  margin-block-start: 0;
  flex-direction: column;
  align-items: center;
  padding: 80px 0;
  background: #f8f9fa;
  color: #000;
  font-family: "Noto Sans JP", "Hiragino Sans", "Yu Gothic", sans-serif;
}

.btr-faq *,
.btr-faq *::before,
.btr-faq *::after {
  box-sizing: border-box;
}

.btr-faq__container {
  display: flex;
  width: min(900px, calc(100% - 80px));
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.btr-faq__heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
}

.btr-faq__eyebrow {
  margin: 0;
  color: #008e8e;
  font-family: "Outfit", "Noto Sans JP", sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 3px;
  line-height: 1.25;
}

.btr-faq__heading h2 {
  margin: 0;
  color: #000;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.3;
}

.btr-faq__list {
  display: flex;
  width: 100%;
  flex-direction: column;
  gap: 20px;
}

.btr-faq__item {
  display: flex;
  width: 100%;
  margin: 0;
  flex-direction: column;
  padding: 32px;
  gap: 16px;
  border-radius: 12px;
  background: #fff;
}

.btr-faq__row {
  display: grid;
  width: 100%;
  min-width: 0;
  grid-template-columns: 32px minmax(0, 1fr);
  align-items: start;
  gap: 12px;
}

.btr-faq__label {
  display: flex;
  width: 32px;
  height: 32px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: #fff;
  font-family: "Outfit", "Noto Sans JP", sans-serif;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
}

.btr-faq__row--question .btr-faq__label {
  background: #008e8e;
}

.btr-faq__row--answer .btr-faq__label {
  background: #555;
}

.btr-faq__row h3,
.btr-faq__row p {
  min-width: 0;
  margin: 0;
}

.btr-faq__row h3 {
  color: #008e8e;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
}

.btr-faq__row p {
  color: #000;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
}

.btr-flow {
  box-sizing: border-box;
  display: flex;
  width: 100%;
  margin-block-start: 0;
  flex-direction: column;
  align-items: center;
  padding: 80px 0;
  background: #e8f0ee;
  color: #000;
  font-family: "Noto Sans JP", "Hiragino Sans", "Yu Gothic", sans-serif;
}

.btr-flow *,
.btr-flow *::before,
.btr-flow *::after {
  box-sizing: border-box;
}

.btr-flow__container {
  display: flex;
  width: min(900px, calc(100% - 80px));
  flex-direction: column;
  gap: 40px;
}

.btr-flow__heading {
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}

.btr-flow__title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.btr-flow__eyebrow {
  margin: 0;
  color: #008e8e;
  font-family: "Outfit", "Noto Sans JP", sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 3px;
  line-height: 1.25;
}

.btr-flow__heading h2 {
  margin: 0;
  color: #000;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.3;
}

.btr-flow__lead {
  margin: 0;
  color: #000;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
}

.btr-flow__steps {
  display: flex;
  width: 100%;
  margin: 0;
  padding: 0;
  flex-direction: column;
  gap: 8px;
  list-style: none;
}

.btr-flow__step {
  display: flex;
  min-width: 0;
  flex-direction: column;
  padding: 16px 24px 20px;
  gap: 4px;
  border-radius: 10px;
  background: #fff;
}

.btr-flow__step-heading {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 12px;
}

.btr-flow__step-heading span {
  flex: 0 0 auto;
  color: #008e8e;
  font-family: "Outfit", "Noto Sans JP", sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
}

.btr-flow__step-heading h3 {
  min-width: 0;
  margin: 0;
  color: #000;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.6;
}

.btr-flow__step > p {
  margin: 0;
  color: #555;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
}

.btr-image-area-2 {
  box-sizing: border-box;
  display: block;
  width: 100%;
  height: 380px;
  margin-block-start: 0;
  margin-block-end: 0;
  overflow: hidden;
}

.btr-image-area-2 img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.btr-company {
  box-sizing: border-box;
  display: flex;
  width: 100%;
  margin-block-start: 0;
  flex-direction: column;
  align-items: center;
  padding: 80px 0;
  background: #e8f0ee;
  color: #000;
  font-family: "Noto Sans JP", "Hiragino Sans", "Yu Gothic", sans-serif;
}

.btr-company *,
.btr-company *::before,
.btr-company *::after {
  box-sizing: border-box;
}

.btr-company__container {
  display: flex;
  width: min(900px, calc(100% - 80px));
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

.btr-company__heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
}

.btr-company__eyebrow {
  margin: 0;
  color: #008e8e;
  font-family: "Outfit", "Noto Sans JP", sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 3px;
  line-height: 1.25;
}

.btr-company__heading h2 {
  margin: 0;
  color: #000;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.3;
}

.btr-company__content {
  display: grid;
  width: 100%;
  grid-template-columns: minmax(0, 450px) minmax(0, 386px);
  align-items: start;
  gap: 64px;
}

.btr-company__profile {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 32px;
}

.btr-company__intro {
  margin: 0;
  color: #000;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
}

.btr-company__details {
  width: 100%;
  margin: 0;
  border: 1px solid #e5e7eb;
  background: #fff;
}

.btr-company__details > div {
  position: relative;
  display: grid;
  min-height: 62px;
  grid-template-columns: 80px minmax(0, 1fr);
  align-items: start;
  padding: 20px;
  gap: 40px;
  border-bottom: 1px solid #e5e7eb;
}

.btr-company__details > div::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: -1px;
  width: 4px;
  background: #009b9b;
}

.btr-company__details > div:nth-child(even) {
  background: #f8f9fa;
}

.btr-company__details > div:last-child {
  border-bottom: 0;
}

.btr-company__details dt,
.btr-company__details dd {
  min-width: 0;
  margin: 0;
  color: #000;
  font-size: 14px;
  line-height: 1.6;
}

.btr-company__details dt {
  font-weight: 500;
}

.btr-company__details dd {
  font-weight: 400;
}

.btr-company__area {
  display: flex;
  min-width: 0;
  flex-direction: column;
  align-items: center;
  padding: 32px;
  gap: 12px;
  border-radius: 10px;
  background: #fff;
}

.btr-company__area h3,
.btr-company__area p {
  width: 100%;
  margin: 0;
}

.btr-company__area h3 {
  color: #000;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
}

.btr-company__area img {
  display: block;
  width: 100%;
  height: auto;
}

.btr-company__area p {
  color: #555;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.6;
}

.btr-contact {
  box-sizing: border-box;
  width: 100%;
  margin: 0;
  padding: 80px 24px 120px;
  background: #364140 url("assets/images/contact-bg.png") center / cover no-repeat;
  color: #000;
  font-family: "Noto Sans JP", "Hiragino Sans", "Yu Gothic", sans-serif;
}

.btr-contact *,
.btr-contact *::before,
.btr-contact *::after {
  box-sizing: border-box;
}

.btr-contact__container {
  width: min(100%, 900px);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.btr-contact__heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  color: #fff;
  text-align: center;
}

.btr-contact__eyebrow,
.btr-contact__heading h2,
.btr-contact__lead {
  margin: 0;
}

.btr-contact__eyebrow {
  font-family: "Outfit", sans-serif;
  font-size: 13px;
  font-weight: 700;
  line-height: 16px;
  letter-spacing: 3px;
}

.btr-contact__heading h2 {
  font-size: 40px;
  font-weight: 700;
  line-height: 1.3;
}

.btr-contact__lead {
  font-size: 16px;
  line-height: 1.6;
}

.btr-contact__form {
  width: 100%;
  margin: 0;
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
}

.btr-contact__cf7,
.btr-contact__cf7.wpcf7-form {
  width: 100%;
  margin: 0;
}

.btr-contact__field {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.btr-contact__field p,
.btr-contact__consent p,
.btr-contact__submit-wrap p {
  width: 100%;
  margin: 0;
}

.btr-contact__field p {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.btr-contact__field br,
.btr-contact__consent br,
.btr-contact__submit-wrap br {
  display: none;
}

.btr-contact__field label {
  font-size: 14px;
  line-height: 1.6;
}

.btr-contact__field input,
.btr-contact__field textarea {
  width: 100%;
  margin: 0;
  padding: 15px 16px;
  font: inherit;
  font-size: 14px;
  line-height: 1.6;
  color: #000;
  background: #f8f9fa;
  border: 1px solid #e5e7eb;
  border-radius: 5px;
  outline: none;
}

.btr-contact__field .wpcf7-form-control-wrap {
  display: block;
  width: 100%;
}

.btr-contact__field input {
  height: 54px;
}

.btr-contact__field textarea {
  min-height: 120px;
  resize: vertical;
}

.btr-contact__field input::placeholder,
.btr-contact__field textarea::placeholder {
  color: #a8a8a8;
  opacity: 1;
}

.btr-contact__field input:focus,
.btr-contact__field textarea:focus {
  border-color: #008e8e;
  box-shadow: 0 0 0 2px rgba(0, 142, 142, 0.15);
}

.btr-contact__privacy {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.btr-contact__consent {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  line-height: 1.6;
  cursor: pointer;
}

.btr-contact__consent .wpcf7-form-control-wrap,
.btr-contact__consent .wpcf7-form-control,
.btr-contact__consent .wpcf7-list-item,
.btr-contact__consent label {
  margin: 0;
}

.btr-contact__consent label {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

.btr-contact__consent input {
  width: 16px;
  height: 16px;
  margin: 0;
  accent-color: #008e8e;
  flex: 0 0 auto;
}

.btr-contact__privacy p {
  margin: 0;
  font-size: 12px;
  line-height: 1.6;
}

.btr-contact__submit-wrap {
  position: relative;
  width: 100%;
}

.btr-contact__response,
.btr-contact__response p {
  width: 100%;
  margin: 0;
}

.btr-contact__button {
  width: 100%;
  min-height: 50px;
  margin: 0;
  padding: 0 16px;
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr) 20px;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-family: inherit;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  border: 0;
  border-radius: 30px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  cursor: pointer;
}

.btr-contact__submit-wrap .btr-contact__button {
  display: block;
  padding: 0 52px;
  appearance: none;
}

.btr-contact__submit-wrap::after {
  position: absolute;
  top: 50%;
  right: 16px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #fff;
  content: "";
  pointer-events: none;
  transform: translateY(-50%);
}

.btr-contact__submit-wrap::before {
  position: absolute;
  top: 50%;
  right: 22px;
  z-index: 1;
  width: 5px;
  height: 8px;
  background: #008e8e;
  content: "";
  -webkit-mask: url("assets/images/arrow.svg") center / contain no-repeat;
  mask: url("assets/images/arrow.svg") center / contain no-repeat;
  pointer-events: none;
  transform: translateY(-50%);
}

.btr-contact__button--primary {
  background: #008e8e;
}

.btr-contact__button--line {
  background: #06c755;
}

.btr-contact__button:not(:disabled):hover,
.btr-contact__button:not(:disabled):focus-visible {
  color: #fff;
  filter: none;
}

.btr-contact__button:disabled {
  cursor: not-allowed;
  opacity: 0.5;
  filter: grayscale(0.25);
}

.btr-contact__button:disabled:hover,
.btr-contact__button:disabled:focus-visible {
  filter: grayscale(0.25);
}

.btr-contact__cf7 .wpcf7-not-valid-tip {
  margin-top: 6px;
  color: #dc2626;
  font-size: 12px;
  line-height: 1.6;
}

.btr-contact__cf7 .wpcf7-response-output {
  margin: 16px 0 0;
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 13px;
  line-height: 1.6;
}

.btr-contact__submit-wrap .wpcf7-spinner {
  position: absolute;
  top: 50%;
  right: 48px;
  margin: 0;
  transform: translateY(-50%);
}

.btr-contact__button-spacer {
  width: 18px;
  height: 18px;
}

.btr-contact__arrow {
  width: 18px;
  height: 18px;
  display: grid;
  place-items: center;
  justify-self: end;
  background: #fff;
  border-radius: 50%;
}

.btr-contact__arrow img {
  width: 5px;
  height: 8px;
  display: block;
}

.btr-contact__button--primary .btr-contact__arrow img {
  filter: invert(42%) sepia(85%) saturate(1121%) hue-rotate(139deg) brightness(82%) contrast(103%);
}

.btr-contact__button--line .btr-contact__arrow img {
  filter: invert(58%) sepia(94%) saturate(1399%) hue-rotate(92deg) brightness(98%) contrast(96%);
}

.btr-contact__button-leading {
  width: 16px;
  height: 16px;
  filter: brightness(0) invert(1);
}

.btr-contact__button-line-mark {
  width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  color: #06c755;
  background: #fff;
  border-radius: 4px;
  font-size: 6px;
  font-weight: 700;
  line-height: 7px;
}

body.btr-contact-confirm-open {
  overflow: hidden;
}

.btr-contact-confirm {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
  font-family: "Noto Sans JP", "Hiragino Sans", "Yu Gothic", sans-serif;
}

.btr-contact-confirm[hidden] {
  display: none;
}

.btr-contact-confirm *,
.btr-contact-confirm *::before,
.btr-contact-confirm *::after {
  box-sizing: border-box;
}

.btr-contact-confirm__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.68);
}

.btr-contact-confirm__card {
  position: relative;
  z-index: 1;
  display: flex;
  width: min(900px, 100%);
  max-height: min(717px, calc(100vh - 64px));
  flex-direction: column;
  padding: 40px;
  gap: 40px;
  overflow-y: auto;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  color: #000;
}

.btr-contact-confirm__heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
}

.btr-contact-confirm__heading h2,
.btr-contact-confirm__heading p,
.btr-contact-confirm__note {
  margin: 0;
}

.btr-contact-confirm__heading h2 {
  font-size: 40px;
  font-weight: 700;
  line-height: 1.3;
}

.btr-contact-confirm__heading p {
  color: #555;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
}

.btr-contact-confirm__rows {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.btr-contact-confirm__row {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 12px 32px;
}

.btr-contact-confirm__label,
.btr-contact-confirm__value {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
}

.btr-contact-confirm__value {
  min-width: 0;
  overflow-wrap: anywhere;
  white-space: pre-wrap;
}

.btr-contact-confirm__divider {
  display: none;
}

.btr-contact-confirm__actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 320px));
  justify-content: center;
  gap: 16px;
}

.btr-contact-confirm__button {
  display: grid;
  width: 100%;
  min-height: 50px;
  grid-template-columns: 18px minmax(0, 1fr) 18px;
  align-items: center;
  padding: 0 16px;
  border-radius: 30px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.2;
  text-align: center;
  cursor: pointer;
  transition: opacity 0.18s ease;
}

.btr-contact-confirm__button::before {
  content: "";
}

.btr-contact-confirm__button::after {
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background:
    #fff url("data:image/svg+xml,%3Csvg width='5' height='8' viewBox='0 0 5 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0.5 7.5L4 4L0.5 0.5' stroke='%23008E8E' stroke-linecap='round'/%3E%3C/svg%3E") center / 5px 8px no-repeat;
  content: "";
  transition: transform 0.18s cubic-bezier(0.4, 0, 0.2, 1);
}

.btr-contact-confirm__button:hover,
.btr-contact-confirm__button:focus-visible {
  opacity: 0.82;
}

.btr-contact-confirm__button:hover::after,
.btr-contact-confirm__button:focus-visible::after {
  transform: translateX(4px);
}

.btr-contact-confirm__button--back {
  border: 1px solid #e5e7eb;
  background: #fff;
  color: #000;
}

.btr-contact-confirm__button--back::after {
  border: 1px solid #e5e7eb;
}

.btr-contact-confirm__button--submit {
  border: 0;
  background: #008e8e;
  color: #fff;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.btr-contact-confirm__note {
  color: #000;
  font-size: 12px;
  line-height: 1.6;
}

.btr-contact__methods {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
  gap: 32px;
}

.btr-contact__method {
  min-width: 0;
  min-height: 285px;
  padding: 28px 32px 32px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 20px;
  background: #fff;
  border-radius: 8px;
}

.btr-contact__method--phone {
  border: 2px solid #008e8e;
}

.btr-contact__method--line {
  border: 2px solid #06c755;
}

.btr-contact__method-heading {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 12px;
}

.btr-contact__method-heading > div {
  min-width: 0;
}

.btr-contact__method--phone .btr-contact__method-heading {
  padding-bottom: 10px;
  border-bottom: 1px solid #e5e7eb;
}

.btr-contact__method-heading h3,
.btr-contact__method-heading p,
.btr-contact__phone-copy,
.btr-contact__phone-note,
.btr-contact__qr p {
  margin: 0;
}

.btr-contact__method-heading h3 {
  font-size: 18px;
  line-height: 1.25;
}

.btr-contact__method--line .btr-contact__method-heading h3 {
  color: #06c755;
}

.btr-contact__method-heading p {
  margin-top: 2px;
  font-size: 12px;
  line-height: 1.6;
}

.btr-contact__method-icon,
.btr-contact__line-mark {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  flex: 0 0 40px;
  color: #fff;
  border-radius: 50%;
}

.btr-contact__method-icon {
  background: #008e8e;
}

.btr-contact__method-icon img {
  width: 22px;
  height: 22px;
  filter: brightness(0) invert(1);
}

.btr-contact__line-mark {
  background: #06c755;
  font-size: 14px;
  font-weight: 700;
  line-height: 17px;
}

.btr-contact__phone-copy {
  padding: 12px 16px;
  color: #008e8e;
  background: #fff;
  border: 2px solid #008e8e;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.6;
  text-align: center;
}

.btr-contact__phone-number {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  min-width: 0;
  width: 100%;
}

.btr-contact__phone-number img {
  width: 40px;
  height: 40px;
}

.btr-contact__phone-number a {
  min-width: 0;
  color: #008e8e;
  font-family: "Outfit", sans-serif;
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  line-height: 1.25;
  text-decoration: none;
  white-space: nowrap;
}

.btr-contact__phone-button {
  display: none;
}

.btr-contact__phone-note {
  display: none;
  font-size: 14px;
  line-height: 1.6;
  text-align: center;
}

.btr-contact__line-content {
  padding-top: 20px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 90px;
  align-items: center;
  gap: 12px;
  border-top: 1px solid #e5e7eb;
}

.btr-contact__line-features {
  min-width: 0;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  list-style: none;
}

.btr-contact__line-features li {
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: #555;
  font-size: 11px;
  line-height: 1.2;
  text-align: center;
}

.btr-contact__line-features li > span {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  background: #e8f8ef;
  border-radius: 50%;
}

.btr-contact__line-features li > span img {
  width: 24px;
  height: 24px;
  display: block;
}

.btr-contact__qr {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.btr-contact__qr img {
  width: 60px;
  height: 60px;
  display: block;
}

.btr-contact__qr p {
  color: #06c755;
  font-size: 10px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  white-space: nowrap;
}

.btr-footer-part,
.wp-site-blocks > .btr-footer-part {
  margin-block-start: 0;
}

.btr-footer {
  box-sizing: border-box;
  width: 100%;
  margin-block-start: 0;
  padding: 40px 60px 10px;
  background: #000;
  color: #fff;
  font-family: "Noto Sans JP", "Hiragino Sans", "Yu Gothic", sans-serif;
}

.btr-footer *,
.btr-footer *::before,
.btr-footer *::after {
  box-sizing: border-box;
}

.btr-footer__inner {
  display: flex;
  width: 100%;
  flex-direction: column;
  gap: 40px;
}

.btr-footer__main {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 48px;
  min-width: 0;
}

.btr-footer__left {
  display: flex;
  align-items: flex-end;
  gap: 60px;
  min-width: 0;
}

.btr-footer__info {
  display: flex;
  width: 224px;
  flex-direction: column;
  gap: 24px;
}

.btr-footer__brand {
  display: block;
  width: 200px;
  height: 46px;
}

.btr-footer__brand img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.btr-footer__contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.btr-footer__phone {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #008e8e;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.4;
  text-decoration: none;
}

.btr-footer__phone-icon {
  display: block;
  flex: 0 0 16px;
  width: 16px;
  height: 16px;
  background: url("assets/images/tel.svg") center / contain no-repeat;
}

.btr-footer__contact p {
  margin: 0;
  color: #fff;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.6;
}

.btr-footer__partners {
  display: flex;
  width: 296px;
  margin: 0;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btr-footer__partners h2 {
  margin: 0;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.2;
}

.btr-footer__partner-logos {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.btr-footer__partner-card {
  display: flex;
  width: 140px;
  height: 64px;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  background: #1b1b1b;
  text-decoration: none;
}

.btr-footer__partner-card img {
  display: block;
  height: auto;
}

.btr-footer__partner-logo-1 {
  width: 60px;
}

.btr-footer__partner-logo-2 {
  width: 100px;
}

.btr-footer__nav {
  display: flex;
  align-items: flex-start;
  gap: 64px;
}

.btr-footer__nav-column {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.btr-footer__nav a {
  position: relative;
  display: inline-flex;
  width: fit-content;
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
  text-decoration: none;
  white-space: nowrap;
  transition:
    color 0.18s ease,
    opacity 0.18s ease,
    transform 0.18s cubic-bezier(0.4, 0, 0.2, 1);
}

.btr-footer__nav a::after {
  position: absolute;
  right: 0;
  bottom: -4px;
  left: 0;
  height: 2px;
  border-radius: 999px;
  background: #ffdb5b;
  content: "";
  opacity: 0;
  transform: scaleX(0);
  transform-origin: left center;
  transition:
    opacity 0.18s ease,
    transform 0.24s cubic-bezier(0.4, 0, 0.2, 1);
}

.btr-footer__nav a:hover,
.btr-footer__nav a:focus-visible {
  opacity: 0.86;
  text-decoration: none;
  transform: translateX(4px);
}

.btr-footer__nav a:hover::after,
.btr-footer__nav a:focus-visible::after {
  opacity: 1;
  transform: scaleX(1);
}

.btr-footer__copyright {
  margin: 0;
  color: #f8f9fa;
  font-size: 10px;
  font-weight: 400;
  line-height: 1.6;
  text-align: center;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .btr-header__menu-button span,
  .btr-header__mobile-panel,
  .btr-header__mobile-link,
  .btr-header__mobile-cta-area,
  .btr-header__cta,
  .btr-header__mobile-cta,
  .btr-hero__cta,
  .btr-contact__button,
  .btr-header__cta-icon,
  .btr-hero__cta-icon,
  .btr-contact__arrow,
  .btr-contact__submit-wrap::before,
  .btr-contact__submit-wrap::after,
  .btr-header__nav a,
  .btr-header__nav a::after,
  .btr-footer__nav a,
  .btr-footer__nav a::after {
    transition: none;
  }
}

@media (max-width: 782px) {
  body.admin-bar .btr-header-part {
    top: 46px;
  }
}

@media (max-width: 1180px) {
  .btr-hero,
  .btr-service,
  .btr-price,
  .btr-faq,
  .btr-flow,
  .btr-company,
  .btr-contact {
    scroll-margin-top: 60px;
  }

  .btr-header__inner {
    min-height: 60px;
    padding: 0 16px;
  }

  .btr-header__left {
    gap: 24px;
  }

  .btr-header__brand {
    width: 140px;
    height: 33px;
  }

  .btr-header__nav,
  .btr-header__cta {
    display: none;
  }

  .btr-header__drawer {
    display: block;
  }
}

@media (max-width: 767px) {
  .btr-hero {
    min-height: 500px;
    align-items: center;
    justify-content: center;
  }

  .btr-hero::before {
    background:
      linear-gradient(0deg, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
      url("assets/images/hero-bg.jpg") center center / cover no-repeat;
  }

  .btr-hero__content {
    align-items: center;
    justify-content: center;
    padding: 20px;
    gap: 32px;
  }

  .btr-hero__copy {
    width: 100%;
    max-width: 350px;
    gap: 24px;
  }

  .btr-hero__maintext {
    width: 100%;
    max-width: 350px;
  }

  .btr-hero__subtext {
    width: min(302px, 100%);
  }

  .btr-hero__badge {
    display: none;
  }

  .btr-hero__cta {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 300px;
    height: 50px;
    padding: 0 16px;
    border-radius: 30px;
    background: #ffdb5b;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    color: #000;
    font-family: "Noto Sans JP", "Hiragino Sans", "Yu Gothic", sans-serif;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.2;
    text-align: center;
    text-decoration: none;
  }

  .btr-hero__cta::before {
    display: block;
    flex: 0 0 18px;
    width: 18px;
    height: 18px;
    content: "";
  }

  .btr-hero__cta span:first-child {
    flex: 1 1 auto;
  }

  .btr-about {
    padding: 60px 20px 80px;
  }

  .btr-about__container {
    width: 100%;
    flex-direction: column;
    gap: 32px;
  }

  .btr-about__copy {
    display: contents;
  }

  .btr-about__heading {
    order: 1;
    width: 100%;
    gap: 8px;
  }

  .btr-about__eyebrow {
    font-size: 12px;
    line-height: 1.25;
  }

  .btr-about__heading h2 {
    max-width: 336px;
    font-size: 28px;
    line-height: 1.4;
  }

  .btr-about__media {
    order: 2;
    width: 100%;
    max-width: none;
    margin-inline: auto;
    align-self: center;
    height: 240px;
    flex: none;
  }

  .btr-about__badge {
    top: 20px;
    right: 12px;
    width: 134px;
  }

  .btr-about__text {
    order: 3;
    width: 100%;
    font-size: 16px;
    line-height: 1.6;
  }

  .btr-about__features {
    order: 4;
    width: 100%;
    justify-content: center;
    gap: 0;
  }

  .btr-about__feature {
    flex: 1 1 0;
    width: auto;
    padding: 0 4px;
  }

  .btr-image-area-1 {
    height: 200px;
  }

  .btr-values {
    padding: 60px 20px 80px;
    gap: 32px;
  }

  .btr-values__heading {
    width: 100%;
    gap: 16px;
  }

  .btr-values__eyebrow {
    font-size: 12px;
    line-height: 1.25;
  }

  .btr-values__heading h2 {
    font-size: 28px;
    line-height: 1.4;
  }

  .btr-values__mobile-break {
    display: block;
  }

  .btr-values__lead {
    color: #555;
    font-size: 16px;
    line-height: 1.6;
  }

  .btr-values__cards {
    width: 100%;
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .btr-values__card {
    min-height: 304px;
  }

  .btr-values__image {
    height: 160px;
    flex-basis: 160px;
  }

  .btr-values__number {
    top: 134px;
  }

  .btr-values__body {
    padding: 36px 24px 24px;
    gap: 12px;
  }

  .btr-values__body h3 {
    min-height: 34px;
    flex-direction: row;
    gap: 4px;
  }

  .btr-values__body h3 span {
    font-size: 18px;
  }

  .btr-values__body h3 strong {
    font-size: 24px;
    line-height: 1.4;
  }

  .btr-values__body p {
    font-size: 12px;
    line-height: 1.6;
  }

  .btr-values__desc-desktop {
    display: none;
  }

  .btr-values__desc-mobile {
    display: inline;
  }

  .btr-service {
    padding: 60px 20px 80px;
  }

  .btr-service__container {
    width: 100%;
    gap: 32px;
  }

  .btr-service__heading {
    gap: 16px;
  }

  .btr-service__eyebrow {
    font-size: 12px;
    line-height: 1.25;
  }

  .btr-service__heading h2 {
    font-size: 28px;
    line-height: 1.4;
  }

  .btr-service__lead {
    font-size: 16px;
    line-height: 1.6;
  }

  .btr-service__cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .btr-service__card {
    min-height: 310px;
  }

  .btr-service__image {
    height: 150px;
    flex-basis: 150px;
  }

  .btr-service__body {
    padding: 20px;
    gap: 10px;
  }

  .btr-service__body h3 {
    font-size: 18px;
    line-height: 1.22;
  }

  .btr-service__body p {
    font-size: 14px;
    line-height: 1.6;
  }

  .btr-service__note {
    display: block;
    width: 100%;
    font-size: 11px;
  }

  .btr-margin {
    padding: 60px 20px 80px;
    background-position: center top;
  }

  .btr-margin__container {
    width: 100%;
    gap: 32px;
  }

  .btr-margin__heading {
    width: min(350px, 100%);
    gap: 16px;
  }

  .btr-margin__eyebrow {
    font-size: 12px;
    letter-spacing: 2px;
    line-height: 1.25;
  }

  .btr-margin__heading h2 {
    font-size: 28px;
    line-height: 1.4;
  }

  .btr-margin__heading p:not(.btr-margin__eyebrow) {
    font-size: 16px;
    line-height: 1.6;
  }

  .btr-margin__diagram {
    width: 100%;
    gap: 16px;
  }

  .btr-margin__comparison {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .btr-margin__panel {
    width: 100%;
    padding: 20px;
    gap: 16px;
  }

  .btr-margin__panel-title {
    min-height: 35px;
    padding: 8px 16px;
    font-size: 16px;
    line-height: 1.2;
  }

  .btr-margin__panel--btr .btr-margin__panel-title {
    min-height: 33px;
    font-size: 14px;
  }

  .btr-margin__flow--general {
    padding: 0;
  }

  .btr-margin__flow--btr {
    padding: 0;
  }

  .btr-margin__step-label {
    padding: 8px 10px;
    font-size: 14px;
    line-height: 1.25;
  }

  .btr-margin__route {
    top: 22px;
    bottom: 22px;
  }

  .btr-margin__route span {
    width: 64px;
    height: 64px;
    font-size: 11px;
  }

  .btr-margin__notice--warning {
    padding: 12px 16px;
  }

  .btr-margin__btr-row {
    min-height: 100px;
    grid-template-columns: 44px minmax(0, 1fr) 80px;
  }

  .btr-margin__btr-box {
    width: 100%;
    min-height: 100px;
    padding: 12px 20px;
    gap: 8px;
  }

  .btr-margin__btr-box img {
    width: min(131px, 100%);
  }

  .btr-margin__btr-box p {
    font-size: 12px;
    line-height: 1.6;
  }

  .btr-margin__zero {
    width: 80px;
    height: 80px;
    padding-top: 8px;
  }

  .btr-margin__zero span {
    font-size: 11px;
  }

  .btr-margin__zero strong {
    font-size: 42px;
  }

  .btr-margin__zero small {
    font-size: 18px;
  }

  .btr-margin__benefits {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .btr-margin__benefit {
    display: flex;
    min-height: auto;
    flex-direction: column;
    align-items: flex-start;
    padding: 12px 16px;
    gap: 8px;
    border-color: #d1d5db;
  }

  .btr-margin__benefit-heading {
    display: flex;
    width: 100%;
    min-height: 32px;
    align-items: center;
    gap: 12px;
  }

  .btr-margin__benefit-icon {
    flex: 0 0 32px;
    width: 32px;
    height: 32px;
  }

  .btr-margin__benefit-icon img {
    width: 18px;
    height: 18px;
  }

  .btr-margin__benefit h3 {
    margin: 0;
    font-size: 18px;
    line-height: 1.6;
  }

  .btr-margin__benefit p {
    width: 100%;
    color: #555;
    font-size: 12px;
    line-height: 1.6;
  }

  .btr-price {
    padding: 60px 20px 80px;
  }

  .btr-price__container {
    width: 100%;
    gap: 32px;
  }

  .btr-price__heading {
    gap: 16px;
  }

  .btr-price__title {
    width: 100%;
  }

  .btr-price__eyebrow {
    font-size: 12px;
    line-height: 1.25;
  }

  .btr-price__heading h2 {
    font-size: 28px;
    line-height: 1.4;
  }

  .btr-price__lead,
  .btr-price__heading-note {
    width: 100%;
    text-align: left;
  }

  .btr-price__lead {
    font-size: 16px;
    line-height: 1.6;
  }

  .btr-price__heading-note {
    font-size: 12px;
    line-height: 1.6;
  }

  .btr-price__col-type {
    width: 39%;
  }

  .btr-price__col-unit {
    width: 35%;
  }

  .btr-price__col-total {
    width: 26%;
  }

  .btr-price__table-wrap table th:first-child,
  .btr-price__table-wrap table td:first-child {
    width: 39%;
  }

  .btr-price__table-wrap table th:nth-child(2),
  .btr-price__table-wrap table td:nth-child(2) {
    width: 35%;
  }

  .btr-price__table-wrap table th:nth-child(3),
  .btr-price__table-wrap table td:nth-child(3) {
    width: 26%;
  }

  .btr-price__table thead th,
  .btr-price__table-wrap table thead th {
    padding: 11px 8px;
    font-size: 15px;
    line-height: 1.25;
  }

  .btr-price__table thead span,
  .btr-price__table-wrap table thead span {
    display: block;
    margin-left: 0;
  }

  .btr-price__table tbody th,
  .btr-price__table tbody td,
  .btr-price__table-wrap table tbody th,
  .btr-price__table-wrap table tbody td {
    padding: 16px 8px;
    font-size: 16px;
    line-height: 1.4;
  }

  .btr-price__appeals {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .btr-price__appeals li {
    min-height: 68px;
    padding: 12px 24px;
  }

  .btr-price__extras {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .btr-price__extra {
    padding: 20px;
  }

  .btr-price__footnote {
    font-size: 12px;
    line-height: 1.6;
    text-align: left;
  }

  .btr-faq {
    padding: 60px 20px;
  }

  .btr-faq__container {
    width: 100%;
    gap: 32px;
  }

  .btr-faq__eyebrow {
    font-size: 12px;
    line-height: 1.25;
  }

  .btr-faq__heading h2 {
    font-size: 28px;
    line-height: 1.4;
  }

  .btr-faq__list {
    gap: 16px;
  }

  .btr-faq__item {
    padding: 16px;
    gap: 16px;
  }

  .btr-faq__label {
    font-size: 13px;
  }

  .btr-faq__row h3 {
    font-size: 18px;
    line-height: 1.5;
  }

  .btr-faq__row p {
    font-size: 16px;
    line-height: 1.6;
  }

  .btr-flow {
    padding: 60px 20px 80px;
  }

  .btr-flow__container {
    width: 100%;
    gap: 32px;
  }

  .btr-flow__heading {
    gap: 16px;
  }

  .btr-flow__eyebrow {
    font-size: 12px;
    line-height: 1.25;
  }

  .btr-flow__heading h2 {
    font-size: 28px;
    line-height: 1.4;
  }

  .btr-flow__lead {
    font-size: 16px;
    line-height: 1.6;
  }

  .btr-flow__steps {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: stretch;
    gap: 12px;
  }

  .btr-flow__step {
    padding: 20px;
    gap: 4px;
  }

  .btr-flow__step-heading {
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
  }

  .btr-flow__step-heading span {
    font-size: 20px;
    line-height: 1.5;
  }

  .btr-flow__step-heading h3 {
    font-size: 18px;
    line-height: 1.6;
  }

  .btr-flow__step > p {
    font-size: 14px;
    line-height: 1.6;
  }

  .btr-image-area-2 {
    height: 200px;
  }

  .btr-company {
    padding: 60px 20px 80px;
  }

  .btr-company__container {
    width: 100%;
    gap: 32px;
  }

  .btr-company__eyebrow {
    font-size: 12px;
    line-height: 1.25;
  }

  .btr-company__heading h2 {
    font-size: 28px;
    line-height: 1.4;
  }

  .btr-company__content {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .btr-company__profile {
    gap: 32px;
  }

  .btr-company__intro {
    font-size: 14px;
    line-height: 1.6;
  }

  .btr-company__details > div {
    min-height: 48px;
    grid-template-columns: 80px minmax(0, 1fr);
    padding: 12px 16px;
    gap: 16px;
  }

  .btr-company__details dt,
  .btr-company__details dd {
    font-size: 13px;
    line-height: 1.6;
  }

  .btr-company__area {
    padding: 16px;
    gap: 12px;
    border-radius: 0;
  }

  .btr-company__area h3 {
    font-size: 16px;
    line-height: 1.6;
    text-align: center;
  }

  .btr-contact {
    padding: 60px 20px 80px;
    background-position: center;
  }

  .btr-contact__container {
    width: 100%;
    gap: 32px;
  }

  .btr-contact__heading {
    gap: 16px;
  }

  .btr-contact__eyebrow {
    font-size: 13px;
    line-height: 16px;
  }

  .btr-contact__heading h2 {
    font-size: 28px;
    line-height: 1.4;
  }

  .btr-contact__lead {
    font-size: 16px;
    line-height: 1.6;
  }

  .btr-contact__form {
    padding: 24px;
    gap: 24px;
  }

  .btr-contact__methods {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .btr-contact__method {
    width: 100%;
    min-height: 0;
    padding: 24px;
  }

  .btr-contact__method--phone {
    min-height: 260px;
    gap: 16px;
  }

  .btr-contact__method--line {
    min-height: 267px;
  }

  .btr-contact__phone-copy {
    display: none;
  }

  .btr-contact__phone-number {
    padding-top: 0;
    border-top: 0;
  }

  .btr-contact__phone-number img {
    width: 28px;
    height: 28px;
  }

  .btr-contact__phone-number a {
    font-family: inherit;
    font-size: clamp(24px, 7.2vw, 28px);
    line-height: 1.4;
  }

  .btr-contact__phone-note {
    display: block;
  }

  .btr-contact__phone-button {
    display: grid;
  }

  .btr-contact-confirm {
    padding: 20px;
  }

  .btr-contact-confirm__card {
    max-height: calc(100vh - 40px);
    padding: 28px 20px;
    gap: 28px;
  }

  .btr-contact-confirm__heading h2 {
    font-size: 28px;
    line-height: 1.4;
  }

  .btr-contact-confirm__row {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .btr-contact-confirm__label {
    font-weight: 700;
  }

  .btr-contact-confirm__actions {
    grid-template-columns: 1fr;
  }

  .btr-contact__line-content {
    grid-template-columns: minmax(0, 1fr) 90px;
  }

  .btr-footer {
    padding: 60px 20px 20px;
  }

  .btr-footer__inner {
    gap: 32px;
  }

  .btr-footer__main {
    flex-direction: column;
    gap: 32px;
  }

  .btr-footer__left {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 32px;
  }

  .btr-footer__info {
    width: 100%;
    gap: 16px;
  }

  .btr-footer__brand {
    width: min(200px, 100%);
    height: auto;
    aspect-ratio: 200 / 46;
  }

  .btr-footer__contact {
    gap: 12px;
  }

  .btr-footer__phone {
    font-size: 24px;
  }

  .btr-footer__contact p {
    font-size: 12px;
  }

  .btr-footer__partners {
    width: 100%;
    align-items: flex-start;
    gap: 12px;
  }

  .btr-footer__partners h2 {
    font-size: 11px;
    line-height: 13px;
  }

  .btr-footer__partner-logos {
    justify-content: flex-start;
    gap: 12px;
  }

  .btr-footer__partner-card {
    flex: 1 1 0;
    min-width: 0;
    height: 77px;
  }

  .btr-footer__partner-logo-1 {
    width: 60px;
    max-width: 64%;
  }

  .btr-footer__partner-logo-2 {
    width: 100px;
    max-width: 72%;
  }

  .btr-footer__nav {
    flex-direction: column;
    gap: 12px;
  }

  .btr-footer__nav-column {
    gap: 12px;
  }

  .btr-footer__nav a {
    font-size: 14px;
    line-height: 1.6;
  }

  .btr-footer__nav-faq {
    display: none;
  }

  .btr-footer__copyright {
    font-size: 10px;
    line-height: 1.2;
  }
}
