@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 !important;}


.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){
	#cont img { width: 100%; }
	.pc_only { display: none !important;}
	.sp_only { display: initial !important;}

	.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 {
	color: #fff;
}
#cont header .companyname .txt a:hover {
	text-decoration: none;
	color: #ccc;
}
#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: linear-gradient(90deg, rgba(25, 122, 230, 0.7) 0%, rgba(7, 150, 150, 0.7) 32.24%, rgba(7, 150, 150, 0) 50%);
	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 #globalheader.scroll {
		background: linear-gradient(90deg, rgba(25, 122, 230, 0.9) 0%, rgba(7, 150, 150, 0.9) 100%);
	}
	#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;
	}
}


/*---- mv ----*/
#cont #mv {
	position: relative;
	width: 100%;
	max-width: 1600px;
	height: 500px;
	margin: 0 auto 60px;
	overflow: hidden;
}
#cont #mv .mv_wrap {
	width: 100%;
	height: 100%;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
}
#cont.service #mv .mv_wrap { background-image: url("../img/service/service_mv_pc.jpg");}
#cont.company #mv .mv_wrap { background-image: url("../img/company/company_mv_pc.jpg");}
#cont #mv .mv_wrap .mv_bg {
	display: flex;
	flex-flow: column;
	justify-content: flex-end;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, rgba(25, 122, 230, 0.7) 0%, rgba(7, 150, 150, 0.7) 27.2%, rgba(7, 150, 150, 0) 42.81%);
}
#cont #mv .mv_wrap .mv_bg h1 {
	width: 100%;
	max-width: 1540px;
	padding: 0 20px;
	margin: 0 auto 130px;
	font-weight: 500;
	font-size: 40px;
	line-height: 52px;
	color: #fff;
}
#cont #mv .mv_wrap .mv_bg h1 span {
	font-weight: 500;
	font-size: 24px;
	line-height: 1;
	color: #fff;
}

#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;
}
#cont h2.subtitle {
    font-weight: normal;
    font-size: 32px;
    line-height: 56px;
    text-align: center;
    margin-bottom: 70px;
}
#cont h2.subtitle::after {
	content: '';
	display: block;
	width: 93px;
	height: 5px;
	margin: 24px auto 0;
	background: linear-gradient(90deg, rgba(25, 122, 230, 1.0) 0%, rgba(7, 150, 150, 1.0) 100%);
}
#cont h2.subtitle span {
	font-size: 24px;
	line-height: 36px;
}
@media(max-width:768px){
	#cont #mv {
		position: relative;
		width: 100%;
		height: auto;
		aspect-ratio: 400 / 225;
        margin-bottom: 36px;
	 }
	#cont #mv .mv_wrap {
		width: 100%;
		height: 100%;
		background-position: center center;
		background-repeat: no-repeat;
		background-size: cover;
	}
	#cont.service #mv .mv_wrap { background-image: url("../img/service/service_mv_sp.jpg");}
	#cont.company #mv .mv_wrap { background-image: url("../img/company/company_mv_sp.jpg");}
	#cont #mv .mv_wrap .mv_bg {
		background: linear-gradient(90deg, rgba(25, 122, 230, 0.7) 0%, rgba(7, 150, 150, 0.7) 40.34%, rgba(7, 150, 150, 0) 63.5%);
	}
	#cont #mv .mv_wrap .mv_bg h1 {
		margin: 0 auto 60px;
		font-size: 22px;
		line-height: 32px;
	}
	#cont #mv .mv_wrap .mv_bg h1 span {
		font-size: 14px;
	}
	#cont h2.subtitle {
		font-weight: normal;
		font-size: 20px;
		line-height: 32px;
		margin-bottom: 30px;
	}
	#cont h2.subtitle::after {
		content: '';
		display: block;
		width: 60px;
		height: 3px;
		margin: 15px auto 0;
		background: linear-gradient(90deg, rgba(25, 122, 230, 1.0) 0%, rgba(7, 150, 150, 1.0) 100%);
	}
	#cont h2.subtitle span {
		font-size: 16px;
		line-height: 27px;
	}
}


/*---- 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: linear-gradient(90deg, rgba(25, 122, 230, 0.26) 0%, rgba(7, 150, 150, 0.26) 100%);
	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: 1240px;
	font-size: 12px;
	line-height: 18px;
	color: #666;
	margin: 0 auto;
	padding: 20px 20px 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;
	}
}
