@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
/*=============================================================
	topicPathArea
=============================================================*/
#topicPathArea {
	padding: 20px 0;
	margin-bottom: 30px;
}
/*=============================================================
	pageContainer
=============================================================*/
.pageContainer {
	margin-bottom: 100px;
}
/*=============================================================
 contentsBlock
=============================================================*/
.contentsBlock {
	display: flex;
	gap: 50px;
}
/*=============================================================
 scrollMenuArea
=============================================================*/
#scrollMenuArea {
	width: 40%;
	min-width: 300px;
	position: relative;
}
.accordionMenu {
	display: none;
}
/*-----------------------------------------------
	pageTtl
-----------------------------------------------*/
.pageTtl {
	text-align: center;
}
.ttl-h1 span.sub-ttl {
	background: linear-gradient(0deg, #19C1F6, #19C1F6), linear-gradient(90deg, rgba(41, 112, 224, 0.2) 0%, rgba(25, 193, 246, 0.2) 100%);
	color: #fff;
	font-size: 14px;
	font-weight: 500;
	font-family: "Inter", sans-serif;
	padding: 6px 15px;
	margin-bottom: 5%;
	display: inline-block;
}
.ttl-h1 span {
	display: block;
	font-size: 18px;
}
.ttl-h1 span:last-of-type {
	font-size: 42px;
	line-height: 1.2;
}
/*-----------------------------------------------
	scrollMenu
-----------------------------------------------*/
.scrollMenu {
	width: 300px;
}
.scrollMenu li+li {
	margin-top: 8px;
}
.scrollMenu li a {
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 10px;
	font-weight: 500;
}
.scrollMenu li a::before {
	content: none;
}
.scrollMenu li a span.scrollMenu__num {
	width: 38px;
	height: 38px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	font-weight: 500;
}
.scrollMenu li a span.scrollMenu__num span {
	width: auto;
}
.scrollMenu li a span:last-of-type {
	width: calc(100% - 48px);
}
.scrollMenu li a span.scrollMenu__num {
	transition: background 0.5s ease, color 0.5s ease;
}
.scrollMenu li a.current span.scrollMenu__num {
	background: #2970E0;
	color: #fff;
	position: relative;
	transition-delay: 0.6s;
}
.scrollMenu li a span.scrollMenu__num::before {
	content: "";
	width: 80px;
	height: 1px;
	background: #000;
	position: absolute;
	top: 50%;
	left: -90px;
	transform: scaleX(0) translateY(-50%);
	transform-origin: left;
	z-index: -1;
	transition: transform 0.5s ease;
}
.scrollMenu li a.current span.scrollMenu__num::before {
	transform: scaleX(1);
}
.scrollMenu li a {
	color: #333333;
	text-decoration: none;
}
.scrollMenu li a:hover {
	color: #2970e0;
}
/*=============================================================
 contentsArea
=============================================================*/
section+section {
	margin-top: 150px;
}
section[id] {}
[id]::before {
	content: "";
	display: block;
	height: 80px;
	margin-top: -80px;
	visibility: hidden;
	z-index: 0;
	position: relative;
}
/*-----------------------------------------------
	sec__ttl
-----------------------------------------------*/
.sec__ttl {
	position: relative;
}
.sec__ttl-num {
	display: flex;
	margin-left: 20px;
}
.ttl-sub {
	font-size: 70px;
	font-weight: 700;
	position: relative;
	left: 24px;
	z-index: 2;
	opacity: 0;
}
.ttl-sub span {
	writing-mode: tb;
	color: #2970E0;
	font-size: 16px;
	display: flex;
	align-items: end;
}
.sec__ttl-img {
	width: 100%;
	overflow: hidden;
	position: relative;
	display: block;
}
.sec__ttl-img::before {
	content: "";
	background: #19C1F6;
	display: block;
	height: 100%;
	position: absolute;
	transform: translateX(-101%);
	transition: all 1.2s 0s ease;
	width: 100%;
	z-index: 1;
}
.sec__ttl-img.active::before {
	transform: translateX(101%);
}
.sec__ttl-img img {
	width: 100%;
	height: 314px;
	object-fit: cover;
	object-position: 100% 50%;
	transition: all 0.5s 0.3s ease;
	position: relative;
	z-index: 0;
	opacity: 0;
}
.sec__ttl-img.active img {
	opacity: 1;
}
.sec__ttl-bg {
	background: linear-gradient(0deg, #19C1F6, #19C1F6), linear-gradient(90deg, rgba(41, 112, 224, 0.2) 0%, rgba(25, 193, 246, 0.2) 100%);
	width: 100vw;
	height: 200px;
	position: absolute;
	bottom: 0;
	z-index: -1;
	opacity: 0;
}
.sec__ttl-txt {
	padding-left: 100px;
	margin: 5px 0 0;
	opacity: 0;
}
.ttl-h2 {
	font-family: 'Noto Sans JP';
	border-bottom: none;
	margin: 0;
	padding-bottom: 25px;
	display: inline-block;
	z-index: 0;
}
.ttl-h2 span:first-of-type {
	color: #fff;
	display: inline;
	font-size: 20px;
	font-weight: 700;
	padding-bottom: 5px;
	padding-right: 20px;
	position: relative;
}
.ttl-h2 span:first-of-type::before {
	content: "";
	width: 100vw;
	height: 1px;
	background: #fff;
	position: absolute;
	top: 50%;
	left: 100%;
	transform: translateY(-50%);
	z-index: -1;
}
.ttl-h2 span:last-of-type {
	font-size: 30px;
	display: block;
}
/*-----------------------------------------------
	sec__content 
-----------------------------------------------*/
.sec__content {
	margin: 50px 0;
}
.sec__content-talk li {
	display: grid;
	gap: 30px;
	grid-template-columns: 80px 1fr;
}
.sec__content-talk li+li {
	margin-top: 30px;
}
.sec__content-talk li .atn {
	font-size: 14px;
	display: block;
	padding-top: 10px;
}
.sec__content-talk-profile {
	text-align: center;
}
.sec__content-talk-profile p {
	font-size: 14px;
	line-height: 1.6;
	padding-top: 2px;
}
.sec__content-talk-profile p span {
	color: #fff;
	padding: 1px 7px;
}
.sec__content-talk-profile--color01 {
	color: #32CFF9;
}
.sec__content-talk-profile--color01 span {
	background: #32CFF9;
}
.sec__content-talk-profile--color02 {
	color: #B992F4;
}
.sec__content-talk-profile--color02 span {
	background: #B992F4;
}
.sec__content-talk-profile--color03 {
	color: #28DD65;
}
.sec__content-talk-profile--color03 span {
	background: #28DD65;
}
.sec__content-talk-img {
	max-width: 310px;
	margin: 60px auto;
}
.sec__content-talk li>p span.txt-line {
	position: relative;
	background: linear-gradient(transparent 70%, #FFF300 60%);
}
/*-----------------------------------------------
	relatedArea
-----------------------------------------------*/
.relatedArea .ttl-h2 {
	font-size: 36px;
	color: #082E3A;
	position: relative;
	font-family: 'Noto Sans JP';
	display: inline-block;
	border-bottom: none;
	background: #fff;
	padding-right: 20px;
}
.relatedArea .ttl-h2::before {
	content: "";
	width: 100vw;
	height: 1px;
	background: #000;
	position: absolute;
	top: 55%;
	left: 280px;
	transform: translateY(-50%);
	z-index: -1;
}
.relatedArea .ttl-h2 span {
	font-size: 16px;
	color: #2970E0;
	display: block;
	background: none;
}
.relatedArea .col--3 {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 5%;
}
.relatedArea .col--3 li {
	opacity: 0;
	transform: translateY(30px);
}
.relatedArea .col--3 a {
	text-decoration: none;
}
.relatedArea .col--3 a .related__content-img {
	overflow: hidden;
	box-shadow: 4px 4px 10px 0px #00000033;
	transition: box-shadow .5s ease;
}
.relatedArea .col--3 a:hover .related__content-img {
	box-shadow: none;
}
.relatedArea .col--3 a .related__content-img img {
	width: 100%;
}
.relatedArea .related__content p {
	font-size: 18px;
	color: #082E3A;
	line-height: 1.4;
	padding-top: 15px;
	transition: color .3s ease;
}
.relatedArea .col--3 a:hover p {
	color: #2970E0;
}

/*-----------------------------------------------
	talk_summary
-----------------------------------------------*/
.sec__content-talk_summary {
	background: #F5F9FD;
	padding: 0 10%;
	border: 1px solid #2970E0;
	margin-top: 60px;
}
.sec__content-talk_summary p {
	background: hsl(210, 67%, 98%);
	padding: 20px 8%;
	position: relative;
	color: #082E3A;
	font-weight: 600;
}
.sec__content-talk_summary p::before,
.sec__content-talk_summary p::after {
	content: "";
	width: 100%;
	height: 1px;
	background: #F5F9FD;
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
}
.sec__content-talk_summary p::before {
	top: -1px;
}
.sec__content-talk_summary p::after {
	bottom: -1px;
}

.sec__content-talk li,
.sec__content-talk-img,
.sec__content-talk_summary {
	opacity: 0;
	transform: translateY(30px);
	transition: all 0.5s ease-out;
}
.sec__content-talk li.is-visible,
.sec__content-talk-img.is-visible,
.sec__content-talk_summary.is-visible {
	opacity: 1;
	transform: translateY(0);
}

/*+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 Tablet
+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
@media (max-width: 1023px) {
	/*=============================================================
	contentsBlock
	=============================================================*/
	.contentsBlock {
		display: block;
		margin-bottom: 100px;
	}
	/*=============================================================
	scrollMenuArea
	=============================================================*/
	#scrollMenuArea {
		width: 100%;
		max-width: none;
		height: 200px;
		margin-bottom: 20px;
	}
	.scrollMenu li a span.scrollMenu__num span {
		position: relative;
		top: 1px;
		left: 1px;
	}
	/*-----------------------------------------------
		pageTtl
	-----------------------------------------------*/
	.ttl-h1 span.sub-ttl {
		margin-bottom: 15px;
	}
	.accordionMenu {
		display: block;
		background: #2970E0;
		box-shadow: 4px 4px 15px 0px #00000033;
		text-align: center;
		color: #fff;
		font-weight: 600;
		padding: 13px 0;
		border-radius: 20px;
		max-width: 450px;
		margin: 0 auto;
		position: relative;
		width: 450px;
		z-index: 1;
	}
	.accordionMenu::before,
	.accordionMenu::after {
		content: "";
		width: 16px;
		height: 2px;
		background: #fff;
		position: absolute;
		top: 50%;
		right: 20px;
		transform: translateY(-50%);
		transition: transform 0.3s;
	}
	.accordionMenu::after {
		transform: translateY(-50%) rotate(90deg);
	}
	.accordionMenu.active::after {
		transform: translateY(-50%) rotate(0);
	}
	/*-----------------------------------------------
		scrollMenu
	-----------------------------------------------*/
	.scrollMenu {
		max-width: 450px;
		max-height: 0;
		overflow: hidden;
		transition: max-height 0.3s ease;
		box-shadow: 4px 4px 15px 0px #00000033;
		border-radius: 20px;
		background: #fff;
		z-index: 1;
		position: relative;
		top: 7px;
		left: 50%;
		transform: translateX(-50%);
	}
	.scrollMenu.fixed {
		position: fixed;
		top: 122px;
		z-index: 1;
		width: 85%;
	}
	.scrollMenu ul {
		padding: 20px;
	}
	.scrollMenu li a {
		font-size: 15px;
	}
	.scrollMenu li a span.scrollMenu__num {
		width: 30px;
		height: 30px;
		font-size: 14px;
	}
	.scrollMenu li a.current span.scrollMenu__num {
		background: #fff;
	}
	.scrollMenu li a.current span.scrollMenu__num::before {
		content: none;
	}
	.scrollMenu li a.current span.scrollMenu__num span {
		color: #333;
	}

	/*=============================================================
	contentsArea
	=============================================================*/
	#contents {
		padding-bottom: 0;
	}
	section {
		margin-top: 80px;
	}
	section+section {
		margin-top: 80px;
	}
	/*=============================================================
	contentsArea
	=============================================================*/
	[id]::before {
		height: 30px;
		margin-top: -30px;
	}
	/*-----------------------------------------------
		sec__ttl
	-----------------------------------------------*/
	.sec__ttl-num {
		display: block;
		margin-left: 0;
	}
	.ttl-sub {
		top: 4px;
		left: 0;
		display: flex;
		align-items: flex-start;
		font-size: 36px;
		line-height: 1;
	}
	.ttl-sub span {
		writing-mode: lr;
		font-size: 12px;
		padding-top: 6px;
		margin-right: 8px;
	}
	.sec__ttl-txt {
		padding: 0;
		margin: 10px 0 0;
	}
	.ttl-h2 {
		font-size: 14px;
		padding-bottom: 15px;
	}
	.ttl-h2 span:first-of-type {
		font-size: 14px;
	}
	.ttl-h2 span:last-of-type {
		font-size: 16px;
	}
	.sec__ttl-img img {
		height: 100%;
		max-height: 300px;
	}
	.sec__ttl-bg {
		height: 130px;
		inset-inline: 50%;
		margin-inline: -50vw;
	}
	/*-----------------------------------------------
		sec__content 
	-----------------------------------------------*/
	.sec__content {
		margin: 30px 0;
	}
	.sec__content-talk li {
		grid-template-columns: 70px 1fr;
		gap: 10px;
	}
	.sec__content-talk li .atn {
		font-size: 12px;
	}
	.sec__content-talk-profile img {
		width: 55px;
	}
	.sec__content-talk-profile p {
		font-size: 12px;
	}
	.sec__content-talk li>p {
		font-size: 14px;
	}
	.sec__content-talk-img {
		margin: 30px auto;
	}
	/*-----------------------------------------------
		relatedArea
	-----------------------------------------------*/
	.relatedArea .ttl-h2 {
		font-size: 26px;
		margin-bottom: 0;
	}
	.relatedArea .ttl-h2 span {
		font-size: 14px;
	}
	.relatedArea .ttl-h2::before {
		left: 200px;
	}
	/*-----------------------------------------------
		talk_summary
	-----------------------------------------------*/
	.sec__content-talk_summary {
		padding: 0 5%;
		margin-top: 30px;
	}
	.sec__content-talk_summary p {
		padding: 20px 3%;
		font-size: 14px;
	}
}

/*+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 SP
+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
@media (max-width: 767px) {
	#contents {
		padding-bottom: 0;
	}
	.sp-none {
		display: none;
	}
	/*=============================================================
	topicPathArea
	=============================================================*/
	#topicPathArea {
		padding: 14px 0 10px;
	}
	/*=============================================================
	scrollMenuArea
	=============================================================*/
	.scrollMenu {
		width: 100%;
	}
	.accordionMenu,
	.scrollMenu,
	.accordionMenu.fixed,
	.scrollMenu.fixed {
		width: 350px;
		margin-top: 10px;
		z-index: 3;
	}
	/*=============================================================
	contentsBlock
	=============================================================*/
	.contentsBlock {
		display: block;
	}
	/*=============================================================
	contentsArea
	=============================================================*/
	/*-----------------------------------------------
		sec__ttl
	-----------------------------------------------*/
	.sec__ttl-img img {
		min-height: 165px;
	}
	.sec__ttl-bg {
		min-height: 130px;
		height: 40%;
	}
	/*-----------------------------------------------
		relatedArea
	-----------------------------------------------*/
	.relatedArea .col--3 {
		grid-template-columns: 1fr 1fr;
		gap: 30px;
	}
	.relatedArea .related__content p {
		font-size: 16px;
	}
}
@media (max-width: 450px) {
	/*-----------------------------------------------
		relatedArea
	-----------------------------------------------*/
	.relatedArea .col--3 {
		grid-template-columns: 1fr;
		width: 80%;
		margin: 30px auto;
	}
	#ac05 .sec__ttl-bg {
		padding-top: 50px;
	}
}