@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Roboto:wght@100..900&display=swap');
/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
	box-sizing: border-box;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
	display: block;
}

body {
	line-height: 1;
}

ol,
ul {
	list-style: none;
}

blockquote,
q {
	quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
	content: '';
	content: none;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

:root {
	--primary: #0E69B9;
	--black: #464646;
	--font-noto: 'Noto Sans JP', sans-serif;
	--font-roboto: 'Roboto', sans-serif;
	/* PC基準：1440pxで16px */
	--fs-base-pc: calc(100vw / 90);
	/* 1440 ÷ 16 ≈ 90 */
	--fs-base-tb: calc(100vw / 64);
	/* 1024 ÷ 16 ≈ 64 */
	/* SP基準：375pxで16px */
	--fs-base-sp: calc(100vw / 23.4375);
	/* 375 ÷ 16 = 23.4375 */
}

.bl_topInteviewHtml {
	font-family: var(--font-noto);
	font-weight: 400;
	font-style: normal;
	font-size: var(--fs-base-pc);
	line-height: 1.5;
	color: var(--black);
}

@media (max-width: 1024px) {
	.bl_topInteviewHtml {
		font-size: var(--fs-base-tb);
		width: 960px;
	}
}

@media (max-width: 768px) {
	.bl_topInteviewHtml {
		font-size: var(--fs-base-sp);
		width: 100%;
	}
}


.bl_topInteviewBody {
	margin: 0;
}

.bl_topInteviewHtml img {
	display: block;
	max-width: 100%;
	height: auto;
	width: 100%;
}

.sp_only {
	display: none;
}

@media (max-width: 768px) {
	.sp_only {
		display: block;
	}
}


/* FV 
================================================== */

.bl_topInteviewFvSection {
	position: relative;
	background-image: url(../img/fv-main-pc.jpg);
	background-size: contain;
	background-position: top;
	background-repeat: no-repeat;
	padding-top: calc(374 / 16 * 1rem);
	padding-bottom: calc(172 / 16 * 1rem);
}

@media (max-width: 768px) {
	.bl_topInteviewFvSection {
		padding-top: calc(308 / 16 * 1rem);
		padding-bottom: 0;
		background-image: url(../img/fv-main-sp.jpg);
		background-size: contain;
	}
}

.bl_topInteviewFvWave {
	position: absolute;
	left: 0;
	bottom: calc(-1 / 16 * 1rem);
	max-width: calc(100% / 16 * 1rem);
}

@media (max-width: 768px) {
	.bl_topInteviewFvWave {
		bottom: 0;
		padding-bottom: calc(77 / 16 * 1rem);
	}

	.bl_topInteviewFvWave:after {
		content: '';
		position: absolute;
		width: 100%;
		height: 100%;
		background-color: #fff;
		bottom: 0;
		left: 0;
		z-index: 0;
		height: calc(77 / 16 * 1rem);
	}
}

.bl_topInteviewFvShapeLeft,
.bl_topInteviewFvShapeRight {
	position: absolute;
}

.bl_topInteviewFvShape_sp {
	display: none;
}

@media (max-width: 768px) {

	.bl_topInteviewFvShapeLeft,
	.bl_topInteviewFvShapeRight {
		display: none;
	}

	.bl_topInteviewFvShape_sp {
		position: absolute;
		width: 100%;
		display: block;
		top: calc(124 / 16 * 1rem);
		left: 0;
		z-index: 0;
	}
}

.bl_topInteviewFvShapeLeft {
	left: 0;
	bottom: calc(-43 / 16 * 1rem);
	max-width: calc(550 / 16 * 1rem);
}

.bl_topInteviewFvShapeRight {
	right: 0;
	top: calc(21 / 16 * 1rem);
	max-width: calc(383 / 16 * 1rem);
}

.bl_topInteviewFvCopy {
	position: absolute;
	bottom: calc(-43 / 16 * 1rem);
	left: 0;
	z-index: 0;
	width: 100%;
}

@media (max-width: 768px) {
	.bl_topInteviewFvCopy {
		z-index: 0;
		bottom: calc(51 / 16 * 1rem);
	}
}

.bl_topInteviewFvContentWrappers {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: auto auto;
	justify-content: space-between;
	align-items: flex-end;
	gap: calc(120 / 16 * 1rem);
	max-width: calc(1160 / 16 * 1rem);
	margin-inline: auto;
}

@media (max-width: 1024px) {
	.bl_topInteviewFvContentWrappers {
		padding-inline: calc(20 / 16 * 1rem);

	}
}

@media (max-width: 768px) {
	.bl_topInteviewFvContentWrappers {
		grid-template-columns: 1fr;
		gap: calc(16 / 16 * 1rem);
		max-width: 100%;
	}
}


.bl_topInteviewFvContentTitle {
	padding-bottom: calc(41 / 16 * 1rem);
}

@media (max-width: 768px) {
	.bl_topInteviewFvContentTitle {
		padding-bottom: 0;
	}
}

.bl_topInteviewFvContentTitleMain {
	color: var(--primary);
	font-size: calc(20 / 16 * 1rem);
	font-weight: 700;
	line-height: 1.8;
	margin-bottom: calc(34 / 16 * 1rem);
}

@media (max-width: 768px) {
	.bl_topInteviewFvContentTitleMain {
		font-size: calc(16 / 16 * 1rem);
	}
}

.el_topInteviewFvContentTitle_main_text_line {
	padding-inline: calc(10 / 16 * 1rem);
	border-radius: calc(4 / 16 * 1rem);
	background-image: linear-gradient(90deg, rgba(255, 255, 255, 1));
}

@media (max-width: 768px) {
	.el_topInteviewFvContentTitle_main_text_line_sp {
		padding-inline: calc(10 / 16 * 1rem);
		border-radius: calc(4 / 16 * 1rem);
		background-image: linear-gradient(90deg, rgba(255, 255, 255, 1));
	}
}


.el_topInteviewFvContentTitle_sub_text {
	color: #FFF;
	font-size: calc(40 / 16 * 1rem);
	font-weight: 700;
	line-height: 1.6;
}

@media (max-width: 768px) {
	.el_topInteviewFvContentTitle_sub_text {
		font-size: calc(32 / 16 * 1rem);
	}
}

.el_topInteviewFvContentTitle_sub_text_line {
	padding-inline: calc(10 / 16 * 1rem);
	border-radius: calc(4 / 16 * 1rem);
	background-image: linear-gradient(90deg, rgba(14, 105, 185, 1));
}

@media (max-width: 768px) {
	.el_topInteviewFvContentTitle_sub_text_line_sp {
		padding-inline: calc(10 / 16 * 1rem);
		border-radius: calc(4 / 16 * 1rem);
		background-image: linear-gradient(90deg, rgba(14, 105, 185, 1));
	}
}

.bl_topInteviewFvContentWrappers_name {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	gap: calc(4 / 16 * 1rem);
}

.el_topInteviewFvContentWrappers_name_main {
	color: var(--black);
	font-size: calc(24 / 16 * 1rem);
	font-weight: 700;
	line-height: 1.6;
	width: fit-content;
}

@media (max-width: 768px) {
	.el_topInteviewFvContentWrappers_name_main {
		font-size: calc(20 / 16 * 1rem);
	}
}

.el_topInteviewFvContentWrappers_name_sub {
	color: var(--black);
	font-size: calc(12 / 16 * 1rem);
	font-weight: 400;
	line-height: 1.6;
	letter-spacing: calc(0.48 / 12 * 1em);
	width: fit-content;
}

@media (max-width: 768px) {
	.el_topInteviewFvContentWrappers_name_sub {
		font-size: calc(12 / 16 * 1rem);
	}
}

.el_topInteviewFvContentWrappers_name_line {
	padding-inline: calc(4 / 16 * 1rem);
	background-image: linear-gradient(90deg, rgb(255, 255, 255));
}

/* Message Section
================================================== */

.bl_topInteviewMessageSection {
	position: relative;
	padding-block: calc(80 / 16 * 1rem);
}

@media (max-width: 768px) {
	.bl_topInteviewMessageSection {
		padding-inline: calc(20 / 16 * 1rem);
	}
}

.bl_topInteviewMessageSection_shape {
	position: absolute;
	left: 0;
	top: calc(319 / 16 * 1rem);
	max-width: calc(214 / 16 * 1rem);
	z-index: -1;
}

.bl_topInteviewMessageSection_shape02 {
	position: absolute;
	left: 0;
	bottom: calc(345 / 16 * 1rem);
	max-width: calc(227 / 16 * 1rem);
	z-index: -1;
}

.bl_topInteviewMessageSection_shape03 {
	position: absolute;
	right: 0;
	bottom: calc(799 / 16 * 1rem);
	max-width: calc(205 / 16 * 1rem);
	z-index: -1;
}

.bl_topInteviewMessageSection_shape_sp ,
.bl_topInteviewMessageSection_shape02_sp {
	display: none;
}
@media (max-width: 768px) {
	.bl_topInteviewMessageSection_shape ,
	.bl_topInteviewMessageSection_shape02 ,
	.bl_topInteviewMessageSection_shape03 {
		display: none;
	}

	.bl_topInteviewMessageSection_shape_sp {
		position: absolute;
		display: block;
		left: 0;
		top: calc(945 / 16 * 1rem);
		z-index: -1;
		max-width: calc(150 / 16 * 1rem);
	}

	.bl_topInteviewMessageSection_shape02_sp {
		position: absolute;
		display: block;
		right: 0;
		bottom: calc(1400 / 16 * 1rem);
		z-index: -1;
		max-width: calc(95 / 16 * 1rem);
	}
}

.bl_topInteviewMessageSection_inner {
	display: flex;
	flex-direction: column;
	gap: calc(64 / 16 * 1rem);
	max-width: calc(860 / 16 * 1rem);
	margin-inline: auto;
}

@media (max-width: 768px) {
	.bl_topInteviewMessageSection_inner {
		gap: calc(40 / 16 * 1rem);
		max-width: 100%;
	}
}

.bl_topInteviewMessageSection_txtContainer {
	display: flex;
	flex-direction: column;
	gap: calc(40 / 16 * 1rem);
}

.bl_topInteviewMessageSection_txtContainer p {
	color: #464646;
	font-size: calc(16 / 16 * 1rem);
	font-weight: 400;
	line-height: 1.5;
	letter-spacing: calc(0.64 / 16 * 1em);
	margin: 0;
}


.bl_topInteviewMessageSection_imageContainer img {
	display: block;
	max-width: 100%;
	height: auto;
	width: 100%;
	border-radius: calc(20 / 16 * 1rem);
	object-fit: cover;
	aspect-ratio: 410 / 240;
}

.bl_topInteviewMessageSection_imageContainer_column {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(min(100%, calc(410 / 16 * 1rem)), 1fr));
	gap: calc(40 / 16 * 1rem);
	align-items: center;
}


@media (max-width: 768px) {
	.bl_topInteviewMessageSection_imageContainer_column {
		gap: calc(16 / 16 * 1rem);
	}
	
	.bl_topInteviewMessageSection_txtContainer .bl_topInteviewMessageSection_imageContainer_column {
		gap: calc(40 / 16 * 1rem);
	}
}



.bl_contents_button .txt-small {
	font-size: calc(16 / 16 * 1rem);
	letter-spacing: calc(0.16 / 16 * 1rem);
}

.bl_contents_button {
	color: #66C2FF;
	font-family: "Noto Sans JP";
	font-size: calc(24 / 16 * 1rem);
	font-weight: 700;
	line-height: 100%;
	text-decoration: none;
	padding-top: calc(14 / 16 * 1rem);
	padding-bottom: calc(18 / 16 * 1rem);
	padding-inline: calc(64 / 16 * 1rem);
	text-align: center;
	max-width: calc(400 / 16 * 1rem);
	width: 90%;
	display: block;
	margin-inline: auto;
	border-radius: calc(100 / 16 * 1rem);
	border: calc(1 / 16 * 1rem) solid #66C2FF;
	background: #FFF;
	box-shadow: 0 calc(8 / 16 * 1rem) calc(20 / 16 * 1rem) 0 rgba(92, 194, 220, 0.25), 0 calc(1 / 16 * 1rem) calc(2 / 16 * 1rem) 0 rgba(16, 24, 40, 0.05);
	transition: transform 0.5s ease, box-shadow 0.5s ease;
	box-sizing: border-box;
	position: relative;
	margin-bottom: calc(80 / 16 * 1rem);
	margin-top: calc(80 / 16 * 1rem);
	transition: 0.3s ease;
}

@media (max-width: 767px) {
	.bl_contents_button {
		font-size: calc(16 / 16 * 1rem);
		line-height: 1.2;
		padding: calc(8 / 16 * 1rem) 0;
		margin-block: 0;
	}
}

@media(hover: hover) {
	.bl_contents_button:hover {
		border: 1px solid #66C2FF;
		background: #DFF9FF;
		box-shadow: 0 16px 32px 0 rgba(92, 194, 220, 0.30);
	}
}

.bl_contents_button::before {
	content: '';
	position: absolute;
	top: 50%;
	bottom: unset;
	left: calc(24 / 16 * 1rem);
	width: calc(24 / 16 * 1rem);
	height: calc(24 / 16 * 1rem);
	mask-image: url(../img/btn_arrow.svg);
	mask-size: cover;
	mask-position: center;
	mask-repeat: no-repeat;
	background-color: #5CC2DC;
	z-index: 11;
	transform: rotate(180deg) translateY(50%);
	transition: 0.3s ease;
}
@media(hover: hover) {
	.bl_contents_button:hover::before {
		left: calc(19 / 16 * 1rem);
	}
}