.u-tx-main {
	color: #3C76B8;
}

.u-bg-main {
	background: #3C76B8;
}

.u-tx-w {
	color: #fff;
}

.u-bd {
	border: 2px solid #CDCDCD;
}

body {
	background: #F2F5F9;
	color: #222222;
	font-family: "Montserrat", "Noto Sans JP", sans-serif;
	font-size: 16px;
	font-weight: bold;
	letter-spacing: 0.04em;
	line-height: 1.5;
}

.c-wrap1080 {
	margin-inline: auto;
	max-width: calc(1080px + 80px);
	padding-inline: 40px;
	width: 100%;
}

.c-wrap1280 {
	margin-inline: auto;
	max-width: calc(1280px + 80px);
	padding-inline: 40px;
	width: 100%;
}

/* c-card */

.c-card {
	position: relative;
	width: 100%;
}

.c-card__cards {
	display: flex;
	flex-direction: column;
	gap: 60px;
}

.c-card__label {
	left: -14px;
	position: absolute;
	top: 22px;
	z-index: 10;
}

.c-card__label::before,
.c-card__label::after {
	content: "";
	position: absolute;
	right: 0;
	transform: translateX(98%);
}

.c-card__label::before {
	border-bottom: 27px solid transparent;
	border-left: 18px solid #3C76B8;
	border-right: 0 solid transparent;
	border-top: 0 solid transparent;
	top: 0;
}

.c-card__label::after {
	border-bottom: 0 solid transparent;
	border-left: 18px solid #3C76B8;
	border-right: 0 solid transparent;
	border-top: 27px solid transparent;
	bottom: 0;
}

.c-card__label-wrap {
	padding: 4px 24px;
}

.c-card__label-cat {
	font-size: 32px;
}

.c-card__inner {
	background: #fff;
	border-radius: 16px;
	display: flex;
	flex-direction: column;
	font-family: "Noto Sans JP", sans-serif;
	overflow: hidden;
}

.c-card__inner.--aside-latest {
	border-radius: 0px;
}

.c-card__thumb {
	aspect-ratio: 16/9;
	overflow: hidden;
	width: 100%;
}

.c-card__thumb img {
	height: 100%;
	width: 100%;
	-o-object-fit: cover;
	object-fit: cover;
	-o-object-position: center;
	object-position: center;
}

.c-card__body {
	display: flex;
	flex-direction: column;
	gap: 30px;
	padding: 32px 32px 24px;
}

.c-card__body.--aside-latest {
	padding: 20px 0;
}

.c-card__title {
	font-size: 32px;
}

.c-card__title.--aside-latest {
	font-size: 28px;
	font-weight: 700;
	letter-spacing: 1.12px;
	line-height: 150%;
}

.c-card__time {
	color: #616161;
	font-size: 28px;
	font-weight: 500;
	text-align: right;
	width: 100%;
}

/* c-pagination */

.c-pagination {
	display: flex;
	justify-content: center;
	margin: 0 auto;
	max-width: 516px;
	position: relative;
	width: 100%;
}

.c-pagination__arrow {
	left: 0;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
}

.c-pagination__arrow a {
	aspect-ratio: 1/1;
	display: block;
	width: 48px;
}

.c-pagination__arrow.--next {
	left: auto;
	right: 0;
}

.c-pagination__arrow.--next img {
	transform: scale(-1, 1);
}

.c-pagination__wrap {
	display: flex;
	gap: 20px;
	justify-content: center;
}

.c-pagination__ciecle {
	align-items: center;
	aspect-ratio: 1/1;
	border-radius: 200px;
	display: flex;
	font-size: 32px;
	justify-content: center;
	width: 60px;
}

.c-pagination__ciecle.is-current {
	background: #3C76B8;
	color: #fff;
}

.header {
	background: #fff;
	border-bottom: 2px solid #CDCDCD;
	display: flex;
	justify-content: center;
	left: 0;
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 999;
}

.header__inner {
	align-items: center;
	display: flex;
	justify-content: space-between;
	padding-block: 27px;
	width: 100%;
}

.header__logo {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.header__logo-title {
	font-size: 24px;
}

.header__logo-img {
	width: 175px;
}

.header__icon {
	align-items: center;
	aspect-ratio: 1/1;
	border-radius: 200px;
	cursor: pointer;
	display: flex;
	flex-direction: column;
	gap: 10px;
	justify-content: center;
	width: 92px;
}

.header__icon span {
	background: #fff;
	border-radius: 4px;
	display: block;
	height: 4px;
	transition: 0.3s;
	width: 44px;
}

.header__icon.--open span {
	position: absolute;
}

.header__icon.--open span:nth-child(1) {
	transform: rotate(45deg);
}

.header__icon.--open span:nth-child(2) {
	opacity: 0;
}

.header__icon.--open span:nth-child(3) {
	transform: rotate(-45deg);
}

.header__content {
	display: none;
}

.header__nav-list {
	display: flex;
	gap: 15px;
}

.header__nav-list span {
	background: #CDCDCD;
	display: inline-block;
	height: 19px;
	width: 2px;
}

.header__nav-list span:last-child {
	display: none;
}

.header__nav-cat {
	font-size: 20px;
	font-weight: 700;
	letter-spacing: 0.8px;
	line-height: normal;
}

.drawer {
	background: #fff;
	left: 0;
	min-height: 100dvh;
	opacity: 0;
	padding: 230px 80px 80px;
	pointer-events: none;
	position: fixed;
	top: 0;
	transition: 0.3s;
	width: 100%;
	z-index: 90;
}

.drawer.--open {
	opacity: 1;
	pointer-events: all;
}

.drawer__container {
	display: flex;
	flex-direction: column;
	gap: 80px;
}

.l-main-container {
	display: flex;
	flex-direction: column;
	gap: 100px;
	margin-top: 243px;
	width: 100%;
}

.l-archive {
	display: flex;
	flex-direction: column;
	gap: 50px;
	max-width: 800px;
	padding-inline: 40px;
	width: 100%;
}

.l-archive__title {
	font-size: 58px;
}

.c-search-box {
	display: flex;
	width: 100%;
}

.c-search-box__input {
	background: #fff;
	border: 2px solid #1F73D2;
	border-radius: 50px 0 0 50px;
	font-size: 32px;
	font-weight: 500;
	line-height: normal;
	outline: none;
	padding: 16px 34px;
	width: 100%;
	width: 100%;
}

.c-search-box__button {
	align-items: center;
	border: 2px solid #1F73D2;
	border-radius: 0 50px 50px 0;
	display: flex;
	flex-shrink: 0;
	justify-content: center;
	padding: 0 30px 0 14px;
}

.c-search-box__icon {
	aspect-ratio: 1/1;
}

/* aside */

.aside {
	padding-bottom: 100px;
	padding-inline: 40px;
}

.aside__items {
	display: flex;
	flex-direction: column;
	gap: 48px;
	justify-content: start;
}

.aside__title {
	font-size: 40px;
	font-weight: 700;
	letter-spacing: 1.6px;
	line-height: 180%;
}

.aside__cats {
	background: #FFF;
	border-radius: 16px;
	padding: 24px 24px 40px;
}

.aside__cats-lists {
	display: flex;
	flex-direction: column;
	gap: 17px;
}

.aside__cats-list {
	border-bottom: 2px solid #CDCDCD;
	display: flex;
	font-size: 32px;
	font-weight: 500;
	letter-spacing: 1.28px;
	line-height: normal;
	padding: 14px 18px 14px 44px;
	position: relative;
	width: 100%;
}

.aside__cats-list::before {
	aspect-ratio: 1/1;
	background: #3C76B8;
	border-radius: 100px;
	content: "";
	left: 18px;
	position: absolute;
	top: 29px;
	width: 12px;
}

.aside__rank {
	background: #FFF;
	border-radius: 16px;
	display: flex;
	flex-direction: column;
	gap: 32px;
	padding: 32px 40px;
}

.aside__rank-thumb {
	aspect-ratio: 16/9;
	width: 100%;
}

.aside__rank-thumb img {
	height: 100%;
	width: 100%;
	-o-object-fit: cover;
	object-fit: cover;
	-o-object-position: center;
	object-position: center;
}

.aside__rank-body {
	align-items: start;
	display: flex;
	gap: 20px;
	padding: 20px 0;
}

.aside__rank-circle {
	align-items: center;
	aspect-ratio: 1/1;
	border: 2px solid #FFF;
	border-radius: 100%;
	display: flex;
	flex-shrink: 0;
	justify-content: center;
	position: relative;
	width: 61px;
	z-index: 0;
}

.aside__rank-circle::after {
	aspect-ratio: 1/1;
	border: 2px solid #FFF;
	border-radius: 100%;
	content: "";
	left: 50%;
	position: absolute;
	top: 50%;
	transform: translate(-50%, -50%);
	width: calc(100% - 2px);
	z-index: 1;
}

.aside__rank-circle.--fir {
	background: #E6C200;
}

.aside__rank-circle.--sec {
	background: #C0C0C0;
}

.aside__rank-circle.--tha {
	background: #CD7F32;
}

.aside__rank-num {
	color: #fff;
	font-size: 36px;
	line-height: 1;
	position: relative;
	z-index: 0;
}

.aside__rank-title {
	font-size: 28px;
	font-weight: 700;
	letter-spacing: 1.12px;
	line-height: 150%;
}

.aside__latest {
	background: #FFF;
	border-radius: 8px;
	display: flex;
	flex-direction: column;
	gap: 32px;
	padding: 32px 40px;
}

/* entry */

.entry {
	background: #FFF;
	border-radius: 16px;
	padding: 100px 40px;
}

.entry__head {
	border-bottom: 2px solid #CDCDCD;
	padding-bottom: 56px;
}

.entry__thumb {
	width: 100%;
}

.entry__head-meta {
	align-items: center;
	display: flex;
	justify-content: space-between;
	margin-top: 40px;
}

.entry__time {
	font-size: 28px;
	font-weight: 500;
	letter-spacing: 1.12px;
	line-height: 150%;
}

.entry__cat {
	background: #3C76B8;
	border: 2px solid #3C76B8;
	border-radius: 38px;
	padding: 8px 42px;
}

.entry__cat-text {
	font-size: 28px;
	font-weight: 700;
	letter-spacing: 1.12px;
	line-height: 100%;
}

.entry__title {
	font-size: 44px;
	font-weight: 700;
	letter-spacing: 1.76px;
	line-height: 150%;
	margin-top: 16px;
}

.entry__shares {
	align-items: center;
	display: flex;
	gap: 30px;
	justify-content: end;
	margin-top: 16px;
}

.entry__shares-button {
	align-items: center;
	aspect-ratio: 1/1;
	display: flex;
	justify-content: center;
	width: 60px;
}

.entry__content {
	border-bottom: 2px solid #CDCDCD;
	font-family: "Noto Sans JP", sans-serif;
	margin-top: 74px;
	padding-bottom: 140px;
}

.entry__content h2 {
	font-size: 40px;
	font-weight: 700;
	letter-spacing: 1.6px;
	line-height: 150%;
	margin-top: 100px;
	padding-left: 36px;
	position: relative;
}

.entry__content h2:first-of-type {
	margin-top: 0;
}

.entry__content h2::before {
	background: #3C76B8;
	content: "";
	height: 100%;
	left: 0;
	position: absolute;
	top: 0;
	width: 16px;
}

.entry__content h3 {
	font-size: 36px;
	font-weight: 700;
	letter-spacing: 1.44px;
	line-height: 150%;
	margin-top: 64px;
}

.entry__content p,
.entry__content li {
	font-size: 28px;
	font-weight: 400;
	letter-spacing: 1.12px;
	line-height: 150%;
	margin-top: 40px;
}

.entry__content li {
	margin-top: 10px;
}

.entry__content ul {
	list-style-type: disc;
	margin-top: 30px;
	padding-left: 2em;
}

.entry__pagination {
	align-items: center;
	border-bottom: 2px solid #CDCDCD;
	display: flex;
	flex-direction: column;
	gap: 70px;
	margin-top: 60px;
	padding-bottom: 100px;
}

.entry__pagination-links {
	display: flex;
	flex-direction: column;
	gap: 44px;
	width: 100%;
}

.entry__pagination-link {
	align-items: center;
	display: flex;
	gap: 10px;
}

.entry__pagination-link.--next {
	margin-left: auto;
}

.entry__pagination-icon {
	aspect-ratio: 1/1;
	display: block;
	flex-shrink: 0;
	width: 50px;
}

.entry__pagination-icon.--next {
	transform: scale(-1, 1);
}

.entry__pagination-text {
	font-size: 28px;
	font-weight: 700;
	letter-spacing: 1.12px;
	line-height: 150%;
}

.entry__button {
	border-radius: 8px;
	font-size: 32px;
	font-weight: 700;
	letter-spacing: 1.28px;
	line-height: 150%;
	padding: 12px 70px;
}

.entry__related {
	display: flex;
	flex-direction: column;
	gap: 60px;
	margin-top: 100px;
}

.entry__related-title {
	font-size: 50px;
	font-weight: 700;
}

.footer {
	align-items: center;
	background: #FFF;
	border-top: 1px solid #CDCDCD;
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 50px 0;
	width: 100%;
}

.footer__copy {
	color: #616161;
	font-size: 24px;
	font-weight: 500;
	text-align: center;
}

.s-sp {
	display: block;
}

.s-pc {
	display: none;
}

.s-of-hidden {
	overflow: hidden;
	position: relative;
}

.inview {
	opacity: 0;
	transition: 1.5s;
}

.inview.fade-up {
	transform: translateY(20px);
}

.inview.fade-up.--xy50 {
	transform: translate(-50%, calc(-50% + 20px));
}

.inview.fade-down {
	transform: translateY(-20px);
}

.inview.fade-left {
	transform: translateX(20px);
}

.inview.fade-right {
	transform: translateX(-20px);
}

.inview.is-show {
	opacity: 1;
	transform: translate(0px);
}

.inview.is-show.--xy50 {
	transform: translate(-50%, -50%);
}

a {
	transition: 0.3s;
}

a:hover {
	opacity: 0.6 !important;
}

@media screen and (min-width: 1080px) {

.c-card {
	width: calc((100% - 48px) / 3);
}

.c-card.--aside-latest {
	width: 100%;
}

.c-card__cards {
	flex-direction: row;
	flex-wrap: wrap;
	gap: 24px;
}

.c-card__label {
	left: -7px;
	top: 12px;
}

.c-card__label::before {
	border-bottom: 14px solid transparent;
	border-left: 9px solid #3C76B8;
}

.c-card__label::after {
	border-left: 9px solid #3C76B8;
	border-top: 14px solid transparent;
}

.c-card__label-wrap {
	padding: 2px 13px 2px 10px;
}

.c-card__label-cat {
	font-size: 16px;
}

.c-card__label-cat.--aside-latest {
	font-size: 14px;
}

.c-card__inner {
	border-radius: 8px;
}

.c-card__body {
	gap: 16px;
	padding: 14px;
}

.c-card__body.--aside-latest {
	padding: 10px 0;
}

.c-card__title {
	font-size: 16px;
}

.c-card__title.--aside-latest {
	font-size: 14px;
	letter-spacing: 0.56px;
}

.c-card__time {
	font-size: 14px;
	letter-spacing: 0.56px;
}

.c-pagination {
	max-width: 360px;
}

.c-pagination__arrow a {
	width: 24px;
}

.c-pagination__wrap {
	gap: 10px;
}

.c-pagination__ciecle {
	width: 37px;
}

.c-pagination__num {
	font-size: 20px;
}

.header__inner {
	max-width: 1280px;
	padding-block: 15px;
}

.header__logo {
	gap: 0;
}

.header__logo-title {
	font-size: 20px;
}

.header__logo-img {
	width: 120px;
}

.header__icon {
	display: none;
}

.header__content {
	align-items: end;
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.l-main-container {
	align-items: start;
	flex-direction: row;
	gap: 50px;
	margin-top: 188px;
}

.l-archive {
	gap: 30px;
	padding: 0;
}

.l-archive__title {
	font-size: 40px;
}

.c-search-box {
	width: 335px;
}

.c-search-box__input {
	font-size: 16px;
	padding: 8px 17px;
}

.c-search-box__button {
	padding: 0 13px 0 5px;
}

.c-search-box__icon {
	width: 22px;
}

.aside {
	flex-shrink: 0;
	padding-inline: 0px;
	width: 230px;
}

.aside__items {
	gap: 22px;
}

.aside__search {
	display: none;
}

.aside__title {
	font-size: 20px;
	letter-spacing: 0.8px;
}

.aside__cats {
	border-radius: 8px;
	padding: 12px 12px 20px;
}

.aside__cats-lists {
	gap: 10px;
}

.aside__cats-list {
	border-bottom: 1px solid #CDCDCD;
	font-size: 16px;
	letter-spacing: 0.64px;
	padding: 7px 9px 7px 22px;
}

.aside__cats-list::before {
	left: 9px;
	top: 15px;
	width: 6px;
}

.aside__rank {
	border-radius: 8px;
	gap: 16px;
	padding: 16px 20px;
}

.aside__rank-body {
	gap: 5px;
	padding: 10px 0;
}

.aside__rank-circle {
	width: 33px;
}

.aside__rank-circle::after {
	border: 1px solid #FFF;
}

.aside__rank-num {
	font-size: 18px;
}

.aside__rank-title {
	font-size: 14px;
	letter-spacing: 0.56px;
}

.aside__latest {
	gap: 16px;
	padding: 16px 20px;
}

.entry {
	padding: 50px;
}

.entry__head {
	border-bottom: 1px solid #CDCDCD;
	padding-bottom: 39px;
}

.entry__head-meta {
	margin-top: 32px;
}

.entry__time {
	font-size: 22px;
	letter-spacing: 0.88px;
}

.entry__cat {
	border-radius: 19px;
	padding: 4px 21px;
}

.entry__cat-text {
	font-size: 16px;
	letter-spacing: 0.64px;
}

.entry__title {
	font-size: 32px;
	letter-spacing: 1.28px;
	margin-top: 11px;
}

.entry__shares {
	gap: 15px;
	margin-top: 8px;
}

.entry__shares-button {
	width: 30px;
}

.entry__content {
	border-bottom: 1px solid #CDCDCD;
	margin-top: 49px;
	padding-bottom: 70px;
}

.entry__content h2 {
	font-size: 24px;
	letter-spacing: 0.96px;
	margin-top: 70px;
	padding-left: 18px;
}

.entry__content h2::before {
	width: 8px;
}

.entry__content h3 {
	font-size: 18px;
	letter-spacing: 0.72px;
	margin-top: 34px;
}

.entry__content p,
.entry__content li {
	font-size: 16px;
	letter-spacing: 0.64px;
	margin-top: 19px;
}

.entry__content li {
	margin-top: 0;
}

.entry__content ul {
	margin-top: 24px;
}

.entry__pagination {
	gap: 33px;
	margin-top: 31px;
	padding-bottom: 49px;
}

.entry__pagination-links {
	gap: 21px;
}

.entry__pagination-icon {
	width: 22px;
}

.entry__pagination-text {
	font-size: 16px;
	letter-spacing: 0.64px;
}

.entry__button {
	border-radius: 4px;
	font-size: 16px;
	letter-spacing: 0.64px;
	padding: 6px 35px;
}

.entry__related {
	gap: 25px;
	margin-top: 46px;
}

.entry__related-title {
	font-size: 32px;
}

.footer {
	padding: 24px;
}

.footer__copy {
	font-size: 14px;
}

}

@media screen and (min-width: 1280px) {

.s-sp {
	display: none;
}

.s-pc {
	display: block;
}

}

