:root {
  --mk-ink: #17212b;
  --mk-muted: #60707f;
  --mk-navy: #123d66;
  --mk-blue: #1f78b4;
  --mk-aqua: #66c7d6;
  --mk-mint: #e9f8f3;
  --mk-paper: #f8fbfd;
  --mk-white: #ffffff;
  --mk-sun: #f4b942;
  --mk-line: rgba(18, 61, 102, 0.14);
  --mk-shadow: 0 18px 46px rgba(18, 61, 102, 0.12);
  --mk-radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--mk-paper);
  color: var(--mk-ink);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, sans-serif;
  letter-spacing: 0;
}

body .is-layout-constrained > :where(:not(.alignleft):not(.alignright):not(.alignfull)) {
  max-width: 1120px;
}

.is-layout-constrained {
  margin-left: auto;
  margin-right: auto;
  max-width: 1120px;
  padding-left: 24px;
  padding-right: 24px;
}

a {
  color: var(--mk-blue);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

.mk-section {
  padding-block: 84px;
}

.mk-section-tight {
  padding-block: 56px;
}

.mk-kicker {
  color: var(--mk-blue);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  margin: 0 0 10px;
  text-transform: uppercase;
}

.mk-lead {
  color: var(--mk-muted);
  font-size: 1.08rem;
  line-height: 1.9;
}

.mk-site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid var(--mk-line);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
}

.admin-bar .mk-site-header {
  top: 32px;
}

.mk-header-inner {
  align-items: center;
  display: flex;
  gap: 24px;
  justify-content: space-between;
  min-height: 76px;
}

.mk-brand {
  align-items: center;
  color: var(--mk-navy);
  display: inline-flex;
  gap: 12px;
  font-weight: 800;
  text-decoration: none;
}

.mk-brand img {
  border-radius: 6px;
  height: 48px;
  object-fit: cover;
  width: 48px;
}

.mk-brand small {
  color: var(--mk-muted);
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1.2;
}

.mk-nav {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: flex-end;
}

.mk-nav a {
  border-radius: 999px;
  color: var(--mk-ink);
  display: inline-flex;
  font-size: 0.92rem;
  font-weight: 700;
  padding: 8px 11px;
  text-decoration: none;
}

.mk-nav a:hover {
  background: var(--mk-mint);
  color: var(--mk-navy);
}

.mk-nav .mk-nav-reserve {
  background: var(--mk-blue);
  color: var(--mk-white);
}

.mk-button .wp-block-button__link,
.mk-button-secondary .wp-block-button__link {
  border-radius: 999px;
  font-weight: 800;
  line-height: 1.2;
  min-height: 48px;
  padding: 15px 22px;
}

.wp-block-buttons {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.mk-button .wp-block-button__link {
  background: var(--mk-blue);
  color: var(--mk-white);
}

.mk-button-secondary .wp-block-button__link {
  background: var(--mk-white);
  border: 1px solid var(--mk-line);
  color: var(--mk-navy);
}

.mk-hero {
  background:
    linear-gradient(90deg, rgba(248, 251, 253, 0.96) 0%, rgba(248, 251, 253, 0.85) 46%, rgba(18, 61, 102, 0.06) 100%),
    var(--mk-paper);
  min-height: 720px;
  padding: 72px 0 64px;
}

.mk-hero-grid {
  align-items: center;
  display: grid;
  gap: 52px;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
}

.mk-hero h1 {
  color: var(--mk-navy);
  font-size: 2.75rem;
  line-height: 1.18;
  margin: 0;
  max-width: 780px;
}

.mk-hero-media {
  display: grid;
  gap: 14px;
  grid-template-columns: 0.75fr 1fr;
}

.mk-hero-media figure,
.mk-image-card {
  margin: 0;
}

.mk-hero-media img,
.mk-image-card img {
  border-radius: var(--mk-radius);
  box-shadow: var(--mk-shadow);
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.mk-hero-media figure:first-child {
  align-self: end;
  height: 330px;
}

.mk-hero-media figure:last-child {
  height: 520px;
}

.mk-notice-row {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 34px;
}

.mk-mini-card,
.mk-service-card,
.mk-voice,
.mk-faq-item,
.mk-info-card,
.mk-post-list > li,
.mk-card-grid > li {
  background: var(--mk-white);
  border: 1px solid var(--mk-line);
  border-radius: var(--mk-radius);
  box-shadow: 0 10px 30px rgba(18, 61, 102, 0.07);
}

.mk-mini-card {
  padding: 18px;
}

.mk-mini-card strong {
  color: var(--mk-navy);
  display: block;
  font-size: 1.02rem;
}

.mk-mini-card span {
  color: var(--mk-muted);
  display: block;
  font-size: 0.88rem;
  line-height: 1.6;
  margin-top: 4px;
}

.mk-band {
  background: var(--mk-white);
}

.mk-soft-band {
  background: linear-gradient(180deg, var(--mk-mint), var(--mk-paper));
}

.mk-two-column {
  align-items: center;
  display: grid;
  gap: 54px;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
}

.mk-two-column.reverse {
  grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1fr);
}

.mk-reason-grid,
.mk-service-grid,
.mk-case-grid,
.mk-voice-grid,
.mk-info-grid {
  display: grid;
  gap: 20px;
}

.mk-reason-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.mk-service-grid,
.mk-case-grid,
.mk-voice-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.mk-info-grid {
  grid-template-columns: 1fr 1fr;
}

.mk-service-card,
.mk-voice,
.mk-faq-item,
.mk-info-card {
  overflow: hidden;
  padding: 24px;
}

.mk-service-card figure {
  margin: -24px -24px 20px;
}

.mk-service-card img,
.mk-case-card img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
  width: 100%;
}

.mk-service-card h3,
.mk-voice h3,
.mk-info-card h3 {
  color: var(--mk-navy);
  margin: 0 0 8px;
}

.mk-card-number {
  align-items: center;
  background: var(--mk-mint);
  border-radius: 999px;
  color: var(--mk-blue);
  display: inline-flex;
  font-size: 0.9rem;
  font-weight: 900;
  height: 38px;
  justify-content: center;
  margin-bottom: 14px;
  width: 38px;
}

.mk-case-card {
  background: var(--mk-white);
  border-radius: var(--mk-radius);
  box-shadow: var(--mk-shadow);
  overflow: hidden;
}

.mk-case-card .mk-case-body {
  padding: 18px;
}

.mk-case-card h3 {
  color: var(--mk-navy);
  margin: 0 0 6px;
}

.mk-price-list {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.mk-price-row {
  align-items: start;
  background: var(--mk-white);
  border: 1px solid var(--mk-line);
  border-radius: var(--mk-radius);
  display: grid;
  gap: 18px;
  grid-template-columns: minmax(0, 1fr) auto;
  padding: 18px;
}

.mk-price-row strong {
  color: var(--mk-navy);
}

.mk-price-row span {
  color: var(--mk-blue);
  font-weight: 900;
  white-space: nowrap;
}

.mk-cta {
  background: var(--mk-navy);
  color: var(--mk-white);
  padding-block: 72px;
}

.mk-cta h2,
.mk-cta p {
  color: var(--mk-white);
}

.mk-cta p {
  color: rgba(255, 255, 255, 0.82);
}

.mk-page-hero {
  background: linear-gradient(180deg, var(--mk-mint), var(--mk-paper));
  padding-block: 72px 46px;
}

.mk-page-hero h1 {
  color: var(--mk-navy);
}

.mk-article {
  background: var(--mk-white);
  border: 1px solid var(--mk-line);
  border-radius: var(--mk-radius);
  margin-block: 56px;
  padding: 36px;
}

.mk-meta {
  color: var(--mk-muted);
  font-size: 0.9rem;
}

.mk-post-list,
.mk-card-grid {
  display: grid;
  gap: 20px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.mk-card-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.mk-post-list > li,
.mk-card-grid > li {
  padding: 22px;
}

.mk-card-grid > li {
  overflow: hidden;
  padding: 0 0 22px;
}

.mk-card-grid > li > *:not(.wp-block-post-featured-image) {
  margin-left: 20px;
  margin-right: 20px;
}

.mk-card-title,
.mk-list-title {
  font-size: 1.18rem;
  margin-top: 16px;
}

.mk-footer {
  background: #0d2b46;
  color: rgba(255, 255, 255, 0.82);
  padding-block: 56px 28px;
}

.mk-footer h2,
.mk-footer h3,
.mk-footer a {
  color: var(--mk-white);
}

.mk-footer-grid {
  display: grid;
  gap: 34px;
  grid-template-columns: 1.2fr 1fr 1fr;
}

.mk-footer small {
  color: rgba(255, 255, 255, 0.62);
  display: block;
  margin-top: 34px;
}

.mk-sticky-mobile {
  display: none;
}

@media (max-width: 980px) {
  .mk-header-inner,
  .mk-hero-grid,
  .mk-two-column,
  .mk-two-column.reverse,
  .mk-footer-grid {
    grid-template-columns: 1fr;
  }

  .mk-header-inner {
    align-items: flex-start;
    display: grid;
    gap: 12px;
    padding-block: 12px;
  }

  .mk-hero {
    min-height: 0;
    padding-top: 42px;
  }

  .mk-hero h1 {
    font-size: 2.25rem;
  }

  .mk-hero-media {
    grid-template-columns: 1fr 1fr;
  }

  .mk-hero-media figure:first-child,
  .mk-hero-media figure:last-child {
    height: 300px;
  }

  .mk-notice-row,
  .mk-reason-grid,
  .mk-service-grid,
  .mk-case-grid,
  .mk-voice-grid,
  .mk-info-grid,
  .mk-card-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 720px) {
  .admin-bar .mk-site-header {
    top: 0;
  }

  .mk-section {
    padding-block: 56px;
  }

  .mk-nav {
    justify-content: flex-start;
  }

  .mk-nav a {
    font-size: 0.84rem;
    padding: 7px 9px;
  }

  .mk-hero h1 {
    font-size: 1.95rem;
  }

  .mk-hero-media,
  .mk-notice-row,
  .mk-reason-grid,
  .mk-service-grid,
  .mk-case-grid,
  .mk-voice-grid,
  .mk-info-grid,
  .mk-card-grid {
    grid-template-columns: 1fr;
  }

  .mk-hero-media figure:first-child,
  .mk-hero-media figure:last-child {
    height: auto;
  }

  .mk-price-row {
    grid-template-columns: 1fr;
  }

  .wp-block-buttons {
    align-items: stretch;
    flex-direction: column;
  }

  .wp-block-buttons .wp-block-button,
  .wp-block-buttons .wp-block-button__link {
    display: flex;
    justify-content: center;
    width: 100%;
  }

  .mk-sticky-mobile {
    background: var(--mk-white);
    border-top: 1px solid var(--mk-line);
    bottom: 0;
    display: grid;
    gap: 8px;
    grid-template-columns: 1fr 1fr;
    left: 0;
    padding: 8px;
    position: fixed;
    right: 0;
    z-index: 30;
  }

  .mk-sticky-mobile a {
    align-items: center;
    border-radius: 999px;
    display: flex;
    font-size: 0.9rem;
    font-weight: 800;
    justify-content: center;
    min-height: 44px;
    text-decoration: none;
  }

  .mk-sticky-mobile a:first-child {
    background: #06c755;
    color: var(--mk-white);
  }

  .mk-sticky-mobile a:last-child {
    background: var(--mk-blue);
    color: var(--mk-white);
  }
}

/* Local reproduction of the DETAIL SALON LIBERTY top-page structure. */
.liberty-clone,
.liberty-clone * {
  box-sizing: border-box;
  letter-spacing: 0.05em;
}

.liberty-clone {
  background: #fff;
  color: #333;
  font-family: "Noto Sans JP", Meiryo, "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  font-weight: 500;
  line-height: 1.8;
  margin: 0;
  overflow-x: hidden;
  width: 100%;
}

.liberty-clone a {
  color: inherit;
  text-decoration: none;
}

.liberty-clone img {
  display: block;
  height: auto;
  max-width: 100%;
  vertical-align: top;
  width: 100%;
}

.liberty-clone ul,
.liberty-clone ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

.liberty-clone p,
.liberty-clone li,
.liberty-clone dt,
.liberty-clone dd,
.liberty-clone time {
  font-size: 1rem;
}

.liberty-clone .inner {
  margin: 0 auto;
  max-width: 1100px;
}

.liberty-clone .pc_none {
  display: none;
}

.liberty-clone #wrapper {
  margin: 0 auto;
  overflow: hidden;
}

.liberty-clone #toggle {
  display: none;
}

.liberty-clone .fixed_header {
  align-items: center;
  background: #fff;
  box-shadow: 0 5px 10px rgba(51, 51, 51, 0.1);
  display: flex;
  justify-content: space-between;
  left: 0;
  padding-left: 30px;
  padding-right: 24px;
  position: fixed;
  top: -300px;
  transition: top 0.3s;
  width: 100%;
  z-index: 100;
}

.liberty-clone .fixed_header .header_logo {
  width: 150px;
}

.liberty-clone .fixed_header .header_content,
.liberty-clone header .header_logo_area .header_content {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin-left: auto;
  max-width: calc(100% - 330px);
  width: 603px;
}

.liberty-clone .fixed_header #g_navi,
.liberty-clone header .header_logo_area #g_navi {
  width: 603px;
}

.liberty-clone #g_navi .menu {
  align-items: center;
  display: flex;
  justify-content: space-between;
}

.liberty-clone #g_navi .menu li {
  line-height: 1.3;
  position: relative;
  text-align: center;
}

.liberty-clone header .header_logo_area #g_navi .menu li::after,
.liberty-clone .fixed_header #g_navi .menu li::after {
  bottom: 0;
  content: "";
  height: 30px;
  left: -30px;
  margin: auto 0;
  position: absolute;
  top: 0;
  width: 1px;
}

.liberty-clone header .header_logo_area #g_navi .menu li::after {
  background: #fff;
}

.liberty-clone .fixed_header #g_navi .menu li::after {
  background: #999;
}

.liberty-clone #g_navi .menu li:first-child::after {
  display: none;
}

.liberty-clone #g_navi .menu li a {
  display: inline-block;
  font-size: 1rem;
  position: relative;
}

.liberty-clone #g_navi .menu li a::after {
  background: currentColor;
  bottom: -4px;
  content: "";
  height: 1px;
  left: 0;
  position: absolute;
  transform: scale(0, 1);
  transform-origin: center top;
  transition: transform 0.5s;
  width: 100%;
}

.liberty-clone #g_navi .menu li a:hover::after {
  transform: scale(1, 1);
}

.liberty-clone #g_navi .menu li a span {
  font-size: 0.68rem;
}

.liberty-clone header {
  position: relative;
}

.liberty-clone header .header_logo_area {
  align-items: center;
  display: flex;
  justify-content: space-between;
  left: 0;
  padding-left: 30px;
  padding-right: 24px;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 10;
}

.liberty-clone header .header_logo_area .header_logo {
  background: #111;
  clip-path: polygon(0 0, 100% 0, 72% 100%, 0 100%);
  height: 220px;
  left: 0;
  margin: 0;
  padding: 22px 72px 54px 24px;
  position: absolute;
  top: 0;
  width: 300px;
}

.liberty-clone header .header_logo_area .header_logo img {
  height: 100%;
  object-fit: contain;
}

.liberty-clone header .header_logo_area #g_navi a {
  color: #fff;
  text-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
}

.liberty-clone .fixed_header #g_navi a {
  color: #333;
}

.liberty-clone header #slider {
  min-height: 720px;
  position: relative;
}

.liberty-clone .swiper,
.liberty-clone .swiper-wrapper,
.liberty-clone .swiper-slide,
.liberty-clone .slider_pic {
  height: 100%;
  min-height: 720px;
}

.liberty-clone .swiper-slide {
  display: none;
  position: relative;
}

.liberty-clone .swiper-slide:first-child {
  display: block;
}

.liberty-clone .slider_pic::after {
  background:
    linear-gradient(104deg, rgba(17, 17, 17, 0.82) 0%, rgba(17, 17, 17, 0.58) 31%, rgba(17, 17, 17, 0.12) 58%, rgba(17, 17, 17, 0.18) 100%),
    linear-gradient(90deg, rgba(17, 17, 17, 0.72), transparent 46%);
  content: "";
  inset: 0;
  position: absolute;
}

.liberty-clone .slider_pic img {
  height: 720px;
  object-fit: cover;
  object-position: center center;
}

.liberty-clone header #slider .slider_txt {
  bottom: 16%;
  left: 5%;
  position: absolute;
  width: 58%;
  z-index: 2;
}

.liberty-clone .slider_txt_clone p {
  color: #fff;
  font-family: "Noto Serif JP", serif;
  font-size: clamp(2.6rem, 4.7vw, 5rem);
  font-style: normal;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.15;
  text-shadow: 0 5px 8px rgba(0, 0, 0, 0.38);
}

.liberty-clone .slider_txt_clone span {
  color: #fff;
  display: block;
  font-family: "Noto Serif JP", serif;
  font-size: 1.65rem;
  font-weight: 700;
  margin-top: 38px;
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.42);
}

.liberty-clone .slider_txt_clone small {
  color: #fff;
  display: block;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.9;
  margin-top: 22px;
  max-width: 680px;
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.42);
}

.liberty-clone .slider_actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.liberty-clone .slider_actions a,
.liberty-clone .banner_btn a,
.liberty-clone .work_link_group a,
.liberty-clone .sp_fixed_cta a {
  align-items: center;
  display: inline-flex;
  font-weight: 900;
  justify-content: center;
  text-decoration: none;
}

.liberty-clone .slider_actions a {
  background: #fff;
  border: 1px solid #fff;
  color: #111;
  min-height: 50px;
  padding: 12px 20px;
}

.liberty-clone .slider_actions a:first-child {
  background: #06c755;
  border-color: #06c755;
  color: #fff;
}

.liberty-clone .slider_actions a:nth-child(2) {
  background: #1f7fbf;
  border-color: #1f7fbf;
  color: #fff;
}

@keyframes libertyLoop {
  0% { transform: translateX(100%); }
  to { transform: translateX(-100%); }
}

@keyframes libertyLoop2 {
  0% { transform: translateX(0); }
  to { transform: translateX(-200%); }
}

.liberty-clone .top_box01 {
  padding: 180px 0 80px;
  position: relative;
}

.liberty-clone .top_box01_loop_box,
.liberty-clone .top_box04_loop_box {
  display: flex;
  left: 0;
  overflow: hidden;
  position: absolute;
  width: 100%;
  z-index: 0;
}

.liberty-clone .top_box01_loop_box {
  top: -60px;
}

.liberty-clone .top_box04_loop_box {
  top: 50px;
}

.liberty-clone .loop__item {
  color: #f5f5f5;
  flex: 0 0 auto;
  font-size: clamp(9rem, 19vw, 18rem);
  font-style: italic;
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
}

.liberty-clone .loop__item:nth-child(odd) {
  animation: libertyLoop 16s -8s linear infinite;
}

.liberty-clone .loop__item:nth-child(even) {
  animation: libertyLoop2 16s linear infinite;
}

.liberty-clone .top_box01_wrap {
  align-items: center;
  display: flex;
  justify-content: space-between;
  position: relative;
  z-index: 1;
}

.liberty-clone .top_box01_pic01 {
  width: 16.15%;
}

.liberty-clone .top_box01_pic02,
.liberty-clone .top_box01_pic03 {
  width: 20.83%;
}

.liberty-clone .top_box01_pic01 img,
.liberty-clone .top_box01_pic02 img,
.liberty-clone .top_box01_pic03 img {
  height: 650px;
  object-fit: cover;
}

.liberty-clone .top_box01_content {
  padding: 0 30px;
  width: 36.46%;
}

.liberty-clone .top_box01_tit,
.liberty-clone .top_box04_tit,
.liberty-clone .top_box05_tit,
.liberty-clone .top_box07_tit,
.liberty-clone .top_box09_tit {
  color: #111;
  font-style: italic;
  font-weight: 900;
  letter-spacing: 0.05em;
  position: relative;
  z-index: 1;
}

.liberty-clone .top_box01_tit {
  font-family: "Noto Serif JP", serif;
  font-size: clamp(2.7rem, 3.3vw, 4.2rem);
  font-style: normal;
  line-height: 1.5;
  margin: 0 0 80px;
}

.liberty-clone .top_box01_tit::after,
.liberty-clone .top_box03_tit::after,
.liberty-clone .top_box04_tit::after,
.liberty-clone .top_box05_tit::after,
.liberty-clone .top_box07_tit::after,
.liberty-clone .top_box09_tit::after {
  background: rgba(17, 17, 17, 0.06);
  border-radius: 999px;
  content: "";
  height: 220px;
  left: -20px;
  margin: auto 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 280px;
  z-index: -1;
}

.liberty-clone .top_box01_tit span {
  display: block;
  font-size: clamp(3rem, 4vw, 4.6rem);
  font-style: italic;
  line-height: 1.2;
}

.liberty-clone .line_break {
  padding-top: 26px;
}

.liberty-clone .top_box02 {
  background:
    linear-gradient(rgba(17, 17, 17, 0.44), rgba(17, 17, 17, 0.44)),
    url("../images/detail-water.webp") center/cover no-repeat;
  padding: 130px 10px 100px;
}

.liberty-clone .top_box02_inner {
  background: #e5e5e5;
  box-shadow: 30px -30px #666;
  margin: 0 auto;
  max-width: 1200px;
  padding: 70px 130px;
  transform: skew(-15deg, 0deg);
}

.liberty-clone .top_box02_wrap {
  align-items: center;
  display: flex;
  justify-content: space-between;
  transform: skew(15deg, 0deg);
}

.liberty-clone .top_box02 figure {
  width: 42%;
}

.liberty-clone .top_box02 figure img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.liberty-clone .top_box02_content {
  width: 420px;
}

.liberty-clone .top_box02_tit,
.liberty-clone .top_box03_tit {
  color: #111;
  font-size: clamp(5rem, 7.2vw, 7.5rem);
  font-style: italic;
  font-weight: 900;
  letter-spacing: 0.05em;
  line-height: 0.5;
}

.liberty-clone .top_box02_tit {
  margin: 0 0 50px;
  text-align: center;
}

.liberty-clone .top_box02_tit span,
.liberty-clone .top_box03_tit span,
.liberty-clone .top_box04_tit span,
.liberty-clone .top_box05_tit span,
.liberty-clone .top_box06_tit span,
.liberty-clone .top_box07_tit span,
.liberty-clone .top_box09_tit span {
  font-family: "Noto Serif JP", serif;
  font-size: 1.65rem;
  font-style: normal;
  letter-spacing: 0.01em;
}

.liberty-clone .top_box03 {
  background: linear-gradient(90deg, transparent 0%, transparent 62%, #f2f2f2 62%, #f2f2f2 100%);
  padding: 150px 30px 150px 0;
}

.liberty-clone .top_box03_wrap {
  max-width: 1570px;
  position: relative;
}

.liberty-clone .top_box03 figure {
  width: 73.89%;
}

.liberty-clone .top_box03 figure img {
  height: 800px;
  object-fit: cover;
  object-position: center center;
}

.liberty-clone .top_box03_content {
  position: absolute;
  right: 30px;
  top: 25%;
  width: 34.03%;
}

.liberty-clone .top_box03_tit {
  margin: 0 0 80px 50px;
  position: relative;
  z-index: 1;
}

.liberty-clone .top_box03_list {
  margin-bottom: 50px;
}

.liberty-clone .top_box03_list li {
  font-size: 1.35rem;
  line-height: 1.5;
  margin-bottom: 20px;
  padding-left: 50px;
  position: relative;
}

.liberty-clone .top_box03_list li::after {
  align-items: center;
  background: #111;
  border-radius: 50%;
  color: #fff;
  content: "✓";
  display: flex;
  font-size: 0.9rem;
  font-weight: 900;
  height: 30px;
  justify-content: center;
  left: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
}

.liberty-clone .top_box03_txt {
  font-family: "Noto Serif JP", serif;
  font-size: 1.7rem;
  font-weight: 700;
  line-height: 1.2;
}

.liberty-clone .top_box04 {
  padding: 180px 0 150px 10px;
  position: relative;
}

.liberty-clone .top_box04_tit,
.liberty-clone .top_box05_tit,
.liberty-clone .top_box07_tit {
  font-size: clamp(5rem, 8vw, 7.5rem);
  line-height: 0.4;
  margin: 0 0 100px;
}

.liberty-clone .top_box04_wrap {
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
  max-width: 1420px;
  padding: 0 10px;
  position: relative;
  z-index: 1;
}

.liberty-clone .top_box04_content {
  display: flex;
  flex-direction: column;
  min-height: 0;
  width: 32%;
}

.liberty-clone .top_box04_content:first-of-type {
  margin-top: 200px;
}

.liberty-clone .top_box04_content:nth-of-type(2) {
  margin-top: 100px;
}

.liberty-clone .top_box04_content figure {
  margin: 0 0 30px;
  position: relative;
}

.liberty-clone .top_box04_content figure img {
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.liberty-clone .top_box04_content figcaption {
  background: #fff;
  bottom: 100px;
  font-size: 1.85rem;
  font-style: italic;
  font-weight: 900;
  left: 0;
  line-height: 1.2;
  padding: 10px;
  position: absolute;
}

.liberty-clone .top_box04_content .tit {
  color: #111;
  font-family: "Noto Serif JP", serif;
  font-size: clamp(2rem, 2.6vw, 3.2rem);
  font-weight: 900;
  line-height: 1.2;
  margin: 0 0 30px;
}

.liberty-clone .top_box04_content .txt {
  position: relative;
  z-index: 1;
}

.liberty-clone .service_banner_clone {
  background:
    linear-gradient(90deg, rgba(17, 17, 17, 0.92), rgba(17, 17, 17, 0.62)),
    url("../images/pickup-service.webp") center/cover no-repeat;
  color: #fff;
  min-height: 260px;
  padding: 48px 58px;
}

.liberty-clone .service_banner_clone span {
  color: #d8aa45;
  display: block;
  font-size: 1rem;
  font-style: italic;
  font-weight: 900;
  margin-bottom: 12px;
}

.liberty-clone .service_banner_clone strong {
  display: block;
  font-family: "Noto Serif JP", serif;
  font-size: clamp(2rem, 3.4vw, 3.2rem);
  line-height: 1.35;
}

.liberty-clone .banner_btn {
  margin: 28px 0 0;
}

.liberty-clone .banner_btn a {
  background: #fff;
  color: #111;
  min-height: 54px;
  padding: 14px 24px;
}

.liberty-clone .top_service_box {
  margin-top: 60px;
  margin-bottom: 100px;
}

.liberty-clone .top_box05 {
  background:
    linear-gradient(rgba(245, 245, 245, 0.9), rgba(245, 245, 245, 0.9)),
    url("../images/detail-watermark-clean.webp") center/cover no-repeat;
  padding: 150px 0;
}

.liberty-clone .top_box05 .inner {
  text-align: center;
}

.liberty-clone .attension_txt {
  margin-bottom: 50px;
  text-align: center;
}

.liberty-clone .attension_txt span {
  background: #111;
  border-radius: 5px;
  color: #fff;
  display: inline-block;
  font-family: "Noto Serif JP", serif;
  font-size: clamp(2.8rem, 4.2vw, 4.8rem);
  line-height: 1.2;
  padding: 10px 50px;
}

.liberty-clone .top_box05_content01,
.liberty-clone .top_box05_content02 {
  margin-bottom: 50px;
}

.liberty-clone .subhead03 {
  background: #111;
  color: #fff;
  font-size: 1.7rem;
  font-weight: 800;
  margin: 0;
  padding: 18px 20px;
  text-align: left;
}

.liberty-clone .price_table,
.liberty-clone .overview_table {
  border-collapse: collapse;
  width: 100%;
}

.liberty-clone .price_table th,
.liberty-clone .price_table td,
.liberty-clone .overview_table th,
.liberty-clone .overview_table td {
  border: 1px solid #ccc;
  font-size: 1.35rem;
  text-align: center;
  vertical-align: middle;
}

.liberty-clone .price_table th,
.liberty-clone .overview_table th {
  background: #d8aa45;
  color: #111;
  padding: 13px 10px;
}

.liberty-clone .price_table td,
.liberty-clone .overview_table td {
  background: #fff;
  padding: 18px 5px;
}

.liberty-clone .service_menu_grid {
  display: grid;
  gap: 28px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  text-align: left;
}

.liberty-clone .service_menu_grid.compact {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.liberty-clone .service_menu_card {
  background: #fff;
  border: 1px solid #d8aa45;
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.08);
  min-height: 100%;
  overflow: hidden;
  position: relative;
}

.liberty-clone .service_category {
  background: #d8aa45;
  color: #111;
  display: inline-block;
  font-size: 0.86rem;
  font-weight: 900;
  line-height: 1;
  margin: 22px 22px 14px;
  padding: 8px 12px;
}

.liberty-clone .service_menu_card .subhead03 {
  margin-bottom: 0;
}

.liberty-clone .service_price {
  color: #111;
  font-family: "Noto Serif JP", serif;
  font-size: clamp(2.1rem, 2.7vw, 2.8rem);
  font-weight: 900;
  line-height: 1.2;
  margin: 24px 24px 12px;
}

.liberty-clone .service_meta {
  color: #333;
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.85;
  margin: 0;
  padding: 0 24px 28px;
}

.liberty-clone .car_size {
  align-items: center;
  background: #fff;
  border: 2px solid #111;
  border-radius: 999px;
  color: #111;
  display: inline-flex;
  font-weight: 900;
  height: 54px;
  justify-content: center;
  width: 76px;
}

.liberty-clone .top_box06 {
  padding: 100px 10px;
  position: relative;
  z-index: 1;
}

.liberty-clone .top_box06::after,
.liberty-clone .top_box06::before {
  content: "";
  height: 120%;
  left: 0;
  position: absolute;
  top: -10%;
  width: 100%;
  z-index: -1;
}

.liberty-clone .top_box06::after {
  background: #111;
  clip-path: polygon(0 15%, 100% 0, 100% 85%, 0% 100%);
}

.liberty-clone .top_box06::before {
  background: #666;
  clip-path: polygon(0 0, 100% 10%, 100% 100%, 0 90%);
  z-index: -2;
}

.liberty-clone .top_box06_inner {
  margin: 0 auto;
  max-width: 1680px;
  padding: 0 10px;
}

.liberty-clone .top_box06_tit_wrap {
  align-items: flex-end;
  display: flex;
  justify-content: space-between;
  margin-bottom: 50px;
}

.liberty-clone .top_box06_tit {
  color: #fff;
  font-size: clamp(5rem, 7.4vw, 6.4rem);
  font-style: italic;
  font-weight: 900;
  line-height: 1.2;
  margin: 0;
}

.liberty-clone .top_box06_btn a,
.liberty-clone .top_box07_btn a,
.liberty-clone .top_box09_btn a {
  border: 1px solid currentColor;
  display: block;
  font-size: 1.1rem;
  line-height: 65px;
  position: relative;
  text-align: center;
  text-decoration: none;
  width: 270px;
}

.liberty-clone .top_box06_btn a {
  color: #fff;
}

.liberty-clone .top_box07_btn a,
.liberty-clone .top_box09_btn a {
  background: #111;
  color: #fff;
}

.liberty-clone .top_box06_content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.liberty-clone .top_box06_content article {
  position: relative;
  width: 25%;
}

.liberty-clone .top_box06_content article img {
  aspect-ratio: 5 / 4;
  object-fit: cover;
  object-position: center 38%;
}

.liberty-clone .top_box06_content article h3 {
  background: #333;
  bottom: 20px;
  color: #fff;
  font-size: 1.35rem;
  font-weight: 900;
  left: 0;
  line-height: 1.2;
  margin: 0;
  padding: 8px 20px;
  position: absolute;
}

.liberty-clone .top_box06_lead {
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.08rem;
  line-height: 1.9;
  margin-top: 46px;
  max-width: 940px;
}

.liberty-clone .work_link_group {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.liberty-clone .work_link_group a {
  border: 1px solid #fff;
  color: #fff;
  min-height: 58px;
  padding: 14px 22px;
}

.liberty-clone .top_voice {
  background: #f3f9fc;
  padding: 120px 10px;
}

.liberty-clone .voice_card_grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 70px;
}

.liberty-clone .voice_card_grid article {
  background: #fff;
  border-left: 5px solid #63b8d8;
  box-shadow: 0 18px 40px rgba(17, 17, 17, 0.08);
  padding: 34px 30px;
}

.liberty-clone .voice_card_grid h3 {
  color: #111;
  font-family: "Noto Serif JP", serif;
  font-size: 1.45rem;
  margin: 0 0 18px;
}

.liberty-clone .voice_card_grid p {
  margin: 0;
}

.liberty-clone .top_box07 {
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
  max-width: 1220px;
  padding: 200px 10px 100px;
}

.liberty-clone .top_box07_content {
  width: 860px;
}

.liberty-clone .top_box07_content dl {
  margin: 0 0 50px;
}

.liberty-clone .top_box07_content dl:last-of-type {
  margin-bottom: 0;
}

.liberty-clone .top_box07_content dt {
  background: rgba(51, 51, 51, 0.1);
  border-left: 5px solid #333;
  font-size: 1.5rem;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 30px;
  padding: 30px 30px 30px 50px;
}

.liberty-clone .top_box07_content dd {
  padding: 0 30px 0 50px;
}

.liberty-clone .top_box08 {
  background: #111;
  padding: 150px 0 150px 30px;
}

.liberty-clone .top_box08_wrap {
  margin-left: auto;
  max-width: 1570px;
  position: relative;
}

.liberty-clone .top_box08 figure {
  margin-left: auto;
  width: 73.89%;
}

.liberty-clone .top_box08 figure img {
  height: 800px;
  object-fit: cover;
  object-position: center center;
}

.liberty-clone .top_box08_content {
  color: #fff;
  left: 0;
  position: absolute;
  top: 28%;
  width: 35.03%;
  z-index: 2;
}

.liberty-clone .top_box08_tit {
  font-family: "Noto Serif JP", serif;
  font-size: clamp(2.6rem, 3.2vw, 4.2rem);
  font-weight: 900;
  line-height: 1.5;
  margin: 0 0 80px;
}

.liberty-clone .top_box09 {
  margin: 0 auto;
  max-width: 1220px;
  padding: 100px 10px;
}

.liberty-clone .top_box09_wrap {
  align-items: flex-start;
  border-top: 1px solid #333;
  display: flex;
  justify-content: space-between;
  padding-top: 130px;
}

.liberty-clone .top_box09_tit {
  font-size: clamp(5rem, 7vw, 6.4rem);
  line-height: 0.4;
  margin: 0;
}

.liberty-clone .top_box09_articel_area {
  width: 800px;
}

.liberty-clone .top_box09_content {
  height: 260px;
  margin-bottom: 50px;
  overflow-y: auto;
  padding-right: 10px;
}

.liberty-clone .top_box09_content article {
  align-items: center;
  border-bottom: 1px solid #999;
  display: flex;
  padding: 30px 0;
}

.liberty-clone .top_box09_content article:first-of-type {
  padding-top: 0;
}

.liberty-clone .top_box09_content .time {
  line-height: 1.2;
  margin-right: 60px;
}

.liberty-clone .top_box09_content .tit {
  margin: 0;
}

.liberty-clone .top_box09_btn a {
  margin-left: auto;
}

.liberty-clone .line {
  background: #17c75a;
  text-align: center;
}

.liberty-clone .line a {
  color: #fff;
  display: block;
  font-size: clamp(1.8rem, 3vw, 3rem);
  font-weight: 900;
  padding: 58px 10px;
}

.liberty-clone .bottom_box {
  display: flex;
  gap: 28px;
  justify-content: space-between;
  margin-bottom: 100px;
  margin-top: 100px;
}

.liberty-clone .bottom_box li {
  flex: 1;
  overflow: hidden;
}

.liberty-clone .bottom_box img {
  aspect-ratio: 550 / 260;
  object-fit: cover;
}

.liberty-clone .footer_clone {
  background: #111;
  color: #fff;
  padding: 90px 10px 40px;
}

.liberty-clone .footer_wrap {
  align-items: flex-start;
  display: flex;
  gap: 58px;
  justify-content: space-between;
}

.liberty-clone .footer_content {
  align-items: flex-start;
  display: flex;
  gap: 34px;
  width: 50%;
}

.liberty-clone .footer_logo {
  width: 160px;
}

.liberty-clone .footer_info {
  flex: 1;
}

.liberty-clone .footer_info address {
  font-style: normal;
}

.liberty-clone .map {
  width: 46%;
}

.liberty-clone .map img {
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.liberty-clone .footer_nav {
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-top: 52px;
  padding-top: 30px;
}

.liberty-clone .copy {
  color: rgba(255, 255, 255, 0.64);
  margin-top: 32px;
  text-align: center;
}

.liberty-clone .to_top {
  bottom: 24px;
  position: fixed;
  right: 24px;
  z-index: 20;
}

.liberty-clone .to_top a {
  align-items: center;
  background: #111;
  border: 1px solid #fff;
  color: #fff;
  display: flex;
  font-size: 0.78rem;
  height: 70px;
  justify-content: center;
  width: 70px;
}

.liberty-clone #sp_navi {
  display: none;
}

.liberty-clone .sp_fixed_cta {
  display: none;
}

.liberty-clone header .header_logo_area .header_logo,
.liberty-clone .fixed_header .header_logo {
  background: #123d66;
}

.liberty-clone .slider_pic::after {
  background:
    linear-gradient(104deg, rgba(18, 61, 102, 0.78) 0%, rgba(31, 127, 191, 0.48) 34%, rgba(255, 255, 255, 0.08) 60%, rgba(18, 61, 102, 0.2) 100%),
    linear-gradient(90deg, rgba(18, 61, 102, 0.7), transparent 50%);
}

.liberty-clone .top_box03_list li::after,
.liberty-clone .attension_txt span,
.liberty-clone .top_box07_btn a,
.liberty-clone .top_box09_btn a,
.liberty-clone .to_top a,
.liberty-clone.under-page .subhead01,
.liberty-clone.under-page .overview_table02 th,
.liberty-clone.under-page .overview_table03 th,
.liberty-clone.under-page .under_btn a,
.liberty-clone.under-page .contact_cta_grid a,
.liberty-clone.under-page .tc button {
  background: #123d66;
  border-color: #123d66;
}

.liberty-clone .top_box06::after,
.liberty-clone .top_box08 {
  background: #123d66;
}

.liberty-clone .top_box06::before {
  background: #63b8d8;
}

.liberty-clone .top_box06_content article h3 {
  background: rgba(18, 61, 102, 0.94);
}

.liberty-clone .service_category {
  background: #e5f6fb;
  color: #123d66;
}

.liberty-clone .service_banner_clone {
  background:
    linear-gradient(90deg, rgba(18, 61, 102, 0.9), rgba(18, 61, 102, 0.62)),
    url("../images/pickup-service.webp") center/cover no-repeat;
}

.liberty-clone .top_voice,
.liberty-clone.under-page .voice_box02,
.liberty-clone.under-page .breadcrumb_area {
  background: #f3f9fc;
}

.liberty-clone .top_box01_tit,
.liberty-clone .top_box02_tit,
.liberty-clone .top_box03_tit,
.liberty-clone .top_box04_tit,
.liberty-clone .top_box05_tit,
.liberty-clone .top_box07_tit,
.liberty-clone .top_box09_tit,
.liberty-clone.under-page .headline,
.liberty-clone.under-page .subhead02,
.liberty-clone.under-page .subhead04 {
  color: #123d66;
}

@media (max-width: 980px) {
  .liberty-clone .top_box01_wrap,
  .liberty-clone .top_box02_wrap,
  .liberty-clone .top_box04_wrap,
  .liberty-clone .top_box07,
  .liberty-clone .top_box09_wrap,
  .liberty-clone .footer_wrap,
  .liberty-clone .footer_content,
  .liberty-clone .bottom_box {
    flex-direction: column;
  }

  .liberty-clone .top_box01_pic01,
  .liberty-clone .top_box01_pic02,
  .liberty-clone .top_box01_pic03,
  .liberty-clone .top_box01_content,
  .liberty-clone .top_box02 figure,
  .liberty-clone .top_box02_content,
  .liberty-clone .top_box04_content,
  .liberty-clone .top_box07_content,
  .liberty-clone .top_box09_articel_area,
  .liberty-clone .footer_content,
  .liberty-clone .map {
    width: 100%;
  }

  .liberty-clone .top_box01_pic01 img,
  .liberty-clone .top_box01_pic02 img,
  .liberty-clone .top_box01_pic03 img,
  .liberty-clone .top_box03 figure img,
  .liberty-clone .top_box08 figure img {
    height: auto;
  }

  .liberty-clone .top_box01_content {
    padding: 70px 20px 50px;
  }

  .liberty-clone .top_box01_tit {
    font-size: 2.2rem;
    margin-bottom: 60px;
  }

  .liberty-clone .top_box01_tit span {
    font-size: 2.8rem;
  }

  .liberty-clone .top_box02 {
    padding: 70px 10px;
  }

  .liberty-clone .top_box02_inner {
    box-shadow: none;
    padding: 50px 24px;
    transform: skew(0deg, 0deg);
  }

  .liberty-clone .top_box02_wrap {
    transform: skew(0deg, 0deg);
  }

  .liberty-clone .top_box02 figure {
    margin-bottom: 30px;
  }

  .liberty-clone .top_box02_tit,
  .liberty-clone .top_box03_tit,
  .liberty-clone .top_box04_tit,
  .liberty-clone .top_box05_tit,
  .liberty-clone .top_box07_tit,
  .liberty-clone .top_box09_tit {
    font-size: 4.2rem;
  }

  .liberty-clone .top_box03 {
    background: #f2f2f2;
    padding: 70px 0 90px;
  }

  .liberty-clone .top_box03 figure,
  .liberty-clone .top_box08 figure {
    width: 100%;
  }

  .liberty-clone .top_box03_content {
    padding: 0 20px;
    position: static;
    width: 100%;
  }

  .liberty-clone .top_box03_tit {
    margin: 70px 0 50px;
  }

  .liberty-clone .top_box09_content {
    height: auto;
    max-height: none;
  }

  .liberty-clone .voice_card_grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .liberty-clone .sp_none {
    display: none !important;
  }

  .liberty-clone .pc_none {
    display: block;
  }

  .liberty-clone #toggle {
    background: rgba(18, 61, 102, 0.94);
    border: 1px solid rgba(255, 255, 255, 0.55);
    box-shadow: 0 8px 20px rgba(18, 61, 102, 0.2);
    cursor: pointer;
    display: block;
    height: 45px;
    padding: 10px;
    position: fixed;
    right: 5px;
    top: 5px;
    width: 50px;
    z-index: 9999;
  }

  .liberty-clone #toggle div {
    position: relative;
  }

  .liberty-clone #toggle span {
    background: #fff;
    display: block;
    height: 1px;
    position: absolute;
    width: 100%;
  }

  .liberty-clone #toggle span:nth-child(1) { top: 0; }
  .liberty-clone #toggle span:nth-child(2) { top: 11px; }
  .liberty-clone #toggle span:nth-child(3) { top: 22px; }

  .liberty-clone header .header_logo_area {
    padding: 10px;
  }

  .liberty-clone header .header_logo_area .header_logo {
    clip-path: none;
    height: 94px;
    padding: 8px;
    width: 112px;
  }

  .liberty-clone header .header_logo_area .header_content {
    display: none;
  }

  .liberty-clone header #slider,
  .liberty-clone .swiper,
  .liberty-clone .swiper-wrapper,
  .liberty-clone .swiper-slide,
  .liberty-clone .slider_pic {
    min-height: 520px;
  }

  .liberty-clone .slider_pic img {
    height: 520px;
    object-position: center center;
  }

  .liberty-clone header #slider .slider_txt {
    bottom: 18%;
    left: 5%;
    width: 92%;
  }

  .liberty-clone .slider_txt_clone p {
    font-size: clamp(2.15rem, 9vw, 3.1rem);
  }

  .liberty-clone .slider_txt_clone span {
    font-size: 1.1rem;
    margin-top: 22px;
  }

  .liberty-clone .slider_txt_clone small {
    font-size: 0.9rem;
    line-height: 1.7;
    margin-top: 16px;
  }

  .liberty-clone .slider_actions {
    gap: 8px;
    margin-top: 18px;
  }

  .liberty-clone .slider_actions a {
    font-size: 0.86rem;
    min-height: 42px;
    padding: 9px 12px;
  }

  .liberty-clone .top_box01 {
    padding: 80px 0 50px;
  }

  .liberty-clone .top_box01_loop_box {
    top: -10px;
  }

  .liberty-clone .top_box04_loop_box {
    top: 30px;
  }

  .liberty-clone .loop__item {
    font-size: 6rem;
  }

  .liberty-clone .top_box01_wrap,
  .liberty-clone .top_box02_wrap,
  .liberty-clone .top_box04_wrap,
  .liberty-clone .top_box07,
  .liberty-clone .top_box09_wrap,
  .liberty-clone .footer_wrap,
  .liberty-clone .footer_content,
  .liberty-clone .bottom_box {
    flex-direction: column;
  }

  .liberty-clone .top_box01_pic01,
  .liberty-clone .top_box01_pic02,
  .liberty-clone .top_box01_pic03,
  .liberty-clone .top_box01_content,
  .liberty-clone .top_box02 figure,
  .liberty-clone .top_box02_content,
  .liberty-clone .top_box04_content,
  .liberty-clone .top_box07_content,
  .liberty-clone .top_box09_articel_area,
  .liberty-clone .footer_content,
  .liberty-clone .map {
    width: 100%;
  }

  .liberty-clone .top_box01_pic01 img,
  .liberty-clone .top_box01_pic02 img,
  .liberty-clone .top_box01_pic03 img {
    height: auto;
  }

  .liberty-clone .top_box01_content {
    padding: 70px 10px 50px;
  }

  .liberty-clone .top_box01_tit {
    font-size: 2.2rem;
    margin-bottom: 60px;
  }

  .liberty-clone .top_box01_tit span {
    font-size: 2.8rem;
  }

  .liberty-clone .top_box01_pic02 {
    margin-bottom: 10px;
  }

  .liberty-clone .top_box02 {
    padding: 50px 10px;
  }

  .liberty-clone .top_box02_inner {
    box-shadow: none;
    padding: 50px 10px;
    transform: skew(0deg, 0deg);
  }

  .liberty-clone .top_box02_wrap {
    transform: skew(0deg, 0deg);
  }

  .liberty-clone .top_box02 figure {
    margin-bottom: 30px;
  }

  .liberty-clone .top_box02_tit,
  .liberty-clone .top_box03_tit,
  .liberty-clone .top_box04_tit,
  .liberty-clone .top_box05_tit,
  .liberty-clone .top_box07_tit,
  .liberty-clone .top_box09_tit {
    font-size: clamp(3.25rem, 15vw, 4.15rem);
    line-height: 0.76;
    max-width: calc(100vw - 28px);
  }

  .liberty-clone .top_box03 {
    background: #f2f2f2;
    padding: 50px 0 80px;
  }

  .liberty-clone .top_box03 figure,
  .liberty-clone .top_box08 figure {
    width: 100%;
  }

  .liberty-clone .top_box03 figure img,
  .liberty-clone .top_box08 figure img {
    height: auto;
  }

  .liberty-clone .top_box03_content {
    padding: 0 10px;
    position: static;
    width: 100%;
  }

  .liberty-clone .top_box03_tit {
    margin: 70px 0 50px;
  }

  .liberty-clone .top_box03_list li {
    font-size: 1rem;
    margin-bottom: 10px;
    padding-left: 30px;
  }

  .liberty-clone .top_box03_list li::after {
    height: 20px;
    width: 20px;
  }

  .liberty-clone .top_box04 {
    padding: 80px 10px 80px;
  }

  .liberty-clone .top_box04_tit,
  .liberty-clone .top_box05_tit,
  .liberty-clone .top_box07_tit {
    margin-bottom: 60px;
  }

  .liberty-clone .top_box04_tit::after,
  .liberty-clone .top_box05_tit::after,
  .liberty-clone .top_box07_tit::after,
  .liberty-clone .top_box09_tit::after {
    height: min(210px, 58vw);
    left: 0;
    width: min(280px, 72vw);
  }

  .liberty-clone .top_box02_tit span,
  .liberty-clone .top_box03_tit span,
  .liberty-clone .top_box04_tit span,
  .liberty-clone .top_box05_tit span,
  .liberty-clone .top_box06_tit span,
  .liberty-clone .top_box07_tit span,
  .liberty-clone .top_box09_tit span {
    display: block;
    font-size: clamp(1.15rem, 5.4vw, 1.5rem);
    line-height: 1.35;
  }

  .liberty-clone .top_box04_content,
  .liberty-clone .top_box04_content:first-of-type,
  .liberty-clone .top_box04_content:nth-of-type(2) {
    margin: 0 0 34px;
  }

  .liberty-clone .top_box04_content figcaption {
    bottom: 50px;
    font-size: 2rem;
  }

  .liberty-clone .service_banner_clone {
    padding: 32px 22px;
  }

  .liberty-clone .banner_btn a {
    width: 100%;
  }

  .liberty-clone .top_service_box {
    margin-top: 30px;
    margin-bottom: 50px;
    padding: 0 10px;
  }

  .liberty-clone .top_box05 {
    padding: 100px 10px;
  }

  .liberty-clone .attension_txt span {
    font-size: 2.2rem;
    padding: 10px 20px;
  }

  .liberty-clone .overview_table th,
  .liberty-clone .overview_table td {
    font-size: 1rem;
    padding: 12px 8px;
  }

  .liberty-clone .service_menu_grid,
  .liberty-clone .service_menu_grid.compact {
    grid-template-columns: 1fr;
  }

  .liberty-clone .service_category {
    margin: 18px 18px 12px;
  }

  .liberty-clone .service_price {
    font-size: 2.25rem;
    margin: 22px 20px 10px;
  }

  .liberty-clone .service_meta {
    font-size: 0.98rem;
    padding: 0 20px 24px;
  }

  .liberty-clone .top_box06 {
    padding: 42px 10px 76px;
  }

  .liberty-clone .top_box06::after {
    clip-path: polygon(0 10%, 100% 0, 100% 90%, 0% 100%);
  }

  .liberty-clone .top_box06::before {
    clip-path: polygon(0 0, 100% 5%, 100% 100%, 0 95%);
  }

  .liberty-clone .top_box06_tit {
    font-size: clamp(3.75rem, 15vw, 4.35rem);
    line-height: 1.05;
  }

  .liberty-clone .top_box06_tit span {
    display: block;
  }

  .liberty-clone .top_box06_content {
    gap: 10px 0;
    margin-bottom: 24px;
  }

  .liberty-clone .top_box06_content article {
    width: 50%;
  }

  .liberty-clone .top_box06_content article h3 {
    bottom: 10px;
    font-size: 0.9rem;
    padding: 5px 10px;
  }

  .liberty-clone .top_box06_btn {
    display: none;
  }

  .liberty-clone .top_box07 {
    padding: 150px 10px 50px;
  }

  .liberty-clone .top_box07_content {
    margin-bottom: 30px;
  }

  .liberty-clone .top_box07_content dl {
    margin-bottom: 30px;
  }

  .liberty-clone .top_box07_content dt {
    font-size: 1.15rem;
    margin-bottom: 20px;
    padding: 20px 20px 20px 30px;
  }

  .liberty-clone .top_box07_content dd {
    padding: 0 20px 0 30px;
  }

  .liberty-clone .top_voice {
    padding: 110px 10px 80px;
  }

  .liberty-clone .voice_card_grid {
    grid-template-columns: 1fr;
    margin-top: 45px;
  }

  .liberty-clone .work_link_group {
    flex-direction: column;
    gap: 10px;
    margin-top: 22px;
  }

  .liberty-clone .work_link_group a {
    min-height: 50px;
    padding: 10px 18px;
    width: 100%;
  }

  .liberty-clone .top_box08 {
    padding: 50px 0 80px;
  }

  .liberty-clone .top_box08_wrap {
    display: flex;
    flex-direction: column-reverse;
  }

  .liberty-clone .top_box08_content {
    padding: 0 10px;
    position: static;
    width: 100%;
  }

  .liberty-clone .top_box08_tit {
    font-size: 2rem;
    margin: 50px 0 30px;
  }

  .liberty-clone .top_box09 {
    padding: 50px 10px;
  }

  .liberty-clone .top_box09_wrap {
    padding-top: 80px;
  }

  .liberty-clone .top_box09_tit {
    margin-bottom: 80px;
  }

  .liberty-clone .top_box09_content {
    padding-right: 0;
  }

  .liberty-clone .top_box09_content article {
    align-items: flex-start;
    flex-direction: column;
    padding: 20px 0;
  }

  .liberty-clone .top_box09_content .time {
    margin: 0 0 10px;
  }

  .liberty-clone .top_box06_btn a,
  .liberty-clone .top_box07_btn a,
  .liberty-clone .top_box09_btn a {
    font-size: 1rem;
    line-height: 54px;
    margin: 0 auto;
    width: 260px;
  }

  .liberty-clone .line a {
    font-size: 1.35rem;
    padding: 34px 10px;
  }

  .liberty-clone .bottom_box {
    gap: 10px;
    margin: 50px 10px;
  }

  .liberty-clone .footer_clone {
    padding: 55px 10px 120px;
  }

  .liberty-clone .footer_content {
    gap: 24px;
  }

  .liberty-clone .footer_logo {
    width: 130px;
  }

  .liberty-clone .sp_fixed_cta {
    background: rgba(255, 255, 255, 0.96);
    bottom: 0;
    box-shadow: 0 -8px 24px rgba(17, 17, 17, 0.12);
    display: grid;
    gap: 8px;
    grid-template-columns: 1fr 1fr;
    left: 0;
    padding: 8px;
    position: fixed;
    right: 0;
    z-index: 9998;
  }

  .liberty-clone .sp_fixed_cta a {
    color: #fff;
    font-size: 0.86rem;
    min-height: 44px;
  }

  .liberty-clone .sp_fixed_cta a:first-child {
    background: #06c755;
  }

  .liberty-clone .sp_fixed_cta a:last-child {
    background: #1f7fbf;
  }

  .liberty-clone .footer_nav {
    align-items: flex-start;
    flex-direction: column;
  }

  .liberty-clone .to_top {
    display: none;
  }
}

/* Under-page Liberty structure */
.liberty-clone.under-page {
  background: #fff;
}

.liberty-clone.under-page #teaser {
  background: #111 center/cover no-repeat;
  height: 550px;
  position: relative;
}

.liberty-clone.under-page #teaser::after {
  background: linear-gradient(90deg, rgba(17, 17, 17, 0.8), rgba(17, 17, 17, 0.22));
  content: "";
  inset: 0;
  position: absolute;
}

.liberty-clone.under-page .price_teaser {
  background-image: url("../images/detail-water.webp") !important;
}

.liberty-clone.under-page .works_teaser {
  background-image: url("../images/case-wash-after-clean.webp") !important;
}

.liberty-clone.under-page .voice_teaser {
  background-image: url("../images/pickup-service.webp") !important;
}

.liberty-clone.under-page .company_teaser {
  background-image: url("../images/hero-garage.webp") !important;
}

.liberty-clone.under-page .access_teaser {
  background-image: url("../images/access-map-style.webp") !important;
}

.liberty-clone.under-page .contact_teaser {
  background-image: url("../images/detail-mirror-clean.webp") !important;
}

.liberty-clone.under-page #teaser .inner {
  height: 100%;
  position: relative;
  z-index: 1;
}

.liberty-clone.under-page .teaser_txt {
  color: #fff;
  font-size: clamp(5rem, 8vw, 8.6rem);
  font-style: italic;
  font-weight: 900;
  left: 0;
  line-height: 0.58;
  margin: 0;
  position: absolute;
  top: 42%;
}

.liberty-clone.under-page .teaser_txt span {
  display: block;
  font-family: "Noto Serif JP", serif;
  font-size: 1.85rem;
  font-style: normal;
  margin-top: 30px;
}

.liberty-clone.under-page #under_content {
  padding-bottom: 120px;
}

.liberty-clone.under-page .breadcrumb_area {
  background: #f6f6f6;
  padding: 18px 10px;
}

.liberty-clone.under-page .breadcrumb {
  margin: 0 auto;
  max-width: 1100px;
}

.liberty-clone.under-page .topicpath {
  color: #666;
  font-size: 0.9rem;
}

.liberty-clone.under-page .headline {
  color: #111;
  margin: 110px auto 100px;
  max-width: 1100px;
  text-align: center;
}

.liberty-clone.under-page .headline .tit_wrap {
  display: inline-block;
  font-size: clamp(5rem, 8vw, 7.5rem);
  font-style: italic;
  font-weight: 900;
  line-height: 0.42;
  position: relative;
  z-index: 1;
}

.liberty-clone.under-page .headline .tit_wrap::after {
  background: rgba(17, 17, 17, 0.06);
  border-radius: 999px;
  content: "";
  height: 220px;
  left: -25px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 280px;
  z-index: -1;
}

.liberty-clone.under-page .headline .ja {
  display: inline-block;
  font-family: "Noto Serif JP", serif;
  font-size: 1.65rem;
  font-style: normal;
  letter-spacing: 0.01em;
}

.liberty-clone.under-page .subhead01 {
  background: #111;
  color: #fff;
  font-family: "Noto Serif JP", serif;
  font-size: clamp(1.7rem, 2.4vw, 2.5rem);
  font-weight: 900;
  line-height: 1.35;
  margin: 0 0 38px;
  padding: 22px 28px;
}

.liberty-clone.under-page .subhead02 {
  color: #111;
  font-family: "Noto Serif JP", serif;
  font-size: 1.4rem;
  font-weight: 900;
  line-height: 1.45;
  margin: 18px 0 0;
}

.liberty-clone.under-page .subhead04 {
  border-left: 5px solid #111;
  color: #111;
  font-family: "Noto Serif JP", serif;
  font-size: 1.65rem;
  font-weight: 900;
  line-height: 1.3;
  margin: 0 0 24px;
  padding: 8px 0 8px 18px;
}

.liberty-clone.under-page .overview_table02,
.liberty-clone.under-page .overview_table03 {
  border-collapse: collapse;
  margin-bottom: 80px;
  width: 100%;
}

.liberty-clone.under-page .overview_table02 th,
.liberty-clone.under-page .overview_table02 td,
.liberty-clone.under-page .overview_table03 th,
.liberty-clone.under-page .overview_table03 td {
  border: 1px solid #ccc;
  font-size: 1rem;
  padding: 18px 22px;
  vertical-align: top;
}

.liberty-clone.under-page .overview_table02 th,
.liberty-clone.under-page .overview_table03 th {
  background: #111;
  color: #fff;
  font-weight: 900;
  text-align: left;
  width: 28%;
}

.liberty-clone.under-page .overview_table02 td,
.liberty-clone.under-page .overview_table03 td {
  background: #fff;
}

.liberty-clone.under-page .price_box01,
.liberty-clone.under-page .price_box02,
.liberty-clone.under-page .price_box03,
.liberty-clone.under-page .price_box04,
.liberty-clone.under-page .price_box05,
.liberty-clone.under-page .works_intro,
.liberty-clone.under-page .case_gallery,
.liberty-clone.under-page .overview_box02,
.liberty-clone.under-page .access_box01,
.liberty-clone.under-page .contact_form {
  margin-bottom: 100px;
}

.liberty-clone.under-page .price_box01 .txt,
.liberty-clone.under-page .works_intro .txt {
  margin-bottom: 30px;
  text-align: center;
}

.liberty-clone.under-page .case_gallery .txt {
  margin-bottom: 36px;
  text-align: center;
}

.liberty-clone.under-page .case_gallery .contact_cta_grid {
  margin-top: 36px;
}

.liberty-clone.under-page .price_table {
  margin-bottom: 42px;
}

.liberty-clone.under-page .price_box02_content01,
.liberty-clone.under-page .price_box04_content01 {
  display: flex;
  gap: 46px;
  justify-content: space-between;
}

.liberty-clone.under-page .price_box02_content01 figure,
.liberty-clone.under-page .price_box04_content01 figure {
  width: 42%;
}

.liberty-clone.under-page .price_box02_content01 figure img,
.liberty-clone.under-page .price_box04_content01 figure img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.liberty-clone.under-page .txt_area {
  flex: 1;
}

.liberty-clone.under-page .txt_area ul {
  border-left: 1px solid #111;
  padding-left: 32px;
}

.liberty-clone.under-page .txt_area li {
  font-size: 1.05rem;
  margin-bottom: 18px;
}

.liberty-clone.under-page .works_box {
  display: grid;
  gap: 42px 28px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.liberty-clone.under-page .works_box article {
  background: #fff;
  border-bottom: 1px solid #ccc;
}

.liberty-clone.under-page .works_box article img {
  aspect-ratio: 5 / 4;
  object-fit: cover;
  object-position: center 38%;
}

.liberty-clone.under-page .works_box article a {
  display: block;
}

.liberty-clone.under-page .voice_box01 {
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-bottom: 120px;
}

.liberty-clone.under-page .voice_box01 article {
  background: #f6f6f6;
  border-left: 5px solid #111;
  padding: 30px;
}

.liberty-clone.under-page .voice_box02 {
  background: #f6f6f6;
  padding: 120px 10px;
}

.liberty-clone.under-page .voice_box02 .headline {
  margin-top: 0;
}

.liberty-clone.under-page .voice_box02 dl {
  background: #fff;
  margin: 0 0 28px;
  padding: 0;
}

.liberty-clone.under-page .voice_box02 dt {
  background: rgba(51, 51, 51, 0.1);
  border-left: 5px solid #333;
  font-size: 1.35rem;
  font-weight: 900;
  line-height: 1.35;
  padding: 24px 28px;
}

.liberty-clone.under-page .voice_box02 dd {
  padding: 24px 28px 30px;
}

.liberty-clone.under-page .overview_box01 {
  margin-bottom: 120px;
}

.liberty-clone.under-page .overview_box01_wrap {
  align-items: center;
  display: flex;
  gap: 58px;
  margin: 0 auto;
  max-width: 1320px;
}

.liberty-clone.under-page .overview_box01 figure {
  width: 58%;
}

.liberty-clone.under-page .overview_box01 figure img {
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.liberty-clone.under-page .overview_box01_content {
  flex: 1;
}

.liberty-clone.under-page .access_map {
  margin-bottom: 46px;
}

.liberty-clone.under-page .access_map img {
  aspect-ratio: 16 / 8;
  border: 1px solid #ddd;
  object-fit: cover;
}

.liberty-clone.under-page .under_btn {
  text-align: center;
}

.liberty-clone.under-page .under_btn a,
.liberty-clone.under-page .contact_cta_grid a,
.liberty-clone.under-page .tc button {
  background: #111;
  border: 1px solid #111;
  color: #fff;
  display: inline-flex;
  font-size: 1.05rem;
  font-weight: 900;
  justify-content: center;
  min-width: 270px;
  padding: 18px 24px;
}

.liberty-clone.under-page .contact_lead {
  margin-bottom: 36px;
  text-align: center;
}

.liberty-clone.under-page .contact_cta_grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-bottom: 60px;
}

.liberty-clone.under-page .form_row {
  border-bottom: 1px dotted #ccc;
  display: flex;
  margin-bottom: 30px;
  padding: 0 20px 30px;
}

.liberty-clone.under-page .form_row.last_row {
  border-bottom: none;
}

.liberty-clone.under-page .form_label {
  font-weight: 900;
  width: 300px;
}

.liberty-clone.under-page .required,
.liberty-clone.under-page .any {
  border-radius: 3px;
  display: inline-block;
  font-size: 0.8rem;
  margin-right: 10px;
  padding: 1px 6px;
}

.liberty-clone.under-page .required {
  background: #cc0000;
  color: #fff;
}

.liberty-clone.under-page .any {
  background: #d7d7d7;
  color: #555;
}

.liberty-clone.under-page .form_input {
  width: calc(100% - 300px);
}

.liberty-clone.under-page input,
.liberty-clone.under-page textarea {
  border: 1px solid rgba(154, 139, 120, 0.5);
  border-left: 2px solid #111;
  font: inherit;
  padding: 12px;
  width: 100%;
}

.liberty-clone.under-page .tc {
  text-align: center;
}

@media (max-width: 767px) {
  .liberty-clone.under-page #teaser {
    height: 330px;
  }

  .liberty-clone.under-page .teaser_txt {
    font-size: 4.5rem;
    left: 10px;
    top: 42%;
  }

  .liberty-clone.under-page .teaser_txt span {
    font-size: 1.2rem;
    margin-top: 22px;
  }

  .liberty-clone.under-page #under_content {
    padding-bottom: 70px;
  }

  .liberty-clone.under-page .headline {
    margin: 80px 10px 70px;
  }

  .liberty-clone.under-page .headline .tit_wrap {
    font-size: 4.6rem;
  }

  .liberty-clone.under-page .headline .tit_wrap::after {
    height: 142px;
    width: 180px;
  }

  .liberty-clone.under-page .price_box01,
  .liberty-clone.under-page .price_box02,
  .liberty-clone.under-page .price_box03,
  .liberty-clone.under-page .price_box04,
  .liberty-clone.under-page .price_box05,
  .liberty-clone.under-page .overview_box02,
  .liberty-clone.under-page .access_box01,
  .liberty-clone.under-page .contact_form {
    margin-bottom: 60px;
    padding-left: 10px;
    padding-right: 10px;
  }

  .liberty-clone.under-page .overview_table02 th,
  .liberty-clone.under-page .overview_table02 td,
  .liberty-clone.under-page .overview_table03 th,
  .liberty-clone.under-page .overview_table03 td {
    display: block;
    width: 100%;
  }

  .liberty-clone.under-page .price_box02_content01,
  .liberty-clone.under-page .price_box04_content01,
  .liberty-clone.under-page .overview_box01_wrap,
  .liberty-clone.under-page .form_row {
    flex-direction: column;
  }

  .liberty-clone.under-page .price_box02_content01 figure,
  .liberty-clone.under-page .price_box04_content01 figure,
  .liberty-clone.under-page .overview_box01 figure,
  .liberty-clone.under-page .form_label,
  .liberty-clone.under-page .form_input {
    width: 100%;
  }

  .liberty-clone.under-page .works_box,
  .liberty-clone.under-page .voice_box01,
  .liberty-clone.under-page .contact_cta_grid {
    grid-template-columns: 1fr;
  }

  .liberty-clone.under-page .voice_box02 {
    padding: 70px 10px;
  }

  .liberty-clone.under-page .access_map img {
    aspect-ratio: 1 / 0.72;
  }

  .liberty-clone.under-page .form_row {
    padding: 0 0 24px;
  }

  .liberty-clone.under-page .form_label {
    margin-bottom: 10px;
  }
}

.mk-comp {
  --comp-ink: #1d2a32;
  --comp-muted: #657983;
  --comp-blue: #4bb7d2;
  --comp-deep: #17647c;
  --comp-mint: #dff6f3;
  --comp-pink: #eef3f5;
  --comp-sun: #f6bd4b;
  --comp-coral: #237aa7;
  --comp-cream: #f5f2eb;
  --comp-paper: #f7fcff;
  --comp-line: rgba(23, 100, 124, 0.16);
  --comp-shadow: 0 18px 45px rgba(30, 91, 108, 0.14);
  background: var(--comp-paper);
  color: var(--comp-ink);
  font-family: "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, -apple-system, BlinkMacSystemFont, sans-serif;
  letter-spacing: 0;
}

.mk-comp *,
.mk-comp *::before,
.mk-comp *::after {
  box-sizing: border-box;
  letter-spacing: 0;
}

.mk-comp a {
  color: inherit;
  text-decoration: none;
}

.mk-comp img {
  display: block;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.comp-header {
  align-items: center;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.78);
  box-shadow: 0 10px 30px rgba(23, 100, 124, 0.1);
  display: grid;
  gap: 18px;
  grid-template-columns: auto minmax(0, 1fr) auto;
  left: 50%;
  max-width: 1180px;
  padding: 12px 16px;
  position: fixed;
  top: 18px;
  transform: translateX(-50%);
  width: calc(100% - 40px);
  z-index: 50;
}

.comp-logo {
  align-items: center;
  display: inline-flex;
  gap: 10px;
  min-width: 180px;
}

.comp-logo img {
  border-radius: 8px;
  height: 46px;
  width: 46px;
}

.comp-logo span {
  color: var(--comp-deep);
  font-size: 1.05rem;
  font-weight: 900;
  line-height: 1.1;
}

.comp-logo small {
  color: var(--comp-muted);
  display: block;
  font-size: 0.7rem;
  font-weight: 800;
  margin-top: 4px;
}

.comp-nav {
  align-items: center;
  display: flex;
  gap: 6px;
  justify-content: center;
}

.comp-nav a {
  color: var(--comp-ink);
  font-size: 0.84rem;
  font-weight: 800;
  padding: 9px 10px;
}

.comp-header-cta,
.comp-button {
  align-items: center;
  border-radius: 999px;
  display: inline-flex;
  font-weight: 900;
  justify-content: center;
  line-height: 1.2;
}

.comp-header-cta {
  background: var(--comp-sun);
  color: #fff;
  min-height: 42px;
  padding: 10px 18px;
}

.comp-side-cta {
  display: grid;
  gap: 8px;
  position: fixed;
  right: 18px;
  top: 178px;
  z-index: 45;
}

.comp-side-cta a {
  align-items: center;
  background: var(--comp-coral);
  border: 2px solid #fff;
  border-radius: 8px;
  box-shadow: 0 10px 24px rgba(30, 91, 108, 0.12);
  color: #fff;
  display: flex;
  font-size: 0.78rem;
  font-weight: 900;
  justify-content: center;
  letter-spacing: 0;
  min-height: 94px;
  padding: 10px 8px;
  writing-mode: vertical-rl;
}

.comp-side-cta a:last-child {
  background: var(--comp-sun);
}

.comp-button {
  min-height: 50px;
  padding: 14px 24px;
}

.comp-button-main {
  background: var(--comp-coral);
  box-shadow: 0 14px 28px rgba(255, 142, 119, 0.26);
  color: #fff;
}

.comp-button-sub {
  background: #fff;
  border: 2px solid var(--comp-line);
  color: var(--comp-deep);
}

.comp-button-light {
  background: rgba(255, 255, 255, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.55);
  color: #fff;
}

.comp-hero {
  background:
    linear-gradient(180deg, rgba(17, 24, 32, 0.96) 0%, rgba(17, 24, 32, 0.88) 52%, rgba(17, 24, 32, 0.96) 100%);
  display: block;
  margin: 0 auto;
  min-height: 742px;
  overflow: hidden;
  padding: 128px max(28px, calc((100vw - 1180px) / 2)) 76px;
  position: relative;
}

.comp-hero::after {
  background: transparent;
  border-radius: 0;
  bottom: -44px;
  content: "";
  height: 110px;
  left: -8%;
  position: absolute;
  right: -8%;
}

.comp-hero-copy,
.comp-hero-visual {
  position: relative;
  z-index: 1;
}

.comp-hero-copy {
  left: max(58px, calc((100vw - 1180px) / 2 + 52px));
  max-width: 520px;
  position: absolute;
  top: 206px;
  z-index: 5;
}

.comp-eyebrow,
.comp-section-head span,
.comp-choice-card p,
.comp-access-info > span,
.comp-pickup-text > span {
  color: var(--comp-blue);
  display: block;
  font-size: 0.82rem;
  font-weight: 900;
  line-height: 1.4;
  margin: 0 0 12px;
}

.comp-hero h1 {
  color: #fff;
  font-size: clamp(2.55rem, 5.3vw, 4.9rem);
  line-height: 1.08;
  margin: 0;
  text-shadow: 0 6px 22px rgba(0, 0, 0, 0.28);
}

.comp-hero h1 span {
  background: linear-gradient(transparent 62%, rgba(246, 189, 75, 0.72) 62%);
  color: #fff;
}

.comp-lead {
  color: rgba(255, 255, 255, 0.94);
  font-size: 1.08rem;
  line-height: 2;
  margin: 26px 0 0;
  max-width: 560px;
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.25);
}

.comp-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.comp-hero-points {
  display: grid;
  gap: 8px;
  list-style: none;
  margin: 26px 0 0;
  max-width: 430px;
  padding: 0;
}

.comp-hero-points li {
  align-items: center;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.86);
  border-radius: 8px;
  color: var(--comp-ink);
  display: flex;
  font-weight: 800;
  gap: 12px;
  min-height: 46px;
  padding: 9px 14px;
}

.comp-hero-points span {
  align-items: center;
  background: var(--comp-blue);
  border-radius: 999px;
  color: #fff;
  display: inline-flex;
  flex: 0 0 34px;
  font-size: 0.8rem;
  height: 34px;
  justify-content: center;
  width: 34px;
}

.comp-hero-visual {
  margin: 0 auto;
  max-width: 1180px;
  min-height: 560px;
}

.comp-hero-visual figure {
  border: 8px solid #fff;
  box-shadow: var(--comp-shadow);
  margin: 0;
  overflow: hidden;
  position: absolute;
}

.comp-hero-main::after {
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.52) 0%, rgba(0, 0, 0, 0.22) 44%, rgba(0, 0, 0, 0) 78%);
  content: "";
  inset: 0;
  position: absolute;
  z-index: 1;
}

.comp-hero-main {
  border-radius: 8px;
  height: 540px;
  inset: 0 328px auto 0;
}

.comp-hero-sub {
  border-radius: 8px;
  height: 258px;
  width: 304px;
}

.comp-hero-sub-a {
  left: auto;
  right: 0;
  top: 0;
  transform: none;
}

.comp-hero-sub-b {
  bottom: 0;
  right: 0;
  transform: none;
}

.comp-vertical-label {
  background: var(--comp-sun);
  border-radius: 8px;
  color: #fff;
  font-size: 0.82rem;
  font-weight: 900;
  padding: 18px 10px;
  position: absolute;
  right: -12px;
  top: 190px;
  writing-mode: vertical-rl;
}

.comp-hero-badge {
  align-items: center;
  background: #fff;
  border: 4px solid var(--comp-mint);
  border-radius: 50%;
  bottom: 28px;
  box-shadow: var(--comp-shadow);
  display: flex;
  flex-direction: column;
  height: 148px;
  justify-content: center;
  left: auto;
  position: absolute;
  text-align: center;
  right: 266px;
  width: 148px;
}

.comp-hero-badge strong {
  color: var(--comp-coral);
  font-size: 1.45rem;
  line-height: 1;
}

.comp-hero-badge span {
  color: var(--comp-deep);
  font-size: 0.82rem;
  font-weight: 900;
  margin-top: 6px;
}

.comp-problem {
  background: #fff;
  margin: 0;
  padding: 58px 28px 42px;
  position: relative;
}

.comp-problem-board {
  background:
    linear-gradient(180deg, #fff 0%, #fff 70%, rgba(255, 248, 234, 0.94) 100%);
  border: 1px solid rgba(23, 100, 124, 0.14);
  border-radius: 8px;
  box-shadow: 0 18px 45px rgba(30, 91, 108, 0.12);
  margin: 0 auto;
  max-width: 980px;
  padding: 42px 48px 44px;
  position: relative;
  text-align: center;
}

.comp-problem-board::before {
  background: var(--comp-deep);
  border: 8px solid var(--comp-paper);
  border-radius: 50%;
  box-shadow: 0 10px 24px rgba(30, 91, 108, 0.16);
  content: "";
  height: 54px;
  left: 50%;
  position: absolute;
  top: -27px;
  transform: translateX(-50%);
  width: 54px;
}

.comp-problem-board > span {
  color: var(--comp-coral);
  display: block;
  font-size: 0.86rem;
  font-weight: 900;
  margin-bottom: 10px;
}

.comp-problem-board h2 {
  color: var(--comp-deep);
  font-size: clamp(1.7rem, 3.4vw, 2.55rem);
  line-height: 1.32;
  margin: 0;
}

.comp-problem-board ul {
  display: grid;
  gap: 12px 20px;
  grid-template-columns: 1fr 1fr;
  list-style: none;
  margin: 28px 0 0;
  padding: 0;
  text-align: left;
}

.comp-problem-board li {
  align-items: flex-start;
  color: var(--comp-ink);
  display: flex;
  font-size: 0.94rem;
  font-weight: 800;
  gap: 10px;
  line-height: 1.65;
}

.comp-problem-board li::before {
  align-items: center;
  background: var(--comp-sun);
  border-radius: 50%;
  color: #fff;
  content: "✓";
  display: inline-flex;
  flex: 0 0 24px;
  font-size: 0.8rem;
  font-weight: 900;
  height: 24px;
  justify-content: center;
  margin-top: 2px;
  width: 24px;
}

.comp-intro,
.comp-choice,
.comp-menu,
.comp-works,
.comp-flow,
.comp-faq-news,
.comp-access {
  margin: 0 auto;
  max-width: 1180px;
  padding: 72px 28px;
}

.comp-section-head {
  margin: 0 auto 42px;
  max-width: 760px;
  text-align: center;
}

.comp-section-head-left {
  margin-left: 0;
  text-align: left;
}

.comp-section-head h2,
.comp-pickup h2,
.comp-access-info h2,
.comp-bottom-cta h2 {
  color: var(--comp-deep);
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.28;
  margin: 0;
}

.comp-section-head p {
  color: var(--comp-muted);
  line-height: 1.9;
  margin: 18px auto 0;
}

.comp-feature-row {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.comp-feature-row article {
  background: #fff;
  border: 1px solid var(--comp-line);
  border-radius: 8px;
  min-height: 152px;
  padding: 18px 12px;
  text-align: center;
}

.comp-feature-row article span {
  align-items: center;
  background: var(--comp-mint);
  border-radius: 50%;
  color: var(--comp-deep);
  display: inline-flex;
  font-size: 0.82rem;
  font-weight: 900;
  height: 42px;
  justify-content: center;
  margin-bottom: 14px;
  width: 42px;
}

.comp-feature-row article:nth-child(2n) span {
  background: var(--comp-pink);
}

.comp-feature-row strong {
  color: var(--comp-ink);
  display: block;
  font-size: 0.98rem;
}

.comp-feature-row p {
  color: var(--comp-muted);
  font-size: 0.82rem;
  line-height: 1.65;
  margin: 8px 0 0;
}

.comp-photo-strip {
  align-items: end;
  display: grid;
  gap: 18px;
  grid-template-columns: 1.2fr 0.82fr 1fr 0.9fr;
  margin-top: 42px;
}

.comp-photo-strip figure {
  border-radius: 8px;
  box-shadow: var(--comp-shadow);
  margin: 0;
  overflow: hidden;
}

.comp-photo-strip figure:nth-child(1) {
  height: 300px;
}

.comp-photo-strip figure:nth-child(2) {
  height: 210px;
}

.comp-photo-strip figure:nth-child(3) {
  height: 260px;
}

.comp-photo-strip figure:nth-child(4) {
  height: 225px;
}

.comp-choice {
  background: linear-gradient(180deg, #fff 0%, var(--comp-cream) 100%);
  max-width: none;
  overflow: hidden;
  padding-inline: max(28px, calc((100vw - 1180px) / 2));
  position: relative;
}

.comp-big-title {
  color: rgba(75, 183, 210, 0.1);
  font-size: clamp(5rem, 16vw, 13rem);
  font-weight: 900;
  left: 50%;
  line-height: 0.8;
  position: absolute;
  top: 70px;
  transform: translateX(-50%);
  white-space: nowrap;
}

.comp-choice-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 0 auto;
  max-width: 1180px;
  position: relative;
  z-index: 1;
}

.comp-choice-card {
  background: #fff;
  border: 1px solid rgba(75, 183, 210, 0.18);
  border-radius: 8px;
  box-shadow: var(--comp-shadow);
  display: grid;
  grid-template-columns: 42% minmax(0, 1fr);
  min-height: 320px;
  overflow: hidden;
}

.comp-choice-card figure {
  margin: 0;
}

.comp-choice-card div {
  padding: 32px;
}

.comp-choice-card h3 {
  color: var(--comp-deep);
  font-size: 2rem;
  line-height: 1.25;
  margin: 0 0 12px;
}

.comp-choice-card strong {
  color: var(--comp-coral);
  display: block;
  font-size: 1.25rem;
  margin-bottom: 16px;
}

.comp-choice-card span {
  color: var(--comp-muted);
  display: block;
  line-height: 1.85;
}

.comp-choice-card a {
  background: var(--comp-blue);
  border-radius: 999px;
  color: #fff;
  display: inline-flex;
  font-weight: 900;
  margin-top: 24px;
  padding: 13px 22px;
}

.comp-choice-card-yellow {
  background: #fffdf6;
}

.comp-choice-card-yellow a {
  background: var(--comp-sun);
}

.comp-pickup {
  align-items: center;
  background:
    linear-gradient(180deg, rgba(223, 246, 243, 0.95), rgba(223, 246, 243, 0.78));
  display: grid;
  gap: 56px;
  grid-template-columns: minmax(0, 1fr) 410px;
  margin: 0;
  padding: 74px max(28px, calc((100vw - 1180px) / 2));
}

.comp-pickup-text p {
  color: var(--comp-muted);
  line-height: 1.95;
  margin: 20px 0 28px;
}

.comp-pickup figure {
  border: 8px solid #fff;
  border-radius: 8px;
  box-shadow: var(--comp-shadow);
  height: 400px;
  margin: 0;
  overflow: hidden;
}

.comp-menu {
  background: #fff;
}

.comp-menu-grid {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.comp-menu-grid article,
.comp-works-grid article {
  background: #fff;
  border: 1px solid var(--comp-line);
  border-radius: 8px;
  box-shadow: 0 12px 34px rgba(30, 91, 108, 0.1);
  overflow: hidden;
}

.comp-menu-grid article img {
  aspect-ratio: 1 / 0.95;
}

.comp-menu-grid article span {
  align-items: center;
  background: var(--comp-coral);
  border-radius: 50%;
  color: #fff;
  display: flex;
  font-size: 0.8rem;
  font-weight: 900;
  height: 38px;
  justify-content: center;
  margin: -19px 18px 12px;
  position: relative;
  width: 38px;
}

.comp-menu-grid h3 {
  color: var(--comp-deep);
  font-size: 1.22rem;
  margin: 0 18px 8px;
}

.comp-menu-grid p {
  color: var(--comp-muted);
  font-size: 0.9rem;
  line-height: 1.75;
  margin: 0 18px 14px;
}

.comp-menu-grid strong {
  color: var(--comp-coral);
  display: block;
  margin: 0 18px 22px;
}

.comp-works {
  background: var(--comp-paper);
}

.comp-works-grid {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.comp-before-after {
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
}

.comp-before-after img {
  aspect-ratio: 1 / 1;
}

.comp-before-after::before,
.comp-before-after::after {
  align-items: center;
  border-radius: 999px;
  color: #fff;
  display: flex;
  font-size: 0.72rem;
  font-weight: 900;
  height: 28px;
  justify-content: center;
  position: absolute;
  top: 12px;
  width: 74px;
  z-index: 2;
}

.comp-before-after::before {
  background: rgba(29, 42, 50, 0.74);
  content: "BEFORE";
  left: 12px;
}

.comp-before-after::after {
  background: var(--comp-coral);
  content: "AFTER";
  right: 12px;
}

.comp-works-grid article > div:last-child {
  padding: 22px;
}

.comp-works-grid span {
  color: var(--comp-blue);
  display: block;
  font-size: 0.82rem;
  font-weight: 900;
  margin-bottom: 8px;
}

.comp-works-grid h3 {
  color: var(--comp-deep);
  font-size: 1.15rem;
  line-height: 1.55;
  margin: 0;
}

.comp-works-grid p {
  color: var(--comp-muted);
  font-weight: 800;
  margin: 12px 0 0;
}

.comp-flow {
  background: #fff;
}

.comp-flow-list {
  display: grid;
  gap: 18px;
  list-style: none;
  margin: 0 auto;
  max-width: 820px;
  padding: 0;
  position: relative;
}

.comp-flow-list::before {
  background: linear-gradient(var(--comp-blue), var(--comp-sun));
  bottom: 30px;
  content: "";
  left: 23px;
  position: absolute;
  top: 30px;
  width: 3px;
}

.comp-flow-list li {
  background: var(--comp-cream);
  border: 1px solid rgba(246, 189, 75, 0.24);
  border-radius: 8px;
  display: grid;
  gap: 4px 18px;
  grid-template-columns: 48px minmax(0, 1fr);
  padding: 20px 24px;
  position: relative;
}

.comp-flow-list span {
  align-items: center;
  background: var(--comp-sun);
  border-radius: 50%;
  color: #fff;
  display: flex;
  font-size: 0.82rem;
  font-weight: 900;
  grid-row: span 2;
  height: 48px;
  justify-content: center;
  width: 48px;
}

.comp-flow-list strong {
  color: var(--comp-deep);
  font-size: 1.05rem;
}

.comp-flow-list p {
  color: var(--comp-muted);
  line-height: 1.7;
  margin: 0;
}

.comp-faq-news {
  align-items: start;
  display: grid;
  gap: 52px;
  grid-template-columns: minmax(0, 1fr) 420px;
}

.comp-faq dl,
.comp-news ul,
.comp-access-info dl {
  margin: 0;
  padding: 0;
}

.comp-faq dl {
  display: grid;
  gap: 14px;
}

.comp-faq dl > div {
  background: #fff;
  border: 1px solid var(--comp-line);
  border-radius: 8px;
  padding: 22px 24px;
}

.comp-faq dt {
  color: var(--comp-deep);
  font-weight: 900;
}

.comp-faq dt::before {
  color: var(--comp-sun);
  content: "Q. ";
}

.comp-faq dd {
  color: var(--comp-muted);
  line-height: 1.8;
  margin: 10px 0 0;
}

.comp-news ul {
  display: grid;
  gap: 12px;
  list-style: none;
}

.comp-news li {
  background: #fff;
  border: 1px solid var(--comp-line);
  border-radius: 8px;
  padding: 18px;
}

.comp-news time {
  color: var(--comp-blue);
  display: block;
  font-size: 0.82rem;
  font-weight: 900;
  margin-bottom: 8px;
}

.comp-news a {
  color: var(--comp-ink);
  font-weight: 800;
  line-height: 1.65;
}

.comp-access {
  align-items: center;
  display: grid;
  gap: 48px;
  grid-template-columns: minmax(0, 1.1fr) minmax(360px, 0.9fr);
  padding-top: 56px;
}

.comp-map {
  border: 8px solid #fff;
  border-radius: 8px;
  box-shadow: var(--comp-shadow);
  height: 390px;
  margin: 0;
  overflow: hidden;
  position: relative;
}

.comp-map img {
  object-fit: cover;
}

.comp-access-info {
  background: #fff;
  border: 1px solid var(--comp-line);
  border-radius: 8px;
  box-shadow: 0 12px 34px rgba(30, 91, 108, 0.08);
  padding: 38px;
}

.comp-access-info p {
  color: var(--comp-ink);
  font-size: 1.04rem;
  font-weight: 900;
  margin: 18px 0 20px;
}

.comp-access-info dl {
  display: grid;
  gap: 14px;
  margin-bottom: 26px;
}

.comp-access-info dt {
  color: var(--comp-deep);
  font-size: 0.88rem;
  font-weight: 900;
}

.comp-access-info dd {
  color: var(--comp-muted);
  line-height: 1.65;
  margin: 4px 0 0;
}

.comp-bottom-cta {
  background: linear-gradient(120deg, var(--comp-deep), #2ba7bf);
  color: #fff;
  margin: 0;
  padding: 86px max(28px, calc((100vw - 960px) / 2));
  text-align: center;
}

.comp-bottom-cta p {
  font-weight: 900;
  margin: 0 0 18px;
}

.comp-bottom-cta h2 {
  color: #fff;
}

.comp-bottom-cta div {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin-top: 30px;
}

.comp-footer {
  align-items: center;
  background: #fff;
  display: flex;
  gap: 24px;
  justify-content: space-between;
  padding: 34px max(28px, calc((100vw - 1180px) / 2));
}

.comp-footer > div {
  align-items: center;
  display: flex;
  gap: 12px;
}

.comp-footer img {
  border-radius: 8px;
  height: 52px;
  width: 52px;
}

.comp-footer p {
  color: var(--comp-deep);
  font-weight: 900;
  line-height: 1.2;
  margin: 0;
}

.comp-footer small {
  color: var(--comp-muted);
}

.comp-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.comp-footer a {
  color: var(--comp-muted);
  font-size: 0.9rem;
  font-weight: 900;
}

@media (max-width: 1020px) {
  .comp-header {
    grid-template-columns: auto auto;
  }

  .comp-nav {
    grid-column: 1 / -1;
    justify-content: flex-start;
    overflow-x: auto;
  }

  .comp-hero,
  .comp-pickup,
  .comp-faq-news,
  .comp-access {
    display: grid;
    grid-template-columns: 1fr;
  }

  .comp-hero {
    background:
      linear-gradient(115deg, rgba(17, 24, 32, 0.96) 0%, rgba(17, 24, 32, 0.86) 48%, rgba(17, 24, 32, 0.96) 100%);
    min-height: 0;
    padding-top: 170px;
  }

  .comp-hero-copy {
    left: auto;
    max-width: none;
    position: relative;
    top: auto;
  }

  .comp-hero h1 {
    color: var(--comp-deep);
    text-shadow: none;
  }

  .comp-hero h1 span {
    color: var(--comp-ink);
  }

  .comp-lead {
    color: var(--comp-muted);
    text-shadow: none;
  }

  .comp-hero-visual {
    min-height: 580px;
  }

  .comp-hero-main::after {
    display: none;
  }

  .comp-hero-main {
    inset: 0 34px auto 40px;
  }

  .comp-hero-sub {
    height: 230px;
    width: 220px;
  }

  .comp-hero-sub-a {
    left: 0;
    right: auto;
    top: 54px;
    transform: translateX(-10%);
  }

  .comp-hero-sub-b {
    bottom: 12px;
    right: 0;
    transform: translateX(9%);
  }

  .comp-hero-badge {
    left: 32px;
    right: auto;
  }

  .comp-feature-row {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .comp-choice-grid,
  .comp-menu-grid,
  .comp-works-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .comp-pickup figure {
    height: 430px;
  }
}

@media (max-width: 720px) {
  .comp-side-cta {
    display: none;
  }

  .comp-header {
    left: 12px;
    padding: 10px;
    top: 10px;
    transform: none;
    width: calc(100% - 24px);
  }

  .comp-logo {
    min-width: 0;
  }

  .comp-logo img {
    height: 40px;
    width: 40px;
  }

  .comp-logo small,
  .comp-nav {
    display: none;
  }

  .comp-header-cta {
    font-size: 0.86rem;
    min-height: 38px;
    padding-inline: 14px;
  }

  .comp-hero {
    gap: 30px;
    padding: 100px 18px 70px;
  }

  .comp-lead {
    font-size: 0.98rem;
  }

  .comp-hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .comp-button {
    width: 100%;
  }

  .comp-hero-visual {
    min-height: 470px;
  }

  .comp-hero-main {
    height: 390px;
    inset: 0 10px auto 18px;
  }

  .comp-hero-sub {
    height: 150px;
    width: 140px;
  }

  .comp-hero-sub-a {
    top: 32px;
    transform: translateX(-5%);
  }

  .comp-hero-sub-b {
    bottom: 14px;
    transform: translateX(3%);
  }

  .comp-vertical-label {
    right: 0;
    top: 48px;
  }

  .comp-hero-badge {
    bottom: 18px;
    height: 118px;
    left: 18px;
    width: 118px;
  }

  .comp-hero-badge strong {
    font-size: 1.18rem;
  }

  .comp-intro,
  .comp-problem,
  .comp-choice,
  .comp-menu,
  .comp-works,
  .comp-flow,
  .comp-faq-news,
  .comp-access {
    padding: 64px 18px;
  }

  .comp-problem-board {
    padding: 36px 22px 28px;
  }

  .comp-problem-board ul {
    grid-template-columns: 1fr;
  }

  .comp-section-head {
    margin-bottom: 30px;
  }

  .comp-feature-row,
  .comp-photo-strip,
  .comp-choice-grid,
  .comp-menu-grid,
  .comp-works-grid {
    grid-template-columns: 1fr;
  }

  .comp-photo-strip figure,
  .comp-photo-strip figure:nth-child(1),
  .comp-photo-strip figure:nth-child(2),
  .comp-photo-strip figure:nth-child(3),
  .comp-photo-strip figure:nth-child(4) {
    height: 240px;
  }

  .comp-choice-card {
    grid-template-columns: 1fr;
  }

  .comp-choice-card figure {
    height: 260px;
  }

  .comp-choice-card div,
  .comp-access-info {
    padding: 26px;
  }

  .comp-pickup {
    padding: 64px 18px;
  }

  .comp-pickup figure,
  .comp-map {
    height: 330px;
  }

  .comp-flow-list::before {
    display: none;
  }

  .comp-flow-list li {
    grid-template-columns: 42px minmax(0, 1fr);
    padding: 18px;
  }

  .comp-flow-list span {
    height: 42px;
    width: 42px;
  }

  .comp-footer {
    align-items: flex-start;
    flex-direction: column;
    padding: 28px 18px;
  }
}

/* DETAIL SALON LIBERTY reference pass: sharper, photo-led car-care direction. */
.mk-comp {
  --comp-ink: #15191d;
  --comp-muted: #64717b;
  --comp-blue: #237aa7;
  --comp-deep: #111820;
  --comp-mint: #e9f5f7;
  --comp-pink: #eef3f5;
  --comp-sun: #d8aa45;
  --comp-coral: #237aa7;
  --comp-cream: #f5f2eb;
  --comp-paper: #f3f6f7;
  --comp-line: rgba(17, 24, 32, 0.13);
  --comp-shadow: 0 18px 44px rgba(17, 24, 32, 0.12);
  background: var(--comp-paper);
  font-family: "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, -apple-system, BlinkMacSystemFont, sans-serif;
}

.comp-header {
  background: rgba(255, 255, 255, 0.94);
  border: 0;
  border-bottom: 1px solid rgba(17, 24, 32, 0.1);
  box-shadow: 0 12px 30px rgba(17, 24, 32, 0.08);
  left: 0;
  max-width: none;
  padding: 14px max(22px, calc((100vw - 1180px) / 2));
  top: 0;
  transform: none;
  width: 100%;
}

.comp-logo span,
.comp-nav a {
  color: var(--comp-deep);
}

.comp-logo img {
  border-radius: 3px;
}

.comp-header-cta {
  background: var(--comp-deep);
  border-radius: 3px;
  box-shadow: none;
  color: #fff;
}

.comp-button,
.comp-side-cta a,
.comp-choice-card a {
  border-radius: 3px;
}

.comp-side-cta {
  right: 20px;
  top: 168px;
}

.comp-side-cta a {
  background: rgba(17, 24, 32, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.72);
  box-shadow: 0 12px 24px rgba(17, 24, 32, 0.18);
  min-height: 104px;
}

.comp-side-cta a:last-child {
  background: var(--comp-sun);
}

.comp-hero {
  background: #0a0f14;
  min-height: 790px;
  padding: 0;
}

.comp-hero::after {
  background: transparent;
  border-radius: 0;
  bottom: -0.16em;
  color: rgba(255, 255, 255, 0.06);
  content: "ABOUT US";
  font-size: clamp(5.6rem, 16vw, 14rem);
  font-weight: 900;
  height: auto;
  left: max(20px, calc((100vw - 1180px) / 2));
  line-height: 1;
  right: auto;
  width: auto;
  z-index: 1;
}

.comp-hero-visual {
  inset: 0;
  margin: 0;
  max-width: none;
  min-height: 790px;
  position: absolute;
  width: 100%;
}

.comp-hero-visual figure {
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.comp-hero-main {
  height: 100%;
  inset: 0;
  width: 100%;
}

.comp-hero-main img {
  filter: saturate(1.06) contrast(1.08);
  object-position: center center;
}

.comp-hero-main::after {
  background:
    linear-gradient(90deg, rgba(7, 11, 15, 0.92) 0%, rgba(7, 11, 15, 0.72) 38%, rgba(7, 11, 15, 0.18) 68%, rgba(7, 11, 15, 0.78) 100%),
    linear-gradient(0deg, rgba(7, 11, 15, 0.78) 0%, rgba(7, 11, 15, 0) 42%);
}

.comp-hero-sub {
  border: 1px solid rgba(255, 255, 255, 0.24) !important;
  height: 198px;
  right: max(28px, calc((100vw - 1180px) / 2));
  width: 286px;
}

.comp-hero-sub-a {
  top: 148px;
}

.comp-hero-sub-b {
  bottom: auto;
  top: 372px;
}

.comp-vertical-label {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 0;
  color: rgba(255, 255, 255, 0.9);
  right: max(330px, calc((100vw - 1180px) / 2 + 316px));
  top: 148px;
}

.comp-hero-copy {
  left: max(28px, calc((100vw - 1180px) / 2));
  max-width: 650px;
  top: 216px;
}

.comp-eyebrow,
.comp-section-head span,
.comp-choice-card p,
.comp-access-info > span,
.comp-pickup-text > span {
  color: var(--comp-blue);
  letter-spacing: 0;
}

.comp-hero .comp-eyebrow {
  color: #b7dff0;
}

.comp-hero h1 {
  color: #fff;
  font-size: clamp(3.15rem, 5.4vw, 5.4rem);
  letter-spacing: 0;
  line-height: 1.04;
  text-shadow: 0 14px 38px rgba(0, 0, 0, 0.42);
}

.comp-hero h1 span {
  background: linear-gradient(transparent 70%, rgba(216, 170, 69, 0.65) 70%);
  color: #fff;
}

.comp-lead {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.04rem;
  max-width: 590px;
}

.comp-button-main {
  background: var(--comp-blue);
  box-shadow: 0 16px 28px rgba(35, 122, 167, 0.28);
}

.comp-hero .comp-button-sub {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.34);
  color: #fff;
}

.comp-hero-points {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 650px;
}

.comp-hero-points li {
  align-items: flex-start;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #fff;
  flex-direction: column;
  gap: 10px;
  min-height: 110px;
  padding: 18px;
}

.comp-hero-points span {
  background: var(--comp-sun);
  color: var(--comp-deep);
}

.comp-hero-badge {
  align-items: flex-start;
  background: #fff;
  border: 0;
  border-left: 5px solid var(--comp-sun);
  border-radius: 0;
  bottom: 86px;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.24);
  height: auto;
  left: auto;
  padding: 18px 22px;
  right: max(28px, calc((100vw - 1180px) / 2));
  text-align: left;
  width: 286px;
}

.comp-hero-badge strong {
  color: var(--comp-deep);
  font-size: 1.8rem;
}

.comp-hero-badge span {
  color: var(--comp-muted);
}

.comp-problem {
  background: #fff;
  padding: 86px max(22px, calc((100vw - 1040px) / 2)) 64px;
}

.comp-problem-board {
  background: #fff;
  border: 1px solid rgba(17, 24, 32, 0.12);
  box-shadow: 0 18px 42px rgba(17, 24, 32, 0.08);
  max-width: 1040px;
  padding: 54px 58px;
}

.comp-problem-board::before {
  display: none;
}

.comp-problem-board > span {
  color: var(--comp-sun);
  letter-spacing: 0;
}

.comp-problem-board h2,
.comp-section-head h2,
.comp-pickup h2,
.comp-access-info h2,
.comp-bottom-cta h2 {
  color: var(--comp-deep);
}

.comp-problem-board li::before {
  background: var(--comp-deep);
}

.comp-intro,
.comp-choice,
.comp-menu,
.comp-works,
.comp-flow,
.comp-faq-news,
.comp-access {
  padding-bottom: 92px;
  padding-top: 92px;
}

.comp-intro {
  background: #fff;
  max-width: none;
  overflow: hidden;
  padding-inline: max(28px, calc((100vw - 1180px) / 2));
  position: relative;
}

.comp-intro::before,
.comp-works::before {
  color: rgba(17, 24, 32, 0.045);
  font-size: clamp(4.4rem, 12vw, 10rem);
  font-weight: 900;
  left: max(20px, calc((100vw - 1180px) / 2));
  line-height: 1;
  position: absolute;
  top: 34px;
  white-space: nowrap;
}

.comp-intro::before {
  content: "ABOUT US";
}

.comp-works::before {
  content: "WORKS";
}

.comp-section-head {
  position: relative;
  z-index: 1;
}

.comp-section-head h2,
.comp-pickup h2,
.comp-access-info h2,
.comp-bottom-cta h2 {
  font-size: clamp(2rem, 3.6vw, 3rem);
}

.comp-feature-row article,
.comp-choice-card,
.comp-menu-grid article,
.comp-works-grid article,
.comp-faq dl > div,
.comp-news li,
.comp-access-info {
  border-color: rgba(17, 24, 32, 0.12);
  border-radius: 3px;
}

.comp-feature-row article {
  box-shadow: none;
  min-height: 170px;
}

.comp-feature-row article span {
  background: var(--comp-deep);
  border-radius: 0;
  color: #fff;
}

.comp-feature-row article:nth-child(2n) span {
  background: var(--comp-blue);
}

.comp-photo-strip figure,
.comp-pickup figure,
.comp-map {
  border-radius: 3px;
}

.comp-choice {
  background: #f2f5f6;
}

.comp-big-title {
  color: rgba(17, 24, 32, 0.055);
}

.comp-choice-card {
  box-shadow: 0 18px 42px rgba(17, 24, 32, 0.1);
}

.comp-choice-card h3,
.comp-menu-grid h3,
.comp-works-grid h3,
.comp-flow-list strong,
.comp-faq dt {
  color: var(--comp-deep);
}

.comp-choice-card strong,
.comp-menu-grid strong {
  color: var(--comp-blue);
}

.comp-choice-card-yellow {
  background: #fff;
}

.comp-choice-card-yellow a {
  background: var(--comp-sun);
  color: var(--comp-deep);
}

.comp-pickup {
  background: var(--comp-deep);
  color: #fff;
}

.comp-pickup-text p,
.comp-pickup h2,
.comp-pickup-text > span {
  color: #fff;
}

.comp-pickup figure {
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.2);
}

.comp-menu {
  background: #fff;
  max-width: none;
  padding-inline: max(28px, calc((100vw - 1180px) / 2));
}

.comp-menu-grid article span {
  background: var(--comp-sun);
  border-radius: 0;
  color: var(--comp-deep);
}

.comp-works {
  background: var(--comp-paper);
  position: relative;
}

.comp-before-after::after {
  background: var(--comp-blue);
}

.comp-flow {
  background: #fff;
}

.comp-flow-list::before {
  background: linear-gradient(var(--comp-deep), var(--comp-blue));
}

.comp-flow-list li {
  background: #f7f8f8;
  border-color: rgba(17, 24, 32, 0.1);
}

.comp-flow-list span {
  background: var(--comp-deep);
  border-radius: 0;
}

.comp-faq-news {
  background: var(--comp-paper);
  max-width: none;
  padding-inline: max(28px, calc((100vw - 1180px) / 2));
}

.comp-access {
  background: #fff;
  max-width: none;
  padding-inline: max(28px, calc((100vw - 1180px) / 2));
}

.comp-access-info {
  box-shadow: 0 16px 38px rgba(17, 24, 32, 0.08);
}

.comp-bottom-cta {
  background:
    linear-gradient(120deg, rgba(17, 24, 32, 0.96), rgba(17, 24, 32, 0.86)),
    url("../images/detail-water.webp") center/cover;
}

.comp-bottom-cta h2 {
  color: #fff;
}

.comp-footer {
  background: #fff;
  border-top: 1px solid rgba(17, 24, 32, 0.08);
}

@media (max-width: 1020px) {
  .comp-header {
    grid-template-columns: auto auto;
    padding: 12px 18px;
  }

  .comp-hero {
    min-height: 780px;
    padding: 0 28px;
  }

  .comp-hero-copy {
    left: 28px;
    max-width: calc(100% - 56px);
    top: 172px;
  }

  .comp-hero h1 {
    color: #fff;
    text-shadow: 0 14px 38px rgba(0, 0, 0, 0.42);
  }

  .comp-hero h1 span {
    color: #fff;
  }

  .comp-lead {
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 4px 18px rgba(0, 0, 0, 0.25);
  }

  .comp-hero-visual,
  .comp-hero-main {
    min-height: 780px;
  }

  .comp-hero-sub,
  .comp-vertical-label {
    display: none;
  }

  .comp-hero-badge {
    bottom: 52px;
    left: 28px;
    right: auto;
  }

  .comp-feature-row {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .comp-header {
    left: 0;
    top: 0;
    transform: none;
    width: 100%;
  }

  .comp-hero {
    min-height: 840px;
    padding: 0 18px;
  }

  .comp-hero::after {
    bottom: 18px;
    font-size: 4.6rem;
    left: 18px;
  }

  .comp-hero-copy {
    left: 18px;
    max-width: calc(100% - 36px);
    top: 112px;
  }

  .comp-hero h1 {
    font-size: clamp(2.55rem, 12vw, 3.85rem);
  }

  .comp-hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .comp-hero-points {
    grid-template-columns: 1fr;
  }

  .comp-hero-points li {
    min-height: 0;
    padding: 14px;
  }

  .comp-hero-badge {
    bottom: 26px;
    left: 18px;
    padding: 14px 16px;
    width: calc(100% - 36px);
  }

  .comp-problem-board {
    padding: 36px 22px 30px;
  }

  .comp-intro,
  .comp-problem,
  .comp-choice,
  .comp-menu,
  .comp-works,
  .comp-flow,
  .comp-faq-news,
  .comp-access,
  .comp-pickup {
    padding-left: 18px;
    padding-right: 18px;
  }

  .comp-section-head-left {
    text-align: left;
  }

  .comp-choice-card figure,
  .comp-pickup figure,
  .comp-map {
    height: 300px;
  }
}
