﻿/*****************************************************************

	汎用スタイルシート定義.

*****************************************************************/
@charset "utf-8";

/* ====================================== */
/* ふるさとチケットとは(先頭揃えリスト)   */
/* ====================================== */

.listWhatis {
    width: 100%;
    padding: 8px;
    /*
    background: var(--color-bg-base);
    border:1px solid  var(--color-border2);
    */
    background: transparent;
    border: 1px solid transparent;
}

    .listWhatis ul {
        list-style: none;
    }

        .listWhatis ul li {
            margin-bottom: 8px;
            text-indent: -1em;
            padding-left: 1em;
        }

/* ================================ */
/* リストビュー空欄スタイル         */
/* ================================ */

.empty_container {
	display: flex;
	width: 100%;
	flex-flow: wrap;
	justify-content: space-around;
	align-items: center;
}

.empty_view_item {
    font-size: 14px;
    border: 1px solid var(--color-bg-dark);
    background-color: var(--color-bg-light);
    border-radius: 0px;
    padding: 20px;
    margin-bottom: 15px;
}

.empty_view_item_noborder {
    font-size: 14px;
    background-color: var(--color-bg-light);
    padding: 20px;
}

/* ================================ */
/* サムネイル用ローダースタイル     */
/* ================================ */

.product-loader {
    /*background-image: url("../img/loader01.gif");*/
    background-image: url("../img/loader02.gif");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
}

/* ================================ */
/* 汎用レスポンシブテーブルスタイル */
/* ================================ */
.table-type1 {
    width: 100%;
    border-top: 1px solid #cccccc;
    border-left: 1px solid #cccccc;

    width:97%;
    margin:auto;
}

    .table-type1 .tr {
        display: table;
        width: 100%;
    }

        .table-type1 .tr .th,
        .table-type1 .tr .td {
            display: table-cell;
            font-size: 14px;
            padding: 8px 15px;
            background: #ffffff;
            border-right: 1px solid #cccccc;
            border-bottom: 1px solid #cccccc;
        }

        .table-type1 .tr .th {
            width: 180px;
            background: #f5f5f5;
        }

        .table-type1 .tr .td {
            width: calc(100% - 180px);
        }

    .table-type1 .tr {
        display: block;
    }

        .table-type1 .tr .th,
        .table-type1 .tr .td {
            display: block;
            width: 100%;
        }

/* ================================ */
/* 見出しテーブルスタイル           */
/* ================================ */

table.type2 {
    font-size: 14px;
    width: 95%;
    border-collapse: collapse;
    margin: 0.5em 0.7em;
}

    table.type2 tr {
        border-bottom: solid 2px white;
    }

        table.type2 tr:last-child {
            border-bottom: none;
        }

    table.type2 th {
        position: relative;
        text-align: left;
        width: 40%;
        background-color: #60c2d8;
        color: white;
        text-align: center;
        padding: 10px 0;
    }

        table.type2 th:after {
            display: block;
            content: "";
            width: 0px;
            height: 0px;
            position: absolute;
            top: calc(50% - 10px);
            right: -10px;
            border-left: 10px solid #60c2d8;
            border-top: 10px solid transparent;
            border-bottom: 10px solid transparent;
        }

    table.type2 td {
        text-align: left;
        width: 70%;
        text-align: center;
        background-color: #f5f5f5;
        padding: 10px 0;
    }

/* ================================ */
/* 汎用レスポンシブテーブルスタイル */
/* ================================ */

ul.navlink {
    font-size: 15px;
    color: var(--color-font-base3);
    list-style: none;
    padding: 0.5em 0.7em;
    margin: 0.5em 0.7em;
    border: solid 2px #60c2d8;
    border-radius: 5px;
}

    ul.navlink li {
        position: relative;
        margin-bottom: 5px;
        padding-left: 1em;
        padding: 1em;
        line-height: 30px;
        font-size: 15px;
        font-weight: bold;
        border-bottom: 1px dashed #5c9ee7;
        cursor: pointer;
    }

        ul.navlink li:last-child {
            border: none;
            margin: 0;
        }

        ul.navlink li:before {
            font-family: 'Font Awesome 5 Free';
            content: "\f054";
            position: absolute;
            right: 5px;
            font-size: 1.2em;
            -webkit-transition: all 0.2s linear;
            transition: all 0.2s linear;
        }

        ul.navlink li:hover:before {
            -webkit-transform: scale(1.5);
            transform: scale(1.5);
            background-position: bottom;
            font-weight: bold;
        }

/* ================================ */
/* 適用下限額ボックススタイル       */
/* ================================ */

.box-kojo {
    /*padding: 0.5em 1em;*/
    /*margin: 1.5em 0;*/
    color: #333;
    background: white;
    /*
    border-top: solid 5px #ec6d59;
    box-shadow: 0 3px 5px rgba(0, 0, 0, 0.22);
    */
}

    .box-kojo p {
        margin: 0;
        padding: 0;
    }

.box-kojo {
    padding: 0 1em;
    margin: 0;
    height: 0;
    border-top: solid 0px #ec6d59;
    box-shadow: 0 0px 0px rgba(0, 0, 0, 0.22);
    opacity: 0;
    transition: .5s;
}

    .box-kojo.show {
        padding: 0.5em 1em;
        margin-top: 1.5em;
        height: 100%;
        border-top: solid 5px #ec6d59;
        box-shadow: 0 3px 5px rgba(0, 0, 0, 0.22);
        opacity: 1;
    }

.box-kojo__2 {
    color: #333;
    background: white;
}
.box-kojo__2 p {
    margin: 0;
    padding: 0;
}
.box-kojo__2 {
    padding: 0.5em 1em;
    margin-top: 1.5em;
    height: 100%;
    border-top: solid 5px #ec6d59;
    box-shadow: 0 3px 5px rgba(0, 0, 0, 0.22);
}

/* ================================ */
/* アンカータグの文字列を一行に短縮 */
/* ================================ */

.link_ellipsis {
    white-space: nowrap;
    text-overflow: ellipsis;
    display: block;
    width: 100%;
    overflow: hidden;
}

/* ================================ */
/* 埋め込み動画の画像サイズ         */
/* ================================ */
iframe.note-video-clip {
    width: 100%;
}

/* ================================ */
/* コントロールサブスタイル         */
/* ================================ */

/*
    フォーカスの当たらないラベルの様に扱うinput に適用するスタイル.
    (背景色黄色)
*/
.extra_input_disabled {
    background: #ffffe0;
    pointer-events: none !important;
    user-select: none !important;
    border: 1px solid #cccccc !important;
    box-shadow: none !important;
    opacity: 1 !important;
    cursor: default !important;
}

/*
    フォーカスの当たらないラベルの様に扱うinput に適用するスタイル.
    (背景色無し)
*/
.post_input_disabled {
    pointer-events: none !important;
    user-select: none !important;
    border: 1px solid #cccccc !important;
    box-shadow: none !important;
    opacity: 1 !important;
    cursor: default !important;
}

.extra_input_disabled__2 {
    background: #ffffe0;
    user-select: none !important;
    border: 1px solid #cccccc !important;
    box-shadow: none !important;
    opacity: 1 !important;
    cursor: default !important;
    overflow: auto;
}

/*
    テキストエリア用スクロールバースタイル.
*/
.bar_textarea::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 3px rgba(0,0,0,.3);
    border-radius: 7px;
    background-color: #f5f5f5
}

.bar_textarea::-webkit-scrollbar {
    width: 7px;
    background-color: #f9f9f9;
}

.bar_textarea::-webkit-scrollbar-thumb {
    border-radius: 7px;
    -webkit-box-shadow: inset 0 0 3px rgba(0,0,0,.3);
    background-color: #ccc;
}

/* ================================ */
/* 地域から探す                     */
/* ================================ */

/* 自治体一覧下リンク 中央揃え */
.municipalityLink_area {
    padding-top: 40px;
    text-align: center;
    font-size: 16px;
}

@media screen and (min-width: 740px) {
    .municipalityLink_area {
    }
}

/* リンク　右矢印 */
.supplementarySearch_link {
    color: var(--color-icon);
    font-weight: 600;
    /* 上 | 右 | 下 | 左 */
    /*padding: 3px 30px 3px 0px;*/
    padding: 0px 30px 1px 0px;
    border-bottom: 1px dashed var(--color-icon);
    position: relative;
    display: inline-block;
}

    .supplementarySearch_link:hover {
        opacity: 1;
    }

    .supplementarySearch_link::after {
        position: absolute;
        top: 3px;
        right: 3px;
        display: inline-block;
        width: 20px;
        height: 20px;
        content: '';
        background-image: url(../img/textArrow.svg);
        background-repeat: no-repeat;
        background-position: center;
        background-size: contain;
        transition: all .2s cubic-bezier(.34,1.61,.7,1.3);
    }

    .supplementarySearch_link:hover:after {
        opacity: 1;
        transform: translateX(5px);
    }

/* ================================ */
/* その他                           */
/* ================================ */

/*スピンボタン非表示*/
.no-spin::-webkit-inner-spin-button,
.no-spin::-webkit-outer-spin-button {
    -webkit-appearance: none !important;
    margin: 0 !important;
    -moz-appearance: textfield !important;
}

.fwn {
    font-style: normal;
    font-weight: normal;
}

.fwb {
    font-weight: bold;
}

.vam {
    vertical-align: middle !important;
}

.flxend {
    display: flex;
    justify-content: flex-end;
}

.mt5 {
    margin-top: 5px !important;
}

.mb5 {
    margin-bottom: 5px !important;
}

.ml5 {
    margin-left: 5px !important;
}

.mr5 {
    margin-right: 5px !important;
}

.pt5 {
    padding-top: 5px !important;
}

.pb5 {
    padding-bottom: 5px !important;
}

.pl5 {
    padding-left: 5px !important;
}

.pr5 {
    padding-right: 5px !important;
}

/*
    マイナス調整
*/

.mtm10 {
    margin-top: -10px !important;
}

.mtm20 {
    margin-top: -20px !important;
}

.mtm40 {
    margin-top: -40px !important;
}

.mtm60 {
    margin-top: -60px !important;
}

.mtm80 {
    margin-top: -80px !important;
}

.mbm10 {
    margin-bottom: -10px !important;
}

.mbm20 {
    margin-bottom: -20px !important;
}

.mbm30 {
    margin-bottom: -30px !important;
}

.mbm40 {
    margin-bottom: -40px !important;
}

.mbm80 {
    margin-bottom: -80px !important;
}

/*EOF*/
