@charset "utf-8";


.pc {
	display: none !important;
}


#floating-banner-common {
	display: none;
}




#floating-banner {
	position: fixed;
	box-sizing: border-box;
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	max-width: 375px;
	height: 54px;
	left: calc(50% - 187px);
	bottom: 0;
	z-index: 99;
	padding: 0 5px;
	border: 1px solid #c9c9c9;
	background: #fff;
}





#floating-banner button {
	position: absolute;
	width: 18px;
	height: 18px;
	right: 0;
	top: 0;
	margin: 0;
	padding: 0;
	border: none;
	background: #fff url(/img/icon_close.svg) 50% 50% no-repeat;
	background-size: 10px auto;
}
#floating-banner button {
	cursor: pointer;
}

#floating-banner img {
	width: 136px;
	height: auto;
	margin-left: 10px;
}
#floating-banner dl {
}
#floating-banner dt {
	display: none;
}
#floating-banner dd {
}
#floating-banner dd a {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 200px;
	height: 42px;
	font-size: 13px;
	color: #fff;
	background: #165d89;
	cursor: pointer;
}


@media screen and (max-width:375px) {
	#floating-banner {
		left: 0;
	}
}
@media screen and (max-width:374px) {
	#floating-banner {
		width: 320px;
		left: calc(50% - 160px);
	}
	#floating-banner img {
		width: 126px;
		margin-left: 5px;
	}
	#floating-banner dd a {
		width: 160px;
		font-size: 11px;
	}
}

#floating-banner {
	transform: translateY(100%);
	transition: all 300ms ease-out;
}
body.floating #floating-banner {
	transform: translateY(0);
}
#floating-banner.closed {
	transform: translateY(100%) !important;
	visibility: hidden;
}






#floating-banner {
	display: none;
}







#banner-modal {
	position: fixed;
	display: flex;
	flex-direction: column;
	box-sizing: border-box;
	align-items: center;
	width: 300px;
	height: 320px;
	left: calc(50% - 150px);
	top: calc(50% - 160px);
	z-index: 10001;
	padding: 40px 0 0;
	background: #fff url(/dive_asset/img/bg_modal_sp.png) 50% 100% no-repeat;
	background-size: 260px auto;
	border: 2px solid #2f5c82;
	border-radius: 10px;
	box-shadow: 0 0 10px 0 rgba(0,0,0,0.3);
	
	opacity: 0;
	visibility: hidden;
	transform: translateY(50px);
	transition: all 400ms ease-out;
}
body.floating #banner-modal {
	opacity: 1;
	visibility: visible;
	transform: translateY(0px);
}


#banner-overlay {
	position: fixed;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	z-index: 10000;
	background: rgba(0,0,0,0.4);
	
	opacity: 0;
	visibility: hidden;
	transition: all 400ms ease-out;
}
body.floating #banner-overlay {
	opacity: 1;
	visibility: visible;
}



#banner-modal p {
	margin: 0 0 20px;
	font-size: 16px;
	color: #2F5c82;
	text-align: center;
	line-height: 1.8;
}
#banner-modal strong {
	position: relative;
	display: inline-block;
}
#banner-modal strong span {
	position: relative;
	z-index: 5;
}
#banner-modal strong em {
	position: absolute;
	display: block;
	width: 100%;
	height: 18px;
	left: 0;
	bottom: 0;
	z-index: 1;
	background: #fff4B9;
}

#banner-modal > a {
	position: relative;
	cursor: pointer;
	display: flex;
	justify-content: center;
	align-items: center;
	box-sizing: border-box;
	width: 260px;
	min-height: 50px;
	font-size: 13px;
	font-weight: 700;
	color: #fff;
	border-radius: 50px;
	background: #ff6f46 url(/img/icon_popup.svg) right 14px top 50% no-repeat;
	background-size: 14px auto;
	border: 2px solid #fff;
}

#banner-modal > a {
	transition: all 300ms ease-out;
}
#banner-modal > a:hover {
	opacity: 0.7;
}

#banner-modal .close {
	position: absolute;
	width: 24px;
	height: 24px;
	right: 12px;
	top: 12px;
}
#banner-modal .close a {
	display: block;
	height: 24px;
	background: url(../img/btn_zoomout.png) 0 0 no-repeat;
	background-size: 24px auto;
	cursor: pointer;
}





#mini-banner {
	position: fixed;
	box-sizing: border-box;
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	max-width: 375px;
	height: 54px;
	left: calc(50% - 187px);
	bottom: 0;
	z-index: 99;
	padding: 0 5px;
	border: 1px solid #c9c9c9;
	background: #fff;
	
	opacity: 0;
	visibility: hidden;
	transform: translateY(200px);
	transition: all 400ms ease-out;
}
body.mini-banner #mini-banner {
	opacity: 1;
	visibility: visible;
	transform: translateY(0px);
}

#mini-banner button {
	position: absolute;
	width: 18px;
	height: 18px;
	right: 0;
	top: 0;
	margin: 0;
	padding: 0;
	border: none;
	background: #fff url(/img/icon_close.svg) 50% 50% no-repeat;
	background-size: 10px auto;
	cursor: pointer;
}


#mini-banner p {
	width: 136px;
	height: 30px;
	margin-left: 10px;
	font-size: 0;
	background: url(/img/logo_dive_large.png) 0 0 no-repeat;
	background-size: contain;
}

#mini-banner > a {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 200px;
	height: 42px;
	font-size: 13px;
	color: #fff;
	background: #ff6f46;
	cursor: pointer;
}

#mini-banner > a {
	transition: all 300ms ease-out;
}
#mini-banner > a:hover {
	background-color: #ff9a7e;
}

#mini-banner .zoom {
	position: absolute;
	width: 20px;
	height: 20px;
	right: 8px;
	top: 8px;
	display: none;
}
#mini-banner .zoom a {
	display: block;
	height: 20px;
	background: url(../img/btn_zoomup.png) 0 0 no-repeat;
	background-size: 20px auto;
	cursor: pointer;
}











#wrap {
	overflow: hidden;
}

#content-image h1 span {
	position: relative;
	display: inline-block;
}
#content-image strong {
	position: absolute;
	display: block;
	right: 0;
	top: 0;
	padding: 5px 10px 0;
	transform: translate(0, -100%);
	font-size: 0.75rem;
	background: #fff;
}
#content-image .article span.large {
	display: block;
	font-size: 1.375rem;
	text-align: left;
}

.dive-intro {
	margin: 0 0 100px;
}

.dive-intro .text {
}
.dive-intro .logo {
	width: 200px;
	margin: 30px auto 0;
	padding: 40px 0 0;
	text-align: center;
	border-top: 1px solid #c9c9c9;
}
.dive-intro .logo img {
	width: 140px;
	height: auto;
}

.dive-intro h3 {
	font-size: 20px;
	font-weight: 500;
	line-height: 1.5;
}
.dive-intro p {
	margin: 30px 0 0;
	font-size: 1.0rem;
	line-height: 1.8;
}






.dive-feature {
	position: relative;
	margin: 50px 0 0;
}



.dive-feature ul {
	border-top: 1px solid #c9c9c9;
}
.dive-feature li {
	box-sizing: border-box;
	padding: 30px 20px;
	border-bottom: 1px solid #c9c9c9;
}


.dive-feature dt {
	display: flex;
	align-items: center;
	font-size: 18px;
	line-height: 1.6;
}
.dive-feature dt img {
	width: 50px;
	height: auto;
}
.dive-feature dt span {
	display: block;
	margin-right: 20px;
}
.dive-feature dd {
	margin: 20px 0 0;
	font-size: 1.0rem;
	line-height: 1.8;
}



.dive-figure {
	margin: 50px 0 0;
	padding: 40px 0;
	text-align: center;
	background: #fafafa;
}
.dive-figure img {
	width: 90%;
	height: auto;
}







.banner-dive {
	position: relative;
	margin: 50px -20px 0;
}
.banner-dive .banner-inner {
	position: absolute;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 20px;
	background: #fff4B9;
}
.banner-dive p {
	margin: 0 0 15px;
	font-size: 14px;
	font-weight: 500;
	line-height: 1.6;
	text-align: center;
	color: #696969;
}
.banner-dive a {
	position: relative;
	cursor: pointer;
	display: flex;
	justify-content: center;
	align-items: center;
	box-sizing: border-box;
	width: 280px;
	min-height: 50px;
	font-size: 14px;
	font-weight: 700;
	color: #fff;
	border-radius: 50px;
	background: #ff6f46 url(/img/icon_popup.svg) right 18px top 50% no-repeat;
	background-size: 14px auto;
	border: 2px solid #fff;
}





.dive-companies {
	margin: 50px 0 0;
	padding: 50px 0 0;
	border-top: 1px solid #c9c9c9;
}





.companies-list {
	position: relative;
	margin: 30px 0 0;
}




.companies-list ul {
	display: flex;
}
.companies-list li {
	width: 120px;
}
.companies-list img {
	width: 90px;
	height: auto;
}
.companies-list ul.sp + ul.sp {
	margin-top: 10px;
}
.companies-list ul:nth-child(2n) {
	margin-left: 60px;
}


.companies-list .logos {
	position: relative;
	left: -60px;
}
.companies-list:hover .logos {
	animation-play-state: paused !important;
}




.dive-companies p {
	margin: 30px 0 0;
	font-size: 14px;
	line-height: 1.8;
}





.dive-users {
	margin: 50px -20px 0;
	padding: 50px 0 0;
	border-top: 1px solid #c9c9c9;
}

.users-list {
	position: relative;
	margin: 50px 0 0;
	padding: 50px 20px;
	background: #eaf7ff;
}



.users-list ul {
}
.users-list li {
}
.users-list li:nth-child(n + 2) {
	margin-top: 50px;
}
.users-list dl {
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.users-list dt {
	box-sizing: border-box;
	width: 50px;
	height: 50px;
	background: #fff;
	border: 1px solid #111;
	border-radius: 25px;
}
.users-list dt img {
	width: 100%;
	height: auto;
}
.users-list dd {
	width: calc(100% - 50px - 15px);
	font-size: 18px;
	line-height: 1.4;
}
.users-list .comment {
	position: relative;
	margin: 30px 0 0;
	padding: 20px;
	font-size: 15px;
	line-height: 1.7;
	background: #fff;
	border-radius: 20px;
}
.users-list .comment::before {
	position: absolute;
	display: block;
	content: "";
	width: 42px;
	height: 45px;
	left: 20px;
	top: -30px;
	background: url(../img/balloon.png) 0 100% no-repeat;
	background-size: 30px auto;
}






.dive-flow {
	margin: 50px -20px 0;
	padding: 30px 20px;
	background: #fafafa;
}
.dive-flow h3 {
	margin: 0 0 40px;
	text-align: center;
	font-size: 20px;
	font-weight: 500;
}
.dive-flow ol {
}
.dive-flow li {
	position: relative;
	text-align: center;
}
.dive-flow li + li {
	margin-top: 50px;
}
.dive-flow li img {
	width: 120px;
	height: auto;
}
.dive-flow li dd {
	margin: 15px 0 0;
	font-size: 15px;
}
.dive-flow li::before {
	position: absolute;
	content: "";
	display: block;
	width: 20px;
	height: 39px;
	top: 110px;
	margin-left: -10px;
	background: url(../img/arrow.png) 0 0 no-repeat;
	background-size: 100% auto;
	display: none;
}
.dive-flow li:nth-child(1)::before {
	display: none;
}





.dive-video {
	margin: 50px 0 0;
	padding: 50px 0 0;
	border-top: 1px solid #c9c9c9;
}

.video-container {
	background: #fafafa;
}
.video-container iframe {
	width: calc(100vw - 40px);
	height: calc((100vw - 40px) * 0.5625);
	border: 1px solid #707070;
}





.dive-recruit {
	margin: 50px 0 0;
}


.dive-recruit-list {
}
.dive-recruit-list ul {
}

.dive-recruit-list li {
	box-sizing: border-box;
	padding: 30px;
	border: 1px solid #c9c9c9;
	background: #fafafa;
}
.dive-recruit-list li + li {
	margin-top: 20px;
}
.dive-recruit-list li dd:nth-of-type(1) {
	text-align: center;
}
.dive-recruit-list li dd img {
	width: 124px;
	height: auto;
}
.dive-recruit-list li dt {
	margin: 0 0 30px;
	font-size: 23px;
	line-height: 1.6;
	text-align: center;
}
.dive-recruit-list li dt span {
	display: block;
	margin: 20px 0 0;
	font-size: 14px;
}

.dive-recruit-list li dd:nth-of-type(2) {
	margin: 25px 0 0;
	font-size: 15px;
	line-height: 1.8;
}

.dive-recruit-list dl {
	position: relative;
	padding-bottom: 100px;
}
.dive-recruit-list li dd:nth-of-type(3) {
	position: absolute;
	width: 100%;
	height: 100px;
	bottom: 0;
}
.dive-recruit-list li dd:nth-of-type(3) a {
	display: flex;
	justify-content: center;
	align-items: center;
	box-sizing: border-box;
	width: 100%;
	height: 70px;
	margin: 30px 0 0;
	border: 1px solid #165D89;
	background: #fff url(../img/icon_popup_blue.svg) right 20px top 50% no-repeat;
	background-size: 16px;
	transition: all 400ms ease-out;
}
.dive-recruit-list li dd:nth-of-type(3) a img {
	width: 120px;
	height: auto;
}











.pickup-column {
	margin-top: 0 !important;
	padding-top: 0 !important;
}
.pickup-column .inner {
	padding-top: 50px !important;
}






#content-image .article p {
	text-align: left;
}



html:lang(en) #banner-modal p {
	margin-left: 20px;
	margin-right: 20px;
	font-size: 15px;
}
html:lang(en) #banner-modal strong span {
	background: #fff4B9;
}
html:lang(en) #banner-modal strong em {
	display: none;
}




