@charset "UTF-8";
/*==============================================================

	1. base

================================================================*/
html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font: inherit;
  font-size: 100%;
  text-align: left;
  line-height: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}

body {
  background: #ffffff;
  line-height: 1.8;
  color: #333333;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
  box-sizing: border-box;
}

ul {
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

form label,
form button {
  cursor: pointer;
}

img {
  vertical-align: bottom;
  border: none;
  max-width: 100%;
  height: auto;
}

video {
  border: none;
  max-width: 100%;
  height: auto;
}

iframe {
  border: none;
}

blockquote,
q {
  quotes: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
  font-weight: normal;
  font-size: 100%;
}

input,
button,
textarea,
select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

textarea {
  resize: none;
}

input:focus,
button:focus,
textarea:focus,
select:focus {
  outline: none;
}

/*==============================================================

	2. common

================================================================*/
/*--------------------------------------------------------------
	■A.文字
--------------------------------------------------------------*/
body {
  background-color: #ffffff;
  margin: 0px auto;
  padding: 0px;
  font-family: "Noto Sans JP", sans-serif, "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #333333;
  line-height: 1.75;
}

strong {
  font-weight: 500;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Noto Sans JP", sans-serif, "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-weight: 400;
}

/*--------------------------------------------------------------
	■B.リンク
--------------------------------------------------------------*/
/*--------------------------------------------------------------
	■C.共通定義
--------------------------------------------------------------*/
.inner {
  padding: 0 32px;
}
@media screen and (min-width: 600px) {
  .inner {
    padding: 0 48px;
  }
}
@media screen and (min-width: 1024px) {
  .inner {
    width: 88%;
    margin: 0 auto;
  }
}

.inner2 {
  padding: 0 24px;
}
@media screen and (min-width: 600px) {
  .inner2 {
    padding: 0 40px;
  }
}
@media screen and (min-width: 1024px) {
  .inner2 {
    width: 1020px;
    margin: 0 auto;
  }
}

.inner3 {
  padding: 0 16px;
}
@media screen and (min-width: 600px) {
  .inner3 {
    padding: 0 32px;
  }
}
@media screen and (min-width: 1024px) {
  .inner3 {
    width: 1020px;
    margin: 0 auto;
  }
}

.btn {
  position: relative;
  overflow: hidden;
  font-size: 16px;
  color: #0232AE;
  font-weight: 400;
  background-color: #F6EA02;
  transition: ease 0.2s;
}
.btn span {
  display: block;
  position: relative;
  z-index: 3; /*z-indexの数値をあげて文字を背景よりも手前に表示*/
  color: #0232AE;
  padding: 13px 24px;
}
.btn a {
  -webkit-text-decoration-line: none;
          text-decoration-line: none;
}
.btn a:visited {
  color: #0232AE;
}

.btn::after {
  content: "";
  /*絶対配置で矢印の位置を決める*/
  position: absolute;
  top: 40%;
  right: 32px;
  /*矢印の形状*/
  width: 40px;
  height: 6px;
  border-bottom: 1px solid #0232AE;
  border-right: 1px solid #0232AE;
  transform: skew(45deg);
  /*アニメーションの指定*/
  transition: all 0.2s linear;
  transition-delay: 0.55s;
  z-index: 4;
}

@media screen and (min-width: 1024px) {
  .btn:hover::after {
    border-right-color: #ffffff;
    border-bottom-color: #ffffff;
    right: 24px;
  }
}

@media screen and (min-width: 1024px) {
  .btn:hover span {
    display: block;
    color: #fff;
    transition-delay: 0.25s;
  }
}

/*== 背景が流れる（左から右） */
@media screen and (min-width: 1024px) {
  .bgleft:before {
    content: "";
    /*絶対配置で位置を指定*/
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    /*色や形状*/
    background: #0232AE; /*背景色*/
    width: 100%;
    height: 100%;
    /*アニメーション*/
    transition: transform 0.6s cubic-bezier(0.8, 0, 0.2, 1) 0s;
    transform: scale(0, 1);
    transform-origin: right top;
  }
}

/*hoverした際の形状*/
@media screen and (min-width: 1024px) {
  .bgleft:hover:before {
    transform-origin: left top;
    transform: scale(1, 1);
  }
}

.l_ttl_sub {
  font-size: 40px;
  color: #0232AE;
  font-weight: 700;
  line-height: 1.2;
  font-family: "Lato", sans-serif;
  letter-spacing: 0.15rem;
}
@media screen and (min-width: 1024px) {
  .l_ttl_sub {
    font-size: 80px;
  }
}

.l_ttl_sub2 {
  font-size: 40px;
  color: #0232AE;
  font-weight: 700;
  line-height: 1.2;
  font-family: "Lato", sans-serif;
  letter-spacing: 0.15rem;
}
@media screen and (min-width: 1024px) {
  .l_ttl_sub2 {
    font-size: 80px;
  }
}

.side_line_inner {
  margin-top: 16px;
  padding-left: 30px;
  border-left: 2px solid #0232AE;
}
@media screen and (min-width: 1024px) {
  .side_line_inner {
    margin-top: 40px;
  }
}

@media screen and (min-width: 1024px) {
  .cont_box {
    width: 580px;
  }
}

.l_ttl {
  font-size: 24px;
  font-weight: 500;
  color: #0232AE;
  line-height: 1.5;
  letter-spacing: 0.05rem;
  margin-bottom: 16px;
}
@media screen and (min-width: 1024px) {
  .l_ttl {
    font-size: 32px;
  }
}

.attention {
  text-align: right;
  font-size: 12px;
}
@media screen and (min-width: 1024px) {
  .attention {
    font-size: 14px;
    margin-bottom: 40px;
  }
}

.m_ttl {
  font-size: 20px;
  color: #0232AE;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.05rem;
}
@media screen and (min-width: 1024px) {
  .m_ttl {
    font-size: 24px;
  }
}

.txt_center {
  text-align: center;
}

.delivery_btn_wrapper {
  display: none;
}

.delivery_btn {
  position: fixed;
  width: 84%;
  bottom: 40px;
  z-index: 99;
}
@media screen and (min-width: 520px) {
  .delivery_btn {
    width: 60%;
    bottom: 60px;
  }
}
@media screen and (min-width: 1024px) {
  .delivery_btn {
    width: 408px;
    bottom: 100px;
  }
}

/*モーダルウィンドウ*/
/*全て共通：hideエリアをはじめは非表示*/
.hide-area {
  display: none;
}

/*全て共通：モーダルのボタンの色を変更したい場合*/
.modaal-close:after,
.modaal-close:before {
  background: #ccc;
}

.modaal-close:focus:after,
.modaal-close:focus:before,
.modaal-close:hover:after,
.modaal-close:hover:before {
  background: #666;
}

/*確認を促すモーダル：タイトルの色を変更したい場合*/
#modaal-title {
  font-size: 1.2rem;
  text-align: center;
  margin: 0 0 20px 0;
}

/*動画表示のモーダル：余白を変更したい場合*/
.modaal-video .modaal-inner-wrapper {
  padding: 0;
}

/*　画像の拡大　*/
.zoomIn img {
  transform: scale(1);
  transition: 0.35s ease-in-out; /*移り変わる速さを変更したい場合はこの数値を変更*/
}

.zoomIn a:hover img { /*hoverした時の変化*/
  transform: scale(1.15); /*拡大の値を変更したい場合はこの数値を変更*/
}

/*　画像のマスク　*/
.mask {
  display: block;
  line-height: 0; /*行の高さを0にする*/
  overflow: hidden; /*拡大してはみ出る要素を隠す*/
}

/*テキストアニメーション*/
.bgextend {
  -webkit-animation-name: bgextendAnimeBase;
          animation-name: bgextendAnimeBase;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  position: relative;
  overflow: hidden; /*　はみ出た色要素を隠す　*/
  opacity: 0;
}

@-webkit-keyframes bgextendAnimeBase {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes bgextendAnimeBase {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/*中の要素*/
.bgappear {
  -webkit-animation-name: bgextendAnimeSecond;
          animation-name: bgextendAnimeSecond;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-delay: 0.6s;
          animation-delay: 0.6s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes bgextendAnimeSecond {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes bgextendAnimeSecond {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/*左から右*/
.bgLRextend::before {
  -webkit-animation-name: bgLRextendAnime;
          animation-name: bgLRextendAnime;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #0232AE; /*伸びる背景色の設定*/
}

@-webkit-keyframes bgLRextendAnime {
  0% {
    transform-origin: left;
    transform: scaleX(0);
  }
  50% {
    transform-origin: left;
    transform: scaleX(1);
  }
  50.001% {
    transform-origin: right;
  }
  100% {
    transform-origin: right;
    transform: scaleX(0);
  }
}

@keyframes bgLRextendAnime {
  0% {
    transform-origin: left;
    transform: scaleX(0);
  }
  50% {
    transform-origin: left;
    transform: scaleX(1);
  }
  50.001% {
    transform-origin: right;
  }
  100% {
    transform-origin: right;
    transform: scaleX(0);
  }
}
/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
.bgappearTrigger,
.bgLRextendTrigger {
  opacity: 0;
}

/* フワッとフェードイン */
/*==================================================
スタート時は要素自体を透過0にするためのopacity:0;を指定する
===================================*/
.box {
  opacity: 0;
}

/*==================================================
動かしたい動き（今回は” ふわっ” を採用）
===================================*/
.fadeUp {
  -webkit-animation-name: fadeUpAnime;
          animation-name: fadeUpAnime;
  -webkit-animation-duration: 0.5s;
          animation-duration: 0.5s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.fadeLeft {
  -webkit-animation-name: fadeLeftAnime;
          animation-name: fadeLeftAnime;
  -webkit-animation-duration: 0.5s;
          animation-duration: 0.5s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes fadeLeftAnime {
  from {
    opacity: 0;
    transform: translateX(-100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeLeftAnime {
  from {
    opacity: 0;
    transform: translateX(-100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
/* アニメーションの開始を遅らせるCSS*/
.delay-time03 {
  -webkit-animation-delay: 0.3s;
          animation-delay: 0.3s;
}

.delay-time05 {
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
}

.delay-time08 {
  -webkit-animation-delay: 0.8s;
          animation-delay: 0.8s;
}

.delay-time09 {
  -webkit-animation-delay: 0.9s;
          animation-delay: 0.9s;
}

.delay-time1 {
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
}

.delay-time11 {
  -webkit-animation-delay: 1.1s;
          animation-delay: 1.1s;
}

.delay-time12 {
  -webkit-animation-delay: 1.2s;
          animation-delay: 1.2s;
}

.delay-time13 {
  -webkit-animation-delay: 1.3s;
          animation-delay: 1.3s;
}

.delay-time14 {
  -webkit-animation-delay: 1.4s;
          animation-delay: 1.4s;
}

.delay-time15 {
  -webkit-animation-delay: 1.5s;
          animation-delay: 1.5s;
}

.delay-time16 {
  -webkit-animation-delay: 1.6s;
          animation-delay: 1.6s;
}

.delay-time17 {
  -webkit-animation-delay: 1.7s;
          animation-delay: 1.7s;
}

.delay-time18 {
  -webkit-animation-delay: 1.8s;
          animation-delay: 1.8s;
}

.delay-time19 {
  -webkit-animation-delay: 1.9s;
          animation-delay: 1.9s;
}

.delay-time2 {
  -webkit-animation-delay: 2s;
          animation-delay: 2s;
}

.delay-time22 {
  -webkit-animation-delay: 2.2s;
          animation-delay: 2.2s;
}

.delay-time23 {
  -webkit-animation-delay: 2.3s;
          animation-delay: 2.3s;
}

.delay-time25 {
  -webkit-animation-delay: 2.5s;
          animation-delay: 2.5s;
}

.element {
  /* 最初は非表示 */
  opacity: 0;
  visibility: hidden;
  transform: translateY(30px);
  transition: opacity 1s, visibility 1s, transform 1s;
}

/* フェードイン時に入るクラス */
.is-fadein {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

/*==============================================================

	3. layout

================================================================*/
/*--------------------------------------------------------------
	header
--------------------------------------------------------------*/
/* .hd */
.hd {
  position: fixed;
  z-index: 3;
  top: 0;
  left: 0;
  width: 100%;
  padding: 21px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (min-width: 1024px) {
  .hd {
    padding: 29px 50px;
  }
}
.hd .hd_logo {
  margin-right: 32px;
}
@media screen and (min-width: 1024px) {
  .hd .hd_logo {
    display: flex;
  }
}
.hd .hd_logo .shopname {
  display: none;
}
@media screen and (min-width: 1024px) {
  .hd .hd_logo .shopname {
    display: inline-block;
    font-size: 11px;
    color: #0232AE;
    padding: 8px 0 0 16px;
  }
}
.hd .hd_logo img {
  width: 88px;
}
@media screen and (min-width: 1024px) {
  .hd .hd_logo img {
    width: 128px;
  }
}
.hd .hd_sp_menu {
  margin-right: 60px;
  display: flex;
}
.hd .hd_sp_menu .navi {
  display: none;
}
@media screen and (min-width: 1024px) {
  .hd .hd_sp_menu .navi {
    display: block;
    margin-right: 20px;
  }
}
@media screen and (min-width: 1024px) {
  .hd .hd_sp_menu .navi ul {
    display: flex;
  }
}
@media screen and (min-width: 1024px) {
  .hd .hd_sp_menu .navi ul li {
    margin-right: 40px;
    font-weight: 700;
  }
}
@media screen and (min-width: 1024px) {
  .hd .hd_sp_menu .navi ul li a {
    color: #0232AE;
    text-decoration: none;
  }
}
@media screen and (min-width: 1024px) {
  .hd .hd_sp_menu .navi ul li a:hover {
    opacity: 0.6;
    transition: all 0.2s linear;
  }
}
@media screen and (min-width: 1024px) {
  .hd .hd_sp_menu .navi ul li a:visited {
    color: #0232AE;
  }
}
.hd .hd_sp_menu .insta img {
  width: 24px;
  margin-right: 21px;
}
.hd .hd_sp_menu .ec img {
  width: 24px;
}

/*========= ナビゲーションのためのCSS ===============*/
/*アクティブになったエリア*/
#g-nav.panelactive {
  /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
  position: fixed;
  z-index: 999;
  top: 0;
  width: 100%;
  height: 100vh;
}

/*丸の拡大*/
.circle-bg {
  position: fixed;
  z-index: 300;
  /*丸の形*/
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: #F6EA02;
  /*丸のスタート位置と形状*/
  transform: scale(0); /*scaleをはじめは0に*/
  top: -50px;
  left: calc(50% - 50px); /*50%から円の半径を引いた値*/
  transition: all 0.6s; /*0.6秒かけてアニメーション*/
}

.circle-bg.circleactive {
  transform: scale(50); /*クラスが付与されたらscaleを拡大*/
}

/*ナビゲーションの縦スクロール*/
#g-nav-list {
  display: none; /*はじめは表示なし*/
  /*ナビの数が増えた場合縦スクロール*/
  position: fixed;
  z-index: 998;
  width: 100%;
  height: 100vh;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

#g-nav.panelactive #g-nav-list {
  display: block; /*クラスが付与されたら出現*/
}

/*ナビゲーション*/
#g-nav ul {
  opacity: 0; /*はじめは透過0*/
  /*ナビゲーション天地中央揃え※レイアウトによって調整してください。不必要なら削除*/
  position: absolute;
  z-index: 999;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/*背景が出現後にナビゲーションを表示*/
#g-nav.panelactive ul {
  opacity: 1;
}

/* 背景が出現後にナビゲーション li を表示※レイアウトによって調整してください。不必要なら削除*/
#g-nav.panelactive ul li {
  -webkit-animation-name: gnaviAnime;
          animation-name: gnaviAnime;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s; /*0.2 秒遅らせて出現*/
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes gnaviAnime {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes gnaviAnime {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/*リストのレイアウト設定*/
#g-nav li {
  text-align: center;
  list-style: none;
  font-size: 20px;
}
@media screen and (min-width: 1024px) {
  #g-nav li {
    font-size: 28px;
  }
}

#g-nav li a {
  color: #0232AE;
  text-decoration: none;
  padding: 10px;
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: bold;
}

/*========= ボタンのためのCSS ===============*/
.openbtn {
  position: fixed;
  z-index: 9999; /*ボタンを最前面に*/
  top: 12px;
  right: 10px;
  cursor: pointer;
  width: 50px;
  height: 50px;
}
@media screen and (min-width: 1024px) {
  .openbtn {
    top: 26px;
    right: 40px;
  }
}

/*×に変化*/
.openbtn span {
  display: inline-block;
  transition: all 0.4s;
  position: absolute;
  left: 14px;
  height: 2px;
  border-radius: 0;
  background-color: #0232AE;
  width: 50%;
}

.openbtn span:nth-of-type(1) {
  top: 20px;
}

.openbtn span:nth-of-type(2) {
  opacity: 0;
}

.openbtn span:nth-of-type(3) {
  top: 26px;
}

.openbtn.active span:nth-of-type(1) {
  top: 18px;
  left: 18px;
  transform: translateY(6px) rotate(-45deg);
  width: 40%;
}

.openbtn.active span:nth-of-type(2) {
  opacity: 0;
}

.openbtn.active span:nth-of-type(3) {
  top: 30px;
  left: 18px;
  transform: translateY(-6px) rotate(45deg);
  width: 40%;
}

/*________footer_________*/
.footer {
  width: 100%;
  margin-top: 80px;
  padding: 20px 0 120px;
  background-color: #0232AE;
}
@media screen and (min-width: 1024px) {
  .footer {
    padding: 20px 0 160px;
  }
}
.footer .copy {
  text-align: center;
  color: #ffffff;
}

/*________mv_________*/
.mv {
  width: 100%;
  padding-top: 112px;
  position: relative;
}
@media screen and (min-width: 1024px) {
  .mv {
    width: 100%;
    display: flex;
    flex-direction: row-reverse;
    flex-wrap: nowrap;
    justify-content: space-between;
    margin: 0 auto;
    padding-bottom: 140px;
  }
}
@media screen and (min-width: 1024px) {
  .mv .ttl_area {
    width: 37%;
    margin-top: 6%;
  }
}
@media screen and (min-width: 1312px) {
  .mv .ttl_area {
    width: 37%;
    margin-top: 6%;
  }
}
.mv .illust_pizza1 {
  position: absolute;
  top: 88px;
  right: 0;
  width: 94px;
}
@media screen and (min-width: 600px) {
  .mv .illust_pizza1 {
    width: 124px;
    top: 110px;
  }
}
@media screen and (min-width: 1024px) {
  .mv .illust_pizza1 {
    top: 138px;
    right: 0;
    width: 100px;
  }
}
@media screen and (min-width: 1312px) {
  .mv .illust_pizza1 {
    top: 138px;
    right: 0;
    width: 136px;
  }
}
.mv .catch {
  font-size: 18px;
  font-weight: 500;
  color: #0232AE;
  line-height: 1.75;
  letter-spacing: 0.25rem;
}
@media screen and (min-width: 600px) {
  .mv .catch {
    font-size: 36px;
  }
}
@media screen and (min-width: 1024px) {
  .mv .catch {
    font-size: 18px;
    margin-bottom: 18px;
  }
}
@media screen and (min-width: 1312px) {
  .mv .catch {
    font-size: 24px;
    margin-bottom: 24px;
  }
}
.mv h1.main_title {
  margin-top: 8px;
  font-size: 58px;
  color: #0232AE;
  font-weight: 700;
  line-height: 1.2;
  font-family: "Lato", sans-serif;
  letter-spacing: 0.25rem;
}
@media screen and (min-width: 600px) {
  .mv h1.main_title {
    font-size: 94px;
  }
}
@media screen and (min-width: 1024px) {
  .mv h1.main_title {
    font-size: 58px;
  }
}
@media screen and (min-width: 1312px) {
  .mv h1.main_title {
    font-size: 78px;
  }
}
.mv h1.main_title .j_txt {
  display: block;
  margin-top: 10px;
  font-size: 12px;
  font-weight: 500;
  color: #0232AE;
  letter-spacing: 0.1rem;
}
@media screen and (min-width: 600px) {
  .mv h1.main_title .j_txt {
    font-size: 24px;
    margin-top: 24px;
  }
}
@media screen and (min-width: 1024px) {
  .mv h1.main_title .j_txt {
    font-size: 14px;
    margin-top: 16px;
  }
}
@media screen and (min-width: 1312px) {
  .mv h1.main_title .j_txt {
    font-size: 16px;
    margin-top: 28px;
  }
}
.mv ul.mv_btn_area {
  width: 100%;
  margin-top: 20px;
}
@media screen and (min-width: 600px) {
  .mv ul.mv_btn_area {
    margin-top: 30px;
  }
}
@media screen and (min-width: 1024px) {
  .mv ul.mv_btn_area {
    margin-top: 30px;
  }
}
@media screen and (min-width: 1312px) {
  .mv ul.mv_btn_area {
    margin-top: 60px;
  }
}
.mv ul.mv_btn_area li {
  margin-bottom: 8px;
}
@media screen and (min-width: 1024px) {
  .mv ul.mv_btn_area li {
    margin-bottom: 13px;
  }
}
.mv .photo_area {
  position: relative;
  padding-top: 32px;
  width: 100%;
  height: auto;
}
@media screen and (min-width: 1024px) {
  .mv .photo_area {
    width: 57%;
    height: auto;
  }
}
.mv .photo_area .illust_harb {
  position: absolute;
  top: -20px;
  left: -12px;
  width: 42px;
  z-index: 200;
}
@media screen and (min-width: 1024px) {
  .mv .photo_area .illust_harb {
    top: -22px;
    left: -34px;
    width: 60px;
  }
}
@media screen and (min-width: 1312px) {
  .mv .photo_area .illust_harb {
    top: -32px;
    left: -44px;
    width: 89px;
  }
}
.mv .photo_area .illust_tomato {
  position: absolute;
  bottom: -20px;
  right: -12px;
  width: 42px;
  z-index: 200;
}
@media screen and (min-width: 1024px) {
  .mv .photo_area .illust_tomato {
    bottom: -22px;
    right: -36px;
    width: 50px;
  }
}
@media screen and (min-width: 1312px) {
  .mv .photo_area .illust_tomato {
    bottom: -32px;
    right: -46px;
    width: 80px;
  }
}
.mv .photo_area .photo_area img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/*________concept_________*/
.concept {
  width: 100%;
  padding-top: 100px;
}
@media screen and (min-width: 1024px) {
  .concept {
    padding-top: 160px;
  }
}
.concept .concept_box {
  width: 100%;
  position: relative;
}
.concept .concept_box .illust_kama1 {
  position: absolute;
  top: -24px;
  right: -24px;
  width: 131px;
}
@media screen and (min-width: 1024px) {
  .concept .concept_box .illust_kama1 {
    width: 302px;
  }
}
.concept .concept_box .illust_pizza2 {
  display: none;
}
@media screen and (min-width: 1024px) {
  .concept .concept_box .illust_pizza2 {
    display: block;
    position: absolute;
    width: 177px;
    top: 266px;
    right: 94px;
  }
}
.concept .concept_box .text_box {
  margin-top: 22px;
}
@media screen and (min-width: 1024px) {
  .concept .concept_box .text_box {
    font-size: 16px;
  }
}
.concept .concept_box .btn_box {
  margin-top: 32px;
}
@media screen and (min-width: 1024px) {
  .concept .concept_box .btn_box {
    width: 420px;
    text-align: right;
  }
}
.concept .photo_slide {
  position: relative;
  margin-top: 40px;
  display: flex;
  flex-flow: row nowrap;
  width: 100vw;
  height: 186px;
  overflow: hidden;
}
@media screen and (min-width: 1024px) {
  .concept .photo_slide {
    margin-top: 64px;
    height: 394px;
  }
}
.concept .photo_slide ul {
  display: flex;
  flex-flow: row nowrap;
  margin: 0;
  padding: 0;
}
.concept .photo_slide li {
  display: inline-block;
  width: 287px;
  height: 186px;
  text-align: center;
}
@media screen and (min-width: 1024px) {
  .concept .photo_slide li {
    width: 608px;
    height: 394px;
  }
}
.concept .photo_slide ul:first-child {
  -webkit-animation: loop 120s -60s linear infinite;
          animation: loop 120s -60s linear infinite;
}
.concept .photo_slide ul:last-child {
  -webkit-animation: loop2 120s linear infinite;
          animation: loop2 120s linear infinite;
}

@-webkit-keyframes loop {
  0% {
    transform: translateX(100%);
  }
  to {
    transform: translateX(-100%);
  }
}

@keyframes loop {
  0% {
    transform: translateX(100%);
  }
  to {
    transform: translateX(-100%);
  }
}
@-webkit-keyframes loop2 {
  0% {
    transform: translateX(0);
  }
  to {
    transform: translateX(-200%);
  }
}
@keyframes loop2 {
  0% {
    transform: translateX(0);
  }
  to {
    transform: translateX(-200%);
  }
}
/*________delivery_________*/
.delivery {
  position: relative;
  padding-top: 80px;
  width: 100%;
}
@media screen and (min-width: 1024px) {
  .delivery {
    padding-top: 160px;
  }
}
@media screen and (min-width: 1024px) {
  .delivery .delivery_box {
    position: relative;
    padding-left: 396px;
  }
}
.delivery .illust_delivery1 {
  position: absolute;
  top: -48px;
  right: 10px;
  width: 132px;
}
@media screen and (min-width: 1024px) {
  .delivery .illust_delivery1 {
    width: 330px;
    left: 0;
    top: 0;
  }
}
.delivery .attention {
  margin-top: 22px;
}
.delivery h3 {
  margin-top: 24px;
}
.delivery ul.menu_area {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 16px;
}
.delivery ul.menu_area li {
  width: 48%;
  margin-bottom: 24px;
}
@media screen and (min-width: 1024px) {
  .delivery ul.menu_area li {
    width: 24%;
  }
}
.delivery ul.menu_area li figure {
  width: 100%;
  margin-bottom: 6px;
}
.delivery ul.menu_area dl dt.menu_name {
  font-size: 16px;
  color: #0232AE;
  line-height: 1.5;
  font-weight: 500;
}
.delivery ul.menu_area dl dd.price {
  line-height: 1.5;
  margin-top: 6px;
}
@media screen and (min-width: 1024px) {
  .delivery ul.menu_area::after {
    content: "";
    display: block;
    width: 24%;
    height: 0;
  }
  .delivery ul.menu_area::before {
    content: "";
    display: block;
    width: 24%;
    height: 0;
    order: 1;
  }
}
@media screen and (min-width: 1024px) {
  .delivery .inner2 {
    display: flex;
    justify-content: flex-end;
  }
}
@media screen and (min-width: 1024px) {
  .delivery .btn_box {
    width: 420px;
    text-align: right;
  }
}

/*________online shop_________*/
.online_shop {
  width: 100%;
  background-color: #F5F5F5;
  padding: 80px 0 80px;
  position: relative;
  width: 100%;
  margin-top: 60px;
}
@media screen and (min-width: 1024px) {
  .online_shop {
    padding: 100px 0 100px;
    margin-top: 80px;
  }
}
@media screen and (min-width: 1024px) {
  .online_shop .online_shop_box {
    position: relative;
  }
}
.online_shop .online_shop_box .illust_ec {
  position: absolute;
  top: -24px;
  right: 0;
  width: 48px;
}
@media screen and (min-width: 1024px) {
  .online_shop .online_shop_box .illust_ec {
    position: absolute;
    top: 0;
    right: 0;
    width: 184px;
  }
}
.online_shop .online_shop_box .text_box {
  margin-top: 22px;
}
.online_shop .online_shop_box .btn_box {
  margin-top: 32px;
}
@media screen and (min-width: 1024px) {
  .online_shop .online_shop_box .btn_box {
    width: 420px;
    text-align: right;
  }
}
.online_shop .photo_ec {
  margin-top: 64px;
  width: 100%;
}
@media screen and (min-width: 1024px) {
  .online_shop .photo_ec {
    width: 1020px;
    margin: 60px auto 0;
  }
}
.online_shop .photo_ec img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.shop_info {
  padding-top: 80px;
}
@media screen and (min-width: 1024px) {
  .shop_info {
    padding-top: 100px;
  }
}
@media screen and (min-width: 1024px) {
  .shop_info .shop_info_cont {
    margin-bottom: 80px;
  }
}
.shop_info .shop_info_cont .l_ttl_sub {
  text-align: center;
}
.shop_info .shop_info_cont .l_ttl_sub::before {
  content: ""; /*何も入れない*/
  display: inline-block; /*忘れずに！*/
  width: 34px; /*画像の幅*/
  height: 38px; /*画像の高さ*/
  background-image: url(../img/illust_fork.webp);
  background-size: contain;
  vertical-align: middle;
  background-repeat: no-repeat;
  margin-right: 7px;
  margin-bottom: 12px;
}
@media screen and (min-width: 1024px) {
  .shop_info .shop_info_cont .l_ttl_sub::before {
    width: 88px; /*画像の幅*/
    height: 99px; /*画像の高さ*/
    margin-right: 24px;
  }
}
.shop_info .shop_info_cont .l_ttl_sub::after {
  content: ""; /*何も入れない*/
  display: inline-block; /*忘れずに！*/
  width: 40px; /*画像の幅*/
  height: 29px; /*画像の高さ*/
  background-image: url(../img/illust_cheese.webp);
  background-size: contain;
  vertical-align: middle;
  background-repeat: no-repeat;
  margin-left: 7px;
  margin-bottom: 12px;
}
@media screen and (min-width: 1024px) {
  .shop_info .shop_info_cont .l_ttl_sub::after {
    width: 103px; /*画像の幅*/
    height: 74px; /*画像の高さ*/
    margin-left: 24px;
  }
}
.shop_info .shop_info_cont .shop_container {
  width: 100%;
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 1024px) {
  .shop_info .shop_info_cont .shop_container {
    flex-direction: row;
  }
}
.shop_info .shop_info_cont .shop_container .shop_img_box {
  position: relative;
  width: 76%;
  margin: 0 auto;
}
@media screen and (min-width: 1024px) {
  .shop_info .shop_info_cont .shop_container .shop_img_box {
    width: 100%;
    margin-right: 40px;
    margin-top: 52px;
  }
}
.shop_info .shop_info_cont .shop_container .shop_img_box .shop_img_item::before {
  width: 76%;
  z-index: -2;
  position: absolute;
  content: "■";
  color: #0232AE;
  background-color: #0232AE;
  width: 75px;
  height: 70px;
  bottom: -14px;
  left: -14px;
}
.shop_info .shop_info_cont .shop_container .shop_info_box {
  width: 100%;
  margin-top: 54px;
  margin-bottom: 40px;
}
.shop_info .shop_info_cont .shop_container .shop_info_box .tbl {
  width: 100%;
  border-top: 1px solid #D6D6D6;
  font-size: 16px;
}
.shop_info .shop_info_cont .shop_container .shop_info_box .tbl tr {
  border-bottom: 1px solid #D6D6D6;
}
.shop_info .shop_info_cont .shop_container .shop_info_box .tbl th,
.shop_info .shop_info_cont .shop_container .shop_info_box .tbl td {
  padding: 24px 0;
  border: none;
}
@media only screen and (max-width: 480px) {
  .shop_info .shop_info_cont .shop_container .shop_info_box .tbl th,
.shop_info .shop_info_cont .shop_container .shop_info_box .tbl td {
    width: 100%;
    display: block;
  }
}
.shop_info .shop_info_cont .shop_container .shop_info_box .tbl th {
  width: 30%;
  color: #0232AE;
  font-weight: 700;
}
@media only screen and (max-width: 480px) {
  .shop_info .shop_info_cont .shop_container .shop_info_box .tbl th {
    width: 100%;
  }
}
@media only screen and (max-width: 480px) {
  .shop_info .shop_info_cont .shop_container .shop_info_box .tbl td {
    padding-top: 0;
  }
}
.shop_info .shop_info_map iframe {
  width: 100%;
  height: 400px;
}
@media screen and (min-width: 1024px) {
  .shop_info .shop_info_map iframe {
    height: 600px;
  }
}/*# sourceMappingURL=style.css.map */