@charset "UTF-8";
/*リセット*/
html,
body {
  height: 100%;
}

*:where(:not(iframe, canvas, img, svg, video):not(svg *, symbol *)) {
  all: unset;
  display: revert;
}

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

ol,
ul {
  list-style: none;
}

img {
  max-width: 100%;
}

table {
  border-collapse: collapse;
}

textarea {
  white-space: revert;
}

img {
  -ms-interpolation-mode: bicubic;
}

small {
  font-size: 0.75em;
}

/*ベース*/
/*メディアクエリ
@media (max-width: 768px) { }
@media (max-width: 1200px) { }*/
/*------------------------*/
/*背景色・文字色*/
body {
  background: #000;
  color: #fff;
}

/*------------------------*/
/*フォント*/
body {
  font-family: "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  letter-spacing: 0.2em;
  font-feature-settings: "palt";
  word-wrap: break-word;
}

/*------------------------*/
/*LOGO用フォント : google:Audiowide*/
.ft-logo {
  font-family: "Audiowide", sans-serif;
  letter-spacing: 0;
}

/*------------------------*/
/*表示・非表示*/
@media (max-width: 768px) {
  .dis-sp {
    display: block;
  }
  .dis-pc {
    display: none;
  }
}
@media (min-width: 769px) {
  .dis-sp {
    display: none;
  }
  .dis-pc {
    display: block;
  }
}
/*-------------------------------------------------------------------------*/
/*文字サイズ*/
@media (max-width: 768px) {
  html {
    font-size: 110%;
  }
}
@media (min-width: 769px) {
  html {
    font-size: 110%;
  }
}
/*-------------------------------------------------------------------------*/
/*コンテンツ*/
header,
footer,
main,
section,
nav {
  width: 100%;
  position: relative;
}

a {
  cursor: pointer;
  text-decoration: none;
  color: #fff;
}

img {
  display: block;
}

.small {
  font-size: 60%;
  display: block;
}

.flex {
  display: flex;
  flex-flow: row wrap;
}

.flex-n {
  display: flex;
  flex-flow: row nowrap;
}

.flex-item {
  flex-grow: 1;
}

.section {
  overflow: hidden;
  background: #000;
  padding: 1.5rem 0;
}

.content {
  margin: 0 auto;
}

.text {
  text-align: justify;
  text-justify: inter-character;
}

.lead {
  font-weight: bold;
  letter-spacing: 0.3em;
}

.red {
  color: #97000c;
}

.t-center {
  text-align: center;
}

.con-center * {
  text-align: center;
}

.btn {
  display: inline-block;
  text-align: center;
  line-height: 1.5;
}

.btn a {
  display: block;
  color: #fff;
  background: #1d1d1d;
  border-radius: 8px;
}

.btn.white {
  color: #fff;
  background: rgba(255, 255, 255, 0.2);
}

.ov:hover,
.ov:hover *,
.btn a:hover {
  opacity: 0.8;
  filter: alpha(opacity=80);
  transition: 0.8s opacity cubic-bezier(0.23, 1, 0.32, 1);
}

.pattern + .content {
  position: relative;
  z-index: 3;
}

/*.acs { background: #ff0000; }*/
@media (max-width: 768px) {
  .content.sp-w90 {
    width: 90%;
  }
  .content.sp-w80 {
    width: 80%;
  }
  .content.sp-w70 {
    width: 70%;
  }
  .content.sp-w65 {
    width: 65%;
  }
  h1.naked {
    padding: 15vh 0 5vh;
    font-size: 1.3rem;
    line-height: 1.8;
  }
  h2.naked {
    padding: 15vh 0 5vh;
    font-size: 1.5rem;
    line-height: 1.5;
  }
  h2.naked span {
    font-size: 60%;
    letter-spacing: 0.05em;
    display: block;
  }
  .lead {
    font-size: 1.8rem;
  }
  .btn {
    width: 100%;
  }
  .btn a {
    padding: 1.5vh 1.5vw;
    font-size: 0.9rem;
  }
  .pattern {
    width: 100%;
    height: 100%;
    background: url("../img/ptn-dot-bg.gif");
    background-size: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
  }
}
@media (min-width: 769px) {
  .content.pc-w90 {
    width: min(90%, 1500px);
  }
  .content.pc-w80 {
    width: min(80%, 1200px);
  }
  h1.naked {
    padding: 200px 0 80px;
    font-size: 1.75rem;
  }
  h2.naked {
    margin: 200px 0 80px;
    font-size: 1.75rem;
  }
  h2.naked span {
    margin: 15px 0 0;
    font-size: 65%;
    letter-spacing: 0.05em;
    display: block;
  }
  .small {
    margin: 0 0 5px;
  }
  .lead {
    font-size: 50px;
  }
  .btn a {
    padding: 15px 30px;
    font-size: 0.9rem;
  }
  .pattern {
    width: 100%;
    height: 100%;
    background: url("../img/ptn-dot.png");
    background-attachment: fixed;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
  }
}
/*ヘッダー*/
.header {
  background: rgba(36, 36, 36, 0.9);
  position: fixed;
}

.header.all {
  transform: translateY(0) !important;
}

.header .brand a {
  display: inline-block;
}

@media (max-width: 768px) {
  .header {
    height: 9vh;
    top: 0;
    left: 0;
    z-index: 10;
    transform: translateY(0);
    width: 100vw;
    transition: transform 0.8s cubic-bezier(0.65, 0, 0.15, 1);
  }
  .header.show {
    position: fixed;
    transform: translateY(0);
  }
  .header.hide {
    transform: translateY(-100px);
  }
  .header .brand {
    padding: 1.5vh 4vw;
  }
  .header .brand img {
    height: 6vh;
  }
}
@media (min-width: 769px) {
  .header {
    height: 125px;
    top: 0;
    left: 0;
    z-index: 10;
    transition: transform 0.8s cubic-bezier(0.65, 0, 0.15, 1);
  }
  .header.show {
    position: fixed;
    transform: translateY(0);
  }
  .header.hide {
    transform: translateY(-150px);
  }
  .header .brand {
    padding: 20px 40px;
    position: absolute;
    top: 0;
    left: 0;
  }
  .header .brand img {
    height: 85px;
  }
  .header .nav ul {
    padding: 15px 0 0;
    width: 100%;
    height: 125px;
    justify-content: center;
    align-items: center;
  }
  .header .nav ul li + li {
    border-left: 1px solid #454545;
  }
  .header .nav ul li a {
    margin: 0 10px;
    padding: 10px 25px;
    font-size: 1.1rem;
    text-align: center;
    display: block;
    position: relative;
  }
  .header .nav ul li a::before {
    content: "";
    width: 100%;
    height: 100%;
    background: #fff;
    opacity: 0;
    display: block;
    border-radius: 5px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 9;
  }
  .header .nav ul li a:hover::before {
    opacity: 0.2;
    transition: 0.8s opacity cubic-bezier(0.23, 1, 0.32, 1);
  }
}
/*-------------------------------------------------------------------------*/
/*フッター*/
.footer {
  width: 100%;
  overflow: hidden;
}
.footer.index {
  min-height: 100vh;
  padding-bottom: 2rem;
  /*acs*/
}
.footer.index .content {
  padding: 10vh 0 0;
  position: relative;
}
.footer.index .lead {
  position: absolute;
}
.footer.index .btn {
  display: inline-block;
  text-align: center;
  line-height: 1;
  display: block;
  color: #fff;
  background: #1d1d1d;
  border-radius: 8px;
}
.footer.index .lead {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.5s, transform 0.8s cubic-bezier(0.65, 0, 0.15, 1);
}
.footer.index .lead.acs {
  opacity: 1;
  transform: translateX(0);
}
.footer.index .sitemap_wrap .sitemap li {
  opacity: 0;
}
.footer.index .sitemap_wrap .sitemap li:last-of-type::after {
  background: none;
}
.footer.index .sitemap_wrap .sitemap li::after {
  content: "";
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.5);
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
}
.footer.index .sitemap_wrap .sitemap .sns-list {
  display: flex;
  gap: 1rem;
  justify-content: center;
  padding: 1rem 0;
}
.footer.index .sitemap_wrap .sitemap .sns-list li a img {
  height: 2rem;
}
.footer.index .sitemap_wrap .sitemap .sns-list li::after {
  background: none;
}
.footer.index .sitemap_wrap .sitemap .sub-sitemap {
  padding-left: 2rem;
}
.footer.index .sitemap_wrap .sitemap .sub-sitemap li {
  display: flex;
  align-items: center;
}
.footer.index .sitemap_wrap .sitemap .sub-sitemap li:last-of-type {
  padding-bottom: 0.5rem;
}
.footer.index .sitemap_wrap .sitemap .sub-sitemap li::after {
  background: none;
}
.footer.index .sitemap_wrap .sitemap .sub-sitemap li a {
  font-size: 0.75em;
  padding: 0 0 0.5rem;
  width: 100%;
}
.footer.index .sitemap_wrap .sitemap .sub-sitemap li a::before {
  content: "- ";
}
.footer.index .sitemap_wrap .sitemap.acs li {
  -webkit-animation: slide 0.8s cubic-bezier(0.65, 0, 0.15, 1) forwards;
  animation: slide 0.8s cubic-bezier(0.65, 0, 0.15, 1) forwards;
}
.footer.index .sitemap_wrap .sitemap.acs li:nth-of-type(1) {
  -webkit-animation-delay: 0.1s;
  animation-delay: 0.1s;
}
.footer.index .sitemap_wrap .sitemap.acs li:nth-of-type(2) {
  -webkit-animation-delay: 0.2s;
  animation-delay: 0.2s;
}
.footer.index .sitemap_wrap .sitemap.acs li:nth-of-type(3) {
  -webkit-animation-delay: 0.3s;
  animation-delay: 0.3s;
}
.footer.index .sitemap_wrap .sitemap.acs li:nth-of-type(4) {
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s;
}
.footer.index .sitemap_wrap .sitemap.acs li:nth-of-type(5) {
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s;
}
.footer.index .sitemap_wrap .sitemap.acs li:nth-of-type(6) {
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
}
.footer.index .sitemap_wrap .sitemap.acs li:nth-of-type(7) {
  -webkit-animation-delay: 0.7s;
  animation-delay: 0.7s;
}
.footer.sub {
  min-height: auto;
  background: #1f1f1f;
}
@media (max-width: 768px) {
  .footer.index {
    background: url("../img/footer_bg_pc.jpg") 50% 50% no-repeat;
    background-size: cover;
  }
  .footer.index h2 {
    margin: 10vh 0 1.5vh;
    padding: 0 0 1.5vh;
    font-size: 0.6rem;
    letter-spacing: 0.1em;
    border-bottom: 1px solid #fff;
  }
  .footer.index .lead {
    font-size: 1.3rem;
    text-align: right;
    top: 10vh;
    right: 0;
  }
  .footer.index .lead span {
    margin: -0.5vh 0 0;
    font-size: 160%;
    display: block;
  }
  .footer.index .brand {
    width: 15vw;
    position: absolute;
    top: 7vh;
    left: -3vw;
  }
  .footer.index .sitemap li a {
    padding: 1.3vh 0;
    display: block;
  }
  .footer.index .online {
    margin: 3vh 0;
    width: 100%;
    padding: 1.5vh 1.5vw;
    font-size: 0.9rem;
    order: 2;
  }
  .footer.index .online .btn {
    margin: 0;
    padding: 1.5vh 1.5vw;
    font-size: 1.1rem;
  }
  .footer.index .online .text {
    margin-top: 5px;
    font-size: 0.65rem;
    letter-spacing: 0.15em;
  }
  .footer.index .sub {
    margin: 1.5vh 0 0;
    width: 100%;
    justify-content: center;
  }
  .footer.index .sub li {
    margin-bottom: 3rem;
    font-size: 0.65rem;
    letter-spacing: 0.1em;
  }
  .footer.index .corporation {
    margin: 1.5vh auto 0;
    padding: 1.5vh 0 10vh;
    width: calc(100% - 10vw);
    border-top: 1px solid #fff;
    flex-flow: row nowrap;
  }
  .footer.index .corporation .logo {
    width: 15vw;
  }
  .footer.index .corporation .text {
    margin: 0 0 0 3vw;
    font-size: 0.6rem;
    letter-spacing: 0.1em;
  }
  .footer.sub {
    padding: 10vh 0;
  }
  .footer.sub .flex {
    justify-content: center;
  }
  .footer.sub img {
    margin: 0 auto 5vw;
    height: 10vh;
  }
  .footer.sub ul {
    font-size: 0.7rem;
    letter-spacing: 0.1em;
  }
  .footer.sub li a {
    padding: 0.5vw 1.5vw;
    border-left: 1px solid #eee;
    display: block;
  }
  .footer.sub li:first-of-type a {
    border: none;
  }
}
@media (min-width: 769px) {
  .footer.index {
    background: url("../img/footer_bg_pc.jpg") 50% 50% no-repeat;
    background-size: cover;
    background-attachment: fixed;
  }
  .footer.index h2 {
    margin: 50px 0 20px;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
  }
  .footer.index .lead {
    font-size: min(5vw, 70px);
    text-align: right;
    top: 10vh;
    right: 0;
  }
  .footer.index .lead span {
    margin: -10px 0 0;
    font-size: 180%;
    display: block;
  }
  .footer.index .brand {
    margin: 0 0 0 -20px;
    width: 125px;
  }
  .footer.index .sitemap_wrap {
    display: flex;
    justify-content: space-between;
    position: relative;
  }
  .footer.index .sitemap_wrap .sitemap {
    margin: 0 0 40px;
    display: inline-block;
  }
  .footer.index .sitemap_wrap .sitemap li a {
    padding: 20px 20px 15px;
    display: block;
    position: relative;
  }
  .footer.index .sitemap_wrap .sitemap li a::after {
    content: "";
    width: 100%;
    height: 1px;
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
  }
  .footer.index .sitemap_wrap .sub {
    position: absolute;
    bottom: 280px;
    right: 0;
    width: 50%;
    margin: 40px 0 0;
  }
  .footer.index .sitemap_wrap .sub li {
    margin: 0;
  }
  .footer.index .corporation {
    position: absolute;
    bottom: 11vh;
    right: 5%;
  }
  .footer.index .corporation .logo {
    width: 100px;
  }
  .footer.index .corporation .text {
    margin: 0 0 0 20px;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
  }
  .footer.sub {
    padding: 100px 0;
  }
  .footer.sub .flex {
    justify-content: center;
  }
  .footer.sub p {
    width: 100%;
  }
  .footer.sub img {
    margin: 0 auto 50px;
    height: 10vh;
  }
  .footer.sub ul {
    font-size: 0.8rem;
    letter-spacing: 0.2em;
  }
  .footer.sub li a {
    padding: 5px 15px;
    border-left: 1px solid #eee;
    display: block;
  }
  .footer.sub li:first-of-type a {
    border: none;
  }
}

@-webkit-keyframes slide {
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes slide {
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
/*-------------------------------------------------------------------------*/
/*Javascript*/
/*　ハンバーガーボタン　*/
.hamburger {
  display: block;
  position: fixed;
  z-index: 3;
  right: 13px;
  top: 20%;
  width: 42px;
  height: 42px;
  cursor: pointer;
  text-align: center;
}

@media (max-width: 768px) {
  .hamburger.dis-sp {
    display: block;
  }
}
@media (min-width: 769px) {
  .hamburger.dis-sp {
    display: none;
  }
}
.hamburger a {
  display: block;
  height: 100%;
}

.hamburger span {
  display: block;
  position: absolute;
  width: 30px;
  height: 2px;
  left: 6px;
  background: #fff;
  transition: 0.3s ease-in-out;
}

.hamburger span:nth-child(1) {
  top: 10px;
}

.hamburger span:nth-child(2) {
  top: 20px;
}

.hamburger span:nth-child(3) {
  top: 30px;
}

/* ナビ開いてる時のボタン */
/* ?ボタンあるからいらないね？ */
/* .remodal-is-opened .hamburger span:nth-child(1) {
  top: 16px;
  left: 6px;
  background: #fff;
  transform: rotate(-45deg);
}

.remodal-is-opened .hamburger span:nth-child(2),
.remodal-is-opened .hamburger span:nth-child(3) {
  top: 16px;
  background: #fff;
  transform: rotate(45deg);
} */
/* モーダルのガタツキを抑える */
.modal-open {
  overflow: auto;
  padding-right: 0 !important;
}

.modal-open .modal {
  overflow-x: auto;
  padding-right: 0 !important;
}

.modal-backdrop {
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.modal-dialog {
  margin-top: 2.75rem;
}

.modal-header .close {
  position: relative;
  transform: rotate(135deg);
  text-shadow: 0 -1px 0 #000;
  left: 2.5rem;
  top: -2.5rem;
}

.modal-header .close:focus {
  transform: rotate(135deg);
  outline: none;
}

.modal-header .close i {
  color: #fff;
}

/* モーダル */
.remodal-wrapper {
  padding-top: 50px;
}
.remodal-wrapper:has(.remodal.glonav) {
  padding: 0;
}

.remodal {
  display: none;
  width: 100%;
  margin: 0 auto;
  padding-top: 3.5rem;
  text-align: left;
  vertical-align: top;
  background-color: transparent;
  color: #fff;
}
.remodal .remodal-close {
  left: unset;
  right: 1rem;
  top: 1rem;
}
.remodal .remodal-close::before {
  bottom: 0;
  margin: 0;
  border-radius: unset;
  background-color: unset;
  color: #fff;
  content: url(../img/icon-close_2.svg);
  line-height: 1;
}
.remodal .sitemap > li {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding: 1rem 1rem 0.6rem;
}
.remodal .sitemap > li:last-of-type {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.remodal .sitemap .sub-sitemap {
  padding-left: 1.5rem;
}
.remodal .sitemap .sub-sitemap li {
  display: flex;
  align-items: center;
  border-top: none;
}
.remodal .sitemap .sub-sitemap li:first-of-type {
  padding-top: 0.25rem;
}
.remodal .sitemap .sub-sitemap li::after {
  background: none;
}
.remodal .sitemap .sub-sitemap li a {
  font-size: 0.75em;
  padding: 0 0 0.5rem;
  width: 100%;
}
.remodal .sitemap .sub-sitemap li a::before {
  content: "- ";
}

.remodal-overlay {
  background: rgba(0, 0, 0, 0.8);
}

.remodal-close {
  left: unset;
  right: -1.5rem;
  top: -1.5rem;
}

.remodal-close::before {
  bottom: 0;
  margin: 0;
  border-radius: 1rem;
  background-color: #333;
  color: #fff;
  content: url(../img/icon-close.svg);
  line-height: 1;
}

*[data-remodal-target] {
  cursor: pointer;
}

/* モデル比較表 */
.comparison {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

@media (max-width: 767px) {
  .comparison {
    max-width: 100%;
  }
}
@media (min-width: 768px) {
  .comparison {
    max-width: 100%;
  }
}
@media (min-width: 1024px) {
  .comparison {
    max-width: 1024px;
  }
}
.comparison .contents_wrap {
  border: none;
  border-radius: unset;
  padding-right: 0;
}

@media (max-width: 767px) {
  .remodal.comparison {
    border-radius: 0;
    padding: 10px;
  }
  .remodal-wrapper {
    padding-top: 30px;
  }
}
.remodal.comparison .remodal-close {
  right: -0.5rem;
  top: -0.5rem;
}

.remodal.comparison .remodal-close::before {
  z-index: 1;
}

.remodal.comparison .contents_wrap {
  padding: 0;
}

.comparison_slider img {
  height: auto;
  width: 100%;
}

.slick-dots li {
  margin: 0;
}

.slick-dots li button:before {
  font-size: 1.5rem;
}

.slick-dots li.slick-active button:before {
  color: #fff;
}

/* スライダーナビの追従を禁止する */
@media (min-width: 768px) {
  .slider-nav.slick-slider .slick-track {
    transform: translate3d(0, 0, 0) !important;
  }
}
.slick-dots li button:before {
  color: #999;
}

/* 機能性のSVG */
.func_icon_wrap {
  position: relative;
}

.func_icon {
  position: absolute;
  top: 2%;
  left: 30%;
  width: 35%;
  left: 24.7%;
  width: 38.5%;
  z-index: 1;
  pointer-events: none;
}

section.function .tab-change .tab_con .slider p.func_icon_view {
  padding: 1rem;
  padding-bottom: 2rem;
  top: 44%;
  left: 22.5%;
  display: inline-block;
  width: auto;
  text-shadow: 0 0 0.5rem black;
}

@media (max-width: 768px) {
  section.function .tab-change .tab_con .slider p.func_icon_view {
    position: absolute;
    top: 19%;
    left: 42%;
    text-align: left;
    font-size: 1rem;
  }
}
@media (max-width: 545px) {
  section.function .tab-change .tab_con .slider p.func_icon_view {
    position: absolute;
    top: 6%;
  }
}
.slick-active .func_icon.loaded[data-func-svg^=icon]::after {
  display: block;
  width: 13%;
  position: absolute;
  top: 4%;
  right: -13%;
}

@media (max-width: 768px) {
  .func_icon {
    top: 19vw;
    left: 7%;
    width: 45.5%;
  }
  .slick-active .func_icon.loaded[data-func-svg^=icon]::after {
    bottom: -20%;
    left: -8.6%;
    top: unset;
    right: unset;
    width: 22%;
  }
}
@media (max-width: 545px) {
  .func_icon {
    top: 16vw;
    left: 7%;
    width: 53.5%;
  }
  .slick-active .func_icon.loaded[data-func-svg^=icon]::after {
    bottom: -20%;
    left: -8.6%;
    top: unset;
    right: unset;
    width: 22%;
  }
}
.slick-active .func_icon.loaded[data-func-svg=icon-refrigerator]::after {
  content: url("../img/func/icon/icon-refrigerator.svg");
}

.slick-active .func_icon.loaded[data-func-svg=icon-led]::after {
  content: url("../img/func/icon/icon-led.svg");
}

.slick-active .func_icon.loaded[data-func-svg=icon-music]::after {
  content: url("../img/func/icon/icon-music.svg");
}

.slick-active .func_icon.loaded[data-func-svg=icon-usb]::after {
  content: url("../img/func/icon/icon-usb.svg");
}

.slick-active .func_icon.loaded[data-func-svg=icon-wireless]::after {
  content: url("../img/func/icon/icon-wireless.svg");
}

.slick-active .func_icon.loaded[data-func-svg=icon-touch]::after {
  content: url("../img/func/icon/icon-touch.svg");
}

.slick-active .func_icon.loaded[data-func-svg=icon-cover]::after {
  content: url("../img/func/icon/icon-cover.svg");
}

/* 20220314 */
a.no_link {
  pointer-events: none;
}

.remodal-wrapper:after {
  height: 0;
}

.d-inline-block {
  display: inline-block !important;
}

.stretched-link::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  pointer-events: auto;
  content: "";
  background-color: rgba(0, 0, 0, 0);
}

.contact_cv {
  background-color: #666666;
  padding-top: 8rem;
  padding-bottom: 8rem;
}
.contact_cv .content {
  display: flex;
  width: 80%;
  max-width: 1200px;
  margin: 0 auto;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}
@media (max-width: 768px) {
  .contact_cv .content {
    flex-direction: column;
  }
}
.contact_cv .content .mail {
  font-size: 6rem;
  font-variation-settings: "wght" 100;
}
.contact_cv .content h2 {
  font-size: 1.5rem;
  text-align: left;
  margin-bottom: 1rem;
}
.contact_cv .content .button {
  background-color: #000;
  border-radius: 3px;
  transition: all 0.3s;
}
.contact_cv .content .button:hover {
  opacity: 0.7;
}
.contact_cv .content .button a {
  display: flex;
  align-items: center;
  padding: 2rem 3rem;
  white-space: nowrap;
  gap: 0.5rem;
  position: relative;
}
.contact_cv .content .button a .arrow {
  position: absolute;
  right: 1rem;
}/*# sourceMappingURL=common.css.map */