/* http://meyerweb.com/eric/tools/css/reset/
   v5.0.2 | 20191019
   License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
main, menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, main, menu, nav, section {
  display: block;
}

/* HTML5 hidden-attribute fix for newer browsers */
*[hidden] {
  display: none;
}

body {
  line-height: 1;
}

menu, ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

.motorcycle {
  font-family: "HondaGlobalFontJP-Regular", sans-serif;
  font-weight: normal;
  line-height: 170%;
}

@media only screen and (min-width: 899.5px) {
  .spshow {
    display: none !important;
  }
}
@media only screen and (max-width: 899.5px) {
  .pcshow {
    display: none !important;
  }
  img {
    width: 100%;
  }
}
:root {
  /* Color styles */
  --red: rgba(204, 0, 0, 1);
  /* Text-size styles */
  --main--pc: 16px;
  --main--sp: 14px;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-size: var(--main--pc);
  background-color: #fff;
  font-family: sans-serif;
  line-height: 1.6;
}
@media only screen and (max-width: 899.5px) {
  body {
    font-size: var(--main--sp);
  }
}

.motorcycle {
  width: 100%;
  overflow: hidden;
}
.motorcycle * {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

main {
  position: relative;
  max-width: 1920px;
  margin: 0 auto;
}
@media only screen and (max-width: 899.5px) {
  main {
    max-width: 100%;
  }
}

.c-label {
  display: inline-block;
  background: var(--red);
  color: #fff;
  padding: 22px 32px;
  font-weight: bold;
}
@media only screen and (max-width: 899.5px) {
  .c-label {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    padding: 12px 15px;
  }
}
.c-label + .c-label {
  margin-top: 8px;
}

.c-image-hero {
  overflow: hidden;
  width: 100%;
  padding: 0 40px;
}
@media only screen and (max-width: 899.5px) {
  .c-image-hero {
    padding: 0 13px;
  }
}
.c-image-hero img {
  vertical-align: bottom;
  width: 100%;
}
.c-image-house {
  max-width: 1920px;
  overflow: hidden;
}
@media only screen and (max-width: 899.5px) {
  .c-image-house {
    width: 100%;
  }
}
.c-image-house img {
  width: 100%;
  vertical-align: bottom;
}
.c-image-info-bg {
  width: 1920px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: -1;
}
.c-image-info-bg-top, .c-image-info-bg-bottom {
  position: absolute;
  width: 100%;
}
.c-image-info-bg-top {
  top: 0;
}
.c-image-info-bg-bottom {
  bottom: 0;
}
.c-image-info-bg img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
.c-image-shop-bg {
  width: 100%;
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  max-width: 1720px;
  max-height: 570px;
  z-index: -1;
}
.c-image-shop-bg img, .c-image-shop-bg source {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

.c-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 28px;
  height: 66px;
  padding: 16px 32px;
  color: #000;
  background: #fff;
  border: 2px solid #000;
  border-radius: 999px;
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
  line-height: 190%;
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
}
@media only screen and (max-width: 899.5px) {
  .c-btn {
    gap: 13px;
    height: 47px;
    font-size: 12px;
  }
}
.c-btn:hover {
  background: #000;
  color: #fff;
}
.c-btn:hover .c-btn__icon svg, .c-btn:hover path {
  fill: #fff;
}
.c-btn__icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 27px;
}
@media only screen and (max-width: 899.5px) {
  .c-btn__icon {
    width: 18px;
  }
}
.c-btn__icon svg, .c-btn__icon path {
  -webkit-transition: fill 0.4s ease-in-out;
  transition: fill 0.4s ease-in-out;
}

.p-concept {
  padding: 160px 40px 190px;
  position: relative;
  overflow: hidden;
}
@media only screen and (max-width: 899.5px) {
  .p-concept {
    padding: 200px 16px 96px;
  }
}
.p-concept__inner {
  max-width: 1600px;
  margin: 0 auto;
  position: relative;
}
.p-concept__title {
  display: inline-block;
  background: #000;
  padding: 10px 32px;
  color: #fff;
  font-size: clamp(1.313rem, 0.979rem + 1.42vw, 2.688rem);
  font-weight: 700;
  line-height: 170%;
}
@media only screen and (max-width: 899.5px) {
  .p-concept__title {
    padding: 5px 14px;
  }
}
.p-concept__title:nth-child(n+2) {
  margin: 10px 0 0;
}
.p-concept__text {
  padding: 67px 0 0 clamp(3rem, -5.382rem + 14.9vw, 12.5rem);
  font-size: 16px;
  line-height: 190%;
}
@media only screen and (max-width: 899.5px) {
  .p-concept__text {
    padding: 45px 0 0 32px;
    font-size: var(--main--sp);
  }
}
.p-concept__desc {
  padding: 24px 0 0 clamp(3rem, -5.382rem + 14.9vw, 12.5rem);
  font-size: 20px;
  font-weight: 700;
  line-height: 190%;
}
@media only screen and (max-width: 899.5px) {
  .p-concept__desc {
    padding: 24px 0 0 32px;
    font-size: 16px;
  }
}
.p-concept__desc span {
  color: #C00;
}
.p-concept__vertical-title {
  position: absolute;
  right: 0;
  top: 0;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  width: clamp(2.313rem, 1.281rem + 4.4vw, 6.563rem);
}
@media only screen and (max-width: 899.5px) {
  .p-concept__vertical-title {
    top: -147px;
  }
}

.c-house-article {
  margin: 160px auto 0;
}

.p-intro {
  margin-top: 160px;
}
@media only screen and (max-width: 899.5px) {
  .p-intro {
    margin-top: 100px;
  }
}

.c-loop-banner {
  width: 100%;
}
.c-loop-banner__track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  -webkit-animation: loop-scroll-pc 60s linear infinite;
          animation: loop-scroll-pc 60s linear infinite;
  will-change: transform;
}
@media only screen and (max-width: 899.5px) {
  .c-loop-banner__track {
    -webkit-animation: loop-scroll-sp 55s linear infinite;
            animation: loop-scroll-sp 55s linear infinite;
  }
}
.c-loop-banner__item {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 1520px;
  height: 92px;
  margin: 0 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media only screen and (max-width: 899.5px) {
  .c-loop-banner__item {
    width: 760px;
    height: 46px;
    margin: 0 40px;
  }
}
.c-loop-banner__item img {
  width: 100%;
  height: auto;
  display: block;
}
.c-loop-banner--reverse .c-loop-banner__track {
  animation-direction: reverse;
}

@-webkit-keyframes loop-scroll-pc {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-6880px);
            transform: translateX(-6880px);
  }
}

@keyframes loop-scroll-pc {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-6880px);
            transform: translateX(-6880px);
  }
}
@-webkit-keyframes loop-scroll-sp {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-3360px);
            transform: translateX(-3360px);
  }
}
@keyframes loop-scroll-sp {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-3360px);
            transform: translateX(-3360px);
  }
}
.p-info {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  margin: 100px auto;
}
@media only screen and (max-width: 899.5px) {
  .p-info {
    margin: 56px auto;
  }
}
.p-info__card {
  max-width: 688px;
  margin: 125px auto;
  padding: clamp(3rem, 2.331rem + 2.75vw, 5.625rem) clamp(0.75rem, -0.333rem + 4.44vw, 5rem);
  background: #fff;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 44px;
  position: relative;
  z-index: 2;
}
@media only screen and (max-width: 899.5px) {
  .p-info__card {
    width: calc(100% - 32px);
    margin: 165px auto 230px;
    gap: 32px;
  }
}
.p-info__card-title {
  color: #000;
  font-size: 57px;
  font-family: Archivo;
  font-weight: 700;
  line-height: normal;
}
@media only screen and (max-width: 899.5px) {
  .p-info__card-title {
    font-size: 35px;
  }
}
.p-info__card-title span {
  color: var(--red);
}
.p-info__card-text {
  font-size: 16px;
  line-height: 190%;
}
@media only screen and (max-width: 899.5px) {
  .p-info__card-text {
    font-size: var(--main--sp);
    text-align: left;
  }
}
.p-info__card-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 32px;
  font-size: 16px;
  line-height: 190%;
}
.p-info__card-list dt {
  text-align: center;
  font-family: Archivo;
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 16px;
}
@media only screen and (max-width: 899.5px) {
  .p-info__card-list dt {
    font-size: 26px;
    margin-bottom: 12px;
  }
}
.p-info__card-list dt span {
  font-size: 36px;
  color: var(--red);
}
@media only screen and (max-width: 899.5px) {
  .p-info__card-list dt span {
    font-size: 28px;
  }
}
.p-info__card-list dd {
  font-size: 16px;
}
@media only screen and (max-width: 899.5px) {
  .p-info__card-list dd {
    font-size: 14px;
  }
}
.p-info__card-btn {
  padding-top: 40px;
  margin: 0 auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media only screen and (min-width: 899.5px) {
  .p-info__card-btn {
    min-width: 380px;
  }
}
@media only screen and (max-width: 899.5px) {
  .p-info__card-btn {
    padding-top: 32px;
  }
}
.p-info__card-btn .c-btn {
  gap: 24px;
  font-size: 16px;
}
@media only screen and (max-width: 899.5px) {
  .p-info__card-btn .c-btn {
    gap: 6px;
    font-size: 12px;
    padding: 10px 14px;
  }
}
.p-info .caution {
  font-size: 12px;
  text-align: right;
  position: absolute;
  bottom: -50px;
  right: 16px;
}
@media only screen and (max-width: 899.5px) {
  .p-info .caution {
    font-size: 10px;
    bottom: -30px;
  }
}

.cub-footer {
  position: relative;
  color: #fff;
  margin: 200px 0 0;
}
@media only screen and (max-width: 899.5px) {
  .cub-footer {
    margin: 96px 0 0;
  }
}
.cub-footer:before {
  content: "";
  position: absolute;
  background-image: url(/CubHOUSE/images/shape-footer.svg);
  background-repeat: no-repeat;
  background-size: 160vw;
  background-position: top center;
  z-index: -1;
  top: 0;
  left: 50%;
  content: "";
  display: block;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 100vw;
  height: 100vw;
  min-width: 102%;
}
.cub-footer__shop {
  margin: 0 auto;
  padding: 66px 20px 0;
  max-width: 1720px;
  width: 100%;
  overflow-x: hidden;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(50%, transparent), color-stop(50%, #000));
  background-image: linear-gradient(180deg, transparent 50%, #000 50%);
}
@media only screen and (max-width: 899.5px) {
  .cub-footer__shop {
    max-width: 100%;
    padding: 20px 10px 0;
  }
}
.cub-footer__curve {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
}
.cub-footer__inner {
  border-radius: 15px;
  margin: 0 auto;
  width: 100%;
  padding: clamp(1.5rem, -2.14rem + 6.47vw, 5.625rem) clamp(1.5rem, -2.691rem + 7.45vw, 6.25rem);
  background-image: url(/CubHOUSE/images/top/img-shop01-pc.png);
  background-repeat: no-repeat;
  background-size: cover;
  display: grid;
  -ms-flex-line-pack: center;
      align-content: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
}
@media only screen and (max-width: 899.5px) {
  .cub-footer__inner {
    background-image: url(/CubHOUSE/images/top/img-shop01-sp.png);
    background-size: cover;
  }
}
.cub-footer__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  font-size: 40px;
}
@media only screen and (max-width: 899.5px) {
  .cub-footer__title {
    font-size: 30px;
  }
}
.cub-footer__bg-black {
  background-color: #000;
  padding-bottom: 252px;
}
@media only screen and (max-width: 899.5px) {
  .cub-footer__bg-black {
    padding: 0 0 180px;
  }
}
.cub-footer__bottom {
  margin: 0 auto;
  margin-top: 50px;
  padding: 70px 20px 0;
  max-width: 1720px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: clamp(3rem, 1.235rem + 3.14vw, 5rem);
}
@media only screen and (max-width: 899.5px) {
  .cub-footer__bottom {
    margin-top: 0;
    padding: 32px 12px 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media only screen and (min-width: 899.5px) {
  .cub-footer__map {
    width: 60%;
  }
}
@media only screen and (max-width: 899.5px) {
  .cub-footer__map {
    width: 100%;
  }
}
.cub-footer__map iframe {
  max-width: 100%;
  aspect-ratio: 960/459;
}
@media only screen and (max-width: 899.5px) {
  .cub-footer__map iframe {
    aspect-ratio: 366/250;
    height: 250px;
  }
}
.cub-footer__access {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media only screen and (max-width: 899.5px) {
  .cub-footer__access {
    margin-top: 0;
  }
}
.cub-footer__logo-s {
  width: 190px;
  margin-bottom: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media only screen and (max-width: 899.5px) {
  .cub-footer__logo-s {
    width: 156px;
    margin-bottom: 16px;
  }
}
.cub-footer__logo-s img, .cub-footer__logo-s source {
  width: 100%;
}
.cub-footer__info {
  font-size: 23px;
  margin-bottom: 40px;
}
@media only screen and (max-width: 899.5px) {
  .cub-footer__info {
    text-align: center;
    font-size: 16px;
    margin-bottom: 48px;
  }
}
.cub-footer__address, .cub-footer__sns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 48px;
}
@media only screen and (max-width: 899.5px) {
  .cub-footer__address, .cub-footer__sns {
    gap: 24px;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    width: 100%;
  }
}
.cub-footer__address {
  margin-bottom: 24px;
}
@media only screen and (max-width: 899.5px) {
  .cub-footer__address {
    margin-bottom: 32px;
  }
}
.cub-footer__address dt {
  font-size: 24px;
  font-family: Archivo;
  font-weight: 700;
  line-height: 1.9;
  min-width: 90px;
}
@media only screen and (max-width: 899.5px) {
  .cub-footer__address dt {
    font-size: 18px;
  }
}
.cub-footer__address dd {
  font-size: 23px;
  line-height: 1.9;
}
@media only screen and (max-width: 899.5px) {
  .cub-footer__address dd {
    margin-top: 0;
    font-size: 16px;
  }
}
.cub-footer__sns {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media only screen and (max-width: 899.5px) {
  .cub-footer__sns {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    width: 100%;
  }
}
.cub-footer__sns .c-tit {
  font-size: 24px;
  font-family: Archivo;
  font-weight: 700;
  min-width: 90px;
}
@media only screen and (max-width: 899.5px) {
  .cub-footer__sns .c-tit {
    font-size: 18px;
  }
}
.cub-footer__sns img {
  width: 48px;
  height: 48px;
  aspect-ratio: 1/1;
}
.cub-footer__names {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media only screen and (max-width: 899.5px) {
  .cub-footer__names {
    gap: 48px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 0 16px;
  }
}
.cub-footer__names .c-tit {
  font-size: 30px;
  font-weight: bold;
  line-height: normal;
}
@media only screen and (max-width: 899.5px) {
  .cub-footer__names .c-tit {
    font-size: 18px;
  }
}
.cub-footer__copyright {
  display: none;
  margin-top: 160px;
  text-align: center;
  font-size: 14px;
  line-height: 190%; /* 26.6px */
}
@media only screen and (max-width: 899.5px) {
  .cub-footer__copyright {
    margin-top: 180px;
    font-size: 10px;
  }
}

.c-countdown {
  margin: 40px 0;
}
.c-countdown__days {
  line-height: 1;
  font-family: Archivo;
  font-weight: 700;
  border-bottom: 1px solid #fff;
  padding-bottom: 18px;
  margin-bottom: 18px;
  max-width: 500px;
}
.c-countdown__days span {
  font-size: clamp(2.5rem, 0.294rem + 3.92vw, 5rem);
}
.c-countdown__days abbr {
  font-style: normal;
  font-size: clamp(1rem, 0.118rem + 1.57vw, 2rem);
}
.c-countdown__time {
  line-height: 1;
  font-size: clamp(2.5rem, 0.294rem + 3.92vw, 5rem);
  font-family: Archivo;
  font-weight: 700;
  letter-spacing: 4px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media only screen and (max-width: 899.5px) {
  .c-countdown__time {
    font-size: 40px;
  }
}

.c-top-back {
  position: absolute;
  bottom: 88px;
  right: clamp(1.875rem, 0.76rem + 4.58vw, 6.25rem);
  aspect-ratio: 1/1;
  width: clamp(3rem, 2.108rem + 3.66vw, 6.5rem);
  height: clamp(3rem, 2.108rem + 3.66vw, 6.5rem);
  background: var(--red);
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-family: Archivo;
  font-size: clamp(0.938rem, 0.699rem + 0.98vw, 1.875rem);
  font-weight: 700;
  color: #fff;
  cursor: pointer;
}
@media only screen and (max-width: 899.5px) {
  .c-top-back {
    bottom: 72px;
    right: 50%;
    -webkit-transform: translateX(50%);
            transform: translateX(50%);
  }
}
.c-top-back:before {
  position: absolute;
  content: "";
  display: block;
  background-repeat: no-repeat;
  background-size: contain;
}
@media only screen and (min-width: 899.5px) {
  .c-top-back:before {
    background-image: url(/CubHOUSE/images/icon-arrow-top-pc.svg);
    width: 14px;
    height: 50px;
    -webkit-transform: translateY(-45px);
            transform: translateY(-45px);
  }
}
@media only screen and (max-width: 899.5px) {
  .c-top-back:before {
    background-image: url(/CubHOUSE/images/icon-arrow-top-sp.svg);
    width: 10px;
    height: 23px;
    -webkit-transform: translateY(-25px);
            transform: translateY(-25px);
  }
}

.l-kv {
  width: 100%;
}
.l-kv__logo {
  width: 646px;
  max-width: 50vw;
  margin: 148px auto 187px;
}
@media only screen and (max-width: 899.5px) {
  .l-kv__logo {
    max-width: 308px;
    margin: 175px auto 56px;
  }
}
.l-kv__logo img {
  width: 100%;
  vertical-align: bottom;
}

.c-cubhouse__menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: absolute;
  top: clamp(12.5rem, 6.25rem + 11.11vw, 16.25rem);
  width: 100%;
  padding: 0 40px;
}
@media only screen and (max-width: 899.5px) {
  .c-cubhouse__menu {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    position: relative;
    top: 0;
    padding: 0;
  }
}
.c-cubhouse__menu__scroll {
  width: 34px;
  margin: 0 0 30px 0;
}
@media only screen and (max-width: 899.5px) {
  .c-cubhouse__menu__scroll {
    width: 28px;
    margin: 120px 0 36px 0;
  }
}
.c-cubhouse__menu__scroll img {
  width: 100%;
}
.c-cubhouse__menu__download {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 28px;
  height: 66px;
  padding: 16px 32px;
  background: #fff;
  border: 2px solid #000;
  border-radius: 999px;
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
  line-height: 190%;
}
.c-cubhouse__menu__download__icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 27px;
}