@charset "UTF-8";
@import url("https://use.fontawesome.com/releases/v6.6.0/css/all.css");
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;500;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Shippori+Mincho&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap");
body.fixed {
  overflow: hidden;
}

/*============================
#site-logo
============================*/
#site-logo {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 9;
  transition: 0.3s;
  display: flex;
  width: 251px;
  height: 61px;
  padding: 0;
  margin: 0;
}
@media screen and (max-width: 768px) {
  #site-logo {
    width: 209px;
    height: 51px;
  }
}
#site-logo img {
  display: block;
  width: 251px;
  height: 61px;
  margin: 0;
  padding: 0;
}
@media screen and (max-width: 768px) {
  #site-logo img {
    width: 209px;
    height: 51px;
  }
}
#site-logo a {
  display: block;
  transition: 0.3s;
  position: absolute;
  top: 0;
  height: 100%;
}
#site-logo a:hover {
  background: rgba(255, 255, 255, 0.3);
}
#site-logo a:nth-of-type(1) {
  width: 151px;
  left: 0;
}
@media screen and (max-width: 768px) {
  #site-logo a:nth-of-type(1) {
    width: 126px;
  }
}
#site-logo a:nth-of-type(2) {
  width: 100px;
  right: 0;
}
@media screen and (max-width: 768px) {
  #site-logo a:nth-of-type(2) {
    width: 83px;
  }
}

/*============================
ハンバーガー　ボタン
============================*/
.burger-btn {
  margin: auto;
  transition: 0.3s;
  padding-top: 1.9765739385vw;
  width: 3.8067349927vw;
  height: 4.5387994143vw;
  position: fixed;
  right: 7.2474377745vw;
  mix-blend-mode: difference;
  z-index: 99;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .burger-btn {
    padding-top: 20px;
    width: 52px;
    height: 52px;
  }
}
.burger-btn span {
  display: block;
  position: relative;
  width: 3.8067349927vw;
  height: 1.1713030747vw;
  transition: 0.3s;
  transform-origin: right top;
  z-index: 99;
}
@media screen and (max-width: 768px) {
  .burger-btn span {
    width: 100%;
    height: 16px;
  }
}
.burger-btn span i {
  display: block;
  height: 1px;
  background: #fff;
  position: absolute;
  transition: 0.3s;
}
.burger-btn span i:nth-of-type(1) {
  width: 100%;
  top: 0;
  left: 0;
}
.burger-btn span i:nth-of-type(2) {
  width: 59.6%;
  bottom: 0;
  right: 0;
}
.burger-btn:hover span {
  transform: scaleX(1.385);
}
@media screen and (max-width: 768px) {
  .burger-btn:hover span {
    transform: none;
  }
}
.burger-btn.close-btn {
  top: 0 !important;
}
.burger-btn.close-btn span:hover {
  transform: none;
}
.burger-btn.close-btn span i {
  height: 1px !important;
  width: 43px !important;
}
.burger-btn.close-btn span i:nth-of-type(1) {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
}
.burger-btn.close-btn span i:nth-of-type(2) {
  bottom: auto;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
}
.burger-btn.close-btn:hover span {
  transform: none;
}

/*============================
#gnav
============================*/
#gnav {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 99;
  transition: 0.3s;
  visibility: hidden;
  opacity: 0;
}
@media screen and (max-width: 768px) {
  #gnav {
    display: block;
    padding: 60px 35px 120px;
    overflow-y: scroll;
    /*IE, Edge*/
    -ms-overflow-style: none;
    /*Firefox*/
    scrollbar-width: none;
  }
  #gnav::-webkit-scrollbar {
    display: none;
  }
}
#gnav.is-show {
  visibility: visible;
  opacity: 1;
}
#gnav > .flex {
  width: 100%;
  max-width: 69.9121522694vw;
  display: flex;
  align-items: center;
  position: relative;
}
@media screen and (max-width: 768px) {
  #gnav > .flex {
    width: auto;
    display: block;
    max-width: none;
  }
}
#gnav > .flex a {
  color: inherit;
}
#gnav > .flex * {
  margin: 0;
  padding: 0;
}
#gnav > .flex .gnav-pic {
  flex: 0 0 49.5287958115%;
  aspect-ratio: 473/624;
  position: relative;
  background: url(../img/gnav-pic-00.jpg) no-repeat center;
  background-size: cover;
}
@media screen and (max-width: 768px) {
  #gnav > .flex .gnav-pic {
    display: none;
  }
}
#gnav > .flex .gnav-pic img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.3s;
  opacity: 0;
}
#gnav > .flex .gnav-pic img.is-show {
  z-index: 1;
  opacity: 1;
}
#gnav > .flex .gnav-nav > ul {
  padding-left: 6.2225475842vw;
  display: flex;
  flex-direction: column;
  gap: 2.196193265vw;
}
@media screen and (max-width: 768px) {
  #gnav > .flex .gnav-nav > ul {
    padding-left: 0;
    display: block;
  }
}
#gnav > .flex .gnav-nav > ul a {
  transition: 0.3s;
}
#gnav > .flex .gnav-nav > ul a:hover {
  opacity: 0.5;
}
@media screen and (max-width: 768px) {
  #gnav > .flex .gnav-nav > ul > li {
    padding-bottom: 10px;
  }
}
#gnav > .flex .gnav-nav > ul > li > a {
  display: block;
  position: relative;
  font-family: "Open Sans";
  font-weight: normal;
  font-size: 2.196193265vw;
  letter-spacing: 0.1em;
  line-height: 1;
  text-align: left;
  color: #000;
  padding: 0.5em 0;
}
@media screen and (max-width: 768px) {
  #gnav > .flex .gnav-nav > ul > li > a {
    font-size: 30px;
    padding: 0;
    margin-bottom: 1em;
  }
}
#gnav > .flex .gnav-nav > ul > li > a::before {
  content: "";
  display: block;
  width: 5.1244509517vw;
  height: 1px;
  position: absolute;
  left: -6.2225475842vw;
  top: 50%;
  transform: translateY(-50%) scale(0, 1);
  transition: 0.3s;
  transform-origin: right 0;
  background: #000;
}
@media screen and (max-width: 768px) {
  #gnav > .flex .gnav-nav > ul > li > a::before {
    display: none;
  }
}
#gnav > .flex .gnav-nav > ul > li ul li a {
  display: block;
  font-family: "Noto Sans JP", sans-serif !important;
  font-weight: 400;
  font-weight: normal;
  font-size: 0.878477306vw;
  letter-spacing: 0.05em;
  line-height: 2.1666666667;
  text-align: left;
  color: #000;
}
@media screen and (max-width: 768px) {
  #gnav > .flex .gnav-nav > ul > li ul li a {
    font-size: 16px;
    line-height: 1.625;
    margin-bottom: 2em;
  }
}
#gnav > .flex .gnav-nav > ul > li.on > a {
  opacity: 0.5;
}
#gnav > .flex .gnav-nav > ul > li.on > a::before {
  content: "";
  transform: translateY(-50%) scale(1, 1);
}

/*============================
.pagettl
============================*/
.pagettl {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .pagettl {
    display: block;
  }
}
.pagettl figure {
  flex: 0 0 58.9311859444vw;
}
@media screen and (max-width: 768px) {
  .pagettl figure {
    padding-left: 20px;
  }
}
.pagettl div {
  padding-left: 7.027818448vw;
}
@media screen and (max-width: 768px) {
  .pagettl div {
    padding: 0 35px;
  }
}
.pagettl div h1 {
  font-family: "Shippori Mincho";
  font-weight: normal;
  font-size: 2.9282576867vw;
  letter-spacing: 0.1em;
  line-height: 1.75;
  text-align: left;
  color: #000;
  margin: 0;
  padding: 1em 0 0 0;
}
@media screen and (max-width: 768px) {
  .pagettl div h1 {
    font-size: 24px;
    line-height: 1.67;
    text-align: left;
    color: #0b0b0b;
    padding: 1.9em 0 0;
  }
}
.pagettl div h1 small {
  display: block;
  font-family: "Open Sans";
  font-weight: normal;
  font-size: 1.4641288433vw;
  line-height: 1;
  letter-spacing: 0;
  color: #a8a8a8;
  margin-bottom: 1.35em;
}
@media screen and (max-width: 768px) {
  .pagettl div h1 small {
    font-size: 12px;
    letter-spacing: 0.1em;
    text-align: left;
    color: #a8a8a8;
    margin: 0 0 0.5em;
  }
}

/*============================
.layout2clm
============================*/
.layout2clm {
  display: flex;
  flex-direction: row-reverse;
  padding: 0 7.2474377745vw;
}
@media screen and (max-width: 768px) {
  .layout2clm {
    flex-direction: column;
    padding: 0 35px;
  }
}
.layout2clm .layout2clm-r {
  flex: 0 0 11.7862371889vw;
  display: flex;
  align-items: flex-end;
  padding-top: 7.1742313324vw;
}
@media screen and (max-width: 768px) {
  .layout2clm .layout2clm-r {
    display: block;
    flex: 1;
    padding: 0;
  }
}
.layout2clm .layout2clm-r nav.anchor-link {
  position: sticky;
  left: 0;
  bottom: 5.270863836vw;
}
@media screen and (max-width: 768px) {
  .layout2clm .layout2clm-r nav.anchor-link {
    position: static;
    padding-top: 31px;
  }
}
.layout2clm .layout2clm-r nav.anchor-link ul {
  position: relative;
  left: 2.7086383602vw;
}
@media screen and (max-width: 768px) {
  .layout2clm .layout2clm-r nav.anchor-link ul {
    position: static;
  }
}
.layout2clm .layout2clm-l {
  flex: 1;
}

/*============================
#lineup
============================*/
#lineup {
  background: #ECF2F5;
  padding: 6.588579795vw 0 5.3440702782vw;
}
@media screen and (max-width: 768px) {
  #lineup {
    padding: 58px 20px 110px;
  }
}
#lineup .flex {
  align-items: center;
  max-width: 78.3308931186vw;
  margin: auto;
  gap: 8.5651537335vw;
}
@media screen and (max-width: 768px) {
  #lineup .flex {
    max-width: none;
  }
}
#lineup .flex div:nth-of-type(1) figure {
  width: 32.6500732064vw;
}
#lineup .flex div:nth-of-type(2) h2 {
  font-family: "Shippori Mincho";
  font-weight: normal;
  font-size: 2.3426061493vw;
  letter-spacing: 0.1em;
  line-height: 1.5625;
  text-align: left;
  color: #0b0b0b;
}
@media screen and (max-width: 768px) {
  #lineup .flex div:nth-of-type(2) h2 {
    text-align: center;
    font-size: 20px;
    line-height: 2;
    margin-bottom: 38px;
  }
}
@media screen and (max-width: 768px) {
  #lineup .flex div:nth-of-type(2) figure {
    margin-bottom: 77px;
  }
}
#lineup .flex div:nth-of-type(2) .btn {
  margin: 4.0263543192vw auto 0;
}

/*============================
anchor-link
============================*/
.anchor-link {
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .anchor-link ul {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
  }
}
.anchor-link ul li {
  font-size: 0.878477306vw;
  letter-spacing: 0.1em;
  line-height: 1;
  text-align: left;
  border-left: 1px solid #A8A8A8;
  font-family: "Open Sans";
  font-size: 0.878477306vw;
  letter-spacing: 0.1em;
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  .anchor-link ul li {
    flex: 0 0 calc((100% - 32px) / 2);
    font-size: 12px;
    line-height: 1.5;
    color: #909090;
    border-left: none !important;
    border-bottom: 1px solid #d6d6d6;
  }
}
.anchor-link ul li a {
  color: #A8A8A8;
  display: block;
  padding: 0.5em 0.7320644217vw;
}
@media screen and (max-width: 768px) {
  .anchor-link ul li a {
    color: #909090;
    padding: 0 0 2px;
  }
}
.anchor-link ul li.uk-active {
  border-left: 1px solid #000;
}
.anchor-link ul li.uk-active a {
  color: #000;
}
@media screen and (max-width: 768px) {
  .anchor-link ul li.uk-active a {
    color: inherit;
  }
}

/*============================
#bottom-bn
============================*/
#bottom-bn {
  padding: 5.0512445095vw 7.2474377745vw 10.980966325vw;
}
@media screen and (max-width: 768px) {
  #bottom-bn {
    padding: 130px 15px;
  }
}
#bottom-bn nav * {
  margin: 0;
  padding: 0;
}
#bottom-bn nav ul {
  display: flex;
  gap: 2.1229868228vw;
}
@media screen and (max-width: 768px) {
  #bottom-bn nav ul {
    flex-direction: column;
    gap: 50px;
  }
}
#bottom-bn nav ul li {
  width: 100%;
}
#bottom-bn nav ul li a {
  display: block;
  color: #000000;
  transition: 0.3s;
}
#bottom-bn nav ul li a .bottom-bn-item {
  background: #fff;
  border: 0.5px solid #000;
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  gap: 1.8301610542vw;
  padding: 0.9516837482vw 0.9516837482vw 0.9516837482vw 1.8301610542vw;
}
@media screen and (max-width: 768px) {
  #bottom-bn nav ul li a .bottom-bn-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    padding: 12px 15px 22px;
  }
}
#bottom-bn nav ul li a .bottom-bn-item > div {
  flex: 0 0 19.6193265007vw;
}
@media screen and (max-width: 768px) {
  #bottom-bn nav ul li a .bottom-bn-item > div {
    flex: 1;
  }
}
#bottom-bn nav ul li a .bottom-bn-item dl {
  flex: 1;
}
#bottom-bn nav ul li a .bottom-bn-item dl dt {
  font-family: "Shippori Mincho", serif !important;
  font-weight: 400;
  font-style: normal;
  font-weight: normal;
  font-size: 1.4641288433vw;
  letter-spacing: 0.1em;
  line-height: 2.196193265vw;
  margin-bottom: 1.0980966325vw;
  color: #000;
}
@media screen and (max-width: 768px) {
  #bottom-bn nav ul li a .bottom-bn-item dl dt {
    font-size: 16px;
    line-height: 1.5;
  }
  #bottom-bn nav ul li a .bottom-bn-item dl dt br {
    display: none;
  }
}
#bottom-bn nav ul li a .bottom-bn-item dl dt small {
  font-family: "Open Sans", sans-serif !important;
  font-optical-sizing: auto;
  display: block;
  font-size: 0.878477306vw;
  line-height: 1;
  color: #a8a8a8;
  margin-bottom: 0.7320644217vw;
}
@media screen and (max-width: 768px) {
  #bottom-bn nav ul li a .bottom-bn-item dl dt small {
    font-size: 12px;
    padding-bottom: 0.5em;
  }
}
#bottom-bn nav ul li a .bottom-bn-item dl dd p {
  font-size: 0.8052708638vw;
  letter-spacing: 0.1em;
  line-height: 1.4545454545;
  margin-bottom: 2.4890190337vw;
  color: #000;
}
@media screen and (max-width: 768px) {
  #bottom-bn nav ul li a .bottom-bn-item dl dd p {
    font-size: 11px;
    line-height: 1.4545454545;
    padding: 0.5em 0 1em;
  }
}
#bottom-bn nav ul li a .bottom-bn-item dl dd i.arw {
  display: block;
  width: 100%;
  height: 1px;
  background: #000;
  position: relative;
  transition: 0.3s;
  transform-origin: left center;
}
@media screen and (max-width: 768px) {
  #bottom-bn nav ul li a .bottom-bn-item dl dd i.arw {
    width: 238px;
  }
}
#bottom-bn nav ul li a .bottom-bn-item dl dd i.arw::before {
  content: "";
  display: block;
  width: 0.8052708638vw;
  height: 1px;
  position: absolute;
  right: 0;
  top: 0;
  transform: rotate(42deg);
  transform-origin: right center;
  background: #000;
}
@media screen and (max-width: 768px) {
  #bottom-bn nav ul li a .bottom-bn-item dl dd i.arw::before {
    width: 11px;
  }
}
#bottom-bn nav ul li a:hover {
  opacity: 0.5;
}
#bottom-bn nav ul li a:hover div dl dd i.arw {
  transform: scale(1.2, 1);
}

/*============================
.hl-01
============================*/
.hl-01 {
  color: #0b0b0b;
  text-align: left;
}
.hl-01 h2,
.hl-01 h3 {
  font-family: "Shippori Mincho";
  font-weight: normal;
  font-size: 2.3426061493vw;
  letter-spacing: 0.1em;
  line-height: 1.5625;
  margin-bottom: 37px;
  margin-bottom: 1.15625em;
}
@media screen and (max-width: 768px) {
  .hl-01 h2,
.hl-01 h3 {
    font-size: 20px;
    letter-spacing: 0.1em;
    line-height: 1.6;
    margin-bottom: 30px;
  }
}
.hl-01 h2 sup,
.hl-01 h3 sup {
  font-size: 0.5em;
  position: relative;
  top: -0.8em;
}
.hl-01 h2 + p,
.hl-01 h3 + p {
  font-size: 1.1713030747vw;
  line-height: 1.875;
}
@media screen and (max-width: 768px) {
  .hl-01 h2 + p,
.hl-01 h3 + p {
    font-size: 14px;
    line-height: 1.7142857143;
  }
  .hl-01 h2 + p br,
.hl-01 h3 + p br {
    display: none;
  }
}
.hl-01 p + p {
  padding-top: 0.5em;
}
.hl-01 p + p small {
  font-size: 0.878477306vw;
}
@media screen and (max-width: 768px) {
  .hl-01 p + p small {
    font-size: 12px;
  }
}

/*============================
.sec-ttl
============================*/
.sec-ttl {
  position: relative;
  margin-bottom: 5.4904831625vw;
}
.sec-ttl h2 {
  font-family: "Shippori Mincho";
  font-weight: normal;
  font-size: 2.9282576867vw;
  letter-spacing: 0.1em;
  line-height: 1.425;
  text-align: left;
  color: #000;
  white-space: nowrap;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 2.9282576867vw;
}
@media screen and (max-width: 768px) {
  .sec-ttl h2 {
    font-size: 26px;
    letter-spacing: 0.1em;
  }
}
.sec-ttl h2::after {
  content: "";
  display: block;
  flex: 1;
  height: 1px;
  background: #000;
}
.sec-ttl p {
  display: block;
  font-family: "Noto Sans JP";
  font-size: 1.317715959vw;
  letter-spacing: 0.1em;
  line-height: 1.6666666667;
  padding-top: 0.7em;
}
@media screen and (max-width: 768px) {
  .sec-ttl p {
    font-size: 14px;
    letter-spacing: 0;
  }
}

/*============================
SPの時だけスライダー
============================*/
@media screen and (max-width: 768px) {
  .sp-slide {
    height: auto;
    display: flex;
    overflow-x: scroll;
    /*IE, Edge*/
    -ms-overflow-style: none;
    /*Firefox*/
    scrollbar-width: none;
  }
  .sp-slide::-webkit-scrollbar {
    display: none;
  }
}

/*============================
		モーダルウィンドウ
============================*/
.modal-wdw {
  display: none;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(5px);
}
.modal-wdw .modal-container {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  padding: 35px;
  overflow-y: scroll;
  /*IE, Edge*/
  -ms-overflow-style: none;
  /*Firefox*/
  scrollbar-width: none;
}
.modal-wdw .modal-container::-webkit-scrollbar {
  display: none;
}
@media screen and (max-width: 768px) {
  .modal-wdw .modal-container {
    justify-content: flex-start;
  }
}
.modal-wdw .modal-container .modal-main {
  position: relative;
  padding-top: 60px;
  max-width: 1164px;
  animation: fade-dn 0.5s ease 0s 1 forwards;
}
@media screen and (max-width: 768px) {
  .modal-wdw .modal-container .modal-main {
    max-width: none;
  }
}
@keyframes fade-dn {
  0% {
    opacity: 0;
    transform: translateY(-100px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.modal-wdw .modal-container .modal-main figure {
  display: block;
  width: auto;
  overflow-x: scroll;
  /*IE, Edge*/
  -ms-overflow-style: none;
  /*Firefox*/
  scrollbar-width: none;
}
.modal-wdw .modal-container .modal-main figure::-webkit-scrollbar {
  display: none;
}
@media screen and (max-width: 768px) {
  .modal-wdw .modal-container .modal-main figure {
    width: calc(100vw - 35px);
  }
}
@media screen and (max-width: 768px) {
  .modal-wdw .modal-container .modal-main figure img {
    display: block;
    max-width: none;
    width: 850px;
  }
}
.modal-wdw .modal-container .modal-main button.modal-close {
  display: block;
  width: 30px;
  aspect-ratio: 1/1;
  position: absolute;
  right: 0;
  top: 0;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .modal-wdw .modal-container .modal-main button.modal-close {
    position: fixed;
    right: 15px;
    top: 15px;
    width: 15px;
  }
}
.modal-wdw .modal-container .modal-main button.modal-close::before, .modal-wdw .modal-container .modal-main button.modal-close::after {
  content: "";
  display: block;
  width: 120%;
  height: 1px;
  position: absolute;
  left: 50%;
  top: 50%;
  background: #000;
}
.modal-wdw .modal-container .modal-main button.modal-close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.modal-wdw .modal-container .modal-main button.modal-close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.l-breadcrumbs {
  margin-top: 0;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  list-style: none;
}

body {
  padding-top: 0;
  font-family: "Noto Sans JP", sans-serif !important;
  font-weight: 400;
  color: #0b0b0b;
}

main {
  overflow: hidden;
}

.sp {
  display: none !important;
}
@media screen and (max-width: 767px) {
  .sp {
    display: block !important;
  }
}

@media screen and (max-width: 767px) {
  .pc {
    display: none !important;
  }
}

.flex {
  display: flex;
}

a:hover {
  color: inherit;
  text-decoration: none;
}

a[href*="tel:"] {
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  a[href*="tel:"] {
    pointer-events: auto;
  }
}

.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.8550512445vw;
  width: 19.5461200586vw;
  line-height: 4.0995607613vw;
  border: 1px solid #000;
  font-family: "Open Sans", sans-serif !important;
  font-optical-sizing: auto;
  font-weight: normal;
  font-size: 1.317715959vw;
  letter-spacing: 0.1em;
  text-align: center;
  color: #000;
  transition: 0.3s;
}
@media screen and (max-width: 768px) {
  .btn {
    width: 250px;
    line-height: 52px;
    font-size: 16px;
    gap: 42px;
  }
}
.btn::after {
  content: "";
  display: block;
  width: 1.4641288433vw;
  aspect-ratio: 1/1;
  background: url(../img/icon-ext-bl.svg);
  background-size: cover;
}
@media screen and (max-width: 768px) {
  .btn::after {
    width: 20px;
  }
}
.btn:hover {
  opacity: 0.5;
}