@charset "utf-8";
/* CSS Document */
body {
  font-family: "Dancing Script", cursive, "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  line-height: 1.6em;
  color: #232323;
  width: 1920px;
  margin: 0 auto;
}
#wrapper {
  margin: 0 auto;
  background-color: #e3e3e3;
}
#background {
  background-image: url("../images/background.jpg");
}
a {
  color: #232323;
  text-decoration: none;
}
.sp-nav {
  display: none;
}
.header_bg {
  position: relative;
}
.header_nav {
  position: absolute;
  top: 10%;
  left: 17%;
  display: flex;
  justify-content: center;
  gap: 150px;
}
.header_nav li {
  list-style: none;
  font-size: 32px;
  font-weight: bold;
  padding-top: 50px;
}
.menu_section h2 {
  font-size: 48px;
  margin-left: 288px;
  margin-top: 100px;
}
.under_line {
  margin: 20px auto 0 250px;
  display: block;
}
.box_fadeup {
  animation-name: fadeUpAnime;
  animation-duration: 2.0s;
  animation-fill-mode: forwards;
  opacity: 0;
}
@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.menu_bg {
  position: relative;
  margin-top: 50px;
}
.menu_container {
  width: 1440px;
  text-align: left;
  display: flex;
  justify-content: center;
  position: absolute;
  top: 0;
  left: -5%;
	
}
.menu_container h3 {
  width: 200px;
  font-size: 42px;
  color: #ce7754;
  padding-top: 130px;
  padding-bottom: 30px;
}
.menu_container dl {
  font-size: 24px;
}
.pizza_container {
  width: 50%;
}
.pizza_container dl {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.pizza_container dt {
  width: 60%;
  padding-top: 40px;
}
.pizza_container dd {
  padding-top: 40px;
  width: 30%;
}
.pasta_container {
  width: 50%;
	position: absolute;
	top: 0%;
	left: 80%;
}
.pasta_container dl {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.pasta_container dt {
  width: 60%;
  padding-top: 40px;
}
.pasta_container dd {
  padding-top: 40px;
  width: 30%;
}
.pasta_container p {
  font-size: 24px;
}
.footer_bg {
  margin-top: 50px;
  position: relative;
}
.footer_logo {
  margin-top: -50px;
}
.footer_link_icon {
  position: absolute;
  top: 10%;
  left: 25%;
  display: flex;
  justify-content: center;
  gap: 100px;
  list-style: none;
  padding-top: 50px;
}
.footer_nav {
  position: absolute;
  top: 70%;
  left: 32%;
  display: flex;
  gap: 150px;
  font-size: 32px;
  list-style: none;
}
.footer_bg p {
  font-family: "Noto Sans JP", sans-serif;
  position: absolute;
  top: 90%;
  left: 40%;
  font-size: 14px;
  text-align: center;
}
.kakuu {
  margin-top: -30px;
  font-size: 21px;
  color: #ce7754;
}
@media screen and (max-width: 768px) {
  body {
	  width: 100%;
    margin: 0 auto;
    text-align: center;
  }
  #wrapper {
    margin: 0 auto;
    
	  width: 100%;
  }
  img {
    max-width: 100%;
  }
  .header_nav h1 {
    position: relative;
    top: 0%;
    left: 10%;
  }
	/*header_bg {
  position: relative;
}*/
  /* 
hamburger(ハンバーガーアイコン)
=================================== */
	.hamburger {
    position: absolute;
    top: 5%;
	  right: 5%;
   
    height: 40px;
    cursor: pointer;
    z-index: 300;
  }
  .hamburger__line {
    position: absolute;
    width: 50px;
    height: 3px;
    right: 0;
    background-color: #000;
    transition: all 0.5s;
  }
  .hamburger__line--1 {
    top: 1px;
  }
  .hamburger__line--2 {
    top: 18px;
  }
  .hamburger__line--3 {
    top: 36px;
  }
  /*ハンバーガーがクリックされたら*/
  .open .hamburger__line--1 {
    transform: rotate(-45deg);
    top: 11px;
  }
  .open .hamburger__line--2 {
    opacity: 0;
  }
  .open .hamburger__line--3 {
    transform: rotate(45deg);
    top: 11px;
  }
  /* 
sp-nav(ナビ)
=================================== */
  .sp-nav {
    display: block;
    position: fixed;
    right: -100%; /*ハンバーガーがクリックされる前はWindow右側に隠す*/
    top: 0;
    width: 70%; /* 出てくるスライドメニューの幅 */
    height: 100vh;
    background-color: rgba(255, 255, 255, 0.7);
    transition: all 0.5s;
    z-index: 200;
    overflow-y: auto; /* メニューが多くなったらスクロールできるように */
  }
  /*ハンバーガーがクリックされたら右からスライド*/
  .open .sp-nav {
    right: 0;
  }
  /* 
black-bg(ハンバーガーメニュー解除用bg)
=================================== */
  .black-bg {
    position: fixed;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    z-index: 5;
    background-color: #000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s;
    cursor: pointer;
    /* z-index: 100;*/
  }
  /*ハンバーガーメニューが開いたら表示*/
  .open .black-bg {
	 
    opacity: 0.3;
    visibility: visible;
  }
	.sp-nav ul{
		position: relative;
		top: 0%;
		left: -7%;
	}
  .sp-nav li {
    margin-top: 80px;
    font-size: 32px;
  }
  .header_nav li {
    display: none;
  }
  h2 {
    position: relative;
	  top: 0%;
    left: -50%;
  }
 .under_line {
    position: relative;
    left: -50%;
    width: 70%;
  }
  .menu_photo {
    width: 100%;
  }
  .menu_container {
    display: block;
	 
  }
  .menu_container h3 {
    font-size: 24px;
    margin-top: -100px;
  }
  .menu_container dl {
    font-size: 18px;
    margin-top: -20px;
	  margin-left: -25px;
	  flex-wrap: wrap;
	  width: 50%;
  }
  .menu_container dt, dd, p {
    margin-top: -20px;
  }
	
  .menu_container p {
    font-size: 18px;
  }
	.pasta_container p{
		width: 45%;
		margin-left: -25px;
	}
  footer {
    padding-top: 150px;
  }
  .footer_link_icon {
    position: absolute;
	  top: 1%;
    left: 2%;
    gap: 10px;
  }
	.footer_bg h1{
		width: 30%;
		
	}
  .footer_nav {
	 
	  flex-wrap: wrap;
    position: absolute;
	  top: 40%;
    left: 30%;
   gap: 0px;
  }
	.footer_nav li{
		width: 80%;
		 font-size: 24px;
		padding-top: 15px;
	}
  .footer_bg p {
    position: absolute;
	  top: 90%;
    left: 13%;
	  font-size: 12px;
	  
  }
}