@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap");

/* ----------------------------------------
   layout
---------------------------------------- */
body {
    min-width: 100%;
}

.e-footer {
    width: 100%;

}

/* ----------------------------------------
   p-head
---------------------------------------- */
.p-head {
    margin-bottom: 50px;
}

.p-head__ttl {
    position: relative;
    font-weight: bold;
    text-align: center;
    font-size: 4.8rem;
}

@media (max-width: 767px) {
    .p-head__ttl {
        font-size: 3.6rem;
    }
}

.p-head__ttl::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -15px;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #CB2D3E 0%, #F16225 100%);
}

.p-head__ttl-txt {
    display: block;
    font-weight: bold;
    text-align: center;
    margin-top: 30px;
}

/* ----------------------------------------
   news
---------------------------------------- */
.p-news {
    padding: 50px 0 200px;
}

@media (max-width: 767px) {
    .p-news {
        padding-bottom: 150px;
    }
}

/* ----------------------------------------
   news list
---------------------------------------- */
.p-news-list {
    max-width: 720px;
    margin: 0 auto;
    list-style: none;
}

.p-news-list__link {
    position: relative;
    display: block;
    background-color: #fff;
    padding: 20px 0;
}

.p-news-list__link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background: gray;
    transition: 0.3s;
}

.p-news-list__link:hover::after {
    background: linear-gradient(90deg, #CB2D3E 0%, #F16225 100%);s
}

.p-news-list__date {
    background: linear-gradient(90deg, #D3071D 0%, #EF473A 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: rgba(0, 0, 0, 0) !important;
    display: inline-block;
    margin-bottom: 5px;
}

@media (max-width: 767px) {
    .p-news-list__date {
        font-size: 1.4rem;
    }
}

.p-news-list__link p {
    margin: 0;
}

/* ----------------------------------------
   news post
---------------------------------------- */
.p-news-post {
    max-width: 720px;
    margin: 0 auto;
}

.p-news-post__date {
    display: block;
    margin-bottom: 10px;
}

.p-news-post__ttl {
    font-weight: bold;
    background: linear-gradient(90deg, #D3071D 0%, #EF473A 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: rgba(0, 0, 0, 0) !important;
}


.p-news-post__body {
    margin-top: 50px;
}

.p-news-post__btn {
    width: 230px;
    margin: 100px auto 0;
}

.p-news-post__btn-link {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 48px;
    background: linear-gradient(90deg, #CB2D3E 0%, #F16225 100%);
    border-radius: 8px;
    color: #fff !important;
    font-weight: 800;
    font-size: 1.3rem;
    letter-spacing: 0.1em !important;
    position: relative;
    cursor: pointer;
}

.p-news-post__btn-link::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    left: 25px;
    width: 10px;
    height: 13px;
    background: url(../../images/lp/i_arrow_r_wh.svg) no-repeat center center;
    background-size: contain;
    transform: rotate(180deg);
}

.wysiwyg a {
    background: linear-gradient(90deg, #D3071D 0%, #EF473A 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: rgba(0, 0, 0, 0) !important;
    text-decoration: underline;
}