@charset "utf-8";
/* CSS Document */
/*====================================
Reset
====================================*/
html{
	width: 100%;
	font-size:2.41546vw; /* 1rem=10px */
	font-weight:400;
}
body{
	min-width: 320px;
	line-height: 1;
	color: #000;
	background-color: #FFF;
	position: relative;
	overflow-x: hidden;
	font-family: 'Noto Sans JP',"メイリオ","ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}
@media screen and (min-width: 600px) {
	html{
		font-size: 10px;
	}
}

img{
	width: 100%;
}
a{
	text-decoration: none;
	color:inherit;
}
a, input,button, .slider_prev, .slider_next, .swiper-pagination-bullet{
	-webkit-tap-highlight-color:rgba(0,0,0,0); /* ハイライトカラー無効化 */
	 outline: 0;
}

::selection {
	background:#CCDEEE;
}

/*====================================
Common
====================================*/
#wrap{
	min-height: calc(100vh - 650px);
}
.cmn_width{
	width: 85.5vw;
	margin: 0 auto;
}
.anchor{
	display: block;
	width: 0;
	height: 0;
	padding-top: 50px;
	margin-top: -50px;
}

@media screen and (max-width: 1099px) {
	#wrap{
		margin-top: 50px;
	}
}

@media screen and (min-width: 600px) {
	#wrap{
		min-height: calc(100vh - 610px);
	}
}
@media screen and (min-width: 960px) {
	.cmn_width{
		width: 900px;
	}
}
@media screen and (min-width: 1100px) {
	.cmn_width{
		width: 1100px;
	}
}

/* 画像
--------------------------------------*/
.fit_thumbnail img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}
/* IE */
.ie .fit_thumbnail{
	position: relative;
	overflow: hidden;
}
.ie .fit_thumbnail img{
	width: auto;
	height: 100%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
}

.posted_img{
	display: block;
	width: 100%;
	position: relative;
	height: 0;
	overflow: hidden;
	padding-bottom: 66.66%;
}
.posted_img img{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

/* 下層ページタイトル
--------------------------------------*/
.sec_page_ttl{
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	background-image:url(../img/company/pagettl-img-sp.jpg);
	height: 48.3vw;
	display: flex;
	align-items: center;
	justify-content: center;
	box-sizing: border-box;
}
.sec_page_ttl .page_ttl{
	color: #FFF;
	font-weight: 700;
}
.sec_page_ttl .page_ttl .sub{
	margin-bottom: 2.41vw;
	font-size: 1.8rem;
	text-align: center;
}
.sec_page_ttl .page_ttl .ttl{
	font-size: 2.7rem;
	text-align: center;
}
@media screen and (min-width: 600px) {
	.sec_page_ttl{
		background-image:url(../img/company/pagettl-img-pc.jpg);
		height: 300px;
	}
	.sec_page_ttl .page_ttl .sub{
		margin-bottom: 15px;
		font-size: 25px;
	}
	.sec_page_ttl .page_ttl .ttl{
		font-size: 40px;
	}
}


/* 共通タイトル
--------------------------------------*/
.cmn_ttl1{
	background-color: #005BAC;
	padding: 3.62vw 3.14vw;
	box-sizing: border-box;
	color: #FFF;
	font-size: 1.9rem;
	font-weight: 700;
	margin-bottom: 7.24vw;
}

@media screen and (min-width: 600px) {
	.cmn_ttl1{
		font-size: 25px;
		margin-bottom: 30px;
		padding: 17px 20px;
	}
}

.cmn_ttl2{
	padding-bottom: 2.41vw;
	padding-left: calc(5px + 3.86vw);
	border-bottom: solid 1px #005BAC;
	color: #005BAC;
	font-size: 1.9rem;
	line-height: 1.47;
	font-weight: 700;
	position: relative;
	margin-bottom: 6.03vw;
}
.cmn_ttl2:before{
	content:'';
	display: block;
	position: absolute;
	pointer-events: none;
	background-color: #005BAC;
	width: 5px;
	height: calc(100% - 2.8vw);
	left: 0;
	top: 0.5vw;
}

@media screen and (min-width: 600px) {
	.cmn_ttl2{
		padding-bottom: 10px;
		padding-left: 20px;
		font-size: 25px;
		margin-bottom: 20px;
	}
	.cmn_ttl2:before{
		width: 5px;
		height: calc(100% - 12px);
		top: 2px;
	}
}

/* 共通リンク
--------------------------------------*/
.cmn_arrow1{
	display: block;
	padding-left: 10px;
	position: relative;
}
.cmn_arrow1:before{
	content:'';
	display: block;
	position: absolute;
	pointer-events: none;
	box-sizing: border-box;
	width: 7px;
	height: 7px;
	border-bottom: solid 2px #005BAC;
	border-right: solid 2px #005BAC;
	top: 50%;
	left: -4px;
	transform: translateY(-50%) rotate(-45deg) skew(-5deg,-5deg);
}

@media screen and (min-width: 1100px) {
	a.cmn_arrow1{
		transition: color .4s ease;
	}
	a.cmn_arrow1:before{
		transition: border .4s ease;
	}
	a.cmn_arrow1:hover{
		color: #005BAC;
		text-decoration: underline;
	}
	a.cmn_arrow1:hover:before{
		border-color: #005BAC;
	}
}

.cmn_btn1{
	display: flex;
	align-items: center;
	justify-content: center;
	height: 14.49vw;
	background-color: #2D2D2D;
}
.cmn_btn1 span{
	padding-left: 14px;
	position: relative;
	color: #FFF;
	font-size: 1.5rem;
}
.cmn_btn1 span:before{
	content:'';
	display: block;
	position: absolute;
	pointer-events: none;
	box-sizing: border-box;
	width: 8px;
	height: 8px;
	border-bottom: solid 2px #fff;
	border-right: solid 2px #fff;
	top: 50%;
	left: -2px;
	transform: translateY(-50%) rotate(-45deg) skew(-5deg,-5deg);
}

@media screen and (min-width: 600px) {
	.cmn_btn1{
		width: 400px;
		height: 70px;
		margin: 0 auto;
	}
	.cmn_btn1 span{
		font-size: 15px;
	}
}

@media screen and (min-width: 1100px) {
	.hover_slide_layer_btn,
	.cmn_btn1{
		position: relative;
		overflow: hidden;
	}
	.hover_slide_layer_btn:before,
	.cmn_btn1:before{
		content:'';
		display: block;
		position: absolute;
		pointer-events: none;
		z-index: 1;
		opacity: 0;
		top: 0;
		left: 105%;
		width: 0;
		height: 100%;
		background-color: #005BAC;
		transform:translate3d(0,0,0) skewX(20deg);
		transition:
			left .3s cubic-bezier(.455,.03,.515,.955) 0ms,
			width 0s cubic-bezier(.455,.03,.515,.955) .3s,
			opacity .3s cubic-bezier(.455,.03,.515,.955) .1s;
	}
	.hover_slide_layer_btn span,
	.cmn_btn1 span{
		position: relative;
		z-index: 2;
	}
	.hover_slide_layer_btn:hover:before,
	.cmn_btn1:hover:before{
		width: 110%;
		left: -5%;
		opacity: 1;
		transition:
			left 0s cubic-bezier(.455,.03,.515,.955) 0s,
			width .3s cubic-bezier(.455,.03,.515,.955) 0s,
			opacity .3s cubic-bezier(.455,.03,.515,.955) 0s;
	}

	.cmn_btn1:before{
		background-color: #005BAC;
	}
}

/* 画像ホバー
--------------------------------------*/
@media screen and (max-width: 1099px) {
	.hover_layer_box .hover_layer,
	.hover_layer_box .hover_txt{
		display: none;
	}
}
@media screen and (min-width: 1100px) {
	.hover_layer_box{
		position: relative;
	}
	.hover_layer_box .hover_layer,
	.hover_layer_box .hover_txt{
		position: absolute;
		display: block;
		pointer-events: none;
		opacity: 0;
	}
	.hover_layer_box .hover_layer{
		width: 100%;
		height: 100%;
		top: 0;
		left: 0;
		background-color: rgba(0, 91, 172, .8);
		transition: opacity .3s ease;
	}
	.hover_layer_box .hover_txt{
		color: #FFF;
		font-size: 15px;
		text-align: center;
		width: 100%;
		top: 50%;
		left: 50%;
		transform: translateX(-50%) translateY(25%);
		transition: opacity .3s ease, transform .4s ease;
	}
	.hover_layer_box:hover .hover_layer{
		opacity: 1;
	}
	.hover_layer_box:hover .hover_txt{
		opacity: 1;
		transform: translateX(-50%) translateY(-50%);
		transition-delay: .15s;
	}
}

/* パンクズ */
.pnkz{
	padding-top: 2.41vw;
	font-size: 1rem;
}
@media screen and (min-width: 600px) {
	.pnkz{
		padding-top: 10px;
		font-size: 10px;
	}
}

/*====================================
header
====================================*/
header{
	background-color: #fff;
	width: 100%;
	box-sizing: border-box;
}
.header_inner{
	display: flex;
	justify-content: space-between;
	align-items: center;
	box-sizing: border-box;
	width: 100%;
}
header .header_logo_wrap{
	flex:1;
}
header .header_logo{
	width: 64.22vw;
}
header .header_logo_wrap .company_logo{
	display: block;
	box-sizing: border-box;
	width: 19.08vw;
}

/* header_blc_sp */
.header_blc_sp{
	display: flex;
}
.header_blc_sp .btn{
	width: 50px;
	height: 50px;
	display: block;
}
.header_blc_sp .tel_btn{
	border-right: solid 1px #FFF;
	background-color: #005BAC;
	display: flex;
	align-items: center;
	justify-content: center;
}
.header_blc_sp .tel_btn svg{
	width: 24px;
	height: 29px;
}
.header_blc_sp .tel_btn path{
	fill: #fff;
}
.header_blc_sp .hamburger_btn{
	background-color: #000;
	position: relative;
}
.header_blc_sp .hamburger_btn .hamburger_inner{
	display: block;
	position: relative;
	width: 100%;
	height: 100%;
	transition: all 0.4s ease-in-out;
}
.header_blc_sp .hamburger_btn.is--open .hamburger_inner{
	transform: rotate(360deg);
}
.header_blc_sp .hamburger_btn span{
	position: absolute;
	top: 14px;
	right: 10px;
	width: 30px;
	height:2px;
	background-color:#fff;
	transition: transform 0.4s ease-in-out, opacity 0.4s ease-in-out;
}
.header_blc_sp .hamburger_btn.is--open span:first-child{
	transform:translateY(10px) rotate(-45deg);
}
.header_blc_sp .hamburger_btn span:nth-child(2){
	top: 24px;
}
.header_blc_sp .hamburger_btn.is--open span:nth-child(2){
	opacity: 0;
}
.header_blc_sp .hamburger_btn span:last-child{
	top: 34px;
}
.header_blc_sp .hamburger_btn.is--open span:last-child{
	transform:translateY(-10px) rotate(45deg);
}

/* header_blc_pc */
.header_blc_pc{
	display: flex;
	align-items: center;
}
.header_blc_pc .box_tel{
	padding-right: 15px;
}
.header_blc_pc .box_tel .time{
	margin-bottom: 8px;
	font-size: 12px;
}
.header_blc_pc .box_tel .tel{
	display: flex;
	align-items: center;
}
.header_blc_pc .box_tel .tel svg{
	width: 22px;
	height: 26px;
	margin-right: 4px;
	margin-top: 4px;
}
.header_blc_pc .box_tel .tel path{
	fill:#005BAC;
}
.header_blc_pc .box_tel .tel span{
	font-size: 31px;
	font-weight: 700;
}
.header_blc_pc .box_btn{
	height: 80px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.header_blc_pc .box_btn .icon{
	width: 24px;
	margin-right: 8px;
}
.header_blc_pc .box_btn .icon svg{
	width: 24px;
}
.header_blc_pc .box_btn .icon path{
	fill: #FFF;
}
.header_blc_pc .box_btn .txt{
	color: #FFF;
}
.header_blc_pc .box_btn .txt .sub{
	font-size: 10px;
	margin-bottom: 4px;
}
.header_blc_pc .box_btn .txt .ttl{
	font-size: 17px;
	font-weight: 700;
}

.header_blc_pc .box_btn.dl{
	width: 198px;
	background-color: #2D2D2D;
	border-right: solid 1px #FFF;
}
.header_blc_pc .box_btn.dl svg{
	height: 24px;
}
.header_blc_pc .box_btn.contact{
	width: 163px;
	background-color: #9B1919;
}
.header_blc_pc .box_btn.contact svg{
	height: 16px;
}

@media screen and (max-width: 1099px) {
	header{
		position: fixed;
		z-index: 2000;
		top: 0;
		left: 0;
		height: 50px;
		border-bottom: solid 1px #FFF;
	}
	header .header_logo .logo_txt.pc{
		display: none;
	}
	header .header_logo_wrap{
		padding-top: 4px;
	}
	header .header_logo,
	header .company_logo{
		text-align: center;
	}
	header .header_logo{
		margin: 0 auto;
	}
	header .header_logo img{
		max-height: 17px;
		width: auto;
	}
	header .company_logo img{
		max-height: 14px;
		width: auto;
	}
	header .header_logo_wrap .company_logo{
		margin: 7px auto 0 auto;
		pointer-events: none;
	}
	.header_blc_pc{
		display: none;
	}
	header .gnav.pc{
		display: none;
	}
}

@media screen and (min-width: 1100px) {
	.header_inner{
		padding-left: 0;
	}
	header .header_logo_wrap{
		display: flex;
		align-items: flex-end;
	}
	header .header_logo .logo_txt{
		margin-bottom: 10px;
		color: #005BAC;
		font-size: 12px;
		font-weight: 700;
	}
	header .header_logo_wrap a{
		transition: opacity .3s ease;
	}
	header .header_logo_wrap a:hover{
		opacity: .7;
	}
	.header_blc_sp{
		display: none;
	}
	header .header_logo{
		width: 410.2px;
	}
	header .header_logo_wrap .company_logo{
		width: 110px;
		margin-left: 16px;
		margin-bottom: 3px;
	}
	.header_blc_pc .box_btn:before{
		transform:translate3d(0,0,0) skewX(15deg);
		background: rgba(255, 255, 255, .25);
	}
}
@media screen and (min-width: 1300px) {
	.header_inner{
		width: 1300px;
		justify-content: space-between;
		padding-left: 100px;
		margin: 0 auto;
	}
}

/*===============================
gnav
===============================*/
.gnav{
	position: relative;
	z-index: 1000;
}
.gnav_inner{
	display: flex;
	justify-content: center;
}
.gnav .link{
	height: 30px;
	box-sizing: border-box;
}
.gnav .link:not(:last-child){
	border-right: solid 1px #707070;
}
.gnav .nav_txt{
	position: relative;
	display: flex;
	align-items: center;
	padding-left: 27px;
	padding-right: 27px;
	height: 30px;
	font-size: 15px;
	font-weight: 700;
	position: relative;
	cursor: pointer;
	transition: color .4s ease;
}
.gnav .dropdown_blc{
	position: absolute;
	left: 0;
	width: 100%;
	background-color: #005BAC;
	opacity: 0;
	pointer-events: none;
	transition: opacity .4s ease;
}
.gnav .dropdown_blc_inner{
	width: 1060px;
	padding: 25px 0;
}
.gnav .dropdown_box{
	padding: 40px 0;
	display: flex;
	align-items: center;
}
.gnav .dropdown_box:not(:last-child){
	border-bottom: solid 1px #FFF;
}
.gnav .dropdown_box .box_ttl{
	width: 230px;
	display: flex;
	align-items: center;
}
.gnav .dropdown_box .box_ttl .img{
	vertical-align: middle;
	height: 30px;
	width: 38px;
}
.gnav .dropdown_box .box_ttl .img img{
	width: auto;
	height: 100%;
}
.gnav .dropdown_box .box_ttl span{
	font-size: 25px;
	color: #FFF;
	font-weight: 700;
}
.gnav .dropdown_box .box_link{
	flex:1;
}
.gnav .dropdown_box .dropdown_link{
	display: inline-block;
	padding-left: 12px;
	color: #FFF;
	font-size: 15px;
}
.gnav .dropdown_box .dropdown_link:hover{
	text-decoration: underline;
}
.gnav .dropdown_box .dropdown_link:before{
	border-color: #FFF;
}
.gnav .dropdown_box .box_archive{
	width: 100px;
}
.gnav .dropdown_box .box_archive .to_archive{
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100px;
	height: 34px;
	position: relative;
	background-color: #CCDEEE;
	transition: background .4s ease;
}
.gnav .dropdown_box .box_archive .to_archive:hover{
	background-color: #fff;
}
.gnav .dropdown_box .box_archive .to_archive span{
	display: inline-block;
	font-size: 13px;
	padding-left: 12px;
	position: relative;
}
.gnav .dropdown_box .box_archive .to_archive span:before{
	border-color: #000;
}

.gnav .dropdown_box.product,
.gnav .dropdown_box.industry,
.gnav .dropdown_box.problem{
	padding-top: 20px;
}
.gnav .dropdown_box.product .dropdown_link_list,
.gnav .dropdown_box.industry .dropdown_link_list,
.gnav .dropdown_box.problem .dropdown_link_list{
	display: flex;
	flex-wrap: wrap;
}
.gnav .dropdown_box.product .dropdown_link,
.gnav .dropdown_box.industry .dropdown_link,
.gnav .dropdown_box.problem .dropdown_link{
	margin-top: 20px;
	margin-right: 35px;
}

.gnav .dropdown_box.component{
	width: calc(100% + 40px);
	margin-left: -20px;
}
.gnav .dropdown_box.component .box_ttl{
	width: 275px;
}
.gnav .dropdown_box.component .box_ttl .img{
	width: 35px;
}
.gnav .dropdown_box.component .dropdown_link_list{
	display: flex;
	flex-wrap: wrap;
}
.gnav .dropdown_box.component .dropdown_link:not(:last-child){
	margin-right: 20px;
}

.gnav.is--header{
	padding: 25px 0;
}
.gnav.is--header .nav_txt:after{
	content:'';
	display: block;
	position: absolute;
	pointer-events: none;
	background-color: #005BAC;
	height: 5px;
	width: 0;
	bottom: -25px;
	left: 50%;
	transform: translateX(-50%);
	transition: width .5s ease;
}
.gnav .nav_txt:hover,
.gnav.is--header .nav_txt.is--current{
	color: #005BAC;
}
.gnav.is--header .nav_txt:hover:after,
.gnav.is--header .nav_txt.is--current:after{
	width: 100%;
}
.gnav.is--header .dropdown_blc{
	top: 80px;
}

.gnav.is--fix{
	width: 100%;
	background-color: rgba(255, 255, 255, .95);
	position: fixed;
	top: 0;
	left: 0;
	transform: translateY(-52px);
	padding-top: 10px;
	padding-bottom: 10px;
	animation: gnav_fix .4s forwards;
}
.gnav.is--fix .dropdown_blc{
	top: 53px;
}

.gnav .link.is--ac .nav_txt{
	padding-bottom: 50px;
}
.gnav.is--header .link.is--ac .nav_txt:after{
	bottom: 25px;
}
.gnav.is--header .link.is--ac:hover .nav_txt{
	color: #005BAC;
}
.gnav.is--header .link.is--ac:hover .nav_txt:after{
	width: 100%;
}
.gnav .is--ac:hover .dropdown_blc{
	opacity: 1;
	pointer-events: auto;
}

@media screen and (max-width: 1299px) {
	.gnav .link:first-child .nav_txt{
		padding-left: 12px;
	}
	.gnav .link:last-child .nav_txt{
		padding-right: 13px;
	}
}
@media screen and (max-width: 1099px) {
	.gnav{
		display: none;
	}
}
@media screen and (min-width: 1300px) {
	.gnav_inner{
		width: 1170px;
	}
}

@keyframes gnav_fix {
  0% { transform: translateY(-52px); }
  100% {transform: translateY(0px); }
}
@keyframes gnav_header {
  0% { transform: translateY(0px); }
  100% {transform: translateY(-52px); }
}

/*===============================
hamburger menu
===============================*/
#hamburger_menu{
	z-index:2000;
	position: fixed;
	width: 300px;
	height: calc(100vh - 50px);
	top: 50px;
	right: 0;
	background-color: #000;
	box-sizing: border-box;
	transform: translateX(350px);
	transition: transform .5s ease;
}
#hamburger_menu.is--open{
	transform: translateX(0px);
}

#hamburger_menu .menu_inner{
	overflow-y: scroll;
	max-height: 100%;
	padding: 30px 30px 50px 30px;
	box-sizing: border-box;
}
#hamburger_menu .blc_bnr{
	margin-bottom: 30px;
}
#hamburger_menu .blc_bnr .box_btn{
	display: flex;
	align-items: center;
	padding: 12px 10px 12px 15px;
	background-color: #fff;
}
#hamburger_menu .blc_bnr .box_btn:not(:last-child){
	margin-bottom: 10px;
}
#hamburger_menu .blc_bnr .box_btn .icon{
	width: 25px;
	margin-right: 4px;
}
#hamburger_menu .blc_bnr .box_btn .icon svg{
	width: 25px;
}
#hamburger_menu .blc_bnr .box_btn .txt .sub{
	font-size: 15px;
	margin-bottom: 5px;
}
#hamburger_menu .blc_bnr .box_btn .txt .ttl{
	font-size: 20px;
	font-weight: 700;
}

#hamburger_menu .blc_bnr .box_btn.dl svg{
	height: 25px;
}
#hamburger_menu .blc_bnr .box_btn.dl path{
	fill:#2D2D2D;
}
#hamburger_menu .blc_bnr .box_btn.dl .txt{
	color: #2D2D2D;
}
#hamburger_menu .blc_bnr .box_btn.contact svg{
	height: 16px;
}
#hamburger_menu .blc_bnr .box_btn.contact path{
	fill:#9B1919;
}
#hamburger_menu .blc_bnr .box_btn.contact .txt{
	color: #9B1919;
}

#hamburger_menu .blc_bnr2{
	margin-bottom: 13px;
}
#hamburger_menu .blc_bnr2 a{
	display: block;
	border: solid 1px #B4B5B8;
}
#hamburger_menu .blc_bnr2 a:not(:last-child){
	margin-bottom: 10px;
}

#hamburger_menu .link_list{
	color: #fff;
}
#hamburger_menu .link_list .link{
	font-size: 18px;
	font-weight: 700;
	padding: 20px 15px 20px 10px;
	position: relative;
	border-bottom: solid 1px #707070;
}
#hamburger_menu .link_list .link:after{
	content:'';
	display: block;
	position: absolute;
	pointer-events: none;
	width: 9px;
	height: 9px;
	border-bottom: solid 2px #FFF;
	border-right: solid 2px #FFF;
	top: 50%;
	right: 10px;
	transform: translateY(-50%) rotate(-45deg);
	transition: transform .3s ease-in;
}
#hamburger_menu .link_list .link.accordion_btn:after{
	transform: translateY(-50%) rotate(45deg);
}
#hamburger_menu .link_list .link.accordion_btn.is--open:after{
	transform: translateY(-50%) rotate(-135deg);
}
#hamburger_menu .link_list .link > a{
	display: inline-block;
	min-width: 150px;
}
#hamburger_menu .link_list .link_hide_box{
	margin-bottom: 7.24vw;
}
#hamburger_menu .link_list .link_hide_box .box_ttl{
	padding: 20px 12px 20px 24px;
	border-bottom: dashed 1px #707070;
	font-size: 16px;
	display: flex;
	align-items: center;
}
#hamburger_menu .link_list .link_hide_box .box_ttl .img{
	height: 21px;
	width: 27px;
}
#hamburger_menu .link_list .link_hide_box .box_ttl img{
	height: 100%;
	width: auto;
}
#hamburger_menu .link_list .link_hide_box .link_list_c{
	margin-bottom: 10px;
}
#hamburger_menu .link_list .link_hide_box .link_c{
	padding-left: 20px;
	font-size: 15px;
	line-height: 1.2;
}
#hamburger_menu .link_list .link_hide_box .link_c:not(:last-child){
	border-bottom: dashed 1px #707070;
}
#hamburger_menu .link_list .link_hide_box .link_c a{
	padding: 20px 10px;
	line-height: 1.2;
}
#hamburger_menu .link_list .link_hide_box .link_c a:before{
	border-color: #FFF;
	top: calc(20px + 1.2em / 2);
}
#hamburger_menu .link_list .link_hide_box .to_archive{
	display: block;
	text-align: center;
	border: solid 1px #FFF;
	padding: 20px 0;
}
#hamburger_menu .link_list .link_hide_box .to_archive span{
	display: inline-block;
	font-size: 15px;
}
#hamburger_menu .link_list .link_hide_box .to_archive span:before{
	border-color: #FFF;
}

@media screen and (min-width: 1100px) {
	#hamburger_menu{
		display: none;
	}
}

/* 背景
--------------------------------------*/
.hamburger_layer{
	background-color: rgba(255,255,255,.8);
	position: fixed;
	width: 100vw;
	height: 100vh;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	z-index:1999;
	pointer-events: none;
	transition:opacity .5s ease;
	opacity: 0;
}
.hamburger_layer.is--open{
	pointer-events: auto;
	opacity: 1;
}

@media screen and (min-width: 1100px) {
	.hamburger_layer{
		display: none;
	}
}

/*====================================
float_bnr
====================================*/
.float_bnr{
	position: fixed;
	z-index: 900;
	display: block;
	transition: transform 0.4s ease;
}
.float_bnr .bnr.dl{
	background-color: #2D2D2D;
}
.float_bnr .bnr.contact{
	background-color: #9B1919;
}
.float_bnr .bnr .icon{
	width: 6.03vw;
}
.float_bnr .bnr .icon svg{
	width: 6.03vw;
}
.float_bnr .bnr .icon path{
	fill: #FFF;
}
.float_bnr .bnr .txt{
	color: #FFF;
}
.float_bnr .bnr .txt .sub{
	font-size: 1.2rem;
	margin-bottom: 1.2vw
}
.float_bnr .bnr .txt .ttl{
	font-size: 1.7rem;
	font-weight: 700;
}

@media screen and (max-width: 599px) {
	.float_bnr{
		bottom: 0;
		left: 0;
		width: 100vw;
		height: 14.49vw;
		transform: translateY(15vw);
		display: flex;
	}
	.float_bnr .bnr{
		display: flex;
		align-items: center;
		justify-content: center;
	}
	.float_bnr.is--fix{
		transform: translate(0);
	}
	.float_bnr .bnr{
		width: calc((100% - 2px) / 2);
		height: 100%;
		display: flex;
		align-items: center;
		justify-content: center;
	}
	.float_bnr .bnr.dl{
		border-right: solid 2px #FFF;
	}
	.float_bnr .bnr .icon{
		margin-right: 1.93vw;
	}
}

@media screen and (min-width: 600px) {
	.float_bnr{
		top: 50vh;
		right: 0;
		width: 62px;
		transform: translateX(62px) translateY(-50%);
	}
	.float_bnr.is--fix{
		transform: translateX(2px) translateY(-50%);
	}
	.float_bnr.is--fixed{
		position: absolute;
		top: auto;
		bottom: 0;
	}
	.float_bnr .bnr{
		display: block;
		width: 100%;
		height: 210px;
		padding-right: 2px;
		line-height: 1.2;
		border: solid 1px #808081;
		box-sizing: border-box;
	}
	.float_bnr .bnr .icon{
		width: 20px;
		margin: 0 auto 8px auto;
	}
	.float_bnr .bnr .txt .sub{
		display: none;
	}
	.float_bnr .bnr .txt .ttl{
		font-size: 17px;
		-webkit-writing-mode: vertical-rl;
		-ms-writing-mode: tb-rl;
		writing-mode: vertical-rl;
		margin: 0 auto;
	}
	body.ie .float_bnr .bnr .txt .ttl{
		margin-left: 18px;
	}

	.float_bnr .bnr.dl{
		padding-top: 18px;
		border-bottom: solid 2px #FFF;
	}
	.float_bnr .bnr.dl .icon svg{
		width: 20px;
		height: 20px;
	}
	.float_bnr .bnr.contact{
		padding-top: 14px;
	}
	.float_bnr .bnr.contact .icon svg{
		width: 20px;
		height: 13px;
	}
}
@media screen and (min-width: 1100px) {
	.float_bnr .bnr:before{
		left: 150%;
		transform: translate3d(0,0,0) skewX(15deg);
		background: rgba(255, 255, 255, .25);
	}
	.float_bnr .bnr:hover:before{
		width: 200%;
		left: -50%;
	}
}

/*====================================
footer
====================================*/
footer{
	position: relative;
}
.footer_inner{
	background: linear-gradient(to bottom, rgba(0,91,172,1) 0%,rgba(0,89,171,1) 5%,rgba(0,88,168,1) 5%,rgba(1,90,170,1) 6%,rgba(0,88,168,1) 6%,rgba(0,89,169,1) 6%,rgba(0,87,167,1) 6%,rgba(0,89,169,1) 7%,rgba(0,86,166,1) 11%,rgba(1,88,168,1) 11%,rgba(0,86,166,1) 11%,rgba(0,87,167,1) 12%,rgba(0,85,165,1) 12%,rgba(0,87,167,1) 12%,rgba(0,85,165,1) 16%,rgba(0,83,163,1) 16%,rgba(0,85,165,1) 16%,rgba(0,83,163,1) 17%,rgba(0,85,165,1) 18%,rgba(0,83,163,1) 18%,rgba(1,84,164,1) 18%,rgba(0,82,162,1) 19%,rgba(1,84,164,1) 19%,rgba(0,83,163,1) 22%,rgba(0,82,160,1) 22%,rgba(0,83,161,1) 22%,rgba(0,80,159,1) 22%,rgba(1,82,161,1) 22%,rgba(0,82,158,1) 23%,rgba(0,81,160,1) 26%,rgba(1,80,159,1) 28%,rgba(0,78,157,1) 28%,rgba(1,80,159,1) 28%,rgba(1,78,158,1) 32%,rgba(0,77,155,1) 32%,rgba(1,78,158,1) 32%,rgba(0,77,155,1) 33%,rgba(0,76,154,1) 35%,rgba(1,78,156,1) 35%,rgba(0,76,154,1) 35%,rgba(1,77,155,1) 35%,rgba(0,75,153,1) 35%,rgba(1,77,155,1) 36%,rgba(0,75,153,1) 38%,rgba(1,77,155,1) 38%,rgba(0,75,153,1) 38%,rgba(0,76,154,1) 39%,rgba(0,74,152,1) 39%,rgba(0,76,154,1) 39%,rgba(0,73,150,1) 42%,rgba(0,73,150,1) 45%,rgba(0,70,148,1) 45%,rgba(1,72,150,1) 45%,rgba(0,71,147,1) 49%,rgba(2,71,149,1) 50%,rgba(0,69,146,1) 51%,rgba(2,71,148,1) 52%,rgba(0,69,146,1) 52%,rgba(1,70,147,1) 52%,rgba(0,68,145,1) 52%,rgba(1,70,147,1) 53%,rgba(0,67,145,1) 55%,rgba(1,67,145,1) 60%,rgba(0,66,144,1) 61%,rgba(0,65,141,1) 61%,rgba(0,66,142,1) 62%,rgba(0,64,140,1) 62%,rgba(0,66,142,1) 62%,rgba(0,62,139,1) 68%,rgba(1,64,141,1) 68%,rgba(0,62,139,1) 69%,rgba(0,62,137,1) 72%,rgba(0,60,135,1) 72%,rgba(0,62,137,1) 72%,rgba(1,60,136,1) 77%,rgba(0,59,135,1) 79%,rgba(0,59,132,1) 79%,rgba(1,58,135,1) 79%,rgba(0,58,132,1) 79%,rgba(0,58,132,1) 84%,rgba(0,55,130,1) 85%,rgba(1,57,132,1) 85%,rgba(0,55,130,1) 85%,rgba(0,56,131,1) 86%,rgba(0,54,129,1) 86%,rgba(0,56,131,1) 87%,rgba(0,50,123,1) 100%);
	padding-top: 12.07vw;
	padding-bottom: 12.07vw;
}

@media screen and (min-width: 600px) {
	.footer_inner{
		padding-top: 50px;
		padding-bottom: 50px;
	}
}
@media screen and (min-width: 1100px) {
	.footer_inner{
		background: linear-gradient(to bottom, rgba(0,91,172,1) 0%,rgba(0,85,165,1) 17%,rgba(0,83,163,1) 17%,rgba(0,85,165,1) 18%,rgba(0,83,163,1) 19%,rgba(0,82,162,1) 22%,rgba(1,84,164,1) 22%,rgba(0,82,160,1) 22%,rgba(0,80,159,1) 25%,rgba(1,82,161,1) 26%,rgba(0,80,159,1) 26%,rgba(1,78,158,1) 32%,rgba(0,77,155,1) 33%,rgba(2,79,157,1) 33%,rgba(1,78,158,1) 33%,rgba(0,77,155,1) 33%,rgba(0,76,154,1) 40%,rgba(0,73,150,1) 42%,rgba(1,74,151,1) 43%,rgba(0,72,149,1) 44%,rgba(1,74,151,1) 44%,rgba(0,71,149,1) 46%,rgba(2,71,148,1) 51%,rgba(0,69,147,1) 51%,rgba(2,71,149,1) 51%,rgba(0,69,146,1) 52%,rgba(2,71,148,1) 52%,rgba(0,69,146,1) 53%,rgba(0,66,144,1) 59%,rgba(1,68,146,1) 59%,rgba(0,66,144,1) 60%,rgba(0,66,144,1) 62%,rgba(0,65,141,1) 62%,rgba(0,63,140,1) 70%,rgba(0,61,136,1) 70%,rgba(1,63,138,1) 71%,rgba(0,61,136,1) 72%,rgba(1,63,138,1) 72%,rgba(0,61,136,1) 72%,rgba(1,60,136,1) 77%,rgba(0,58,134,1) 78%,rgba(1,60,136,1) 78%,rgba(0,59,132,1) 79%,rgba(1,58,135,1) 80%,rgba(0,58,132,1) 81%,rgba(0,58,132,1) 84%,rgba(0,55,130,1) 85%,rgba(1,57,132,1) 85%,rgba(0,55,130,1) 86%,rgba(1,57,132,1) 86%,rgba(0,55,130,1) 86%,rgba(0,53,129,1) 90%,rgba(0,53,127,1) 93%,rgba(1,55,129,1) 93%,rgba(0,53,127,1) 94%,rgba(0,51,126,1) 96%,rgba(1,51,124,1) 100%);
		padding-top: 66px;
		padding-bottom: 70px;
	}
}

/* to_top
--------------------------------------*/
footer .js--to_top{
	width: 30px;
	height: 30px;
	position: fixed;
	right: 10px;
	bottom: calc(14.49vw + 20px);
	z-index: 500;
	display: none;
}
footer .js--to_top a{
	display: block;
	width: 100%;
	height: 100%;
	background-color: #fff;
	background: rgba(255, 255, 255, .8);
	position: relative;
}
footer .js--to_top a:before{
	content:'';
	display: block;
	position: absolute;
	pointer-events: none;
	width: 10px;
	height: 10px;
	top: 12px;
	left:9px;
	border-top: solid 2px #000;
	border-left: solid 2px #000;
  transform: rotate(43deg) skewX(-5deg);
}
footer .js--to_top.is--fixed{
	top: -50px;
	position: absolute;
}

@media screen and (min-width: 600px) {
	footer .js--to_top{
		width: 50px;
		height: 50px;
		right: 25px;
		bottom: 40px;
	}
	footer .js--to_top a:before{
		width: 20px;
		height: 20px;
		top: 20px;
		left: 14px;
	}
	footer .js--to_top.is--fixed{
		top: 66px;
	}
}

@media screen and (min-width: 1100px) {
	footer .js--to_top{
		width: 1100px;
		left: 50%;
		transform: translateX(-50%);
		pointer-events: none;
	}
	footer .js--to_top a{
		position: absolute;
		width: 50px;
		height: 50px;
		right: -75px;
		top: 0;
		pointer-events: auto;
		transition: background .4s ease;
	}
	footer .js--to_top a:before{
		transition: border .4s ease;
	}
	footer .js--to_top:hover a{
		background: #000;
	}
	footer .js--to_top:hover a:before{
		border-color: #fff;
	}
}

/* footer_logo_blc
--------------------------------------*/
.footer_top_block,
.footer_btm_block{
	margin: 0 auto;
	width: 85.5vw;
}
.footer_logo_blc .logo_box{
	padding-bottom: 4.83vw;
	border-bottom: solid 1px #CCDEEE;
}
.footer_logo_blc .logo_box .txt{
	color: #FFF;
	font-size: 1rem;
	font-weight: 700;
	margin-bottom: 1.93vw;
}
.footer_logo_blc .logo_box .logo{
	width: 82.98vw;
}
.footer_logo_blc .address_box{
	padding-top: 4.83vw;
	color: #FFF;
	font-size: 1.4rem;
	line-height: 1.6;
}
.footer_logo_blc .address_box span{
	margin-left: -0.5em;
}
.footer_logo_blc .address_box a{
	text-decoration: underline;
}

@media screen and (max-width: 1099px) {
	.footer_logo_blc{
		margin-bottom: 30px;
	}
}
@media screen and (max-width: 959px) {
	.footer_logo_blc{
		margin-bottom: 30px;
	}
}
@media screen and (max-width: 599px) {
	.footer_logo_blc{
		margin-bottom: 7.24vw;
	}
}

@media screen and (min-width: 600px) {
	.footer_logo_blc .logo_box{
		padding-bottom: 20px;
	}
	.footer_logo_blc .logo_box .txt{
		font-size: 12px;
		margin-bottom: 10px;
		width: calc(100% + 1em);
	}
	.footer_logo_blc .logo_box .logo{
		width: 403.33px;
	}
	.footer_logo_blc .address_box{
		padding-top: 20px;
		font-size: 15px;
		line-height: 1.53;
	}
	.footer_logo_blc .address_box a:hover{
		text-decoration: none;
	}
}
@media screen and (min-width: 960px) {
	.footer_top_block,
	.footer_btm_block{
		width: 900px;
	}
}
@media screen and (min-width: 1100px) {
	.footer_top_block,
	.footer_btm_block{
		width: 1100px;
	}
	.footer_top_block{
		display: flex;
		justify-content: space-between;
	}
	.footer_top_block .footer_logo_blc{
		width: 405px;
	}
	.footer_logo_blc .address_box{
		width: 105%;
	}
}

.footer_contact_blc .tel_box .item_tel{
	display: block;
}
.footer_contact_blc .tel_box .item_tel svg{
	width: 4.83vw;
	height: 5.79vw;
}
.footer_contact_blc .tel_box .item_tel path{
	fill:#FFF;
}
.footer_contact_blc .tel_box .item_tel span{
	font-size: 2.6rem;
	color: #FFF;
	font-weight: 700;
	padding-left: 0.96vw;
}
.footer_contact_blc .tel_box .item_time{
	border: solid 1px #FFF;
	padding: 1.44vw 0;
	color: #FFF;
	font-size: 1.4rem;
}

@media screen and (max-width: 599px) {
	.footer_contact_blc .tel_box{
		margin-bottom: 7.24vw;
	}
	.footer_contact_blc .tel_box .item_tel{
		padding: 4.83vw 0;
		background-color: #001E65;
		margin-bottom: 2.41vw;
		text-align: center;
	}
	.footer_contact_blc .tel_box .item_time{
		display: flex;
		align-items: center;
		justify-content: center;
	}
	.footer_contact_blc .tel_box .item_time .label{
		margin-right: 2.41vw;
	}
}

@media screen and (min-width: 600px) {
	.footer_contact_blc .tel_box{
		display: flex;
		align-items: center;
		margin-bottom: 20px;
	}
	.footer_contact_blc .tel_box .item_tel{
		flex:1;
	}
	.footer_contact_blc .tel_box .item_tel svg{
		width: 34px;
		height: 34px;
	}
	.footer_contact_blc .tel_box .item_tel span{
		font-size: 52px;
		padding-left: 5px;
	}
	.footer_contact_blc .tel_box .item_time{
		width: 200px;
		padding: 8px 0;
		font-size: 13px;
		text-align: center;
		line-height: 1.46;
	}
}
@media screen and (min-width: 960px) {
	.footer_contact_blc .tel_box .item_time{
		width: 220px;
	}
}
@media screen and (min-width: 1100px) {
	.footer_contact_blc{
		width: 627px;
	}
}

.footer_contact_blc .bnr_box .box_btn{
	display: flex;
	align-items: center;
	padding: 2.89vw 0 2.89vw 13.76vw;
	background-color: #fff;
	box-sizing: border-box;
}
.footer_contact_blc .bnr_box .box_btn .icon{
	width: 7.72vw;
	margin-right: 2.41vw;
}
.footer_contact_blc .bnr_box .box_btn .icon svg{
	width: 7.72vw;
}
.footer_contact_blc .bnr_box .box_btn .txt .sub{
	font-size: 1.2rem;
	margin-bottom: 0.96vw;
}
.footer_contact_blc .bnr_box .box_btn .txt .ttl{
	font-size: 2.2rem;
	font-weight: 700;
}

.footer_contact_blc .bnr_box .box_btn.dl svg{
	height: 7.72vw;
}
.footer_contact_blc .bnr_box .box_btn.dl path{
	fill:#2D2D2D;
}
.footer_contact_blc .bnr_box .box_btn.dl .txt{
	color: #2D2D2D;
}
.footer_contact_blc .bnr_box .box_btn.contact svg{
	height: 5.31vw;
}
.footer_contact_blc .bnr_box .box_btn.contact path{
	fill:#9B1919;
}
.footer_contact_blc .bnr_box .box_btn.contact .txt{
	color: #9B1919;
}

@media screen and (max-width: 599px) {
	.footer_contact_blc .bnr_box .box_btn:not(:last-child){
		margin-bottom: 2.41vw;
	}
}

@media screen and (min-width: 600px) {
	.footer_contact_blc .bnr_box{
		display: flex;
	}
	.footer_contact_blc .bnr_box .box_btn{
		justify-content: center;
		padding: 17px 0 20px 0;
		width: calc((100% - 1px) / 2);
		height: 72px;
	}
	.footer_contact_blc .bnr_box .box_btn:not(:last-child){
		margin-right: 1px;
	}
	.footer_contact_blc .bnr_box .box_btn .icon{
		width: 35px;
		margin-right: 10px;
	}
	.footer_contact_blc .bnr_box .box_btn .icon svg{
		width: 35px;
	}
	.footer_contact_blc .bnr_box .box_btn .txt .sub{
		font-size: 12px;
		margin-bottom: 4px;
	}
	.footer_contact_blc .bnr_box .box_btn .txt .ttl{
		font-size: 22px;
	}

	.footer_contact_blc .bnr_box .box_btn.dl svg{
		height: 32px;
	}
	.footer_contact_blc .bnr_box .box_btn.contact svg{
		height: 22px;
	}
}
@media screen and (min-width: 1100px) {
	.footer_contact_blc .bnr_box .box_btn.dl:before{
		background-color: #2D2D2D;
	}
	.footer_contact_blc .bnr_box .box_btn.contact:before{
		background-color: #9B1919;
	}
	.footer_contact_blc .bnr_box .box_btn .icon,
	.footer_contact_blc .bnr_box .box_btn .txt{
		position: relative;
		z-index: 2;
	}
	.footer_contact_blc .bnr_box .box_btn .icon path{
		transition: fill .3s cubic-bezier(.455,.03,.515,.955);
	}
	.footer_contact_blc .bnr_box .box_btn .txt{
		transition: color .3s cubic-bezier(.455,.03,.515,.955);
	}
	.footer_contact_blc .bnr_box .box_btn:hover .icon path{
		fill:#FFF;
	}
	.footer_contact_blc .bnr_box .box_btn:hover .txt{
		color: #FFF;
	}
}

.footer_company_blc a{
	width: 34.54vw;
	display: block;
}
.footer_link_blc{
	display: flex;
	color: #FFF;
}
.footer_link_blc .link_list:not(:last-child){
	margin-right: 50px;
}
.footer_link_blc .link_list > a,
.footer_link_blc .link_list_c > a{
	display: block;
	font-size: 13px;
	line-height: 2.3;
	padding-left: 0.5em;
	text-indent: -0.5em;
}
.footer_link_blc .link_list > a:before{
	content:'>';
}
.footer_link_blc .link_list_c > a:before{
	content:'－ ';
}

@media screen and (max-width: 1099px) {
	.footer_company_blc a{
		margin: 0 auto;
	}
	.footer_link_blc{
		display: none;
	}
}

@media screen and (min-width: 600px) {
	.footer_btm_block{
		padding-top: 47px;
	}
	.footer_company_blc a{
		width: 133px;
	}
}
@media screen and (min-width: 1100px) {
	.footer_btm_block{
		padding-top: 66px;
		display: flex;
		justify-content: space-between;
	}
	.footer_link_blc{
		flex:1;
	}
	.footer_company_blc{
		width: 133px;
		display: flex;
		align-items: flex-end;
	}
	.footer_link_blc .link_list a:hover span{
		text-decoration: underline;
	}
	.footer_company_blc img{
		transition: opacity .4s ease;
	}
	.footer_company_blc a:hover img{
		opacity: .7;
	}
}


footer .copyright{
	text-align: center;
	background-color: #2D2D2D;
	color: #FFF;
	font-size: 1rem;
	padding-top: 2.41vw;
	padding-bottom: calc(2.41vw + 14.49vw);
}
@media screen and (min-width: 600px) {
	footer .copyright{
		padding-top: 10px;
		padding-bottom: 10px;
	}
}

/*====================================
サイドメニュー レイアウト
====================================*/
.l--side_wrap{
	padding-top: 7.24vw;
	padding-bottom: 12.07vw;
	width: 85.5vw;
	margin: 0 auto;
}

@media screen and (min-width: 600px) {
	.l--side_wrap{
		padding-top: 60px;
		padding-bottom: 120px;
	}
}
@media screen and (min-width: 960px) {
	.l--side_wrap{
		width: 900px;
	}
}
@media screen and (min-width: 1100px) {
	.l--side_wrap{
		width: 1100px;
		display: flex;
		justify-content: space-between;
	}
	.l--side_content{
		width: 850px;
	}
}

.l--side_menu .blc_bnr{
	margin-bottom: 30px;
}
.l--side_menu .blc_bnr a{
	display: block;
}
.l--side_menu .blc_bnr a:not(:last-child){
	margin-bottom: 10px;
}

.l--side_menu .blc_case:not(:last-child){
	margin-bottom: 30px;
}
.l--side_menu .blc_case .blc_inner{
	border: solid 1px #DCDCDC;
	padding: 0 15px;
	margin-bottom: 15px;
}
.l--side_menu .blc_case .box_ttl{
	display: flex;
	align-items: center;
	padding: 18px 0 18px 9px;
	border-bottom: solid 1px #DCDCDC;
}
.l--side_menu .blc_case .box_ttl .icon{
	width: 28px;
	margin-right: 7px;
}
.l--side_menu .blc_case .box_ttl .txt{
	color: #005BAC;
}
.l--side_menu .blc_case .box_ttl .sub{
	font-size: 10px;
	margin-bottom: 4px;
}
.l--side_menu .blc_case .box_ttl .ttl{
	font-size: 20px;
	font-weight: 700;
}
.l--side_menu .blc_case .box_link .link{
	padding: 16px 10px;
}
.l--side_menu .blc_case .box_link .link:not(:last-child){
	border-bottom: solid 1px #DCDCDC;
}
.l--side_menu .blc_case .box_link .link a{
	font-size: 13px;
	padding-left: 12px;
	line-height: 1.61;
	display: inline-block;
}
.l--side_menu .blc_case .box_link .link a:before{
	border-color: #A8A8A8;
	top:9px;
}
.l--side_menu .blc_case .to_archive{
	text-align: right;
}
.l--side_menu .blc_case .to_archive a{
	display: inline-block;
	font-size: 15px;
	padding-left: 12px;
}

.l--side_menu .blc_case.problem .box_ttl .icon{
	width: 22px;
}

@media screen and (max-width: 1099px) {
	.l--side_menu{
		display: none;
	}
}
@media screen and (min-width: 1100px) {
	.l--side_menu{
		width: 200px;
	}
	.l--side_menu .blc_bnr a img{
		transition: opacity .4s ease;
	}
	.l--side_menu .blc_bnr a:hover img{
		opacity: .7;
	}
	.l--side_menu .blc_case .box_link .link a:hover:before{
		border-color: #005BAC;
	}
}

/*===============================
Slider
===============================*/
/* ページネーション */
.slider_pagination .swiper-pagination-bullet{
	width: 12.07vw;
	height: 3px;
	border-radius: 0;
	background-color: #A8A8A8;
	opacity: 1;
	transition: background .4s ease;
}
.slider_pagination .swiper-pagination-bullet:not(:last-child){
	margin-right: 2.17vw;
}
.slider_pagination .swiper-pagination-bullet-active{
	background-color: #000;
}

@media screen and (min-width: 600px) {
	.slider_pagination .swiper-pagination-bullet{
		width: 50px;
		height: 5px;
	}
	.slider_pagination .swiper-pagination-bullet:not(:last-child){
		margin-right: 5px;
	}
}
@media screen and (min-width: 1100px) {
	.slider_pagination .swiper-pagination-bullet-active{
		pointer-events: none;
	}
}

/* ナビゲーション */
.slider_arrows{
	position: absolute;
	top: 50%;
	pointer-events: none;
	width: 100%;
	z-index: 2;
}
.slider_prev,
.slider_next{
	box-sizing: border-box;
	position: absolute;
	pointer-events: auto;
	cursor: pointer;
	top: 0;
	width: 40px;
	height: 50px;
	background-color: #2D2D2D;
}
.slider_prev:before,
.slider_next:before{
	content:'';
	display: block;
	position: absolute;
	pointer-events: none;
	box-sizing: border-box;
	width: 12px;
	height: 12px;
	top: 50%;
	border-bottom: solid 2px #fff;
}
.slider_prev{
	left: 0;
}
.slider_prev:before{
	left: 40%;
	border-left: solid 2px #fff;
	transform: translateY(-45%) rotate(45deg) skew(5deg,5deg);
}
.slider_next{
	right: 0;
}
.slider_next:before{
	right: 40%;
	border-right: solid 2px #fff;
	transform: translateY(-45%) rotate(-45deg) skew(-5deg,-5deg);
}
.slider_prev.swiper-button-disabled,
.slider_next.swiper-button-disabled{
	opacity: 0;
	pointer-events: none;
}

@media screen and (min-width: 600px) {
	.slider_prev,
	.slider_next{
		width: 40px;
		height: 40px;
	}
	.slider_prev{
		left: -20px;
	}
	.slider_next{
		right: -20px;
	}
}
@media screen and (min-width: 1100px) {
	.slider_prev,
	.slider_next{
		transition: background 0.5s ease;
	}
	.slider_prev:hover,
	.slider_next:hover{
		background-color: rgba(45, 45, 45, .7);
	}
}

/*====================================
バナー
====================================*/
.solution_bnr{
	background: url(../img/common/solution_bnr-bg-sp.png) no-repeat top left;
	background-size: 100% auto;
	border: solid 1px #DCDCDC;
	padding-top: 5.5vw;
	height: 76.57vw;
	box-sizing: border-box;
}
.solution_bnr .bnr_ttl{
	color: #FFF;
	font-size: 1.8rem;
	font-weight: 700;
	text-align: center;
	margin-bottom: 4.83vw;
	letter-spacing: -0.05em;
}
.solution_bnr .bnr_ttl span{
	font-size: 2.4rem;
}
.solution_bnr .item_tel{
	display: block;
	box-sizing: border-box;
}
.solution_bnr .item_tel svg{
	width: 4.83vw;
	height: 5.79vw;
}
.solution_bnr .item_tel path{
	fill:#005BAC;
}
.solution_bnr .item_tel span{
	font-size: 2.6rem;
	color: #005BAC;
	font-weight: 700;
	padding-left: 0.96vw;
}
.solution_bnr .item_time{
	display: flex;
	align-items: center;
	justify-content: center;
	color: #FFF;
	font-size: 1.4rem;
}
.solution_bnr .item_time .label{
	box-sizing: border-box;
	border: solid 1px #FFF;
	padding: 1.69vw 4.34vw;
}
.solution_bnr .item_time .txt{
	padding-left: 1.69vw;
	flex:1;
}
.solution_bnr .btn_contact{
	display: flex;
	align-items: center;
	justify-content: center;
	border: solid 1px #334558;
	background: rgba(0, 0, 0, .7);
	height: 14.49vw;
}
.solution_bnr .btn_contact .icon{
	width: 4.96vw;
	margin-right: 1.2vw;
}
.solution_bnr .btn_contact .icon svg{
	width: 4.96vw;
	height: 3.3vw;
}
.solution_bnr .btn_contact .icon path{
	fill:#FFF;
}
.solution_bnr .btn_contact .txt{
	color: #FFF;
	font-size: 1.8rem;
	font-weight: 700;
}

@media screen and (max-width: 1099px) {
	.solution_bnr{
		display: none;
	}
	.solution_bnr .bnr_ttl{
		line-height: 1.28;
		padding: 0 50px;
	}
	.solution_bnr .box_tel{
		margin-bottom: 20px;
	}
}
@media screen and (max-width: 599px) {
	.solution_bnr .bnr_inner{
		width: 72.46vw;
		margin: 0 auto;
	}
	.solution_bnr .bnr_ttl{
		padding: 0 12.07vw;
	}
	.solution_bnr .item_tel{
		padding: 4.13vw 0;
		background-color: #fff;
		text-align: center;
		margin-bottom: 2.41vw;
	}
	.solution_bnr .box_tel{
		margin-bottom: 4.83vw;
	}
}

@media screen and (min-width: 600px) {
	.sec_solution_bnr{
		padding-bottom: 50px;
	}
	.solution_bnr .bnr_ttl{
		margin-bottom: 20px;
	}
	.solution_bnr .item_tel svg{
		width: 21px;
		height: 21px;
	}
	.solution_bnr .item_tel path{
		fill:#FFF;
	}
	.solution_bnr .item_tel span{
		padding-left: 6px;
		font-size: 26px;
		color: #FFF;
	}
	.solution_bnr .item_time .label{
		padding: 6px 18px;
	}
	.solution_bnr .item_time .txt{
		padding-left: 10px;
	}
	.solution_bnr .btn_contact .icon{
		width: 21px;
		margin-right: 5px;
	}
	.solution_bnr .btn_contact .icon svg{
		width: 21px;
		height: 14px;
	}
	.solution_bnr .btn_contact .txt{
		font-size: 18px;
	}
}
@media screen and (min-width: 600px) and (max-width: 1099px) {
	.solution_bnr{
		width: 354px;
		height: 317px;
		margin-left: auto;
		margin-right: auto;
		padding-top: 23px;
	}
	.solution_bnr .bnr_inner{
		width: 300px;
		margin: 0 auto;
	}
	.solution_bnr .item_tel{
		text-align: center;
		margin-bottom: 10px;
		padding: 17px 0;
	}
	.solution_bnr .item_time .txt{
		flex:none;
	}
	.solution_bnr .btn_contact{
		height: 60px;
	}
}
@media screen and (min-width: 1100px) {
	.solution_bnr{
		background-image: url(../img/common/solution_bnr-bg-pc.png);
		padding-top: 37px;
		height: 207px;
	}
	.solution_bnr .bnr_ttl{
		font-size: 33px;
		margin-bottom: 25px;
	}
	.solution_bnr .bnr_ttl span{
		font-size: 40px;
	}
	.solution_bnr .bnr_ttl br.sp{
		display: none;
	}
	.solution_bnr .bnr_inner{
		display: flex;
		align-items: center;
		padding-left: 37px;
		padding-right: 40px;
	}
	.solution_bnr .box_tel{
		flex:1;
		display: flex;
		align-items: center;
	}
	.solution_bnr .item_tel{
		margin-right: 18px;
	}
	.solution_bnr .item_tel svg{
		width: 25px;
		height: 30px;
	}
	.solution_bnr .item_tel span{
		font-size: 40px;
	}
	.solution_bnr .item_time{
		font-size: 15px;
	}
	body.ie .solution_bnr .item_time{
		width: 290px;
	}
	.solution_bnr .item_time .label{
		padding: 6px 7px;
	}
	.solution_bnr .item_time .txt{
		padding-left: 6px;
	}
	.solution_bnr .box_contact{
		width: 400px;
	}
	.solution_bnr .btn_contact{
		height: 58px;
	}
	.solution_bnr .btn_contact .icon{
		width: 28px;
		margin-right: 8px;
	}
	.solution_bnr .btn_contact .icon svg{
		width: 28px;
		height: 19px;
	}
	.solution_bnr .btn_contact .txt{
		font-size: 23px;
	}
	.solution_bnr .btn_contact .icon,
	.solution_bnr .btn_contact .txt{
		transition: opacity .4s ease;
	}
	.solution_bnr .btn_contact:hover .icon,
	.solution_bnr .btn_contact:hover .txt{
		opacity: .7;
	}
}

/*====================================
投稿
====================================*/
/* アーカイブ
--------------------------------------*/
.cmn_post_item{
	padding-top: 12.07vw;
	padding-bottom: 12.07vw;
}
.cmn_post_item:not(:last-child){
	border-bottom: solid 1px #DCDCDC;
}
.cmn_post_item .ttl{
	font-size: 1.8rem;
	font-weight: 700;
	line-height: 1.77;
	display: block;
}
.cmn_post_item .txt{
	margin-top: 2.41vw;
	font-size: 1.4rem;
	line-height: 1.64;
}
.cmn_post_item .btn_wrap{
	margin-top: 9.66vw;
}
.cmn_post_item .btn span{
	font-size: 1.5rem;
	display: inline-block;
}

@media screen and (max-width: 599px) {
	.cmn_post_item .box_content{
		padding-top: 3.62vw;
	}
	.cmn_post_item .btn{
		display: flex;
		align-items: center;
		justify-content: center;
		width: 100%;
		height: 14.49vw;
		background-color: #2D2D2D;
	}
	.cmn_post_item .btn span{
		color: #FFF;
	}
	.cmn_post_item .btn span:before{
		border-color: #fff;
	}
}

@media screen and (min-width: 600px) {
	.cmn_post_item{
		padding-top: 50px;
		padding-bottom: 50px;
	}
	.cmn_post_item .blc_content{
		display: flex;
	}
	.cmn_post_item .blc_content .box_img{
		width: 31.05%;
	}
	.cmn_post_item .blc_content .box_content{
		flex:1;
		padding-left: 30px;
	}
	.cmn_post_item .ttl{
		font-size: 20px;
		line-height: 1.6;
	}
	.cmn_post_item .txt{
		margin-top: 20px;
		font-size: 13px;
		line-height: 1.76;
	}
	.cmn_post_item .btn_wrap{
		margin-top: 35px;
		text-align: right;
	}
	.cmn_post_item .btn span{
		font-size: 15px;
	}
}
@media screen and (min-width: 1100px) {
	.cmn_post_item .ttl{
		min-height: 61px;
	}
	.cmn_post_item .ttl,
	.cmn_post_item .btn span{
		transition: color .4s ease;
	}
	.cmn_post_item .ttl:hover,
	.cmn_post_item .btn:hover span{
		text-decoration: underline;
		color: #005BAC;
	}
}

/* シングル
--------------------------------------*/
.cmn_sec_single .cmn_txt{
	font-size: 1.4rem;
	line-height: 1.64;
}
.cmn_sec_single .cmn_txt a{
	color: #005BAC;
	text-decoration: underline;
}
.cmn_sec_single .cmn_txt img{
	width: auto;
	max-width: 100%;
}
.cmn_sec_single .blc_main{
	margin-bottom: 7.24vw;
}
.cmn_sec_single .main_img{
	margin-bottom: 3.62vw;
}
.cmn_sec_single .page_ttl{
	font-size: 1.8rem;
	font-weight: 700;
	line-height: 1.77;
}
.cmn_sec_single .lead_txt{
	margin-top: 3.62vw;
}

@media screen and (min-width: 600px) {
	.cmn_sec_single .cmn_txt{
		font-size: 15px;
		line-height: 2;
	}
	.cmn_sec_single .blc_main{
		margin-bottom: 50px;
	}
	.cmn_sec_single .main_img{
		margin-bottom: 50px;
		text-align: center;
	}
	.cmn_sec_single .main_img img{
		width: auto;
		max-width: 100%;
	}
	.cmn_sec_single .page_ttl{
		font-size: 26px;
		line-height: 1.61;
	}
	.cmn_sec_single .lead_txt{
		margin-top: 20px;
	}
}

.cmn_sec_single .block{
	margin-top: 4.83vw;
	margin-bottom: 4.83vw;
}
.cmn_sec_single .block:first-child{
	margin-top: 0 !important;
}
.cmn_sec_single .block:last-child{
	margin-bottom: 0 !important;
}
.cmn_sec_single .block--ttl_a{
	margin-top: 7.24vw;
	margin-bottom: 4.83vw;
}
.cmn_sec_single .block--ttl_a .ttl_a{
	position: relative;
	color: #005BAC;
	font-size: 1.8rem;
	font-weight: 700;
	line-height: 1.5;
	padding-top: 1px;
	padding-left: 4.34vw;
	padding-bottom: 4.1vw;
	border-bottom: solid 1px #005BAC;
}
.cmn_sec_single .block--ttl_a .ttl_a:before{
	content:'';
	display: block;
	position: absolute;
	pointer-events: none;
	background-color: #005BAC;
	width: 5px;
	height: calc(100% - 4.1vw + 2px);
	left: 0;
	top: -1px;
}
.cmn_sec_single .block--ttl_b{
	margin-top: 4.83vw;
	margin-bottom: 4.83vw;
}
.cmn_sec_single .block--ttl_b .ttl_b{
	background-color: #EDF3F9;
	padding: 6.03vw 7.24vw;
	color: #005BAC;
	font-size: 1.8rem;
	font-weight: 700;
	line-height: 1.5;
}
.cmn_sec_single .block--format_a,
.cmn_sec_single .block--format_b{
	margin-bottom: 7.24vw;
}
.cmn_sec_single .block--format_c{
	margin-bottom: 7.24vw;
}
.cmn_sec_single .block--format_c .box_img{
	margin-bottom: 3.62vw;
}
.cmn_sec_single .block--format_d .img{
	text-align: center;
}
.cmn_sec_single .block--format_f{
	margin-top: 7.24vw;
	margin-bottom: 7.24vw;
}
.cmn_sec_single .block--format_f .movie_wrap{
	position: relative;
	padding-bottom: 56.25%;
	height: 0;
	overflow: hidden;
}
.cmn_sec_single .block--format_f .movie_wrap iframe,
.cmn_sec_single .block--format_f .movie_wrap video,
.cmn_sec_single .block--format_f .movie_wrap object,
.cmn_sec_single .block--format_f .movie_wrap embed{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}


@media screen and (max-width: 599px) {
	.cmn_sec_single .block--format_a .box_img,
	.cmn_sec_single .block--format_b .box_txt{
		margin-bottom: 3.62vw;
	}
	.cmn_sec_single .block--format_c .box_img .img:first-child{
		margin-bottom: 4.83vw;
	}
}

@media screen and (min-width: 600px) {
	.cmn_sec_single .blc_content .block{
		margin-top: 45px;
		margin-bottom: 45px;
	}
	.cmn_sec_single .block--ttl_a{
		margin-top: 45px;
		margin-bottom: 30px;
	}
	.cmn_sec_single .block--ttl_a .ttl_a{
		font-size: 20px;
		padding-top: 1px;
		padding-left: 18px;
		padding-bottom: 17px;
	}
	.cmn_sec_single .block--ttl_a .ttl_a:before{
		height: calc(100% - 14px);
	}
	.cmn_sec_single .block--ttl_b{
		margin-top: 45px;
		margin-bottom: 30px;
	}
	.cmn_sec_single .block--ttl_b .ttl_b{
		padding:25px 30px;
		font-size: 20px;
		line-height: 1.6;
	}
	.cmn_sec_single .block--format_a,
	.cmn_sec_single .block--format_b{
		margin-bottom: 50px;
		display: flex;
	}
	.cmn_sec_single .block--format_a .box_img,
	.cmn_sec_single .block--format_b .box_img{
		width: 47.52%;
	}
	.cmn_sec_single .block--format_a .box_txt,
	.cmn_sec_single .block--format_b .box_txt{
		flex:1;
	}
	.cmn_sec_single .block--format_a .box_txt{
		padding-left: 30px;
	}
	.cmn_sec_single .block--format_b .box_txt{
		padding-right: 30px;
	}
	.cmn_sec_single .block--format_c{
		margin-bottom: 55px;
	}
	.cmn_sec_single .block--format_c .box_img{
		margin-bottom: 25px;
		display: flex;
		justify-content: space-between;
	}
	.cmn_sec_single .block--format_c .box_img .img{
		width: 47.52%;
	}
	.cmn_sec_single .block--format_d .img img{
		width: auto;
		max-width: auto;
	}
	.cmn_sec_single .block--format_f{
		margin-top: 55px;
		margin-bottom: 55px;
	}
}
@media screen and (min-width: 1100px) {
	.cmn_sec_single .cmn_txt a:hover{
		text-decoration: none;
	}
}

/* 資料ダウンロードボタン
--------------------------------------*/
.cmn_blc_dl{
	margin-top: 4.83vw;
	margin-bottom: 16.9vw;
	display: flex;
	background-color: #E9E9E9;
	padding: 4.83vw;
	box-sizing: border-box;
}
.cmn_blc_dl .btn{
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: #fff;
	height: 19.32vw;
	width: 100%;
	border: solid 1px #DCDCDC;
}
.cmn_blc_dl .btn .icon{
	position: relative;
	width: 5.25vw;
	margin-right: 1.44vw;
}
.cmn_blc_dl .btn .icon img.on{
	opacity: 0;
	position: absolute;
	top: 0;
	left: 0;
}
.cmn_blc_dl .btn .txt{
	color: #A8A8A8;
	font-weight: 700;
	font-size: 1.6rem;
}

@media screen and (min-width: 600px) {
	.cmn_blc_dl{
		padding: 20px;
		width: 440px;
		margin: 70px auto 0 auto;
	}
	.cmn_blc_dl .btn{
		height: 70px;
	}
	.cmn_blc_dl .btn .icon{
		width: 22px;
		margin-right: 5px;
	}
	.cmn_blc_dl .btn .txt{
		font-size: 22px;
	}
}
@media screen and (min-width: 1100px) {
	.cmn_blc_dl .btn .icon,
	.cmn_blc_dl .btn .txt{
		position: relative;
		z-index: 2;
	}
	.cmn_blc_dl .btn .icon img{
		transition: opacity .3s cubic-bezier(.455,.03,.515,.955);
	}
	.cmn_blc_dl .btn:hover .icon img.off{
		opacity: 0;
	}
	.cmn_blc_dl .btn:hover .icon img.on{
		opacity: 1;
	}
	.cmn_blc_dl .btn .txt{
		transition: color .3s cubic-bezier(.455,.03,.515,.955);
	}
	.cmn_blc_dl .btn:hover .txt{
		color: #FFF;
	}
}

/*===============================
ページャー
===============================*/
.wp-pagenavi{
	display: flex;
	justify-content: center;
	margin-top: 12vw;
}
.wp-pagenavi .page,
.wp-pagenavi .current,
.wp-pagenavi .extend,
.wp-pagenavi .previouspostslink,
.wp-pagenavi .nextpostslink,
.wp-pagenavi .first,
.wp-pagenavi .last{
	height: 9.66vw;
	position: relative;
}
.wp-pagenavi .page,
.wp-pagenavi .current,
.wp-pagenavi .extend{
	box-sizing: border-box;
	font-size: 1.8rem;
	color: #A8A8A8;
	margin-left: 1.2vw;
	margin-right: 1.2vw;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 9.66vw;
	border: solid 1px #A8A8A8;
}
.wp-pagenavi .current{
	color: #fff;
	border-color: #005BAC;
	background-color: #005BAC;
}
.wp-pagenavi .previouspostslink,
.wp-pagenavi .nextpostslink,
.wp-pagenavi .first,
.wp-pagenavi .last{
	border: none;
}
.wp-pagenavi .previouspostslink,
.wp-pagenavi .nextpostslink{
	width: 3.62vw;
}
.wp-pagenavi .first,
.wp-pagenavi .last{
	width: 5.79vw;
}
.wp-pagenavi .first{
	margin-right: 1.93vw;
}
.wp-pagenavi .previouspostslink{
	margin-right: 2.41vw;
}
.wp-pagenavi .last{
	margin-left: 1.93vw;
}
.wp-pagenavi .nextpostslink{
	margin-left: 2.41vw;
}
.wp-pagenavi .previouspostslink:before,
.wp-pagenavi .nextpostslink:before,
.wp-pagenavi .first:before,
.wp-pagenavi .last:before,
.wp-pagenavi .first:after,
.wp-pagenavi .last:after{
	content:'';
	display: block;
	position: absolute;
	pointer-events: none;
	width: 4vw;
	height: 4vw;
	border-top: solid 2px #A8A8A8;
	top: 50%;
}
.wp-pagenavi .previouspostslink:before,
.wp-pagenavi .first:before,
.wp-pagenavi .first:after{
	border-left: solid 2px #A8A8A8;
}
.wp-pagenavi .nextpostslink:before,
.wp-pagenavi .last:before,
.wp-pagenavi .last:after{
	border-right: solid 2px #A8A8A8;
}
.wp-pagenavi .previouspostslink:before{
	left: 50%;
	transform: translate(-20%,-50%) rotate(-45deg);
}
.wp-pagenavi .first:before{
	left: 1vw;
	transform: translateY(-50%) rotate(-45deg);
}
.wp-pagenavi .first:after{
	right: -1.8vw;
	transform: translateY(-50%) rotate(-45deg);
}
.wp-pagenavi .nextpostslink:before{
	right: 50%;
	transform: translate(20%,-50%) rotate(45deg);
}
.wp-pagenavi .last:before{
	left: -1.8vw;
	transform: translateY(-50%) rotate(45deg);
}
.wp-pagenavi .last:after{
	right: 1vw;
	transform: translateY(-50%) rotate(45deg);
}


@media screen and (min-width: 600px) {
	.wp-pagenavi{
		margin-top: 100px;
	}
	.wp-pagenavi .page,
	.wp-pagenavi .current,
	.wp-pagenavi .extend,
	.wp-pagenavi .previouspostslink,
	.wp-pagenavi .nextpostslink,
	.wp-pagenavi .first,
	.wp-pagenavi .last{
		height: 40px;
	}
	.wp-pagenavi .page,
	.wp-pagenavi .current,
	.wp-pagenavi .extend{
		font-size: 18px;
		margin-left: 10px;
		margin-right: 10px;
		width: 40px;
	}
	.wp-pagenavi .previouspostslink,
	.wp-pagenavi .nextpostslink{
		width: 15px;
	}
	.wp-pagenavi .first,
	.wp-pagenavi .last{
		width: 22px;
	}
	.wp-pagenavi .first{
		margin-right: 18px;
	}
	.wp-pagenavi .previouspostslink{
		margin-right: 40px;
	}
	.wp-pagenavi .last{
		margin-left: 18px;
	}
	.wp-pagenavi .nextpostslink{
		margin-left: 40px;
	}
	.wp-pagenavi .previouspostslink:before,
	.wp-pagenavi .nextpostslink:before,
	.wp-pagenavi .first:before,
	.wp-pagenavi .last:before,
	.wp-pagenavi .first:after,
	.wp-pagenavi .last:after{
		width: 18px;
		height: 18px;
	}
	.wp-pagenavi .first:before{
		left: 4px;
		transform: translateY(-50%) rotate(-45deg);
	}
	.wp-pagenavi .first:after{
		right: -9px;
		transform: translateY(-50%) rotate(-45deg);
	}
	.wp-pagenavi .last:before{
		left: -9px;
	}
	.wp-pagenavi .last:after{
		right: 4px;
	}
}
@media screen and (min-width: 1100px) {
	.wp-pagenavi .page{
		transition: border .3s ease, color .3s ease, background .3s ease;
	}
	.wp-pagenavi .page:hover{
		color: #fff;
		border-color: #005BAC;
		background-color: #005BAC;
	}
	.wp-pagenavi .previouspostslink:before,
	.wp-pagenavi .nextpostslink:before,
	.wp-pagenavi .first:before,
	.wp-pagenavi .last:before,
	.wp-pagenavi .first:after,
	.wp-pagenavi .last:after{
		transition: border .3s ease;
	}
	.wp-pagenavi .previouspostslink:hover:before,
	.wp-pagenavi .nextpostslink:hover:before,
	.wp-pagenavi .first:hover:before,
	.wp-pagenavi .last:hover:before,
	.wp-pagenavi .first:hover:after,
	.wp-pagenavi .last:hover:after{
		border-color: #005BAC;
	}
}

/*====================================

====================================*/
/*
--------------------------------------*/
@media screen and (min-width: 600px) {
}
@media screen and (min-width: 960px) {
}
@media screen and (min-width: 1100px) {
}
