@charset "UTF-8";
/*====================================================
p-under (共通)
====================================================*/
/* p-under-btn
----------------------------------------------- */
.p-under-btn {
	--bgColor: #fff;
	--currentColor: #00798f;
	--iconSize: 4px;
	display: grid;
	grid-template-columns: var(--iconSize) 1fr var(--iconSize);
	align-items: center;
	background-color: var(--bgColor);
	border: solid 1px #d4dbe5;
	width: min(380px, 100%);
	min-height: 50px;
	font-family: var(--font-Roboto);
	color: var(--currentColor);
	font-size: 13px;
	letter-spacing: 0.03em;
	text-align: center;
	border-radius: 3px;
	padding-inline: 20px;
	margin-inline: auto;
	transition: all 0.5s ease;
	transition-property: background-color, color, border-color;
}

@media screen and (max-width: 768px) {
	.p-under-btn {
		--iconSize: 0.967vw;
		padding-inline: 10px;
		font-size: 3.466vw;
		min-height: 13.333vw;
	}
}

.p-under-btn:focus-visible {
	--bgColor: #00798f;
	--currentColor: #fff;
	border-color: var(--bgColor);
}
@media (any-hover: hover) {
	.p-under-btn:hover {
		--bgColor: #00798f;
		--currentColor: #fff;
		border-color: var(--bgColor);
	}
}

.p-under-btn::before,
.p-under-btn::after {
	content: "";
	aspect-ratio: 4/9;
	transition: all 0.5s ease;
	transition-property: background-color;
}

.p-under-btn::after {
	mask-position: center center;
	mask-repeat: no-repeat;
	mask-size: contain;
	background-color: var(--currentColor);
	mask-image: url(../img/icon_arrow_right.svg);
}

/* =====p-under-btn--back===== */
.p-under-btn--back::before {
	mask-position: center center;
	mask-repeat: no-repeat;
	mask-size: contain;
	background-color: var(--currentColor);
	mask-image: url(../img/icon_arrow_left.svg);
}
.p-under-btn--back::after {
	background-color: transparent;
}

/*====================================================
グローバル用モーダル背景
====================================================*/
body.isHidden {
	overflow: hidden;
}

/*====================================================
input,select button スタイルリセット
====================================================*/
input,
select,
button {
	-webkit-appearance: none;
	appearance: none;
	vertical-align: middle;
	color: inherit;
	font: inherit;
	background: 0 0;
	padding: 0;
	margin: 0;
	border-radius: 0;
	text-align: inherit;
	text-transform: inherit;
	border: inherit;
}

/*====================================================
formパーツ
====================================================*/
/* input radio
----------------------------------------------- */
.p-news-archive-sort__radio {
	--radio-btn-size: 16px;
	--columnGap: 4px;
	position: relative;
	cursor: pointer;
	line-height: 1.5;
	font-size: 15px;
	padding-left: calc(var(--radio-btn-size) + var(--columnGap));
}

.p-news-archive-sort__radio input[type="radio"] + span {
	content: "";
	position: absolute;
	top: 50%;
	left: 0;
	translate: 0 -50%;
	aspect-ratio: 1;
	width: var(--radio-btn-size);
	border-radius: 50%;
	background-color: #fff;
	border: 1px solid #ccc;
	transition: all 0.3s ease;
	transition-property: background-color;
}

.p-news-archive-sort__radio input[type="radio"]:checked + span::before {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	translate: -50% -50%;
	aspect-ratio: 1;
	width: 62.5%;
	border-radius: 50%;
	background-color: #00798f;
	opacity: 1;
}

/* select
----------------------------------------------- */
.p-news-archive-sort__select {
	position: relative;
	line-height: 1.5;
	font-size: 13px;
}
.p-news-archive-sort__select select {
	cursor: pointer;
	width: 100%;
	max-width: 100%;
	padding: 5px 12px;
	border: 1px solid #cccccc;
}

@media screen and (max-width: 768px) {
	.p-news-archive-sort__select select {
		padding: 13px 12px;
	}
}

.p-news-archive-sort__select select + span {
	z-index: 2;
	pointer-events: none;
	position: absolute;
	top: 50%;
	right: 9px;
	translate: 0% -50%;
	aspect-ratio: 6.85/3;
	width: 7px;
	background: url("../img/icon_select_arrow_btm.svg") no-repeat center center/contain;
}

/*====================================================
ソート
====================================================*/
.p-news-archive-sort {
	margin-bottom: 40px;
	scroll-margin-top: 100px;
}

@media screen and (max-width: 768px) {
	.p-news-archive-sort {
		margin-bottom: 33px;
	}
}
@media screen and (max-width: 768px) {
	.p-news-archive-sort__inner[data-is-open="false"] {
		display: none;
	}
	.p-news-archive-sort__inner[data-is-open="true"] {
		z-index: 10000;
		display: block;

		position: fixed;
		top: 50%;
		left: 50%;
		translate: -50% -50%;
		width: min(340px, calc(100% - (2 * 17px)));
		background-color: #fff;
		border-radius: 3px;
		padding: 25px 20px 40px;
	}

	.p-news-archive-sort__inner--bg[data-is-open="true"] {
		display: block;
		z-index: 1000;
		content: "";
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background-color: #000;
		opacity: 0.4;
	}
}

.p-news-archive-sort__inner--bg {
	display: none;
}

.p-news-archive-sort__category {
	display: grid;
	grid-template-columns: max-content 1fr;
	column-gap: 18px;
}

@media screen and (max-width: 768px) {
	.p-news-archive-sort__category {
		display: block;
	}
}

.p-news-archive-sort__category--txt {
	font-weight: 600;
	line-height: 1.5;
	font-size: 13px;
}
@media screen and (max-width: 768px) {
	.p-news-archive-sort__category--txt > span {
		display: none;
	}
}

.p-news-archive-sort__category--inner {
	position: relative;
}
@media screen and (max-width: 768px) {
	.p-news-archive-sort__category--inner {
		margin-top: 8px;
	}
}

.p-news-archive-sort__category--pc {
	display: flex;
	flex-wrap: wrap;
	column-gap: 27px;
	row-gap: 10px;
}
@media screen and (max-width: 768px) {
	.p-news-archive-sort__category--pc {
		display: none;
	}
}

.p-news-archive-sort__category--sp {
	display: none;
}
@media screen and (max-width: 768px) {
	.p-news-archive-sort__category--sp {
		display: block;
		width: 100%;
	}
}

.p-news-archive-sort__date {
	display: grid;
	grid-template-columns: max-content 1fr;
	align-items: center;
	column-gap: 18px;
	margin-top: 27px;
}

@media screen and (max-width: 768px) {
	.p-news-archive-sort__date {
		display: block;
	}
}

.p-news-archive-sort__date--txt {
	font-weight: 600;
	line-height: 1.5;
	font-size: 13px;
}

@media screen and (max-width: 768px) {
	.p-news-archive-sort__date--txt > span {
		display: none;
	}
}

.p-news-archive-sort__date--inner {
	display: flex;
	flex-wrap: wrap;
	column-gap: 14px;
}
@media screen and (max-width: 768px) {
	.p-news-archive-sort__date--inner {
		margin-top: 8px;
		display: grid;
		grid-template-columns: repeat(2, 1fr);
	}
}

.p-news-archive-sort__select--year {
	width: 140px;
}
@media screen and (max-width: 768px) {
	.p-news-archive-sort__select--year {
		width: 100%;
	}
}
.p-news-archive-sort__select--month {
	width: 120px;
}
@media screen and (max-width: 768px) {
	.p-news-archive-sort__select--month {
		width: 100%;
	}
}

.p-news-archive-sort__btns {
	display: flex;
	align-items: center;
	column-gap: 16px;
	border-bottom: 1px solid #eee;
	padding-bottom: 30px;
	margin-top: 30px;
}

@media screen and (max-width: 768px) {
	.p-news-archive-sort__btns {
		justify-content: center;
		border-bottom: none;
		border-top: 1px solid #eee;
		padding-top: 26px;
		padding-bottom: 0;
		margin-top: 25px;
	}
}

.p-news-archive-sort__clear {
	cursor: pointer;
	display: grid;
	place-content: center;
	width: 100px;
	min-height: 35px;
	background-color: #fff;
	border: 1px solid #00798f;
	border-radius: 3px;
	color: #00798f;
	text-align: center;
	font-weight: 500;
	line-height: 1;
	letter-spacing: 0.06em;
	font-size: 13px;
	transition: all 0.3s ease;
	transition-property: opacity;
}

.p-news-archive-sort__clear:focus-visible {
	opacity: 0.7;
}
@media (any-hover: hover) {
	.p-news-archive-sort__clear:hover {
		opacity: 0.7;
	}
}

.p-news-archive-sort__submit {
	cursor: pointer;
	display: grid;
	place-content: center;
	width: 160px;
	min-height: 35px;
	background-color: #00798f;
	border-radius: 3px;
	color: #fff;
	text-align: center;
	font-weight: 500;
	line-height: 1;
	letter-spacing: 0.06em;
	font-size: 13px;
	transition: all 0.3s ease;
	transition-property: opacity;
}

.p-news-archive-sort__submit:focus-visible {
	opacity: 0.7;
}
@media (any-hover: hover) {
	.p-news-archive-sort__submit:hover {
		opacity: 0.7;
	}
}

/* SP
----------------------------------------------- */
.p-news-archive-sort__btn {
	display: none;
}

@media screen and (max-width: 768px) {
	.p-news-archive-sort__btn {
		--iconSize: 3.733vw;
		display: grid;
		grid-template-columns: var(--iconSize) max-content;
		align-items: center;
		column-gap: 5px;
		width: fit-content;
		margin-left: auto;
		font-weight: 600;
		line-height: 1;
		font-size: 3.733vw;
	}

	.p-news-archive-sort__btn::before {
		content: "";
		aspect-ratio: 13.4/11;
		background: url("../img/icon_sort.svg") no-repeat center center/contain;
	}
}

.p-news-single-article__back {
	margin-top: 100px;
}

@media screen and (max-width: 768px) {
	.p-news-single-article__back {
		margin-top: 62px;
	}
}

.p-news-single-article__back .c-btn{
  margin:0 auto;
}
.p-news-single-article__back .c-btn::after{
  left:20.37px;
  right: auto;
  transform: translateY(-50%) rotate(180deg);
  -webkit-transform: translateY(-50%) rotate(180deg);
  -ms-transform: translateY(-50%) rotate(180deg);
}
/*====================================================
NEWS ARCHIVE
====================================================*/
.p-news-archive {
	padding-bottom: 160px;
}
@media screen and (max-width: 768px) {
	.p-news-archive {
		padding-bottom: 26.667vw;
	}
}

.p-news-archive__list {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(min(100%, 280px), 1fr));
	gap: 44px 40px;
}
@media screen and (max-width: 768px) {
	.p-news-archive__list {
		grid-template-columns: 1fr;
	}
}

/*====================================================
NEWS CARD
====================================================*/
.c-news-card {
	position: relative;
}

.c-news-card__link {
	position: relative;
	display: block;
}

.c-news-card[data-is-new="true"] .c-news-card__link::before {
	content: "NEW";
	position: absolute;
	top: 0;
	left: 0;
	width: 60px;
	height: 24px;
	font-family: var(--font-Robot);
	font-size: 11px;
	line-height: 24px;
	text-align: center;
	color: #fff;
	background-color: #dd1212;
	border-radius: 0 0 10px 0;
}

@media screen and (max-width: 768px) {
	.c-news-card[data-is-new="true"] .c-news-card__link::before {
		width: 14.4vw;
		height: 5.333vw;
		line-height: 5.333vw;
		font-size: 2.933vw;
	}
}

.c-news-card__img {
	position: relative;
	display: block;
	overflow: hidden;
	aspect-ratio: 280/180;
}

.c-news-card__img img {
	z-index: -1;
	object-fit: cover;
	position: absolute;
	width: 100%;
	height: 100%;
	top: 50%;
	left: 50%;
	translate: -50% -50%;
	transition: all 0.3s ease;
	transition-property: scale;
}

.c-news-card:focus-visible .c-news-card__img img {
	scale: 1.05;
}
@media (any-hover: hover) {
	.c-news-card:hover .c-news-card__img img {
		scale: 1.05;
	}
}

.c-news-card__info {
	display: flex;
	gap: 25px;
	margin-top: 12px;
}

.c-news-card__date {
	font-size: 12px;
	line-height: 1.5;
}
@media screen and (max-width: 768px) {
	.c-news-card__date {
		font-size: 3.2vw;
	}
}

.c-news-card__cat {
	font-family: var(--font-Robot);
	font-size: 11px;
	color: #888888;
	background-color: #f4f4f4;
	border-radius: 40px;
	padding: 0 16px;
}
@media screen and (max-width: 768px) {
	.c-news-card__cat {
		font-size: 2.933vw;
		padding-inline: 4.266vw;
	}
}

.c-news-card__ttl {
	--maximum-line: 2; /* 制限する行数を指定 */
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: var(--maximum-line);
	font-size: 16px;
	font-weight: 600;
	overflow: hidden;
	margin-top: 10px;
}

@media screen and (max-width: 768px) {
	.c-news-card__ttl {
		font-size: 4.266vw;
	}
}

/*====================================================
ページネーション
====================================================*/
.p-news-pagination ul.page-numbers {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	column-gap: 10px;
	row-gap: 10px;
	margin-top: 80px;
}

@media screen and (max-width: 768px) {
	.p-news-pagination ul.page-numbers {
		column-gap: 10px;
		margin-top: 64px;
	}
}

.p-news-pagination ul.page-numbers .page-numbers:not(.dots, .prev, .next) {
	--circleSize: 32px;
	--color: #888888;
	--bgColor: #f4f4f4;
	display: grid;
	place-content: center;
	aspect-ratio: 1;
	width: var(--circleSize);
	border-radius: 50%;
	background: var(--bgColor);
	color: var(--color);
	font-weight: 500;
	font-size: 12px;
	line-height: 1;
	transition: all 0.3s ease;
	transition-property: color, background-color;
}

.p-news-pagination ul.page-numbers .page-numbers.current {
	--color: #fff;
	--bgColor: linear-gradient(to bottom right, #00798f 0%, #008ca3 60%);
}

.p-news-pagination ul.page-numbers .next,
.p-news-pagination ul.page-numbers .prev {
	aspect-ratio: 1;
	width: 4px;
	aspect-ratio: 3.86/9.44;
	transition: all 0.3s ease;
	transition-property: opacity;
}

.p-news-pagination ul.page-numbers .next img,
.p-news-pagination ul.page-numbers .prev img {
	position: relative;
	display: block;
	width: 100%;
	height: 100%;
}

.p-news-pagination ul.page-numbers .next:focus-visible,
.p-news-pagination ul.page-numbers .prev:focus-visible {
	opacity: 0.7;
}

@media (any-hover: hover) {
	.p-news-pagination ul.page-numbers .next:hover,
	.p-news-pagination ul.page-numbers .prev:hover {
		opacity: 0.7;
	}
}

/*====================================================
NEWS SINGLE
====================================================*/
.p-news-single {
	padding-top: 140px;
	padding-bottom: 160px;
}
@media screen and (max-width: 768px) {
	.p-news-single {
		padding-top: 93px;
		padding-bottom: 26.667vw;
	}
}
.p-news-single .breadcrumb {
	justify-content: start;
}

.p-news-single-article__info {
	display: flex;
	flex-wrap: wrap;
	row-gap: 10px;
	column-gap: 20px;
}

.p-news-single-article__date {
	color: #888;
	line-height: 1.5;
	font-size: 14px;
}
@media screen and (max-width: 768px) {
	.p-news-single-article__date {
		font-size: 3.733vw;
	}
}

.p-news-single-article__cat {
	display: grid;
	place-content: center;
	min-width: 65px;
	min-height: 17px;
	border-radius: 40px;
	background-color: #f4f4f4;
	font-family: var(--font-Robot);
	text-align: center;
	color: #888;
	line-height: 1.5;
	font-size: 11px;
	padding: 2px 10px;
}
@media screen and (max-width: 768px) {
	.p-news-single-article__cat {
		min-width: 17.33vw;
		min-height: 4.533vw;
		font-size: 2.933vw;
	}
}

.p-news-single-article__ttl {
	font-family: var(--font-serif);
	line-height: 1.5;
	font-weight: 500;
	font-size: 30px;
	margin-top: 20px;
}

@media screen and (max-width: 768px) {
	.p-news-single-article__ttl {
		font-size: 8vw;
	}
}

.p-news-single-article__ttl--sub {
	font-family: var(--font-serif);
	line-height: 1.5;
	font-weight: 500;
	font-size: 20px;
	margin-top: 5px;
}
@media screen and (max-width: 768px) {
	.p-news-single-article__ttl--sub {
		font-size: 5.333vw;
	}
}

.p-news-single-article__content {
	border-top: 1px solid #eee;
	border-bottom: 1px solid #eee;
	padding-top: 28px;
	padding-bottom: 79px;
	margin-top: 28px;
}

.p-news-single-article__sns {
	display: flex;
	align-items: center;
	column-gap: 20px;
	margin-top: 40px;
}
@media screen and (max-width: 768px) {
	.p-news-single-article__sns {
		display: block;
		margin-top: 26px;
	}
}

.p-news-single-article__txt {
	letter-spacing: 0.05em;
	font-size: 14px;
}
@media screen and (max-width: 768px) {
	.p-news-single-article__txt {
		text-align: center;
		font-size: 3.466vw;
	}
}

.p-news-single-article__sns--list {
	display: flex;
	column-gap: 15px;
	align-items: center;
}
@media screen and (max-width: 768px) {
	.p-news-single-article__sns--list {
		justify-content: center;
		gap: 25px;
		margin-top: 20px;
	}
}

.p-news-single-article__sns--item {
}

.p-news-single-article__sns--link {
	display: block;
	aspect-ratio: 1;
	width: 35px;
}

.p-news-single-article__sns--img {
	height: 100%;
	object-fit: contain;
}

/* =====エディターコンテンツ用スタイル===== */
.p-news-single-article__content {
	line-height: 2.6;
	letter-spacing: 0.06em;
	font-size: 16px;
}
@media screen and (max-width: 768px) {
	.p-news-single-article__content {
		line-height: 1.8;
		letter-spacing: 0.04em;
		font-size: 3.733vw;
	}
}

.p-news-single-article__content > * + * {
	margin-top: 1.75em;
}
@media screen and (max-width: 768px) {
	.p-news-single-article__content > * + * {
		margin-top: 1.5em;
	}
}
