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


/* ヘッダー */
header .flex{
  display: flex;
  justify-content: space-between;
  padding: 20px 20px 0;
  background-color: white;
  
}
header .pc p {
  font-size: 20px;
}

.head-menu .flex {
  display: flex; 
  justify-content: flex-end;
    
}   

header .pc img {
 width: 250px;
}


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

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


.header_btn {
  position: relative;
  display: inline-block;
  padding: 0.8em 2em;
  text-decoration: none;
  color: black;
  background: rgb(252, 128, 149);/*色*/
  border: solid 1px rgb(252, 128, 149);/*線色*/
  border-radius: 25px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.2);
  text-shadow: 0 1px 0 rgba(0,0,0,0.2);
  margin: 5px;
  font-size: 16px;
  line-height: 1;
}

.header_btn:active {
  /*押したとき*/
  border: solid 1px #03A9F4;
  box-shadow: none;
  text-shadow: none;
  
}
.header_btn:hover{
  opacity: 0.8;
}

header .header_btn1 {
  font-size: 20px;
  margin-bottom: 10px;
}

header .header_btn2 {
  text-align: center;
}
@media screen and (max-width:600px) {
 header{
  position: fixed;
  padding: 4px;
  width: 100%;
  top:0;
  left:0;
  border-bottom: solid 2px;
}
header .flex{
  padding: 0;
  
}
 
 .pc { display: none !important; }
 .sp { display: block !important; }

 .sp img {
  width: 200px;
}

 .head-menu {
   display: none;
 }
 
 .marquee {
   display: none;
 }
}

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

}
#menu ul li a:hover {
opacity: 0.5;
}

nav .inner {
 display: none;
}

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

body{
font-weight: 400;


}
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: 30px;
  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;
}


}
 