@charset "UTF-8";
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html,
body {
  padding: 0;
  margin: 0;
}

body {
  position: relative;
  font-family: "Inter", sans-serifddd;
}

img {
  width: 100%;
  height: auto;
  display: block;
  vertical-align: bottom;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

ul,
ol,
li {
  list-style: none;
  padding: 0;
  margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  padding: 0;
  margin: 0;
}

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

/*==========================================
共通
==========================================*/
.top_body {
  position: relative;
}

.inner {
  width: 1250px;
  max-width: 1250px;
  height: 100%;
}

.section-width {
  width: calc(100% - 50px);
  margin-left: auto;
}
@media screen and (max-width: 767px) {
  .section-width {
    width: 100%;
    margin: 0 auto;
  }
}

.left-lavel {
  position: absolute;
  top: 0px;
  left: 0;
  width: 50px; /* 横幅は好みで */
  height: 100%; /* 全画面高さ */
  background: #000000; /* デバッグ用背景 */
  color: #fff;
  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;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .left-lavel {
    display: none;
  }
}

/* ← この2行は必要。left-lavel_inner に display:flex を付け忘れると崩れやすい */
.left-lavel_inner {
  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-align: center;
      -ms-flex-align: center;
          align-items: center;
}

/* スクロールダウン（位置はお好みで） */
.scroll {
  position: absolute;
  top: 700px;
  left: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse; /* 下→上に積む */
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #fff;
}

/* 縦に、かつ下→上に並べる（Sが最下段になる） */
.scroll-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse; /* ★ ここを有効にする */
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 0.7rem;
  font-style: italic;
}

.scroll-text span {
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
}

.scroll-text2 {
  position: absolute;
  bottom: 100px;
  font-size: 0.9rem;
  letter-spacing: 3px;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  -webkit-animation: softBlink 1.5s ease-in-out infinite;
          animation: softBlink 1.5s ease-in-out infinite;
}

@-webkit-keyframes softBlink {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.3;
  } /* 真っ暗ではなく少し残す */
}

@keyframes softBlink {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.3;
  } /* 真っ暗ではなく少し残す */
}
/* 線のアニメーションはそのままでOK */
.scroll::before {
  -webkit-animation: scroll 3s infinite;
          animation: scroll 3s infinite;
  background-color: #ffffff;
  bottom: -115px;
  content: "";
  height: 100px;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 0.5px;
}

@-webkit-keyframes scroll {
  0% {
    -webkit-transform: scale(1, 0);
            transform: scale(1, 0);
    -webkit-transform-origin: 0 0;
            transform-origin: 0 0;
  }
  50% {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
    -webkit-transform-origin: 0 0;
            transform-origin: 0 0;
  }
  51% {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
    -webkit-transform-origin: 0 100%;
            transform-origin: 0 100%;
  }
  100% {
    -webkit-transform: scale(1, 0);
            transform: scale(1, 0);
    -webkit-transform-origin: 0 100%;
            transform-origin: 0 100%;
  }
}

@keyframes scroll {
  0% {
    -webkit-transform: scale(1, 0);
            transform: scale(1, 0);
    -webkit-transform-origin: 0 0;
            transform-origin: 0 0;
  }
  50% {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
    -webkit-transform-origin: 0 0;
            transform-origin: 0 0;
  }
  51% {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
    -webkit-transform-origin: 0 100%;
            transform-origin: 0 100%;
  }
  100% {
    -webkit-transform: scale(1, 0);
            transform: scale(1, 0);
    -webkit-transform-origin: 0 100%;
            transform-origin: 0 100%;
  }
}
/*==========================================
ヘッダー
==========================================*/
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
}

/*================
ヘッダートップ
=================*/
.header_tops {
  background: rgb(43, 43, 43);
  width: 100%;
  padding: 1.5px 0;
}

.header_tops_inner {
  width: 98%;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767px) {
  .header_tops_inner {
    display: block;
  }
}

.header_tops_nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767px) {
  .header_tops_nav {
    display: none;
  }
}

.header_tops_li:not(:nth-child(1)) {
  margin-left: 20px;
}

.header_tops_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.header_tops_nav-img {
  width: 45px;
  margin-right: 5px;
}

.header_tops_nav-img-stores {
  width: 25px;
  height: 100%;
}

.header_tops_nav-img-company {
  width: 25px;
  height: 100%;
}

.header_tops_nav-text {
  color: white;
  font-size: 0.85rem;
}

.header_info-texts {
  overflow: hidden; /* はみ出した部分を隠す */
  white-space: nowrap; /* テキストを改行させない */
  width: 100%; /* 親幅いっぱい */
  margin-left: 20px;
}
@media screen and (max-width: 767px) {
  .header_info-texts {
    display: none;
  }
}

.header_info-text {
  display: inline-block;
  padding-left: 100%; /* 右からスタート */
  -webkit-animation: marquee 14s linear infinite;
          animation: marquee 14s linear infinite; /* 無限ループで左から右へ */
  color: white;
  font-size: 0.9rem;
  margin-left: 30px;
}

.header_info-texts-sp {
  overflow: hidden; /* はみ出した部分を隠す */
  white-space: nowrap; /* テキストを改行させない */
  width: 100%; /* 親幅いっぱい */
  margin-left: 20px;
  display: none;
}
@media screen and (max-width: 767px) {
  .header_info-texts-sp {
    margin-left: 0;
    background-color: black;
    display: block;
  }
}

.header_info-text-sp {
  display: inline-block;
  padding-left: 100%; /* 右からスタート */
  -webkit-animation: marquee 14s linear infinite;
          animation: marquee 14s linear infinite; /* 無限ループで左から右へ */
  color: white;
  font-size: 0.9rem;
  margin-left: 30px;
}

@-webkit-keyframes marquee {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}

@keyframes marquee {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}
/*================
ヘッダーsecond
=================*/
.header_secondtops {
  background-color: rgb(104, 104, 104);
  position: relative;
}
@media screen and (max-width: 767px) {
  .header_secondtops {
    background-color: black;
  }
}

.header_secondtops_li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: right;
      -ms-flex-pack: right;
          justify-content: right;
}

.header_secondtops_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 20px;
}

.headeer_secondtops_item-stores {
  display: none;
}

.header_seconds_nav-img-stores {
  width: 28px;
}

.header_seconds_nav-img-contact {
  width: 28px;
}

.header_secondtops_nav-img {
  margin-right: 5px;
}

.header_secondtops_nav-text {
  color: white;
  font-size: 0.8rem;
}

.header_secondtops_item-wheelloarder-btn {
  background-color: black;
}

.header_secondtops_nav-img-wheelloader-img {
  width: 35px;
  margin: 0 auto;
}

.header_secondtops_nav-img-wheelloader-text {
  background-color: orange;
  color: white;
  font-size: 0.7rem;
  padding: 0 5px;
}

.header_logos {
  position: absolute;
  top: 0;
  left: 0;
  width: 250px;
  padding: 20px 20px 20px 30px;
  background-color: black;
}
@media screen and (max-width: 767px) {
  .header_logos {
    width: 150px;
    padding: 5px;
  }
}

.header_logo {
  font-size: 24px;
  font-weight: bold;
  font-style: italic;
  color: white;
}
@media screen and (max-width: 767px) {
  .header_logo {
    font-size: 18px;
  }
}

.header_logo-text {
  font-size: 0.6rem;
  color: white;
  font-style: italic;
  margin-top: 5px;
}

/*==========================================
トップmain
==========================================*/
.top_mains {
  height: 100%;
  position: relative;
}

.top_mains_img {
  height: 100vh;
  width: 100%;
  overflow: hidden; /* はみ出た部分を隠す */
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.top-pc-img {
  display: block;
}
@media screen and (max-width: 1249px) {
  .top-pc-img {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .top-pc-img {
    display: none;
  }
}

.top-tab-img {
  display: none;
}
@media screen and (max-width: 1249px) {
  .top-tab-img {
    display: block;
  }
}
@media screen and (max-width: 767px) {
  .top-tab-img {
    display: none;
  }
}

.top-sp-img {
  display: none;
}
@media screen and (max-width: 1249px) {
  .top-sp-img {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .top-sp-img {
    display: block;
  }
}

.catchcopy {
  position: absolute;
  right: 30px;
  top: 100px;
  z-index: 5;
  color: white;
  font-size: 2.1rem;
  font-family: "Kiwi Maru", serif;
  font-weight: 500;
  font-style: normal;
  text-shadow: 0 0 5px #00f, 0 0 10px #00f, 0 0 20px #0ff;
}
@media screen and (max-width: 767px) {
  .catchcopy {
    font-size: 1.2rem;
    width: 100%;
    right: 0;
    text-align: center;
  }
}

/*==========================================
バナー
==========================================*/
.banners_img-pc {
  display: block;
}
@media screen and (max-width: 767px) {
  .banners_img-pc {
    display: none;
  }
}

.banners_img-sp {
  display: none;
}
@media screen and (max-width: 767px) {
  .banners_img-sp {
    display: block;
  }
}

/*==========================================
ホイールローダー一覧
==========================================*/
.wheelloaders {
  padding: 100px 0 50px;
}
@media screen and (max-width: 767px) {
  .wheelloaders {
    padding: 80px 0 20px;
  }
}

.wheelloaders_inner {
  width: 95%;
  margin: 0 auto;
}

.wheelloaders_titles {
  margin-bottom: 20px;
  text-align: center;
}

.wheelloaders_title {
  font-size: 1.5rem;
  font-weight: bold;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767px) {
  .wheelloaders_title {
    display: block;
  }
}

.wheelloaders_title-1 {
  font-style: italic;
  font-weight: bold;
  margin-right: 10px;
  font-size: 2rem;
}

@media screen and (max-width: 767px) {
  .wheelloaders_title-2 {
    font-size: 1.1rem;
  }
}

.wheelloaders_titles-text {
  font-size: 0.9rem;
}

.wheelloaders_items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.wheelloaders_item {
  position: relative;
  width: 25%;
  padding: 10px 20px;
  border: 0.5px solid gray;
  background-color: white;
  z-index: 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.wheelloaders_item::before {
  position: absolute;
  content: "";
  width: 20%;
  height: 2px;
  background-color: orange;
  top: 0;
  left: 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.wheelloaders_item:hover {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
  -webkit-transition: 0.5s;
  transition: 0.5s;
  z-index: 1;
  background-color: rgb(238, 238, 238);
  cursor: pointer;
}
.wheelloaders_item:hover::before {
  width: 100%;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
@media screen and (max-width: 1249px) {
  .wheelloaders_item {
    width: 50%;
    margin: 0 auto;
  }
}
@media screen and (max-width: 767px) {
  .wheelloaders_item {
    width: 95%;
    margin: 0 auto;
  }
}

.wheelloaders_item-imgs {
  width: 200px;
  margin: 0 auto;
}
.wheelloaders_item-imgs img {
  display: block;
}

.wheelloaders_item-names {
  text-align: center;
  font-size: 1.2rem;
  font-weight: bold;
  margin: 20px 0;
}
@media screen and (max-width: 767px) {
  .wheelloaders_item-names {
    font-size: 1.5rem;
  }
}

.wheelloaders_item-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 767px) {
  .wheelloaders_item-container {
    display: block;
  }
}

.wheelloaders_item-details {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 55%;
}
@media screen and (max-width: 767px) {
  .wheelloaders_item-details {
    width: 100%;
  }
}

.wheelloaders_item-detail {
  position: relative;
  width: 50%;
  padding-left: 7px;
  margin-top: 5px;
}
.wheelloaders_item-detail::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 1.5px; /* 線の太さ */
  height: 85%; /* 見出しの高さに合わせる */
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background-color: #333; /* 線の色 */
}
@media screen and (max-width: 767px) {
  .wheelloaders_item-detail {
    width: 33%;
  }
}

.wheelloaders_item-detail-ruby {
  font-size: 0.7rem;
  margin-bottom: 2px;
}

.wheelloaders_item-detail-text {
  font-weight: bold;
  font-size: 0.9rem;
}

.wheelloaders_item-prices {
  width: 44%;
  margin-top: auto;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .wheelloaders_item-prices {
    width: 100%;
    margin-left: auto;
    margin-top: 30px;
  }
}

.wheelloaders_item-price-text {
  font-size: 0.7rem;
}
@media screen and (max-width: 767px) {
  .wheelloaders_item-price-text {
    font-size: 1rem;
  }
}

.wheelloaders_item-price-numbers {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
}

.wheelloaders_item-price-number {
  font-size: 4rem;
  font-weight: bold;
  color: red;
}
@media screen and (max-width: 767px) {
  .wheelloaders_item-price-number {
    font-size: 5rem;
  }
}

.wheelloaders_item-price-unit {
  font-weight: bold;
  font-size: 1.2rem;
  margin-left: 5px;
}

.wheelloaders_item-prices-others {
  text-align: left;
  width: 380px;
  margin: 30px auto 0;
}

.wheelloaders_item-prices-other {
  font-weight: bold;
}
.wheelloaders_item-prices-other span {
  font-size: 0.8rem;
  margin-left: 10px;
}

.wheelloaders_item-prices-other-tax {
  font-size: 0.7rem;
  margin-left: 10px;
}

.wheelloaders_item-prices-require {
  color: red;
  font-weight: bold;
}

/*==========================================
お知らせ
==========================================*/
.top_blogs_inner {
  max-width: 1250px;
  margin: 0 auto;
}

.top_blogs-items-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 20px;
}

.top_blogs-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 32px 16px;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.top_blogs-item {
  width: 300px;
  max-width: 100%;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  z-index: 0;
  -webkit-box-shadow: 0 0 8px gray;
          box-shadow: 0 0 8px gray;
}
.top_blogs-item:hover {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
  -webkit-transition: 0.5s;
  transition: 0.5s;
  z-index: 1;
}

.top_blogs-item-thumbnails {
  width: 100%;
  height: 200px;
  position: relative;
}
.top_blogs-item-thumbnails img {
  width: inherit;
  height: inherit;
}
.top_blogs-item-thumbnails::before {
  display: none;
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 200px;
  background-color: rgb(255, 150, 64);
  opacity: 0.5;
}

.top_blogs-item-contents {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: rgb(218, 218, 218);
  padding: 5px;
  margin-top: 2px;
}

.top_blogs-item-date {
  font-size: 0.7rem;
  width: 35%;
}

.top_blogs-item-title {
  font-size: 0.9rem;
  font-weight: bold;
  width: 65%;
}

/*==========================================
アクセスマップ
==========================================*/
.access {
  padding: 100px 0 150px 0;
}
@media screen and (max-width: 767px) {
  .access {
    padding: 50px 0 130px 0;
  }
}

.access_inner {
  width: 750px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .access_inner {
    width: 90%;
  }
}

.access_wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 767px) {
  .access_wrapper {
    display: block;
  }
}

.access_details {
  width: 40%;
}
@media screen and (max-width: 767px) {
  .access_details {
    width: 100%;
  }
}

.access_title {
  font-size: 2.4rem;
  font-weight: bold;
}

.access_ruby {
  font-size: 0.8rem;
}

.access_store-name {
  margin-top: 30px;
  font-weight: bold;
}

.access_address-number {
  margin-top: 20px;
}

.access_address {
  margin-bottom: 20px;
}

.access_tel {
  margin-bottom: 5px;
}

.access_maps {
  width: 60%;
}
@media screen and (max-width: 767px) {
  .access_maps {
    width: 100%;
    margin-top: 10px;
  }
}

.access_map {
  width: 100%;
  height: 100%;
}

/*==========================================
フッター
==========================================*/
.footer_underwrappers {
  padding: 15px 0;
  background-color: black;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767px) {
  .footer_underwrappers {
    display: block;
  }
}

.footer_underwrappers-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767px) {
  .footer_underwrappers-container {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-bottom: 10px;
  }
}

.footer_privacy {
  margin-left: 70px;
}
@media screen and (max-width: 767px) {
  .footer_privacy {
    margin: 0;
  }
}

.footer_privacy-link {
  color: white;
  font-size: 0.6rem;
}

.footer_stocks-links {
  margin-left: 40px;
}

.footer_stocks-link {
  color: white;
  font-size: 0.8rem;
}

.footer_copyright {
  margin-left: auto;
  color: white;
  font-size: 0.6rem;
  margin-right: 20px;
}
@media screen and (max-width: 767px) {
  .footer_copyright {
    text-align: center;
    margin: 0;
  }
}

.contact-btns {
  position: fixed;
  bottom: -10px;
  z-index: 100;
  left: 50%;
  -webkit-transform: translate(-45%, -50%);
          transform: translate(-45%, -50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 760px;
  -webkit-transition: 0.8s;
  transition: 0.8s;
  margin-left: auto;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 767px) {
  .contact-btns {
    width: 100%;
    margin: 0 auto;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
}

.mail-btns {
  margin: 0 10px;
  width: 320px;
}
@media screen and (max-width: 767px) {
  .mail-btns {
    width: 50%;
    margin: 0;
  }
}

.mail-contact {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 auto;
  padding: 30px 0;
  color: #543618;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  font-weight: 600;
  border-radius: 50px;
  border: 0.2rem solid #543618;
  -webkit-box-shadow: 0.2rem 0.2rem 0px 0.1rem #cccccc;
          box-shadow: 0.2rem 0.2rem 0px 0.1rem #cccccc;
  background-color: white;
  font-size: 1.2rem;
  width: 100%;
}
.mail-contact:hover {
  -webkit-transform: translate3d(0.2rem, 0.2rem, 0);
          transform: translate3d(0.2rem, 0.2rem, 0);
  -webkit-box-shadow: none;
          box-shadow: none;
  opacity: 1;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.mail-contact::after {
  content: "";
  width: 5px;
  height: 5px;
  border-top: 3px solid #543618;
  border-right: 3px solid #543618;
  -webkit-transform: rotate(45deg) translateY(-50%);
          transform: rotate(45deg) translateY(-50%);
  position: absolute;
  top: 50%;
  right: 20px;
  border-radius: 1px;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
@media screen and (max-width: 1249px) {
  .mail-contact {
    width: 100%;
    margin: 0 auto;
    padding: 30px 0;
  }
}
@media screen and (max-width: 767px) {
  .mail-contact {
    font-size: 0.8rem;
  }
}