@charset "utf-8";
/* CSS Document */

/*==== カテゴリータイトル ====*/

.category__title--wrap {
    width: 100%;
    padding: 0 1rem;
    text-align: center;
}
.category__title {
    width: 100%;
    margin: 0 auto;
    position: relative;
    padding-top: 5rem;
}
.category__title h3{
    font-size: 3rem;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 600;
    position: relative;
    display: inline-block;
    padding-bottom: 1rem;
    text-align: left;
}
.category__title h3::before{
    content: "";
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1rem;    
    background-color: #b2b2b2;
    z-index: -5;
}

/*==== コンテンツタイトル（mobile用にPICK UPのCSS流用） ====*/
.pick-up__title--wrap {
    width: 100%;
    padding: 0 1rem;
}
.pick-up__title {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto 2.2rem;
    padding-left: 2.2rem;
    position: relative;
}
.pick-up__title::before{
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 1.1rem;
    height: 100%;    
    background-color: #b2b2b2;
    z-index: -5;
}
.pick-up__title h3{
    font-size: 3.2rem;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 600;
}


/*==== 記事一覧(会員会社各ページ用) ====*/

.main__contents--wrap {
    width: 100%;
    max-width: 1220px;
    margin: 7rem auto 12rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}


/*==== 記事ブロック ====*/
.contents__click {
    text-decoration: none!important;
}
.main__contents--wrap article {
    width: 100%;
    max-width: 360px;
    margin-bottom: 8rem;
}
.description--wrap {
    width: 100%;
    display: flex;
    justify-content: space-between;
}
.description--wrap .description-company {
    font-size: 1.6rem;
    font-weight: 400;
    color: #333333;
}
.description--wrap .description-new {
    font-size: 2.5rem;
    font-family: 'Abril Fatface', cursive;
    color: #e60012;
    background-image: linear-gradient(
		70deg,
		#e60012 45%, /* font color */
		#FFF 50%,
		#e60012 55% /* font color */
	);
	background-size: 500% 100%;
	background-clip: text;
	-webkit-background-clip: text;
	color: transparent;
	animation: shine 4s infinite;
}
@keyframes shine {
	0% {
		background-position: 100% 50%;
	}
	50% {
		background-position: 0% 50%;
	}
    100% {
		background-position: 0% 50%;
	}
}

.contents-img--wrap {
    width: 100%;
    border: 1px solid #b2b2b2;
    position: relative;
    margin-top: .5rem;
}
.contents__company-name {
    width: 100%;
    max-width: 178px;
    margin: 0 0 0 auto;
    padding: .5rem;
    text-align: center;
    border: solid 2px #fff;
    position: absolute;
    z-index: 1;    
    right: 1rem;
    bottom: .5rem;
}
.contents__company-name::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.60);
    mix-blend-mode: darken;
    z-index: -1;
}
.contents__company-name p {
    color: #fff;
    font-size: 1.3rem;
    font-weight: 700;
}
.contents__company-long {
     max-width: 250px;
}

.contents__click>p {
    font-size: 1.4rem;
    font-weight: 500;
    color: #4d4d4d;
    margin-top: 1.3rem;
}
.contents__click .contents__article-title>p {
    transition: .3s;
}
.contents__click:hover .contents__article-title>p {
    color: #e60012;
} 
.contents__article-title {
    width: 100%;
    max-width: 360px;
    height: 97px;
    position: relative;
    margin-bottom: 2rem;
}
.contents__article-title::before {
    content: "";
    width: 10px;
    height: 100%;
    background-color: #f3f3f3;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -3;
}
.contents__article-title p{
    font-size: 2rem;
    font-weight: 500;
    line-height: 3rem;
}

.back-number__btn {
    position: relative;
    width: 100%;
    max-width: 360px;
    height: 36px;
    text-align: center;
    z-index: 5;
    overflow: hidden;
}
.back-number__btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    border: 1px solid #000;
    z-index: -1;
    transition: .7s;
}
.back-number__btn:hover::before {
    background-color: #b2b2b2;
}
.back-number__btn::after {
    content: "";
    position: absolute;
    top: 0;
    right: -70px;
    width: 95px;
    height: 100%;
    background-color: #fff;
    transform: skewX(50deg);
    border-left: 1.5px solid #000;
}
.back-number__btn a {
    text-decoration: none!important;
    font-size: 1.8rem;
    font-weight: 100;
    line-height: 3.2rem;
    display: block;
    width: 100%;
}
.back-number__btn a:hover {
    color: #fff;
}

/*====== pc版非表示 ======*/
.main__contents-menu--wrap {
    display: none;
}


/*=============== ブレイクポイント調整 ===============*/
@media screen and (min-width:540px) {
    
    .banner--container {
        width: 30%;
    }
    .main__container-wrap {
        padding-top: 1.5rem;
    }
    
    /*スライダー記事*/
    .pick-up__title {
        margin: 0 auto 1rem;
    }
    .pick-up__title h3 {
        font-size: 3rem;
    }
    
    /*記事一覧*/
    .main__contents--wrap {
        max-width: 1020px;
    }
    /*記事ブロック*/
    .main__contents--wrap article {
        max-width: 300px;
    }
    .contents__article-title {
        height: 85px;
    }
    .contents__article-title p {
        font-size: 1.8rem;
        line-height: 2.7rem;
    }
    .back-number__btn a {
        font-size: 1.6rem;
        line-height: 3.5rem;
    }
}
@media screen and (max-width:540px) {
    
    .banner--container {
        width: 30%;
    }
    .main__container-wrap {
        padding-top: 1.5rem;
    }
    
    /*スライダー記事*/
    .pick-up__title {
        margin: 0 auto 1rem;
    }
    .pick-up__title h3 {
        font-size: 3rem;
    }
    
    /*記事一覧*/
    .main__contents--wrap {
        max-width: 1020px;
    }
    /*記事ブロック*/
    .main__contents--wrap article {
        max-width: 300px;
    }
    .contents__article-title {
        height: 85px;
    }
    .contents__article-title p {
        font-size: 1.8rem;
        line-height: 2.7rem;
    }
    .back-number__btn a {
        font-size: 1.6rem;
        line-height: 3.5rem;
    }
}
/*========== iPad用cssは以下 ==========*/
@media screen and (max-width:1250px) {
    
    /*記事一覧*/
    .main__contents--wrap {
        max-width: 800px;
        padding: 0 1rem;
    }
}

@media screen and (max-width:800px) {
    
    /*広告バナー*/
    .banner--wrap {
        flex-wrap: wrap;
        max-width: 600px;
    }
    .banner--wrap a {
        margin-bottom: 1.5rem;
    }
    
    /*記事一覧*/
    .main__contents--wrap {
        max-width: 670px;
    }
    
    /*記事ブロック*/
    .main__contents--wrap article {
        max-width: 300px;
    }

}

@media screen and (max-width: 650px){
    
    /*広告バナー*/
    .banner--wrap a {
        display: block;
        width: 100%;
        max-width: 280px;
    }
    
    /*記事ブロック*/
    .main__contents--wrap article {
        max-width: 260px;
    }
    
}


/*========== mobile用cssは以下 ==========*/
@media screen and (max-width: 615px){
          
    
}
@media screen and (max-width: 540px){
    
    /*PICK UP*/
    .pick-up__title h3 {
        font-size: 2.7rem;
    }
    
    /*コンテンツメニュー*/
    .main__contents-menu--wrap {
        width: 100%;
        max-width: 380px;
        display: block;
        padding: 0 1rem;
        margin-top: 10rem;
    }
    .main__contents-menu--wrap .pick-up__title h3 {
        font-family: 'Noto Sans JP', sans-serif;
        font-weight: 600;
    }
    .main__contents-menu--wrap ul {
        width: 100%;
        display: flex;
        flex-wrap: wrap;
        margin-top: 2rem;
    }
    .main__contents-menu--wrap ul li {
        padding: .5rem .8rem;
        margin-right: .5rem;
        margin-bottom: .7rem;
        border: 1px solid #000;
    }
    
    .main__contents-menu--wrap ul li a {
        text-decoration: none!important;
    }
    
    /*記事一覧*/
    .main__contents--wrap {
        display: block;
        margin: 6rem auto 15rem;
    }
    
    /*記事ブロック*/
    .description--wrap .description-company {
        font-size: 1.4rem;
    }
    .main__contents--wrap article {
        margin-bottom: 5rem;
        max-width: 290px;
    }
    .main__contents--wrap article:nth-of-type(even) {
        margin: 0 0 5rem auto; 
    }
    .contents__article-title p {
        font-size: 1.8rem;
        line-height: 2.7rem;
    }
    .contents-img--wrap {
        margin-top: 0.2rem;
    }    
    .back-number__btn {
        overflow: inherit;
    }
    .back-number__btn::after {
        top: -0.7px;
        z-index: 5;
    }
    .back-number__btn a {
        font-size: 1.6rem;
    }
    
    /*三菱広報委員会会員会社リスト*/
    .company-list__title {
        max-width: 225px;
        margin: 0 auto 5rem;
    }
    .main__company-list--wrap {
        margin: 10rem auto;
        padding: 0 1rem;
    }
    .company-list__title h3 {
        font-size: 2rem;
    }
    .main__company-list--wrap ul {
        justify-content: space-around;
    }
    .main__company-list--wrap ul li {
        max-width: 32%;
        height: 4.5rem;
        border: 0.3px solid #888888;
    }
    .main__company-list--wrap ul li a {
        width: 100%;
        height: 100%;
        margin: 0 auto;
        border: none;
    }
    .main__company-list--wrap ul li a > img {
        width: 80%;
    }
    .main__company-list--wrap ul::after {
        display: none;
    }
    .main__company-list--wrap ul::before {
        display: none;
    }
}
@media screen and (max-width: 414px){
    
}
@media screen and (max-width: 375px){
    
}