@charset "utf-8";


/* ヘッダー */
header .flex{
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  background-color: white;
  margin: 0 30px;
  height: 135px;
}


.head_menu .flex {
  display: flex; 
  margin-right: 0;  

}   

header .pc img {
 width: 210px;
}
header .pc p {
  font-size: 18px;
  text-decoration : underline;
}




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

/* スマートフォンで見たときは"sp"のclassがついた画像が表示される */
.head_menu .boxs img {
 width: 250px;
}

.header_btn {
  position: relative;
  display: inline-block;
  padding: 0.8em 2em;
  text-decoration: none;
  color: black;
  background: rgb(252, 172, 185);/*色*/
  border: solid 1px rgb(252, 172, 185);/*線色*/
  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%;
   height: 70px;
   top:0;
   left:0;
 }
header .flex{
  padding: 0px;
  height: 70px;
  margin: 0;
}
 .pc { display: none !important; }
 .sp { display: block !important; }
 .sp img {
  width: 200px;
  height: 55px;
  margin-top: 8px;
  margin-left: 15px;
}
.head_menu {
  display: none;
}
.marquee {
  display: none;
}
}

/* ナビ */
#g_nav{
  background-color: #F09199;
  padding-bottom: 0px;
}
#g_nav ul {
  display: flex;
  margin: 0 auto;
  padding: 0 3%;
  width: 94%;
  max-width: 1200px;
  list-style-type: none;
}
#g_nav ul li {
  position: relative;
  width: 20%;
  font-size: 1rem;
  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 10px;
color: black;
text-align: center;

}
#g_nav 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: 20px;

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