@charset "UTF-8";
body {
  font-family: "IBM Plex Sans JP", system-ui, -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", Meiryo, "メイリオ", sans-serif;
}

.l-header .l-gnav__link {
  font-weight: 600;
}

.l-header__menu, .l-cta-side__text, .l-cta-bottom__copy-sub, .l-footer__phone-label, .l-footer__phone-number, .c-options__option-label, .c-plans__plan-label, .c-page-title__en, .c-section__title-en, .c-section__title, .c-button {
  font-weight: 700;
}

.c-pagetop {
  color: transparent;
  font: 0/0 a;
}

.l-header .l-gnav__list, .l-cta-side__button, .l-cta-bottom__body, .l-cta-bottom__phone, .l-footer__sub, .l-footer__nav, .c-page-title__wrap, .c-button {
  display: flex;
  flex-wrap: wrap;
}

.l-cta-bottom__contact:before, .l-footer__nav-link:after, .c-plans__plan:before, .c-page-title:before, .c-underline:after, .c-button:before, .c-highlight:after {
  content: "";
  position: absolute;
  display: block;
}

/* utiliity
---------------------------------------- */
.u-pc-hide {
  display: none;
}
@media screen and (max-width: 768px) {
  .u-pc-hide {
    display: block;
  }
}

.u-sp-hide {
  display: block;
}
@media screen and (max-width: 768px) {
  .u-sp-hide {
    display: none;
  }
}

.u-inline-block {
  display: inline-block;
}

.u-underline {
  text-decoration: underline;
  transition: 0.3s;
}
.u-underline:hover {
  text-decoration: none;
}

.u-letter-spacing {
  letter-spacing: -0.09em;
}

/* layout
---------------------------------------- */
.l-inner {
  position: relative;
  width: clamp(320px, 100%, 1180px);
  margin: 0 auto;
  padding: 0 2.7777777778cqi;
}
@media screen and (max-width: 768px) {
  .l-inner {
    padding: 0 5.3333333333vw;
  }
}
.l-inner__header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding: 0 2.7777777778cqi;
}
@media screen and (max-width: 768px) {
  .l-inner__header {
    padding: 0 5.3333333333vw;
  }
}
.l-inner__footer {
  width: 100%;
}

/* component
---------------------------------------- */
.c-highlight {
  position: relative;
  display: inline-block;
  z-index: 3;
}
.c-highlight:after {
  left: 50%;
  bottom: 0;
  transform: translate(-50%, 0);
  width: 104%;
  height: 60%;
  padding: 0 0.25em;
  background: #f3ed4b;
  border-radius: 5px;
  z-index: -1;
}

.c-button {
  position: relative;
  align-content: center;
  justify-content: center;
  color: #fff;
  line-height: 1.2;
  transition: 0.3s;
}
.c-button:before {
  top: 50%;
  transform: translate(0, -50%);
  background: url("../images/cmn/icn_arrow_wh.svg") center center/contain no-repeat;
  transition: 0.3s;
}
.c-button:hover {
  background-color: #fff;
}

.c-underline {
  position: relative;
}
.c-underline:after {
  left: 0;
  bottom: -2px;
  transform: scale(0, 1);
  transform-origin: left top;
  width: 100%;
  height: 1px;
  background: #fff;
  transition: 0.3s;
}
.c-underline:hover:after {
  transform: scale(1, 1);
}

.c-section {
  padding: 100px 0;
}
@media screen and (max-width: 768px) {
  .c-section {
    padding: 13.3333333333vw 0;
  }
}
.c-section__title {
  font-size: clamp(10px, 12vw, 60px);
  text-align: center;
}
@media screen and (max-width: 768px) {
  .c-section__title {
    font-size: 8vw;
  }
}
.c-section__title-en {
  display: block;
  width: min(11.1111111111vw, 160px);
  height: 40px;
}
@media screen and (max-width: 768px) {
  .c-section__title-en {
    height: 5.3333333333vw;
  }
}
.c-section__title-en {
  margin: 0 auto;
  color: #2d7dd2;
  font-size: clamp(10px, 5.2vw, 26px);
  text-align: center;
  border: #2d7dd2 2px solid;
  border-radius: 20px;
}
@media screen and (max-width: 768px) {
  .c-section__title-en {
    width: 21.3333333333vw;
    font-size: 3.4666666667vw;
    border-width: 0.2666666667vw;
  }
}

@media screen and (max-width: 768px) {
  .c-cta-button {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    width: 27.0666666667vw;
    height: 10.6666666667vw;
    padding-left: 8.2666666667vw;
    color: #fff;
    font-size: 3.2vw;
    line-height: 1.16666667;
    font-weight: 700;
    border-radius: 5.3333333333vw;
  }
  .c-cta-button.button-phone {
    padding-left: 6.6666666667vw;
    background: url("../images/cmn/icn_phone_wh.svg") 1.3333333333vw center/4.2666666667vw auto no-repeat #df8331;
  }
  .c-cta-button.button-order {
    background: url("../images/cmn/icn_order.svg") 2.9333333333vw center/4vw auto no-repeat #e1bc29;
  }
  .c-cta-button.button-plan {
    background: url("../images/cmn/icn_plans.svg") 3.2vw center/4vw auto no-repeat #4ea5d9;
  }
}
.c-page-title {
  position: relative;
  height: 450px;
}
@media screen and (max-width: 768px) {
  .c-page-title {
    height: 60vw;
  }
}
.c-page-title {
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}
.c-page-title:before {
  width: 100%;
  height: 100%;
  background: rgba(45, 125, 210, 0.5);
  mix-blend-mode: multiply;
}
.c-page-title__wrap {
  position: absolute;
  top: 80px;
  align-content: center;
  justify-content: center;
  width: 100%;
  height: calc(100% - 80px);
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .c-page-title__wrap {
    top: 16vw;
    height: calc(100% - 16vw);
  }
}
.c-page-title__en {
  display: inline-block;
  width: 6.15384615em;
  height: 1.53846154em;
  color: #fff;
  font-size: clamp(10px, 5.2vw, 26px);
  line-height: 1.53846154;
  text-align: center;
  text-transform: uppercase;
  border: #fff 1px solid;
  border-radius: 20px;
}
.c-page-title__ja {
  width: 100%;
  margin-top: 0.25em;
  color: #fff;
  font-size: clamp(20px, 9.6vw, 60px);
  text-align: center;
}

.c-plans {
  display: grid;
  gap: 32px;
  margin-top: 100px;
}
@media screen and (max-width: 768px) {
  .c-plans {
    margin-top: 13.3333333333vw;
  }
}
@media screen and (max-width: 768px) {
  .c-plans {
    grid-template-columns: 1fr;
    gap: 9.3333333333vw;
  }
}
.c-plans__plan {
  position: relative;
  background: #edf6fb;
  border-radius: 20px;
}
@media screen and (max-width: 768px) {
  .c-plans__plan {
    border-radius: 2.6666666667vw;
  }
}
.c-plans__plan {
  transition: 0.3s;
}
.c-plans__plan:before {
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100px;
}
@media screen and (max-width: 768px) {
  .c-plans__plan:before {
    width: 13.3333333333vw;
  }
}
.c-plans__plan:before {
  height: 100px;
}
@media screen and (max-width: 768px) {
  .c-plans__plan:before {
    height: 13.3333333333vw;
  }
}
.c-plans__plan:before {
  border-radius: 50%;
  background-color: #edf6fb;
  background-position: center center;
  background-repeat: no-repeat;
}
.c-plans__plan.plan-1:before {
  background-image: url("../images/cmn/icn_plan_price.svg");
  background-size: 50px auto;
}
@media screen and (max-width: 768px) {
  .c-plans__plan.plan-1:before {
    background-size: 6.6666666667vw auto;
  }
}
.c-plans__plan.plan-2:before {
  background-image: url("../images/cmn/icn_plan_hurry.svg");
  background-size: 60px auto;
}
@media screen and (max-width: 768px) {
  .c-plans__plan.plan-2:before {
    background-size: 8vw auto;
  }
}
.c-plans__plan.plan-3:before {
  background-image: url("../images/cmn/icn_plan_beginner.svg");
  background-size: 44px auto;
}
@media screen and (max-width: 768px) {
  .c-plans__plan.plan-3:before {
    background-size: 5.8666666667vw auto;
  }
}
.c-plans__plan.plan-4:before {
  background-image: url("../images/cmn/icn_plan_large.svg");
  background-size: 50px auto;
}
@media screen and (max-width: 768px) {
  .c-plans__plan.plan-4:before {
    background-size: 6.6666666667vw auto;
  }
}
.c-plans__plan-label {
  color: #2d7dd2;
  font-size: clamp(10px, 4.4vw, 22px);
  text-align: center;
}
@media screen and (max-width: 768px) {
  .c-plans__plan-label {
    font-size: 4.2666666667vw;
  }
}
.c-plans__plan-price {
  font-size: clamp(10px, 5.2vw, 26px);
  text-align: center;
}
@media screen and (max-width: 768px) {
  .c-plans__plan-price {
    font-size: 3.4666666667vw;
  }
}
.c-plans__plan-price-num {
  font-size: clamp(10px, 12.8vw, 64px);
  line-height: 1.1;
}
@media screen and (max-width: 768px) {
  .c-plans__plan-price-num {
    font-size: 8.5333333333vw;
  }
}
.c-plans__plan-price-num:after {
  bottom: 10%;
  height: 38%;
}

.c-options {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
@media screen and (max-width: 768px) {
  .c-options {
    gap: 2.6666666667vw;
    margin-top: 2.6666666667vw;
  }
}
.c-options__option {
  height: 100px;
  padding: 20px;
  background: #edf6fb;
  border-radius: 20px;
}
@media screen and (max-width: 768px) {
  .c-options__option {
    border-radius: 2.6666666667vw;
  }
}
.c-options__option {
  text-align: center;
}
@media screen and (max-width: 768px) {
  .c-options__option {
    display: flex;
    flex-wrap: wrap;
    align-content: center;
    justify-content: center;
    height: 21.3333333333vw;
    padding: 1.3333333333vw;
  }
}
.c-options__option-label {
  transform: translateY(-4px);
  display: inline-block;
  color: #2b303a;
  font-size: clamp(10px, 5.2vw, 26px);
  text-align: center;
}
@media screen and (max-width: 768px) {
  .c-options__option-label {
    transform: translateY(3.2vw);
    display: block;
    font-size: 3.2vw;
  }
}
.c-options__option-price {
  display: inline-block;
  font-size: clamp(10px, 5.2vw, 26px);
  text-align: center;
}
@media screen and (max-width: 768px) {
  .c-options__option-price {
    font-size: 3.4666666667vw;
  }
}
.c-options__option-price-num {
  font-size: clamp(10px, 12.8vw, 64px);
  line-height: 1.1;
}
@media screen and (max-width: 768px) {
  .c-options__option-price-num {
    font-size: 8.5333333333vw;
  }
}
.c-options__option-price-num:after {
  bottom: 10%;
  height: 38%;
}

/* reset
---------------------------------------- */
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, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
}

article, aside, detail, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}

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;
}

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

a {
  text-decoration: none;
}

a, button {
  color: #2b303a;
  cursor: pointer;
}

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

input, button, textarea, select {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  appearance: none;
}

em {
  font-style: normal;
}

picture {
  display: block;
  overflow: hidden;
}
picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  font-family: "object-fit: cover; object-position: center;";
}

body {
  position: relative;
  color: #2b303a;
  font-size: clamp(10px, 3.2vw, 16px);
  line-height: 1.6;
}
body a, body button {
  color: #2b303a;
}

.l-header {
  position: fixed;
  top: 0;
  width: 100%;
  height: 80px;
  background-color: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(20px);
  border-bottom: rgba(255, 255, 255, 0.2) 1px solid;
  filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.2));
  will-change: filter;
  z-index: 9999;
}
@media screen and (max-width: 768px) {
  .l-header {
    height: auto;
  }
}
.l-header__logo {
  color: #2b303a;
  font-size: clamp(10px, 5.3333333333vw, 36px);
}
.l-header__logo-link {
  color: #2b303a;
  font-size: clamp(10px, 5.3333333333vw, 36px);
  transition: 0.3s;
}
.l-header__logo-link:hover {
  color: #2d7dd2;
}
@media screen and (max-width: 768px) {
  .l-header__logo-link:hover {
    color: #2b303a;
  }
}
.l-header__menu {
  display: none;
  width: 24vw;
  height: 10.6666666667vw;
  margin: 2.6666666667vw 0;
  border-radius: 5.3333333333vw;
  color: #fff;
  font-size: 3.7333333333vw;
  background: #2d7dd2;
}
@media screen and (max-width: 768px) {
  .l-header__menu {
    display: block;
  }
}
@media screen and (max-width: 768px) {
  .l-header .l-gnav {
    display: none;
    width: 100%;
  }
}
.l-header .l-gnav__list {
  align-items: center;
}
@media screen and (max-width: 768px) {
  .l-header .l-gnav__list {
    display: block;
    width: 100%;
  }
}
.l-header .l-gnav__item {
  margin-left: 1.3888888889cqi;
}
@media screen and (max-width: 768px) {
  .l-header .l-gnav__item {
    margin-left: 0;
  }
}
.l-header .l-gnav__link {
  display: block;
  color: transparent;
  font-size: clamp(10px, 4.266666672vw, 18px);
  overflow: hidden;
  text-shadow: 0 -1.5em 0 #2b303a, 0 0 0 #2b303a;
  transition: text-shadow 0.3s;
}
.l-header .l-gnav__link:hover {
  text-shadow: 0 0 0 #2d7dd2, 0 1.5em 0 #2d7dd2;
}
.l-header .l-gnav__link.is-current {
  color: #2d7dd2;
  text-shadow: none;
}
.l-header .l-gnav__link.is-current:hover {
  text-shadow: none;
}
.l-header .l-gnav__link.is-disable {
  color: rgba(43, 48, 58, 0.75);
  text-shadow: none;
}
.l-header .l-gnav__link.is-disable:hover {
  text-shadow: none;
}
@media screen and (max-width: 768px) {
  .l-header .l-gnav__link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 16vw;
    color: #2b303a;
    text-align: center;
    text-shadow: 0 0 0 transparent, 0 0 0 transparent;
    border-top: #c8c8c8 0.2666666667vw solid;
  }
  .l-header .l-gnav__link:hover {
    text-shadow: 0 0 0 transparent, 0 0 0 transparent;
  }
}

.c-pagetop {
  position: fixed;
  right: 70px;
  display: block;
  width: 4.1666666667cqi;
  height: 4.1666666667cqi;
  background: url("../images/cmn/icn_pagetop.svg") center center/contain no-repeat #fff;
  border: #fff 2px solid;
  border-radius: 50%;
  z-index: 9999;
}
@media screen and (max-width: 768px) {
  .c-pagetop {
    right: 5.3333333333vw;
    width: 16vw;
    height: 16vw;
    border-width: 0.2666666667vw;
  }
}

.l-cta-side {
  position: fixed;
  top: 50%;
  right: 0;
  transform: translate(0, -50%);
  display: block;
  width: 60px;
  z-index: 9999;
}
@media screen and (max-width: 768px) {
  .l-cta-side {
    display: none;
  }
}
.l-cta-side__button {
  align-items: center;
  justify-content: center;
  width: 60px;
  padding: 20px 0;
  border-radius: 10px 0 0 10px;
  border-top: #fff 2px solid;
  border-bottom: #fff 2px solid;
  border-left: #fff 2px solid;
  transition: 0.3s;
}
.l-cta-side__button.button-order {
  background: #e1bc29;
}
.l-cta-side__button.button-order:hover {
  background: rgb(231.2704918033, 202.0040983607, 85.7295081967);
}
.l-cta-side__button.button-plan {
  margin-top: 10px;
  background: #2d7dd2;
}
.l-cta-side__button.button-plan:hover {
  background: #5797db;
}
.l-cta-side__text {
  color: #fff;
  font-size: 20px;
  text-align: center;
  writing-mode: vertical-rl;
}
.l-cta-side__text.text-order {
  padding: 36px 5px 0 5px;
  background: url("../images/cmn/icn_order.svg") 8px top/30px auto no-repeat;
}
.l-cta-side__text.text-plan {
  padding: 32px 5px 0 5px;
  background: url("../images/cmn/icn_plans.svg") center top/30px auto no-repeat;
}

.l-cta-bottom {
  position: fixed;
  left: 50%;
  bottom: 0;
  transform: translate(-50%, 0);
  display: block;
  width: 94.4444444444cqi;
  background-color: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(20px);
  border-radius: 20px 20px 0 0;
}
@media screen and (max-width: 768px) {
  .l-cta-bottom {
    border-radius: 4vw 4vw 0 0;
  }
}
.l-cta-bottom {
  z-index: 9999;
}
@media screen and (max-width: 768px) {
  .l-cta-bottom {
    width: 92vw;
    height: 13.3333333333vw;
    padding: 1.3333333333vw 2.6666666667vw;
  }
}
.l-cta-bottom__body {
  align-items: center;
  justify-content: center;
  width: 100%;
}
.l-cta-bottom__body.body-pc {
  height: 80px;
}
@media screen and (max-width: 768px) {
  .l-cta-bottom__body.body-pc {
    display: none;
  }
}
.l-cta-bottom__body.body-sp {
  display: none;
}
@media screen and (max-width: 768px) {
  .l-cta-bottom__body.body-sp {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    width: 100%;
  }
}
.l-cta-bottom__copy {
  line-height: 1.4;
  text-align: center;
}
.l-cta-bottom__copy-sub {
  font-size: clamp(12px, 1.3888888889vw, 20px);
}
.l-cta-bottom__copy-main {
  font-size: clamp(10px, 1.3888888889vw, 30px);
}
.l-cta-bottom__phone {
  justify-content: center;
  width: min(20.2898550725cqi, 280px);
  margin: 0 1.4492753623cqi;
}
.l-cta-bottom__phone-number {
  padding-left: 1.25em;
  font-size: clamp(12px, 2.2222222222vw, 32px);
  line-height: 1.2;
  background: url("../images/cmn/icn_phone_bl.svg") left center/1.0625em auto no-repeat;
}
.l-cta-bottom__phone-time {
  font-size: clamp(10px, 1.1111111111vw, 16px);
  line-height: 1.2;
}
.l-cta-bottom__contact {
  width: min(21.7391304348cqi, 300px);
  height: 60px;
  padding-right: 55px;
  font-size: clamp(10px, 1.25vw, 18px);
  background: #2d7dd2;
  border: #2d7dd2 2px solid;
  border-radius: 30px;
}
.l-cta-bottom__contact:before {
  top: 50%;
  right: 5px;
  transform: translate(0, -50%);
  width: 50px;
  height: 50px;
  background: url("../images/cmn/icn_arrow_wh.svg") center center/contain no-repeat;
}
.l-cta-bottom__contact:hover {
  color: #2d7dd2;
}
.l-cta-bottom__contact:hover:before {
  background-image: url("../images/cmn/icn_arrow_bl.svg");
}

.l-footer {
  padding: 50px 0 130px 0;
  background: #2b303a;
}
@media screen and (max-width: 768px) {
  .l-footer {
    padding: 6.6666666667vw 0 20vw 0;
  }
}
.l-footer > .l-inner {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
@media screen and (max-width: 768px) {
  .l-footer > .l-inner {
    grid-template-columns: 1fr;
    gap: 0;
  }
}
.l-footer__logo {
  color: #fff;
  font-size: clamp(10px, 6.6666666667vw, 50px);
}
@media screen and (max-width: 768px) {
  .l-footer__logo {
    display: block;
    text-align: center;
  }
}
.l-footer__address {
  color: #fff;
  font-size: clamp(10px, 3.199999992vw, 18px);
}
@media screen and (max-width: 768px) {
  .l-footer__address {
    display: block;
    text-align: center;
  }
}
.l-footer__phone-label {
  margin-top: 30px;
  color: #fff;
  font-size: clamp(10px, 3.733333344vw, 18px);
}
@media screen and (max-width: 768px) {
  .l-footer__phone-label {
    display: block;
    margin-top: 2.6666666667vw;
    text-align: center;
  }
}
.l-footer__phone-number {
  color: #fff;
  font-size: clamp(24px, 8.4vw, 42px);
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .l-footer__phone-number {
    display: block;
    text-align: center;
  }
}
.l-footer__sub {
  align-content: flex-end;
  justify-content: flex-end;
}
@media screen and (max-width: 768px) {
  .l-footer__sub {
    align-content: center;
    justify-content: center;
    margin-top: 6.6666666667vw;
  }
}
.l-footer__nav {
  align-content: flex-end;
  justify-content: flex-end;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .l-footer__nav {
    justify-content: center;
    border-bottom: #fff 0.2666666667vw solid;
  }
}
.l-footer__nav-link {
  position: relative;
  margin-left: 20px;
  padding-right: 28px;
  color: #fff;
  font-size: clamp(10px, 3.199999992vw, 14px);
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .l-footer__nav-link {
    display: flex;
    flex-wrap: wrap;
    align-content: center;
    justify-content: center;
    width: 100%;
    height: 10.6666666667vw;
    margin-left: 0;
    padding-right: 0;
    text-align: center;
    border-top: #fff 0.2666666667vw solid;
  }
}
.l-footer__nav-link:after {
  top: 50%;
  right: 0;
  transform: translate(0, -50%);
  width: 20px;
}
@media screen and (max-width: 768px) {
  .l-footer__nav-link:after {
    width: 5.3333333333vw;
  }
}
.l-footer__nav-link:after {
  height: 20px;
}
@media screen and (max-width: 768px) {
  .l-footer__nav-link:after {
    height: 5.3333333333vw;
  }
}
.l-footer__nav-link:after {
  background: url("../images/cmn/icn_arrow_wh.svg") center center/contain no-repeat;
  transition: 0.3s;
}
@media screen and (max-width: 768px) {
  .l-footer__nav-link:after {
    transform: translate(-2.6666666667vw, -50%);
  }
}
.l-footer__nav-link:hover:after {
  transform: translate(3px, -50%);
}
@media screen and (max-width: 768px) {
  .l-footer__nav-link:hover:after {
    transform: translate(-2.6666666667vw, -50%);
  }
}
.l-footer__copy {
  margin-top: 0.75em;
  color: #fff;
  font-size: clamp(10px, 2.9333333307vw, 14px);
}
@media screen and (max-width: 768px) {
  .l-footer__copy {
    margin-top: 5.3333333333vw;
    font-size: 2.9333333333vw;
  }
}