/* main */

seciton{
    display: block;
}

/* main */
#main{
    background: url(../img/bg_stripe02.png) repeat;
    animation: bg-slider 30s linear infinite; 
    /*
    background: linear-gradient( -45deg, #fff9d8 25%, #ffd800 25%, #ffd800 50%, #fff9d8 50%, #fff9d8 75%, #ffd800 75%, #ffd800 );
    background-size: 40px 40px;
    */
    padding: 40px 20px;
}
@keyframes bg-slider {
	from { background-position: 0 0; }
    to { background-position: -1518px 0; }
}

#main #mainContents{
    background: #fff;
    padding: 20px;
    box-sizing: border-box;
    border-radius: 10px;
    position: relative;
    box-shadow: 0px 0px 8px 1px rgba(100, 100, 100, 0.2);
}
#main #mainContents h2{
    font-size: 1.25rem;
    font-weight: bold;
    display: block;
    text-align: left;
    padding-bottom: 1rem;
}

/* nav */
#unique_nav ul{
    margin: 40px 0px;
}
#unique_nav li{
    width: 100%;
    margin-bottom: 2rem;
}
#unique_nav li a{
    position: relative;
    background: #FFA500;
    color:#fff;
    font-size: 1.25rem;
    display: block;
    padding: 15px 15px;
    border-radius: 50px;
    font-weight: bold;
    text-align: center;  
}
#unique_nav li a::after {
    content: '';
    display: block;
    position: absolute;
    bottom: -10px;
    left: 50%;
    border-top: 10px solid #FFA500;
    border-right: 10px solid transparent;
    border-left: 10px solid transparent;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
}

/* seido */
#unique_seido{
    background-color: #fff9d8;  
    padding:0 20px 40px;
}
#unique_seido h2,
#unique_product h2,
#unique_human h2{
    padding: 40px 0;
}
#unique_seido p,
#unique_product p,
#unique_human p{    
    padding: 0 0 40px;
}
#unique_seido img,
#unique_product img,
#unique_human img{
    width: 100%;
}
#unique_seido .list,
#unique_product .list,
#unique_human .list{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
#unique_seido .list dl{
    width:100%;
    background: #fff;
    box-sizing: border-box;
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 3%;
    display: table;
}
#unique_seido .list dl dt,
#unique_product .list dl dt{
    display: table-cell;
    padding-right: 1rem;
}
#unique_seido .list dl dt + dd,
#unique_product .list dl dt + dd{
    padding-bottom: 1rem;
    font-weight: bold;
}
#unique_seido .list dl dt + dd span{
    border-bottom: 3px dotted #FFA500;
}
#unique_seido .list dl dd:last-child{
    font-size: 0.875rem;
}
#unique_seido .picture{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
#unique_seido .picture > div {
    width:100%;
    margin-top: 3.4%;
}
#unique_seido .picture > div img{
    border-radius: 10px;
}

/* product */
#unique_product{
    padding:0 20px 40px;
}
#unique_product .list dl{
    width:48%;
    margin-bottom: 4%;
}
#unique_product .list dl dt{
    text-align: center;
}
#unique_product .list dl a{
    display: block;
    width: 100%;
    height: 100%;
}
#unique_product .list dl a:link{
    text-decoration: none;
}
#unique_product .list dl a:hover{
    opacity: 0.7;
}

/* human */
#unique_human{
    background:url(../img/bg_uniqe01_sp.png) no-repeat;
    background-position: bottom center;
    padding: 0 20px;
    background-size: cover;
}
#unique_human .list dl{
    position: relative;
    display: flex;
    width: 100%;
    background: #fff;
    box-sizing: border-box;
    border-radius: 10px;
    padding: 15px;
    margin-top: 1rem;
    box-shadow: 0px 0px 8px 1px rgba(100, 100, 100, 0.2);
}
#unique_human .list dl a{
    position: absolute;
    display: block;
    top:0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    opacity: 0;
}
#unique_human .list dl a:hover{
    opacity: 0.3;
}
#unique_human .list dl span{
    font-size: 0.75rem;
    color: #808080;
    line-height: 1.2;
    display: inline-block;
}
#unique_human .list dl p{
    padding: 0;
    font-size: 0.75rem;
    word-break: break-all;
}
#unique_human .list dl h3{
    padding-bottom: 0.5rem;
    font-weight: bold;
    font-size: 1.125rem;
    line-height: 1;
}
#unique_human .list dl img {
    border-radius: 75px;
    height: 100px;
    margin-right: 15px;
    overflow: hidden;
    padding-top: 0;
    width: 100px;
    -ms-flex-negative: 1;
    -webkit-flex-shrink: 0;
    -moz-flex-shrink: 0;
    -ms-flex-shrink: 0;
    flex-shrink: 0;
    object-fit: cover;
}
#unique_human .list dl dt{
    vertical-align: middle;
}
#unique_human .list dl dd p:first-of-type{
    color:#35518c;
    font-weight: 600;
}
#unique_human .more{
   text-align: center;
   padding: 40px 0;
}
#unique_human .more a{
    position: relative;
    background: #FFA500;
    color:#fff;
    font-size: 1.25rem;
    display: inline-block;
    padding: 15px 15px;
    border-radius: 50px;
    font-weight: bold;
    text-align: center;
    width: 50%;
}
#unique_human .morelist{
    display: none;
    padding-bottom: 40px;
}


/***  PC  ***/
@media all and (min-width: 768px) {

    /* main */
    #main{
        padding:80px 0;
    }
    #main #mainContents{
        padding: 60px 80px;
    }
    

    /* unique_nav */
    #unique_nav ul {
        margin: 60px 0 30px;
        display: flex;
    }
    #unique_nav li{
        width: 30%;
        margin-bottom: 0;
    }
    #unique_nav li:nth-child(3n-1) {
        margin: 0 5%;
    }
    #unique_nav li a{
        font-size: 1.5rem; 
    }
    
    /* seido */
    #unique_seido{
        padding:0 0 80px;
    }
    #unique_seido h2,
    #unique_product h2,
    #unique_human h2{
        padding: 80px 0;
    }
    #unique_seido p,
    #unique_product p,
    #unique_human p{    
        padding: 0 80px 80px;
    }  
    #unique_seido .list dl{
        width:31%;
        border-radius: 10px;
        padding: 40px;
        display: block;
        margin-bottom: 0;
    }
    #unique_seido .list dl:nth-child(1),
    #unique_seido .list dl:nth-child(2),
    #unique_seido .list dl:nth-child(3){
        margin-bottom: 3%;
    }
    #unique_seido .list dl dt,
    #unique_product .list dl dt{
        padding-bottom: 1rem;
        display: block;
    }
    #unique_seido .list dl dt + dd,
    #unique_product .list dl dt + dd{
        padding-bottom: 1.5rem;
        font-weight: bold;
        text-align: center;
    }
    #unique_seido .list dl dd:last-child{
        font-size: 1rem;
    }
    #unique_seido .picture > div {
        width:48.3%;
    }


    /* product */
    #unique_product{
        padding:0 0 80px;
    }
    #unique_product .list dl{
        width:31%;
    }
    #unique_product .list dl:nth-child(3n+2):last-child {
        margin-left: auto;
        margin-right: 34%;
    }
    #unique_product .list dl dt{
        text-align: center;
    }
    #unique_product .list dl dt + dd{
        font-size: 1.25rem;
    }

    /* human */
    #unique_human{
        background:url(../img/bg_uniqe01_pc.png) center center no-repeat; 
        background-size: cover;
    }
    #unique_human .list dl{
        width:49%;
        margin-top: 2%;
        padding: 20px;
        box-shadow: none;
    }
    #unique_human .list dl img {
        height: 130px;
        margin-right: 20px;
        width: 130px;
    }

    #unique_human .more{
        padding: 80px 0;
    }
    #unique_human .morelist{
        padding-bottom: 80px;
    }
    
  
    
}

