@charset "UTF-8";

.c-section__article-title {
	font-weight: 500;
}

.c-section__categories,
.c-section__tags,
.c-section__tag {
	display: flex;
	flex-wrap: wrap;
}

.c-section__tag:before {
	position: absolute;
	display: block;
	content: '';
}

.c-section__article-title,
.c-section__tag-text {
	transition: .3s;
	background: linear-gradient(transparent 50%, #eded6a 50%);
	background-repeat: no-repeat;
	background-position: left bottom;
	background-size: 0 90%;
}

.c-section__article-title:hover,
.c-section__tag-text:hover {
	background-size: 100% 90%;
}

/* utiliity
---------------------------------------- */

.u-pc-hide {
	display: none;
}

.u-sp-hide {
	display: block;
}

/* layout
---------------------------------------- */

.l-inner {
	position: relative;
	width: 100%;
	max-width: 1000px;
	margin: 0 auto;
}

/* component
---------------------------------------- */

/* reset
---------------------------------------- */

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
	margin: 0;
	padding: 0;
	border: 0;
}

article,
aside,
detail,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
	display: block;
}

ol,
ul {
	list-style: none;
}

blockquote,
q {
	quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
	content: '';
	content: none;
}

table {
	border-spacing: 0;
	border-collapse: collapse;
}

img {
	max-width: 100%;
	height: auto;
}

a {
	text-decoration: none;
}

a,
button {
	cursor: pointer;
	color: #333;
}

*,
*:before,
*:after {
	box-sizing: border-box;
}

input,
button,
textarea,
select {
	margin: 0;
	padding: 0;
	border: none;
	border-radius: 0;
	outline: none;
	background: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}

em {
	font-style: normal;
}

picture {
	display: block;
	overflow: hidden;
}

picture img {
	font-family: 'object-fit: cover; object-position: center;';
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
}

.c-section:first-child:before {
	content: none;
}

.c-section__body {
	overflow: hidden;
	margin-top: 30px;
}

.c-section__articles {
	position: relative;
	display: grid;
	width: 100%;
	padding: 20px 50px 20px 30px;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 20px;
}

.c-section__article {
	display: block;
	padding: 20px;
	transition: .3s;
	border-radius: 20px;
	background: #fff;
	filter: drop-shadow(0 0 12px rgba(0, 0, 0, .25));
	will-change: filter;
}

.c-section__article:hover {
	transform: translateY(3px);
	filter: drop-shadow(0 0 0 transparent);
}

.c-section__article:hover .c-section__article-picture > img {
	transform: scale(1.1);
}

.c-section__article:hover .c-section__article-title {
	background-size: 100% 90%;
}

.c-section__article-picture {
	aspect-ratio: 630/354;
}

.c-section__article-picture > img {
	transition: .6s;
}

.c-section__article-date {
	display: block;
	margin-top: .75em;
	color: #777;
}

.c-section__article-title {
	font-size: 1.625rem;
	line-height: 1.42307692;
	display: inline;
}

.c-section__categories {
	margin: 30px 0 0 -20px;
	padding: 0 50px;
}

.c-section__category {
	display: block;
	width: 160px;
	height: 160px;
	margin: 20px 0 0 20px;
	padding-top: 30px;
	transition: .3s;
	border-radius: 50%;
	background: #fff;
	filter: drop-shadow(0 0 12px rgba(0, 0, 0, .25));
	will-change: filter;
}

.c-section__category:hover {
	transform: translateY(3px);
	filter: drop-shadow(0 0 0 transparent);
}

.c-section__category-icon {
	display: block;
	width: 60px;
	height: 60px;
	margin: 0 auto;
}

.c-section__category-text {
	font-size: 1rem;
	line-height: 1.2;
	display: -webkit-box;
	overflow: hidden;
	margin-top: .5em;
	padding: 0 1em;
	text-align: center;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}

.c-section__tags {
	margin: 30px 0 0 -10px;
	padding: 0 50px;
}

.c-section__tag {
	position: relative;
	height: 50px;
	margin: 20px 0 0 30px;
	padding: .5em .75em;
	background: #fff;
	align-items: center;
}

.c-section__tag:before {
	top: 50%;
	left: 0;
	width: 20px;
	height: 50px;
	transform: translate(-100%, -50%);
	border-top: transparent 25px solid;
	border-right: #fff 20px solid;
	border-bottom: transparent 25px solid;
}

.c-section__tag-text {
	font-size: 1.25rem;
	z-index: 5;
}

.c-section__tag:hover .c-section__tag-text {
	background-size: 100% 90%;
}

.c-profile__body {
	display: grid;
	margin-top: 50px;
	padding: 0 50px;
	grid-template-columns: 1fr 6fr;
	gap: 40px;
}

.c-profile__picture {
	width: 300px;
	height: 300px;
	border-radius: 50%;
}

.c-profile__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 40px;
}

.c-profile__sub {
	font-size: 1.5rem;
	position: relative;
	display: block;
	margin-top: 1.5em;
}

.c-profile__list {
	display: grid;
	margin-top: 10px;
	grid-template-columns: 1fr 1fr;
	grid-auto-rows: 1rem;
	gap: 20px;
}

@media screen and (max-width: 1024px) {

.c-section__article-title {
	display: block;
}

}

@media screen and (max-width: 768px) {

.u-pc-hide {
	display: block;
}

.u-sp-hide {
	display: none;
}

.l-inner {
	max-width: 89.3333333333vw;
}

.c-section__body {
	margin-top: 4vw;
}

.c-section__articles {
	padding: 2.6666666667vw 6.6666666667vw 2.6666666667vw 4vw;
	grid-template-columns: 1fr;
	gap: 5.3333333333vw;
}

.c-section__article {
	padding: 5.3333333333vw;
	border-radius: 2.6666666667vw;
	filter: drop-shadow(0 0 2.6666666667vw rgba(0, 0, 0, .25));
}

.c-section__article-title {
	font-size: 1.3rem;
}

.c-section__categories {
	margin: 4vw 0 0 -5.3333333333vw;
	padding: 0 5.3333333333vw;
}

.c-section__category {
	width: 41.3333333333vw;
	height: 41.3333333333vw;
	margin: 5.3333333333vw 0 0 5.3333333333vw;
	padding-top: 5.3333333333vw;
}

.c-section__category-icon {
	width: 13.3333333333vw;
	height: 13.3333333333vw;
}

.c-section__tags {
	margin: 4vw 0 0 -1.3333333333vw;
	padding: 0 5.3333333333vw;
}

.c-section__tag {
	margin: 2.6666666667vw 4vw 0 4vw;
}

.c-section__tag-text {
	display: -webkit-box;
	overflow: hidden;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 1;
}

.c-profile__body {
	margin-top: 6.6666666667vw;
	padding: 0 5.3333333333vw;
	grid-template-columns: 1fr;
	gap: 5.3333333333vw;
}

.c-profile__picture {
	width: 40vw;
	height: 40vw;
}

.c-profile__grid {
	grid-template-columns: 1fr;
	gap: 5.3333333333vw;
}

.c-profile__list {
	margin-top: 1rem;
	gap: 2.6666666667vw;
}

}


/*# sourceMappingURL=maps/top.css.map */
