@charset "utf-8";

/*//////////////////////////////////////////////////////////////////////////////

	下層共通

//////////////////////////////////////////////////////////////////////////////*/

/*------------------------------------------------------------------------------

 ページタイトル

------------------------------------------------------------------------------*/

main > header {
	position: relative;
	margin-bottom: 120px;
	height: 350px;
	background: url("../img/header_bg.jpg") center center no-repeat;
	background-size: cover;
	overflow: hidden;
}

main > header::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	z-index: 2;
	width: 100%;
	height: 100%;
	background-image: url("../img/radiation_bg.svg");
	background-size: cover;
	background-position: bottom right;
}

main > header::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
	width: 100%;
	height: 100%;
	background-color: rgba(var(--main-color),.7);
}

body.recruit main > header::after,
body.recruitment main > header::after,
body.entry main > header::after,
body.interview main > header::after {
	background-color: rgba(var(--sub-color),.7);
}


main > header .site_column {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translateY(-50%) translateX(-50%);
	z-index: 3;
}

main > header h1,
main > header p {
	display: flex;
	margin: 0;
	flex-direction: column;
	font-size: 2.875em;
	font-weight: bold;
	line-height: 1.2!important;
	text-align: center;
	color: #FFF;
	animation: heading 1s ease-out;
}
@keyframes heading {
0% {opacity: 0; margin-top: -2em;}
100% {opacity: 1; margin-top: 0;}
}

main > header h1::after,
main > header p::after {
	margin-top: .5em;
	font-size: .875rem;
	font-weight: 500;
	letter-spacing: .05em;
	font-family: 'Oswald', sans-serif;
}

body.business main > header h1::after {
	content: 'Business';
}

body.company main > header h1::after {
	content: 'Company';
}

body.overview main > header h1::after {
	content: 'Overview';
}

body.facility main > header h1::after {
	content: 'Facility';
}

body.office main > header h1::after {
	content: 'Office';
}

body.topics main > header h1::after {
	content: 'Topics';
}

body.recruit main > header h1::after,
body.recruitment main > header h1::after {
	content: 'Recruit';
}

body.privacy main > header h1::after {
	content: 'Privacy policy';
}

body.contact main > header h1::after {
	content: 'Contact us';
}

body.news main > header h1::after,
body.news main > header p::after {
	content: 'News';
}

body.blog main > header h1::after,
body.blog main > header p::after {
	content: 'Blog';
}

body.interview main > header p::after {
	content: 'Interview';
}

body.entry main > header h1::after {
	content: 'Entry';
}

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

main > header {
	margin-bottom: 80px;
	height: 200px;
}
	
}

@media screen and (max-width: 900px) {
	
main > header h1,
main > header p {
	font-size: 2.4em;
}	
	
}

@media screen and (max-width: 767px) {
	
main > header {
	margin-bottom: 12vw;
	height: 40vw;
}	
	
main > header h1,
main > header p {
	font-size: 2.2em;
}	
	
}


/*------------------------------------------------------------------------------

 目次

------------------------------------------------------------------------------*/

body.index main .site_column {
	max-width: 1300px;
}

body.index main .child_page {
	display: flex;
	flex-wrap: wrap;
}

body.index main .child_page a {
	display: block;
	width: 31%;
	margin-right: 3.5%;
	padding: 1em 1.5em;
	background-color: #FFF;
	border-radius: 10px;
	box-shadow: 0 0 .5em 0 rgba(0,0,0,.25);
	text-decoration: none;
}

body.index main .child_page a:hover {
	opacity: 1;
	filter: invert(7%);
}

body.index main .child_page a:not(:nth-child(-n+3)) {
	margin-top: 2.5%;
}

body.index main .child_page a:nth-child(3n) {
	margin-right: 0;
}

body.index main .child_page a dl {
	margin: 0;
}

body.index main .child_page a dl dt {
	font-size: 1.25em;
	font-weight: bold;
}

body.index main .child_page a dl dd {
	font-size: .875em;
	color: rgba(51,51,51,1);
}

@media screen and (max-width: 767px) {
	
body.index main .child_page a {
	width: 100%;
	margin-right: 0;
	border-radius: 1vw;
}

body.index main .child_page a:not(:nth-child(-n+1)) {
	margin-top: 4vw;
}
	
}


/*------------------------------------------------------------------------------

	本文

------------------------------------------------------------------------------*/

/*	記事タイトル
------------------------------------------------------------------------------*/

main .post header {
	position: relative;
}

main .post header time {
	position: absolute;
	top: -.2em;
	left: 0;
}


/*	ページ内リンク
------------------------------------------------------------------------------*/

body.contents main .page_link .site_column {
	max-width: 1000px;
}

body.contents main .page_link ul {
	display: flex;
	margin: 0;
	padding: .8em;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	background-color: #FFF;
	border-radius: 10px;
	list-style: none;
}

body.contents main .page_link ul li {
	margin: 0 1.8em 0 0;
	line-height: 2;
}

body.contents main .page_link ul li:last-child {
	margin-right: 0;
}

body.contents main .page_link ul li a {
	font-weight: bold;
	text-decoration: none;
	color: rgba(51,51,51,1)!important;
}

body.contents main .page_link ul li a::after {
	display: inline-block;
	content: '';
	width: 1em;
	height: 1em;
	margin-left: .4em;
	background-image: url("../../common/img/icon_arrow_green.svg");
	background-position: center right;
	background-repeat: no-repeat;
	background-size: cover;
	vertical-align: -.15em;
	transform: rotate(90deg);
}

@media (max-width: 900px) {
	
body.contents main .page_link ul li {
	margin-right: 1em;
}
	
}

@media (max-width: 767px) {
	
body.contents main .page_link ul li a {
	font-size: 3vw;
}
	
}


/*	開閉コンテンツ
------------------------------------------------------------------------------*/

main .oc_group > dl {
	background-color: #FFF;
	border-radius: 10px;
	box-shadow: 0 0 .5em 0 rgba(0,0,0,.25);
}

main .oc_group > dl > dt {
	display: block;
	position: relative;
	padding: 1.3em 1.6em 1.2em;
	font-size: 1.125em;
	font-weight: bold;
	line-height: 1.8em;
	cursor: pointer;
}

main .oc_group > dl > dt::before,
main .oc_group > dl > dt::after {
    content: '';
    display: inline-block;
    position: absolute;
    right: 1.6em;
    top: 50%;
    width: 15px;
    height: 2px;
    background-color: rgba(var(--main-color),.5);
    transform: translateY(-50%);
    transition: opacity .5s;
}

.recruit main .oc_group > dl > dt::before,
.recruit main .oc_group > dl > dt::after {
    background-color: rgba(var(--sub-color),.5);
}

main .oc_group > dl > dt::after {
    transform: translateY(-50%) rotate(90deg);
    transition: transform .5s;
}

main .oc_group > dl > dt.opened::before {
    opacity: 0;
}

main .oc_group > dl > dt.opened::after {
    transform: translateY(-50%) rotate(360deg);
}

main .oc_group > dl > dd {
	display: none;
	position: relative;
	margin-top: 1em;
	margin: 0 1.8em;
	padding: 1.2em 0em;
	border-top: 1px dotted rgba(var(--main-color),.5);
}

.recruit main .oc_group > dl > dd {
	border-top: 1px dotted rgba(var(--sub-color),.5);
}

main .oc_group.qa > dl > dt span,
main .oc_group.num > dl > dt span {
	display: block;
	padding: 0 2em 0 3em;
}

main .oc_group.qa > dl > dd {
	padding-left: 3.4em;
}

main .oc_group.qa > dl > dt span::before,
main .oc_group.qa > dl > dd::before,
main .oc_group.num > dl > dt span::before {
	position: absolute;
	left: 0;
	width: 1.8em;
	height: 1.8em;
	font-weight: 800;
	text-align: center;
	border-radius: 50%;
	font-family: 'Oswald', sans-serif;
	pointer-events: none;
}

main .oc_group.qa > dl > dt span::before,
main .oc_group.num > dl > dt span::before {
	left: 1.6em;
	background-color: rgba(var(--main-color),1);
	color: #FFF;
}

.recruit main .oc_group > dl > dt span::before {
	background-color: rgba(var(--sub-color),1);
}

main .oc_group.qa > dl > dt span::before {
	content: "Q";
	line-height: 1.66em;
}

main .oc_group.num {
	counter-reset: number;
}

main .oc_group.num > dl > dt span::before {
	counter-increment: number;
	content: counter(number);
}

main .oc_group.qa > dl > dd::before {
	content: "A";
	top: 1.1em;
	background-color: rgba(var(--accent-color),1);
	font-size: 1.125em;
	line-height: 1.8em;
	color: rgba(51,51,51,1);
}

@media screen and (max-width: 767px) {
	
main .oc_group > dl > dt::before,
main .oc_group > dl > dt::after {
	width: 3.125vw;
	height: 0.417vw;
}
	
}


/*------------------------------------------------------------------------------

	フロー共通

------------------------------------------------------------------------------*/

main .flow .step {
	position: relative;
	display: flex;
	padding-bottom: 1em;
}

main .flow .step::after {
	content: '';
	position: absolute;
	left: 40px;
	top: 0;
	height: 100%;
	border-left: 2px dotted rgba(var(--main-color),1);
	z-index: -1;
}

main .flow .step:last-child::after {
	display: none;
}

main .flow .step .num {
	display: flex;
	width: 80px;
	height: 80px;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	font-family: 'Oswald', sans-serif;
	line-height: 1.1;
	color: #FFF;
	background-color: rgba(var(--main-color),1);
	border-radius: 50%;
}

main .flow .step .num span:nth-child(2) {
	font-size: 1.625em;
}

main .flow .step .text {
	margin-left: 2%;
	flex: 1;
}

main .flow .step .title {
	margin: .5em 0;
	font-size: 1.875em;
	font-weight: bold;
}

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

main .flow .step::after {
	left: 35px;
}
	
main .flow .step .num {
	width: 70px;
	height: 70px;
}
	
}

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

main .flow .step::after {
	left: 8vw;
}
	
main .flow .step .num {
	width: 16vw;
	height: 16vw;
}

main .flow .step .text {
	margin-left: 5vw;
}
	
main .flow .step .title {
	margin: 4vw 0;
	font-size: 1.5em;
}
	
}


/*------------------------------------------------------------------------------

	お知らせ一覧

------------------------------------------------------------------------------*/

body.news main .site_column {
	max-width: 900px;
}


/*------------------------------------------------------------------------------

	社員インタビュー アーカイブ

------------------------------------------------------------------------------*/

body.interview  main #archive {
	margin-top: 90px;
}

body.interview  main #archive .site_column {
	max-width: 1300px;
}

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

body.interview  main #archive {
	margin-top: 15vw;
}

}


/*------------------------------------------------------------------------------

	募集要項

------------------------------------------------------------------------------*/

body.recruitment .link_button,
body.recruitment .close {
	margin: 2em 0;
	text-align: center;
}

body.recruitment .close span  {
	display: inline-block;
	width: 50%;
	padding: 1em;
	background-color: rgba(219,94,94,1);
	font-weight: bold;
	color: #FFF;
}

body.recruitment #content .link_button a {
	background-color: rgba(var(--sub-color),1);
}

body.recruitment #content .link_button a::after {
	background-image: url("../img/icon_arrow_white_green.svg");
}

body.recruitment .entry {
	margin-top: 2.5em;
}

body.recruitment .entry dd .tel,
body.recruitment .entry dd a {
	font-family: 'Oswald', sans-serif;
	color: rgba(var(--sub-color), 1);
}

body.recruitment .entry dd .tel {
	font-size: 1.25em;
}

body.recruitment .entry dd .manager {
	font-size: 1.125em;
	font-weight: bold;
}

body.recruitment .entry dd a {
	font-size: 2.25em;
}

body.recruitment main .flow .step::after {
	border-left: 2px dotted rgba(var(--sub-color),1);
}

body.recruitment main .flow .step .num {
	background-color: rgba(var(--sub-color),1);
}

body.recruitment main dl.highlight {
	background-color: rgba(227,241,237,1);
	border-bottom: 1px solid rgba(var(--sub-color),1);
}

body.recruitment main dl.highlight dt {
    background-color: rgba(var(--sub-color),1);
}

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

body.recruitment .link_button a,
body.recruitment .close span {
	width: 100%;
	font-size: 3.2vw;
}
	
body.recruitment .entry dd .manager {
	display: block;
}	

}


/*------------------------------------------------------------------------------

 エラー

------------------------------------------------------------------------------*/

/*	リンクボタン
------------------------------------------------------------------------------*/

body.error .link_button {
	margin-top: 3em;
	text-align: center;
}



