@charset "UTF-8";

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500&display=swap');

:root {
  --con-width: 1000px;
  --mincho: "游明朝", Yu Mincho, YuMincho, "Hiragino Mincho ProN", serif;
  --border: #e0e0e0;
  --gray_back: #f1f1f1;
  --text_color: #3c4842;
  --color_1: #5bcc96;
  --color_2: #4cc8c4;
}

html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, small, strong, var, b, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary, time, mark, audio, video {
  background: transparent;
  border: 0;
  margin: 0;
  outline: 0;
  padding: 0;
  vertical-align: baseline;
}

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

* {
  min-height: 0vw;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  line-height: 1;
  color: var(--text_color);
}

h1, h2, h3, h4,h5 {
  font-weight: 500;
}

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

ol, ul {
  list-style: none;
}

em {
  font-style: normal;
}

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

input, select {
  vertical-align: middle;
}

img {
  display: block;
  border-style: none;
  font-size: 0;
  line-height: 0;
}

a {
  background: transparent;
  margin: 0;
  padding: 0;
  text-decoration: none;
  vertical-align: baseline;
}

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

input[type=radio],
input[type=checkbox] {
  display: none;
}

/* select要素の矢印を消す */
select::-ms-expand {
  display: none;
}

/* Androidで表示されるタップ時のオレンジの枠を消す */
button {
  box-shadow: none;
  outline: none;
}


@media screen and (max-width: 768px) {
  .sp_none {
    display: none;
  }
}
@media screen and (min-width: 769px) {
  .pc_none {
    display: none;
  }
}

.w100 {
  width: 100%;
}

.bold {
  font-weight: 500;
}

.fade {
  opacity: 0;
  transition: all 0.6s ease-out;
}

.fade_on {
  opacity: 1;
}

.movexl {
  opacity: 0;
  translate: -20px 0;
  transition: all 0.4s ease-out;
}

.movexr {
  opacity: 0;
  translate: 20px 0;
  transition: all 0.4s ease-out;
}

.movexl_on,
.movexr_on {
  opacity: 1;
  translate: 0 0;
}

.movey {
  opacity: 0;
  translate: 0 20px;
  transition: all 0.4s ease-out;
}

.movey_on {
  opacity: 1;
  translate: 0 0;
}

.move {
  opacity: 0;
}

.move_on {
  opacity: 1;
}

@keyframes f_a {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes m_y {
  0% {
    opacity: 0;
    translate: 0 20px;
  }
  100% {
    opacity: 1;
    translate: 0 0;
  }
}

/* ===================================
ヘッダー
------------------------------------*/
header {
  overflow: hidden;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
h1 {
  width: min(74%, 307px);
}

@media screen and (min-width:941px) {
  header {
    padding-left: 4%;
  }
  .pc_nav {
    ul {
      display: flex;
      align-items: center;
    }
    a {
      position: relative;
      display: block;
      margin-left: 4em;
      color: var(--text_color);
      transition: all 0.3s linear;
    }
    li:not(:last-child) a:hover {
      color: var(--color_1);
    }
    .btn {
      padding: 3em 1.5em 1.2em;
      background: var(--color_1) url(../img/icon-mail.svg) center top 1.2em no-repeat;
      background-size: 30px auto;
      color: #fff;
      &:hover {
        background: var(--color_2) url(../img/icon-mail.svg) center top 1.2em no-repeat;
        background-size: 30px auto;
      }
    }
  }
  #nav_area,
  #navBtn {
    display: none;
  }
}
@media screen and (max-width:940px) {
  header {
    padding: 4%;
  }
  .pc_nav {
    display: none;
  }
  #navBtn {
    position: relative;
    display: block;
    width: 35px;
    height: 25px;
    z-index: 1005;
    cursor: pointer;
    span {
      display: block;
      width: 100%;
      height: 1px;
      background: var(--text_color);
      transition: all 0.3s ease;
      &:nth-of-type(2) {
        margin-top: 11px;
      }
      &:nth-of-type(3) {
        margin-top: 11px;
      }
    }
    &.btn_close span {
      &:nth-of-type(1) {
        rotate: -315deg;
        translate: 0 12px;
        transform-origin: center;
        background: #fff;
      }
      &:nth-of-type(2) {
        opacity: 0;
      }
      &:nth-of-type(3) {
        rotate: 315deg;
        translate: 0 -12px;
        transform-origin: center;
        background: #fff;
      }
    }
  }
  #nav_area {
    visibility: hidden;
    opacity: 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 16% 10% 6%;
    background: var(--color_1);
    overflow: auto;
    z-index: 1001;
    transition:all 0.3s linear;
    &.open {
      visibility: visible;
      opacity: 1;
    }
    li a {
      display: block;
      margin: 20px 0;
      padding: 20px 0;
      text-align: center;
      color: #fff;
      font-weight: 500;
      line-height: 1.2;
      &.btn {
        margin-top: 3em;
        border: 1px solid #fff;
        background: url(../img/icon-mail.svg) center left 6% no-repeat;
        background-size: 2em auto;
      }
    }
  }
}

.fixed,
  .fixed body {
    height: 100%;
    overflow: hidden;
  }

/* ===================================
コンテンツ
------------------------------------*/
main {
  overflow: hidden;
}
.mv {
  padding: 4%;
  height: 87vh;
  max-height: 730px;
  h2 {
    font-size: clamp(42px, 11.2vw, 60px);
    line-height: 1.4;
    font-feature-settings: "palt";
    color: #fff;
    span {
      display: block;
      margin-top: 1em;
      font-size: clamp(11px, 2.9vw, 15px);
      font-weight: 400;
      font-feature-settings: normal;
    }
  }
  @media screen and (min-width:769px) {
    display: flex;
    align-items: center;
    background: url(../img/fv-pc.jpg) center center no-repeat;
    background-size: cover;
    h2 {
      letter-spacing: 0.03em;
    }
  }
  @media screen and (max-width:768px) {
    padding: 16% 6% 6%;
    background: url(../img/fv-sp.jpg) center top no-repeat;
    background-size: cover;
  }
}

.news {
  .inner {
    padding: 4%;
    background: var(--color_1);
    color: #fff;
  }
  h2 {
    font-size: clamp(35px, 9.333vw, 50px);
    span {
      display: block;
      margin-bottom: 0.2em;
      font-size: 16px;
      font-weight: 400;
    }
  }
  li {
    line-height: 1.6;
  }
  a {
    color: #fff;
  }
  @media screen and (min-width:769px) {
    padding-left: 4%;
    margin-top: -4%;
    .inner {
      display: flex;
    }
    h2 {
      margin-right: 2em;
    }
    ul {
      a {
        display: flex;
      }
      li + li {
        margin-top: 1em;
      }
      div {
        width: 6em;
        flex-shrink: 0;
        margin-right: 2em;
      }
    }
  }
  @media screen and (max-width:768px) {
    .inner {
      padding: 6%;
    }
    h2 {
      margin-bottom: 1em;
    }
    #new {
      div {
        margin: 1em 0 0.2em;
      }
    }
  }
}

.about {
  padding: min(27.466%, 150px) 4%;
  h2 {
    font-size: clamp(50px, 13.333vw, 60px);
    text-align: center;
    span {
      display: block;
      margin-bottom: 0.2em;
      font-size: 16px;
      font-weight: 400;
    }
  }
  p {
    margin: 4em auto 1.5em;
    padding: 0 2%;
    line-height: 2;
  }
  .iso {
    width: min(57.97%, 200px);
    margin: auto;
  }
  figcaption {
    margin-top: 0.5em;
    text-align: center;
    font-size: 14px;
  }
  
  .btn {
    display: block;
    width: min(90%, 314px);
    margin: auto;
    padding: 1.2em;
    border-radius: 100vh;
    background: var(--color_1) url(../img/arrow.svg) right 8% center no-repeat;
    background-size: 22px auto;
    font-size: 18px;
    color: #fff;
    text-align: center;
    transition: all 0.3s linear;
    &:hover {
      background: var(--color_2) url(../img/arrow.svg) right 4% center no-repeat;
    background-size: 22px auto;
    }
  }
  .move_on {
    .about_1 {
      animation: m_y 0.6s linear 0.4s both;
    }
    .about_3 {
      animation: m_y 0.6s linear 1s both;
    }
    .about_2 {
      animation: m_y 0.6s linear 1.4s both;
    }
  }
  @media screen and (min-width:769px) {
    p {
      width: 520px;
    }
    .box {
      position: relative;
      margin: -350px 0 36px;
      height: 470px;
     }
    .about_1 {
      width: 246px;
      position: absolute;
      left: 50%;
      transform: translateX(-570px);
    }
    .about_3 {
      width: 217px;
      position: absolute;
      top: 53px;
      left: 50%;
      transform: translateX(354px);
    }
    .about_2 {
      width: 168px;
      position: absolute;
      top: 262px;
      left: 50%;
      transform: translateX(311px);
    }
  }
  @media screen and (max-width:768px) {
    .box {
      margin: 8% 0;
     }
    .about_1 {
      width: 45.3%;
      margin: 0 auto 0 0;
    }
    .about_3 {
      width: 40%;
      margin: -47.246% 0 0 auto;
    }
    .about_2 {
      width: 30.869%;
      margin: -17.68% 18.26% 0 auto;
    }
  }
}

#product {
  padding: min(22.4%, 135px) 4%;
  h2 {
    max-width: 1200px;
    margin: auto;
    font-size: clamp(50px, 13.333vw, 60px);
    span {
      display: block;
      margin-bottom: 0.2em;
      font-size: 16px;
      font-weight: 400;
    }
  }
  .product_list {
    > li {
      margin-top: min(4%, 30px);
      padding: 10px;
      background: #fff;
    }
    h3 {
      padding: 0.5em;
      background: var(--color_1);
      color: #fff;
      text-align: center;
      font-size: 20px;
    }
    .detail {
      padding: 0.5em 0.5em 0.5em 2em;
      list-style: disc;
      line-height: 1.8;
    }
    p {
      padding: 0.5em 0.7em;
      font-size: 14px;
      line-height: 1.6;
      a {
        text-decoration: underline;
      }
    }
  }
  .move_on {
    > li:nth-child(1) {
      animation: m_y 0.4s linear 0.4s both;
    }
    > li:nth-child(2) {
      animation: m_y 0.4s linear 0.8s both;
    }
    > li:nth-child(3) {
      animation: m_y 0.4s linear 1.2s both;
    }
    > li:nth-child(4) {
      animation: m_y 0.4s linear 1.6s both;
    }
    > li:nth-child(5) {
      animation: m_y 0.4s linear 2s both;
    }
    > li:nth-child(6) {
      animation: m_y 0.4s linear 2.4s both;
    }
  }
  @media screen and (min-width:769px) {
    background: #d2effd url(../img/product-bg-pc.png) right top no-repeat;
    .product_list {
      max-width: 1200px;
      display: flex;
      justify-content: space-between;
      flex-wrap: wrap;
      margin: auto;
      > li {
        width: 32%;
      }
    }
  }
  @media screen and (max-width:768px) {
    background: #d2effd url(../img/product-bg-sp.png) center top no-repeat;
    background-size: 100% auto;
    h2 {
      margin-bottom: 8%;
    }
  }
}

#recruit {
  padding: min(15%, 80px) 4%;
  background: var(--color_1);
  color: #fff;
  h2 {
    display: inline-block;
    font-size: clamp(50px, 13.333vw, 60px);
    span {
      display: block;
      margin-bottom: 0.2em;
      font-size: 16px;
      font-weight: 400;
    }
  }
  div {
    text-align: center;
  }
  .ph {
    width: min(100%, 574px);
  }
  .no_rec {
    width: 90%;
    margin: 2em auto 0;
    padding: 1.5em;
    border: 1px solid #fff;
    border-radius: 100vh;
    text-align: center;
  }
  @media screen and (min-width:1000px) {
    display: flex;
    justify-content: center;
    align-items: center;
    h2 {
      text-align: left;
    }
    div {
      margin-left: 53px;
    }
    .no_rec {
      width: 313px;
    }
  }
  @media screen and (max-width:999px) {
    .ph {
      margin: 0 auto 4%;
    }
  }
}

#contact {
  padding: min(22.4%, 135px) 4%;
  h2 {
    margin-bottom: 0.6em;
    font-size: clamp(50px, 13.333vw, 60px);
    text-align: center;
    span {
      display: block;
      margin-bottom: 0.2em;
      font-size: 16px;
      font-weight: 400;
    }
  }
  p {
    padding: 0 2%;
    line-height: 2;
  }
  dl {
    max-width: 700px;
    margin: auto;
  }
  dt {
    margin: 1.6em 0 0.8em;
    span {
      color: #ff6565;
    }
  }
  input.txt,
  textarea {
    width: 100%;
    padding: 1.3em 1.5em;
    background: #ecf2ef;
    border-radius: 10px;
    font-size: 18px;
    &.w50 {
      width: 50%;
    }  
  }
  ::placeholder {
    color: #aaa;
    font-family: "Noto Sans JP", system-ui;
  }
  input.txt:focus,
  textarea:focus {
    outline: 2px solid var(--color_2);
  }
  .agree_check {
    margin: 40px 0;
    text-align: center;
    a {
      text-decoration: underline;
    }
    .checkbox-parts {
      position: relative;
      padding: 0.2em 0 0.2em 2.6em;
      cursor: pointer;
      line-height: 1.2;
    }
    .checkbox-parts::before {
      position: absolute;
      top: 50%;
      left: 0;
      translate: 0 -50%;
      width: 2em;
      height: 2em;
      content: "";
      border: 1px solid var(--text_color);
    }
    .checkbox-input:checked + .checkbox-parts::after {
      content: "";
      display: block;
      position: absolute;
      top: 50%;
      left: 0.1em;
      translate: 0 -50%;
      width: 1.8em;
      height: 1.8em;
      background: url(../img/check.svg) center center no-repeat;
      background-size: 100% auto;
    }
  }
  .form_btn {
    display: block;
    width: min(100%, 360px);
    margin: 3em auto 0;
    padding: 1em;
    background: var(--color_1) url(../img/arrow.svg) right 8% center no-repeat;
    background-size: 22px auto;
    border-radius: 100vh;
    text-align: center;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 18px;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s linear;
    &:hover {
      background: var(--color_2) url(../img/arrow.svg) right 4% center no-repeat;
      background-size: 22px auto;
    }
  }
  @media screen and (min-width:769px) {
    p {
      text-align: center;
    }
  }
}

/* ===================================
問い合わせ下層ページ
------------------------------------*/
.contact {
  padding: min(13.3%, 115px) 4%;
  h2 {
    margin-bottom: 0.6em;
    font-size: clamp(50px, 13.333vw, 60px);
    text-align: center;
    span {
      display: block;
      margin-bottom: 0.2em;
      font-size: 16px;
      font-weight: 400;
    }
  }
  p {
    line-height: 2;
    text-align: center;
    &.thanks {
      margin-top: 6em;
    }
    &.conf {
      @media screen and (max-width:768px) {
        padding: 0 2%;
        text-align: left;
      }
    }
  }
  dl {
    max-width: 700px;
    margin: 5em auto;
    line-height: 2;
  }
  dt {
    margin: 1.6em 0 0.4em;
  }
  .next_btn {
    display: block;
    width: min(100%, 360px);
    margin: 3em auto 0;
    padding: 1em;
    background: var(--color_1) url(../img/arrow.svg) right 8% center no-repeat;
    background-size: 22px auto;
    border-radius: 100vh;
    text-align: center;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 18px;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s linear;
    &:hover {
      background: var(--color_2) url(../img/arrow.svg) right 4% center no-repeat;
      background-size: 22px auto;
    }
  }
  .prev_btn {
    display: block;
    width: min(50%, 188px);
    margin: 2em auto 0;
    padding: 1em;
    background: #bbccc4;
    border-radius: 100vh;
    text-align: center;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 18px;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s linear;
    &:hover {
      opacity: 0.7;
    }
  }
}

/* ===================================
会社情報ページ
------------------------------------*/
.company {
  padding: min(13.3%, 115px) 0;
  h2 {
    margin: 0 auto 0.7em;
    padding: 0 4%;
    font-size: clamp(50px, 13.333vw, 60px);
    span {
      display: block;
      margin-bottom: 0.2em;
      font-size: 16px;
      font-weight: 400;
    }
  }
  h3 {
    font-size: clamp(30px, 8vw, 40px);
  }
  .profile {
    max-width: 1154px;
    margin: auto;
    padding: min(20%, 120px) 4%;
    .iso {
      width: min(90%, 320px);
      margin: min(6%, 50px) auto 0;
    }
    dl {
      line-height: 2;
      border-top: 1px solid var(--border);
      a {
        color: var(--text_color);
      }
    }
    @media screen and (min-width:769px) {
      dl {
        display: flex;
        flex-wrap: wrap;
        margin-top: 3em;
      }
      dt {
        width: 32%;
        padding: 2em 0;
        border-bottom: 1px solid var(--border);
      }
      dd {
        width: 68%;
        padding: 2em 0;
        border-bottom: 1px solid var(--border);
      }
    }
    @media screen and (max-width:768px) {
      dl {
        margin-top: 2em;
      }
      dt {
        padding: 1.5em 0 0;
      }
      dd {
        padding: 0.6em 0 1.5em;
        border-bottom: 1px solid var(--border);
      }
    }
  }

  .client {
    padding: min(20%, 115px) 4%;
    background: var(--color_1);
    .box {
      max-width: 1000px;
      margin: auto;
      padding: min(12%, 50px) min(6%, 50px);
      background: #fff;
    }
    h3 {
      position: relative;
      span {
        position: relative;
        background: #fff;
        padding: 0 0.8em 0 0;
        z-index: 2;
      }
      &::after {
        position: absolute;
        content: "";
        display: block;
        top: 50%;
        width: 100%;
        height: 1px;
        background: var(--text_color);
      }
    }
    p {
      margin-top: min(6%, 40px);
      line-height: 2;
    }
  }

  .iso_area {
    max-width: 1154px;
    margin: auto;
    padding: 0 4% min(20%, 120px);
    h3 {
      margin-bottom: 2em;
      font-size: clamp(18px, 4.8vw, 24px);
      line-height: 1.4;
    }
    p {
      line-height: 2;
    }
  }

  .map {
    @media screen and (min-width:769px) {
      display: flex;
      align-items: flex-start;
      li {
        position: relative;
        width: 50%;
      }
      .name {
        position: absolute;
        display: inline-block;
        content: "";
        top: 0;
        right: 0;
        padding: 1em 2em;
        background: var(--color_1);
        color: #fff;
      }
      iframe {
        display: block;
        width: 100%;
      }
    }
    @media screen and (max-width:768px) {
      .name {
        padding: 1em 2em;
        background: var(--color_1);
        color: #fff;
      }
    }
    iframe {
      width: 100%;
      height: 300px;
    }
  }
}

/* ===================================
お知らせ一覧
------------------------------------*/
.news_list {
  max-width: 1154px;
  margin: auto;
  padding: min(13.3%, 115px) 4%;
  h2 {
    margin: 0 auto min(10%, 90px);
    font-size: clamp(50px, 13.333vw, 60px);
    line-height: 1.2;
    span {
      display: block;
      margin-bottom: 0.2em;
      font-size: 16px;
      font-weight: 400;
    }
  }
  .new {
    border-top: 1px solid var(--border);
    a {
      display: block;
      padding: 2em 1em;
      color: #000;
      line-height: 1.6;
      transition: all 0.3s linear;
      &:hover {
        background: var(--gray_back);
      }
    }
    li {
      border-bottom: 1px solid var(--border);
    }
    div {
      color: var(--color_2);
    }
  }
  @media screen and (min-width:769px) {
    .new {
      a {
        display: flex;
      }
      div {
        width: 8em;
      }
    }
  }
  .page {
    display: flex;
    justify-content: center;
    margin-top: 5em;
    a {
      color: #000;
      transition: all 0.3s linear;
      &:hover {
        color: var(--color_2);
      }
    }
    li + li {
      margin-left: 3em;
    }
  }
}

/* ===================================
お知らせ詳細
------------------------------------*/
.news_detail {
  max-width: 1154px;
  margin: auto;
  padding: min(13.3%, 115px) 4%;
  h2 {
    margin: 0 auto min(10%, 90px);
    font-size: clamp(50px, 13.333vw, 60px);
    line-height: 1.2;
    span {
      display: block;
      margin-bottom: 0.2em;
      font-size: 16px;
      font-weight: 400;
    }
  }
  #info_title {
    margin-top: 1em;
    font-size: 20px;
    line-height: 1.6;
  }
  p {
    margin: 4em 0 2em;
    line-height: 2;
  }
  dl {
    max-width: 500px;
    padding: 1em 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    line-height: 2;
    dt {
      margin-bottom: 1.5em;
      text-align: center;
    }
  }
  .in_btn {
    display: block;
    width: 250px;
    padding: 1em;
    border-radius: 100vh;
    background: #ef5694 url(../img/icon-insta.png) left 10% center no-repeat;
    background-size: 1.5em auto;
    color: #fff;
    text-align: center;
    transition: all 0.3s linear;
    &:hover {
      background: #9f58a5 url(../img/icon-insta.png) left 10% center no-repeat;
      background-size: 1.5em auto;
    }
  }
  .btn a {
    display: block;
    width: 250px;
    margin: 8em auto 0;
    padding: 1em;
    border-radius: 5px;
    background: var(--color_1);
    color: #000;
    text-align: center;
    color: #fff;
  }
}

/* ===================================
プライバシーポリシー
------------------------------------*/
.privacy {
  max-width: 1154px;
  margin: auto;
  padding: min(13.3%, 115px) 4%;
  h2 {
    margin: 0 auto min(10%, 90px);
    font-size: clamp(50px, 13.333vw, 60px);
    line-height: 1.2;
    span {
      display: block;
      margin-bottom: 0.2em;
      font-size: 16px;
      font-weight: 400;
    }
  }
  h3 {
    margin: 2.5em 0 1em;
    padding-bottom: 0.6em;
    font-size: 20px;
    border-bottom: 1px solid var(--color_1);
    line-height: 1.4;
  }
  p {
    margin: 1em 0;
    line-height: 2;
  }
}


/* ===================================
フッター
------------------------------------*/
footer {
  overflow: hidden;
  padding: min(30%, 130px) 4% min(2%, 23px);
  ul {
    a {
      color: var(--text_color);
      transition: all 0.3s linear;
      &:hover {
        color: var(--color_1);
      }
    }
  }
  .f_logo {
    display: block;
    width: min(59%, 203px);
    margin: auto;
  }
  .insta_btn {
    display: block;
    width: 48px;
    margin: auto;
    padding: 12px;
    background: var(--color_1);
    border-radius: 50%;
    transition: all 0.3s linear;
    &:hover {
      background: var(--color_2);
    }
  }
  small {
    display: block;
    margin-top: 2em;
    text-align: center;
    font-size: 12px;
  }
  @media screen and (min-width:769px) {
    ul {
      display: flex;
      justify-content: center;
      margin: 3em 0 2em;
      li + li {
        margin-left: 2.5em;
      }
    }
  }
  @media screen and (max-width:768px) {
    ul {
      margin: 4em 0 2em;
      border-top: 1px solid var(--border);;
      li {
        border-bottom: 1px solid var(--border);
      }
      a {
        display: block;
        padding: 1.6em 1em;
        background: url(../img/arrow_gray.svg) right 4% center no-repeat;
        background-size: 15px auto;
      }
    }
  }
}
