:root {
  --bg: #dbe0e8;
  --text: #1f2630;
  --blue: #10a5df;
  --dark: #1d242e;
  --yellow: #ffd400;
  --orange: #ff7d00;
  --white: #ffffff;
}

body.page {
  margin: 0;
  color: var(--text);
  background: linear-gradient(180deg, #e3e8ef 0%, #d7dde6 100%);
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.7;
}

body.page.is-scroll-locked {
  position: fixed;
  left: 0;
  right: 0;
  width: 100%;
  overflow: hidden;
}

.main * {
  box-sizing: border-box;
}

.txt-body {
  margin-top: 0;
  margin-bottom: 0;
}

.page img {
  max-width: 100%;
  height: auto;
}
#header .inner {
  padding-right: 90px;
}
.page .inner {
  margin-inline: auto;
}

.header {
  position: sticky;
  top: 0;
  z-index: 120;
}

.header-inner {
  min-height: 84px;
  display: flex;
  align-items: center;
  gap: 24px;
  max-width: 1400px;
}

.header-logo {
  width: 310px;
  flex: 0 0 auto;
  padding-left: 10px;
}

.header-nav {
  margin-left: auto;
}

.header-nav-list {
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 14px;
  font-weight: 700;
}
.header-nav-list li{
  position:relative;
  padding-left: 14px;
}
.header-nav-list li:before {
  content: "";
  margin-right: 4px;
  position:absolute;
  left:0;
  top:0;
  bottom:0;
  right:auto;
  background: #000;
  padding: 4px;
  border-radius:100%;
  aspect-ratio:1;
  background-size: 100%;
  margin:auto;
  display: flex;
  width:0;
  height:0;
}
.header-nav a {
  color: var(--dark);
  text-decoration: none;
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  min-height: 60px;
  padding: 0 14px;
  gap: 8px;
  border-radius: 8px;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
}

.header-cta img {
  /* width: 64px; */
  height: auto;
}

.header-cta--parking {
  background: #fdd000;
  color: #1a1f27;
}

.header-cta--trunk {
  background: #1e2677;
}

.nav-toggle {
  width: 80px;
  height: 80px;
  margin-left: 4px;
  border: 0;
  background: url(img/renewal/menu.svg) no-repeat right top;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 3;
}
.nav-toggle.active {
  background-image: url(img/renewal/menu_open.svg);
}
.nav-toggle span {
  display: none;
  width: 22px;
  height: 2px;
  background: #fff;
  transition:
    transform 0.28s ease,
    opacity 0.28s ease;
}

body.is-nav-open .nav-toggle span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

body.is-nav-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

body.is-nav-open .nav-toggle span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

#bg-nav {
  position: fixed;
  inset: 0;
  z-index: 110;
  background: rgba(23, 30, 40, 0.55);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.28s ease;
}

body.is-nav-open #bg-nav {
  opacity: 1;
  pointer-events: auto;
}

.drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  width: 100%;
  background: #333333;
  border-radius: 0 0 40px 40px;
  color: #fff;
  transform: translateX(100%);
  transition: transform 0.3s ease;
}

body.is-nav-open .drawer {
  transform: translateX(0);
  height: auto;
}

.drawer-inner {
  height: 100%;
  padding: 20px 24px 24px;
  overflow-y: auto;
  box-sizing: border-box;
}

.drawer-logo img {
  width: 220px;
  margin: 0 auto 24px;
}

.drawer-grid {
  display: grid;
  gap: 40px;
  grid-template-columns: repeat(2, 1fr);
  max-width: 1300px;
  margin-inline: auto;
}
.drawer-card--parking {
  grid-area: 1 / 1 / 3 / 2;
}
.drawer-card--trunk {
  grid-area: 1 / 2 / 2 / 3;
}
.drawer-card--contact {
  grid-area: 2 / 2 / 3 / 3;
}

.drawer-card {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 700;
  font-size: 18px;
}
.drawer-card ul {
  line-height: 2;
}

.drawer-card--parking {
  background: #fdd000;
  color: #1f2630;
  flex-direction: column;
  padding: 20px;
  justify-content: flex-start;
}
.drawer-card--parking .park-ttl,
.drawer-card--trunk .trunk-ttl {
  display: flex;
  align-items: center;
  font-size: 24px;
}
footer .drawer-card--parking .park-ttl,
footer .drawer-card--trunk .trunk-ttl {
  flex-direction: column;
}
footer .drawer-card--parking .park-ttl img,
footer .drawer-card--trunk .trunk-ttl img {
  margin-bottom: 20px;
}
.drawer-card--parking .park-ttl img,
.drawer-card--trunk .trunk-ttl img {
  height: 80px;
}
.drawer-card--parking a {
  color: #1f2630;
  text-decoration: none;
}
.drawer-card--trunk {
  background: #1e2678;
  color: #fff;
  flex-direction: column;
  padding: 20px;
}

.drawer-card--trunk a {
  color: #fff;
  text-decoration: none;
}

.drawer-card--contact {
  width: 100%;
  color: #fff;
}
.drawer-card--contact ul {
  width: 100%;
  list-style: none;
  padding-left: 1rem;
}
.drawer-card--contact ul a {
  color: #fff;
  text-decoration: none;
}
header .drawer-links {
  padding-block: 0;
  margin: 30px auto;
  font-size: 20px;
  border: none;
}
.drawer-links {
  display: flex;
  gap: 100px;
  max-width: calc(100% - 80px);
  margin: 60px auto 80px;
  padding-block: 80px;
  border-block: solid 1px rgb(255 255 255 / 20%);
  justify-content: center;
  font-size: 26px;
}
.drawer-links > * {
  max-width: 460px;
}
.drawer-links .menu-tel a {
  height: 50px;
  background: url(img/renewal/tel_wh.svg) no-repeat center left;
  background-size: contain;
  display: block;
  color: transparent;
}
.drawer-links .menu-tel a,
.drawer-links .menu-tel p {
  margin-left: 20px;
}
.drawer-links .menu-contact a {
  height: 50px;
  background: url(img/renewal/contact_wh.svg) no-repeat center left;
  display: flex;
  padding-left: 90px;
  align-items: center;
  font-weight: bold;
  margin-left: 20px;
  font-size: 26px;
}
.drawer-grid {
  max-width: calc(100% - 80px);
}
.drawer-links h3 {
  font-size: 20px;
  font-family: "Barlow Condensed", sans-serif;
}
header .drawer-links h3 {
  margin-top: 0;
}
.drawer-links h3:before {
  content: "";
  font-size: 12px;
  vertical-align: 2px;
  margin-right: 8px;
  width: clamp(0.563rem, 2.4vw, 1.125rem);
  height: clamp(0.563rem, 2.4vw, 1.125rem);
  display: inline-block;
  vertical-align: middle;
  aspect-ratio:1;
  background: #fff;
  border-radius:100%;
}
.drawer-links > * {
  width: 100%;
}
.drawer-links a {
  display: block;
  color: #fff;
  text-decoration: none; 
}

/* Footer */
.footer {
  padding: 70px 0 0;
  background: #333333;
  color: #fff;
  border-radius: 40px 40px 0 0;
}
.footer-logo {
  display: block;
  text-align: center;
  margin: auto;
  font-size: 30px;
  font-weight: bold;
  line-height: 1;
}
.footer-logo small {
  font-size: 80%;
}
.footer-logo img {
  margin: auto;
}
.footer-inner {
  text-align: center;
}

.footer-cta {
  margin-top: 20px;
  display: inline-flex;
  min-height: 56px;
  padding: 0 34px;
  border-radius: 999px;
  align-items: center;
  justify-content: center;
  background: linear-gradient(90deg, var(--blue), #2677dd);
  color: #fff;
  font-weight: 900;
  text-decoration: none;
}

.footer-nav ul {
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}

.footer-nav a {
  color: #fff;
  text-decoration: none;
}

.footer-copyright {
  font-size: 14px;
  padding: 20px;
  text-align: center;
  margin: 0;
  margin-top: 40px;
}

/* Main */
.fv {
  padding-top: 60px;
  padding-bottom: 120px;
  overflow: hidden;
}

.fv-inner {
  display: block;
}

.fv-copy {
  display: none;
}

.fv-visual {
  --fv-side-scale: 0.5;
  --fv-scale-comp-x: calc((1 - var(--fv-side-scale)) * 50%);
  --fv-overhang-x: 0%;
  --fv-side-offset-x: calc(var(--fv-scale-comp-x) - var(--fv-overhang-x));
  --fv-side-offset-y: 33%;
  width: min(1240px, calc(100vw - 24px));
  margin: 0 auto;
  overflow: visible;
  padding-bottom: 80px;
  position: relative;
}

.fv-visual .swiper-wrapper {
  align-items: center;
}

.fv-visual .swiper-slide {
  position: relative;
  min-height: 620px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 620px;
  flex-shrink: 0;
}

.fv-visual .swiper-img {
  width: 620px;
  max-width: 100%;
  --img-x: 0px;
  --img-y: 0px;
  --img-scale: var(--fv-side-scale);
  transform: translate3d(var(--img-x), var(--img-y), 0) scale(var(--img-scale));
  transform-origin: 50% 50%;
  opacity: 0.4;
  transition: opacity 0.35s ease;
  will-change: transform, opacity;
}

.fv-visual .swiper-slide-active .swiper-img {
  --img-x: 0px;
  --img-y: 0px;
  --img-scale: 1;
  opacity: 1;
}

.fv-visual .swiper-slide-prev .swiper-img {
  --img-x: var(--fv-side-offset-x);
  --img-y: var(--fv-side-offset-y);
  --img-scale: var(--fv-side-scale);
  opacity: 0.95;
}

.fv-visual .swiper-slide-next .swiper-img {
  --img-x: calc(var(--fv-side-offset-x) * -1);
  --img-y: calc(var(--fv-side-offset-y) * -1);
  --img-scale: var(--fv-side-scale);
  opacity: 0.95;
}

.fv-visual
  .swiper-slide:not(.swiper-slide-prev):not(.swiper-slide-active):not(
    .swiper-slide-next
  )
  .swiper-img {
  opacity: 0;
}

.fv-visual .swiper-txt,
.fv-visual .swiper-icon {
  position: absolute;
  z-index: 3;
}

.fv-visual .swiper-txt {
  top: 30px;
  left: 50%;
  margin: 0;
  max-width: 1000px;
  font-size: clamp(24px, 2.2vw, 40px);
  line-height: 1.35;
  font-weight: 900;
  position: absolute;
  transform: translateX(-50%);
}

.fv-visual .swiper-icon {
  right: -30%;
  bottom: -7%;
  width: 54%;
}

.fv-visual.is-overlay-ready .swiper-slide .swiper-txt,
.fv-visual.is-overlay-ready .swiper-slide .swiper-icon {
  opacity: 0 !important;
  visibility: hidden;
}

.fv-overlay {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 620px;
  height: 620px;
  transform: translate(-50%, -50%);
  z-index: 10;
  pointer-events: none;
}

.fv-overlay .fv-overlay-txt {
  position: absolute;
  top: 0;
  margin: 0;
  max-width: 1000px;
  font-size: clamp(24px, 2.2vw, 40px);
  line-height: 1.75;
  font-weight: 900;
  transform: translateX(-50%);
  transition: opacity 0.24s ease;
}

.fv-overlay .fv-overlay-icon {
  position: absolute;
  right: -30%;
  bottom: -7%;
  width: 54%;
  transition: opacity 0.24s ease;
}

.fv-overlay.is-hidden .fv-overlay-txt,
.fv-overlay.is-hidden .fv-overlay-icon {
  opacity: 0;
}

body.top .intro-ttl {
  margin-top: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  max-width: 400px;
  margin-inline: auto;
  flex-direction: column;
  position: relative;
}

body.top .intro-ttl span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 40px 40px 0 40px;
  background: var(--dark);
  color: #fff;
  font-weight: 700;
  width: 100%;
  font-size: 36px;
  position: relative;
}
body.top .intro-ttl span:nth-of-type(1):before {
  content: "";
  background: #fddd00;
  aspect-ratio: 1;
  border-radius: 40px 40px 0 40px;
  height: 100%;
  bottom: -8px;
  right: -8px;
  position: absolute;
  z-index: -1;
}
body.top .intro-ttl span:nth-of-type(2):before {
  content: "";
  background: #fda208;
  aspect-ratio: 1;
  border-radius: 40px 40px 0 40px;
  height: 100%;
  top: -8px;
  left: -8px;
  position: absolute;
  z-index: -1;
}
body.top .intro-ttl span:nth-of-type(3):before {
  content: "";
  background: #0db1f7;
  aspect-ratio: 1;
  border-radius: 40px 40px 0 40px;
  height: 100%;
  bottom: -8px;
  right: -8px;
  position: absolute;
  z-index: -1;
}

body.top .intro-ttl .intro_l,
body.top .intro-ttl .intro_r {
  width: 264px;
  height: auto;
  position: absolute;
}
body.top .intro-ttl .intro_l {
  left: -100%;
  bottom: -70px;
}
body.top .intro-ttl .intro_r {
  right: -100%;
}

#top-intro {
  text-align: center;
  padding-top: 0px;
  margin-bottom: 120px;
}
#top-intro .txt-body {
  max-width: 430px;
  margin-right: 0;
}

.intro h2,
.comparison h2,
.dual-comparison h2,
.parking h2,
.trunk h2,
.merit h2,
.flow h2 {
  margin: 0;
  font-size: clamp(30px, 3vw, 44px);
  line-height: 1.3;
  font-weight: 900;
}
h2.ttl {
  text-align: center;
  position: relative;
  font-size: 66px;
  margin-bottom: 80px;
}
h2.ttl .ja {
  position: relative;
}
h2.ttl .ja:before {
  content: "";
  width: 100px;
  background: url(img/renewal/ttl_before.svg) no-repeat center;
  background-size: contain;
  aspect-ratio: 159/164;
  position: absolute;
  left: -60px;
  top: -30px;
  z-index: -1;
}
h2.ttl .en {
  background-color: #333333;
  color: #fff;
  border-radius: 30px;
  font-size: 18px;
  padding: 4px 16px;
  display: table;
  margin-inline: auto;
}
.intro h2 {
  font-size: 46px;
  line-height: 1.65;
}
.intro p {
  margin: 20px auto 0;
  max-width: 760px;
  font-size: 20px;
  text-align: left;
  line-height: 2;
}

#top-compare {
  margin-bottom: 140px;
}
.table-wrap {
  margin-top: 30px;
  overflow-x: scroll;
  padding-bottom: 20px;
  max-width: 1100px;
  margin-inline: auto;
}
.table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  min-width: 760px;
  border-radius: 0;
  overflow: hidden;
  font-size: 20px;
  position: relative;
}
.table tr {
  position: relative;
}
.table tr:after {
  content: "";
  border-bottom: solid 1px #ccc;
  width: 100%;
  height: 1px;
  position: absolute;
  bottom: 0;
  left: 0;
}
.table th,
.table td {
  padding: 20px;
  text-align: center;
  border-inline: solid 3px #e1e6ee;
  border-bottom: 1px solid #ccc;
}

#top-table1 thead th {
  border-radius: 20px 20px 0 0;
}

#top-table1 th {
  font-size: 18px;
  min-width: 210px;
}
#top-table1 thead th:first-child,
#top-table1 tbody th {
  background: #333;
  color: #fff;
}
#top-table1 tr small {
  font-size: 80%;
}
br.sp{
    display:block;
}
br.pc{
  display:none;
}
@media screen and (min-width: 500px) {
  br.sp500{
    display:none;
  }
}
@media screen and (min-width: 768px) {
  .table-wrap {
    overflow: hidden;
  }
  #top-table1 {
    table-layout: fixed;
  }
  #top-table1 tr > * {
    max-width: 210px !important;
    width: 100%;
    padding-inline: 4px;
  }
  br.sp{
    display:none;
  }
  br.pc{
    display:block;
  }
}
#top-table2 {
  table-layout: fixed;
  width: 100%;
  border-spacing: 0;
  border-collapse: collapse;
}
#top-table2 th:first-of-type {
  background: #333;
  color: #fff;
}
#top-table2 td:first-of-type {
  width: 235px;
}
#top-table2 td:not(:first-of-type) {
  width: 100%;
}
#top-table2 tr:first-child > td {
  border-radius: 20px 20px 0 0;
  font-size: 20px;
}
#top-table1 tr:first-child > td {
  border-radius: 0;
}
#top-compare-detail tr th:first-of-type {
  font-weight: bold;
}
#top-table2 tr b {
  padding-top: 20px;
  display: block;
  font-size: 22px;
}
#top-table2 tr td .logo {
  border-radius: 20px;
  background: #fff;
  padding: 30px;
  width: 100%;
  margin-top: 0;
  margin-bottom: auto;
  height: 140px;
  display: flex;
}
#top-table2 tr td .logo img {
  min-height: 80px;
  width: auto;
  margin-inline: auto;
}
.table tr th:nth-child(2),
.table tr td:nth-child(2) {
  background: #fddc00;
  width: 228px;
}
.table tr th:nth-child(3),
.table tr td:nth-child(3) {
  background: #f47402;
  color: #fff;
  width: 228px;
}

#top-table1 thead tr th {
  top: 30px;
  position: relative;
  padding-top: 10px;
  padding-bottom: 30px;
}
#top-table1 thead tr th.tbl-coin,
#top-table1 thead tr th.tbl-trunkroom {
  position: relative;
  font-weight: bold;
  font-size: 22px;
  top: 0px;
  padding-top: 30px;
  padding-bottom: 30px;
  min-width: 260px;
}

#top-table1 tr th:nth-child(n + 4) {
  color: #0099da;
  background: #fff;
  font-size: 18px;
}
#top-table1 tr th.blue{
  color: #50c9fd;
}
#top-table1 tr td:nth-child(n + 4) {
  background: #fff;
  min-width: 210px;
}
#top-table2 th,
#top-table2 td {
  font-size: 20px;
}
.table table tr:last-of-type > * {
  border-bottom: none;
}
.table table tr:last-of-type:after {
  content: none;
}
.cards-compare {
  display: flex !important;
  justify-content: space-between;
  margin-bottom: 40px;
}
.cards-compare article {
  width: calc(50% - 40px);
  background: #fff;
  border-radius: 20px;
  box-shadow: 20px 20px 0 0;
  padding: 50px;
  max-width: 500px;
  margin-inline: auto;
  margin-bottom: 80px;
}
.cards-compare .card-point p {
  font-size: 18px;
  font-weight: normal;
}
.cards-compare .card-point p.txt-body {
  font-size: 20px;
  font-weight: bold;
}
.cards-compare .card-point p.merit {
  color: #0d9ee0;
}
.cards-compare article.card-coin {
  box-shadow: 20px 20px 0 0 #fddd00;
}
.cards-compare article.card-trunkroom {
  box-shadow: 20px 20px 0 0 #f47402;
}
.cards-compare article h4 {
  text-align: center;
  font-size: 30px;
  margin-bottom: 10px;
}
.cards-compare article h5 {
  margin-bottom: 0;
  background: red;
  display: table;
  padding: 4px 20px;
  border-radius: 30px;
  min-width: 120px;
  text-align: center;
}

.cards {
  margin-top: 28px;
  display: grid;
  gap: 20px;
  max-width: 1100px;
  margin-inline: auto;
}

.cards-comparison {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.card {
  background: #fff;
  border-radius: 18px;
  padding: 26px;
  box-shadow: 0 14px 28px rgba(30, 45, 62, 0.12);
}

.card h3 {
  margin: 0 0 12px;
  font-size: 26px;
  font-weight: 900;
}

.card ul {
  margin: 0;
  padding-left: 1.2em;
}
#top-voice h2 {
  text-align: center;
  font-size: 50px;
}
.voice-card-list {
  display: flex;
  justify-content: space-between;
  max-width: 1100px;
  margin-inline: auto;
}
.voice-card {
  background: #fff;
  border-radius: 20px;
  padding: 50px;
  flex-basis: calc(50% - 40px);
  box-shadow: 20px 20px 0 #f7cf02;
  margin-bottom: 80px;
}
.voice-card .img {
  text-align: center;
}
.voice-card .img img {
  margin: auto;
}
main.main .labels {
  display: flex;
  justify-content: center;
  max-width: 350px;
  margin-inline: auto;
  margin-bottom: 0;
}
main.main .label {
  width: 140px;
  height: 40px;
  max-height: 40px;
  background: #333333;
  color: #fff;
  border-radius: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-inline: auto;
  margin-bottom: 10px;
  font-size: 20px;
  padding: 0 20px;
  box-sizing: border-box;
  text-align: center;
  font-family: "Barlow Condensed", sans-serif;
}
main.main h2 .label {
  font-size: 18px;
}
main.main .label.park {
  background-color: #fddd00;
  color: #000;
}
main.main .label.trunk {
  background-color: #f47402;
}
main.main .label.answer {
  background-color: #50c9fd;
}
.banner-split {
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.banner {
  min-height: 280px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  font-size: 34px;
  font-weight: 900;
  text-decoration: none;
}
#top-banner {
  overflow: hidden;
  padding-bottom: 0;
}
#top-banner a {
  aspect-ratio: 7/6;
  min-height: 600px;
  width: 100%;
}

.banner-parking {
  background: url("./img/renewal/parking_bg.jpg") center / cover;
}
.banner-trunk {
  background: url("./img/renewal/trunkroom_bg.jpg") center / cover;
}

.before-after {
  margin-top: 28px;
  max-width: 1100px;
  margin-inline: auto;
  text-align: right;
  margin-bottom: 50px;
}
.before-after article {
  background: #fff;
  border-radius: 16px;
  padding: 16px;
}

.before-after h3 {
  margin: 0 0 12px;
  font-size: 22px;
  font-weight: 900;
}

.problems {
  margin-top: 24px;
  background: #fff;
  border-radius: 18px;
  padding: 80px 120px;
  max-width: 1000px;
  margin-inline: auto;
  position: relative;
}
.problems:after {
  content: "";
  background: url(img/renewal/parking_mitsumori.svg) no-repeat;
  padding: 10.5%;
  background-size: contain;
  position: absolute;
  bottom: 0;
  right: 0;
  transform: translate(-30%, 70%);
}

.trunk-problem.problems:after {
 
  background-image: url(img/renewal/trunk_mitsumori.svg);
 
}

.problems h3 {
  margin: 0;
  font-size: 50px;
  font-weight: 900;
  text-align: center;
  margin-bottom: 40px;
  line-height: 1.5;
}

.problems ul {
  margin: 16px 0 0;
  padding-left: 0;
  max-width: 720px;
  margin-inline: auto;
}
.problems li {
  margin-bottom: 40px;
  position: relative;
  list-style: none;
  font-size: 20px;
  font-weight: bold;
  padding-left: 60px;
}
.problems li:last-child {
  margin-bottom: 0;
}
.problems li:before {
  content: "";
  background: url(img/renewal/problem_icon.svg) no-repeat center;
  padding: 21px 30px;
  position: absolute;
  left: 0;
}

.cta {
  margin-top: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 62px;
  padding: 0 34px;
  border-radius: 999px;
  background-image: -moz-linear-gradient(
    0deg,
    rgb(0, 153, 218) 0%,
    rgb(80, 201, 253) 100%
  );
  background-image: -webkit-linear-gradient(
    0deg,
    rgb(0, 153, 218) 0%,
    rgb(80, 201, 253) 100%
  );
  background-image: -ms-linear-gradient(
    0deg,
    rgb(0, 153, 218) 0%,
    rgb(80, 201, 253) 100%
  );
  color: #fff;
  font-size: 18px;
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(17, 127, 201, 0.35);
}

.merit {
  border-radius: 30px;
}
.merit h2 {
  text-align: center;
  margin-bottom: 100px;
  color: #fff;
}
.merit .btn {
  max-width: 1100px;
  margin-inline: auto;
}
.merit .grid article {
  margin-right: 0;
  margin-left: auto;
}
#top-parking,
#top-trunk {
  position: relative;
  padding-top: 120px;
}
#top-parking {
}
#top-parking:before,
#top-trunk:before {
  content: "";
  width: 30px;
  height: calc(100% + 40px);
  position: absolute;
  top: 0;
  left: 0;
  background: #f7cf00;
  z-index: -1;
}
#top-trunk:before {
  background: #f47402;
}
.merit-parking {
  background: #f7cf00;
  padding-top: 70px;
  padding-bottom: 50px;
  margin-bottom: 100px;
}
.merit-parking h2 {
  color: #000;
  font-size: 50px;
}
.merit-trunk {
  background: #f47402;
  padding-top: 70px;
  padding-bottom: 50px;
  margin-bottom: 100px;
}
.merit-trunk h2 {
  font-size: 50px;
}

.merit-trunk .grid article::after {
  color: #fff;
}
.grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
  max-width: 1100px;
  margin: auto;
}

.grid article {
  max-width: 320px;
  z-index: 1;
  margin-bottom: 60px;
}
.grid article .box {
  background: #fff;
  border-radius: 0 20px 20px;
  padding: 40px;
  max-width: 320px;
  height: 100%;
  z-index: 1;
}

.grid h3 {
  margin: 0 0 8px;
  font-size: 24px;
  font-weight: 900;
  text-align: center;
}

.grid p {
  margin: 0;
  font-weight: 700;
}

.flow {
  text-align: center;
}

.flow-parking h2 {
  font-size: 50px;
}
.flow-parking h2 .label {
  background: #50c9fd;
  width: auto;
  display: inline-flex;
}

.lead {
  margin: 16px 0 0;
  font-weight: 900;
  max-width: 740px;
  margin-inline: auto;
  text-align: left;
}

.flow ol {
  margin: 24px auto 0;
  padding: 0;
}
.flow-trunk ol {
  margin-top: 0;
  margin-bottom: 140px;
  max-width: 1100px;
}

.flow li {
  border-radius: 12px;
  padding: 30px 10px;
  background: #fff;
  font-weight: 700;
  width: 150px;
  height: 300px;
  position: relative;
}
.flow-trunk.flow li:after {
  content: "";
  position: absolute;
  padding: 60px;
  background: url(img/renewal/open1.png) no-repeat center;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  transform: translate(0, 50%);
}
.flow li:nth-child(2):after {
  background-image: url(img/renewal/open2.png);
}
.flow li:nth-child(3):after {
  background-image: url(img/renewal/open3.png);
}
.flow li:nth-child(4):after {
  background-image: url(img/renewal/open4.png);
}
.flow li:nth-child(5):after {
  background-image: url(img/renewal/open5.png);
}
.flow li:nth-child(6):after {
  background-image: url(img/renewal/open6.png);
}

/* Missing selector coverage for updated markup */
.cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.intro .cols {
  align-items: center;
  max-width: 1000px;
  gap: 0;
  display: flex;
  justify-content: space-between;
}
.dual-comparison > .inner > p span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 10px;
  padding: 4px 30px;
  border-radius: 999px;
  background: #1f2630;
  color: #fff;
  font-weight: 700;
  line-height: 1.4;
}
.dual-comparison h3 {
  font-size: 50px;
  text-align: center;
  margin-top: 80px;
  margin-bottom: 10px;
}
.dual-comparison p {
  font-size: 24px;
  line-height: 2;
  font-weight: bold;
  max-width: 620px;
  margin-top: 0;
  margin-inline: auto;
  margin-bottom: 30px;
}
.dual-comparison .point-lead {
  margin-bottom: 70px;
}
.compare-img{
  text-align:center;
}
.dual-comparison .compare-lead {
  max-width: 900px;
  display: table;
  margin-inline: auto;
  margin-block: 70px;
  text-align: center;
  letter-spacing: 0.1em;
  line-height: 2.5;
}

.cards-compare article .logo {
  text-align: center;
}

.banner .en {
  margin-bottom: 8px;
}

.banner .btn-txt {
  margin-top: 8px;
  font-size: 45%;
  position: relative;
  background: url(img/renewal/btn_arrow.svg) no-repeat right center;
  padding: 10px 50px;
}

.before-after-txt,
.trunk-lead {
  margin: 20px auto 70px;
  max-width: 740px;
  font-weight: bold;
  line-height: 2;
  font-size: 18px;
}
.before-after-txt {
  font-size: 24px;
}
.trunk-lead {
  margin-bottom: 70px;
}

.cta-box {
  margin-top: 40px;
  text-align: center;
}

.cta-box h3 {
  font-size: 34px;
  font-weight: bold;
  margin: 0;
  margin-bottom: 50px;
  line-height: 1.4;
}

.cta-box .free-dial {
  margin: 14px 0 0;
  color: #1eaf52;
  font-size: clamp(38px, 4.4vw, 62px);
  font-weight: 900;
  line-height: 1;
  font-family: "Barlow Condensed", sans-serif;
  background: url(img/renewal/freedial.svg) no-repeat center;
  height: 72px;
  color: transparent;
}
.cta-box .cta {
  width: 100%;
  max-width: 650px;
  height: 120px;
  box-shadow: 10px 10px 0 #333333;
  margin-top: 50px;
  margin-bottom: 100px;
  font-size: 26px;
  position: relative;
}
.cta-box .cta:after {
  content: "";
  background: url(img/renewal/cta_arrow.svg) no-repeat center;
  padding: 30px;
  position: absolute;
  right: 20px;
}

.grid .ex {
  margin-top: 8px;
  font-size: 12px;
  font-size: 87%;
  line-height: 1.5;
  font-weight: 500;
}

.btn {
  margin-top: 24px;
  text-align: right;
  max-width: 1100px;
  margin-inline: auto;
}

.btn a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 41px;
  padding-right: 50px;
  background: url(img/renewal/next.svg) no-repeat right;
  color: #1f2630;
  text-decoration: none;
  font-weight: 700;
}

.flow .tag {
  margin-bottom: 10px;
}

.flow .red {
  color: #d73b21;
  font-size: clamp(24px, 2.6vw, 34px);
  font-weight: 900;
  margin-bottom: 60px;
}

.step-card-list,
.step-list {
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
}

.step-card,
.step-item {
  border-radius: 12px;
  padding: 14px;
  background: #fff;
}

.step-card h4 {
  margin: 0 0 8px;
}

.step-card p {
  margin: 0;
  font-size: 13px;
  line-height: 1.6;
}

.step-txt {
  color: #f47f20;
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 30px;
  display: block;
  line-height: 1;
  font-family: "Barlow Condensed", sans-serif;
}
ol.step-card-list {
  overflow-x: scroll;
  overflow-y: hidden;
  padding-top: 30px;
  display: flex;
  gap: 60px;
  padding-bottom: 20px;
  max-width: calc(550px + 50vw);
  margin-right: revert-layer;
}
.step-card-list .step-card {
  min-width: 460px;
  width: 100%;
  height: 100%;
  box-shadow: 20px 20px 0 #f7cf02;
  padding-inline: 50px;
  position: relative;
  overflow: visible;
}
.step-card-list .step-card:before {
  content: "";
  background: url(img/renewal/flow1.png) no-repeat right top;
  padding: 60px 80px;
  position: absolute;
  right: 20px;
  top: -20px;
  /* transform: translate(0px, -50%); */
}
.step-card-list .step-card:nth-child(2):before {
  background-image: url(img/renewal/flow2.png);
  right: 10px;
}
.step-card-list .step-card:nth-child(3):before {
  background-image: url(img/renewal/flow3.png);
}
.step-card-list .step-card:nth-child(4):before {
  background-image: url(img/renewal/flow4.png);
}
.step-card-list .step-card:nth-child(5):before {
  background-image: url(img/renewal/flow5.png);
  right: 10px;
}
.step-card-list .step-card:nth-child(6):before {
  background-image: url(img/renewal/flow6.png);
}
.step-card-list .step-card .step-txt {
  margin-bottom: 10px;
}
.step-card-list .step-card h4 {
  font-size: 24px;
}
.step-card-list .step-card p {
  text-align: left;
  line-height: 2;
  font-size: 18px;
  font-weight: 500;
}
.step-item .ja {
  display: flex;
  writing-mode: vertical-lr;
  vertical-align: middle;
  align-items: flex-start;
  justify-content: center;
  margin: auto;
  font-size: 24px;
  flex-direction: column-reverse;
}
.step-item .ja small,
.step-item .ja br {
  display: block;
}

.prev-next-btn {
  margin-top: 12px;
  display: flex;
  justify-content: flex-end;
  gap: 30px;
  max-width: 1100px;
  margin: 40px auto 0;
}

.prev-next-btn p {
  margin: 0;
}

.prev-next-btn button {
  display: block;
  width: 44px;
  height: 41px;
  background: url(img/renewal/prev.svg) no-repeat right;
  border: 0;
  padding: 0;
  cursor: pointer;
}
.prev-next-btn .next button {
  display: block;
  width: 44px;
  height: 41px;
  background: url(img/renewal/next.svg) no-repeat right;
}
.prev-next-btn button.is-disabled {
  opacity: 0.35;
  pointer-events: none;
}

.voice-card .name {
  margin: 12px 0 16px;
  font-size: 24px;
  text-align: center;
}

.voice-card .question,
.voice-card .answer {
  margin: 8px 0 0;
}
.voice-card h4 {
  margin-left: 0 !important;
}
.voice-card p {
  font-size: 18px;
  line-height: 2;
  margin-bottom: 20px !important;
}

.voice-card .btn {
  margin-top: 12px;
}

.faq-list {
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid #333333;
  max-width: 1100px;
  margin-inline: auto;
}

.faq-item {
  padding: 40px 50px;
  border-bottom: 1px solid #333333;
}

.faq-item dl {
  margin: 0;
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 10px;
}

.faq-item dt {
  font-weight: bold;
}
.faq-item dd {
  width: calc(100% - 140px);
  margin-left: auto;
}
.faq-item .question {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 30px;
}
.faq-item .answer {
  font-size: 18px;
  line-height: 2;
  margin-top: 10px;
}

.faq-item .answer dt {
  background: #0d9ee0;
}

.parking .badge-coin-main {
  background: #fddc00;
  color: #1f2630;
}

.comparison .tbl-coin,
.banner .badge-coin {
  color: #1f2630;
}

.comparison .tbl-trunkroom,
.dual-comparison .tbl-trunkroom,
.banner .badge-trunkroom {
  color: #fff;
}

.comparison .tbl-other {
  color: #0099da;
}

.cards-compare h5.merit {
  background: #0d9ee0;
  color: #fff;
  margin-left: 0;
}

.cards-compare h5.demerit {
  background: #2f343c;
  color: #fff;
  margin-left: 0;
}

.cards-compare p.merit,
.cards-compare p.demerit {
  margin-top: 6px;
}

.grid article[class^="merit"] {
  position: relative;
  /* padding-top: 30px; */
}

.grid article[class^="merit"]::before {
  content: "";
  position: absolute;
  top: -70px;
  left: -30px;
  width: 100px;
  aspect-ratio: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 100%;
  background: #0099da;
  z-index: -1;
}

.grid .merit01::after,
.grid .merit02::after,
.grid .merit03::after,
.grid .merit04::after,
.grid .merit05::after,
.grid .merit06::after {
  position: absolute;
  top: -75px;
  left: -30px;
  color: #f7cf02;
  font-size: 40px;
  width: 100px;
  aspect-ratio: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: bold;
}
.grid {
  counter-reset: merit;
}

.grid [class*="merit"]::after {
  counter-increment: merit;
  content: counter(merit, decimal-leading-zero);
}


.flow-parking,
.flow-trunk,
.faq,
.faq-trunk,
.voice {
  position: relative;
}
.voice h2,
.faq h2 {
  text-align: center;
  font-size: 50px;
  margin-bottom: 60px;
}
.flow-parking .lead {
  font-size: 20px;
  margin-top: 30px;
  margin-bottom: 40px;
}
.flow-parking {
  margin-bottom: 80px;
}

.prev,
.next {
  display: inline-block;
}
.align-center{
  text-align:center;
  display: block;
}

@media (max-width: 960px) {
  .fv-visual {
    --fv-overhang-x: 30px;
  }
  .fv-overlay .fv-overlay-txt {
    top: 5%;
    transform: translateX(-30px);
  }
  .page .inner {
    padding-inline: 20px;
  }
  #top-parking .inner.flow {
    padding-right: 0;
  }
  #top-parking .inner.flow > *:not(ol) {
    padding-right: 20px;
  }
  .intro .cols {
    flex-direction: column;
  }
  #top-intro .txt-body {
    margin-inline: auto;
    max-width: 100%;
  }

  .header-inner {
    min-height: 72px;
    gap: 14px;
  }

  .header-nav {
    display: none;
  }

  .header-cta {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
    margin-left: auto;
  }

  #top-intro {
    /* margin-bottom:0; */
  }
  .fv-inner,
  .cards-comparison,
  .before-after,
  .grid,
  .banner-split {
    /* grid-template-columns: 1fr; */
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }



  .fv-visual .swiper-txt {
    line-height: 1.4;
  }


  body.top .intro-ttl span {
    min-height: 40px;
    padding: 0 14px;
  }

  
  .cols,
  .cards-compare,
  .voice-card-list {
    grid-template-columns: 1fr;
    display: grid;
  }

  .cards-compare article,
  .voice-card {
    width: 100%;
    flex-basis: auto;
    max-width: 710px;
    margin-inline: auto;
  }

  .step-card-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .step-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
  }
  .flow-trunk .step-list {
    gap: 80px 20px;
  }
  .step-list li {
    margin: auto;
    max-width: 150px;
    width: 100%;
  }

  .lead {
    font-size: 24px;
  }

  .cta {
    width: 100%;
    padding: 0 18px;
    text-align: center;
  }
  .cards-compare {
    flex-direction: column;
  }
}

@media screen and (max-width: 699px) {
  .fv-inner,
  .cards-comparison,
  .before-after,
  .grid{
    grid-template-columns: 1fr;
  }
  .grid article[class^="merit"] {
    margin-inline: auto;
    width: 100%;
    max-width: 540px;
  }
  .grid article[class^="merit"] .box{
    max-width: 540px;
  }
  .faq-item dl,
  .faq-item dd {
    display: block;
    width: 100%;
    text-align: left;
  }
  .faq-item dt {
    margin-left: 0 !important;
  }
}

@media screen and (max-width: 767px) {
  .nav-toggle {
    width: 60px;
    height: 60px;
    background-size: contain;
  }
  #top-banner {
    grid-template-columns: 1fr;
  }
  #top-banner a {
    aspect-ratio: 1;
    min-height: 0;
  }
  .step-card-list {
    width: calc(100vw - 24px);
    max-width: calc(100vw - 24px);
    gap: 16px;
    scroll-snap-type: x mandatory;
    scroll-padding-left: 0;
    -webkit-overflow-scrolling: touch;
  }
  .step-card-list .step-card {
    min-width: calc(100vw - 40px);
    width: calc(100vw - 40px);
    max-width: calc(100vw - 40px);
    padding-inline: clamp(16px, 4vw, 24px);
    scroll-snap-align: start;
    scroll-snap-stop: always;
  }
  body.top .intro-ttl {
    max-width: 500px;
  }
  body.top .intro-ttl span {
    padding: 10px;
    font-size: clamp(1.313rem, 5.6vw, 2.625rem);
  }
  body.top .intro-ttl .intro_l {
    left: 0;
    transform: translate(-50%, 0);
    width: 40%;
    z-index: 1;
  }
  body.top .intro-ttl .intro_r {
    top: -25%;
    right: 0;
    transform: translate(50%, 0);
    width: 40%;
    z-index: 1;
  }
  .drawer-grid,
  .drawer-links {
    display: block;
    max-width: 100%;
  }
  .drawer-card ul {
    padding-left: 1.2rem;
  }
  .drawer-card--contact ul {
    list-style: none;
  }
  .drawer-links {
    padding-block: 0px;
    padding-bottom: 20px;
    margin-top: 30px;
    order: 3;
    width: 100%;
  }
  .drawer-links > * {
    max-width: 100%;
  }
  .drawer-card--parking .park-ttl,
  .drawer-card--trunk .trunk-ttl {
    flex-direction: column;
  }

  .drawer-card {
    margin-bottom: 30px;
  }
  .table-wrap th,
  .table-wrap td {
    white-space: nowrap;
  }
  #top-table2 {
    table-layout: auto;
  }
  #top-table2 th:first-of-type,
  #top-table2 td:first-of-type {
    width: 100%;
  }
  .intro h2 {
    font-size: clamp(1.688rem, 7.2vw, 3.375rem);
  }
  h2.ttl {
    font-size: clamp(1.875rem, 8vw, 3.75rem);
  }
  #top-compare-detail h2 .label {
    width: auto;
    font-size: clamp(0.625rem, 2.67vw, 1.25rem);
  }
  .flow-trunk .step-list {
    gap: 80px clamp(1.063rem, 4.53vw, 2.125rem);
  }
  .flow-trunk .step-list li {
    max-width: 100%;
    aspect-ratio: 1/2;
    height: auto;
  }
  /*20px~*/
  h2.ttl span.labels {
    max-width: clamp(9.375rem, 40vw, 18.75rem);
    margin: auto !important;
    justify-content: center;
  }

  h2.ttl span.label,
  #top-banner .label {
    font-size: clamp(0.625rem, 2.67vw, 1.25rem);
  }
  .btn a {
    font-size: clamp(0.875rem, 3.73vw, 1.75rem);
  }
  /*30px~*/
  .drawer-links .menu-tel p,
  .drawer-card--parking a,
  .drawer-card--trunk a {
    font-size: clamp(0.938rem, 4vw, 1.875rem);
  }
  /*32px~*/
  .cta-box .cta,
  .step-card-list .step-card p,
  .cards-compare .card-point p,
  .voice-card p,
  .faq-item .answer dd,
  .merit .grid article,
  .fv-overlay .fv-overlay-txt {
    font-size: clamp(1rem, 4.27vw, 2rem);
  }
  .fv-overlay .fv-overlay-txt {
  }
  /*34px*/
  #top-intro .txt-body,
  .cards-compare .card-point p.txt-body,
  main.main .label,
  .problems li,
  .flow-parking .lead,
  .faq-item .question dd {
    font-size: clamp(1.063rem, 4.53vw, 2.125rem);
  }
  .cards-compare article h5 {
    min-width: clamp(7.813rem, 33.33vw, 15.625rem) !important;
  }
  /*36px~*/
  p.point-lead,
  .before-after-txt,
  .step-item .ja,
  .drawer-card--contact ul a,
  .step-txt,
  .drawer-card--parking .park-ttl,
  .drawer-card--trunk .trunk-ttl {
    font-size: clamp(1.125rem, 4.8vw, 2.25rem);
  }
  /*36px~*/
  .drawer-links .menu-contact a {
    font-size: clamp(1.188rem, 5.07vw, 2.375rem);
  }
  /*45px~*/
  .step-txt {
    font-size: clamp(1.406rem, 6vw, 2.813rem);
  }
  .step-txt {
    margin-bottom: clamp(0.938rem, 4vw, 1.875rem);
  }
  .drawer-card--parking .park-ttl img,
  .drawer-card--trunk .trunk-ttl img {
    height: clamp(3.75rem, 16vw, 7.5rem);
    margin-bottom: 1rem;
  }
  /*40px~*/
  .grid h3,
  .flow .red,
  .cards-compare article h4,
  #top-banner a,
  body.lower section.intro .about-ttl,
  body.trunkroom .step-box h3,
  body.lower section.achievement h3,
  body.lower section.about h3,
  body.parking section.reason h2,
  body.lower section .round-ttl,
  body.lower .intro-ttl span{
    font-size: clamp(1.25rem, 5.33vw, 2.5rem)!important;
  }
  /*42px~*/
  .step-card-list .step-card h4,
  .footer-logo {
    font-size: clamp(1.313rem, 5.6vw, 2.625rem);
  }
  .drawer-links .menu-contact a {
    /* background-size: 40px; */
    padding-left: clamp(4.063rem, 17.33vw, 8.125rem);
    background-size: auto clamp(2.375rem, 10.13vw, 4.75rem);
    height: clamp(2.375rem, 10.13vw, 4.75rem);
    white-space: nowrap;
  }
  .drawer-links .menu-tel a {
    background-size: auto clamp(2.375rem, 10.13vw, 4.75rem);
    height: clamp(2.375rem, 10.13vw, 4.75rem);
    white-space: nowrap;
    width: 100%;
  }
  .drawer-links .menu-tel a,
  .drawer-links .menu-tel p,
  .drawer-links .menu-contact a {
    margin-left: 1rem;
  }
  /*50px~*/
  .voice h2,
  .faq h2,
  .flow-parking h2 {
    font-size: clamp(1.563rem, 6.67vw, 3.125rem);
    margin-bottom: clamp(1.875rem, 8vw, 3.75rem);
  }
  .cards-compare article,
  .voice-card {
    padding: clamp(1.563rem, 6.67vw, 3.125rem);
  }
  .cards-compare .logo img {
    height: clamp(5.625rem, 24vw, 11.25rem);
  }
  .cta-box .cta {
    height: clamp(4.5rem, 19.2vw, 9rem);
    box-shadow: clamp(0.313rem, 1.33vw, 0.625rem)      clamp(0.313rem, 1.33vw, 0.625rem) 0 #333333;
  }
  .cta-box .cta:after {
    background-size: clamp(1.5rem, 6.4vw, 3rem);
    right: 0;
  }
  .cta-box .free-dial {
    background-size: contain;
  }
  .faq-item {
    padding: 30px 10px;
  }
  .dual-comparison .compare-lead {
    letter-spacing: 0;
    line-height: 1.7;
  }
  #top-parking:before,
  #top-trunk:before {
    content: none;
  }
  .merit {
    border-radius: 0;
  }
  .problems {
    padding: clamp(2.5rem, 10.67vw, 5rem) clamp(0.75rem, 3.2vw, 1.5rem);
    padding-bottom: 100px;
  }
  .dual-comparison h3 {
    font-size: clamp(1.75rem, -0.125rem + 8vw, 3.625rem);
  }
  .problems h3,
  .merit-parking h2,
  .merit-trunk h2 {
    font-size: clamp(1.563rem, 6.67vw, 3.125rem);
  }
  .dual-comparison > .inner > p span {
    padding: 10px 30px;
    margin-block: 6px;
  }
  .fv-overlay .fv-overlay-icon {
    position: absolute;
    right: -20%;
    bottom: 0%;
    width: 33vw;
  }
  .fv-visual {
    --fv-overhang-x: -6.5%;
    --fv-side-offset-y: 22.5%;
  }
  .fv-overlay,
  .swiper-slide-active .swiper-img {
    width: 66vw !important;
  }
  .problems:after {
    padding: 25%;
    transform: translate(-10%, 80%);
  }
  .cta-box h3 {
    font-size: clamp(1.5rem, 0.125rem + 5.87vw, 2.875rem);
    margin-top: 40%;
  }
}
@media screen and (max-width: 425px) {
  #header .inner{
    padding-left:0;
  }
  #main section h2 .label,
  #top-banner .label,
  #main .cards-compare h5{
    min-width: clamp(75px, calc(150 * 100vw / 750), 150px);
    height: clamp(17px, calc(34 * 100vw / 750), 34px);
    padding: 0 20px;
    white-space: nowrap;
    display: table!important;
    justify-content: center;
    align-items: center;
    width:auto;
  }
  body.lower #main section h2.ttl .labels .label{
    height:20px;
    display:inline-flex!important;
    align-items:center;
  }
  body.lower #main section.about h2.ttl .label{
    height:40px;
    display:inline-flex!important;
    align-items:center;
  }
  .voice-card h4.label{
    min-width: clamp(105px, calc(210 * 100vw / 750), 210px);
    height: clamp(30px, calc(60 * 100vw / 750), 60px);
    font-size: clamp(17px, calc(34 * 100vw / 750), 34px);
    padding: 0 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: auto;
  }
  #main .flow-parking h2 .label{
    height: clamp(35px, calc(70 * 100vw / 750), 70px);
  }
  #header .header-logo{
    max-width: calc(100% - 10px);
  }
  .fv-visual .swiper-slide{
    min-height:0;
  }
  .fv-overlay .fv-overlay-txt{
    top:0;
  }
}

body.lower{
  background: #e9f0f5;
}
body.lower .fv{
  padding-inline:20px;
}
body.lower .fv .slide {
  position:relative;
  line-height: 0;
  text-align: center;
  max-width: 1340px;
  margin-inline: auto;
}
body.lower .fv .slide .icon{
  position:absolute;
  right: 2.985%;
  bottom: -5.714vw;
  max-width: 25%;
}
body.lower .intro-ttl {
  display:flex;
  flex-direction:column;
  justify-content: center;
  align-items: center;
  max-width:550px;
  margin-inline:auto;
  margin-bottom: 20px;
}
body.lower .intro-ttl span{
 align-items: center;
 justify-content: center;
 min-height: 48px;
 padding: 20px 50px;
 line-height: 1;
 border-radius: 30px 30px 0 30px;
 background: #1d8fca;
 color: #fff;
 font-weight: 700;
 font-size: 36px;
 position: relative;
 margin-bottom: 20px;
}
body.lower .intro-ttl span:first-child{
  margin-right:auto;
}
body.lower .intro-ttl span:last-child{
  margin-left:auto;
}
body.lower .intro-ttl span:after{
  content: "";
  background: #fddd00;
  aspect-ratio: 1;
  border-radius: 40px 40px 0 40px;
  height: 100%;
  bottom: -8px;
  right: -8px;
  position: absolute;
  z-index: -1;
}
body.lower h2.ttl .ja{
  font-size:66px;
  color: #222;
  line-height: 1.5;
}
body.parking h2.ttl .ja:before {
  background-image: url(img/renewal/parking/ttl_icon.svg);
  aspect-ratio: 10 / 11;
  left: -130px;
  top:0;
  bottom:0;
  width: 200px;
  background-size: contain;
}
body.trunkroom h2.ttl .ja:before {
  background-image: url(img/renewal/trunk/ttl_icon.svg);
  aspect-ratio: 10 / 11;
  left: -130px;
  top:0;
  bottom:0;
  width: 200px;
  background-size: contain;
}
body.lower .intro{
  margin-bottom:80px;
}
body.trunkroom section.intro{
  margin-bottom:100px;
}
body.lower .intro .img{
  text-align:center;
  margin-bottom:50px;
}
body.lower .intro .about-box{
  max-width:1000px;
  margin-inline:auto;
  background:#fff;
  box-shadow:20px 20px 0 #f47402;
  border-radius:20px;
  padding:80px;
  margin-top: 80px;
  position: relative;
}
body.lower .intro .about-box:before{
  content:"";
  background:url(img/renewal/trunk/about_icon.png)no-repeat;
  background-size:100%;
  width:18.6%;
  height:100%;
  position:absolute;
  top:-23px;
  left:5%;
  
}
body.lower .intro .about-box .cols{
  gap:60px;
  align-items:center;
}
body.lower .intro .about-box .cols > *{
  flex-basis:100%;
  margin:auto;
}
body.lower .intro .about-ttl{
  margin-top:0;
  text-align:center;
  font-size:40px;
}
body.lower .intro .about-ttl span{
  background:#222;
  color:#fff;
  display:table;
  margin-inline:auto;
  padding: 20px 50px;
  line-height: 1;
  border-radius:40px;
}

body.lower.parking  section.reason{
  background:#fdd000;
  border-radius:20px;
  position:relative;
  max-width:calc(100vw - 40px);
  margin:auto;
  margin-top: 180px;
  margin-bottom: 100px;
  padding-inline: 20px;
}
body.lower .reason .img{
  position:relative;
  top: -100px;
  margin-bottom: -60px!important;
  max-width: 59.7%;
  margin-inline: auto;
}
body.lower .reason .logo{
  max-width:46.2%;
  margin-inline: auto;
}
body.lower .reason .img,
body.lower .reason .logo{
  text-align:center;
  margin-bottom: 20px;
  line-height: 1;
}
body.parking section.reason h2{
  text-align:center;
  background:#222;
  color:#fff;
  border-radius:40px 40px 0 40px;
  display:table;
  padding: 20px 80px;
  line-height:1;
  margin-inline:auto;
  margin-bottom: 60px;
  /* max-width: 37.3%; */
}
body.lower .reason ul{
  padding:0 20px;
  list-style:none;
  display:flex;
  justify-content: center;
  gap:50px;
  flex-wrap: wrap;
}
body.lower .reason ul li{
  background:#fff;
  padding: 40px;
  border-radius: 0 30px 30px 30px;
  margin-bottom:40px;
  flex-basis: auto;
  width: 320px;
}
body.lower .reason ul li h3{
  margin-top:0;
  text-align:center;
  font-size:24px;
  margin-bottom: 10px;
}
body.lower .reason ul li p{
  line-height:2;
  font-size:18px
}
body.lower section .round-ttl{
  background:#333;
  color:#fff;
  font-size:40px;
  padding: 20px 50px;
  text-align:center;
  display:table;
  margin-inline:auto;
  border-radius:40px;
  line-height: 1;
}
body.lower .merit h4{
  font-size:24px;
  padding: 20px 50px;
  text-align:center;
  display:table;
  margin-inline:auto;
  border-radius:40px;
  line-height: 1;
}
body.lower .merit p{
  font-size:18px;
  font-weight:normal;
  line-height:2;
}
body.lower .merit ul {
  list-style:none;
  --merit-card-width: 590px;
  padding: 60px max(20px, calc((100vw - var(--merit-card-width)) / 2));
  display:flex;
  gap:40px;
  margin-top:80px;
  overflow-y: visible;
  overflow-x:scroll;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scroll-padding-inline: max(20px, calc((100vw - var(--merit-card-width)) / 2));
}
body.lower .merit li {
  background:#fff;
  padding: 20px 40px;
  border-radius:0 20px 20px 20px;
  min-width:var(--merit-card-width);
  flex: 0 0 var(--merit-card-width);
  position:relative;
  margin-bottom: auto;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

@media screen and (max-width: 600px) {
  body.lower .merit ul {
    --merit-card-width: calc(100vw - 60px);
    padding-left: 20px;
    padding-bottom: 0;
  }
  body.lower .merit li h3{
    white-space: normal!important;
    line-height: 1.3!important;
    padding-block: 8px!important;
  }
}
body.lower .merit li:before {
  content:"";
  position:absolute;
  background:#fdd000;
  width:100%;
  height:100%;
  z-index:-1;
  top:-50px;
  left:-20px;
  border-radius:20px;
}
body.lower .merit li:after {
  content:"";
  position:absolute;
  top:-50px;
  left:0;
  color:#fff;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 30px;
  font-weight:bold;
}
body.lower .merit {
  counter-reset: merit;
  margin-bottom: 100px;
}

body.lower .merit li {
  counter-increment: merit;
}
body.lower .merit li::after {
  content: "MERIT." attr(data-merit);
}
body.lower .merit li h3{
  background:#333;
  color:#fff;
  font-size:24px;
  padding: 13px 40px;
  text-align:center;
  margin-top: 0;
  margin-inline:auto;
  border-radius:40px;
  line-height: 1;
  margin-top:20px;
  display: table;
  white-space: nowrap;
  max-width: 100%;
  box-sizing: border-box;
}
body.lower .merit li .bold{
  font-weight:bold
}
body.lower .merit li p{
  line-height:2;
}

body.lower .about {
  margin-bottom:100px;
}
body.lower .about .img{
  text-align:center;
}
body.lower .about h3{
  font-size:34px;
  text-align:center;
}
body.lower .red{
  color:#db2939;
}
body.lower .red.round-ttl{
  background-color:#db2939;
  color:#fff;
  display:table;
  margin-inline:auto;
  padding:20px 60px;
  line-height:1;
  border-radius:40px;
}
body.lower .about p,
body.lower .achievement p{
  max-width:750px;
  margin-inline:auto;
  padding-inline:20px;
  line-height:2;
}
body.lower .about p{
  margin-bottom:70px;
}
body.lower .loop{
  position: relative;
  overflow:hidden;
  margin-bottom:100px;
}
body.lower .loop-track{
  display:flex;
  flex-wrap:nowrap;
  width:max-content;
  animation: loop-slide 120s linear infinite;
}
body.lower .loop-track img{
  flex: 0 0 auto;
  /* width: min(70vw, 840px); */
  max-width: none;
}
@keyframes loop-slide {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

body.lower .achievement{
  margin-bottom:100px;
}
body.lower .achievement .img{
  text-align:center;
  max-width:50%;
  margin-inline:auto;
}
body.lower .achievement h3{
  text-align:center;
  font-size:40px;
}
body.lower .cta-box{
  margin: 40px auto 100px;
}
body.lower .cta{
  margin:auto;
}
body.lower .voice .cta{
  margin-inline:auto;
}
body.lower .voice {
  margin-bottom:100px;
}
body.parking section.about h2 .label,
body.trunkroom section.flow h2 .label{
    background: #50c9fd;
    width: auto;
    display: inline-flex;
}
#parking-table tr > *{
  width:calc(100%/3);
}
#parking-table th{
  border-radius: 20px 20px 0 0;
}
#parking-table tr th:first-of-type{
  background:none;
}
#parking-table tr *:first-of-type{
  background:#333333;
  color:#fff;
  font-weight:bold;
  border-left: 0;
}
#parking-table tr *:nth-of-type(2){
  background:#0099da;
  color:#fff;
}
#parking-table tr *:nth-of-type(3){
  background:#fff;
  color:#000;
  border-right: 0;
}
#parking-table tr th:nth-of-type(3){
  color:#0099da;
}
#parking-table  tr:last-of-type *{
  border-bottom:none;
}
#parking-table tbody tr:last-of-type:after{
  content:none;
}
body.trunkroom section.reason h2.ttl {
  margin-bottom:30px;
}
body.trunkroom section.reason h2.ttl .ja,
body.trunkroom section.achievement h2.ttl .ja{
  min-height: 140px;
  /* padding-block: 40px; */
  margin-inline:auto;
  display:table;
}
body.trunkroom section.reason h2.ttl .ja:before,
body.lower .achievement h2.ttl .ja:before
{
  top: -60px;
}
body.trunkroom section.achievement h2.ttl{
  margin-bottom:20px;
}
body.trunkroom section.reason .lead{
  font-weight:normal;
  line-height:2;
  margin-bottom: 80px;
  font-size: 20px;
}

#trunk-table tr > *{
  width:calc(100%/4);
}
#trunk-table thead th{
  border-radius: 20px 20px 0 0;
}

#trunk-table thead tr th,
#trunk-table tbody tr th{
  background:#333333;
  color:#fff;
  font-weight:bold;
}
#trunk-table thead tr > th:nth-of-type(2),
#trunk-table tbody tr > td:nth-of-type(1){
  background:#f47402;
  color:#fff;
  font-weight: bold;
}
#trunk-table thead tr > th:nth-of-type(2){
  padding-block:30px;
}
#trunk-table tbody td.orange{
  color: #f47402!important;
  font-weight: bold!important;
}
#trunk-table tr th:nth-of-type(n + 3),
#trunk-table tr th.tbl-other,
#trunk-table tr td:nth-of-type(n + 2){
  background:#fff;
  color:#000;
}
#trunk-table thead tr th:last-of-type,
#trunk-table tr td:last-of-type{
  border-right: 0;
}
#trunk-table tr th.tbl-other{
  color:#0099da;
}
#trunk-table tr th.blue{
  color:#50c9fd;
}
#trunk-table tr th.blue,
#trunk-table tr th.tbl-other{
  top: 20px;
    position: relative;
    padding-top: 10px;
    padding-bottom: 30px;
}
#trunk-table  tr:last-of-type *{
  border-bottom:none;
}
#trunk-table tbody tr:last-of-type:after{
  content:none;
}
body.trunkroom .problem-box{
  max-width:720px;
  margin-inline:auto;
  background:#fff;
  border-radius:30px;
  box-shadow:20px 20px;
  padding: 60px 100px 60px;
  position:relative;
  bottom: -70px;
}
body.trunkroom .problem-box:after{
  content:"";
  background:#fff;
  height: 40px;
  aspect-ratio: 95 / 40;
  position:absolute;
  bottom: -39px;
  left:0;
  right:0;
  margin:auto;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  z-index:1;
}
body.trunkroom .problem-box li{
  list-style:none;
  padding-left:50px;
  background:url(img/renewal/trunk/problem_icon.svg)no-repeat left top;
  margin-bottom:40px;
}
body.trunkroom .problem-box li h3{
  padding-top:2px;
  margin-top:0;
  margin-bottom: 10px;
  font-size: 20px;
}
body.trunkroom .problem-box li p{
  margin-top:0;
  font-size: 18px;
}
body.trunkroom section.merit{
  background:#f47402;
  padding-top:150px
}
body.trunkroom section.merit h2 .ja{
  color:#fff;
  background:url(img/renewal/trunk/merit_bg.svg)no-repeat center;
  background-size: contain;
  width: 100%;
  display: block;
}
body.trunkroom .grid [class*="merit"]::after{
  color:#fff;
}
body.trunkroom .step-box{
  background:#333;
  color:#fff;
  max-width:calc(100% - 40px);
  margin-inline:auto;
  padding:60px 40px;
  border-radius:30px;
  position:relative;
  margin-bottom: 100px;
}
body.trunkroom .step-box:before{
  content:"";
  background: #e9f0f5;
  height: 40px;
  aspect-ratio: 95 / 40;
  position:absolute;
  top: -1px;
  left:0;
  right:0;
  margin:auto;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  z-index:1;
}
body.trunkroom .step-box h3{
  font-size:42px;
  margin-top:10px;
}
body.trunkroom .step-box p{
  font-size:18px;
  line-height:2;
  margin-bottom:40px;
  max-width:730px;
  margin-inline:auto;
  text-align:left;
}
body.trunkroom .step-box ol{
  max-width:1100px;
  margin-inline:auto;
}
body.trunkroom .step-box ol {
  color:#000;
  margin-bottom: 40px;
}
body.trunkroom .step-box ol li{
  margin-top:0;
  margin-bottom:auto;
}
body.trunkroom .lead{
  line-height:2;
  font-size:20px;
}
@media screen and (max-width: 767px) {
  /* fv */
  body.lower .fv .slide .icon{
    max-width:50%;
    bottom: -24%;
    right: -2.5%;
  }
  body.lower h2.ttl{
    margin-bottom:40px;
  }
  body.lower h2.ttl .ja{
    font-size:100%;
  }
  body.lower h2.ttl .ja:before{
    background-size:50%;
    height: 110px;
  }

  /* intro */
  body.lower .intro-ttl{
    max-width: 85vw;
  }
  body.lower .intro-ttl span{
    padding: 10px 25px;
    border-radius: 20px 20px 0 20px;
    line-height: 1.4;
  }
  body.trunkroom section.intro .img{
    max-width:80%;
    margin-inline:auto;
  }
  body.lower .intro .about-box{
    padding-inline:20px;
  }
  body.lower .intro .about-box:before{
    width: 30%;
  }
  body.lower .intro .about-ttl span{
    padding: 10px 30px;
  }

  /* reason */
  body.lower.parking section.reason{
    max-width:100%;
  }
  body.parking section.reason h2{
    padding: 10px 40px;
    margin-bottom: 30px;
  }
  body.lower .reason .img{
    max-width: 100%;
    top: -80px;
  }
  body.lower .reason .logo{
    max-width: 80%;
  }
  body.lower .reason ul{
    padding: 0;
    gap: 20px;
  }
  body.lower .reason ul li{
    padding: 20px;
    margin-bottom: 20px;
    max-width: 500px;
    width: 100%;
  }

  /* merit */
  body.lower .merit .prev-next-btn{
    margin-top:0;
  }
  body.lower .merit li{
    padding:20px;
  }
  body.parking section.merit h4{
    padding:0;
    line-height:1.5;
  }
  body.trunkroom section.merit h2.ttl{
    margin-bottom:80px;
  }
  body.trunkroom section.merit .grid{
    padding-inline:40px;
  }

  /* about */
  body.lower p{
    font-size:18px;
  }
  body.lower .about p, 
  body.lower .achievement p{
    padding-inline:0;
  }

  /* achievement */
  body.lower .before-after{
    margin-left:-20px
  }
  body.trunkroom section.reason h2.ttl .ja,
  body.trunkroom section.achievement h2.ttl .ja{
    min-height: 70px;
  }
  body.trunkroom section.reason h2.ttl .ja:before,
  body.lower .achievement h2.ttl .ja:before{
    top: -40px;
  }

  /* voice / faq */

  /* other main parts */
  body.lower .loop-track img{
    height: 300px;
  }

  /* trunkroom specific */
  body.trunkroom .step-box{
    padding-inline:20px;
    max-width: 100%;
    margin-bottom: 40px;
  }
  body.trunkroom .step-item .ja{
    font-size:16px;
  }
  body.trunkroom .step-box ol li{
    min-height:210px;
  }
  body.trunkroom .flow-trunk.flow li:after{
    padding:40px;
    background-size:contain;
  }
  body.trunkroom .problem-box{
    padding:20px;
  }
  body.trunkroom .problem-list{
    padding:0;
  }
}
