/* _setting CSS */
/*
* index
*/
/* ------------------------------------------------------------------------- */
/*------------------######################################### 
----------------------------
----------------------------
min-width: 768px
----------------------------
--------------------#########################################*/
@media screen and (min-width: 768px) {
  main#contents .text01 {
    margin-bottom: 50px;
    text-align: center;
  }
  main#contents .btn01:before {
    content: "";
    position: absolute;
    top: 0;
    left: 8px;
    display: inline-block;
    width: 6px;
    height: 100%;
    background: url(../images/common/right_arrow01.svg) center/100% no-repeat;
  }
}
/*------------------######################################### 
----------------------------
----------------------------
max-width: 767px
----------------------------
--------------------#########################################*/
@media screen and (max-width: 767px) {
  main#contents .text01 {
    margin-bottom: 20vw;
    text-align: center;
  }
  main#contents .btn01:before {
    content: "";
    position: absolute;
    top: 0;
    left: 6vw;
    display: inline-block;
    width: 1.5vw;
    height: 100%;
    background: url(../images/common/right_arrow01.svg) center/100% no-repeat;
  }
}
