/* header */
.header{
  background-color: #FFC32E;
}
 

.header__inner{
  display: flex;
  justify-content: space-between;
}
@media (max-width: 767px) {
.header__inner{
  
}
}


.logo{
  padding: 30px 0 0 30px;
}
@media (max-width: 767px) {
  .logo{
    max-width: 150px;
    width: 100%;
    padding: 18px 0 0 0;
    margin-left: 20px;
  }
}

.header__menu{
  background-color: #fff;
  border-radius: 0 0 0 25px;
  max-width: 922px;
  width: 100%;
  height: 95px;
  padding: 42px 0 30px 0;
  margin-left: 10px;
}
@media (max-width: 958px) {
.header__menu{
  display: none;
}
}


.menu{
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
}

.menu li{
  display: flex;
  justify-content: center;
  align-items: center;
}

.menu li a{
  display: block;
  font-size: 16px;
  color: #1A1705;
  line-height: 1;
  padding: 0 15px;
  white-space: nowrap;
}

.menu li a:hover{
  color: #FFC32E;
}



/* ドロワーメニュー */

.button{
  display: none;
}
@media (max-width: 958px) {
.button {
  display: inline-block;
  text-decoration: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  background-color: transparent;
  cursor: pointer;
}
}

.button:focus{
  outline: none;
}

.hamburger {
  position: fixed;
  top: 10px;
  right: 15px;
  z-index: 5;
  width: 48px;
  height: 48px;
  outline: none;
  -webkit-transition: all .3s ease-in-out;
          transition: all .3s ease-in-out;
  background-color: #FFC32E;
  border-radius: 10px 10px 0 0;
  padding-bottom: 10px;
}

.hamburger::after{
  content: "MENU";
  position: absolute;
  bottom: -7px;
  left: 0;
  right: 0;
  text-align: center;
  font-size: 10px;
  background-color: #FFC32E;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
  color: #1A1705;
  border-radius: 0 0 10px 10px;
}
.is-drawerActive .hamburger,
.is-drawerActive .hamburger::after{
  background-color: transparent;
}



.hamburger__line {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 30px;
  height: 2px;
  background-color: #1A1705;
  -webkit-transition: inherit;
          transition: inherit;
}

.hamburger__line::before,
.hamburger__line::after {
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    background-color: inherit;
    content: '';
    -webkit-transition: inherit;
            transition: inherit;
}

.drawer-background {
  position: fixed;
  z-index: 3;
  width: 100vw;
  top: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  height: 100vh;
  background-color: #000;
  color: #fff;
visibility: hidden;
opacity: 0;
}

.is-drawerActive .sp-global-menu {
    transform: translateX(0px);
  transition: 0.3s;
}


.is-drawerActive .drawer-background {
  visibility: visible;
  opacity: 0.8;
  transition: 0.3s;
}
.hamburger__line::before {
  top: -10px;
}
.hamburger__line::after {
  top: 10px;
}

.hamburger[aria-expanded="true"] .hamburger__line {
  background-color: transparent;
}

.hamburger[aria-expanded="true"] .hamburger__line::before,
.hamburger[aria-expanded="true"] .hamburger__line::after {
  background-color: #1A1705;
  top: 0;
}

.hamburger[aria-expanded="true"] .hamburger__line::before {
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
}

.hamburger[aria-expanded="true"] .hamburger__line::after {
  -webkit-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.sp-global-menu {
  position: fixed;
  z-index: 4;
  width: 280px;
  top: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  height: 100vh;
  background-color: #fff;
  color: #1A1705;
  transform: translateX(280px);
  transition: 0.3s;
  padding-top: 81px;
}

.sp-global-menu li{
  border-top: 1px solid #1A1705;
}

.sp-global-menu li:last-child{
  border-bottom: 1px solid #1A1705;
}

.sp-global-menu li a{
  font-size: 16px;
  color: #1A1705;
  padding: 13px 0 16px 0;
  display: block;
  display: flex;
  align-items: center;
  justify-content: center;
}




.main__inner{
  background-color: #FFC32E;
}
@media (max-width: 767px) {
  .main__inner{
  }
}

.main__inner .container{
  max-width: 1170px;
  width: 100%;
  margin: 0 auto;
  padding: 0 15px;
}

@media (max-width: 767px) {
  .main__inner .container{
    max-width:100%;
    padding: 0 20px;
  }
}


.fv{
  margin-top: -116px;
  padding-top: 30px;
}
@media (max-width: 767px) {
  .fv{
    margin-top: 0;
    padding-top: 0;
  }
}

.fv__inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0 0 0 113px;
}
@media (max-width: 958px) {
  .fv__inner{
    flex-direction: column;
    padding: 0 20px;
  }
}

.fv__image{
  text-align: right;
  margin-top: 100px;
  background-color: #fff;
  padding: 15px 0 15px 15px;
  border-radius: 15px 0 0 15px;
}

@media (max-width: 958px) {
  .fv__image{
    margin-right: 0;
    margin-top: 26px;
    padding: 15px;
    border-radius: 15px;
  }
}

.fv__hukidashi.hukidashi{
  width: 515px;
  text-align: center;
  font-size: 24px;
  padding: 14px 0;
}

@media (max-width: 767px) {
  .fv__hukidashi.hukidashi{
    font-size: 16px;
    margin-bottom: 27px;
  }
}

.fv__body{
  padding-top: 10px;
  width: 100%;
}

@media (max-width: 767px) {
.fv__body{
}
}

.fv__text{
  margin-top: 30px;
  font-size: 24px ;
  line-height: 1.5;
}
@media (max-width: 767px) {
  .fv__text{
    font-size: 16px;
    margin-top: 20px;
  }
}

@media (max-width: 767px) {
.fv__image{ 
  margin-top: 12px;
}
}

.fv__btn{
  margin-top: 20px;
  display: flex;
  margin-left: 113px;
}

@media (max-width: 958px) {
  .fv__btn{
    margin-left: 20px;
    display: block;
  }
  .fv__btn .btn.btn--white{
    margin-top: 10px;
  }
}

.fv__btn .btn{
  margin-right: 30px;
}



/* 共通パーツ */
body,
h2,h3,h4,p,a{
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: bold;
}

h2,h3{
  margin-bottom: 0;
}

.inner{
  max-width: 1240px;
  width: 100%;
  margin: 0 auto;
}

.sp-only{
  display: none;
}
@media (max-width: 767px) {
  .sp-only{
    display: inline-block;
  }
}

@media (max-width: 767px) {
  .pc-only{
    display: none;
  }
}
.btn{
  border-radius:25px;
  font-size: 16px;
  font-weight: bold;
  line-height: 1;
  padding: 10px 29px;
  display: flex;
  align-items: center;
  justify-self: center;
  width: fit-content;
  transition: .4s;
}
@media (max-width: 767px) {
  .btn{
    font-size: 13px;
    padding: 10px 22px;
  }
}

.btn.btn--black{
  background-color: #1A1705;
  color: #fff;
  
}

.btn.btn--white{
  background-color: #fff;
  color: #1A1705;
  border:2px solid #1A1705;
}


.btn:hover::after{
  margin-right: -10px;
  margin-left: 30px;
}

.btn::after{
  width: 24px;
  height: 24px;
  margin-left: 20px;
  margin-top: 1px;
  transition: .2s;

}

.btn.btn--black::after{
  content: url(../images/white-right.svg);
}

.btn.btn--white::after{
  content: url(../images/black-right.svg);
}


.h2-title{
  font-size: 60px;
  line-height: calc(78/60);
}

.h3-title{
  font-size: 32px;
  line-height: 1.2;
  text-align: center;
  padding-bottom: 56px;
  padding-top: 109px;
}

@media (max-width: 767px) {
  .h2-title{
    font-size: 32px;
  }
  .h3-title{
    font-size: 18px;
    padding-top: 55px;
    padding-bottom: 30px;
    line-height: 1.5;
  }
}

.main__inner img{
  width: 100%;
  height: auto;
  object-fit: cover;
}

p,div,section{
  margin: 0;
}

ul{
  padding-left: 0;
}

/* 吹き出しの背景 */
.hukidashi{
  position: relative;
  display: inline-block;
  margin: 0 0 45px 0;
  padding: 24px 0;
  max-width: 100%;
  color: #1A1705;
  font-size: 16px;
  background: #FFF;
  border: solid 3px #1A1705;
  box-sizing: border-box;
  border-radius: 15px;
}
@media (max-width: 767px) {
  .hukidashi{
    margin: 0 0 23px 0;
  }
}

.hukidashi::before {
  content: "";
  position: absolute;
  bottom: -23px;
  left: 50%;
  margin-left: -15px;
  border: 12px solid transparent;
  border-top: 12px solid #FFF;
  z-index: 2;
  
}

.hukidashi::after {
  content: "";
  position: absolute;
  bottom: -30px;
  left: 50%;
  margin-left: -17px;
  border: 14px solid transparent;
  border-top: 14px solid #1A1705;
  z-index: 1;
}


/* ーーーーーーーーーーーーーーー */


ul{
  list-style: none;
}


.onayami__top{
  padding-bottom: 30px;
}
.onayami{
  text-align: center;
}

.onayami__contents{
  display: flex;
  justify-content: center;
}

.onayami__contents img{
  width: auto;
  object-fit: cover;
  height: 325px;
  padding: 0 10px 0 85px;
  margin-left: -20px;
  margin-top: -20px;
}

.onayami__content{
  display: flex;
  flex-direction: column;
  width: 41%;
}

@media (max-width: 767px) {
  .onayami__content{
    max-width: 158px;
    width: 100%;
    margin: 0 15px;
  }
}

.onayami__item{
  max-width: 380px;
  width: 100%;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

@media (max-width: 767px) {
  .onayami__item{
    font-size: 13px;
  }
}

.onayami__item.onayami__item--left{
  margin-right: auto;
}

.onayami__item.onayami__item--right{
  margin-left: auto;
}



.step{
  margin-top: 15px;
}
@media (max-width: 767px) {
  .step{
    margin-top: 0;
  }
}


.step__head{
  position: relative;
  font-size: 48px;
  line-height: 1.5;
  background-color: #fff;
  padding: 62px 0 20px 0;
  text-align: center;
}
@media (max-width: 767px) {
  .step__head{
    font-size: 18px;
    padding: 35px 0 20px 0;
  }
}

.step__head::after{
  content: "";
  position: absolute;
  top: 99%;
  left: 0;
  box-sizing: border-box;
  border-right: 50vw solid transparent;
  border-left: 50vw solid transparent;
  border-top: 70px solid #fff;
}

@media (max-width: 767px) {
.step__head::after{
  border-top: 43px solid #fff;
}
}


.step__title{
  margin-top: 70px;
}

@media (max-width: 767px) {
.step__title{
  margin-top: 40px;
  }
}

.step__contents{
  display: flex;
  padding-top: 56px;
}

.step__item{
  position: relative;
}

.step__item::after{
  content: "";
  position: absolute;
  top : 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 40px;
  background-image: url(../images/down.svg);
  background-repeat: no-repeat;
  background-size: cover;
  margin: 20px auto;
}
@media (max-width: 767px) {
  .step__item::after{
    width: 24px;
    height: 24px;
    margin: 15px 0;
  }
}

.step__item:nth-child(3):after{
  content: none;
}

.step__item:nth-child(2),
.step__item:nth-child(3){
  margin-top: 80px;
}
@media (max-width: 767px) {
  .step__item:nth-child(2),
  .step__item:nth-child(3){
    margin-top: 54px;
  }
}

.step__item p:nth-child(1){
  font-family: 'josefin sans';
  font-weight: 700;
  font-size: 32px;
  line-height: calc(38/32);
  background-color: #1A1705;
  color: #fff;
  border-radius: 10px 10px 0 0;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 767px) {
.step__item p:nth-child(1){
  font-size: 18px;
  height: 50px;
}
}

.step__item p:nth-child(2){
  background-color: #fff;
  border-radius: 0 0 10px 10px ;
  font-size: 18px;
  line-height: calc(22/18);
  padding: 30px 30px 35px 30px;
}

@media (max-width: 767px) {
  .step__item p:nth-child(2){
    font-size: 13px;
    padding: 15px 20px 14px 20px;
    line-height: 1.6;
  }
}

.step__image{
  margin-left: auto;
  position: relative;

}

@media (max-width: 767px) {
  .step__image{
    margin-top: 30px;
  }
}

.step__image p{
  font-size:12px;
  text-align: center
}

.step__image button,
.step__image video{
  width: 100%;
}

.step__image .move__item{
  border: 3px solid #212529;
  border-radius: 15px;
  padding:10px;
}

.step__image .move__item::after{
  content: none;
}

.step__move.modal-dialog{
  margin: auto;
}
@media (max-width: 958px) {
  .step__move.modal-dialog{
    margin: 30% auto;
  }
}

.move__content .row{
  margin: 0 -30px;
}

.move__item{
  display: block;
  padding: 0 30px;
}


.feature{
}

.feature__content{
}

.feature__item{
  border-radius: 15px;
  border: 3px solid #1A1705;
  background-color: #fff;
  padding: 0 20px 20px 20px;
  height: 100%;
}

.feature__item span{
  background-color: #1A1705;
  color: #fff;
  border-radius: 22px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 187px;
  margin: -22px auto 0 auto;
}

@media (max-width: 767px) {
  .feature__item span{
    font-size: 18px;
  }
}

.feature__box{
  padding:0 15px;
  display: block;
}

@media (max-width: 767px) {
  .feature__box{
    margin-top: 52px;
  }
}

.col-md-12{
  margin-top: 52px;
}


.feature__image{
  padding-top: 26px;
}

.feature__title{
  font-size: 18px;
  line-height: 1.5;
  text-align: center;
  padding-top: 20px;
}

@media (max-width: 767px) {
  .feature__title{
    font-size: 16px;
    padding-top: 10px;
  }
}

.feature__text{
  font-size: 14px;
  line-height: 1.8;
  padding-top: 17px;
  font-weight: 400;
}

.feature__box:nth-child(2) .feature__text,
.feature__box:nth-child(3) .feature__text{
  padding-top:44px;
}


@media (max-width: 767px) {
  .feature__text{
    font-size: 13px;
    padding-top: 17px;
  }
}

@media (max-width: 767px) {
.feature__box:nth-child(2) .feature__text,
.feature__box:nth-child(3) .feature__text{
  padding-top: 17px;
  }
}

.merit{
  padding-bottom: 100px;
}

@media (max-width: 767px) {
  .merit{
    padding-bottom: 49px;
  }
}

.merit__item{
  width: 33.3333%;
}

@media (max-width: 767px) {
  .merit__content .row{
    justify-content: center;
  }

  .merit__item{
    width: 50%;
    margin-top: 30px;
  }
}

.merit__image{
  max-width: 218px;
  width: 100%;
  height: 218px;
  margin: 0 auto;
  border-radius: 100%;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 767px) {
.merit__image{
  height: 150px;
  width: 150px;
}
}


.merit__item:nth-child(1) img,
.merit__item:nth-child(3) img{
  height: 100px;
  width: auto;
}

.merit__item:nth-child(2) img{
  height: 60px;
  width:auto;
}

.merit__title{
  text-align: center;
  margin-top: 30px;
}
  @media (max-width: 767px) {
    .merit__title{
      font-size: 14px;
      margin-top: 20px;
    }
}


.cta{
  background-image: url(../images/fix.jpg);
  background-position: center;
  background-size: cover;
}

.cta__inner{
  background-color: rgba(255, 255, 255, 0.85);
  padding: 0 0 100px 0;
}
@media (max-width: 767px) {
  .cta__inner{
    padding-bottom: 50px;
  }
}

.cta__title{
  padding-bottom: 0;
}

.cta__text{
  font-size: 18px;
  text-align: center;
  margin-top: 30px;
}
@media (max-width: 767px) {
  .cta__text{
    font-size: 13px;
    margin-top: 23px;
  }
}

.cta__btn{
  display: flex;
  justify-content: center;
  margin-top: 50px;
  column-gap: 30px;
}
@media (max-width: 767px) {
  .cta__btn{
    display: block;
    margin-top: 48px;
  }
  .cta__btn a{
    margin: 0 auto;
  }
  .cta__btn a:nth-child(2){
    margin-top: 10px;
  }
}



.case{
  padding-bottom: 100px;
}

.case__content .row{
  margin: 0 -30px;
}

.case__item{
  padding: 0 30px;
}

.case__category{
  font-size: 12px;
  letter-spacing: .05em;
  background-color: #fff;
  border-radius: 5px;
  line-height: 1;
  padding: 7px 10px;
  margin-top: 20px;
  display: inline-block;
}

.case__title{
  font-size: 16px;
  letter-spacing: .05em;
  margin-top: 10px;
}

.case__text{
  font-size: 14px;
  margin-top: 20px;
  line-height: 1.7;
}



.flow{
  background-color: #fff;
  padding-bottom: 100px;
}
@media (max-width: 767px) {
  .flow{
    padding-bottom: 50px;
  }
}

.flow__content{
  width: 100%;
}

.flow__item{
  display: flex;
}
@media (max-width: 767px) {
  .flow__item{
  border-radius: 15px;
  border: 3px solid #1A1705;
  padding: 16px;
  }
}

.flow__item:not(:first-child){
  margin-top: 30px;
}
@media (max-width: 767px) {
  .flow__item:not(:first-child){
    margin-top: 20px;
  }
}


.flow__image{
  max-width: 300px;
  width: 100%;
}

.flow__image img{
  border-radius: 15px 0 0 15px;
}
@media (max-width: 767px) {
  .flow__image{
    max-width: 100px;
  }
  .flow__image img{
    border-radius: 0;
  }
}


.flow__body{
  padding: 20px 30px 20px 30px;
  border-top: 3px solid #1A1705;
  border-right: 3px solid #1A1705;
  border-bottom: 3px solid #1A1705;
  border-radius: 0 15px 15px 0;
  width: 100%;
}
@media (max-width: 767px) {
.flow__body{
  border:none;
  border-radius: 0;
  padding: 0 0 0 20px;
}
}

.flow__title{
  font-size: 18px;
  line-height: calc(22/18);
}
@media (max-width: 767px) {
.flow__title{
  font-size: 16px;
}
}

.flow__text{
  font-size: 16px;
  line-height: 1.6;
  margin-top: 23px;
  font-weight: 400;
}
@media (max-width: 767px) {
  .flow__text{
    width: 100%;
    font-size: 13px;
    margin-top: 12px;
    line-height: 1.45;
  }
}



.faq{
}

.faq__item{

}

.accordion__item{
  margin-top: 30px;
  display: block;
}
@media (max-width: 767px) {
  .accordion__item{
    margin-top: 15px;
  }
}

.accordion__item:first-child{
  margin-top: 0;
}

.q,
.a{
  font-family: 'Josefin Sans';
  font-weight: 700;
  font-size: 32px;
  line-height: 1;
}

.question{
  position: relative;
  cursor: pointer;
  background-color: #fff;
  color: #1A1705;
  border: 3px solid #1A1705;
  border-radius: 15px;
  height: 65px;
  transition: all ease .08s;
  padding-right: 40px;
}
@media (max-width: 767px) {
  .question{
    height: 95px;
    padding-right: 50px;
  }
}

.question p{
  display: flex;
  align-items: center;
  height: 100%;
  font-size: 18px;
}
@media (max-width: 767px) {
  .question p{
    font-size: 13px;
  }
}

.question .q{
  font-size: 32px;
  background-color: #1A1705;
  color: #fff;
  border-radius: 11px 0 0 11px;
  height: 100%;
  display: flex;
  width: 65px;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  transition: all ease .08s;
}
@media (max-width: 767px) {
  .question .q{
    padding: 0 20px;
    margin-right: 15px;
  }
}

.question:after {
  content: "";
  position: absolute;
  right: 18px;
  top: 33%;
  display: block;
  width: 17px;
  height: 17px;
  border-top: solid 3px #000;
  border-right: solid 3px #000;
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
}
@media (max-width: 767px) {
  .question:after {
    top: 40%;
    width: 13px;
    height: 13px;
  }
}


.question.open{
  border-radius: 15px 15px 0 0;
}

.question.open .q{
  border-radius:11px 0 0 0;
}
/* 
.question.open:after {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  top: 45%;
/* /*   .openクラスがついた時の要素の角度を指定 */
.answer{
  background-color: #F9F9F9;
  position: relative;
  border-bottom: 3px solid #1A1705;
  border-right: 3px solid #1A1705;
  border-left: 3px solid #1A1705;
  border-radius: 0 0 15px 15px;
}

.answer p{
  display: flex;
  align-items: center;
  padding: 17px 44px 22px 7px;
}
@media (max-width: 767px) {
  .answer p{
    font-size: 13px;
  }
}

.answer .a{
  background-color: #FFC32E;
  color: #1A1705;
  font-size: 22px;
  border-radius: 100%;
  width: 45px;
  height: 45px;
  padding: calc(65px - 45px);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 30px;
  margin-left: 7px;
}


.about{
  padding-bottom: 100px;
}
@media (max-width: 767px) {
  .about{
    padding-bottom: 50px;
  }
}

.about__box{
  padding: 0 15px;
  display: block;
}
@media (max-width: 767px) {
  .about__box:not(:first-child){
    margin-top: 20px;
  }
}

.move__item:nth-of-type(1),
.about__box:nth-of-type(1){
  transition-delay: .2s;
}

.move__item:nth-of-type(2),
.about__box:nth-of-type(2){
  transition-delay: .4s;
}

.move__item:nth-of-type(3),
.about__box:nth-of-type(3){
  transition-delay: .6s;
}

.about__item{
  background-color: #fff;
  border: 3px solid #1A1705;
  border-radius: 15px;
  padding: 40px 15px;
  height: 100%;
}
@media (max-width: 767px) {
  .about__item{
    padding: 17px 14px 25px 14px;
  }
}

.about__item:nth-child(1) .about__image img{
  border-radius: 15px;
}

.about__title{
font-size: 18px;
margin-top: 10px;
text-align: center;
}
@media (max-width: 767px) {
  .about__title{
    font-size: 16px;
  }
}


.about__text{
  font-size: 14px;
  margin-top: 29px;
  line-height: 1.7;
  font-weight: 400;
}
@media (max-width: 767px) {
  .about__text{
    font-size: 13px;
    margin-top: 15px;
  }
}

.about__text a{
  color: #1A1705;
  text-decoration: underline;
}

.rakureki .col-lg-4.col-md-6{
  margin-bottom: 30px;
}



/* モーダル */
body.modal-open {
  overflow-y: auto;
}

.move .modal-body{
text-align: center;
}

/* モーダルが開いたときにポップアップを表示調整 */
body.modal-open .modal-backdrop{
  z-index: -1;
}

.move .btn-primary{
  color:transparent;
    background-color:#FFC32E;
    border-color: #FFC32E;
    padding: 0;
}

.modal-dialog {
  max-width: 90vw;
  margin: 0 auto;
}

.modal-body{
    position: relative;
    width: 100%;
}
.modal-body:before {
    content:"";
    display: block;
    padding-top: 56.25%; /* 高さと幅の比を16:9に固定。9/16*100=56.25 */
}
.modal-body iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

button.move__item:focus{
  outline: none;
}


/* move */
.move__item{
  position: relative;
  background-color: transparent;
  border: none;
}

.move__item::after{
  content: "";
  position: absolute;
  width: 40px;
  height: 40px;
  background-image: url(../images/start.svg);
  fill: #fff;
  background-repeat: no-repeat;
  top: 40%;
  left: 50%;
  transform: translate(-50%,-50%);
  animation-delay: 1.5s;
}

.move__text{
  margin-top: 20px;
  font-size: 18px;
  text-align: center;
}