/* note */

.note__buttons {
	border-bottom: 2px solid #000;
	border-top: 2px solid #000;
	display: flex;
}

.note__buttons::before,
.note__buttons::after {
	display: none;
}

.note__button {
	align-items: center;
	color: #fff;
	display: flex;
	font-size: 20px;
	justify-content: space-between;
	padding: 8px 17px 7px 40px;
	transition: 0.3s;
	width: 50%;
}

.note__button:hover {
	background: #fff;
	color: #486061;
}

.note__button:hover .note__button-icon {
	background: #fff;
}

.note__button:hover .note__button-icon__inner {
	background: #486061;
}

.note__button:hover .note__button-icon__inner path {
	fill: #fff;
}

.note__button + .note__button {
	border-left: 1px solid #000;
}

.note__button-icon {
	align-items: center;
	aspect-ratio: 1/1;
	border-radius: 100px;
	display: flex;
	justify-content: center;
	right: 14px;
	top: 13px;
	transition: 0.3s;
	width: 25px;
	z-index: 3;
}

.note__button-icon.--down {
	transform: rotate(180deg);
}

.note__button-icon.--prev {
	transform: rotate(-90deg);
}

.note__button-icon.--next {
	transform: rotate(90deg);
}

.note__button-icon__inner {
	align-items: center;
	aspect-ratio: 1/1;
	background: #fff;
	border-radius: 100px;
	display: flex;
	justify-content: center;
	position: relative;
	transition: 0.3s;
	transition: 0.3s;
	width: 19px;
}

.note__button-icon__inner svg {
	display: block;
	width: 13px;
}

.note__button-icon__inner svg path {
	display: block;
	transition: 0.3s;
	width: 100%;
}

.note__items {
	display: flex;
	flex-direction: column;
}

.note__item {
	position: relative;
}

.note__item:hover .note__thumb-img img {
	transform: scale(1);
}

.note__item:hover .c-plus-icon {
	background: #fff;
}

.note__item:hover .c-plus-icon__inner {
	background: #486061;
}

.note__item:hover .c-plus-icon__inner span {
	background: #fff;
}

.note__thumb {
	position: relative;
}

.note__thumb-label {
	align-items: center;
	background: #E2564B;
	display: flex;
	height: 100%;
	justify-content: center;
	left: 0;
	padding: 10px 1px;
	position: absolute;
	top: 0;
	z-index: 0;
}

.note__thumb-label-text {
	color: #fff;
	font-size: 22px;
	font-weight: bold;
	writing-mode: vertical-rl;
}

.note__thumb-img {
	aspect-ratio: 667/200;
	overflow: hidden;
	width: 100%;
}

.note__thumb-img img {
	height: 100%;
	transform: scale(1.1);
	transform-origin: center;
	transition: 0.3s;
	width: 100%;
	-o-object-fit: cover;
	object-fit: cover;
	-o-object-position: center;
	object-position: center;
}

.note__body {
	padding: 21px 25px;
}

.note__title {
	font-size: 22px;
	font-weight: bold;
	line-height: 1.1818181818;
}

.note__row {
	align-items: center;
	display: flex;
	gap: 10px;
	margin-top: 22px;
}

.note__label {
	background: #fff;
	border-radius: 4px;
	display: inline-block;
	line-height: 1;
	padding: 2px 10px;
}

.note__label-text {
	color: #7d8e8d;
	font-size: 16px;
	font-weight: bold;
}

.note__label-text span {
	font-family: "Squada One", "LINE Seed JP", sans-serif;
	font-size: 22px;
	font-weight: 400;
}

.note__tags {
	display: flex;
	gap: 1em;
}

.note__tag {
	color: #7d8e8d;
	font-size: 13px;
}

/* note-article */

.note-article {
	background: #f0f4f4;
}

.note-article__thumb {
	border: 1px solid #000;
	width: 100%;
}

.note-article__thumb img {
	width: 100%;
}

.note-article__inner {
	padding-inline: 43px;
}

.note-article__content {
	padding-bottom: 66px;
	position: relative;
}

.note-article__content::before {
	background: #000;
	bottom: 0;
	content: "";
	height: 1px;
	left: 50%;
	position: absolute;
	transform: translateX(-50%);
	width: 100vw;
}

.note-article__content > h2 {
	color: #e2564b;
	font-size: 33px;
	font-weight: bold;
	margin-top: 100px;
}

.note-article__content > h3 {
	background: #e2564b;
	color: #fff;
	font-size: 22px;
	margin-top: 48px;
	padding-left: 10px;
	width: 100%;
}

.note-article__content > p {
	font-size: 24px;
	line-height: 1.7916666667;
	margin-top: 49px;
}

.note-article__content > ul {
	list-style-type: disc;
	margin-top: 48px;
	padding-left: 2em;
}

.note-article__content > ul li {
	font-size: 24px;
}

.note-article__content > hr {
	color: #7d8e8d;
	margin-top: 50px;
	width: 100%;
}

.note-article__title {
	font-size: 35px;
	font-weight: bold;
	line-height: 1.5142857143;
	margin-top: 66px;
}

.note-article__link-card {
	border: 1px solid #000;
	display: flex;
	margin-bottom: 58px;
	margin-top: 49px;
}

.note-article__link-card-thumb {
	aspect-ratio: 150/75;
	flex-shrink: 0;
	overflow: hidden;
	width: 150px;
}

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

.note-article__link-card-body {
	align-items: center;
	background: #F0F4F4;
	border-left: 1px solid #000;
	display: flex;
	gap: 10px;
	padding: 3px 25px;
	width: 100%;
}

.note-article__link-card-text {
	font-size: 22px;
	font-weight: bold;
}

.note-article__link-card-label {
	background: #fff;
	border-radius: 4px;
	color: #7d8e8d;
	display: inline-block;
	font-family: "Squada One", "LINE Seed JP", sans-serif;
	font-size: 19px;
	line-height: 1;
	padding: 5px 10px 5px;
}

.note-article__link-card-num {
	font-size: 22px;
	font-weight: 400;
}

.note-article__accordion {
	margin-top: 29px;
}

.note-article__accordion .note-article__img {
	margin-top: 0;
}

.note-article__accordion[open] .note-article__accordion-body {
	grid-template-rows: 1fr;
}

.note-article__accordion[open] .note-article__accordion-icon span:nth-child(2) {
	transform: translateY(-50%) rotate(0deg);
}

.note-article__accordion-head {
	align-items: center;
	border: 1px solid #000;
	display: flex;
	gap: 20px;
	padding: 10px 21px;
}

.note-article__accordion p {
	font-size: 24px;
	line-height: 1.7916666667;
}

.note-article__accordion-icon {
	height: 21px;
	position: relative;
	width: 21px;
}

.note-article__accordion-icon span {
	background: #e2564b;
	height: 3px;
	left: 0;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	transition: 0.3s;
	width: 21px;
}

.note-article__accordion-icon span:nth-child(1) {
	transform: translateY(-50%);
}

.note-article__accordion-icon span:nth-child(2) {
	transform: translateY(-50%) rotate(90deg);
}

.note-article__accordion-inner {
	overflow: hidden;
}

.note-article__accordion-body {
	display: grid;
	grid-template-rows: 0fr;
	transition: 0.4s;
}

.note-article__index {
	background: #DEE2E2;
	border: 1px solid #000;
	margin-top: 108px;
}

.note-article__index-head {
	border-bottom: 1px solid #000;
	display: flex;
	justify-content: center;
	padding: 11px 5px 10px;
}

.note-article__index-head img {
	display: inline-block;
	width: 74px;
}

.note-article__index-list {
	padding: 20px 30px;
}

.note-article__index-list li + li {
	border-top: 1px solid #7D8E8D;
	padding-top: 6px;
}

.note-article__index-item {
	padding-block: 10px 10px;
	width: 100%;
}

.note-article__index-item span {
	display: inline-block;
	font-size: 24px;
	position: relative;
	width: -moz-fit-content;
	width: fit-content;
}

.note-article__index-icon {
	aspect-ratio: 1/1;
	position: absolute;
	right: -10px;
	top: 50%;
	transform: translate(100%, -50%);
	width: 25px;
}

.note-article__img {
	border: 1px solid #000;
	margin-top: 50px;
}

.note-article__img img {
	width: 100%;
}

/* c-archive-modal-note */

.c-archive-modal-note {
	height: 100%;
	margin: 0 auto;
	position: relative;
}

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

.note__button {
	padding: 8px 25px 7px 69px;
}

.note__button-icon {
	width: 34px;
}

.note__button-icon__inner {
	width: 23px;
}

.note__items {
	flex-direction: row;
	flex-wrap: wrap;
}

.note__item {
	border-bottom: 2px solid #000;
	width: 50%;
}

.note__item:nth-child(odd) {
	border-right: 2px solid #000;
}

.note__thumb-label {
	background: transparent;
	height: -moz-fit-content;
	height: fit-content;
	padding: 10px 10px;
}

.note__thumb-label::before {
	aspect-ratio: 107/81;
	background: url("../img/bg-note-audio.webp") no-repeat center center/contain;
	content: "";
	left: 0;
	position: absolute;
	top: 0;
	width: 107px;
	z-index: -1;
}

.note__thumb-label-text {
	line-height: 1.2727272727;
	writing-mode: horizontal-tb;
}

.note__thumb-img {
	aspect-ratio: auto;
	height: 400px;
}

.note__body {
	padding: 21px 25px;
}

.note__title {
	line-height: 158%;
}

.note__row {
	margin-top: 10px;
}

.note__label-text {
	font-size: 12px;
}

.note__label-text span {
	font-size: 18px;
}

.note-article__inner {
	margin: 0 auto;
	max-width: 686px;
}

.note-article__content > h2 {
	font-size: 27px;
}

.note-article__content > h3 {
	font-size: 18px;
}

.note-article__content > p {
	font-size: 16px;
	line-height: 1.875;
	margin-top: 24px;
}

.note-article__content > ul {
	margin-top: 15px;
	padding-left: 1.5em;
}

.note-article__content > ul li {
	font-size: 16px;
}

.note-article__title {
	line-height: 1.7428571429;
}

.note-article__link-card-text {
	font-size: 18px;
}

.note-article__link-card-label {
	font-size: 15px;
}

.note-article__link-card-num {
	font-size: 18px;
}

.note-article__accordion p {
	font-size: 16px;
}

.note-article__index {
	margin-top: 54px;
}

.note-article__index-head img {
	width: 63px;
}

.note-article__index-list {
	padding: 11px 30px;
}

.note-article__index-item span {
	font-size: 16px;
}

.note-article__index-icon {
	width: 17px;
}

.note-article__img {
	margin-top: 22px;
}

}

