@charset "utf-8";
/* CSS Document */
body{
	background-color: #f7f8f8;
	box-sizing: border-box;
}

.wrapper{
	width:100%;
	margin: 0 auto;
	line-height: 2;
	font-size: 18px;
	font-family: "franklin-gothic-atf", sans-serif;
	font-weight: 400;
	font-style: normal;
}

/*header*/
.c-header {
  align-items: center;
  background-color: #8c031c; 
  box-sizing: border-box;
  display: flex;
  justify-content: space-between;
  padding: 1rem 2rem; 
  width: 100%;
}

.c-header__list {
  box-sizing: border-box;
  display: flex;
  /*margin: 0;
  padding: 0;*/
}

.c-header__list-item {
  list-style: none;
  text-decoration: none;
}

.c-header__list-link {
  color: #fff; 
  display: block;
  margin-right: 20px; 
  text-decoration: none;
  padding: 10px 0px;  
}

@keyframes arrowmove{
   0%{bottom:1%;}
   50%{bottom:5%;}
   00%{bottom:1%;}
}

a{
	display: inline-block;
	position: relative;
	text-decoration: none;
}

.c-header__list-link::after {
	position: absolute;
	content: '';
	bottom: 0;
	left: 0;
	width: 0;
	height: 0.1px;
	background: #fff;
	transition: all 0.3s ease 0s;
}
.c-header__list-link:hover {
	cursor: pointer;
}
a:hover::after {
	width: 100%;
}

.c-hamburger-menu {
  position: relative;
}

.pizzaheader{
	text-align: center;
	background-color: #8c031c;
}

/*スクロール*/
.scroll_down{
  position:absolute;
  bottom:1%;
  left:98%;
  animation: arrowmove 1s ease-in-out infinite;
}

.scroll_down a{
  position: absolute;
  left: -24px;
  bottom: 17px;
  color: #fff;
  font-size: 14px;
  letter-spacing: .2em;
  writing-mode: vertical-rl;
  text-decoration: none;
  text-transform: uppercase;
}

.scroll_down:before {
    content: "";
    position: absolute;
    bottom: 5px;
    right: -6px;
    width: 2px;
    height: 20px;
    background: #fff;
    transform: skewX(-31deg);
}

.scroll_down:after{
  content:"";
  position: absolute;
  bottom: 5px;
  right: 0;
  width: 2px;
  height: 85px;
  background:#fff;
}

/*main*/
main{
	background-color: #f7f8f8;
}

main h2{
	text-align: center;
	font-size: 50px;
	margin-top: 150px;
	margin-bottom: 50px;
	font-family: "franklin-gothic-atf", sans-serif;
	font-weight: 700;
	font-style: normal;
}

/*NEWS*/
.newsimg{
	text-align: center;
}


/*ABOOUT*/
.about{
	margin: 0 auto;
	text-align: center;
}

.abouttext{
	margin-top: 30px;
	/*font-size: 24px;*/
	font-family: "franklin-gothic-atf", sans-serif;
	font-weight: 600;
	font-style: normal;
}

/*menu*/
.marea{
	display: flex;
	justify-content: space-between;
}

.menu h3{
	color: #e7211c;
	font-size: 32px;
	font-weight: bold;
}

.menu dt, .menu dd, .menu p{
	font-weight: bold;
}

.menuimg{
	display: flex;
	justify-content: space-around;
}

.menuarea{
	width: 30%;
	margin-left: 15%;
}

.menuarea2{
	width: 30%;
	margin-right: 15%
}

.menu div{
	display: flex;
	justify-content: space-between;
}

/*frozenpizza*/
.frozentext{
	text-align: center;
}

.frozen{
	display: flex;
	justify-content: center;
}

.frozen p{
	text-align: center;
}

.slicetext{
	margin-top: -50px;
}

.cook h4{
	text-align: center;
	font-size: 24px;
	font-weight: bold;
	margin-bottom: 50px;
}

.cook{
	margin: 0 auto;
	margin-top: 100px;
}

.step1{
width:340px;
padding: 5px;
border: solid 1px #000000;
color: #fff;
background-color: #8c031c;
}

.cooktext{
	display: inline-block;
	width: 400px;
}

.step2{
	width:340px;
padding: 5px;
border: solid 1px #000000;
color: #fff;
background-color: #8c031c;
}

.cooktext{
	display: inline-block;
	width: 400px;
}

.step3{
	width:340px;
padding: 5px;
border: solid 1px #000000;
color: #fff;
background-color: #8c031c;
}

.cooktext{
	display: inline-block;
	width: 400px;
}

.step4{
	width:340px;
padding: 5px;
border: solid 1px #000000;
color: #fff;
background-color: #8c031c;
}


.cooktext span{
	font-weight: 550;
}

.cooktext{
	display: inline-block;
	width: 400px;
}

.cooking{
	width: 100%;
	display: flex;
	justify-content:space-around;
	align-items: center;
	margin: 0 auto;
}

.youtube{
	text-align: center;
	margin-top: 50px;
}

/*store info*/
.storeinfo{
	text-align: center;
}

.storetext{
	margin-top: 50px;
}

.snslogo{
	margin-top: 50px;
}

/*ACCESS*/
.access{
	text-align: center;
}

.map{
	max-width: 100%;
}

.accesstext{
	display: flex;
	justify-content: center;
}

/*footer*/
footer{
	text-align: center;
}

.logo{
	margin-top: 150px;
}

.copy{
	font-size: 12px;
}

/*上に戻るボタン*/

.button{
  position: fixed;
  right: 0;
  bottom: 0;
  font-size: 30px;
  color: #fff;
  background: #8c031c;
  padding: 10px;
  cursor: pointer;
  transition: .3s;
	
  
  /*デフォルトで非表示にする*/
  opacity: 0;
  visibility: hidden;
}

/*このクラスが付与されると表示する*/
.active{
  opacity: 1;
  visibility: visible;
}



/*CONTACT*/

form { max-width:420px; margin:0 auto; }

.contactname{
	color: #000;
	font-size: px;
}

.contactmust{
	font-size: 13px;
}

.must{
	color: #BF3604;
	font-weight: bold;
}

.feedback-input {
  color:000;
  font-size: 18px;
  border-radius: 5px;
  background-color: #fff;
  border:2px solid #000;
  padding: 10px;
  margin-bottom: 15px;
  width:100%;
  box-sizing: border-box;
}

textarea {
  height: 150px;
  resize:vertical;
}

[type="submit"] {
  width: 100%;
  background:#8C031C;
  border-radius:5px;
  border:0;
  cursor:pointer;
  color:#fff;
  font-size:24px;
  padding-top:10px;
  padding-bottom:10px;
  font-weight:bold;
}


@media screen and (max-width: 768px){
	img {
  		 max-width: 100%;
  		 height: auto;
 	}
	
	.wrapper{
		font-size: 16px;
	}

	.menuimg{
		display: none;
	}
	.marea{
		display: block;
	}
	.menuarea,.menuarea2{
		margin: 0 auto;
		width: 100%;
	}
	.menuarea2{
		padding-top: 30px;
	}
	
	.cooking{
		/*display:block;*/
		width: 100%;
		flex-wrap: wrap;
	}
	
	.cooktext{
		width: 100%;
	}
	.arrow{
		display: none;
	}
	.step1,.step2,.step3,.step4{
		margin-top: 10px;
		width: 55%;
	}
	
	.scroll_down{
		overflow: hidden;
	}
	
	.map{
		max-width: 100%;
   height: auto;
	}
}

@media screen and (max-width: 768px) {
  .c-hamburger-menu__list {
    background-color: #8c031c; 
    align-items: flex-start;
    display: flex;
    flex-direction: column;
    left: 0;
	padding: 2rem;
    position: absolute;
    transform: translateX(-100%);
    transition: 0.3s; 
    top: 100%;
    width: 100%;
  }

  #hamburger:checked ~ .c-hamburger-menu__list {
    transform: translateX(0%);
    transition: 0.3s;
  }
}

.c-hamburger-menu__input {
  display: none;
}

.c-hamburger-menu__bg {
  background-color: #fff; 
  cursor: pointer;
  display: none;
  height: 100vh;
  left: 0;
  opacity: 0.4; 
  position: absolute;
  top: 0;
  width: 100%;
  z-index: -1;
}

#hamburger:checked ~ .c-hamburger-menu__bg {
  display: block;
}

.c-hamburger-menu__button {
  display: none;
}
@media screen and (max-width: 768px) {
.c-hamburger-menu__button {
    align-items: center;
    appearance: none;
    background-color: transparent;
    border: none;
	cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 5px; 
    height: 32px;
	justify-content: center;

	}
   .c-hamburger-menu__button-mark {
  background-color: #fff; 
  display: block;
  height: 5px; /*線の太さ*/
  transition: 0.3s; 
  width: 30px; 
}
}

@media screen and (max-width: 750px) {
  #hamburger:checked
    ~ .c-hamburger-menu__button
    .c-hamburger-menu__button-mark:nth-of-type(1) {
    transform: translate(2px, 1px) rotate(45deg); /* カスタマイズしてください */
    transform-origin: 0%; /* カスタマイズしてください */
  }
  #hamburger:checked
    ~ .c-hamburger-menu__button
    .c-hamburger-menu__button-mark:nth-of-type(2) {
    opacity: 0;
  }
  #hamburger:checked
    ~ .c-hamburger-menu__button
    .c-hamburger-menu__button-mark:nth-of-type(3) {
    transform: translate(2px, 3px) rotate(-45deg); /* カスタマイズしてください */
    transform-origin: 0%; /* カスタマイズしてください */
  }
}





