/* topMV
----------------------------------------------*/
#top-MV{
margin-top: 8rem;
width: 100%;
position: relative;
}
#top-MV p{
color: #fff;
font-size: 2.5rem;
line-height: 1.8;
text-align: center;
padding-top: 0;
font-weight: bold;
text-shadow: rgba(0, 0, 0, 1) 3px 0 6px;
text-align: center;
width: 80%;
position: absolute;
top: 50%;
left: 50%;
transform: translateY(-50%) translateX(-50%);
}

/* heading */
h2{
    font-size: 3rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 3.5rem;
}
section {
    padding: 4rem 0;
    width: 100%;
    height: auto;
}
/* News
----------------------------------------------*/

#top-news span{
    display: block;
    font-size: 1.6rem;
    color: var(--main-color);
    text-align: center;
}
.news-list {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 4rem;
    border-top: 1px solid #ccc;
}
.news-list li {
    width: 100%;
    border-bottom: 1px solid #ccc;
}
.news-list li a{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    width: 100%;
    padding: 2rem 0;
    cursor: pointer;
}
.news-list li a:hover{
    background-color: var(--base-color);
}
.news-data{
    width: 40%;
    font-weight: bold;
    padding-right: 8rem;
    text-align: right;
    color: var(--main-color);
}
.news-title{
    width: 60%;
    position: relative;
}
.news-title::after{
    content: '';
    width: 10px;
    height: 10px;
    border-top: solid 3px var(--main-color);
    border-right: solid 3px var(--main-color);
    position: absolute;
    right: 0px;
    top: 5px;
    transform: rotate(45deg);
}

/* more btn */

.more_btn{
    width: 100px;
    color: #fff;
    background-color: var(--main-color);
    border: 2px solid var(--main-color);
    text-align: center;
    padding: 0.5rem 1rem;
    font-size: 1.2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    transition: all 0.2s;
    cursor: pointer;
}
.more_btn:hover{
    opacity: 0.6;
}



/* Section top index
----------------------------------------------*/
/* Section heading */
h2 span{
    display: block;
    max-width: 146px;
    width: 100%;
    margin: 0 auto;
    padding-bottom: 2rem;
}
h2 i{
    display: inline-block;
    font-size: 4rem;
    font-weight: bold;
    margin-right: 0.5rem;
    color: var(--main-color);
}
.top-indexList{
    display: flex;
    justify-content: center;
    align-items: stretch;
    flex-wrap: wrap;
    gap: 20px 20px;
}
.top-indexList li{
    max-width: calc(100% / 2 - 20px);
    flex-grow: 1;
    line-height: 1.5;
    background-color: #Fff;
    border: 1px solid var(--main-color);
    box-shadow: rgba(0, 0, 0, 0.16) 3px 0 10px;
}
.top-indexList li a{
    transition: all 0.2s;
    cursor: pointer;
}
.top-indexList li a:hover{
    opacity: 0.6;
}

.top-indexList h3{
    background-color: var(--main-color);
    color: #fff;
    font-weight: bold;
    text-align: center;
    padding: 1rem 0;
    font-size: 1.8rem;
}
.top-indexList p{
    padding: 2rem;
    background-color: #fff;
}
@media screen and (max-width: 1024px) {
/* MV
-------------------*/
#top-MV{
margin-top: 0;
}

#top-MV p{
font-size: 1.6rem;
width: 100%;
padding: 0 20px;
}

.news-list li a:hover{
    background-color: #fff;
}
.more_btn:hover{
    opacity: 1;
}

/* Section top index
-------------------*/
h2 span{
    max-width: 130px;
}
h2 i{
    font-size: 3rem;
}
.top-indexList li a:hover{
    opacity: 1;
}
}

@media screen and (max-width: 600px) {
h2 {
    font-size: 2.5rem;
}
/* News
-------------------*/
.news-list{
    margin-bottom: 4rem;
    }
.news-list li a{
    flex-direction: column;
}
.news-data{
    width: 100%;
    text-align: left;
    padding-right: 0;
}
.news-title{
    width: 100%;
}
.news-title::after{
    top: -5px;
}

/* Section top index
-------------------*/
.top-indexList{
    width: 100%;
}

.top-indexList li{
    width: 100%;
    max-width: 600px;
}
}