@charset "UTF-8";
#pIndex main {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
}
@media screen and (max-width: 360px) {
    #pIndex main {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        -webkit-box-align: stretch;
            -ms-flex-align: stretch;
                align-items: stretch;
    }
    #pIndex main .main_section {
        margin-top: 50px;
    }
}
#pIndex #pIndex_products {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
}
#pIndex .products {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    width: calc(100% + (10px * 2));
    margin-left: -10px;
    margin-top: -10px;
}
@media screen and (max-width: 360px) {
    #pIndex .products {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
    }
}
#pIndex .products .product {
    -webkit-transition: all 0.2s ease 0s;
    -o-transition: all 0.2s ease 0s;
    transition: all 0.2s ease 0s;
    width: calc(1 / (3) * 100% - 10px * 2 - 1px);
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
    position: relative;
    margin: 10px;
}
@media screen and (min-width: 1800px) {
    #pIndex .products .product {
        width: calc(1 / (3 + 1) * 100% - 10px * 2 - 1px);
    }
}
@media screen and (max-width: 1400px) {
    #pIndex .products .product {
        width: calc(1 / (3 - 1) * 100% - 10px * 2 - 1px);
    }
}
@media screen and (max-width: 360px) {
    #pIndex .products .product {
        width: calc(1 / 1 * 100% - 10px * 2 - 1px);
    }
}
#pIndex .products .product:before {
    content: "";
    display: block;
    padding-top: calc(4 / 5 * 100%);
    background: rgba(0, 0, 0, 0);
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}
#pIndex .products .product:hover:before {
    background: rgba(0, 0, 0, 0.6);
}
#pIndex .products .product:hover dl {
    opacity: 1;
}
#pIndex .products .product a {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
    z-index: 100;
}
#pIndex .products .product dl {
    z-index: 10;
    position: absolute;
    left: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
    width: 100%;
    padding: 0px 10px 0px 20px;
    opacity: 0;
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    color: #fafafa;
    line-height: 1.4;
}
#pIndex .products .product dl .wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
}
#pIndex .products .product dl .wrapper:nth-of-type(n + 2) {
    margin-top: 10px;
}
@media screen and (max-width: 360px) {
    #pIndex .products .product dl .wrapper:nth-of-type(n + 2) {
        margin-top: 0.5em;
    }
}
#pIndex .products .product dl dt {
    width: 35%;
    font-size: 0.75rem;
}
@media screen and (max-width: 360px) {
    #pIndex .products .product dl dt {
        width: 30%;
        font-size: 0.625rem;
    }
}
#pIndex .products .product dl dd {
    width: 65%;
    font-size: 1rem;
    margin: 0 0 0 auto;
}
@media screen and (max-width: 360px) {
    #pIndex .products .product dl dd {
        width: 70%;
        font-size: 0.875rem;
    }
}
#pIndex .products .product dl dd:nth-of-type(n + 2) {
    margin-top: 5px;
}

#pFavorites #pFavorites_products .section_title {
    margin-bottom: 80px;
}
@media screen and (max-width: 360px) {
    #pFavorites #pFavorites_products .section_title {
        margin: 50px 0;
    }
}
#pFavorites #pFavorites_products a.select {
    background: transparent;
    display: inline-block;
    padding: 4px 8px;
    color: #103656;
    border: 2px solid #103656;
    margin-bottom: 50px;
}
#pFavorites #pFavorites_products a.select:hover {
    color: #fafafa;
    background: #103656;
}
@media screen and (max-width: 360px) {
    #pFavorites #pFavorites_products a.select {
        margin-bottom: 50px;
        position: relative;
        left: 50%;
        -webkit-transform: translateX(-50%);
            -ms-transform: translateX(-50%);
                transform: translateX(-50%);
    }
}
#pFavorites .products {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    width: calc(100% + (15px * 2));
    margin-left: -15px;
    margin-top: -15px;
}
@media screen and (max-width: 360px) {
    #pFavorites .products {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
    }
}
@media screen and (max-width: 360px) {
    #pFavorites .products {
        padding: 0 15px;
    }
}
#pFavorites .products .product {
    -webkit-transition: all 0.2s ease 0s;
    -o-transition: all 0.2s ease 0s;
    transition: all 0.2s ease 0s;
    width: calc(1 / (3) * 100% - 15px * 2 - 1px);
    margin: 15px;
    padding: 15px;
    position: relative;
    border: 1px solid #897750;
    color: #2b2b2e;
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    cursor: pointer;
}
@media screen and (min-width: 1800px) {
    #pFavorites .products .product {
        width: calc(1 / (3 + 1) * 100% - 15px * 2 - 1px);
    }
}
@media screen and (max-width: 1400px) {
    #pFavorites .products .product {
        width: calc(1 / (3 - 1) * 100% - 15px * 2 - 1px);
    }
}
@media screen and (max-width: 360px) {
    #pFavorites .products .product {
        width: calc(1 / 1 * 100% - 15px * 2 - 1px);
    }
}
#pFavorites .products .product.outOfStock:before {
    content: "在庫無し";
    position: absolute;
    top: 0;
    left: 0;
    background: #fafafa;
    padding: 0 5px;
    font-size: 0.75rem;
    color: #363c3c;
    z-index: 100;
    -webkit-transform: translate(10px, -50%);
        -ms-transform: translate(10px, -50%);
            transform: translate(10px, -50%);
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}
#pFavorites .products .product button.delete {
    position: absolute;
    top: 0;
    right: 0;
    width: 30px;
    height: 30px;
    z-index: 100;
    -webkit-transform: translate(50%, -50%);
        -ms-transform: translate(50%, -50%);
            transform: translate(50%, -50%);
}
#pFavorites .products .product a {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
}
#pFavorites .products .product dl {
    margin-top: 20px;
    padding: 0 10px;
    line-height: 1.6;
}
#pFavorites .products .product dl .wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
}
#pFavorites .products .product dl .wrapper:nth-of-type(n + 2) {
    margin-top: 10px;
}
@media screen and (max-width: 360px) {
    #pFavorites .products .product dl .wrapper:nth-of-type(n + 2) {
        margin-top: 0.5em;
    }
}
#pFavorites .products .product dl dt {
    width: 35%;
    font-size: 0.75rem;
}
@media screen and (max-width: 360px) {
    #pFavorites .products .product dl dt {
        width: 30%;
        font-size: 0.625rem;
    }
}
#pFavorites .products .product dl dd {
    width: 65%;
    font-size: 1rem;
    margin: 0 0 0 auto;
}
@media screen and (max-width: 360px) {
    #pFavorites .products .product dl dd {
        width: 70%;
        font-size: 0.875rem;
    }
}
#pFavorites .products .product dl dd:nth-of-type(n + 2) {
    margin-top: 5px;
}

#pFavoritesSelect #pFavoritesSelect_products .section_title {
    margin-bottom: 80px;
}
@media screen and (max-width: 360px) {
    #pFavoritesSelect #pFavoritesSelect_products .section_title {
        margin: 50px 0;
    }
}
#pFavoritesSelect .products {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    width: calc(100% + (15px * 2));
    margin-left: -15px;
    margin-top: -15px;
}
@media screen and (max-width: 360px) {
    #pFavoritesSelect .products {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
    }
}
@media screen and (max-width: 360px) {
    #pFavoritesSelect .products {
        padding: 0 15px;
    }
}
#pFavoritesSelect .products .product {
    -webkit-transition: all 0.2s ease 0s;
    -o-transition: all 0.2s ease 0s;
    transition: all 0.2s ease 0s;
    width: calc(1 / (5) * 100% - 15px * 2 - 1px);
    margin: 15px;
    position: relative;
    color: #2b2b2e;
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    cursor: pointer;
}
@media screen and (min-width: 1800px) {
    #pFavoritesSelect .products .product {
        width: calc(1 / (5 + 1) * 100% - 15px * 2 - 1px);
    }
}
@media screen and (max-width: 1400px) {
    #pFavoritesSelect .products .product {
        width: calc(1 / (5 - 1) * 100% - 15px * 2 - 1px);
    }
}
@media screen and (max-width: 360px) {
    #pFavoritesSelect .products .product {
        width: calc(1 / 1 * 100% - 15px * 2 - 1px);
    }
}
#pFavoritesSelect .products .product input {
    display: none;
}
#pFavoritesSelect .products .product label {
    display: block;
    cursor: pointer;
    border: 1px solid rgba(137, 119, 80, 0.4);
    padding: 15px;
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    position: relative;
    height: 100%;
}
#pFavoritesSelect .products .product label:before {
    content: "選択済";
    position: absolute;
    top: 0;
    left: 0;
    background: #fafafa;
    padding: 0 5px;
    font-size: 0.75rem;
    color: #897750;
    z-index: 100;
    -webkit-transform: translate(10px, -50%);
        -ms-transform: translate(10px, -50%);
            transform: translate(10px, -50%);
    opacity: 0;
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}
#pFavoritesSelect .products .product input[type=checkbox]:checked + label {
    border: 1px solid #897750;
}
#pFavoritesSelect .products .product input[type=checkbox]:checked + label:before {
    opacity: 1;
}
#pFavoritesSelect .products .product dl {
    margin-top: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 0 10px;
    line-height: 1.6;
}
#pFavoritesSelect .products .product dl dt {
    display: none;
}
#pFavoritesSelect .products .product dl dd {
    font-size: 1rem;
}
#pFavoritesSelect .products .product dl dd:nth-of-type(n + 2) {
    margin-top: 10px;
}
@media screen and (max-width: 360px) {
    #pFavoritesSelect .products .product dl dd {
        font-size: 0.875rem;
    }
}
#pFavoritesSelect #selectForm_note {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-top: 80px;
}
#pFavoritesSelect #selectForm_note label {
    font-size: 1.125rem;
}
#pFavoritesSelect #selectForm_note textarea {
    font-family: 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "Hiragino Mincho Pro", HGS明朝E, メイリオ, Meiryo, serif;
    margin-top: 30px;
    font-size: 1rem;
    padding: 10px;
    border: 1px solid #103656;
    letter-spacing: 0.075rem;
    line-height: 1.6;
    width: 85%;
    height: 400px;
    max-width: 750px;
}
#pFavoritesSelect .submit {
    background: #363c3c;
    color: #fafafa;
    display: block;
    margin: 80px auto 0;
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    padding: 0.5em 2em;
    font-size: 1.5rem;
    border-radius: 2px;
}
#pFavoritesSelect .submit:hover {
    background: #103656;
}
#pFavoritesSelect .submit.disabled {
    cursor: not-allowed;
}

#pProducts main {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
}
@media screen and (max-width: 360px) {
    #pProducts main {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
    }
    #pProducts main .main_section {
        margin-top: 50px;
    }
}
#pProducts #pProducts_products {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
}
#pProducts #pProducts_products .section_title {
    text-align: center;
}
#pProducts #pProducts_products .sort {
    border: 1px solid #103656;
    padding: 4px 8px;
    font-size: 0.875rem;
    margin-bottom: 20px;
}
#pProducts #pProducts_products .message {
    text-align: center;
}
#pProducts .products {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    width: calc(100% + (15px * 2));
    margin-left: -15px;
    margin-top: -15px;
}
@media screen and (max-width: 360px) {
    #pProducts .products {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
    }
}
#pProducts .products .product {
    -webkit-transition: all 0.2s ease 0s;
    -o-transition: all 0.2s ease 0s;
    transition: all 0.2s ease 0s;
    width: calc(1 / (3) * 100% - 15px * 2 - 1px);
    margin: 15px;
    padding: 15px;
    position: relative;
    color: rgba(43, 43, 46, 0.9);
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    cursor: pointer;
}
@media screen and (min-width: 1800px) {
    #pProducts .products .product {
        width: calc(1 / (3 + 1) * 100% - 15px * 2 - 1px);
    }
}
@media screen and (max-width: 1400px) {
    #pProducts .products .product {
        width: calc(1 / (3 - 1) * 100% - 15px * 2 - 1px);
    }
}
@media screen and (max-width: 360px) {
    #pProducts .products .product {
        width: calc(1 / 1 * 100% - 15px * 2 - 1px);
    }
}
#pProducts .products .product.inStock {
    border: 1px solid rgba(137, 119, 80, 0.5);
}
#pProducts .products .product.inStock:hover {
    border: 1px solid #897750;
}
#pProducts .products .product.outOfStock {
    border: 1px solid rgba(148, 151, 153, 0.5);
}
#pProducts .products .product.outOfStock:before {
    content: "在庫無し";
    position: absolute;
    top: 0;
    left: 0;
    background: #fafafa;
    padding: 0 5px;
    font-size: 0.75rem;
    color: rgba(54, 60, 60, 0.7);
    z-index: 100;
    -webkit-transform: translate(10px, -50%);
        -ms-transform: translate(10px, -50%);
            transform: translate(10px, -50%);
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}
#pProducts .products .product.outOfStock:hover {
    border: 1px solid #949799;
}
#pProducts .products .product.outOfStock:hover:before {
    color: #363c3c;
}
#pProducts .products .product img {
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    opacity: 0.9;
}
#pProducts .products .product:hover {
    color: #2b2b2e;
}
#pProducts .products .product:hover img {
    opacity: 1;
}
#pProducts .products .product a {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
}
#pProducts .products .product dl {
    margin-top: 20px;
    padding: 0 10px;
    line-height: 1.4;
}
#pProducts .products .product dl .wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
}
#pProducts .products .product dl .wrapper:nth-of-type(n + 2) {
    margin-top: 10px;
}
@media screen and (max-width: 360px) {
    #pProducts .products .product dl .wrapper:nth-of-type(n + 2) {
        margin-top: 0.5em;
    }
}
#pProducts .products .product dl dt {
    width: 35%;
    font-size: 0.75rem;
}
@media screen and (max-width: 360px) {
    #pProducts .products .product dl dt {
        width: 30%;
        font-size: 0.625rem;
    }
}
#pProducts .products .product dl dd {
    width: 65%;
    font-size: 1rem;
    margin: 0 0 0 auto;
}
@media screen and (max-width: 360px) {
    #pProducts .products .product dl dd {
        width: 70%;
        font-size: 0.875rem;
    }
}
#pProducts .products .product dl dd:nth-of-type(n + 2) {
    margin-top: 5px;
}

#pProduct .main {
    margin: 80px auto auto;
}
@media screen and (max-width: 360px) {
    #pProduct .main {
        margin-top: 20px;
    }
}
#pProduct .colorChart {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin-top: 20px;
}
#pProduct .colorChart li {
    padding: 21px;
    width: 150px;
    color: rgba(255, 255, 255, 0.4);
}
#pProduct #pProduct_product {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
@media screen and (max-width: 360px) {
    #pProduct #pProduct_product {
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
            -ms-flex-direction: column-reverse;
                flex-direction: column-reverse;
    }
}
#pProduct #pProduct_product .info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-right: 100px;
    max-width: 300px;
}
@media screen and (max-width: 360px) {
    #pProduct #pProduct_product .info {
        width: 90%;
        margin: 30px auto 0;
    }
}
#pProduct #pProduct_product .info dl {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
}
@media screen and (max-width: 360px) {
    #pProduct #pProduct_product .info dl {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
            -ms-flex-direction: row;
                flex-direction: row;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        margin-top: 30px;
    }
}
#pProduct #pProduct_product .info dl dt {
    line-height: 1;
    font-size: 0.875rem;
}
@media screen and (max-width: 360px) {
    #pProduct #pProduct_product .info dl dt {
        font-size: 0.75rem;
        width: 100px;
    }
}
#pProduct #pProduct_product .info dl dt:nth-child(n+2) {
    margin-top: 30px;
}
@media screen and (max-width: 360px) {
    #pProduct #pProduct_product .info dl dt:nth-child(n+2) {
        margin-top: 25px;
    }
}
#pProduct #pProduct_product .info dl dd {
    margin-top: 10px;
    font-size: 1.125rem;
}
@media screen and (max-width: 360px) {
    #pProduct #pProduct_product .info dl dd {
        font-size: 1rem;
        line-height: 1;
        margin-top: 0;
        width: calc(100% - 100px);
    }
    #pProduct #pProduct_product .info dl dd:nth-of-type(n + 2) {
        margin-top: 25px;
    }
}
#pProduct #pProduct_product .info form {
    margin: auto 0 0;
}
@media screen and (max-width: 360px) {
    #pProduct #pProduct_product .info form {
        margin: 30px auto 0;
    }
}
#pProduct #pProduct_product .info form button {
    margin-top: 50px;
    font-size: 1rem;
    padding: 10px 15px;
}
@media screen and (max-width: 360px) {
    #pProduct #pProduct_product .info form button {
        margin-top: 30px;
    }
}
#pProduct #pProduct_product .info form button.add {
    border: 1px solid #103656;
}
#pProduct #pProduct_product .info form button.add:hover {
    background: #103656;
    color: #fafafa;
}
#pProduct #pProduct_product .info form button.remove {
    border: 1px solid transparent;
    background: #103656;
    color: #fafafa;
}
#pProduct #pProduct_product .info form button.remove:hover {
    background: transparent;
    color: #2b2b2e;
    border: 1px solid #103656;
}
#pProduct #pProduct_product .image {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
}
#pProduct #pProduct_product .image img {
    width: auto;
    max-width: 100%;
    max-height: 70vh;
    height: auto;
    display: block;
    margin: 0 auto;
}

#pList .main {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
}
@media screen and (max-width: 360px) {
    #pList .main {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
    }
    #pList .main .main_section {
        margin-top: 30px;
    }
}
#pList #pList_list {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
}
#pList #pList_list dl {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    max-width: 700px;
    margin: 0 auto;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
}
#pList #pList_list dl dd {
    margin-top: 1em;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    padding: 5px 15px;
    background: transparent;
}
@media screen and (max-width: 360px) {
    #pList #pList_list dl dd {
        margin-top: 1.5em;
    }
}
@media screen and (max-width: 360px) {
    #pList #pList_list dl dd {
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    }
}
#pList #pList_list dl dd:hover {
    background: rgba(16, 54, 86, 0.1);
}
#pList #pList_list dl dd .name {
    font-size: 1.25rem;
    margin-right: auto;
}
@media screen and (max-width: 360px) {
    #pList #pList_list dl dd .name {
        width: 100%;
        margin-bottom: 10px;
    }
}
#pList #pList_list dl dd .pdf {
    font-size: 0.875rem;
    padding: 5px;
    border-bottom: 1px solid #103656;
}
@media screen and (max-width: 360px) {
    #pList #pList_list dl dd .pdf {
        font-size: 0.75rem;
    }
}
@media screen and (max-width: 360px) {
    #pList #pList_list dl dd .pdf {
        border-bottom: 1px solid rgba(16, 54, 86, 0.4);
    }
}
#pList #pList_list dl dd .products {
    font-size: 0.875rem;
    padding: 5px;
    margin-left: 25px;
    border-bottom: 1px solid #103656;
}
@media screen and (max-width: 360px) {
    #pList #pList_list dl dd .products {
        font-size: 0.75rem;
    }
}
@media screen and (max-width: 360px) {
    #pList #pList_list dl dd .products {
        border-bottom: 1px solid rgba(16, 54, 86, 0.4);
    }
}

#pLogin {
    padding-top: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
}
#pLogin main {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
}
#pLogin main .logo {
    height: 100px;
    margin-top: 10vh;
}
@media screen and (max-width: 360px) {
    #pLogin main .logo {
        margin-top: 50px;
    }
}
#pLogin main .message.error {
    color: #9e1919;
    text-align: center;
    font-size: 1rem;
    margin-bottom: 30px;
}
@media screen and (max-width: 360px) {
    #pLogin main .message.error {
        margin-bottom: 15px;
        font-size: 0.875rem;
    }
}
#pLogin main .env {
    margin: auto 0;
    font-size: 0.75rem;
}
#pLogin main .env dt {
    text-align: center;
    margin-bottom: 20px;
}
#pLogin main .env dd {
    line-height: 1.8;
}
#pLogin main form {
    margin-top: 50px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
}
@media screen and (max-width: 360px) {
    #pLogin main form {
        margin-top: 30px;
    }
}
#pLogin main form label {
    width: 300px;
}
#pLogin main form label:nth-of-type(2) {
    margin-top: 20px;
}
#pLogin main form span, #pLogin main form input {
    display: block;
}
#pLogin main form input {
    width: 100%;
    border: 1px solid #103656;
    padding: 5px;
    font-size: 1.125rem;
    font-family: 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "Hiragino Mincho Pro", HGS明朝E, メイリオ, Meiryo, serif;
}
#pLogin main form .notice {
    margin-top: 20px;
    line-height: 1.8;
    font-size: 0.75rem;
}
#pLogin main form button.login {
    margin-top: 30px;
    background: #103656;
    color: #fafafa;
    font-size: 1.8rem;
    padding: 10px 15px;
}
@media screen and (max-width: 360px) {
    #pLogin main form button.login {
        margin-top: 50px;
    }
}
#pLogin #gFooter {
    margin-top: auto;
}