@charset "utf-8";

/*-------------------------------------------------
common
-------------------------------------------------*/
* {
    margin: 0;
    padding: 0;
    outline: none;
}
html {
    overflow: auto;
}
/*-------------------------------------------------
フォント指定
-------------------------------------------------*/
*,
body {
    font-family: "メイリオ", "Meiryo", "ヒラギノ角ゴ Pro W3",
        "Hiragino Kaku Gothic Pro", "ＭＳ Ｐゴシック", "MS P Gothic", "Osaka",
        Verdana, Arial, Helvetica, sans-serif;
}
body {
    margin: 0;
    padding: 0;
    background: #fff;
    color: #474747;
    font-size: 14px;
    line-height: 1.8;
}
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary {
    display: block;
}
img,
p,
ul,
li,
dl,
dt,
dd {
    margin: 0;
    padding: 0;
}
img {
    border: 0;
    vertical-align: middle;
}
ul li {
    list-style-type: none;
    line-height: 1;
}
table {
    border-collapse: collapse;
}

table th,
table td {
    vertical-align: top;
    font-weight: normal;
}

table td.tdRht {
    text-align: right;
}

table td.vaTop {
    vertical-align: top;
}
table td.vaBtm {
    vertical-align: bottom;
}
.vaMid,
.vaMid td,
.vaMid th {
    vertical-align: middle;
}
.bgLightGray {
    background: #efefef;
}
address {
    font-style: normal;
}

.floatL {
    float: left;
}

.floatR {
    float: right;
}
.w100per {
    width: 100% !important;
    box-sizing: border-box;
}

/*-------------------------------------------------

link

-------------------------------------------------*/

a:link {
    color: #007fbf;
    text-decoration: underline;
}

a:visited {
    color: #007fbf;
    text-decoration: underline;
}

a:hover {
    color: #ff6600;
    text-decoration: underline;
}

a:active {
    color: #ff7e3e;
    text-decoration: underline;
}

/*a:hover img{
opacity:0.7;
filter:alpha(opacity=70);
-ms-filter: "alpha( opacity=70 )";
background:none!important;
}

/*-------------------------------------------------

clearFix

-------------------------------------------------*/

.clearFix:after {
    content: ".";
    display: block;
    height: 0;
    clear: both;
    visibility: hidden;
}

.clearFix {
    display: inline-table;
    min-height: 1%;
}

/* Hides from IE-mac \*/

* html .clearFix {
    height: 1%;
}

.clearFix {
    display: block;
}

.clear {
    clear: both;
}

/* End hide from IE-mac */

/*-------------------------------------------------

h

-------------------------------------------------*/

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    padding: 0;
    font-weight: normal;
    font-size: 12px;
}

.fwn {
    font-weight: normal !important;
}

.dspIB {
    display: inline-block;
}
.overFlowAuto {
    overflow: auto;
}
.rotateEnDash {
    display: inline-block;
    transform: rotate(-90deg);
}
/*-------------------------------------------------
ページトップへ
-------------------------------------------------*/
#pageTop {
    display: none;
    background: #aaa;
    border-radius: 100%;
    width: 50px;
    height: 50px;
    opacity: 0.7;
    cursor: pointer;
    position: fixed;
    bottom: 20px;
    right: 20px;
}
#pageTop:hover {
    opacity: 0.9;
}
#pageTop:after {
    content: "";
    display: block;
    width: 10px;
    height: 10px;
    border-top: 3px solid #fff;
    border-left: 3px solid #fff;
    position: absolute;
    top: 55%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
}
/*-------------------------------------------------

scrollbar

-------------------------------------------------*/
body ::-webkit-scrollbar {
    width: 14px;
    background: #eee;
}
body ::-webkit-scrollbar:horizontal {
    height: 14px;
}
body ::-webkit-scrollbar-button {
    width: 14px;
    height: 14px;
}
body ::-webkit-scrollbar-button:start {
    background: url(../../img/common/iconScrollbarBtnStart.png) no-repeat center center
        #aaa;
}
body ::-webkit-scrollbar-button:end {
    background: url(../../img/common/iconScrollbarBtnEnd.png) no-repeat center center #aaa;
}
body ::-webkit-scrollbar-piece {
    background: #ccc;
}
body ::-webkit-scrollbar-piece:start {
    background: #ccc;
}

body ::-webkit-scrollbar-thumb {
    background: #ccc;
}
body ::-webkit-scrollbar-corner {
    background: #aaa;
}
/*-------------------------------------------------

add

-------------------------------------------------*/
p.add,
span.add {
    font-size: 0.95em;
    color: #777;
    font-weight: normal;
}
p.add.red,
span.add.red {
    color: #f00;
}
/*-------------------------------------------------

テキスト・ボックス・テーブルセル内寄せ

-------------------------------------------------*/
.taC {
    text-align: center !important;
}
.taR {
    text-align: right !important;
}
.taL {
    text-align: left !important;
}
.cBox {
    margin-left: auto !important;
    margin-right: auto !important;
}
.verTop {
    vertical-align: top !important;
}
.verMid {
    vertical-align: middle !important;
}
.verMid {
    vertical-align: bottom !important;
}
/*-------------------------------------------------
.progress
-------------------------------------------------*/
.progress {
    padding: 15px;
    font-size: 1.2rem;
}
.progress__loading {
    width: 30px;
    height: 30px;
    margin-right: 10px;
}
/*-------------------------------------------------
.ellipsis
-------------------------------------------------*/
.ellipsis {
    position: relative;
    overflow: hidden;
    max-width: 100%; /* IE11対応 */
}
.ellipsis.over:after {
    content: "…";
    position: absolute;
    top: 0;
    right: 0;
    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 1) 30%
    );
    padding-left: 10px;
}
.ellipsis .ellipsis__inner {
    display: inline-block;
}
/*-------------------------------------------------
.thumbnail ※モダンコーディング用
-------------------------------------------------*/
.thumbnail {
    width: 100%; /* 各サムネイルサイズの幅を指定 */
}
.thumbnail__container {
    width: 100%;
    height: auto;
    background: #000;
    position: relative;
}
.thumbnail__container:before {
    content: "";
    display: block;
    padding-top: 56.25%;
}
.thumbnail__inner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.thumbnail__container img {
    max-width: 100%;
    max-height: 100%;
}
@media all and (-ms-high-contrast: none) {
    /* IE11対応 */
    *::-ms-backdrop,
    .thumbnail__inner {
        display: block;
    }
    .thumbnail__container img {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }
}
