@charset "utf-8";

html, body {
margin: 0;
padding: 0;
font-family: "Noto Sans JP", sans-serif;
background-color: #ffffff;
background-image: radial-gradient(circle, #ebebeb 2.5px, transparent 2.5px);
background-position: 0 0;
background-size: 25px 25px;
}

@media screen and (max-width:428px) {
    html, body {
    font-size: 0.9rem;
    }
}

p {
    line-height: 1.5;
    color: #051730;
}

* {
box-sizing: border-box;
}

header {
transition: 0.5s;
}

.header_wrapper {
/* width: 100%; */
position: sticky;
z-index: 999999;
top: 0px;
background-color: rgb(10 39 77 / 0.9);
display: flex;
text-align: center;
justify-content: center;
}

.p7g_logo {
position: absolute;
top: 150px;
right: 5vw;
}

.p7g_logo_child {
max-width: 30vw;
height: auto;
}

@media screen and (max-width:950px) {
.p7g_logo {
position: absolute;
top: 400px;
display: flex;
justify-content: center;
margin: 0 auto;
right: 50%;
left: 50%;
}
.p7g_logo_child {
max-width: 300px;
height: auto;
}
}

.firstView {
    position: relative;
    width: 100%;
    height: 100%;
}

.fv_section {
position: relative;
z-index: 99999;
}

section {
width: 100%;
/* height: 100vh; */
}

.news_header-content {
    position: absolute;
    top: 50%; /* 上端を垂直方向の中央に */
    left: 50%; /* 左端を水平方向の中央に */
    transform: translate(-50%, -50%); /* 要素自体を半分戻し、完全に中央寄せ */
    width: 90%; /* コンテンツの幅を親に対して設定 */
    max-width: 1000px; /* 必要に応じて最大幅を設定 */
    color: #fff;
    text-shadow: 0px 4px 5px rgba(0, 0, 0, 0.4);

    /* Flexboxで中身の配置を制御 */
    display: flex;
    flex-direction: column; /* 縦並び */
    align-items: flex-start; /* 左寄せ */
    /* justify-content: center; */ /* 垂直方向はtransformで中央にしているので不要 */
}

/* メインタイトル */
.news_header-ttl {
    /* フォントサイズをビューポート幅に合わせて調整 */
    font-size: 3vw;
    line-height: 1.1;
    margin: 0; /* 不要なマージンをリセット */
    /* flex-basis: auto; */
    /* text-align: left; */ /* 親の align-items: flex-start で左寄せに */
}

/* サブタイトル */
.news_header-sbttl {
    /* フォントサイズをビューポート幅に合わせて調整 */
    font-size: 1vw;
    line-height: 1.3;
    margin-top: 0.5em; /* タイトルからの間隔 */
    /* text-align: left; */ /* 親の align-items: flex-start で左寄せに */
}

/* 小さい画面での調整 (例: スマートフォン) */
@media (max-width: 768px) {
    .news_header-ttl {
        font-size: 6vw; /* より小さくても読みやすいように大きく設定し直す */
    }
    .news_header-sbttl {
        font-size: 3vw;
    }
    /* 中央に寄せるなど、必要に応じて位置の調整も可能です */
    /* .news_header-content {
        align-items: center;
    } */
}

@media (max-width: 428px) {
    .news_header-ttl {
        font-size: 8vw; /* より小さくても読みやすいように大きく設定し直す */
    }
    .news_header-sbttl {
        font-size: 4vw;
    }
    /* 中央に寄せるなど、必要に応じて位置の調整も可能です */
    /* .news_header-content {
        align-items: center;
    } */
}

hr {
    border:none;
    border-top: solid 1px #d7d7d7;
    height:1px;
    margin: 3% 0;
}

#news_article {
    position: relative;
}

.clearfix-newsttl {
    background-image: url(../images/notice/clearfix_bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.news-date .small {
    padding: 0 0 0 20px;
}

#news_article .news-date {
    text-align: left;
    display: flex;
    align-items: center;
    margin: 0rem 0 0 0;
    padding: 20px 0 20px 0;
    width: 100%;
}

.news-title {
    font-size: 1.8rem;
    font-weight: 600;
    color: #fff;
    /* position: relative;
    z-index: 5; */
    padding: 0rem 20px 0rem 20px;
    margin: 0rem 0;
    /* border-bottom: solid 1px #0c1f48; */
    flex-grow: 1;       /* 可能な限り幅を広げる */
    flex-shrink: 1;     /* 必要に応じて縮小する */
    min-width: 0;       /* 最小幅を0に設定し、長文によるはみ出しを防止 (最重要) */
    white-space: normal; /* 親から継承された nowrap を確実に上書きし改行を許可 */
    word-break: break-all; /* 長い単語でも強制改行 */
}

#news_article .news-date li:last-child {
    padding: 0 30px 0 20px;
    flex-shrink: 0;
    width: auto;
    font-size: 1.25rem;
    font-weight: 600;
    color: #FFF;
    /* padding: 0px 0px 0 0; */
    border-left: solid 1px;
}

#news_article .notice-title{
    font-size: min(36 / 768 * 100vw, 36px);
    line-height: 1.5;
    padding: 0 0 1rem 0;
    margin: 0 0 30px 0; 
    vertical-align: middle;
    border-bottom: solid 1px #0c1f48;
}

#news_article img{
    margin: auto;
    display: block;
}

.detail_news-img {
    width: 90%;
    height: auto;
}

.news_txt img{
    padding: 0 0 1rem 0;
}
.news_txt {
    padding-bottom: 2rem;
    font-size: 2rem;
    border-bottom: 1px solid #0c1f48;
    word-break: break-all;
}

@media (min-width: 769px) {
    .news-title_2 {
        display: none;
    }
}

@media (max-width: 768px) {
    #news_article .news-date {
    text-align: left;
    display: flex;
    align-items: center;
    margin: 0rem 0 0 0;
    padding: 0;
    width: 100%;
    position: absolute;
    top: 60px;
    }
    .news-title {
        display: none;
    }
    .news-title_2 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #fff;
    position: relative;
    z-index: 5;
    padding: 6rem 20px 4rem 20px;
    margin: -1.5rem 0 -1rem 0;
    /* border-bottom: solid 1px #0c1f48; */
    flex-grow: 1;
    flex-shrink: 1;
    min-width: 0;
    white-space: normal;
    word-break: break-all;
    }
    .news-date .small {
        font-size: 1.25rem;
        padding: 0 10px 0 20px;
    }
    #news_article .news-date li:last-child {
    padding: 0px 20px 10px 0px;
    flex-shrink: 0;
    width: auto;
    font-size: 1rem;
    font-weight: 600;
    color: #FFF;
    border: none;
    /* padding: 0px 0px 0 0; */
    }
}

@media (max-width: 428px) {
    .news-title_2 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #fff;
    position: relative;
    z-index: 5;
    padding: 5rem 10px 2.5rem 10px;
    margin: -1rem 0 -1rem 0;
    /* border-bottom: solid 1px #0c1f48; */
    flex-grow: 1;
    flex-shrink: 1;
    min-width: 0;
    white-space: normal;
    word-break: break-all;
    }
    .detail_news-img {
    width: 100%;
    height: auto;
    }
    #news_article .news-date li:last-child {
    padding: 0px 20px 10px 0px;
    flex-shrink: 0;
    width: auto;
    font-size: 0.85rem;
    font-weight: 600;
    color: #FFF;
    border: none;
    /* padding: 0px 0px 0 0; */
    }
    .announce_exp {
        font-size: 0.9rem;
    }
}

/*------------------------------------------------------------------------------------------------
accodion
------------------------------------------------------------------------------------------------*/
.accordion{
  margin: 2rem 0;
}

.accordion summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    padding: 1rem 2rem;
    /* border-left: 5px solid #0c1f48; */
    background-color: #0A274D;
    color: #fff;
    font-weight: 600;
    font-size: 1.5rem;
    cursor: pointer;
}

@media (max-width: 768px) {
    .accordion summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    padding: 1rem 2rem;
    /* border-left: 5px solid #0c1f48; */
    background-color: #0A274D;
    color: #fff;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    }
}

@media (max-width: 428px) {
    .accordion summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    padding: 1rem 2rem;
    /* border-left: 5px solid #0c1f48; */
    background-color: #0A274D;
    color: #fff;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    }
}

.accordion summary::-webkit-details-marker {
    display: none;
}

.accordion summary::after {
    transform: translateY(-30%) rotate(45deg);
    width: 8px;
    height: 8px;
    margin-left: 10px;
    border-bottom: 2px solid #fff;
    border-right: 2px solid #fff;
    content: '';
    transition: transform .3s;
}

.accordion[open] summary::after {
    transform: rotate(225deg);
}

.accordion div {
    transform: translateY(-10px);
    opacity: 0;
    margin: 0;
    padding: 1rem 2rem 2rem 2rem;
    font-size: 1.5rem;
    color: #0c1f48;
    transition: transform .5s, opacity .5s;
}

.accordion[open] div {
    transform: none;
    opacity: 1;
    font-size: 1.25rem;
}

/*------------------------------------------------------------------------------------------------
table
------------------------------------------------------------------------------------------------*/
table {
    color: #051730;
    margin-bottom: 2%;
    width: 100%;
    font-size: 1rem;
}

.table-width {
    width: 56%;
    float: left;
}

table img {
    width: 100%;
}

th {
    background-color: #ffce57;
    border: 1px solid #d0e4ff;
    width: 100%;
    vertical-align: middle;
    font-weight: bold;
}
td {
    border: 1px solid #0A274D;
    padding: 2% 10px 2% 10px;
    vertical-align: inherit;
    vertical-align: middle;
}

.textCenter {text-align: center;}

/*基本*/
#news_article table .td-style01 {
    background-color: #DDE8F7;
    border: 1px solid #0A274D;
}
/*アイテム名*/
#news_article table .td-style02 {
    background-color: #568FDB;
    border: 1px solid #0A274D;
    width: 15%;
    font-weight: 600;
    color: #fff;
    font-size: 1.1rem;
    text-align: center;
}

.announce_txt td {
    width: 100%;
}

.annouce_ttl {
    width: 70%;
}

.redttl {
    color: #FF4C4C;
    font-weight: 700;
    font-size: 1.25rem;
    text-align: center;
    width: 20%;
}

.bluettl {
    color: #051730;
    font-weight: 700;
    font-size: 1.25rem;
    text-align: center;
    width: 20%;
}

.redtxt {
    color: #FF4C4C;
    font-weight: 700;
    font-size: 1rem;
    text-align: center;
}

@media (max-width: 768px) {
    #news_article table .td-style02 {
    background-color: #568FDB;
    border: 1px solid #0A274D;
    width: 18%;
    font-weight: 600;
    color: #fff;
    font-size: 1rem;
    }
    td {
    border: 1px solid #0A274D;
    padding: 2% 10px 2% 10px;
    vertical-align: inherit;
    vertical-align: middle;
    }
    .annouce_ttl {
    width: 67.5%;
    }
    .redttl {
    color: #FF4C4C;
    font-weight: 700;
    font-size: 1rem;
    text-align: center;
    }
    .bluettl {
    color: #051730;
    font-weight: 700;
    font-size: 1rem;
    text-align: center;
    }
}

@media (max-width: 428px) {
    #news_article table .td-style02 {
    background-color: #568FDB;
    border: 1px solid #0A274D;
    width: 18%;
    font-weight: 600;
    color: #fff;
    font-size: 0.9rem;
    }
    td {
    border: 1px solid #0A274D;
    padding: 2% 10px 2% 10px;
    vertical-align: inherit;
    vertical-align: middle;
    font-size: 0.9rem;
    }
    .annouce_ttl {
    width: 58%;
    font-size: 0.9rem;
    }
    .redttl {
    color: #FF4C4C;
    font-weight: 700;
    font-size: 0.9rem;
    text-align: center;
    }
    .bluettl {
    color: #051730;
    font-weight: 700;
    font-size: 0.9rem;
    text-align: center;
    }
}

/*------------------------------------------------------------------------------------------------
table
------------------------------------------------------------------------------------------------*/


.news_header-wrap {
    position: relative;
    width: 100%;
}


@media (min-width: 769px) {
    .news_header-PC img {
    width: 100%;
    }
    .news_header-SP img {
    display: none;
    }
}

@media (max-width: 768px) {
    .news_header-PC {
    display: none;
    }
    .news_header-SP img {
    width: 100%;
    }
}

.news_header-content {
    position: absolute;
    top: 50%; /* 上端を垂直方向の中央に */
    left: 50%; /* 左端を水平方向の中央に */
    transform: translate(-50%, -50%); /* 要素自体を半分戻し、完全に中央寄せ */
    width: 90%; /* コンテンツの幅を親に対して設定 */
    max-width: 1000px; /* 必要に応じて最大幅を設定 */
    color: #fff;
    text-shadow: 0px 4px 5px rgba(0, 0, 0, 0.4);
    display: flex;
    flex-direction: column; /* 縦並び */
    align-items: flex-start; /* 左寄せ */
}

.news_header-ttl {
    font-size: 3vw; 
    line-height: 1.1;
    margin: 0; /* 不要なマージンをリセット */
}

.news_header-sbttl {
    font-size: 1vw;
    line-height: 1.3;
    margin-top: 0.5em; /* タイトルからの間隔 */
}

@media (max-width: 768px) {
    .news_header-ttl {
        font-size: 4vw; /* より小さくても読みやすいように大きく設定し直す */
    }
    .news_header-sbttl {
        font-size: 2vw;
    }
}

@media (max-width: 428px) {
    .news_header-ttl {
        font-size: 8vw; /* より小さくても読みやすいように大きく設定し直す */
    }
    .news_header-sbttl {
        font-size: 4vw;
    }
    .news_header-content {
    position: absolute;
    top: 50%; /* 上端を垂直方向の中央に */
    left: 50%; /* 左端を水平方向の中央に */
    transform: translate(-50%, -50%); /* 要素自体を半分戻し、完全に中央寄せ */
    width: 90%; /* コンテンツの幅を親に対して設定 */
    max-width: 350px; /* 必要に応じて最大幅を設定 */
    color: #fff;
    text-shadow: 0px 4px 5px rgba(0, 0, 0, 0.4);
    display: flex;
    flex-direction: column; /* 縦並び */
    align-items: flex-start; /* 左寄せ */
    }
}

.news_container {
    min-height: 100vh;
    padding: 0px 20px 0 20px;
}

.news_bigttl_bg {
    position: relative;
    z-index: 2;
    width: 70%;
    top: -50px;
    height: 60px;
    font-family: "Noto Serif JP", sans-serif;
    font-weight: 700;
}

.news_bigttl_bg span {
    position: absolute;
    z-index: 2;
    font-size: 36px;
    color: #fff;
    top: 18px;
    left: 170px;
}

.news_frame {
    position: absolute;
    right: -20px;
    top: -30px;
}

.news_frame-under {
    position: absolute;
    z-index: 99;
    transform: rotate(180deg);
    left: -20px;
    bottom: -30px;
}

.news-list {
    max-width: 1200px;
    padding: 0px 50px 30px 50px;
    margin: 0 auto;
    position: relative;
    background-color: #fff;
    box-shadow: 0px 5px 10px 2px rgba(0, 0, 0, 0.3);
}

.news-item {
    position: relative;
    height: 70px;
    border-bottom: 1px solid #C4C4C4;
    display: flex;
    align-items: center;
}

.news-item:last-child {
    border-bottom: none;
}

.category-badge {
    width: 100px;
    height: 30px;
    border-radius: 5px;
    color: white;
    font-weight: bold;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    flex-shrink: 0;
}

.category-badge.event {
    background-color: #dacd82;
}

.category-badge.mall {
    background-color: #ff87e1;
}

.category-badge.campaign {
    background-color: #ffb987;
}

.category-badge.maintenance {
    background-color: #8cdd95;
}

.category-badge.announcement {
    background-color: #54adf5;
}

.new-label {
    position: absolute;
    left: 121px;
    top: 17.5px;
    color: red;
    font-weight: bold;
    font-size: 10px;
    text-transform: uppercase;
    transform: translateX(-50%);
}

.news-content {
    flex: 1;
    margin-left: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-right: 20px;
}

.news-date {
    font-size: 20px;
    font-weight: normal;
    color: #051730;
    text-transform: uppercase;
    flex-shrink: 0;
    list-style: none;
}

.path {
    padding-top: 30px;
    margin: 10px 0 50px 0;
    display: flex;
    justify-content: flex-start;
    gap: 10px;
}

.path a {
    color: #051730;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .path {
        display: none;
    }
        .news_frame {
        display: none;
    }

    .news_frame-under {
        display: none;
    }
    .news_container {
        padding: 60px 8px 8px 8px;
    }
    .news-list {
    max-width: 1200px;
    padding: 0px 25px 30px 25px;
    margin: 0 auto;
    position: relative;
    background-color: #fff;
    box-shadow: 0px 5px 10px 2px rgba(0, 0, 0, 0.3);
    }
    .news_bigttl_bg {
        position: relative;
        z-index: 2;
        width: 100%;
        top: -25px;
        height: 60px;
        font-family: "Noto Serif JP", sans-serif;
        font-weight: 700;
    }
    .news_bigttl_bg img {
        height: 8vh;
    }
    .news_bigttl_bg span {
        position: absolute;
        z-index: 2;
        font-size: 28px;
        color: #fff;
        top: 10px;
        left: 115px;
    }
    .news-item {
        height: auto;
        min-height: 70px;
        flex-direction: column;
        align-items: flex-start;
        padding: 15px 0;
    }
    .category-badge {
        margin-bottom: 10px;
    }
    .new-label {
        left: 30px;
        top: 55px;
    }
    .news-content {
        margin-left: 0;
        flex-direction: column;
        align-items: flex-start;
        padding-right: 0;
        width: 100%;
    }
}

@media (max-width: 428px) {
    .path {
        display: none;
    }
    .news-list {
        padding: 0px 15px 30px 15px;;
    }
    .news_container {
        padding: 20px 8px 8px 8px;
    }
    .news_list {
    max-width: 1000px;
    }
    .news_bigttl_bg {
        position: relative;
        z-index: 2;
        width: 100%;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        text-align: center;
        height: 60px;
        font-family: "Noto Serif JP", sans-serif;
        font-weight: 700;
    }
    .news_bigttl_bg img {
        height: 7vh;
    }
    .news_bigttl_bg span {
        position: absolute;
        z-index: 2;
        font-size: 24px;
        color: #fff;
        top: 7px;
        right: 0;
        left: 0;
    }
    .news_frame {
        display: none;
    }
    .news_frame-under {
        display: none;
    }
    .news-item {
        height: auto;
        min-height: 70px;
        flex-direction: column;
        align-items: flex-start;
        padding: 15px 0;
    }
    .category-badge {
        margin-bottom: 10px;
    }
    .new-label {
        left: 30px;
        top: 55px;
    }
    .news-content {
        margin-left: 0;
        flex-direction: column;
        align-items: flex-start;
        padding-right: 0;
        width: 100%;
    }

    .category-badge {
    width: 80px;
    height: 25px;
    border-radius: 5px;
    color: white;
    font-weight: bold;
    font-size: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    }
}


.pagenation_wrap {
    width: 100%;
    display: flex;
    justify-content: center;
    padding-top: 50px;
}
.pagenation_wrap a {
    width: 100%;
    display: flex;
    justify-content: center;
    color: #FFF;
    text-decoration: none;
}

.news_prevpage-btn {
    background: #0A274D;
    color: white;
    font-family: inherit;
    padding: 0.35em;
    padding-right: 1.2em;
    font-size: 15px;
    font-weight: 500;
    border-radius: 0.9em;
    border: none;
    letter-spacing: 0.05em;
    display: flex;
    align-items: center;
    box-shadow: inset 0 0 1.6em -0.6em #154588;
    overflow: hidden;
    position: relative;
    height: 2.8em;
    padding-left: 3.3em;
    cursor: pointer;
}

.news_prevpage-btn .previcon {
    background: white;
    margin-right: 1em;
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 2.2em;
    width: 2.2em;
    border-radius: 0.7em;
    box-shadow: 0.1em 0.1em 0.6em 0.2em #0A274D;
    top: 5px;
    left: 0.3em;
    transition: all 0.3s;
    transform: rotate(180deg);
}

.news_prevpage-btn:hover .previcon {
    width: calc(100% - 0.6em);
}

.news_prevpage-btn .previcon svg {
    width: 1.1em;
    transition: transform 0.3s;
    color: #0A274D;
}

.news_prevpage-btn:hover .previcon svg {
    transform: translateX(0.1em);
}

@media (max-width: 428px) {
    .pagenation_wrap {
        width: 100%;
        display: flex;
        justify-content: center;
        padding-top: 0px;
    }

    .news_prevpage-btn {
        background: #0A274D;
        color: white;
        font-family: inherit;
        padding: 0.35em 1em 0.35em 3.5em;
        /* padding-right: 1.2em; */
        font-size: 15px;
        font-weight: 500;
        border-radius: 0.9em;
        border: none;
        letter-spacing: 0.05em;
        display: flex;
        align-items: center;
        box-shadow: inset 0 0 1.6em -0.6em #154588;
        overflow: hidden;
        position: relative;
        height: 2.8em;
        /* padding-left: 3.3em; */
        cursor: pointer;
    }

    .news_prevpage-btn .previcon {
        background: white;
        /* margin-left: 1em; */
        position: absolute;
        display: flex;
        align-items: center;
        justify-content: center;
        height: 2.2em;
        width: 2.4em;
        border-radius: 0.7em;
        box-shadow: 0.1em 0.1em 0.6em 0.2em #0A274D;
        right: 0.3em;
        transition: all 0.3s;
        transform: rotate(180deg);
    }

    .news_prevpage-btn:hover .previcon {
        width: calc(100% - 0.6em);
    }

    .news_prevpage-btn .previcon svg {
        width: 1.1em;
        transition: transform 0.3s;
        color: #0A274D;
    }

    .news_prevpage-btn:hover .previcon svg {
        transform: translateX(0.1em);
    }
}

/*------------------------------------------------------------------------------------------------
お知らせ見出し
------------------------------------------------------------------------------------------------*/
.news_txt p{
    margin: min(30 / 540 * 100vw, 30px) 0;
}

.news_txt a:hover{
    opacity: .5;
}

.news-title1 {
    box-sizing: border-box;
    font-size: 1.5rem;
    color: #fff;
    height: auto;
    min-height: 5rem;
    position: relative;
    left: -20px;
    z-index: 5;
    padding: 2.25rem 0rem 2rem 8rem;
    margin: 2rem -1vw 2rem 0;
    background-image: url(../images/notice/notice-title1.png);
    background-repeat: no-repeat;
    background-size: cover;
}

.news-title2 {
    box-sizing: border-box;
    font-size: 1.5rem;
    color: #69430D;
    height: auto;
    min-height: 5rem;
    position: relative;
    left: -20px;
    z-index: 5;
    padding: 1.25rem 0rem 1rem 8rem;
    margin: 2rem -1vw 2rem 0;
    background-image: url(../images/notice/notice-title2.png);
    background-repeat: no-repeat;
    background-size: cover;
}

.news-title3 {
	height: 3.1rem;
	margin: 3rem 0;
    padding-left: 0rem;
	color: #0c1f48;
	font-size: 1.25rem;
    position: relative;
    display: flex;
    align-items: center;
}

.news-title3::before {
    content: "";
    background-image: url(../images/notice/notice-title3.png);
    background-repeat: no-repeat;
    background-size: contain;
    width: 4.5%;
    height: 100%;
}

.pagenav {
	height: 2.2rem;
	margin: 3rem 0;
	color: #0c1f48;
	font-size: 1.25rem;
    position: relative;
    display: flex;
    align-items: center;
}

.pagenav::before {
    content: "";
    background-image: url(../images/notice/pagenav_icon.png);
    background-repeat: no-repeat;
    background-size: contain;
    width: 4%;
    height: 100%;
}

@media screen and (max-width: 768px) {
    .news-title1{
    box-sizing: border-box;
    padding-left: 125px;
    padding-top: 25px;
    line-height: 1.25;
    font-size: 1.5rem;
    color: #fff;
    height: auto;
    min-height: 5rem;
    position: relative;
    left: -20px;
    z-index: 5;
    padding: 2rem 1rem 2rem 8rem;
    margin: 2rem -2vw 1.5rem 0;
    background-image: url(../images/notice/notice-title1.png);
    background-repeat: no-repeat;
    background-size: cover;
    }
    .news-title2 {
    box-sizing: border-box;
    line-height: 1.25;
    font-size: 1.5rem;
    color: #69430D;
    height: auto;
    min-height: 5rem;
    padding: 1rem 0rem 1rem 10rem;
    margin: 0rem -2vw 1.5rem 0;
    background-image: url(../images/notice/notice-title2.png);
    background-repeat: no-repeat;
    background-size: cover;
    }
    .news-title3 {
	height: 3.1rem;
	margin: 0rem 0;
    padding-left: 0rem;
	color: #0c1f48;
	font-size: 1.25rem;
    position: relative;
    display: flex;
    align-items: center;
    }
.pagenav {
	height: 2.2rem;
	margin: 0rem 0;
	color: #0c1f48;
	font-size: 1.25rem;
    position: relative;
    display: flex;
    align-items: center;
    }
}

@media screen and (max-width: 428px) {
    .news-title {
    font-size: 1.8rem;
    color: #0c1f48;
    position: relative;
    z-index: 5;
    padding: 0px 0 0rem 0em;
    margin: 0rem 0;
    border-bottom: solid 1px #0c1f48;
    }
    .news-title1{
        box-sizing: border-box;
        font-size: 1.2rem;
        color: #fff;
        height: auto;
        min-height: 10rem;
        position: relative;
        left: -10px;
        z-index: 5;
        padding: 4rem 0.5rem 0rem 0.5rem;
        margin: 0rem -5vw 0px 0;
        background-image: url(../images/notice/notice-title1-SP.png);
        background-repeat: no-repeat;
        background-size: contain;
        background-position: center;
    }
    .news-title2 {
        box-sizing: border-box;
        font-size: 1.2rem;
        color: #69430D;
        width: 107.5%;
        padding: 2rem 10px 2rem 10px;
        margin: 0rem 0px 0 7px;
        background-image: url(../images/notice/notice-title2-SP.png);
        background-repeat: no-repeat;
        background-size: contain;
        background-position: center;
    }
    .news-title2::after {
        display: none;
    }
    .news-title3 {
        font-size: 1.4rem;
        margin: 2rem 0 0 0;
    }
    .pagenav {
        font-size: 1.2rem;
        margin: 2rem 0 2rem 0;
    }
    .news-title3::before {
    content: "";
    background-image: url(../images/notice/notice-title3.png);
    background-repeat: no-repeat;
    background-size: contain;
    width: 12%;
    height: 100%;
    }
    .pagenav::before {
    content: "";
    background-image: url(../images/notice/pagenav_icon.png);
    background-repeat: no-repeat;
    background-size: contain;
    width: 10%;
    height: 100%;
    }
}

@media screen and (max-width: 320px) {
    .news-title1{
        box-sizing: border-box;
        font-size: 1.5rem;
        color: #fff;
        height: auto;
        min-height: 10rem;
        position: relative;
        left: -10px;
        z-index: 5;
        padding: 3rem 1.5rem 0rem 1.5rem;
        margin: 1rem -5vw 0px 0;
        /* border-bottom: solid 1px #0c1f48; */
        background-image: url(../images/notice/notice-title1-SP.png);
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center;
    }
    .news-title2 {
        box-sizing: border-box;
        font-size: 1.5rem;
        color: #69430D;
        height: auto;
        min-height: 5rem;
        position: relative;
        left: -10px;
        z-index: 5;
        padding: 2rem 1rem 2rem 1rem;
        margin: 2rem -5vw 0 0;
        background-image: url(../images/notice/notice-title2-SP.png);
        background-repeat: no-repeat;
        background-size: cover;
    }
}