@charset "utf-8";
.loading {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: linear-gradient(90deg, #ffffff, #bae3ff);
	z-index: 9999; /* 一番手前に表示 */
	display: flex;
	justify-content: center;
	align-items: center;
	transition: opacity 0.5s ease, visibility 0.5s ease; /* 消える時のふわっとしたアニメーション */
}

/* 読み込み完了後にJSでこのクラスを付与して非表示にする */
.loading.is-loaded {
	opacity: 0;
	visibility: hidden;
	pointer-events: none; /* クリックを透過させる */
}

/* SVGを囲む親要素 */
.loading-container {
  position: relative;
  width: 100%;
  width: 451px; /* イラレのviewBoxに合わせた最大幅 */
  height: 157px;
  margin: 0 auto;
}

/* 2つのSVGを共通で重ねる設定 */
.loading-svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* 1つ目の白：そのまま表示 */
.svg-white {
  z-index: 1;
}

/* 2つ目の青：初期状態は clip-path で「右側100%を削る（＝非表示）」 */
.svg-blue {
  z-index: 2;
  clip-path: inset(0 100% 0 0);
}

/* jQueryで「.is-loading」クラスがついたらアニメーション開始
   「3s（3秒）」を変更すれば、好きな遅さに変更できます 
*/
.is-loading .svg-blue {
  animation: revealLeftToRight 3s linear forwards;
}

/* 左から右へゆっくり可視化するキーフレーム */
@keyframes revealLeftToRight {
  0% {
    clip-path: inset(0 100% 0 0); /* 最初は完全に隠れている */
  }
  100% {
    clip-path: inset(0 0% 0 0);   /* 最後は完全に表示される */
  }
}

.top-mv{
	position: relative;
	z-index: 2;
	height: 200vh; 
}

.mv-img img,
.illust-sec img{
	width: 100%;
}

.top-slider{
	width: 100%;
	height: 100%;
}

.top-slider .slick-list,
.top-slider .slick-track,
.top-slider li{
	height: 100%;
}

.top-slider li img{
	object-fit: cover;
	object-position: center;
	background-position: center;
	height: 100%;
	width: 100%;
}

.scrolling-wrapper {
	position: sticky;
	top: 0;
	width: 100%;
	height: 100vh;
	display: flex;
	justify-content: center;
	align-items: center;
	overflow: hidden;
}

.mv-frame {
	width: 100%;
	height: 100vh;
	position: relative;
	will-change: transform;
	display: flex;
	justify-content: center;
	align-items: center;
}

.scroll{
	font-size: 17px;
	letter-spacing: 0.1em;
	display: flex;
	flex-direction: column;
	align-items: center;
	height: 80px;
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	bottom: -20px;
}

.scroll::after {
	content: "";
	background: #595757;
	height: 40px;
	width: 2px;
	display: block;
	margin-top: 5px;
	position: relative;
	animation: pathmove 1.4s ease-in-out infinite;
	opacity: 0;
}

@keyframes pathmove{
	0%{
		height:0;
		top:0;
		opacity: 0;
	}
	30%{
		height: 40px;
		opacity: 1;
	}
	100%{
		height: 0;
		top: 40px;
		opacity: 0;
	}
}

.main-contents.top{
	padding-top: 160px;
}

.main-contents:before {
	content: "";
	background: url(../images/common/bg-icon.png);
	background-size: 100% auto;
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: calc(100% + 120px);
	z-index: 0;
	transform: translateY(var(--parallax-offset));
	will-change: transform;
}

.main-contents.top section{
	position: relative;
	z-index: 1;
}

.main-contents.top section.flex{
	gap: 120px;
}

.main-contents.top .imgs{
	width: 46vw;
}


.main-contents.top .imgs .img1{
	position: relative;
	z-index: 2;
}

.main-contents.top .imgs .img2{
	position: relative;
	z-index: 3;
	width: 87%;
}

.main-contents.top .imgs .img4{
	position: relative;
	z-index: 3;
	width: 37%;
}

.main-contents.top .sec02 .imgs .img4{
	margin-left: auto;
}

.main-contents.top .img3{
	position: absolute;
	right: 0;
	bottom: 0;
	width: 17vw;
}

.main-contents.top .sec01 h1.pc_img{
	width: 300px;
}

.main-contents.top .sec03 .imgs .img2{
	margin-top: -85px;
}

.line-p{
	font-size: 16px;
	letter-spacing: 0.15em;
	line-height: 3.12;
}

.main-contents.top .sec01 .line-p{
	margin-top: 75px;
	margin-left: auto;
	display: table;
}

.main-contents.top section.flex:nth-child(even) {
	flex-direction: row-reverse;
	gap: 200px;
}

.main-contents.top section.flex:nth-child(even) .img2{
	margin-left: auto;
}

.main-contents.top section.sec02{
	margin-top: -200px;
}

.main-contents.top section.sec03{
	margin-top: -400px;
}

.lower-mv{
	background: url(../images/business/lower-mv-bg.jpg) no-repeat;
	background-size: 100% auto;
	padding-top: 50px;
	z-index: 3;
}

.lower-mv h1{
	color: #ffffff;
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0.4em;
	text-align: center;
	margin-bottom: 30px;
}

.lower-mv h1 span{
	display: block;
	font-size: 44px;
	font-weight: 700;
	letter-spacing: 0.2em;
}

body.lower{
    background-image: linear-gradient(90deg, #ffffff 75%, #fffff0 100%);
}

.main-contents.business-page:before{
	background: url(../images/business/bg-icon.png);
	background-size: 100% auto;
}

.main-contents.people-page:before{
	background: url(../images/people/bg-icon.png);
	background-size: 100% auto;
}

.main-contents.career-page:before{
	background: url(../images/career/bg-icon.png);
	background-size: 100% auto;
}

.main-contents.about-page:before{
	background: url(../images/about/bg-icon.png);
	background-size: 100% auto;
}

.main-contents.entry-page:before{
	background: url(../images/entry/bg-icon.png);
	background-size: 100% auto;
}

.main-contents.talk-page:before,
.main-contents.interview-page:before{
	background: none;
}

.page-ex-sec,
.talk-tl-sec{
	padding: 110px 0 90px;
}

.interview-tl-sec{
	padding: 0 0 90px;
}

.v-tl{
	color: var(--blue);
	writing-mode: vertical-rl;
}

.page-ex-sec h2{
	font-size: 23px;
	font-weight: 400;
	letter-spacing: 0.15em;
	line-height: 58px;
	margin: 0 auto 50px;
	display: block;
	width: fit-content;
}

.page-ex-sec h2 span{
	display: inline-block;
	transform: rotate(-90deg);
	position: relative;
	left: 2px;
	margin: 5px 0;
}

.page-ex-sec p{
	color: var(--blue);
	font-size: 18px;
	font-weight: 500;
	letter-spacing: 0.15em;
	line-height: 41px;
	text-align: center;
}

.main-contents.lower-page{
	padding-bottom: 7%;
}

.main-contents.lower-page .position-ex{
	padding-bottom: 100px;
}

.posi-list{
	margin: 60px auto 0;
	gap: 60px;
}

.posi-list .blo{
	max-width: 178px;
}

.posi-list .blo h3{
	font-size: 16px;
	font-weight: 500;
	letter-spacing: 0.15em;
	margin-bottom: 15px;
	padding-bottom: 10px;
	position: relative;
}

.posi-list .blo h3::after{
	content: "";
	height: 5px;
	width: 100%;
	position: absolute;
	left: 0;
	bottom: 0;
}

.posi-list .blo h3.doboku::after{
	background-image: linear-gradient(90deg, #ecded2, #c9a063);
}

.posi-list .blo h3.kenchiku::after{
	background-image: linear-gradient(90deg, #ffffff, #f8a664);
}

.posi-list .blo h3.kankyo::after{
	background-image: linear-gradient(90deg, #f4ffe1, #abd414);
}

.posi-list .blo h3.energy::after{
	background-image: linear-gradient(90deg, #ffffca, #faee00);
}

.posi-list .blo p{
	font-size: 14px;
	font-weight: 400;
	line-height: 25px;
	text-align: justify;
}

.sec-tl{
	color: var(--blue);
	font-size: 14px;
	font-weight: 500;
	letter-spacing: 0.15em;
	margin-bottom: 20px;
}

.sec-tl span{
	font-size: 40px;
	font-weight: 700;
	letter-spacing: 0.1em;
	margin-right: 25px;
}

.f-14{
	font-size: 14px;
	letter-spacing: 0.075em;
	line-height: 25px;
}

.main-contents.lower-page .video-sec{
	padding: 120px 0 0;
}

.lower-mv.third-mv{
	height: 460px;
	margin-bottom: 195px;
}

.third-mv .mv-img{
	max-width: 900px;
	margin: 0 auto;
}

.talk-tl-sec .img-tl{
	width: 95px;
}

.talk-tl-sec h2{
	color: var(--blue);
	font-size: 40px;
	font-weight: 500;
	text-align: center;
	margin-bottom: 10px;
	position: relative;
}

.talk-tl-sec h2::before{
	content: "「";
}

.talk-tl-sec h2::after{
	content: "」";
}

.talk-tl-sec p{
	color: #595757;
	font-size: 15px;
	font-weight: 500;
	text-align: center;
	letter-spacing: 0.15em;
	line-height: 27px;
}

.member-lsit-sec h3{
	font-size: 12px;
	font-weight: 400;
	letter-spacing: 0.1em;
	margin-bottom: 50px;
	text-align: center;
}

.member-lsit{
	gap: 50px;
}

.interview-sec .member-lsit {
	gap: 40px;
}

.member-lsit li a{
	display: block;
}

.member-lsit .img{
	display: table;
	margin: 0 auto;
	width: 180px;
	height: 200px;
	overflow: hidden;
}

.member-lsit .txt{
	border-left: 1px solid var(--blue);
	border-right: 1px solid var(--blue);
	color: var(--blue);
	display: table;
	margin: 10px auto 0;
	padding: 10px 0;
	text-align: center;
	width: 180px;
}

.member-lsit .txt .posi{
	font-size: 19px;
	font-weight: 500;
	letter-spacing: 0.15em;
}

.member-lsit .txt h4{
	color: var(--blue);
	font-size: 12px;
	font-weight: 400;
	letter-spacing: 0.075em;
}

.member-lsit .txt h4 span{
	font-size: 44px;
	font-weight: 500;
	margin-right: 5px;
}

.member-lsit .txt .year{
	font-size: 12px;
	font-weight: 400;
	letter-spacing: 0.15em;
}

.talk-blue-bg01::before,
.talk-blue-bg02::before{
	content: "";
	background-image: linear-gradient(to right, #ffffff, #cff1ff);
	position: absolute;
	left: 0;
	width: 100%;
	z-index: -2;
}

.talk-blue-bg01::before{
	top: -250px;
	height: calc(100% + 590px);
}

.talk-blue-bg02::before{
	top: 330px;
	height: calc(100% + 150px);
}

.talk-main-box{
	padding: 130px 0 100px;
}

.talk-main-box h5,
.interview-main-box h5{
	color: var(--blue);
	font-size: 18px;
	font-weight: 400;
	letter-spacing: 0.15em;
	margin-bottom: 30px;
}

.interview-main-area .interview-main-box h5{
	margin-bottom: 10px;
}

.talk-main-box p,
.interview-main-box p{
	font-size: 15px;
	font-weight: 400;
	letter-spacing: 0.075em;
	line-height: 32px;
	text-align: justify;
}

.talk-main-box p span,
.interview-main-box p span{
	color: var(--blue);
}

.interview-main-box p + h5{
	margin-top: 100px;
}

.talk-main-box .flex{
	margin-top: 100px;
}

.talk-main-box .flex p{
	max-width: 360px;
}

.talk-main-box .wide-img{
	margin: 0 auto 100px;
	display: table;
	position: relative;
	overflow: hidden;
}

.talk-main-box .wide-img::before{
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	background: #ffffff;
	transition: 0.5s linear;
}

.talk-main-box .wide-img.isPlay::before{
	transform: translate3d(100%, 0, 0);
}

.sublinks {
	margin: 80px auto 0;
}

.sublinks p{
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.05em;
	min-width: 50px;
}

.sublinks a {
	color: #595757;
	font-size: 14px;
	letter-spacing: 0.05em;
	display: flex;
	align-items: center;
	justify-content: center;
}

.sublinks a.archive-link {
	border: 1px solid #595757;
	border-radius: 25px;
	height: 30px;
	width: 200px;
}

.sublinks .prev-link a:before,
.sublinks .next-link a:after {
	content: "";
	display: inline-block;
	width: 15px;
	height: 15px;
	border-left: 1px solid #595757;
	border-bottom: 1px solid #595757;
}

.sublinks .prev-link a:before {
	transform: rotate(45deg);
	margin-right: 5px;
}

.sublinks .next-link a:after {
    transform: rotate(225deg);
    margin-left: 5px;
}

.talk-main-area,
.interview-main-area{
	padding-bottom: 120px;
}

.third-mv .interview-mv,
.interview-main-box .inner{
	max-width: 700px;
}

.third-mv .interview-name{
	font-size: 13px;
	font-weight: 400;
	letter-spacing: 0.1em;
	max-width: 700px;
	margin: 10px auto 0;
}

.interview-tl-sec h2{
	margin: 0 auto;
	font-size: 30px;
	font-weight: 500;
	letter-spacing: -0.1em;
	line-height: 55px;
}

.interview-main-box .img-flex{
	gap: 50px;
	margin: 100px auto 0;
}

.border-bg-area{
	padding: 100px 0 120px;
	overflow: hidden;
}

.talk-slider li .img{
	overflow: hidden;
}

.talk-slider li img{
	width: 100%;
	transform: scale(1);
	transform-origin: center center;
	object-fit: cover;
}

.cross-talk-sec .talk-tl-sec{
    padding: 30px 0 0;
}

.people-page .interview-sec{
    padding-top: 100px;
}

.member-lsit h4{
	color: #595757;
	font-size: 17px;
	font-weight: 400;
	letter-spacing: 0.15em;
	line-height: 38px;
	margin: 20px auto 0;
}

.career-path-blo .img-blo{
	margin: 0 auto;
	max-width: 850px;
}

.career-path-blo .img-blo .img2{
	gap: 30px;
}

.career-path-blo .img-blo .img2 img{
	width: 182px;
}

.career-path-blo .txt-blo{
	color: var(--blue);
	display: flex;
	flex-direction: row-reverse;
	position: absolute;
	right: 7%;
	top: 0;
	gap: 20px;
}

.career-path-blo .reverse .txt-blo{
	right: unset;
	left: 8%;
}

.career-path-blo .txt-blo .number{
	font-size: 40px;
	font-weight: 400;
	letter-spacing: 0.1em;
	writing-mode: vertical-rl;
	position: relative;
	height: max-content;
	padding-left: 5px;
	padding-bottom: 10px;
}

.career-path-blo .txt-blo .number::after{
    content: "";
    background-image: linear-gradient(180deg, #ffffff, #c9a063);
    height: 100%;
    width: 8px;
    position: absolute;
    left: 0;
    top: 0;
}

.career-path-blo .txt-blo .number .s1{
	font-size: 30px;
}

.career-path-blo .txt-blo .number .s2{
	font-size: 50px;
}

.career-path-blo .txt-blo .name{
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 10px;
}

.career-path-blo .txt-blo .name .posi{
	font-size: 20px;
	font-weight: 500;
	letter-spacing: 0.15em;
	writing-mode: vertical-rl;
}

.career-path-blo .txt-blo .name .year{
	font-size: 12px;
	font-weight: 400;
	letter-spacing: 0.15em;
	writing-mode: vertical-rl;
}

.career-path-blo .txt-blo .name .year .num{
	text-orientation: upright;
}

.career-path-blo .txt-blo h4{
	font-size: 32px;
	font-weight: 500;
	letter-spacing: -0.1em;
	line-height: 50px;
	writing-mode: vertical-rl;
	height: 100%;
	max-height: 210px;
}

.career-path-blo .txt-blo h4 span {
	display: inline-block;
	transform: rotate(-90deg);
	position: relative;
	left: -1px;
	margin: 5px 0;
}

.career-path-blo .txt-box{
	max-width: 700px;
	margin: 80px auto 0;
}

.career-path-blo .txt-box .main-p{
	font-size: 15px;
	letter-spacing: 0.035em;
	line-height: 32px;
    text-align: justify;}

.career-path-blo .txt-box .card-slider-box{
	margin: 60px auto 0;
}

.career-path-blo .txt-box .card-slider li{
    background-image: linear-gradient(90deg, #f0ffff, #ffffe0);
	max-width: 320px;
	margin-right: 60px;
}

.career-path-blo .txt-box .card-slider li .tl{
	background: url(../images/career/blue-bg.png) no-repeat;
	background-size: cover;
	color: #ffffff;
	font-size: 13px;
	font-weight: 500;
	text-align: center;
	position: relative;
	display: flex;
	align-items: baseline;
	justify-content: center;
	height: 80px;
	gap: 10px;
}

.career-path-blo .txt-box .card-slider li .tl::after{
    content: "";
    background-image: linear-gradient(90deg, #ffffff, #c9a063);
    height: 8px;
    width: 100%;
    position: absolute;
    left: 0;
    bottom: 0;
}

.career-path-blo .txt-box .card-slider li .tl .barlow{
	font-size: 60px;
	font-weight: 400;
	font-style: italic;
}

.career-path-blo .txt-box .card-slider li .tl .icon{
	position: relative;
	top: -15px;
	margin: 0 -5px;
}

.career-path-blo .txt-box .card-slider li p{
	font-size: 14px;
	line-height: 28px;
	padding: 30px;
    text-align: justify;
}

.card-slider .slick-track {
	display: flex !important;
	align-items: stretch !important;
}

.card-slider .slick-slide {
	height: auto !important;
	display: flex !important;
	flex-direction: column !important;
}

.card-slider .slick-slide > div > li {
	display: flex !important;
	flex-direction: column !important;
	width: 100% !important;
	height: 100% !important;
	box-sizing: border-box;
}

.card-slider .slick-slide > div > li p {
	flex: 1 0 auto !important;
	margin-bottom: 0;
}

.career-path-sec .career-path-blo{
	margin-top: 160px;
}

.career-path-sec .career-path-blo.first-blo{
	margin-top: 80px;
}

.data-list-out{
	margin: 100px auto 0;
	max-width: 700px;
}

.data-list-out > .blo:nth-child(even){
	flex-direction: row-reverse;
}

.data-list-out > .blo:not(:last-child){
	margin-bottom: 100px;
}

.data-list-out .blo > div{
	width: 320px;
}

.data-list-out .blo .txt .num{
	font-size: 12px;
	letter-spacing: 0.2em;
}

.data-list-out .blo .txt .num span{
	color: #005ac8;
	font-size: 40px;
	font-weight: 200;
	letter-spacing: 0.075em;
	margin-left: 5px;
}

.data-list-out .blo .txt .data-num{
	border-top: 1px solid #005ac8;
	border-bottom: 1px solid #005ac8;
	color: #005ac8;
	margin: 5px 0 15px;
	padding: 20px 0;
}

.data-list-out .blo .txt .data-num .txt1{
	font-size: 50px;
	letter-spacing: 0.2em;
}

.data-list-out .blo .txt .data-num .txt2{
	font-size: 30px;
	letter-spacing: 0.2em;
}

.data-list-out .blo .txt .data-num .txt3{
	font-size: 12px;
	letter-spacing: 0.1em;
}

.data-list-out .blo .txt .data-txt h3{
	color: #005ac8;
	font-size: 18px;
	font-weight: 400;
	letter-spacing: 0.2em;
	margin-bottom: 10px;
}

.data-list-out .blo .txt .data-txt p{
	font-size: 13px;
}

.tab-links .link-box{
	border: 1px solid #000000;
}

.tab-links .link-box.active{
	background: #005ac8;
	border: 1px solid #005ac8;
	color: #ffffff;
}

.recruitment{
	margin: 80px auto 120px;
	max-width: 650px;
	width: 100%;
}

.recruitment .hidden {
	display: none;
}

.recruitment h2{
	border-bottom: 1px solid #000000;
	font-size: 22px;
	font-weight: 400;
	letter-spacing: 0.2em;
	margin-bottom: 30px;
	padding-bottom: 10px;
}

.recruitment .blo:not(:last-child){
	margin-bottom: 80px;
}

.recruitment .blo h3{
	color: #005ac8;
	font-size: 18px;
	font-weight: 400;
	letter-spacing: 0.2em;
}

.recruitment .blo .ex-p,
.recruitment .blo .recruitment-table .row > div{
	font-size: 14px;
	font-weight: 300;
	letter-spacing: 0.075em;
	line-height: 1.86;
	position: relative;
}

.recruitment .blo .recruitment-table .row > div{
	padding: 10px 0;
}

.recruitment .blo .recruitment-table .row:not(:last-child):after,
.recruitment .blo .recruitment-table .td span:not(:last-child):after{
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	background-image: linear-gradient(to right, #dcdddd 1px, transparent 4px);
	background-size: 12px 1px;
    background-repeat: repeat-x;
	background-position: left bottom;
	height: 1px;
	width: 100%;
}

.recruitment .blo .recruitment-table .th{
	display: flex;
	justify-content: space-between;
}

.recruitment .blo .recruitment-table .td span{
	display: block;
	position: relative;
}

.recruitment .blo .recruitment-table .td span:not(:first-child){
	padding-top: 10px;
}

.recruitment .blo .recruitment-table .td span:not(:last-child){
	padding-bottom: 10px;
}

.recruitment .blo .recruitment-table .th:after{
	content: "：";
}

.recruitment .flow-list{
	margin-top: 30px;
}

.recruitment .flow-list .list-blo:not(:last-child){
	margin-bottom: 80px;
}

.recruitment .flow-list .list-blo:not(:last-child):before{
	content: "";
	background: #dcdddd;
	height: calc(100% + 85px);
	width: 1px;
	position: absolute;
	left: 35px;
	top: 0;
	z-index: -1;
}

.recruitment .flow-list .list-blo .num{
	background: #ffffff;
	border: 1px solid #dcdddd;
	border-radius: 50%;
	height: 70px;
	width: 70px;
	font-size: 28px;
	font-weight: 100;
	letter-spacing: 0.075em;
	line-height: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

.recruitment .flow-list .list-blo .num span{
	font-size: 10px;
	font-weight: 400;
	letter-spacing: 0.1em;
}

.recruitment .flow-list .list-blo .icon{
    background-image: linear-gradient(90deg, #f0ffff, #ffffe0);
	height: 75px;
	width: 100px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 20px;
}

.recruitment .flow-list .list-blo .list-main{
	max-width: 426px;
	width: 100%;
}

.recruitment .flow-list .list-blo .list-main h4{
	color: var(--blue);
	font-size: 16px;
	font-weight: 400;
	letter-spacing: 0.2em;
}

.recruitment .flow-list .list-blo .list-main .flow-p{
	font-size: 13px;
	letter-spacing: 0.075em;
	line-height: 1.86;
}

.recruitment .flow-list .list-blo .list-main .flow-p .notice{
	font-size: 11px;
}

.recruitment .flow-list .list-blo .list-main h4 + .flow-p{
	margin-top: 10px;
}

.recruitment .flow-list .list-blo .list-main .flow-p + .flow-p{
	margin-top: 25px;
}

.recruitment .flow-list .list-blo .list-main .link-box{
	border: 1px solid #000000;
	margin: 15px 0;
}

.link-box.big-link{
	border: 1px solid #000000;
	height: 90px;
}

.recruitment .flow-list .list-blo .list-main .flow-p .txt-link{
	color: #005ac8;
	display: table;
	font-size: 11px;
	letter-spacing: 0.075em;
	line-height: 2;
	margin-left: 1rem;
}

.link-box {
    border: 1px solid #ffffff;
	color: #595757;
    font-size: 14px;
    letter-spacing: 0.1em;
    height: 50px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.link-box-flex .link-box {
    width: 290px;
}

.link-img .off {
    display: none;
}

.box-blank:after {
	content: "\e80e";
	font-family: "fontello";
	position: absolute;
	right: 5px;
	bottom: 5px;
}

.border-bg-area section{
	position: relative;
	z-index: 1;
}

.border-bg-area::before{
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 0;
	
	background-image: linear-gradient(to right, #ffffff, #cff1ff);
	background-size: 100% 440px;
	background-repeat: repeat-y;
	mask-image: repeating-linear-gradient(to bottom, #000 0px, #000 240px, transparent 240px, transparent 440px);
	-webkit-mask-image: repeating-linear-gradient(to bottom, #000 0px, #000 240px, transparent 240px, transparent 440px);
  
	will-change: transform !important;
	transform: translateY(var(--bg-y, 0px)) !important;
}

.mov {
	position: relative;
/*
	padding-bottom: 56.25%;
	height: 0;
*/
	overflow: hidden;
	max-width: 700px;
	margin: 40px auto 0;
	width: 100%;
	aspect-ratio: 16 / 9;
}

.mov iframe {
/*
	position: absolute;
	top: 0;
	left: 0;
*/
	width: 100%;
	height: 100%;
	display: block;
	border: 0;
}

.slide-btn{
	cursor: pointer;
	background: var(--blue);
	color: #ffffff;
	border-radius: 50%;
	height: 50px;
	width: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 25px;
	font-weight: 400;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
}

.slide-btn.next-btn{
	right: -100px;
}

.slide-btn.prev-btn{
	left: -100px;
}


@media all and (min-width: 768px){
	.menu-box .menu li a:hover::after,
	.nav-menu li:not(:last-child) a:hover::after{
		width: 100%;
	}

	.menu-box .links li a:hover{
		background: var(--blue);
		color: #ffffff;
	}

	.link-box:hover{
		background: #005ac8;
	}
	
	.nav-menu li.entry a:hover{
		color: var(--blue);
		background: #ffffff;
	}
	
	footer .nav-menu li a:hover,
	footer .nav-menu li.entry a:hover{
		background: var(--blue);
		border: 1px solid var(--blue);
		color: #ffffff;
	}
	
	.tab-links .link-box:hover{
		background: #005ac8;
		border: 1px solid #005ac8;
		color: #ffffff;
	}

	.interview-list li:hover .thumb > img{
		opacity: 0;
	}

	.link-img:hover {
		color: #ffffff;
	}

	.link-img:hover .on{
		display: none;
	}

	.link-img:hover .off{
		display: block;
	}

	.people-page .talk-slider li:hover .img img{
		transform: scale(1.15);
	}
	
	.people-page  .member-lsit li:hover .img img{
		animation: flash-opacity 0.4s ease-out forwards;
	}
	
	@keyframes flash-opacity {
		0% {
			opacity: 1;
		}
		30% {
			opacity: 0.6;
		}
		100% {
			opacity: 1;
		}
	}

}
/*------------------------------------------------------------
	レスポンシブ
------------------------------------------------------------*/
@media all and (min-width: 0) and (max-width: 767px){
	.loading-container {
		width: 280px;
		height: 117px;
	}

	.main-contents.top {
		padding-top: 100px;
	}

	.main-contents.top .sec01 h1.sp{
		margin: 0 auto;
		width: 70%;
	}
	
	.main-contents.top .imgs {
		width: 100%;
	}
	
	.main-contents.top .imgs .img1{
		width: 66%;
	}
	
	.main-contents.top .imgs .img2 {
		width: 90%;
	}
	
	.main-contents.top .sec01 .txt,
	.main-contents.top .sec03 .txt{
		margin: 0 auto;
		width: 90%;
	}
	
	.main-contents.top .sec01 .line-p {
		margin-top: 0;
		margin-left: 0;
		display: block;
	}
	
	.main-contents.top section.flex {
		gap: 50px;
	}
	
	.main-contents.top .sec02 .imgs .img1{
		margin-left: auto;
	}
	
	.main-contents.top section.flex:nth-child(even) .img2 {
		width: 100%;
	}
	
	.main-contents.top section.flex:nth-child(even) {
		gap: 50px;
	}
	
	.main-contents.top section.sec02,
	.main-contents.top section.sec03{
		margin-top: 0px;
	}
	
	.main-contents.top .sec02 .txt{
		margin-right: auto;
		width: 90%;
	}
	
	.main-contents.top .sec02 .txt p{
		display: table;
		margin-left: auto;
	}
	
	.main-contents.top {
		padding-bottom: 100px;
	}
	
	.lower-mv h1 span {
		font-size: 32px;
	}
	
	.lower-mv {
		background: url(../images/business/lower-mv-bg_sp.png) no-repeat;
		background-size: 100% auto;
		padding-top: 30px;
	}

	.page-ex-sec, .talk-tl-sec, .interview-tl-sec {
		padding: 60px 0;
	}
	
	.page-ex-sec h2 {
		font-size: 20px;
		line-height: 52px;
	}
	
	.page-ex-sec p {
		font-size: 16px;
		line-height: 30px;
	}
	
	.posi-list {
		gap: 45px;
	}
	
	.posi-list .blo {
		max-width: 100%;
		width: 90%;
	}
	
	.posi-list .blo h3 {
		font-size: 18px;
		font-weight: 600;
		padding-bottom: 15px;
	}
	
	.posi-list .blo h3::after {
		height: 8px;
	}
	
	.posi-list .blo p {
		font-size: 15px;
	}
	
	.sec-tl span {
		display: block;
		font-size: 32px;
		margin-right: 0;
		margin-bottom: 10px;
	}
	
	.f-14 {
		font-size: 15px;
	}
	
	.main-contents.lower-page .video-sec {
		padding: 60px 0 0;
	}
	
	.border-bg-area {
		padding: 60px 0;
	}
	
	.third-mv .mv-img {
		width: 90%;
	}
	
	.lower-mv.third-mv {
		height: auto;
		margin-bottom: 0;
	}
	
	.talk-tl-sec h2 {
		display: table;
		font-size: 30px;
		margin: 0 auto 15px;
	}
	
	.talk-tl-sec h2::before,
	.talk-tl-sec h2::after{
		position: absolute;
	}
	
	.talk-tl-sec h2::before{
		right: calc(100% + 5px);
		top: -5px;
	}

	.talk-tl-sec h2::after{
		left: calc(100% + 5px);
		bottom: -5px;
	}
	
	.member-lsit li a{
		display: flex;
		align-items: flex-end;
		width: 100%;
		gap: 20px;
	}
	
	.member-lsit li .img{
		width: 50%;
	}
	
	.member-lsit .txt {
		margin: 0 auto;
		padding: 0;
		width: 50%;
	}
	
	.member-lsit .txt .posi {
		font-size: 18px;
	}
	
	.member-lsit h4 {
		font-size: 12px;
		margin: 5px auto 0;
	}
	
	.member-lsit .txt h4 span {
		font-size: 42px;
	}
	
	.member-lsit .txt .year {
		font-size: 13px;
	}
	
	.talk-main-box .flex {
		margin-top: 0;
	}
	
	.talk-main-box .flex .img{
		margin: 50px 0 50px -5%;
		width: 66vw;
	}
	
	.talk-main-box .flex .img.sp-right{
		margin-left: auto;
		margin-right: -5%;
	}
	
	.talk-main-box .flex.reverse{
		flex-direction: row;
	}
	
	.talk-main-box {
		padding: 100px 0 0;
	}
	
	.talk-main-box .wide-img {
		margin: 0 -5% 40px;
		width: 110%;
	}
	
	.third-mv .interview-name {
		width: 90%;
	}
	
	.interview-main-box .img-flex {
		gap: 0;
		margin: 100px -5% 0;
		width: 110%;
	}
	
	.interview-main-box .img-flex .img{
		width: 50%;
	}
	
	.interview-sec .member-lsit {
		gap: 50px;
	}
	
	.interview-sec .member-lsit li a{
		align-items: flex-start;
    }
    
	.interview-sec .member-lsit li .img {
		width: 100%;
    }
    
    .interview-sec .member-lsit .txt {
		margin: 10px auto 0;
		width: 100%;
    }
    
    .interview-sec .member-lsit h4 {
		font-size: 18px;
		margin: 20px auto 0;
    }
	
	.interview-sec .member-lsit li .name-blo {
		width: 50%;
    }
    
    .career-path-sec .career-path-blo.first-blo {
		margin-top: 50px;
	}
	
	.career-path-blo .img-blo{
		margin: 0 -5%;
		width: 110%;
	}
	
	.career-path-blo .img-blo .img2{
		gap: 00;
		width: 100%;
	}
	
	.career-path-blo .img-blo .img2 img {
		width: 50%;
	}
	
	.career-path-blo .txt-blo {
		position: static;
		margin: 30px auto 0;
	}
	
	.career-path-blo .txt-box {
		margin: 50px auto 0;
	}
	
	.career-path-blo .txt-blo h4 {
	}
	
	.data-list-out .blo > div {
		width: 100%;
	}
	
	.data-list-out .blo .img{
		text-align: center;
		margin: 20px auto 0;
	}
	
	.data-list-out > .blo:not(:last-child) {
		margin-bottom: 50px;
	}

	.link-box-flex .link-box {
        margin-top: 15px;
        width: 100%;
    }

	.recruitment-table.table-box{
		margin-top: 10px;
	}
	
	.recruitment-table.table-box .row:not(:last-child){
		margin-bottom: 15px;
	}
	
	.recruitment-table.table-box .row,
	.recruitment-table.table-box .row > div,
	.recruitment .blo .recruitment-table .th{
		display: block;
	}
	
	.recruitment .blo .recruitment-table .row > div {
		line-height: 2;
		padding: 0;
	}
	
	.recruitment .blo .recruitment-table .row:not(:last-child):after,
	.recruitment .blo .recruitment-table .td span:not(:last-child):after,
	.recruitment .flow-list .list-blo:not(:last-child):before{
		display: none;
	}
	
	.recruitment .blo .recruitment-table .th:before{
		content: "【";
	}

	.recruitment .blo .recruitment-table .th:after{
		content: "】";
	}
	
	.recruitment .blo:not(:last-child) {
		margin-bottom: 40px;
	}
	
	.recruitment .blo .recruitment-table .td span:not(:last-child){
		padding-bottom: 0;
	}
	
	.recruitment .blo .recruitment-table .td span:not(:first-child){
		padding-top: 0;
	}
	
	.recruitment .flow-list .list-blo{
		flex-direction: column;
		align-items: center;
	}
	
	.recruitment .flow-list .list-blo .icon {
		background: transparent;
		height: auto;
		width: auto;
		margin: 20px auto;
	}
	
	.recruitment .flow-list .list-blo .list-main h4{
		color: #005ac8;
		text-align: center;
	}
	
	.recruitment .flow-list .list-blo .list-main h4 + .flow-p {
		text-align: center;
	}
	
	.recruitment .flow-list .list-blo{
		padding: 50px 5%;
		margin: 0 -5%;
	}
	
	.recruitment .flow-list .list-blo:last-child{
		padding-bottom: 100px;
	}
	
	.recruitment .flow-list .list-blo:not(:last-child){
		margin-bottom: 0;
	}
	
	.recruitment .flow-list .list-blo:nth-child(odd){
		background-image: linear-gradient(90deg, #f0ffff, #ffffe0);
	}
	
	.main-contents.recruit section:last-child{
		padding-bottom: 0;
		margin-bottom: -50px;
	}
	
	.main-contents.recruit .recruitment .inturn-tab{
		padding: 0 0 100px;
	}

	.slide-btn{
		height: 35px;
		width: 35px;
		font-size: 20px;
		z-index: 5;
		top: calc(50% - 20px);
	}

	.slide-btn.next-btn{
		right: -15px;
	}

	.slide-btn.prev-btn{
		left: -15px;
	}

	.more-btn{
		display: table;
		color: var(--blue);
		font-size: 14px;
		margin-top: 20px;
		margin-left: auto;
		width: 73px;
		padding: 0 0 5px 5px;
	}
	
	.more-btn::after{
		content: "";
		background: url(../images/common/arrow.svg) no-repeat;
		height: 10px;
		width: 73px;
		position: absolute;
		left: 0;
		bottom: 0;
	}
	
	.interview-sec .member-lsit li .more-btn{
		position: absolute;
		right: 10px;
		bottom: 0;
	}
	
	.talk-page .talk-main-area .member-lsit li{
		display: flex;
		gap: 20px;
		align-items: flex-end;
	}
	
	.talk-page .talk-main-area .member-lsit li .img{
		height: auto;
	}
	
	.career-path-blo .txt-box .card-slider-box{
		width: 90%;
	}
	
	.career-path-blo .txt-box .card-slider li {
		margin-right: 0;
		max-width: unset;
	}
	
	.member-lsit-sec{
		padding-top: 60px;
		position: relative;
	}

	
	.member-lsit-sec::before{
		content: "";
		background-image: linear-gradient(to right, #ffffff, #cff1ff);
		position: absolute;
		left: 0;
		top: 0;
		height: 100%;
		width: 100%;
		z-index: -2;
	}
	
	.top-slider .slick-list,
	.top-slider .slick-track,
	.top-slider li ,
	.top-slider,
	.mv-frame,
	.top-mv,
	.scrolling-wrapper{
		height: auto;
	}
	
	.top-slider li img {
		object-fit: unset;
		object-position: unset;
		background-position: unset;
		height: auto;
	}
	
	

}