@charset "UTF-8";

/*-------------------------------------------------------------------------------------------------------------------
    top.css
---------------------------------------------------------------------------------------------------------------------
*/

:root {
    --width: calc(100% - 32px);
    --max-width: 1200px;
}

.company {
    width: var(--width);
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0;
    line-height: 20px;
    font-size: 12px;
    text-align: left;
    background-color: transparent;
    color: #006080;
    border-collapse: collapse;
    /*border-radius: 4px;*/
    /*box-shadow: 2px 2px 4px rgba(0, 0, 64, 0.5);*/
}

.company th {
    padding: 8px 8px;
    white-space: nowrap;
    border-top: 1px solid lightblue;
    border-bottom: 1px solid lightblue;
}

.company td {
    padding: 8px 8px;
    font-weight: bold;
    border-top: 1px solid lightblue;
    border-bottom: 1px solid lightblue;
}

.home {
    width: var(--width);
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 16px 16px 8px 16px;
    line-height: 24px;
    font-size: 16px;
    text-align: left;
    color: #006080;
    border-top: 1px solid lightblue;
    /*background-color: white;*/
    /*border-radius: 4px;*/
    /*box-shadow: 2px 2px 4px rgba(0, 0, 64, 0.5);*/
}

.top {
    margin-top: 8px;
}

.last {
    border-bottom: 1px solid lightblue;
}

.link:hover {
    color: #000000;
}

.index {
    font-size: 20px;
    font-weight: bold;
    line-height: 24px;
    margin-bottom: 8px;
    padding: 0;
    color: #006080;
}

.index_jp {
    display: inline-block;
    font-size: 14px;
    line-height: 26px;
    vertical-align: top;
}

.index2 {
    font-size: 16px;
    font-weight: bold;
    margin: 16px 0;
}

.index3 {
    display: inline;
}

.index4 {
    display: none;
}

.index5 {
    display: none;
}

.new_large {
    font-size: 64px;
    font-weight: bold;
    line-height: 1.2em;
}

.new_middle {
    font-size: 24px;
    font-weight: bold;
    line-height: 1.2em;
}

.new_small {
    font-size: 16px;
    font-weight: bold;
    line-height: 1.2em;
}

.pc {
}

.portrait {
    display: none;
}

.detail {
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 8px;
}

.pad {
    margin-left: 24px;
}

.price {
    display: inline-flex;
    margin-top: 16px;
    line-height: 24px;
    font-size: 24px;
    font-weight: bold;
    color: red;
}

.taxed {
    display: inline-flex;
    margin-left: 8px;
    line-height: 12px;
    font-size: 12px;
    font-weight: bold;
    color: #003040;
}

.img_04 {
    width: 500px;
}

.privacy {
    margin-left: 56px;
    font-size: 14px;
    font-weight: bold;
    color: #003040;
}

.privacy_link {
    float: right;
    font-size: 12px;
}

.notice {
    display: inline-block;
    margin: 0 6px;
    padding: 2px 6px 2px 6px;
    border-radius: 4px;
    font-size: 0.8em;
    line-height: 1.6em;
    color: white;
    background-color: #c44;
    white-space: nowrap;
}

/*-------------------------------------------------------------------------------------------------------------------
    PC wide
---------------------------------------------------------------------------------------------------------------------
*/

@media screen and (min-width: 1920px) {
}

/*-------------------------------------------------------------------------------------------------------------------
    PC narrow
---------------------------------------------------------------------------------------------------------------------
*/

@media screen and (max-width: 1000px) {
}

/*-------------------------------------------------------------------------------------------------------------------
    Smartphone portrait
---------------------------------------------------------------------------------------------------------------------
*/

@media screen and (max-width: 520px) and (orientation: portrait) and (hover: none) and (pointer: coarse) {

    .company {
        width: calc(100% - 16px);
        margin: 8px auto;
    }

    .company th {
        padding: 8px 8px;
        white-space: nowrap;
    }

    .company td {
        padding: 8px 8px;
        font-weight: bold;
    }

    .home {
        width: calc(100% - 16px);
        margin: 8px auto 0 auto;
        padding: 8px 12px 0 12px;
        line-height: 22px;
        font-size: 16px;
    }

    .index {
        font-size: 18px;
        margin-bottom: 2px;
    }

    .index2 {
        font-size: 16px;
        margin: 16px 0;
    }

    .index3 {
        display: none;
    }

    .index4 {
        display: block;
        font-weight: bold;
    }

    .index5 {
        display: inline-block;
    }

    .new_large {
        font-size: 34px;
        line-height: 1.2em;
    }

    .new_middle {
        font-size: 22px;
        line-height: 1.2em;
    }

    .new_small {
        font-size: 16px;
        line-height: 1.2em;
    }

    .pc {
        display: none;
    }

    .portrait {
        display: table;
        font-weight: bold;
    }

    .detail {
        font-size: 12px;
        font-weight: bold;
        line-height: 16px;
    }

    .pad {
        display: none;
    }

    .price {
        font-size: 18px;
        margin-top: 4px;
        margin-bottom: 8px;
    }

    .taxed {
        margin-left: 2px;
    }

    .img_04 {
        width: 320px;
    }

    .privacy {
        font-size: 12px;
        font-weight: bold;
        letter-spacing: -0.04em;
        margin-left: 16px;
        color: darkblue;
    }

    .notice {
        display: inline-block;
        margin: 0 6px 2px 0;
        padding: 1px 6px 3px 6px;
        border-radius: 4px;
        font-size: 0.8em;
        /*line-height: 1.6em;*/
        color: white;
        background-color: #c44;
        white-space: nowrap;
    }

}

/*-------------------------------------------------------------------------------------------------------------------
    Smartphone landscape
---------------------------------------------------------------------------------------------------------------------
*/

@media screen and (max-width: 896px) and (orientation: landscape) and (hover: none) and (pointer: coarse) {

    .company {
        width: calc(100% - 40px);
        margin: 8px auto;
    }

    .company th {
        padding: 8px 8px;
        white-space: nowrap;
    }

    .company td {
        padding: 8px 8px;
        font-weight: bold;
    }

    .home {
        width: calc(100% - 64px);
        margin: 8px auto 0 auto;
        padding: 8px 12px;
        line-height: 22px;
        font-size: 16px;
    }

    .index {
        font-size: 18px;
        margin-bottom: 2px;
    }

    .index2 {
        font-size: 16px;
        margin: 16px 0;
    }

    .index3 {
        display: none;
    }

    .index4 {
        display: block;
        font-weight: bold;
    }

    .index5 {
        display: inline-block;
    }

    .pc {
        display: none;
    }

    .portrait {
        display: table;
        font-weight: bold;
    }

    .detail {
        font-size: 12px;
        font-weight: bold;
        line-height: 16px;
    }

    .pad {
        display: none;
    }

    .price {
        font-size: 18px;
        margin-bottom: 8px;
    }

    .taxed {
        margin-left: 2px;
    }

    .img_04 {
        width: 320px;
    }

    .privacy {
        margin-left: 32px;
        font-weight: bold;
        color: darkblue;
    }

}
