@charset "utf-8";
/*
===============================================================================
SP_hidden
===============================================================================
*/
#menu_btn,
.sp_menu
{
  display: block;
}
br.sp{
}
.pc{
	display:none;
}
img{
	max-width:100%;
	height:auto;
}
/* IE10以下 */
img{
 width:100%\9;
 }
@media all and (-ms-high-contrast: none){
/* IE10以上 */
img{
	width:100%;
}
}
a{
	color:#000;
	text-decoration:none;
}
/*
===============================================================================
Body
===============================================================================
*/

body{

  overflow: auto;
    padding-top: 60px;
}


/*
===============================================================================
Header
===============================================================================
*/
header{
    display:block;
    background-color: #fff;
    width: 100%;
    height: 60px;
    box-shadow: 0 0 3px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99;
}
header .logo{
	display:table;
    margin: 7px 15px;
}
header .logo img{
    display: block;
    width: 220px;
    height:42.94px;
}


#header_in .sub_nav, 
#header_in a.fb, 
#header_in .search, 
#header_in .language{
    display: none;
}



/*
===============================================================================
Navigation
===============================================================================
*/
#global-nav{
    height: 60px;
    position: fixed;
    top:12px;
    right: 10px;
    z-index: 99999;
}
#nav-open {
  display: inline-block;
  width: 30px;
  height: 22px;
  vertical-align: middle;
}

/*ハンバーガーアイコンをCSSだけで表現*/
#nav-open span, #nav-open span:before, #nav-open span:after {
  position: absolute;
  transition: all 0.4s;
  height: 3px;/*線の太さ*/
  width: 25px;/*長さ*/
  border-radius: 3px;
  background:#e67800;
  display: block;
  content: '';
  cursor: pointer;
  z-index: 9999;/*最前面*/
}

#nav-open span:before {
  bottom: -8px;
}

#nav-open span:after {
  bottom: -16px;
}


/*中身*/
#nav-content {
  display: none;
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  transition: .2s ease-in-out;
}

#nav-content.open {
  display: block;
  opacity: 1;
  overflow: auto;
  position: fixed;
  top: 60px;
  left: 0;
  z-index: 9998;
  width: 100%;
  height: 100%;
  background:#f5f5f5;/*背景色*/
  overflow: hidden;/*ブラー効果でボヤけた部分を非表示*/
  transition: .2s ease-in-out;
    overflow-y: scroll;
}
#nav-content.open .nav_in{
    height:650px;
}

/*:beforeにぼかし効果を設定する*/
#nav-content.open:before {
  content: '';
  overflow: hidden;
  -webkit-filter: blur(10px);
  -moz-filter: blur(10px);
  -o-filter: blur(10px);
  -ms-filter: blur(10px);
  filter: blur(10px);
  z-index: -1;/*重なり順序を一番下にしておく*/
}




/*三本線を動かす*/
#nav-open.active span {
  -webkit-transform: translateY(8px) rotate(-45deg);
  transform: translateY(8px) rotate(-45deg);
}

#nav-open.active span:before {
  -webkit-transform: translateY(-8px) rotate(45deg);/*打ち消す*/
  transform: translateY(-8px) rotate(45deg);/*打ち消す*/
  opacity: 0;
}

#nav-open.active span:after {
  -webkit-transform: translateY(-16px) rotate(45deg);
  transform: translateY(-16px) rotate(90deg);
}

/*チェックが入ったら表示する内容*/
#nav-content .category, 
#nav-content .sub_nav{
    display: table;
    width: 88%;
    margin: 0 auto;
  margin-top: 1rem;
}
#nav-content .category > li{
    border-bottom: #ddd solid 1px;
    padding:5px 5px;
}
#nav-content .category > li > a{
    font-size: 0.9em;
}

/*サブナビ*/
#nav-content .category{
    position: relative;
}

#nav-content .category li.accordion ul.sub{
    display:none;
border-top:#ddd solid 1px;
padding-left:15px;

}
#nav-content .category li.accordion ul.sub li{
border-top:#fff solid 1px;
padding:5px 0;
}
#nav-content .category li.accordion ul.sub li:nth-child(1){
border-top:none;
}
#nav-content .category li.accordion ul.sub li a{
    color:#000;
font-size:0.9em;

}
/**********/





#nav-content .sub_nav li{
    float: left;
    width: 48%;
}
#nav-content .sub_nav li:nth-child(even){
    float: right;
}
#nav-content .sub_nav li a{
    font-size:0.85em;
    padding-left: 25px;
    position: relative;
}
#nav-content .sub_nav li a::before{
    content: "";
    display: block;
    width: 20px;
    height: 20px;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 100% auto;
    position: absolute;
    top: 50%;
    left: 0%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
}
#nav-content .sub_nav li:nth-child(1) a::before{background-image: url("../../images/subnav01.png");}
#nav-content .sub_nav li:nth-child(2) a::before{background-image: url("../../images/subnav02.png");}
#nav-content .sub_nav li:nth-child(3) a::before{background-image: url("../../images/subnav03.png");}
#nav-content .sub_nav li:nth-child(4) a::before{background-image: url("../../images/subnav04.png");}
#nav-content .sub_nav li:nth-child(5) a::before{background-image: url("../../images/subnav05.png");}

#nav-content .language{
    display: table;
    width: 100%;
    padding:8px 0 13px;
    margin-top:15px;
    background-color: #d6d6d6;
}
#language-open{
    display: block;
    margin-bottom: 5px;
        text-align: center;
}
#language-open span{
    display:table;
    font-weight: bold;
    margin: 0 auto;
    padding-left:25px;
    position: relative;
}
#language-open span::before{
    content: "";
    display: inline-block;
    width: 18px;
    height:18px;
    background: url("../../images/icon_search.png") no-repeat center center;
    background-size: 100% auto;
position: absolute;
    top: 50%;
    left: 0%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
}
#nav-content .language ol{
    display: table;
    width: 88%;
    margin: 0 auto;
}
#nav-content .language ol li{
    width: 50%;
    padding: 3px;
    float: left;
}
#nav-content .language ol li a{
    font-size: 12px;
    display: block;
    padding:3px 5px;
    text-align: center;
    background-color:#f5f5f5;
}

#nav-content .search{
    width: 88%;
    padding: 0;
    margin:20px auto 0;
    position: relative;
}
#nav-content .search form{
    display:table;
    width: 230px;
    margin-left: auto;
    background-color: #d6d6d6;
}
#nav-content .search input, 
#nav-content .search input:focus{
    width: 200px;
    border:#ddd solid 1px;
    background-color: #fff;
    padding:5px;
}
#nav-content .search input.search_btn{
    width:30px;
    background-color:inherit;
    background: url("../../images/icon_language.png") no-repeat center center;
    position: relative;
    float: right;
}

#nav-content a.fb{
    display:block;
    width: 30px;
    height: 30px;
    position: absolute;
    left: 0;
    bottom: 0;
}
#nav-content a.fb img{
    display: block;
    width: 100%;
    height: auto;
}
/*
===============================================================================
Layout
===============================================================================
*/
#nav-content .category > li span{
    display: block;
    position: relative;
}
/*プラスアイコン*/
#nav-content .category > li span:before{
	display: block;
	content: "";
	position: absolute;
	top:50%;
    margin-top: -10px;
	right:10px;
	margin:auto;
	width: 15px;
	height: 1px;
	background-color:#e67800;
	transition: .2s;
	transform: rotate(90deg);
	-webkit-transform: rotate(90deg);
}
#nav-content .category > li span:after{
	display: block;
	content: "";
	position: absolute;
	top:50%;
    margin-top: -10px; 
	right:10px;
	margin: auto;
	width: 15px;
	height: 1px; 
	background-color:#e67800;
	transition: .3s;
}
/*マイナスアイコン*/
#nav-content .category > li span.on:before{
	transform: rotate(0deg);
	-webkit-transform: rotate(0deg);
}
#nav-content .category > li span.on:after{
	background-color: transparent;
}

/*
===============================================================================
Utility
===============================================================================
*/

.slider img {
	width: 100%;
	height: auto;
}
.single-item {
	max-width: 768px;
	margin: 0 auto 50px;
}
.slick-prev::before, .slick-next::before {
	font-size: 24px;
}
.slick-next {
	right: 20px;
	z-index: 99;
}
.slick-prev {
	left: 15px;
	z-index: 100;
}

/*スライドのドット数*/
#home .slick-dots li{
    margin:0;
}
#home .slick-dots li button {
    font-size: 0;
    line-height: 0;
    display: block;
    width: 20px;
    height: 20px;
    cursor: pointer;
    color: transparent;
    border: 0;
    outline: none;
    color:#e67800; 
    background: transparent;
}
#home .slick-dots li.slick-active button:before {
    color:#e67800; 
}
#home .slick-dots li button:before {
    font-size:20px;
}

.slick-dots > li:first-child:last-child {
    display: none;
}
.slider-nav01{
    display:none;
}

/*
===============================================================================
Footer
===============================================================================
*/
footer{
    background-color:#222222;
    color: #fff;
    padding-top: 30px;
    position: relative;
    overflow: hidden;
}
footer a{
    color: #fff;
}
footer ul.bnr{
    display:table;
    width: 80%;
    margin: 0 auto;    
}
footer ul.bnr li{
    display: table;
    margin: 0 auto;
    margin-bottom: 8px;
}
footer ul.bnr li:last-child{
    margin-bottom: 0;
}
footer ul.bnr li a, 
footer ul.bnr li a img{
    display: block;
}

.footer_nav{
    display: table;
    width: 88%;
    margin:15px auto;
}
.footer_nav li{
    display: block;
    padding: 5px;
    border-bottom:#666 solid 1px;
}
.footer_nav li a{
    font-size: 13px;
    height: 14px;
    padding-right: 15px;
    position: relative;
}
.footer_nav li a::after {
    content: "";
    display: block;
    width: 8px;
    height: 8px;
    border-top: #fff solid 1px;
    border-right: #fff solid 1px;
    transform: rotate(45deg);
    position: absolute;
    top: 50%;
    margin-top: -3px;
    right: 0;
}

footer .logo{
    display: table;
    margin: 0 auto;
}
footer .logo img{
    display:table;
    width: 280px;
    height: 55px;
}
footer ul.footer_link{
    display:flex;
    -webkit-box-pack: center;
     -ms-flex-pack: center;
   justify-content: center;
    margin:10px 0;
}
footer ul.footer_link li{
    padding: 0 10px;
    line-height: 100%;
    position: relative;
}
footer ul.footer_link li::before{
    content: "";
    display: block;
    width: 1px;
    height: 80%;
    border-left: #666 solid 1px;
    position: absolute;
    top: 50%;
    left: 0%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
}
footer ul.footer_link li:last-child::after{
    content: "";
    display: block;
    width: 1px;
    height: 80%;
    border-left: #666 solid 1px;
    position: absolute;
    top: 50%;
    right: 0%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
}
footer ul.footer_link li a{
    font-size: 12px;
}
footer span.copy{
    display: block;
    line-height: 120%;
    text-align: center;
    font-size: 10px;
    padding-bottom: 8px;
    letter-spacing: 0.08em;
    color: #acacac;
}
footer .fb{
    display: block;
    width:20px;
    height: 20px;
    position: absolute;
    bottom: 30px;
    right: 50%;
    margin-right: -300px;
}
footer .fb img{
    display: block;
    width: 100%;
    height: auto;
}


/*
===============================================================================
Base Parts
===============================================================================
*/

.page-top{
	display:none ;
}
 
.page-top p{
	position: fixed ;
	right:5px ;
	bottom:50px ;
    z-index: 99;
}
 
.move-page-top{
	display: block ;
	background:#e67800;
    border-radius: 5px;
	width: 30px ;
	height: 30px ;
    padding-top: 5px;
	cursor: pointer ;
	text-decoration: none ;
	text-align: center ;

	-webkit-transition:all 0.3s ;
	-moz-transition:all 0.3s ;
	transition:all 0.3s ;
}

.move-page-top img{
    display: block;
    width: 60%;
    margin:0 auto;
}


