@charset "utf-8";
/*---------------------------------------------
Reset
---------------------------------------------*/

html {
	color: #333;
	overflow-y: scroll;
	font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN W3", Meiryo, sans-serif;
	font-size: 62.5%;
	line-height:1.5;
}

h1, h2, h3, h4, h5, h6 { font-weight: normal; margin: 0; padding: 0; }
img { border: none; vertical-align: bottom; max-width: 100%; height: auto; margin: 0; padding: 0; }
div, dl, dt, dd, form, input, ul, ol, li, p, select, textarea, span, th, td { margin: 0; padding: 0;}
*, *:before, *:after { box-sizing: border-box;}

/*---------------------------------------------
Style
---------------------------------------------*/
body {
	text-align: center;
	margin: 0 auto;
	padding: 0;
	font-size:1.8rem;
    overflow: hidden;
}


.for_pc{
	display:block;
	margin:0 auto;
}

.for_sp{
	display:none;
	margin:0 auto;
}

.note{
	font-size: 1.4rem;
}

/* sp */
@media screen and (max-width: 750px){

	body {
		font-size:1.5rem;
	}
	.for_pc{
		display:none;
		margin:0 auto;
	}
	.for_sp{
		display:block;
		margin:0 auto;
	}
}

/* =========================================================
共通
========================================================= */

.line_top{
    height: 25px;
    background-image: linear-gradient(90deg,
    #EA5514 16.66%, #F57E83 16.66%, #F57E83 33.33%, #F5BD83 33.33%, #F5BD83 50%,#E5292C 50%, #E5292C 66.66%, #F5B039 66.66%, #F5B039 83.32%, #B66134 83.32%, #B66134);
}

article{
    z-index: 100;
}

@media screen and (max-width: 750px){
    .line_top{
        height: 15px;
    }
}

/* ================ アニメーション ================ */
/*ぽよよんスライド*/
.anim-box.poyoyon.is-animated {
  animation: poyoyon 1.2s cubic-bezier(0.12, 0, 0.39, 0) 1 forwards;
}
 
@keyframes poyoyon {
  0% {
    opacity: 0;
  }
  60% {
    transform: translateY(140px);
    opacity: 0;
  }
  85% {
    transform: translateX(0);
  }
  90% {
    transform: translateY(30px);
  }
  100% {
    transform: translateX(0);
  }
  70%,100% {
    opacity: 1;
  }
}
 
/*右斜め下から*/
.anim-box.slide-skew.is-animated {
  animation: slide-skew 1.2s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}
 
@keyframes slide-skew {
0%{
      opacity: 0;  
    }
  60% {
    transform: translate(180px,30px);
    opacity: 0;
  }
  100% {
    transform: translate(0,0);
  }
  80%,100% {
    opacity: 1;
  }
}

/*左斜め下から*/
.anim-box.slide-skew02.is-animated {
  animation: slide-skew02 0.6s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}
 
@keyframes slide-skew02 {
0%{
      opacity: 0;  
    }
  20% {
    transform: translate(-180px,30px);
    opacity: 0;
  }
  100% {
    transform: translate(0,0);
  }
  40%,100% {
    opacity: 1;
  }
}

/*右斜め上から*/
.anim-box.slide-skew03.is-animated {
  animation: slide-skew03 1.0s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}
 
@keyframes slide-skew03 {
0%{
      opacity: 0;  
    }
40% {
    transform: translate(180px,-30px);
    opacity: 0;
  }
  100% {
    transform: translate(0,0);
  }
  60%,100% {
    opacity: 1;
  }
}

/*左斜め上から*/
.anim-box.slide-skew04.is-animated {
  animation: slide-skew04 0.6s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}
 
@keyframes slide-skew04 {
  0% {
    transform: translate(-180px,-30px);
    opacity: 0;
  }
  100% {
    transform: translate(0,0);
  }
  20%,100% {
    opacity: 1;
  }
}

/*フェードイン　下から*/
.fadeIn {
  transform: translate3d(0, 50px, 0);
  transition: 0.6s;
  opacity: 0;
}
.fadeIn.animated {
  transform: translate3d(0, 0, 0);
  opacity: 1;
}

/*下からポップアップ*/
.popup {
transform: translateY(40px) scale(0.7);
 opacity: 0;
transition: 0.5s;
}
.popup.animated {
transform: translateY(0) scale(1.0);
    opacity: 1;
}

/* =========================================================
メインビジュアル
========================================================= */
main{
    position: relative;
    height: 65.28vh;
}

.circle{
    margin-top: 10vh;
    height: 55.28vh;
    background-image: url("../img/circle.svg");
    background-repeat: no-repeat;
    background-position: center bottom;
    background-size: cover;
}

.don_01{
    position: absolute;
    top: 4.97vw;
    left: 3.96vw;
    width: 25.63vw;
}

.don_02{
    position: absolute;
    bottom: -3.96vw;
    left: 14.65vw;
    width: 21.6vw;
}

.don_03{
    position: absolute;
    top: 8vw;
    right: 10.12vw;
    width: 18.75vw;
}

.don_04{
    position: absolute;
    bottom: -4vw;
    right: 6.74vw;
    width: 26.04vw;
}

h1{
    position: absolute;
    /*width: 34vw;*/
    width: 400px;
  right: 0;
  left: 0;
  margin: auto;
   z-index: 200;
}


@media (min-width: 1441px){
    main{
        height: 65vh;
    }

.circle{
    margin-top: 10vh;
    height: 55vh;
    background-image: url("../img/circle_pc02.svg");
    background-repeat: no-repeat;
    background-position: center bottom;
    background-size: cover;
}
    .don_01{
    position: absolute;
    top: 4vw;
    left: 8vw;
    width: 42vw;
}

.don_02{
    position: absolute;
    bottom: -2vw;
    left: 16vw;
    width: 36vw;
}

.don_03{
    position: absolute;
    top: 6vw;
    right: 9vw;
    width: 36vw;
}

.don_04{
    position: absolute;
    bottom: -2vw;
    right: 10vw;
    width: 42vw;
}
    h1{
    position: absolute;
    /*width: 30vw;*/
        width: 500px;
  right: 0;
  left: 0;
  margin: auto;
}
}

@media screen and (max-width: 750px){
    main{
        height: 54vh;
    }

.circle{
    margin-top: 10vh;
    height: 44vh;
    background-image: url("../img/circle_sp.svg");
    background-repeat: no-repeat;
    background-position: center bottom;
    background-size: cover;
}
    .don_01{
    position: absolute;
    top: 7.87vw;
    left: -6.67vw;
    width: 48.67vw;
}

.don_02{
    position: absolute;
    bottom: 4vw;
    left: -8vw;
    width: 38.8vw;
}

.don_03{
    position: absolute;
    top: 10.4vw;
    right: -8vw;
    width: 45vw;
}

.don_04{
    position: absolute;
    bottom: -12vw;
    right: -6.67vw;
    width: 51.2vw;
}
h1{
    width: 61.78vw;
}
}

@media screen and (max-width: 480px){
    main{
        height: 42vh;
    }
.circle{
    margin-top: 10vh;
    height: 32vh;
    background-image: url("../img/circle_sp.svg");
    background-repeat: no-repeat;
    background-position: center bottom;
    background-size: cover;
}
    h1{
    width: 65%;
}
}


/* =========================================================
about
========================================================= */
#about{
    background-color: #F08300;
    position: relative;
}

#about .inner{
    padding: 0 2rem;
}

.source{
    max-width: 600px;
    margin: 0 auto;
    padding-top: 6rem;
}

.chicken{
    max-width: 400px;
    margin: 0 auto;
}

h2{
    color: #FFF;
    font-family: "M PLUS Rounded 1c", sans-serif;
    font-weight: 600;
    font-size: 2.2rem;
    line-height: 1.8;
    padding: 3rem 0 6rem;
}

@media (min-width: 1440px){

}

@media screen and (max-width: 750px){
    h2{
    font-size: 1.8rem;
    line-height: 1.8;
    padding: 3rem 0 6rem;
}
    .source{
    max-width: 100%;
    margin: 0 auto;
    padding-top: 6rem;
}

.chicken{
    padding-top: 1rem;
    max-width: 80%;
    margin: 0 auto;
}
}

/* =========================================================
今月の新商品
========================================================= */
#new_product{
	position: relative;
	background-color: #ffcea6;
	padding: 15rem 2rem 0.5rem;
	margin: 5rem 0 10rem;
	border: solid 4px #b13d36;
	border-radius: 30px;
}

.new_product_ttl{
	position: absolute;
	left: 0;
	right: 0;
	top: -3rem;
}

.comment_inner{
	max-width: 600px;
	margin: 0 auto;
	text-align: left;
}

@media screen and (max-width: 750px){
	#new_product{
		padding: 10rem 2rem 1rem;
		border-radius: 20px;
	}
	.new_product_ttl{
	position: absolute;
	left: 0;
	right: 0;
	top: -2rem;
}
}

/* =========================================================
product
========================================================= */
#product{
    color: #6A3906;
}
.product_ttl{
    max-width: 650px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.product_bg{
    background-color: #FDF2DA;
    padding: 8rem 0 12rem;
}

.product_container{
    display:grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 14rem 4rem;
    text-align: left;
}

.product_box_img{
    align-self: center;
  justify-self: center;
    text-align: center;
}

#product .inner{
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
}

#product .inner_p{
    max-width: 90%;
    margin: 0 auto;
    padding: 0 2rem;
}

h3{
    font-family: "M PLUS Rounded 1c", sans-serif;
    font-weight: 900;
    font-size: 2.4rem;
    line-height: 1.3;
    padding: 1rem 0;
    text-align: center;
}

.comment{
    padding: 1rem 1.5rem;
    border-radius: 10px;
    background-color: #fff;
    font-family: "M PLUS Rounded 1c", sans-serif;
    font-weight: 600;
    font-size: 1.6rem;
    margin-bottom: 1rem;
}

.tag{
    display: inline-block;
    padding: 0.5rem 2rem;
    text-align: left;
    color: #FFF;
    font-family: "M PLUS Rounded 1c", sans-serif;
    font-weight: 800;
    font-size: 1.6rem;
    border-radius: 100px;                          
    margin: 0 0.2rem 1rem;
}

.cutlet{
    background-color: #B66134;
}
.tomato{
    background-color: #E53512;
}
.cheese{
    background-color: #F5B039;
}
.sriracha{
    background-color: #E50012;
}
.mayo{
    background-color: #F5BD83;
}
.mentaimayo{
    background-color: #F57E83;
}
.yannyomu{
    background-color: #c50042;
}
.aurora{
	background-color: #e5541b;
}
.okonomi{
	background-color: #b61d42;
}


/*--- マジボイスボタン ---*/
.btn.majivoice {
  position: relative;
  margin: 1rem auto 6rem;
  width: 100%;
  max-width: 235px;
  height: 72px;
  min-height: 60px;
  color: #fff;
  font-weight: 900;
  text-align: center;
  font-size: 18px;
  text-decoration: none;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  background: #209bd2;
  border-radius: 50px;
  border-bottom: 0;
  padding: 8px 0 3px 0;
  box-shadow:
    0 6px 0 #127cbf,
    0 8px 10px rgba(0, 0, 0, 0.15);
  transition:
    transform 0.12s ease,
    box-shadow 0.12s ease;
}

.btn.majivoice>p:first-child {
  display: flex;
  align-items: center;
}

.btn.majivoice:hover {
  transform: translateY(2px);
  box-shadow: 0 2px 0 #127cbf;
}

.btn.majivoice .majivoice-logo4 {
  width: 140px !important;
  margin: -3px 5px -5px 0 !important;
  vertical-align: middle;
  border: none !important;
}

@media screen and (max-width: 1200px){
	.product_container{
    display:grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 14rem 6rem;
    text-align: left;
}
}

@media screen and (max-width: 480px){
	.btn.majivoice {
		font-size: 1.6rem;
		height: 60px;
	}
}

@media screen and (max-width: 750px){
    .product_bg{
    background-color: #FDF2DA;
    padding: 5rem 0 8rem;
}
#product .inner{
    max-width: 100%;
    margin: 0 auto;
    padding: 0 2rem;
}
.product_container{
    display:grid;
    grid-template-columns: 1fr;
    grid-gap: 8rem;
    text-align: left;
}
.comment{
    font-size: 1.5rem;
    }
}

/* =========================================================
店舗リスト
========================================================= */
#shoplist{
    background-color: #F08300;
}

#shoplist .inner{
    padding: 0 2rem;
}

.logo{
    padding-top: 6rem;
    max-width: 200px;
    height: auto;
    margin: 0 auto;
}

.shoplist_btn a{
    display:block;
    max-width: 500px;
    margin: 3rem auto 1rem;
    background-color: #FFF100;
    border-radius: 100px;
    text-decoration: none;
    color: #6A3906;
    font-family: "M PLUS Rounded 1c", sans-serif;
    font-weight: 700;
    font-size: 2.2rem;
    padding:1.8rem 3rem;
    box-shadow: 5px 7px #934C18;
}

.big {
  transition-duration: .4s;
}
.big:hover {
  transform: scale(1.1);
}

#shoplist .note{
    color: #FFF;
    font-size: 1.4rem;
    font-weight: 600;
    padding: 1rem 0 6rem;
}

@media screen and (max-width: 750px){
    .logo{
    padding-top: 6rem;
    max-width: 160px;
    height: auto;
    margin: 0 auto;
}
}

/* =========================================================
ページトップ リンク
========================================================= */

/*リンクの形状*/
#page-top a{
	display: flex;
	justify-content:center;
	align-items:center;
	/*background:#006934;*/
	border-radius: 5px;
	width: 80px;
	height: 80px;
	color: #fff;
	text-align: center;
	text-transform: uppercase; 
	text-decoration: none;
	font-size:1.6rem;
	transition:all 0.3s;
}

#page-top a:hover{
	/*background: #777;*/
}

/*リンクを右下に固定*/
#page-top {
	position: fixed;
	right: 10px;
	bottom:10px;
	z-index: 900;
    /*はじめは非表示*/
	opacity: 0;
	transform: translateY(100px);
}

/*　上に上がる動き　*/

#page-top.UpMove{
	animation: UpAnime 0.5s forwards;
    bottom: 10px;
}
@keyframes UpAnime{
  from {
    opacity: 0;
	transform: translateY(100px);
  }
  to {
    opacity: 1;
	transform: translateY(0);
  }
}

/*　下に下がる動き　*/

#page-top.DownMove{
	animation: DownAnime 0.5s forwards;
}
@keyframes DownAnime{
  from {
  	opacity: 1;
	transform: translateY(0);
  }
  to {
  	opacity: 1;
	transform: translateY(100px);
  }
}

@media screen and (max-width: 960px) {

#page-top.UpMove {
    animation: UpAnime 0.5s forwards;
    bottom: 10px;
}
}

@media screen and (max-width: 750px){
	#page-top {
	right: 20px;
}
}


/*---------------------------------------------
フッター
---------------------------------------------*/

footer{
	width: 100%;
	padding: 20px 0;
	font: Arial, Helvetica, sans-serif;
	background: #2b2b2b;
}

footer a{
	color: #fff;
	text-decoration: none;
}

footer address{
	color: #fff;
}

/* sp */
@media screen and (max-width: 520px){
	footer{
		padding:10px 0;
	}
	
	#page-top a{
	margin: 0 -10px 0 0;
	}
}



