@charset "UTF-8";

/* --------------------------------
 * 調整パーツ
 * -------------------------------- */

.en {
	font-family: var(--font_en);
	line-height: 1.2;
}
.icon {
	font-style: normal;
	line-height: 0;
    vertical-align: middle;
    display: inline-block;
}
@media (min-width: 768px) {
	.pc-none {
		display: none !important;
	}
}

@media (max-width: 767px) {
	.sp-none {
		display: none !important;
	}
}



/* --------------------------------
 * レイアウト
 * -------------------------------- */

/* .l-content */
[class*="l-content__w-"],
.l-content {
	margin-inline: auto;
	padding-right: var(--content-margin);
	padding-left: var(--content-margin);
	width: 100%;
}
[class*="l-content__w-"].type-noside,
.l-content.type-noside {
	padding-right: 0;
	padding-left: 0;
}
.l-content {
	max-width: calc(var(--content-width) + var(--content-margin) * 2);
}
.l-content__w-max {
	width: 100%;
}
.l-content__w-footer {
	max-width: calc(var(--content-width_footer) + var(--content-margin) * 2);
}




/* --------------------------------
 * タイトル
 * -------------------------------- */

/* .title-01 */
.title-01 {
	border-bottom: solid 3px var(--color_border-gray);
	padding-bottom: 25px;
	font-size: 32px;
	font-weight: 700;
	letter-spacing: .1em;
	margin-bottom: 30px;
}
@media (max-width: 767px) {
	.title-01 {
		font-size: 28px;
		margin-bottom: 20px;
		padding-bottom: 15px;
	}
}

/* --------------------------------
 * ボタン
 * -------------------------------- */

/* .button-01 */
.button-01 {
	margin-top: 50px;
}
.button-01 .nolink,
.button-01 > a {
	display: inline-flex;
	min-width: 278px;
	background-color: var(--color_button-black);
	min-height: 58px;
	color: var(--color_font-r);
	border-radius: 8px;
	transition-property: background-color, color;
	transition-duration: .2s;
	position: relative;
	top: 1px;
	left: 1px;
	z-index: 1;
}
.button-01.type-white .nolink,
.button-01.type-white > a {
	background-color: var(--color_font-r);
	color: var(--color_pure-black);
}
.button-01.type-border-none .nolink,
.button-01.type-border-none > a {
	top: 0;
	left: 0;
	min-width: 280px;
	min-height: 60px;
	background: none !important;
}
.button-01 > a:hover {
	background-color: var(--color_font-r) !important;
	color: var(--color_button-black) !important;
	border-color: var(--color_button-black) !important;
}
.button-01.type-white > a:hover {
	background-color: var(--color_button-black) !important;
	color: var(--color_font-r) !important;
	border-color: var(--color_font-r) !important;
}
.button-01.type-border-none > a:hover {
	background: none !important;
}
.button-01 .nolink::before,
.button-01 > a::before {
	content: '';
	position: absolute;
	left: -1px;
	top: -1px;
	width: calc(100% + 2px );
	height: calc(100% + 2px );
	box-sizing: border-box;
	border-radius: 9px;
	border: solid 1px var(--color_font-r);
	transition-property: border-color;
	transition-duration: .2s;
}
.button-01.type-border-gray .nolink::before,
.button-01.type-border-gray > a::before {
	border-color: var(--color_border-gray02);
}
.button-01.type-border-none .nolink::before,
.button-01.type-border-none > a::before {
	/* allを使用しているため、対象の擬似要素をこれより上に書かない */
	all: unset;
}
.button-01.type-border-none .nolink::after,
.button-01.type-border-none > a::after,
.button-01.type-border-none .nolink::before,
.button-01.type-border-none > a::before {
	content: '';
	position: absolute;
	top: 0;
	height: 100%;
	background-color: var(--color_button-black);
	z-index: -1;
	transition-property: background-color, color;
	transition-duration: .2s;
}
.button-01.type-border-none.type-white .nolink::after,
.button-01.type-border-none.type-white > a::after,
.button-01.type-border-none.type-white .nolink::before,
.button-01.type-border-none.type-white > a::before {
	background-color: var(--color_font-r);
}
.button-01.type-border-none .nolink::before,
.button-01.type-border-none > a::before {
	width: calc(100% - 60px);
	border-radius: 8px 0 0 8px;
	left: 0;
}
.button-01.type-border-none .nolink::after,
.button-01.type-border-none > a::after {
	width: 59px;
	border-radius: 0 8px 8px 0;
	right: 0;
}
.button-01.type-border-none > a:hover::after,
.button-01.type-border-none > a:hover::before {
	background-color: var(--color_font-r);
}
.button-01.type-border-none.type-white > a:hover::after,
.button-01.type-border-none.type-white > a:hover::before {
	background-color: var(--color_button-black) !important;
}
.button-01 > a:hover::before {
	border-color: var(--color_button-black) !important;
}
.button-01.type-border-gray > a:hover::before {
	border-color: var(--color_font-r) !important;
}
.button-01 .nolink i,
.button-01 i {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 60px;
	flex-shrink: 0;
	border-left: solid 1px var(--color_font-r);
	transition-property: border-color;
	transition-duration: .2s;
	position: relative;
	z-index: 1;
}
.button-01.type-border-gray .nolink i,
.button-01.type-border-gray i {
	border-color: var(--color_border-gray02);
}
.button-01.type-border-none .nolink i,
.button-01.type-border-none > a i {
	border-left: none !important;
}
.button-01 > a:hover i {
	border-color: var(--color_button-black) !important;
}
.button-01.type-border-gray a:hover i {
	border-color: var(--color_font-r) !important;
}
.button-01 .nolink i::before,
.button-01 i::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-position: center center;
	background-repeat: no-repeat;
	background-image: url('../../assets/image/i_arrow-01_bk02.svg');
	z-index: -1;
}
.button-01.type-white .nolink i::before,
.button-01.type-white i::before {
	background-image: url('../../assets/image/i_arrow-01_w.svg');
}
.button-01 .nolink i img,
.button-01 > a i img {
	transition-property: opacity;
	transition-duration: .2s;
}
.button-01 > a:hover i img {
	opacity: 0;
}
.button-01 .nolink span,
.button-01 span {
	display: flex;
	align-items: center;
	flex-grow: 1;
	padding-left: 30px;
	font-weight: 700;
}
@media (max-width: 767px) {
	.button-01 {
		margin-top: 40px;
	}
}
@media (max-width: 600px) {
	.button-01 .nolink,
	.button-01 > a {
		min-width: 0;
		width: calc(100% - 2px);
	}
	.button-01 .nolink span,
	.button-01 span {
		padding-left: 10px;
	}
	.button-01.type-border-none .nolink,
	.button-01.type-border-none > a {
		min-width: 0;
		width: 100%;
	}
}



/* --------------------------------
 * .dl-data
 * -------------------------------- */

/* .dl-data-t01 */
.dl-data-t01 .dl-data__list {
	border-top: solid 1px var(--color_border-gray03);
	border-bottom: var(--color_border-gray03);
}
.dl-data-t01.type-border-top-none .dl-data__list {
	border-top: none !important;
}
.dl-data-t01 .dl-data__list-item {
	padding: 30px;
	display: flex;
	align-items: flex-start;
	gap: 10px;
}
.dl-data-t01 .dl-data__list-item + .dl-data__list-item {
	border-top: solid 1px var(--color_border-gray03);
}
.dl-data-t01 .dl-data__list-item > dt {
	width: 240px;
	flex-shrink: 0;
	font-weight: 500;
}
.dl-data-t01 .dl-data__list-item > dd {
	font-weight: 500;
}
.dl-data-t01 .dl-data__list-item > dd p {
	line-height: inherit;
	font-weight: inherit;
	font-size: inherit;
	letter-spacing: inherit;
}
.dl-data-t01 .dl-data__list-item > dd > * + * {
	margin-top: 1.4em;
}
@media (max-width: 767px) {
	.dl-data-t01 .dl-data__list-item {
		flex-direction: column;
		padding-left: 20px;
		padding-right: 20px;
	}
	.dl-data-t01 .dl-data__list-item > dt {
		width: 100%;
		font-size: 18px;
	}
	.dl-data-t01 .dl-data__list-item > dd {
		padding-left: 1em;
	}
}


/* --------------------------------
 * ページ上部
 * -------------------------------- */

.head {
	min-height: 300px;
	padding-top: 90px;
	padding-bottom: 40px;
	box-sizing: border-box;
	position: relative;
	overflow: hidden;
	z-index: 1;
	margin-bottom: 130px;
}
.head::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: var(--color_bg-gray);
	z-index: -1;
}
.head__headline-group {
	display: flex;
	flex-direction: column;
}
.head__headline {
	font-size: 40px;
	letter-spacing: .04em;
	font-weight: 700;
	color: var(--color_pure-black);
}
.head__headline-group p {
	order: -1;
	user-select: none;
	font-size: 20px;
	font-weight: 600;
	letter-spacing: .08em;
	position: relative;
	padding-left: 50px;
}
.head__headline-group p::before {
	content: '';
	position: absolute;
	left: 4px;
	top: 8px;
	width: 30px;
	height: 6px;
	border-radius: 100vmin;
	background-image: var(--grad_main);
}
.head__thum {
	position: absolute;
	right: 0;
	top: 0;
	width: 50%;
	height: 100%;
}
.head__thum img {
	width: 100%;
	max-width: none;
	height: 100%;
	object-fit: cover;
	user-select: none;
}
.head__desc {
	margin-top: 40px;
}
.head__desc li,
.head__desc p {
	font-size: 18px;
	font-weight: 700;
	line-height: 2;
}
.head__desc ol {
	counter-reset: cnt_ol;
	padding-left: 1em;
}
.head__desc ol > li {
	padding-left: 1em;
	text-indent: -1em;
	position: relative;
}
.head__desc ol > li::before {
	content: counter(cnt_ol);
	counter-increment: cnt_ol;
	position: absolute;
	left: 0;
	top: 0;
}
.head__desc ol > li[data-i]::before {
	content: attr(data-i);
}
.head__desc ul {
	padding-left: 1em;
}
.head__desc ul > li {
	padding-left: 1em;
	text-indent: -1em;
	position: relative;
}
.head__desc ul > li::before {
	content: '・';
	counter-increment: cnt_ol;
	position: absolute;
	left: 0;
	top: 0;
}

/* .head-t02 */
.head-t02 {
	min-height: 530px;
}
.head-t02 .head__inner {
	display: flex;
}
.head-t02 .head__box:nth-of-type(1) {
	width: 50%;
	flex-shrink: 0;
	padding-right: 70px;
}
.head-t02 .head__box:nth-of-type(2) {
	flex-grow: 1;
}
.head-t02 .head__headline {
	font-size: 40px;
}

@media (max-width: 1400px) {
	.head {
		padding-top: 70px;
		min-height: 240px;
	}
	.head__headline {
		font-size: 50px;
	}
	.head__thum {
		right: auto;
		left: 642px;
		width: calc(50% + 50px);
	}
	
	/* .head-t02 */
	.head-t02 {
		min-height: 460px;
	}
	.head-t02 .head__box:nth-of-type(1) {
		width: 490px;
		padding-right: 0;
	}
	.head-t02 .head__headline {
		font-size: 40px;
	}
	.head-t02 .head__desc li,
	.head-t02 .head__desc p {
		font-size: 16px;
	}
}
@media (max-width: 1240px) {
	.head {
		min-height: 230px;
	}
	.head__headline {
		font-size: 40px;
	}
	.head__thum {
		left: 510px;
		width: calc(50% + 100px);
	}
	
	/* .head-t02 */
	.head.head-t02 .head__box:nth-of-type(1) {
		width: auto;
		padding-right: 0;
	}
}
@media (max-width: 900px) {
	.head {
		padding-top: 50px;
		padding-bottom: 40px;
		min-height: 210px;
	}
	.head__headline {
		font-size: 30px !important;
	}
	.head__desc {
		margin-top: 20px;
	}
	.head__thum {
		left: auto;
		right: auto;
		width: 100%;
	}
	
	/* .head-t02 */
	.head-t02 {
		padding-bottom: 0 !important;
	}
	.head-t02::before {
		height: calc( 100% - 35vw );
		min-height: 0 !important;
		padding-bottom: 0 !important;
	}
	.head-t02 .head__inner {
		flex-direction: column;
		width: 100%;
	}
	.head-t02 .head__box:nth-of-type(1) {
		width: 100%;
		margin-bottom: 40px;
	}
	.head-t02 .head__box:nth-of-type(2) {
		width: auto;
		position: relative;
		height: 45vw;
		align-self: auto;
	}
	.head-t02 .head__desc li,
	.head-t02 .head__desc p {
		font-size: 14px !important;
	}
	.head__thum img {
		border-radius: 16px;
	}
}
@media (max-width: 767px) {
	.head {
		margin-bottom: 80px;
	}
	.head__headline-group p {
		font-size: 16px;
		padding-left: 40px;
	}
	.head__headline-group p::before {
		height: 5px;
		width: 25px;
		top: 6px;
	}
}




/* --------------------------------
 * 投稿一覧
 * -------------------------------- */

/* .posts-t01 */
.posts-t01 {
	border-bottom: solid 1px var(--color_border-gray);
}
.posts-t01 .posts__post {
	border-top: solid 1px var(--color_border-gray);
	line-height: 1.4;
}
.posts-t01 .posts__post-link {
	padding: 20px 20px;
	display: flex;
	position: relative;
	width: 100%;
	z-index: 1;
}
.posts-t01 .posts__post-link::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	z-index: -1;
	transition-property: opacity;
	transition-duration: .2s;
	background-color: var(--color_border-gray);
	opacity: 0;
}
.posts-t01 .posts__post-link:hover::before {
	opacity: .15;
}
.posts-t01 .posts__post-date {
	width: 120px;
	flex-shrink: 0;
}
.posts-t01 .posts__post-icon {
	position: absolute;
	right: 20px;
	top: 50%;
	transform: translateY(-50%);
}
.posts-t01 .posts__post-icon img {
	transition-property: transform;
	transition-duration: .3s;
	transform: translateX(-6px);
}
.posts-t01 .posts__post-link:hover .posts__post-icon img {
	transform: translateX(0);
}
@media (max-width: 767px) {
	.posts-t01 .posts__post-link {
		flex-direction: column;
	}
	.posts-t01 .posts__post-date {
		width: 100%;
	}
}


/* .posts-t02 */
.posts-t02 {
	display: grid;
	grid-template-columns: repeat(3,1fr);
	gap: 80px 40px;
}
.posts-t02 .posts__post {
	border-radius: 16px;
	overflow: hidden;
	box-shadow: var(--shadow_black02);
	background-color: var(--color_font-r);
	padding-bottom: 40px;
	display: grid;
	grid-template-rows: auto 1fr auto;
	gap: 40px;
}
.posts-t02 .posts__post-box:not(:nth-of-type(1)) {
	padding-left: 35px;
	padding-right: 35px;
}
.posts-t02 .posts__post-box:nth-of-type(1) {
	flex-shrink: 0;
}
.posts__post-thum img {
	aspect-ratio: 8 / 5;
	height: 100%;
	width: 100%;
	max-width: none;
	object-fit: cover;
}
.posts-t02 .posts__post-date {
	margin-bottom: 5px;
	display: block;
}
.posts-t02 .posts__post-title {
	font-size: 26px;
	font-weight: 700;
	line-height: 1.4;
	letter-spacing: .04em;
}
.posts-t02 .posts__post-desc {
	margin-top: 20px;
	line-height: 2.2;
	font-weight: 700;
	letter-spacing: .04em;
}
.posts__post-terms {
	margin-top: -4px;
	padding-bottom: 40px;
}
.posts__post-terms li {
	line-height: 1.2;
	display: inline-block;
	margin-right: 2px;
	margin-top: 4px;
	font-size: 15px;
}
.posts__post-terms li a {
	color: var(--color_font04);
}
.posts__post-terms li a:hover {
	color: var(--color_font03);
}
.posts__post-terms li a::before {
	content: '#';
}
.posts-t02 .p-button a {
	min-width: 0;
	width: 100%;
}
@media (max-width: 1240px) {
	.posts-t02 {
		gap: 60px 20px;
	}
}
@media (max-width: 1024px) {
	.posts-t02 {
		grid-template-columns: repeat(2,1fr);
	}
}
@media (max-width: 767px) {
	.posts-t02 {
		grid-template-columns: 1fr;
	}
	.posts-t02 .posts__post {
		gap: 30px;
	}

	.posts-t02 .posts__post-desc {
		margin-top: 10px;
	}
}






/* --------------------------------
 * 汎用マージン
 * -------------------------------- */

/* margin-top */
.mt-0 { margin-top: 0 !important; }
.mt-5 { margin-top: 5px !important; }
.mt-10 { margin-top: 10px !important; }
.mt-15 { margin-top: 15px !important; }
.mt-20 { margin-top: 20px !important; }
.mt-25 { margin-top: 25px !important; }
.mt-30 { margin-top: 30px !important; }
.mt-35 { margin-top: 35px !important; }
.mt-40 { margin-top: 40px !important; }
.mt-45 { margin-top: 45px !important; }
.mt-50 { margin-top: 50px !important; }
.mt-55 { margin-top: 55px !important; }
.mt-60 { margin-top: 60px !important; }
.mt-65 { margin-top: 65px !important; }
.mt-70 { margin-top: 70px !important; }
.mt-75 { margin-top: 75px !important; }
.mt-80 { margin-top: 80px !important; }
.mt-90 { margin-top: 90px !important; }
.mt-95 { margin-top: 95px !important; }
.mt-100 { margin-top: 100px !important; }
.mt-105 { margin-top: 105px !important; }
.mt-110 { margin-top: 110px !important; }
.mt-115 { margin-top: 115px !important; }
.mt-120 { margin-top: 120px !important; }




