@charset "UTF-8";

.c-section__more {
	font-family: 'Kiwi Maru', 'ヒラギノ明朝 ProN W3', 'Hiragino Mincho ProN', 'HG明朝E', 'ＭＳ Ｐ明朝', 'ＭＳ 明朝', serif;
}

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

.c-section__more > em {
	font: 0/0 a;
	color: transparent;
}

.c-section__more {
	display: flex;
	flex-wrap: wrap;
}

.c-section__more > em:after,
.c-section__more > em:before,
.c-section__more:before {
	position: absolute;
	display: block;
	content: '';
}

.c-section__more {
	position: relative;
	border: #333 1px solid;
	align-items: center;
	justify-content: center;
}

.c-section__more:before {
	top: 50%;
	left: 50%;
	width: 100%;
	height: 100%;
	transition: .3s;
	transform: translate(-50%, -50%);
	opacity: 0;
	border: #333 2px solid;
}

.c-section__more > span {
	position: relative;
	padding-right: .45454545em;
}

.c-section__more > em {
	position: relative;
	display: block;
	overflow: hidden;
	width: 1.625rem;
	height: 100%;
}

.c-section__more > em:before {
	top: 50%;
	right: 0;
	transition: .3s;
	transform: translate(0, -50%);
	background: url('../images/cmn/icn_arw_right.svg') center center/contain no-repeat;
}

.c-section__more > em:after {
	top: 50%;
	right: 0;
	transition: transform .3s ease-in-out;
	transform: translate(-200%, -50%);
	opacity: 0;
	background: url('../images/cmn/icn_arw_right.svg') center center/contain no-repeat;
}

.c-section__more:hover:before {
	opacity: 1;
}

.c-section__more:hover > em:before {
	transform: translate(200%, -50%);
}

.c-section__more:hover > em:after {
	transform: translate(0, -50%);
	opacity: 1;
}

.c-section__article-title {
	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 {
	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.is-hide {
	display: none;
}

.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__more {
	font-size: 1.375rem;
	width: 220px;
	height: 60px;
	margin: 60px auto 0 auto;
	border-radius: 30px;
}

.c-section__more:before {
	border-radius: 30px;
}

@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__more {
	width: 89.3333333333vw;
	height: 13.3333333333vw;
	margin-top: 8vw;
	border-radius: 6.6666666667vw;
}

.c-section__more:before {
	borde-radius: 6.6666666667vw;
}

}


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