
.content {
    max-width: 800px;
    margin: 0 auto;
    padding: 50px 15px 100px 15px;
}
.content-item {
    margin-bottom: 50px;
}


.title-item {
    margin-bottom: 50px;
}
.title-item .news-day {
    font-size: 20px;
    font-family: "quasimoda", sans-serif;
    font-weight: 700;
    font-style: normal;
    margin-bottom: 10px;
}


.news-tags {
    margin: 0 0 3px;
}
.news-tags p {
    font-size: 12px;
    padding: 2px 7px;
    margin: 3px 0px 3px 0;
    background-color: #000;
    color: white;
	display: flex;
    justify-content: center;
    align-items: center;
	text-align: center;
	display: inline-block;
    border-radius: 99px;
    transition: .3s;
}

.title-item .news-title {
    font-size: 27px;
    font-family: hiragino-kaku-gothic-pron, sans-serif;
    font-weight: 600;
    font-style: normal;
}

.content-item {
    font-size: 18px;
}
.content-item .news-contents a {
    font-family: hiragino-kaku-gothic-pron, sans-serif;
    font-weight: 600;
    transition: .3s;
}
.content-item .news-quote {
    background-color: #e0e0e0;
    color: #292929;
    margin: 20px 0;
    padding: 15px;
	border-radius: 15px;
}
.content-item .news-img_overall {
    margin: 50px 0;
    width: 100%;
	border-radius: 15px;
}
.content-item .news-img_small {
    margin: 50px 0;
    margin-right: 30px;
    width: 40%;
	border-radius: 15px;
}


.from-whom {
    margin-top: 70px;
    border: 
    1px solid #bababa;
    border-radius: 15px;
    padding: 15px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
}
.from-whom_inner {
    display: flex;
    height: 80px;
    align-items: center;
}
.from-whom_inner img {
    height: 100%;
    border-radius: 999px;
    margin-right: 25px;
}
.inner-text {
    display: flex;
    flex-direction: column;
}
.inner-text h3 {
    font-family: "NotoSans-JP_extrabold";
    font-weight: normal;
    font-size: 24px;
    padding-bottom: 5px;
}
.inner-text p {
    font-size: 16px;
    color: #3e3e3e;
}

.profile-link {
	position: relative;
    width: 170px;
}
.profile-link a {
    display: block;
    background-color: #000;
    border: 2px solid #000;
    font-size: 14px;
    padding: 7px 15px;
    border-radius: 999px;
    transition: .3s;
    color: #fff;
    font-family: hiragino-kaku-gothic-pron, sans-serif;
    font-weight: 600;
    font-style: normal;
}

.profile-link a::before {
    content: '';
    position: absolute;
    top: calc(50% - 10px);
    right: 10px;
    transform: translateY(calc(-50% - -8px)) rotate(45deg);
    right: 1.19em;
    width: 15px;
    height: 2px;
    background: white;
    transition: 0.3s;
    border-radius: 999px;
}
.profile-link a::after {
    content: '';
    position: absolute;
    top: calc(50% - 10px);
    right: 1.3em;
    transform: translateY(calc(-50% - -13px));
    width: 35px;
    height: 2px;
    background-color: white;
    transition: 0.3s;
    border-radius: 999px;
}







.content-source {
    margin-top: 20px;
    margin-right: 15px;
    font-size: 16px;
    color: #292929;
}
.content-source a {
    margin-right: 15px;
}



.cell-title::before {
    content: '■';
    color: #000;
    margin-right: 5px;
}
.cell-title {
    font-family: hiragino-kaku-gothic-pron, sans-serif;
    font-weight: 600;
}
.news-contents_link {
    color: #d605a8;
}


.back-btn {
    background-color: none;
    font-size: 15px;
    padding: 9px 20px;
    border-radius: 999px;
    border: 2px solid #000000;
    transition: .2s;
    color: #000000;
    font-family: "roboto_bold";
}



@media screen and (max-width: 767px){
    .content {
        padding-top: 20px;
    }

    .news-tags a {
        padding: 1px 6px;
        font-size: 10px;
    }

	.title-item .news-day {
        font-size: 15px;
        margin-bottom: 10px;
    }
    .title-item .news-title {
        font-size: 23px;
    }
    .content-item {
        font-size: 16px;
    }




    .from-whom {
        padding: 8px;
        flex-direction: column;
    }
    .from-whom_inner {
        width: 100%;
        display: flex;
        height: 70px;
        margin-bottom: 7px;
    }
    .from-whom_inner img {
        margin-right: 13px;
    }
    .inner-text h3 {
        font-size: 18px;
        padding-bottom: 5px;
    }
    .inner-text p {
        font-size: 12px;
    }

    .profile-link {
        width: 140px;
        margin: 0 auto;
    }
    .profile-link a {
        font-size: 12px;
        padding: 4px 12px;
    }
    .profile-link a::before {
        transform: translateY(calc(-50% - -9px)) rotate(45deg);
        width: 12px;
    }
    .profile-link a::after {
        width: 25px;
    }
}


@media (hover: hover) {
    .content-item .news-contents a:hover {
        opacity: 50%;
    }
    .news-contents_link:hover {
        text-decoration: underline;
    }
    .content-source a:hover {
        text-decoration: underline;
        cursor: pointer;
    }
    .back-btn:hover {
        background-color: #000000;
        border: 2px solid #000;
        color: #ffffff;
        cursor: pointer;
    }

    .profile-link a:hover {
        background-color: #fff;
        color: #000;
        cursor: pointer;
    }

    .profile-link a:hover::before {
        background-color: black;
    }
    .profile-link a:hover::after {
        background-color: black;
        width: 23px;
    }
}