/* body */

body {
    background: url(images/ishiback.png),#ffdef0; /* Old browsers */;
    background: url(images/ishiback.png), -moz-linear-gradient(left,  #ffdef0 0%, #d3e2ff 70%); /* FF3.6-15 */
    background: url(images/ishiback.png), -webkit-linear-gradient(left,  #ffdef0 0%,#d3e2ff 70%); /* Chrome10-25,Safari5.1-6 */
    background: url(images/ishiback.png), linear-gradient(to right,  #ffdef0 0%,#d3e2ff 60%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffdef0', endColorstr='#d3e2ff',GradientType=1 ); /* IE6-9 */
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

p {
    margin: 5px;
    padding: 15px;
    font-size: 1.1em;
    color: #444c60;
    line-height: 1.4em;
    font-family: 'M PLUS 1p', sans-serif;
    text-align: center;
}

a {
    color: #c3478e;
    text-decoration: none;
}

h1 {
    margin-top: 20px;
    padding: 5px;
    font-size: 3em;
    font-weight: 600;
    color:#96805b;
    font-family: 'Raleway', sans-serif;
    text-align: center;
}

h2 {
    margin: 15px 5px 10px 5px;
    padding: 5px;
    font-size: 1.8em;
    font-weight: 500;
    font-family: 'M PLUS 1p','Montserrat', sans-serif;
    color: #5e28d6;
    text-align: center;
}


/* slider */
.slider{
    max-width: 440px;
    margin: 0 auto;
    padding: 20px;
    overflow: hidden;
    display: flex;
    flex-flow: row nowrap;
    justify-content: flex-start;
    align-items: center;
}

.slider__content{
    min-width: 100%;
    animation: sliderAnime 6s ease-in-out infinite;
}
  
@keyframes sliderAnime{
    0%{

    }
    16.6%{
        transform: translateX(0);
    }
    33.3%{
        transform: translateX(-100%);
    }
    50%{
        transform: translateX(-100%);
    }
    66.6%{
        transform: translateX(-200%);
    }
    83.2%{
        transform: translateX(-200%);
    }
    100%{
        transform: translateX(0);
    }
} 

.slider__img{
    padding: 20px;
    max-width: 100%;
    min-width: 100%;
}

/* main */

#title {
    margin: 10px;
    margin-top: 40px;
    display: flex;
    justify-content: center;
    box-sizing: border-box;
}

#aisatsu {
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
}

#prof {
    background-color: rgba(210, 214, 216, 0.6);
    border-top: 1px solid #d6b882;
    border-bottom: 1px solid #d6b882;
    padding: 15px;
}

.prof-name {
    margin: 0 auto;
    max-width: 300px;
    padding: 5px;
    background-color: rgba(240, 239, 239, 0.6);
    border-radius: 10px;
    text-align: center;
    color: #bf3780;
}

#gallery {
    margin: 0 auto;
}

#gallery-img {
    display: flex;
    justify-content: center;
    margin: 0 auto;
}

#works-img {
    padding: 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

#works-img li {
    padding: 10px;
    list-style: none;
}

#contact {
    background-color: rgba(234, 240, 240, 0.6);
    border: 1px solid #e3b873;
}

.link-text {
    display: inline-block;
    margin: 10px;
    padding: 5px;
    background-color: rgba(255, 255, 255, 0.6);
    color: #c3478e;
    border-radius: 10px;
}

small {
    display: flex;
    justify-content: center;
    margin: 0 auto;
    padding: 20px;
    text-align: center;
    font-size: 0.8em;
    color: #666f79;
}
    
    
    