@charset "UTF-8";
/* CSS Document */
.page_takeout .key_visual {
  width: 100%;
  height: 360px;
}
.page_takeout .key_visual {
  background: url("../images/common/bg_key.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 104px;
  position: relative;
}
.page_title img {
    max-width: 442px;
    width: 36vw;
  }
.menu_list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 100px;
  margin-bottom: 80px;
}
.menu_list .menu_li {
  width: calc((100% - 60px)/ 4);
  text-align: center;
  background: #fff;
  border-radius: 12px;
  padding: 32px 24px 16px 24px;
  position: relative
}
.menu_list .menu_li.new::before {
  content: "";
  width: 64px;
  height: 40px;
  background: url("/menu/images/common/icn_new.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  position: absolute;
  top: 10px;
  left: 10px;
}
.menu_list .menu_li.takeout::after {
  content: "";
  width: 32px;
  height: 32px;
  background: url("/menu/images/common/icn_to.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  position: absolute;
  bottom: 20px;
  left: 20px;
}
.menu_list .menu_li .details {
  text-align: left;
}
.menu_list .menu_li .img {
  text-align: center;
  margin-bottom: 16px;
}
.menu_list .menu_li .menu_name {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.6;
  margin-bottom: 20px;
}
.menu_list .menu_li .price {
  font-size: 20px;
  display: flex;
  align-items: baseline;
  font-weight: 600;
  justify-content: end;
}
.menu_list .menu_li .yen {
  font-size: 14px;
  margin-right: 2px;
  letter-spacing: 0.1em;
}
.menu_list .menu_li .taxin {
  font-size: 14px;
  letter-spacing: 0.01em;
}
.howtomake .sp {
  display: none;
}
.howtomake {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}
@media screen and (max-width:1000px) {
  .menu_list .menu_li {
    width: calc((100% - 40px)/ 3);
  }
.page_title img {
    max-width: 442px;
    width: 40vw;
  }	
}
@media screen and (max-width:768px) {
.page_takeout .key_visual {
  height: 280px;
}	
.page_title img {
    width: 50vw;
  }		
  .menu_list .menu_li {
    width: calc((100% - 20px)/ 2);
    border-radius: 8px;
    padding: 0 16px 10px 16px;
  }
  .menu_list {
    margin-bottom: 64px;
  }
  .howtomake {
    margin: 0 auto;
    padding: 0 6%;
    max-width: 420px;
  }
  .howtomake .pc {
    display: none;
  }
  .howtomake .sp {
    display: block;
    margin: 0 auto;
  }
}
@media screen and (max-width:599px) {
  .menu_list {
    gap: 10px;
  }
  .menu_list .menu_li {
    width: calc((100% - 10px)/ 2);
    border-radius: 8px;
    padding: 0 16px 10px 16px;
  }
  .menu_list .menu_li .menu_name {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.4;
  }
  .menu_list .menu_li .price {
    font-size: 17px;
  }
  .menu_list .menu_li .taxin {
    font-size: 12px;
  }
  .menu_list .menu_li.new::before {
    content: "";
    width: 36px;
    height: 36px;
    top: -10px;
    left: 0;
  }
}
/*--------------------------------------
リンク
--------------------------------------*/
.content_top {
  padding: 45px 0 100px;
  text-align: center;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}
.content_top .txt {
  padding: 0 0 30px;
  font-size: clamp(20px, 2vw, 24px);
  line-height: 1.5;
  font-weight: bold;
}
.content_top .txt span {
  margin: 0 .4em;
}
.btn_takeout {
  margin: 0 auto;
  display: inline-block;
}
.btn_takeout a {
  height: 100px;	
  display: flex;
  background: #009a53;
  border-radius: 10px;
  padding: 0 56px 0 32px;
  text-decoration: none;
  align-items: center;
  justify-content: center;
  column-gap: 16px;
  background-image: url(../images/common/icon_arw.png);
  background-repeat: no-repeat;
  background-position: calc(100% - 16px) center;
  background-size: 20px;
}
.btn_takeout p {
  font-size: clamp(18px, 2.16vw, 26px);
  font-weight: bold;
  color: #ffffff;
}
.btn_takeout img:last-of-type {
  width: 64px;
  height: 64px;
}
@media screen and (max-width:1200px) {
  .content_top {
    padding: 20px;
  }
}
@media screen and (max-width:599px) {
.content_top .txt span {
  display: block;
}	
.content_top {
    padding: 20px 16px;
  }
.content_top .txt {
  padding: 0 0 16px;
	}
.btn_takeout {
  display: block;
}	
  .btn_takeout a {
    border-radius: 8px;
    padding: 0 36px 0 16px;
    background-position: calc(100% - 10px) center;
    background-size: 16px;
  }
  .btn_takeout img:last-of-type {
    width: 48px;
    height: 48px;
  }
}