@charset "UTF-8";
.sns {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 25px;
}
.sns .sns_item,
.sns .sns_item a {
	cursor: pointer;
	display: block;
}
.sns .sns_item a:hover {
	opacity: 0.7;
}

.header {
	background: #000;
	border-radius: 10px;
	color: #FFF;
	position: fixed;
	top: 20px;
	left: 20px;
	width: calc(100% - 40px);
	height: 70px;
	padding: 0 20px;
	z-index: 100;
	opacity: 1;
	transition: all 0.3s ease;
	overflow: hidden;
	letter-spacing: 0;
}
.header.is_open {
	height: calc(100dvh - 40px);
}
.header .header_inner {
	display: flex;
	justify-content: center;
	align-items: center;
}
.header .nav,
.header .nav_inner {
	width: 100%;
}
.header .nav_inner {
	height: calc(100dvh - 130px);
	overflow: auto;
}
.header h1 {
	line-height: 1;
	position: absolute;
	top: 0;
	left: 30px;
}
.header h1 a {
	display: flex;
	justify-content: center;
	align-items: center;
	line-height: 1;
	height: 70px;
}
.header h1 a:hover {
	opacity: 0.7;
}
.header .nav_list {
	display: flex;
	justify-content: center;
	align-items: flex-start;
}
.header.is_open .nav_list {
	display: none;
}
.header .nav_list li a {
	color: #FFF;
	display: block;
	font-size: 14px;
	font-weight: 700;
	padding: 26px 20px 25px;
	position: relative;
}
.header .nav_list li a:hover {
	padding-top: 28px;
	padding-bottom: 23px;
}
.header .nav_list li a p {
	line-height: 1;
	padding: 5px 0 0 0;
	position: relative;
	display: flex;
	align-items: center;
	flex-direction: column;
}
.header .nav_list li a p::before {
	background: #FFF;
	content: "";
	display: block;
	width: 0;
	height: 1px;
	position: absolute;
	transition: all 0.3s;
	bottom: -16px;
	margin: 0 auto;
	opacity: 0;
}
.header .nav_list li a:hover p::before {
	width: 100%;
	opacity: 1;
	bottom: -14px;
}
.header .nav_menu {
	align-items: flex-start;
	display: none;
	flex-wrap: wrap;
	justify-content: space-between;
	max-width: 720px;
	margin-left: auto;
	margin-top: 108px;
	margin-right: 100px;
	position: relative;
}
.header.is_open .nav_menu {
	display: flex;
}
.header .nav_menu a {
	display: block;
	color: #FFF;
}
.header .nav_menu_list {
	width: calc(50% - 30px);
}
.header .nav_menu_list > li {
	position: relative;
}
.header .nav_menu_list > li > a {
	padding: 30px 20px 26px;
	border-bottom: 1px solid transparent;
}
.header .nav_menu_list > li > a:hover {
	padding-right: 15px;
	padding-left: 25px;
}
.header .nav_menu_list > li > a:hover {
	border-color: #FFF;
}
.header .nav_menu_list > li > a > p {
	font-size: 22px;
	font-weight: 700;
}
.header .nav_menu_list > li > a > small {
	font-size: 14px;
	font-weight: 500;
	display: block;
}
.header .nav_menu_list_icon {
	width: 25px;
	height: 40px;
	position: absolute;
	display: flex;
	align-items: center;
	justify-content: center;
	top: 40px;
	right: 20px;
	z-index: -1;
	transition: all 0.3s;
	opacity: 0;
}
.header .nav_menu_list > li > a:hover + .nav_menu_list_icon {
		right: 15px;
		opacity: 1;
}
.header .nav_menu_list_icon span {
	position: absolute;
	display: block;
	background: #FFF;
}
.header .nav_menu_list_icon span:first-child {
	width: 26px;
	height: 1px;
}
.header .nav_menu_list_icon span:last-child {
	width: 10px;
	height: 1px;
	transform: rotate(30deg);
	right: 0;
	top: 17px;
}
.header .nav_menu_sub {
	width: 100%;
}
.header .nav_menu_sub > li > a {
	width: 100%;
	padding: 20px 0 20px 0;
	border-bottom: 1px solid transparent;
}
.header .nav_menu_sub > li > a:hover {
	border-color: #666;
}
.header .nav_menu_sub > li > a > div > small {
	font-size: 13px;
	font-weight: 400;
}
.header .nav_menu_sub > li > a > div > p {
	font-size: 15px;
	font-weight: 500;
}
.header .nav_menu_sub > li > a > div {
	position: relative;
	padding: 0 20px 0 40px;
	transition: all 0.3s;
}
.header .nav_menu_sub > li > a:hover > div {
	padding-right: 15px;
	padding-left: 45px;
}
.header .nav_menu_sub > li > a > div::before,
.header .nav_menu_sub > li > a > div::after {
	content: "";
	display: block;
	position: absolute;
	width: 4px;
	height: 15px;
	top: 0;
	left: 20px;
	background: #CCC;
	transition: all 0.3s;
}
.header .nav_menu_sub > li > a > div::before {
	height: 100%;
	background: #666;
}
.header .nav_menu_sub > li.is_purple > a:hover {
	color: #7C5ABE;
	border-color: #7C5ABE;
}
.header .nav_menu_sub > li.is_purple > a > div::before {
	background: #7C5ABE;
}
.header .nav_menu_sub > li.is_purple > a > div::after {
	background: #A27EE8;
}
.header .nav_menu_sub > li.is_green > a:hover {
	color: #008742;
	border-color: #008742;
}
.header .nav_menu_sub > li.is_green > a > div::before {
	background: #008742;
}
.header .nav_menu_sub > li.is_green > a > div::after {
	background: #00A85F;
}
.header .nav_menu_sub > li.is_orange > a:hover {
	color: #F36700;
	border-color: #F36700;
}
.header .nav_menu_sub > li.is_orange > a > div::before {
	background: #F36700;
}
.header .nav_menu_sub > li.is_orange > a > div::after {
	background: #FC984F;
}
.header .nav_menu_sub > li.is_basic > a:hover {
	color: #000000;
	border-color: #000000;
}
.header .nav_menu_sub > li.is_basic > a > div::before {
	background: #000000;
}
.header .nav_menu_sub > li.is_basic > a > div::after {
	background: #434343;
}
.header .nav_menu_sub > li.is_others > a:hover {
	color: #666666;
	border-color: #666666;
}
.header .nav_menu_sub > li.is_others > a > div::before {
	background: #666666;
}
.header .nav_menu_sub > li.is_others > a > div::after {
	background: #989898;
}
.header .nav_btn_toggle {
	cursor: pointer;
	width: 70px;
	height: 70px;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	gap: 6px;
	transition: all 0.3s;
	position: absolute;
	top: 0;
	right: 0;
}
.header .nav_btn_toggle span {
	background: #FFF;
	width: 22px;
	height: 2px;
	display: block;
}
.header.is_open .nav_btn_toggle span {
	position: absolute;
}
.header.is_open .nav_btn_toggle span:first-child {
	transform: rotate(45deg);
}
.header.is_open .nav_btn_toggle span:last-child {
	transform: rotate(-45deg);
}
.header .nav_btn_toggle:hover {
	gap: 4px;
}
.header .sns {
	display: none;
	position: absolute;
	bottom: 0px;
	right: 0px;
}
.header.is_open .sns {
	display: flex;
}
@media (max-width: 1024px) {
	.header .nav_list {
		display: none;
	}
}
@media (max-width: 767px) {
	.header {
		border-radius: 5px;
		top: 10px;
		left: 10px;
		width: calc(100% - 20px);
		height: 60px;
	}
	.header .nav_inner {
		margin-top: 100px;
		height: calc(100dvh - 120px);
	}
	.header.is_open {
		height: calc(100dvh - 20px);
	}
	.header .nav_list {
		display: none !important;
	}
	.header h1 {
		left: 20px;
	}
	.header h1 a {
		height: 60px;
	}
	.header .nav_btn_toggle {
		width: 60px;
		height: 60px;
	}
	.header .nav_menu {
		margin: 0;
		padding-bottom: 140px;
	}
	.header .nav_menu_list {
		width: 100%;
	}
	.header .nav_menu_list > li > a {
		border: none;
		transition: unset;
		padding: 25px 20px 21px;
	}
	.header .nav_menu_list > li > a:hover {
		padding: 25px 20px 21px;
	}
	.header .nav_menu_list > li > a > p {
		font-size: 22px;
	}
	.header .nav_menu_list_icon:has(+ .nav_menu_sub) {
		display: flex;
		align-items: center;
		justify-content: center;
		top: 25px;
	}
	.header .nav_menu_list_icon {
		opacity: 1;
		transition: unset;
		display: none;
		width: 60px;
		height: 60px;
		border-left: 1px solid rgba(255,255,255,0.2);
		right: 0;
		z-index: 1;
	}
	.header .nav_menu_list > li > a:hover + .nav_menu_list_icon {
		right: 0;
	}
	.header .nav_menu_list_icon span:first-child,
	.header .nav_menu_list_icon span:last-child {
		width: 15px;
	}
	.header .nav_menu_list_icon span:last-child {
		transform: rotate(90deg);
		top: auto;
		right: auto;
	}
	.header .nav_menu_list_icon.is_open span:last-child {
		opacity: 0;
	}
	.header .nav_menu_sub {
		display: none;
		padding-bottom: 40px;
	}
	.header .nav_menu_sub > li > a {
		padding: 15px 20px;
		border-bottom: none;
	}
	.header .nav_menu_sub > li > a > div,
	.header .nav_menu_sub > li > a:hover > div {
		padding: 0 0 0 20px;
	}
	.header .nav_menu_sub > li > a > div::before,
	.header .nav_menu_sub > li > a > div::after {
		left: 0px;
	}
	.header .sns {
		bottom: 40px;
		right: 20px;
	}
}

.is_center {
	text-align: center;
	margin: 0 auto;
	width: fit-content;
}

.ttl_h2 {
	line-height: 1;
}
.ttl_h2 h2 {
	font-size: 40px;
	font-weight: 700;
	width: fit-content;
}
.ttl_h2 h2 + span {
	font-size: 16px;
	margin-top: 10px;
	display: block;
	font-weight: 700;
}
@media (max-width: 767px) {
	.ttl_h2 h2 + span {
		font-size: 13px;
	}
	.ttl_h2 h2 {
		font-size: 28px;
	}
}
.ttl_h3 {
	font-size: 20px;
	font-weight: 700;
	position: relative;
	margin-bottom: 30px;
	padding: 4px 0 0 16px;
}
.ttl_h3::before{
	border-radius: 100px;
	background: #000;
	content: "";
	display: block;
	width: 4px;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
}

@media (max-width: 767px) {
	.ttl_h3 {
		font-size: 18px;
	}
}

.icon {
	display: inline-block;
	vertical-align: middle;
}
.icon.is_external {
	height: 1em;
	margin-left: 0.25em;
	vertical-align: baseline;
}
.icon.is_pdf {
	height: 1.6em;
	margin-left: 0.5em;
}

.btn {
	background: #000;
	border-radius: 100px;
	color: #FFF;
	font-weight: 500;
	font-size: 20px;
	position: relative;
	padding: 34px 30px 30px;
	width: 350px;
	display: flex;
	align-items: center;
	justify-content: center;
	line-height: 1;
}
.btn:hover {
	color: #FFF;
}
.btn span {
	transition: all 0.3s;
}
.btn:hover span {
	transform: translateX(-5px);
}
.btn .btn_arrow {
	position: absolute;
	right: 32px;
	opacity: 0;
	transition: all 0.3s;
	transform: translateY(-3px);
}
.btn:hover .btn_arrow {
	opacity: 1;
	right: 27px;
}
.btn.is_back:hover span {
	transform: translateX(5px);
}
.btn.is_back .btn_arrow {
	left: 32px;
	right: auto;
}
.btn.is_back:hover .btn_arrow {
	left: 27px;
}
@media (max-width: 767px) {
	.btn {
		font-size: 15px;
		padding: 24px 10px 20px;
		transform:translate(0px,0);
		width: 255px;
	}
	.btn:hover span {
		transform: translateX(0px);
	}
	.btn .btn_arrow {
		display: none;
	}
}

.list {
	max-width: 1180px;
	margin: 0 auto;
	display: flex;
	align-items: flex-start;
	flex-wrap: wrap;
}
.list.is_column_02 {
	gap: 80px;
}
.list.is_column_02 .list_item {
	width: calc((100% / 2) - (80px / 2));
}
.list.is_column_03 {
	gap: 60px 50px;
}
.list.is_column_03 .list_item {
	width: calc((100% / 3) - (100px / 3));
}
.list .list_link {
	display: block;
	position: relative;
}
.list.is_num .list_link {
	padding-top: 45px;
}
.list .list_image {
	display: block;
	aspect-ratio: 5/3.3;
	overflow: hidden;
	border-radius: 15px;
	position: relative;
}
.list .list_image::before {
	display: block;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	content: "";
	background: #000;
	position: absolute;
	border-radius: 17px;
}
.list .list_image img {
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	transition: all 0.3s;
}
.list .list_link:hover .list_image img {
	transform: scale(1.1);
	opacity: 0.8;
}
.list .list_num {
	color: #000;
	font-size: 10px;
	position: absolute;
	z-index: 1;
	text-align: right;
	top: 0;
	right: 20px;
}
.list .list_num strong {
	font-size: 55px;
	font-weight: 400;
	display: block;
	line-height: 1;
	margin-top: 5px;
}
.list .list_hash_main,
.ttl_hash {
	font-size: 14px;
	line-height: 1;
	display: flex;
	flex-wrap: wrap;
	gap: 4px 14px;
	padding: 16px 0 10px 20px;
	position: relative;
	text-align: left;
}
.list.is_num .list_hash_main {
	padding: 24px 0 0;
}
.list .list_hash_main::before {
	content: "";
	display: block;
	width: 10px;
	height: calc(100% + 50px);
	position: absolute;
	bottom: 0;
	left: 0;
	background: #000;
	border-radius: 0 10px 0 0;
}
.list.is_num .list_hash_main::before {
	display: none;
}
.list .list_hash_main .is_green,
.list .list_hash_main .is_green a,
.ttl_hash.is_green a {
	color: #008742;
}
.list .list_hash_main .is_purple,
.list .list_hash_main .is_purple a,
.ttl_hash.is_purple a {
	color: #7C5ABE;
}
.list .list_hash_main .is_orange,
.list .list_hash_main .is_orange a,
.ttl_hash.is_orange a {
	color: #F36700;
}
.list .list_hash_main .is_basic,
.list .list_hash_main .is_basic a,
.ttl_hash.is_basic a {
	color: #666666;
}
.list .list_hash_main .is_others,
.list .list_hash_main .is_others a,
.ttl_hash.is_others a {
	color: #666666;
}
.list .list_hash_main:has(.is_green)::before {
	background: #008742;
}
.list  .list_hash_main:has(.is_purple)::before {
	background: #7C5ABE;
}
.list .list_hash_main:has(.is_orange)::before {
	background: #F36700;
}
.list .list_hash_main:has(.is_basic)::before {
	background: #666666;
}
.list .list_hash_main:has(.is_others)::before {
	background: #666666;
}
.list .list_hash_main.is_multi::before {
	background: #000000;
}
.list .list_hash_main strong,
.ttl_hash strong {
	font-size: 16px;
	display: flex;
	gap: 4px;
	line-height: 1.25;
}
.list.is_num .list_hash_main strong {
	font-size: 22px;
	text-decoration: underline 1px;
	text-underline-offset: 3px;
	text-decoration-color: transparent;
	transition: all 0.3s;
}
.list.is_num .list_link:hover .list_hash_main strong {
	text-decoration-color: unset;
}
.list .list_hash_main span,
.ttl_h2_wrap .ttl_hash span {
	font-size: 14px;
	margin-top: 0;
}
.list .list_hash_main .is_num {
	font-size: 15px;
	margin-right: 0px;
}
.list.is_num .list_hash_main span {
	font-size: 20px;
	text-decoration: underline 1px;
	text-underline-offset: 3px;
	text-decoration-color: #f2f2f2;
}
.list .list_ttl {
	font-size: 18px;
	font-weight: 600;
	margin-top: 14px;
	transition: all 0.3s;
	text-decoration: underline 1px;
	text-underline-offset: 3px;
	text-decoration-color: transparent;
}
.list.is_num .list_ttl {
	font-size: 16px;
}
.list.is_column_02 .list_ttl {
	font-size: 24px;
}
.list .list_link:hover:not(:has(.list_hash_main a:hover,.list_hash_sub a:hover)) .list_ttl {
	text-decoration-color: #000;
}
.list_hash_sub {
	font-size: 12px;
	display: flex;
	justify-content: left;
	align-items: flex-start;
	flex-wrap: wrap;
	gap: 0 16px;
	margin-top: 10px;
}
.list_hash_sub li {
	align-items: baseline;
	display: flex;
	gap: 4px;
}
.list_hash_sub li a {
	opacity: 0.7;
}
.list_hash_sub span {
	font-size: 13px;
	line-height: 1;
}
.ttl_hash a,
.list .list_hash_main li a {
	border-bottom: 2px solid transparent;
	cursor: pointer;
	display: inline-block;
	transition: all 0.3s;
}

.ttl_hash a:hover,
.list .list_hash_main li a:hover,
.list .list_hash_main .is_select {
	border-bottom: 2px solid currentColor;
}

.list_hash_sub li a {
	opacity: 0.7;
	transition: all 0.3s;
	cursor: pointer;
	border-bottom: 2px solid transparent;
	display: inline-block;
	line-height: 1.5;
}
.list_hash_sub li a:hover,
.list_hash_sub .is_select {
	border-bottom: 2px solid;
	opacity: 1;
	border-bottom: 2px solid currentColor;
}

.list .list_time {
	display: flex;
  margin-top: 6px;
	align-items: flex-start;
}
.list .list_time time {
	font-size: 15px;
	color: #999;
	letter-spacing: 0.04em;
	display: flex;
	align-items: center;
	margin-left: auto;
	position: relative;
}
.list .list_time time:has(.is_new) {
	color: #000;
}
.list .list_time time .is_new {
	background: #FFF;
	border: 2px solid;
	border-radius: 100px;
	font-size: 12px;
	color: #000;
	font-weight: 700;
	padding: 12px 16px 8px;
	line-height: 1;
	position: absolute;
	top: -40px;
  left: 6px;
}
.list .list_time time .is_new::before {
	content: "";
	display: block;
	width: 0;
	height: 0;
	border-style: solid;
	border-right: 6px solid transparent;
	border-left: 6px solid transparent;
	border-top: 8px solid #000000;
	border-bottom: 0;
	position: absolute;
	top: 100%;
	left: calc(50% - 4px);
}

.list .list_text {
	font-size: 15px;
	font-weight: 400;
	margin-top: 10px;
	line-height: 1.85;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
}
@media (max-width: 767px) {
	.list,
	.list.is_column_02,
	.list.is_column_03 {
		gap: 50px 0;
	}
	.list .list_item,
	.list.is_column_02 .list_item,
	.list.is_column_03 .list_item {
		width: 100%;
	}
	.list.is_num .list_ttl {
		margin-top: 5px;
	}
	.list.is_column_02 .list_ttl {
		font-size: 18px;
	}
	.list .list_text {
		font-size: 14px;
		-webkit-line-clamp: 3;
	}
	.list .list_time time {
		font-size: 13px;
	}
}

.footer {
	width: 100%;
	background: #000;
	padding: 90px 8% 50px;
	position: relative;
	margin-top: -100px;
}
.footer a {
	display: block;
}
.footer a:hover {
	opacity: 0.6;
}
.footer .footer_inner {
	display: flex;
  align-items: flex-end;
	justify-content: space-between;
	flex-wrap: wrap;
	margin: 0 auto;
}
.footer .footer_logo {
	width: calc(100% - 250px);
}
.footer .footer_list {
	display: flex;
	justify-content: left;
	flex-wrap: wrap;
	gap: 22px;
	margin-top: 50px;
}
.footer .footer_list a {
	color: #FFF;
	line-height: 1;
	text-decoration: underline 1px;
	text-underline-offset: 3px;
	text-decoration-color: transparent;
}
.footer .footer_list a:hover {
	opacity: 1;
	text-decoration-color: #FFF;
}
.footer .footer_bottom {
	color: #FFF;
	font-size: 12px;
	border-top: 1px solid rgba(255,255,255,0.5);
	padding-top: 40px;
	margin-top: 60px;
	width: 100%;
}
.footer .footer_bottom p + p {
	margin-top: 16px;
}
@media (max-width: 767px) {
	.footer {
		padding: 90px 30px 50px;
	}
	.footer .footer_logo {
		width: 100%;
	}
	.footer .footer_logo_image {
		width: 200px;
	}
	.footer .footer_list {
		margin-top: 20px;
		width: 250px;
	}
	.footer .footer_link {
		margin-top: 80px;
	}
	.footer .footer_bottom {
		margin: 30px -20px 0;
    padding: 30px 20px 0;
		width: calc(100% + 40px);
	}
}

.pagetop {
	color: #FFF;
	position: absolute;
	left: calc(100% - 60px);
	top: -20px;
	/* bottom: calc(30% - 40px); */
	z-index: 50;
	width: 15px;
	height: 150px;
	align-items: center;
	mix-blend-mode: difference;
	/* opacity: 0; */
	transition: all 0.3s ease;
	display: flex;
	margin-top: -50px;
}
/* .pagetop.is_show {
	opacity: 1;
} */
.pagetop .pagetop_arrow {
	width: 1px;
	height: 50px;
	background: #FFF;
	display: block;
	position: absolute;
}
.pagetop .pagetop_arrow.is_tate {
	transform: rotate(180deg);
	top: 0;
	height: 100px;
	transition: all 0.3s ease;
}
.pagetop:hover .pagetop_arrow.is_tate {
	height: 90px;
}
.pagetop .pagetop_arrow.is_naname {
	transform: rotate(45deg);
	height: 20px;
	top: -2px;
	left: -7px;
}
.pagetop .pagetop_arrow.is_yoko {
	transform: rotate(90deg);
	height: 24px;
	top: -12px;
	transition: all 0.3s ease;
	opacity: 0;
}
.pagetop:hover .pagetop_arrow.is_yoko {
	opacity: 1;
}
.pagetop > p {
	transform: rotate(90deg);
	font-size: 12px;
	white-space: nowrap;
	position: absolute;
	bottom: 0px;
	transition: all 0.3s ease;
	right: -15px;
	font-weight: 600;
	color:#FFF;
}
.pagetop:hover > p {
	bottom: 10px;
}
@media (max-width: 767px) { 
	.pagetop {
		left: calc(100% - 30px);
	}
	.pagetop:hover .pagetop_arrow.is_tate {
		height: 100px;
	}
	.pagetop:hover .pagetop_arrow.is_yoko {
		opacity: 0;
	}
	.pagetop:hover > p {
		bottom: 0px;
	}
}

.notice {
	background: #FFF;
	border-radius: 15px;
	margin: 140px calc(-8% + 40px) 0;
	padding: 80px 8%;
	width: calc(116% - 80px);
}
.notice .notice_inner {
	gap: 100px;
	max-width: 1040px;
	margin: 0 auto;
}
.notice .notice_list_item + .notice_list_item {
	margin-top: 40px;
}
.notice .notice_list {
	width: 100%;
}
.notice .notice_list_link {
	display: flex;
	align-items: flex-start;
	justify-content: left;
	gap: 10px;
	column-gap: 30px;
}
.notice .notice_list_time {
	color: #666666;
	font-weight: 400;
}
.notice .notice_list_ttl {
	font-weight: 500;
	text-decoration: underline;
	text-underline-offset: 3px;
	text-decoration-color: transparent;
}
.notice span.notice_list_link .notice_list_ttl {
	text-decoration: none !important;
}
.notice .notice_list_link .notice_list_ttl {
	text-decoration-color: #000;
	transition: all 0.3s;
}
.notice .notice_list_link:hover .notice_list_ttl {
	text-decoration-color: transparent;
}
.notice .notice_list .notice_list_item.is_important{
	border-radius: 10px;
	background: #FAEDED;
	margin-top: 10px;
	padding: 25px 20px;
}

.notice .notice_list .notice_list_item.is_important a,
.notice .notice_list .notice_list_item.is_important span{
	flex-wrap: wrap;
}

.notice .notice_list .notice_list_item.is_important .is_txtimportant{
	color: #960100;
	font-size: 14px;
	font-weight: 600;
}

.notice .notice_list .notice_list_item.is_important .is_txtimportant time{
	padding-left: 30px;
}



@media (max-width: 767px) {
	.notice {
		margin: 140px -10px 0;
		padding: 60px 20px 80px;
		width: calc(100% + 20px);
	}
	.notice .ttl_h2 {
		display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
	}
	.notice .notice_list {
		margin-top: 40px;
	}
	.notice .notice_list_link {
		flex-direction: column;
		gap: 4px;
		line-height: 1.86;
	}
}

.ttl_h2_wrap {
	padding: 215px 8% 115px;
	width: 100%;
	position: relative;
	background: url(/assets/images/common/kv_under.svg) 50% 0 / cover no-repeat;
}
.ttl_h2_wrap .ttl_h2_wrap_inner {
	max-width: 1260px;
	margin: 0 auto;
}
.ttl_h2_wrap h2 {
	font-size: 40px;
	line-height: 1;
}
.ttl_h2_wrap h2 + span {
	font-size: 16px;
	margin-top: 10px;
	font-weight: 700;
	line-height: 1.25;
	display: block;
}

.ttl_h2_wrap.ttl_h2_wrap_ja h2{
	font-size: 36px;
}
.ttl_h2_wrap.ttl_h2_wrap_ja h2 + span {
	font-size: 14px;
	font-weight: 600;
	text-align: left;
}
.ttl_h2_wrap.ttl_h2_wrap_ja .is_num {
	font-size: 15px;
}

@media (max-width: 767px) {
	.ttl_h2_wrap {
		background: url(/assets/images/common/kv_under_sp.svg) 50% 0 / cover no-repeat;
		padding: 160px 30px 80px;
	}
	.ttl_h2_wrap h2 {
		font-size: 32px;
		letter-spacing: 0;
	}
	.ttl_h2_wrap h2 + span {
		font-size: 16px;
		margin-top: 4px;
	}
	.ttl_h2_wrap.ttl_h2_wrap_ja h2 {
		font-size: 26px;
	}
	.ttl_h2_wrap.ttl_h2_wrap_ja h2 + span {
		font-size: 12px;
	}
	.ttl_h2_wrap.ttl_h2_wrap_ja .is_num {
	font-size: 13px;
	}
}

.bread {
	width: 100%;
	padding: 20px 80px 50px;
}
.bread .bread_list {
	max-width: 1180px;
	margin: 0 auto;
	display: block;
	text-align: left;
	line-height: 1;
}
.bread .bread_list li {
	display: inline;
	line-height: 1.25;
}
.bread .bread_list li + li {
	margin-left: 18px;
	position: relative;
}
.bread .bread_list li + li::before {
	display: block;
	content: "";
	width: 4px;
	height: 4px;
	position: absolute;
	background: #CCCCCC;
	border-radius: 100px;
	top: 6px;
	left: -16px;
}
.bread .bread_list li a {
	font-size: 12px;
	transition: all 0.3s ease;
	display: inline;
	border-bottom: 1px solid transparent;
	line-height: 1;
	font-weight: 500;
	color: #333333;
}
.bread .bread_list li a:hover {
	font-size: 12px;
	color: #333333;
	border-bottom: 1px solid #333333;
}
.bread .bread_list li:last-child a {
	color: #666666;
	pointer-events: none;
	font-weight: 400;
}
@media (max-width: 767px) { 
	.bread {
		padding: 20px 20px 40px;
	}
}
.bread + .sec {
	margin-top: 0;
	padding-top: 0;
}

.pager {
	border-top: 1px solid rgba(0, 0, 0, 0.15);
	display: flex;
  flex-wrap: wrap;
	justify-content: space-between;
	gap: 30px;
	padding-top: 40px;
	margin-top: 60px;
}
.pager_list {
	display: flex;
	gap: 2px;
}
.pager_list .pager_list_item {
	display: flex;
}
.pager_list .pager_list_item a,
.pager_list .pager_list_item span {
	background: transparent;
	border-radius: 100px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 14px;
	width: 50px;
	height: 50px;
	line-height: 1;
}
.pager_list .pager_list_item span {
	padding-bottom: 10px;
}
.pager_list .pager_list_item a.is_active {
	background: #000;
	color: #FFF;
	pointer-events: none;
}
.pager_list .pager_list_item a:hover {
	background: #FFF;
}
.pager .pager_arrow {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 10px;
}
.pager .pager_arrow .pager_arrow_prev,
.pager .pager_arrow .pager_arrow_next {
	font-size: 13px;
	justify-content: left;
	padding: 20px 25px 17px;
	width: 120px;
}
.pager .pager_arrow .pager_arrow_prev {
	font-size: 13px;
	width: 120px;
	justify-content: right;
}
.pager .pager_arrow .pager_arrow_prev:hover span,
.pager .pager_arrow .pager_arrow_next:hover span {
  transform: translateX(0px);
}
.pager .pager_arrow .is_disable {
	background: rgba(0, 0, 0, 0.15);
	pointer-events: none;
}
.pager .pager_arrow .pager_arrow_prev img,
.pager .pager_arrow .pager_arrow_next img {
	opacity: 1;
}
.pager .pager_arrow .pager_arrow_next img {
	right: 25px;
}
.pager .pager_arrow .pager_arrow_prev img {
	left: 25px;
}
.pager .pager_arrow .pager_arrow_next:hover img {
	right: 20px;
}
.pager .pager_arrow .pager_arrow_prev:hover img {
	left: 20px;
}
@media (max-width: 767px) {
	.pager_list {
		gap: 8px;
	}
	.pager_list .pager_list_item a,
	.pager_list .pager_list_item span {
		width: 40px;
		height: 40px;
	}
	.pager {
		justify-content: center;
		padding-top: 30px;
		margin-top: 50px;
	}
	.pager .pager_arrow .pager_arrow_prev,
	.pager .pager_arrow .pager_arrow_next {
		font-size: 12px;
		padding: 15px 20px 13px;
		width: 100px;
	}
	.pager .pager_arrow .pager_arrow_prev img,
	.pager .pager_arrow .pager_arrow_next img {
		opacity: 1;
		display: block;
	}
	.pager .pager_arrow .pager_arrow_next img,
	.pager .pager_arrow .pager_arrow_next:hover img {
		right: 20px;
	}
	.pager .pager_arrow .pager_arrow_prev img,
	.pager .pager_arrow .pager_arrow_prev:hover img {
		left: 20px;
	}
}

.is_line {
	display: block;
	background: rgba(0, 0, 0, 0.15);
	width: 100%;
	height: 1px;
}

.sec .sec_text p {
	line-height: 2;
}
.sec .sec_text p + p {
	margin-top: 1em;
}
@media (max-width: 767px) {
	.sec .sec_text p {
		font-size: 16px;
	}
}

/*---------------------
コンテンツ
---------------------*/
.md_cont{
	max-width: 1180px;
	width: 100%;
	margin: 0 auto;
}

@media (max-width: 1240px){
	.md_cont{
		padding: 0 8%;
	}
}

@media (max-width: 767px){
	.md_cont{
	    padding: 0 20px;
	}
}

.br_sp {
    display: none;
}
@media (max-width: 767px){
    .br_sp {
        display: block;
    }
}
