@charset "utf-8";

/* 共通css
---------------------------*/



/* 汎用css
---------------------------*/
.sp {
	display: none;
}
@media (max-width: 640px) {
	.pc {
		display: none;
	}
	.sp {
		display: block;
	}
	span.sp {
		display: inline;
	}
}

/* box format */
.box-size {
	max-width: 1000px;
	padding: 80px 20px;
	margin: 0 auto;
}
.boxfmt {
	background-color: var(--color-l);
	padding: 30px 40px;
	border-radius: 20px;
	-webkit-filter: drop-shadow(3px 3px 6px rgba(0, 0, 0, .1));
	filter: drop-shadow(3px 3px 6px rgba(0, 0, 0, .1));
}
@media (max-width: 640px) {
	.boxfmt {
		padding: 30px 20px;
	}
}

/* title */
.ttl-h2 {
	text-align: center;
}
.ttl-h2.ttl-h2-bd {
	color: var(--color-l);
}
.ttl-h2 span {
	display: inline-block;
	font-size: 1.5rem;
	font-weight: 700;
	border-bottom: dotted 4px var(--color-g);
}
.ttl-h2.ttl-h2-bd span {
	border-color: var(--color-gl);
}
.ttl-h2 span::first-letter {
	color: var(--color-g);
}
.ttl-h2.ttl-h2-bd span::first-letter {
	color: var(--color-gl);
}
.ttl-h3 {
	font-size: 1.125rem;
	font-weight: 700;
	padding-left: 1.2em;
	position: relative;
}
.ttl-h3::before {
	display: block;
	content: "\25CF";
	color: var(--color-g);
	position: absolute;
	top: 0;
	left: 0;
}
.ttl-h4 {
	color: var(--color-g);
	font-weight: 700;
}

/* font color */
.font-color-light {
	color: var(--color-l);
}
.font-color-point {
	color: var(--color-g);
}

/* font size */
.font-size-s {
	font-size: .75rem /* 12 */
}
.font-size-m {
	font-size: 1.125rem /* 18 */
}
.font-size-l {
	font-size: 1.5rem /* 24 */
}

/* font weight */
.font-weight-medium {
	font-weight: 500;
}
.font-weight-bold {
	font-weight: 700;
}
.font-weight-black {
	font-weight: 900;
}

/* text align */
.text-align-r,
.text-align-r-l {
	text-align: right;
}
.text-align-c-j {
	text-align: center;
}
@media (max-width: 640px) {
	.text-align-r-l {
		text-align: left;
	}
	.text-align-c-j {
		text-align: justify;
	}
}

/* anchor */
.anchor-vm  {
	text-align: center;
}
.anchor-vm-r  {
	text-align: right;
}
.anchor-vm a {
	display: inline-block;
	width: auto;
	font-size: 1rem;
	font-weight: 700;
	padding-right: 40px;
	position: relative;
	transition: .2s ease-out;
}
.anchor-vm a::after {
	display: block;
	content: "";
	background: url("../img/ico_arrow.webp") center / contain no-repeat;
	width: 30px;
	height: 30px;
	position: absolute;
	top: calc(50% - 15px);
	right: 0;
	transition: inherit;
}
.anchor-vm-bd a::after {
	-webkit-filter: brightness(0) invert(1);
	filter: brightness(0) invert(1);
}
@media (any-hover: hover) {
	.anchor-vm a:hover {
		color: var(--color-g);
	}
	.anchor-vm-bd a:hover {
		color: var(--color-l);
	}
	.anchor-vm a:hover::after {
		-webkit-transform: translateX(5px);
		transform: translateX(5px);
	}
}
.anchor-btn {
	display: -webkit-box;
	display: flex;
	-webkit-box-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	gap: 20px;
}
.anchor-btn-r {
	-webkit-box-pack: end;
	justify-content: flex-end;
}
.anchor-btn a {
	display: -webkit-box;
	display: flex;
	-webkit-box-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	align-items: center;
	column-gap: 20px;
	background-color: var(--color-l);
	width: auto;
	color: var(--color-txt);
	font-size: 1.25rem;
	font-weight: 700;
	line-height: 1;
	padding: 20px 40px;
	border-radius: 50px;
	position: relative;
	-webkit-filter: drop-shadow(3px 3px 6px rgba(0, 0, 0, .1));
	filter: drop-shadow(3px 3px 6px rgba(0, 0, 0, .1));
	transition: .2s ease-out;
}
.anchor-btn a::after {
	display: block;
	content: "";
	background: url("../img/ico_arrow.webp") center / contain no-repeat;
	width: 30px;
	height: 30px;
	transition: inherit;
}
@media (any-hover: hover) {
	.anchor-btn a:hover {
		color: var(--color-g);
		-webkit-filter: drop-shadow(1px 1px 1px rgba(0, 0, 0, .1));
		filter: drop-shadow(1px 1px 1px rgba(0, 0, 0, .1));
	}
	.anchor-btn a:hover::after {
		-webkit-transform: translateX(5px);
		transform: translateX(5px);
	}
}
@media (max-width: 960px) {
	.anchor-btn {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		flex-direction: column;
		-webkit-box-align: end;
		align-items: flex-end;
	}
	.anchor-btn a {
		max-width: 360px;
		font-size: 1.125rem;
		padding: 20px 30px;
	}
}

.anchor-outer span,
.anchor-outer a {
	display: inline-block;
	width: auto;
	font-weight: 700;
}
.anchor-outer span {
	background-color: var(--color-txt);
	color: var(--color-l);
	font-size: .75rem;
	padding: 0 calc(1em + 17px) 0 1em;
	margin-right: 10px;
	border-radius: 20px;
	position: relative;
}
.anchor-outer span::after {
	display: block;
	content: "";
	background: url("../img/ico_outer.webp") center / contain no-repeat;
	width: 12px;
	height: 12px;
	position: absolute;
	top: calc(50% - 6px);
	right: 1em;
}
.anchor-outer a {
	transition: .2s ease-out;
}
@media (any-hover: hover) {
	.anchor-outer a:hover {
		color: var(--color-g);
		text-decoration: underline;
	}
}

/* list icon */
.list-ico > * {
	padding-left: 1em;
	position: relative;
}
.list-ico > *::before {
	display: block;
	content: "";
	width: 1em;
	text-align: center;
	position: absolute;
	top: 0;
	left: 0;
}
.ico-inside > *::before {
	content: "\30FB";
}
.ico-disk > *::before {
	content: "\25CF";
}
.ico-circle > *::before {
	content: "\25EF";
}

/* margin */
.mt10 {
	margin-top: 10px !important;
}
.mt20 {
	margin-top: 20px !important;
}
.mt30 {
	margin-top: 30px !important;
}
.mt40 {
	margin-top: 40px !important;
}
.mt60 {
	margin-top: 60px !important;
}

/* PagiNation
---------------------------*/
.pagination {
	display: -webkit-box;
	display: flex;
	-webkit-box-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	align-items: center;
	column-gap: 20px;
	color: var(--color-l);
	font-size: .875rem;
	font-weight: 700;
}
.pagination li.is-not {
	display: none;
}
.pagination a {
	color: var(--color-l);
	transition: .2s ease-out;
}
.current-page a  {
	color: var(--color-gl);
	pointer-events: none;
}
@media (any-hover: hover) {
	.pagination a:hover {
		color: var(--color-gl);
	}
}
@media (max-width: 640px) {
	.pagination {
		column-gap: 10px;
	}
}
 .nav-links {
	display: -webkit-box;
	display: flex;
	-webkit-box-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	align-items: center;
	column-gap: 20px;
	color: var(--color-l);
	font-size: .875rem;
	font-weight: 700;
	margin-top: 60px;
}
.nav-links a {
	color: var(--color-l);
	width: auto;
	transition: .2s ease-out;
}
.nav-links .current  {
	color: var(--color-gl);
	pointer-events: none;
}
@media (any-hover: hover) {
	.nav-links a:hover {
		color: var(--color-gl);
	}
}
@media (max-width: 640px) {
	.nav-links {
		column-gap: 10px;
	}
}