@charset "utf-8";
/* CSS Document */


/* ドロワーメニュー
------------------------------------------------- */
.wrapper {
  height: 100%;
  overflow-x: hidden;
  position: relative;
}
.overlay {
  content: "";
  display: block;
  width: 0;
  height: 0;
  background-color: rgba(0, 0, 0, 0.5);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  opacity: 0;
  transition: opacity .5s;
}
.overlay.open {
  width: 100%;
  height: 100%;
  opacity: 1;
}
main {
  height: 100%;
  min-height: 100vh;
  transition: all .5s;
  /* display: flex;
  padding: 0 50px;
  background-color: #eee;
  flex-direction: column;
  justify-content: center; */
}

/*
ハンバーガーメニュー
------------------------------------------------------------------------------------*/
.menu-trigger {
	display:none;
}

.anima .menu-trigger{
	top:14px;
}


@media only screen and (max-width: 945px) { 
.menu-trigger {
  display: inline-block;
  width: 36px;
  height: 28px;
  vertical-align: middle;
  cursor: pointer;
  position: fixed;
  top: 20px;
  left: 20px;
  z-index: 1001;
  transform: translateX(0);
  transition: transform .5s;
 }
 .menu-trigger.active {
  transform: translateX(300px);
}
.menu-trigger span {
display: inline-block;
box-sizing: border-box;
position: absolute;
left: 0;
width: 100%;
height: 2px;
background-color: #fff;
}
.menu-trigger.active span {
  background-color: #fff;
}
.menu-trigger span:nth-of-type(1) {
  top: 0;
}
.menu-trigger.active span:nth-of-type(1) {
  transform: translateY(14px) rotate(-45deg);
}
.menu-trigger span:nth-of-type(2) {
  top: 13px;
}
.menu-trigger.active span:nth-of-type(2) {
  opacity: 0;
}
.menu-trigger span:nth-of-type(3) {
  bottom: 0;
}
.menu-trigger.active span:nth-of-type(3) {
  transform: translateY(-12px) rotate(45deg);
}

}



/*
スマホナビ
------------------------------------------------------------------------------------*/
nav {
  width: 300px;
  height: 100%;
  padding-top: 20px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  transform: translate(-300px);
  transition: all .5s;
	text-align: left;
	font-size: 13px;
	background: #252525;
}
nav.open {
  transform: translateZ(0);
}

nav ul {
	height: 100%;
	display: block;
	overflow: auto;
	margin:auto;
	color:#fff;
}

nav p{
	font-size:16px;
	font-weight:bold;
	margin-bottom:15px;
	padding-top: 20px;
  text-indent:15px;
}

nav li {
  color: #fff;
  text-indent:15px;
}

nav li a{
	color: #fff;
	display:block;
	padding:20px 0;
}

nav li a:hover{
	background:rgba(255, 255, 255, .3);
	color:#fff;
}

nav li:last-child{
	text-indent:8px;
	margin-top:15%;
}

nav li:last-child a:hover{
	background:none;
	opacity: 0.8;
}

nav li dl{
	text-align:left;
}

nav li dt{
	width:20%;
	max-width:40px;
	display:inline-block;
	margin-right:10px;
}


/*
PCナビ
------------------------------------------------------------------------------------*/
header {
	position:fixed;
	top: 0;
	left: 0;
	z-index: 2;
	width: 100%;
	height:100px;
	transition: .3s;
  	font-family: 'Roboto', sans-serif;
	background:#000;
	color:#fff;
}

header a{
	color:#fff;
}

header a:hover{
	color:#fff;
}

#header {
	width:95%;
	margin:auto;
}

#header h1{
	width:25%;
	max-width:220px;
	margin-top:15px;
	font-size:11px;
	display:inline-block;
	text-align:center;
	vertical-align:middle;
	margin-right:5%;
}
  
#header h1 span{
	display:block;
	font-weight:normal;
	margin-top:10px;
	letter-spacing:2px;
}

#header ul{
	font-size:14px;
	letter-spacing:2px;
	display:inline-block;
	vertical-align:middle;
	font-size:15px;
}

#header ul li{
	display:inline-block;
	margin-left:15px;
	font-size:13px;
}

#header ul li:not(:last-child):after{
	content:"";
	padding:10px 15px 10px 0;
	border-right:1px solid #c7c7c7;
}

  

#header ol{
	width:15%;
	position:absolute;
	right:3%;
	top:30px;
	margin:0;
	text-align:right;
}
 
#header ol li{
	width:20%;
	max-width:25px;
	display:inline-block;
	margin-left:3%;
}
  
  
  


@media only screen and (max-width:945px) { 
header {
	height:70px;
}

#header h1{
	width:50%;
	min-width:190px;
	margin:15px auto 0;
	display:block;
}
  
#header h1 span{
	display:none;
}

#header ol,
#header ul{
	display:none;
}
 
}









footer{
	background:#C0B8B1;
	padding-top:50px;
	font-size:13px;
}

#footer{
	width:90%;
	max-width:1000px;
	margin:0 auto;
}


#footer #left{
	width:48%;
	display:inline-block;
	margin-right:7%;
	vertical-align:top;
}

#footer #left p:first-child{
	font-size:15px;
	font-weight:bold;
	margin-bottom:15px;
}

#footer #left ul{
	margin-top:50px;
}

#footer #left li{
	width:20%;
	max-width:45px;
	display:inline-block;
	margin-right:2%;
}


#footer #left li p{
	width:70%;
	display:inline-block;
	vertical-align:middle;
}



#footer #right{
	width:43%;
	display:inline-block;
	vertical-align:top;
}

#footer #right p{
	font-size:20px;
	font-weight:bold;
	margin-bottom:20px;
    font-family: 'Roboto', sans-serif;
}


#footer #right dl{
	width:45%;
	max-width:170px;
	display:inline-block;
	vertical-align:top;
	margin-right:8%;
	line-height:2;
}

#footer #right dl:nth-of-type(2){
	margin-right:0;
}

#footer #right dd:nth-of-type(1){
	border-top:1px dashed #000;
	padding-top:10px;
	margin-top:10px;
}

#footer #right ul{
	margin-top:50px;
}


#footer #right li{
	display:inline-block;
	width:10%;
	max-width:40px;
	margin-right:10px;
}



@media only screen and (max-width:768px) { 

#footer #left{
	width:100%;
	display:block;
	margin:0 auto;
}

#footer #left p:first-child{
	font-size:15px;
	font-weight:bold;
	margin-bottom:15px;
}

#footer #left ul{
	margin-top:35px;
}

/* #footer #left li img{
	width:38%;
	max-width:139px;
	margin-right:10px;
} */

#footer #left li p{
	width:55%;
}

#footer #right{
	width:100%;
	display:block;
	margin:50px auto 0;
}

#footer #right p{
	font-size:26px;
}


/* #footer #right dl{
	width:45%;
	max-width:170px;
	display:inline-block;
	vertical-align:top;
	margin-right:8%;
	line-height:2;
}

#footer #right dd:nth-of-type(1){
	border-top:1px dashed #000;
	padding-top:10px;
	margin-top:10px;
} */

#footer #right ul{
	text-align:center;
}


#footer #right li{
	width:15%;
	max-width:60px;
}

}









































#main #cate ol{
	width:90%;
	max-width:1000px;
	margin:auto;
	overflow:hidden;
}


#main #cate ol div{
	position:relative;
	text-align:center;
	margin-bottom:10px;
	color:#fff;
}

#main #cate ol div a{
	color:#fff;
}

#main #cate ol li{
	width:23%;
	margin:0 2% 50px 0;
	text-align:left;
	float:left;
	vertical-align:top;
}


#main #cate li:last-child{
	margin-right:0;
}

#main #cate li dl{
	width:90%;
	position:absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	font-size:15px;
}

#main #cate ol li dl dt{
	font-size:25px;
  	font-family: 'Roboto', sans-serif;
}

#main #cate ol li p{
	font-size:14px;
}

#main #cate ol li p span{
	display:block;
	font-weight:bold;
	margin-bottom:2px;
	font-size:16px;
}



@media only screen and (max-width: 768px) {  
#main #cate ol{
	margin-top:0px;
}
#main #cate ol li p{
	font-size:11px;
}


}

@media only screen and (max-width: 640px) {  
#main #cate ol{
	width:100%;
	max-width:480px;
	margin:auto;
}
#main #cate ol li{
	width:100%;
}





}












