@charset "UTF-8";
.wrapper {
	padding-top: 100px;
}
@media screen and (max-width: 767px) {
	.wrapper {
		padding-top: 74px;
	}
}
.eria {
	padding: 50px 5%;
}
.eria__inner {
	max-width: 1100px;
	margin: 0 auto;
}
.eria h1 {
	display: flex;
	align-items: center;
	gap: 2px;
    font-size: 20px;
	font-weight: bold;
}
.eria h1 .eria__title-icon {
    width: 15px;
    min-width: 15px;
}
@media screen and (max-width: 767px) {
    .eria {
        padding: 20px 5% 0;
    }
    .eria h1 {
        gap: 2px;
        font-size: 16px;
    }
    .eria h1 .eria__title-icon {
        width: 15px;
        min-width: 15px;
    }
}
/* -------------------------------- */
.eria__list ul {
    margin-top: 10px;
}
.eria__list ul li a {
    display: block;
    padding: 20px 0;
    color: #333;
    border-bottom: 1px solid #EAEAEA;
}
.eria__list ul li a:hover {
    opacity: .5;
    transition: .3s;
}
.eria__list ul li a h3 {
    font-size: 22px;
    font-weight: bold;
}
.eria__content {
    display: flex;
    margin-top: 15px;
}
.eria__thumbnail {
    width: 120px;
    min-width: 120px;
}
.eria__thumbnail img {
    aspect-ratio: 1/1.168;
    object-fit: cover;
}
.eria__texts {
    width: 100%;
    padding-left: 22px;
}
.eria__texts p {
    line-height: 26px;
}
.eria__btn {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 200px;
    height: 40px;
    margin-top: 25px;
    background-color: #F36385;
    color: #fff;
    border-radius: 20px;
}
.eria__btn-icon {
	position: absolute;
	top: 50%;
	right: 10px;
	transform: translate(0,-50%);
	width: 6px;
}
@media screen and (max-width: 767px) {
    .eria__list ul {
        margin-top: 10px;
    }
    .eria__list ul li a {
        display: block;
        padding: 20px 0;
        color: #333;
        border-bottom: 1px solid #EAEAEA;
    }
    .eria__list ul li a:hover {
        opacity: .5;
        transition: .3s;
    }
    .eria__list ul li a h3 {
        font-size: 22px;
        font-weight: bold;
    }
    .eria__content {
        display: flex;
        margin-top: 15px;
    }
    .eria__thumbnail {
        width: 120px;
        min-width: 120px;
    }
    .eria__texts {
        width: 100%;
        padding-left: 22px;
    }
    .eria__texts p {
        line-height: 26px;
    }
    .eria__btn {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        max-width: 200px;
        height: 40px;
        margin-top: 25px;
        background-color: #F36385;
        color: #fff;
        border-radius: 20px;
    }
    .eria__btn-icon {
        position: absolute;
        top: 50%;
        right: 10px;
        transform: translate(0,-50%);
        width: 6px;
    }
}
/* -------------------------------- */
.eria__pagination {
    display: flex;
    justify-content: center;
    margin-top: 34px;
}
.eria__pagination ul {
    display: flex;
    gap: 8px;
}
.eria__pagination li a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
	font-family: 'Noto Sans JP', "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", system-ui, "Hiragino Sans", "Hiragino Kaku Gothic ProN", sans-serif;
    color: #333;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
}
.eria__pagination li a:hover {
    opacity: .5;
    transition: .3s;
}
.eria__pagination li a.active {
    background: #f46f91;
    color: #fff;
    border: none;
}
.eria__pagination .dots {
    display: flex;
    align-items: center;
    padding: 0 8px;
    color: #555;
}