body {
    font-family: "游ゴシック体",YuGothic,"游ゴシック","Yu Gothic",YuGothic,"Noto Sans JP","ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro","メイリオ",Meiryo,sans-serif;
    background-color: rgb(21, 32, 43);
    color: #fff;
}
.Article-icon-size {
    width: 20px;
    height: 20px;
}

/* #region slick-theme.cssの中で切り分け */
.slick-prev:before, .slick-next:before {
    color:#3282B8;
}
.slick-dots li button:before
{
    font-family: 'slick';
    font-size: 6px;
    line-height: 20px;
    position: absolute;
    top: 0;
    left: 0;
    width: 20px;
    height: 20px;
    content: '•';
    text-align: center;
    opacity: .35;
    color: rgb(255, 255, 255);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.slick-dots li.slick-active button:before
{
    opacity: .75;
    color: rgb(255, 255, 255);
}
/* #endregion */

/* #region パンくず */
.BreadContainer {
    margin: 0 auto;
    max-width: 1100px;
    color: #DCDDDE;
}
.BreadList {
    display: flex;
    padding-top: 1rem;
    padding-bottom: 1rem;
    margin-bottom: 0rem;
    list-style: none;
    flex-wrap: wrap;
}
.BreadList-Item {
    display: flex;
}
.BreadList-Item+.BreadList-Item::before {
    display: inline-block;
    padding: 0rem 0.5rem;
    color: #6c757d;
    content: ">";
}
/* #endregion */

/* #region 共通ヘッダー */
.HeadHeaderColor {
    background-color: #142850;
}
.HeadHeader {
    z-index: 999999;
    height: 55px;
    width: 100%;
}
.Header {
    justify-content: space-between!important;
    display: flex!important;
    padding: 0.8rem 4rem;
}
.SiteTitle {
    font-weight: 500;
    font-size: 1.5rem;
    color: #fff;
}
.OptionHeader {
    display: flex;
    color: #fff;
}
.OptionHeader-Language {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 20px;
    margin-left: 20px;
}
.Search {
    cursor: pointer;
    margin-right: 30px;
}
.Language-Select {
    position: relative;
    cursor: pointer;
    background-color: rgb(0, 0, 0);
    border-radius: 2px;
    margin-left: 10px;
}
  .Language-Select::after {
    position: absolute;
    top: 30%; /* 矢印の位置 */
    right: 15px; /* 矢印の位置 */
    width: 10px; /* 矢印の大きさ */
    height: 10px; /* 矢印の大きさ */
    border-top: 3px solid #58504A; /* 矢印の線 */
    border-right: 3px solid #58504A; /* 矢印の線 */
    -webkit-transform: rotate(135deg); /* 矢印の傾き */
    transform: rotate(135deg); /* 矢印の傾き */
    pointer-events: none; /* 矢印部分もクリック可能にする */
    content: ""; 
    }
  .select {
    appearance: none; /* デフォルトの矢印を消す */
    width: 110px; /* セレクトボックスの幅 */
    background-color: #F0F0F0;  /* セレクトボックスの背景色 */
    border: none; /* セレクトボックスのデフォルトの枠線を消す */
    border-radius: 2px;  /* セレクトボックスの四隅の丸み */
    color: #3E497A;  /* セレクトボックスの文字色 */
    font-family: 'Kiwi Maru', serif;
    padding: 5px 10px; /* セレクトボックスの内側の余白 */
    cursor: pointer;
  }
  select:focus {
    outline: none; /* focus 時のデフォルトの枠線を消す */
  }
  ::-ms-expand {
    display: none;  /* IE 対応( select のデフォルト矢印を消す) */
  }
@media (max-width: 992px){
    .Header {
        padding: 1rem 2rem !important;
    }
}
/* #endregion */

/* #region 共通フッター */
.footerBackgroundColor {
    background-color: rgb(21, 32, 43);
    margin-top: 100px;
}
.Footer-Top {
    color: #fff;
    background-color: #142850;
    justify-content: space-between!important;
    display: flex!important;
    padding: 1.5rem;
}
.Footer-Top span{
    margin-left: 3%;
    line-height: 1.2;
    font-size: 18px;
    font-weight: 500;
}
.Footer-SNSicon {
    margin-right: 1.5rem!important;
}
.copyright {
    text-align: center!important;
    padding: 1rem!important;
    background-color: rgba(0, 0, 0, 0.1)
}
.container {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}
.FooterHr {
    display: block;
    margin: 10px 0 25px 0;
    border-bottom: 2px dotted #46B5D1;
}
.FooterHr h6 {
    color: #ffffff;
    line-height: 1.2;
    font-size: 18px;
    font-weight: 500;
    display: inline-block;
    border-bottom: 2px solid #21325E;
    padding-bottom: 5px;
    margin-bottom: -2px;
}
.text-uppercase {
    text-transform: uppercase!important;
}
.row {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
.footer-p {
    color: rgb(255, 255, 255);
    margin-top: 0;
    margin-bottom: 1rem;
    line-height: 1.5;
}
.my-5 {
    margin-top: 2.75rem;
    margin-bottom: 2.75rem;
}
.mt-3{
    margin-top: 1rem!important;
}
.pt-3 {
    padding-top: 1rem!important;
}
.p-3 {
    padding: 1rem!important;
}
.Footer-Position {
    margin-left: auto!important;
    margin-right: auto!important;
}
@media (max-width: 992px){
    .Footer-Top {
        padding: 1rem 0.3rem !important;
    }
}
.col, .col-1, .col-10, .col-11, .col-12, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-auto, .col-lg, .col-lg-1, .col-lg-10, .col-lg-11,  .col-lg-2, .col-lg-3, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-9, .col-lg-auto, .col-md, .col-md-1, .col-md-10, .col-md-11, .col-md-12, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-auto, .col-sm, .col-sm-1, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-auto, .col-xl, .col-xl-1, .col-xl-10, .col-xl-11, .col-xl-12, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-auto {
    position: relative;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
}
@media (min-width: 790px){
    .col-md-2 {
        -ms-flex: 0 0 16.666667%;
        flex: 0 0 16.666667%;
        max-width: 16.666667%;
    }
    .col-md-3 {
        -ms-flex: 0 0 25%;
        flex: 0 0 25%;
        max-width: 25%;
    }
    .col-md-6 {
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%;
    }
}
@media (min-width: 992px){
    .col-lg-2 {
        -ms-flex: 0 0 16.666667%;
        flex: 0 0 16.666667%;
        max-width: 16.666667%;
    }
    .col-lg-3 {
        -ms-flex: 0 0 25%;
        flex: 0 0 25%;
        max-width: 25%;
    }
    .col-lg-4 {
        -ms-flex: 0 0 33.333333%;
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
    }
    .col-lg-6 {
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%;
    }
}
@media (min-width: 1200px){
    .col-xl-2 {
        -ms-flex: 0 0 16.666667%;
        flex: 0 0 16.666667%;
        max-width: 16.666667%;
    }
    .col-xl-3 {
        -ms-flex: 0 0 25%;
        flex: 0 0 25%;
        max-width: 25%;
    }
    .col-xl-4 {
        -ms-flex: 0 0 33.333333%;
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
    }
}
/* #endregion */

/* #region 通知 */
.NoticeToast {
    z-index: 9999999;
    position: fixed;
    top: 5px;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    background-color: #27496D!important;
    color: #fff!important;
    align-items: center!important;
    border: 0!important;
    max-width: 100%;
    font-size: .875rem;
    pointer-events: auto;
    background-color: rgba(255,255,255,.85);
    background-clip: padding-box;
    border: 1px solid rgba(0,0,0,.1);
    box-shadow: 0 0.5rem 1rem rgb(0 0 0 / 15%);
    border-radius: 0.25rem;
    transition: opacity .15s linear;
}
.NoticeToast .NoticeToast-Body {
    padding: 0.75rem;
    word-wrap: break-word;
}
/* #endregion */

/* #region 検索 */

/* #region 検索の表示時使用 */
@keyframes fadein{
    from{
    opacity: 1;
    transform: translatey(100px);
    }
    to{
    opacity: 1;
    transform: translatey(0);
    }
}
body .ShowSearch {
    display: block;
    animation-name: fadein;
}
/* #endregion */

.toast {
    max-width: 800px;
    z-index: 99999;
    overflow: hidden;
    font-size: .875rem;
    background-color: rgba(255,255,255,.85);
    background-clip: padding-box;
    border: 1px solid rgba(0,0,0,.1);
    box-shadow: 0 0.25rem 0.75rem rgb(0 0 0 / 10%);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    display: none;
    border-radius: 0.25rem;
    position: fixed;
    bottom: 20px;
    right: 30px;
    animation-duration: 1s;
    transform: 0.3s;
}
.toast-header {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    padding: 0.75rem;
    color: #6c757d;
    background-color: rgba(255,255,255,.85);
    background-clip: padding-box;
    border-bottom: 1px solid rgba(0,0,0,.05);
}
.close {
    float: right;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
    color: #000;
    text-shadow: 0 1px 0 #fff;
    opacity: .5;
    font-family: inherit;
}
.mr-auto {
    margin-right: auto!important;
}
.toast-body {
    padding: 0.75rem;
    color: #000;
}

/*==検索フォームの設定*/
/*テキスト入力input設定*/
#SearchForm input[type="text"] {
    -webkit-appearance:none;/*SafariやChromeのデフォルトの設定を無効*/
    outline: none;
    text-align: left;
    color: #666;
    border: none;
    border-bottom:2px solid #ccc;
    transition: all 0.5s;
    letter-spacing: 0.05em;
    padding: 10px;
}

/*テキスト入力inputにフォーカスされたら*/
#SearchForm input[type="text"]:focus {
    background:rgb(227, 227, 227);/*背景色を付ける*/
}
.Search-Btn {
    color: #BBE1FA;
    background-color: #0C7B93;
    text-transform: uppercase;
    vertical-align: middle;
    border-radius: 0.25rem;
    border: 0;
    box-shadow: 0 2px 5px 0 rgb(0 0 0 / 20%), 0 2px 10px 0 rgb(0 0 0 / 10%);
    font-weight: 500;
    padding: 0.625rem 1.5rem 0.5rem;
    font-size: .75rem;
    line-height: 1.5;
}
@media (max-width: 992px){
    
    #search-wrap input[type="text"] {
        width: 50%;
    }
}
/* #endregion */

/* スマホ用width */
@media (max-width: 992px){    
    .BreadContainer,.ArticleContainer,.CookieContainer,.HelpContainer,.InquiryContainer,.TermsOfServiceContainer,.TagContainer,.TermsOfServiceContainer {
        width: 95%;
    }
}