@charset "UTF-8";

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Prompt:wght@400;500;600;700;900&display=swap');

*, :after, :before {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

html{
	overflow: auto;
}

html,body{
    width: 100%;
}

body {
	color: #000;
	font-family: 'Noto Sans JP','Hiragino Kaku Gothic ProN', 'ヒラギノ角ゴ ProN W3', Meiryo, 'メイリオ', Osaka, 'MS PGothic', arial, helvetica;
	font-weight: 400;
	-webkit-text-size-adjust: 100%;
	position: relative;
}

@media screen and (min-width: 769px) {
	body{
		overflow: hidden;
		min-width: 1200px;
	}
}

.ipad{
	min-width: 1200px;
}

a,
a img{
	text-decoration: none;
	transition: 0.3s ease-out;
}

.clearfix:after {
  content:" ";
  display:block;
  clear:both;
}

/*ヘッダー
--------------------------------------------------*/
.header{
	position: relative;
	padding-top: 110px;
}

.floating__nav{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 110px;
	z-index: 300;
}

.header__logo{
	position: absolute;
	top: 0;
	left: 0;
	line-height: 0;
	z-index: 310;
	width: 310px;
}

.header__logo img{
	width: 100%;
}

.header__logo a:hover{
	opacity: .5;
}

.header__nav{
	position: absolute;
	top: 0;
	right: 0; 
}

.nav__index{
	position: absolute;
	top: 3px;
	right: 314px;
	width: auto;
	display: flex;
	align-items: center;
	flex-direction: row;
}

.nav__item{
	padding-left: 68px;
	white-space:nowrap;
}

.nav__item:first-child{
	padding-left: 0;
	background: none;
}

.nav__item a{
	display: flex;
	flex-direction: column;
	justify-content: center;
	text-align: center;
	height: 110px;
	line-height: 1;
	color : #010101;
}

.nav__item--en{
	display: block;
	font-family : 'Prompt';
	font-weight: 600;
	font-size: 22px;
	letter-spacing: 0.1em;
	margin-bottom: 5px;
}

.nav__item--ja{
	display: block;
	font-size: 15px;
	letter-spacing: 0.1em;
}

.nav__item a:hover{
	opacity: .5;
}

.nav__btn{
	position: absolute;
	top: 20px;
	right: 18px;
	width: 240px;
	display: flex;
	flex-direction: row;
}

.nav__btn a{
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	width: 100%;
	height: 75px;
	background: #FF6101;
	color : #fff;
	line-height: 1;
}

.nav__btn--en{
	font-family:'Prompt';
	font-weight: 600;
	font-size: 22px;
	letter-spacing: 0.1em;
	margin-bottom: 5px;
}

.nav__btn--ja{
	display: block;
	font-size: 15px;
	letter-spacing: 0.1em;
}

.nav__btn a:hover{
	opacity: .7;
}

@media screen and (min-width: 769px) {
	/*固定化*/
	.is-fixed{
		position: fixed;
		z-index: 500;
		background: rgba(255, 255, 255, 0.95);
		box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
		min-width: 1200px;
	}
}

@media screen and (max-width: 1390px) {
	.nav__index{
		right: 250px;
	}
	
	.nav__item{
		padding-left: 40px;
	}
	
	.nav__item--en{
		font-size: 20px;
	}
	
	.nav__item--ja{
		font-size: 12px;
	}
	
	.nav__btn{
		right: 10px;
		width: 200px;
	}
}

@media screen and (max-width: 768px) {
	.header{
		padding-top: 80px;
	}

	.header__logo{
		width: 160px;
	}

	.header__logo a:hover{
		opacity: 1;
	}

	.header__nav{
		display: none;
	}
}

/*メインビジュアル
--------------------------------------------------*/
.mainvisual{
	width: 100%;
	position: relative;
	background: url(../img/mv_bg.svg) no-repeat 0 100%/100%;
}

@media screen and (max-width: 1599px) {
	.mainvisual{
		background-size: auto;
	}
}

.mainvisual:before{
	content: '';
	display: block;
	padding-top: 49.25%;
}

.mainvisual p{
	height: 0;
	text-indent: 100%;
	white-space: nowrap;
	overflow: hidden;
	position: absolute;
}

.mv__ph-1{
	width: 53.5%;
	padding-top: 45.6875%;
	background: url(../img/mv_ph_01_pc.jpg) no-repeat 0 0/100%;
	bottom: 0;
	right: 0;
	z-index: 100;
}

.mv__ph-2{
	width: 29.875%;
	padding-top: 16.625%;
	background: url(../img/mv_ph_02_pc.jpg) no-repeat 0 0/100%;
	bottom: 0;
	left: 0;
	z-index: 100;
}

.mv__txt{
	width: 30.375%;
	padding-top: 30.375%;
	background: url(../img/mv_txt_pc.svg) no-repeat 0 0/100%;
	top: 18.9%;
	left: 11.4375%;
	z-index: 100;
}

@media screen and (max-width: 768px) {
	.mainvisual{
		background: url(../img/mv_bg_sp.svg) no-repeat 0 100%/100%;
	}
	
	.mainvisual:before{
		padding-top: 149.333%;
	}
	
	.mv__ph-1{
		width: 90.666%;
		padding-top: 74.666%;
		background: url(../img/mv_ph_01_sp.jpg) no-repeat 0 0/100%;
		bottom: auto;
		top: 0;
	}
	
	.mv__ph-2{
		width: 56.266%;
		padding-top: 31.2%;
		background: url(../img/mv_ph_02_sp.jpg) no-repeat 0 0/100%;
	}
	
	.mv__txt{
		width: 75.7333%;
		padding-top:27.733%;
		background: url(../img/mv_txt_sp.svg) no-repeat 0 0/100%;
		top: 55.178571%;
		left: 9.333%;
	}
}

/*SPフローティングボタン
--------------------------------------------------*/
.floating__btn{
	display: none;
}

@media screen and (max-width: 768px) {
	.floating__block{
		position: sticky;
		bottom: 0;
		left: 0;
		width: 100%;
		height: 50px;
		z-index: 300;
	}

	.floating__btn{
		position: absolute;
		bottom: 0;
		left: 0;
		width: 100%;
		height: 50px;
		display: block;
	}

	.floating__btn a{
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
		text-align: center;
		width: 100%;
		height: 100%;
		background: #FF6101;
		color : #fff;
		line-height: 1;
		font-family:'Prompt';
		font-weight: 700;
		font-size: 22px;
		letter-spacing: 0.1em;
	}
}

/*SPナビ
--------------------------------------------------*/
/*ハンバーガー SP*/
@media screen and (max-width: 768px) {
	.hamburger{
		position: fixed;
		right: 0;
    top: 0;
    width: 42px;
    height: 42px;
		z-index: 700;
		background: #FF6101;
	}
	
	.hamburger__inner{
		position: absolute;
    top: 15px;
		left: 12px;
		width: 18px;
    height: 13px;
		cursor: pointer;
	}

	.hamburger__line{
		background: #fff;
		display: block;
		height: 1px;
		position: absolute;
		transition: 0.3s ease-out;
		width: 100%;
	}

	.hamburger__line--c{
		top: 6px;
	}

	.hamburger__line--b{
		bottom: 0px;
		}

	.hamburger__line--t.nav--active{
		top: 6px;
		transform: rotate(45deg);
	}

	.hamburger__line--c.nav--active{
		transform:scaleX(0);
	}

	.hamburger__line--b.nav--active{
		bottom: 6px;
		transform: rotate(135deg);
	}
}

/*ナビ*/
.sp-nav{
	background: rgba(0,0,0,0.8);
	display: none;
	height: 100%;
	width: 100%;
	position: fixed;
	z-index: 600;
	top: 0;
	left: 0;
}

.sp-nav__container{
	align-items:center;
	display: flex;
	height: 100%;
	justify-content: center;
	position: absolute;
	width: 100%;
}

.sp-nav__index {
	width: 200px;
	margin: 0 auto;
}

.sp-nav__item{
	margin-bottom: 20px;
	padding-bottom: 20px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}

.sp-nav__item:last-child{
	border: none;
}

.sp-nav__item a{
	display: block;
	text-align: center;
	color : #fff;
}

.sp-nav__item--en{
	display: block;
	font-family: 'Prompt';
	font-weight: 600;
	font-size: 18px;
	letter-spacing: 0.1em;
	margin-bottom: 8px;
}

.sp-nav__item--ja{
	display: block;
	font-size: 12px;
	letter-spacing: 0.1em;
}

.sp-nav__btn{
	width: 200px;
}

.sp-nav__btn a{
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	width: 100%;
	height: 70px;
	background: #FF6101;
	color : #fff;
	line-height: 1;
}

.sp-nav__btn--en{
	font-family:'Prompt';
	font-weight: 600;
	font-size: 18px;
	letter-spacing: 0.1em;
	margin-bottom: 8px;
}

.sp-nav__btn--ja{
	display: block;
	font-size: 12px;
	letter-spacing: 0.1em;
}

/*コンテンツフェードアップ
--------------------------------------------------*/
.content-fadeinup{
	transition: .5s ease-in;
	opacity: 0;
	transform: translateY(50px);
}

/*改行
--------------------------------------------------*/
.pc--hidden{
	display: none;
}

.sp--hidden{
	display: block;
}

@media screen and (max-width: 768px) {
	.pc--hidden{
		display: block;
	}
	
	.sp--hidden{
		display: none;
	}
}

/*見出し
--------------------------------------------------*/
.content__heading{
	line-height: 1;
	color: #010101;
}

.content__heading--en{
	font-family:'Prompt';
	font-weight: 700;
	font-size: 68px;
	letter-spacing: 0.1em;
	margin-bottom: 9px;
	display: block;
}

.content__heading--ja{
	font-weight: 700;
	font-size: 20px;
	letter-spacing: 0.1em;
	display: block;
}

@media screen and (max-width: 768px) {
	.content__heading--en{
		font-size: 35px;
		margin-bottom: 5px;
	}
	
	.content__heading--ja{
		font-size: 18px;
	}
}

/*カミムネについて
--------------------------------------------------*/
.aboutus{
	padding: 123px 0 62px 0;
	background: url(../img/aboutus_bg.svg) no-repeat 0 0/100%;
	box-sizing: border-box;
}

@media screen and (max-width: 1599px) {
	.aboutus{
		background-size: auto;
	}
}

.aboutus__container{
	width: 980px;
	margin: 0 auto;
	position: relative;
}

.aboutus__container::before{
	content: '';
	display: block;
	background: #000;
	width: 1600px;
	height: 1px;
	position: absolute;
	top: 133px;
	left: 50%;
	margin-left: -800px;
	z-index: 50;
}

.aboutus__heading{
	margin-bottom: 85px;
}

.aboutRead{
	position: relative;
	margin-bottom: 224px;
}

.aboutus__txt{
	font-weight: 500;
	font-size: 18px;
	letter-spacing: 0.1em;
	line-height: 36px;
	margin-bottom: 1em;
	width: 563px;
	margin-bottom: 35px;
}

.aboutus__ph-1{
	position: absolute;
	top: -160px;
	left: 647px;
	z-index: 100;
	width: 390px;
}

.aboutus__ph-2{
	position: absolute;
	top: 308px;
	left: 853px;
	z-index: 150;
	width: 390px;
}

.aboutus__ph-1 img,
.aboutus__ph-2 img{
	width: 100%;
}

.aboutus__mhd{
	font-weight: 900;
	font-size: 45px;
	letter-spacing: 0.05em;
	line-height: 1;
	color: #fb853d;
	position: relative;
	margin-bottom: 82px;
}

.aboutus__mhd::before{
	content: '';
	display: block;
	background: #FF6101; 
	width: 938px;
	height: 1px;
	position: absolute;
	top: 25px;
	left: 353px;
}

.feature{
	display: flex;
	flex-direction: row-reverse;
	justify-content: space-between;
	margin-bottom: 60px;
}

.feature-2{
	flex-direction: row;
}

.featureTxt__box{
	width: 580px;
}

.featurePh__box{
	width: 340px;
	padding-top: 40px;
}

.feature__no{
	font-family:'Prompt';
	font-weight: 600;
	font-size: 33px;
	letter-spacing: 0.1em;
	line-height: 1;
	color: #ff6101;
	margin-bottom: 13px;
}

.feature__hd{
	font-weight: 700;
	font-size: 40px;
	letter-spacing: 0.05em;
	line-height: 50px;
	color: #010101;
	margin-bottom: 23px;
}

.feature__txt{
	font-size: 16px;
	letter-spacing: 0.1em;
	line-height: 32px;
}

.feature__ph{
	line-height: 0;
}

.feature__ph img{
	width: 100%;
}

@media screen and (max-width: 768px) {
	.aboutus{
		padding: 50px 0;
		background: url(../img/aboutus_bg_sp.svg) no-repeat 0 0/100%;
	}
	
	.aboutus__container{
		width: auto;
		padding: 0 20px;
	}
	
	.aboutus__container::before{
		display: none;
	}
	
	.aboutus__heading{
		margin-bottom: 30px;
		border-bottom: 1px solid #000;
		padding-bottom: 20px;
	}
	
	.aboutRead{
		margin-bottom: 60px;
	}
	
	.aboutus__txt{
		font-size: 16px;
		line-height: 1.7;
		margin-bottom: 1em;
		width: auto;
		margin-bottom: 35px;
	}
	
	.aboutus__ph-1{
		position: relative;
		top: auto;
		left: auto;
		width: 100%;
		margin-bottom: 30px;
	}
	
	.aboutus__ph-2{
		position: relative;
		top: auto;
		left: auto;
		width: 100%;
	}
	
	.aboutus__mhd{
		font-size: 22px;
		color: #fb853d;
		margin-bottom: 30px;
	}
	
	.aboutus__mhd::before{
		width: 60%;
		top: 12px;
		left: auto;
		right: 0;
	}
	
	.feature{
		display: block;
		margin-bottom: 30px;
	}
	
	.featureTxt__box{
		width: 100%;
		margin-bottom: 40px;
	}
	
	.featurePh__box{
		width: 100%;
		padding-top: 0;
		margin-bottom: 10px;
	}
	
	.feature__no{
		font-size: 25px;
		margin-bottom: 0;
	}
	
	.feature__hd{
		font-size: 18px;
		line-height: 1.7;
		margin-bottom: 5px;
	}
	
	.feature__txt{
		font-size: 14px;
		line-height: 1.7;
	}
}

/*仕事紹介
--------------------------------------------------*/
.job{
	background: #010000;
	padding: 126px 0 118px 0;
}

.job__container{
	width: 980px;
	margin: 0 auto;
	position: relative;
}

.job__container::before{
	content: '';
	display: block;
	background: #fff;
	width: 1600px;
	height: 1px;
	position: absolute;
	top: 134px;
	left: 50%;
	margin-left: -800px;
	z-index: 50;
}

.job__heading{
	margin-bottom: 114px;
	color: #fff;
}

.tab__block.tab--active {
	display: block;
}

.tab__item.tab--active{
	background: #FF6101;
	color: #010101;
}

.tab__list{
	display: flex;
	flex-direction: row;
	margin-bottom: 15px;
}

.tab__item{
	width: 490px;
	border: 1px solid #FF6101;
	background: #010000;
	box-sizing: border-box;
	font-weight: 700;
	font-size: 22px;
	letter-spacing: 0.05em;
	line-height: 72px;
	text-align: center;
	color: #fff;
	cursor: pointer;
}

.tab__block {
	display: none;
	width: 100%;
	height: 1325px;
	background: #fff;
	box-sizing: border-box;
	padding: 60px 69px 0 70px;
}

.jobRead{
	display: flex;
	flex-direction: row-reverse;
	justify-content: space-between;
	margin-bottom: 72px;
}

.jobReadPh__box{
	width: 388px;
	line-height: 0;
}

.jobReadTxt__box{
	width: 404px;
	padding-top: 33px;
}

.jobRead__ph img{
	width: 100%;
}

.job__mhd{
	font-weight: 700;
	font-size: 38px;
	letter-spacing: 0.05em;
	line-height: 1;
	color: #ff6101;
	margin-bottom: 36px;
}

.jobRead__txt{
	font-weight: 500;
	font-size: 18px;
	letter-spacing: 0.1em;
	line-height: 36px;
	color: #010000;
}

.job__shd{
	font-weight: 700;
	font-size: 28px;
	letter-spacing: 0.05em;
	line-height: 1;
	color: #010000;
	margin-bottom: 38px;
	text-align: center;
	position: relative;
}

.job__shd::before{
	content: '';
	display: block;
	width: 381px;
	height: 1px;
	background: #010000;
	position: absolute;
	top: 13px;
	left: -70px;
}

.job__shd::after{
	content: '';
	display: block;
	width: 381px;
	height: 1px;
	background: #010000;
	position: absolute;
	top: 13px;
	right: -70px;
}

.jobFeature{
	position: relative;
	margin-bottom: 72px;
}

.jobFeature__list{
	width: 726px;
	margin: 0 auto;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
}

.jobFeature__item{
	width: 200px;
	height: 105px;
	background: url(../img/job_star_02.svg) no-repeat top 63px left 0;
	display: flex;
	align-items: flex-start;
	justify-content: center;
}

.star-3{
	background-image: url(../img/job_star_03.svg);
}

.star-4{
	background-image: url(../img/job_star_04.svg);
}

.jobFeature__item span{
	display: inline-block;
	line-height: 38px;
	border-radius: 50px;
	font-weight: 500;
	font-size: 18px;
	letter-spacing: 0.05em;
	text-align: center;
	color: #fff;
	background: #000;
	padding: 0 32px;
}

.jobFeature__item:nth-child(3) span{
	padding: 0 22px;
	white-space: nowrap;
}

.jobMerit__list{
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	width: 100%;
	margin-bottom: 63px;
	padding-top: 19px;
}

.jobMerit__item{
	width: 390px;
	background: url(../img/job_merit_img_01.svg) no-repeat top 0 left 50%;
	padding-top: 117px;
}

.merit__img-2{
	background-image: url(../img/job_merit_img_02.svg);
	background-position-y: 16px;
}

.merit__img-3{
	background-image: url(../img/job_merit_img_03.svg);
	background-position-y: 8px;
}

.jobMerit__txt-1{
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	height: 75px;
	width: 100%;
	font-weight: 700;
	font-size: 25px;
	letter-spacing: 0.05em;
	line-height: 35px;
	color: #ff6101;
	margin-bottom: 19px;
}

.jobMerit__txt-2{
	font-size: 16px;
	letter-spacing: 0.1em;
	line-height: 30px;
	color: #010000;
}

.job__btn{
	width: 470px;
	margin: 0 auto;
}

.job__btn a{
	display: block;
	line-height: 86px;
	position: relative;
	background: #FF6101;
	font-weight: 700;
	font-size: 22px;
	letter-spacing: 0.05em;
	text-align: center;
	color: #010101;
}

.job__btn a:hover{
	opacity: .7;
}

.job__btn a::after{
	display: block;
	content: '';
	width: 54px;
	height: 1px;
	background: #010000;
	position: absolute;
	top: 43px;
	right: 0;
}

@media screen and (max-width: 768px) {
	.job{
		padding: 50px 0;
	}
	
	.job__container{
		width: auto;
		padding: 0 20px;
	}
	
	.job__container::before{
		display: none;
	}

	.job__heading{
		margin-bottom: 30px;
		border-bottom: 1px solid #fff;
		padding-bottom: 20px;
	}
	
	.tab__list{
		display: flex;
		flex-direction: row;
		margin-bottom: 15px;
	}
	
	.tab__item{
		width: 50%;
		font-size: 16px;
		line-height: 40px;
	}
	
	.tab__block {
		height: auto;
		padding: 30px 20px;
	}
	
	.jobRead{
		display: block;
		margin-bottom: 30px;
	}
	
	.jobReadPh__box{
		width: 100%;
		line-height: 0;
	}
	
	.jobReadTxt__box{
		width: 100%;
		padding-top: 20px;
	}
	
	.job__mhd{
		font-size: 22px;
		margin-bottom: 10px;
	}
	
	.jobRead__txt{
		font-size: 16px;
		line-height: 1.7;
	}
	
	.job__shd{
		font-size: 18px;
		margin-bottom: 20px;
	}
	
	.job__shd::before{
		width: 30%;
		top: 8px;
		left: -20px;
	}
	
	.job__shd::after{
		width: 30%;
		top: 8px;
		right: -20px;
	}
	
	.jobFeature{
		margin-bottom: 30px;
	}
	
	.jobFeature__list{
		width: 200px;
		margin: 0 auto;
		display: block;
	}
	
	.jobFeature__item{
		width: 100%;
		height: 65px;
		margin-bottom: 20px;
		background-position: top 40px left 50%;
		background-size: 120px auto;
	}

	
	.jobFeature__item span{
		line-height: 30px;
		font-size: 16px;
		padding: 0 20px;
	}
	
	.jobFeature__item:nth-child(3) span{
		padding: 0 10px;
	}
	
	.jobMerit__list{
		display: block;
		width: 280px;
		margin: 0 auto 40px auto;
		padding-top: 19px;
	}
	
	.jobMerit__item{
		width: 100%;
		background-size: 54px auto;
		background-position: top 0 left 50%;
		padding-top: 60px;
		margin-bottom: 20px;
	}
	
	.merit__img-2{
		background-position-y: 0;
		background-size: 73px auto;
	}
	
	.merit__img-3{
		background-position-y: 0;
		background-size: 38px;
	}
	
	.jobMerit__txt-1{
		display: block;
		height: auto;
		font-size: 18px;
		line-height: 1.7;
		margin-bottom: 10px;
	}
	
	.jobMerit__txt-2{
		font-size: 14px;
		line-height: 1.7;
	}
	
	.job__btn{
		width: 250px;
		margin: 0 auto;
	}
	
	.job__btn a{
		line-height: 50px;
		font-size: 18px;
	}
	
	.job__btn a:hover{
		opacity: 1;
	}
	
	.job__btn a::after{
		width: 30px;
		top: 25px;
	}
}

/*インタビュー
--------------------------------------------------*/
.interview{
	background: url(../img/interview_bg.png) no-repeat 50% 0/100%;
	height: 1309px;
	padding-top: 126px;
	box-sizing: border-box;
}

.interview__container{
	width: 980px;
	margin: 0 auto;
	position: relative;
}

.interview__container::before{
	content: '';
	display: block;
	background: #000;
	width: 1600px;
	height: 1px;
	position: absolute;
	top: 134px;
	left: 50%;
	margin-left: -800px;
	z-index: 50;
}

.interview__heading{
	margin-bottom: 124px;
}

.interview__list{
	display: flex;
	flex-direction: row;
	justify-content: space-between;
}

.interview__item{
	width: 460px;
	position: relative;
	transition: 0.3s ease-out;
	cursor: pointer;
}

.interview__item:hover{
	opacity: .7;
}

.interview__ph{
	position: absolute;
	top: 232px;
	left: 0;
	line-height: 0;
}

.interview__no{
	font-family:'Prompt';
	font-weight: 700;
	font-size: 80px;
	letter-spacing: 0.1em;
	line-height: 1;
	color: #ff6101;
	position: absolute;
	top: 37px;
	left: 0;
}

.interview__txt-1{
	font-weight: 700;
	font-size: 34px;
	letter-spacing: 0.05em;
	line-height: 45px;
	color: #010101;
	padding-left: 139px;
	margin-bottom: 12px;
	white-space: nowrap;
}

.interview__txt-2{
	font-size: 14px;
	letter-spacing: 0.1em;
	line-height: 1;
	color: #010000;
	padding-left: 139px;
	display: flex;
	flex-direction: row;
	align-items: flex-end;
	margin-bottom: 5px;
}

.interview__txt-2 strong{
	font-family:'Prompt';
	font-weight: 700;
	font-size: 50px;
	margin-right: 7px;
	display: block;
}

.interview__txt-2 span{
	display: block;
	padding-bottom: 13px;
}

.interview__more{
	font-family:'Prompt';
	font-size: 16px;
	letter-spacing: 0.1em;
	line-height: 1;
	width: 116px;
	margin-left: auto;
	position: relative;
	color: #ff6101;
	text-align: right;
}

.interview__more::before{
	content: '';
	display: block;
	width: 57px;
	height: 1px;
	position: absolute;
	left: 0;
	top: 8px;
	background: #010101;
}

.interview__item:nth-child(2){
	padding-top: 642px;
}

.interview__item:nth-child(2) .interview__ph{
	top: 4px;
}

.interview__item:nth-child(2) .interview__no{
	top: 647px;
}

.interview__item:nth-child(2) .interview__txt-2 strong{
	margin-right: 10px;
}

@media screen and (max-width: 768px) {
	.interview{
		height: auto;
		padding: 50px 0 30px 0;
		background: url(../img/interview_bg.png) no-repeat 50% 0
	}
	
	.interview__container{
		width: auto;
		padding: 0 20px;
	}

	.interview__container::before{
		display: none;
	}
	
	.interview__heading{
		margin-bottom: 30px;
		border-bottom: 1px solid #000;
		padding-bottom: 20px;
	}
	
	.interview__list{
		display: block;
		width: 250px;
		margin: 0 auto;
	}
	
	.interview__item{
		width: 100%;
		margin-bottom: 30px;
	}
	
	.interview__item:hover{
		opacity: 1;
	}
	
	.interview__ph{
		position: relative;
		top: auto !important;
		left: auto;
		margin-bottom: 10px;
	}

	.interview__ph img{
		width: 100%;
	}
	
	.interview__no{
		font-size: 30px;
		top: 350px !important;
		left: 0px;
	}
	
	.interview__txt-1{
		font-size: 16px;
		line-height: 1.7;
		padding-left: 50px;
		margin-bottom: 5px;
		white-space: wrap;
	}
	
	.interview__txt-2{
		font-size: 12px;
		padding-left: 50px;
		margin-bottom: 10px;
	}
	
	.interview__txt-2 strong{
		font-size: 30px;
		margin-right: 3px !important;
	}
	
	.interview__txt-2 span{
		padding-bottom: 5px;
	}
	
	.interview__item:nth-child(2){
		padding-top: 0;
	}
}

/*モーダル　インタビュー
--------------------------------------------------*/
.modal{
	width: 100%;
	height: 100%;
	min-width: 980px;
	box-sizing: border-box;
	background: 
	  url(../img/modal_ph_01.jpg) no-repeat top -15px right calc(50% - 355px),
	  url(../img/modal_bg.png) no-repeat bottom 0 left 0/cover;
	box-sizing: border-box;
	position: relative;
	border: 15px solid #838383;
}

#modal-2{
	background-image: url(../img/modal_ph_02.jpg),url(../img/modal_bg.png);
}

.modal__inner{
	width: 980px;
	margin: 0 auto;
	padding: 112px 0 112px 20px;
}

.modal__close{
	position: absolute;
	top: -15px;
	right: -15px;
	transition: 0.3s ease-out;
	cursor: pointer;
	z-index: 100;
}

.modal__close:hover{
	opacity: .7;
}

.modal__head{
	width: 347px;
	height: 474px;
	position: relative;
	margin-bottom: 87px;
	border-bottom: 1px solid #010000;
}

.modalName__no{
	font-family: 'Prompt';
	font-weight: 700;
	font-size: 80px;
	letter-spacing: 7px;
	line-height: 1;
	color: #ff6101;
	position: absolute;
	top: 0;
	left: 1px;
}

.modal__ttl{
	font-family:'Prompt';
	font-weight: 700;
	font-size: 16px;
	letter-spacing: 0.1em;
	line-height: 1;
	color: #010000;
	padding: 33px 0 37px 109px;
	margin-bottom: 27px;
	border-bottom: 1px solid #0a0909;
}

.modal__sp__ph{
	display: none;
}

.modalName__txt-1{
	font-weight: 700;
	font-size: 40px;
	letter-spacing: 0.05em;
	line-height: 53px;
	color: #010101;	
}

.modalName__txt-2{
	font-family:'Prompt';
	font-weight: 700;
	font-size: 170px;
	letter-spacing: 0.1em;
	line-height: 1;
	color: #010101;
	position: absolute;
	bottom: 0;
	left: 0;
}

.modal__tbl{
	position: absolute;
	bottom: 28px;
	left: 137px;
	width: 210px;
}

.modal__tbl th,
.modal__tbl td{
	line-height: 25px;
	background: #838383;
	border-bottom: 4px solid #fff;
	color: #fff;
	text-align: left;
	letter-spacing: 1px;
}

.modal__tbl th{
	font-size: 14px;
	padding-left: 11px;
	width: 146px;
}

.modal__tbl td{
	font-weight: 700;
	font-size: 16px;
	width: auto;
}

.modalQa{
	margin-bottom: 93px;
}

.modal__q{
	font-weight: 700;
	font-size: 22px;
	letter-spacing: 0.05em;
	line-height: 34px;
	color: #1d1d1c;
	margin-bottom: 10px;
}

.modal__q span{
	font-family:'Prompt';
	font-weight: 700;
	font-size: 40px;
	letter-spacing: 0.1em;
	line-height: 1;
	color: #ff6101;
	margin-right: 26px;
	vertical-align: middle;
}

.modal__a{
	font-size: 16px;
	letter-spacing: 0.1em;
	line-height: 34px;
	color: #1d1d1c;
	margin-bottom: 45px;
}

.modal__close__btn{
	width: 270px;
	margin: 0 auto;
}

.modal__close__btn a{
	display: block;
	font-family:'Prompt';
	font-weight: 500;
	font-size: 22px;
	letter-spacing: 0.1em;
	text-align: center;
	color: #fff;
	line-height: 80px;
	background: #010000 url(../img/modal_close_icon.svg) no-repeat top 50% right 32px;
	padding-right: 10px;
}

.modal__close__btn a:hover{
	opacity: .7;
}

@media screen and (max-width: 768px) {
	.modal{
		background:url(../img/modal_bg.png) no-repeat 50% 50% !important;
		border: 10px solid #838383;
		min-width: auto;
	}
	
	.modal__inner{
		width: auto;
		padding: 20px 20px 40px 20px;
	}
	
	.modal__close{
		top: -10px;
		right: -10px;
	}

	.modal__close img{
		width: 40px;
	}
	
	.modal__close:hover{
		opacity: 1;
	}
	
	.modal__head{
		width: 100%;
		height: auto;
		margin-bottom: 20px;
		padding-bottom: 20px;
		border-bottom: 1px solid #010000;
	}
	
	.modalName__no{
		font-size: 50px;
	}
	
	.modal__ttl{
		padding: 18px 0 18px 80px;
		margin-bottom: 20px;
	}
	
	.modal__sp__ph{
		background: url(../img/modal_ph_01.jpg) no-repeat 0 0/100%;
		display: block;
		margin-bottom: 10px;
	}

	#modal-2 	.modal__sp__ph{
		background-image: url(../img/modal_ph_02.jpg);
	}

	.modal__sp__ph:before{
		content: '';
		display: block;
		padding-top: 67.41573%;
	}

	.modalName__txt-1{
		font-size: 22px;
		line-height: 1.6;
		margin-bottom: 10px;
	}

	.modalProf{
		position: relative;
	}
	
	.modalName__txt-2{
		font-size: 80px;
		bottom: auto;
		top: 8px;
		left: 20px;
	}
	
	.modal__tbl{
		position: relative;
		bottom: auto;
		left: auto;
		margin-left: auto;
	}
	
	.modal__tbl th,
	.modal__tbl td{
		line-height: 20px;
		border-bottom: 2px solid #fff;
	}
	
	.modal__tbl th{
		font-size: 12px;
		padding-left: 8px;
		width: 130px;
	}
	
	.modal__tbl td{
		font-size: 14px;
	}
	
	.modalQa{
		margin-bottom: 40px;
	}
	
	.modal__q{
		font-size: 16px;
		line-height: 1.7;
		text-indent: -3em;
		margin: 0 0 5px 3em;
	}
	
	.modal__q span{
		font-size: 25px;
		margin-right: 10px;
	}
	
	.modal__a{
		font-size: 14px;
		line-height: 1.7;
		margin-bottom: 20px;
	}
	
	.modal__close__btn{
		width: 180px;
		margin: 0 auto;
	}
	
	.modal__close__btn a{
		font-size: 18px;
		line-height: 50px;
		background: #010000 url(../img/modal_close_icon.svg) no-repeat top 50% right 25px/15px;
		padding-right: 10px;
	}
	
	.modal__close__btn a:hover{
		opacity: 1;
	}
}

/*メッセージ
--------------------------------------------------*/
.message{
	background: #010000;
	padding: 122px 0 154px 0;
}

.message__container{
	width: 980px;
	margin: 0 auto;
	position: relative;
}

.message__container::before{
	content: '';
	display: block;
	background: #fff;
	width: 1600px;
	height: 1px;
	position: absolute;
	top: 134px;
	left: 50%;
	margin-left: -800px;
	z-index: 50;
}

.message__heading{
	margin-bottom: 103px;
	color: #fff;
}

.messageTxt{
	margin-bottom: 113px;
}

.message__txt-1{
	font-weight: 700;
	font-size: 40px;
	letter-spacing: 0.05em;
	line-height: 50px;
	text-align: left;
	color: #fff;
	position: absolute;
	top: 210px;
	left: 0;
}

.message__txt-2{
	font-weight: 500;
	font-size: 18px;
	letter-spacing: 0.1em;
	line-height: 36px;
	color: #fff;
	width: 572px;
	margin: 0 0 65px auto;
	padding-top: 86px;
	white-space: nowrap;
}

.message__txt-3{
	font-weight: 700;
	font-size: 40px;
	letter-spacing: 0.05em;
	line-height: 1;
	color: #fff;
	text-align: right;
}

.message__list{
	display: flex;
	flex-direction: row;
	justify-content: space-between;
}

.message__item{
	width: 470px;
}

.message__item a{
	display: block;
	line-height: 86px;
	position: relative;
	background: #FF6101;
	font-weight: 700;
	font-size: 22px;
	letter-spacing: 0.05em;
	text-align: center;
	color: #010101;
}

.message__item a:hover{
	opacity: .7;
}

.message__item a::after{
	display: block;
	content: '';
	width: 54px;
	height: 1px;
	background: #010000;
	position: absolute;
	top: 43px;
	right: 0;
}

@media screen and (max-width: 768px) {
	.message{
		padding: 50px 0;
	}
	
	.message__container{
		width: auto;
		padding: 0 20px;
	}

	.message__container::before{
		display: none;
	}
	
	.message__heading{
		margin-bottom: 30px;
		border-bottom: 1px solid #fff;
		padding-bottom: 30px;
	}
	
	.messageTxt{
		margin-bottom: 60px;
	}
	
	.message__txt-1{
		font-size: 22px;
		line-height: 1.7;
		position: relative;
		top: auto;
		left: auto;
		margin-bottom: 35px;
	}
	
	.message__txt-2{
		font-size: 16px;
		line-height: 2.2;
		width: auto;
		margin: 0 0 35px 0;
		padding-top: 0;
		white-space: wrap;
	}
	
	.message__txt-3{
		font-size: 22px;
	}
	
	.message__list{
		display: block;
		width: 280px;
		margin: 0 auto;
	}
	
	.message__item{
		width: 100%;
		margin-bottom: 20px;
	}
	
	.message__item a{
		line-height: 50px;
		font-size: 18px;
		letter-spacing: 0;
	}
	
	.message__item a:hover{
		opacity: 1;
	}
	
	.message__item a::after{
		width: 30px;
		top: 25px;
	}
}

/*フッタギャラリー
--------------------------------------------------*/
.footerGallery{
	width: 100%;
	line-height: 0;
}

.footerGallery img{
	width: 100%;
}

@media screen and (max-width: 768px) {

}

/*TOPへ
--------------------------------------------------*/
.pg-top{
	position: fixed;
	display: none;
	bottom: 120px;
	right: 0;
	z-index: 300;
	width: 40px;
}

.pg-top a{
	display: block;
	background: url(../img/gotop.svg) no-repeat 0 0;
	width: 100%;
	height: 97px;
	text-indent: 100%;
	white-space: nowrap;
	overflow: hidden;
}

@media screen and (min-width: 769px) {
	.pg-top a:hover{
		opacity: .4;
	}
}

@media screen and (max-width: 768px) {
	.pg-top{
		position: sticky;
		bottom: 70px;
		left: 0;
		width: 100%;
	}
	
	.pg-top a{
		position: absolute;
		bottom: 0;
		right: 0;
		width: 20px;
		height: 90px;
		background-size: 10px auto;
	}
}

/*フッター
--------------------------------------------------*/
.footer{
	background: #222;
}

.footer p,
.footer a{
	color: #fff;
	line-height: 1;
}

.footer__container{
	padding: 28px 0;
	text-align: center;
}

.footerLink__list{
	margin: 0 0 20px 0;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
}

.footerLink__item{
	font-size: 14px;
	letter-spacing: 0.1em;
}

.footerLink__item:before{
	content: "　｜　";
	color: #fff;
}

.footerLink__item:first-child:before{
	content: "";
}

.footer a:hover{
	text-decoration: underline;
}

.copyright{
	font-size: 14px;
	letter-spacing: 0.1em;
}

@media screen and (max-width: 768px) {
	.footer__container{
		padding: 20px 0;
	}
	
	.footerLink__list{
		margin: 0 0 10px 0;
	}
	
	.footerLink__item{
		font-size : 12px;
		line-height: 2;
		white-space: nowrap;
	}
	
	.copyright{
		font-size : 12px;
	}
}