@charset "UTF-8";


/*=================================================================*/
/*	webフォント */
/*=================================================================*/
@font-face {
	font-family: "NotoSansJP";
	font-style: normal;
	font-weight: 500;
	src: url("../font/NotoSansJP-Medium.ttf") format("truetype");
}
@font-face {
	font-family: "NotoSansJP";
	font-style: normal;
	font-weight: 700;
	src: url("../font/NotoSansJP-Bold.ttf") format("truetype");
}
@font-face {
	font-family: "Outfit";
	font-style: normal;
	font-weight: 300;
	src: url("../font/Outfit-Regular.ttf") format("truetype");
}
@font-face {
	font-family: "Outfit";
	font-style: normal;
	font-weight: 400;
	src: url("../font/Outfit-Medium.ttf") format("truetype");
}

@font-face {
	font-family: "Outfit";
	font-style: normal;
	font-weight: 500;
	src: url("../font/Outfit-SemiBold.ttf") format("truetype");
}
@font-face {
	font-family: "A1minchoTest";
	font-style: normal;
	font-weight: 700;
	src: url("../font/A-OTF-A1MinchoStd-Bold.woff") format("woff");
}

/*=================================================================*/
/*	共通スタイル */
/*=================================================================*/

body {
	padding-bottom: 0;
	overflow: hidden;
}

a {
	transition: 0.5s;
}

a:link{
	color:#333;text-decoration:none;
}
a:visited{
	color:#333;text-decoration:none;
}
a:hover{
	opacity: 0.5;
	transition: 0.5s;
}
a:active{
	color:#333;
}

a:focus {
	outline: unset;
}

.img {
	width: 100%;
}

.img img {
	max-width: 100%;
	height: auto;
}

.mb100 {
	margin-bottom: 100px;
}

/*=================================================================*/
/*	ヘッダーロゴ */
/*=================================================================*/

.headerMain {
	margin: 0;
	width: unset;
	max-width: none;
}


.header_PC {
	display: flex;
	justify-content: space-between;
	align-items: center;
	max-width:1200px;
	margin: 0 auto 30px;
	padding: 20px 0 0;
}

.header_icon a {
	margin-left: 20px;
	height: 32px;
} 



/*=================================================================*/
/*	ナビゲーター */
/*=================================================================*/
.header_menu ul.mainNav {
	display: flex;
	justify-content: center;
	
}

.header_menu ul.mainNav li a {
	position: relative;
	padding: 20px 60px;
	display: block;
	font-family: "Outfit";
	font-weight: 500;
	letter-spacing: 0.2px;
	font-size: 16px;
	text-align: center;
}

.header_menu ul.mainNav li.li_group a.delta:hover {
 opacity: 1;	
}

.header_menu ul.mainNav >li.li_group >a::before {
	position: absolute;
	content: "";
	border-style: solid;
	border-right: 10px solid transparent;
	border-left: 10px solid transparent;
	border-bottom: 15px solid #333;
	border-top: 0;
	bottom: -15px;
	left: 50%;
	margin-left: -7px;
	display: none;
}


.header_menu ul.mainNav>li.li_group:hover>a::before {
	display: block;
}

.header_menu ul.mainNav li > a::after {
	position: absolute;
	content: "";
	width: 1px;
	height: 20px;
	background: #333;
	top: 17px;
	right: 0;
}

.header_menu ul li:last-child a::after {
	position: unset;
}

.header_menu ul.mainNav {
	position: relative;
}
.header_menu ul.mainNav li {
	padding: 0 0 15px;
}
.header_menu ul.mainNav .li_group .dropdown {
	display: none;
	position: absolute;
	justify-content: center;
	background-color: #333;
	padding: 55px 0;
	left: 0;
	z-index: 10;
  width: 100%;
  top: 72px;
}

.header_menu ul.mainNav .li_group:hover .dropdown {
	display: flex;
}

.header_menu ul.mainNav .li_group:hover::before {
	opacity: 1;
	transition: 0.5s;
}


.header_menu ul.mainNav .li_group .dropdown li {
	padding: 0 50px;
}

.header_menu ul.mainNav .li_group .dropdown a {
	color: #fff;
	position: relative;
	display: block;
	padding: 0;
	font-family: "Outfit";
	font-weight: 400;
	letter-spacing: 0.2px;
}

.header_menu ul.mainNav .li_group .dropdown a::before {
	position: absolute;
	content: "";
	width: 7px;
	height: 7px;
	border-top: 2px #fff solid;
	border-right: 2px #fff solid;
	transform: rotate(45deg);
	top: 14px;
	left: -20px;
	transition: 0.3s;
}

.header_menu ul.mainNav .li_group .dropdown a:hover::before {
	left: -15px;
	transition: 0.3s;
}


.header_menu ul.mainNav .li_group .dropdown span {
	font-size: 12px;
	font-weight: normal;
}

.navList {
	font-family: "Outfit";
	font-weight: 300;
	padding: 40px 0;
	}

/*=================================================================*/
/*	footer */
/*=================================================================*/
footer {
	text-align: center;
	font-family: Outfit;
	font-weight: 300;
	color: #fff;
	background: #333;
	padding: 30px 0;
	letter-spacing: 0.5px;
	position: relative;
	margin-top: 60px;
}

.footerMain {
  background-color: #333;
  padding: 0;
  color: #FFF;
  width: 100%;
  max-width: unset;
  margin: 100px 0 0;
}

/*=================================================================*/
/*	TOPへ戻る
/*=================================================================*/


footer a.topscroll{
	padding: 50px 20px 20px;
	width: 60px;
	height: 154px;
	display: flex;
	background: #E50012;
	align-items: center;
	justify-content: center;
	box-sizing: border-box;
	position: fixed;
	right: -100px;
	bottom: 0px;
	z-index: 10;
	will-change: transform;
	transition: 0.6s;
	transition-delay: 0.4s;
}
footer a.topscroll.active{
	right: 0;
	transition: 0.6s;
	transition-delay: 0.6s;
}
footer a.topscroll:hover{
	opacity: 1;
}
footer a.topscroll > span{
	writing-mode: vertical-rl;
	white-space: nowrap;
	color: #fff;
	font-size: 1.6rem;
	font-weight: 500;
}
footer a.topscroll > span:before{
	content: "";
	margin: auto;
	width: 10px;
	height: 10px;
	display: block;
	border: 2px solid #fff;
	border-width: 3px 3px 0 0;
	transform:rotate(-45deg);
	position: absolute;
	top: 26px;
	left: 0;
	right: 0;
	transition: 0.4s;
}
footer a.topscroll:hover > span:before{
	top: 18px;
	transition: 0.4s;
}


/*=================================================================*/
/*	3カラム画像調整
/*=================================================================*/

.threeCards {
	z-index: 1;
	position: relative;
	
}

/*=================================================================*/
/*	page-globao-ocean-works.php フッター調整用
/*=================================================================*/

.onepage {
  overflow: hidden;
	padding: 0 15px;
}

/*=================================================================*/
/*	共通ボタンデザイン
/*=================================================================*/


.hanyou_btn {
	text-align: center;
	margin: 30px 0 70px;
}
.hanyou_btn a {
	background-color: #E50012;
	padding: 23px 80px;
	border-radius: 50px;
	font-size: 24px;
	color: #fff;
	font-weight: 500;
	transition: 0.3s;
	display: inline-block;
	position: relative;
}

.hanyou_btn a::before {
  content: "";
  position: absolute;
  width: 12px;
  height: 12px;
  border-top: solid 2px;
  border-right: solid 2px;
  top: 50%;
  margin-top: -6px;
  right: 28px;
  color: #ffffff;
  display: block;
  transform: rotate(45deg);
}
.hanyou_btn a:hover {
	background-color: #BB000F;
	opacity: 1;
}

/*=================================================================*/
/*	採用ページ調整
/*=================================================================*/
p.mt_0 {
	margin-bottom: 30px !important;
	margin-top: 0px !important;
}


#u2349 {
  display: none;
}

#copyright {
  display: -webkit-flex;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0;
  margin: 0;
  min-height: 84px;
  letter-spacing: 0.08em;
}




html #wpadminbar {
	position: fixed;
	top: 0;
}

/*=================================================================*/
/*	スマホメニュー
/*=================================================================*/
.sidr {
  border-right: none;
}
.sidr.left {
  background: #333;
	box-shadow: 4px 0 6px rgb(0 0 0 / 20%);
}
.sidr ul li a, .sidr ul li span {
  color: #FFF;
}
.sidr ul {
	border-bottom: none;
}
.sidr ul li {
	border-top: none;
	border-bottom: 1px solid #696969;
}
#sidr ul li a {
	min-height: 3.3em;
	display: -webkit-flex;
	display: flex;
	flex-direction: column;
	justify-content: center;
}
#sidr ul li a p {
	height: unset;
	line-height: 1.4;
}

#sidr ul li a.menu-button {
	position: relative;
}
#sidr ul li a.menu-button img {
	display: none;
}
#sidr ul li a.menu-button::before,
#sidr ul li a.menu-button::after {
	content: "";
	width: 31px;
	height: 4px;
	position: absolute;
	background: #FFF;
}
#sidr ul li a.menu-button::before {
	left: 16px;
	top: 24px;
	transform: rotate(45deg);
}
#sidr ul li a.menu-button::after {
	left: 15px;
	top: 24px;
	transform: rotate(-45deg);
}



@media (min-width: 576px) {
	.container {
		max-width: initial !important;
		padding-left: 15px;
		padding-right: 15px;
	}
}


/*******************************************************************/
/* tablet */
/*******************************************************************/
@media screen and (max-width:1200px) {

	.header_PC {
    padding: 20px 2%;
	}

	section.topics, section.insta, section.row_group, section.old_group {
   padding: 0 4%;
	}

	.header_menu ul.mainNav li a {
		padding: 20px 35px;
	}

	.header_menu ul.mainNav .li_group .dropdown li {
		padding: 0 24px;
	}

	.header_menu ul.mainNav .li_group .dropdown span {
		font-size: 10px;
	}

}

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

	/*=================================================================*/
	/*	ヘッダー
	/*=================================================================*/

	.headerMain {
    padding: 15px 0;
	}

	.header_PC {
		display: none;
	}


	.menusTop {
		float: none;
		position: fixed;
		z-index: 100;
	}

	.menusTop > div {
		position: relative;
		width: 30px;
		height: 20px;
	}

	.menusTop > div a {
		height: 20px;
		display: block;
	}

	.menusTop > div a span {
		position: absolute;
		content: "";
		background: #333;
		width: 30px;
		height: 3px;
		top: 50%;
		left: 0;		
	}

	.menusTop > div a span:nth-child(1) {
		top: 0;
	}

	.menusTop > div a span:last-child {
		top: 100%;
	}
	.snsTop {
		margin: 0;
		width: auto !important;
		float: none;
		position: relative;
	}
	
	
	.snsTop .SPtoplogo {
		margin: 0 auto;
		width: 150px;
	}


	.snsTop .SPicon {
		width: auto;
		display: flex;
		align-items: center;
		justify-content: end;
		position: absolute;
		top: 0;
		right: 0;
	}

	.snsTop span {
		float: none;
		width: 18%;
  }

	.snsTop span:last-child {
		margin-right: 0px;
	}

	.snsTop span a img {
		max-width: 100%;
		max-height: 28px;
	}


	/*=================================================================*/
	/*	ナビゲーター */
	/*=================================================================*/
	.header_menu ul.mainNav {
		display: none;
	}

	.navList {
		border-top: none;
		padding: 25px 0;
  }
	

	/*=================================================================*/
	/*	footer */
	/*=================================================================*/

	footer {
		text-align: center;
		font-family: Outfit;
		font-weight: 300;
		color: #fff;
		background: #333;
		padding: 30px 0;
		letter-spacing: 0.5px;
	}

	footer a.topscroll{
	width: 50px;
	height: 144px;
	}

/*=================================================================*/
/*	3カラム画像調整
/*=================================================================*/

	.row.threeCards {
			display: -ms-flexbox;
			display: flex;
			-ms-flex-wrap: wrap;
			flex-wrap: wrap;
			margin-right: 0;
			margin-left: 0;
			padding: 0 1%
	}

/*=================================================================*/
/*	共通ボタンデザイン
/*=================================================================*/

	.hanyou_btn a {
		padding: 3% 12%;
		font-size: 16px;
		text-align: center;
	}


	.hanyou_btn a::before {
		width: 9px;
		height: 9px;
		margin-top: -5px;
		right: 19px;
	}
}




