﻿@charset "utf-8";

input, button, textarea, select {
    margin: 0;
    padding: 0;
    background: none;
    border: none;
    border-radius: 0;
    outline: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

*{
    font-size:100%;
    font-weight:normal;
    background-color:#ffffff;
}

html {
    height:100%;
}

body {
    font-family: 'Myrica M', 'Ricty Diminished', 'Monaco', 'Consolas', 'Courier New', Courier, monospace, sans-serif;
    color:black;
    background-color:#ffffff;
    line-height:18pt;
    font-size:18px;
}

h1.siteTitle {
    font-size:28px;
    font-weight:bold;
    padding:5px 15px;
}

p {
    margin-left:3%;
    line-height:15pt;
}

p.catchCopy {
    font-size:100%;
}

a:hover {
    text-decoration: none;
}

a.title {
    text-decoration: none;
    font-size:28px;
    font-weight:bold;
    padding:5px 15px;
}

strong {
    font-weight:bold;
}

/* PC用CSS */
@media screen and (min-device-width:480px) {
    .sort{
        text-align:left;
        margin-left:50px;
    }
    .clothes-info {
        position:fixed;
        z-index:2;
        width:70%;
        height:70%;
        margin:0;
        border:2px solid #aaa;
        padding:10px 20px;
        background:#fff;
    }
    
    .clothes-modal {
        width:200px;
        height:250px;
        object-fit: cover;
        border:1px solid #000000;
    }
    .wrapper{
        flex: 1;
        display: flex;
    }
    .contents{
        flex: 1;
        order: 2;
    }
    
    section.search {
        font-size:100%;
        padding-bottom:10px;
        width: 360px;
        margin-left:30px;
        margin-right:10px
    }
    
    .submit-button {
        width: 50px;
        height: 30px;
        padding: 5px 8px;
        border-radius: 4px;
        border-top: none;
        border-left: none;
        border-right: none;
        background-image: none;
        background-color: #408080;
        font-size: 13px;
        color: #fff;
        cursor :pointer;
        position:fixed;
        bottom: 85px;
        left: 30px;
        z-index: 2;
    }
    
    /* アコーディオンクリック部分 */
    .head {
        display: block;
        font-size: 98%;
        background-color: #80ffff;
        cursor :pointer;
        margin-bottom: 2px;
        padding-left: 3px;
        border: 1px solid #000000;
        border-radius: 3px;
    }

    .head:hover {
        background-color: #ff8000;
    }

    /* テキストボックスのサイズ */
    input[type="text"],
    textarea {
        outline: none;
        border: 1px solid #408080;
        border-radius: 3px;
        font-size: 16px;
        width: 260px;
        margin-left:7px;
        padding:4px;
    }
    input[type="text"]:focus,
    texture:focus {
        box-shadow: 0 0 7px #3498db;
        border: 1px solid #3498db;
    }
    
    /* チェックボックス */
    label.check-option {
        display: block;
        background-color:#eeeeee;
        cursor :pointer;
        padding-left:3px;
    }
    
    .checkbox-icon {
        padding-left: 20px;
        position:relative;
        background-color:#eeeeee;
        font-size: 95%;
    }
    
    .checkbox-icon::before{
        content: "";
        display: block;
        position: absolute;
        top: 1px;
        left: 0;
        width: 15px;
        height: 15px;
        border: 1px solid #999;
        border-radius: 4px;
        background-color: #ffffff;
    }
    .checkbox:checked + .checkbox-icon::after{
        content: "";
        display: block;
        position: absolute;
        top: -3px;
        left: 5px;
        width: 7px;
        height: 14px;
        transform: rotate(40deg);
        border-bottom: 3px solid #009a9a;
        border-right: 3px solid #009a9a;
    }
    #pageTop {
        position: fixed;
        bottom: 40px;
        right: 20px;
        font-size: 50px;
        text-decoration: none;
    }
}

/* SP用CSS */
@media screen and (max-device-width:480px) {
    .sort{
        text-align:right;
    }
    .clothes-info {
        position:fixed;
        z-index:2;
        width:90%;
        height:50%;
        margin:0;
        border:2px solid #aaa;
        padding:10px 20px;
        background:#fff;
    }
    .clothes-modal {
        width:250px;
        height:300px;
        object-fit: cover;
        border:1px solid #000000;
    }
    .wrapper {
    }
    .contents {
    }
    section.search {
        font-size:100%;
        
    }
    /* スマートフォン用送信ボタンはPC用の2.5倍 */
    .submit-button {
        width: 150px;
        height: 90px;
        padding: 5px 8px;
        border-radius: 4px;
        border-top: none;
        border-left: none;
        border-right: none;
        background-image: none;
        background-color: #408080;
        font-size: 33px;
        color: #fff;
        cursor :pointer;
        position:fixed;
        bottom: 30px;
        left: 30px;
        z-index: 2;
    }
    
    /* アコーディオンクリック部分はPCより大きくする */
    .head {
        display: block;
        background-color: #80ffff;
        cursor :pointer;
        margin-bottom: 10px;
        padding: 10px;
        border: 1px solid #000000;
        border-radius: 3px;
    }
    
    .head:hover {
        background-color: #ff8000;
    }

    /* テキストボックスのサイズ */
    input[type="text"],
    textarea {
        outline: none;
        border: 1px solid #408080;
        border-radius: 3px;
        font-size: 23px;
        width: 260px;
        margin-left:7px;
        padding:10px;
    }
    input[type="text"]:focus,
    texture:focus {
        box-shadow: 0 0 7px #3498db;
        border: 1px solid #3498db;
    }
    
    /* チェックボックス関係 */
    label.check-option {
        display: block;
        background-color:#eeeeee;
        cursor :pointer;
        padding-left:3px;
        padding-top:3px;
        padding-bottom:3px;
    }
    
    .checkbox-icon {
        padding-left: 35px;
        position:relative;
        background-color:#eeeeee;
        font-size:30px;
        margin-right:30px;
    }
    .checkbox-icon::before{
        content: "";
        display: block;
        position: absolute;
        top: 4px;
        left: 0;
        width: 25px;
        height: 25px;
        border: 1px solid #999;
        border-radius: 4px;
        background-color: #ffffff;
    }
    .checkbox:checked + .checkbox-icon::after{
        content: "";
        display: block;
        position: absolute;
        top: 3px;
        left: 8px;
        width: 12px;
        height: 20px;
        transform: rotate(40deg);
        border-bottom: 3px solid #009a9a;
        border-right: 3px solid #009a9a;
    }
    #pageTop {
        position: fixed;
        bottom: 30px;
        right: 20px;
        font-size: 50px;
        z-index: 3;
        text-decoration: none;
    }
}

.info-page {
    margin-left:5%;
}

.selected-order {
    font-weight:bold;
}

.info-link {
    font-size: 23px;
    text-decoration:none;
    color:black;
}

.clothes-thumbnail {
    width:200px;
    height:250px;
    object-fit: cover;
    margin:3px;
    border:1px solid #000000;
}

ul.thumbnail {
    margin-bottom:3px;
}

.thumbnail:after {
    content: '';
    display: table;
    clear: both;
}

.image-link {
    text-decoration:none;
}

li.clothes-item {
    width:210px;
    height:370px;
    border:1px solid #000000;
    border-radius:2px;
    list-style-type: none;
    float: left;
    margin-left:5px;
    margin-bottom:5px;
    font-size:80%;
}

.clothes-item-info {
    width: 210px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.clothes-records {
}

.modal-overlay {
    z-index:1;
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:120%;
    background-color:rgba(0,0,0,0.75);
}

.modal-open {
    color:#000000;
}

.modal-open:hover {
    cursor:pointer;
    text-decoration:none;
    background-color:#eeeeee;
}

.modal-close {
    text-decoration:underline;
    position:absolute;
    top:20px;
    right:20px;
}

.modal-close:hover {
    cursor:pointer;
    color:#ff0000;
    text-decoration:none;
}

.load-message {
    text-align: center;
    font-size: 30px;
}

.clickable {
    background-color: inherit;
    font-size: 93%;
    color: #808080;
    margin-right: 2px;
}

.check-option {
    display: block;
    background-color:#eeeeee;
    cursor :pointer;
    padding-left:3px;
}

#pageTop a:hover {
  text-decoration: none;
  opacity: 0.7;
}

.is-hide{
  display:none;
}

