@charset "utf-8";
@import url('https://fonts.googleapis.com/css?family=Noto+Sans+JP:300,400,500,700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@300;400;500;700&display=swap');


/*-----
 common_SP
-----  */
.slider{
    display: none;
}
.slider.slick-initialized{
    display: block; /*slick-initializedが付与されたら表示*/
}
html {
    font-size: 15px;
}
body {
    font-family: 'Noto Sans JP',"Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
    position: relative;
    background-color: #fff;
}
.btn {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    position: relative;
    margin: auto;
    max-width: 155px;
}

.btn > .btn_link {
    display: block;
    width: 100%;
    padding: 10px 15px;
    font-size: 16px;
    position: relative;
    color: #fff;
    background-color: #DC0000;
    border: 1px solid #DC0000;
    border-radius: 22px;
    text-align: center;
}

header{
	display: flex;
	justify-content: space-between;
	align-items: center;
	position: fixed;
	top: 0;
	z-index: 200;
	width: 100%;
	box-shadow: 0px 0px 16px -6px rgb(0 0 0 / 60%);
	padding: 15px;
	background-color: #1A498D;
}
.header__logo {
	display: flex;
	justify-content: flex-start;
	align-items: flex-end;
}
.header__logo img {
	display: inline-block;
	width: 51px;
	height: 48px;
}
.header__txt {
	color: #fff;
	font-size: 16px;
	margin-left: 5px;
	font-weight: bolder;
}
.header__btn-area{
    min-width: 110px;
    display: flex;
    align-items: flex-end;
    flex-flow:column nowrap;
    justify-content: center;
}
.header__btn-cart.tel_icon{
    width: 100%;
    max-width: 110px;
    height: 22px;
    margin-bottom: 15px;
}
.header__btn-contact{
    margin-bottom: 8px;
}
/* .header__btn-cart img{
    width: 110px;
} */
.header__btn-contact img{
    width: 110px;
}

header .menu_btn {
	position: relative;
	width: 46px;
	height: 46px;
	background: #fff;
	transition: all 0.36s ease;
	text-align: center;
	cursor: pointer;
}
header .menu_btn span {
	display: block;
	position: absolute;
	top: 50%;
	left: 50%;
	width: 30px;
	height: 1px;
	margin-top: -.5px;
	margin-left: -15px;
	background: #1A498D;
	transition: all 0.3s ease;
}
header .menu_btn span:before,
header .menu_btn span:after {
	content: "";
	display: block;
	position: absolute;
	left: 0;
	width: 30px;
	height: 1px;
	background: #1A498D;
	transition: all 0.3s ease;
}
header .menu_btn span:before {
	top: -10px;
}
header .menu_btn span:after {
	top: 10px;
}
header .menu_btn.active span {
	background: none;
}
header .menu_btn.active span::before {
	top: 0;
	transform: rotate(45deg);
}
header .menu_btn.active span::after {
	top: 0;
	transform: rotate(-45deg);
}
#gnav {
	display: none;
	position: fixed;
	top: 78px;
	left: 0;
	right: 0;
	z-index: 200;
	height: calc(100vh - 78px);
	background: rgba(0,0,0,.6);
}
#gnav .main_nav {
	background-color: #EFF2F7;
	padding: 20px 20px 15px;
}
#gnav .main_nav li {
	margin-bottom: 10px;
}
#gnav .main_nav li::before {
	content: "";
	display: inline-block;
	width: 6px;
	height: 6px;
	margin-right: 5px;
	border-radius: 50%;
	background-color: #1A498D;
	vertical-align: middle;
}
#gnav .main_nav li a {
	color: #333;
}
#gnav .contact_set {
	display: flex;
	justify-content: space-between;
	width: 100%;
	border-top: solid 1px #1A498D;
	border-bottom: solid 1px #1A498D;
}
#gnav .contact_set .item {
	width: 50%;
}
#gnav .contact_set .item a {
	display: flex;
	justify-content: center;
	align-items: center;
	min-height: 41px;
	background-color: #fff;
	border-radius: 0;
	font-size: 18px;
	font-weight: bold;
	color: #1A498D;
}
#gnav .contact_set .item .header_cart_btn {
	background-color: #1A498D;
	color: #fff;
	font-size: 16px;
}
#gnav .contact_set .item a::before {
	content: "";
	background-repeat: no-repeat;
	background-size: contain;
	width: 19px;
	height: 19px;
	margin-right: 5px;
}
#gnav .contact_set .item .header_tel_btn::before {
	background-image: url(../img/common/tel_icon.svg);
}
#gnav .contact_set .item .header_cart_btn::before {
	width: 21px;
	height: 18px;
	background-image: url(../img/common/cart_icon_white.svg);
}

@media screen and (min-width:640px) {
	body {
		padding-top: 144px;
	}
	header{
		flex-wrap: wrap;
		padding: 10px 50px 0;
	}
	#gnav {
		display: block;
		position: relative;
		top: auto;
		z-index: 200;
		width: 100%;
		height: auto;
		padding-top: 10px;
		background: #1A498D;
	}
	#gnav .main_nav {
		display: flex;
		justify-content: center;
		background: none;
		padding: 0;
	}
	#gnav .main_nav li {
		margin-bottom: 0;
	}
	#gnav .main_nav li::before {
		content: none;
	}
	#gnav .main_nav li a {
		display: flex;
		align-items: center;
		justify-content: center;
		position: relative;
		max-width: inherit;
		min-width: 150px;
		height: 60px;
		padding: 0 15px;
		color: #fff;
		transform: skewX(-25deg);
	}
	#gnav .main_nav li a .txt {
		transform: skewX(25deg);
	}
	#gnav .main_nav li a::after {
		content: "";
		position: absolute;
		top: 2px;
		bottom: 2px;
		right: 0;
		width: 0.5px;
		margin: auto;
		background-color: #fff;
		z-index: 190;
	}
	#gnav .contact_set {
		display: flex;
		position: fixed;
		top: 16px;
		right: 50px;
		width: 560px;
		border: none;
	}
	#gnav .contact_set .item {
		width: 270px;
	}
	#gnav .contact_set .item .header_tel_btn {
		display: block;
		width: 100%;
		min-height: inherit;
		height: 0;
		overflow: hidden;
		padding-top: 52.38px;
		background-repeat: no-repeat;
		background-position: center;
		background-size: contain;
		background-color: transparent;
		background-image: url(../img/common/header_tel_btn-pc.svg);
		line-height: 2;
	}
	#gnav .contact_set .item .header_cart_btn {
		min-height: 52.38px;
		border-radius: 26.19px;
		background-color: #DC0300;
		font-size: 20px;
	}
	#gnav .contact_set .item .header_tel_btn::before {
		content: none;
	}
	#gnav .contact_set .item .header_cart_btn::before {
		width: 35px;
		height: 30px;
	}
	
}
@media screen and (min-width: 1200px) {
	#gnav .main_nav li a {
		font-size: 14px;
	}
}

.top__mv{
    position: relative;
    border-bottom: 11px solid #000;
}
.top__mv-img{
}
.top__mv-txt{
    position: absolute;
    bottom: 15px;
    font-size: 24px;
    line-height: 32px;
    font-weight: bold;
    color: #fff;
    left: 15px;
    text-shadow: 2px 2px 2px rgba(0,0,0,0.5);
}
.top__lead {
    line-height: 1.5;
    font-size: 14px;
    padding: 0 20px;
    margin: 40px auto 0;
    max-width: 1000px;
}
.camera__card-wrap{
    margin-top: 40px;
}
.sub-ttl{
    text-align: center;
    font-size: 25px;
    color: #333;
    padding: 15px;
    background: url(../img/common/ttl__gradation.png) bottom center no-repeat;
    background-size: 120px 4px;
    margin-bottom: 15px;
}
.sub_ttl_wrap {
    padding: 40px 20px 0;
    max-width: 1040px;
    margin: 0 auto 40px;
    text-align: center;
}
.sub_ttl_wrap .sub-ttl_caption {
    font-size: 20px;
    color: #333;
}
.l-ttl{
    text-align: center;
    margin-bottom: 15px;
}
.l-ttl span{
    padding-left: 40px;
    padding-right: 40px;
    background: url(../img/common/ttl_icon.png) top left no-repeat , url(../img/common/ttl_icon.png) top right no-repeat;
    background-size: 31px 34px;
    font-size: 22px;
    min-height: 1.5em;
    line-height: 1.5;
    display: inline-flex;
    margin-left: auto;
    margin-right: auto;
}
.camera__card{
    margin-bottom: 30px;
}
.m-ttl{
    margin-bottom: 15px;
    font-size: 18px;
    text-align: center;
}
.camera__card-img{
    width: 67%;
    position: relative;
    /* overflow: hidden;
    padding-top: 42%; */
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 10px;
}
.camera__card-series{
    margin-left: 20px;
    margin-right: 20px;
    display: flex;
    flex-wrap: wrap;
    /* justify-content: space-between; */
}
.camera__card-series-list{
    width: calc(50% - 10px);
    margin-bottom: 10px;
}
.camera__card-series-list dl{
    display: flex;
    flex-flow:column nowrap;
    height: 100%;
    justify-content: space-between;
}
.camera__card-series-btn{
}
.camera__card-series-list:first-child{
    margin-left: auto;
    margin-right: auto;
}
.camera__card-series-list:nth-child(even){
    margin-left: 20px;
}
.camera__card-series-caption{
    margin-bottom: 10px;
    line-height: 1.2;
}
.camera__card-series-btn{
}
.camera__card-series-btn a{
    background-color: #E6E6E6;
    display: block;
    text-decoration: none;
    color: #000;
    text-align: center;
    padding: 6px 0;
}
.camera__card_caption{
    font-size: 14px;
    margin-right: 20px;
    margin-left: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid;
    line-height: 1.5;
}
.camera__card_note{
    font-size: 10px;
    padding-top: 20px;
    line-height: 1.5;
    margin-right: 20px;
    margin-left: 20px;
    margin-bottom: 95px;
}
.footer__navi{
    display: flex;
    font-size: 17px;
    flex-wrap: wrap;
    margin-bottom: 15px;
    line-height: 1.5;
    margin-right: 20px;
    margin-left: 20px;
}
.footer__navi a{
    text-decoration: none;
    color: #333333;
}
.footer__navi-list::before{
    content: "・";
    display: inline-block;
    width: 1em;
}
.footer__navi-list:nth-of-type(2){
    margin-left: 1em;
}
.footer__navi a{

}
footer small{
    font-size: 12px;
    color: #fff;
    background-color: #000000;
    padding: 10px;
    text-align: center;
    display: block;
}
.scroll_btn {
    display: none;
    position: fixed;
    bottom: 100px;
    right: 20px;
    z-index: 180;
    width: 50px;
    height: 48px;
    transition: all .3s ease-in-out;
}
.pc, .pc-in, .pc-inbl, .tabpc-inbl {
	display: none;
}
.sp {
	display: block;
}
.sp-in {
	display: inline;
}
.sp-inbl {
	display: inline-block;
}

@media screen and (min-width:640px) {
html {
    font-size: 18px;
}
body {

}
.header__logo img {
	width: 69px;
	height: 64px;
}
.header__txt {
    font-size: 16px;
    margin: 0 15px;
}
.header__logo img{

}
/* .header__btn-area{
flex-flow: row nowrap;
} */
.header__btn-cart.tel_icon{
    max-width: 170px;
        height: 30px;
    margin-bottom: 15px;
}
.header__btn-contact{
margin-bottom: 0;
/* margin-right: 15px; */
}
/* .header__btn-cart img{
    width: 170px;
} */
.header__btn-contact img{
    width: 170px;
}
.top__mv{
    border-bottom: 20px solid #000;
}
.top__mv-img{
    height: 590px;
    overflow: hidden;
}
.top__mv-img img{
    object-fit: cover;
    object-position: top center;
    width: 100%;
    height: 590px;
}
.top__mv-txt{
    font-size: 60px;
    text-shadow: 4px 4px 4px rgb(0 0 0 / 50%);
    line-height: 1.5;
    left: 50px;
    bottom: 50px;
}
.top__lead {
    margin-top: 70px;
    font-size: 16px;
}
.camera__card-wrap{
    /* padding-top: 65px; */
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 40px;
}
.sub-ttl{
    font-size: 33px;
    padding:20px;
    background-size: 150px 4px;
    margin-bottom: 50px;
    font-weight: 500;
}
.sub_ttl_wrap {
    padding: 40px 20px 0;
    max-width: 1000px;
    margin: 0 auto 40px;
    text-align: center;
}
.sub_ttl_wrap .sub-ttl {
    margin-bottom: 10px;
    background-size: 72px 4px;
}
.sub_ttl_wrap .sub-ttl_caption {
    font-size: 20px;
    color: #333;
}
.l-ttl{
    font-size: 25px;
    text-align: left;
    margin-bottom: 30px;
    font-weight: 500;
}
.l-ttl span{
    background-size: 65px 71px;
    min-height: 71px;
    display: flex;
    align-items: center;
    padding-left: 80px;
    background: url(../img/common/ttl_icon.png) top left no-repeat ;
    font-size: 25px;
}
.camera__card-wrap{
    margin-bottom: 100px;
}
.camera__card-contents{
    display: flex;
    flex-wrap: wrap;
}
.camera__card-contents.u-ailgn_end{
    align-items: flex-end;
}
.camera__card-contents{
    width: 100%;
    margin-bottom: 40px;
}
.camera__card-contents .l-ttl{
    width: 100%;
    font-weight: 500;
}
.m-ttl{
    font-size: 22px;
    margin-bottom: 15px;
}
.camera__card{
    width: calc(50% - 25px);
}
.camera__card:nth-child(odd){
    margin-left: 50px;
}
.camera__card-img{
    width: 100%;
    padding-top: 68%;
    margin-bottom: 20px;
    overflow: hidden;
}
.camera__card-img img{
    position: absolute;
    top: 50%;
    left: 50%;
    width: auto;
    height: auto;
    min-width: 100%;
    min-height: 100%;
    max-width: 100%;
    object-fit: cover;
    transform: translateY(-50%) translateX(-50%);
}
.camera__card-series{
    margin-left: 0;
    margin-right: 0;
}
.camera__card-series-list{
    width: calc((100% - 30px) / 3);
    margin-bottom: 15px;
}
.camera__card-series-list:first-child{
    margin-left: inherit;
    margin-right: inherit;
}
.camera__card-series-list:nth-child(even){
    margin-left: 0;
}
.camera__card-series-list:not(:nth-child(3n)){
    margin-right: 15px;
}
.camera__card-series-caption{

}
.camera__card-series-btn{
}
.camera__card-series-btn a{
    background-color: #fff;
    border: 1px solid #000;
    font-size: 14px;
}
.camera__card-series-btn a:hover{
    border: 1px solid #DC0000;
    background-color: #DC0000;
    color: #fff;
}
.camera__card_caption{
margin-top: 35px;
}
.camera__card_note{

}
.scroll_btn {
    bottom: 100px;
    right: 45px;
    width: 46px;
    height: 46px;
}
.footer__navi{
    margin-left: 50px;
}
.footer__navi a{
}
.footer__navi-list{
    margin-left: 0;
}
.footer__navi-list::before{
    content: "／";
    margin-right: .5em;
    margin-left: .5em;
}
.footer__navi-list:last-child:after{
    content: "／";
    margin-left: .5em;
}
.footer__navi-list:nth-of-type(2){
margin-left: 0;
}
.footer__navi a{
font-size: 17px;
}
footer small{
    padding: 15px;
}
    /* 単指示 tablet */
    .pc {
        display: block;
    }
    .pc-in {
        display: inline;
    }
    .pc-inbl, .tabpc-inbl {
        display: inline-block;
    }
    .sp, .sp-in, .sp-inbl {
        display: none;
    }
}

/**/
.company_txt {
    margin-bottom: 15px;
}
.company_list > li{
    line-height: 1.2;
}

/*パンくずリスト*/
.topicpath_list {
    padding: 0 20px;
    margin: 20px auto 0;
    max-width: 1000px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}
.topicpath_list >li {
    margin-top: 5px;
}
.topicpath_item {
    white-space: nowrap;
}

.topicpath_item > * {
    display: inline-block;
    line-height: 1.2;
    font-size: 16px;
}

.topicpath_item > a {
    padding-top: 2px;
    color: #dc0000;
    padding-bottom: 1px;
    border-bottom: 1px solid #dc0000;
}

.topicpath_item + .topicpath_item {
    padding-left: 10px;
}
.topicpath_item + .topicpath_item::before {
    content: "";
    display: inline-block;
    width: 10px;
    height: 10px;
    border-right: 1px solid #525263;
    border-bottom: 1px solid #525263;
    transform: rotate(135deg);
}