html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.container,
.footer {
    padding: 0;
    margin: 0;
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}

/*#region 共通 */
.inlineBlock {
    display: inline-block;
}

.Block {
    display: block !important;
}


.fixed {
    position: fixed;
    z-index: 1;
}

.form-control {
    background-color: #d4fafa;
    color: #000;
    opacity: .85;
}

.PageTitle {
    font-size: 14pt;
    font-weight : 700;
    padding: 0px 0px 0px 0px;
    margin: 0px 0px 15px 0px;
    
}

label {
    margin-left: 5px;
}

input[type="checkbox"] {
    margin-right: 10px;
}

/*#region FixDiv */
.FixDiv {
    display: none;
    position: absolute;
    will-change: transform;
    background-color: #d8fed3;
    width: 95px;
    text-align: center;
}

.FixDivTitle {
    display: block;
    width: 100%;
    margin: 0 auto;
    padding: 5px 0;
    margin-bottom: 1rem;
    background-color: #007bff;
    color: white;
    text-align: center;
    border-radius: 8px;
    font-size: 15px;
    font-weight: bold;
    text-decoration: none;
    border: none;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

.FixDivDetail {
    padding: 0;
    margin: 0;
    width: 80px;
    height: 80px;
}

.GoTop {
    display: block;
    width: 100%;
    margin: 0 auto;
    padding: 5px 0;
    margin-bottom: 1rem;
    background-color: #007bff;
    color: white;
    text-align: center;
    border-radius: 8px;
    font-size: 15px;
    font-weight: bold;
    text-decoration: none;
    border: none;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

.GoBottom {
    display: block;
    width: 100%;
    margin: 0 auto;
    padding: 5px 0;
    margin-bottom: 1rem;
    background-color: #007bff;
    color: white;
    text-align: center;
    border-radius: 8px;
    font-size: 15px;
    font-weight: bold;
    text-decoration: none;
    border: none;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}
/*#endregion FixDiv */
/*#endregion 共通 */
/*#region 背景色 */
.bkYellow {
    background-color: lightgoldenrodyellow;
}

.bkBlue {
    background-color: #b2d7ff;
}

.bkOrange {
    background-color: #ffd768;
}

.bkGreen {
    background-color: #c8ffc0;
}

.bkGray {
    background-color: lightgray;
}

.bkRed {
    background-color: lightpink;
}

.bkWhite {
    background-color: #fff;
}
/*#endregion 色 */

/*#region 手前色 */
.frontYellow {
    color: #f5e915;
}

.frontBlue {
    color: blue;
}

.frontSkyBlue {
    color: #43e1eb;
}

.frontOrange {
    color: #ffd768;
}

.frontGreen {
    color: #c8ffc0;
}

.frontGray {
    color: lightgray;
}

.frontRed {
    color: #ff8787;
}

.frontWhite {
    color: #fff;
}
/*#endregion 色 */

/*#region ToolTip */
/** https://blog.myntinc.com/2018/02/csstooltip.html */
.tooltip-right:hover {
    opacity: 0.8;
    cursor: help;
    position: relative;
}

    .tooltip-right:hover:before {
        content: attr(data-msg);
        display: inline-block;
        position: absolute;
        top: 0;
        left: calc(100% + 12px);
        font-size: 12px;
        color: white;
        background-color: #484848;
        min-width: 100px;
        max-width: 300px;
        width: auto;
        min-height: 16px;
        padding: 8px;
        border-radius: 4px;
        white-space: pre;
        text-align: left;
    }

    .tooltip-right:hover:after {
        content: "";
        display: block;
        position: absolute;
        height: 0;
        width: 0;
        top: calc(10% + 8px);
        left: calc(100% + 12px - 10px);
        border-right-width: 0;
        border-style: solid;
        border-width: 12px 0 12px 12px;
        border-color: #484848 transparent transparent transparent;
    }

.tooltip-left:hover {
    opacity: 0.8;
    cursor: help;
    position: relative;
}

    .tooltip-left:hover:before {
        content: attr(data-msg);
        display: block;
        position: absolute;
        top: 10%;
        right: calc(100% + 12px);
        font-size: 12px;
        color: white;
        background-color: #484848;
        min-width: 100px;
        max-width: 300px;
        min-height: 16px;
        padding: 8px;
        border-radius: 4px;
        white-space: pre;
        text-align: left;
    }

    .tooltip-left:hover:after {
        content: "";
        display: block;
        position: absolute;
        height: 0;
        width: 0;
        top: calc(10% + 8px);
        right: calc(100% + 12px - 10px);
        border-right-width: 0;
        border-style: solid;
        border-width: 12px 12px 12px 0;
        border-color: #484848 transparent transparent transparent;
    }

.tooltip-top:hover {
    opacity: 0.8;
    cursor: help;
    position: relative;
}

    .tooltip-top:hover:before {
        content: attr(data-msg);
        display: block;
        position: absolute;
        bottom: calc(100% + 12px);
        left: 4px;
        font-size: 12px;
        color: white;
        background-color: #484848;
        min-width: 100px;
        max-width: 300px;
        min-height: 16px;
        padding: 8px;
        border-radius: 4px;
        white-space: pre;
        text-align: left;
    }

    .tooltip-top:hover:after {
        content: "";
        display: block;
        position: absolute;
        height: 0;
        width: 0;
        bottom: calc(100% + 12px - 10px);
        left: calc(4px + 8px);
        border-right-width: 0;
        border-style: solid;
        border-width: 0 12px 12px 12px;
        border-color: transparent #484848 transparent transparent;
    }

.tooltip-bottom:hover {
    opacity: 0.8;
    cursor: help;
    position: relative;
}

    .tooltip-bottom:hover:before {
        content: attr(data-msg);
        display: block;
        position: absolute;
        top: calc(100% + 12px);
        left: 4px;
        font-size: 12px;
        color: white;
        background-color: #484848;
        min-width: 100px;
        max-width: 300px;
        min-height: 16px;
        padding: 8px;
        border-radius: 4px;
        white-space: pre;
        text-align: left;
    }

    .tooltip-bottom:hover:after {
        content: "";
        display: block;
        position: absolute;
        height: 0;
        width: 0;
        top: calc(100% + 12px - 10px);
        left: calc(4px + 8px);
        border-right-width: 0;
        border-style: solid;
        border-width: 12px 12px 0 12px;
        border-color: transparent #484848 transparent transparent;
    }
/*#endregion ToolTip */

/* #region ヘッダーリンカー */
.HeadaerLinker {
    margin-top: -15px;
    margin-bottom: 5px;

    .HeaderLinkerAnker {
        padding-left: 5px;
        padding-right: 5px;
    }
}
/* #endregion ヘッダーリンカー */

/* #region PC用 */
@media screen and (min-width: 767px) {
    .container {
        min-width: 1400px;
        padding-left: 30px;
    }
}
/* #endregion PC用 */

/* #region スマホ用 */
@media screen and (max-width: 767px) {
    .inlineBlock {
        display: block;
    }

    .container {
        padding: 1 0 0 1;
        margin: 0;
    }

    ul {
        padding: 0;
        margin: 0;
    }
}
/* #endregion スマホ用 */

/* bootstrapのコンボボックスにて、▽を出す */
select {
    appearance: auto !important; /* 標準のスタイルを無効にする */
}
