/*-----------------------------------------------------------------
	共通CSS
-----------------------------------------------------------------*/
:root {
    --sat-red: #e73828;
    --sat-gray: #62636b;
    --main-color: #00336e;
    --minus-color: #2675B5;
}

/*-----------------------------------------------------------------
	全体
-----------------------------------------------------------------*/

#newsWrap {
    width: 100%;
    height: 100%;
    min-height: 100vh;
    margin: 0 auto;
    /*overflow: hidden;*/
    text-align: center;
    position: relative;
}

#newsWrap img {
    max-width: 100%;
}

/*-----------------------------------------------------------------
	ヘッダー
-----------------------------------------------------------------*/
#newsWrap #header {
    opacity: 0;
    height: 0;
    transition: all 0.3s;
}

#newsWrap header {
    width: 100% !important;
    height: 60px;
    background: #fff;
    border-bottom: #fff 1px solid;
    box-shadow: 0 10px 20px rgba(6, 46, 196, .1);
    position: fixed;
    top: 0;
    z-index: 1000;
    text-align: center;
}

#newsWrap .scrolled {
    transition: all 0.3s !important;
    opacity: 1 !important;
    height: 70px !important;
}

#newsWrap .logo {
    height: 40px;
    position: absolute;
    top: 10px;
    left: 1rem;
    z-index: 100;
}

#newsWrap .logo img {
    height: 100%;
    aspect-ratio: 40 / 29;
}

#newsWrap .hmenu {
    display: inline-block;
}

#newsWrap .hmenu li {
    border-right: #ccc 1px solid;
    display: inline-block;
    margin: 20px 0 0;
}

#newsWrap .hmenu li:first-child {
    border-left: #ccc 1px solid;
}

#newsWrap .hmenu li a {
    width: 100%;
    display: block;
    font-size: 16px;
    text-decoration: none;
    padding: 5px 20px;
    font-weight: bold;
    color: #6c757d;
}

#newsWrap .hmenu li a:hover {
    text-decoration: underline;
}

#newsWrap .sp-menu li {
    height: 40px;
    display: inline-block;
    margin: 0 0 0 5px;
}

#newsWrap .sp-menu li img {
    height: 100%;
}

#newsWrap header .sp-menu {
    position: absolute;
    top: 13px;
    right: 3%;
    z-index: 100;
}

#newsWrap #header .header-conversion,
#newsWrap #header .agency-conversion {
    display: inline-block;

}

#newsWrap #header .header-conversion a {
    color: var(--sat-red);
    background-color: #FFFFFF;
    font-size: 1.3rem;
    font-weight: bold;
    border: 3px solid var(--sat-red);
    border-radius: 2.5rem;
    margin: 0 1rem;
    padding: .5rem 2rem;
    text-decoration: none;
}

#newsWrap #header .header-conversion a:hover {
    color: #FFFFFF;
    background-color: var(--sat-red);
    border-color: var(--sat-red);
}

#newsWrap #header .agency-conversion a {
    color: var(--main-color);
    background-color: #FFFFFF;
    font-size: 1.3rem;
    font-weight: bold;
    border: 3px solid var(--main-color);
    border-radius: 2.5rem;
    padding: .5rem 2rem;
    text-decoration: none;
}

#newsWrap #header .agency-conversion a:hover {
    color: #FFFFFF;
    background-color: var(--main-color);
    border-color: var(--main-color);
}

#newsWrap .header-back-link {
    position: fixed;
    left: 2vh;
    top: calc(2vh + 70px);
    z-index: 999999;
    opacity: .6;
}

#newsWrap .header-back-link a {
    height: 100%;
}

/*-----------------------------------------------------------------
	下段メニュー画面
-----------------------------------------------------------------*/

/*#newsWrap footer {*/
/*    width: 100%;*/
/*    background: rgb(0, 0, 0);*/
/*    color: #fff;*/
/*    margin: 0;*/
/*    position: absolute;*/
/*    padding: 40px 0 10px;*/
/*    bottom: 0;*/
/*}*/

/*#newsWrap footer table {*/
/*    margin: 0 auto 20px;*/
/*}*/

/*#newsWrap footer table th img {*/
/*    margin: 0 20px;*/
/*}*/

/*-----------------------------------------------------------------
	お知らせ一覧画面
-----------------------------------------------------------------*/

#newsWrap .h1_bg {
    color: #FFFFFF;
    background-color: var(--main-color);
    background-size: cover;
    margin: 60px 0 50px;
    padding: 30px 0;
}

#newsWrap .h1_bg {
    font-size: 3.5rem;
}

#newsWrap .h2_news {
    border-bottom: 3px solid #1c81b9;
    font-weight: bold;
    text-align: left;
    padding: 10px 20px;
}

#newsWrap .h3_news {
    border-bottom: 3px solid #1c81b9;
    font-weight: bold;
    text-align: left;
    padding: 10px 20px;
    margin-bottom: 30px;
}

#newsWrap .main .release_dl {
    width: 100%;
    margin: 0 0 20px;
    padding-bottom: 5rem;
}

#newsWrap .main .release_dl div {
    padding: 5px 0;
}

#newsWrap .main .release_dl dt {
    width: 10%;
    clear: left;
    float: left;
    margin-right: 30px;
}


#newsWrap .main .release_dl dd {
    /*border-bottom: #ccc 1px dashed;*/
    width: 100%;
    margin-bottom: 0 !important;
    text-align: left;
}

#newsWrap .main .release_dl dd span {
    width: 120px;
    display: inline-block;
    font-size: .8rem;
    font-weight: bold;
    padding: 2px;
    text-align: center;
    margin-right: 3%;
}

@media (max-width: 768px) {

    #newsWrap .main .release_dl dt {
        margin-right: 50px;
    }

    #newsWrap .main .release_dl dd span {
        display: block;
    }
}

#newsWrap .main .release_dl dd a {
    font-weight: bold;
}

#newsWrap .main .clr_release {
    background: #1c81b9;
    color: #fff;
}

#newsWrap .main .clr_news {
    background: #62636b;
    color: #fff;
}

#newsWrap .news_date {
    color: #666;
    margin: 0 0 20px;
    text-align: right;
}

#newsWrap .post {
    text-align: left;
    margin-bottom: 3rem;
    padding: 0 1rem;
}

#newsWrap #news-back {
    margin: 0 0 20px;
    text-align: left;
}

#newsWrap #news-nav {
    margin: 0 auto 100px;
    max-width: 500px;
    overflow: hidden;
}

#newsWrap #news-prev {
    width: 8em;
    white-space: nowrap;
    float: left;
}

#newsWrap #news-next {
    width: 9em;
    white-space: nowrap;
    float: right;
}

#newsWrap #news-prev a,
#newsWrap #news-next a {
    display: block;
    padding: .4em 0;
    text-align: center;
    color: #fff;
    text-decoration: none;
    background: #1c81b9;
}

#newsWrap #news-prev a:hover,
#newsWrap #news-next a:hover {
    opacity: .8;
}

/* 追加修正 */

#newsWrap {
    display: flex;
    flex-direction: column;
}
#newsWrap .news-wrap-contents {
    flex: 1;
}

#newsWrap h1 {
    font-size: 3.5rem;
}
#newsWrap h2 {
    font-size: 2.5rem;
}

#newsWrap a {
    color: #1c81b9;
    text-decoration: underline;
    -webkit-transition: 0.2s linear;
    -moz-transition: 0.2s linear;
    transition: 0.2s linear;
}
#newsWrap a:hover {
    color: #0056b3;
    text-decoration: underline;
}

#newsWrap footer {
    background: rgb(0, 0, 0);
}
#newsWrap footer img {
    max-width: 300px;
}
#newsWrap footer .copy {
    font-size: .7rem;
}