﻿div.responsive-containar {
    display: flex; /* flexコンテナ化 */
    flex-direction: row; /* 横向きに配置 */
    width: 100%;
}

div.responsive-end {
    align-items: flex-end;
}

div.responsive-block {
    width: 60%;
}
@media (max-width: 600px) {
    div .responsive-containar {
        display: flex; /* flexコンテナ化 */
        flex-direction: column; /* 横向きに配置 */
        width: 100%;
    }

    div.responsive-block {
        width: 100%;
    }

    div.responsive-end {
        align-items: normal;
    }
}

@media (max-width: 370px) {
    .responsive-textbox {
        display: block;
    }

    .textbox-margin {
        margin-left: 5%;
    }
}



/*category-boxレイアウト
---------------------------------------------------------*/
.category-box {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    background-color: transparent;
}

.category-left {
    width: calc(33%);
    padding: 0px 0px 0px 0px;
}

.category-right {
    width: calc(64%);
    padding: 0px 0px 0px 0px;
}

.category-imgarea {
    padding: 0px 0px 0px 0px;
    text-align: justify-all;
}

.category-left-img {
    position: relative;
    width: calc(48.9%);
    height: 110px;
    margin: 8px 0px 0px 0px;
    padding: 0px 0px 0px 0px;
    background-color: white;
    display: inline-block;
    text-align: center;
    cursor: pointer;
}

.category-right-img {
    width: calc(32.0%);
    height: 120px;
    margin: 10px 1px 0px 2px;
    padding: 0px 0px 10px 0px;
    background-color: white;
    display: inline-block;
    text-align: center;
    cursor: pointer;
    vertical-align: top;
    position: relative;
}

.category-right-img02 {
    width: calc(32.0%);
    height: 120px;
    margin: 10px 1px 0px 2px;
    padding: 10px;
    background-color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.linkmark,
.linkmark-big {
    height: 35px;
    margin: 15px 0px 15px 0px;
}

.linkmark-big {
    height: 110px;
    margin: 0px 0px 0px 0px;
}

.linkmark-span {
    font-weight: bold;
    position: absolute;
    bottom: 0;
    left: 50%;
    -ms-transform: translate(-50%,0%);
    -webkit-transform: translate(-50%,0%);
    transform: translate(-50%,0%);
    margin: 0;
    padding: 0;
}

:not(html) .history {
    width: 565px;
    height: 250px;
    max-width: 565px;
    border-style: none;
    background-color: white;
}

@media screen and (max-width:600px) {
    .category-box {
        display: flex;
        flex-wrap: wrap;
    }

    .category-left {
        width: calc(100%);
        padding: 12px 0 8px 0;
        margin: 0px 10px 0px 10px;
    }

    .category-right {
        width: calc(100%);
        padding: 12px 0 8px 0;
        margin: 0px 10px 0px 10px;
    }

    .category-left-img {
        width: calc(49.2%);
        min-width: 150px;
        margin: 5px 0px 0px 0px;
        padding: 0px 0px 20px 0px;
        background-color: white;
        display: inline-block;
        text-align: center;
        cursor: pointer;
    }

    .category-right-img {
        width: calc(49.2%);
        margin: 5px 0px 0px 0px;
        background-color: white;
        display: inline-block;
        text-align: center;
        cursor: pointer;
    }

    .category-right-img02 {
        width: calc(49.2%);
        margin: 5px 0px 0px 0px;
        background-color: white;
        display: flex;
        justify-content: center;
        align-items: center;
        cursor: pointer;
    }
}


/*U03*/
.u03-limitedinput-base-style,
.u03-limitedtextarea-base-style {
    height: 34px;
    padding: 6px 12px;
    font-size: 14px;
    line-height: 1.42857143;
    color: #555;
    background-color: #fff;
    background-image: none;
    border: 1px solid #ccc;
    border-radius: 4px;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
    -webkit-transition: border-color ease-in-out .15s, -webkit-box-shadow ease-in-out .15s;
    -o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
    transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
}

.u03-limitedtextarea-base-style {
    height: 100px;
    width: 100%;
}
/*U03*/