﻿@charset "UTF-8";
/* main.html用のCSS */

/* Headerここから */
#search_view {
    background-color: #fff;
}

#search_view header {
    position: fixed;
    width: 100%;
    background-color: #fff;
    z-index: 2;
}

#header_background_area {
    display: block;
    width: 100%;
    height: 100px;
    background-color: #fff;
}

.search_container_header {
    display: flex;
    justify-content: start;
    align-items: flex-end;
    position: relative;
    margin: 20px 0 0 2.5%;
    font-size: 14px;
}

.search_container_title img {
    width: 28vw;
    height: auto;
}

.search_container_header .articles_until_date {
    position: absolute;
    right: 2.5%;
    top: 10px;
    color: #15447e;
}

.search_container_result {
    display: block;
    width: 100%;
    min-height: 33px;
    text-align: center;
    margin-top: 20px;
}

/* Headerここまで */

/* 検索文字入力欄〜検索条件ここから */
.search_container {
    width: 95%;
    min-width: 880px;
    margin: auto;
    border-radius: 10px;
    border: 1px solid #15447e;
}

.search_bar {
    color: #15447e;
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    font-size: 14px;
}

.search_field {
    display: flex;
    flex-grow: 1;
    flex-direction: column;
    text-align: start;
    padding-left: 10px;
    justify-content: center;
    padding-top: 2px;
}

.search_bar img {
    width: 18px;
    vertical-align: middle;
}

.search_bar input[type="text"] {
    height: 25px;
    padding: 0;
    font-size: 17px;
    width: auto;
    color: #15447e;
    cursor: text;
}

.search_bar input[type="text"]::placeholder {
    color: #15447e;
    opacity: 0.4;
    font-size: 15px;
}

.help_button {
    border: 1px solid #15447e;
    width: 18px;
    height: 18px;
    border-radius: 100%;
    font-size: 9px;
    background: #fff;
    color: #15447e;
    font-weight: bold;
    cursor: pointer;
}

.search_bar_buttons {
    display: flex;
    gap: 10px;
    padding-right: 10px;
}

.search_button {
    background-color: #c23f38;
    color: #fff;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    padding: 10px 13px;
    margin: 7px 0;
}

.clear_button {
    background-color: #fff;
    color: #15447e;
    border: 1px solid #15447e5a;
    border-radius: 20px;
    cursor: pointer;
    padding: 0 5px;
    margin: 14px 0;
}

.search_conditions {
    display: flex;

    align-items: stretch;
    flex-wrap: wrap;
}

.group_box {
    position: relative;
    color: #15447e;
    padding: 3px;
    border-left: 1px solid #15447e1a;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 10px;
    text-align: start;
    height: 100%;
    box-sizing: border-box;
    align-items: center;
    margin-right: 5px;
}

.group_box_header {
    display: block;
    padding: 3px 0 5px 5px;
    vertical-align: middle;
}

.group_box label {
    font-size: 15px;
    gap: 5px;
}

.group_box label > * {
    vertical-align: middle;
}

.search_range {
    border: none;
    padding: 0;
    margin: 0;
    gap: 5px;
    align-items: center;
}

.additional_options {
    border: none;
    padding: 0;
    margin: 0;
    gap: 5px;
    align-items: center;
}

.search_range label,
.date_range label,
.additional_options label {
    margin: 0 5px;
}

input[type="checkbox"] {
    appearance: none;
    box-sizing: border-box;
    background-color: #fff;
    padding: 0;
    font: inherit;
    width: 12px;
    height: 12px;
    border: 1px solid #15447e;
}

input[type="checkbox"]:checked {
    background-repeat: no-repeat;
    background-position: center;
    background-size: 8px;
    padding: 2px;
}

input[type="checkbox"]:not(:disabled):checked {
    background-color: #15447e;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="2" height="2" viewBox="0 0 32 32" xml:space="preserve"><path fill="%23fff" d="M11.941,28.877l-11.941-11.942l5.695-5.696l6.246,6.246l14.364-14.364L32,8.818"/></svg>');
}

.search_range input[type="radio"] {
    appearance: none;
    box-sizing: border-box;
    background-color: #fff;
    padding: 0;
    font: inherit;
    width: 12px;
    height: 12px;
    border: 1px solid #15447e;
}

.search_range input[type="radio"]:checked {
    background-repeat: no-repeat;
    background-position: center;
    background-size: 8px;
    padding: 2px;
}

.search_range input[type="radio"]:not(:disabled):checked {
    background-color: #15447e;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="2" height="2" viewBox="0 0 32 32" xml:space="preserve"><path fill="%23fff" d="M11.941,28.877l-11.941-11.942l5.695-5.696l6.246,6.246l14.364-14.364L32,8.818"/></svg>');
}

.select_duration_layer_btn_row {
    text-align: center;
    margin: 12px 0;
}

.select_duration_layer_btn_row label {
    display: inline-block;
    width: 53px;
    height: 20px;
    margin: 0 3px;
    color: #15447e;
    font-size: 12px;
    border: 1.5px solid #15447e;
    border-radius: 10px;
    background-color: transparent;
    vertical-align: middle;
}

label:has(input[type="radio"]) {
    cursor: pointer;
}

.date_range_display {
    margin-left: 5px;
}

.search_container_date_trigger {
    cursor: pointer;
}

.select_duration_layer_display {
    width: 100%;
}

#select_duration_layer {
    z-index: 900;
}

.custom_date_options {
    padding: 10px 0;
    border-bottom: 1px solid #15447e1a;
}

.single_day {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin: auto;
    padding-bottom: 6px;
}

.date_input_group {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 10px;
}

.date_input_item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.date_input_item label {
    font-size: 12px;
    color: #15447e;
    display: flex;
    align-items: center;
    gap: 5px;
}

.single_day label {
    font-size: 12px;
}

.date_input_group span {
    font-size: 18px;
    margin: 0 6px;
}

.date_input_group button {
    align-self: center;
}

.date_input_item input[type="date"] {
    border: 1.5px solid #15447e;
    border-radius: 20px;
    background-color: #fff;
    color: #15447e;
    text-align: center;
    font-size: 12px;
    padding: 4px;
    cursor: pointer;
}

.date_input_item input[type="date"]:disabled {
    background-color: #f5f5f5;
    color: #9e9e9e;
    border: 1.5px solid #cccccc;
    cursor: not-allowed;
    opacity: 0.7;
}

input[type="checkbox"]:disabled {
    background-color: #f5f5f5;
    border-color: #ccc;
    cursor: not-allowed;
    opacity: 0.7;
}

label:has(input[type="checkbox"]:disabled) {
    color: #9e9e9e;
    cursor: not-allowed;
    opacity: 0.7;
}

.search_container_duration {
    min-width: 45px;
}

.search_container_duration_title {
    padding-bottom: 6px;
}

.search_container_duration_date {
    padding-left: 5px;
    vertical-align: bottom;
    font-size: 12px;
}

.custom_date_range {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
}

/* 検索文字入力欄〜検索条件ここまで */

/* 検索結果の件数表示〜表示件数ここから */
.secondary_conditions {
    display: flex;
    justify-content: flex-start;
    width: 95%;
    margin: auto;
    padding: 8px 0;
    color: #15447e;
    gap: 5px;
    align-items: center;
    font-size: 14px;
}

.display_options {
    display: flex;
    margin-left: auto;
    gap: 50px;
    align-items: center;
    font-size: 14px;
}

.attention_keywords {
    text-align: center;
    margin-left: 30px;
}

.attention_keyword {
    margin: 0 10px;
    text-decoration: underline;
    cursor: pointer;
}

.display_options select {
    appearance: auto;
    border: 1px solid #15447e6a;
    border-radius: 5px;
    padding: 5px;
    margin-left: 5px;
    font-size: 14px;
    color: #15447e;
}

/* 検索結果の件数表示〜表示件数ここまで */

/* ヘルプモーダルここから */
.modal {
    position: absolute;
    top: 50px;
    left: -5px;
    width: 350px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 0 10px 5px rgba(0, 0, 0, 0.4);
    z-index: 1000;
}

.modal .date_range_modal {
    width: 100%;
}

.modal_overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 999;
    background-color: rgba(0, 0, 0, 0.7);
}

.help_modal {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #fff;
    width: 650px;
    position: relative;
    border-radius: 0;
    box-shadow: none;
    padding: 10px;
    color: #15447e;
    font-size: 12px;
}

.bold {
    font-weight: bold;
}

.help_modal_title {
    background-color: rgba(104, 114, 127, 1);
    text-align: center;
    color: #fff;
    font-weight: bold;
    padding: 5px;
}

.help_modal_text {
    margin: 5px 0;
}

.help_modal_block {
    flex: 1;
    padding: 5px;
    background-color: rgba(235, 236, 238, 1);
}

#help_modal_body_date .help_modal_block {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 8px;
    height: 100%;
    padding: 10px;
}

.help_modal_block_container {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex-grow: 1;
}

#help_modal_body_search .help_modal_block_container {
    display: flex;
    flex-direction: row;
    gap: 8px;
}

#help_modal_body_search .help_modal_text:nth-of-type(2) {
    text-align: center;
}

.help_modal_subblock {
    padding: 10px;
    background-color: #fff;
    border-radius: 5px;
}

.help_modal_subblock div {
    border: 1px solid #15447e6a;
}

.checkbox_example {
    background-color: #fff;
    display: inline-block;
    line-height: 1;
    padding: 2px;
    vertical-align: baseline;
    position: relative;
    top: -1px;
}

.checkbox_example input {
    vertical-align: middle;
    pointer-events: none;
}

.example_label {
    vertical-align: middle;
}

.example_aligned {
    vertical-align: middle;
    padding-right: 10px;
}

.help_modal_block_subtitle {
    display: flex;
    background-color: #15447e;
    color: #fff;
    padding: 3px;
    margin-bottom: 3px;
}

.subtitle_example {
    flex-grow: 1;
    color: #15447e;
    background-color: #fff;
    text-align: center;
    border-radius: 10px;
    letter-spacing: 3px;
}

.subtitle_category {
    margin: 0 5px;
}

.search_example {
    display: flex;
    gap: 5px;
    align-items: center;
    margin: 10px 0;
}

.search_example_left {
    padding: 5px;
    background-color: #15447e6a;
    color: #fff;
}

.search_example_right {
    border: 2px solid #15447e;
    background-color: rgba(250, 245, 245, 1);
    flex-grow: 1;
    display: flex;
    align-items: center;
    padding: 3px;
}

.search_example_right img {
    width: 12px;
    max-height: 100%;
    margin-right: 3px;
}

.example_block {
    padding: 0 5px;
}

/* ヘルプモーダルここまで */


/* 記事タイトル行ここから */
.article_container {
    width: 100%;
}

.article_container .article_container_title {
    width: 100%;
    min-height: 33px;
    background-color: #15447e;
    overflow: hidden;
    white-space: nowrap;
    color: #000;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.4);
}

.article_container .article_container_title .article_container_title_column_title {
    display: inline-block;
    width: calc(100% - 96px - 88px - 96px - 110px - 88px - 110px);
    min-width: 300px;
    height: 33px;
    line-height: 33px;
    color: #fff;
    font-size: 1.2em;
    vertical-align: middle;
    overflow: hidden;
    white-space: nowrap;
    text-align: center;
}

.article_container .article_container_title .article_container_title_column_thumbnail {
    display: inline-block;
    width: 95px;
    height: 33px;
    line-height: 33px;
    color: #fff;
    font-size: 1.2em;
    vertical-align: middle;
    overflow: hidden;
    white-space: nowrap;
    text-align: center;
}

.article_container .article_container_title .article_container_title_column_media {
    display: inline-block;
    width: 87px;
    height: 33px;
    line-height: 33px;
    color: #fff;
    font-size: 1.2em;
    vertical-align: middle;
    overflow: hidden;
    white-space: nowrap;
    text-align: center;
}

.article_container .article_container_title .article_container_title_column_date {
    display: inline-block;
    width: 110px;
    height: 33px;
    line-height: 33px;
    color: #fff;
    font-size: 1.2em;
    vertical-align: middle;
    overflow: hidden;
    white-space: nowrap;
    text-align: center;
}

.article_container .article_container_title .article_container_title_column_characters {
    display: inline-block;
    width: 87px;
    height: 33px;
    line-height: 33px;
    color: #fff;
    font-size: 1.2em;
    vertical-align: middle;
    overflow: hidden;
    white-space: nowrap;
    text-align: center;
}

.article_container .article_container_title .article_container_title_column_page {
    display: inline-block;
    width: 96px;
    height: 33px;
    line-height: 33px;
    color: #fff;
    font-size: 1.2em;
    vertical-align: middle;
    overflow: hidden;
    white-space: nowrap;
    text-align: center;
}

.close_open_all.hidden {
    display: none;
}

.close_open_all.visible {
    display: inline-block;
}

.close_open_all {
    color: #15447e;
    background-color: #fff;
    vertical-align: middle;
    padding: 2px 12px;
    border-radius: 15px;
}

/* 記事タイトル行ここまで */

/* 記事リストここから */
.article_list_container {
    cursor: pointer;
}

.article_container article {
    background-color: #f0f0ed;
    height: 54px;
    border-bottom: 1px rgba(137, 137, 137, 0.3) solid;
}

.article_container article.article_closed {
    background-color: #fafafa;
    transition: background-color 0.2s linear;
}

.article_container article.article_closed:hover {
    background-color: #e3e3dc;
}

.article_container .article_list_container {
    width: 100%;
}

.article_container .article_list_container .article_list_checkbox {
    display: inline-block;
    width: 40px;
    height: 54px;
    line-height: 54px;
    vertical-align: middle;
    cursor: pointer;
}

.article_container .article_list_container .article_list_title_container {
    display: inline-block;
    width: calc(100% - 96px - 88px - 96px - 110px - 88px - 110px);
    min-width: 300px;
    height: 54px;
    overflow: hidden;
    white-space: nowrap;
    vertical-align: middle;
    padding-left: 2.5%;
}

.article_container .article_list_container .article_list_title_container.print {
    width: calc(100% - 42px - 88px - 98px);
}

.article_container .article_list_container .article_list_title_container .article_list_title {
    margin-top: 5px;
    font-size: 1.6em;
    line-height: 1.6em;
    font-weight: bold;
    overflow: hidden;
    text-overflow: ellipsis;
    color: #000;
}

.article_container .article_list_container .article_list_title_container .article_list_description {
    font-size: 1.2em;
    line-height: 1.2em;
    overflow: hidden;
    text-overflow: ellipsis;
    color: #898989;
}

.article_container .article_list_container .article_list_title_container .article_list_description p {
    overflow: hidden;
}

.article_container .article_list_container .article_list_thumbnail_container {
    position: relative;
    display: inline-block;
    width: 95px;
    height: 54px;
    line-height: 54px;
    vertical-align: middle;
    overflow: hidden;
    white-space: nowrap;
}

.article_container .article_list_container .article_list_thumbnail_container img {
    position: absolute;
    top: 16px;
    left: 30px;
    width: 17px;
    height: 24px;
}

.article_container .article_list_container .article_list_media {
    display: inline-block;
    width: 87px;
    height: 54px;
    line-height: 54px;
    font-size: 1.4em;
    font-weight: bold;
    vertical-align: middle;
    overflow: hidden;
    white-space: nowrap;
    text-align: center;
}

.article_container .article_list_container .article_list_page {
    display: inline-block;
    width: 96px;
    height: 54px;
    line-height: 54px;
    font-size: 1.4em;
    font-weight: bold;
    vertical-align: middle;
    overflow: hidden;
    white-space: nowrap;
    text-align: center;
}

.article_container .article_list_container .article_list_date {
    display: inline-block;
    width: 110px;
    height: 54px;
    line-height: 54px;
    font-size: 1.4em;
    font-weight: bold;
    vertical-align: middle;
    overflow: hidden;
    white-space: nowrap;
    text-align: center;
}

.article_container .article_list_container .article_list_characters {
    display: inline-block;
    width: 87px;
    height: 54px;
    line-height: 54px;
    font-size: 1.4em;
    font-weight: bold;
    vertical-align: middle;
    overflow: hidden;
    white-space: nowrap;
    text-align: center;
}

.article_container article.read {
    color: #898989;
}

.article_container article.read .article_list_container .article_list_title_container .article_list_title {
    color: #898989;
}

/* 記事リストここまで */

/* 記事内容ここから */
.article_container article .article_body_text {
    display: none;
    font-size: 1.6em;
}

.article_container article .article_body_text p {
    line-height: 1.4em;
    max-width: 640px;
    margin: 10px auto 0;
}

.article_container article .article_body_text .article_copyright {
    font-size: 10px;
}

.article_copyright {
    margin: 20px 20px;
}

.article_close_button {
    text-align: center;
}

.article_list_close_btn {
    color: #fff;
    background-color: #15447e;
    padding: 5px 15px;
    border-radius: 15px;
}

article.article_open {
    width: 100%;
    background-color: #fff;
    height: 54px;
    border-top: 3px solid #1083c2;
    border-bottom: 3px solid #1083c2;
    margin: -3px 0;
    position: relative;
}

article.article_open .article_open_header_container {
    background-color: #fff;
    width: 100%;
}

article.article_open .article_list_container {
    overflow: hidden;
}

article.article_open .article_list_container .article_list_checkbox {
    display: none;
}

article.article_open .article_list_media {
    display: inline-block;
    width: 87px;
    height: 54px;
    line-height: 54px;
    color: #005282;
    font-size: 1.2em;
    font-weight: bold;
}

article.article_open .article_info {
    display: block;
    width: 100%;
    color: #005282;
    font-size: 1.2em;
    font-weight: bold;
}

article.article_open .article_body_text {
    display: block;
    margin-top: 16px;
}

article.article_open .article_body_img {
    display: block;
    margin: auto;
    text-align: center;
}

article.article_open .article_body_img img {
    display: block;
    max-width: 80%;
    min-height: 10px;
    margin: 0 auto;
}

article.article_open .article_header_nav {
    display: block;
    height: 23px;
    border-bottom: 1px solid #1083c2;
    /* min-width: 768px; */
}

article.article_open .article_header_nav_tabs {
    display: block;
    margin-left: 50px;
    height: 23px;
    float: left;
}

article.article_open .article_header_nav_tabs .article_header_nav_tab_text {
    display: inline-block;
    height: 23px;
    line-height: 23px;
    background-color: #fff;
    color: #1083c2;
    font-size: 12px;
    padding-left: 13px;
    padding-right: 13px;
    border-left: 1px solid #1083c2;
    border-top: 1px solid #1083c2;
    border-bottom: 1px solid #1083c2;
    border-right: 1px solid #1083c2;
    border-radius: 3px 3px 0 0;
    cursor: pointer;
}

article.article_open .article_header_nav_tabs .article_header_nav_tab_text.selected {
    border-bottom: 1px solid #fff;
}

article.article_open .article_header_nav_tabs .article_header_nav_tab_img {
    display: inline-block;
    height: 23px;
    line-height: 23px;
    background-color: #fff;
    color: #1083c2;
    font-size: 12px;
    padding-left: 13px;
    padding-right: 13px;
    border-left: 1px solid #1083c2;
    border-top: 1px solid #1083c2;
    border-bottom: 1px solid #1083c2;
    border-right: 1px solid #1083c2;
    border-radius: 3px 3px 0 0;
    cursor: pointer;
}

article.article_open .article_header_nav_tabs .article_header_nav_tab_img.selected {
    border-bottom: 1px solid #fff;
}

article.article_open .article_header_nav_control {
    display: block;
    float: right;
    margin-right: 10px;
    height: calc(23px - 2px);
    margin-bottom: 2px;
    position: relative;
    top: -3px;
}

article.article_open .article_header_nav_control .article_header_nav_printout {
    display: inline-block;
    font-size: 1em;
    color: #1083c2;
    margin-left: 10px;
    padding-left: 26px;
    height: calc(23px - 2px);
    margin-bottom: 2px;
    line-height: 23px;
    background-image: url("../img/printer.svg");
    background-size: 22px 18px;
    background-repeat: no-repeat;
    background-position: left center;
    vertical-align: middle;
    cursor: pointer;
}

article.article_open .article_header_nav_control .article_header_nav_openwindow {
    display: inline-block;
    font-size: 1em;
    color: #1083c2;
    margin-left: 28px;
    padding-left: 20px;
    height: calc(23px - 2px);
    margin-bottom: 2px;
    line-height: 23px;
    background-image: url("../img/another_window1.svg");
    background-size: 16px 16px;
    background-repeat: no-repeat;
    background-position: left center;
    vertical-align: top;
    cursor: pointer;
}

article.article_open .article_list_container {
    width: 100%;
    min-height: 54px;
}

article.article_open .article_list_container .article_list_checkbox {
    display: inline-block;
    width: 40px;
    height: 54px;
    line-height: 54px;
    vertical-align: middle;
}

article.article_open .article_list_container .article_list_title_container {
    display: inline-block;
    width: calc(100% - 42px - 110px);
    margin-left: 50px;
    min-width: 500px;
    min-height: 54px;
    vertical-align: middle;
    white-space: nowrap;
    margin-bottom: 10px;
    height: auto;
}

article.article_open .article_list_container .article_list_title_container .article_list_title {
    overflow: hidden;
    margin-top: 12px;
    font-size: 2em;
    text-overflow: initial;
    white-space: initial;
    line-height: 1.2;
}

.search_words_highlight {
    color: #c23e38;
}

/* 記事内容ここまで */

/* フッター（ページネーション、注意文言）ここから */
.articles_footer {
    border-top: 3px solid #1083c2;
    text-align: center;
    height: 55px;
}

.notice {
    font-size: 1.5em;
    padding: 10px 50px;
}

.pagenation {
    display: inline-block;
    vertical-align: middle;
}

.pagenation div {
    display: inline-block;
}

.pagenation ul {
    list-style: none;
    display: inline-block;
}

.pagenation ul a {
    text-decoration: none;
}

.pagenation ul li {
    display: inline-block;
    min-width: 24px;
    height: 24px;
    line-height: 24px;
    color: #15447e;
    font-size: 15px;
    font-weight: bold;
    vertical-align: middle;
    border-radius: 12px;
    transition: background-color 0.2s linear;
    cursor: pointer;
}

.pagenation ul li:hover {
    background-color: rgba(0, 82, 130, 0.2);
}

.pagenation ul li.selected {
    color: #fff;
    background-color: #1083c2;
}

.pagenation ul span {
    vertical-align: middle;
}

.pagenation .prev_first {
    width: 20px;
    height: 20px;
    line-height: 20px;
    vertical-align: middle;
    background-image: url("../img/prev_prev.svg");
    background-size: 12px 12px;
    background-repeat: no-repeat;
    background-position: center center;
}

.pagenation .prev {
    width: 20px;
    height: 20px;
    line-height: 20px;
    vertical-align: middle;
    background-image: url("../img/prev.svg");
    background-size: 12px 12px;
    background-repeat: no-repeat;
    background-position: center center;
}

.pagenation .next {
    width: 20px;
    height: 20px;
    line-height: 20px;
    vertical-align: middle;
    background-image: url("../img/next.svg");
    background-size: 12px 12px;
    background-repeat: no-repeat;
    background-position: center center;
}

.pagenation .next_last {
    width: 20px;
    height: 20px;
    line-height: 20px;
    vertical-align: middle;
    background-image: url("../img/next_next.svg");
    background-size: 12px 12px;
    background-repeat: no-repeat;
    background-position: center center;
}

.pagenation .prev_first,
.pagenation .prev,
.pagenation .next,
.pagenation .next_last {
    position: relative;
    top: -1px;
    cursor: pointer;
}

/* フッター（ページネーション、注意文言）ここまで */

/* Loadingここから */
#loading {
    position: fixed;
    display: block;
    width: 32px;
    height: 32px;
    z-index: 9;
}

#white_layer {
    position: fixed;
    display: block;
    background-color: #fff;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    border: 0;
    z-index: 8;
}

/* Loadingここまで */
