@font-face {
  font-family: Material Icons;
  font-style: normal;
  font-weight: 400;
  src: url(https://storage.googleapis.com/production-os-assets/assets/material-icons/1629704621943/MaterialIcons-Regular.eot);
  src: local("Material Icons"),local("MaterialIcons-Regular"),url(https://storage.googleapis.com/production-os-assets/assets/material-icons/1629704621943/MaterialIcons-Regular.woff2) format("woff2"),url(https://storage.googleapis.com/production-os-assets/assets/material-icons/1629704621943/MaterialIcons-Regular.woff) format("woff"),url(https://storage.googleapis.com/production-os-assets/assets/material-icons/1629704621943/MaterialIcons-Regular.ttf) format("truetype")
}

:root {
  --color-white: #FFF;
  --color-text: #1C1C1C;
  --color-blue-main: #134DB1;
  --color-blue-sub1: #36A0F4;
  --color-blue-sub2: #67D5FD;
  --color-orange:#F6A82A;
  --color-yellow:#F8DB23;
  --color-red:#ED3235;
  --bg-blue-gray: #F0F3F5;
}

html {
  font-size: 62.5%;
}

body {
  width: 100%;
  font-family: "Noto Sans JP", sans-serif;
  font-feature-settings: "palt";
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.5;
  position: relative;
}

main {
  font-weight: 600;
  font-size: 1.6em;
  line-height: 1.67;
}

img {
  /* width: 100%; */
  max-width: 100%;
  height: auto;
}

.pc-only {
  display: block;
}
@media screen and (max-width: 766px) {
  .pc-only {
    display: none !important;
  }
}

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

/* 共通
=========================================================*/
.yellow{
  color: var(--color-yellow);
}
.orange{
  color: var(--color-orange);
}
.blue{
  color: var(--color-blue-main);
}
.light-blue{
  color: var(--color-blue-sub1);
}
.sky-blue{
  color: var(--color-blue-sub2);
}

.c-font34{
  font-size: 34px;
  line-height: 135%;
  font-weight: bold;
}
.c-font28{
  font-size: 28px;
  line-height: 150%;
  font-weight: bold;
}
.c-font22{
  font-size: 22px;
  line-height: 150%;
  font-weight: bold;
}
.c-font18{
  font-size: 18px;
  line-height: 160%;
  font-weight: bold;
}
.c-font16{
  font-size: 16px;
  line-height: 160%;
  font-weight: 400;
}
.c-font15{
  font-size: 15px;
  line-height: 160%;
  font-weight: 500;
}
.c-font11{
  font-size: 16px;
  line-height: 160%;
  font-weight: 400;
}

.c-flex{
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 766px) {
  .c-flex {
    flex-direction: column;
  }
}

/* ボタン */
.c-button{
  display: block;
  padding: 10px 20px;
  background-color: var(--color-white);
  color: var(--color-text);
  border-radius: 50vh;
  font-size: 15px;
  font-weight: bold;
  text-align: center;
  max-width: 400px;
  width: 100%;
  position: relative;
  transition: .3s all;
}
.c-button span{
  font-size: 18px;
}
.c-button::after{
  content: "";
  display: block;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 12px;
  height: 12px;
  position: absolute;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
}
.c-button.--blue{
  border: 3px solid var(--color-blue-sub1);
}
.c-button.--blue span{
  color: var(--color-blue-sub1);
}
.c-button.--blue::after{
  background-image: url(../img/icon_link_blue.png);
}
.c-button.--blue:hover{
  background: var(--color-blue-sub1);
}
.c-button.--orange{
  border: 3px solid var(--color-orange);
}
.c-button.--orange span{
  color: var(--color-orange);
}
.c-button.--orange::after{
  background-image: url(../img/icon_link_orange.png);
}
.c-button.--orange:hover{
  background: var(--color-orange);
}
.c-button:hover span{
  color: var(--color-white);
}
.c-button:hover::after{
  background-image: url(../img/icon_link_white.png);
}

/* タイトル */
.c-ttl__deco{
  position: relative;
  width: fit-content;
  margin: 0 auto
}
.c-ttl__deco::before,
.c-ttl__deco::after{
  content: "";
  display: block;
  background: url(../img/about_frame.png);
  width: 16px;
  height: 46px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.c-ttl__deco::before{
  left: -18px;
}
.c-ttl__deco::after{
  right: -18px;
  transform: translateY(-50%) scale(-1, 1);
}
/* 青背景タイトル */
.c-ttl__belt{
  color: var(--color-white);
  background: var(--color-blue-main);
  padding: 0 8px;
  width: fit-content;
}

/* レイアウト */
.l-inner{
  max-width: 1076px;
  margin: 0 auto; 
  padding: 0 38px;
}

/* スライド */
.swiper-button-next,
.swiper-button-prev{
  width: 76px;
  height: 76px;
  top: 50%;
  transform: translateY(-20%);
}
.swiper-button-next{
  left: 32px;
  right: inherit;
}
.swiper-button-prev{
  right: 32px;
  left: inherit;
}
.swiper-button-prev::after,
.swiper-button-next::after {
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  height: 76px;
  width: 76px;
  margin: auto;
}
/* 前への矢印カスタマイズ */
.swiper-button-prev::after {
  background-image: url(../img/top_swiper_arrow.png);
  transform: rotate(180deg);
}
/* 次への矢印カスタマイズ */
.swiper-button-next::after {
  background-image: url(../img/top_swiper_arrow.png);
}
/* 画像サイズ調整 */
.swiper-slide img {
  height: auto;
  width: 100%;
}




/* MV
=========================================================*/
.mv {
  background-image: url(../img/mv_bg.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 40px 40px 81px;
}
.mv-logo{
  margin-left: 24px;
}
.mv-flex{
  max-width: 1212px;
  margin: 17px auto 0;
  gap: 52px;
  align-items: start;
}
.flex-left .c-button{
  margin: 0 auto;
}
.mv-text{
  font-size: clamp(15px, 2.5vw, 18px);
  line-height: 160%;
  font-weight: bold;
  color: var(--color-white);
  margin: 20px 0;
}
.mv-movie{
  position: relative;
  margin-top: 10px;
}
.mv-movie .deco01,
.mv-movie .deco02{
  position: absolute;
  width: 13.89vw;
  max-width: 200px;
  min-width: 120px;
}
.mv-movie .deco01{
  right: 40px;
  top: -80px;
}
.mv-movie .deco02{
  left: -40px;
  bottom: -80px;
}

/* お知らせスライド 
=========================================================*/
.bunner-slide {
  margin: 64px 0;
  width: 100%;
  overflow: hidden;
  position: relative;
}
.bunner-slide .swiper-wrapper {
  display: flex;
  align-items: center;
  transition-timing-function: linear !important;
}
.bunner-slide .swiper-slide {
  width: 400px;
  flex-shrink: 0;
}
.bunner-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* お知らせモーダル 
=========================================================*/
/* article-style --------------- */
.bunner_wrapper {
  display: flex;
  justify-content: space-around;
}
.article-item {
  width: 100%;
}
.article-item a {
  font-size: 24px;
  font-weight: bold;
  transition: all 0.3s ease-in-out;
}
.article-item a:hover {
  cursor: pointer;
  opacity: 0.5;
}
/* modal-window --------------- */
.modal-window {
  display: none;
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  background: rgb(0 0 0 / 80%);
  z-index: 9999;
  justify-content: center;
  align-items: center;
  overflow-y: scroll;
}
.modal-area{
  position: relative;
}
.modal_inner {
  width: 100%;
  max-width: 600px;
  background-color: #fff;
  padding: 46px 64px 34px;
  border-radius: 24px;
  overflow-y: auto;
}
.modal_thumbnail{
  aspect-ratio: 472 / 200;
  overflow: hidden;
  width: 100%;
  border-radius: 12px;
}
.modal_thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.modal_ttl{
  font-size: 28px;
  line-height: 150%;
  font-weight: bold;
  padding-bottom: 24px;
  margin-bottom: 24px;
  margin-top: 20px;
  border-bottom: 1px solid #A0A0A0;
}
.modal_text{
  font-size: 15px;
  font-weight: 500;
  line-height: 160%;
}
body.modal-open {
  overflow: hidden;
}
/* modal-close --------------- */
.modal-close {
  position: absolute;
  top: 0px;
  right: -70px;
  z-index: 113;
  cursor: pointer;
  text-align: center;
}
.icon-close {
  width: 56px;
  height: 56px;
  position: relative;
  border: 1px solid var(--color-white);
  border-radius: 100%;
  cursor: pointer;
}
.icon-close::before, .icon-close::after {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  left: 20%;
  width: 60%;
  height: 1px;
  background: var(--color-white);
}
.icon-close::before {
  transform: rotate(-45deg);
}
.icon-close::after {
  transform: rotate(45deg);
}

/*  probrem
=========================================================*/
.probrem{
  margin-bottom: 18px;
}
.probrem__bg{
  background-image: url(../img/probrem_bg.png);
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
  padding: 130px 0 104px;
}
.probrem__list{
  gap: 16px;
}
.probrem__list li{
  background: var(--color-white);
  border-radius: 24px;
  padding: 0 20px 26px;
  width: 23.8%;
}
.probrem__list li:nth-child(1){
  margin-top: 72px;
}
.probrem__list li:nth-child(2){
  margin-top: 48px;
}
.probrem__list li:nth-child(3){
  margin-top: 24px;
}
.probrem__list .fukidashi{
  background-image: url(../img/probrem_fukidashi.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 196px;
  height: 128px;
  display: flex;
  justify-content: center;
  color: var(--color-white);
  padding-top: 24px;
  margin: -38px auto 0;
}
.probrem__list .fukidashi span{
  height: 58px;
  display: flex;
  align-items: center;
  font-size: 18px;
  line-height: 160%;
  font-weight: bold;
  text-align: center;
}
.probrem__list img{
  margin-top: 8px;
  margin-left: 17.5px;
}
.probrem__text{
  font-size: 15px;
  line-height: 160%;
  font-weight: bold;
  text-align: center;
  margin-top: 12px;
}
.probrem__next {
  width: fit-content;
  margin: -100px auto 0;
  text-align: center;
}
.probrem__next p{
  font-size: 22px;
  line-height: 150%;
  font-weight: bold;
}

/*  solution
=========================================================*/
.solution{
  margin-bottom: 80px;
}
.solution__cts{
  background-color: var(--color-blue-main);
  padding: 96px 0 185px;
  position: relative;
  z-index: -1;
}
.solution__cts--deco{
  position: absolute;
  bottom: 0;
  right: 0;
  max-width: 729px;
  min-width: 340px;
  width: 50.63vw;
}
.solution__text {
  color: var(--color-white);
}
.solution__dsc{
  margin: 26px 0 54px;
}
.solution__dsc span{
  border-bottom: 1px solid var(--color-yellow);
}
.solution__last{
  justify-content: inherit;
  align-items: start;
  gap: 14px;
}
.solution__last p{
  margin-top: 14px;
  font-size: 28px;
  line-height: 150%;
  font-weight: bold;
}
.solution__movie{
  max-width: 1000px;
  margin: -185px auto 0;
  padding: 0 100px;
}
/* Youtubeモーダル */
.frame {
  display: block;
  overflow: hidden;
  }
.modal_wrap {
  position: absolute;
  top: 0;
  display: none;
  opacity: 0;
  transition: opacity 0.4s cubic-bezier(.4, .4, 0, 1);
}
.modal_wrap.active {
  opacity: 1;
}
.modal_wrap {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none;
  opacity: 0;
  transition: opacity 0.4s cubic-bezier(.4, .4, 0, 1);
  z-index: 1000;
}
.modal_wrap.active {
  opacity: 1;
}
.modal_content {
  position: fixed;
  top: 45%;
  left: 50%;
  transform: translate(-50%, 100%);
  width: 90%;
  max-width: 880px;
  background: transparent;
  transition: transform 0.4s cubic-bezier(.4, .4, 0, 1);
}
.modal_content.active {
  transform: translate(-50%, -50%);
}
.modal_close {
  position: absolute;
  bottom: -70px;
  left: 50%;
  transform: translateX(-50%);
  cursor: pointer;
  z-index: 2;
  border: none;
  background: inherit;
}
.material-icons {
  display: inline-block;
  font-family: Material Icons;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  letter-spacing: normal;
  line-height: 1;
  text-transform: none;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased
}
.modal_close .material-icons {
background: #ffffff;
border-radius: 50%;
color: #1250a8;
flex: none;
font-size: 40px;
margin: 0 0 0 0;
padding: 8px;
position: relative;
width: auto;
z-index: 3;
max-width: 100%;
}
.modal_overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: -1;
}
.video_container {
  width: 100%;
  background: transparent;
}
@media (max-width: 768px) {
  .modal_content {
    width: 95%;
    padding: 16px;
  }

  .modal_close {
    bottom: -50px;
  }

  .modal_close .material-icons {
    font-size: 32px;
  }
}

/* about
=========================================================*/
.about{
  margin-bottom: 120px;
}
.about__ttl-sub{
  font-size: 28px;
  line-height: 150%;
  font-weight: bold;
  text-align: center;
  color: var(--color-blue-sub1);
}
.about__ttl{
  width: fit-content;
  margin: 19px auto 40px;
}
.about__list--top{
  gap: 40px;
  margin-bottom: 40px;
}
.about__list--mv{
  position: relative;
}
.about__list--ttl{
  position: absolute;
  bottom: 23px;
  left: 24px;
}
.about__list--text{
  font-size: 18px;
  line-height: 160%;
  font-weight: bold;
  margin-top: 8px;
}
.about__list--bottom{
  gap: 20px;
}
.about__list--bottom .about__list--ttl{
  left: 16px;
  bottom: 15px;
}

/* cta
=========================================================*/
.cta{
  background: url(../img/cta_bg.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 80px 0 37px;
  text-align: center;
  color: var(--color-white);
}
.cta__text--ttl{
  margin: 24px 0 2px;
}
.cta__btn{
  justify-content: center;
  gap: 24px;
  margin: 12px 0 10px;
}
.cta__text--note{
  margin-top: 8px;
}

/* howto
=========================================================*/
.howto{
  margin: 80px 0;
}
.howto__lead{
  font-size: 22px;
  line-height: 150%;
  font-weight: bold;
  text-align: center;
  margin: 32px 0 16px;
}
.howto__list{
  gap: 16px;
}
.howto__list li{
  width: 30%;
}
.howto__list--ttl{
  margin: 24px 0 13px;
}

/* point
=========================================================*/
.point{
  padding: 120px 0;
  background: url(../img/point_bg.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.point__ttl{
  font-size: 48px;
  line-height: 150%;
  text-align: center;
}
.point__cts:first-of-type{
  margin: 64px 0 80px;
}
.point__cts:nth-of-type(2){
  flex-direction: row-reverse;
}
.point__cts:first-of-type .point__deco{
  width: 230px;
  margin-right: 47px;
  margin-top: 90px;
}
.point__cts:nth-of-type(2) .point__deco{
  width: 224px;
  margin-top: 115px;
}
.point__cts{
  align-items: start;
}
.point__cts h4 span{
  display: block;
  margin-bottom: 4px;
}
.point__dsc{
  font-size: 16px;
  line-height: 160%;
  font-weight: 500;
  margin-top: 28px;
}

@media (max-width: 767px) {
  .point__ttl{
    font-size: 28px;
  }
  .point__dsc{
    font-size: 14px;
  }
}

/* media
=========================================================*/
.media{
  padding: 40px 0 80px;
}
.media__ttl{
  text-align: center;
  font-size: 34px;
  line-height: 135%;
  font-weight: bold;
  text-align: center;
  margin-bottom: 24px;
}
.media__list{
  max-width: 1020px;
  margin: 0 auto;
  gap: 20px;
}
@media (max-width: 767px) {
  .media__ttl{
    font-size: 28px;
  }
}

/* voice
=========================================================*/
.voice {
  padding: 120px 0 48px;
}
.voice__ttl{
  text-align: center;
}
.voice__lead{
  text-align: center;
  margin: 15px 0 48px;
  font-weight: bold;
}
.voice__list{
  padding: 10px 0;
}
.voice__list .swiper-slide{
  padding: 40px 50px 8px;
  border-radius: 16px;
  box-shadow: 0px 0px 16px 0px rgba(0, 0, 0, 0.1);
}
.voice__list--ttl{
  margin-bottom: 16px;
}
.voice__list--text{
  min-height: 144px;
}
.voice__list .swiper-slide img{
  display: block;
  max-width: 128px;
  margin: 19px auto 0;
}
.voice__slide .swiper-button-prev,
.voice__slide .swiper-button-next{
  width: 56px;
  height: 56px;
}
.voice__slide .swiper-button-prev::after,
.voice__slide .swiper-button-next::after{
  width: 56px;
  height: 56px;
  background-image: url(../img/voice_swiper_arrow.png);
}
@media screen and (max-width: 1024px) {
  .voice__list .swiper-slide {
    width: calc(51% - 16px);
  }
}
@media screen and (max-width: 700px) {
  .voice__list .swiper-slide {
    width: 85%;
  }
}

/* story
=========================================================*/
.story{
  background: url(../img/story_bg.png);
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
  padding: 220px 0 76px;
}
.story__ttl{
  margin-left: -7px;
}
.story__ttl span{
  display: block;
  margin-top: 8px;
}
.story__text{
  font-weight: bold;
  margin-top: 32px;
}
@media (min-width: 767px) {
  .story__text span{
    font-size: 18px;
  }
}
.story .c-flex{
  justify-content: start;
  align-items: end;
  gap: 69px;
}
.story__movie{
  margin-bottom: 6px;
}

/* close
=========================================================*/
.close{
  padding-top: 80px;
}
.close__ttl{
  background: var(--color-blue-main);
  text-align: center;
  color: var(--color-white);
  border-radius: 8px;
  padding: 4px 0;
  margin-bottom: 32px;
}
.close__cts{
  width: 48.8%;
}
.close__text{
  margin-top: 16px;
}
.close__note{
  display: flex;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 16px;
}
.close__note span{
  background: var(--color-blue-sub1);
  color: var(--color-white);
  padding: 12px 0;
  width: 13.93%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.close__note p{
  width: 84.42%;
}

/* attention
=========================================================*/
.attention{
  margin-top: 64px;
  background: var(--bg-blue-gray);
  border-radius: 16px;
  padding: 0 48px 49px;
}
.attention__ttl{
  max-width: 400px;
  margin: 0 auto;
  background: var(--color-blue-sub1);
  color: var(--color-white);
  border-radius: 0 0 16px 16px;
  padding: 12px 0;
  margin-bottom: 32px;
  text-align: center;
}
.attention__wrap{
  align-items: start;
}
.attention__cts{
  width: 44%;
}
.attention__ttl--sub{
  margin-bottom: 16px;
}
.attention__gif{
  display: flex;
  gap: 8px;
}
.attention__text{
  margin-top: 16px;
  max-width: 412px;
}

/* faq
=========================================================*/
.faq {
  padding: 120px 0 70px;
}
/* アコーディオン */
#accordion ul{
  max-width: 800px;
  list-style: none;
  margin:  40px auto 0;
}
#accordion ul li{
  margin-bottom: 32px;
}
.accordion_q{
  position: relative;
  padding-right: 35px;
  background-color: var(--bg-blue-gray);
  padding: 15px 23px 15px 46px;
  border-radius: 8px;
  color: var(--color-blue-main);
  font-size: 15px;
  font-weight: bold;
}
.accordion_q::before{
  content: "Q";
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 18px;
  font-weight: bold;
  line-height: 1;
}
.accordion_q:after {
  content: "";
  position: absolute;
  right: 25px;
  top: 0;
  bottom: 0;
  margin: auto;
  transition: all 0.2s ease-in-out;
  display: block;
  width: 12px;
  height: 11px;
  border-top: solid 2px var(--color-blue-main);
  border-right: solid 2px var(--color-blue-main);
  transform: rotate(135deg);
}
.accordion_q.arrow:after {
  transform: rotate(-45deg);
  top: 14%;
}
.accordion_a{
  display: none;
  margin-top: 4px;
  padding: 8px 46px;
  font-size: 15px;
  line-height: 160%;
  font-weight: 500;
  position: relative;
  display: flex;
  align-items: center;
}
.accordion_a::before{
  content: "A";
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 18px;
  font-weight: bold;
  line-height: 1;
  color: var(--color-blue-main);
}
@media (max-width: 768px){
  #accordion{
    padding: 55px 0;
  }
  #accordion h2{
    font-size: 24px;
  }
  #accordion ul{
    width: 80%;
    margin:  35px auto 0 auto;
  }
  #accordion ul li{
    margin-bottom: 20px;
    padding: 25px;
    font-size: 16px;
    line-height: 24px;
  }
  .accordion_a{
    margin-top: 25px;
    padding: 25px;
  }
}
@media (max-width: 450px){
  #accordion ul li{
    padding: 22px;
    font-size: 12px;
  }
}

/* フッター 
=========================================================*/
footer{
  position: relative;
  padding: 24px 64px;
}
footer .c-flex{
  justify-content: inherit;
}
.footer__wrap{
  gap: 259px;
}
.footer_inner{
  flex: 1;
}
.footer_external-link{
  gap: 32px;
  margin-bottom: 16px;
}
.footer_external-link .c-button{
  max-width: 352px;
  width: 100%;
  border: 1px solid var(--color-blue-sub1);
  font-weight: 500;
}
.footer_external-link .c-button.--blue::after{
  display: none;
}
.footer_external-link .flex{
  display: flex;
  gap: 32px;
  flex: 1;
}
.footer_external-link .flex a{
  font-size: 15px;
  line-height: 160%;
  font-weight: 500;
}
.footer_sns-list{
  display: flex;
  gap: 20px;
  margin-right: 37px;
}
.footer_to-top{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 2%;
}

/* CTAボタン */
.cta-button{
  position: fixed;
  width: 240px;
  right: 2%;
  bottom: 35px;
  z-index: 10;
  transition: .3s;
  opacity: 0;
  visibility: hidden;
}
.cta-button__img{
  position: relative;
  display: block;
}
.cta-button.active{
  opacity: 1;
  visibility: visible;
}
.cta-button.absolute{
  position: absolute;
  top: -250px;
  bottom: auto;
}
.cta-button__img::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 200px;
  height: 100%;
  background-image: url(../img/btn_shop_hover.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.cta-button:hover .cta-button__img::after {
  opacity: 1;
}

