@charset "utf-8";

/*=====================================================
 * Style URL: /business/common/css/screen.css
 * Version: 1.0
 * Last Up Date: 2023/08/xx
 *
 * Markup Reference:
 *
=====================================================*/



/*----- contents -------

	1: Main Interface setting
		: container
		: header
		: footer
		: wrapper
		: main_contents
		: sub_contents
	2: Module
	3: Common
	4: clearfix

----------------------*/



/*
===== 1: Main Interface setting ===========================*/
html {
	scroll-padding-top: 120px;
}

/* header
--------------------*/
header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100px;
	background-color: rgba(255, 255, 255, 0.98);
	border-bottom: 1px solid #f2f2f2;
	z-index: 100;
}

header .logo {
	position: absolute;
	/* top: 32px; */
	top: 25px;
	left: 12px;
	font-size: 0;
	line-height: 0;
}

header .logo img {
	width: 360px;
}

@media screen and (min-width: 1312px) {
	header .logo_bellunadome {
		position: absolute;
		top: 32px;
		right: 164px;
		font-size: 0;
		line-height: 0;
	}

	header .logo_bellunadome:after {
		content: "";
		display: block;
		position: absolute;
		top: -8px;
		left: -28px;
		width: 1px;
		height: 40px;
		background: #D6D6D6;
		z-index: 10;
	}

	header .logo_seibu {
		position: absolute;
		top: 25px;
		right: 12px;
		font-size: 0;
		line-height: 0;
	}

	header .logo_seibu:after {
		content: "";
		display: block;
		position: absolute;
		top: 0;
		left: -28px;
		width: 1px;
		height: 40px;
		background: #D6D6D6;
		z-index: 10;
	}

	header .gnav {
		position: absolute;
		top: 37px;
		right: 380px;
	}

	header .gnav>ul>li {
		float: left;
		padding: 0 20px;
		line-height: 1;
		letter-spacing: 0.1em;
	}

	header .gnav>ul>li:not(:last-child) {
		border-right: 1px solid #041F45;
	}

	header .gnav>ul>li>a {
		position: relative;
		font-size: 20px;
		font-weight: bold;

	}

	header .gnav a:hover {
		opacity: 0.5;
	}

	.features header li.gnav_features>a:after,
	.services header li.gnav_services>a:after,
	.casestudy header li.gnav_casestudy>a:after,
	.seasonseat header li.gnav_seasonseat>a:after {
		content: "";
		display: block;
		position: absolute;
		left: 0;
		bottom: -5px;
		width: 100%;
		height: 2px;
		background: #001E40;
	}

	.hnav_inquiry_text2 {
		line-height: 1;
	}

	.hnav_inquiry_text2 {
		display: inline-block;
		line-height: 1.5;
	}

	header .hnav {
		position: absolute;
		top: 20px;
		right: 0;
	}

	header .hnav li {
		float: left;
		padding: 0 0 0 12px;
	}

	header .hnav li a {
		/* 2行を1行にするための変更 */
		/* display: block; */
		/* start */
		display: flex;
		justify-content: center;
		align-items: center;
		/* end */
		width: 157px;
		/* height: 84px; */
		/* padding: 15px 5px 2px 0; */
		/* start */
		height: 60px;
		padding: 0 5px 0 0;
		/* end */
		color: #ffffff;
		font-size: 16px;
		font-weight: 500;
		letter-spacing: 0.1em;
		text-align: center;
	}

	header .hnav li a::before {
		content: "";
		margin: auto;
		position: absolute;
		top: 0;
		bottom: 0;
		right: 18px;
		width: 10px;
		height: 10px;
		border-top: 3px solid #fff;
		border-right: 3px solid #fff;
		transform: rotate(45deg);
	}

	.hnav_inquiry_text2 {
		font-size: 21px;
		display: inline-block;
		line-height: 0;
	}

	header .hnav li a:hover {
		opacity: 0.9;
	}

	header .hnav li.hnav_documents a {
		background-color: #001E40;
	}

	header .hnav li.hnav_inquiry {
		position: relative;
	}
	header .hnav li.hnav_inquiry a {
		background-color: #9B190A;
	}

	.gnav li.gnav_services {
		position: relative;
		/* padding: 0 0 40px; */
	}

	.gnav li.gnav_services ul {
		position: absolute;
		top: 52px;
		left: 50%;
		transform: translateX(-50%);
		width: 276px;
		padding: 35px 0 24px;
		background: #001E40 url(/business/common/img/bullet_arrow_10.png) no-repeat 50% 0;
		background-size: 20px auto;
		border-top: 1px solid #ffffff;
		border-radius: 0 0 10px 10px;
		text-align: center;
		visibility: hidden;
		transition: all .3s ease;
		opacity: 0;
	}

	.gnav li.gnav_services.open ul {
		visibility: visible;
		opacity: 1;
	}

	.gnav li.gnav_services ul li+li {
		margin: 24px 0 0;
	}

	.gnav li.gnav_services ul li a {
		color: #ffffff;
		font-size: 16px;
		font-weight: 500;
	}
}

@media screen and (max-width: 1312px) and (min-width: 0px) {

	html,
	body {
		height: 100%;
	}

	body.fixed {
		position: fixed;
		width: 100%;
	}

	header {
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		height: 100px;
		visibility: visible;
		z-index: 3000;
	}

	header.open .logo {
		background: url(/business/common/img/logo_w.png) no-repeat 50% 50%;
		background-size: contain;
		z-index: 2000;
	}

	header.open .logo img {
		visibility: hidden;
		transition: none !important;
	}

	header .nav_menu {
		display: block !important;
		position: absolute;
		top: 28px;
		right: 32px;
		width: 32px;
		z-index: 2000;
	}

	header .nav_menu a {
		display: block;
		width: 32px;
		height: 32px;
	}

	header .nav_menu a:hover {
		opacity: 0.7;
	}

	header .nav_menu span {
		display: inline-block;
		position: absolute;
		left: 0;
		width: 32px;
		height: 4px;
		background-color: #001E40;
		transition: all .4s;
	}

	header .nav_menu span:nth-of-type(1) {
		top: 8px;
	}

	header .nav_menu span:nth-of-type(2) {
		top: 24px;
	}

	header .nav_menu.active span:nth-of-type(1) {
		top: 6px;
		left: 0;
		width: 32px;
		background-color: #ffffff;
		transform: translateY(10px) rotate(-45deg);
	}

	header .nav_menu.active span:nth-of-type(2) {
		top: 26px;
		left: 0;
		width: 32px;
		background-color: #ffffff;
		transform: translateY(-10px) rotate(45deg);
	}

	header .sec_menu {
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
	}

	header .sec_menu .pc_hidden {
		display: block !important;
	}

	header .sec_menu_inner {
		width: 100%;
		height: 0;
		background: #082546;
		background-size: 100% auto;
		overflow-y: scroll;
		-webkit-overflow-scrolling: touch;
	}

	header .sec_menu_inner a:hover {
		opacity: 0.7;
	}

	header .gnav {
		padding: 135px 0 0;
		text-align: center;
		margin-bottom: 60px;
	}

	header .gnav>ul>li+li {
		margin: 60px 0 0;
	}

	header .gnav>ul>li>a {
		display: block;
		color: #ffffff;
		font-size: 24px;
		font-weight: 500;
		line-height: 1;
		letter-spacing: 0.1em;
		text-align: center;
	}

	.features header li.gnav_features a:after {
		display: none !important;
	}

	header .hnav {
		width: 290px;
		margin: 50px auto 40px;
		padding: 0 0 30px;
		background: #ffffff;
		border-radius: 18px;
		text-align: center;
	}

	header .hnav p {
		padding: 23px 0 20px;
		color: #041F45;
		font-size: 16px;
		font-weight: 500;
		line-height: 1;
		letter-spacing: 0.05em;
	}

	header .hnav li+li {
		margin: 24px 0 0;
	}

	header .hnav li a {
		display: block;
		width: 240px;
		margin: 0 auto;
		padding: 8px 0 8px;
		background: url(/business/common/img/bullet_arrow_01.png) no-repeat right 16px center;
		background-size: 8px auto;
		border-radius: 10px;
		color: #ffffff;
		font-size: 14px;
		font-weight: 500;
		/* line-height: 58px; */
		letter-spacing: 0.2em;
		text-align: center;
	}

	.hnav_inquiry_text2 {
		line-height: 1;
	}

	.hnav_inquiry_text2 {
		display: inline-block;
		line-height: 1.5;
	}

	header .hnav li.hnav_documents a {
		background-color: #001E40;
	}

	header .hnav li.hnav_inquiry a {
		background-color: #9B190A;
	}

	header .logo_bellunadome {
		background: #ffffff;
		line-height: 74px;
		text-align: center;
	}

	header .logo_bellunadome img {
		width: 184px;
		vertical-align: middle;
	}

	header .logo_seibu {
		display: none;
	}

	#container header .gnav li ul {
		display: inline-block !important;
		min-width: 176px;
		margin: 24px 0 0;
		border-top: 1px solid #8392A3;
	}

	.gnav li ul li {
		padding: 14px 0;
		border-bottom: 1px solid #8392A3;
		line-height: 1;
	}

	.gnav li ul li a {
		color: #ffffff;
		font-size: 16px;
		font-weight: 500;
	}
}


/* footer（既存サイト流用）
--------------------*/
footer {
	position: relative;
	margin: 100px 0 0;
}

.footer-base-wrapper {
	padding-top: 40px;
	padding-bottom: 40px;
	background: #F5F5F5;
}

.footer-box {
	text-align: center;
}

.footer-box .footer-logo {
	margin-bottom: 30px;
	transition: all .2s ease-out;
}

.footer-box .footer-logo img {
	max-height: 50px;
}

.footer-box .footer-logo:hover {
	opacity: 0.6;
}

.footer-box .footer-nav {
	text-align: center;
	padding-top: 30px;
	padding-bottom: 20px;
}

.footer-box .footer-nav li {
	list-style: none;
	display: inline-block;
	padding-left: 25px;
	padding-right: 25px;
	white-space: nowrap;
}

.footer-box .footer-nav li a {
	color: #000;
	font-size: 14px;
	text-decoration: none;
	font-weight: bold;
	transition: all .2s ease-out;
}

.footer-box .footer-nav li a:hover {
	opacity: 0.6;
}

.footer-box address {
	text-decoration: none;
	font-style: normal;
	font-size: 12px;
	color: #696969;
}

@media screen and (max-width: 930px) {
	.footer-box .footer-nav li {
		/* width: 40%; */
		margin-bottom: 20px;
	}
}

.footer-nav a[target=_blank]:after {
	content: '';
	display: inline-block;
	width: 12px;
	height: 12px;
	background-image: url(/assets/img/icon_window_black.png);
	background-size: contain;
	vertical-align: -0.5px;
	margin-left: 5px;
	margin-right: 5px;
}

/* .pagetop */
footer .pagetop {
	position: fixed;
	right: 10px;
	bottom: 10px;
	opacity: 0;
	z-index: 10;
}

footer .pagetop a {
	display: block;
}

footer .pagetop a:hover {
	opacity: 0.7;
}

.sec_grp_logo {
	margin: 100px 0 0;
}

.sec_grp_logo ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	max-width: 1060px;
	margin: 0 auto;
	padding: 0 30px;
}

.sec_grp_logo ul li {
	margin: 0 22px;
}

.sec_grp_logo ul:nth-child(2) li {
	margin-top: 30px;
}

.sec_grp_logo ul:nth-child(1) li:nth-child(1) img {
	width: 141px;
}

.sec_grp_logo ul:nth-child(1) li:nth-child(2) img {
	width: 130px;
}

.sec_grp_logo ul:nth-child(1) li:nth-child(3) img {
	width: 240px;
}

.sec_grp_logo ul:nth-child(2) li:nth-child(1) img {
	width: 206px;
}

.sec_grp_logo ul:nth-child(2) li:nth-child(2) img {
	width: 78px;
}

.sec_grp_logo ul:nth-child(2) li:nth-child(3) img {
	width: 120px;
}

.sec_grp_logo ul:nth-child(2) li:nth-child(4) img {
	width: 64px;
}

.sec_grp_logo ul:nth-child(2) li:nth-child(5) img {
	width: 290px;
}

.sec_grp_logo ul:nth-child(2) li:nth-child(6) img {
	width: 330px;
}

.sec_grp_logo ul:nth-child(2) li:nth-child(7) img {
	width: 303px;
}

.sec_grp_logo ul:nth-child(2) li:nth-child(8) img {
	width: 275px;
}

.sec_grp_logo ul li a:hover {
	opacity: 0.5;
}


/* container
--------------------*/
#container {
	position: relative;
	overflow: hidden;
}

#container .sec_inner {
	position: relative;
	max-width: 1100px;
	margin: 0 auto;
}


/* contents
--------------------*/
#contents {}


/* wrapper
--------------------*/
#wrapper {
	position: relative;
	padding: 90px 0 0;
}

#wrapper--is-hl-hidden {
	position: relative;
	padding: 138px 0 0;
}


/* main_contents
--------------------*/
#main_contents {}


/* sub_contents
--------------------*/
#sub_contents {}


/*
===== 2: Module ===========================*/


/* bread_crumbs
--------------------*/
.bread_crumbs {}


/* h
--------------------*/
.h_lv_01 {}


/* sec_bt
--------------------*/
/* sec_bt_01 */
.sec_bt_01 a {}


/* hr
--------------------*/
hr {}


/* sec_headline
--------------------*/
.sec_headline {
	padding: 50px 0 60px;
	background: #FAFAFA;
}

.sec_headline .ms {
	display: flex;
	flex-wrap: nowrap;
	justify-content: center;
	align-items: center;
	max-width: 1400px;
	margin: 0 auto;
}

.sec_headline .ls {
	width: 35.714%;
	margin: 0 0 0 11.428%;
}

.sec_headline .ls h1 {
	width: 500px;
	padding: 6% 0 0;
}

@media screen and (max-width: 1300px) {
	.sec_headline .ls h1 {
		width: 107.693%;
	}
}

@media screen and (max-width: 1350px) {
	.sec_headline .ls h1.l {
		width: 103.846% !important;
	}
}

.sec_headline .ls p {
	padding: 5% 0 2% 2%;
	color: #082546;
	font-size: 18px;
	font-weight: 500;
	line-height: 1.388;
}

@media screen and (max-width: 1300px) {
	.sec_headline .ls p {
		font-size: 1.384vw;
	}
}

.sec_headline .ls ul {
	display: flex;
	flex-wrap: nowrap;
	width: 376px;
	margin: 8% 0 0;
}

@media screen and (max-width: 1200px) {
	.sec_headline .ls ul {
		width: 87.734%;
	}
}

.sec_headline .ls ul li {
	width: 47.872%;
}

.sec_headline .ls ul li+li {
	margin: 0 0 0 4.255%;
}

.sec_headline .ls ul li a {
	display: block;
	padding: 0 7.222% 1.5px 0;
	background: url(/business/common/img/bullet_arrow_02.png) no-repeat right 11.111% center;
	background-size: auto 21.666%;
	border-radius: 60px;
	box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.16);
	color: #ffffff;
	font-size: 16px;
	font-weight: 500;
	line-height: 3.7;
	letter-spacing: 0.1em;
	text-align: center;
}

@media screen and (max-width: 1200px) {
	.sec_headline .ls ul li a {
		font-size: 1.333vw;
	}
}

.sec_headline .ls ul li a:hover {
	opacity: 0.7;
}

.sec_headline .ls ul li.documents a {
	background-color: #001E40;
}

.sec_headline .ls ul li.inquiry a {
	background-color: #9B190A;
}

.sec_headline .rs {
	position: relative;
	width: 49.285%;
}


/* pagenav
--------------------*/
.pagenav {
	max-width: 1000px;
	margin: 0 auto;
	padding: 30px 0 0;
}

.pagenav ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	margin: 0 auto;
}

.pagenav ul li {
	width: 15%;
	margin: 10px 0.5% 0;
	border: 1px solid #082546;
	border-radius: 4px;
}

.pagenav ul li a {
	display: block;
	padding: 0 0 8.660%;
	background: url(/business/common/img/bullet_arrow_06.png) no-repeat 50% 82.193%;
	background-size: 13px auto;
	font-weight: 500;
	line-height: 2.777;
	text-align: center;
}

.pagenav ul li a:hover {
	opacity: 0.5;
}






/* Link setting
-------------------------------------*/
a:link {
	color: #041F45;
	text-decoration: none;
	transition: all .3s;
}

a:visited {
	color: #041F45;
	text-decoration: none;
}

a:active {
	color: #041F45;
	text-decoration: none;
}

a:hover {
	color: #041F45;
	text-decoration: none;
}

.imgover {
	transition: all .3s;
}

.imgover:hover {
	opacity: 0.7;
}


/*
===== 3: Common ===========================*/

.pc_hidden {
	display: none !important;
}

.br_sp {
	display: none !important;
}

#container .hidetxt {
	text-indent: -9999px;
	overflow: hidden;
}

#container .tx_l {
	text-align: left !important;
}

#container .tx_c {
	text-align: center !important;
}

#container .tx_r {
	text-align: right !important;
}

#container .va_t {
	vertical-align: top !important;
}

#container .va_m {
	vertical-align: middle !important;
}

#container .va_b {
	vertical-align: bottom !important;
}

#container .img_txt {
	font-size: 0;
	line-height: 0;
}

/*--- margin ---*/
#container .mt0 {
	margin-top: 0px !important;
}

#container .mt5 {
	margin-top: 5px !important;
}

#container .mt10 {
	margin-top: 10px !important;
}

#container .mt15 {
	margin-top: 15px !important;
}

#container .mt20 {
	margin-top: 20px !important;
}

#container .mt25 {
	margin-top: 25px !important;
}

#container .mt30 {
	margin-top: 30px !important;
}

#container .mt35 {
	margin-top: 35px !important;
}

#container .mt40 {
	margin-top: 40px !important;
}

#container .pt5 {
	padding-top: 5px !important;
}

#container .pt10 {
	padding-top: 10px !important;
}

#container .pt15 {
	padding-top: 15px !important;
}

#container .pt20 {
	padding-top: 20px !important;
}

#container .pt25 {
	padding-top: 25px !important;
}

#container .pt30 {
	padding-top: 30px !important;
}

#container .pt35 {
	padding-top: 35px !important;
}

#container .pt40 {
	padding-top: 40px !important;
}

#container .f10 {
	font-size: 10px;
}

#container .f11 {
	font-size: 11px;
}

#container .f12 {
	font-size: 12px;
}

#container .f13 {
	font-size: 13px;
}

#container .f14 {
	font-size: 14px;
}

#container .f15 {
	font-size: 15px;
}

#container .f16 {
	font-size: 16px;
}

#container .f17 {
	font-size: 17px;
}

#container .f18 {
	font-size: 18px;
}

#container .f19 {
	font-size: 19px;
}

#container .f20 {
	font-size: 20px;
}

#container .f21 {
	font-size: 21px;
}

#container .f22 {
	font-size: 22px;
}

#container .f23 {
	font-size: 23px;
}

#container .f24 {
	font-size: 24px;
}

#container .f25 {
	font-size: 25px;
}

#container .f26 {
	font-size: 26px;
}

#container .f27 {
	font-size: 27px;
}

#container .f28 {
	font-size: 28px;
}

#container .f29 {
	font-size: 29px;
}

#container .f30 {
	font-size: 30px;
}

#container .f32 {
	font-size: 32px;
}

#container .f36 {
	font-size: 36px;
}

#container .f42 {
	font-size: 42px;
}

@media screen and (max-width: 1100px) {
	#container .f10 {
		font-size: 0.909vw;
	}

	#container .f11 {
		font-size: 1.000vw;
	}

	#container .f12 {
		font-size: 1.090vw;
	}

	#container .f13 {
		font-size: 1.181vw;
	}

	#container .f14 {
		font-size: 1.272vw;
	}

	#container .f15 {
		font-size: 1.363vw;
	}

	#container .f16 {
		font-size: 1.454vw;
	}

	#container .f17 {
		font-size: 1.545vw;
	}

	#container .f18 {
		font-size: 1.636vw;
	}

	#container .f19 {
		font-size: 1.727vw;
	}

	#container .f20 {
		font-size: 1.818vw;
	}

	#container .f21 {
		font-size: 1.909vw;
	}

	#container .f22 {
		font-size: 2.000vw;
	}

	#container .f23 {
		font-size: 2.090vw;
	}

	#container .f24 {
		font-size: 2.181vw;
	}

	#container .f25 {
		font-size: 2.272vw;
	}

	#container .f26 {
		font-size: 2.363vw;
	}

	#container .f27 {
		font-size: 2.454vw;
	}

	#container .f28 {
		font-size: 2.545vw;
	}

	#container .f29 {
		font-size: 2.636vw;
	}

	#container .f30 {
		font-size: 2.727vw;
	}

	#container .f32 {
		font-size: 2.909vw;
	}

	#container .f36 {
		font-size: 3.272vw;
	}

	#container .f42 {
		font-size: 3.818vw;
	}
}


/*
===== 4: clearfix ===========================*/

.clearfix:after {
	content: ".";
	display: block;
	height: 0;
	clear: both;
	visibility: hidden;
	font-size: 0;
	line-height: 0;
}

.clearfix {
	display: inline-block;
}

/* Hides from IE-mac ¥*/
* html .clearfix {
	height: 1%;
}

.clearfix {
	display: block;
}

.br_hnav {
	display: none;
}

@media screen and (max-width: 1312px) and (min-width: 0px) {
	.br_hnav {
		display: block;
	}
}

/* End hide from IE-mac */