@charset "utf-8";

body {
	margin: 0px;
	padding: 0px;
}

* {
	font-family: "Noto Sans JP", sans-serif;
	color: #1a1a1a;
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

ul, li {
	list-style: none;
	margin: 0px;
	padding: 0px;
}

.pc_only {}
.sp_only {display: none;}


.txtbtn01 {
    margin-top: 15px;
}
.txtbtn01 a {
    display: inline-block;
    min-width: 220px;
    text-align: center;
    color: #fff;
    font-size: 15px;
    line-height: 1;
    text-decoration: none;
    background: #434343;
    padding: 12px 40px 14px;
	transition-duration: .5s;
}
.txtbtn01 a:hover {
    background: #999;
}
a.txtlink01 {
	text-decoration: underline;
}
a:hover.txtlink01 {
	text-decoration: none;
	color: #1740b9;
}
.txtcenter {
	text-align: center !important;
}

.fadeIn_up {
  opacity: 0;
  transform: translate(0, 50px);
  transition: 1.2s;
}
.fadeIn_up.is-show {
  transform: translate(0, 0);
  opacity: 1;
}

@media(min-width:769px) and (max-width:1200px) {
}
@media(max-width:768px){
	.pc_only { display: none;}
	.sp_only { display: inherit;}

	.txtbtn01 a {
		font-size: 12px;
		padding: 10px 30px 12px;
	}
}


/*---- header ----*/
#cont header {
	position: fixed;
	display: inline-block;
	width: 100%;
	color: #4d4d4d;
	z-index: 100;
}
#cont header a {
	text-decoration: none;
}
#cont header a:hover {
	text-decoration: underline;
	color: #1740b9;
}
#cont header > div {
	display: flex;
	justify-content: space-between;
	max-width: 1540px;
	margin: 0 auto;
    padding: 0 20px;
}
#cont header .companyname {
	display: flex;
	align-items: center;
}
#cont header .companyname .logo {
	width: 184px;
	margin-right: 50px;
}
#cont header .companyname .logo img {
	width: 100%;
}
#cont header .companyname .txt {
	font-size: 12px;
	line-height: 18px;
	margin-top: 12px;
}
#cont header .companyname .txt a:hover {
	text-decoration: none;
	color: #4d4d4d;
}
#cont header .globalmenu {
	margin-top: 35px;
}
#cont header .globalmenu > ul {
	display: flex;
	gap: 0px 30px;
}
#cont header .globalmenu > ul > li.group {
	font-size: 12px;
	line-height: 18px;
	margin-left: 30px;
    margin-top: 5px;
}
#cont header .globalmenu > ul > li.group a::after {
	content: '';
	display: inline-block;
	width: 11px;
	height: 11px;
	background-image: url(/img/icon_winopen.svg);
	background-size: contain;
	vertical-align: middle;
	margin-left: 8px;
}
#cont header .globalmenu > ul > li {
	position: relative;
    white-space: nowrap;
}
#cont header .globalmenu > ul > li > .globalsubmenu {
	position: absolute;
	left: 0;
	max-height: 0;
	padding: 5px 0 0;
	margin: 0 -15px;
	width: max-content;
	overflow: hidden;

}
@media (hover: hover) {
	#cont header .globalmenu > ul > li:hover .globalsubmenu{
		max-height: 500px;
		transition-duration: 1s;
	}
}
@media (hover: none) {
	#cont header .globalmenu > ul > li.active .globalsubmenu {
		max-height: 500px;
		transition-duration: 1s;
	}
}
#cont header .globalmenu > ul > li ul > li {
	font-size: 14px;
	line-height: 28px;
	padding: 5px 15px;
}
#cont #globalheader .globalmenu > ul > li > .globalsubmenu li:first-child {
	padding-top: 15px
}
#cont #globalheader {
	transition-duration: .3s;
}
#cont #globalheader.scroll {
	background-color: rgba(255,255,255,0.9);
	border-bottom: solid 1px #ccc;
}
#cont #globalheader.scroll .globalmenu > ul > li > .globalsubmenu li {
	background-color: rgba(255,255,255,0.9);
	background-blend-mode: lighten;
}
#cont #globalheader.scroll .globalmenu > ul > li > .globalsubmenu li:last-child {
	padding-bottom: 15px
}
#cont #globalheader .arrow_anchor{
	display: inline-block;
	vertical-align: middle;
	width: 8px;
	height: 8px;
	margin: -5px 0 0 8px;
	border-right: solid 2px #000;
	border-bottom: solid 2px #000;
	transform: rotate(45deg);
}

@media(min-width:769px) and (max-width:1200px) {
	#cont header .companyname .logo {
		width: 28%;
		margin-right: 20px;
	}
	#cont header .companyname .txt {
		font-size: 1vw;
	}
	#cont header .globalmenu ul {
		font-size: 1.2vw;
		gap: 0px 15px;
	}
	#cont header .globalmenu li.group {
		font-size: 1vw;
	}
	#cont header .globalmenu > ul > li.group {
		margin-top: 0px;
	}
}
@media(max-width:768px){
	#cont header > div {
		display: inherit;
        width: 100%;
		padding: 0 10px;
	}
	#cont header .companyname {
        align-items: center;
		justify-content: space-between;
	}
	#cont header .companyname .logo {
		width: 28%;
		margin-right: 10px;
	}
	#cont header .companyname .txt {
        flex-grow: 1;
        text-align: right;
		font-size: 2vw;
		margin-top: 5px;
	}
	#cont header .globalmenu {
		display: none;
	}
}


/*---- breadcrumbs ----*/
#cont #breadcrumbs {
	position: relative;
	width: 100%;
	font-family: "Noto Sans JP";
	font-size: 13px;
	line-height: 20px;
	margin: 0 auto 240px;
	z-index: 9;
}
#cont #breadcrumbs a {
	text-decoration: none;
	color: #707070;
}
#cont #breadcrumbs a:hover {
	color: #1740b9;
}
#cont #breadcrumbs .list {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
}
#cont #breadcrumbs ul {
	display: flex;
	justify-content: flex-end;
	width: 100%;
	max-width: 1200px;
}
#cont #breadcrumbs .arrow {
	position: relative;
	display: inline-block;
	width: 6.2px;
	height: 10.5px;
	margin: 0 18px;
}
#cont #breadcrumbs .arrow::before,
#cont #breadcrumbs .arrow::after {
	content: "";
	position: absolute;
	top: calc(50% - 0.5px);
	right: 0;
	width: 8px;
	height: 1px;
	border-radius: 9999px;
	background-color: #707070;
	transform-origin: calc(100% - 0.5px) 50%;
}
#cont #breadcrumbs .arrow::before {
	transform: rotate(45deg);
}
#cont #breadcrumbs .arrow::after {
	transform: rotate(-45deg);
}
@media(max-width:768px){
	#cont #breadcrumbs {
		display: none;
	}
}



/*---- mv ----*/
#cont #mv {
	position: relative;
	max-width: 1600px;
	height: 860px;
	margin: 0 auto;
	z-index: 8;
	overflow: hidden;
}
#cont #mv .image {
	position: absolute;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 867px;
	z-index: 8;
	
	background-position: center center;
	background-repeat: no-repeat;
	background-size: 100% auto;
}
#cont.af #mv .image { background-image: url("/service/img/mv_accounting_finance.jpg");}
#cont.hr #mv .image { background-image: url("/service/img/mv_hr.jpg");}
#cont.message #mv .image { background-image: url("/company/img/mv_message.jpg");}
#cont.outline #mv .image { background-image: url("/company/img/mv_outline.jpg");}
#cont.history #mv .image { background-image: url("/company/img/mv_history.jpg");}
#cont.access #mv .image { background-image: url("/company/img/mv_access.jpg");}

#cont #mv .bg1 {
	position: absolute;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 867px;
	background-image: url("/img/mv_bg1.svg");
	background-position: top 280px center;
	background-repeat: no-repeat;
	background-size: 1600px auto;
	z-index: 9;
}
#cont #mv .bg2 {
	position: absolute;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 867px;
	background-image: url("/img/mv_bg2.svg");
	background-position: top 550px center;
	background-repeat: no-repeat;
	background-size: 1600px auto;
	z-index: 9;
}
#cont .title {
    position: relative;
    margin-top: -400px;
    margin-bottom: 90px;
    z-index: 9;
}
#cont .title h1 {
	max-width: 1100px;
	margin: 0px auto 0;
	font-family: "Noto Sans JP";
	font-weight: 500;
	z-index: 8;
	overflow: hidden;
}
#cont .title h1 .jpn {
	font-size: 54px;
	line-height: 80px;
	color: #1740b9;
	margin-left: 20px;
}
#cont .title h1 .en {
	font-size: 28.8px;
	line-height: 36px;
	color: #1740b9;
	margin-left: 20px;
}

@media(min-width:769px) and (max-width:1200px) {
    #cont.af #mv .image { background-size: auto 100%;}
    #cont.hr #mv .image { background-size: auto 100%;}
	#cont.message #mv .image { background-size: auto 100%;}
	#cont.outline #mv .image { background-size: auto 100%;}
	#cont.history #mv .image { background-size: auto 100%;}
	#cont.access #mv .image { background-size: auto 100%;}
}
@media(max-width:768px){
	#cont #mv {
		position: relative;
		width: 100%;
		height: 74vw;
        margin-bottom: 40px;
	 }
	#cont #mv .image {
		width: 100%;
		height: 74vw;
		background-size: 100% auto;
		background-position: top center;
	}
	#cont.hr #mv .image { background-size: 148% auto; background-position: top -15vw left;}
	#cont.history #mv .image { background-size: 112% auto; background-position: top -40px left;}
	#cont #mv .bg1 {
		height: 74vw;
		background-position: top 37.1vw center;
		background-size: 100% auto;
	}
	#cont #mv .bg2 {
		height: 74vw;
		background-position: top 54vw center;
		background-size: 100% auto;
	}
	#cont .title {
		margin-top: -25vw;
		margin-bottom: 95px;
		margin-left: 17vw;
	}
	#cont .title h1 .jpn {
		font-size: 21px;
		line-height: 31px;
		margin-left: 0px;
	}
	#cont .title h1 .en {
		font-size: 13px;
		line-height: 20px;
		margin-left: 0px;
	}
}


/*---- box ----*/
.boxwidth {
    width: 100%;
	text-align: center;
}
.box1200 {
    width: 100%;
    max-width: 1240px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
}
.box996 {
    width: 100%;
    max-width: 1036px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
}
.box800 {
    width: 100%;
    max-width: 840px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
}
@media(min-width:769px) and (max-width:1200px) {
}
@media(max-width:768px){
	.box1200,
	.box996,
	.box800 {
		padding: 0 10px;
	}
}


/*---- footer ----*/
#cont #globalfooter {
	width: 100%;
	background: #f2f2f2;
	margin-top: 140px;
	padding: 60px 0;
}
#cont #globalfooter .flexBox {
	display: flex;
	justify-content: center;
	gap: 0px 160px;
}
#cont #globalfooter .flexBox li a {
	text-decoration: none;
}
#cont #globalfooter .flexBox li a:hover {
	text-decoration: underline;
	color: #1740b9;
}
#cont #globalfooter .flexBox li.link {
	margin-bottom: 20px;
}
#cont #globalfooter .flexBox li.link span,
#cont #globalfooter .flexBox li.link a {
	font-weight: 500;
	font-size: 16px;
	line-height: 27px;
}
#cont #globalfooter .flexBox li.sublink a {
	font-size: 16px;
	line-height: 30px;
}

@media(min-width:769px) and (max-width:1200px) {
}
@media(max-width:768px){
	#cont #globalfooter {
		margin-top: 80px;
		padding: 35px 10px;
	}
	#cont #globalfooter .flexBox {
		gap: 0px 30px;
	}
	#cont #globalfooter .flexBox li.link a {
		font-size: 14px;
	}
	#cont #globalfooter .flexBox li.sublink a {
		font-size: 12px;
	}
}


#holdingsfooter {
	width: 100%;
	max-width: 1200px;
	font-size: 12px;
	line-height: 18px;
	color: #666;
	margin: 0 auto;
	padding: 20px 0 60px;
}
#holdingsfooter a {
	text-decoration: none;
}
#holdingsfooter a:hover {
	text-decoration: underline;
	color: #1740b9;
}
#holdingsfooter .flexBox {
	display: flex;
	justify-content: space-between;
}

#holdingsfooter .flexBox ul {
	display: flex;
	margin-bottom: 15px;
}
#holdingsfooter .flexBox li::before {
	content: "|";
	margin: 0 15px;
}
#holdingsfooter .flexBox li:first-child::before {
	content: "";
	margin: 0px;
}
#holdingsfooter .flexBox .region a {
	display: flex;
	align-items: center;
	gap: 5px;
}
#holdingsfooter .flexBox .region a .icon img {
	vertical-align: middle;
	margin-bottom: 2px;
}
#holdingsfooter .copyright span {
	margin: 0 3px;
}

@media(min-width:769px) and (max-width:1200px) {
}
@media(max-width:768px){
	#holdingsfooter {
		text-align: center;
		font-size: 8px;
	}
	#holdingsfooter {
		padding: 10px 10px 20px;
	}
	#holdingsfooter .flexBox {
		display: inherit;
	}
	#holdingsfooter .flexBox ul {
		justify-content: center;
		margin-bottom: 5px;
	}
	#holdingsfooter .flexBox li::before {
		content: "|";
		margin: 0 8px;
	}
	#holdingsfooter .flexBox .region a {
		justify-content: center;
		gap: 0 3px;
	}
	#holdingsfooter .flexBox .region a .icon img {
		width: 3vw;
	}
	#holdingsfooter .copyright span {
		display: block;
	}
}
