@charset "utf-8";

/* CSS Document */
/***************<下層ページ共通>**************/
header {
    position: fixed;
    top: 0;
}

h1.green {
    display: none;
}

main {
    margin-top: 200px;
}

/**************</下層ページ共通>***************/

p.text {
    text-align: center;
    margin-bottom: 90px;
}

#slide {
    position: relative;
    overflow: hidden;
    width: 525px;
    height: 364px;
}

#slide ul {
    position: absolute;
    width: 2100px;
}

#slide li {
    float: left;
    width: 525px;
    list-style-type: none;
    box-shadow: inset 1px 1px 10px 10px #fff;
}

#slide li img {
    position: relative;
    z-index: -1;
}

#prevBtn {
    position: absolute;
    top: 180px;
    left: 10px;
    background-color: transparent;
    border: none;
    outline: 0;
}

#nextBtn {
    position: absolute;
    top: 180px;
    right: 10px;
    background-color: transparent;
    border: none;
    outline: 0;
}

table {
    border-collapse: collapse;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    position: relative;
    width: 528px;
    box-sizing: border-box;
}

table::before {
    background-image: url(../images/craft_illust.png);
    background-repeat: no-repeat;
    background-position: right;
    position: absolute;
    content: "";
    display: block;
    width: 100%;
    height: 102px;
    top: -102px;
    left: 0;
}

th.green {
    background: #41ce00;
    border: 1px solid #41ce00;
    line-height: 3em;
    color: #fff;
}

span.normal {
    font-weight: normal;
    font-size:14px;
}

.border {
    border: 1px dashed #8e8e8e;
}

.border-right {
    border-right: 1px dashed #8e8e8e;
}

.border-bottom {
    border-bottom: 1px dashed #8e8e8e;
}

.border-top {
    border-top: 1px dashed #8e8e8e;
}

td {
    padding: 10px 0;
}
.caution{
    text-align:center;
    font-size:16px;
    padding-top:20px;
}
td span {
    font-size: 14px;
    padding-right: 3px;
}

/**********************<レスポンシブ>*********************/
@media screen and (max-width:640px) {

    /*****************下層ページ共通*************/
    header {
        position: fixed;
        top: 0;
    }

    .my-parts {
        border-left: none;
        color:#008c0d;
    }

    main {
        margin-top: 150px;
    }

    /*****************************************/
    p.text{
        margin: 0 20px 30px 20px;
        text-align:left;
    }
    table {
        width: 90%;
        margin-top:100px;
    }
    #slide{
        width:auto;
        margin:0 20px;
    }
    #slide li img{
        width:90%;
    }
    #nextBtn{
        top:150px;
    }
    #nextBtn img{
        width:70%;
    }
    #prevBtn{
        top:150px;
    }
    #prevBtn img{
        width:70%;
    }


    /**********************</レスポンシブ>*********************/
