@charset "utf-8";
/*
Theme Name: COSMICGRAR
Description: 
Author: COSMICGEAR
Version: 2.0
*/
/*-root*/ :root {
  --clr-blk: #333333;
  --clr-gry: #E6E6E6;
  --bdr-gry: #D9D9D9;
  --head2: clamp(1.25rem, 1.033rem + 1.09vw, 1.875rem); /*20-30*/
  --fs-mid20: clamp(1rem, 0.909rem + 0.45vw, 1.25rem); /*16-20*/
  --fs-mid23: clamp(1.125rem, 1.011rem + 0.57vw, 1.438rem); /*18-23*/
  --adjust: calc((1em* calc(24/14) - 1em)/2* -1);
  --adjust-wid: calc((1em* calc(34/16) - 1em)/2* -1);
  --gra-pale: linear-gradient(-45deg, #F7F0AC, #ACF7F0, #F0ACF7);
  --gra-pale-row: linear-gradient(-45deg, #F0ACF7, #ACF7F0, #F7F0AC);
  --gra-rainbow: linear-gradient(-45deg, #C20DDF, #E1AA1C, #D5654C, #004CA5);
  --easing: cubic-bezier(0.45, 0.05, 0.55, 0.95);
  --transit: .3s var(--easing);
}
/*base=====*/
body {
  font-family: "Noto Sans JP", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: min(3.6vw, 16px);
  width: 100%;
  overflow-wrap: anywhere;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  color: #000;
  font-weight: 400;
  -webkit-transition: opacity var(--transit);
  -o-transition: opacity var(--transititop);
  transition: opacity var(--transit);
  background: #F8F7F7;
  opacity: 0;
}
body.is-view {
  opacity: 1;
}
#include-svg {
  display: none;
}
.fnt-kefa {
  font-family: 'kefa';
}
.fl {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
}
.fl.jc_c {
  justify-content: center;
}
.fl_c {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  -o-flex-direction: column;
  flex-direction: column;
}
.fl_c.ai_c {
  -ms-align-items: center;
  align-items: center;
}
figure {
  margin-bottom: 0 !important;
}
.grecaptcha-badge {
  display: none;
}
/*container
========================================================*/
#container {
  width: 100%;
  min-height: 100svh;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  -o-flex-direction: column;
  flex-direction: column;
  overflow-x: hidden;
}
#container > * {
  width: 100%;
}
a.cvr {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
}
a.udl{
  text-decoration: underline;
  text-underline-offset:2px; 
}
.inner {
  width: min(1340px, 100%);
  padding-left: min(50px, 4vw);
  padding-right: min(50px, 4vw);
  margin-left: auto;
  margin-right: auto;
}
/*text setting*/
.in-text {
  line-height: calc(24/14);
}
.in-text.aj-wid {
  line-height: calc(34/16);
}
.in-text::before, .in-text::after, .adjust::before, .adjust::after, .in-text.aj-wid::before, .in-text.aj-wid::after {
  content: "";
  display: block;
}
.in-text::before, .adjust::before {
  margin-top: var(--adjust);
}
.in-text::after, .adjust::after {
  margin-bottom: var(--adjust);
}
.in-text.aj-wid::before {
  margin-top: var(--adjust-wid);
}
.in-text.aj-wid::after {
  margin-bottom: var(--adjust-wid);
}
/*hum
=====================================*/
#hum-btn {
  position: fixed;
  top: 10px;
  right: 10px;
  width: min(64px, 15vw);
  aspect-ratio: 1/1;
  background: var(--gra-pale);
  display: none;
  -ms-align-items: center;
  align-items: center;
  justify-content: center;
  z-index: calc(infinity);
  cursor: pointer;
  border-radius: 100vmax;
  border: 1px solid var(--clr-blk);
}
#hum-btn::before {
  content: "";
  width: calc(100% - 4px);
  aspect-ratio: 1/1;
  background: var(--clr-blk);
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  z-index: -1;
  border-radius: 100vmax;
}
#hum-btn button {
  width: 50%;
  height: 3px;
  background: var(--gra-pale);
  border-radius: 2px;
  position: relative;
  -webkit-transition: background var(--transit);
  -o-transition: background var(--transit);
  transition: background var(--transit);
}
#hum-btn button::before, #hum-btn button::after {
  content: "";
  width: 100%;
  height: 3px;
  border-radius: 2px;
  position: absolute;
  left: 0;
  background: var(--gra-pale);
  -webkit-transition: transform var(--transit);
  -o-transition: transform var(--transit);
  transition: transform var(--transit);
  transform-origin: center;
}
#hum-btn button::before {
  top: -8px;
}
#hum-btn button::after {
  bottom: -8px;
}
#hum-btn.open button {
  background: none;
}
#hum-btn.open button::before, #hum-btn.open button::after {
  top: calc(50% - 2px);
}
#hum-btn.open button::before {
  transform: rotate(-45deg);
}
#hum-btn.open button::after {
  transform: rotate(45deg);
}
#l-nav {
  position: fixed;
  width: 100vw;
  height: 100svh;
  top: 0;
  left: 0;
  background: rgba(255, 255, 255, .6);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 99;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all var(--transit);
  -o-transition: all var(--transit);
  transition: all var(--transit);
}
#l-nav.is-view {
  opacity: 1;
  visibility: visible;
}
.l-nav_inner {
  width: 100%;
  min-height: 100%;
  padding: min(80px,16vw) min(30px, 5vw);
  display: grid;
  place-items: center;
}
.l-nav_menu {
  width: 100%;
}
.l-nav_menu li {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  -o-flex-direction: column;
  flex-direction: column;
}
.l-nav_menu li.l-nav-btn {
  -ms-align-items: center;
  align-items: center;
  margin-top: min(30px, 10vw);
  gap:min(20px,5vw);
}
.l-nav_menu li.l-nav-btn .round-btn {
  width: min(280px, 100%);
}
.l-nav_menu li.l-nav-btn .round-btn a span {
  font-size: min(20px, 6vw);
}
.l-nav_menu li:not(.l-nav-btn) a {
  padding: min(15px, 5vw) 0;
  text-align: center;
}
.l-nav_menu li.contents-nav {
  gap: min(10px, 2.5vw);
}
.l-nav_menu li.contents-nav a {
  font-size: min(25px, calc(100vw/8));
  font-weight: 700;
}
.l-nav_menu li.l-nav-btn a.privacy{
  font-weight: 700;
  padding-left: 1em;
}
.l-nav_menu li.l-nav-btn a.privacy::before
,.l-nav_menu li.l-nav-btn a.privacy::after{
  content: "";
  width: 3px;
  aspect-ratio:1/1;
  border-radius: 2px;
  border: 2px solid;
  border-color: var(--clr-blk) var(--clr-blk) transparent transparent;
  position: absolute;
  left: 0;
  top: 50%;
  translate:0 -50%;
  rotate:45deg;
}
.l-nav_menu li.l-nav-btn a.privacy::after{
  translate:-50% -50%;
}
/*header
=====================================*/
header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
}
.head-inner {
  width: 100%;
  padding: 10px min(50px, 2.5vw);
  min-height: 80px;
  -ms-align-items: center;
  align-items: center;
  justify-content: space-between;
}
.head-inner .logo {
  width: min(240px, 45vw);
}
.header-nav {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -ms-align-items: center;
  align-items: center;
  gap: min(20px, 3vw);
  letter-spacing: .05em;
  text-indent: .05em;
}
.g-nav {
  gap: 10px min(20px, 3vw);
}
.g-nav a {
  font-weight: 500;
}
.head-logo {
  width: min(280px, 45vw);
  aspect-ratio: 1/0.1419;
}
/*main
=====================================*/
.index-wrapper {
  padding-bottom: min(200px, 20vw);
}
/*button setting*/
.round-btn {
  width: min(200px, 50%);
  border-radius: 100vmax;
  padding: 2px;
  background: var(--gra-pale);
  border: 1px solid var(--clr-blk);
  transition: var(--transit);
}
.round-btn a {
  display: flex;
  -ms-align-items: center;
  align-items: center;
  justify-content: center;
  background: var(--clr-blk);
  border-radius: 100vmax;
  color: #fff;
  font-weight: 500;
  text-align: center;
  height: 50px;
  font-family: 'kefa';
}
.round-btn a span {
  background: var(--gra-pale);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: var(--transit);
}
.round-btn.arw a span {
  padding-right: .85em;
}
.round-btn.arw a::before {
  content: "";
  position: absolute;
  width: .85em;
  aspect-ratio: 1/1;
  top: 50%;
  right: 1em;
  translate: 0 -50%;
  background: url("images/arrow.svg") no-repeat center/100%;
}
.inquiry-btn {
  width: 135px;
}
.inquiry-btn a {
  height: 42px;
}
@media(hover){
  .round-btn:hover{
  background: var(--gra-pale-row);
}
.round-btn:hover a span{
  background: var(--gra-pale-row);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
}
/*#key
============================*/
.key-index {
  min-height: 100svh;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
}
.key-index__inner {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  -o-flex-direction: column;
  flex-direction: column;
  -ms-align-items: center;
  align-items: center;
  justify-content: space-between;
  gap: min(50px, 10vw);
  padding-bottom: min(30px, 10vw);
}
.key-index__inner .key-text {
  width: min(580px, 100%);
  margin-right: auto;
}
.key-index__inner .key-text.en {
  font-size: min(16px, 3vw);
}
.key-title {
  width: 100%;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  -o-flex-direction: column;
  flex-direction: column;
  -ms-align-items: center;
  align-items: center;
  gap: 10px;
}
.key-title p {
  font-family: 'kefa';
  font-size: clamp(1.5rem, 0.065rem + 7.17vw, 5.625rem); /*26-90*/
  font-weight: 700;
  letter-spacing: -.01em;
}
.key-title p:last-child {
  margin-left: auto;
}
.key-index .splitting {
  --glow-size-min: 0;
  --glow-size-max: 5;
  --glow-lightness: 30%; /*57*/
  --delay: 0;
  --duration: 5s;
  --percent: 0;
}
.key-index .char {
  animation: wave var(--duration) ease-in-out var(--delay) infinite alternate;
  animation-fill-mode: backwards;
  --percent: calc(var(--char-index) / var(--char-total));
  --delay: calc(var(--percent) * var(--duration));
  --glow-hue: calc(var(--percent) * 700); /*510*/
}
@keyframes wave {
  0% {
    text-shadow: 0 0 calc(var(--glow-size-min) * 1px) hsla(var(--glow-hue), 100%, var(--glow-lightness), 1);
  }
  50% {
    text-shadow: 0 0 calc(var(--glow-size-max) * 1px) hsla(calc(var(--glow-hue) + 255), 100%, var(--glow-lightness), 1);
  }
  100% {
    text-shadow: 0 0 calc(var(--glow-size-min) * 1px) hsla(var(--glow-hue), 100%, var(--glow-lightness), 1);
  }
}
.key-comment {
  width: min(580px, 100%);
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  -o-flex-direction: column;
  flex-direction: column;
  -ms-align-items: flex-end;
  align-items: flex-end;
  margin-left: auto;
  gap: min(30px, 5vw);
}
.key-comment .in-title {
  font-size: var(--head2);
  font-weight: 700;
  letter-spacing: .05em;
  text-indent: .05em;
}
.key-comment .in-text {
  line-height: calc(40/20);
  font-weight: 500;
}
/*#index contents
============================*/
.index-contents {
  margin-top: min(200px, 30vw);
}
.sec-title {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: center;
  -ms-align-items: center;
  align-items: center;
  height: min(200px, calc(100vw/5.25));
}
.sec-title .en {
  color: var(--clr-gry);
  font-size: min(200px, calc(100vw/5.25));
  font-weight: 900;
  position: absolute;
  left: 50%;
  top: 50%;
  translate: -50% -55%;
  white-space: nowrap;
}
/* アニメーション用のスタイル */
.js-fadeup .char {
  display: inline-block;
  opacity: 0; /* 初期状態の透明度 */
  transform: translateY(50px); /* 初期状態の位置 */
}
.sec-title .ja {
  font-size: var(--head2);
  font-weight: 700;
  line-height: calc(20/14);
  word-break: keep-all;
  text-align: center;
}
.sec-title .ja::before, .sec-title .ja::after {
  content: "";
  display: block;
}
.sec-title .ja::before {
  margin-top: var(--adjust-wid);
}
.sec-title .ja::after {
  margin-bottom: var(--adjust-wid);
}
.sec-about-box {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: min(50px, 10vw) min(90px, 5vw);
  margin-top: min(150px, 20vw);
}
.sec-about-box::before {
  content: "";
  width: min(450px, 75vw);
  aspect-ratio: 1/1;
  background: url("images/logo.svg") no-repeat center/100%;
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  opacity: .5;
}
.about-list > div {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  line-height: calc(24/14);
  padding: min(24px, 8vw) min(20px, 4vw);
  border-top: 1px solid var(--bdr-gry);
}
.about-list > div::before, .about-list > div::after {
  content: "";
  height: min(24px, 8vw);
  width: 1px;
  background: var(--bdr-gry);
  position: absolute;
}
.about-list > div::before {
  left: 0;
  top: 0;
}
.about-list > div::after {
  bottom: 0;
  right: 0;
}
.about-list > div:last-child {
  border-bottom: 1px solid var(--bdr-gry);
}
.about-list dt {
  font-weight: 600;
  width: 30%;
}
.about-list dd {
  width: 70%;
  font-size: min(14px, 3.6vw);
}
/*works*/
.sec-works-blc {
  width: 100%;
  overflow: hidden;
  margin-top: min(150px, 20vw);
}
.sec-works-blc::after {
  content: "WORKS";
  font-size: min(200px, calc(100vw/5.25));
  position: absolute;
  left: max(-30px, -3vw);
  top: 0;
  font-weight: 900;
  color: #F8F7F7;
  translate: 0 -.25em;
}
.sec-works-blc::before {
  content: "";
  width: 100%;
  height: 100%;
  background: var(--clr-gry);
  border-radius: 0 min(100px, 15vw) min(100px, 15vw) 0;
  position: absolute;
  left: 0;
  top: 0;
}
.sec-works-box {
  width: min(1540px, 100%);
  height: 100%;
  -ms-align-items: flex-end;
  align-items: flex-end;
  justify-content: flex-end;
  padding-top: min(120px, calc(100vw/5.25));
  padding-bottom: min(40px, 5vw);
  gap:min(40px,8vw);
}
#works-sider {
  width: 100%;
}
.works-slide-item .thumb {
  width: 100%;
  aspect-ratio: 1/0.664;
}
.works-slide-item .thumb::before {
  content: "";
  width: 100%;
  height: 100%;
  border-radius: 10px;
  position: absolute;
  top: min(15px, 2vw);
  right: max(-15px, -2vw);
  background: var(--gra-pale);
  filter: blur(4px);
}
.works-slide-item .thumb figure {
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 10px;
  border: 1px solid #fff;
}
.works-slide-item .thumb figure img {
  width: 100%;
  height: auto;
}
.works-slide-item .post-data {
  margin-top: min(30px, 5vw);
}
.post-data .post-title {
  font-weight: 700;
  font-size: var(--fs-mid20);
}
.post-data .tag {
  line-height: calc(20/14);
  margin-top: min(15px, 4vw);
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -o-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 5px;
  font-size: min(12px, 3vw);
}
.post-data .tag span:not(:first-child):before {
  content: "/";
  padding-right: 5px;
}
/*CUSOR*/
.swiper-btn-right {
  position: absolute;
  top: 0;
  left: 90%;
  width: 300%;
  height: 100%;
  z-index: 100;
  cursor: pointer;
  outline: none;
}
.swiper-btn-left {
  position: absolute;
  top: 0;
  right: 90%;
  width: 300%;
  height: 100%;
  z-index: 100;
  cursor: pointer;
  outline: none;
}
.cursor {
  background: var(--clr-blk);
  width: min(60px, 15vw) !important;
  aspect-ratio: 1/1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: none;
  color: #fff;
  position: absolute;
  z-index: 10;
  box-shadow: 0 5px 10rem 0 rgb(12 2 0 / 15%);
  cursor: pointer;
  margin: 1rem;
  right: 0;
  transform: scale(0);
  transition: transform .4s cubic-bezier(.19, 1, .22, 1);
  pointer-events: none;
}
.cursor_text_prev, .cursor_text_next {
  font-size: min(12px, 3.2vw);
  display: none;
  font-weight: 700;
  font-family: 'kefa';
}
.show_cursor_left .cursor {
  transform: scale(1)
}
.show_cursor_left .cursor_text_prev {
  display: block
}
.show_cursor_left .intervwiw-slider {
  transform: translateX(.5rem)
}
.show_cursor_right .cursor {
  transform: scale(1)
}
.show_cursor_right .cursor_text_next {
  display: block
}
.show_cursor_right .intervwiw-slider {
  transform: translateX(-.5rem)
}
/*COMPANY*/
.sec-company-blc {
  padding-top: min(100px, 20vw);
}
.sec-company-blc .sec-title .en {
  color: #fff;
}
.sec-company-box {
  margin-top: max(-30px, -4vw);
  padding: min(80px, 10vw) min(20px, 4vw);
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: center;
  background: #fff;
  border-radius: 30px;
}
.company-list {
  width: min(800px, 100%);
}
.company-list > div {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  line-height: calc(20/14);
}
.company-list > div + div {
  margin-top: min(50px, 5vw);
}
.company-list dt {
  width: 8em;
}
.company-list dd {
  width: calc(100% - 8em);
}
/*contact*/
.sec-contact-blc {
  margin-top: min(200px, 20vw);
  gap: min(80px, 15vw);
}
.sec-contact-box {
  width: min(800px, 100%);
  gap: min(80px, 15vw);
}
.form-wrap {
  width: min(800px, 100%);
  margin-left: auto;
  margin-right: auto;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  -o-flex-direction: column;
  flex-direction: column;
  -ms-align-items: center;
  align-items: center;
  gap: min(80px, 15vw);
}
.form-list {
  width: 100%;
}
.form-list > div {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
}
.form-list > div + div {
  margin-top: min(15px, 3vw);
}
.form-list dt {
  width: 13em;
  padding-top: 10px;
  font-weight: 700;
  padding-left: 2.5em;
}
.form-list dt::before {
  content: "必須";
  position: absolute;
  left: 0;
  top: 0;
  font-size: 10px;
  color: #fff;
  background: #dc3232;
  border-radius: 3px;
  padding: 5px;
  translate: 0 .8em;
}
.form-list dt.any::before {
  content: "任意";
  background: var(--clr-gry);
  color: #333;
}
.form-list dd {
  width: calc(100% - 13em);
}
.form-list dd input, .form-list dd textarea {
  font-size: 16px;
  padding: 10px;
  border-radius: 5px;
}
.form-list dd textarea {
  min-height: 200px;
}
.form-btn-wrap {
  width: 100%;
  gap: min(20px, 5vw);
}
.form-btn-wrap .att {
  font-size: min(12px, 3.4vw);
  line-height: 1.4;
}
.form-btn-wrap .att a {
  text-decoration: underline;
}
.form-btn {
  width: 100%;
}
.round-btn.inp > div {
  display: flex;
  -ms-align-items: center;
  align-items: center;
  justify-content: center;
  background: var(--clr-blk);
  border-radius: 100vmax;
  color: #fff;
  font-weight: 500;
  text-align: center;
  height: 50px;
}
.round-btn.inp > div input {
  background: var(--gra-pale);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: 'kefa';
}
.wpcf7-spinner {
  display: none;
}
.form-list .wpcf7-not-valid-tip {
  font-size: 12px;
  translate: 0 50%;
}
.wpcf7 form.invalid .wpcf7-response-output, .wpcf7 form.unaccepted .wpcf7-response-output, .wpcf7 form.payment-required .wpcf7-response-output, .wpcf7 form .wpcf7-response-output {
  border: none;
  text-align: center;
  font-size: 12px;
  color: #dc3232;
  font-weight: 700;
  margin: min(20px, 5vw) 0 0;
}
/*footer
=====================================*/
footer {
  margin-top: auto;
  padding-bottom: min(20px, 5vw);
  /*
  background: var(--clr-blk);
  color: #F8F7F7;
*/
}
.foot-inner {
  gap: min(50px, 10vw);
}
.foot-inner .foot-logo {
  width: min(300px, 60%);
  aspect-ratio: 1 / 0.1419;
}
.foot-inner .foot-logo path {
  fill: #F8F7F7;
}
.foot-nav {
  width: 100%;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: center;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -o-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: min(10px, 3vw) min(20px, 5vw);
}
footer p.copy {
  text-align: center;
  font-size: min(10px, 3.4vw);
}