@charset "utf-8";
*{
  padding: 0;
  margin: 0;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}


/* ヘッダー */
header{
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
  border-bottom: 1px solid #333;
  position: relative;
}
.head_menu {
  position: absolute;
  top: 0;
  right: 0;
}
.head_menu .flex {
display: flex; 
justify-content: flex-end;
    
}   
.head_menu img {
  width: 180px;
  height: 68px;
  
}
header .logo img {
 width: 150px;
 text-align: center;
 position: absolute;
 top: 20px;
 left: 660px;
}

.pc p {
 font-size:23px; 
 font-weight:bold;
}

address{
font-style:normal;
}

/* パソコンで見たときは"pc"のclassがついた画像が表示される 
.pc { display: block !important; }
.sp { display: none !important; }

/* スマートフォンで見たときは"sp"のclassがついた画像が表示される */

@media screen and (max-width:600px) {
 header{
  position: fixed;
  padding: 4px;
  width: 100%;
  height: 50px;
  top:0;
  left:0;
  border-bottom: solid 0.5px;
}

header .logo img {
 width: 150px;
 text-align: left;
 position: absolute;
 top: 4px;
 left: 6px;
}
/*
.pc { display: none !important; }
.sp { display: block !important; }
*/
.head_menu {
  display: none;
}
.marquee {
  display: none;
}
#navArea img {
  width: 30px;
  height: 20px;
}
}

/* ナビ */
#g_nav{
padding-bottom: 0px;
width: 600px;
display: left;
margin-left: 10px;
}
#g_nav ul {
display: flex;
padding: 0;
width: 75%;
list-style-type: none;
}
#g_nav ul li {
position: relative;
width: 20%;
font-size: 0.7rem;
font-weight: bold;
}
/*
#g_nav ul li:first-child::before {
position: absolute;
display: block;
content: "";
top: 25%;
left: 0px;
width: 1px;
height: 50%;
background-color: #976d52;
}
#g_nav ul li::after {
position: absolute;
display: block;
content: "";
top: 25%;
right: 0px;
width: 1px;
height: 40%;
background-color: #976d52;
}
*/
#g_nav ul li a {
display: block;
padding: 17px 4px;
color: black;
text-align: center;

}
#g_nav ul li a:hover {
opacity: 0.5;
}
                  
nav .inner {
 display: none;
}

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

 body{
  font-weight: 400;
 }
 #g_nav {
  display: none;
 }
 nav {
  display: block;
  width: 220px;
  position: fixed;
  background-color: #ffffff;
  top: 0;
  left: -300px;
  bottom: 0;
  transition: all 0.5s;
  z-index: 999;
  opacity: 0;
 }
 .open nav {
  left: 0;
  opacity: 1;
 }
 
 nav .inner {
  display: block;
  padding: 25px;
 
 }
 nav .inner ul {
  list-style: none;
  margin: 0;
  padding: 0;
 
 }
 
 nav .inner ul li {
  margin: 0;
  border-bottom: 1px solid #333;
 }
 nav .inner ul li a {
  display: block;
  text-decoration: none;
  color: #333;
  font-size: 14px;
  padding: 1rem;
  transition-duration: 0.2s;
 }
 nav .inner ul li a:hover {
  background-color: #e4e4e4;
 }
 
 .toggle-btn {
  display: block;
  position: fixed;
  top: 10px;
  right: 35px;
  width: 30px;
  height: 30px;
  z-index: 3;
  cursor: pointer;
  
 }
 .toggle-btn span {
  position: absolute;
  display: block;
  left: 0;
  width: 30px;
  height: 2px;
  background-color: #333;
  transition: all 0.5s;
  border-radius: 4px;
 }
 .toggle-btn span:nth-child(1) {
  top: 4px;
 }
 .toggle-btn span:nth-child(2) {
  top: 14px;
 }
 
 .toggle-btn span:nth-child(3) {
  bottom: 4px;
 }
 .open .toggle-btn span {
  background-color: #fff;
 }
 .open .toggle-btn span:nth-child(1) {
  transform: translateY(10px) rotate(-315deg)
 }
 .open .toggle-btn span:nth-child(2) {
  opacity: 0;
 }
 .open .toggle-btn span:nth-child(3) {
  transform: translateY(-10px) rotate(315deg)
 }
 
 #mask {
  display: none;
  transition: 0.5s;
 }
 
 .open #mask {
  display: block;
  background-color: #000;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  position: fixed;
  opacity: 0.3;
  cursor: pointer;
 }
}

.header_button {
position: relative;
display: inline-block;
text-decoration: none;
box-shadow: inset 0 1px 0 rgba(255,255,255,0.2);
text-shadow: 0 1px 0 rgba(0,0,0,0.2);
font-size: 16px;
color: #000;
border: solid 1px;
height: 70px;
}
  
.header_button:active {
  /*押したとき*/
  border: solid 1px #03A9F4;
  box-shadow: none;
  text-shadow: none;
  
}
.header_button:hover{
  color: #fc82bf;
}


#navArea nav {
  z-index: 99999 !important;
}

.toggle-btn {
  z-index: 100000 !important;
}

#mask {
  z-index: 99998 !important;
}


header {
  z-index: 5000;
  position: relative;
}

#navArea {
  position: relative;
  z-index: 10000;
}

  