@charset "utf-8";


/***********************************************************************************************************************
* 基本構造
***********************************************************************************************************************/
html{}
a,button{cursor: pointer; -webkit-transition: opacity 0.3s ease; transition: opacity 0.3s ease; color:inherit;}
a:hover,button:hover{ opacity: 0.5;}

/*画像幅100%*/
img{ max-width: 100%; height: auto;}
img.wide{ width: 100%; height: auto;}

/*フレックスボックス*/
.flex{ display: -ms-flexbox; display: -webkit-flex; display: flex;}
.flex-wrap{ -webkit-flex-wrap: wrap; flex-wrap: wrap;}
.flex.revs{ -webkit-flex-direction: row-reverse; flex-direction:row-reverse;}
.flex.va-cent{ -webkit-align-items: center; align-items:center;}
.flex.jc-cent{ -webkit-justify-content: center; justify-content: center;}
.flex.jc-right{ -webkit-justify-content: flex-end; justify-content: flex-end;}
.grid{ display: -webkit-flex; display: flex;justify-content: space-between;}

/*画像切り替えなど*/
.sp{ display: none !important; }
.pc{ display:block !important; }

/*ローディング*/
#loader-bg { position: fixed; width: 100%; height: 100%; top: 0px; left: 0px; background: #FFF; z-index: 10;}
#loader {display: block;position: absolute;top: 50%;width: 100%;height: 60px;left: 0;-webkit-transform: translate(0, -50%);transform: translate(0, -50%);text-align: center;z-index: 100;}
/*ローダー・サークル*/
.loader1{ width:45px; height:45px; border-radius:50%; border:2px solid rgba(0,0,0,0.2); border-top-color:rgba(0,0,0,0.4); box-sizing:border-box; display: inline-block; animation:loading 0.6s linear infinite; -webkit-animation:loading 0.6s linear infinite;}
	@keyframes loading{ 0%{transform:rotate(0deg)} 100%{transform:rotate(360deg)}}
	@-webkit-keyframes loading{0%{-webkit-transform:rotate(0deg)}100%{-webkit-transform:rotate(360deg)}}

#all-wrap{ position: relative; opacity: 0; overflow: hidden;}
#all-wrap.active{ opacity: 1;}

/*リサイズ時アニメーション回避*/
body.noduration *,
body .fin{ transition-delay: 0 !important; transition-duration: 0 !important;}

/*背景画像デフォルト設定*/
.bgcover{background-size:cover;background-repeat: no-repeat;background-position: center;}

/*リストマーク*/
.mk>li{ position: relative; padding-left: 1em;}
.mk>li>span{ position: absolute; left:0; top:0;}

h1,h2,h3,h4,h5,h6{ line-height: 1.5em; color: #222;}

/*google font*/
.gf1{
	font-family: 'Noto Sans Display', 'Noto Sans Jp', sans-serif;
	letter-spacing: 0.08em;
}

/***********************************************************************************************************************
* 基本レイアウト
***********************************************************************************************************************/
body{
	font-size: 1.4rem;
	background: #FFF;
	color:#555;
	line-height: 2.2em;
	font-family: 'Noto Serif JP', 'Noto Sans Jp', sans-serif;
}
/*header*/
header{
	position: fixed;
	height: 120px;
	width: 100%;
	z-index: 10;
	background: transparent;
	-webkit-transition: background 0.3s ease;
	transition: background 0.3s ease;
}

header.open{
	/*background: #FFF;*/
}

header .logo{
	position: absolute;
	top:38px;
	left:48px;
	width: 180px;
      -webkit-transition: all 1s;
      -moz-transition: all 1s;
      -ms-transition: all 1s;
      -o-transition: all 1s;
      transition: all 1s;
      opacity: 0;
}
.contact header .logo{
	opacity: 1;
}
header.open .logo{
	opacity: 1;
}
header .cart .cart-inr{
	text-align: center;
	background: #CAC0B3;
	height: 120px;
	width: 120px;
	padding-top: 30px;
}
header .cart .cart-inr>span{
	display: block;
	font-size: 1.2rem;
	color:#fff;
	padding-top: 8px;
}

.store-nav{
	position: absolute;
	right:0;
	top:120px;
	background:#EAE7E1;
	display: none;
}

.store-nav>li{
	border-bottom: 1px solid #eee;
}

.store-nav>li>a{
	display: -webkit-flex;
	display: flex;
	width: 100%;
	padding: 15px 40px 15px 40px;
	font-size: 1.6rem;
	font-weight: 500;
	color: rgba(116,128,128)

}

.store-nav>li>a i{
	margin-top: -5px;
	margin-left: 10px;
}


header nav{}
header nav .menu{
	padding-right: 50px;
}
header nav .menu>li{
	position: relative;
}

header nav .menu>li>a {
    padding: 48px 25px;
    display: block;
    font-size: 1.6rem;
    font-weight: 500;
    color: #222;
}

header nav .menu2 {
    position: absolute;
    top: 115px;
    left: 0;
    width: 250px;
    opacity: 0;
    -webkit-transition:all 0.3s ease-out;
	transition:all 0.3s ease-out;
	background: #fff;
}

body header nav .menu2>li>a{
	position: relative;
	 height: 0px;
	font-weight: 500;
	display: block;
	padding: 0 0 0 60px;
	font-size: 1.5rem;
	-webkit-transition:all 0.3s ease-out 0s;
	transition:all 0.3s ease-out 0s;
	white-space: nowrap;
	overflow:hidden;
	color: #748080;

}

body header nav .menu2>li>a>strong{
	font-weight: 500;
}
body header nav .menu2>li>a>span{
	display: block;
	font-size: 1.1rem;
	font-weight: normal;
}





body header nav .menu2>li>a::after{
	content:"";
	position: absolute;
	display: block;
	height: 1px;
	width: 0.6em;
	top:1.2em;
	left:40px;
	background: #ccc;
}


    header .pc-hover-menu .menu2.open{
        padding: 0.5em 0;
		opacity: 1;
    }
        header .pc-hover-menu .menu2 li{
            width: 100%;
        }

        header .pc-hover-menu .menu2.open li a{
            height: auto;
            padding: 0.5em 0px 0.5em 60px;
        }






header #menu-button{}

footer{
	position: relative;
	background: #3D3A36;
	color:#fff;
	font-weight: 500;
	padding: 80px  20px 0;
}
footer .ft-block{
	max-width: 1150px;
	margin:0 auto;
}

footer .ft-box1{
	padding-left: 100px;
	width: calc(100% - 26% - 396px);
}
footer .ft-box2{
	width: 26%;
}
footer .ft-box3{
	width: 396px;
}

footer .menu>li{
	margin-bottom: 15px;
}

footer .menu>li>a{
	font-size: 	1.6rem;
	font-weight: 600;
	letter-spacing: 0.1em;
}
footer .menu2{
	margin-top: 10px;
}
footer .menu2>li{
	margin-bottom: 7px;
}
footer .menu2>li>a{
	position: relative;
	display: inline-block;
	padding-left: 1.3em;
	letter-spacing: 0.1em;
}
footer .menu2>li>a::after{
	content:"";
	position: absolute;
	display: block;
	width: 0.5em;
	height: 1px;
	top:50%;
	left:5px;
	background: #fff;
}

footer .ft-box3 .link-btn2{
	margin-bottom: 25px;
}

footer .ft-box3-dl{
	margin-bottom: 10px;
}

footer .ft-box3-dl>dt {
    width: 180px;
    font-weight: bold;
    font-size: 1.5rem;
}

footer .ft-box3-dl>dd {
    font-size: 1.5rem;
    font-weight: 500;
}

footer .sns{
	margin: 50px 0;
}
footer .sns>li{
	padding: 12px;
	text-align: center;
}

footer .sns>li a{
	display: block;
	width: 34px;
}
footer .logo {
    width: 180px;
    position: absolute;
    bottom: 30px;
    left: 47px;
}

footer .copyright{
	text-align: right;
	padding: 30px 45px;
	font-size: 	1.3rem;
}


#pagetop{
	z-index: 11;
	position: fixed;
	width: 62px;
	height: 62px;
	bottom:-200px;
	right:50px;
	opacity: 0;
	-webkit-transition: all 1s ease-out;
	transition: all 1s ease-out;
	cursor: pointer;
}

#pagetop.open{
	bottom:60px;
	opacity: 1;
	-webkit-transition: all 1s ease-out;
	transition: all 1s ease-out;

}
	/*sp*/
	/*#pagetop{
		width: 50px;
		height: 50px;
		bottom:-60px;
		right:0px;

	}

	#pagetop.active{
		bottom:0px;
	}*/
/**/


/*ページャー*/
.pager{
    text-align: center;
    letter-spacing: -0.5em;
    padding: 30px 0;
}
    .pager li{
        display: inline-block;
        margin: 0px;
        height: 50px;
        line-height: 50px;
        width: 50px;
        text-align: center;
        color:#748080;
        letter-spacing: normal;
        vertical-align: middle;
        font-weight: bold;
        margin: 0 3px;
        font-family: 'Montserrat', sans-serif;
        letter-spacing: 0.05em;
        -webkit-border-radius: 50%;
        border-radius: 50%;
        overflow:hidden;
    }
    .pager li:first-child{border-right:none;}
    .pager li:last-child{border-right:none;}
    .pager li:nth-last-child(2){border-right: #152A87;}
    .pager .first{}
    .pager .prev{margin-right: 10px;}
    .pager .next{margin-left: 10px;}
    .pager .last{}

        .pager span {
            display: block;
			background: #CBCFCF;
            color: #fff;
            font-weight: 600;
            font-size:  2.2rem;
        }
        .pager a{
            display: block;
            width: 100%;
            color:#737F7F;
            height: 50px;
            line-height: 50px;
            background: #F6F6F6;
            font-size:  2.2rem;
            -webkit-transition: opacity 0.3s ease;
            -moz-transition: opacity 0.3s ease;
            -ms-transition: opacity 0.3s ease;
            -o-transition: opacity 0.3s ease;
            transition: opacity 0.3s ease;
            font-weight:    bold;
            font-family: 'Montserrat', sans-serif;
            letter-spacing: 0.05em;

        }
        .pager a:hover{
            opacity: 0.6;
        }


        .pager .first a,.pager .first span,
        .pager .prev a,.pager .prev span,
        .pager .next a,.pager .next span,
        .pager .last a,.pager .last span{
            position: relative;
            background-image: transparent !important;
            text-indent: 200%;
            white-space: nowrap;
            overflow: hidden;
        }

        .pager .prev a,
        .pager .next a{
        	background-position: center center;
        	background-repeat: no-repeat;
        }

        .pager .prev a{
            background-image: url(../img/pager-l.png) !important;
        }
        .pager .next a{
            background-image: url(../img/pager-r.png) !important;
        }




.products #container{
	padding-top: 0;
}
#container{
	padding-top: 180px;
}

#top-visual{
	position:relative; 
}

.top-visual-cent{
	position: absolute;
	width:80%;
	top: 50%;
	left: 10%;
	-webkit-transform: translate(0, -50%);
	transform: translate(0, -50%);
	text-align:center;
}

.top-visual-txt {
    position: relative;
    width: 600px;
    text-align: center;
	/*background: #FFF;*/
    z-index: 100;
}

.top-visual-img{
	width: calc(100% - 600px);
}
.top-visual-ttl {

    font-size: 4rem;
    font-weight: bold;
    margin-bottom: 10px;
    white-space: nowrap;
}
.top-visual-msg {
    font-size: 1.2rem;
    color: #333;

}

#top-visual.active .top-visual-inr{
	position: relative;
	-webkit-transition: all 1.2s ease 0.7s;
	-moz-transition: all 1.2s ease 0.7s;
	-ms-transition: all 1.2s ease 0.7s;
	-o-transition: all 1.2s ease 0.7s;
	transition: all 1.2s ease 0.7s;
	transform:translateX(0%);
	opacity: 1;
}


.top-visual-inr{
	display: inline-block;
	max-width: 340px;
	text-align: left;
	transform:translateX(13%);
	opacity: 0;
}

#top-visual .swiper-slide{
}

#top-visual .swiper-slide .bg-img {
    position: relative;
    height: calc(100vh - 321px);
}

#top-visual .swiper-slide .bg-inr{
	position: absolute;
	width: 100%;
	height: 100%;
	top:0;
	left:0;
}

.top-visual-img{
	overflow: hidden;
}

.top-visual-img .main-slider .swiper-slide{
	overflow: hidden !important;
}

.top-visual-img .swiper-wrapper{
	    /*transition-timing-function: cubic-bezier(0.155, 0.8, 0.85, 1);*/
    /*-webkit-transition-timing-function: cubic-bezier(0.155, 0.80, 0.85, 1);*/
}
.top-visual-img .main-slider .swiper-slide.fzoom .bg-img {
    opacity: 1;
	/*-webkit-backface-visibility: hidden;
    -webkit-animation: firstzoom 2s ease-out 0s;
    -moz-animation: firstzoom 2s ease-out 0s;
    -o-animation: firstzoom 2s ease-out 0s;
    -ms-animation: firstzoom 2s ease-out 0s;
    animation: firstzoom 2s ease-out 0s;*/
	animation-name: firstzoom;
	animation-timing-function: ease-out ;
	animation-fill-mode: forwards;
	animation-duration: 2s;
	overflow: hidden;
}
.top-visual-img .main-slider .swiper-slide.zoom .bg-img .bg-inr{
	opacity: 1;
    animation-iteration-count: infinite;
    animation-name: bgAnimation;
	animation-timing-function: normal ;
	animation-fill-mode: forwards;
	animation-duration: 50s;
	overflow: hidden;
}

@keyframes firstzoom {
	0% {transform: scale(1.5) rotate(0.001deg);}
	100% {transform: scale(1) rotate(0.001deg); }
}

@keyframes bgAnimation {
	0% {transform: scale(1) rotate(0.001deg)}
	50% { transform: scale(1.3) rotate(0.001deg);}
	100% {transform: scale(1.6) rotate(0.001deg); }
}


.contents{
	max-width: 1900px;
	margin:0 auto;
	padding-bottom: 100px;
}
.wrap{ 
	max-width: 1323px; 
	margin:0 auto; 
	padding: 0 20px;
}


.column{
	max-width: 1240px;
	margin:0 auto;
}

.column>main{
	width: 68%;
}

.column>aside{
	width: 32%;
}

.grid-block{
	width: 100%;
}
.grid-block>.right-side{
	width: 62%;
	overflow:hidden;
}
.grid-block>.left-side{
	width: 38%;
	padding-right: 20px;
}



/***********************************************************************************************************************
* パーツ parts
***********************************************************************************************************************/
/*見出し*/
.headline-l{
	font-size: 2.6rem;
}


.headline-l span,
.headline-m span{
	display: block;
	font-size: 1.0rem;
	font-weight: normal;
	line-height: 2em;
	margin-bottom: 18px;
}

.home .headline-m{
	font-size: 1.8rem;
}


.headline-m{
	font-size: 3.6rem;
}
.headline-s{
	font-size: 2rem;
}

/*ボタン*/
.link-btn{
	position: relative;
	display: block;
	max-width:200px;
	height:40px;
	line-height:40px;
	font-size: 1.4rem;
	color:#737F7F;
	font-weight: 600;
	padding-left: 25px;
	border:1px solid #CBCFCF;
}

.link-btn >img{
    position: absolute;
    top: 14px;
    right: 17px;
}

.link-btn2{
	position: relative;
	display: block;
	max-width:388px;
	height:56px;
	line-height:56px;
	font-size: 1.6rem;
	color:#fff;
	font-weight: 600;
	padding-right: 25px;
	border:1px solid #fff;
	-webkit-border-radius:	5px;
	border-radius:	5px;
	text-align: 	center;
}

.link-btn2 >img{
    position: absolute;
    top: 50%;
    margin-top: -5px;
    right: 17px;
}

/*テーブル*/
.data-tbl>table{
    width: 100%;
}
.data-tbl>table>tbody>tr>th{
    border:1px solid #2F8FCB;
    background:#F1F8FC;
    color: #1F658C;
    padding: 1em;
    font-weight: bold;
}
.data-tbl>table>tbody>tr>td{
    padding: 1em;
    border:1px solid #2F8FCB;
}


.parts1{
	/*margin:60px 0;*/
	width: 100%;
	display: -webkit-flex;
	display: flex;
	justify-content: space-between;
	padding: 60px 10%;
}
.parts1-box{
	position: relative;
	width: 42%;
}
.parts2-box{
	position: relative;
	width: 25%;
}
.parts1.revs .parts1-inr{
	/*margin-left: auto;*/

}

.parts1-inr{
	max-width: 509px;
}

.parts1.first .parts1-box:nth-child(even){
	padding-top: 80px;

}

.parts1-msg {
    font-size: 1.4rem;
    max-width: 503px;
    margin: 10px 0 50px;
}

.parts1-ttl{
	font-size: 3rem;
	margin-bottom: 20px;
	font-weight: 600;
}




/***********************************************************************************************************************
* animation
***********************************************************************************************************************/


/*delay*/
.dt_3{ transition-delay: 0.3s !important; -webkit-transition-delay: 0.3s !important;}
.dt_5{ transition-delay: 0.5s !important; -webkit-transition-delay: 0.5s !important;}
.dt_6{ transition-delay: 0.6s !important; -webkit-transition-delay: 0.6s !important;}
.dt_7{ transition-delay: 0.7s !important; -webkit-transition-delay: 0.7s !important;}
.dt_8{ transition-delay: 0.8s !important; -webkit-transition-delay: 0.8s !important;}
.dt_9{ transition-delay: 0.9s !important; -webkit-transition-delay: 0.9s !important;}
.dt_10{ transition-delay: 1.0s !important; -webkit-transition-delay: 1.0s !important;}
.dt_12{ transition-delay: 1.2s !important; -webkit-transition-delay: 1.2s !important;}
.dt_15{ transition-delay: 1.5s !important; -webkit-transition-delay: 1.5s !important;}
.dt_18{ transition-delay: 1.8s !important; -webkit-transition-delay: 1.8s !important;}

/*from*/
.init{
    opacity: 0;
    transition-duration: 1.5s;
    -webkit-transition-duration: 1.5s;
    transition-property: opacity transform;
    -webkit-transition-property: opacity transform;
    transition-timing-function: ease, linear;
}

/*to*/
.top-main-visual.animated .init,
.scl.animated .init{
    opacity: 1;
    -webkit-transform: translate(0,0) scale(1,1) rotate(0);
    transform: translate(0,0) scale(1,1) rotate(0);
    transition-property: opacity transform;
    -webkit-transition-property: opacity transform;
    transition-timing-function: ease, linear;
        /*transition-timing-function: ease-in-out;*/
}

/*from*/
.init.move_up{
	opacity:1;
	-webkit-transform: translate(0,16%);
    transform: translate(0%,16%);
    transition-duration: 1.8s;
    -webkit-transition-duration: 1.8s;
    transition-property: opacity transform;
    -webkit-transition-property: opacity transform;
    transition-timing-function: cubic-bezier(0.24, 1.00, 0.33, 1.00);
    -webkit-transition-timing-function:cubic-bezier(0.24, 1.00, 0.33, 1.00);
}

/*to*/
.scl.animated .init.move_up{
	opacity: 1;
	-webkit-transform: translate(0,0) scale(1,1);
	transform: translate(0,0) scale(1,1);
}

.init.zoom_down{
  opacity:1;
  transform: translate(0,0) scale(1.1,1.1); 
  transition-duration: 3s;
  transition-property: opacity transform;
  transition-timing-function: cubic-bezier(0.24, 1.00, 0.33, 1.00);
}

/*to*/
.scl.animated .init.zoom_down{
  opacity: 1;
  -webkit-transform: translate(0,0) scale(1,1);
  transform: translate(0,0) scale(1,1);
}


/***********************************************************************************************************************
* トップページ
***********************************************************************************************************************/

.top-news{
	margin:150px 0;
	width: 100%;
	display: -webkit-flex;
	display: flex;
	justify-content: space-between;
	padding: 0 10%;
}
.top-news-block{
	max-width: 100%;
	width: 42%;
}

.bg-img-block figure{
	position: relative;
	padding-top: 100%;
	text-align: right;
  overflow: hidden;
  /*margin-top: -40px;*/
}

.bg-img-block2 figure{
	position: relative;
	padding-top: 100%;
	text-align: right;
	width: 70%;
	margin-left: auto;
  overflow: hidden;
}

.section-slider{
	position: absolute ;
	width: 100%;
	height: 100%;
	top:0;
	left:0;
}


.parts1.revs .bg-img-block2{
	margin-left: 0;
	margin-right: auto;
}

.parts1 .block2{
	width: 72%;
}

.bg-hover{
  position: absolute;
  left:0;
  top: 0px;
  width: 100%;
  height: 100%;
  transition:transform 0.5s ease-out;
}
.bg-img-block2:hover .bg-hover,
.bg-img-block:hover .bg-hover{
  transform:scale(1.2,1.2);
  transition:transform 1s ease-out;
}


.bg-img-inr{
	position: absolute;
	width: 100%;
	height: 100%;
  top: 0;
	left:0;
}
.parts2-box .bg-img-block{
	text-align: left;
  padding-top: 0;
}

.parts2-box .bg-hover{
  top:0;
}

.parts2-box figure{
  position: relative;
  padding-top: 100%;
  overflow: hidden;
  margin-bottom: 10px;
}

.bg-img-block p.nm{
	color: #FFF;
	display: inline-block;
	padding: 0.5em 0.7em;
	background: #CAC0B3;
	line-height: 1;
	font-size: 1.2rem;
}
.top-news-ttl{
	font-weight: bold;
	font-size: 2.2rem;
	margin-bottom: 3rem;
	padding-bottom: 0.3em;
	line-height: 1.6em;
	border-bottom: 3px solid #CAC0B3;
	display: inline-block;
}

.top-news .news-block{
	max-width: 456px;
	display: inline-block;
	padding-top: 117px;
}

.news-list>article{
	border-bottom: 1px solid #ddd;
}
.news-list>article:last-child{
	border-bottom:none;
}


.news-list>article>a{
	display: block;
	padding: 25px 0;
}
.news-list>article>a>p{
	font-size: 1.4rem;
	line-height: 1.5em;
}
.news-list>article>a>.info {
    color: #737F7F;
    font-weight: 500;
    margin-bottom: 4px;
}
.news-list>article>a time{
	position: relative;
	display: inline-block;
	font-size: 1.4rem;
	padding-right: 1em;
}
.news-list>article>a time::after{
	content:"";
	position: absolute;
	display: block;
	width: 1px;
	height: 100%;
	top:0;
	right:0;
	background: #ccc;
}
.news-list>article>a i{
	font-size: 1.4rem;
	padding-left: 1em;
}

.top-news .news-block .link-btn{
	margin-top:60px;
}

.inter-block{
	margin: 100px 0 100px;
}

.detail-block{
	max-width: 1340px;
	margin: 0 auto;
	padding:  0 10px;
}
.detail-group-ttl{
	margin-bottom: 1em;
}

.detail-group{
	margin: 50px auto 0;
}

.photo-gallery{
	display: -webkit-flex;
	display: flex;
	flex-wrap: wrap;
}
.photo-gallery>li{
	width: 31.8%;
	margin-right: 2.2%;
	margin-bottom: 30px;
}
.photo-gallery>li:nth-child(3n){
	margin-right: 0;
}

.menu-wrap{
	max-width: 1000px;
	margin: 0 auto;
	text-align: center;
}
.menu-wrap a{
	border-bottom: 1px solid #333;
}
.menu-wrap table{

}
.menu-wrap table tr{
	border-top: 1px solid #E6E6E6;
}
.menu-wrap table th,
.menu-wrap table td{
	padding: 1.5em 1.5em;
}
.menu-wrap table th{
	text-align: left;
	width: 90%;
}
.menu-wrap table td{
	text-align: right;
	vertical-align: middle;
	width: 10%;
}
.menu-wrap table th h2{
	font-weight: bold;
	margin-bottom: 0.5em;
}
.menu-wrap table th p{
	font-weight: normal;
	font-size: 1.2rem;
	line-height: 1.5;
	font-family: 'Noto Sans Display', 'Noto Sans Jp', sans-serif;
	color: #999;
}
.top-menu-ttl{
	padding: 50px 0 30px;
}

.access-info{
	max-width: 980px;
	margin: 0 auto;
	padding: 60px 10px;
	text-align: center;
	font-family: 'Noto Sans Display', 'Noto Sans Jp', sans-serif;
}
.access-info h4{
	margin-bottom: 1em;
}
.access-info p{
	line-height: 1.6;
	font-size: 1.2rem;
	margin-bottom: 40px;
}
.access-info p.ac{
	text-align: left;
}
.map-area iframe{
	vertical-align: bottom;
}
/***********************************************************************************************************************
* セカンドページ
***********************************************************************************************************************/

.visual-img{}
.visual-img .top-slider .bg-img {
	position: relative;
    height:100vh;
}
.visual-img .top-slider .bg-inr{
	position: absolute;
	width: 100%;
	height: 100%;
	left:0;
	top:0;
}

.swiper-pagination {
    position: absolute;
    width: 100%;
    justify-content: center;
    text-align: center;
    -webkit-transition: .3s opacity;
    -o-transition: .3s opacity;
    transition: .3s opacity;
    -webkit-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
    z-index: 10;
}
.swiper-pagination-bullet {
    width: 14px;
    height: 14px;
    display: inline-block;
    border-radius: 100%;
    background: transparent;
    border:1px solid #748080;
    opacity: 1;
    margin: 15px 0.5em !important;
}

.swiper-pagination-bullet-active{
	background: #748080;
}

.section-slider {
	overflow:visible;
}

.section-slider .swiper-pagination {
    margin-bottom: -47px;
}

.section-block{
	padding-top: 128px;
}

.products-detail-block{
	margin: 50px 0;

}
.products-detail-box1{
	width: 22%;
}
.products-detail-box2{
	width: 28%;
	padding-right: 5%;
}
.products-detail-box3{
	width: 50%;
}

.products-detail-ttl{
	font-size: 1.4rem;
	color:#737F7F;
	margin-bottom: 0.5em;
	font-weight: 600;
}
.products-detail-msg{
	font-size: 1.4rem;
	margin-bottom: 1.3em;
}

.price-list{
	margin:1em 0 1.8em;
}
.price-list>li{
	margin-right: 30px;
}
.price-list>li>a{
	display: block;
	width: 100%;
	height: 36px;
	line-height: 36px;
	border:1px solid #CBCFCF;
}


.price-list>li>span{
	font-size: 1.4rem;
	display: inline-block;
	margin-right: 15px;
}
.price-list>li>strong{
	font-size: 2.6rem;
}
.price-list>li>i{
	font-size: 2rem;
	font-weight: bold;
}
.online-list{
	margin-top: 20px;
}
.online-list>li{
	width: calc(33.33% - 4px);
}
.online-list>li>a{
	position: relative;
	display: block;
	width: 100%;
	height: 36px;
	line-height: 36px;
	padding-left: 30px;
	border:1px solid #CBCFCF;
	color:#737F7F;
	font-weight: 600;
}

.online-list>li>a img{
	position: absolute;
	right:10px;
	top:8px;
}


/*
news
*/
.head-box{
	padding-top: 50px;
	margin-bottom: 90px;
}

.sort-nav-ttl{
	font-weight: bold;
	color: #333333;
	padding-top: 24px;
	margin-bottom: 15px;
	font-size: 1.6rem;
}
.sort-nav{
	margin-top: 10px;
}
.sort-nav>li{
	margin-bottom: 10px;
}
.sort-nav>li>a{
	position: relative;
	display: inline-block;
	padding-left: 1.3em;
	letter-spacing: 0.1em;
	color:#748080;
	font-weight: 500;
	font-size: 1.3rem;
}
.sort-nav>li>a.active{
	color:#000000;
}

.sort-nav>li>a::after{
	content:"";
	position: absolute;
	display: block;
	width: 0.5em;
	height: 1px;
	top:50%;
	left:5px;
	background: #748080;
}

.news .news-list{
	margin-bottom: 50px;
}


/*
  article-detail
*/
.article-detail>i{
display: block;
font-size: 1.4rem;
white-space: nowrap;
line-height: 1.4em;
color:#20658C;
margin-bottom: 15px;

}

.article-detail>time{
font-size: 1.4rem;
}
.article-detail img{
max-width: unset;
width:100%;
}

.article-detail .block {
    margin: 1.5em 0 3.5em;
    clear: both;
    overflow: hidden;
}
.article-detail .heading-l,
.article-detail .heading-m,
.article-detail .heading-s,
.article-detail .heading-ss{
	font-family: 'Montserrat', 'Noto Sans Jp',sans-serif;
}

.article-detail .heading-l{ font-size:2rem; margin: 0.5em 0 1em; font-weight:bold;}
.article-detail .heading-m{ font-size:1.8rem; margin: 0.5em 0 0.8em;  font-weight:bold;}
.article-detail .heading-s{ font-size:1.6rem; margin: 0 0 0.5em;  font-weight:bold;}
.article-detail .heading-ss{ font-size:1.4rem; margin: 0 0 0.5em; font-weight: normal;}

.article-detail figure.single-img{
    width: 100%;
    margin-bottom: 20px;
}
.article-detail time + .heading-l {  margin:0 0 5px;}

.article-detail  figcaption{
    display: block;
    padding: 5px 0;
    font-size: 1.4rem;
    text-align: center;
}

.article-detail .two-parallel-img,
.article-detail .three-parallel-img{
    display: -ms-flex;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap:wrap;
    flex-wrap:wrap;
    justify-content: space-between;
    margin-bottom: 40px;
}
.article-detail .two-parallel-img>figure{
    width:calc(50% - 8px);
    text-align: center;
    margin-bottom: 15px;
}

.article-detail .three-parallel-img>figure{
    width:calc(33.33% - 10px);
    text-align: center;
}


.article-detail>.block>.f-left {
    width: 38%;
    margin-right: 3%;
}
.article-detail>.block>.f-right{
    width: 38%;
    margin-left: 3%;
}
.article-detail .detail-tbl{
    margin: 20px 0 50px;
}
.article-detail .detail-tbl>table{
    font-size: 1.6rem;
}

.article-detail .detail-tbl>table>tbody>tr>th {
    width: 9%;
    padding-right: 1em;
    white-space: nowrap;
}

.article-detail .ex-link{}
.article-detail .ex-link>li{
    position: relative;
    padding-left: 1em;
}
.article-detail .ex-link>li::after{
    content:"・";
    position: absolute;
    display: block;
    width: 1em;
    height: 1em;
    top:0;
    left:0;
    color:#006439;
}
.article-detail .ex-link>li>a{
    color:#006439;
    text-decoration: underline;
}
.article-detail .ex-link>li>a:hover{
    text-decoration: none;
}
.newstop{
position: relative;
padding-left: 22px;
font-weight: bold;
color:#1F658C;
}
.newstop>i{
    position: absolute;
    left:0;
    top:3px;
}

/*aslide*/
.aside .widget {
    padding: 0 0 15px;
    margin-bottom: 20px;
}
.aside .widget-head {
    font-size: 1.9rem;
    color: #20658C;
    padding: 5px 0 0 0;
    font-weight: 600;
    font-weight: bold;
    line-height: 1.2em;
}
.news .aside .news-list {
    margin-top: 0;
    margin-bottom: 0;
}
.aside .news-list>article{
    position: relative;
    display: -webkit-flex;
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    align-items: flex-start;
    border-bottom: 1px solid #DDDDDD;
}

.aside .news-list>article:last-child{
    border-bottom: none;
}
.aside .news-list>article i{
    width: 70px;
    height: 15px;
    line-height:    15px;
    display: inline-block;
    text-align:     center;
    color:#fff;
    font-size:  1.1rem;
    background:#FF0000;
    margin-top: -2px;
    margin-left: 10px;
    margin-left: 80px;
}

.aside .news-list>article p {
    font-size: 1.4rem;
    margin-top: 5px;
}
.aside .news-list>article time {
    display: inline-block;
    font-size: 1.4rem;
    line-height: 15px;
    position: absolute;
    left: 0;
    top: 18px;
    font-weight:    500;
}
.aside .news-list>article>a {
    padding: 10px 0 15px;
    display: block;
}
.aside .news-list>article>a::after{
    display: none;
}

.aside .widget-list{
    padding: 15px 0 0;
}
.aside .widget-list>li>a {
    padding: 5px 10px;
    display: block;
    font-weight: bold;
    color: #20658C;
    font-size: 1.4rem;
}

.online-block{
	margin-top: 50px;
}

.online-block-ttl{
	font-size: 1.4rem;
	font-weight: normal;
	margin-bottom: 1.5em;
}
.online-box p{
	margin-bottom: 1.5em;
}

/*
company
*/

.left-side-inr{
	max-width: 387px;
}

.company-msg{
	font-size: 1.4rem;
	margin-bottom: 20px;
}
.company-web{
	margin-top: -10px;
	font-size: 1.6rem;
}
.company-web>dt{
	font-weight: bold;
	margin-right: 1em;
}
.company-web>dd{}


.data-tbl2{
	position: relative;
	margin-left: -44px;
}

.data-tbl2 table{
	border-collapse: separate;
	border-spacing:44px 0;

}
.data-tbl2 table>tbody>tr{}
.data-tbl2 table>tbody>tr>th{
	width: 150px;
	text-align: left;
	border-bottom:1px solid #BBBBBB;
	padding: 1.2em 0;
	font-weight: normal;
}

.data-tbl2 table>tbody>tr>td{
	text-align: left;
	border-bottom:1px solid #BBBBBB;
	padding: 1.2em 1em 1.2em 0;
}
.company .data-tbl2 {
    margin-top: -17px;
    padding-bottom: 150px;
}
.contact .headline-l{
	font-size: 2.2rem;
}
.contact-msg1{
	margin-bottom: 10px;
}
.contact-msg2{
	margin-bottom:40px;
}
.contact-msg3{
	margin-bottom: 10px;
}

.contact-tel{
	font-size: 1.6rem;
	margin-bottom: 10px;
}
.contact-tel>dt{
	font-weight: bold;
	margin-right: 1em;
}
.contact-tel>dd{
	font-weight: 600;
}


.data-tbl3{
	position: relative;
}

.data-tbl3 table{

}
.data-tbl3 table>tbody>tr{}
.data-tbl3 table>tbody>tr>th{
	width: 150px;
	text-align: left;
	padding: 1.2em 0;
	font-weight: normal;
	font-weight: 600;
}

.data-tbl3 table>tbody>tr>td{
	text-align: left;
	padding: 1.2em 1em 1.2em 0;
}

/*
お問い合わせ
*/

/*form 初期設定*/

input:not([type="checkbox"]):not([type="radio"]),
 button,
 textarea,
 select{
    width: 100%;
    border: none;
    -webkit-appearance: none;
    appearance: none;
    margin: 0;
    padding: 0;
    -webkit-border-radius: none;
    border-radius: none;
    border-radius: 0;
    border:none;
    border:0;
    font-family: 'Noto Sans JP', sans-serif;
}

 select::-ms-expand {
  display: none;
}

input:not([type="checkbox"]):not([type="radio"]),
textarea{
    width: 100%;
    max-width: 555px;
    background: transparent;
    border:1px solid #BBB;
    height: 36px;
    font-size: 1.5rem;
    text-indent: 1em;
    -webkit-border-radius: 3px;
    border-radius: 3px;
}
textarea{
    height: 127px;
    padding: 1em 0;
}

input.size-m{
    max-width: 247px !important;
}

::placeholder{
  color:#bfbfbf;
}


.textarea1{
    height: 76px;
    max-width: 754px;
    height: 246px:;
    background: transparent;
}

.contact .input-block{
    display: -webkit-flex;
    display: flex;
    align-items: center;
}
.contact .input-block>.box{
    display: -webkit-flex;
    display: flex;
    align-items: center;
}

.contact .input-block>.box:nth-child(1) {
    margin-right: 45px;
}

.contact .front{
   display: block;
    padding-right: 15px;
    text-align: right;
    width: 40px;
    white-space: nowrap;
}

.contact .check-block{
    text-align: center;
    margin-bottom: 30px;
}
.contact .check-block p{
    margin-bottom: 20px;
}
.contact .btn-area{
    padding: 50px 0;
}

.contact .btn-area>form {
    margin: 0px 20px;
}
.submit{
	margin-top: 20px;
}

.submit-btn{
	position: relative;
	display: block;
	width: 204px;
	height: 55px;
	line-height: 55px;
	text-align: center;
	background:#CBCFCF;
	border:1px solid none;
	font-size: 1.8rem;
	font-weight: normal;
	-webkit-border-radius: 1.5em;
	border-radius: 1.5em;
	margin: 30px auto;
	}

.contact .btn-area{
    margin-bottom: 10px;
}


.submit-btn.back{
    background: transparent;
    color:#333;
    border:1px solid #333;
}




.contact-msg {
    max-width: 800px;
    margin: 70px auto 50px;
    border: 1px solid #f19149;
    padding: 1em;
    background: #ffeede;
    line-height: 1.8em;
    text-align: left;
    font-size: 1.4rem;
}

.privacy{
    max-width: 735px;
    height: 220px;
    background: #fff;
    margin:50px auto 20px;
    border:1px solid #d2d2d2;
    overflow-x: auto;
    padding: 10px 20px;
}

.privacy-msg-top{
    font-size: 1.5rem;
    line-height: 2em;
    margin-bottom: 2em;
}
.privacy-ol-list{
    margin-bottom: 2em;
}
.privacy-ol-list>li{
    position: relative;
    padding-left: 2em;
    margin-bottom: 1em;
}
.privacy-ol-list>li>i{
    content:"";
    position: absolute;
    display: block;
    width: 2em;
    height: 100%;
    top:0;
    left:0;
}

.confirm-ttl{
	font-size: 1.6rem;
	margin-bottom: 10px;
}	


.confirm-msg{
    margin-bottom: 30px;
}


.errBox ul{
    margin-top: 20px;
}
.errBox ul>li{
    color:#f10;
    line-height: 1.8em;
}

.complete{
    padding: 30px 0;
    border-top: 1px solid #d2d2d2;
    border-bottom: 1px solid #d2d2d2;
    text-align: center;
}
.complete .contact-msg-ttl{
    font-size: 1.8rem;
    margin-bottom: 0.5em;
}
.complete p{
    font-size: 1.5rem;
    line-height: 2em;
}
.submit{
	margin-bottom: 20px;
}

.contact .data-tbl3 {
    position: relative;
    margin-top: -21px;
}
.contact .data-tbl3 th sup{
	color: #F00;
}

.contact .grid-block>.right-side {
    overflow: visible;
}

/***********************************************************************************************************************
* デバイス横サイズ1400px以下
***********************************************************************************************************************/
@media screen and (max-width: 1200px){

#top-visual .swiper-slide .bg-img {
    height: 500px;
}
.top-visual-ttl {
    font-size: 3.5rem;
    padding-top: 181px;
}

.top-visual-txt {
    width: 340px;
    text-align: center;
}
.top-visual-img {
    width: calc(100% - 340px);
    text-align: center;
}

.parts1-box{
	/*width: 46%;*/
}

.parts1.first .parts1-box:nth-child(2){
	padding-top: 80px;

}
.parts1.first {
	width: 80%;
	margin: 0 auto;
}


.parts1.first .parts2-box .bg-img-inr {
    position: absolute;
    width: 100%;
    height: 90%;
    top: -20px;
    left: 0;
}
.data-tbl3 table>tbody>tr>th {
    width: 194px;
}



/***********************************************************************************************************************
* トップページ
***********************************************************************************************************************/




/***********************************************************************************************************************
* 下層ページ
***********************************************************************************************************************/



}









