@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; */
}









/*
PCナビ
------------------------------------------------------------------------------------*/
header {
	/* top: 0;
	left: 0;
	z-index: 2;
	width: 100%;
	height:120px;
	background:rgba(255, 255, 255, .6); */
	transition: .3s;
	text-align:center;
  	font-family: 'Roboto', sans-serif;
	/*color:#7F7F7F;*/
	color:#000;
}

header a{
	/*color:#7F7F7F;*/
	color:#000;
}

header h1{
	max-width:180px;
	margin:20px auto 0;
}

header h1 img{
	width:60%;
}



header #p-navi{
	font-size:/*12*/14px;
	letter-spacing:2px;
	margin-top:18px;
	font-family: 'Poppins', sans-serif;
/*	letter-spacing: 3px;*/
}

header #p-navi > ul{
	display:inline-block;
	vertical-align:middle;
}

header #p-navi li{
	display:inline-block;
	margin:0 8px;
}

header #p-navi li a:hover {
	text-decoration:none;
}  

header #p-navi li a::after {
  border-bottom: solid 1px #000;
  bottom: 0;
  content: "";
  display: block;
  transition: all .3s ease;
  -webkit-transition: all .3s ease;
  width: 0;
}
header #p-navi li a:hover::after {
  width: 100%;
}

header .sns{
	position:absolute;
	right:2%;
	top:23px;
	font-size:13px;
	text-align:right;
	font-family: 'Poppins', sans-serif;
	letter-spacing:0.15em;

}

#header {
	background:rgba(255, 255, 255, .8);
  /* box-shadow: 0 4px 8px -3px rgba(17, 17, 17, .06); */
  height: /*120*/90px;
  position: fixed;
  top: 0;
  transition: .3s cubic-bezier(.4, 0, .2, 1);
  width: 100%;
  z-index: 11;
}

.head-animation {
  transform: translateY(-100%);
}

/*
ドロップダウンメニュー
------------------------------------------------------------------------------------*/

.dropmenu{
  *zoom: 1;
  list-style-type: none;
 /*  width: 960px;
  margin: 5px auto 30px;
  padding: 0; */
}
.dropmenu:before, .dropmenu:after{
  content: "";
  display: table;
}
.dropmenu:after{
  clear: both;
}
.dropmenu li{
  position: relative;
 /*  width: 20%;
  float: left;
  margin: 0;
  padding: 0;
  text-align: center; */
}
.dropmenu li a{
  display: block;
  margin: 0;
  /* padding: 15px 0 11px;
  background: #8a9b0f;
  color: #fff;
  font-size: 14px;
  line-height: 1;
  text-decoration: none; */
}
.dropmenu li ul{
  /* list-style: none; */
  position: absolute;
  z-index: 9999;
  top: 100%;
  left: 0;
  margin: 0;
  padding: 0;
}
.dropmenu li ul li{
  width: /*210*/170px;
  letter-spacing:normal;
}
.dropmenu li ul li a{
  padding:/* 13px 15px*/ 10px;
  /* border-top: 1px solid #7c8c0e; */
  background:#f5f5f5;
  text-align: left;
}
/* .dropmenu li:hover > a{
  background: #6e7c0c;
}
.dropmenu li a:hover{
  background: #616d0b;
}
 */

#left-to-right ul{
  overflow: hidden;
  width: 0;
  transition: .5s;
}
#left-to-right li:hover ul{
  width: /*210*/170px;
}
#left-to-right li:hover ul li a{
  white-space: nowrap;
}


.dropmenu li ul li a::after {
  border-bottom:none !important;
}

.dropmenu li ul li a:hover {
  background: #e7e7e7;
}





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

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


@media only screen and (max-width: 640px) { 
header #p-navi,
header .sns{

	display:none;
}

#header {
  height: /*70*/50px;
  position: fixed;
}



header h1{
	max-width:/*150px*/120px;
	margin:15px auto 0;
}
header h1 img{
	width:100%;
}


.menu-trigger {
  display: inline-block;
  width: /*28*/20px;
  height: /*28*/20px;
  vertical-align: middle;
  cursor: pointer;
  position: fixed;
  top: /*25*/20px;
  left: 25px;
  z-index: 100;
  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: #000;
}
.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*/9px;
}
.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(-5px) rotate(45deg);
}

}



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

nav li {
  color: #fff;
}

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

nav p{
	font-size:16px;
	font-weight:bold;
	margin:5px auto 10px;
	border-bottom:1px solid #fff;
	padding-bottom:15px;
}

nav p img{
	max-width:150px !important;
}


nav p a{
	color:#fff;
}


nav p img{
	max-width:180px;
}


nav li a{
	color: #fff;
	display:block;
	padding:/*20px 0*/12px 0px;
	font-family: 'Poppins', sans-serif;
	letter-spacing:0.25em;

}

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

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

nav li:last-child a{
	/* border-top:1px solid #fff; */
	margin-top:10px;
	background:rgba(255, 255, 255, .7);
	color:#000;
	padding-top:15px;
	font-weight:bold;
	position:relative;
}

nav li:last-child a:after{
	content:"";
	position:absolute;
	right:10px;
	top:/*22*/18px;
	box-sizing: border-box;
	width: 4px;
	height: 4px;
	border: 6px solid transparent;
	border-left: 8px solid #4d4d4d;
}



/*
スマホ　アコーディオン
------------------------------------------------------------------------------------*/
.panel-head {
   position: relative;
   padding:12px 0;
   font-family:'Poppins', sans-serif;
   letter-spacing:0.25em;
}

.panel-head:hover {
	background:rgba(255, 255, 255, .3);
}



/*下矢印↓*/
.panel-head:after {
   content: "";
   position: absolute;
   border-right: 2px solid #fff;
   border-bottom: 2px solid #fff;
   width: 13px;
   top:12px;
   right: 15px;
   height: 13px;
   transform: rotate(45deg);
}

/*上矢印↑*/
.panel-head.ac:after {
   content: "";
   position: absolute;
   border-left: 2px solid #fff;
   border-top: 2px solid #fff;
   border-right: 0;
   border-bottom: 0;
   width: 13px;
   top:20px;
   right: 13px;
   height: 13px;
   transform: rotate(45deg);
}

.qa-answer{
    display:none;
	margin-top:15px;
}














/*
フッター
------------------------------------------------------------------------------------*/
footer{
	background:#333633;
	/*padding-top:20px;*/
	padding:20px 0 0 0 ;
	margin-top:50px;
	color:#fff;
}

footer a{
	color:#fff;
}

footer p{
	font-family: 'Poppins', sans-serif;
	font-size:13px;
	letter-spacing:3px;
	margin:20px auto;
}

footer p a:not(:last-child):after{
	content:"/";
	margin-right:10px;
	padding-left:10px;
}


footer .f-logo{

	max-width:175px;
	margin:auto;
}

footer .f-logo img{
	width:50%;
}


footer span{
	font-size:10px;
	display:block;
	color:/*#fff*/#ccc;
	margin-top:15px;
	font-family: 'Poppins', sans-serif;
	letter-spacing:3px;
	padding-bottom:10px;
}


footer li{
	display:inline-block;
	margin:10px;
	font-family: 'Josefin Sans', sans-serif;
}

footer li img{
	max-width:30px;
}

footer .copyright{
	font-size:11px;
	letter-spacing:1px;
	font-family: 'Poppins', sans-serif;
}

footer #jewel_footer{
	width:100%;
	background-color:/*#ccc*/#333633;
	margin-bottom:0px;
	padding:20px 0;
	margin-top:5px;
}
footer #jewel_footer img{
	width:100px;
	opacity: 0.8;
}






@media only screen and (max-width: 800px) { 
footer{
	padding:/*50px*/20px 0 0px;
}

footer p a{
	
/*	display:block;*/
display:inline-block;
font-size:10px;
}



footer #jewel_footer{
	padding-bottom:/*100*/80px;
}


footer span{
	padding-bottom:0px;
}


}

li#cutech_link{
	color: #fff;
    display: block;
    padding: /*20px 0*/12px 0px;
    font-family: 'Poppins', sans-serif;
    letter-spacing: 0.25em;
}

li#cutech_link a{
	font-size:16px;
	font-weight:600;
}


li#cutech_link img{
	height:15px;
	margin-right:10px;
}

/*アンバサダーバナー*/

#bana_am img{
	width:172px;
	position:fixed;
  right: /*230*/280px;
 bottom:0px;
	box-shadow: 0 10px 25px 0 rgba(0, 0, 0, .2);

}
#bana-am2{
	width:90%; 
	margin:100px auto; 
	text-align:center;
	display: none;/*非表示中*/
}


@media only screen and (max-width:798px) { 
	#bana-am2{
		display: block;
	}
	
		#bana-am2 img{
			margin-bottom: 10px;

	
}


