@charset "shift_jis";
/* CSS Document */

/******PC******/
@media screen and (min-width:750px){
  
  #size_btn{
    width: 100%;
    margin: 0 auto;
    background-color: #d1cac4;
    padding-bottom: 20px;
  }
  #size_btn > ul{
    display: flex;
    /* justify-content: space-between; */
    width: 90%;
    margin: 0 auto;
    position: relative;
  }
  #size_btn > ul li{
    width: calc(90%/4);
  }
  #size_btn > ul li:nth-child(n+2){
    position: absolute;
  }
  #size_btn > ul li:nth-child(2){
    left: 190px;
    top: 0;
  }
  #size_btn > ul li:nth-child(3){
    left: 375px;
    top: 0;
  }
  #size_btn > ul li:nth-child(4){
    right: -25px;
    top: 0;
  }
  #size_btn > ul li a{
    display: block;
    text-align: center;
    background: #fff;
    color: #26211e;
    padding: 10px 5px;
    border-radius: 25px;    
    border: 2px solid;
  }

  #size_btn > ul li a p{
    font-size: 15px;
    font-weight: bold;
    position: relative;
  }
  #size_btn > ul li a p::after{
    position: absolute;
    font-family: 'Material Icons';
    content: '\e315';
    top: 50%;
    right: 5px;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
  }
  #size_btn > ul li a:hover p::after {
    right: 0;
    -webkit-transition: 0.3s ease-in-out;
    -moz-transition: 0.3s ease-in-out;
    -o-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
  }

}/*PC_end*/


/******SMP******/
@media screen and (max-width: 640px) {

  #size_btn{
    width: 100%;
    margin: 0 auto;
    background-color: #d1cac4;
    padding-bottom: 3vw;
  }
  #size_btn > ul{
    display: flex;
    width: 95%;
    margin: 0 auto;
    position: relative;
  }
  #size_btn > ul li{
    width: calc(98%/4);
  }
  #size_btn > ul li:nth-child(n+2){
    position: absolute;
  }
  #size_btn > ul li:nth-child(2){
    left: 22vw;
    top: 0;
  }
  #size_btn > ul li:nth-child(3){
    left: 44vw;
    top: 0;
  }
  #size_btn > ul li:nth-child(4){
    right: -2vw;
    top: 0;
  }
  #size_btn > ul li a{
    display: block;
    text-align: center;
    background: #fff;
    color: #26211e;
    padding: 2vw 0;
    border-radius: 25px;    
    border: 2px solid;
  }
  #size_btn > ul li a{
    text-decoration: none;
  }
  #size_btn > ul li a p{
    font-size: 2vw;
    font-weight: bold;
    position: relative;
    margin-bottom: 0;
  }
  #size_btn > ul li a p::after{
    position: absolute;
    font-family: 'Material Icons';
    content: '\e315';
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
  }


}/*SMP_end*/
