@charset "utf-8";
/*****************************************
common-contents.css
共通コンテンツ用のスタイル
******************************************/
*,
*::before,
*::after {
	box-sizing: border-box;
	font-family: "Yu Gothic", "YuGothic", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Meiryo", sans-serif;
}
a,
button {
	color: inherit !important;
  border: none;
  background: transparent;
  cursor: pointer;
  text-decoration: none !important;
  font-size: 16px;
  transition: .3s ease;
}
@media (hover: hover) {
  a:hover,
  button:hover {
    cursor: pointer;
    text-decoration: none;
  }
}
*:focus-visible {
	outline: 3px solid #FFD400;
}
.cnt {
	padding: 0 20px;
	max-width: 1200px;
	width: 100%;
	margin: 0 auto;
}
.title-section {
	text-align: center;
	padding-top: 60px;
	margin: 90px auto 60px;
}
.title-section h2 {
	font-size: 46px;
	line-height: 1.5;
	font-weight: normal;
}
.title-section p {
	font-size: 16px;
	line-height: 1.5;
	margin-top: 75px;
	text-align: left;
}
@media (max-width:767px) {
	span {
		display: inline-block;
	}
	.title-section {
		padding-top: 30px;
		margin: 30px auto 40px;
	}
	.title-section h2 {
		font-size: 24px;
	}
	.title-section p {
		font-size: 15px;
		margin-top: 60px;
	}
}
@media (hover: hover) {
	.btn-reverse:hover {
		background-color: var(--dark-color);
		color: var(--light-color) !important;
		border: 1px solid var(--dark-color);
	}
	.btn-reverse:hover::after,
	.btn-reverse:hover::before {
		color: var(--light-color) !important;
		border-color: var(--light-color);
	}
	.btn-reverse:hover::after {
		background-color: var(--light-color) !important;
	}
}
/*****************************************
矢印
******************************************/
.right-arrow {
  position: relative;
  display: inline-block;
  width: 77px;
  height: 1px;
  margin-top: 10.6px;
  border-radius: 9999px;
  background-color: var(--line-color);
}
.right-arrow::before {
  content: "";
  position: absolute;
  top: calc(50% - 0.5px);
  right: 0;
  width: 16px;
  height: 1px;
  border-radius: 9999px;
  background-color: var(--line-color);
  transform: rotate(45deg);
  transform-origin: calc(100% - 0.5px) 50%;
}
/*****************************************
フェード表示
******************************************/
.fadeup {
	opacity: 0;
	transform: translateY(60px);
	transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1), transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
	will-change: opacity, transform;
}
.fadeup.is-active {
	opacity: 1;
	transform: translateY(0);
}
/*****************************************
インタビュー
******************************************/
.sec-text.interview-sec-text {
    display: table;
    margin: 60px auto 30px;
    text-align: left;
}
@media screen and (max-width: 767px) {
	.sec-text.interview-sec-text {
		margin: 60px auto;
	}
}
.interview {
	position: relative;
	z-index: 0;
	background-color: #F0F4FF;
	padding: 30px 0 200px;
}
@media (max-width:767px) {
	.interview {
		padding: 30px 0 0;
		margin-top: 20px;
	}
	.interview .title-section{
		margin: 30px 0;
	}
}
.interview .title-section h2 {
	position: relative;
}
.inv-list {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 86px;
	margin: 70px auto 0;
	position: relative;
	max-width: 953px;
}
@media (max-width:767px) {
	.inv-list {
		margin: 30px auto 0;
		padding-bottom: clamp(60px, 18vw, 140px);
	}
}
.inv-more {
	display: inline-block;
	border: 1px solid var(--btn-color);
	padding: 14px 75px;
	font-size: 16px;
	font-weight: bold;
	color: var(--btn-color);
	text-decoration: none;
	background-color: var(--light-color);
}
.inv-item {
	flex: 0 1 260px;
}
.inv-card {
	width: 100%;
	text-align: center;
}
.inv-photo {
	width: 100%;
}
.inv-photo img {
	width: 100%;
	height: auto;
	display: block;
	max-width: 260px;
	margin: 0 auto;
}
@media screen and (max-width: 767px) {
	.inv-photo img {
		max-width: 145px;
	}
}
.inv-job {
	margin-top: 25px;
	font-size: 16px;
	line-height: 1.6;
	color: var(--text-color);
}
.inv-name {
	margin-top: 20px;
	padding-bottom: 20px;
	font-size: 20px;
	line-height: 1.6;
	color: var(--text-color);
	border-bottom: 1px solid var(--line-color);
}
@media screen and (max-width: 767px) {
	.inv-job {
		font-size: 15px;
	}
	.inv-name {
		margin-top: 15px;
		padding-bottom: 15px;
		font-size: 16px;
	}
}
.inv-year {
	margin-top: 15px;
	font-size: 20px;
	line-height: 1.6;
	color: var(--text-color);
}
@media screen and (max-width: 767px) {
	.inv-year {
		font-size: 15px;
	}
}
.inv-more-wrap {
	margin-top: 28px;
}
@media screen and (max-width: 767px) {
	.inv-more-wrap {
		margin-top: 15px;
	}
}
.inv-more {
	display: block;
	width: 100%;
	padding: 18px 10px;
	border: 1px solid var(--btn-color);
	color: var(--btn-color);
	text-decoration: none;
	font-size: 16px;
	line-height: 1;
	font-weight: bold;
	max-width: 235px;
	margin: 0 auto;
	transition: .3s;
}
@media (max-width: 1000px) {
	.inv-item {
		flex: 0 1 calc(50% - 20px);
	}
}
@media (max-width: 767px) {
	.inv-more {
		max-width: 142px;
	}
	.inv-item {
		flex: 0 1 100%;
	}
	.inv-txt {
		max-width: 180px;
		margin: 0 auto;
	}
}
/*****************************************
フロートボタン
******************************************/
#footer .content .free {
	position: relative;
}
.float-btn-wrap {
	position: absolute;
	height: 134px;
	width: 100%;
	top: -134px;
	z-index: 10;
}
@media (max-width: 767px) {
	.float-btn-wrap {
		height: 82px;
		top: -82px;
	}
}
.float-btn {
	position: fixed;
	right: 0;
	bottom: 0;
	z-index: 10;
	opacity: 0;
	pointer-events: none;
	transition: opacity .3s ease, transform .3s ease;
}
.float-btn.is-stopped {
	position: absolute;
	right: 0;
	bottom: 0;
	top: auto;
	z-index: 10;
}
.float-btn.is-active {
	opacity: 1;
	pointer-events: auto;
}
.float-btn-link {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 2px;
	width: 116px;
	height: 134px;
	background-color: var(--dark-color);
	color: var(--light-color) !important;
	text-decoration: none;
	border-radius: 40px 0 0;
	position: relative;
	z-index: 10;
	pointer-events: auto;
}
.float-btn-en {
	font-size: 14px;
	font-weight: bold;
}
.float-btn-ja {
	font-size: 16px;
	font-weight: bold;
}
@media (max-width: 767px) {
	.float-btn-link {
		width: 68px;
		height: 82px;
		gap: 3px;
	}
	.float-btn-en {
		font-size: 10px;
		margin-top: 5px;
	}
	.float-btn-ja {
		font-size: 12px;
	}
}
.float-btn-link {
	position: relative;
	overflow: hidden;
}
.float-btn-link::after {
	content: "";
	position: absolute;
	inset: 0;
	background: rgba(255, 255, 255, 0.35);
	opacity: 0;
	transition: opacity .3s ease;
}
.float-btn-link>* {
	position: relative;
	z-index: 1;
}
@media (hover: hover) {
	.float-btn-link:hover::after {
		opacity: 1;
	}
}