@charset "utf-8";



.header {
	margin:0px;
	padding:0px;
	/*background-color:red;*/
}


ol,
ul {
    list-style: none;
    list-style-type: none;
}
a{
    text-decoration: none;
}
a.toplist {
    text-decoration: none;
    color: #696969;
    font-size: 17px;
    letter-spacing: 0.1em;
	padding-left:10px;
}
a.toplist:hover{
	color:#dc143c;
}

.hamburger {

	z-index: 2;
	position:fixed;
	padding:10px 0 10px 0;
    margin: 0px 0px 0px 0px;
    width: 100%;
    max-width: 100%;
    display: flex;
    justify-content: space-between;
	background-color:white;
	opacity: 0.9;
	background: linear-gradient(white, white);
	box-shadow: 1px 3px 10px black;
	border-bottom:solid #778899 6px; 
    /*margin: 20px auto 0;
    width: 100%;
    max-width: 900px;
    display: flex;
    justify-content: space-between;
	*/
}

.hamburger_white{
	/*追加*/
	background-color:white;
	opacity: .5;
	/*追加*/	
}

.transbox{
z-index: 1;
margin:0px;
padding:0px;
height:70px;
display: flex;
border: 1px solid red;
background-color:white;
opacity: .5;
width:100%;
}

.logo {
	margin-top:3px;
	margin-left:10px;
	/****テスト***/
	border:solid #FF000 1px; 
	/*background-image:url("../img/logo.gif");*/
}

img.head-logo{
	width: 500px;
	/****テスト***/
}

.hamburger .btn-gNav {
    position: fixed;
    top: 2px;
    right: 20px;
    width: 30px;
    height: 24px;
    z-index: 12;
    box-sizing: border-box;
    cursor: pointer;
    -webkit-transition: all 400ms;
    transition: all 400ms;
}

.hamburger .btn-gNav span {
    position: absolute;
    width: 100%;
    height: 4px;
    background: gray;
    border-radius: 10px;
    -webkit-transition: all 400ms;
    transition: all 400ms;
}

.hamburger .btn-gNav span:nth-child(1) {
    top: 0;
}

.hamburger .btn-gNav span:nth-child(2) {
    top: 10px;
}

.hamburger .btn-gNav span:nth-child(3) {
    top: 20px;
}

.hamburger .btn-gNav.open span:nth-child(1) {
    background: #ffffff;
    top: 6px;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.hamburger .btn-gNav.open span:nth-child(2),
.hamburger .btn-gNav.open span:nth-child(3) {
    top: 6px;
    background: #ffffff;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    transform: rotate(45deg);
}


.btn-gNav {
    display: none;
}

.gNav .gNav-menu {
    display: flex;
    justify-content: space-between;
	padding-right:20px;
}

.gNav .gNav-menu li {
    margin: 0 auto;
    padding: 0 5px;
}

/*****追加********/
.gNav-menu li ul{
	margin:0px;
	padding:0px;
	list-style-type:none;
	display:none;
}
.gNav-menu li:hover ul{
	display:block;
}
.gNav-menu li ul a{
	text-deoration:none;
	color:white;
	background-color:#000000;
	display:block;
	border:solid #FF000 0px;
	padding:5px;
	opacity: .4;
}
.gNav-menu li ul li:hover a{
	color:#dc143c;
}
/*****追加********/

.manual-slide1 {
  padding-top:50px;
  position: relative;
}
.manual-slide1 img {
  position: absolute;
  padding: 0;
  width: 100%;
  transform: translate(-50%, -50%);
  opacity: 0;
  animation : slideshow1 10s linear infinite;
}
@keyframes slideshow1 {
  0%   { opacity: 0; }
  28%  { opacity: 1; }
  50%  { opacity: 1; }
  75%  { opacity: 0; }
  100% { opacity: 0; }
}

/*********************************************************
  スマホメニュー
 *********************************************************/

@media screen and (max-width: 1000px) {
	
.logo {
	margin-left:10px;
}
img.head-logo{
	margin:7px 0px 3px 0px;
	width: 400px;
}
	
    .btn-gNav {
        display: block;
    }

    .gNav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.8);
        font-size: 16px;
        box-sizing: border-box;
        z-index: 1;
        padding-top: 50px;
        transition: .3s;
    }

    .gNav.open {
        right: 0;
    }

    .gNav .gNav-menu {
        padding: 0;
        width: 100%;
        height: 100%;
        display: block;
        flex-direction: column;
        text-align: center;

    }

    .gNav .gNav-menu li {
        width: 86%;
        padding: 15px;
        border-bottom: #525252 1px solid;


    }

}

