﻿@charset "UTF-8";

/*
 detail.html, print.html, print_img.html, unauthorized.html共通のCSS
*/

/*
   http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
* {
    box-sizing: border-box;
    font-family: sans-serif;
}


body {
    font-family: 'ヒラギノ角ゴシック Pro', 'Hiragino Kaku Gothic Pro', メイリオ, Meiryo, Osaka, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
    font-size: 10px;
}

/* button, input, select */
button,
input,
select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    outline: none;
    border: none;
    margin: 0;
    padding: 0;
    cursor: pointer;
}

/* hidden, visible */
.hidden {
    display: none;
}

.visible {
    display: block;
}


/* アラート関連 */
#alert_popup {
    position: fixed;
    top: 0;
    left: 0;
    background-color: #fff;
    width: 400px;
    border-radius: 4px;
    box-shadow: 0px 3px 50px rgba(0, 0, 0, 0.3);
    z-index: 7;
}

#alert_popup .caution_icon_container {
    position: absolute;
    display: inline-block;
    width: 27px;
    height: 23px;
    top: 24px;
    left: 29px;
    background-image: url("../img/caution.svg");
    background-size: 27px 23px;
    background-repeat: no-repeat;
    background-position: center center;
}

#alert_popup .catuion_body {
    position: relative;
    display: inline-block;
    margin-left: 70px;
    margin-top: 24px;
    width: 290px;
    height: 50px;
    font-size: 1.4em;
    background-color: #fff;
}

#alert_popup .caution_btn_container {
    display: block;
    width: 100%;
    line-height: 24px;
    margin-top: 15px;
    margin-bottom: 15px;
    vertical-align: middle;
    height: 24px;
    text-align: center;
    overflow: hidden;
    white-space: nowrap;
}

#alert_popup .caution_btn_container .caution_btn {
    display: inline-block;
    line-height: 24px;
    padding-left: 15px;
    padding-right: 15px;
    vertical-align: middle;
    height: 24px;
    color: #fff;
    background-color: #1083c2;
    border-radius: 12px;
    cursor: pointer;
}